From ee7c7a19ae1059b855aa3365b5890975bfb01253 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 8 Dec 2020 13:48:44 -0800 Subject: [PATCH 001/129] Added ansible-postgres to connectbox --- ansible/roles/ansible-postgresql/README.md | 182 ++++++++++++++++++ .../ansible-postgresql/defaults/main.yml | 10 + .../files/get_repo_rpm_release.py | 35 ++++ .../ansible-postgresql/handlers/main.yml | 4 + .../roles/ansible-postgresql/meta/main.yml | 26 +++ .../roles/ansible-postgresql/tasks/backup.yml | 56 ++++++ .../roles/ansible-postgresql/tasks/debian.yml | 36 ++++ .../roles/ansible-postgresql/tasks/main.yml | 97 ++++++++++ .../roles/ansible-postgresql/tasks/redhat.yml | 69 +++++++ .../templates/20ansible_backup.conf.j2 | 9 + .../templates/25ansible_postgresql.conf.j2 | 17 ++ .../templates/archive_wal.sh.j2 | 74 +++++++ .../templates/backup_working_wal.sh.j2 | 19 ++ .../templates/pg_hba.conf.debian.j2 | 34 ++++ .../templates/pg_hba.conf.redhat.j2 | 23 +++ .../templates/scheduled_backup.sh.j2 | 96 +++++++++ .../roles/ansible-postgresql/vars/debian.yml | 5 + .../roles/ansible-postgresql/vars/main.yml | 10 + .../roles/ansible-postgresql/vars/redhat.yml | 5 + 19 files changed, 807 insertions(+) create mode 100644 ansible/roles/ansible-postgresql/README.md create mode 100644 ansible/roles/ansible-postgresql/defaults/main.yml create mode 100644 ansible/roles/ansible-postgresql/files/get_repo_rpm_release.py create mode 100644 ansible/roles/ansible-postgresql/handlers/main.yml create mode 100644 ansible/roles/ansible-postgresql/meta/main.yml create mode 100644 ansible/roles/ansible-postgresql/tasks/backup.yml create mode 100644 ansible/roles/ansible-postgresql/tasks/debian.yml create mode 100644 ansible/roles/ansible-postgresql/tasks/main.yml create mode 100644 ansible/roles/ansible-postgresql/tasks/redhat.yml create mode 100644 ansible/roles/ansible-postgresql/templates/20ansible_backup.conf.j2 create mode 100644 ansible/roles/ansible-postgresql/templates/25ansible_postgresql.conf.j2 create mode 100644 ansible/roles/ansible-postgresql/templates/archive_wal.sh.j2 create mode 100644 ansible/roles/ansible-postgresql/templates/backup_working_wal.sh.j2 create mode 100644 ansible/roles/ansible-postgresql/templates/pg_hba.conf.debian.j2 create mode 100644 ansible/roles/ansible-postgresql/templates/pg_hba.conf.redhat.j2 create mode 100644 ansible/roles/ansible-postgresql/templates/scheduled_backup.sh.j2 create mode 100644 ansible/roles/ansible-postgresql/vars/debian.yml create mode 100644 ansible/roles/ansible-postgresql/vars/main.yml create mode 100644 ansible/roles/ansible-postgresql/vars/redhat.yml diff --git a/ansible/roles/ansible-postgresql/README.md b/ansible/roles/ansible-postgresql/README.md new file mode 100644 index 00000000..2599a2cd --- /dev/null +++ b/ansible/roles/ansible-postgresql/README.md @@ -0,0 +1,182 @@ +PostgreSQL +========== + +An [Ansible][ansible] role for installing and managing [PostgreSQL][postgresql] servers. This role works with both +Debian and RedHat based systems, and provides backup scripts for [PostgreSQL Continuous Archiving and Point-in-Time +Recovery][postgresql_pitr]. + +On RedHat-based platforms, the [PostgreSQL Global Development Group (PGDG) packages][pgdg_yum] packages will be +installed. On Debian-based platforms, you can choose from the distribution's packages (from APT) or the [PGDG +packages][pgdg_apt]. + +[ansible]: http://www.ansible.com/ +[postgresql]: http://www.postgresql.org/ +[postgresql_pitr]: http://www.postgresql.org/docs/9.4/static/continuous-archiving.html +[pgdg_yum]: http://yum.postgresql.org/ +[pgdg_apt]: http://apt.postgresql.org/ + +**Changes that require a restart will not be applied unless you manually restart PostgreSQL.** This role will reload the +server for those configuration changes that can be updated with only a reload because reloading is a non-intrusive +operation, but options that require a full restart will not cause the server to restart. + +Requirements +------------ + +This role requires Ansible 2.4+ + +Role Variables +-------------- + +### All variables are optional ### + +- `postgresql_user_name`: System username to be used for PostgreSQL (default: `postgres`). + +- `postgresql_version`: PostgreSQL version to install. On Debian-based platforms, the default is whatever version is + pointed to by the `postgresql` metapackage). On RedHat-based platforms, the default is `10`. + +- `postgresql_flavor`: On Debian-based platforms, this specifies whether you want to use PostgreSQL packages from pgdg + or the distribution's apt repositories. Possible values: `apt`, `pgdg` (default: `apt`). + +- `postgresql_conf`: A list of hashes (dictionaries) of `postgresql.conf` options (keys) and values. These options are + not added to `postgresql.conf` directly - the role adds a `conf.d` subdirectory in the configuration directory and an + include statement for that directory to `postgresql.conf`. Options set in `postgresql_conf` are then set in + `conf.d/25ansible_postgresql.conf`. For legacy reasons, this can also be a single hash, but the list syntax is + preferred because it preserves order. + + Due to YAML parsing, you must take care when defining values in + `postgresql_conf` to ensure they are properly written to the config file. For + example: + + ```yaml + postgresql_conf: + - max_connections: 250 + - archive_mode: "off" + - work_mem: "'8MB'" + ``` + + Becomes the following in `25ansible_postgresql.conf`: + + ``` + max_connections = 250 + archive_mode = off + work_mem: '8MB' + ``` + +- `postgresql_pg_hba_conf`: A list of lines to add to `pg_hba.conf` + +- `postgresql_pg_hba_local_postgres_user`: If set to `false`, this will remove the `postgres` user's entry from + `pg_hba.conf` that is preconfigured on Debian-based PostgreSQL installations. You probably do not want to do this + unless you know what you're doing. + +- `postgresql_pg_hba_local_socket`: If set to `false`, this will remove the `local` entry from `pg_hba.conf` that is + preconfigured by the PostgreSQL package. + +- `postgresql_pg_hba_local_ipv4`: If set to `false`, this will remove the `host ... 127.0.0.1/32` entry from + `pg_hba.conf` that is preconfigured by the PostgreSQL package. + +- `postgresql_pg_hba_local_ipv6`: If set to `false`, this will remove the `host ... ::1/128` entry from `pg_hba.conf` + that is preconfigured by the PostgreSQL package. + +- `postgresql_pgdata`: Only set this if you have changed the `$PGDATA` directory from the package default. Note this + does not configure PostgreSQL to actually use a different directory, you will need to do that yourself, it just allows + the role to properly locate the directory. + +- `postgresql_conf_dir`: As with `postgresql_pgdata` except for the configuration directory. + +### Backups ### + +- `postgresql_backup_dir`: If set, enables [PITR][postgresql_pitr] backups. Set this to a directory where your database + will be backed up (this can be any format supported by rsync, e.g. `user@host:/path`). The most recent backup will be + in a subdirectory named `current`. + +- `postgresql_backup_rotate`: Boolean, defaults to `true`, which will cause the `current` directory to be renamed prior + to creating a new backup. If set to `false`, `current` will be deleted (this is useful if you are using snapshots or + some other means to archive previous backups). + +- `postgresql_backup_local_dir`: Filesystem path on the PostgreSQL server where backup scripts will be placed and + working WALs will be written prior to a WAL archive. + +- `postgresql_backup_[hour|minute]`: Controls what time the cron job will run to perform a full backup. Defaults to 1:00 + AM. + +- `postgresql_backup_[day|month|weekday]`: Additional cron controls for when the full backup is performed (default: + `*`). + +- `postgresql_backup_mail_recipient`: User or address that should receive mail from the backup scripts. + +- `postgresql_backup_remote_rsync_path`: Path to `rsync` on the remote system. + +- `postgresql_backup_post_command`: Arbitrary command to run after successful completion of a scheduled backup. + +Dependencies +------------ + +None + +Example Playbook +---------------- + +Standard install: Default `postgresql.conf`, `pg_hba.conf` and default version for the OS: + +```yaml +--- + +- hosts: dbservers + remote_user: root + roles: + - postgresql +``` + +Use the pgdg packages on a Debian-based host: + +```yaml +--- + +- hosts: dbservers + remote_user: root + vars: + postgresql_flavor: pgdg + roles: + - postgresql +``` + +Use the PostgreSQL 9.5 packages and set some `postgresql.conf` options and `pg_hba.conf` entries: + +```yaml +--- + +- hosts: dbservers + remote_user: root + vars: + postgresql_version: 9.5 + postgresql_conf: + - listen_addresses: "''" # disable network listening (listen on unix socket only) + - max_connections: 50 # decrease connection limit + postgresql_pg_hba_conf: + - host all all 10.0.0.0/8 md5 + roles: + - postgresql +``` + +Enable backups to /archive + +```yaml +- hosts: all + remote_user: root + vars: + postgresql_backup_dir: /archive + roles: + - postgresql +``` + +License +------- + +[Academic Free License ("AFL") v. 3.0][afl] + +[afl]: http://opensource.org/licenses/AFL-3.0 + +Author Information +------------------ + +[Nate Coraor](https://github.com/natefoo) diff --git a/ansible/roles/ansible-postgresql/defaults/main.yml b/ansible/roles/ansible-postgresql/defaults/main.yml new file mode 100644 index 00000000..cf5fd578 --- /dev/null +++ b/ansible/roles/ansible-postgresql/defaults/main.yml @@ -0,0 +1,10 @@ +--- + +postgresql_default_version: 9.6 +postgresql_backup_local_dir: ~postgres/backup +postgresql_backup_active_dir: "{{ postgresql_backup_local_dir }}/active" +postgresql_backup_mail_recipient: postgres +postgresql_backup_rotate: true +postgresql_user_name: postgres + +postgresql_archive_wal_rsync_args: '--ignore-existing -ptg --info=skip1' diff --git a/ansible/roles/ansible-postgresql/files/get_repo_rpm_release.py b/ansible/roles/ansible-postgresql/files/get_repo_rpm_release.py new file mode 100644 index 00000000..60f24f14 --- /dev/null +++ b/ansible/roles/ansible-postgresql/files/get_repo_rpm_release.py @@ -0,0 +1,35 @@ +#!/usr/bin/env python +""" +Determine the latest version of the yum repository package. + +usage: get_repo_rpm_version.py url distribution + +e.g.: + +get_repo_rpm_version.py http://yum.postgresql.org/9.2/redhat/rhel-6-x86_64/ centos +""" + +import re +import sys +import urllib2 + +url, dist = sys.argv[1:] + +try: + repo = urllib2.urlopen(url) +except urllib2.HTTPError, e: + print >>sys.stderr, "Failed to fetch directory list from %s" % url + raise + +pg_version = url.split('/')[3] +if pg_version[0] == "8" and dist != "sl": + re_pattern = 'href=[\'"](pgdg-%s-%s-[\d+].noarch.rpm)[\'"]' % (dist, pg_version) +else: + re_pattern = 'href=[\'"](pgdg-%s%s-%s-[\d+].noarch.rpm)[\'"]' % (dist, pg_version.replace('.', ''), pg_version) +match = re.findall(re_pattern, repo.read(), flags=re.I) + +assert match, "No matching %s pgdg repository packages found for version %s at %s" % (dist, pg_version, url) + +print match[0] + +sys.exit(0) diff --git a/ansible/roles/ansible-postgresql/handlers/main.yml b/ansible/roles/ansible-postgresql/handlers/main.yml new file mode 100644 index 00000000..f75b6f48 --- /dev/null +++ b/ansible/roles/ansible-postgresql/handlers/main.yml @@ -0,0 +1,4 @@ +--- + +- name: Reload PostgreSQL + service: name={{ postgresql_service_name }} state=reloaded diff --git a/ansible/roles/ansible-postgresql/meta/main.yml b/ansible/roles/ansible-postgresql/meta/main.yml new file mode 100644 index 00000000..791cd3a6 --- /dev/null +++ b/ansible/roles/ansible-postgresql/meta/main.yml @@ -0,0 +1,26 @@ +--- +galaxy_info: + author: The Galaxy Project + description: Install and manage a PostgreSQL (http://www.postgresql.org/) server. + company: The Galaxy Project + license: AFL v3.0 + min_ansible_version: 2.4 + platforms: + - name: EL + versions: + - all + - name: Fedora + versions: + - all + - name: Ubuntu + versions: + - all + - name: Debian + versions: + - all + galaxy_tags: + - database + - sql + - postgres + - postgresql +dependencies: [] diff --git a/ansible/roles/ansible-postgresql/tasks/backup.yml b/ansible/roles/ansible-postgresql/tasks/backup.yml new file mode 100644 index 00000000..7993b648 --- /dev/null +++ b/ansible/roles/ansible-postgresql/tasks/backup.yml @@ -0,0 +1,56 @@ +--- + +- name: Create backup directories + file: + owner: postgres + group: postgres + mode: 0750 + state: directory + path: "{{ item }}" + with_items: + - "{{ postgresql_backup_local_dir }}" + - "{{ postgresql_backup_local_dir }}/bin" + - "{{ postgresql_backup_active_dir }}" + +- name: Install backup scripts + template: + src: "{{ item }}.j2" + dest: "{{ postgresql_backup_local_dir }}/bin/{{ item }}" + owner: postgres + group: postgres + mode: 0750 + with_items: + - backup_working_wal.sh + - archive_wal.sh + - scheduled_backup.sh + +- name: Set WAL archive config options + template: + src: 20ansible_backup.conf.j2 + dest: "{{ postgresql_conf_dir }}/conf.d/20ansible_backup.conf" + owner: postgres + group: postgres + backup: yes + notify: Reload PostgreSQL + +- name: Schedule backups + cron: + name: "PostgreSQL Backup" + cron_file: ansible_postgresql_backup + user: postgres + hour: "{{ postgresql_backup_hour | default(1) }}" + minute: "{{ postgresql_backup_minute | default(0) }}" + day: "{{ postgresql_backup_day | default(omit) }}" + month: "{{ postgresql_backup_month | default(omit) }}" + weekday: "{{ postgresql_backup_weekday | default(omit) }}" + job: >- + {{ postgresql_backup_local_dir }}/bin/scheduled_backup.sh{{ + ' && ' ~ postgresql_backup_post_command if postgresql_backup_post_command is defined else '' + }} + +- name: Schedule PostgreSQL working WAL backup + cron: + name: "PostgreSQL WAL Backup" + cron_file: ansible_postgresql_walbackup + user: postgres + job: "{{ postgresql_backup_local_dir }}/bin/backup_working_wal.sh" diff --git a/ansible/roles/ansible-postgresql/tasks/debian.yml b/ansible/roles/ansible-postgresql/tasks/debian.yml new file mode 100644 index 00000000..978b2b96 --- /dev/null +++ b/ansible/roles/ansible-postgresql/tasks/debian.yml @@ -0,0 +1,36 @@ +--- + +- name: Install pgdg package signing key (Debian/pgdg) + apt_key: + keyserver: pgp.mit.edu + id: ACCC4CF8 + register: __postgresql_apt_key_result + until: __postgresql_apt_key_result is succeeded + retries: 5 + delay: 5 + when: postgresql_flavor is defined and postgresql_flavor == "pgdg" + +- name: Install pgdg repository (Debian/pgdg) + apt_repository: + repo: "deb http://apt.postgresql.org/pub/repos/apt/ {{ ansible_distribution_release }}-pgdg main" + update_cache: yes + when: postgresql_flavor is defined and postgresql_flavor == "pgdg" + +- name: Install PostgreSQL (Debian) + apt: + name: postgresql{{ '-' ~ postgresql_version if postgresql_version is defined else '' }} + register: __postgresql_apt_result + until: __postgresql_apt_result is succeeded + retries: 5 + delay: 5 + +- name: Get installed version + command: dpkg-query -f ${Version;3} --show postgresql + when: postgresql_version is not defined + register: __postgresql_version_query_result + changed_when: false + +- name: Set version fact + set_fact: + postgresql_version: "{{ __postgresql_version_query_result.stdout.split('+') | first }}" + when: postgresql_version is not defined diff --git a/ansible/roles/ansible-postgresql/tasks/main.yml b/ansible/roles/ansible-postgresql/tasks/main.yml new file mode 100644 index 00000000..c6fee608 --- /dev/null +++ b/ansible/roles/ansible-postgresql/tasks/main.yml @@ -0,0 +1,97 @@ +--- + +# Convenient ordering - debian.yml sets postgresql_version if it is unset, +# which is needed by the include_vars files. +- include_tasks: debian.yml + when: ansible_os_family == "Debian" + +# For RedHat we use the value from defaults/main.yml +- name: Set version fact + set_fact: + postgresql_version: "{{ postgresql_default_version }}" + when: ansible_os_family == "RedHat" and postgresql_version is not defined + +# Sets postgresql_pgdata, postgresql_conf_dir +- name: Set OS-specific variables + include_vars: "{{ ansible_os_family | lower }}.yml" + +- name: Set pgdata fact + set_fact: + postgresql_pgdata: "{{ postgresql_pgdata_default }}" + when: postgresql_pgdata is not defined + +- name: Set conf dir fact + set_fact: + postgresql_conf_dir: "{{ postgresql_conf_dir_default }}" + when: postgresql_conf_dir is not defined + +# Needs postgresql_pgdata set +- include_tasks: redhat.yml + when: ansible_os_family == "RedHat" + +- name: Create conf.d + file: + path: "{{ postgresql_conf_dir }}/conf.d" + state: directory + owner: "{{ postgresql_user_name }}" + group: "{{ postgresql_user_name }}" + +# lineinfile's behavior when `backrefs = True` is very odd. We don't want to overwrite include_dirs if it's already +# properly set, but we don't know the exact format it will be in (with or without '=', with a comment at end of line, +# etc.). So check for a match first and then add if there's no match. +- name: Check for conf.d include in postgresql.conf + lineinfile: + line: 'why ansible ;(' + # The '=' is optional but is present in postgresql.conf.sample, which Debian's sample is based off of (but include* + # directive examples in the PostgreSQL docs don't use it). Also ignore comments and whitespace after the directive. + regexp: '^include_dir(\s+|\s*=\s*)?''conf.d''\s*(#.*)?$' + path: "{{ postgresql_conf_dir }}/postgresql.conf" + backrefs: true + check_mode: true + changed_when: __postgresql_include_dir_result is not changed # yeah... + register: __postgresql_include_dir_result + when: "postgresql_version is version_compare('9.3', '>=')" + +- name: Set conf.d include in postgresql.conf + lineinfile: + line: "include_dir 'conf.d'" + path: "{{ postgresql_conf_dir }}/postgresql.conf" + backup: yes + notify: Reload PostgreSQL + when: "postgresql_version is version_compare('9.3', '>=') and __postgresql_include_dir_result is changed" + +- name: Include 25ansible_postgresql.conf in postgresql.conf + lineinfile: + line: "include 'conf.d/25ansible_postgresql.conf'" + dest: "{{ postgresql_conf_dir }}/postgresql.conf" + backup: yes + notify: Reload PostgreSQL + when: "postgresql_version is version_compare('9.3', '<')" + +- name: Set config options + template: + src: 25ansible_postgresql.conf.j2 + dest: "{{ postgresql_conf_dir }}/conf.d/25ansible_postgresql.conf" + owner: "{{ postgresql_user_name }}" + group: "{{ postgresql_user_name }}" + backup: yes + notify: Reload PostgreSQL + +- name: Install pg_hba.conf + template: + src: pg_hba.conf.{{ ansible_os_family | lower }}.j2 + dest: "{{ postgresql_conf_dir }}/pg_hba.conf" + owner: "{{ postgresql_user_name }}" + group: "{{ postgresql_user_name }}" + mode: 0400 + backup: yes + notify: Reload PostgreSQL + +- include_tasks: backup.yml + when: postgresql_backup_dir is defined + +- name: Ensure PostgreSQL is running + service: + name: "{{ postgresql_service_name }}" + enabled: yes + state: started diff --git a/ansible/roles/ansible-postgresql/tasks/redhat.yml b/ansible/roles/ansible-postgresql/tasks/redhat.yml new file mode 100644 index 00000000..364ce8c2 --- /dev/null +++ b/ansible/roles/ansible-postgresql/tasks/redhat.yml @@ -0,0 +1,69 @@ +--- + +- name: Set PostgreSQL dotless version fact + set_fact: + __postgresql_version_dotless: "{{ postgresql_version | replace('.', '') }}" + __postgresql_command_sep: "{{ postgresql_version is version('10', '>=') | ternary('-', '') }}" + +# Using the rpm URL format of the yum module causes Ansible to download the rpm +# every time to check whether it's installed, so, don't do that. +- name: Check pgdg repository package (RedHat) + yum: + name: "pgdg-redhat-repo" + register: __postgresql_repo_pkg_installed_result + ignore_errors: yes + +- name: Install pgdg repository package (RedHat) + yum: + name: >- + https://download.postgresql.org/pub/repos/yum/reporpms/{{ postgresql_pgdg_shortfamilies[ansible_distribution] + | default("EL") }}-{{ ansible_distribution_major_version }}-{{ ansible_architecture }}/pgdg-{{ + postgresql_pgdg_families[ansible_distribution] | default("redhat") }}-repo-latest.noarch.rpm + register: __postgresql_yum_result + until: __postgresql_yum_result is succeeded + retries: 5 + delay: 5 + when: __postgresql_repo_pkg_installed_result is failed + +#- name: Collect installed repos +# yum: +# list: repos +# until: __postgresql_yum_repolist_result is succeeded +# retries: 5 +# delay: 5 +# register: __postgresql_yum_repolist_result + +# Not supported (and no good workaround) until there is a solution for https://github.com/ansible/ansible/issues/41178 +#- name: Ensure that only the desired PostgreSQL version's repo is enabled +# yum_repository: +# name: item.repoid +# enabled: "{{ (item.repoid == 'pgdg' ~ __postgresql_version_dotless) if item.repoid.startswith('pgdg') else item.state == 'enabled' }}" +# # "{{ __postgresql_yum_repolist_result.results | selectattr('repoid', 'startswith', 'pgdg') | list }}" would be nice +# # here but alas there is no `startswith` test +# loop: "{{ __postgresql_yum_repolist_result.results }}" + +- name: Install PostgreSQL (RedHat) + yum: + name: postgresql{{ __postgresql_version_dotless }}-server + +- name: Check for pgdata directory + stat: + path: "{{ postgresql_pgdata }}/base" + register: pgdata_stat + failed_when: false + +- name: Initialize database (RedHat < 7) + command: /sbin/service postgresql-{{ postgresql_version }} initdb + args: + warn: false # Use of /sbin/service is valid here, ignore lint error + when: >- + ansible_distribution_major_version is version(7, '<') + and (pgdata_stat.stat.isdir is not defined or not pgdata_stat.stat.isdir) + +- name: Initialize database (RedHat >= 7) + command: >- + /usr/pgsql-{{ postgresql_version }}/bin/postgresql{{ __postgresql_command_sep }}{{ + __postgresql_version_dotless }}-setup initdb + when: >- + ansible_distribution_major_version is version(7, '>=') + and (pgdata_stat.stat.isdir is not defined or not pgdata_stat.stat.isdir) diff --git a/ansible/roles/ansible-postgresql/templates/20ansible_backup.conf.j2 b/ansible/roles/ansible-postgresql/templates/20ansible_backup.conf.j2 new file mode 100644 index 00000000..010b49da --- /dev/null +++ b/ansible/roles/ansible-postgresql/templates/20ansible_backup.conf.j2 @@ -0,0 +1,9 @@ +## +## This file is maintained by Ansible - CHANGES WILL BE OVERWRITTEN +## + +{% if postgresql_backup_dir is defined and postgresql_backup_local_dir is defined %} +wal_level = archive +archive_mode = on +archive_command = '{{ postgresql_backup_local_dir | expanduser }}/bin/archive_wal.sh "%p" "%f" main' +{% endif %} diff --git a/ansible/roles/ansible-postgresql/templates/25ansible_postgresql.conf.j2 b/ansible/roles/ansible-postgresql/templates/25ansible_postgresql.conf.j2 new file mode 100644 index 00000000..9c29124d --- /dev/null +++ b/ansible/roles/ansible-postgresql/templates/25ansible_postgresql.conf.j2 @@ -0,0 +1,17 @@ +## +## This file is maintained by Ansible - CHANGES WILL BE OVERWRITTEN +## + +{% if postgresql_conf is defined %} +{% if postgresql_conf is mapping %} +{% for opt in postgresql_conf | sort -%} +{{ opt }} = {{ postgresql_conf[opt] }} +{% endfor %} +{% else %} +{% for pair in postgresql_conf -%} +{% for key in pair -%} +{{ key }} = {{ pair[key] }} +{% endfor %} +{% endfor %} +{% endif %} +{% endif %} diff --git a/ansible/roles/ansible-postgresql/templates/archive_wal.sh.j2 b/ansible/roles/ansible-postgresql/templates/archive_wal.sh.j2 new file mode 100644 index 00000000..4a41bb77 --- /dev/null +++ b/ansible/roles/ansible-postgresql/templates/archive_wal.sh.j2 @@ -0,0 +1,74 @@ +#!/bin/sh +## +## This file is maintained by Ansible - CHANGES WILL BE OVERWRITTEN +## +# +# this is invoked by postgres directly, and should be set as the +# archive_command thusly: +# archive_command = '/path/to/backup/bin/archive_wal.sh "%p" "%f"' + +full_file=$1 +file=$2 +server=`hostname` + +active_dir={{ postgresql_backup_active_dir }} +backup_dir="{{ postgresql_backup_dir }}/current/wal" +mutex={{ postgresql_backup_local_dir }}/walmutex +mailto='{{ postgresql_backup_mail_recipient }}' +mutex_attempts=50 + +[ '{{ postgresql_backup_remote_rsync_path | default("None") }}' != 'None' ] && remote_rsync='--rsync-path={{ postgresql_backup_remote_rsync_path | default("None") }}' || remote_rsync='' + +handler() +{ + command=$@ + out=`$command 2>&1` + ret=$? + if [ $ret -ne 0 ]; then + (echo "execuing $command failed with code $ret:" ; echo "$out") | mail -s "$server: WAL archive failed" $mailto + rm -f $mutex + exit 1 + else + if [ -n "$out" ]; then + echo "$out" + fi + fi +} + +attempt=0 + +[ ! -d `dirname $mutex` ] && mkdir -p `dirname $mutex` + +while [ -f $mutex ]; do + attempt=`expr $attempt + 1` + if [ $attempt -gt $mutex_attempts ]; then + echo "archive of WAL $file failed, timed out waiting for mutex from `cat $mutex`" | mail -s "$server: WAL archive failed" $mailto + exit 1 + fi + sleep 5 +done + +echo "archive-WAL $$" > $mutex + +# If rsync outputs anything to stdout, the destination already existed, which should not happen +if [ -n "`handler rsync $remote_rsync {{ postgresql_archive_wal_rsync_args }} $full_file $backup_dir`" ]; then + echo "$backup_dir/$file already exists, overwriting is not allowed" | mail -s "$server: WAL archive failed" $mailto + rm -f $mutex + exit 1 +fi + +# create an empty directory for --delete +empty=`handler mktemp -d {{ postgresql_backup_local_dir }}/emptyXXXXXX` + +# clear the active directory +handler rsync $remote_rsync -rptg --delete $empty/ $active_dir + +# remove the temp empty dir +handler rmdir $empty + +# debug +#echo "archive of WAL $file succeeded" | mail -s "$server: WAL archive succeeded" $mailto + +# exit normally +rm -f $mutex +exit 0 diff --git a/ansible/roles/ansible-postgresql/templates/backup_working_wal.sh.j2 b/ansible/roles/ansible-postgresql/templates/backup_working_wal.sh.j2 new file mode 100644 index 00000000..d368bfa5 --- /dev/null +++ b/ansible/roles/ansible-postgresql/templates/backup_working_wal.sh.j2 @@ -0,0 +1,19 @@ +#!/bin/sh +## +## This file is maintained by Ansible - CHANGES WILL BE OVERWRITTEN +## + +wal_dir='{{ postgresql_pgdata }}/{{ postgresql_version is version("10", ">=") | ternary("pg_wal", "pg_xlog") }}' +backup_dir={{ postgresql_backup_active_dir }} +mailto='{{ postgresql_backup_mail_recipient }}' + +active=`ls -1rtF $wal_dir | grep -v '/$' | tail -1` + +out=`scp -p $wal_dir/$active $backup_dir/$active 2>&1` +ret=$? + +if [ $ret -ne 0 ]; then + (echo "scp failed with code $ret:" ; echo "$out") | mail -s "`hostname`: WAL backup failed" $mailto +fi + +exit $ret diff --git a/ansible/roles/ansible-postgresql/templates/pg_hba.conf.debian.j2 b/ansible/roles/ansible-postgresql/templates/pg_hba.conf.debian.j2 new file mode 100644 index 00000000..e7586174 --- /dev/null +++ b/ansible/roles/ansible-postgresql/templates/pg_hba.conf.debian.j2 @@ -0,0 +1,34 @@ +## +## This file is maintained by Ansible - CHANGES WILL BE OVERWRITTEN +## + +{% if postgresql_pg_hba_local_postgres_user is not defined or postgresql_pg_hba_local_postgres_user %} +# DO NOT DISABLE! +# If you change this first entry you will need to make sure that the +# database superuser can access the database using some other method. +# Noninteractive access to all databases is required during automatic +# maintenance (custom daily cronjobs, replication, and similar tasks). +# +# Database administrative login by Unix domain socket +local all postgres peer +{% endif %} + +{% if postgresql_pg_hba_local_socket is not defined or postgresql_pg_hba_local_socket %} +# "local" is for Unix domain socket connections only +local all all peer +{% endif %} +{% if postgresql_pg_hba_local_ipv4 is not defined or postgresql_pg_hba_local_ipv4 %} +# IPv4 local connections: +host all all 127.0.0.1/32 md5 +{% endif %} +{% if postgresql_pg_hba_local_ipv6 is not defined or postgresql_pg_hba_local_ipv6 %} +# IPv6 local connections: +host all all ::1/128 md5 +{% endif %} + +# Entries configured in postgresql_pg_hba_conf follow +{% if postgresql_pg_hba_conf is defined %} +{% for line in postgresql_pg_hba_conf %} +{{ line }} +{% endfor %} +{% endif %} diff --git a/ansible/roles/ansible-postgresql/templates/pg_hba.conf.redhat.j2 b/ansible/roles/ansible-postgresql/templates/pg_hba.conf.redhat.j2 new file mode 100644 index 00000000..fa3ae20a --- /dev/null +++ b/ansible/roles/ansible-postgresql/templates/pg_hba.conf.redhat.j2 @@ -0,0 +1,23 @@ +## +## This file is maintained by Ansible - CHANGES WILL BE OVERWRITTEN +## + +{% if postgresql_pg_hba_local_socket is not defined or postgresql_pg_hba_local_socket %} +# "local" is for Unix domain socket connections only +local all all peer +{% endif %} +{% if postgresql_pg_hba_local_ipv4 is not defined or postgresql_pg_hba_local_ipv4 %} +# IPv4 local connections: +host all all 127.0.0.1/32 ident +{% endif %} +{% if postgresql_pg_hba_local_ipv6 is not defined or postgresql_pg_hba_local_ipv6 %} +# IPv6 local connections: +host all all ::1/128 ident +{% endif %} + +# Entries configured in postgresql_pg_hba_conf follow +{% if postgresql_pg_hba_conf is defined %} +{% for line in postgresql_pg_hba_conf %} +{{ line }} +{% endfor %} +{% endif %} diff --git a/ansible/roles/ansible-postgresql/templates/scheduled_backup.sh.j2 b/ansible/roles/ansible-postgresql/templates/scheduled_backup.sh.j2 new file mode 100644 index 00000000..5b10eaf2 --- /dev/null +++ b/ansible/roles/ansible-postgresql/templates/scheduled_backup.sh.j2 @@ -0,0 +1,96 @@ +#!/bin/bash +## +## This file is maintained by Ansible - CHANGES WILL BE OVERWRITTEN +## + +server=`hostname` +data='{{ postgresql_pgdata }}' +dir='{{ postgresql_backup_dir }}/current' +mailto='{{ postgresql_backup_mail_recipient }}' +mutex={{ postgresql_backup_local_dir }}/scheduledmutex +rotate='{{ postgresql_backup_rotate | default("True") }}' +wal_dir='{{ postgresql_version is version("10", ">=") | ternary("pg_wal", "pg_xlog") }}' + +[ '{{ postgresql_backup_remote_rsync_path | default("None") }}' != 'None' ] && remote_rsync='--rsync-path={{ postgresql_backup_remote_rsync_path | default("None") }}' || remote_rsync='' + +handler() +{ + command=$@ + out=`$command 2>&1` + ret=$? + if [ $ret -ne 0 -a ! \( $ret -eq 24 -a $1 = 'rsync' \) ]; then + (echo "execuing $command failed with code $ret:" ; echo "$out") | mail -s "$server: Postgres scheduled backup failed" $mailto + rm -f $mutex + if [ "$backup_started" = 1 ]; then + echo "SELECT pg_stop_backup();" | psql + fi + exit 1 + else + if [ -n "$out" ]; then + echo "$out" + fi + fi +} + +psql_handler() +{ + sql=$@ + out=`echo "$sql" | psql 2>&1` + ret=$? + if [ $ret -ne 0 ]; then + (echo "executing $sql failed with code $ret:" ; echo "$out") | mail -s "$server: Postgres scheduled backup failed" $mailto + rm -f $mutex + exit 1 + else + probe=`echo "$out" | grep ERROR` + ret=$? + if [ $ret -eq 0 ]; then + (echo "executing sql $sql failed:" ; echo "$out") | mail -s "$server: Postgres scheduled backup failed" $mailto + rm -f $mutex + exit 1 + #else + # if [ -n "$out" ]; then + # echo $out + # fi + fi + fi +} + +[[ "$dir" == *':'* ]] && dir_is_remote=1 +[ "$dir_is_remote" -a $rotate != "False" ] && { echo "error: rotation with remote backup directory is not implemented" | mail -s "$server: Postgres scheduled backup failed" $mailto ; exit 1 ; } + +[ ! -d `dirname $mutex` ] && handler mkdir -p `dirname $mutex` + +while [ -f $mutex ]; do + sleep 5 +done + +start=`date +%s` + +echo "scheduled $$" > $mutex + +if [ ! "$dir_is_remote" ]; then + # move previous backup + if [ -d $dir -a $rotate = "True" ]; then + handler mv $dir {{ postgresql_backup_dir }}/`date -u +%Y%m%dT%H%M%SZ` + fi +fi + +# tell postgres we'll be backing up +psql_handler "SELECT pg_start_backup('$dir');" +backup_started=1 + +# ensure the local wal/ directory exists, so rsync creates it for wal archival +handler mkdir -p $data/wal + +# begin the backup +handler rsync $remote_rsync -rptg --delete --delete-delay --exclude $wal_dir $data/ $dir + +# tell postgres we're done +psql_handler "SELECT pg_stop_backup();" + +echo "Elapsed time: $(( `date +%s` - $start )) seconds" | mail -s "$server: Postgres scheduled backup succeeded" $mailto + +# exit normally +rm -f $mutex +exit 0 diff --git a/ansible/roles/ansible-postgresql/vars/debian.yml b/ansible/roles/ansible-postgresql/vars/debian.yml new file mode 100644 index 00000000..492965bd --- /dev/null +++ b/ansible/roles/ansible-postgresql/vars/debian.yml @@ -0,0 +1,5 @@ +--- + +postgresql_pgdata_default: /var/lib/postgresql/{{ postgresql_version }}/main +postgresql_conf_dir_default: /etc/postgresql/{{ postgresql_version }}/main +postgresql_service_name: postgresql diff --git a/ansible/roles/ansible-postgresql/vars/main.yml b/ansible/roles/ansible-postgresql/vars/main.yml new file mode 100644 index 00000000..e8840fed --- /dev/null +++ b/ansible/roles/ansible-postgresql/vars/main.yml @@ -0,0 +1,10 @@ +--- + +# maps ansible_* to the pgdg repository package name +postgresql_pgdg_families: + #default: redhat + Fedora: fedora + +postgresql_pgdg_shortfamilies: + #default: EL + Fedora: F diff --git a/ansible/roles/ansible-postgresql/vars/redhat.yml b/ansible/roles/ansible-postgresql/vars/redhat.yml new file mode 100644 index 00000000..2eb570b1 --- /dev/null +++ b/ansible/roles/ansible-postgresql/vars/redhat.yml @@ -0,0 +1,5 @@ +--- + +postgresql_pgdata_default: /var/lib/pgsql/{{ postgresql_version }}/data +postgresql_conf_dir_default: /var/lib/pgsql/{{ postgresql_version }}/data +postgresql_service_name: postgresql-{{ postgresql_version }} From 5038fa3ed8b4f6ecc43c30bc6326dc2cd6c06733 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 8 Dec 2020 13:48:59 -0800 Subject: [PATCH 002/129] Added role to main.yml --- ansible/roles/connectbox-pi/meta/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible/roles/connectbox-pi/meta/main.yml b/ansible/roles/connectbox-pi/meta/main.yml index 66dd28ce..6223ffd0 100644 --- a/ansible/roles/connectbox-pi/meta/main.yml +++ b/ansible/roles/connectbox-pi/meta/main.yml @@ -11,3 +11,4 @@ dependencies: - webserver-content - usb-content - sample-content + - ansible-postgresql From c72b519d488b9c18c16474c483078449bfbb1585 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 8 Dec 2020 13:51:11 -0800 Subject: [PATCH 003/129] Permit trust access from UNIX and localhost --- .../roles/ansible-postgresql/templates/pg_hba.conf.debian.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/roles/ansible-postgresql/templates/pg_hba.conf.debian.j2 b/ansible/roles/ansible-postgresql/templates/pg_hba.conf.debian.j2 index e7586174..b66d51a6 100644 --- a/ansible/roles/ansible-postgresql/templates/pg_hba.conf.debian.j2 +++ b/ansible/roles/ansible-postgresql/templates/pg_hba.conf.debian.j2 @@ -10,7 +10,7 @@ # maintenance (custom daily cronjobs, replication, and similar tasks). # # Database administrative login by Unix domain socket -local all postgres peer +local all postgres trust {% endif %} {% if postgresql_pg_hba_local_socket is not defined or postgresql_pg_hba_local_socket %} @@ -19,7 +19,7 @@ local all all peer {% endif %} {% if postgresql_pg_hba_local_ipv4 is not defined or postgresql_pg_hba_local_ipv4 %} # IPv4 local connections: -host all all 127.0.0.1/32 md5 +host all all 127.0.0.1/32 trust {% endif %} {% if postgresql_pg_hba_local_ipv6 is not defined or postgresql_pg_hba_local_ipv6 %} # IPv6 local connections: From 70217f11c408ca6fbb871698142c259ca4822579 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 8 Dec 2020 15:11:13 -0800 Subject: [PATCH 004/129] Adding Moodle --- .../roles/ansible-role-moodle-master/.flake8 | 1 + .../ansible-role-moodle-master/.gitignore | 3 + .../ansible-role-moodle-master/.travis.yml | 27 + .../ansible-role-moodle-master/.yamllint | 6 + .../roles/ansible-role-moodle-master/LICENSE | 21 + .../ansible-role-moodle-master/README.md | 78 ++ .../action_plugins/check_moodle.py | 44 + .../defaults/main.yml | 82 ++ .../handlers/main.yml | 14 + .../library/.gitignore | 1 + .../library/README.md | 44 + .../library/check_moodle.py | 78 ++ .../library/moodletool.php | 204 ++++ .../test-check_moodle_input.json.sample | 6 + .../library/test_check_moodle.py | 57 ++ .../ansible-role-moodle-master/meta/main.yml | 25 + .../molecule/README.md | 11 + .../molecule/default/README.md | 53 + .../molecule/default/converge.yml | 12 + .../molecule/default/molecule.yml | 27 + .../molecule/default/tools/check-exists.yml | 8 + .../tools/playbook-test-check-moodle.yml | 13 + .../default/tools/playbook-test-handlers.yml | 20 + .../molecule/default/vars-db.yml | 26 + .../molecule/default/vars.yml | 26 + .../molecule/default/verify.yml | 53 + .../molecule/postgres/converge.yml | 11 + .../molecule/postgres/molecule.yml | 33 + .../molecule/postgres/vars-db.yml | 27 + .../molecule/postgres/verify.yml | 53 + .../molecule/prebuild/.gitignore | 1 + .../molecule/prebuild/Makefile | 18 + .../molecule/prebuild/README.md | 37 + .../prebuild/ansible/playbook-mysql.yml | 29 + .../prebuild/ansible/playbook-postgres.yml | 41 + .../molecule/prebuild/ansible/vars-mysql.yml | 16 + .../prebuild/ansible/vars-postgres.yml | 14 + .../molecule/prebuild/ansible/vars.yml | 23 + .../molecule/prebuild/moodle-ami.json | 49 + .../molecule/prebuild/requirements.yml | 12 + .../molecule/prebuild/vars/centos8.vars.json | 6 + .../molecule/prebuild/vars/debian10.vars.json | 6 + .../prebuild/vars/ubuntu1804.vars.json | 6 + .../molecule/update/converge.yml | 41 + .../molecule/update/molecule.yml | 33 + .../molecule/update/verify.yml | 47 + .../molecule_test_local.sh | 22 + .../patches/aurora.patch | 20 + .../tasks/commands/moodle-bootstrapsolr.yml | 11 + .../tasks/commands/moodle-datadump.yml | 88 ++ .../tasks/commands/moodle-fetchsources.yml | 37 + .../tasks/commands/moodle-filedump.yml | 25 + .../tasks/commands/moodle-install.yml | 23 + .../tasks/commands/moodle-resetpw.yml | 12 + .../tasks/commands/moodle-setupsolr.yml | 12 + .../tasks/commands/moodle-update.yml | 11 + .../tasks/configure-vars.yml | 8 + .../tasks/fetch-sources.yml | 34 + .../ansible-role-moodle-master/tasks/main.yml | 26 + .../tasks/phpsql-setup.yml | 124 +++ .../tasks/setup-dirs.yml | 48 + .../tasks/setup-moodle.yml | 42 + .../tasks/setup-moosh.yml | 56 ++ .../tasks/tools.yml | 29 + .../templates/config.php.j2 | 905 ++++++++++++++++++ 65 files changed, 2976 insertions(+) create mode 100644 ansible/roles/ansible-role-moodle-master/.flake8 create mode 100644 ansible/roles/ansible-role-moodle-master/.gitignore create mode 100644 ansible/roles/ansible-role-moodle-master/.travis.yml create mode 100644 ansible/roles/ansible-role-moodle-master/.yamllint create mode 100644 ansible/roles/ansible-role-moodle-master/LICENSE create mode 100644 ansible/roles/ansible-role-moodle-master/README.md create mode 100644 ansible/roles/ansible-role-moodle-master/action_plugins/check_moodle.py create mode 100644 ansible/roles/ansible-role-moodle-master/defaults/main.yml create mode 100644 ansible/roles/ansible-role-moodle-master/handlers/main.yml create mode 100644 ansible/roles/ansible-role-moodle-master/library/.gitignore create mode 100644 ansible/roles/ansible-role-moodle-master/library/README.md create mode 100644 ansible/roles/ansible-role-moodle-master/library/check_moodle.py create mode 100644 ansible/roles/ansible-role-moodle-master/library/moodletool.php create mode 100644 ansible/roles/ansible-role-moodle-master/library/test-check_moodle_input.json.sample create mode 100644 ansible/roles/ansible-role-moodle-master/library/test_check_moodle.py create mode 100644 ansible/roles/ansible-role-moodle-master/meta/main.yml create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/README.md create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/default/README.md create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/default/converge.yml create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/default/molecule.yml create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/default/tools/check-exists.yml create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/default/tools/playbook-test-check-moodle.yml create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/default/tools/playbook-test-handlers.yml create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/default/vars-db.yml create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/default/vars.yml create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/default/verify.yml create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/postgres/converge.yml create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/postgres/molecule.yml create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/postgres/vars-db.yml create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/postgres/verify.yml create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/.gitignore create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/Makefile create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/README.md create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/playbook-mysql.yml create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/playbook-postgres.yml create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars-mysql.yml create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars-postgres.yml create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars.yml create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/moodle-ami.json create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/requirements.yml create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/centos8.vars.json create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/debian10.vars.json create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/ubuntu1804.vars.json create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/update/converge.yml create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/update/molecule.yml create mode 100644 ansible/roles/ansible-role-moodle-master/molecule/update/verify.yml create mode 100755 ansible/roles/ansible-role-moodle-master/molecule_test_local.sh create mode 100644 ansible/roles/ansible-role-moodle-master/patches/aurora.patch create mode 100644 ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-bootstrapsolr.yml create mode 100644 ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-datadump.yml create mode 100644 ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-fetchsources.yml create mode 100644 ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-filedump.yml create mode 100644 ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-install.yml create mode 100644 ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-resetpw.yml create mode 100644 ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-setupsolr.yml create mode 100644 ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-update.yml create mode 100644 ansible/roles/ansible-role-moodle-master/tasks/configure-vars.yml create mode 100644 ansible/roles/ansible-role-moodle-master/tasks/fetch-sources.yml create mode 100644 ansible/roles/ansible-role-moodle-master/tasks/main.yml create mode 100644 ansible/roles/ansible-role-moodle-master/tasks/phpsql-setup.yml create mode 100644 ansible/roles/ansible-role-moodle-master/tasks/setup-dirs.yml create mode 100644 ansible/roles/ansible-role-moodle-master/tasks/setup-moodle.yml create mode 100644 ansible/roles/ansible-role-moodle-master/tasks/setup-moosh.yml create mode 100644 ansible/roles/ansible-role-moodle-master/tasks/tools.yml create mode 100644 ansible/roles/ansible-role-moodle-master/templates/config.php.j2 diff --git a/ansible/roles/ansible-role-moodle-master/.flake8 b/ansible/roles/ansible-role-moodle-master/.flake8 new file mode 100644 index 00000000..ef09bcbe --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/.flake8 @@ -0,0 +1 @@ +[flake8] diff --git a/ansible/roles/ansible-role-moodle-master/.gitignore b/ansible/roles/ansible-role-moodle-master/.gitignore new file mode 100644 index 00000000..5400f2c2 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/.gitignore @@ -0,0 +1,3 @@ +*.retry +.idea/ +*.pyc diff --git a/ansible/roles/ansible-role-moodle-master/.travis.yml b/ansible/roles/ansible-role-moodle-master/.travis.yml new file mode 100644 index 00000000..216147d9 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/.travis.yml @@ -0,0 +1,27 @@ +--- +language: python +services: docker + +env: + global: + - ROLE_NAME: moodle + matrix: + - MOLECULE_DISTRO=centos MOLECULE_DISTRO_VERSION=8 + - MOLECULE_DISTRO=ubuntu MOLECULE_DISTRO_VERSION=1804 + - MOLECULE_DISTRO=debian MOLECULE_DISTRO_VERSION=10 + +before_install: + # Upgrade Docker to work with docker-py. + - curl https://gist.githubusercontent.com/geerlingguy/ce883ad4aec6a5f1187ef93bd338511e/raw/36612d28981d92863f839c5aefe5b7dd7193d6c6/travis-ci-docker-upgrade.sh | sudo bash + +install: + # Install test dependencies. + - pip install molecule===3.0.6 yamllint ansible-lint flake8 nose docker + +script: + # Run tests - default scenario then postgres and update scenarios + - molecule test --all + - nosetests library/test_check_moodle.py + +notifications: + webhooks: https://galaxy.ansible.com/api/v1/notifications/ diff --git a/ansible/roles/ansible-role-moodle-master/.yamllint b/ansible/roles/ansible-role-moodle-master/.yamllint new file mode 100644 index 00000000..a3dbc38e --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/.yamllint @@ -0,0 +1,6 @@ +--- +extends: default +rules: + line-length: + max: 120 + level: warning diff --git a/ansible/roles/ansible-role-moodle-master/LICENSE b/ansible/roles/ansible-role-moodle-master/LICENSE new file mode 100644 index 00000000..8864d4a3 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2017 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/ansible/roles/ansible-role-moodle-master/README.md b/ansible/roles/ansible-role-moodle-master/README.md new file mode 100644 index 00000000..b170da0f --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/README.md @@ -0,0 +1,78 @@ +# Ansible Role: Moodle + +Installs Moodle (3.0+) on RedHat and Debian/Ubuntu servers. +Tested with Ansible 2.5 + +## Requirements + +Needs to be a recent LTS release of Ubuntu or REL which have PHP 7.0+, Apache 2.4 and +Postgres or Mysql installed. + + +## Role Variables + +Available variables are listed below, along with default values (see `defaults/main.yml`): + +## Dependencies + +No dependencies if the host is installed and setup with a LAMP stack +( or similar ) environement. +If you are required to install the full environment, I suggest you check: + - geerlingguy.php (Install of PHP 7.x or earlier) + - geerlingguy.apache (Installation of Apache 2.x) + - geerlingguy.postgresql (Installation of Postgres) + - geerlingguy.mysql (Installatiion of Mysql) + +## Example Playbook + +## License + +MIT / BSD + +## Author Information + +This role was created in 2017 by [Laurent David](https://github.com/laurentdavid), from +[Jeff Geerling](https://www.jeffgeerling.com/) roles templates author of +[Ansible for DevOps](https://www.ansiblefordevops.com/). + +## Testing + +We have used Jeff Geerling's tests as a base, so: + +- Test should run on travis +- Locally you can start the test process using the command + + ./tests/test_local.sh + + The docker instance is destroyed at the end of the test, but you can keep it by setting the + environment variable "cleanup" to "false": + + cleanup="false" ./tests/test_local.sh + +- Once the docker has been launch you can rerun the playbook by running: +```bash + container_id=xxxxyyy + docker exec --tty $container_id env TERM=xterm ansible-playbook /etc/ansible/roles/role_under_test/tests/test.yml +``` + +To test specific playbook such as the check_moodle.py part: + +```bash + container_id=xxxxyyy + docker exec $container_id env TERM=xterm env ANSIBLE_FORCE_COLOR=1 ansible-playbook -i 'localhost,' -M /etc/ansible/roles/role_under_test/library /etc/ansible/roles/role_under_test/tests/test-check-moodle.yml +``` + +Prerequisites are to have docker installed locally. +It will run the tests on postgresql only. More info in the README.md file in the tests folder. + +### Library testing +There is a small module that checks if moodle is installed/configured in the library folder. +More info in the README.md of the library folder. + +## #TODO + +- Tags tasks + - Pure setup without running moodle install (just folders and source code) + - Install with moodle install, + - ... some optional task such as change password, update, dump database, ... + diff --git a/ansible/roles/ansible-role-moodle-master/action_plugins/check_moodle.py b/ansible/roles/ansible-role-moodle-master/action_plugins/check_moodle.py new file mode 100644 index 00000000..99a572e8 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/action_plugins/check_moodle.py @@ -0,0 +1,44 @@ +# coding: utf-8 +# GNU General Public License v3.0+ +# (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) +import os + +from ansible.errors import AnsibleError +from ansible.plugins.action import ActionBase + +TOOL_FILENAME = 'moodletool.php' + + +class ActionModule(ActionBase): + + def run(self, tmp=None, task_vars=None): + ''' handler for transfering the tools ''' + if task_vars is None: + task_vars = dict() + self.TRANSFERS_FILES = True # make sure tmp folder is created first. + super(ActionModule, self).run(tmp, task_vars) + del tmp # tmp no longer has any effect (this is deprecated) + remote_path = os.path.join(self._connection._shell.tmpdir, + TOOL_FILENAME) + tool_path = self._shared_loader_obj.module_loader.find_plugin( + 'check_moodle') + tool_path = os.path.join( + os.path.dirname(tool_path if tool_path else ''), + TOOL_FILENAME) + if os.path.isfile(tool_path): + module_args = dict(self._task.args) + module_args.update({'moodle_tool_path': remote_path}) + self._transfer_file(tool_path, remote_path) + self._cleanup_remote_tmp = False # Do not cleanup the tmp file yet + # If set to true, this will delete the folder before the call to + # the script. + self._fixup_perms2([remote_path, self._connection._shell.tmpdir]) + return_value = self._execute_module(module_name='check_moodle', + module_args=module_args, + task_vars=task_vars) + self.cleanup(True) # Now command is executed we can cleanup + return return_value + else: + raise AnsibleError( + 'Failed to find the tool (%s) on path (%s) to run ' + 'the check_moodle ' % (TOOL_FILENAME, tool_path)) diff --git a/ansible/roles/ansible-role-moodle-master/defaults/main.yml b/ansible/roles/ansible-role-moodle-master/defaults/main.yml new file mode 100644 index 00000000..27df53a1 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/defaults/main.yml @@ -0,0 +1,82 @@ +--- +# Front-end Moodle User (make sure either the webserver can 'login as' this user -for example +# through libapache2-mpm-itk )or use the standard web server user + +moodle_webserver_user: "{{ (ansible_os_family == \"RedHat\") | ternary('apache','www-data') }}" +moodle_webserver_group: "{{ (ansible_os_family == \"RedHat\") | ternary('apache','www-data') }}" + +# The core version you want to use (e.g. 3.2.1, 2.8.4). +moodle_version: "MOODLE_38_STABLE" # Tag or branch name +moodle_git_url: "https://github.com/moodle/moodle" +moodle_git_key_file: "" + +# The path where Moodle will be downloaded and installed and site data directory +# We changed the traditional used /var/www/ to a folder in /srv by default as it seems more in line with the FHS +# http://www.pathname.com/fhs/pub/fhs-2.3.html#SRVDATAFORSERVICESPROVIDEDBYSYSTEM +moodle_src_path: "/srv/moodle/src" + +# Here we have the data that is either clustered or not +# (https://docs.moodle.org/26/en/Server_cluster#Related_config.php_settings) +# We will split the folders into local/and shared data (the folder being shared or not) + +moodle_sitedata: + shared_data_folder: "/srv/moodle/shareddata" + local_data_folder: "/srv/moodle/localdata" + data_dir_name: 'sitedata' + temp_dir_name: 'temp' + cache_dir_name: 'cache' + +# Moodle resulting domain +moodle_domain_name: "moodle.test" +moodle_is_https: false + +# Moodle admin details +moodle_site_admin: + username: "admin" + email: "admin@example.com" + password: "PasswordM00dle%" + +# Moodle database details +moodle_database: + dbtype: "pgsql" + dbhost: "localhost" + dbname: "moodle" + dbuser: "username" + dbpass: "password" + dbprefix: "mdl_" + +# Site Name +moodle_site_fullname: "Moodle Test Site" +moodle_site_shortname: "MTS" + +# Extra configuration parameters + +moodle_extra_conf: + - {name: noemailever, value: 'true'} + - {name: debug, value: '(E_ALL | E_STRICT)'} + +# Additional database options +moodle_extra_db_options: [] + +# If set to no, do not launch setup database/config file +moodle_run_config: true + +shared_drive_subfolder_create: true + +patch_to_apply: [] + +moosh_repository: "https://github.com/call-learning/moosh.git" +moosh_branch: "laurentd/additional-commands" +moosh_install_directory: "/srv/moosh" + +# Moodle cron periodicity in minutes +moodle_cron_periodicity: "5" + +# Should we force update the source code ? +moodle_force_source_update: false + +# Should we also setup Moosh command ? +moodle_setup_moosh: false + +# Should we fetch the source ? +moodle_fetch_source: true diff --git a/ansible/roles/ansible-role-moodle-master/handlers/main.yml b/ansible/roles/ansible-role-moodle-master/handlers/main.yml new file mode 100644 index 00000000..73238b5d --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/handlers/main.yml @@ -0,0 +1,14 @@ +--- +# Handle moodle installation (i.e. the setup process). We assume here that the config.php has been set and is valid +- name: installer + listen: install moodle + include_tasks: commands/moodle-install.yml + +# Handle moodle upgrade if needed +- name: upgrader + listen: upgrade moodle + include_tasks: commands/moodle-update.yml + +- name: Change admin password + listen: reset moodle admin password + include_tasks: commands/moodle-resetpw.yml diff --git a/ansible/roles/ansible-role-moodle-master/library/.gitignore b/ansible/roles/ansible-role-moodle-master/library/.gitignore new file mode 100644 index 00000000..520e21f7 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/library/.gitignore @@ -0,0 +1 @@ +test-check_moodle_input.json diff --git a/ansible/roles/ansible-role-moodle-master/library/README.md b/ansible/roles/ansible-role-moodle-master/library/README.md new file mode 100644 index 00000000..1c5420ff --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/library/README.md @@ -0,0 +1,44 @@ +# Check Moodle state module + +This module is intended to check Moodle state (installed, to be upgraded) so we can take decision regarding +what needs to be done in term of setting it up. + + - name: Check the state of current moodle + check_moodle: + install_dir: "{{ moodle_src_path }}" + register: moodle_state + +The moodle_state will have the following values: + +* msg: an error message if any (this contains the error message sent by moodle, for example if we cannot +connect to existing database) +* code: error code if any (from moodle) +* moodle_needs_upgrading: boolean - moodle needs upgrading +* moodle_is_installed: boolean - moodle is installed (a *valid* config file is there) + +The process can also fail if the PHP CLI command (`php`) does not work or the provided folder is not a moodle folder. + +# Implementation notes + +Here we use the combination of action module (to push the moodletool.php script first) followed +by the usual Ansible module library. +So check_moodle will first call the code in action_plugin/check_moodle.py and then the code in check_moodle.py. + + +## Testing +To test it you need to install nose + + pip install nose + +Then: + + cd library + nosetests -v test_check_moodle.py + +Also you can directly test the script by doing: + + python library/check_moodle.py < library/test-check_moodle_input.json + +If you need to test the action module (that will call this same library module), and in the root folder of this role: + + ANSIBLE_ACTION_PLUGINS=`pwd`/action_plugins ANSIBLE_LIBRARY=`pwd`/library /home/laurentd/.virtualenvs/ansible-role-moodle/bin/ansible -vvv localhost -m check_moodle -a "install_dir=~/websites/htdocs/moodlelatest" diff --git a/ansible/roles/ansible-role-moodle-master/library/check_moodle.py b/ansible/roles/ansible-role-moodle-master/library/check_moodle.py new file mode 100644 index 00000000..48da4771 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/library/check_moodle.py @@ -0,0 +1,78 @@ +#!/usr/bin/env python3 +import json + +from ansible.module_utils._text import to_text +from ansible.module_utils.basic import AnsibleModule + + +def check_php_cli_installed(module): + """ Check if PHP is installed. Process will exit with an error message if + fails (see fail_json). + """ + (rc, returnvalue, returnerr) = module.run_command(["php", "-v"]) + if rc != 0: + retvalue = { + 'failed': True, + 'msg': 'Could not run php cli tool', + 'code': 'moodletoolgeneralerror' + } + module.fail_json(**retvalue) + + +def run_moodle_tool(module, moodle_tool_path, install_dir, + additional_command=None): + """ Check if Moodle is installed and / or configured. + """ + + retvalue = { + 'failed': False, + "msg": None, + "code": None, + 'moodle_is_installed': False, + 'moodle_needs_upgrading': False, + 'current_version': None, + 'current_release': None, + } + + (rc, returnvalue, returnerr) = module.run_command( + ["php", moodle_tool_path, install_dir]) + + if not rc: + return json.loads(returnvalue) + retvalue[ + 'msg'] = 'Could not run the Moodle tool - ' + returnvalue + returnerr + retvalue['failed'] = True + retvalue['code'] = 'moodletoolgeneralerror' + return retvalue + + +def __convert_output(self, output, strip=True): + if strip: + output = output.strip() + try: + output = to_text(output, errors='surrogate_or_strict') + except UnicodeError: + pass + return output + + +def main(): + # Parsing argument file + module = AnsibleModule( + argument_spec=dict( + install_dir=dict(required=True), + moodle_tool_path=dict(required=True) + ), + supports_check_mode=True + ) + install_dir = module.params.get('install_dir') + moodle_tool_path = module.params.get('moodle_tool_path') + check_php_cli_installed(module) # Fails immediately by calling fail_json + retvalue = run_moodle_tool(module, moodle_tool_path, install_dir) + if retvalue and retvalue.get('failed', False): + module.fail_json(**retvalue) + module.exit_json(**retvalue) + + +if __name__ == "__main__": + main() diff --git a/ansible/roles/ansible-role-moodle-master/library/moodletool.php b/ansible/roles/ansible-role-moodle-master/library/moodletool.php new file mode 100644 index 00000000..6fdf7e17 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/library/moodletool.php @@ -0,0 +1,204 @@ +. + +/** + * This is a CLI Script that will allow different actions to be taken or + * to gather information about the current Moodle installation. + * This should not fail and always return the right error message. + * + * @copyright 2020 CALL Learning + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + +define('CLI_SCRIPT', true); + +/** + * Returns cli script parameters. + * This is a copy of the Moodle cli_get_params (and will be updated accordingly). + * The idea here is that we are not sure we have a Moodle accessible somewhere so + * we cannot rely on the inclusion of clilib.php + * + * @param array $longoptions array of --style options ex:('verbose'=>false) + * @param array $shortmapping array describing mapping of short to long style options ex:('h'=>'help', 'v'=>'verbose') + * @return array array of arrays, options, unrecognised as optionlongname=>value + */ +function moodle_cli_get_params(array $longoptions, array $shortmapping = null) { + $shortmapping = (array) $shortmapping; + $options = array(); + $unrecognized = array(); + + if (empty($_SERVER['argv'])) { + // bad luck, we can continue in interactive mode ;-) + return array($options, $unrecognized); + } + $rawoptions = $_SERVER['argv']; + + //remove anything after '--', options can not be there + if (($key = array_search('--', $rawoptions)) !== false) { + $rawoptions = array_slice($rawoptions, 0, $key); + } + + //remove script + unset($rawoptions[0]); + foreach ($rawoptions as $raw) { + if (substr($raw, 0, 2) === '--') { + $value = substr($raw, 2); + $parts = explode('=', $value); + if (count($parts) == 1) { + $key = reset($parts); + $value = true; + } else { + $key = array_shift($parts); + $value = implode('=', $parts); + } + if (array_key_exists($key, $longoptions)) { + $options[$key] = $value; + } else { + $unrecognized[] = $raw; + } + + } else if (substr($raw, 0, 1) === '-') { + $value = substr($raw, 1); + $parts = explode('=', $value); + if (count($parts) == 1) { + $key = reset($parts); + $value = true; + } else { + $key = array_shift($parts); + $value = implode('=', $parts); + } + if (array_key_exists($key, $shortmapping)) { + $options[$shortmapping[$key]] = $value; + } else { + $unrecognized[] = $raw; + } + } else { + $unrecognized[] = $raw; + continue; + } + } + //apply defaults + foreach ($longoptions as $key => $default) { + if (!array_key_exists($key, $options)) { + $options[$key] = $default; + } + } + // finished + return array($options, $unrecognized); +} + +// No error display here. +if (empty($options['debug'])) { + ob_start(); + ini_set('display_errors', '0'); + ini_set('log_errors', 0); + define('NO_DEBUG_DISPLAY', true); // Do not display error on the command line. +} +list($options, $unrecognised) = moodle_cli_get_params([ + 'help' => false, +], [ + 'h' => 'help', +]); + +$cfgpath = './'; +if ($unrecognised) { + $cfgpath = reset($unrecognised); + $cfgpath = rtrim($cfgpath, '/') . '/'; +} + +if (is_file($cfgpath . 'config.php')) { + include_once($cfgpath . 'config.php'); +} + +$usage = "Moodle php tool to check and do various actions in conjunction with ansible (see ansible-role-moodle) + +Usage: + # php moodletool.php PATH + # php moodletool.php [--help|-h] + +Options: + -h --help Print this help. + --config-set|-c Set the 'config configname','configvalue' + PATH Current installation path. If not provided this will be considered to be the current directory. + +Without argument this will just return a json encoded string that represents the state of the moodle installation. +This will be an json object with the following values: +{ + 'failed': [True or false], + 'msg': [Text message if failed], // Optional + 'code': [Error code if failed], // Optional + 'current_version': [Current Moodle version], // Optional + 'moodle_is_installed': [true or false], + 'moodle_needs_upgrading': [true or false], +} + +Other commands might return a different set of values, but failed, msg and code are +pretty much always there. +In the read mode, the script exits with success status 0 even if we have not found +the config file (config.php). +In case of unexpected error, the script exits with error status 1. + +Examples: + + # php moodletool.php + Return the basic information regarding the current moodle installation + + # php moodletool.php /my/installation/path + Same as above but will look into the installation path provided. +"; + +$returnvalue = []; +if (!isset($CFG) || empty($CFG->version)) { + if (is_file($cfgpath . 'config-dist.php')) { + $returnvalue = [ + 'failed' => false, + 'msg' => 'Moodle config.php file not found on :' . $cfgpath, + 'moodle_is_installed' => false, + ]; + } else { + $returnvalue = + [ + 'failed' => true, + 'msg' => 'No Moodle installation on :' . $cfgpath, + 'code' => 'moodlesourcenotfound' + ]; + } +} else { + // Now we have access to the full clilib.php + require_once($CFG->libdir . '/clilib.php'); + require_once($CFG->libdir . '/adminlib.php'); + require_once($CFG->libdir . '/upgradelib.php'); // general upgrade/install related functions + require_once($CFG->libdir . '/environmentlib.php'); + $moodleneedsupgrade = intval(moodle_needs_upgrading()); + + if ($options['help']) { + cli_write($usage); + exit(0); + } + if (!$returnvalue) { + $returnvalue = [ + 'failed' => false, + 'current_version' => $CFG->version, + 'current_release' => $CFG->release, + 'moodle_is_installed' => true, + 'moodle_needs_upgrading' => $moodleneedsupgrade, + ]; + } +} +if (empty($options['debug'])) { + ob_clean(); +} +echo json_encode($returnvalue); diff --git a/ansible/roles/ansible-role-moodle-master/library/test-check_moodle_input.json.sample b/ansible/roles/ansible-role-moodle-master/library/test-check_moodle_input.json.sample new file mode 100644 index 00000000..4237aa72 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/library/test-check_moodle_input.json.sample @@ -0,0 +1,6 @@ +{ + "ANSIBLE_MODULE_ARGS": { + "install_dir": "INSTALLDIR", + "moodle_tool_path": "library/moodletool.php" + } +} diff --git a/ansible/roles/ansible-role-moodle-master/library/test_check_moodle.py b/ansible/roles/ansible-role-moodle-master/library/test_check_moodle.py new file mode 100644 index 00000000..a2c22225 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/library/test_check_moodle.py @@ -0,0 +1,57 @@ +from unittest.mock import Mock + +from nose.tools import assert_true + +from library.check_moodle import check_php_cli_installed, run_moodle_tool + +USUAL_ANSWERS = { + 'installed php -v': + (0, 'PHP 7.2.28-3+ubuntu16.04.1+deb.sury.org+1', ''), + 'non-installed php -v': + (127, '', 'bash: php : commande introuvable'), + 'php /tmp/moodletool.php': (0, + '{' + '"failed": false,' + '"msg": null,' + '"code": null,' + '"moodle_is_installed": true,' + '"moodle_needs_upgrading": false,' + '"current_version": "3.8.4",' + '"current_release": "3.8"' + '}', '') +} + + +def test_check_php_cli_installed_ok(): + ansible_module = Mock() + ansible_module.run_command = \ + Mock(return_value=USUAL_ANSWERS['installed php -v']) + check_php_cli_installed(ansible_module) + ansible_module.fail_json.assert_not_called() + + +def test_check_php_cli_installed_no_ok(): + ansible_module = Mock() + ansible_module.run_command = \ + Mock(return_value=USUAL_ANSWERS['non-installed php -v']) + check_php_cli_installed(ansible_module) + ansible_module.fail_json.assert_called() + + +def test_check_moodle(): + ansible_module = Mock() + ansible_module.run_command = \ + Mock(return_value=USUAL_ANSWERS['php /tmp/moodletool.php']) + retvalue = run_moodle_tool(ansible_module, '/tmp/moodletool.php', '/tmp') + expectedvalue = { + 'failed': False, + "msg": None, + "code": None, + 'moodle_is_installed': True, + 'moodle_needs_upgrading': False, + 'current_version': '3.8.4', + 'current_release': '3.8', + } + assert_true( + retvalue == expectedvalue + ) diff --git a/ansible/roles/ansible-role-moodle-master/meta/main.yml b/ansible/roles/ansible-role-moodle-master/meta/main.yml new file mode 100644 index 00000000..ed9e1368 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/meta/main.yml @@ -0,0 +1,25 @@ +--- +dependencies: [] + +galaxy_info: + author: laurentdavid + description: Moodle CentOS/Debian/Ubuntu. + company: "CALL Learning" + license: "license (BSD, MIT)" + min_ansible_version: 2.8 + platforms: + - name: Debian + versions: + - buster + - name: Ubuntu + versions: + - bionic + - name: EL + versions: + - 8 + galaxy_tags: + - development + - web + - php + - language + - moodle diff --git a/ansible/roles/ansible-role-moodle-master/molecule/README.md b/ansible/roles/ansible-role-moodle-master/molecule/README.md new file mode 100644 index 00000000..491bc42a --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/README.md @@ -0,0 +1,11 @@ +## Additional testing through localhost + + +As we have several scripts that would need to be tested locally in development +mode, here are a few tips on how to launch them on a local install. + +Test the check_moodle plugin: + +`` +ANSIBLE_ACTION_PLUGINS=`pwd`/action_plugins ANSIBLE_LIBRARY=`pwd/library` ansible -vvv localhost -m check_moodle -a "install_dir=~/websites/htdocs/moodlelatest" +`` diff --git a/ansible/roles/ansible-role-moodle-master/molecule/default/README.md b/ansible/roles/ansible-role-moodle-master/molecule/default/README.md new file mode 100644 index 00000000..633c5c9a --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/default/README.md @@ -0,0 +1,53 @@ +# Ansible Role tests + +This now uses Molecule. You need to install it and all dependencies to be able to +run the tests. +Images are now based upon prebuilt PHP/MySQL images so to speed up the test process. + +We use molecule 3.x version. + +```bash + pip uninstall -y docker docker-py + pip install molecule ansible-lint docker flake8 yamllint +``` + + +To launch the test do: + +```bash + molecule test +``` + + +## Checking the container + + +```bash + molecule converge + molecule login +``` + + +## Possible issues + +### Local testing and apparmor on ubuntu + +I stumbled on an issue with apparmor and mysql that prevents mysql from accessing /etc/mysql/conf.d +("mysqld: Can't read dir of '/etc/mysql/conf.d/' (Errcode: 13 - Permission denied)"). + +It seems that it is a recuring issue with apparmor and docker on priviledged instances (--priviledged). +Seems that it works on the travis-ci environment without an issue but the local test systematically +fails at this stage. +It seems from the logs that apparmors tries to read a file on the /var/lib/overlay2 (overlay filesystem) +that is not mounted on the guest OS. + +I posted an issue on the main mysql role here: https://github.com/geerlingguy/ansible-role-mysql/issues/263 + +Looking at similar issue from other users + +Some more info: + + - https://github.com/moby/moby/issues/5490 + - https://blogs.oracle.com/jsmyth/apparmor-and-mysql + - https://github.com/moby/moby/issues/7512#issuecomment-51845976 + diff --git a/ansible/roles/ansible-role-moodle-master/molecule/default/converge.yml b/ansible/roles/ansible-role-moodle-master/molecule/default/converge.yml new file mode 100644 index 00000000..917d7f26 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/default/converge.yml @@ -0,0 +1,12 @@ +--- + +- name: Converge + hosts: all + become: true + + vars_files: + - vars.yml + - vars-db.yml + + roles: + - name: ansible-role-moodle diff --git a/ansible/roles/ansible-role-moodle-master/molecule/default/molecule.yml b/ansible/roles/ansible-role-moodle-master/molecule/default/molecule.yml new file mode 100644 index 00000000..2a7cc9a8 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/default/molecule.yml @@ -0,0 +1,27 @@ +--- +dependency: + name: galaxy +driver: + name: docker +lint: | + yamllint . + ansible-lint . + flake8 +platforms: + - name: instance + image: "calllearning/${MOLECULE_DISTRO:-ubuntu}-mysql-moodle-ansible:${MOLECULE_DISTRO_VERSION:-1804}" + command: ${MOLECULE_DOCKER_COMMAND:-""} + volumes: + - /sys/fs/cgroup:/sys/fs/cgroup:ro + privileged: true + pre_build_image: true + etc_hosts: "{'moodle.test': '127.0.0.1'}" +provisioner: + name: ansible + log: true + playbooks: + converge: ${MOLECULE_PLAYBOOK:-converge.yml} +scenario: + name: default +verifier: + name: ansible diff --git a/ansible/roles/ansible-role-moodle-master/molecule/default/tools/check-exists.yml b/ansible/roles/ansible-role-moodle-master/molecule/default/tools/check-exists.yml new file mode 100644 index 00000000..98c6b507 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/default/tools/check-exists.yml @@ -0,0 +1,8 @@ +--- + +- name: Check {{ item }} + stat: path="{{ item }}" + register: stats_result + +- name: Asserting "{{ item }}" exists + assert: {that: "'exists' in stats_result.stat"} diff --git a/ansible/roles/ansible-role-moodle-master/molecule/default/tools/playbook-test-check-moodle.yml b/ansible/roles/ansible-role-moodle-master/molecule/default/tools/playbook-test-check-moodle.yml new file mode 100644 index 00000000..7401364d --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/default/tools/playbook-test-check-moodle.yml @@ -0,0 +1,13 @@ +--- + +# You can run this script by providing this playbook and the value of a real moodle install + +- hosts: localhost + gather_facts: true + connection: local + + tasks: + - name: Check the state of current moodle + check_moodle: + install_dir: "/srv/moodle/src" + register: moodle_state diff --git a/ansible/roles/ansible-role-moodle-master/molecule/default/tools/playbook-test-handlers.yml b/ansible/roles/ansible-role-moodle-master/molecule/default/tools/playbook-test-handlers.yml new file mode 100644 index 00000000..daf5e3a3 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/default/tools/playbook-test-handlers.yml @@ -0,0 +1,20 @@ +--- +- hosts: all + + vars_files: + - vars.yml + - vars-db.yml + + roles: + - role_under_test + + tasks: + - name: Trigger installation + command: /bin/true + notify: install moodle + changed_when: false + + - name: Trigger installation + command: /bin/true + notify: update moodle + changed_when: false diff --git a/ansible/roles/ansible-role-moodle-master/molecule/default/vars-db.yml b/ansible/roles/ansible-role-moodle-master/molecule/default/vars-db.yml new file mode 100644 index 00000000..abfbaa0e --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/default/vars-db.yml @@ -0,0 +1,26 @@ +--- +# Moodle database details +moodle_database: + dbtype: "mariadb" + dbhost: "localhost" + dbname: "moodle" + dbuser: "username" + dbpass: "password" + dbprefix: "mdl_" + +# Database details +mysql_enablerepo: "remi" + +mysql_databases: + - name: "{{ moodle_database.dbname }}" + encoding: UTF8 + collation: utf8_general_ci + +mysql_users: + - name: "{{ moodle_database.dbuser }}" + host: "%" + password: "{{ moodle_database.dbpass }}" + priv: "{{ moodle_database.dbname }}.*:ALL" + +dbengine: "mysql" +# mysql_root_password_update: true diff --git a/ansible/roles/ansible-role-moodle-master/molecule/default/vars.yml b/ansible/roles/ansible-role-moodle-master/molecule/default/vars.yml new file mode 100644 index 00000000..f3f144e7 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/default/vars.yml @@ -0,0 +1,26 @@ +--- +php_enable_webserver: false +php_version: '7.2' +php_enable_php_fpm: true +php_fpm_listen: "127.0.0.1:9000" +mysql_python_package_debian: python3-mysqldb + + +apache_mods_enabled: + - expires.load + - ssl.load + - rewrite.load + - proxy.load + - proxy_fcgi.load +apache_remove_default_vhost: true +apache_vhosts: + - servername: "{{ moodle_domain_name }}" + serveralias: "www.{{ moodle_domain_name }}" + documentroot: "{{ moodle_src_path }}" + extra_parameters: | + + SetHandler "proxy:fcgi://{{ php_fpm_listen }}" + + +# Moodle Version +moodle_version: "v3.8.2" diff --git a/ansible/roles/ansible-role-moodle-master/molecule/default/verify.yml b/ansible/roles/ansible-role-moodle-master/molecule/default/verify.yml new file mode 100644 index 00000000..5f249205 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/default/verify.yml @@ -0,0 +1,53 @@ +--- + +- name: Verify + hosts: all + become: true + + vars: + files_to_check: + - "{{ moodle_src_path }}" + - "{{ moodle_dataroot }}" + - "{{ moodle_localcachedir }}" + - "{{ moodle_tempdir }}" + - "{{ moodle_sharedcachedir }}" + - "{{ moodle_src_path }}/config.php" + vars_files: + - vars.yml + - vars-db.yml + + pre_tasks: + - name: Import Moodle PHP Setup role to set the web server config + import_role: + name: ansible-role-moodle + tasks_from: configure-vars.yml + + tasks: + - name: Check that all directories and files have been created + include_tasks: tools/check-exists.yml + loop: "{{ files_to_check }}" + + - name: Get Moodle current configuration + check_moodle: + install_dir: "{{ moodle_src_path }}" + become: true + become_user: "{{ moodle_webserver_user }}" + register: moodle_state + + - name: Check that Moodle is installed + assert: + that: moodle_state.moodle_is_installed + + - name: Check that Moodle has the right version + assert: + that: + - "moodle_state.current_release == '3.8.2 (Build: 20200309)'" + + - name: Get the site frontpage + action: uri url=http://moodle.test return_content=yes + register: webpage + + - name: Check that the page contains + assert: + that: + - "'

Moodle Test Site

' in webpage.content" diff --git a/ansible/roles/ansible-role-moodle-master/molecule/postgres/converge.yml b/ansible/roles/ansible-role-moodle-master/molecule/postgres/converge.yml new file mode 100644 index 00000000..55bbeff3 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/postgres/converge.yml @@ -0,0 +1,11 @@ +--- + +- name: Converge + hosts: all + become: true + + vars_files: + - ../default/vars.yml + - vars-db.yml + roles: + - name: ansible-role-moodle diff --git a/ansible/roles/ansible-role-moodle-master/molecule/postgres/molecule.yml b/ansible/roles/ansible-role-moodle-master/molecule/postgres/molecule.yml new file mode 100644 index 00000000..0365ffb0 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/postgres/molecule.yml @@ -0,0 +1,33 @@ +--- +dependency: + name: galaxy +driver: + name: docker +platforms: + - name: instanceposgres + image: "calllearning/${MOLECULE_DISTRO:-ubuntu}-postgres-moodle-ansible:${MOLECULE_DISTRO_VERSION:-1804}" + command: ${MOLECULE_DOCKER_COMMAND:-""} + volumes: + - /sys/fs/cgroup:/sys/fs/cgroup:ro + privileged: true + pre_build_image: true + etc_hosts: "{'moodlepg.test': '127.0.0.1'}" +provisioner: + name: ansible + log: true + playbooks: + converge: ${MOLECULE_PLAYBOOK:-converge.yml} +scenario: + name: postgres + test_sequence: # Remove idempotence and side effect tests to make build a bit faster + - dependency + - cleanup + - destroy + - create + - prepare + - converge + - verify + - cleanup + - destroy +verifier: + name: ansible diff --git a/ansible/roles/ansible-role-moodle-master/molecule/postgres/vars-db.yml b/ansible/roles/ansible-role-moodle-master/molecule/postgres/vars-db.yml new file mode 100644 index 00000000..94d14a49 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/postgres/vars-db.yml @@ -0,0 +1,27 @@ +--- +# Moodle database details +moodle_database: + dbtype: "pgsql" + dbhost: "localhost" + dbname: "moodle" + dbuser: "username" + dbpass: "password" + dbprefix: "mdl_" + +# Moodle Version +moodle_version: "v3.8.2" +moodle_domain_name: "moodlepg.test" + +# As the playbook create the user first, we need to do that in this order +postgresql_users: + - name: "{{ moodle_database.dbuser }}" + password: "{{ moodle_database.dbpass }}" + +postgresql_databases: + - name: "{{ moodle_database.dbname }}" + owner: "{{ moodle_database.dbuser }}" +# Here we drop the collation info as it is an issue with CentOS/Redhat images for testing. +# TODO: find a way to install them in CENTOS 8 +# https://github.com/geerlingguy/ansible-role-postgresql/blob/master/molecule/default/converge.yml + +dbengine: "postgres" diff --git a/ansible/roles/ansible-role-moodle-master/molecule/postgres/verify.yml b/ansible/roles/ansible-role-moodle-master/molecule/postgres/verify.yml new file mode 100644 index 00000000..b921698f --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/postgres/verify.yml @@ -0,0 +1,53 @@ +--- + +- name: Verify + hosts: all + become: true + + vars: + files_to_check: + - "{{ moodle_src_path }}" + - "{{ moodle_dataroot }}" + - "{{ moodle_localcachedir }}" + - "{{ moodle_tempdir }}" + - "{{ moodle_sharedcachedir }}" + - "{{ moodle_src_path }}/config.php" + vars_files: + - ../default/vars.yml + - vars-db.yml + + pre_tasks: + - name: Import Moodle PHP Setup role to set the web server config + import_role: + name: ansible-role-moodle + tasks_from: configure-vars.yml + + tasks: + - name: Check that all directories and files have been created + include_tasks: ../default/tools/check-exists.yml + loop: "{{ files_to_check }}" + + - name: Get Moodle current configuration + check_moodle: + install_dir: "{{ moodle_src_path }}" + become: true + become_user: "{{ moodle_webserver_user }}" + register: moodle_state + + - name: Check that Moodle is installed + assert: + that: moodle_state.moodle_is_installed + + - name: Check that Moodle has the right version + assert: + that: + - "moodle_state.current_release == '3.8.2 (Build: 20200309)'" + + - name: Get the site frontpage + action: uri url=http://moodlepg.test return_content=yes + register: webpage + + - name: Check that the page contains + assert: + that: + - "'

Moodle Test Site

' in webpage.content" diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/.gitignore b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/.gitignore new file mode 100644 index 00000000..f9da32b8 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/.gitignore @@ -0,0 +1 @@ +roles diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/Makefile b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/Makefile new file mode 100644 index 00000000..218c55ac --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/Makefile @@ -0,0 +1,18 @@ +# Makefile to build the given image +.DEFAULT_GOAL := build + +DBFLAVORS=mysql postgres + +build: + for DBFLAVOR in $(DBFLAVORS); \ + do \ + packer build -var-file=./vars/centos8.vars.json -var="docker_image_dbflavor=$$DBFLAVOR" moodle-ami.json ; \ + packer build -var-file=./vars/ubuntu1804.vars.json -var="docker_image_dbflavor=$$DBFLAVOR" moodle-ami.json ; \ + packer build -var-file=./vars/debian10.vars.json -var="docker_image_dbflavor=$$DBFLAVOR" moodle-ami.json ; \ + done + +push: + for IMAGE in `docker image ls calllearning/*-moodle-ansible --format "{{.Repository}}"`; \ + do \ + docker push $$IMAGE; \ + done diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/README.md b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/README.md new file mode 100644 index 00000000..4729ea0c --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/README.md @@ -0,0 +1,37 @@ +Packer for Moodle Ansible role testing +-- + +The Ansible role test (molecule) is quite lenghtly because of the sheer amount of dependencies to install (apache, +mysql, php, ...). We can reduce drastically the testing time by pre-building the OS images and then just running +the relevant ansible role. +This series of script will use Harshicorp Packer (https://www.packer.io/) to build the relevant image and then +push it to our CALL Learning docker repository. The images built are based on Jeff Geerling base images ( +geerlingguy/docker-xxx) so we can then easily run ansible on them. + + +Ansible version details +== +The required version of ansible is at least 2.9.6, on which all playbook have been tested + +Building the image +== +This is the command to launch the build on docker: + + make build + +This will generate several docker images for each distribution and database engine + +Variables +== + +Note +== + +The run command had to be modified to take into account: +* Local docker build with ansible: + * https://www.packer.io/docs/provisioners/ansible.html#docker + * Remove the /bin/bash at the end so we run the docker systemd daemon for centos/debian +* Add the link to /sys/fs/cgroup and --privileged +* Packer will rebuild the image but will not copy the VOLUME and CMD info from docker so +we need to add it again. + diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/playbook-mysql.yml b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/playbook-mysql.yml new file mode 100644 index 00000000..7d450617 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/playbook-mysql.yml @@ -0,0 +1,29 @@ +--- + +- name: Prebuild Image - Mysql + hosts: all + become: true + + vars_files: + - ../../../defaults/main.yml + - vars.yml + - vars-mysql.yml + + pre_tasks: + - name: Import Moodle PHP Setup role to set the web server config + include_tasks: ../../../tasks/phpsql-setup.yml + tags: install + roles: + - role: geerlingguy.repo-remi + when: ansible_os_family == 'RedHat' + # Database install + - name: geerlingguy.mysql + # Then apache + - geerlingguy.apache + - geerlingguy.php-versions + - geerlingguy.php + # Then PHP Database libraries + - name: geerlingguy.php-mysql + # Other dependencies such as composer + - name: geerlingguy.composer + - name: geerlingguy.git diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/playbook-postgres.yml b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/playbook-postgres.yml new file mode 100644 index 00000000..85119215 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/playbook-postgres.yml @@ -0,0 +1,41 @@ +--- + +- name: Prebuild Image - Postgres + hosts: all + become: true + + vars_files: + - ../../../defaults/main.yml + - vars.yml + - vars-postgres.yml + + pre_tasks: + - name: Import Moodle PHP Setup role to set the web server config + # Include here and not import as we need the variable values for the rest of the script + include_tasks: ../../../tasks/phpsql-setup.yml + tags: install + # The Fedora 30+ container images have only C.UTF-8 installed + - name: Set database locale if using Fedora 30+ or RedHat 8+ + set_fact: + postgresql_databases: + - name: "{{ moodle_database.dbname }}" + owner: "{{ moodle_database.dbuser }}" + lc_collate: 'C.UTF-8' + lc_ctype: 'C.UTF-8' + when: + - ( ansible_distribution == 'Fedora' and ansible_distribution_major_version >= '30') or + ( ansible_os_family == 'RedHat' and ansible_distribution_major_version == '8') + roles: + - role: geerlingguy.repo-remi + when: ansible_os_family == 'RedHat' + # Database install + - name: geerlingguy.postgresql + # Then apache + - geerlingguy.apache + - geerlingguy.php-versions + - geerlingguy.php + # Then PHP Database libraries + - name: geerlingguy.php-pgsql + # Other dependencies such as composer + - name: geerlingguy.composer + - name: geerlingguy.git diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars-mysql.yml b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars-mysql.yml new file mode 100644 index 00000000..937a4358 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars-mysql.yml @@ -0,0 +1,16 @@ +--- +# Database details +mysql_enablerepo: "remi" + +mysql_databases: + - name: "moodle" + encoding: UTF8 + collation: utf8_general_ci + +mysql_users: + - name: "username" + host: "%" + password: "password" + priv: "moodle.*:ALL" + +dbengine: mysql diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars-postgres.yml b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars-postgres.yml new file mode 100644 index 00000000..afcee1aa --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars-postgres.yml @@ -0,0 +1,14 @@ +--- +# As the playbook create the user first, we need to do that in this order +postgresql_users: + - name: "username" + password: "password" + +postgresql_databases: + - name: "moodle" + owner: "username" +# Here we drop the collation info as it is an issue with CentOS/Redhat images for testing. +# TODO: find a way to install them in CENTOS 8 +# https://github.com/geerlingguy/ansible-role-postgresql/blob/master/molecule/default/converge.yml + +dbengine: postgres diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars.yml b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars.yml new file mode 100644 index 00000000..d690a132 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars.yml @@ -0,0 +1,23 @@ +--- +php_enable_webserver: false +php_version: '7.2' +php_enable_php_fpm: true +php_fpm_listen: "127.0.0.1:9000" +mysql_python_package_debian: python3-mysqldb + + +apache_mods_enabled: + - expires.load + - ssl.load + - rewrite.load + - proxy.load + - proxy_fcgi.load +apache_remove_default_vhost: true +apache_vhosts: + - servername: "{{ moodle_domain_name }}" + serveralias: "www.{{ moodle_domain_name }}" + documentroot: "{{ moodle_src_path }}" + extra_parameters: | + + SetHandler "proxy:fcgi://{{ php_fpm_listen }}" + diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/moodle-ami.json b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/moodle-ami.json new file mode 100644 index 00000000..31ea6ad3 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/moodle-ami.json @@ -0,0 +1,49 @@ +{ + "variables": { + "full_image_version": "{{ user `docker_image_type` }}{{ user `docker_image_version` }}", + "ansible_host": "default", + "ansible_connection": "docker" + }, + "builders": [ + { + "type": "docker", + "image": "geerlingguy/docker-{{ user `full_image_version` }}-ansible:latest", + "run_command": [ + "-d", + "-i", + "-t", + "-v", + "/sys/fs/cgroup:/sys/fs/cgroup:ro", + "--privileged", + "--name", + "{{user `ansible_host`}}", + "{{.Image}}" + ], + "commit": true, + "changes": [ + "VOLUME [{{ user `changes_volumes` }}]", + "CMD [\"{{ user `changes_cmd` }}\"]" + ] + + } + ], + "provisioners": [ + { + "type": "ansible", + "playbook_file": "ansible/playbook-{{ user `docker_image_dbflavor` }}.yml", + "user": "root", + "extra_arguments": [ + "--extra-vars", + "ansible_host={{user `ansible_host`}} ansible_connection={{user `ansible_connection`}}" + ], + "galaxy_file": "./requirements.yml" + } + ], + "post-processors": [ + { + "type": "docker-tag", + "repository": "calllearning/{{ user `docker_image_type` }}-{{ user `docker_image_dbflavor` }}-moodle-ansible", + "tags": "{{ user `docker_image_version` }}" + } + ] +} diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/requirements.yml b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/requirements.yml new file mode 100644 index 00000000..65f5f049 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/requirements.yml @@ -0,0 +1,12 @@ +--- +- src: geerlingguy.repo-remi +- src: geerlingguy.apache +- src: geerlingguy.apache-php-fpm +- src: geerlingguy.postgresql +- src: geerlingguy.mysql +- src: geerlingguy.php +- src: geerlingguy.php-versions +- src: geerlingguy.php-pgsql +- src: geerlingguy.php-mysql +- src: geerlingguy.git +- src: geerlingguy.composer diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/centos8.vars.json b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/centos8.vars.json new file mode 100644 index 00000000..ecdeada2 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/centos8.vars.json @@ -0,0 +1,6 @@ +{ + "docker_image_type": "centos", + "docker_image_version": "8", + "changes_volumes": "\"/sys/fs/cgroup\"", + "changes_cmd": "/usr/lib/systemd/systemd" +} diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/debian10.vars.json b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/debian10.vars.json new file mode 100644 index 00000000..bd5f3918 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/debian10.vars.json @@ -0,0 +1,6 @@ +{ + "docker_image_type": "debian", + "docker_image_version": "10", + "changes_volumes": "\"/sys/fs/cgroup\"", + "changes_cmd": "/lib/systemd/systemd" +} diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/ubuntu1804.vars.json b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/ubuntu1804.vars.json new file mode 100644 index 00000000..d38e98b8 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/ubuntu1804.vars.json @@ -0,0 +1,6 @@ +{ + "docker_image_type": "ubuntu", + "docker_image_version": "1804", + "changes_volumes": "\"/sys/fs/cgroup\", \"/tmp\", \"/run\"", + "changes_cmd": "/lib/systemd/systemd" +} diff --git a/ansible/roles/ansible-role-moodle-master/molecule/update/converge.yml b/ansible/roles/ansible-role-moodle-master/molecule/update/converge.yml new file mode 100644 index 00000000..33237a24 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/update/converge.yml @@ -0,0 +1,41 @@ +--- + +- name: Converge + hosts: all + become: true + + vars_files: + - ../default/vars.yml + - ../default/vars-db.yml + vars: + moodle_domain_name: "moodleupdate.test" # We override this for the test + + pre_tasks: + - name: Import Moodle PHP Setup role to set the web server config + import_role: + name: ansible-role-moodle + tasks_from: phpsql-setup + tags: install + - name: Set Moodle version to 3.8.1 to update it later + set_fact: + moodle_version: "v3.8.1" + roles: + # Finally the role under test + - name: ansible-role-moodle + tasks: + - name: Check the state of current moodle + check_moodle: + install_dir: "{{ moodle_src_path }}" + become: true + become_user: "{{ moodle_webserver_user }}" + register: moodle_state_v381 + - name: Check the version of moodle is the right one + assert: + that: + - "moodle_state_v381.current_release == '3.8.1 (Build: 20200113)'" + - "not moodle_state_v381.moodle_needs_upgrading|bool" + - name: Update moodle to v3.8.2 + include_role: + name: ansible-role-moodle + vars: + moodle_version: "v3.8.2" diff --git a/ansible/roles/ansible-role-moodle-master/molecule/update/molecule.yml b/ansible/roles/ansible-role-moodle-master/molecule/update/molecule.yml new file mode 100644 index 00000000..ea8adb34 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/update/molecule.yml @@ -0,0 +1,33 @@ +--- +dependency: + name: galaxy +driver: + name: docker +platforms: + - name: instanceupdate + image: "calllearning/${MOLECULE_DISTRO:-ubuntu}-mysql-moodle-ansible:${MOLECULE_DISTRO_VERSION:-1804}" + command: ${MOLECULE_DOCKER_COMMAND:-""} + volumes: + - /sys/fs/cgroup:/sys/fs/cgroup:ro + privileged: true + pre_build_image: true + etc_hosts: "{'moodleupdate.test': '127.0.0.1'}" +provisioner: + name: ansible + log: true + playbooks: + converge: ${MOLECULE_PLAYBOOK:-converge.yml} +scenario: + name: update + test_sequence: # Remove idempotence and side effect tests to make build a bit faster + - dependency + - cleanup + - destroy + - create + - prepare + - converge + - verify + - cleanup + - destroy +verifier: + name: ansible diff --git a/ansible/roles/ansible-role-moodle-master/molecule/update/verify.yml b/ansible/roles/ansible-role-moodle-master/molecule/update/verify.yml new file mode 100644 index 00000000..fc6b47ec --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule/update/verify.yml @@ -0,0 +1,47 @@ +--- + +- name: Verify + hosts: all + become: true + + vars: + files_to_check: + - "{{ moodle_src_path }}" + - "{{ moodle_dataroot }}" + - "{{ moodle_localcachedir }}" + - "{{ moodle_tempdir }}" + - "{{ moodle_sharedcachedir }}" + - "{{ moodle_src_path }}/config.php" + moodle_domain_name: "moodleupdate.test" # We override this for the test + vars_files: + - ../default/vars.yml + - ../default/vars-db.yml + + pre_tasks: + - name: Import Moodle PHP Setup role to set the web server config + import_role: + name: ansible-role-moodle + tasks_from: configure-vars.yml + + tasks: + - name: Check the state of current moodle + check_moodle: + install_dir: "{{ moodle_src_path }}" + become: true + become_user: "{{ moodle_webserver_user }}" + register: moodle_state + + - name: Check the version of moodle is the right one + assert: + that: + - "moodle_state.current_release == '3.8.2 (Build: 20200309)'" + - "not moodle_state.moodle_needs_upgrading|bool" + + - name: Get the site frontpage + action: uri url=http://moodleupdate.test return_content=yes + register: webpage + + - name: Check that the page contains + assert: + that: + - "'

Moodle Test Site

' in webpage.content" diff --git a/ansible/roles/ansible-role-moodle-master/molecule_test_local.sh b/ansible/roles/ansible-role-moodle-master/molecule_test_local.sh new file mode 100755 index 00000000..b1636b39 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/molecule_test_local.sh @@ -0,0 +1,22 @@ +#!/bin/bash +# Disable apparmor for mysqld as it creates issue at install (https://github.com/moby/moby/issues/7276#issuecomment-68827244) +if [[ "$distro" =~ ^(ubuntu1[6-8]04|debian9)$ ]] && [ -f /etc/lsb-release ] && [ /etc/apparmor.d/usr.sbin.mysqld ]; then + source /etc/lsb-release + if [ $DISTRIB_ID = 'Ubuntu' ]; then + printf "Disabling apparmor for mysql" + [ -f /etc/apparmor.d/disable/usr.sbin.mysqld ] || sudo ln -s /etc/apparmor.d/usr.sbin.mysqld /etc/apparmor.d/disable/ + sudo apparmor_parser -R /etc/apparmor.d/usr.sbin.mysqld || true + sudo aa-status + fi +fi + +molecule check + +if [[ "$distro" =~ ^(ubuntu1[6-8]04|debian9)$ ]] && [ -f /etc/lsb-release ] && [ /etc/apparmor.d/usr.sbin.mysqld ]; then + if [ $DISTRIB_ID = 'Ubuntu' ]; then + printf "Enabling apparmor for mysql again" + sudo rm /etc/apparmor.d/disable/usr.sbin.mysqld || true + sudo apparmor_parser -r /etc/apparmor.d/usr.sbin.mysqld || true + sudo aa-status + fi +fi diff --git a/ansible/roles/ansible-role-moodle-master/patches/aurora.patch b/ansible/roles/ansible-role-moodle-master/patches/aurora.patch new file mode 100644 index 00000000..f61fecb8 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/patches/aurora.patch @@ -0,0 +1,20 @@ +diff --git a/lib/dml/mysqli_native_moodle_database.php b/lib/dml/mysqli_native_moodle_database.php +index 05c6c43..2b9351a 100644 +--- a/lib/dml/mysqli_native_moodle_database.php ++++ b/lib/dml/mysqli_native_moodle_database.php +@@ -347,6 +347,15 @@ class mysqli_native_moodle_database extends moodle_database { + * @return bool true if table can be created or changed to compressed row format. + */ + public function is_compressed_row_format_supported($cached = true) { ++ // START: Patch for Aurora Mysql to avoid issue at install ++ // See https://tracker.moodle.org/browse/MDL-58931 ++ if ( isset($this->dboptions['disablecompressedrowformat']) ++ && $this->dboptions['disablecompressedrowformat'] ) { ++ $this->compressedrowformatsupported = false; ++ return false; ++ } ++ // END: Patch for Aurora Mysql to avoid issue at install ++ + if ($cached and isset($this->compressedrowformatsupported)) { + return($this->compressedrowformatsupported); + } diff --git a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-bootstrapsolr.yml b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-bootstrapsolr.yml new file mode 100644 index 00000000..8c5a1d97 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-bootstrapsolr.yml @@ -0,0 +1,11 @@ +--- + +- name: Bootstrap Solr + command: chdir="{{ moodle_src_path }}" {{ item }} + # The commands here are availble since MOODLE 3.2 + loop: + - php search/cli/indexer.php --force + - php admin/tool/task/cli/schedule_task.php --execute=\\core\\task\\search_index_task + become: true + become_user: "{{ moodle_webserver_user }}" + changed_when: false diff --git a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-datadump.yml b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-datadump.yml new file mode 100644 index 00000000..83f03693 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-datadump.yml @@ -0,0 +1,88 @@ +--- + +- name: Install necessary packages to do the dump (Postgres) + apt: + pkg: + - postgresql-client + - python-psycopg2 + - libpq-dev + state: present + when: ansible_distribution == 'Debian' and dbengine == 'postgres' + +- name: Install necessary packages to do the dump (Postgres) + yum: + name: + - postgresql-lib + - postgresql-devel + state: present + when: ansible_distribution == 'Redhat' and dbengine == 'postgres' + +- name: Install necessary packages to do the dump (Mysql) + apt: + pkg: + - python-pymysql + state: present + when: ansible_distribution == 'Debian' and dbengine == 'mysql' + +- name: Install necessary packages to do the dump (Mysql) + yum: + name: + - python2-PyMySQL + state: present + when: ansible_distribution == 'Redhat' and dbengine == 'mysql' + +- name: Set default dump folder if not set + set_fact: + local_dump_folder: "dumps" + when: not local_dump_folder is defined + +- name: Create local installation directory if it does not exist + file: + path: "{{ local_dump_folder }}" + state: directory + delegate_to: localhost + changed_when: false + +- name: Do a database dump (Mysql) + # This assumes that mysqldump is installed (this is the case on a frontend normally) + mysql_db: + name: "{{ moodle_database.dbname }}" + login_host: "{{ moodle_database.dbhost }}" + login_user: "{{ moodle_database.dbuser }}" + login_password: "{{ moodle_database.password }}" + state: dump + target: /tmp/dump.sql.bz2 + changed_when: false + when: dbengine == 'mysql' + +- name: Do a database dump (Postgres) + # This assumes that pg_dump is installed (this is the case on a frontend normally) + postgresql_db: + name: "{{ moodle_database.dbname }}" + login_host: "{{ moodle_database.dbhost }}" + login_user: "{{ moodle_database.dbuser }}" + login_password: "{{ moodle_database.password }}" + state: dump + target: /tmp/dump.sql.bz2 + changed_when: false + when: dbengine == 'postgres' + +- name: Compress archive + archive: + path: "/tmp/dbdump.sql" + dest: "/tmp/dbdump.sql.gz" + format: gz + force_archive: true + changed_when: false + +- name: Fetch archive + fetch: + src: "/tmp/dbdump.sql.gz" + flat: true + dest: "{{ local_dump_folder }}/moodledata-{{ inventory_hostname }}.{{ ansible_date_time.epoch }}.tar.gz" + +- name: Delete Archive + file: + state: absent + path: "/tmp/dbdump.sql.gz" + changed_when: false diff --git a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-fetchsources.yml b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-fetchsources.yml new file mode 100644 index 00000000..a121eeba --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-fetchsources.yml @@ -0,0 +1,37 @@ +--- + +- name: Make sure that Patch package is installed on CentOS + yum: + name: patch + state: present + when: ansible_os_family == 'RedHat' + +# Fetch moodle source from a git repository +- name: Install or update Moodle source code in the destination folder + git: + repo: "{{ moodle_git_url }}" + dest: "{{ moodle_src_path }}" + version: "{{ moodle_version }}" + depth: 1 # Only shallow cloning. Can be fixed if needed later to have the full history (git pull --unshallow) + key_file: "{{ moodle_git_key_file }}" + accept_hostkey: yes + recursive: true + update: true + force: "{{ moodle_force_source_update }}" + become: true + become_user: "{{ moodle_webserver_user }}" # Check out as www-data + +# Apply patch depending on the patch_to_apply variable +- name: Apply all patches + patch: + src: "patches/{{ item }}.patch" + basedir: "{{ moodle_src_path }}" + strip: 1 + loop: "{{ patch_to_apply }}" + +- name: Make sure all source file belongs to the webserver user + file: + path: "{{ moodle_src_path }}" + owner: "{{ moodle_webserver_user }}" + group: "{{ moodle_webserver_group }}" + recurse: true diff --git a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-filedump.yml b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-filedump.yml new file mode 100644 index 00000000..243e0e58 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-filedump.yml @@ -0,0 +1,25 @@ +--- + +- name: Set default dump folder if not set + set_fact: + local_dump_folder: "dumps" + when: not local_dump_folder is defined + +- name: Create local installation directory if it does not exist + file: + path: "{{ local_dump_folder }}" + state: directory + delegate_to: localhost + +- name: Sync data folder locally + synchronize: + mode: pull + src: "{{ moodle_sitedata }}" + dest: "{{ local_dump_folder }}/moodledata-{{ inventory_hostname }}.{{ ansible_date_time.epoch }}" + +- name: Archive data folder + archive: + path: "{{ local_dump_folder }}/moodledata-{{ inventory_hostname }}.{{ ansible_date_time.epoch }}/" + dest: "{{ local_dump_folder }}/moodledata-{{ inventory_hostname }}.{{ ansible_date_time.epoch }}.tar.bz2" + format: bz2 + delegate_to: localhost diff --git a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-install.yml b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-install.yml new file mode 100644 index 00000000..9343a522 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-install.yml @@ -0,0 +1,23 @@ +--- + +- name: Moodle- Check before if installation directory exists + stat: + path: "{{ moodle_src_path }}/config.php" + register: moodle_config_source + +- name: Run installer + command: > + php admin/cli/install_database.php + --adminuser="{{ moodle_site_admin.username }}" + --adminpass="{{ moodle_site_admin.password }}" + --adminemail="{{ moodle_site_admin.email }}" + --agree-license + --fullname="{{ moodle_site_fullname }}" + --shortname="{{ moodle_site_shortname }}" + args: + chdir: "{{ moodle_src_path }}" + become: true + become_user: "{{ moodle_webserver_user }}" + register: installerresult + changed_when: installerresult.rc != 0 + when: moodle_config_source.stat.exists|bool diff --git a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-resetpw.yml b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-resetpw.yml new file mode 100644 index 00000000..091ad94e --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-resetpw.yml @@ -0,0 +1,12 @@ +--- + +- name: Reset password + command: chdir="{{ moodle_src_path }}" {{ item }} + loop: + - php admin/cli/purge_caches.php + - php admin/cli/reset_password.php + --username="{{ moodle_site_admin.username }}" --password="{{ moodle_site_admin.password }}" + become: true + become_user: "{{ moodle_webserver_user }}" + changed_when: false + no_log: true diff --git a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-setupsolr.yml b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-setupsolr.yml new file mode 100644 index 00000000..975298b4 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-setupsolr.yml @@ -0,0 +1,12 @@ +--- + +- name: Setup Solr + command: chdir="{{ moodle_src_path }}" {{ item }} + # CFG command here Since Moodle 3.3 + loop: + - php admin/cli/purge_caches.php + - php admin/cli/cfg.php --component=search_solr --name=indexname --set="{{ moodle_solr_collection_name }}" + - php admin/cli/cfg.php --component=search_solr --name=server_hostname --set="{{ solr_server_host }}" + become: true + become_user: "{{ moodle_webserver_user }}" + changed_when: false diff --git a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-update.yml b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-update.yml new file mode 100644 index 00000000..8ce76192 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-update.yml @@ -0,0 +1,11 @@ +--- + +- name: Run update + command: > + php admin/cli/upgrade.php --non-interactive + args: + chdir: "{{ moodle_src_path }}" + become: true + become_user: "{{ moodle_webserver_user }}" + register: updaterresult + changed_when: updaterresult.rc != 0 diff --git a/ansible/roles/ansible-role-moodle-master/tasks/configure-vars.yml b/ansible/roles/ansible-role-moodle-master/tasks/configure-vars.yml new file mode 100644 index 00000000..f0e9c901 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/tasks/configure-vars.yml @@ -0,0 +1,8 @@ +--- + +- name: Set Moodle Data facts + set_fact: + moodle_dataroot: "{{ moodle_sitedata.shared_data_folder }}/{{ moodle_sitedata.data_dir_name }}" + moodle_tempdir: "{{ moodle_sitedata.shared_data_folder }}/{{ moodle_sitedata.temp_dir_name }}" + moodle_sharedcachedir: "{{ moodle_sitedata.shared_data_folder }}/{{ moodle_sitedata.cache_dir_name }}" + moodle_localcachedir: "{{ moodle_sitedata.local_data_folder }}/{{ moodle_sitedata.cache_dir_name }}" diff --git a/ansible/roles/ansible-role-moodle-master/tasks/fetch-sources.yml b/ansible/roles/ansible-role-moodle-master/tasks/fetch-sources.yml new file mode 100644 index 00000000..018f7354 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/tasks/fetch-sources.yml @@ -0,0 +1,34 @@ +--- + +- name: Make sure that Patch package is installed on CentOS + yum: + name: patch + state: present + when: ansible_os_family == 'RedHat' + +# Fetch moodle source from a git repository +- name: Install or update Moodle source code in the destination folder + git: + repo: "{{ moodle_git_url }}" + dest: "{{ moodle_src_path }}" + version: "{{ moodle_version }}" + depth: 1 # Only shallow cloning. Can be fixed if needed later to have the full history (git pull --unshallow) + key_file: "{{ moodle_git_key_file }}" + accept_hostkey: yes + become: true + become_user: "{{ moodle_webserver_user }}" # Check out as www-data + +# Apply patch depending on the patch_to_apply variable +- name: Apply all patches + patch: + src: "patches/{{ item }}.patch" + basedir: "{{ moodle_src_path }}" + strip: 1 + loop: "{{ patch_to_apply }}" + +- name: Make sure all source file belongs to the webserver user + file: + path: "{{ moodle_src_path }}" + owner: "{{ moodle_webserver_user }}" + group: "{{ moodle_webserver_group }}" + recurse: true diff --git a/ansible/roles/ansible-role-moodle-master/tasks/main.yml b/ansible/roles/ansible-role-moodle-master/tasks/main.yml new file mode 100644 index 00000000..b2aee78b --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/tasks/main.yml @@ -0,0 +1,26 @@ +--- +- name: Verify Ansible meets version requirements + assert: + that: "ansible_version.full is version_compare('2.8', '>=')" + msg: "You must update Ansible to at least 2.8 to use this role." + +- name: Setup additional vars + import_tasks: configure-vars.yml + tags: + - only-vars + - always + +- name: Setup Moosh + import_tasks: setup-moosh.yml + when: moodle_setup_moosh | bool + +- name: Setup all Directories + import_tasks: setup-dirs.yml + +- name: Fetch source + import_tasks: commands/moodle-fetchsources.yml + when: moodle_fetch_source|bool + +- name: Run setup and configuration. + import_tasks: setup-moodle.yml + when: moodle_run_config|bool and moodle_fetch_source|bool diff --git a/ansible/roles/ansible-role-moodle-master/tasks/phpsql-setup.yml b/ansible/roles/ansible-role-moodle-master/tasks/phpsql-setup.yml new file mode 100644 index 00000000..44f88b58 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/tasks/phpsql-setup.yml @@ -0,0 +1,124 @@ +--- + +# Usual tweaks and php mandatory packages for Moodle +# We don't use any of these tasks in the role itself as +# this is only a tool here to be used in other playbook like: +# - import_role: call-learning.moodle +# tasks_from: phpsql-setup.yml +# tags: install + + +# +# Global Packages +# + +# Debian +- name: Update apt cache. + apt: update_cache=yes cache_valid_time=86400 + when: ansible_os_family == 'Debian' + +- name: Add specific packages for Debian + apt: + pkg: + - python-crontab + - cron + - python-pymysql + state: present + when: ansible_distribution == "Debian" + +# Redhat and Centos + +- name: Tweak Redhad/Centos package names + block: + - name: Set Mysql Packages For Redhat/Centos + set_fact: + mysql_packages: + - mariadb + - mariadb-server + - mysql-libs + - python2-PyMySQL + - python3-PyMySQL + - perl-DBD-MySQL + mysql_daemon: mariadb + mysql_log_error: /var/log/mariadb/mariadb.log + mysql_syslog_tag: mariadb + when: ansible_os_family == 'RedHat' + +- name: Add specific packages for Redhat/Centos + yum: + name: crontabs + state: present + when: ansible_os_family == 'RedHat' + +- name: Define postgresql_version to 9.3 for RedHat/CentOS. + set_fact: + postgresql_version: "9.3" + when: ansible_os_family == "RedHat" + +# ALL Systems +- name: Install dependencies. + package: name={{ item }} + with_items: + - curl + - unzip + - sendmail + +# +# PHP Packages +# + +# ALL Distribution (note the difference in name from Debian and Ubuntu, version prefixing) +- name: Set php_packages for all distributions + block: + # We use PHP 7.2 for testing (see vars.yml and php-versions role) + - name: Set php packages to an empty list and php_prefix + set_fact: + php_packages: [] + php_prefix: php + - name: Set Php package prefix for Debian like systems + set_fact: + php_prefix: "php{{ php_version }}" + when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu' + - name: Set all php packages names + set_fact: + php_packages: "{{ php_packages }} + [ '{{ php_prefix }}-{{ item }}' ]" + loop: + - cli + - common + - curl + - gd + - intl + - json + - mbstring + - opcache + - readline + - soap + - xml + - xmlrpc + - zip + - fpm + - cli + - ldap + - solr + - redis + +- name: Add APCU package for debian / Ubuntu + set_fact: + php_packages: "{{ php_packages }} + ['php-apcu']" + when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu' + +# Need to add php-process on Redhat so we can use moodle moosh +- name: Set php_packages (apcu + php-process) for PHP CentOS/Redhat from REMI package. + set_fact: + php_packages: "{{ php_packages }} + ['php-pecl-apcu', 'php-process']" + when: ansible_os_family == "RedHat" + +- name: Set php_package for postgres + set_fact: + php_packages: "{{ php_packages }} + ['{{ php_prefix }}-pgsql']" + when: dbengine == 'postgres' + +- name: Set php_package for MySQL + set_fact: + php_packages: "{{ php_packages }} + ['{{ php_prefix }}-mysql']" + when: dbengine == 'mysql' diff --git a/ansible/roles/ansible-role-moodle-master/tasks/setup-dirs.yml b/ansible/roles/ansible-role-moodle-master/tasks/setup-dirs.yml new file mode 100644 index 00000000..2c808e52 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/tasks/setup-dirs.yml @@ -0,0 +1,48 @@ +--- +# Creates the relevant directories to install moodle: +# - a source directory +# - a data directory where we will have all site data + +- name: Create installation directory if it does not exist + file: + path: "{{ moodle_src_path }}" + state: directory + owner: "{{ moodle_webserver_user }}" + group: "{{ moodle_webserver_group }}" + become: true + +- name: Create data root directory + file: + path: "{{ moodle_dataroot }}" + state: directory + owner: "{{ moodle_webserver_user }}" + group: "{{ moodle_webserver_group }}" + mode: "u=rwx,g=rwx,o=r" + recurse: true + changed_when: false + become: true + +- name: Create all standard data Directories + file: + path: "{{ item }}" + state: directory + owner: "{{ moodle_webserver_user }}" + group: "{{ moodle_webserver_group }}" + mode: "u=rwx,g=rwx,o=r" + loop: + - "{{ moodle_sitedata.shared_data_folder }}" + - "{{ moodle_sitedata.local_data_folder }}" + - "{{ moodle_dataroot }}" + +- name: Create all shared data Directories + file: + path: "{{ item }}" + state: directory + owner: "{{ moodle_webserver_user }}" + group: "{{ moodle_webserver_group }}" + mode: "u=rwx,g=rwx,o=r" + loop: + - "{{ moodle_localcachedir }}" + - "{{ moodle_tempdir }}" + - "{{ moodle_sharedcachedir }}" + when: shared_drive_subfolder_create|bool diff --git a/ansible/roles/ansible-role-moodle-master/tasks/setup-moodle.yml b/ansible/roles/ansible-role-moodle-master/tasks/setup-moodle.yml new file mode 100644 index 00000000..260d2ef8 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/tasks/setup-moodle.yml @@ -0,0 +1,42 @@ +--- + +- name: Create config if it does not exist + template: + src: config.php.j2 + dest: "{{ moodle_src_path }}/config.php" + mode: 0644 + owner: "{{ moodle_webserver_user }}" + group: "{{ moodle_webserver_group }}" + backup: true # Take a backup just in case + +# This is using our custom module to check moodle state +- name: Check the state of current moodle + check_moodle: + install_dir: "{{ moodle_src_path }}" + become: true + become_user: "{{ moodle_webserver_user }}" + register: moodle_state + +- name: Install Moodle + include_tasks: commands/moodle-install.yml + when: not moodle_state.moodle_is_installed|bool + +# Change password to make sure we are always in sync +# Watch out this will work on Moodle where the reset_password.php command accepts arguments +# Added the cache purge as sometimes old users are cached when db is replaced +- name: Change admin password + import_tasks: commands/moodle-resetpw.yml + when: moodle_state.moodle_is_installed|bool + +- name: Launch update (if needed) + import_tasks: commands/moodle-update.yml + when: moodle_state.moodle_is_installed|bool + and moodle_state.moodle_needs_upgrading|bool + +- name: Setup cron + cron: + name: "Moodle Cron" + minute: "{{ moodle_cron_periodicity }}" + job: "php {{ moodle_src_path }}/admin/cli/cron.php 2>&1" + user: "{{ moodle_webserver_user }}" + when: moodle_cron_periodicity is defined and moodle_cron_periodicity != 0 diff --git a/ansible/roles/ansible-role-moodle-master/tasks/setup-moosh.yml b/ansible/roles/ansible-role-moodle-master/tasks/setup-moosh.yml new file mode 100644 index 00000000..7320f09f --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/tasks/setup-moosh.yml @@ -0,0 +1,56 @@ +--- +# Here we assume that composer has been installed +# See https://github.com/geerlingguy/ansible-role-composer for the role to install composer + +# This defines the usual path if not defined. We need to have an +# absolute path here as Redhat/Centos don't look at /usr/local/bin for binaries +- name: Define composer path to the default value if not defined + set_fact: + composer_path: "/usr/local/bin/composer" + when: composer_path is undefined + +- name: Check if composer is installed + command: "{{ composer_path }} --version" + register: composer_installed + failed_when: composer_installed.rc != 0 + changed_when: false + +- name: Check if Moosh is installed + stat: "path={{ moosh_install_directory }}" + register: moosh_dir_status + +- name: Moosh - get from repository and install or update + block: + - name: Moosh - clone repository + git: + repo: "{{ moosh_repository }}" + dest: "{{ moosh_install_directory }}" + version: "{{ moosh_branch |default(omit) }}" + update: true + depth: 1 + changed_when: false + - name: Moosh - Install moosh dependencies + command: "{{ composer_path }} install" + args: + chdir: "{{ moosh_install_directory }}" + changed_when: false + when: not moosh_dir_status.stat.exists + +- name: Make sure all moosh files belongs to the web user + file: + path: "{{ moosh_install_directory }}" + owner: "{{ moodle_webserver_user }}" + group: "{{ moodle_webserver_group }}" + mode: "u=rwx,g=rx,o=rx" + recurse: true + +# Note that the best place would be /usr/local/bin on Debian like system +# But unfortunately the apache user has only /usr/bin in its path +- name: Moosh - link to Moosh binary + file: + src: "{{ moosh_install_directory }}/moosh.php" + dest: /usr/bin/moosh + owner: "{{ moodle_webserver_user }}" + group: "{{ moodle_webserver_group }}" + state: link + changed_when: false diff --git a/ansible/roles/ansible-role-moodle-master/tasks/tools.yml b/ansible/roles/ansible-role-moodle-master/tasks/tools.yml new file mode 100644 index 00000000..2a29d1e0 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/tasks/tools.yml @@ -0,0 +1,29 @@ +--- + +- name: Tools - do file dump + import_tasks: commands/moodle-filedump.yml + tags: ['never', 'task-filedump'] + +- name: Tools - do a database dump + import_tasks: commands/moodle-datadump.yml + tags: ['never', 'task-datadump'] + +- name: Tools - Retrieve the latest code on the given branch (including submodules) + import_tasks: commands/moodle-fetchsources.yml + tags: ['never', 'task-fetchsource', 'task-updatecode'] + +- name: Tools - Update Moodle + import_tasks: commands/moodle-update.yml + tags: ['never', 'task-updatecode'] + +- name: Tools - Change admin password + import_tasks: commands/moodle-resetpw.yml + tags: ['never', 'task-updatepassword'] + +- name: Tools - Bootstrap Search SOLR + import_tasks: commands/moodle-bootstrapsolr.yml + tags: ['never', 'task-bootstrapsolr'] + +- name: Tools - Setup SOLR config in Moodle + import_tasks: commands/moodle-setupsolr.yml + tags: ['never', 'setup-solr'] diff --git a/ansible/roles/ansible-role-moodle-master/templates/config.php.j2 b/ansible/roles/ansible-role-moodle-master/templates/config.php.j2 new file mode 100644 index 00000000..76131f45 --- /dev/null +++ b/ansible/roles/ansible-role-moodle-master/templates/config.php.j2 @@ -0,0 +1,905 @@ +dbtype = '{{ moodle_database.dbtype }}'; // 'pgsql', 'mariadb', 'mysqli', 'mssql', 'sqlsrv' or 'oci' +$CFG->dblibrary = 'native'; // 'native' only at the moment +$CFG->dbhost = '{{ moodle_database.dbhost }}'; // eg 'localhost' or 'db.isp.com' or IP +$CFG->dbname = '{{ moodle_database.dbname }}'; // database name, eg moodle +$CFG->dbuser = '{{ moodle_database.dbuser }}'; // your database username +$CFG->dbpass = '{{ moodle_database.dbpass }}'; // your database password +$CFG->prefix = '{{ moodle_database.dbprefix }}'; // prefix to use for all table names +$CFG->dboptions = array( + 'dbpersist' => false, // should persistent database connections be + // used? set to 'false' for the most stable + // setting, 'true' can improve performance + // sometimes + 'dbsocket' => false, // should connection via UNIX socket be used? + // if you set it to 'true' or custom path + // here set dbhost to 'localhost', + // (please note mysql is always using socket + // if dbhost is 'localhost' - if you need + // local port connection use '127.0.0.1') + 'dbport' => '', // the TCP port number to use when connecting + // to the server. keep empty string for the + // default port + 'dbhandlesoptions' => false,// On PostgreSQL poolers like pgbouncer don't + // support advanced options on connection. + // If you set those in the database then + // the advanced settings will not be sent. + 'dbcollation' => 'utf8mb4_unicode_ci', // MySQL has partial and full UTF-8 + // support. If you wish to use partial UTF-8 + // (three bytes) then set this option to + // 'utf8_unicode_ci', otherwise this option + // can be removed for MySQL (by default it will + // use 'utf8mb4_unicode_ci'. This option should + // be removed for all other databases. +{% for conf in moodle_extra_db_options %} + '{{conf.name}}' => {{ conf.value }}, +{% endfor %} +); + + +//========================================================================= +// 2. WEB SITE LOCATION +//========================================================================= +// Now you need to tell Moodle where it is located. Specify the full +// web address to where moodle has been installed. If your web site +// is accessible via multiple URLs then choose the most natural one +// that your students would use. Do not include a trailing slash +// +// If you need both intranet and Internet access please read +// http://docs.moodle.org/en/masquerading + +$CFG->wwwroot = '{{ (moodle_is_https) | ternary('https://','http://')}}{{ moodle_domain_name }}'; + + +//========================================================================= +// 3. DATA FILES LOCATION +//========================================================================= +// Now you need a place where Moodle can save uploaded files. This +// directory should be readable AND WRITEABLE by the web server user +// (usually 'nobody' or 'apache'), but it should not be accessible +// directly via the web. +// +// - On hosting systems you might need to make sure that your "group" has +// no permissions at all, but that "others" have full permissions. +// +// - On Windows systems you might specify something like 'c:\moodledata' + +$CFG->dataroot = '{{ moodle_dataroot }}'; + + +//========================================================================= +// 4. DATA FILES PERMISSIONS +//========================================================================= +// The following parameter sets the permissions of new directories +// created by Moodle within the data directory. The format is in +// octal format (as used by the Unix utility chmod, for example). +// The default is usually OK, but you may want to change it to 0750 +// if you are concerned about world-access to the files (you will need +// to make sure the web server process (eg Apache) can access the files. +// NOTE: the prefixed 0 is important, and don't use quotes. + +$CFG->directorypermissions = 02777; + + +//========================================================================= +// 5. DIRECTORY LOCATION (most people can just ignore this setting) +//========================================================================= +// A very few webhosts use /admin as a special URL for you to access a +// control panel or something. Unfortunately this conflicts with the +// standard location for the Moodle admin pages. You can work around this +// by renaming the admin directory in your installation, and putting that +// new name here. eg "moodleadmin". This should fix all admin links in Moodle. +// After any change you need to visit your new admin directory +// and purge all caches. + +$CFG->admin = 'admin'; + + +//========================================================================= +// 6. OTHER MISCELLANEOUS SETTINGS (ignore these for new installations) +//========================================================================= +// +// These are additional tweaks for which no GUI exists in Moodle yet. +// +// Starting in PHP 5.3 administrators should specify default timezone +// in PHP.ini, you can also specify it here if needed. +// See details at: http://php.net/manual/en/function.date-default-timezone-set.php +// List of time zones at: http://php.net/manual/en/timezones.php +// date_default_timezone_set('Australia/Perth'); +// +// Change the key pair lifetime for Moodle Networking +// The default is 28 days. You would only want to change this if the key +// was not getting regenerated for any reason. You would probably want +// make it much longer. Note that you'll need to delete and manually update +// any existing key. +// $CFG->mnetkeylifetime = 28; +// +// Not recommended: Set the following to true to allow the use +// off non-Moodle standard characters in usernames. +// $CFG->extendedusernamechars = true; +// +// Allow user passwords to be included in backup files. Very dangerous +// setting as far as it publishes password hashes that can be unencrypted +// if the backup file is publicy available. Use it only if you can guarantee +// that all your backup files remain only privacy available and are never +// shared out from your site/institution! +// $CFG->includeuserpasswordsinbackup = true; +// +// Completely disable user creation when restoring a course, bypassing any +// permissions granted via roles and capabilities. Enabling this setting +// results in the restore process stopping when a user attempts to restore a +// course requiring users to be created. +// $CFG->disableusercreationonrestore = true; +// +// Keep the temporary directories used by backup and restore without being +// deleted at the end of the process. Use it if you want to debug / view +// all the information stored there after the process has ended. Note that +// those directories may be deleted (after some ttl) both by cron and / or +// by new backup / restore invocations. +// $CFG->keeptempdirectoriesonbackup = true; +// +// Modify the restore process in order to force the "user checks" to assume +// that the backup originated from a different site, so detection of matching +// users is performed with different (more "relaxed") rules. Note that this is +// only useful if the backup file has been created using Moodle < 1.9.4 and the +// site has been rebuilt from scratch using backup files (not the best way btw). +// If you obtain user conflicts on restore, rather than enabling this setting +// permanently, try restoring the backup on a different site, back it up again +// and then restore on the target server. +// $CFG->forcedifferentsitecheckingusersonrestore = true; +// +// Force the backup system to continue to create backups in the legacy zip +// format instead of the new tgz format. Does not affect restore, which +// auto-detects the underlying file format. +// $CFG->usezipbackups = true; +// +// Prevent stats processing and hide the GUI +// $CFG->disablestatsprocessing = true; +// +// Setting this to true will enable admins to edit any post at any time +// $CFG->admineditalways = true; +// +// These variables define DEFAULT block variables for new courses +// If this one is set it overrides all others and is the only one used. +// $CFG->defaultblocks_override = 'participants,activity_modules,search_forums,course_list:news_items,calendar_upcoming,recent_activity'; +// +// These variables define the specific settings for defined course formats. +// They override any settings defined in the formats own config file. +// $CFG->defaultblocks_site = 'site_main_menu,course_list:course_summary,calendar_month'; +// $CFG->defaultblocks_social = 'participants,search_forums,calendar_month,calendar_upcoming,social_activities,recent_activity,course_list'; +// $CFG->defaultblocks_topics = 'participants,activity_modules,search_forums,course_list:news_items,calendar_upcoming,recent_activity'; +// $CFG->defaultblocks_weeks = 'participants,activity_modules,search_forums,course_list:news_items,calendar_upcoming,recent_activity'; +// +// These blocks are used when no other default setting is found. +// $CFG->defaultblocks = 'participants,activity_modules,search_forums,course_list:news_items,calendar_upcoming,recent_activity'; +// +// You can specify a different class to be created for the $PAGE global, and to +// compute which blocks appear on each page. However, I cannot think of any good +// reason why you would need to change that. It just felt wrong to hard-code the +// the class name. You are strongly advised not to use these to settings unless +// you are absolutely sure you know what you are doing. +// $CFG->moodlepageclass = 'moodle_page'; +// $CFG->moodlepageclassfile = "$CFG->dirroot/local/myplugin/mypageclass.php"; +// $CFG->blockmanagerclass = 'block_manager'; +// $CFG->blockmanagerclassfile = "$CFG->dirroot/local/myplugin/myblockamanagerclass.php"; +// +// Seconds for files to remain in caches. Decrease this if you are worried +// about students being served outdated versions of uploaded files. +// $CFG->filelifetime = 60*60*6; +// +// Some web servers can offload the file serving from PHP process, +// comment out one the following options to enable it in Moodle: +// $CFG->xsendfile = 'X-Sendfile'; // Apache {@see https://tn123.org/mod_xsendfile/} +// $CFG->xsendfile = 'X-LIGHTTPD-send-file'; // Lighttpd {@see http://redmine.lighttpd.net/projects/lighttpd/wiki/X-LIGHTTPD-send-file} +// $CFG->xsendfile = 'X-Accel-Redirect'; // Nginx {@see http://wiki.nginx.org/XSendfile} +// If your X-Sendfile implementation (usually Nginx) uses directory aliases specify them +// in the following array setting: +// $CFG->xsendfilealiases = array( +// '/dataroot/' => $CFG->dataroot, +// '/cachedir/' => '/var/www/moodle/cache', // for custom $CFG->cachedir locations +// '/localcachedir/' => '/var/local/cache', // for custom $CFG->localcachedir locations +// '/tempdir/' => '/var/www/moodle/temp', // for custom $CFG->tempdir locations +// '/filedir' => '/var/www/moodle/filedir', // for custom $CFG->filedir locations +// ); +// +// YUI caching may be sometimes improved by slasharguments: +// $CFG->yuislasharguments = 1; +// Some servers may need a special rewrite rule to work around internal path length limitations: +// RewriteRule (^.*/theme/yui_combo\.php)(/.*) $1?file=$2 +// +// +// Following settings may be used to select session driver, uncomment only one of the handlers. +// Database session handler (not compatible with MyISAM): +// $CFG->session_handler_class = '\core\session\database'; +// $CFG->session_database_acquire_lock_timeout = 120; +// +// File session handler (file system locking required): +// $CFG->session_handler_class = '\core\session\file'; +// $CFG->session_file_save_path = $CFG->dataroot.'/sessions'; +// +// Memcached session handler (requires memcached server and extension): +// $CFG->session_handler_class = '\core\session\memcached'; +// $CFG->session_memcached_save_path = '127.0.0.1:11211'; +// $CFG->session_memcached_prefix = 'memc.sess.key.'; +// $CFG->session_memcached_acquire_lock_timeout = 120; +// $CFG->session_memcached_lock_expire = 7200; // Ignored if PECL memcached is below version 2.2.0 +// $CFG->session_memcached_lock_retry_sleep = 150; // Spin-lock retry sleeptime (msec). Only effective +// // for tuning php-memcached 3.0.x (PHP 7) +// +// Redis session handler (requires redis server and redis extension): +// $CFG->session_handler_class = '\core\session\redis'; +// $CFG->session_redis_host = '127.0.0.1'; +// $CFG->session_redis_port = 6379; // Optional. +// $CFG->session_redis_database = 0; // Optional, default is db 0. +// $CFG->session_redis_auth = ''; // Optional, default is don't set one. +// $CFG->session_redis_prefix = ''; // Optional, default is don't set one. +// $CFG->session_redis_acquire_lock_timeout = 120; +// $CFG->session_redis_lock_expire = 7200; +// Use the igbinary serializer instead of the php default one. Note that phpredis must be compiled with +// igbinary support to make the setting to work. Also, if you change the serializer you have to flush the database! +// $CFG->session_redis_serializer_use_igbinary = false; // Optional, default is PHP builtin serializer. +// +// Memcache session handler (requires memcached server and memcache extension): +// $CFG->session_handler_class = '\core\session\memcache'; +// $CFG->session_memcache_save_path = '127.0.0.1:11211'; +// $CFG->session_memcache_acquire_lock_timeout = 120; +// ** NOTE: Memcache extension has less features than memcached and may be +// less reliable. Use memcached where possible or if you encounter +// session problems. ** +// +// Please be aware that when selecting either Memcached or Memcache for sessions that it is advised to use a dedicated +// memcache server. The memcache and memcached extensions do not provide isolated environments for individual uses. +// Using the same server for other purposes (MUC for example) can lead to sessions being prematurely removed should +// the other uses of the server purge the cache. +// +// Following setting allows you to alter how frequently is timemodified updated in sessions table. +// $CFG->session_update_timemodified_frequency = 20; // In seconds. +// +// If this setting is set to true, then Moodle will track the IP of the +// current user to make sure it hasn't changed during a session. This +// will prevent the possibility of sessions being hijacked via XSS, but it +// may break things for users coming using proxies that change all the time, +// like AOL. +// $CFG->tracksessionip = true; +// +// The following lines are for handling email bounces. +// $CFG->handlebounces = true; +// $CFG->minbounces = 10; +// $CFG->bounceratio = .20; +// The next lines are needed both for bounce handling and any other email to module processing. +// mailprefix must be EXACTLY four characters. +// Uncomment and customise this block for Postfix +// $CFG->mailprefix = 'mdl+'; // + is the separator for Exim and Postfix. +// $CFG->mailprefix = 'mdl-'; // - is the separator for qmail +// $CFG->maildomain = 'youremaildomain.com'; +// +// Enable when setting up advanced reverse proxy load balancing configurations, +// it may be also necessary to enable this when using port forwarding. +// $CFG->reverseproxy = true; +// +// Enable when using external SSL appliance for performance reasons. +// Please note that site may be accessible via http: or https:, but not both! +// $CFG->sslproxy = true; +// +// This setting will cause the userdate() function not to fix %d in +// date strings, and just let them show with a zero prefix. +// $CFG->nofixday = true; +// +// This setting will make some graphs (eg user logs) use lines instead of bars +// $CFG->preferlinegraphs = true; +// +// This setting allows you to specify a class to rewrite outgoing urls +// enabling 'clean urls' in conjunction with an apache / nginx handler. +// The handler must implement \core\output\url_rewriter. +// $CFG->urlrewriteclass = '\local_cleanurls\url_rewriter'; +// +// Enabling this will allow custom scripts to replace existing moodle scripts. +// For example: if $CFG->customscripts/course/view.php exists then +// it will be used instead of $CFG->wwwroot/course/view.php +// At present this will only work for files that include config.php and are called +// as part of the url (index.php is implied). +// Some examples are: +// http://my.moodle.site/course/view.php +// http://my.moodle.site/index.php +// http://my.moodle.site/admin (index.php implied) +// Custom scripts should not include config.php +// Warning: Replacing standard moodle scripts may pose security risks and/or may not +// be compatible with upgrades. Use this option only if you are aware of the risks +// involved. +// Specify the full directory path to the custom scripts +// $CFG->customscripts = '/home/example/customscripts'; +// +// Performance profiling +// +// If you set Debug to "Yes" in the Configuration->Variables page some +// performance profiling data will show up on your footer (in default theme). +// With these settings you get more granular control over the capture +// and printout of the data +// +// Capture performance profiling data +// define('MDL_PERF' , true); +// +// Capture additional data from DB +// define('MDL_PERFDB' , true); +// +// Print to log (for passive profiling of production servers) +// define('MDL_PERFTOLOG' , true); +// +// Print to footer (works with the default theme) +// define('MDL_PERFTOFOOT', true); +// +// Enable earlier profiling that causes more code to be covered +// on every request (db connections, config load, other inits...). +// Requires extra configuration to be defined in config.php like: +// profilingincluded, profilingexcluded, profilingautofrec, +// profilingallowme, profilingallowall, profilinglifetime +// $CFG->earlyprofilingenabled = true; +// +// Force displayed usernames +// A little hack to anonymise user names for all students. If you set these +// then all non-teachers will always see these for every person. +// $CFG->forcefirstname = 'Bruce'; +// $CFG->forcelastname = 'Simpson'; +// +// The following setting will turn on username logging into Apache log. For full details regarding setting +// up of this function please refer to the install section of the document. +// $CFG->apacheloguser = 0; // Turn this feature off. Default value. +// $CFG->apacheloguser = 1; // Log user id. +// $CFG->apacheloguser = 2; // Log full name in cleaned format. ie, Darth Vader will be displayed as darth_vader. +// $CFG->apacheloguser = 3; // Log username. +// To get the values logged in Apache's log, add to your httpd.conf +// the following statements. In the General part put: +// LogFormat "%h %l %{MOODLEUSER}n %t \"%r\" %s %b \"%{Referer}i\" \"%{User-Agent}i\"" moodleformat +// And in the part specific to your Moodle install / virtualhost: +// CustomLog "/your/path/to/log" moodleformat +// +// Alternatively for other webservers such as nginx, you can instead have the username sent via a http header +// 'X-MOODLEUSER' which can be saved in the logfile and then stripped out before being sent to the browser: +// $CFG->headerloguser = 0; // Turn this feature off. Default value. +// $CFG->headerloguser = 1; // Log user id. +// $CFG->headerloguser = 2; // Log full name in cleaned format. ie, Darth Vader will be displayed as darth_vader. +// $CFG->headerloguser = 3; // Log username. +// +// CAUTION: Use of this option will expose usernames in the Apache / nginx log, +// If you are going to publish your log, or the output of your web stats analyzer +// this will weaken the security of your website. +// +// Email database connection errors to someone. If Moodle cannot connect to the +// database, then email this address with a notice. +// +// $CFG->emailconnectionerrorsto = 'your@emailaddress.com'; +// +// Set the priority of themes from highest to lowest. This is useful (for +// example) in sites where the user theme should override all other theme +// settings for accessibility reasons. You can also disable types of themes +// (other than site) by removing them from the array. The default setting is: +// $CFG->themeorder = array('course', 'category', 'session', 'user', 'site'); +// NOTE: course, category, session, user themes still require the +// respective settings to be enabled +// +// It is possible to add extra themes directory stored outside of $CFG->dirroot. +// This local directory does not have to be accessible from internet. +// +// $CFG->themedir = '/location/of/extra/themes'; +// +// It is possible to specify different cache and temp directories, use local fast filesystem +// for normal web servers. Server clusters MUST use shared filesystem for cachedir! +// Localcachedir is intended for server clusters, it does not have to be shared by cluster nodes. +// The directories must not be accessible via web. +// + +{% if shared_drive_subfolder_create %} + +// Directory MUST BE SHARED by all cluster nodes. +$CFG->tempdir = '{{ moodle_tempdir }}'; +// Directory MUST BE SHARED by all cluster nodes, locking required. +$CFG->cachedir = '{{ moodle_sharedcachedir }}'; +$CFG->localcachedir = '{{ moodle_localcachedir }}'; + +{% endif %} + +// Intended for local node caching. +// +// Some filesystems such as NFS may not support file locking operations. +// Locking resolves race conditions and is strongly recommended for production servers. +// $CFG->preventfilelocking = false; +// +// Site default language can be set via standard administration interface. If you +// want to have initial error messages for eventual database connection problems +// localized too, you have to set your language code here. +// +// $CFG->lang = 'yourlangcode'; // for example 'cs' +// +// When Moodle is about to perform an intensive operation it raises PHP's memory +// limit. The following setting should be used on large sites to set the raised +// memory limit to something higher. +// The value for the settings should be a valid PHP memory value. e.g. 512M, 1G +// +// $CFG->extramemorylimit = '1024M'; +// +// Moodle 2.4 introduced a new cache API. +// The cache API stores a configuration file within the Moodle data directory and +// uses that rather than the database in order to function in a stand-alone manner. +// Using altcacheconfigpath you can change the location where this config file is +// looked for. +// It can either be a directory in which to store the file, or the full path to the +// file if you want to take full control. Either way it must be writable by the +// webserver. +// +// $CFG->altcacheconfigpath = '/var/www/shared/moodle.cache.config.php +// +// Use the following flag to completely disable the Available update notifications +// feature and hide it from the server administration UI. +// +// $CFG->disableupdatenotifications = true; +// +// Use the following flag to completely disable the installation of plugins +// (new plugins, available updates and missing dependencies) and related +// features (such as cancelling the plugin installation or upgrade) via the +// server administration web interface. +// +// $CFG->disableupdateautodeploy = true; +// +// Use the following flag to disable the warning on the system notifications page +// about present development libraries. This flag will not disable the warning within +// the security overview report. Use this flag only if you really have prohibited web +// access to the development libraries in your webserver configuration. +// +// $CFG->disabledevlibdirscheck = true; +// +// Use the following flag to disable modifications to scheduled tasks +// whilst still showing the state of tasks. +// +// $CFG->preventscheduledtaskchanges = true; +// +// As of version 2.4 Moodle serves icons as SVG images if the users browser appears +// to support SVG. +// For those wanting to control the serving of SVG images the following setting can +// be defined in your config.php. +// If it is not defined then the default (browser detection) will occur. +// +// To ensure they are always used when available: +// $CFG->svgicons = true; +// +// To ensure they are never used even when available: +// $CFG->svgicons = false; +// +// Some administration options allow setting the path to executable files. This can +// potentially cause a security risk. Set this option to true to disable editing +// those config settings via the web. They will need to be set explicitly in the +// config.php file +// $CFG->preventexecpath = true; +// +// Use the following flag to set userid for noreply user. If not set then moodle will +// create dummy user and use -ve value as user id. +// $CFG->noreplyuserid = -10; +// +// As of version 2.6 Moodle supports admin to set support user. If not set, all mails +// will be sent to supportemail. +// $CFG->supportuserid = -20; +// +// Moodle 2.7 introduces a locking api for critical tasks (e.g. cron). +// The default locking system to use is DB locking for Postgres, and file locking for +// MySQL, Oracle and SQLServer. If $CFG->preventfilelocking is set, then the default +// will always be DB locking. It can be manually set to one of the lock +// factory classes listed below, or one of your own custom classes implementing the +// \core\lock\lock_factory interface. +// +// $CFG->lock_factory = "auto"; +// +// The list of available lock factories is: +// +// "\\core\\lock\\file_lock_factory" - File locking +// Uses lock files stored by default in the dataroot. Whether this +// works on clusters depends on the file system used for the dataroot. +// +// "\\core\\lock\\db_record_lock_factory" - DB locking based on table rows. +// +// "\\core\\lock\\postgres_lock_factory" - DB locking based on postgres advisory locks. +// +// Settings used by the lock factories +// +// Location for lock files used by the File locking factory. This must exist +// on a shared file system that supports locking. +// $CFG->lock_file_root = $CFG->dataroot . '/lock'; +// +// Moodle 2.9 allows administrators to customise the list of supported file types. +// To add a new filetype or override the definition of an existing one, set the +// customfiletypes variable like this: +// +// $CFG->customfiletypes = array( +// (object)array( +// 'extension' => 'frog', +// 'icon' => 'archive', +// 'type' => 'application/frog', +// 'customdescription' => 'Amphibian-related file archive' +// ) +// ); +// +// The extension, icon, and type fields are required. The icon field can refer to +// any icon inside the pix/f folder. You can also set the customdescription field +// (shown above) and (for advanced use) the groups, string, and defaulticon fields. +// +// Upgrade key +// +// If the upgrade key is defined here, then the value must be provided every time +// the site is being upgraded though the web interface, regardless of whether the +// administrator is logged in or not. This prevents anonymous access to the upgrade +// screens where the real authentication and authorization mechanisms can not be +// relied on. +// +// It is strongly recommended to use a value different from your real account +// password. +// +// $CFG->upgradekey = 'put_some_password-like_value_here'; +// +//========================================================================= +// 7. SETTINGS FOR DEVELOPMENT SERVERS - not intended for production use!!! +//========================================================================= +// +// Force a debugging mode regardless the settings in the site administration +// @error_reporting(E_ALL | E_STRICT); // NOT FOR PRODUCTION SERVERS! +// @ini_set('display_errors', '1'); // NOT FOR PRODUCTION SERVERS! +// $CFG->debug = (E_ALL | E_STRICT); // === DEBUG_DEVELOPER - NOT FOR PRODUCTION SERVERS! +// $CFG->debugdisplay = 1; // NOT FOR PRODUCTION SERVERS! +// +// You can specify a comma separated list of user ids that that always see +// debug messages, this overrides the debug flag in $CFG->debug and $CFG->debugdisplay +// for these users only. +// $CFG->debugusers = '2'; +// +// Prevent theme caching +// $CFG->themedesignermode = true; // NOT FOR PRODUCTION SERVERS! +// +// Enable verbose debug information during fetching of email messages from IMAP server. +// $CFG->debugimap = true; +// +// Prevent JS caching +// $CFG->cachejs = false; // NOT FOR PRODUCTION SERVERS! +// +// Restrict which YUI logging statements are shown in the browser console. +// For details see the upstream documentation: +// http://yuilibrary.com/yui/docs/api/classes/config.html#property_logInclude +// http://yuilibrary.com/yui/docs/api/classes/config.html#property_logExclude +// $CFG->yuiloginclude = array( +// 'Moodle core-dock-loader' => true, +// 'Moodle course-categoryexpander' => true, +// ); +// $CFG->yuilogexclude = array( +// 'Moodle core-dock' => true, +// 'Moodle core-notification' => true, +// ); +// +// Set the minimum log level for YUI logging statements. +// For details see the upstream documentation: +// http://yuilibrary.com/yui/docs/api/classes/config.html#property_logLevel +// $CFG->yuiloglevel = 'debug'; +// +// Prevent core_string_manager application caching +// $CFG->langstringcache = false; // NOT FOR PRODUCTION SERVERS! +// +// When working with production data on test servers, no emails or other messages +// should ever be send to real users +// $CFG->noemailever = true; // NOT FOR PRODUCTION SERVERS! +// +// Divert all outgoing emails to this address to test and debug emailing features +// $CFG->divertallemailsto = 'root@localhost.local'; // NOT FOR PRODUCTION SERVERS! +// +// Except for certain email addresses you want to let through for testing. Accepts +// a comma separated list of regexes. +// $CFG->divertallemailsexcept = 'tester@dev.com, fred(\+.*)?@example.com'; // NOT FOR PRODUCTION SERVERS! +// +// Uncomment if you want to allow empty comments when modifying install.xml files. +// $CFG->xmldbdisablecommentchecking = true; // NOT FOR PRODUCTION SERVERS! +// +// Since 2.0 sql queries are not shown during upgrade by default. +// Please note that this setting may produce very long upgrade page on large sites. +// $CFG->upgradeshowsql = true; // NOT FOR PRODUCTION SERVERS! +// +// Add SQL queries to the output of cron, just before their execution +// $CFG->showcronsql = true; +// +// Force developer level debug and add debug info to the output of cron +// $CFG->showcrondebugging = true; +// +//========================================================================= +// 8. FORCED SETTINGS +//========================================================================= +// It is possible to specify normal admin settings here, the point is that +// they can not be changed through the standard admin settings pages any more. +// +// Core settings are specified directly via assignment to $CFG variable. +// Example: +// $CFG->somecoresetting = 'value'; +// +// Plugin settings have to be put into a special array. +// Example: +// $CFG->forced_plugin_settings = array('pluginname' => array('settingname' => 'value', 'secondsetting' => 'othervalue'), +// 'otherplugin' => array('mysetting' => 'myvalue', 'thesetting' => 'thevalue')); +// Module default settings with advanced/locked checkboxes can be set too. To do this, add +// an extra config with '_adv' or '_locked' as a suffix and set the value to true or false. +// Example: +// $CFG->forced_plugin_settings = array('pluginname' => array('settingname' => 'value', 'settingname_locked' => true, 'settingname_adv' => true)); +// +//========================================================================= +// 9. PHPUNIT SUPPORT +//========================================================================= +// $CFG->phpunit_prefix = 'phpu_'; +// $CFG->phpunit_dataroot = '/home/example/phpu_moodledata'; +// $CFG->phpunit_directorypermissions = 02777; // optional +// $CFG->phpunit_profilingenabled = true; // optional to profile PHPUnit runs. +// +// +//========================================================================= +// 10. SECRET PASSWORD SALT +//========================================================================= +// A site-wide password salt is no longer used in new installations. +// If upgrading from 2.6 or older, keep all existing salts in config.php file. +// +// $CFG->passwordsaltmain = 'a_very_long_random_string_of_characters#@6&*1'; +// +// You may also have some alternative salts to allow migration from previously +// used salts. +// +// $CFG->passwordsaltalt1 = ''; +// $CFG->passwordsaltalt2 = ''; +// $CFG->passwordsaltalt3 = ''; +// .... +// $CFG->passwordsaltalt19 = ''; +// $CFG->passwordsaltalt20 = ''; +// +// +//========================================================================= +// 11. BEHAT SUPPORT +//========================================================================= +// Behat test site needs a unique www root, data directory and database prefix: +// +// $CFG->behat_wwwroot = 'http://127.0.0.1/moodle'; +// $CFG->behat_prefix = 'bht_'; +// $CFG->behat_dataroot = '/home/example/bht_moodledata'; +// +// You can override default Moodle configuration for Behat and add your own +// params; here you can add more profiles, use different Mink drivers than Selenium... +// These params would be merged with the default Moodle behat.yml, giving priority +// to the ones specified here. The array format is YAML, following the Behat +// params hierarchy. More info: http://docs.behat.org/guides/7.config.html +// Example: +// $CFG->behat_config = array( +// 'Mac-Firefox' => array( +// 'suites' => array ( +// 'default' => array( +// 'filters' => array( +// 'tags' => '~@_file_upload' +// ), +// ), +// ), +// 'extensions' => array( +// 'Behat\MinkExtension' => array( +// 'selenium2' => array( +// 'browser' => 'firefox', +// 'capabilities' => array( +// 'platform' => 'OS X 10.6', +// 'version' => 20 +// ) +// ) +// ) +// ) +// ), +// 'Mac-Safari' => array( +// 'extensions' => array( +// 'Behat\MinkExtension' => array( +// 'selenium2' => array( +// 'browser' => 'safari', +// 'capabilities' => array( +// 'platform' => 'OS X 10.8', +// 'version' => 6 +// ) +// ) +// ) +// ) +// ) +// ); +// You can also use the following config to override default Moodle configuration for Behat. +// This config is limited to default suite and will be supported in later versions. +// It will have precedence over $CFG->behat_config. +// $CFG->behat_profiles = array( +// 'phantomjs' => array( +// 'browser' => 'phantomjs', +// 'tags' => '~@_file_upload&&~@_alert&&~@_bug_phantomjs', +// 'wd_host' => 'http://127.0.0.1:4443/wd/hub', +// 'capabilities' => array( +// 'platform' => 'Linux', +// 'version' => 2.1 +// ) +// ), +// ); +// +// You can force the browser session (not user's sessions) to restart after N seconds. This could +// be useful if you are using a cloud-based service with time restrictions in the browser side. +// Setting this value the browser session that Behat is using will be restarted. Set the time in +// seconds. Is not recommended to use this setting if you don't explicitly need it. +// Example: +// $CFG->behat_restart_browser_after = 7200; // Restarts the browser session after 2 hours +// +// All this page's extra Moodle settings are compared against a white list of allowed settings +// (the basic and behat_* ones) to avoid problems with production environments. This setting can be +// used to expand the default white list with an array of extra settings. +// Example: +// $CFG->behat_extraallowedsettings = array('somecoresetting', ...); +// +// You should explicitly allow the usage of the deprecated behat steps, otherwise an exception will +// be thrown when using them. The setting is disabled by default. +// Example: +// $CFG->behat_usedeprecated = true; +// +// Including feature files from directories outside the dirroot is possible if required. The setting +// requires that the running user has executable permissions on all parent directories in the paths. +// Example: +// $CFG->behat_additionalfeatures = array('/home/developer/code/wipfeatures'); +// +// You can make behat save several dumps when a scenario fails. The dumps currently saved are: +// * a dump of the DOM in it's state at the time of failure; and +// * a screenshot (JavaScript is required for the screenshot functionality, so not all browsers support this option) +// Example: +// $CFG->behat_faildump_path = '/my/path/to/save/failure/dumps'; +// +// You can specify db, selenium wd_host etc. for behat parallel run by setting following variable. +// Example: +// $CFG->behat_parallel_run = array ( +// array ( +// 'dbtype' => 'mysqli', +// 'dblibrary' => 'native', +// 'dbhost' => 'localhost', +// 'dbname' => 'moodletest', +// 'dbuser' => 'moodle', +// 'dbpass' => 'moodle', +// 'behat_prefix' => 'mdl_', +// 'wd_host' => 'http://127.0.0.1:4444/wd/hub', +// 'behat_wwwroot' => 'http://127.0.0.1/moodle', +// 'behat_dataroot' => '/home/example/bht_moodledata' +// ), +// ); +// +// To change name of behat parallel run site, define BEHAT_PARALLEL_SITE_NAME and parallel run sites will be suffixed +// with this value +// Example: +// define('BEHAT_PARALLEL_SITE_NAME', 'behatparallelsite'); +// +// Command line output for parallel behat install is limited to 80 chars, if you are installing more then 4 sites and +// want to expand output to more then 80 chars, then define BEHAT_MAX_CMD_LINE_OUTPUT +// Example: +// define('BEHAT_MAX_CMD_LINE_OUTPUT', 120); +// +// Behat feature files will be distributed randomly between the processes by default. If you have timing file or want +// to create timing file then define BEHAT_FEATURE_TIMING_FILE with path to timing file. It will be updated for each +// run with latest time taken to execute feature. +// Example: +// define('BEHAT_FEATURE_TIMING_FILE', '/PATH_TO_TIMING_FILE/timing.json'); +// +// If you don't have timing file and want some stable distribution of features, then you can use step counts to +// distribute the features. You can generate step file by executing php admin/tool/behat/cli/util.php --updatesteps +// this will update step file which is defined by BEHAT_FEATURE_STEP_FILE. +// Example: +// define('BEHAT_FEATURE_STEP_FILE', '/PATH_TO_FEATURE_STEP_COUNT_FILE/stepcount.json'); +// +// Feature distribution for each process is displayed as histogram. you can disable it by setting +// BEHAT_DISABLE_HISTOGRAM +// Example: +// define('BEHAT_DISABLE_HISTOGRAM', true); +// +//========================================================================= +// 12. DEVELOPER DATA GENERATOR +//========================================================================= +// +// The developer data generator tool is intended to be used only in development or testing sites and +// it's usage in production environments is not recommended; if it is used to create JMeter test plans +// is even less recommended as JMeter needs to log in as site course users. JMeter needs to know the +// users passwords but would be dangerous to have a default password as everybody would know it, which would +// be specially dangerouse if somebody uses this tool in a production site, so in order to prevent unintended +// uses of the tool and undesired accesses as well, is compulsory to set a password for the users +// generated by this tool, but only in case you want to generate a JMeter test. The value should be a string. +// Example: +// $CFG->tool_generator_users_password = 'examplepassword'; +// +//========================================================================= +// 13. SYSTEM PATHS (You need to set following, depending on your system) +//========================================================================= +// Ghostscript path. +// On most Linux installs, this can be left as '/usr/bin/gs'. +// On Windows it will be something like 'c:\gs\bin\gswin32c.exe' (make sure +// there are no spaces in the path - if necessary copy the files 'gswin32c.exe' +// and 'gsdll32.dll' to a new folder without a space in the path) +// $CFG->pathtogs = '/usr/bin/gs'; +// +// Path to du. +// Probably something like /usr/bin/du. If you enter this, pages that display +// directory contents will run much faster for directories with a lot of files. +// $CFG->pathtodu = ''; +// +// Path to aspell. +// To use spell-checking within the editor, you MUST have aspell 0.50 or later +// installed on your server, and you must specify the correct path to access the +// aspell binary. On Unix/Linux systems, this path is usually /usr/bin/aspell, +// but it might be something else. +// $CFG->aspellpath = ''; +// +// Path to dot. +// Probably something like /usr/bin/dot. To be able to generate graphics from +// DOT files, you must have installed the dot executable and point to it here. +// Note that, for now, this only used by the profiling features +// (Development->Profiling) built into Moodle. +// $CFG->pathtodot = ''; +// +// Path to unoconv. +// Probably something like /usr/bin/unoconv. Used as a fallback to convert between document formats. +// Unoconv is used convert between file formats supported by LibreOffice. +// Use a recent version of unoconv ( >= 0.7 ), older versions have trouble running from a webserver. +// $CFG->pathtounoconv = ''; +// +//========================================================================= +// 14. ALTERNATIVE FILE SYSTEM SETTINGS +//========================================================================= +// +// Alternative file system. +// Since 3.3 it is possible to override file_storage and file_system API and use alternative storage systems (e.g. S3, +// Rackspace Cloud Files, Google Cloud Storage, Azure Storage, etc.). +// To set the alternative file storage system in config.php you can use the following setting, providing the +// alternative system class name that will be auto-loaded by file_storage API. +// +// $CFG->alternative_file_system_class = '\\local_myfilestorage\\file_system'; +// + +//========================================================================= +// 15. EXTRA CONFIGURATION +//========================================================================= +{% for conf in moodle_extra_conf %} +$CFG->{{conf.name}} = {{ conf.value }}; +{% endfor %} + +//========================================================================= +// ALL DONE! To continue installation, visit your main page with a browser +//========================================================================= + +require_once(__DIR__ . '/lib/setup.php'); // Do not edit + +// There is no php closing tag in this file, +// it is intentional because it prevents trailing whitespace problems! From 790c0f5d690d0d571c74dfc9ae1d9647294e9dfa Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 8 Dec 2020 16:21:28 -0800 Subject: [PATCH 005/129] Changing some files and settings --- .../roles/ansible-role-moodle-master/defaults/main.yml | 9 +++++---- ansible/roles/connectbox-pi/meta/main.yml | 1 + 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/ansible/roles/ansible-role-moodle-master/defaults/main.yml b/ansible/roles/ansible-role-moodle-master/defaults/main.yml index 27df53a1..61683ea4 100644 --- a/ansible/roles/ansible-role-moodle-master/defaults/main.yml +++ b/ansible/roles/ansible-role-moodle-master/defaults/main.yml @@ -13,15 +13,16 @@ moodle_git_key_file: "" # The path where Moodle will be downloaded and installed and site data directory # We changed the traditional used /var/www/ to a folder in /srv by default as it seems more in line with the FHS # http://www.pathname.com/fhs/pub/fhs-2.3.html#SRVDATAFORSERVICESPROVIDEDBYSYSTEM -moodle_src_path: "/srv/moodle/src" +moodle_src_path: "/var/www/moodle/src" + # Here we have the data that is either clustered or not # (https://docs.moodle.org/26/en/Server_cluster#Related_config.php_settings) # We will split the folders into local/and shared data (the folder being shared or not) moodle_sitedata: - shared_data_folder: "/srv/moodle/shareddata" - local_data_folder: "/srv/moodle/localdata" + shared_data_folder: "/var/www/moodle/shareddata" + local_data_folder: "/var/www/moodle/localdata" data_dir_name: 'sitedata' temp_dir_name: 'temp' cache_dir_name: 'cache' @@ -41,7 +42,7 @@ moodle_database: dbtype: "pgsql" dbhost: "localhost" dbname: "moodle" - dbuser: "username" + dbuser: "postgres" dbpass: "password" dbprefix: "mdl_" diff --git a/ansible/roles/connectbox-pi/meta/main.yml b/ansible/roles/connectbox-pi/meta/main.yml index 6223ffd0..629c5086 100644 --- a/ansible/roles/connectbox-pi/meta/main.yml +++ b/ansible/roles/connectbox-pi/meta/main.yml @@ -12,3 +12,4 @@ dependencies: - usb-content - sample-content - ansible-postgresql + - ansible-role-moodle-master From ad4764337a87d47aecb77188c8cee408e0b52630 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 9 Dec 2020 08:27:56 -0800 Subject: [PATCH 006/129] PHP Initial Checkin --- ansible/roles/ansible-role-php/.ansible-lint | 5 + .../ansible-role-php/.github/FUNDING.yml | 4 + .../roles/ansible-role-php/.github/stale.yml | 56 ++++ ansible/roles/ansible-role-php/.gitignore | 3 + ansible/roles/ansible-role-php/.travis.yml | 38 +++ ansible/roles/ansible-role-php/.yamllint | 11 + ansible/roles/ansible-role-php/LICENSE | 20 ++ ansible/roles/ansible-role-php/README.md | 239 ++++++++++++++++++ .../roles/ansible-role-php/defaults/main.yml | 140 ++++++++++ .../roles/ansible-role-php/handlers/main.yml | 15 ++ ansible/roles/ansible-role-php/meta/main.yml | 37 +++ .../molecule/default/converge.yml | 70 +++++ .../molecule/default/molecule.yml | 21 ++ .../molecule/default/playbook-source.yml | 32 +++ .../molecule/default/requirements.yml | 3 + .../ansible-role-php/tasks/configure-apcu.yml | 37 +++ .../ansible-role-php/tasks/configure-fpm.yml | 78 ++++++ .../tasks/configure-opcache.yml | 37 +++ .../ansible-role-php/tasks/configure.yml | 21 ++ .../tasks/install-from-source.yml | 158 ++++++++++++ ansible/roles/ansible-role-php/tasks/main.yml | 76 ++++++ .../ansible-role-php/tasks/setup-Debian.yml | 27 ++ .../ansible-role-php/tasks/setup-RedHat.yml | 7 + .../ansible-role-php/templates/apc.ini.j2 | 4 + .../ansible-role-php/templates/fpm-init.j2 | 170 +++++++++++++ .../ansible-role-php/templates/opcache.ini.j2 | 14 + .../templates/php-fpm.conf.j2 | 12 + .../ansible-role-php/templates/php.ini.j2 | 221 ++++++++++++++++ .../ansible-role-php/templates/www.conf.j2 | 15 ++ .../roles/ansible-role-php/vars/Debian-10.yml | 2 + .../roles/ansible-role-php/vars/Debian-9.yml | 2 + .../roles/ansible-role-php/vars/Debian.yml | 39 +++ .../roles/ansible-role-php/vars/RedHat.yml | 32 +++ .../roles/ansible-role-php/vars/Ubuntu-16.yml | 2 + .../roles/ansible-role-php/vars/Ubuntu-18.yml | 2 + .../roles/ansible-role-php/vars/Ubuntu-20.yml | 2 + 36 files changed, 1652 insertions(+) create mode 100644 ansible/roles/ansible-role-php/.ansible-lint create mode 100644 ansible/roles/ansible-role-php/.github/FUNDING.yml create mode 100644 ansible/roles/ansible-role-php/.github/stale.yml create mode 100644 ansible/roles/ansible-role-php/.gitignore create mode 100644 ansible/roles/ansible-role-php/.travis.yml create mode 100644 ansible/roles/ansible-role-php/.yamllint create mode 100644 ansible/roles/ansible-role-php/LICENSE create mode 100644 ansible/roles/ansible-role-php/README.md create mode 100644 ansible/roles/ansible-role-php/defaults/main.yml create mode 100644 ansible/roles/ansible-role-php/handlers/main.yml create mode 100644 ansible/roles/ansible-role-php/meta/main.yml create mode 100644 ansible/roles/ansible-role-php/molecule/default/converge.yml create mode 100644 ansible/roles/ansible-role-php/molecule/default/molecule.yml create mode 100644 ansible/roles/ansible-role-php/molecule/default/playbook-source.yml create mode 100644 ansible/roles/ansible-role-php/molecule/default/requirements.yml create mode 100644 ansible/roles/ansible-role-php/tasks/configure-apcu.yml create mode 100644 ansible/roles/ansible-role-php/tasks/configure-fpm.yml create mode 100644 ansible/roles/ansible-role-php/tasks/configure-opcache.yml create mode 100644 ansible/roles/ansible-role-php/tasks/configure.yml create mode 100644 ansible/roles/ansible-role-php/tasks/install-from-source.yml create mode 100644 ansible/roles/ansible-role-php/tasks/main.yml create mode 100644 ansible/roles/ansible-role-php/tasks/setup-Debian.yml create mode 100644 ansible/roles/ansible-role-php/tasks/setup-RedHat.yml create mode 100644 ansible/roles/ansible-role-php/templates/apc.ini.j2 create mode 100644 ansible/roles/ansible-role-php/templates/fpm-init.j2 create mode 100644 ansible/roles/ansible-role-php/templates/opcache.ini.j2 create mode 100644 ansible/roles/ansible-role-php/templates/php-fpm.conf.j2 create mode 100644 ansible/roles/ansible-role-php/templates/php.ini.j2 create mode 100644 ansible/roles/ansible-role-php/templates/www.conf.j2 create mode 100644 ansible/roles/ansible-role-php/vars/Debian-10.yml create mode 100644 ansible/roles/ansible-role-php/vars/Debian-9.yml create mode 100644 ansible/roles/ansible-role-php/vars/Debian.yml create mode 100644 ansible/roles/ansible-role-php/vars/RedHat.yml create mode 100644 ansible/roles/ansible-role-php/vars/Ubuntu-16.yml create mode 100644 ansible/roles/ansible-role-php/vars/Ubuntu-18.yml create mode 100644 ansible/roles/ansible-role-php/vars/Ubuntu-20.yml diff --git a/ansible/roles/ansible-role-php/.ansible-lint b/ansible/roles/ansible-role-php/.ansible-lint new file mode 100644 index 00000000..9034f22a --- /dev/null +++ b/ansible/roles/ansible-role-php/.ansible-lint @@ -0,0 +1,5 @@ +skip_list: + - '306' + - '405' + - '503' + - '106' diff --git a/ansible/roles/ansible-role-php/.github/FUNDING.yml b/ansible/roles/ansible-role-php/.github/FUNDING.yml new file mode 100644 index 00000000..96b49383 --- /dev/null +++ b/ansible/roles/ansible-role-php/.github/FUNDING.yml @@ -0,0 +1,4 @@ +# These are supported funding model platforms +--- +github: geerlingguy +patreon: geerlingguy diff --git a/ansible/roles/ansible-role-php/.github/stale.yml b/ansible/roles/ansible-role-php/.github/stale.yml new file mode 100644 index 00000000..c7ff1275 --- /dev/null +++ b/ansible/roles/ansible-role-php/.github/stale.yml @@ -0,0 +1,56 @@ +# Configuration for probot-stale - https://github.com/probot/stale + +# Number of days of inactivity before an Issue or Pull Request becomes stale +daysUntilStale: 90 + +# Number of days of inactivity before an Issue or Pull Request with the stale label is closed. +# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale. +daysUntilClose: 30 + +# Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled) +onlyLabels: [] + +# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable +exemptLabels: + - pinned + - security + - planned + +# Set to true to ignore issues in a project (defaults to false) +exemptProjects: false + +# Set to true to ignore issues in a milestone (defaults to false) +exemptMilestones: false + +# Set to true to ignore issues with an assignee (defaults to false) +exemptAssignees: false + +# Label to use when marking as stale +staleLabel: stale + +# Limit the number of actions per hour, from 1-30. Default is 30 +limitPerRun: 30 + +pulls: + markComment: |- + This pull request has been marked 'stale' due to lack of recent activity. If there is no further activity, the PR will be closed in another 30 days. Thank you for your contribution! + + Please read [this blog post](https://www.jeffgeerling.com/blog/2020/enabling-stale-issue-bot-on-my-github-repositories) to see the reasons why I mark pull requests as stale. + + unmarkComment: >- + This pull request is no longer marked for closure. + + closeComment: >- + This pull request has been closed due to inactivity. If you feel this is in error, please reopen the pull request or file a new PR with the relevant details. + +issues: + markComment: |- + This issue has been marked 'stale' due to lack of recent activity. If there is no further activity, the issue will be closed in another 30 days. Thank you for your contribution! + + Please read [this blog post](https://www.jeffgeerling.com/blog/2020/enabling-stale-issue-bot-on-my-github-repositories) to see the reasons why I mark issues as stale. + + unmarkComment: >- + This issue is no longer marked for closure. + + closeComment: >- + This issue has been closed due to inactivity. If you feel this is in error, please reopen the issue or file a new issue with the relevant details. diff --git a/ansible/roles/ansible-role-php/.gitignore b/ansible/roles/ansible-role-php/.gitignore new file mode 100644 index 00000000..f56f5b57 --- /dev/null +++ b/ansible/roles/ansible-role-php/.gitignore @@ -0,0 +1,3 @@ +*.retry +*/__pycache__ +*.pyc diff --git a/ansible/roles/ansible-role-php/.travis.yml b/ansible/roles/ansible-role-php/.travis.yml new file mode 100644 index 00000000..da688cd5 --- /dev/null +++ b/ansible/roles/ansible-role-php/.travis.yml @@ -0,0 +1,38 @@ +--- +language: python +services: docker + +env: + global: + - ROLE_NAME: php + matrix: + - MOLECULE_DISTRO: centos8 + - MOLECULE_DISTRO: centos7 + - MOLECULE_DISTRO: ubuntu2004 + - MOLECULE_DISTRO: ubuntu1804 + - MOLECULE_DISTRO: debian10 + - MOLECULE_DISTRO: debian9 + + - MOLECULE_DISTRO: centos7 + MOLECULE_PLAYBOOK: playbook-source.yml + +before_install: + # Upgrade Docker to work with docker-py. + - curl https://gist.githubusercontent.com/geerlingguy/ce883ad4aec6a5f1187ef93bd338511e/raw/36612d28981d92863f839c5aefe5b7dd7193d6c6/travis-ci-docker-upgrade.sh | sudo bash + +install: + # Install test dependencies. + - pip install molecule yamllint ansible-lint docker + +before_script: + # Use actual Ansible Galaxy role name for the project directory. + - cd ../ + - mv ansible-role-$ROLE_NAME geerlingguy.$ROLE_NAME + - cd geerlingguy.$ROLE_NAME + +script: + # Run tests. + - molecule test + +notifications: + webhooks: https://galaxy.ansible.com/api/v1/notifications/ diff --git a/ansible/roles/ansible-role-php/.yamllint b/ansible/roles/ansible-role-php/.yamllint new file mode 100644 index 00000000..f2033dd2 --- /dev/null +++ b/ansible/roles/ansible-role-php/.yamllint @@ -0,0 +1,11 @@ +--- +extends: default + +rules: + line-length: + max: 120 + level: warning + +ignore: | + .github/stale.yml + .travis.yml diff --git a/ansible/roles/ansible-role-php/LICENSE b/ansible/roles/ansible-role-php/LICENSE new file mode 100644 index 00000000..4275cf3c --- /dev/null +++ b/ansible/roles/ansible-role-php/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2017 Jeff Geerling + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/ansible/roles/ansible-role-php/README.md b/ansible/roles/ansible-role-php/README.md new file mode 100644 index 00000000..b8ccf5e5 --- /dev/null +++ b/ansible/roles/ansible-role-php/README.md @@ -0,0 +1,239 @@ +# Ansible Role: PHP + +[![Build Status](https://travis-ci.org/geerlingguy/ansible-role-php.svg?branch=master)](https://travis-ci.org/geerlingguy/ansible-role-php) + +Installs PHP on RedHat/CentOS and Debian/Ubuntu servers. + +## Requirements + +If you're using an older LTS release of Ubuntu or RHEL, with an old/outdated version of PHP, you need to use a repo or PPA with a maintained PHP version, as this role only works with [PHP versions that are currently supported](http://php.net/supported-versions.php) by the PHP community. + +## Role Variables + +Available variables are listed below, along with default values (see `defaults/main.yml`): + + php_packages: [] + +A list of the PHP packages to install (OS-specific by default). You'll likely want to install common packages like `php`, `php-cli`, `php-devel` and `php-pdo`, and you can add in whatever other packages you'd like (for example, `php-gd` for image manipulation, or `php-ldap` if you need to connect to an LDAP server for authentication). + +_Note: If you're using Debian/Ubuntu, you also need to install `libapache2-mod-fastcgi` (for cgi/PHP-FPM) or `libapache2-mod-php7.0` (or a similar package depending on PHP version) if you want to use `mod_php` with Apache._ + + php_packages_extra: [] + +A list of extra PHP packages to install without overriding the default list. + + php_enable_webserver: true + +If your usage of PHP is tied to a web server (e.g. Apache or Nginx), leave this default value. If you are using PHP server-side or to run some small application, set this value to `false` so this role doesn't attempt to interact with a web server. + + php_webserver_daemon: "httpd" + +The default values for the HTTP server deamon are `httpd` (used by Apache) for RedHat/CentOS, or `apache2` (also used by Apache) for Debian/Ubuntu. If you are running another webserver (for example, `nginx`), change this value to the name of the daemon under which the webserver runs. + + php_enablerepo: "" + +(RedHat/CentOS only) If you have enabled any additional repositories (might I suggest [geerlingguy.repo-epel](https://github.com/geerlingguy/ansible-role-repo-epel) or [geerlingguy.repo-remi](https://github.com/geerlingguy/ansible-role-repo-remi)), those repositories can be listed under this variable (e.g. `remi-php70,epel`). This can be handy, as an example, if you want to install the latest version of PHP 7.0, which is in the Remi repository. + + php_default_version_debian: "7.0" + +(Debian/Ubuntu only) The default version of PHP in the given OS version repositories. Defaults to the latest Ubuntu LTS release. Ubuntu 18.04 needs this to be set to `"7.2"` since PHP 7.0 is not available in the default bionic packages. + +**If you'd like to be able to switch PHP versions easily, or use a version that's not available in system packages**: You can use the [`geerlingguy.php-versions`](https://galaxy.ansible.com/geerlingguy/php-versions/) role to more easily switch between major PHP versions (e.g. 5.6, 7.1, 7.2). + + php_packages_state: "present" + +If you have enabled any additional repositories such as [geerlingguy.repo-epel](https://github.com/geerlingguy/ansible-role-repo-epel) or [geerlingguy.repo-remi](https://github.com/geerlingguy/ansible-role-repo-remi), you may want an easy way to swap PHP versions on the fly. By default, this is set to `"present"`. You can override this variable to `"latest"` to upgrade to the latest available version. Combined with `php_enablerepo`, a user now doesn't need to manually uninstall the existing PHP packages before installing them from a different repository. + + php_install_recommends: true + +(Debian/Ubuntu only) Whether to install recommended packages when installing `php_packages`; you might want to set this to `no` explicitly if you're installing a PPA that recommends certain packages you don't want (e.g. Ondrej's `php` PPA will install `php7.0-cli` if you install `php-pear` alongside `php5.6-cli`... which is often not desired!). + + php_executable: "php" + +The executable to run when calling PHP from the command line. You should only change this if running `php` on your server doesn't target the correct executable, or if you're using software collections on RHEL/CentOS and need to target a different version of PHP. + +### PHP-FPM + +PHP-FPM is a simple and robust FastCGI Process Manager for PHP. It can dramatically ease scaling of PHP apps and is the normal way of running PHP-based sites and apps when using a webserver like Nginx (though it can be used with other webservers just as easily). + +When using this role with PHP running as `php-fpm` instead of as a process inside a webserver (e.g. Apache's `mod_php`), you need to set the following variable to `true`: + + php_enable_php_fpm: false + +If you're using Apache, you can easily get it configured to work with PHP-FPM using the [geerlingguy.apache-php-fpm](https://github.com/geerlingguy/ansible-role-apache-php-fpm) role. + + php_fpm_state: started + php_fpm_enabled_on_boot: true + +Control over the fpm daemon's state; set these to `stopped` and `false` if you want FPM to be installed and configured, but not running (e.g. when installing in a container). + + php_fpm_handler_state: restarted + +The handler restarts PHP-FPM by default. Setting the value to `reloaded` will reload the service, intead of restarting it. + + php_fpm_listen: "127.0.0.1:9000" + php_fpm_listen_allowed_clients: "127.0.0.1" + php_fpm_pm_max_children: 50 + php_fpm_pm_start_servers: 5 + php_fpm_pm_min_spare_servers: 5 + php_fpm_pm_max_spare_servers: 5 + +Specific settings inside the default `www.conf` PHP-FPM pool. If you'd like to manage additional settings, you can do so either by replacing the file with your own template or using `lineinfile` like this role does inside `tasks/configure-fpm.yml`. + +### php.ini settings + + php_use_managed_ini: true + +By default, all the extra defaults below are applied through the php.ini included with this role. You can self-manage your php.ini file (if you need more flexility in its configuration) by setting this to `false` (in which case all the below variables will be ignored). + + php_fpm_pool_user: "[apache|nginx|other]" # default varies by OS + php_fpm_pool_group: "[apache|nginx|other]" # default varies by OS + php_memory_limit: "256M" + php_max_execution_time: "60" + php_max_input_time: "60" + php_max_input_vars: "1000" + php_realpath_cache_size: "32K" + php_file_uploads: "On" + php_upload_max_filesize: "64M" + php_max_file_uploads: "20" + php_post_max_size: "32M" + php_date_timezone: "America/Chicago" + php_allow_url_fopen: "On" + php_sendmail_path: "/usr/sbin/sendmail -t -i" + php_output_buffering: "4096" + php_short_open_tag: false + php_error_reporting: "E_ALL & ~E_DEPRECATED & ~E_STRICT" + php_display_errors: "Off" + php_display_startup_errors: "On" + php_expose_php: "On" + php_session_cookie_lifetime: 0 + php_session_gc_probability: 1 + php_session_gc_divisor: 1000 + php_session_gc_maxlifetime: 1440 + php_session_save_handler: files + php_session_save_path: '' + php_disable_functions: [] + php_precision: 14 + php_serialize_precision: "-1" + +Various defaults for PHP. Only used if `php_use_managed_ini` is set to `true`. + +### OpCache-related Variables + +The OpCache is included in PHP starting in version 5.5, and the following variables will only take effect if the version of PHP you have installed is 5.5 or greater. + + php_opcache_zend_extension: "opcache.so" + php_opcache_enable: "1" + php_opcache_enable_cli: "0" + php_opcache_memory_consumption: "96" + php_opcache_interned_strings_buffer: "16" + php_opcache_max_accelerated_files: "4096" + php_opcache_max_wasted_percentage: "5" + php_opcache_validate_timestamps: "1" + php_opcache_revalidate_path: "0" + php_opcache_revalidate_freq: "2" + php_opcache_max_file_size: "0" + +OpCache ini directives that are often customized on a system. Make sure you have enough memory and file slots allocated in the OpCache (`php_opcache_memory_consumption`, in MB, and `php_opcache_max_accelerated_files`) to contain all the PHP code you are running. If not, you may get less-than-optimal performance! + +For custom opcache.so location provide full path with `php_opcache_zend_extension`. + + php_opcache_conf_filename: [platform-specific] + +The platform-specific opcache configuration filename. Generally the default should work, but in some cases, you may need to override the filename. + +### APCu-related Variables + + php_enable_apc: true + +Whether to enable APCu. Other APCu variables will be ineffective if this is set to false. + + php_apc_shm_size: "96M" + php_apc_enable_cli: "0" + +APCu ini directives that are often customized on a system. Set the `php_apc_shm_size` so it will hold all cache entries in memory with a little overhead (fragmentation or APC running out of memory will slow down PHP *dramatically*). + + php_apc_conf_filename: [platform-specific] + +The platform-specific APC configuration filename. Generally the default should work, but in some cases, you may need to override the filename. + +#### Ensuring APC is installed + +If you use APC, you will need to make sure APC is installed (it is installed by default, but if you customize the `php_packages` list, you need to include APC in the list): + + - *On RHEL/CentOS systems*: Make sure `php-pecl-apcu` is in the list of `php_packages`. + - *On Debian/Ubuntu systems*: Make sure `php-apcu` is in the list of `php_packages`. + +### Installing from Source + +If you need a specific version of PHP, or would like to test the latest (e.g. master) version of PHP, there's a good chance there's no suitable package already available in your platform's package manager. In these cases, you may choose to install PHP from source by compiling it directly. + +Note that source compilation takes *much* longer than installing from packages (PHP HEAD takes 5+ minutes to compile on a modern quad-core computer, just as a point of reference). + + php_install_from_source: false + +Set this to `true` to install PHP from source instead of installing from packages. + + php_source_version: "master" + +The version of PHP to install from source (a git branch, tag, or commit hash). + + php_source_clone_dir: "~/php-src" + php_source_clone_depth: 1 + php_source_install_path: "/opt/php" + php_source_install_gmp_path: "/usr/include/x86_64-linux-gnu/gmp.h" + php_source_mysql_config: "/usr/bin/mysql_config" + +Location where source will be cloned and installed, and the location of the GMP header file (which can be platform/distribution specific), and `mysql_config` binary (this may be `mariadb_config` in newer operating system versions). + + php_source_make_command: "make" + +Set the `make` command to `make --jobs=X` where `X` is the number of cores present on the server where PHP is being compiled. Will speed up compilation times dramatically if you have multiple cores. + + php_source_configure_command: > + [...] + +The `./configure` command that will build the Makefile to be used for PHP compilation. Add in all the options you need for your particular environment. Using a folded scalar (`>`) allows you to define the variable over multiple lines, which is extremely helpful for legibility and source control! + +A few other notes/caveats for specific configurations: + + - **Apache with `mpm_prefork`**: If you're using Apache with prefork as a webserver for PHP, you will need to make sure `apxs2` is available on your system (e.g. by installing `apache2-prefork-dev` in Ubuntu), and you will need to make sure the option `--with-apxs2` is defined in `php_source_configure_command`. Finally, you will need to make sure the `mpm_prefork` module is loaded instead of `mpm_worker` or `mpm_event`, and likely add a `phpX.conf` (where `X` is the major version of PHP) configuration file to the Apache module config folder with contents like [`php7.conf`](https://gist.github.com/geerlingguy/5ae5445f28e71264e8c1). + - **Apache with `mpm_event` or `mpm_worker`**: If you're using Apache with event or worker as a webserver for PHP, you will need to compile PHP with FPM. Make sure the option `--enable-fpm` is defined in `php_source_configure_command`. You'll also need to make sure Apache's support for CGI and event is installed (e.g. by installing `apache2-mpm-event` and `libapache2-mod-fastcgi`) and the `mpm_event` module is loaded. + - **Nginx**: If you're using Nginx as a webserver for PHP, you will need to compile PHP with FPM. Make sure the option `--enable-fpm` is defined in `php_source_configure_command`. + +## Dependencies + +None. + +## Example Playbook + + - hosts: webservers + vars_files: + - vars/main.yml + roles: + - { role: geerlingguy.php } + +*Inside `vars/main.yml`*: + + php_memory_limit: "128M" + php_max_execution_time: "90" + php_upload_max_filesize: "256M" + php_packages: + - php + - php-cli + - php-common + - php-devel + - php-gd + - php-mbstring + - php-pdo + - php-pecl-apcu + - php-xml + ... + +## License + +MIT / BSD + +## Author Information + +This role was created in 2014 by [Jeff Geerling](https://www.jeffgeerling.com/), author of [Ansible for DevOps](https://www.ansiblefordevops.com/). diff --git a/ansible/roles/ansible-role-php/defaults/main.yml b/ansible/roles/ansible-role-php/defaults/main.yml new file mode 100644 index 00000000..e716d590 --- /dev/null +++ b/ansible/roles/ansible-role-php/defaults/main.yml @@ -0,0 +1,140 @@ +--- +# Pass in a comma-separated list of repos to use (e.g. "remi,epel"). Used only +# for RHEL/CentOS. +php_enablerepo: "" + +# Extra packages to install (in addition to distro-specific default lists). +php_packages_extra: [] + +# Default PHP version to install on Debian-based OSes (OS-specific). +# php_default_version_debian: "" + +# PHP package state; use 'present' to make sure it's installed, or 'latest' if +# you want to upgrade or switch versions using a new repo. +php_packages_state: present + +# Whether to install recommended packages. Used only for Debian/Ubuntu. +php_install_recommends: true + +# Set this to false if you're not using PHP with Apache/Nginx/etc. +php_enable_webserver: true + +# PHP-FPM configuration. +php_enable_php_fpm: false +php_fpm_state: started +php_fpm_handler_state: restarted +php_fpm_enabled_on_boot: true +php_fpm_listen: "127.0.0.1:9000" +php_fpm_listen_allowed_clients: "127.0.0.1" +php_fpm_pm_max_children: 50 +php_fpm_pm_start_servers: 5 +php_fpm_pm_min_spare_servers: 5 +php_fpm_pm_max_spare_servers: 5 + +# The executable to run when calling PHP from the command line. +php_executable: "php" + +# OpCache settings. +php_opcache_zend_extension: "opcache.so" +php_opcache_enable: "1" +php_opcache_enable_cli: "0" +php_opcache_memory_consumption: "96" +php_opcache_interned_strings_buffer: "16" +php_opcache_max_accelerated_files: "4096" +php_opcache_max_wasted_percentage: "5" +php_opcache_validate_timestamps: "1" +php_opcache_revalidate_path: "0" +php_opcache_revalidate_freq: "2" +php_opcache_max_file_size: "0" +php_opcache_blacklist_filename: "" + +# APCu settings. +php_enable_apc: true +php_apc_shm_size: "96M" +php_apc_enable_cli: "0" + +# If this is set to false, none of the following options will have any effect. +# Any and all changes to /etc/php.ini will be your responsibility. +php_use_managed_ini: true + +php_expose_php: "On" +php_memory_limit: "256M" +php_max_execution_time: "60" +php_max_input_time: "60" +php_max_input_vars: "1000" +php_realpath_cache_size: "32K" + +php_file_uploads: "On" +php_upload_max_filesize: "64M" +php_max_file_uploads: "20" + +php_post_max_size: "32M" +php_date_timezone: "America/Chicago" +php_allow_url_fopen: "On" + +php_sendmail_path: "/usr/sbin/sendmail -t -i" +php_output_buffering: "4096" +php_short_open_tag: "Off" +php_disable_functions: [] +php_precision: 14 +php_serialize_precision: "-1" + +php_session_cookie_lifetime: 0 +php_session_gc_probability: 1 +php_session_gc_divisor: 1000 +php_session_gc_maxlifetime: 1440 +php_session_save_handler: files +php_session_save_path: '' + +php_error_reporting: "E_ALL & ~E_DEPRECATED & ~E_STRICT" +php_display_errors: "Off" +php_display_startup_errors: "Off" + +# Install PHP from source (instead of using a package manager) with these vars. +php_install_from_source: false +php_source_repo: "https://git.php.net/repository/php-src.git" +php_source_version: "master" +php_source_clone_dir: "~/php-src" +php_source_clone_depth: 1 +php_source_install_path: "/opt/php" +php_source_install_gmp_path: "/usr/include/x86_64-linux-gnu/gmp.h" +php_source_mysql_config: "/usr/bin/mysql_config" +# For faster compile time: "make --jobs=X" where X is # of cores present. +php_source_make_command: "make" +php_source_configure_command: > + ./configure + --prefix={{ php_source_install_path }} + --with-config-file-path={{ php_conf_paths | first }} + --enable-mbstring + --enable-zip + --enable-bcmath + --enable-pcntl + --enable-ftp + --enable-exif + --enable-calendar + --enable-opcache + --enable-pdo + --enable-sysvmsg + --enable-sysvsem + --enable-sysvshm + --enable-wddx + --with-curl + --with-mcrypt + --with-iconv + --with-gmp + --with-pspell + --with-gd + --with-jpeg-dir=/usr + --with-png-dir=/usr + --with-zlib-dir=/usr + --with-xpm-dir=/usr + --with-freetype-dir=/usr + --enable-gd-native-ttf + --enable-gd-jis-conv + --with-openssl + --with-pdo-mysql=/usr + --with-gettext=/usr + --with-zlib=/usr + --with-bz2=/usr + --with-recode=/usr + --with-mysqli={{ php_source_mysql_config }} diff --git a/ansible/roles/ansible-role-php/handlers/main.yml b/ansible/roles/ansible-role-php/handlers/main.yml new file mode 100644 index 00000000..e0d0a292 --- /dev/null +++ b/ansible/roles/ansible-role-php/handlers/main.yml @@ -0,0 +1,15 @@ +--- +- name: restart webserver + service: + name: "{{ php_webserver_daemon }}" + state: restarted + notify: restart php-fpm + when: php_enable_webserver + +- name: restart php-fpm + service: + name: "{{ php_fpm_daemon }}" + state: "{{ php_fpm_handler_state }}" + when: + - php_enable_php_fpm + - php_fpm_state == 'started' diff --git a/ansible/roles/ansible-role-php/meta/main.yml b/ansible/roles/ansible-role-php/meta/main.yml new file mode 100644 index 00000000..821b9732 --- /dev/null +++ b/ansible/roles/ansible-role-php/meta/main.yml @@ -0,0 +1,37 @@ +--- +dependencies: [] + +galaxy_info: + role_name: php + author: geerlingguy + description: PHP for RedHat/CentOS/Fedora/Debian/Ubuntu. + company: "Midwestern Mac, LLC" + license: "license (BSD, MIT)" + min_ansible_version: 2.8 + platforms: + - name: EL + versions: + - 6 + - 7 + - 8 + - name: Fedora + versions: + - all + - name: Debian + versions: + - all + - name: Ubuntu + versions: + - trusty + - xenial + - bionic + galaxy_tags: + - development + - web + - php + - language + - fpm + - drupal + - wordpress + - joomla + - magento diff --git a/ansible/roles/ansible-role-php/molecule/default/converge.yml b/ansible/roles/ansible-role-php/molecule/default/converge.yml new file mode 100644 index 00000000..41ae7c19 --- /dev/null +++ b/ansible/roles/ansible-role-php/molecule/default/converge.yml @@ -0,0 +1,70 @@ +--- +- name: Converge + hosts: all + become: true + + vars: + php_enable_webserver: false + php_enable_php_fpm: true + php_memory_limit: "192M" + php_enablerepo: "remi,remi-php70" + php_install_recommends: false + + handlers: + - name: update apt cache + apt: update_cache=true + when: ansible_os_family == 'Debian' + + pre_tasks: + - name: Update apt cache. + apt: update_cache=true cache_valid_time=600 + when: ansible_os_family == 'Debian' + changed_when: false + + # Ubuntu-specific tasks. + - name: Ensure dirmngr is installed (gnupg dependency). + apt: + name: dirmngr + state: present + when: ansible_os_family == 'Debian' + + - name: Add repository for PHP 7. + apt_repository: repo='ppa:ondrej/php' + when: ansible_distribution == 'Ubuntu' + + # Debian-specific tasks. + - name: Add dependencies for PHP versions (Debian). + apt: + name: + - apt-transport-https + - ca-certificates + - gnupg2 + state: present + when: ansible_distribution == "Debian" + + - name: Add Ondrej Sury's apt key (Debian). + apt_key: + url: https://packages.sury.org/php/apt.gpg + state: present + when: ansible_distribution == "Debian" + + - name: Add Ondrej Sury's repo (Debian). + apt_repository: + repo: "deb https://packages.sury.org/php/ {{ ansible_distribution_release }} main" + state: present + when: ansible_distribution == "Debian" + notify: update apt cache + + - meta: flush_handlers + + roles: + - role: geerlingguy.repo-remi + when: + - ansible_os_family == 'RedHat' + - ansible_distribution != 'Fedora' + - role: geerlingguy.php + + post_tasks: + - name: Confirm PHP configuration is correct. + shell: php -i | grep 'memory_limit.*192' + changed_when: false diff --git a/ansible/roles/ansible-role-php/molecule/default/molecule.yml b/ansible/roles/ansible-role-php/molecule/default/molecule.yml new file mode 100644 index 00000000..2da47dd1 --- /dev/null +++ b/ansible/roles/ansible-role-php/molecule/default/molecule.yml @@ -0,0 +1,21 @@ +--- +dependency: + name: galaxy +driver: + name: docker +lint: | + set -e + yamllint . + ansible-lint +platforms: + - name: instance + image: "geerlingguy/docker-${MOLECULE_DISTRO:-centos7}-ansible:latest" + command: ${MOLECULE_DOCKER_COMMAND:-""} + volumes: + - /sys/fs/cgroup:/sys/fs/cgroup:ro + privileged: true + pre_build_image: true +provisioner: + name: ansible + playbooks: + converge: ${MOLECULE_PLAYBOOK:-converge.yml} diff --git a/ansible/roles/ansible-role-php/molecule/default/playbook-source.yml b/ansible/roles/ansible-role-php/molecule/default/playbook-source.yml new file mode 100644 index 00000000..d9ad0f95 --- /dev/null +++ b/ansible/roles/ansible-role-php/molecule/default/playbook-source.yml @@ -0,0 +1,32 @@ +--- +- name: Converge + hosts: all + become: true + + vars: + php_enable_webserver: false + php_install_from_source: true + php_source_clone_dir: /root/php-src + php_source_make_command: "make --jobs=2" + php_version: "7.4.8" + php_source_version: "php-{{ php_version }}" + php_memory_limit: "192M" + + pre_tasks: + - name: Update apt cache. + apt: update_cache=true cache_valid_time=600 + when: ansible_os_family == 'Debian' + changed_when: false + + roles: + - role: geerlingguy.git + - role: geerlingguy.php + + post_tasks: + - name: Confirm PHP configuration is correct. + shell: php -i | grep 'memory_limit.*192' + changed_when: false + + - name: Check the installed PHP version. + shell: '/usr/bin/php --version | grep -qF "PHP {{ php_version }}"' + changed_when: false diff --git a/ansible/roles/ansible-role-php/molecule/default/requirements.yml b/ansible/roles/ansible-role-php/molecule/default/requirements.yml new file mode 100644 index 00000000..809b89be --- /dev/null +++ b/ansible/roles/ansible-role-php/molecule/default/requirements.yml @@ -0,0 +1,3 @@ +--- +- src: geerlingguy.repo-remi +- src: geerlingguy.git diff --git a/ansible/roles/ansible-role-php/tasks/configure-apcu.yml b/ansible/roles/ansible-role-php/tasks/configure-apcu.yml new file mode 100644 index 00000000..a29f8d63 --- /dev/null +++ b/ansible/roles/ansible-role-php/tasks/configure-apcu.yml @@ -0,0 +1,37 @@ +--- +- name: Check for existing APCu config files. + find: + paths: "{{ item }}" + contains: 'extension(\s+)?=(\s+)?apc[u]?\.so' + register: php_installed_apc_confs + with_items: "{{ php_extension_conf_paths }}" + +- name: Remove any non-role-supplied APCu config files. + file: + path: "{{ item.1.path }}" + state: absent + when: php_apc_conf_filename != (item.1.path.split('/') | last) + with_subelements: + - "{{ php_installed_apc_confs.results }}" + - files + notify: restart webserver + +- name: Ensure APCu config file is present. + template: + src: apc.ini.j2 + dest: "{{ item }}/{{ php_apc_conf_filename }}" + owner: root + group: root + force: true + mode: 0644 + with_items: "{{ php_extension_conf_paths }}" + when: php_enable_apc + notify: restart webserver + +- name: Remove APCu config file if APC is disabled. + file: + path: "{{ item }}/{{ php_apc_conf_filename }}" + state: absent + with_items: "{{ php_extension_conf_paths }}" + when: not php_enable_apc + notify: restart webserver diff --git a/ansible/roles/ansible-role-php/tasks/configure-fpm.yml b/ansible/roles/ansible-role-php/tasks/configure-fpm.yml new file mode 100644 index 00000000..dfebf0be --- /dev/null +++ b/ansible/roles/ansible-role-php/tasks/configure-fpm.yml @@ -0,0 +1,78 @@ +--- +- name: Define php_fpm_daemon. + set_fact: + php_fpm_daemon: "{{ __php_fpm_daemon }}" + when: php_fpm_daemon is not defined + +- name: Define php_fpm_pool_conf_path. + set_fact: + php_fpm_pool_conf_path: "{{ __php_fpm_pool_conf_path }}" + when: php_fpm_pool_conf_path is not defined + +- name: Define php_fpm_pool_user. + set_fact: + php_fpm_pool_user: "{{ __php_fpm_pool_user }}" + when: php_fpm_pool_user is not defined + +- name: Define php_fpm_pool_group. + set_fact: + php_fpm_pool_group: "{{ __php_fpm_pool_group }}" + when: php_fpm_pool_group is not defined + +- name: Stat php_fpm_pool_conf_path + stat: + path: "{{ php_fpm_pool_conf_path | dirname }}" + register: php_fpm_pool_conf_path_dir_stat + +- name: Ensure the default pool directory exists. + file: + path: "{{ php_fpm_pool_conf_path | dirname }}" + state: directory + owner: root + group: root + mode: 0755 + when: php_fpm_pool_conf_path_dir_stat.stat.islnk is not defined + +- name: Ensure the default pool exists. + template: + src: www.conf.j2 + dest: "{{ php_fpm_pool_conf_path }}" + owner: root + group: root + mode: 0644 + force: false + when: php_enable_php_fpm + +- name: Configure php-fpm pool (if enabled). + lineinfile: + dest: "{{ php_fpm_pool_conf_path }}" + regexp: "{{ item.regexp }}" + line: "{{ item.line }}" + state: present + mode: 0644 + with_items: + - regexp: "^user.?=.+$" + line: "user = {{ php_fpm_pool_user }}" + - regexp: "^group.?=.+$" + line: "group = {{ php_fpm_pool_group }}" + - regexp: "^listen.?=.+$" + line: "listen = {{ php_fpm_listen }}" + - regexp: '^listen\.allowed_clients.?=.+$' + line: "listen.allowed_clients = {{ php_fpm_listen_allowed_clients }}" + - regexp: '^pm\.max_children.?=.+$' + line: "pm.max_children = {{ php_fpm_pm_max_children }}" + - regexp: '^pm\.start_servers.?=.+$' + line: "pm.start_servers = {{ php_fpm_pm_start_servers }}" + - regexp: '^pm\.min_spare_servers.?=.+$' + line: "pm.min_spare_servers = {{ php_fpm_pm_min_spare_servers }}" + - regexp: '^pm\.max_spare_servers.?=.+$' + line: "pm.max_spare_servers = {{ php_fpm_pm_max_spare_servers }}" + when: php_enable_php_fpm + notify: restart php-fpm + +- name: Ensure php-fpm is started and enabled at boot (if configured). + service: + name: "{{ php_fpm_daemon }}" + state: "{{ php_fpm_state }}" + enabled: "{{ php_fpm_enabled_on_boot }}" + when: php_enable_php_fpm and ansible_distribution != "Debian" diff --git a/ansible/roles/ansible-role-php/tasks/configure-opcache.yml b/ansible/roles/ansible-role-php/tasks/configure-opcache.yml new file mode 100644 index 00000000..fc043d0c --- /dev/null +++ b/ansible/roles/ansible-role-php/tasks/configure-opcache.yml @@ -0,0 +1,37 @@ +--- +- name: Check for existing OpCache config files. + find: + paths: "{{ item }}" + contains: 'zend_extension(\s+)?=(\s+)?opcache\.so' + register: php_installed_opcache_confs + with_items: "{{ php_extension_conf_paths }}" + +- name: Remove any non-role-supplied OpCache config files. + file: + path: "{{ item.1.path }}" + state: absent + when: php_opcache_conf_filename != (item.1.path.split('/') | last) + with_subelements: + - "{{ php_installed_opcache_confs.results }}" + - files + notify: restart webserver + +- name: Ensure OpCache config file is present. + template: + src: opcache.ini.j2 + dest: "{{ item }}/{{ php_opcache_conf_filename }}" + owner: root + group: root + force: true + mode: 0644 + with_items: "{{ php_extension_conf_paths }}" + when: php_opcache_enable | bool + notify: restart webserver + +- name: Remove OpCache config file if OpCache is disabled. + file: + path: "{{ item }}/{{ php_opcache_conf_filename }}" + state: absent + with_items: "{{ php_extension_conf_paths }}" + when: not php_opcache_enable | bool + notify: restart webserver diff --git a/ansible/roles/ansible-role-php/tasks/configure.yml b/ansible/roles/ansible-role-php/tasks/configure.yml new file mode 100644 index 00000000..e0e1434b --- /dev/null +++ b/ansible/roles/ansible-role-php/tasks/configure.yml @@ -0,0 +1,21 @@ +--- +- name: Ensure configuration directories exist. + file: + path: "{{ item }}" + state: directory + follow: true + mode: 0755 + with_flattened: + - "{{ php_conf_paths }}" + - "{{ php_extension_conf_paths }}" + +- name: Place PHP configuration file in place. + template: + src: php.ini.j2 + dest: "{{ item }}/php.ini" + owner: root + group: root + mode: 0644 + with_items: "{{ php_conf_paths }}" + notify: restart webserver + when: php_use_managed_ini diff --git a/ansible/roles/ansible-role-php/tasks/install-from-source.yml b/ansible/roles/ansible-role-php/tasks/install-from-source.yml new file mode 100644 index 00000000..cd18daac --- /dev/null +++ b/ansible/roles/ansible-role-php/tasks/install-from-source.yml @@ -0,0 +1,158 @@ +--- +- name: Ensure dependencies for building from source are installed (RedHat). + package: + name: + - autoconf + - automake + - libtool + - bison + - make + - re2c + - sqlite-devel + - oniguruma-devel + - curl-devel + - recode-devel + - aspell-devel + - libxml2-devel + - pkgconfig + - libmcrypt-devel + - t1lib-devel + - libXpm-devel + - libpng-devel + - libjpeg-turbo-devel + - bzip2-devel + - openssl-devel + - freetype-devel + - libicu-devel + - mariadb-devel + - gmp-devel + state: present + when: ansible_os_family == 'RedHat' + +- name: Update apt cache (Debian). + apt: update_cache=yes cache_valid_time=86400 + when: ansible_os_family == 'Debian' + +- name: Ensure dependencies for building from source are installed (Debian). + apt: + name: + - build-essential + - autoconf + - automake + - libtool + - bison + - pkg-config + - re2c + - libsqlite3-dev + - libonig-dev + - libxml2-dev + - libcurl4-openssl-dev + - libbz2-dev + - libjpeg-dev + - libpng-dev + - libxpm-dev + - libfreetype6-dev + - libgmp3-dev + - libmcrypt-dev + - libmariadbclient-dev + - libpspell-dev + - librecode-dev + - libssl-dev + state: present + when: ansible_os_family == 'Debian' + +- name: Define php_fpm_daemon (if not defined already). + set_fact: + php_fpm_daemon: "php-fpm" + when: php_fpm_daemon is not defined + +- name: Check if gmp.h is already in a location accessible to gcc. + stat: path=/usr/include/gmp.h + register: gmp_file + +- name: Ensure gmp.h is symlinked into a location accessible to gcc. + file: # noqa 208 + src: "{{ php_source_install_gmp_path }}" + dest: /usr/include/gmp.h + state: link + when: not gmp_file.stat.exists + +- name: Check if PHP is installed. + command: which php + changed_when: false + failed_when: false + register: php_installed + +- name: Clone the PHP repository. + git: + repo: "{{ php_source_repo }}" + dest: "{{ php_source_clone_dir }}" + version: "{{ php_source_version }}" + accept_hostkey: true + depth: "{{ php_source_clone_depth }}" + when: php_installed.rc != 0 + +- name: Ensure PHP installation path exists. + file: + path: "{{ php_source_install_path }}" + state: directory + mode: 0755 + when: php_installed.rc != 0 + +- name: Build configure script. + command: > + ./buildconf --force + chdir={{ php_source_clone_dir }} + when: php_installed.rc != 0 + +- name: Run configure script. + command: > + {{ php_source_configure_command }} + chdir={{ php_source_clone_dir }} + when: php_installed.rc != 0 + +- name: Make and install PHP. + command: > + {{ item }} + chdir={{ php_source_clone_dir }} + with_items: + - "{{ php_source_make_command }}" + - make install + when: php_installed.rc != 0 + +- name: Ensure php executable is symlinked into a standard path. + file: # noqa 208 + src: "{{ php_source_install_path }}/bin/php" + dest: /usr/bin/php + state: link + +# PHP FPM configuration. +- name: Ensure php-fpm executable is symlinked into a standard path. + file: # noqa 208 + src: "{{ php_source_install_path }}/sbin/php-fpm" + dest: "/usr/sbin/{{ php_fpm_daemon }}" + state: link + when: "'--enable-fpm' in php_source_configure_command" + +- name: Ensure php-fpm init script is installed. + template: + src: fpm-init.j2 + dest: "/etc/init.d/{{ php_fpm_daemon }}" + mode: 0755 + when: "'--enable-fpm' in php_source_configure_command" + notify: restart php-fpm + +- name: Ensure php-fpm config directory exists. + file: + path: "{{ php_fpm_conf_path }}" + state: directory + mode: 0755 + when: "'--enable-fpm' in php_source_configure_command" + +- name: Ensure php-fpm config file is installed. + template: + src: php-fpm.conf.j2 + dest: "{{ php_fpm_conf_path }}/php-fpm.conf" + mode: 0644 + when: "'--enable-fpm' in php_source_configure_command" + notify: restart php-fpm diff --git a/ansible/roles/ansible-role-php/tasks/main.yml b/ansible/roles/ansible-role-php/tasks/main.yml new file mode 100644 index 00000000..41a77614 --- /dev/null +++ b/ansible/roles/ansible-role-php/tasks/main.yml @@ -0,0 +1,76 @@ +--- +# Variable setup. +- name: Include distribution and version-specific vars. + include_vars: "{{ item }}" + with_first_found: + - files: + - "{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml" + skip: true +- name: Set the default PHP version for Debian-based OSes. + set_fact: + php_default_version_debian: "{{ __php_default_version_debian }}" + when: ansible_os_family == 'Debian' + +- name: Include OS-specific variables. + include_vars: "{{ ansible_os_family }}.yml" + +- name: Define php_packages. + set_fact: + php_packages: "{{ __php_packages | list }}" + when: php_packages is not defined + +- name: Define php_webserver_daemon. + set_fact: + php_webserver_daemon: "{{ __php_webserver_daemon }}" + when: php_webserver_daemon is not defined + +- name: Define php_conf_paths. + set_fact: + php_conf_paths: "{{ __php_conf_paths }}" + when: php_conf_paths is not defined + +- name: Define php_extension_conf_paths. + set_fact: + php_extension_conf_paths: "{{ __php_extension_conf_paths }}" + when: php_extension_conf_paths is not defined + +- name: Define php_apc_conf_filename. + set_fact: + php_apc_conf_filename: "{{ __php_apc_conf_filename }}" + when: php_apc_conf_filename is not defined + +- name: Define php_opcache_conf_filename (Ubuntu 16.04). + set_fact: + php_opcache_conf_filename: "10-opcache.ini" + when: php_opcache_conf_filename is not defined and ansible_distribution_version == "16.04" + +- name: Define php_opcache_conf_filename. + set_fact: + php_opcache_conf_filename: "{{ __php_opcache_conf_filename }}" + when: php_opcache_conf_filename is not defined + +- name: Define php_fpm_conf_path. + set_fact: + php_fpm_conf_path: "{{ __php_fpm_conf_path }}" + when: php_fpm_conf_path is not defined + +# Setup/install tasks. +- include_tasks: setup-RedHat.yml + when: + - not php_install_from_source + - ansible_os_family == 'RedHat' + +- include_tasks: setup-Debian.yml + when: + - not php_install_from_source + - ansible_os_family == 'Debian' + +# Install PHP from source when php_install_from_source is true. +- include_tasks: install-from-source.yml + when: php_install_from_source + +# Configure PHP. +- include_tasks: configure.yml +- include_tasks: configure-apcu.yml +- include_tasks: configure-opcache.yml +- include_tasks: configure-fpm.yml diff --git a/ansible/roles/ansible-role-php/tasks/setup-Debian.yml b/ansible/roles/ansible-role-php/tasks/setup-Debian.yml new file mode 100644 index 00000000..a6657be2 --- /dev/null +++ b/ansible/roles/ansible-role-php/tasks/setup-Debian.yml @@ -0,0 +1,27 @@ +--- +- name: Update apt cache. + apt: update_cache=yes cache_valid_time=86400 + +- name: Ensure PHP packages are installed. + apt: + name: "{{ php_packages + php_packages_extra }}" + state: "{{ php_packages_state }}" + install_recommends: "{{ php_install_recommends }}" + register: php_package_install + notify: restart webserver + +- name: Delete APCu configuration file if this role will provide one. + file: + path: "{{ item }}/{{ php_apc_conf_filename }}" + state: absent + with_items: "{{ php_extension_conf_paths }}" + when: php_enable_apc and php_package_install.changed + notify: restart webserver + +- name: Delete OpCache configuration file if this role will provide one. + file: + path: "{{ item }}/{{ php_opcache_conf_filename }}" + state: absent + with_items: "{{ php_extension_conf_paths }}" + when: php_opcache_enable | bool and php_package_install.changed + notify: restart webserver diff --git a/ansible/roles/ansible-role-php/tasks/setup-RedHat.yml b/ansible/roles/ansible-role-php/tasks/setup-RedHat.yml new file mode 100644 index 00000000..1d76b331 --- /dev/null +++ b/ansible/roles/ansible-role-php/tasks/setup-RedHat.yml @@ -0,0 +1,7 @@ +--- +- name: Ensure PHP packages are installed. + package: + name: "{{ php_packages + php_packages_extra }}" + state: "{{ php_packages_state }}" + enablerepo: "{{ php_enablerepo | default(omit, true) }}" + notify: restart webserver diff --git a/ansible/roles/ansible-role-php/templates/apc.ini.j2 b/ansible/roles/ansible-role-php/templates/apc.ini.j2 new file mode 100644 index 00000000..bfd57064 --- /dev/null +++ b/ansible/roles/ansible-role-php/templates/apc.ini.j2 @@ -0,0 +1,4 @@ +extension=apcu.so +apc.shm_size={{ php_apc_shm_size }} +apc.enable_cli={{ php_apc_enable_cli }} +apc.rfc1867=1 diff --git a/ansible/roles/ansible-role-php/templates/fpm-init.j2 b/ansible/roles/ansible-role-php/templates/fpm-init.j2 new file mode 100644 index 00000000..4d6a6d5d --- /dev/null +++ b/ansible/roles/ansible-role-php/templates/fpm-init.j2 @@ -0,0 +1,170 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: php-fpm {{ php_fpm_daemon }} +# Required-Start: $remote_fs $network +# Required-Stop: $remote_fs $network +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: starts {{ php_fpm_daemon }} +# Description: Starts The PHP FastCGI Process Manager Daemon +### END INIT INFO + +# Author: Ondrej Sury + +PATH=/sbin:/usr/sbin:/bin:/usr/bin +DESC="PHP FastCGI Process Manager" +NAME={{ php_fpm_daemon }} +DAEMON=/usr/sbin/$NAME +DAEMON_ARGS="--daemonize --fpm-config {{ php_fpm_conf_path }}/php-fpm.conf" +PIDFILE=/var/run/{{ php_fpm_daemon }}.pid +TIMEOUT=2 +SCRIPTNAME=/etc/init.d/$NAME + +# Exit if the package is not installed +[ -x "$DAEMON" ] || exit 0 + +# Read configuration variable file if it is present +[ -r /etc/default/$NAME ] && . /etc/default/$NAME + +# Load the VERBOSE setting and other rcS variables +. /lib/init/vars.sh + +# Define LSB log_* functions. +# Depend on lsb-base (>= 3.0-6) to ensure that this file is present. +. /lib/lsb/init-functions + +# Don't run if we are running upstart +if init_is_upstart; then + exit 1 +fi + +# +# Function to check the correctness of the config file +# +do_check() +{ + /usr/lib/php5/php5-fpm-checkconf || return 1 + return 0 +} + +# +# Function that starts the daemon/service +# +do_start() +{ + # Return + # 0 if daemon has been started + # 1 if daemon was already running + # 2 if daemon could not be started + start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON --test > /dev/null \ + || return 1 + start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- \ + $DAEMON_ARGS 2>/dev/null \ + || return 2 + # Add code here, if necessary, that waits for the process to be ready + # to handle requests from services started subsequently which depend + # on this one. As a last resort, sleep for some time. +} + +# +# Function that stops the daemon/service +# +do_stop() +{ + # Return + # 0 if daemon has been stopped + # 1 if daemon was already stopped + # 2 if daemon could not be stopped + # other if a failure occurred + start-stop-daemon --stop --quiet --retry=QUIT/$TIMEOUT/TERM/5/KILL/5 --pidfile $PIDFILE --name $NAME + RETVAL="$?" + [ "$RETVAL" = 2 ] && return 2 + # Wait for children to finish too if this is a daemon that forks + # and if the daemon is only ever run from this initscript. + # If the above conditions are not satisfied then add some other code + # that waits for the process to drop all resources that could be + # needed by services started subsequently. A last resort is to + # sleep for some time. + start-stop-daemon --stop --quiet --oknodo --retry=0/$TIMEOUT/TERM/5/KILL/5 --exec $DAEMON + [ "$?" = 2 ] && return 2 + # Many daemons don't delete their pidfiles when they exit. + rm -f $PIDFILE + return "$RETVAL" +} + +# +# Function that sends a SIGHUP to the daemon/service +# +do_reload() { + # + # If the daemon can reload its configuration without + # restarting (for example, when it is sent a SIGHUP), + # then implement that here. + # + start-stop-daemon --stop --signal USR2 --quiet --pidfile $PIDFILE --name $NAME + return 0 +} + +case "$1" in + start) + [ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME" + do_start + case "$?" in + 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; + 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; + esac + ;; + stop) + [ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME" + do_stop + case "$?" in + 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; + 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; + esac + ;; + status) + status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $? + ;; + check) + do_check yes + ;; + reload|force-reload) + log_daemon_msg "Reloading $DESC" "$NAME" + do_reload + log_end_msg $? + ;; + reopen-logs) + log_daemon_msg "Reopening $DESC logs" $NAME + if start-stop-daemon --stop --signal USR1 --oknodo --quiet \ + --pidfile $PIDFILE --exec $DAEMON + then + log_end_msg 0 + else + log_end_msg 1 + fi + ;; + restart) + log_daemon_msg "Restarting $DESC" "$NAME" + do_stop + case "$?" in + 0|1) + do_start + case "$?" in + 0) log_end_msg 0 ;; + 1) log_end_msg 1 ;; # Old process is still running + *) log_end_msg 1 ;; # Failed to start + esac + ;; + *) + # Failed to stop + log_end_msg 1 + ;; + esac + ;; + *) + echo "Usage: $SCRIPTNAME {start|stop|status|restart|reload|force-reload}" >&2 + exit 1 + ;; +esac + +: diff --git a/ansible/roles/ansible-role-php/templates/opcache.ini.j2 b/ansible/roles/ansible-role-php/templates/opcache.ini.j2 new file mode 100644 index 00000000..61464539 --- /dev/null +++ b/ansible/roles/ansible-role-php/templates/opcache.ini.j2 @@ -0,0 +1,14 @@ +zend_extension={{ php_opcache_zend_extension }} +opcache.enable={{ php_opcache_enable }} +opcache.enable_cli={{ php_opcache_enable_cli }} +opcache.memory_consumption={{ php_opcache_memory_consumption }} +opcache.interned_strings_buffer={{ php_opcache_interned_strings_buffer }} +opcache.max_accelerated_files={{ php_opcache_max_accelerated_files }} +opcache.max_wasted_percentage={{ php_opcache_max_wasted_percentage }} +opcache.validate_timestamps={{ php_opcache_validate_timestamps }} +opcache.revalidate_path={{ php_opcache_revalidate_path }} +opcache.revalidate_freq={{ php_opcache_revalidate_freq }} +opcache.max_file_size={{ php_opcache_max_file_size }} +{% if php_opcache_blacklist_filename != '' %} +opcache.blacklist_filename={{ php_opcache_blacklist_filename }} +{% endif %} diff --git a/ansible/roles/ansible-role-php/templates/php-fpm.conf.j2 b/ansible/roles/ansible-role-php/templates/php-fpm.conf.j2 new file mode 100644 index 00000000..12b277fb --- /dev/null +++ b/ansible/roles/ansible-role-php/templates/php-fpm.conf.j2 @@ -0,0 +1,12 @@ +;;;;;;;;;;;;;;;;;;;;; +; FPM Configuration ; +;;;;;;;;;;;;;;;;;;;;; + +include={{ php_fpm_conf_path }}/pool.d/*.conf + +;;;;;;;;;;;;;;;;;; +; Global Options ; +;;;;;;;;;;;;;;;;;; + +[global] +error_log = /var/log/php-fpm.log diff --git a/ansible/roles/ansible-role-php/templates/php.ini.j2 b/ansible/roles/ansible-role-php/templates/php.ini.j2 new file mode 100644 index 00000000..14b7eeb3 --- /dev/null +++ b/ansible/roles/ansible-role-php/templates/php.ini.j2 @@ -0,0 +1,221 @@ +[PHP] + +;;;;;;;;;;;;;;;;;;;; +; Language Options ; +;;;;;;;;;;;;;;;;;;;; + +engine = On +short_open_tag = {{ php_short_open_tag }} +precision = {{ php_precision }} +output_buffering = {{ php_output_buffering }} + +zlib.output_compression = Off + +implicit_flush = Off +unserialize_callback_func = +serialize_precision = {{ php_serialize_precision }} +disable_functions = {{ php_disable_functions|join(",") }} +disable_classes = + +zend.enable_gc = On + +;;;;;;;;;;;;;;;;; +; Miscellaneous ; +;;;;;;;;;;;;;;;;; + +expose_php = {{ php_expose_php }} + +;;;;;;;;;;;;;;;;;;; +; Resource Limits ; +;;;;;;;;;;;;;;;;;;; + +max_execution_time = {{ php_max_execution_time }} +max_input_time = {{ php_max_input_time }} +max_input_vars = {{ php_max_input_vars }} +memory_limit = {{ php_memory_limit }} + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +; Error handling and logging ; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +error_reporting = {{ php_error_reporting }} +display_errors = {{ php_display_errors }} +display_startup_errors = {{ php_display_startup_errors }} +log_errors = On +log_errors_max_len = 1024 +ignore_repeated_errors = Off +ignore_repeated_source = Off +report_memleaks = On +track_errors = Off +html_errors = On + +;;;;;;;;;;;;;;;;; +; Data Handling ; +;;;;;;;;;;;;;;;;; + +variables_order = "GPCS" +request_order = "GP" +register_argc_argv = Off +auto_globals_jit = On + +post_max_size = {{ php_post_max_size }} +auto_prepend_file = +auto_append_file = + +default_mimetype = "text/html" + +;;;;;;;;;;;;;;;;;;;;;;;;; +; Paths and Directories ; +;;;;;;;;;;;;;;;;;;;;;;;;; + +doc_root = +user_dir = + +enable_dl = Off + +realpath_cache_size = {{ php_realpath_cache_size }} + +;;;;;;;;;;;;;;;; +; File Uploads ; +;;;;;;;;;;;;;;;; + +file_uploads = {{ php_file_uploads }} +upload_max_filesize = {{ php_upload_max_filesize }} +max_file_uploads = {{ php_max_file_uploads }} + +;;;;;;;;;;;;;;;;;; +; Fopen wrappers ; +;;;;;;;;;;;;;;;;;; + +allow_url_fopen = {{ php_allow_url_fopen }} +allow_url_include = Off + +default_socket_timeout = 60 + +;;;;;;;;;;;;;;;;;;; +; Module Settings ; +;;;;;;;;;;;;;;;;;;; + +[CLI Server] +cli_server.color = On + +[Date] +date.timezone = {{ php_date_timezone }} + +[Pdo_mysql] +pdo_mysql.cache_size = 2000 +pdo_mysql.default_socket= + +[mail function] +; For Win32 only. +SMTP = localhost +smtp_port = 25 + +; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). +sendmail_path = {{ php_sendmail_path }} + +mail.add_x_header = On + +[SQL] +sql.safe_mode = Off + +[ODBC] +odbc.allow_persistent = On +odbc.check_persistent = On +odbc.max_persistent = -1 +odbc.max_links = -1 +odbc.defaultlrl = 4096 +odbc.defaultbinmode = 1 + +[MySQL] +mysql.allow_local_infile = On +mysql.allow_persistent = On +mysql.cache_size = 2000 +mysql.max_persistent = -1 +mysql.max_links = -1 +mysql.default_port = +mysql.default_socket = +mysql.default_host = +mysql.default_user = +mysql.default_password = +mysql.connect_timeout = 60 +mysql.trace_mode = Off + +[MySQLi] +mysqli.max_persistent = -1 +mysqli.allow_persistent = On +mysqli.max_links = -1 +mysqli.cache_size = 2000 +mysqli.default_port = 3306 +mysqli.default_socket = +mysqli.default_host = +mysqli.default_user = +mysqli.default_pw = +mysqli.reconnect = Off + +[mysqlnd] +mysqlnd.collect_statistics = On +mysqlnd.collect_memory_statistics = Off + +[PostgreSQL] +pgsql.allow_persistent = On +pgsql.auto_reset_persistent = Off +pgsql.max_persistent = -1 +pgsql.max_links = -1 +pgsql.ignore_notice = 0 +pgsql.log_notice = 0 + +[bcmath] +bcmath.scale = 0 + +[Session] +session.save_handler = {{ php_session_save_handler }} +session.save_path = {{ php_session_save_path }} +session.use_cookies = 1 +session.use_only_cookies = 1 +session.name = PHPSESSID +session.auto_start = 0 + +session.cookie_lifetime = {{ php_session_cookie_lifetime }} +session.cookie_path = / +session.cookie_domain = +session.cookie_httponly = + +session.serialize_handler = php + +session.gc_probability = {{ php_session_gc_probability }} +session.gc_divisor = {{ php_session_gc_divisor }} +session.gc_maxlifetime = {{ php_session_gc_maxlifetime }} + +session.referer_check = + +session.cache_limiter = nocache +session.cache_expire = 180 + +session.use_trans_sid = 0 + +session.hash_function = 0 +session.hash_bits_per_character = 5 + +url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry" + +[MSSQL] +mssql.allow_persistent = On +mssql.max_persistent = -1 +mssql.max_links = -1 +mssql.min_error_severity = 10 +mssql.min_message_severity = 10 +mssql.compatability_mode = Off +mssql.secure_connection = Off + +[Tidy] +tidy.clean_output = Off + +[soap] +soap.wsdl_cache_enabled=1 +soap.wsdl_cache_dir="/tmp" +soap.wsdl_cache_ttl=86400 +soap.wsdl_cache_limit = 5 + +[ldap] +ldap.max_links = -1 diff --git a/ansible/roles/ansible-role-php/templates/www.conf.j2 b/ansible/roles/ansible-role-php/templates/www.conf.j2 new file mode 100644 index 00000000..da0921c3 --- /dev/null +++ b/ansible/roles/ansible-role-php/templates/www.conf.j2 @@ -0,0 +1,15 @@ +[www] +listen = 127.0.0.1:9000 +listen.allowed_clients = 127.0.0.1 +user = {{ php_fpm_pool_user }} +group = {{ php_fpm_pool_group }} + +listen.owner = {{ php_fpm_pool_user }} +listen.group = {{ php_fpm_pool_group }} + +pm = dynamic +pm.max_children = 50 +pm.start_servers = 5 +pm.min_spare_servers = 5 +pm.max_spare_servers = 5 +pm.max_requests = 500 diff --git a/ansible/roles/ansible-role-php/vars/Debian-10.yml b/ansible/roles/ansible-role-php/vars/Debian-10.yml new file mode 100644 index 00000000..ec895aec --- /dev/null +++ b/ansible/roles/ansible-role-php/vars/Debian-10.yml @@ -0,0 +1,2 @@ +--- +__php_default_version_debian: "7.3" diff --git a/ansible/roles/ansible-role-php/vars/Debian-9.yml b/ansible/roles/ansible-role-php/vars/Debian-9.yml new file mode 100644 index 00000000..eb23ce3a --- /dev/null +++ b/ansible/roles/ansible-role-php/vars/Debian-9.yml @@ -0,0 +1,2 @@ +--- +__php_default_version_debian: "7.0" diff --git a/ansible/roles/ansible-role-php/vars/Debian.yml b/ansible/roles/ansible-role-php/vars/Debian.yml new file mode 100644 index 00000000..c487fd8a --- /dev/null +++ b/ansible/roles/ansible-role-php/vars/Debian.yml @@ -0,0 +1,39 @@ +--- +__php_default_version_debian: "7.0" + +__php_packages: + - php{{ php_default_version_debian }}-common + - php{{ php_default_version_debian }}-cli + - php{{ php_default_version_debian }}-dev + - php{{ php_default_version_debian }}-fpm + - libpcre3-dev + - php{{ php_default_version_debian }}-gd + - php{{ php_default_version_debian }}-curl + - php{{ php_default_version_debian }}-imap + - php{{ php_default_version_debian }}-json + - php{{ php_default_version_debian }}-opcache + - php{{ php_default_version_debian }}-xml + - php{{ php_default_version_debian }}-mbstring + - php-sqlite3 + - php-apcu +__php_webserver_daemon: "apache2" + +# Vendor-specific configuration paths on Debian/Ubuntu make my brain asplode. +__php_conf_paths: + - /etc/php/{{ php_default_version_debian }}/fpm + - /etc/php/{{ php_default_version_debian }}/apache2 + - /etc/php/{{ php_default_version_debian }}/cli + +__php_extension_conf_paths: + - /etc/php/{{ php_default_version_debian }}/fpm/conf.d + - /etc/php/{{ php_default_version_debian }}/apache2/conf.d + - /etc/php/{{ php_default_version_debian }}/cli/conf.d + +__php_apc_conf_filename: 20-apcu.ini +__php_opcache_conf_filename: 10-opcache.ini +__php_fpm_daemon: php{{ php_default_version_debian }}-fpm +__php_fpm_conf_path: "/etc/php/{{ php_default_version_debian }}/fpm" +__php_fpm_pool_conf_path: "{{ __php_fpm_conf_path }}/pool.d/www.conf" + +__php_fpm_pool_user: www-data +__php_fpm_pool_group: www-data diff --git a/ansible/roles/ansible-role-php/vars/RedHat.yml b/ansible/roles/ansible-role-php/vars/RedHat.yml new file mode 100644 index 00000000..e1e4458d --- /dev/null +++ b/ansible/roles/ansible-role-php/vars/RedHat.yml @@ -0,0 +1,32 @@ +--- +__php_packages: + - php + - php-cli + - php-common + - php-devel + - php-fpm + - php-gd + - php-ldap + - php-mbstring + - php-opcache + - php-pdo + - php-pear + - php-pecl-apcu + - php-xml + - php-xmlrpc +__php_webserver_daemon: "httpd" + +__php_conf_paths: + - /etc + +__php_extension_conf_paths: + - /etc/php.d + +__php_apc_conf_filename: 50-apc.ini +__php_opcache_conf_filename: 10-opcache.ini +__php_fpm_daemon: php-fpm +__php_fpm_conf_path: "/etc/fpm" +__php_fpm_pool_conf_path: "/etc/php-fpm.d/www.conf" + +__php_fpm_pool_user: apache +__php_fpm_pool_group: apache diff --git a/ansible/roles/ansible-role-php/vars/Ubuntu-16.yml b/ansible/roles/ansible-role-php/vars/Ubuntu-16.yml new file mode 100644 index 00000000..eb23ce3a --- /dev/null +++ b/ansible/roles/ansible-role-php/vars/Ubuntu-16.yml @@ -0,0 +1,2 @@ +--- +__php_default_version_debian: "7.0" diff --git a/ansible/roles/ansible-role-php/vars/Ubuntu-18.yml b/ansible/roles/ansible-role-php/vars/Ubuntu-18.yml new file mode 100644 index 00000000..82230bcd --- /dev/null +++ b/ansible/roles/ansible-role-php/vars/Ubuntu-18.yml @@ -0,0 +1,2 @@ +--- +__php_default_version_debian: "7.2" diff --git a/ansible/roles/ansible-role-php/vars/Ubuntu-20.yml b/ansible/roles/ansible-role-php/vars/Ubuntu-20.yml new file mode 100644 index 00000000..a16b99b1 --- /dev/null +++ b/ansible/roles/ansible-role-php/vars/Ubuntu-20.yml @@ -0,0 +1,2 @@ +--- +__php_default_version_debian: "7.4" From b9177cda527b32ff6a2a6afeb216579b884200bc Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 4 Jan 2021 12:14:58 -0800 Subject: [PATCH 007/129] Remove PHP --- ansible/roles/ansible-role-php/.ansible-lint | 5 - .../ansible-role-php/.github/FUNDING.yml | 4 - .../roles/ansible-role-php/.github/stale.yml | 56 ---- ansible/roles/ansible-role-php/.gitignore | 3 - ansible/roles/ansible-role-php/.travis.yml | 38 --- ansible/roles/ansible-role-php/.yamllint | 11 - ansible/roles/ansible-role-php/LICENSE | 20 -- ansible/roles/ansible-role-php/README.md | 239 ------------------ .../roles/ansible-role-php/defaults/main.yml | 140 ---------- .../roles/ansible-role-php/handlers/main.yml | 15 -- ansible/roles/ansible-role-php/meta/main.yml | 37 --- .../molecule/default/converge.yml | 70 ----- .../molecule/default/molecule.yml | 21 -- .../molecule/default/playbook-source.yml | 32 --- .../molecule/default/requirements.yml | 3 - .../ansible-role-php/tasks/configure-apcu.yml | 37 --- .../ansible-role-php/tasks/configure-fpm.yml | 78 ------ .../tasks/configure-opcache.yml | 37 --- .../ansible-role-php/tasks/configure.yml | 21 -- .../tasks/install-from-source.yml | 158 ------------ ansible/roles/ansible-role-php/tasks/main.yml | 76 ------ .../ansible-role-php/tasks/setup-Debian.yml | 27 -- .../ansible-role-php/tasks/setup-RedHat.yml | 7 - .../ansible-role-php/templates/apc.ini.j2 | 4 - .../ansible-role-php/templates/fpm-init.j2 | 170 ------------- .../ansible-role-php/templates/opcache.ini.j2 | 14 - .../templates/php-fpm.conf.j2 | 12 - .../ansible-role-php/templates/php.ini.j2 | 221 ---------------- .../ansible-role-php/templates/www.conf.j2 | 15 -- .../roles/ansible-role-php/vars/Debian-10.yml | 2 - .../roles/ansible-role-php/vars/Debian-9.yml | 2 - .../roles/ansible-role-php/vars/Debian.yml | 39 --- .../roles/ansible-role-php/vars/RedHat.yml | 32 --- .../roles/ansible-role-php/vars/Ubuntu-16.yml | 2 - .../roles/ansible-role-php/vars/Ubuntu-18.yml | 2 - .../roles/ansible-role-php/vars/Ubuntu-20.yml | 2 - 36 files changed, 1652 deletions(-) delete mode 100644 ansible/roles/ansible-role-php/.ansible-lint delete mode 100644 ansible/roles/ansible-role-php/.github/FUNDING.yml delete mode 100644 ansible/roles/ansible-role-php/.github/stale.yml delete mode 100644 ansible/roles/ansible-role-php/.gitignore delete mode 100644 ansible/roles/ansible-role-php/.travis.yml delete mode 100644 ansible/roles/ansible-role-php/.yamllint delete mode 100644 ansible/roles/ansible-role-php/LICENSE delete mode 100644 ansible/roles/ansible-role-php/README.md delete mode 100644 ansible/roles/ansible-role-php/defaults/main.yml delete mode 100644 ansible/roles/ansible-role-php/handlers/main.yml delete mode 100644 ansible/roles/ansible-role-php/meta/main.yml delete mode 100644 ansible/roles/ansible-role-php/molecule/default/converge.yml delete mode 100644 ansible/roles/ansible-role-php/molecule/default/molecule.yml delete mode 100644 ansible/roles/ansible-role-php/molecule/default/playbook-source.yml delete mode 100644 ansible/roles/ansible-role-php/molecule/default/requirements.yml delete mode 100644 ansible/roles/ansible-role-php/tasks/configure-apcu.yml delete mode 100644 ansible/roles/ansible-role-php/tasks/configure-fpm.yml delete mode 100644 ansible/roles/ansible-role-php/tasks/configure-opcache.yml delete mode 100644 ansible/roles/ansible-role-php/tasks/configure.yml delete mode 100644 ansible/roles/ansible-role-php/tasks/install-from-source.yml delete mode 100644 ansible/roles/ansible-role-php/tasks/main.yml delete mode 100644 ansible/roles/ansible-role-php/tasks/setup-Debian.yml delete mode 100644 ansible/roles/ansible-role-php/tasks/setup-RedHat.yml delete mode 100644 ansible/roles/ansible-role-php/templates/apc.ini.j2 delete mode 100644 ansible/roles/ansible-role-php/templates/fpm-init.j2 delete mode 100644 ansible/roles/ansible-role-php/templates/opcache.ini.j2 delete mode 100644 ansible/roles/ansible-role-php/templates/php-fpm.conf.j2 delete mode 100644 ansible/roles/ansible-role-php/templates/php.ini.j2 delete mode 100644 ansible/roles/ansible-role-php/templates/www.conf.j2 delete mode 100644 ansible/roles/ansible-role-php/vars/Debian-10.yml delete mode 100644 ansible/roles/ansible-role-php/vars/Debian-9.yml delete mode 100644 ansible/roles/ansible-role-php/vars/Debian.yml delete mode 100644 ansible/roles/ansible-role-php/vars/RedHat.yml delete mode 100644 ansible/roles/ansible-role-php/vars/Ubuntu-16.yml delete mode 100644 ansible/roles/ansible-role-php/vars/Ubuntu-18.yml delete mode 100644 ansible/roles/ansible-role-php/vars/Ubuntu-20.yml diff --git a/ansible/roles/ansible-role-php/.ansible-lint b/ansible/roles/ansible-role-php/.ansible-lint deleted file mode 100644 index 9034f22a..00000000 --- a/ansible/roles/ansible-role-php/.ansible-lint +++ /dev/null @@ -1,5 +0,0 @@ -skip_list: - - '306' - - '405' - - '503' - - '106' diff --git a/ansible/roles/ansible-role-php/.github/FUNDING.yml b/ansible/roles/ansible-role-php/.github/FUNDING.yml deleted file mode 100644 index 96b49383..00000000 --- a/ansible/roles/ansible-role-php/.github/FUNDING.yml +++ /dev/null @@ -1,4 +0,0 @@ -# These are supported funding model platforms ---- -github: geerlingguy -patreon: geerlingguy diff --git a/ansible/roles/ansible-role-php/.github/stale.yml b/ansible/roles/ansible-role-php/.github/stale.yml deleted file mode 100644 index c7ff1275..00000000 --- a/ansible/roles/ansible-role-php/.github/stale.yml +++ /dev/null @@ -1,56 +0,0 @@ -# Configuration for probot-stale - https://github.com/probot/stale - -# Number of days of inactivity before an Issue or Pull Request becomes stale -daysUntilStale: 90 - -# Number of days of inactivity before an Issue or Pull Request with the stale label is closed. -# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale. -daysUntilClose: 30 - -# Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled) -onlyLabels: [] - -# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable -exemptLabels: - - pinned - - security - - planned - -# Set to true to ignore issues in a project (defaults to false) -exemptProjects: false - -# Set to true to ignore issues in a milestone (defaults to false) -exemptMilestones: false - -# Set to true to ignore issues with an assignee (defaults to false) -exemptAssignees: false - -# Label to use when marking as stale -staleLabel: stale - -# Limit the number of actions per hour, from 1-30. Default is 30 -limitPerRun: 30 - -pulls: - markComment: |- - This pull request has been marked 'stale' due to lack of recent activity. If there is no further activity, the PR will be closed in another 30 days. Thank you for your contribution! - - Please read [this blog post](https://www.jeffgeerling.com/blog/2020/enabling-stale-issue-bot-on-my-github-repositories) to see the reasons why I mark pull requests as stale. - - unmarkComment: >- - This pull request is no longer marked for closure. - - closeComment: >- - This pull request has been closed due to inactivity. If you feel this is in error, please reopen the pull request or file a new PR with the relevant details. - -issues: - markComment: |- - This issue has been marked 'stale' due to lack of recent activity. If there is no further activity, the issue will be closed in another 30 days. Thank you for your contribution! - - Please read [this blog post](https://www.jeffgeerling.com/blog/2020/enabling-stale-issue-bot-on-my-github-repositories) to see the reasons why I mark issues as stale. - - unmarkComment: >- - This issue is no longer marked for closure. - - closeComment: >- - This issue has been closed due to inactivity. If you feel this is in error, please reopen the issue or file a new issue with the relevant details. diff --git a/ansible/roles/ansible-role-php/.gitignore b/ansible/roles/ansible-role-php/.gitignore deleted file mode 100644 index f56f5b57..00000000 --- a/ansible/roles/ansible-role-php/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -*.retry -*/__pycache__ -*.pyc diff --git a/ansible/roles/ansible-role-php/.travis.yml b/ansible/roles/ansible-role-php/.travis.yml deleted file mode 100644 index da688cd5..00000000 --- a/ansible/roles/ansible-role-php/.travis.yml +++ /dev/null @@ -1,38 +0,0 @@ ---- -language: python -services: docker - -env: - global: - - ROLE_NAME: php - matrix: - - MOLECULE_DISTRO: centos8 - - MOLECULE_DISTRO: centos7 - - MOLECULE_DISTRO: ubuntu2004 - - MOLECULE_DISTRO: ubuntu1804 - - MOLECULE_DISTRO: debian10 - - MOLECULE_DISTRO: debian9 - - - MOLECULE_DISTRO: centos7 - MOLECULE_PLAYBOOK: playbook-source.yml - -before_install: - # Upgrade Docker to work with docker-py. - - curl https://gist.githubusercontent.com/geerlingguy/ce883ad4aec6a5f1187ef93bd338511e/raw/36612d28981d92863f839c5aefe5b7dd7193d6c6/travis-ci-docker-upgrade.sh | sudo bash - -install: - # Install test dependencies. - - pip install molecule yamllint ansible-lint docker - -before_script: - # Use actual Ansible Galaxy role name for the project directory. - - cd ../ - - mv ansible-role-$ROLE_NAME geerlingguy.$ROLE_NAME - - cd geerlingguy.$ROLE_NAME - -script: - # Run tests. - - molecule test - -notifications: - webhooks: https://galaxy.ansible.com/api/v1/notifications/ diff --git a/ansible/roles/ansible-role-php/.yamllint b/ansible/roles/ansible-role-php/.yamllint deleted file mode 100644 index f2033dd2..00000000 --- a/ansible/roles/ansible-role-php/.yamllint +++ /dev/null @@ -1,11 +0,0 @@ ---- -extends: default - -rules: - line-length: - max: 120 - level: warning - -ignore: | - .github/stale.yml - .travis.yml diff --git a/ansible/roles/ansible-role-php/LICENSE b/ansible/roles/ansible-role-php/LICENSE deleted file mode 100644 index 4275cf3c..00000000 --- a/ansible/roles/ansible-role-php/LICENSE +++ /dev/null @@ -1,20 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2017 Jeff Geerling - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/ansible/roles/ansible-role-php/README.md b/ansible/roles/ansible-role-php/README.md deleted file mode 100644 index b8ccf5e5..00000000 --- a/ansible/roles/ansible-role-php/README.md +++ /dev/null @@ -1,239 +0,0 @@ -# Ansible Role: PHP - -[![Build Status](https://travis-ci.org/geerlingguy/ansible-role-php.svg?branch=master)](https://travis-ci.org/geerlingguy/ansible-role-php) - -Installs PHP on RedHat/CentOS and Debian/Ubuntu servers. - -## Requirements - -If you're using an older LTS release of Ubuntu or RHEL, with an old/outdated version of PHP, you need to use a repo or PPA with a maintained PHP version, as this role only works with [PHP versions that are currently supported](http://php.net/supported-versions.php) by the PHP community. - -## Role Variables - -Available variables are listed below, along with default values (see `defaults/main.yml`): - - php_packages: [] - -A list of the PHP packages to install (OS-specific by default). You'll likely want to install common packages like `php`, `php-cli`, `php-devel` and `php-pdo`, and you can add in whatever other packages you'd like (for example, `php-gd` for image manipulation, or `php-ldap` if you need to connect to an LDAP server for authentication). - -_Note: If you're using Debian/Ubuntu, you also need to install `libapache2-mod-fastcgi` (for cgi/PHP-FPM) or `libapache2-mod-php7.0` (or a similar package depending on PHP version) if you want to use `mod_php` with Apache._ - - php_packages_extra: [] - -A list of extra PHP packages to install without overriding the default list. - - php_enable_webserver: true - -If your usage of PHP is tied to a web server (e.g. Apache or Nginx), leave this default value. If you are using PHP server-side or to run some small application, set this value to `false` so this role doesn't attempt to interact with a web server. - - php_webserver_daemon: "httpd" - -The default values for the HTTP server deamon are `httpd` (used by Apache) for RedHat/CentOS, or `apache2` (also used by Apache) for Debian/Ubuntu. If you are running another webserver (for example, `nginx`), change this value to the name of the daemon under which the webserver runs. - - php_enablerepo: "" - -(RedHat/CentOS only) If you have enabled any additional repositories (might I suggest [geerlingguy.repo-epel](https://github.com/geerlingguy/ansible-role-repo-epel) or [geerlingguy.repo-remi](https://github.com/geerlingguy/ansible-role-repo-remi)), those repositories can be listed under this variable (e.g. `remi-php70,epel`). This can be handy, as an example, if you want to install the latest version of PHP 7.0, which is in the Remi repository. - - php_default_version_debian: "7.0" - -(Debian/Ubuntu only) The default version of PHP in the given OS version repositories. Defaults to the latest Ubuntu LTS release. Ubuntu 18.04 needs this to be set to `"7.2"` since PHP 7.0 is not available in the default bionic packages. - -**If you'd like to be able to switch PHP versions easily, or use a version that's not available in system packages**: You can use the [`geerlingguy.php-versions`](https://galaxy.ansible.com/geerlingguy/php-versions/) role to more easily switch between major PHP versions (e.g. 5.6, 7.1, 7.2). - - php_packages_state: "present" - -If you have enabled any additional repositories such as [geerlingguy.repo-epel](https://github.com/geerlingguy/ansible-role-repo-epel) or [geerlingguy.repo-remi](https://github.com/geerlingguy/ansible-role-repo-remi), you may want an easy way to swap PHP versions on the fly. By default, this is set to `"present"`. You can override this variable to `"latest"` to upgrade to the latest available version. Combined with `php_enablerepo`, a user now doesn't need to manually uninstall the existing PHP packages before installing them from a different repository. - - php_install_recommends: true - -(Debian/Ubuntu only) Whether to install recommended packages when installing `php_packages`; you might want to set this to `no` explicitly if you're installing a PPA that recommends certain packages you don't want (e.g. Ondrej's `php` PPA will install `php7.0-cli` if you install `php-pear` alongside `php5.6-cli`... which is often not desired!). - - php_executable: "php" - -The executable to run when calling PHP from the command line. You should only change this if running `php` on your server doesn't target the correct executable, or if you're using software collections on RHEL/CentOS and need to target a different version of PHP. - -### PHP-FPM - -PHP-FPM is a simple and robust FastCGI Process Manager for PHP. It can dramatically ease scaling of PHP apps and is the normal way of running PHP-based sites and apps when using a webserver like Nginx (though it can be used with other webservers just as easily). - -When using this role with PHP running as `php-fpm` instead of as a process inside a webserver (e.g. Apache's `mod_php`), you need to set the following variable to `true`: - - php_enable_php_fpm: false - -If you're using Apache, you can easily get it configured to work with PHP-FPM using the [geerlingguy.apache-php-fpm](https://github.com/geerlingguy/ansible-role-apache-php-fpm) role. - - php_fpm_state: started - php_fpm_enabled_on_boot: true - -Control over the fpm daemon's state; set these to `stopped` and `false` if you want FPM to be installed and configured, but not running (e.g. when installing in a container). - - php_fpm_handler_state: restarted - -The handler restarts PHP-FPM by default. Setting the value to `reloaded` will reload the service, intead of restarting it. - - php_fpm_listen: "127.0.0.1:9000" - php_fpm_listen_allowed_clients: "127.0.0.1" - php_fpm_pm_max_children: 50 - php_fpm_pm_start_servers: 5 - php_fpm_pm_min_spare_servers: 5 - php_fpm_pm_max_spare_servers: 5 - -Specific settings inside the default `www.conf` PHP-FPM pool. If you'd like to manage additional settings, you can do so either by replacing the file with your own template or using `lineinfile` like this role does inside `tasks/configure-fpm.yml`. - -### php.ini settings - - php_use_managed_ini: true - -By default, all the extra defaults below are applied through the php.ini included with this role. You can self-manage your php.ini file (if you need more flexility in its configuration) by setting this to `false` (in which case all the below variables will be ignored). - - php_fpm_pool_user: "[apache|nginx|other]" # default varies by OS - php_fpm_pool_group: "[apache|nginx|other]" # default varies by OS - php_memory_limit: "256M" - php_max_execution_time: "60" - php_max_input_time: "60" - php_max_input_vars: "1000" - php_realpath_cache_size: "32K" - php_file_uploads: "On" - php_upload_max_filesize: "64M" - php_max_file_uploads: "20" - php_post_max_size: "32M" - php_date_timezone: "America/Chicago" - php_allow_url_fopen: "On" - php_sendmail_path: "/usr/sbin/sendmail -t -i" - php_output_buffering: "4096" - php_short_open_tag: false - php_error_reporting: "E_ALL & ~E_DEPRECATED & ~E_STRICT" - php_display_errors: "Off" - php_display_startup_errors: "On" - php_expose_php: "On" - php_session_cookie_lifetime: 0 - php_session_gc_probability: 1 - php_session_gc_divisor: 1000 - php_session_gc_maxlifetime: 1440 - php_session_save_handler: files - php_session_save_path: '' - php_disable_functions: [] - php_precision: 14 - php_serialize_precision: "-1" - -Various defaults for PHP. Only used if `php_use_managed_ini` is set to `true`. - -### OpCache-related Variables - -The OpCache is included in PHP starting in version 5.5, and the following variables will only take effect if the version of PHP you have installed is 5.5 or greater. - - php_opcache_zend_extension: "opcache.so" - php_opcache_enable: "1" - php_opcache_enable_cli: "0" - php_opcache_memory_consumption: "96" - php_opcache_interned_strings_buffer: "16" - php_opcache_max_accelerated_files: "4096" - php_opcache_max_wasted_percentage: "5" - php_opcache_validate_timestamps: "1" - php_opcache_revalidate_path: "0" - php_opcache_revalidate_freq: "2" - php_opcache_max_file_size: "0" - -OpCache ini directives that are often customized on a system. Make sure you have enough memory and file slots allocated in the OpCache (`php_opcache_memory_consumption`, in MB, and `php_opcache_max_accelerated_files`) to contain all the PHP code you are running. If not, you may get less-than-optimal performance! - -For custom opcache.so location provide full path with `php_opcache_zend_extension`. - - php_opcache_conf_filename: [platform-specific] - -The platform-specific opcache configuration filename. Generally the default should work, but in some cases, you may need to override the filename. - -### APCu-related Variables - - php_enable_apc: true - -Whether to enable APCu. Other APCu variables will be ineffective if this is set to false. - - php_apc_shm_size: "96M" - php_apc_enable_cli: "0" - -APCu ini directives that are often customized on a system. Set the `php_apc_shm_size` so it will hold all cache entries in memory with a little overhead (fragmentation or APC running out of memory will slow down PHP *dramatically*). - - php_apc_conf_filename: [platform-specific] - -The platform-specific APC configuration filename. Generally the default should work, but in some cases, you may need to override the filename. - -#### Ensuring APC is installed - -If you use APC, you will need to make sure APC is installed (it is installed by default, but if you customize the `php_packages` list, you need to include APC in the list): - - - *On RHEL/CentOS systems*: Make sure `php-pecl-apcu` is in the list of `php_packages`. - - *On Debian/Ubuntu systems*: Make sure `php-apcu` is in the list of `php_packages`. - -### Installing from Source - -If you need a specific version of PHP, or would like to test the latest (e.g. master) version of PHP, there's a good chance there's no suitable package already available in your platform's package manager. In these cases, you may choose to install PHP from source by compiling it directly. - -Note that source compilation takes *much* longer than installing from packages (PHP HEAD takes 5+ minutes to compile on a modern quad-core computer, just as a point of reference). - - php_install_from_source: false - -Set this to `true` to install PHP from source instead of installing from packages. - - php_source_version: "master" - -The version of PHP to install from source (a git branch, tag, or commit hash). - - php_source_clone_dir: "~/php-src" - php_source_clone_depth: 1 - php_source_install_path: "/opt/php" - php_source_install_gmp_path: "/usr/include/x86_64-linux-gnu/gmp.h" - php_source_mysql_config: "/usr/bin/mysql_config" - -Location where source will be cloned and installed, and the location of the GMP header file (which can be platform/distribution specific), and `mysql_config` binary (this may be `mariadb_config` in newer operating system versions). - - php_source_make_command: "make" - -Set the `make` command to `make --jobs=X` where `X` is the number of cores present on the server where PHP is being compiled. Will speed up compilation times dramatically if you have multiple cores. - - php_source_configure_command: > - [...] - -The `./configure` command that will build the Makefile to be used for PHP compilation. Add in all the options you need for your particular environment. Using a folded scalar (`>`) allows you to define the variable over multiple lines, which is extremely helpful for legibility and source control! - -A few other notes/caveats for specific configurations: - - - **Apache with `mpm_prefork`**: If you're using Apache with prefork as a webserver for PHP, you will need to make sure `apxs2` is available on your system (e.g. by installing `apache2-prefork-dev` in Ubuntu), and you will need to make sure the option `--with-apxs2` is defined in `php_source_configure_command`. Finally, you will need to make sure the `mpm_prefork` module is loaded instead of `mpm_worker` or `mpm_event`, and likely add a `phpX.conf` (where `X` is the major version of PHP) configuration file to the Apache module config folder with contents like [`php7.conf`](https://gist.github.com/geerlingguy/5ae5445f28e71264e8c1). - - **Apache with `mpm_event` or `mpm_worker`**: If you're using Apache with event or worker as a webserver for PHP, you will need to compile PHP with FPM. Make sure the option `--enable-fpm` is defined in `php_source_configure_command`. You'll also need to make sure Apache's support for CGI and event is installed (e.g. by installing `apache2-mpm-event` and `libapache2-mod-fastcgi`) and the `mpm_event` module is loaded. - - **Nginx**: If you're using Nginx as a webserver for PHP, you will need to compile PHP with FPM. Make sure the option `--enable-fpm` is defined in `php_source_configure_command`. - -## Dependencies - -None. - -## Example Playbook - - - hosts: webservers - vars_files: - - vars/main.yml - roles: - - { role: geerlingguy.php } - -*Inside `vars/main.yml`*: - - php_memory_limit: "128M" - php_max_execution_time: "90" - php_upload_max_filesize: "256M" - php_packages: - - php - - php-cli - - php-common - - php-devel - - php-gd - - php-mbstring - - php-pdo - - php-pecl-apcu - - php-xml - ... - -## License - -MIT / BSD - -## Author Information - -This role was created in 2014 by [Jeff Geerling](https://www.jeffgeerling.com/), author of [Ansible for DevOps](https://www.ansiblefordevops.com/). diff --git a/ansible/roles/ansible-role-php/defaults/main.yml b/ansible/roles/ansible-role-php/defaults/main.yml deleted file mode 100644 index e716d590..00000000 --- a/ansible/roles/ansible-role-php/defaults/main.yml +++ /dev/null @@ -1,140 +0,0 @@ ---- -# Pass in a comma-separated list of repos to use (e.g. "remi,epel"). Used only -# for RHEL/CentOS. -php_enablerepo: "" - -# Extra packages to install (in addition to distro-specific default lists). -php_packages_extra: [] - -# Default PHP version to install on Debian-based OSes (OS-specific). -# php_default_version_debian: "" - -# PHP package state; use 'present' to make sure it's installed, or 'latest' if -# you want to upgrade or switch versions using a new repo. -php_packages_state: present - -# Whether to install recommended packages. Used only for Debian/Ubuntu. -php_install_recommends: true - -# Set this to false if you're not using PHP with Apache/Nginx/etc. -php_enable_webserver: true - -# PHP-FPM configuration. -php_enable_php_fpm: false -php_fpm_state: started -php_fpm_handler_state: restarted -php_fpm_enabled_on_boot: true -php_fpm_listen: "127.0.0.1:9000" -php_fpm_listen_allowed_clients: "127.0.0.1" -php_fpm_pm_max_children: 50 -php_fpm_pm_start_servers: 5 -php_fpm_pm_min_spare_servers: 5 -php_fpm_pm_max_spare_servers: 5 - -# The executable to run when calling PHP from the command line. -php_executable: "php" - -# OpCache settings. -php_opcache_zend_extension: "opcache.so" -php_opcache_enable: "1" -php_opcache_enable_cli: "0" -php_opcache_memory_consumption: "96" -php_opcache_interned_strings_buffer: "16" -php_opcache_max_accelerated_files: "4096" -php_opcache_max_wasted_percentage: "5" -php_opcache_validate_timestamps: "1" -php_opcache_revalidate_path: "0" -php_opcache_revalidate_freq: "2" -php_opcache_max_file_size: "0" -php_opcache_blacklist_filename: "" - -# APCu settings. -php_enable_apc: true -php_apc_shm_size: "96M" -php_apc_enable_cli: "0" - -# If this is set to false, none of the following options will have any effect. -# Any and all changes to /etc/php.ini will be your responsibility. -php_use_managed_ini: true - -php_expose_php: "On" -php_memory_limit: "256M" -php_max_execution_time: "60" -php_max_input_time: "60" -php_max_input_vars: "1000" -php_realpath_cache_size: "32K" - -php_file_uploads: "On" -php_upload_max_filesize: "64M" -php_max_file_uploads: "20" - -php_post_max_size: "32M" -php_date_timezone: "America/Chicago" -php_allow_url_fopen: "On" - -php_sendmail_path: "/usr/sbin/sendmail -t -i" -php_output_buffering: "4096" -php_short_open_tag: "Off" -php_disable_functions: [] -php_precision: 14 -php_serialize_precision: "-1" - -php_session_cookie_lifetime: 0 -php_session_gc_probability: 1 -php_session_gc_divisor: 1000 -php_session_gc_maxlifetime: 1440 -php_session_save_handler: files -php_session_save_path: '' - -php_error_reporting: "E_ALL & ~E_DEPRECATED & ~E_STRICT" -php_display_errors: "Off" -php_display_startup_errors: "Off" - -# Install PHP from source (instead of using a package manager) with these vars. -php_install_from_source: false -php_source_repo: "https://git.php.net/repository/php-src.git" -php_source_version: "master" -php_source_clone_dir: "~/php-src" -php_source_clone_depth: 1 -php_source_install_path: "/opt/php" -php_source_install_gmp_path: "/usr/include/x86_64-linux-gnu/gmp.h" -php_source_mysql_config: "/usr/bin/mysql_config" -# For faster compile time: "make --jobs=X" where X is # of cores present. -php_source_make_command: "make" -php_source_configure_command: > - ./configure - --prefix={{ php_source_install_path }} - --with-config-file-path={{ php_conf_paths | first }} - --enable-mbstring - --enable-zip - --enable-bcmath - --enable-pcntl - --enable-ftp - --enable-exif - --enable-calendar - --enable-opcache - --enable-pdo - --enable-sysvmsg - --enable-sysvsem - --enable-sysvshm - --enable-wddx - --with-curl - --with-mcrypt - --with-iconv - --with-gmp - --with-pspell - --with-gd - --with-jpeg-dir=/usr - --with-png-dir=/usr - --with-zlib-dir=/usr - --with-xpm-dir=/usr - --with-freetype-dir=/usr - --enable-gd-native-ttf - --enable-gd-jis-conv - --with-openssl - --with-pdo-mysql=/usr - --with-gettext=/usr - --with-zlib=/usr - --with-bz2=/usr - --with-recode=/usr - --with-mysqli={{ php_source_mysql_config }} diff --git a/ansible/roles/ansible-role-php/handlers/main.yml b/ansible/roles/ansible-role-php/handlers/main.yml deleted file mode 100644 index e0d0a292..00000000 --- a/ansible/roles/ansible-role-php/handlers/main.yml +++ /dev/null @@ -1,15 +0,0 @@ ---- -- name: restart webserver - service: - name: "{{ php_webserver_daemon }}" - state: restarted - notify: restart php-fpm - when: php_enable_webserver - -- name: restart php-fpm - service: - name: "{{ php_fpm_daemon }}" - state: "{{ php_fpm_handler_state }}" - when: - - php_enable_php_fpm - - php_fpm_state == 'started' diff --git a/ansible/roles/ansible-role-php/meta/main.yml b/ansible/roles/ansible-role-php/meta/main.yml deleted file mode 100644 index 821b9732..00000000 --- a/ansible/roles/ansible-role-php/meta/main.yml +++ /dev/null @@ -1,37 +0,0 @@ ---- -dependencies: [] - -galaxy_info: - role_name: php - author: geerlingguy - description: PHP for RedHat/CentOS/Fedora/Debian/Ubuntu. - company: "Midwestern Mac, LLC" - license: "license (BSD, MIT)" - min_ansible_version: 2.8 - platforms: - - name: EL - versions: - - 6 - - 7 - - 8 - - name: Fedora - versions: - - all - - name: Debian - versions: - - all - - name: Ubuntu - versions: - - trusty - - xenial - - bionic - galaxy_tags: - - development - - web - - php - - language - - fpm - - drupal - - wordpress - - joomla - - magento diff --git a/ansible/roles/ansible-role-php/molecule/default/converge.yml b/ansible/roles/ansible-role-php/molecule/default/converge.yml deleted file mode 100644 index 41ae7c19..00000000 --- a/ansible/roles/ansible-role-php/molecule/default/converge.yml +++ /dev/null @@ -1,70 +0,0 @@ ---- -- name: Converge - hosts: all - become: true - - vars: - php_enable_webserver: false - php_enable_php_fpm: true - php_memory_limit: "192M" - php_enablerepo: "remi,remi-php70" - php_install_recommends: false - - handlers: - - name: update apt cache - apt: update_cache=true - when: ansible_os_family == 'Debian' - - pre_tasks: - - name: Update apt cache. - apt: update_cache=true cache_valid_time=600 - when: ansible_os_family == 'Debian' - changed_when: false - - # Ubuntu-specific tasks. - - name: Ensure dirmngr is installed (gnupg dependency). - apt: - name: dirmngr - state: present - when: ansible_os_family == 'Debian' - - - name: Add repository for PHP 7. - apt_repository: repo='ppa:ondrej/php' - when: ansible_distribution == 'Ubuntu' - - # Debian-specific tasks. - - name: Add dependencies for PHP versions (Debian). - apt: - name: - - apt-transport-https - - ca-certificates - - gnupg2 - state: present - when: ansible_distribution == "Debian" - - - name: Add Ondrej Sury's apt key (Debian). - apt_key: - url: https://packages.sury.org/php/apt.gpg - state: present - when: ansible_distribution == "Debian" - - - name: Add Ondrej Sury's repo (Debian). - apt_repository: - repo: "deb https://packages.sury.org/php/ {{ ansible_distribution_release }} main" - state: present - when: ansible_distribution == "Debian" - notify: update apt cache - - - meta: flush_handlers - - roles: - - role: geerlingguy.repo-remi - when: - - ansible_os_family == 'RedHat' - - ansible_distribution != 'Fedora' - - role: geerlingguy.php - - post_tasks: - - name: Confirm PHP configuration is correct. - shell: php -i | grep 'memory_limit.*192' - changed_when: false diff --git a/ansible/roles/ansible-role-php/molecule/default/molecule.yml b/ansible/roles/ansible-role-php/molecule/default/molecule.yml deleted file mode 100644 index 2da47dd1..00000000 --- a/ansible/roles/ansible-role-php/molecule/default/molecule.yml +++ /dev/null @@ -1,21 +0,0 @@ ---- -dependency: - name: galaxy -driver: - name: docker -lint: | - set -e - yamllint . - ansible-lint -platforms: - - name: instance - image: "geerlingguy/docker-${MOLECULE_DISTRO:-centos7}-ansible:latest" - command: ${MOLECULE_DOCKER_COMMAND:-""} - volumes: - - /sys/fs/cgroup:/sys/fs/cgroup:ro - privileged: true - pre_build_image: true -provisioner: - name: ansible - playbooks: - converge: ${MOLECULE_PLAYBOOK:-converge.yml} diff --git a/ansible/roles/ansible-role-php/molecule/default/playbook-source.yml b/ansible/roles/ansible-role-php/molecule/default/playbook-source.yml deleted file mode 100644 index d9ad0f95..00000000 --- a/ansible/roles/ansible-role-php/molecule/default/playbook-source.yml +++ /dev/null @@ -1,32 +0,0 @@ ---- -- name: Converge - hosts: all - become: true - - vars: - php_enable_webserver: false - php_install_from_source: true - php_source_clone_dir: /root/php-src - php_source_make_command: "make --jobs=2" - php_version: "7.4.8" - php_source_version: "php-{{ php_version }}" - php_memory_limit: "192M" - - pre_tasks: - - name: Update apt cache. - apt: update_cache=true cache_valid_time=600 - when: ansible_os_family == 'Debian' - changed_when: false - - roles: - - role: geerlingguy.git - - role: geerlingguy.php - - post_tasks: - - name: Confirm PHP configuration is correct. - shell: php -i | grep 'memory_limit.*192' - changed_when: false - - - name: Check the installed PHP version. - shell: '/usr/bin/php --version | grep -qF "PHP {{ php_version }}"' - changed_when: false diff --git a/ansible/roles/ansible-role-php/molecule/default/requirements.yml b/ansible/roles/ansible-role-php/molecule/default/requirements.yml deleted file mode 100644 index 809b89be..00000000 --- a/ansible/roles/ansible-role-php/molecule/default/requirements.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -- src: geerlingguy.repo-remi -- src: geerlingguy.git diff --git a/ansible/roles/ansible-role-php/tasks/configure-apcu.yml b/ansible/roles/ansible-role-php/tasks/configure-apcu.yml deleted file mode 100644 index a29f8d63..00000000 --- a/ansible/roles/ansible-role-php/tasks/configure-apcu.yml +++ /dev/null @@ -1,37 +0,0 @@ ---- -- name: Check for existing APCu config files. - find: - paths: "{{ item }}" - contains: 'extension(\s+)?=(\s+)?apc[u]?\.so' - register: php_installed_apc_confs - with_items: "{{ php_extension_conf_paths }}" - -- name: Remove any non-role-supplied APCu config files. - file: - path: "{{ item.1.path }}" - state: absent - when: php_apc_conf_filename != (item.1.path.split('/') | last) - with_subelements: - - "{{ php_installed_apc_confs.results }}" - - files - notify: restart webserver - -- name: Ensure APCu config file is present. - template: - src: apc.ini.j2 - dest: "{{ item }}/{{ php_apc_conf_filename }}" - owner: root - group: root - force: true - mode: 0644 - with_items: "{{ php_extension_conf_paths }}" - when: php_enable_apc - notify: restart webserver - -- name: Remove APCu config file if APC is disabled. - file: - path: "{{ item }}/{{ php_apc_conf_filename }}" - state: absent - with_items: "{{ php_extension_conf_paths }}" - when: not php_enable_apc - notify: restart webserver diff --git a/ansible/roles/ansible-role-php/tasks/configure-fpm.yml b/ansible/roles/ansible-role-php/tasks/configure-fpm.yml deleted file mode 100644 index dfebf0be..00000000 --- a/ansible/roles/ansible-role-php/tasks/configure-fpm.yml +++ /dev/null @@ -1,78 +0,0 @@ ---- -- name: Define php_fpm_daemon. - set_fact: - php_fpm_daemon: "{{ __php_fpm_daemon }}" - when: php_fpm_daemon is not defined - -- name: Define php_fpm_pool_conf_path. - set_fact: - php_fpm_pool_conf_path: "{{ __php_fpm_pool_conf_path }}" - when: php_fpm_pool_conf_path is not defined - -- name: Define php_fpm_pool_user. - set_fact: - php_fpm_pool_user: "{{ __php_fpm_pool_user }}" - when: php_fpm_pool_user is not defined - -- name: Define php_fpm_pool_group. - set_fact: - php_fpm_pool_group: "{{ __php_fpm_pool_group }}" - when: php_fpm_pool_group is not defined - -- name: Stat php_fpm_pool_conf_path - stat: - path: "{{ php_fpm_pool_conf_path | dirname }}" - register: php_fpm_pool_conf_path_dir_stat - -- name: Ensure the default pool directory exists. - file: - path: "{{ php_fpm_pool_conf_path | dirname }}" - state: directory - owner: root - group: root - mode: 0755 - when: php_fpm_pool_conf_path_dir_stat.stat.islnk is not defined - -- name: Ensure the default pool exists. - template: - src: www.conf.j2 - dest: "{{ php_fpm_pool_conf_path }}" - owner: root - group: root - mode: 0644 - force: false - when: php_enable_php_fpm - -- name: Configure php-fpm pool (if enabled). - lineinfile: - dest: "{{ php_fpm_pool_conf_path }}" - regexp: "{{ item.regexp }}" - line: "{{ item.line }}" - state: present - mode: 0644 - with_items: - - regexp: "^user.?=.+$" - line: "user = {{ php_fpm_pool_user }}" - - regexp: "^group.?=.+$" - line: "group = {{ php_fpm_pool_group }}" - - regexp: "^listen.?=.+$" - line: "listen = {{ php_fpm_listen }}" - - regexp: '^listen\.allowed_clients.?=.+$' - line: "listen.allowed_clients = {{ php_fpm_listen_allowed_clients }}" - - regexp: '^pm\.max_children.?=.+$' - line: "pm.max_children = {{ php_fpm_pm_max_children }}" - - regexp: '^pm\.start_servers.?=.+$' - line: "pm.start_servers = {{ php_fpm_pm_start_servers }}" - - regexp: '^pm\.min_spare_servers.?=.+$' - line: "pm.min_spare_servers = {{ php_fpm_pm_min_spare_servers }}" - - regexp: '^pm\.max_spare_servers.?=.+$' - line: "pm.max_spare_servers = {{ php_fpm_pm_max_spare_servers }}" - when: php_enable_php_fpm - notify: restart php-fpm - -- name: Ensure php-fpm is started and enabled at boot (if configured). - service: - name: "{{ php_fpm_daemon }}" - state: "{{ php_fpm_state }}" - enabled: "{{ php_fpm_enabled_on_boot }}" - when: php_enable_php_fpm and ansible_distribution != "Debian" diff --git a/ansible/roles/ansible-role-php/tasks/configure-opcache.yml b/ansible/roles/ansible-role-php/tasks/configure-opcache.yml deleted file mode 100644 index fc043d0c..00000000 --- a/ansible/roles/ansible-role-php/tasks/configure-opcache.yml +++ /dev/null @@ -1,37 +0,0 @@ ---- -- name: Check for existing OpCache config files. - find: - paths: "{{ item }}" - contains: 'zend_extension(\s+)?=(\s+)?opcache\.so' - register: php_installed_opcache_confs - with_items: "{{ php_extension_conf_paths }}" - -- name: Remove any non-role-supplied OpCache config files. - file: - path: "{{ item.1.path }}" - state: absent - when: php_opcache_conf_filename != (item.1.path.split('/') | last) - with_subelements: - - "{{ php_installed_opcache_confs.results }}" - - files - notify: restart webserver - -- name: Ensure OpCache config file is present. - template: - src: opcache.ini.j2 - dest: "{{ item }}/{{ php_opcache_conf_filename }}" - owner: root - group: root - force: true - mode: 0644 - with_items: "{{ php_extension_conf_paths }}" - when: php_opcache_enable | bool - notify: restart webserver - -- name: Remove OpCache config file if OpCache is disabled. - file: - path: "{{ item }}/{{ php_opcache_conf_filename }}" - state: absent - with_items: "{{ php_extension_conf_paths }}" - when: not php_opcache_enable | bool - notify: restart webserver diff --git a/ansible/roles/ansible-role-php/tasks/configure.yml b/ansible/roles/ansible-role-php/tasks/configure.yml deleted file mode 100644 index e0e1434b..00000000 --- a/ansible/roles/ansible-role-php/tasks/configure.yml +++ /dev/null @@ -1,21 +0,0 @@ ---- -- name: Ensure configuration directories exist. - file: - path: "{{ item }}" - state: directory - follow: true - mode: 0755 - with_flattened: - - "{{ php_conf_paths }}" - - "{{ php_extension_conf_paths }}" - -- name: Place PHP configuration file in place. - template: - src: php.ini.j2 - dest: "{{ item }}/php.ini" - owner: root - group: root - mode: 0644 - with_items: "{{ php_conf_paths }}" - notify: restart webserver - when: php_use_managed_ini diff --git a/ansible/roles/ansible-role-php/tasks/install-from-source.yml b/ansible/roles/ansible-role-php/tasks/install-from-source.yml deleted file mode 100644 index cd18daac..00000000 --- a/ansible/roles/ansible-role-php/tasks/install-from-source.yml +++ /dev/null @@ -1,158 +0,0 @@ ---- -- name: Ensure dependencies for building from source are installed (RedHat). - package: - name: - - autoconf - - automake - - libtool - - bison - - make - - re2c - - sqlite-devel - - oniguruma-devel - - curl-devel - - recode-devel - - aspell-devel - - libxml2-devel - - pkgconfig - - libmcrypt-devel - - t1lib-devel - - libXpm-devel - - libpng-devel - - libjpeg-turbo-devel - - bzip2-devel - - openssl-devel - - freetype-devel - - libicu-devel - - mariadb-devel - - gmp-devel - state: present - when: ansible_os_family == 'RedHat' - -- name: Update apt cache (Debian). - apt: update_cache=yes cache_valid_time=86400 - when: ansible_os_family == 'Debian' - -- name: Ensure dependencies for building from source are installed (Debian). - apt: - name: - - build-essential - - autoconf - - automake - - libtool - - bison - - pkg-config - - re2c - - libsqlite3-dev - - libonig-dev - - libxml2-dev - - libcurl4-openssl-dev - - libbz2-dev - - libjpeg-dev - - libpng-dev - - libxpm-dev - - libfreetype6-dev - - libgmp3-dev - - libmcrypt-dev - - libmariadbclient-dev - - libpspell-dev - - librecode-dev - - libssl-dev - state: present - when: ansible_os_family == 'Debian' - -- name: Define php_fpm_daemon (if not defined already). - set_fact: - php_fpm_daemon: "php-fpm" - when: php_fpm_daemon is not defined - -- name: Check if gmp.h is already in a location accessible to gcc. - stat: path=/usr/include/gmp.h - register: gmp_file - -- name: Ensure gmp.h is symlinked into a location accessible to gcc. - file: # noqa 208 - src: "{{ php_source_install_gmp_path }}" - dest: /usr/include/gmp.h - state: link - when: not gmp_file.stat.exists - -- name: Check if PHP is installed. - command: which php - changed_when: false - failed_when: false - register: php_installed - -- name: Clone the PHP repository. - git: - repo: "{{ php_source_repo }}" - dest: "{{ php_source_clone_dir }}" - version: "{{ php_source_version }}" - accept_hostkey: true - depth: "{{ php_source_clone_depth }}" - when: php_installed.rc != 0 - -- name: Ensure PHP installation path exists. - file: - path: "{{ php_source_install_path }}" - state: directory - mode: 0755 - when: php_installed.rc != 0 - -- name: Build configure script. - command: > - ./buildconf --force - chdir={{ php_source_clone_dir }} - when: php_installed.rc != 0 - -- name: Run configure script. - command: > - {{ php_source_configure_command }} - chdir={{ php_source_clone_dir }} - when: php_installed.rc != 0 - -- name: Make and install PHP. - command: > - {{ item }} - chdir={{ php_source_clone_dir }} - with_items: - - "{{ php_source_make_command }}" - - make install - when: php_installed.rc != 0 - -- name: Ensure php executable is symlinked into a standard path. - file: # noqa 208 - src: "{{ php_source_install_path }}/bin/php" - dest: /usr/bin/php - state: link - -# PHP FPM configuration. -- name: Ensure php-fpm executable is symlinked into a standard path. - file: # noqa 208 - src: "{{ php_source_install_path }}/sbin/php-fpm" - dest: "/usr/sbin/{{ php_fpm_daemon }}" - state: link - when: "'--enable-fpm' in php_source_configure_command" - -- name: Ensure php-fpm init script is installed. - template: - src: fpm-init.j2 - dest: "/etc/init.d/{{ php_fpm_daemon }}" - mode: 0755 - when: "'--enable-fpm' in php_source_configure_command" - notify: restart php-fpm - -- name: Ensure php-fpm config directory exists. - file: - path: "{{ php_fpm_conf_path }}" - state: directory - mode: 0755 - when: "'--enable-fpm' in php_source_configure_command" - -- name: Ensure php-fpm config file is installed. - template: - src: php-fpm.conf.j2 - dest: "{{ php_fpm_conf_path }}/php-fpm.conf" - mode: 0644 - when: "'--enable-fpm' in php_source_configure_command" - notify: restart php-fpm diff --git a/ansible/roles/ansible-role-php/tasks/main.yml b/ansible/roles/ansible-role-php/tasks/main.yml deleted file mode 100644 index 41a77614..00000000 --- a/ansible/roles/ansible-role-php/tasks/main.yml +++ /dev/null @@ -1,76 +0,0 @@ ---- -# Variable setup. -- name: Include distribution and version-specific vars. - include_vars: "{{ item }}" - with_first_found: - - files: - - "{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml" - skip: true -- name: Set the default PHP version for Debian-based OSes. - set_fact: - php_default_version_debian: "{{ __php_default_version_debian }}" - when: ansible_os_family == 'Debian' - -- name: Include OS-specific variables. - include_vars: "{{ ansible_os_family }}.yml" - -- name: Define php_packages. - set_fact: - php_packages: "{{ __php_packages | list }}" - when: php_packages is not defined - -- name: Define php_webserver_daemon. - set_fact: - php_webserver_daemon: "{{ __php_webserver_daemon }}" - when: php_webserver_daemon is not defined - -- name: Define php_conf_paths. - set_fact: - php_conf_paths: "{{ __php_conf_paths }}" - when: php_conf_paths is not defined - -- name: Define php_extension_conf_paths. - set_fact: - php_extension_conf_paths: "{{ __php_extension_conf_paths }}" - when: php_extension_conf_paths is not defined - -- name: Define php_apc_conf_filename. - set_fact: - php_apc_conf_filename: "{{ __php_apc_conf_filename }}" - when: php_apc_conf_filename is not defined - -- name: Define php_opcache_conf_filename (Ubuntu 16.04). - set_fact: - php_opcache_conf_filename: "10-opcache.ini" - when: php_opcache_conf_filename is not defined and ansible_distribution_version == "16.04" - -- name: Define php_opcache_conf_filename. - set_fact: - php_opcache_conf_filename: "{{ __php_opcache_conf_filename }}" - when: php_opcache_conf_filename is not defined - -- name: Define php_fpm_conf_path. - set_fact: - php_fpm_conf_path: "{{ __php_fpm_conf_path }}" - when: php_fpm_conf_path is not defined - -# Setup/install tasks. -- include_tasks: setup-RedHat.yml - when: - - not php_install_from_source - - ansible_os_family == 'RedHat' - -- include_tasks: setup-Debian.yml - when: - - not php_install_from_source - - ansible_os_family == 'Debian' - -# Install PHP from source when php_install_from_source is true. -- include_tasks: install-from-source.yml - when: php_install_from_source - -# Configure PHP. -- include_tasks: configure.yml -- include_tasks: configure-apcu.yml -- include_tasks: configure-opcache.yml -- include_tasks: configure-fpm.yml diff --git a/ansible/roles/ansible-role-php/tasks/setup-Debian.yml b/ansible/roles/ansible-role-php/tasks/setup-Debian.yml deleted file mode 100644 index a6657be2..00000000 --- a/ansible/roles/ansible-role-php/tasks/setup-Debian.yml +++ /dev/null @@ -1,27 +0,0 @@ ---- -- name: Update apt cache. - apt: update_cache=yes cache_valid_time=86400 - -- name: Ensure PHP packages are installed. - apt: - name: "{{ php_packages + php_packages_extra }}" - state: "{{ php_packages_state }}" - install_recommends: "{{ php_install_recommends }}" - register: php_package_install - notify: restart webserver - -- name: Delete APCu configuration file if this role will provide one. - file: - path: "{{ item }}/{{ php_apc_conf_filename }}" - state: absent - with_items: "{{ php_extension_conf_paths }}" - when: php_enable_apc and php_package_install.changed - notify: restart webserver - -- name: Delete OpCache configuration file if this role will provide one. - file: - path: "{{ item }}/{{ php_opcache_conf_filename }}" - state: absent - with_items: "{{ php_extension_conf_paths }}" - when: php_opcache_enable | bool and php_package_install.changed - notify: restart webserver diff --git a/ansible/roles/ansible-role-php/tasks/setup-RedHat.yml b/ansible/roles/ansible-role-php/tasks/setup-RedHat.yml deleted file mode 100644 index 1d76b331..00000000 --- a/ansible/roles/ansible-role-php/tasks/setup-RedHat.yml +++ /dev/null @@ -1,7 +0,0 @@ ---- -- name: Ensure PHP packages are installed. - package: - name: "{{ php_packages + php_packages_extra }}" - state: "{{ php_packages_state }}" - enablerepo: "{{ php_enablerepo | default(omit, true) }}" - notify: restart webserver diff --git a/ansible/roles/ansible-role-php/templates/apc.ini.j2 b/ansible/roles/ansible-role-php/templates/apc.ini.j2 deleted file mode 100644 index bfd57064..00000000 --- a/ansible/roles/ansible-role-php/templates/apc.ini.j2 +++ /dev/null @@ -1,4 +0,0 @@ -extension=apcu.so -apc.shm_size={{ php_apc_shm_size }} -apc.enable_cli={{ php_apc_enable_cli }} -apc.rfc1867=1 diff --git a/ansible/roles/ansible-role-php/templates/fpm-init.j2 b/ansible/roles/ansible-role-php/templates/fpm-init.j2 deleted file mode 100644 index 4d6a6d5d..00000000 --- a/ansible/roles/ansible-role-php/templates/fpm-init.j2 +++ /dev/null @@ -1,170 +0,0 @@ -#!/bin/sh -### BEGIN INIT INFO -# Provides: php-fpm {{ php_fpm_daemon }} -# Required-Start: $remote_fs $network -# Required-Stop: $remote_fs $network -# Default-Start: 2 3 4 5 -# Default-Stop: 0 1 6 -# Short-Description: starts {{ php_fpm_daemon }} -# Description: Starts The PHP FastCGI Process Manager Daemon -### END INIT INFO - -# Author: Ondrej Sury - -PATH=/sbin:/usr/sbin:/bin:/usr/bin -DESC="PHP FastCGI Process Manager" -NAME={{ php_fpm_daemon }} -DAEMON=/usr/sbin/$NAME -DAEMON_ARGS="--daemonize --fpm-config {{ php_fpm_conf_path }}/php-fpm.conf" -PIDFILE=/var/run/{{ php_fpm_daemon }}.pid -TIMEOUT=2 -SCRIPTNAME=/etc/init.d/$NAME - -# Exit if the package is not installed -[ -x "$DAEMON" ] || exit 0 - -# Read configuration variable file if it is present -[ -r /etc/default/$NAME ] && . /etc/default/$NAME - -# Load the VERBOSE setting and other rcS variables -. /lib/init/vars.sh - -# Define LSB log_* functions. -# Depend on lsb-base (>= 3.0-6) to ensure that this file is present. -. /lib/lsb/init-functions - -# Don't run if we are running upstart -if init_is_upstart; then - exit 1 -fi - -# -# Function to check the correctness of the config file -# -do_check() -{ - /usr/lib/php5/php5-fpm-checkconf || return 1 - return 0 -} - -# -# Function that starts the daemon/service -# -do_start() -{ - # Return - # 0 if daemon has been started - # 1 if daemon was already running - # 2 if daemon could not be started - start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON --test > /dev/null \ - || return 1 - start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- \ - $DAEMON_ARGS 2>/dev/null \ - || return 2 - # Add code here, if necessary, that waits for the process to be ready - # to handle requests from services started subsequently which depend - # on this one. As a last resort, sleep for some time. -} - -# -# Function that stops the daemon/service -# -do_stop() -{ - # Return - # 0 if daemon has been stopped - # 1 if daemon was already stopped - # 2 if daemon could not be stopped - # other if a failure occurred - start-stop-daemon --stop --quiet --retry=QUIT/$TIMEOUT/TERM/5/KILL/5 --pidfile $PIDFILE --name $NAME - RETVAL="$?" - [ "$RETVAL" = 2 ] && return 2 - # Wait for children to finish too if this is a daemon that forks - # and if the daemon is only ever run from this initscript. - # If the above conditions are not satisfied then add some other code - # that waits for the process to drop all resources that could be - # needed by services started subsequently. A last resort is to - # sleep for some time. - start-stop-daemon --stop --quiet --oknodo --retry=0/$TIMEOUT/TERM/5/KILL/5 --exec $DAEMON - [ "$?" = 2 ] && return 2 - # Many daemons don't delete their pidfiles when they exit. - rm -f $PIDFILE - return "$RETVAL" -} - -# -# Function that sends a SIGHUP to the daemon/service -# -do_reload() { - # - # If the daemon can reload its configuration without - # restarting (for example, when it is sent a SIGHUP), - # then implement that here. - # - start-stop-daemon --stop --signal USR2 --quiet --pidfile $PIDFILE --name $NAME - return 0 -} - -case "$1" in - start) - [ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME" - do_start - case "$?" in - 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; - 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; - esac - ;; - stop) - [ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME" - do_stop - case "$?" in - 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; - 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; - esac - ;; - status) - status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $? - ;; - check) - do_check yes - ;; - reload|force-reload) - log_daemon_msg "Reloading $DESC" "$NAME" - do_reload - log_end_msg $? - ;; - reopen-logs) - log_daemon_msg "Reopening $DESC logs" $NAME - if start-stop-daemon --stop --signal USR1 --oknodo --quiet \ - --pidfile $PIDFILE --exec $DAEMON - then - log_end_msg 0 - else - log_end_msg 1 - fi - ;; - restart) - log_daemon_msg "Restarting $DESC" "$NAME" - do_stop - case "$?" in - 0|1) - do_start - case "$?" in - 0) log_end_msg 0 ;; - 1) log_end_msg 1 ;; # Old process is still running - *) log_end_msg 1 ;; # Failed to start - esac - ;; - *) - # Failed to stop - log_end_msg 1 - ;; - esac - ;; - *) - echo "Usage: $SCRIPTNAME {start|stop|status|restart|reload|force-reload}" >&2 - exit 1 - ;; -esac - -: diff --git a/ansible/roles/ansible-role-php/templates/opcache.ini.j2 b/ansible/roles/ansible-role-php/templates/opcache.ini.j2 deleted file mode 100644 index 61464539..00000000 --- a/ansible/roles/ansible-role-php/templates/opcache.ini.j2 +++ /dev/null @@ -1,14 +0,0 @@ -zend_extension={{ php_opcache_zend_extension }} -opcache.enable={{ php_opcache_enable }} -opcache.enable_cli={{ php_opcache_enable_cli }} -opcache.memory_consumption={{ php_opcache_memory_consumption }} -opcache.interned_strings_buffer={{ php_opcache_interned_strings_buffer }} -opcache.max_accelerated_files={{ php_opcache_max_accelerated_files }} -opcache.max_wasted_percentage={{ php_opcache_max_wasted_percentage }} -opcache.validate_timestamps={{ php_opcache_validate_timestamps }} -opcache.revalidate_path={{ php_opcache_revalidate_path }} -opcache.revalidate_freq={{ php_opcache_revalidate_freq }} -opcache.max_file_size={{ php_opcache_max_file_size }} -{% if php_opcache_blacklist_filename != '' %} -opcache.blacklist_filename={{ php_opcache_blacklist_filename }} -{% endif %} diff --git a/ansible/roles/ansible-role-php/templates/php-fpm.conf.j2 b/ansible/roles/ansible-role-php/templates/php-fpm.conf.j2 deleted file mode 100644 index 12b277fb..00000000 --- a/ansible/roles/ansible-role-php/templates/php-fpm.conf.j2 +++ /dev/null @@ -1,12 +0,0 @@ -;;;;;;;;;;;;;;;;;;;;; -; FPM Configuration ; -;;;;;;;;;;;;;;;;;;;;; - -include={{ php_fpm_conf_path }}/pool.d/*.conf - -;;;;;;;;;;;;;;;;;; -; Global Options ; -;;;;;;;;;;;;;;;;;; - -[global] -error_log = /var/log/php-fpm.log diff --git a/ansible/roles/ansible-role-php/templates/php.ini.j2 b/ansible/roles/ansible-role-php/templates/php.ini.j2 deleted file mode 100644 index 14b7eeb3..00000000 --- a/ansible/roles/ansible-role-php/templates/php.ini.j2 +++ /dev/null @@ -1,221 +0,0 @@ -[PHP] - -;;;;;;;;;;;;;;;;;;;; -; Language Options ; -;;;;;;;;;;;;;;;;;;;; - -engine = On -short_open_tag = {{ php_short_open_tag }} -precision = {{ php_precision }} -output_buffering = {{ php_output_buffering }} - -zlib.output_compression = Off - -implicit_flush = Off -unserialize_callback_func = -serialize_precision = {{ php_serialize_precision }} -disable_functions = {{ php_disable_functions|join(",") }} -disable_classes = - -zend.enable_gc = On - -;;;;;;;;;;;;;;;;; -; Miscellaneous ; -;;;;;;;;;;;;;;;;; - -expose_php = {{ php_expose_php }} - -;;;;;;;;;;;;;;;;;;; -; Resource Limits ; -;;;;;;;;;;;;;;;;;;; - -max_execution_time = {{ php_max_execution_time }} -max_input_time = {{ php_max_input_time }} -max_input_vars = {{ php_max_input_vars }} -memory_limit = {{ php_memory_limit }} - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -; Error handling and logging ; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -error_reporting = {{ php_error_reporting }} -display_errors = {{ php_display_errors }} -display_startup_errors = {{ php_display_startup_errors }} -log_errors = On -log_errors_max_len = 1024 -ignore_repeated_errors = Off -ignore_repeated_source = Off -report_memleaks = On -track_errors = Off -html_errors = On - -;;;;;;;;;;;;;;;;; -; Data Handling ; -;;;;;;;;;;;;;;;;; - -variables_order = "GPCS" -request_order = "GP" -register_argc_argv = Off -auto_globals_jit = On - -post_max_size = {{ php_post_max_size }} -auto_prepend_file = -auto_append_file = - -default_mimetype = "text/html" - -;;;;;;;;;;;;;;;;;;;;;;;;; -; Paths and Directories ; -;;;;;;;;;;;;;;;;;;;;;;;;; - -doc_root = -user_dir = - -enable_dl = Off - -realpath_cache_size = {{ php_realpath_cache_size }} - -;;;;;;;;;;;;;;;; -; File Uploads ; -;;;;;;;;;;;;;;;; - -file_uploads = {{ php_file_uploads }} -upload_max_filesize = {{ php_upload_max_filesize }} -max_file_uploads = {{ php_max_file_uploads }} - -;;;;;;;;;;;;;;;;;; -; Fopen wrappers ; -;;;;;;;;;;;;;;;;;; - -allow_url_fopen = {{ php_allow_url_fopen }} -allow_url_include = Off - -default_socket_timeout = 60 - -;;;;;;;;;;;;;;;;;;; -; Module Settings ; -;;;;;;;;;;;;;;;;;;; - -[CLI Server] -cli_server.color = On - -[Date] -date.timezone = {{ php_date_timezone }} - -[Pdo_mysql] -pdo_mysql.cache_size = 2000 -pdo_mysql.default_socket= - -[mail function] -; For Win32 only. -SMTP = localhost -smtp_port = 25 - -; For Unix only. You may supply arguments as well (default: "sendmail -t -i"). -sendmail_path = {{ php_sendmail_path }} - -mail.add_x_header = On - -[SQL] -sql.safe_mode = Off - -[ODBC] -odbc.allow_persistent = On -odbc.check_persistent = On -odbc.max_persistent = -1 -odbc.max_links = -1 -odbc.defaultlrl = 4096 -odbc.defaultbinmode = 1 - -[MySQL] -mysql.allow_local_infile = On -mysql.allow_persistent = On -mysql.cache_size = 2000 -mysql.max_persistent = -1 -mysql.max_links = -1 -mysql.default_port = -mysql.default_socket = -mysql.default_host = -mysql.default_user = -mysql.default_password = -mysql.connect_timeout = 60 -mysql.trace_mode = Off - -[MySQLi] -mysqli.max_persistent = -1 -mysqli.allow_persistent = On -mysqli.max_links = -1 -mysqli.cache_size = 2000 -mysqli.default_port = 3306 -mysqli.default_socket = -mysqli.default_host = -mysqli.default_user = -mysqli.default_pw = -mysqli.reconnect = Off - -[mysqlnd] -mysqlnd.collect_statistics = On -mysqlnd.collect_memory_statistics = Off - -[PostgreSQL] -pgsql.allow_persistent = On -pgsql.auto_reset_persistent = Off -pgsql.max_persistent = -1 -pgsql.max_links = -1 -pgsql.ignore_notice = 0 -pgsql.log_notice = 0 - -[bcmath] -bcmath.scale = 0 - -[Session] -session.save_handler = {{ php_session_save_handler }} -session.save_path = {{ php_session_save_path }} -session.use_cookies = 1 -session.use_only_cookies = 1 -session.name = PHPSESSID -session.auto_start = 0 - -session.cookie_lifetime = {{ php_session_cookie_lifetime }} -session.cookie_path = / -session.cookie_domain = -session.cookie_httponly = - -session.serialize_handler = php - -session.gc_probability = {{ php_session_gc_probability }} -session.gc_divisor = {{ php_session_gc_divisor }} -session.gc_maxlifetime = {{ php_session_gc_maxlifetime }} - -session.referer_check = - -session.cache_limiter = nocache -session.cache_expire = 180 - -session.use_trans_sid = 0 - -session.hash_function = 0 -session.hash_bits_per_character = 5 - -url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry" - -[MSSQL] -mssql.allow_persistent = On -mssql.max_persistent = -1 -mssql.max_links = -1 -mssql.min_error_severity = 10 -mssql.min_message_severity = 10 -mssql.compatability_mode = Off -mssql.secure_connection = Off - -[Tidy] -tidy.clean_output = Off - -[soap] -soap.wsdl_cache_enabled=1 -soap.wsdl_cache_dir="/tmp" -soap.wsdl_cache_ttl=86400 -soap.wsdl_cache_limit = 5 - -[ldap] -ldap.max_links = -1 diff --git a/ansible/roles/ansible-role-php/templates/www.conf.j2 b/ansible/roles/ansible-role-php/templates/www.conf.j2 deleted file mode 100644 index da0921c3..00000000 --- a/ansible/roles/ansible-role-php/templates/www.conf.j2 +++ /dev/null @@ -1,15 +0,0 @@ -[www] -listen = 127.0.0.1:9000 -listen.allowed_clients = 127.0.0.1 -user = {{ php_fpm_pool_user }} -group = {{ php_fpm_pool_group }} - -listen.owner = {{ php_fpm_pool_user }} -listen.group = {{ php_fpm_pool_group }} - -pm = dynamic -pm.max_children = 50 -pm.start_servers = 5 -pm.min_spare_servers = 5 -pm.max_spare_servers = 5 -pm.max_requests = 500 diff --git a/ansible/roles/ansible-role-php/vars/Debian-10.yml b/ansible/roles/ansible-role-php/vars/Debian-10.yml deleted file mode 100644 index ec895aec..00000000 --- a/ansible/roles/ansible-role-php/vars/Debian-10.yml +++ /dev/null @@ -1,2 +0,0 @@ ---- -__php_default_version_debian: "7.3" diff --git a/ansible/roles/ansible-role-php/vars/Debian-9.yml b/ansible/roles/ansible-role-php/vars/Debian-9.yml deleted file mode 100644 index eb23ce3a..00000000 --- a/ansible/roles/ansible-role-php/vars/Debian-9.yml +++ /dev/null @@ -1,2 +0,0 @@ ---- -__php_default_version_debian: "7.0" diff --git a/ansible/roles/ansible-role-php/vars/Debian.yml b/ansible/roles/ansible-role-php/vars/Debian.yml deleted file mode 100644 index c487fd8a..00000000 --- a/ansible/roles/ansible-role-php/vars/Debian.yml +++ /dev/null @@ -1,39 +0,0 @@ ---- -__php_default_version_debian: "7.0" - -__php_packages: - - php{{ php_default_version_debian }}-common - - php{{ php_default_version_debian }}-cli - - php{{ php_default_version_debian }}-dev - - php{{ php_default_version_debian }}-fpm - - libpcre3-dev - - php{{ php_default_version_debian }}-gd - - php{{ php_default_version_debian }}-curl - - php{{ php_default_version_debian }}-imap - - php{{ php_default_version_debian }}-json - - php{{ php_default_version_debian }}-opcache - - php{{ php_default_version_debian }}-xml - - php{{ php_default_version_debian }}-mbstring - - php-sqlite3 - - php-apcu -__php_webserver_daemon: "apache2" - -# Vendor-specific configuration paths on Debian/Ubuntu make my brain asplode. -__php_conf_paths: - - /etc/php/{{ php_default_version_debian }}/fpm - - /etc/php/{{ php_default_version_debian }}/apache2 - - /etc/php/{{ php_default_version_debian }}/cli - -__php_extension_conf_paths: - - /etc/php/{{ php_default_version_debian }}/fpm/conf.d - - /etc/php/{{ php_default_version_debian }}/apache2/conf.d - - /etc/php/{{ php_default_version_debian }}/cli/conf.d - -__php_apc_conf_filename: 20-apcu.ini -__php_opcache_conf_filename: 10-opcache.ini -__php_fpm_daemon: php{{ php_default_version_debian }}-fpm -__php_fpm_conf_path: "/etc/php/{{ php_default_version_debian }}/fpm" -__php_fpm_pool_conf_path: "{{ __php_fpm_conf_path }}/pool.d/www.conf" - -__php_fpm_pool_user: www-data -__php_fpm_pool_group: www-data diff --git a/ansible/roles/ansible-role-php/vars/RedHat.yml b/ansible/roles/ansible-role-php/vars/RedHat.yml deleted file mode 100644 index e1e4458d..00000000 --- a/ansible/roles/ansible-role-php/vars/RedHat.yml +++ /dev/null @@ -1,32 +0,0 @@ ---- -__php_packages: - - php - - php-cli - - php-common - - php-devel - - php-fpm - - php-gd - - php-ldap - - php-mbstring - - php-opcache - - php-pdo - - php-pear - - php-pecl-apcu - - php-xml - - php-xmlrpc -__php_webserver_daemon: "httpd" - -__php_conf_paths: - - /etc - -__php_extension_conf_paths: - - /etc/php.d - -__php_apc_conf_filename: 50-apc.ini -__php_opcache_conf_filename: 10-opcache.ini -__php_fpm_daemon: php-fpm -__php_fpm_conf_path: "/etc/fpm" -__php_fpm_pool_conf_path: "/etc/php-fpm.d/www.conf" - -__php_fpm_pool_user: apache -__php_fpm_pool_group: apache diff --git a/ansible/roles/ansible-role-php/vars/Ubuntu-16.yml b/ansible/roles/ansible-role-php/vars/Ubuntu-16.yml deleted file mode 100644 index eb23ce3a..00000000 --- a/ansible/roles/ansible-role-php/vars/Ubuntu-16.yml +++ /dev/null @@ -1,2 +0,0 @@ ---- -__php_default_version_debian: "7.0" diff --git a/ansible/roles/ansible-role-php/vars/Ubuntu-18.yml b/ansible/roles/ansible-role-php/vars/Ubuntu-18.yml deleted file mode 100644 index 82230bcd..00000000 --- a/ansible/roles/ansible-role-php/vars/Ubuntu-18.yml +++ /dev/null @@ -1,2 +0,0 @@ ---- -__php_default_version_debian: "7.2" diff --git a/ansible/roles/ansible-role-php/vars/Ubuntu-20.yml b/ansible/roles/ansible-role-php/vars/Ubuntu-20.yml deleted file mode 100644 index a16b99b1..00000000 --- a/ansible/roles/ansible-role-php/vars/Ubuntu-20.yml +++ /dev/null @@ -1,2 +0,0 @@ ---- -__php_default_version_debian: "7.4" From 96e4d759c3f459333793fdb53121eb478aa4775d Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 4 Jan 2021 15:48:57 -0800 Subject: [PATCH 008/129] Set password and authorization scheme for postgres --- ansible/roles/ansible-postgresql/defaults/main.yml | 1 + ansible/roles/ansible-postgresql/tasks/main.yml | 5 +++++ .../ansible-postgresql/templates/pg_hba.conf.debian.j2 | 7 ++++--- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/ansible/roles/ansible-postgresql/defaults/main.yml b/ansible/roles/ansible-postgresql/defaults/main.yml index cf5fd578..b021bbac 100644 --- a/ansible/roles/ansible-postgresql/defaults/main.yml +++ b/ansible/roles/ansible-postgresql/defaults/main.yml @@ -6,5 +6,6 @@ postgresql_backup_active_dir: "{{ postgresql_backup_local_dir }}/active" postgresql_backup_mail_recipient: postgres postgresql_backup_rotate: true postgresql_user_name: postgres +postgresql_user_password: mypassword postgresql_archive_wal_rsync_args: '--ignore-existing -ptg --info=skip1' diff --git a/ansible/roles/ansible-postgresql/tasks/main.yml b/ansible/roles/ansible-postgresql/tasks/main.yml index c6fee608..df19ffbe 100644 --- a/ansible/roles/ansible-postgresql/tasks/main.yml +++ b/ansible/roles/ansible-postgresql/tasks/main.yml @@ -90,6 +90,11 @@ - include_tasks: backup.yml when: postgresql_backup_dir is defined +- name: Set Password + command: psql -c "ALTER USER postgres WITH PASSWORD '{{postgresql_user_password}}';" + become: true + become_user: postgres + - name: Ensure PostgreSQL is running service: name: "{{ postgresql_service_name }}" diff --git a/ansible/roles/ansible-postgresql/templates/pg_hba.conf.debian.j2 b/ansible/roles/ansible-postgresql/templates/pg_hba.conf.debian.j2 index b66d51a6..891ae21e 100644 --- a/ansible/roles/ansible-postgresql/templates/pg_hba.conf.debian.j2 +++ b/ansible/roles/ansible-postgresql/templates/pg_hba.conf.debian.j2 @@ -10,16 +10,16 @@ # maintenance (custom daily cronjobs, replication, and similar tasks). # # Database administrative login by Unix domain socket -local all postgres trust +local all postgres peer {% endif %} {% if postgresql_pg_hba_local_socket is not defined or postgresql_pg_hba_local_socket %} # "local" is for Unix domain socket connections only -local all all peer +local all all md5 {% endif %} {% if postgresql_pg_hba_local_ipv4 is not defined or postgresql_pg_hba_local_ipv4 %} # IPv4 local connections: -host all all 127.0.0.1/32 trust +host all all 127.0.0.1/32 md5 {% endif %} {% if postgresql_pg_hba_local_ipv6 is not defined or postgresql_pg_hba_local_ipv6 %} # IPv6 local connections: @@ -32,3 +32,4 @@ host all all ::1/128 md5 {{ line }} {% endfor %} {% endif %} + From 59108ca227b92c0b38edefed14112377b26687e8 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 4 Jan 2021 17:06:15 -0800 Subject: [PATCH 009/129] PHP installation --- .../roles/ansible-postgresql/tasks/main.yml | 8 + .../ansible-role-moodle-master/.gitignore | 3 - .../ansible-role-moodle-master/.travis.yml | 27 - .../ansible-role-moodle-master/.yamllint | 6 - .../roles/ansible-role-moodle-master/LICENSE | 21 - .../ansible-role-moodle-master/README.md | 78 -- .../defaults/main.yml | 83 -- .../handlers/main.yml | 14 - .../ansible-role-moodle-master/meta/main.yml | 25 - .../molecule/default/converge.yml | 12 - .../molecule/default/molecule.yml | 27 - .../molecule/default/verify.yml | 53 - .../ansible-role-moodle-master/tasks/main.yml | 26 - .../templates/config.php.j2 | 905 ------------------ ansible/roles/php/defaults/main.yml | 3 + ansible/roles/php/handlers/main.yml | 1 + ansible/roles/php/tasks/main.yml | 52 + .../etc_apt_sources_list_d_php_list.j2 | 2 + .../php/templates/var_www_moodle_info_php.j2 | 3 + 19 files changed, 69 insertions(+), 1280 deletions(-) delete mode 100644 ansible/roles/ansible-role-moodle-master/.gitignore delete mode 100644 ansible/roles/ansible-role-moodle-master/.travis.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/.yamllint delete mode 100644 ansible/roles/ansible-role-moodle-master/LICENSE delete mode 100644 ansible/roles/ansible-role-moodle-master/README.md delete mode 100644 ansible/roles/ansible-role-moodle-master/defaults/main.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/handlers/main.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/meta/main.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/default/converge.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/default/molecule.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/default/verify.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/tasks/main.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/templates/config.php.j2 create mode 100644 ansible/roles/php/defaults/main.yml create mode 100644 ansible/roles/php/handlers/main.yml create mode 100644 ansible/roles/php/tasks/main.yml create mode 100644 ansible/roles/php/templates/etc_apt_sources_list_d_php_list.j2 create mode 100644 ansible/roles/php/templates/var_www_moodle_info_php.j2 diff --git a/ansible/roles/ansible-postgresql/tasks/main.yml b/ansible/roles/ansible-postgresql/tasks/main.yml index df19ffbe..697eeb35 100644 --- a/ansible/roles/ansible-postgresql/tasks/main.yml +++ b/ansible/roles/ansible-postgresql/tasks/main.yml @@ -95,6 +95,14 @@ become: true become_user: postgres +# TODO: Make this not fail on already exists +#- name: Create empty moodle database +# command: psql -c "create database moodle;" +# become: true +# become_user: postgres +# failed_when: +# - '"No such" not in result.stdout' + - name: Ensure PostgreSQL is running service: name: "{{ postgresql_service_name }}" diff --git a/ansible/roles/ansible-role-moodle-master/.gitignore b/ansible/roles/ansible-role-moodle-master/.gitignore deleted file mode 100644 index 5400f2c2..00000000 --- a/ansible/roles/ansible-role-moodle-master/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -*.retry -.idea/ -*.pyc diff --git a/ansible/roles/ansible-role-moodle-master/.travis.yml b/ansible/roles/ansible-role-moodle-master/.travis.yml deleted file mode 100644 index 216147d9..00000000 --- a/ansible/roles/ansible-role-moodle-master/.travis.yml +++ /dev/null @@ -1,27 +0,0 @@ ---- -language: python -services: docker - -env: - global: - - ROLE_NAME: moodle - matrix: - - MOLECULE_DISTRO=centos MOLECULE_DISTRO_VERSION=8 - - MOLECULE_DISTRO=ubuntu MOLECULE_DISTRO_VERSION=1804 - - MOLECULE_DISTRO=debian MOLECULE_DISTRO_VERSION=10 - -before_install: - # Upgrade Docker to work with docker-py. - - curl https://gist.githubusercontent.com/geerlingguy/ce883ad4aec6a5f1187ef93bd338511e/raw/36612d28981d92863f839c5aefe5b7dd7193d6c6/travis-ci-docker-upgrade.sh | sudo bash - -install: - # Install test dependencies. - - pip install molecule===3.0.6 yamllint ansible-lint flake8 nose docker - -script: - # Run tests - default scenario then postgres and update scenarios - - molecule test --all - - nosetests library/test_check_moodle.py - -notifications: - webhooks: https://galaxy.ansible.com/api/v1/notifications/ diff --git a/ansible/roles/ansible-role-moodle-master/.yamllint b/ansible/roles/ansible-role-moodle-master/.yamllint deleted file mode 100644 index a3dbc38e..00000000 --- a/ansible/roles/ansible-role-moodle-master/.yamllint +++ /dev/null @@ -1,6 +0,0 @@ ---- -extends: default -rules: - line-length: - max: 120 - level: warning diff --git a/ansible/roles/ansible-role-moodle-master/LICENSE b/ansible/roles/ansible-role-moodle-master/LICENSE deleted file mode 100644 index 8864d4a3..00000000 --- a/ansible/roles/ansible-role-moodle-master/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2017 - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/ansible/roles/ansible-role-moodle-master/README.md b/ansible/roles/ansible-role-moodle-master/README.md deleted file mode 100644 index b170da0f..00000000 --- a/ansible/roles/ansible-role-moodle-master/README.md +++ /dev/null @@ -1,78 +0,0 @@ -# Ansible Role: Moodle - -Installs Moodle (3.0+) on RedHat and Debian/Ubuntu servers. -Tested with Ansible 2.5 - -## Requirements - -Needs to be a recent LTS release of Ubuntu or REL which have PHP 7.0+, Apache 2.4 and -Postgres or Mysql installed. - - -## Role Variables - -Available variables are listed below, along with default values (see `defaults/main.yml`): - -## Dependencies - -No dependencies if the host is installed and setup with a LAMP stack -( or similar ) environement. -If you are required to install the full environment, I suggest you check: - - geerlingguy.php (Install of PHP 7.x or earlier) - - geerlingguy.apache (Installation of Apache 2.x) - - geerlingguy.postgresql (Installation of Postgres) - - geerlingguy.mysql (Installatiion of Mysql) - -## Example Playbook - -## License - -MIT / BSD - -## Author Information - -This role was created in 2017 by [Laurent David](https://github.com/laurentdavid), from -[Jeff Geerling](https://www.jeffgeerling.com/) roles templates author of -[Ansible for DevOps](https://www.ansiblefordevops.com/). - -## Testing - -We have used Jeff Geerling's tests as a base, so: - -- Test should run on travis -- Locally you can start the test process using the command - - ./tests/test_local.sh - - The docker instance is destroyed at the end of the test, but you can keep it by setting the - environment variable "cleanup" to "false": - - cleanup="false" ./tests/test_local.sh - -- Once the docker has been launch you can rerun the playbook by running: -```bash - container_id=xxxxyyy - docker exec --tty $container_id env TERM=xterm ansible-playbook /etc/ansible/roles/role_under_test/tests/test.yml -``` - -To test specific playbook such as the check_moodle.py part: - -```bash - container_id=xxxxyyy - docker exec $container_id env TERM=xterm env ANSIBLE_FORCE_COLOR=1 ansible-playbook -i 'localhost,' -M /etc/ansible/roles/role_under_test/library /etc/ansible/roles/role_under_test/tests/test-check-moodle.yml -``` - -Prerequisites are to have docker installed locally. -It will run the tests on postgresql only. More info in the README.md file in the tests folder. - -### Library testing -There is a small module that checks if moodle is installed/configured in the library folder. -More info in the README.md of the library folder. - -## #TODO - -- Tags tasks - - Pure setup without running moodle install (just folders and source code) - - Install with moodle install, - - ... some optional task such as change password, update, dump database, ... - diff --git a/ansible/roles/ansible-role-moodle-master/defaults/main.yml b/ansible/roles/ansible-role-moodle-master/defaults/main.yml deleted file mode 100644 index 61683ea4..00000000 --- a/ansible/roles/ansible-role-moodle-master/defaults/main.yml +++ /dev/null @@ -1,83 +0,0 @@ ---- -# Front-end Moodle User (make sure either the webserver can 'login as' this user -for example -# through libapache2-mpm-itk )or use the standard web server user - -moodle_webserver_user: "{{ (ansible_os_family == \"RedHat\") | ternary('apache','www-data') }}" -moodle_webserver_group: "{{ (ansible_os_family == \"RedHat\") | ternary('apache','www-data') }}" - -# The core version you want to use (e.g. 3.2.1, 2.8.4). -moodle_version: "MOODLE_38_STABLE" # Tag or branch name -moodle_git_url: "https://github.com/moodle/moodle" -moodle_git_key_file: "" - -# The path where Moodle will be downloaded and installed and site data directory -# We changed the traditional used /var/www/ to a folder in /srv by default as it seems more in line with the FHS -# http://www.pathname.com/fhs/pub/fhs-2.3.html#SRVDATAFORSERVICESPROVIDEDBYSYSTEM -moodle_src_path: "/var/www/moodle/src" - - -# Here we have the data that is either clustered or not -# (https://docs.moodle.org/26/en/Server_cluster#Related_config.php_settings) -# We will split the folders into local/and shared data (the folder being shared or not) - -moodle_sitedata: - shared_data_folder: "/var/www/moodle/shareddata" - local_data_folder: "/var/www/moodle/localdata" - data_dir_name: 'sitedata' - temp_dir_name: 'temp' - cache_dir_name: 'cache' - -# Moodle resulting domain -moodle_domain_name: "moodle.test" -moodle_is_https: false - -# Moodle admin details -moodle_site_admin: - username: "admin" - email: "admin@example.com" - password: "PasswordM00dle%" - -# Moodle database details -moodle_database: - dbtype: "pgsql" - dbhost: "localhost" - dbname: "moodle" - dbuser: "postgres" - dbpass: "password" - dbprefix: "mdl_" - -# Site Name -moodle_site_fullname: "Moodle Test Site" -moodle_site_shortname: "MTS" - -# Extra configuration parameters - -moodle_extra_conf: - - {name: noemailever, value: 'true'} - - {name: debug, value: '(E_ALL | E_STRICT)'} - -# Additional database options -moodle_extra_db_options: [] - -# If set to no, do not launch setup database/config file -moodle_run_config: true - -shared_drive_subfolder_create: true - -patch_to_apply: [] - -moosh_repository: "https://github.com/call-learning/moosh.git" -moosh_branch: "laurentd/additional-commands" -moosh_install_directory: "/srv/moosh" - -# Moodle cron periodicity in minutes -moodle_cron_periodicity: "5" - -# Should we force update the source code ? -moodle_force_source_update: false - -# Should we also setup Moosh command ? -moodle_setup_moosh: false - -# Should we fetch the source ? -moodle_fetch_source: true diff --git a/ansible/roles/ansible-role-moodle-master/handlers/main.yml b/ansible/roles/ansible-role-moodle-master/handlers/main.yml deleted file mode 100644 index 73238b5d..00000000 --- a/ansible/roles/ansible-role-moodle-master/handlers/main.yml +++ /dev/null @@ -1,14 +0,0 @@ ---- -# Handle moodle installation (i.e. the setup process). We assume here that the config.php has been set and is valid -- name: installer - listen: install moodle - include_tasks: commands/moodle-install.yml - -# Handle moodle upgrade if needed -- name: upgrader - listen: upgrade moodle - include_tasks: commands/moodle-update.yml - -- name: Change admin password - listen: reset moodle admin password - include_tasks: commands/moodle-resetpw.yml diff --git a/ansible/roles/ansible-role-moodle-master/meta/main.yml b/ansible/roles/ansible-role-moodle-master/meta/main.yml deleted file mode 100644 index ed9e1368..00000000 --- a/ansible/roles/ansible-role-moodle-master/meta/main.yml +++ /dev/null @@ -1,25 +0,0 @@ ---- -dependencies: [] - -galaxy_info: - author: laurentdavid - description: Moodle CentOS/Debian/Ubuntu. - company: "CALL Learning" - license: "license (BSD, MIT)" - min_ansible_version: 2.8 - platforms: - - name: Debian - versions: - - buster - - name: Ubuntu - versions: - - bionic - - name: EL - versions: - - 8 - galaxy_tags: - - development - - web - - php - - language - - moodle diff --git a/ansible/roles/ansible-role-moodle-master/molecule/default/converge.yml b/ansible/roles/ansible-role-moodle-master/molecule/default/converge.yml deleted file mode 100644 index 917d7f26..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/default/converge.yml +++ /dev/null @@ -1,12 +0,0 @@ ---- - -- name: Converge - hosts: all - become: true - - vars_files: - - vars.yml - - vars-db.yml - - roles: - - name: ansible-role-moodle diff --git a/ansible/roles/ansible-role-moodle-master/molecule/default/molecule.yml b/ansible/roles/ansible-role-moodle-master/molecule/default/molecule.yml deleted file mode 100644 index 2a7cc9a8..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/default/molecule.yml +++ /dev/null @@ -1,27 +0,0 @@ ---- -dependency: - name: galaxy -driver: - name: docker -lint: | - yamllint . - ansible-lint . - flake8 -platforms: - - name: instance - image: "calllearning/${MOLECULE_DISTRO:-ubuntu}-mysql-moodle-ansible:${MOLECULE_DISTRO_VERSION:-1804}" - command: ${MOLECULE_DOCKER_COMMAND:-""} - volumes: - - /sys/fs/cgroup:/sys/fs/cgroup:ro - privileged: true - pre_build_image: true - etc_hosts: "{'moodle.test': '127.0.0.1'}" -provisioner: - name: ansible - log: true - playbooks: - converge: ${MOLECULE_PLAYBOOK:-converge.yml} -scenario: - name: default -verifier: - name: ansible diff --git a/ansible/roles/ansible-role-moodle-master/molecule/default/verify.yml b/ansible/roles/ansible-role-moodle-master/molecule/default/verify.yml deleted file mode 100644 index 5f249205..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/default/verify.yml +++ /dev/null @@ -1,53 +0,0 @@ ---- - -- name: Verify - hosts: all - become: true - - vars: - files_to_check: - - "{{ moodle_src_path }}" - - "{{ moodle_dataroot }}" - - "{{ moodle_localcachedir }}" - - "{{ moodle_tempdir }}" - - "{{ moodle_sharedcachedir }}" - - "{{ moodle_src_path }}/config.php" - vars_files: - - vars.yml - - vars-db.yml - - pre_tasks: - - name: Import Moodle PHP Setup role to set the web server config - import_role: - name: ansible-role-moodle - tasks_from: configure-vars.yml - - tasks: - - name: Check that all directories and files have been created - include_tasks: tools/check-exists.yml - loop: "{{ files_to_check }}" - - - name: Get Moodle current configuration - check_moodle: - install_dir: "{{ moodle_src_path }}" - become: true - become_user: "{{ moodle_webserver_user }}" - register: moodle_state - - - name: Check that Moodle is installed - assert: - that: moodle_state.moodle_is_installed - - - name: Check that Moodle has the right version - assert: - that: - - "moodle_state.current_release == '3.8.2 (Build: 20200309)'" - - - name: Get the site frontpage - action: uri url=http://moodle.test return_content=yes - register: webpage - - - name: Check that the page contains - assert: - that: - - "'

Moodle Test Site

' in webpage.content" diff --git a/ansible/roles/ansible-role-moodle-master/tasks/main.yml b/ansible/roles/ansible-role-moodle-master/tasks/main.yml deleted file mode 100644 index b2aee78b..00000000 --- a/ansible/roles/ansible-role-moodle-master/tasks/main.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -- name: Verify Ansible meets version requirements - assert: - that: "ansible_version.full is version_compare('2.8', '>=')" - msg: "You must update Ansible to at least 2.8 to use this role." - -- name: Setup additional vars - import_tasks: configure-vars.yml - tags: - - only-vars - - always - -- name: Setup Moosh - import_tasks: setup-moosh.yml - when: moodle_setup_moosh | bool - -- name: Setup all Directories - import_tasks: setup-dirs.yml - -- name: Fetch source - import_tasks: commands/moodle-fetchsources.yml - when: moodle_fetch_source|bool - -- name: Run setup and configuration. - import_tasks: setup-moodle.yml - when: moodle_run_config|bool and moodle_fetch_source|bool diff --git a/ansible/roles/ansible-role-moodle-master/templates/config.php.j2 b/ansible/roles/ansible-role-moodle-master/templates/config.php.j2 deleted file mode 100644 index 76131f45..00000000 --- a/ansible/roles/ansible-role-moodle-master/templates/config.php.j2 +++ /dev/null @@ -1,905 +0,0 @@ -dbtype = '{{ moodle_database.dbtype }}'; // 'pgsql', 'mariadb', 'mysqli', 'mssql', 'sqlsrv' or 'oci' -$CFG->dblibrary = 'native'; // 'native' only at the moment -$CFG->dbhost = '{{ moodle_database.dbhost }}'; // eg 'localhost' or 'db.isp.com' or IP -$CFG->dbname = '{{ moodle_database.dbname }}'; // database name, eg moodle -$CFG->dbuser = '{{ moodle_database.dbuser }}'; // your database username -$CFG->dbpass = '{{ moodle_database.dbpass }}'; // your database password -$CFG->prefix = '{{ moodle_database.dbprefix }}'; // prefix to use for all table names -$CFG->dboptions = array( - 'dbpersist' => false, // should persistent database connections be - // used? set to 'false' for the most stable - // setting, 'true' can improve performance - // sometimes - 'dbsocket' => false, // should connection via UNIX socket be used? - // if you set it to 'true' or custom path - // here set dbhost to 'localhost', - // (please note mysql is always using socket - // if dbhost is 'localhost' - if you need - // local port connection use '127.0.0.1') - 'dbport' => '', // the TCP port number to use when connecting - // to the server. keep empty string for the - // default port - 'dbhandlesoptions' => false,// On PostgreSQL poolers like pgbouncer don't - // support advanced options on connection. - // If you set those in the database then - // the advanced settings will not be sent. - 'dbcollation' => 'utf8mb4_unicode_ci', // MySQL has partial and full UTF-8 - // support. If you wish to use partial UTF-8 - // (three bytes) then set this option to - // 'utf8_unicode_ci', otherwise this option - // can be removed for MySQL (by default it will - // use 'utf8mb4_unicode_ci'. This option should - // be removed for all other databases. -{% for conf in moodle_extra_db_options %} - '{{conf.name}}' => {{ conf.value }}, -{% endfor %} -); - - -//========================================================================= -// 2. WEB SITE LOCATION -//========================================================================= -// Now you need to tell Moodle where it is located. Specify the full -// web address to where moodle has been installed. If your web site -// is accessible via multiple URLs then choose the most natural one -// that your students would use. Do not include a trailing slash -// -// If you need both intranet and Internet access please read -// http://docs.moodle.org/en/masquerading - -$CFG->wwwroot = '{{ (moodle_is_https) | ternary('https://','http://')}}{{ moodle_domain_name }}'; - - -//========================================================================= -// 3. DATA FILES LOCATION -//========================================================================= -// Now you need a place where Moodle can save uploaded files. This -// directory should be readable AND WRITEABLE by the web server user -// (usually 'nobody' or 'apache'), but it should not be accessible -// directly via the web. -// -// - On hosting systems you might need to make sure that your "group" has -// no permissions at all, but that "others" have full permissions. -// -// - On Windows systems you might specify something like 'c:\moodledata' - -$CFG->dataroot = '{{ moodle_dataroot }}'; - - -//========================================================================= -// 4. DATA FILES PERMISSIONS -//========================================================================= -// The following parameter sets the permissions of new directories -// created by Moodle within the data directory. The format is in -// octal format (as used by the Unix utility chmod, for example). -// The default is usually OK, but you may want to change it to 0750 -// if you are concerned about world-access to the files (you will need -// to make sure the web server process (eg Apache) can access the files. -// NOTE: the prefixed 0 is important, and don't use quotes. - -$CFG->directorypermissions = 02777; - - -//========================================================================= -// 5. DIRECTORY LOCATION (most people can just ignore this setting) -//========================================================================= -// A very few webhosts use /admin as a special URL for you to access a -// control panel or something. Unfortunately this conflicts with the -// standard location for the Moodle admin pages. You can work around this -// by renaming the admin directory in your installation, and putting that -// new name here. eg "moodleadmin". This should fix all admin links in Moodle. -// After any change you need to visit your new admin directory -// and purge all caches. - -$CFG->admin = 'admin'; - - -//========================================================================= -// 6. OTHER MISCELLANEOUS SETTINGS (ignore these for new installations) -//========================================================================= -// -// These are additional tweaks for which no GUI exists in Moodle yet. -// -// Starting in PHP 5.3 administrators should specify default timezone -// in PHP.ini, you can also specify it here if needed. -// See details at: http://php.net/manual/en/function.date-default-timezone-set.php -// List of time zones at: http://php.net/manual/en/timezones.php -// date_default_timezone_set('Australia/Perth'); -// -// Change the key pair lifetime for Moodle Networking -// The default is 28 days. You would only want to change this if the key -// was not getting regenerated for any reason. You would probably want -// make it much longer. Note that you'll need to delete and manually update -// any existing key. -// $CFG->mnetkeylifetime = 28; -// -// Not recommended: Set the following to true to allow the use -// off non-Moodle standard characters in usernames. -// $CFG->extendedusernamechars = true; -// -// Allow user passwords to be included in backup files. Very dangerous -// setting as far as it publishes password hashes that can be unencrypted -// if the backup file is publicy available. Use it only if you can guarantee -// that all your backup files remain only privacy available and are never -// shared out from your site/institution! -// $CFG->includeuserpasswordsinbackup = true; -// -// Completely disable user creation when restoring a course, bypassing any -// permissions granted via roles and capabilities. Enabling this setting -// results in the restore process stopping when a user attempts to restore a -// course requiring users to be created. -// $CFG->disableusercreationonrestore = true; -// -// Keep the temporary directories used by backup and restore without being -// deleted at the end of the process. Use it if you want to debug / view -// all the information stored there after the process has ended. Note that -// those directories may be deleted (after some ttl) both by cron and / or -// by new backup / restore invocations. -// $CFG->keeptempdirectoriesonbackup = true; -// -// Modify the restore process in order to force the "user checks" to assume -// that the backup originated from a different site, so detection of matching -// users is performed with different (more "relaxed") rules. Note that this is -// only useful if the backup file has been created using Moodle < 1.9.4 and the -// site has been rebuilt from scratch using backup files (not the best way btw). -// If you obtain user conflicts on restore, rather than enabling this setting -// permanently, try restoring the backup on a different site, back it up again -// and then restore on the target server. -// $CFG->forcedifferentsitecheckingusersonrestore = true; -// -// Force the backup system to continue to create backups in the legacy zip -// format instead of the new tgz format. Does not affect restore, which -// auto-detects the underlying file format. -// $CFG->usezipbackups = true; -// -// Prevent stats processing and hide the GUI -// $CFG->disablestatsprocessing = true; -// -// Setting this to true will enable admins to edit any post at any time -// $CFG->admineditalways = true; -// -// These variables define DEFAULT block variables for new courses -// If this one is set it overrides all others and is the only one used. -// $CFG->defaultblocks_override = 'participants,activity_modules,search_forums,course_list:news_items,calendar_upcoming,recent_activity'; -// -// These variables define the specific settings for defined course formats. -// They override any settings defined in the formats own config file. -// $CFG->defaultblocks_site = 'site_main_menu,course_list:course_summary,calendar_month'; -// $CFG->defaultblocks_social = 'participants,search_forums,calendar_month,calendar_upcoming,social_activities,recent_activity,course_list'; -// $CFG->defaultblocks_topics = 'participants,activity_modules,search_forums,course_list:news_items,calendar_upcoming,recent_activity'; -// $CFG->defaultblocks_weeks = 'participants,activity_modules,search_forums,course_list:news_items,calendar_upcoming,recent_activity'; -// -// These blocks are used when no other default setting is found. -// $CFG->defaultblocks = 'participants,activity_modules,search_forums,course_list:news_items,calendar_upcoming,recent_activity'; -// -// You can specify a different class to be created for the $PAGE global, and to -// compute which blocks appear on each page. However, I cannot think of any good -// reason why you would need to change that. It just felt wrong to hard-code the -// the class name. You are strongly advised not to use these to settings unless -// you are absolutely sure you know what you are doing. -// $CFG->moodlepageclass = 'moodle_page'; -// $CFG->moodlepageclassfile = "$CFG->dirroot/local/myplugin/mypageclass.php"; -// $CFG->blockmanagerclass = 'block_manager'; -// $CFG->blockmanagerclassfile = "$CFG->dirroot/local/myplugin/myblockamanagerclass.php"; -// -// Seconds for files to remain in caches. Decrease this if you are worried -// about students being served outdated versions of uploaded files. -// $CFG->filelifetime = 60*60*6; -// -// Some web servers can offload the file serving from PHP process, -// comment out one the following options to enable it in Moodle: -// $CFG->xsendfile = 'X-Sendfile'; // Apache {@see https://tn123.org/mod_xsendfile/} -// $CFG->xsendfile = 'X-LIGHTTPD-send-file'; // Lighttpd {@see http://redmine.lighttpd.net/projects/lighttpd/wiki/X-LIGHTTPD-send-file} -// $CFG->xsendfile = 'X-Accel-Redirect'; // Nginx {@see http://wiki.nginx.org/XSendfile} -// If your X-Sendfile implementation (usually Nginx) uses directory aliases specify them -// in the following array setting: -// $CFG->xsendfilealiases = array( -// '/dataroot/' => $CFG->dataroot, -// '/cachedir/' => '/var/www/moodle/cache', // for custom $CFG->cachedir locations -// '/localcachedir/' => '/var/local/cache', // for custom $CFG->localcachedir locations -// '/tempdir/' => '/var/www/moodle/temp', // for custom $CFG->tempdir locations -// '/filedir' => '/var/www/moodle/filedir', // for custom $CFG->filedir locations -// ); -// -// YUI caching may be sometimes improved by slasharguments: -// $CFG->yuislasharguments = 1; -// Some servers may need a special rewrite rule to work around internal path length limitations: -// RewriteRule (^.*/theme/yui_combo\.php)(/.*) $1?file=$2 -// -// -// Following settings may be used to select session driver, uncomment only one of the handlers. -// Database session handler (not compatible with MyISAM): -// $CFG->session_handler_class = '\core\session\database'; -// $CFG->session_database_acquire_lock_timeout = 120; -// -// File session handler (file system locking required): -// $CFG->session_handler_class = '\core\session\file'; -// $CFG->session_file_save_path = $CFG->dataroot.'/sessions'; -// -// Memcached session handler (requires memcached server and extension): -// $CFG->session_handler_class = '\core\session\memcached'; -// $CFG->session_memcached_save_path = '127.0.0.1:11211'; -// $CFG->session_memcached_prefix = 'memc.sess.key.'; -// $CFG->session_memcached_acquire_lock_timeout = 120; -// $CFG->session_memcached_lock_expire = 7200; // Ignored if PECL memcached is below version 2.2.0 -// $CFG->session_memcached_lock_retry_sleep = 150; // Spin-lock retry sleeptime (msec). Only effective -// // for tuning php-memcached 3.0.x (PHP 7) -// -// Redis session handler (requires redis server and redis extension): -// $CFG->session_handler_class = '\core\session\redis'; -// $CFG->session_redis_host = '127.0.0.1'; -// $CFG->session_redis_port = 6379; // Optional. -// $CFG->session_redis_database = 0; // Optional, default is db 0. -// $CFG->session_redis_auth = ''; // Optional, default is don't set one. -// $CFG->session_redis_prefix = ''; // Optional, default is don't set one. -// $CFG->session_redis_acquire_lock_timeout = 120; -// $CFG->session_redis_lock_expire = 7200; -// Use the igbinary serializer instead of the php default one. Note that phpredis must be compiled with -// igbinary support to make the setting to work. Also, if you change the serializer you have to flush the database! -// $CFG->session_redis_serializer_use_igbinary = false; // Optional, default is PHP builtin serializer. -// -// Memcache session handler (requires memcached server and memcache extension): -// $CFG->session_handler_class = '\core\session\memcache'; -// $CFG->session_memcache_save_path = '127.0.0.1:11211'; -// $CFG->session_memcache_acquire_lock_timeout = 120; -// ** NOTE: Memcache extension has less features than memcached and may be -// less reliable. Use memcached where possible or if you encounter -// session problems. ** -// -// Please be aware that when selecting either Memcached or Memcache for sessions that it is advised to use a dedicated -// memcache server. The memcache and memcached extensions do not provide isolated environments for individual uses. -// Using the same server for other purposes (MUC for example) can lead to sessions being prematurely removed should -// the other uses of the server purge the cache. -// -// Following setting allows you to alter how frequently is timemodified updated in sessions table. -// $CFG->session_update_timemodified_frequency = 20; // In seconds. -// -// If this setting is set to true, then Moodle will track the IP of the -// current user to make sure it hasn't changed during a session. This -// will prevent the possibility of sessions being hijacked via XSS, but it -// may break things for users coming using proxies that change all the time, -// like AOL. -// $CFG->tracksessionip = true; -// -// The following lines are for handling email bounces. -// $CFG->handlebounces = true; -// $CFG->minbounces = 10; -// $CFG->bounceratio = .20; -// The next lines are needed both for bounce handling and any other email to module processing. -// mailprefix must be EXACTLY four characters. -// Uncomment and customise this block for Postfix -// $CFG->mailprefix = 'mdl+'; // + is the separator for Exim and Postfix. -// $CFG->mailprefix = 'mdl-'; // - is the separator for qmail -// $CFG->maildomain = 'youremaildomain.com'; -// -// Enable when setting up advanced reverse proxy load balancing configurations, -// it may be also necessary to enable this when using port forwarding. -// $CFG->reverseproxy = true; -// -// Enable when using external SSL appliance for performance reasons. -// Please note that site may be accessible via http: or https:, but not both! -// $CFG->sslproxy = true; -// -// This setting will cause the userdate() function not to fix %d in -// date strings, and just let them show with a zero prefix. -// $CFG->nofixday = true; -// -// This setting will make some graphs (eg user logs) use lines instead of bars -// $CFG->preferlinegraphs = true; -// -// This setting allows you to specify a class to rewrite outgoing urls -// enabling 'clean urls' in conjunction with an apache / nginx handler. -// The handler must implement \core\output\url_rewriter. -// $CFG->urlrewriteclass = '\local_cleanurls\url_rewriter'; -// -// Enabling this will allow custom scripts to replace existing moodle scripts. -// For example: if $CFG->customscripts/course/view.php exists then -// it will be used instead of $CFG->wwwroot/course/view.php -// At present this will only work for files that include config.php and are called -// as part of the url (index.php is implied). -// Some examples are: -// http://my.moodle.site/course/view.php -// http://my.moodle.site/index.php -// http://my.moodle.site/admin (index.php implied) -// Custom scripts should not include config.php -// Warning: Replacing standard moodle scripts may pose security risks and/or may not -// be compatible with upgrades. Use this option only if you are aware of the risks -// involved. -// Specify the full directory path to the custom scripts -// $CFG->customscripts = '/home/example/customscripts'; -// -// Performance profiling -// -// If you set Debug to "Yes" in the Configuration->Variables page some -// performance profiling data will show up on your footer (in default theme). -// With these settings you get more granular control over the capture -// and printout of the data -// -// Capture performance profiling data -// define('MDL_PERF' , true); -// -// Capture additional data from DB -// define('MDL_PERFDB' , true); -// -// Print to log (for passive profiling of production servers) -// define('MDL_PERFTOLOG' , true); -// -// Print to footer (works with the default theme) -// define('MDL_PERFTOFOOT', true); -// -// Enable earlier profiling that causes more code to be covered -// on every request (db connections, config load, other inits...). -// Requires extra configuration to be defined in config.php like: -// profilingincluded, profilingexcluded, profilingautofrec, -// profilingallowme, profilingallowall, profilinglifetime -// $CFG->earlyprofilingenabled = true; -// -// Force displayed usernames -// A little hack to anonymise user names for all students. If you set these -// then all non-teachers will always see these for every person. -// $CFG->forcefirstname = 'Bruce'; -// $CFG->forcelastname = 'Simpson'; -// -// The following setting will turn on username logging into Apache log. For full details regarding setting -// up of this function please refer to the install section of the document. -// $CFG->apacheloguser = 0; // Turn this feature off. Default value. -// $CFG->apacheloguser = 1; // Log user id. -// $CFG->apacheloguser = 2; // Log full name in cleaned format. ie, Darth Vader will be displayed as darth_vader. -// $CFG->apacheloguser = 3; // Log username. -// To get the values logged in Apache's log, add to your httpd.conf -// the following statements. In the General part put: -// LogFormat "%h %l %{MOODLEUSER}n %t \"%r\" %s %b \"%{Referer}i\" \"%{User-Agent}i\"" moodleformat -// And in the part specific to your Moodle install / virtualhost: -// CustomLog "/your/path/to/log" moodleformat -// -// Alternatively for other webservers such as nginx, you can instead have the username sent via a http header -// 'X-MOODLEUSER' which can be saved in the logfile and then stripped out before being sent to the browser: -// $CFG->headerloguser = 0; // Turn this feature off. Default value. -// $CFG->headerloguser = 1; // Log user id. -// $CFG->headerloguser = 2; // Log full name in cleaned format. ie, Darth Vader will be displayed as darth_vader. -// $CFG->headerloguser = 3; // Log username. -// -// CAUTION: Use of this option will expose usernames in the Apache / nginx log, -// If you are going to publish your log, or the output of your web stats analyzer -// this will weaken the security of your website. -// -// Email database connection errors to someone. If Moodle cannot connect to the -// database, then email this address with a notice. -// -// $CFG->emailconnectionerrorsto = 'your@emailaddress.com'; -// -// Set the priority of themes from highest to lowest. This is useful (for -// example) in sites where the user theme should override all other theme -// settings for accessibility reasons. You can also disable types of themes -// (other than site) by removing them from the array. The default setting is: -// $CFG->themeorder = array('course', 'category', 'session', 'user', 'site'); -// NOTE: course, category, session, user themes still require the -// respective settings to be enabled -// -// It is possible to add extra themes directory stored outside of $CFG->dirroot. -// This local directory does not have to be accessible from internet. -// -// $CFG->themedir = '/location/of/extra/themes'; -// -// It is possible to specify different cache and temp directories, use local fast filesystem -// for normal web servers. Server clusters MUST use shared filesystem for cachedir! -// Localcachedir is intended for server clusters, it does not have to be shared by cluster nodes. -// The directories must not be accessible via web. -// - -{% if shared_drive_subfolder_create %} - -// Directory MUST BE SHARED by all cluster nodes. -$CFG->tempdir = '{{ moodle_tempdir }}'; -// Directory MUST BE SHARED by all cluster nodes, locking required. -$CFG->cachedir = '{{ moodle_sharedcachedir }}'; -$CFG->localcachedir = '{{ moodle_localcachedir }}'; - -{% endif %} - -// Intended for local node caching. -// -// Some filesystems such as NFS may not support file locking operations. -// Locking resolves race conditions and is strongly recommended for production servers. -// $CFG->preventfilelocking = false; -// -// Site default language can be set via standard administration interface. If you -// want to have initial error messages for eventual database connection problems -// localized too, you have to set your language code here. -// -// $CFG->lang = 'yourlangcode'; // for example 'cs' -// -// When Moodle is about to perform an intensive operation it raises PHP's memory -// limit. The following setting should be used on large sites to set the raised -// memory limit to something higher. -// The value for the settings should be a valid PHP memory value. e.g. 512M, 1G -// -// $CFG->extramemorylimit = '1024M'; -// -// Moodle 2.4 introduced a new cache API. -// The cache API stores a configuration file within the Moodle data directory and -// uses that rather than the database in order to function in a stand-alone manner. -// Using altcacheconfigpath you can change the location where this config file is -// looked for. -// It can either be a directory in which to store the file, or the full path to the -// file if you want to take full control. Either way it must be writable by the -// webserver. -// -// $CFG->altcacheconfigpath = '/var/www/shared/moodle.cache.config.php -// -// Use the following flag to completely disable the Available update notifications -// feature and hide it from the server administration UI. -// -// $CFG->disableupdatenotifications = true; -// -// Use the following flag to completely disable the installation of plugins -// (new plugins, available updates and missing dependencies) and related -// features (such as cancelling the plugin installation or upgrade) via the -// server administration web interface. -// -// $CFG->disableupdateautodeploy = true; -// -// Use the following flag to disable the warning on the system notifications page -// about present development libraries. This flag will not disable the warning within -// the security overview report. Use this flag only if you really have prohibited web -// access to the development libraries in your webserver configuration. -// -// $CFG->disabledevlibdirscheck = true; -// -// Use the following flag to disable modifications to scheduled tasks -// whilst still showing the state of tasks. -// -// $CFG->preventscheduledtaskchanges = true; -// -// As of version 2.4 Moodle serves icons as SVG images if the users browser appears -// to support SVG. -// For those wanting to control the serving of SVG images the following setting can -// be defined in your config.php. -// If it is not defined then the default (browser detection) will occur. -// -// To ensure they are always used when available: -// $CFG->svgicons = true; -// -// To ensure they are never used even when available: -// $CFG->svgicons = false; -// -// Some administration options allow setting the path to executable files. This can -// potentially cause a security risk. Set this option to true to disable editing -// those config settings via the web. They will need to be set explicitly in the -// config.php file -// $CFG->preventexecpath = true; -// -// Use the following flag to set userid for noreply user. If not set then moodle will -// create dummy user and use -ve value as user id. -// $CFG->noreplyuserid = -10; -// -// As of version 2.6 Moodle supports admin to set support user. If not set, all mails -// will be sent to supportemail. -// $CFG->supportuserid = -20; -// -// Moodle 2.7 introduces a locking api for critical tasks (e.g. cron). -// The default locking system to use is DB locking for Postgres, and file locking for -// MySQL, Oracle and SQLServer. If $CFG->preventfilelocking is set, then the default -// will always be DB locking. It can be manually set to one of the lock -// factory classes listed below, or one of your own custom classes implementing the -// \core\lock\lock_factory interface. -// -// $CFG->lock_factory = "auto"; -// -// The list of available lock factories is: -// -// "\\core\\lock\\file_lock_factory" - File locking -// Uses lock files stored by default in the dataroot. Whether this -// works on clusters depends on the file system used for the dataroot. -// -// "\\core\\lock\\db_record_lock_factory" - DB locking based on table rows. -// -// "\\core\\lock\\postgres_lock_factory" - DB locking based on postgres advisory locks. -// -// Settings used by the lock factories -// -// Location for lock files used by the File locking factory. This must exist -// on a shared file system that supports locking. -// $CFG->lock_file_root = $CFG->dataroot . '/lock'; -// -// Moodle 2.9 allows administrators to customise the list of supported file types. -// To add a new filetype or override the definition of an existing one, set the -// customfiletypes variable like this: -// -// $CFG->customfiletypes = array( -// (object)array( -// 'extension' => 'frog', -// 'icon' => 'archive', -// 'type' => 'application/frog', -// 'customdescription' => 'Amphibian-related file archive' -// ) -// ); -// -// The extension, icon, and type fields are required. The icon field can refer to -// any icon inside the pix/f folder. You can also set the customdescription field -// (shown above) and (for advanced use) the groups, string, and defaulticon fields. -// -// Upgrade key -// -// If the upgrade key is defined here, then the value must be provided every time -// the site is being upgraded though the web interface, regardless of whether the -// administrator is logged in or not. This prevents anonymous access to the upgrade -// screens where the real authentication and authorization mechanisms can not be -// relied on. -// -// It is strongly recommended to use a value different from your real account -// password. -// -// $CFG->upgradekey = 'put_some_password-like_value_here'; -// -//========================================================================= -// 7. SETTINGS FOR DEVELOPMENT SERVERS - not intended for production use!!! -//========================================================================= -// -// Force a debugging mode regardless the settings in the site administration -// @error_reporting(E_ALL | E_STRICT); // NOT FOR PRODUCTION SERVERS! -// @ini_set('display_errors', '1'); // NOT FOR PRODUCTION SERVERS! -// $CFG->debug = (E_ALL | E_STRICT); // === DEBUG_DEVELOPER - NOT FOR PRODUCTION SERVERS! -// $CFG->debugdisplay = 1; // NOT FOR PRODUCTION SERVERS! -// -// You can specify a comma separated list of user ids that that always see -// debug messages, this overrides the debug flag in $CFG->debug and $CFG->debugdisplay -// for these users only. -// $CFG->debugusers = '2'; -// -// Prevent theme caching -// $CFG->themedesignermode = true; // NOT FOR PRODUCTION SERVERS! -// -// Enable verbose debug information during fetching of email messages from IMAP server. -// $CFG->debugimap = true; -// -// Prevent JS caching -// $CFG->cachejs = false; // NOT FOR PRODUCTION SERVERS! -// -// Restrict which YUI logging statements are shown in the browser console. -// For details see the upstream documentation: -// http://yuilibrary.com/yui/docs/api/classes/config.html#property_logInclude -// http://yuilibrary.com/yui/docs/api/classes/config.html#property_logExclude -// $CFG->yuiloginclude = array( -// 'Moodle core-dock-loader' => true, -// 'Moodle course-categoryexpander' => true, -// ); -// $CFG->yuilogexclude = array( -// 'Moodle core-dock' => true, -// 'Moodle core-notification' => true, -// ); -// -// Set the minimum log level for YUI logging statements. -// For details see the upstream documentation: -// http://yuilibrary.com/yui/docs/api/classes/config.html#property_logLevel -// $CFG->yuiloglevel = 'debug'; -// -// Prevent core_string_manager application caching -// $CFG->langstringcache = false; // NOT FOR PRODUCTION SERVERS! -// -// When working with production data on test servers, no emails or other messages -// should ever be send to real users -// $CFG->noemailever = true; // NOT FOR PRODUCTION SERVERS! -// -// Divert all outgoing emails to this address to test and debug emailing features -// $CFG->divertallemailsto = 'root@localhost.local'; // NOT FOR PRODUCTION SERVERS! -// -// Except for certain email addresses you want to let through for testing. Accepts -// a comma separated list of regexes. -// $CFG->divertallemailsexcept = 'tester@dev.com, fred(\+.*)?@example.com'; // NOT FOR PRODUCTION SERVERS! -// -// Uncomment if you want to allow empty comments when modifying install.xml files. -// $CFG->xmldbdisablecommentchecking = true; // NOT FOR PRODUCTION SERVERS! -// -// Since 2.0 sql queries are not shown during upgrade by default. -// Please note that this setting may produce very long upgrade page on large sites. -// $CFG->upgradeshowsql = true; // NOT FOR PRODUCTION SERVERS! -// -// Add SQL queries to the output of cron, just before their execution -// $CFG->showcronsql = true; -// -// Force developer level debug and add debug info to the output of cron -// $CFG->showcrondebugging = true; -// -//========================================================================= -// 8. FORCED SETTINGS -//========================================================================= -// It is possible to specify normal admin settings here, the point is that -// they can not be changed through the standard admin settings pages any more. -// -// Core settings are specified directly via assignment to $CFG variable. -// Example: -// $CFG->somecoresetting = 'value'; -// -// Plugin settings have to be put into a special array. -// Example: -// $CFG->forced_plugin_settings = array('pluginname' => array('settingname' => 'value', 'secondsetting' => 'othervalue'), -// 'otherplugin' => array('mysetting' => 'myvalue', 'thesetting' => 'thevalue')); -// Module default settings with advanced/locked checkboxes can be set too. To do this, add -// an extra config with '_adv' or '_locked' as a suffix and set the value to true or false. -// Example: -// $CFG->forced_plugin_settings = array('pluginname' => array('settingname' => 'value', 'settingname_locked' => true, 'settingname_adv' => true)); -// -//========================================================================= -// 9. PHPUNIT SUPPORT -//========================================================================= -// $CFG->phpunit_prefix = 'phpu_'; -// $CFG->phpunit_dataroot = '/home/example/phpu_moodledata'; -// $CFG->phpunit_directorypermissions = 02777; // optional -// $CFG->phpunit_profilingenabled = true; // optional to profile PHPUnit runs. -// -// -//========================================================================= -// 10. SECRET PASSWORD SALT -//========================================================================= -// A site-wide password salt is no longer used in new installations. -// If upgrading from 2.6 or older, keep all existing salts in config.php file. -// -// $CFG->passwordsaltmain = 'a_very_long_random_string_of_characters#@6&*1'; -// -// You may also have some alternative salts to allow migration from previously -// used salts. -// -// $CFG->passwordsaltalt1 = ''; -// $CFG->passwordsaltalt2 = ''; -// $CFG->passwordsaltalt3 = ''; -// .... -// $CFG->passwordsaltalt19 = ''; -// $CFG->passwordsaltalt20 = ''; -// -// -//========================================================================= -// 11. BEHAT SUPPORT -//========================================================================= -// Behat test site needs a unique www root, data directory and database prefix: -// -// $CFG->behat_wwwroot = 'http://127.0.0.1/moodle'; -// $CFG->behat_prefix = 'bht_'; -// $CFG->behat_dataroot = '/home/example/bht_moodledata'; -// -// You can override default Moodle configuration for Behat and add your own -// params; here you can add more profiles, use different Mink drivers than Selenium... -// These params would be merged with the default Moodle behat.yml, giving priority -// to the ones specified here. The array format is YAML, following the Behat -// params hierarchy. More info: http://docs.behat.org/guides/7.config.html -// Example: -// $CFG->behat_config = array( -// 'Mac-Firefox' => array( -// 'suites' => array ( -// 'default' => array( -// 'filters' => array( -// 'tags' => '~@_file_upload' -// ), -// ), -// ), -// 'extensions' => array( -// 'Behat\MinkExtension' => array( -// 'selenium2' => array( -// 'browser' => 'firefox', -// 'capabilities' => array( -// 'platform' => 'OS X 10.6', -// 'version' => 20 -// ) -// ) -// ) -// ) -// ), -// 'Mac-Safari' => array( -// 'extensions' => array( -// 'Behat\MinkExtension' => array( -// 'selenium2' => array( -// 'browser' => 'safari', -// 'capabilities' => array( -// 'platform' => 'OS X 10.8', -// 'version' => 6 -// ) -// ) -// ) -// ) -// ) -// ); -// You can also use the following config to override default Moodle configuration for Behat. -// This config is limited to default suite and will be supported in later versions. -// It will have precedence over $CFG->behat_config. -// $CFG->behat_profiles = array( -// 'phantomjs' => array( -// 'browser' => 'phantomjs', -// 'tags' => '~@_file_upload&&~@_alert&&~@_bug_phantomjs', -// 'wd_host' => 'http://127.0.0.1:4443/wd/hub', -// 'capabilities' => array( -// 'platform' => 'Linux', -// 'version' => 2.1 -// ) -// ), -// ); -// -// You can force the browser session (not user's sessions) to restart after N seconds. This could -// be useful if you are using a cloud-based service with time restrictions in the browser side. -// Setting this value the browser session that Behat is using will be restarted. Set the time in -// seconds. Is not recommended to use this setting if you don't explicitly need it. -// Example: -// $CFG->behat_restart_browser_after = 7200; // Restarts the browser session after 2 hours -// -// All this page's extra Moodle settings are compared against a white list of allowed settings -// (the basic and behat_* ones) to avoid problems with production environments. This setting can be -// used to expand the default white list with an array of extra settings. -// Example: -// $CFG->behat_extraallowedsettings = array('somecoresetting', ...); -// -// You should explicitly allow the usage of the deprecated behat steps, otherwise an exception will -// be thrown when using them. The setting is disabled by default. -// Example: -// $CFG->behat_usedeprecated = true; -// -// Including feature files from directories outside the dirroot is possible if required. The setting -// requires that the running user has executable permissions on all parent directories in the paths. -// Example: -// $CFG->behat_additionalfeatures = array('/home/developer/code/wipfeatures'); -// -// You can make behat save several dumps when a scenario fails. The dumps currently saved are: -// * a dump of the DOM in it's state at the time of failure; and -// * a screenshot (JavaScript is required for the screenshot functionality, so not all browsers support this option) -// Example: -// $CFG->behat_faildump_path = '/my/path/to/save/failure/dumps'; -// -// You can specify db, selenium wd_host etc. for behat parallel run by setting following variable. -// Example: -// $CFG->behat_parallel_run = array ( -// array ( -// 'dbtype' => 'mysqli', -// 'dblibrary' => 'native', -// 'dbhost' => 'localhost', -// 'dbname' => 'moodletest', -// 'dbuser' => 'moodle', -// 'dbpass' => 'moodle', -// 'behat_prefix' => 'mdl_', -// 'wd_host' => 'http://127.0.0.1:4444/wd/hub', -// 'behat_wwwroot' => 'http://127.0.0.1/moodle', -// 'behat_dataroot' => '/home/example/bht_moodledata' -// ), -// ); -// -// To change name of behat parallel run site, define BEHAT_PARALLEL_SITE_NAME and parallel run sites will be suffixed -// with this value -// Example: -// define('BEHAT_PARALLEL_SITE_NAME', 'behatparallelsite'); -// -// Command line output for parallel behat install is limited to 80 chars, if you are installing more then 4 sites and -// want to expand output to more then 80 chars, then define BEHAT_MAX_CMD_LINE_OUTPUT -// Example: -// define('BEHAT_MAX_CMD_LINE_OUTPUT', 120); -// -// Behat feature files will be distributed randomly between the processes by default. If you have timing file or want -// to create timing file then define BEHAT_FEATURE_TIMING_FILE with path to timing file. It will be updated for each -// run with latest time taken to execute feature. -// Example: -// define('BEHAT_FEATURE_TIMING_FILE', '/PATH_TO_TIMING_FILE/timing.json'); -// -// If you don't have timing file and want some stable distribution of features, then you can use step counts to -// distribute the features. You can generate step file by executing php admin/tool/behat/cli/util.php --updatesteps -// this will update step file which is defined by BEHAT_FEATURE_STEP_FILE. -// Example: -// define('BEHAT_FEATURE_STEP_FILE', '/PATH_TO_FEATURE_STEP_COUNT_FILE/stepcount.json'); -// -// Feature distribution for each process is displayed as histogram. you can disable it by setting -// BEHAT_DISABLE_HISTOGRAM -// Example: -// define('BEHAT_DISABLE_HISTOGRAM', true); -// -//========================================================================= -// 12. DEVELOPER DATA GENERATOR -//========================================================================= -// -// The developer data generator tool is intended to be used only in development or testing sites and -// it's usage in production environments is not recommended; if it is used to create JMeter test plans -// is even less recommended as JMeter needs to log in as site course users. JMeter needs to know the -// users passwords but would be dangerous to have a default password as everybody would know it, which would -// be specially dangerouse if somebody uses this tool in a production site, so in order to prevent unintended -// uses of the tool and undesired accesses as well, is compulsory to set a password for the users -// generated by this tool, but only in case you want to generate a JMeter test. The value should be a string. -// Example: -// $CFG->tool_generator_users_password = 'examplepassword'; -// -//========================================================================= -// 13. SYSTEM PATHS (You need to set following, depending on your system) -//========================================================================= -// Ghostscript path. -// On most Linux installs, this can be left as '/usr/bin/gs'. -// On Windows it will be something like 'c:\gs\bin\gswin32c.exe' (make sure -// there are no spaces in the path - if necessary copy the files 'gswin32c.exe' -// and 'gsdll32.dll' to a new folder without a space in the path) -// $CFG->pathtogs = '/usr/bin/gs'; -// -// Path to du. -// Probably something like /usr/bin/du. If you enter this, pages that display -// directory contents will run much faster for directories with a lot of files. -// $CFG->pathtodu = ''; -// -// Path to aspell. -// To use spell-checking within the editor, you MUST have aspell 0.50 or later -// installed on your server, and you must specify the correct path to access the -// aspell binary. On Unix/Linux systems, this path is usually /usr/bin/aspell, -// but it might be something else. -// $CFG->aspellpath = ''; -// -// Path to dot. -// Probably something like /usr/bin/dot. To be able to generate graphics from -// DOT files, you must have installed the dot executable and point to it here. -// Note that, for now, this only used by the profiling features -// (Development->Profiling) built into Moodle. -// $CFG->pathtodot = ''; -// -// Path to unoconv. -// Probably something like /usr/bin/unoconv. Used as a fallback to convert between document formats. -// Unoconv is used convert between file formats supported by LibreOffice. -// Use a recent version of unoconv ( >= 0.7 ), older versions have trouble running from a webserver. -// $CFG->pathtounoconv = ''; -// -//========================================================================= -// 14. ALTERNATIVE FILE SYSTEM SETTINGS -//========================================================================= -// -// Alternative file system. -// Since 3.3 it is possible to override file_storage and file_system API and use alternative storage systems (e.g. S3, -// Rackspace Cloud Files, Google Cloud Storage, Azure Storage, etc.). -// To set the alternative file storage system in config.php you can use the following setting, providing the -// alternative system class name that will be auto-loaded by file_storage API. -// -// $CFG->alternative_file_system_class = '\\local_myfilestorage\\file_system'; -// - -//========================================================================= -// 15. EXTRA CONFIGURATION -//========================================================================= -{% for conf in moodle_extra_conf %} -$CFG->{{conf.name}} = {{ conf.value }}; -{% endfor %} - -//========================================================================= -// ALL DONE! To continue installation, visit your main page with a browser -//========================================================================= - -require_once(__DIR__ . '/lib/setup.php'); // Do not edit - -// There is no php closing tag in this file, -// it is intentional because it prevents trailing whitespace problems! diff --git a/ansible/roles/php/defaults/main.yml b/ansible/roles/php/defaults/main.yml new file mode 100644 index 00000000..17359900 --- /dev/null +++ b/ansible/roles/php/defaults/main.yml @@ -0,0 +1,3 @@ +--- +php_version: "7.4" +moodle_base_directory: "/var/www/moodle" \ No newline at end of file diff --git a/ansible/roles/php/handlers/main.yml b/ansible/roles/php/handlers/main.yml new file mode 100644 index 00000000..ed97d539 --- /dev/null +++ b/ansible/roles/php/handlers/main.yml @@ -0,0 +1 @@ +--- diff --git a/ansible/roles/php/tasks/main.yml b/ansible/roles/php/tasks/main.yml new file mode 100644 index 00000000..b27c302b --- /dev/null +++ b/ansible/roles/php/tasks/main.yml @@ -0,0 +1,52 @@ +--- +- name: Make moodle base directory + file: + path: "{{ moodle_base_directory }}" + state: directory + +- name: Add apt certificates + command: apt install -y curl wget gnupg2 ca-certificates lsb-release apt-transport-https + become: true + +- name: Download GPG key + get_url: + url: https://packages.sury.org/php/apt.gpg + dest: /tmp/apt.gpg + mode: '0440' + +- name: Add apt GPG key + command: apt-key add /tmp/apt.gpg + become: true + +- name: Update repository that contains PHP 7.4 + template: + src: etc_apt_sources_list_d_php_list.j2 + dest: /etc/apt/sources.list.d/php.list + +- name: Update Apt for Repos + apt: + update_cache: yes + +- name: Install PHP & Libraries + apt: + pkg: + - php7.4 + - php7.4-cli + - php7.4-common + - php7.4-curl + - php7.4-mbstring + - php7.4-pgsql + - php7.4-xml + - php7.4-zip + - php7.4-intl + - php7.4-xmlrpc + - php7.4-soap + - php7.4-fpm + - php7.4-gd + +- name: Copy PHP info.php + template: + src: var_www_moodle_info_php.j2 + dest: /var/www/moodle/info.php + +# TODO: Test info.php \ No newline at end of file diff --git a/ansible/roles/php/templates/etc_apt_sources_list_d_php_list.j2 b/ansible/roles/php/templates/etc_apt_sources_list_d_php_list.j2 new file mode 100644 index 00000000..a17f38eb --- /dev/null +++ b/ansible/roles/php/templates/etc_apt_sources_list_d_php_list.j2 @@ -0,0 +1,2 @@ +deb https://packages.sury.org/php/ stretch main + diff --git a/ansible/roles/php/templates/var_www_moodle_info_php.j2 b/ansible/roles/php/templates/var_www_moodle_info_php.j2 new file mode 100644 index 00000000..69c510a5 --- /dev/null +++ b/ansible/roles/php/templates/var_www_moodle_info_php.j2 @@ -0,0 +1,3 @@ + \ No newline at end of file From 350f08b734c61f4a609cdab0f584bf7607099289 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 4 Jan 2021 17:06:32 -0800 Subject: [PATCH 010/129] nginx add moodle to sites --- ansible/roles/nginx/defaults/main.yml | 1 + ansible/roles/nginx/tasks/main.yml | 15 ++++++++++++--- .../nginx/templates/connectbox_moodle.conf.j2 | 19 +++++++++++++++++++ 3 files changed, 32 insertions(+), 3 deletions(-) create mode 100644 ansible/roles/nginx/templates/connectbox_moodle.conf.j2 diff --git a/ansible/roles/nginx/defaults/main.yml b/ansible/roles/nginx/defaults/main.yml index 4117eaaf..87fa5c12 100644 --- a/ansible/roles/nginx/defaults/main.yml +++ b/ansible/roles/nginx/defaults/main.yml @@ -7,6 +7,7 @@ nginx_enabled_vhosts_path: /etc/nginx/sites-enabled # - static_site # If this is useful in other roles, we can define it at a higher level interface_type: icon_only +nginx_vhost_file_moodle: connectbox_moodle.conf nginx_vhost_file_icon_only: connectbox_icon-only.conf nginx_vhost_file_static_site: connectbox_static-site.conf nginx_vhost_file_captive_portal: connectbox_captive-portal.conf diff --git a/ansible/roles/nginx/tasks/main.yml b/ansible/roles/nginx/tasks/main.yml index 259f77ee..97cc9da1 100644 --- a/ansible/roles/nginx/tasks/main.yml +++ b/ansible/roles/nginx/tasks/main.yml @@ -36,9 +36,10 @@ group: root notify: restart nginx with_items: - - { src: "{{ nginx_vhost_file_captive_portal }}.j2", dest: "{{ nginx_vhost_file_captive_portal }}" } - - { src: "{{ nginx_vhost_file_icon_only }}.j2", dest: "{{ nginx_vhost_file_icon_only }}" } - - { src: "{{ nginx_vhost_file_static_site }}.j2", dest: "{{ nginx_vhost_file_static_site }}" } + - { src: "{{ nginx_vhost_file_moodle }}.j2", dest: "{{ nginx_vhost_file_moodle }}" } +# - { src: "{{ nginx_vhost_file_captive_portal }}.j2", dest: "{{ nginx_vhost_file_captive_portal }}" } +# - { src: "{{ nginx_vhost_file_icon_only }}.j2", dest: "{{ nginx_vhost_file_icon_only }}" } +# - { src: "{{ nginx_vhost_file_static_site }}.j2", dest: "{{ nginx_vhost_file_static_site }}" } - name: Create nginx active vhost symlink for captive portal vhost file: @@ -48,6 +49,14 @@ force: yes notify: restart nginx +- name: Create nginx active vhost symlink for Moodle vhost + file: + src: "{{ nginx_available_vhosts_path }}/{{ nginx_vhost_file_moodle }}" + dest: "{{ nginx_enabled_vhosts_path }}/{{ nginx_vhost_file_moodle }}" + state: link + force: yes + notify: restart nginx + - name: Create nginx active vhost symlink for selected interface file: src: "{{ nginx_available_vhosts_path }}/{{ interface_type_files[interface_type] }}" diff --git a/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 b/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 new file mode 100644 index 00000000..cd23fa67 --- /dev/null +++ b/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 @@ -0,0 +1,19 @@ + +server { + listen 80; + listen [::]:80; + + root /var/www/moodle/; + index index.php index.html index.htm; + + server_name your_domain; + + location / { + try_files $uri $uri/ =404; + } + + location ~ \.php$ { + include snippets/fastcgi-php.conf; + fastcgi_pass unix:/var/run/php/php7.4-fpm.sock; + } +} From 2fa51d55149e199374cdc8bea7366d0e6f583fa3 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 4 Jan 2021 17:06:45 -0800 Subject: [PATCH 011/129] Moodle installation --- ansible/roles/moodle/defaults/main.yml | 2 ++ ansible/roles/moodle/handlers/main.yml | 1 + ansible/roles/moodle/tasks/main.yml | 33 +++++++++++++++++++ .../templates/var_www_moodle_config_php.j2 | 29 ++++++++++++++++ 4 files changed, 65 insertions(+) create mode 100644 ansible/roles/moodle/defaults/main.yml create mode 100644 ansible/roles/moodle/handlers/main.yml create mode 100644 ansible/roles/moodle/tasks/main.yml create mode 100644 ansible/roles/moodle/templates/var_www_moodle_config_php.j2 diff --git a/ansible/roles/moodle/defaults/main.yml b/ansible/roles/moodle/defaults/main.yml new file mode 100644 index 00000000..40d7253d --- /dev/null +++ b/ansible/roles/moodle/defaults/main.yml @@ -0,0 +1,2 @@ +--- +moodle_base_directory: "/var/www/moodle" \ No newline at end of file diff --git a/ansible/roles/moodle/handlers/main.yml b/ansible/roles/moodle/handlers/main.yml new file mode 100644 index 00000000..ed97d539 --- /dev/null +++ b/ansible/roles/moodle/handlers/main.yml @@ -0,0 +1 @@ +--- diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml new file mode 100644 index 00000000..7189efc7 --- /dev/null +++ b/ansible/roles/moodle/tasks/main.yml @@ -0,0 +1,33 @@ +--- + + +- name: Install Moodle 3.9 to /var/www/ + unarchive: + src: https://download.moodle.org/download.php/direct/stable39/moodle-latest-39.zip + dest: /var/www/ + remote_src: yes + + +- name: Make moodledata directory + file: + state: directory + path: /var/www/moodledata/ + owner: www-data + group: www-data + mode: 0664 + + +- name: Copy config.php to working directory + template: + src: var_www_moodle_config_php.j2 + dest: /var/www/moodle/config.php + +- name: Recursively change ownership /var/www/moodle + become: true + file: + path: /var/www/moodle + state: directory + recurse: yes + owner: www-data + group: www-data + mode: 0775 \ No newline at end of file diff --git a/ansible/roles/moodle/templates/var_www_moodle_config_php.j2 b/ansible/roles/moodle/templates/var_www_moodle_config_php.j2 new file mode 100644 index 00000000..38c77e61 --- /dev/null +++ b/ansible/roles/moodle/templates/var_www_moodle_config_php.j2 @@ -0,0 +1,29 @@ +dbtype = 'pgsql'; +$CFG->dblibrary = 'native'; +$CFG->dbhost = 'localhost'; +$CFG->dbname = 'moodle'; +$CFG->dbuser = 'postgres'; +$CFG->dbpass = 'mypassword'; +$CFG->prefix = 'mdl_'; +$CFG->dboptions = array ( + 'dbpersist' => 0, + 'dbport' => '', + 'dbsocket' => '', +); + +$CFG->wwwroot = 'http://connectbox'; +$CFG->dataroot = '/var/www/moodledata'; +$CFG->admin = 'admin'; + +$CFG->directorypermissions = 0777; + +require_once(__DIR__ . '/lib/setup.php'); + +// There is no php closing tag in this file, +// it is intentional because it prevents trailing whitespace problems! \ No newline at end of file From 9bfcc4af0a9d812156c5c0b625eba7284409fa3c Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 4 Jan 2021 17:07:14 -0800 Subject: [PATCH 012/129] Add new roles --- ansible/roles/connectbox-pi/meta/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ansible/roles/connectbox-pi/meta/main.yml b/ansible/roles/connectbox-pi/meta/main.yml index 629c5086..b2254aa2 100644 --- a/ansible/roles/connectbox-pi/meta/main.yml +++ b/ansible/roles/connectbox-pi/meta/main.yml @@ -7,9 +7,10 @@ dependencies: - wifi-ap - mikegleasonjr.firewall - nginx + - php + - ansible-postgresql + - moodle - captive-portal - webserver-content - usb-content - sample-content - - ansible-postgresql - - ansible-role-moodle-master From ee2598e07964577112c8acd25beeddfd7b43b86a Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 4 Jan 2021 17:08:28 -0800 Subject: [PATCH 013/129] Remove ansible-role-moodle-master and replace with custom role --- .../roles/ansible-role-moodle-master/.flake8 | 1 - .../action_plugins/check_moodle.py | 44 ---- .../library/.gitignore | 1 - .../library/README.md | 44 ---- .../library/check_moodle.py | 78 ------- .../library/moodletool.php | 204 ------------------ .../test-check_moodle_input.json.sample | 6 - .../library/test_check_moodle.py | 57 ----- .../molecule/README.md | 11 - .../molecule/default/README.md | 53 ----- .../molecule/default/tools/check-exists.yml | 8 - .../tools/playbook-test-check-moodle.yml | 13 -- .../default/tools/playbook-test-handlers.yml | 20 -- .../molecule/default/vars-db.yml | 26 --- .../molecule/default/vars.yml | 26 --- .../molecule/postgres/converge.yml | 11 - .../molecule/postgres/molecule.yml | 33 --- .../molecule/postgres/vars-db.yml | 27 --- .../molecule/postgres/verify.yml | 53 ----- .../molecule/prebuild/.gitignore | 1 - .../molecule/prebuild/Makefile | 18 -- .../molecule/prebuild/README.md | 37 ---- .../prebuild/ansible/playbook-mysql.yml | 29 --- .../prebuild/ansible/playbook-postgres.yml | 41 ---- .../molecule/prebuild/ansible/vars-mysql.yml | 16 -- .../prebuild/ansible/vars-postgres.yml | 14 -- .../molecule/prebuild/ansible/vars.yml | 23 -- .../molecule/prebuild/moodle-ami.json | 49 ----- .../molecule/prebuild/requirements.yml | 12 -- .../molecule/prebuild/vars/centos8.vars.json | 6 - .../molecule/prebuild/vars/debian10.vars.json | 6 - .../prebuild/vars/ubuntu1804.vars.json | 6 - .../molecule/update/converge.yml | 41 ---- .../molecule/update/molecule.yml | 33 --- .../molecule/update/verify.yml | 47 ---- .../molecule_test_local.sh | 22 -- .../patches/aurora.patch | 20 -- .../tasks/commands/moodle-bootstrapsolr.yml | 11 - .../tasks/commands/moodle-datadump.yml | 88 -------- .../tasks/commands/moodle-fetchsources.yml | 37 ---- .../tasks/commands/moodle-filedump.yml | 25 --- .../tasks/commands/moodle-install.yml | 23 -- .../tasks/commands/moodle-resetpw.yml | 12 -- .../tasks/commands/moodle-setupsolr.yml | 12 -- .../tasks/commands/moodle-update.yml | 11 - .../tasks/configure-vars.yml | 8 - .../tasks/fetch-sources.yml | 34 --- .../tasks/phpsql-setup.yml | 124 ----------- .../tasks/setup-dirs.yml | 48 ----- .../tasks/setup-moodle.yml | 42 ---- .../tasks/setup-moosh.yml | 56 ----- .../tasks/tools.yml | 29 --- 52 files changed, 1697 deletions(-) delete mode 100644 ansible/roles/ansible-role-moodle-master/.flake8 delete mode 100644 ansible/roles/ansible-role-moodle-master/action_plugins/check_moodle.py delete mode 100644 ansible/roles/ansible-role-moodle-master/library/.gitignore delete mode 100644 ansible/roles/ansible-role-moodle-master/library/README.md delete mode 100644 ansible/roles/ansible-role-moodle-master/library/check_moodle.py delete mode 100644 ansible/roles/ansible-role-moodle-master/library/moodletool.php delete mode 100644 ansible/roles/ansible-role-moodle-master/library/test-check_moodle_input.json.sample delete mode 100644 ansible/roles/ansible-role-moodle-master/library/test_check_moodle.py delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/README.md delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/default/README.md delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/default/tools/check-exists.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/default/tools/playbook-test-check-moodle.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/default/tools/playbook-test-handlers.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/default/vars-db.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/default/vars.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/postgres/converge.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/postgres/molecule.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/postgres/vars-db.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/postgres/verify.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/.gitignore delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/Makefile delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/README.md delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/playbook-mysql.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/playbook-postgres.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars-mysql.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars-postgres.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/moodle-ami.json delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/requirements.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/centos8.vars.json delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/debian10.vars.json delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/ubuntu1804.vars.json delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/update/converge.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/update/molecule.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/molecule/update/verify.yml delete mode 100755 ansible/roles/ansible-role-moodle-master/molecule_test_local.sh delete mode 100644 ansible/roles/ansible-role-moodle-master/patches/aurora.patch delete mode 100644 ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-bootstrapsolr.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-datadump.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-fetchsources.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-filedump.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-install.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-resetpw.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-setupsolr.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-update.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/tasks/configure-vars.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/tasks/fetch-sources.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/tasks/phpsql-setup.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/tasks/setup-dirs.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/tasks/setup-moodle.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/tasks/setup-moosh.yml delete mode 100644 ansible/roles/ansible-role-moodle-master/tasks/tools.yml diff --git a/ansible/roles/ansible-role-moodle-master/.flake8 b/ansible/roles/ansible-role-moodle-master/.flake8 deleted file mode 100644 index ef09bcbe..00000000 --- a/ansible/roles/ansible-role-moodle-master/.flake8 +++ /dev/null @@ -1 +0,0 @@ -[flake8] diff --git a/ansible/roles/ansible-role-moodle-master/action_plugins/check_moodle.py b/ansible/roles/ansible-role-moodle-master/action_plugins/check_moodle.py deleted file mode 100644 index 99a572e8..00000000 --- a/ansible/roles/ansible-role-moodle-master/action_plugins/check_moodle.py +++ /dev/null @@ -1,44 +0,0 @@ -# coding: utf-8 -# GNU General Public License v3.0+ -# (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) -import os - -from ansible.errors import AnsibleError -from ansible.plugins.action import ActionBase - -TOOL_FILENAME = 'moodletool.php' - - -class ActionModule(ActionBase): - - def run(self, tmp=None, task_vars=None): - ''' handler for transfering the tools ''' - if task_vars is None: - task_vars = dict() - self.TRANSFERS_FILES = True # make sure tmp folder is created first. - super(ActionModule, self).run(tmp, task_vars) - del tmp # tmp no longer has any effect (this is deprecated) - remote_path = os.path.join(self._connection._shell.tmpdir, - TOOL_FILENAME) - tool_path = self._shared_loader_obj.module_loader.find_plugin( - 'check_moodle') - tool_path = os.path.join( - os.path.dirname(tool_path if tool_path else ''), - TOOL_FILENAME) - if os.path.isfile(tool_path): - module_args = dict(self._task.args) - module_args.update({'moodle_tool_path': remote_path}) - self._transfer_file(tool_path, remote_path) - self._cleanup_remote_tmp = False # Do not cleanup the tmp file yet - # If set to true, this will delete the folder before the call to - # the script. - self._fixup_perms2([remote_path, self._connection._shell.tmpdir]) - return_value = self._execute_module(module_name='check_moodle', - module_args=module_args, - task_vars=task_vars) - self.cleanup(True) # Now command is executed we can cleanup - return return_value - else: - raise AnsibleError( - 'Failed to find the tool (%s) on path (%s) to run ' - 'the check_moodle ' % (TOOL_FILENAME, tool_path)) diff --git a/ansible/roles/ansible-role-moodle-master/library/.gitignore b/ansible/roles/ansible-role-moodle-master/library/.gitignore deleted file mode 100644 index 520e21f7..00000000 --- a/ansible/roles/ansible-role-moodle-master/library/.gitignore +++ /dev/null @@ -1 +0,0 @@ -test-check_moodle_input.json diff --git a/ansible/roles/ansible-role-moodle-master/library/README.md b/ansible/roles/ansible-role-moodle-master/library/README.md deleted file mode 100644 index 1c5420ff..00000000 --- a/ansible/roles/ansible-role-moodle-master/library/README.md +++ /dev/null @@ -1,44 +0,0 @@ -# Check Moodle state module - -This module is intended to check Moodle state (installed, to be upgraded) so we can take decision regarding -what needs to be done in term of setting it up. - - - name: Check the state of current moodle - check_moodle: - install_dir: "{{ moodle_src_path }}" - register: moodle_state - -The moodle_state will have the following values: - -* msg: an error message if any (this contains the error message sent by moodle, for example if we cannot -connect to existing database) -* code: error code if any (from moodle) -* moodle_needs_upgrading: boolean - moodle needs upgrading -* moodle_is_installed: boolean - moodle is installed (a *valid* config file is there) - -The process can also fail if the PHP CLI command (`php`) does not work or the provided folder is not a moodle folder. - -# Implementation notes - -Here we use the combination of action module (to push the moodletool.php script first) followed -by the usual Ansible module library. -So check_moodle will first call the code in action_plugin/check_moodle.py and then the code in check_moodle.py. - - -## Testing -To test it you need to install nose - - pip install nose - -Then: - - cd library - nosetests -v test_check_moodle.py - -Also you can directly test the script by doing: - - python library/check_moodle.py < library/test-check_moodle_input.json - -If you need to test the action module (that will call this same library module), and in the root folder of this role: - - ANSIBLE_ACTION_PLUGINS=`pwd`/action_plugins ANSIBLE_LIBRARY=`pwd`/library /home/laurentd/.virtualenvs/ansible-role-moodle/bin/ansible -vvv localhost -m check_moodle -a "install_dir=~/websites/htdocs/moodlelatest" diff --git a/ansible/roles/ansible-role-moodle-master/library/check_moodle.py b/ansible/roles/ansible-role-moodle-master/library/check_moodle.py deleted file mode 100644 index 48da4771..00000000 --- a/ansible/roles/ansible-role-moodle-master/library/check_moodle.py +++ /dev/null @@ -1,78 +0,0 @@ -#!/usr/bin/env python3 -import json - -from ansible.module_utils._text import to_text -from ansible.module_utils.basic import AnsibleModule - - -def check_php_cli_installed(module): - """ Check if PHP is installed. Process will exit with an error message if - fails (see fail_json). - """ - (rc, returnvalue, returnerr) = module.run_command(["php", "-v"]) - if rc != 0: - retvalue = { - 'failed': True, - 'msg': 'Could not run php cli tool', - 'code': 'moodletoolgeneralerror' - } - module.fail_json(**retvalue) - - -def run_moodle_tool(module, moodle_tool_path, install_dir, - additional_command=None): - """ Check if Moodle is installed and / or configured. - """ - - retvalue = { - 'failed': False, - "msg": None, - "code": None, - 'moodle_is_installed': False, - 'moodle_needs_upgrading': False, - 'current_version': None, - 'current_release': None, - } - - (rc, returnvalue, returnerr) = module.run_command( - ["php", moodle_tool_path, install_dir]) - - if not rc: - return json.loads(returnvalue) - retvalue[ - 'msg'] = 'Could not run the Moodle tool - ' + returnvalue + returnerr - retvalue['failed'] = True - retvalue['code'] = 'moodletoolgeneralerror' - return retvalue - - -def __convert_output(self, output, strip=True): - if strip: - output = output.strip() - try: - output = to_text(output, errors='surrogate_or_strict') - except UnicodeError: - pass - return output - - -def main(): - # Parsing argument file - module = AnsibleModule( - argument_spec=dict( - install_dir=dict(required=True), - moodle_tool_path=dict(required=True) - ), - supports_check_mode=True - ) - install_dir = module.params.get('install_dir') - moodle_tool_path = module.params.get('moodle_tool_path') - check_php_cli_installed(module) # Fails immediately by calling fail_json - retvalue = run_moodle_tool(module, moodle_tool_path, install_dir) - if retvalue and retvalue.get('failed', False): - module.fail_json(**retvalue) - module.exit_json(**retvalue) - - -if __name__ == "__main__": - main() diff --git a/ansible/roles/ansible-role-moodle-master/library/moodletool.php b/ansible/roles/ansible-role-moodle-master/library/moodletool.php deleted file mode 100644 index 6fdf7e17..00000000 --- a/ansible/roles/ansible-role-moodle-master/library/moodletool.php +++ /dev/null @@ -1,204 +0,0 @@ -. - -/** - * This is a CLI Script that will allow different actions to be taken or - * to gather information about the current Moodle installation. - * This should not fail and always return the right error message. - * - * @copyright 2020 CALL Learning - * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later - */ - -define('CLI_SCRIPT', true); - -/** - * Returns cli script parameters. - * This is a copy of the Moodle cli_get_params (and will be updated accordingly). - * The idea here is that we are not sure we have a Moodle accessible somewhere so - * we cannot rely on the inclusion of clilib.php - * - * @param array $longoptions array of --style options ex:('verbose'=>false) - * @param array $shortmapping array describing mapping of short to long style options ex:('h'=>'help', 'v'=>'verbose') - * @return array array of arrays, options, unrecognised as optionlongname=>value - */ -function moodle_cli_get_params(array $longoptions, array $shortmapping = null) { - $shortmapping = (array) $shortmapping; - $options = array(); - $unrecognized = array(); - - if (empty($_SERVER['argv'])) { - // bad luck, we can continue in interactive mode ;-) - return array($options, $unrecognized); - } - $rawoptions = $_SERVER['argv']; - - //remove anything after '--', options can not be there - if (($key = array_search('--', $rawoptions)) !== false) { - $rawoptions = array_slice($rawoptions, 0, $key); - } - - //remove script - unset($rawoptions[0]); - foreach ($rawoptions as $raw) { - if (substr($raw, 0, 2) === '--') { - $value = substr($raw, 2); - $parts = explode('=', $value); - if (count($parts) == 1) { - $key = reset($parts); - $value = true; - } else { - $key = array_shift($parts); - $value = implode('=', $parts); - } - if (array_key_exists($key, $longoptions)) { - $options[$key] = $value; - } else { - $unrecognized[] = $raw; - } - - } else if (substr($raw, 0, 1) === '-') { - $value = substr($raw, 1); - $parts = explode('=', $value); - if (count($parts) == 1) { - $key = reset($parts); - $value = true; - } else { - $key = array_shift($parts); - $value = implode('=', $parts); - } - if (array_key_exists($key, $shortmapping)) { - $options[$shortmapping[$key]] = $value; - } else { - $unrecognized[] = $raw; - } - } else { - $unrecognized[] = $raw; - continue; - } - } - //apply defaults - foreach ($longoptions as $key => $default) { - if (!array_key_exists($key, $options)) { - $options[$key] = $default; - } - } - // finished - return array($options, $unrecognized); -} - -// No error display here. -if (empty($options['debug'])) { - ob_start(); - ini_set('display_errors', '0'); - ini_set('log_errors', 0); - define('NO_DEBUG_DISPLAY', true); // Do not display error on the command line. -} -list($options, $unrecognised) = moodle_cli_get_params([ - 'help' => false, -], [ - 'h' => 'help', -]); - -$cfgpath = './'; -if ($unrecognised) { - $cfgpath = reset($unrecognised); - $cfgpath = rtrim($cfgpath, '/') . '/'; -} - -if (is_file($cfgpath . 'config.php')) { - include_once($cfgpath . 'config.php'); -} - -$usage = "Moodle php tool to check and do various actions in conjunction with ansible (see ansible-role-moodle) - -Usage: - # php moodletool.php PATH - # php moodletool.php [--help|-h] - -Options: - -h --help Print this help. - --config-set|-c Set the 'config configname','configvalue' - PATH Current installation path. If not provided this will be considered to be the current directory. - -Without argument this will just return a json encoded string that represents the state of the moodle installation. -This will be an json object with the following values: -{ - 'failed': [True or false], - 'msg': [Text message if failed], // Optional - 'code': [Error code if failed], // Optional - 'current_version': [Current Moodle version], // Optional - 'moodle_is_installed': [true or false], - 'moodle_needs_upgrading': [true or false], -} - -Other commands might return a different set of values, but failed, msg and code are -pretty much always there. -In the read mode, the script exits with success status 0 even if we have not found -the config file (config.php). -In case of unexpected error, the script exits with error status 1. - -Examples: - - # php moodletool.php - Return the basic information regarding the current moodle installation - - # php moodletool.php /my/installation/path - Same as above but will look into the installation path provided. -"; - -$returnvalue = []; -if (!isset($CFG) || empty($CFG->version)) { - if (is_file($cfgpath . 'config-dist.php')) { - $returnvalue = [ - 'failed' => false, - 'msg' => 'Moodle config.php file not found on :' . $cfgpath, - 'moodle_is_installed' => false, - ]; - } else { - $returnvalue = - [ - 'failed' => true, - 'msg' => 'No Moodle installation on :' . $cfgpath, - 'code' => 'moodlesourcenotfound' - ]; - } -} else { - // Now we have access to the full clilib.php - require_once($CFG->libdir . '/clilib.php'); - require_once($CFG->libdir . '/adminlib.php'); - require_once($CFG->libdir . '/upgradelib.php'); // general upgrade/install related functions - require_once($CFG->libdir . '/environmentlib.php'); - $moodleneedsupgrade = intval(moodle_needs_upgrading()); - - if ($options['help']) { - cli_write($usage); - exit(0); - } - if (!$returnvalue) { - $returnvalue = [ - 'failed' => false, - 'current_version' => $CFG->version, - 'current_release' => $CFG->release, - 'moodle_is_installed' => true, - 'moodle_needs_upgrading' => $moodleneedsupgrade, - ]; - } -} -if (empty($options['debug'])) { - ob_clean(); -} -echo json_encode($returnvalue); diff --git a/ansible/roles/ansible-role-moodle-master/library/test-check_moodle_input.json.sample b/ansible/roles/ansible-role-moodle-master/library/test-check_moodle_input.json.sample deleted file mode 100644 index 4237aa72..00000000 --- a/ansible/roles/ansible-role-moodle-master/library/test-check_moodle_input.json.sample +++ /dev/null @@ -1,6 +0,0 @@ -{ - "ANSIBLE_MODULE_ARGS": { - "install_dir": "INSTALLDIR", - "moodle_tool_path": "library/moodletool.php" - } -} diff --git a/ansible/roles/ansible-role-moodle-master/library/test_check_moodle.py b/ansible/roles/ansible-role-moodle-master/library/test_check_moodle.py deleted file mode 100644 index a2c22225..00000000 --- a/ansible/roles/ansible-role-moodle-master/library/test_check_moodle.py +++ /dev/null @@ -1,57 +0,0 @@ -from unittest.mock import Mock - -from nose.tools import assert_true - -from library.check_moodle import check_php_cli_installed, run_moodle_tool - -USUAL_ANSWERS = { - 'installed php -v': - (0, 'PHP 7.2.28-3+ubuntu16.04.1+deb.sury.org+1', ''), - 'non-installed php -v': - (127, '', 'bash: php : commande introuvable'), - 'php /tmp/moodletool.php': (0, - '{' - '"failed": false,' - '"msg": null,' - '"code": null,' - '"moodle_is_installed": true,' - '"moodle_needs_upgrading": false,' - '"current_version": "3.8.4",' - '"current_release": "3.8"' - '}', '') -} - - -def test_check_php_cli_installed_ok(): - ansible_module = Mock() - ansible_module.run_command = \ - Mock(return_value=USUAL_ANSWERS['installed php -v']) - check_php_cli_installed(ansible_module) - ansible_module.fail_json.assert_not_called() - - -def test_check_php_cli_installed_no_ok(): - ansible_module = Mock() - ansible_module.run_command = \ - Mock(return_value=USUAL_ANSWERS['non-installed php -v']) - check_php_cli_installed(ansible_module) - ansible_module.fail_json.assert_called() - - -def test_check_moodle(): - ansible_module = Mock() - ansible_module.run_command = \ - Mock(return_value=USUAL_ANSWERS['php /tmp/moodletool.php']) - retvalue = run_moodle_tool(ansible_module, '/tmp/moodletool.php', '/tmp') - expectedvalue = { - 'failed': False, - "msg": None, - "code": None, - 'moodle_is_installed': True, - 'moodle_needs_upgrading': False, - 'current_version': '3.8.4', - 'current_release': '3.8', - } - assert_true( - retvalue == expectedvalue - ) diff --git a/ansible/roles/ansible-role-moodle-master/molecule/README.md b/ansible/roles/ansible-role-moodle-master/molecule/README.md deleted file mode 100644 index 491bc42a..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/README.md +++ /dev/null @@ -1,11 +0,0 @@ -## Additional testing through localhost - - -As we have several scripts that would need to be tested locally in development -mode, here are a few tips on how to launch them on a local install. - -Test the check_moodle plugin: - -`` -ANSIBLE_ACTION_PLUGINS=`pwd`/action_plugins ANSIBLE_LIBRARY=`pwd/library` ansible -vvv localhost -m check_moodle -a "install_dir=~/websites/htdocs/moodlelatest" -`` diff --git a/ansible/roles/ansible-role-moodle-master/molecule/default/README.md b/ansible/roles/ansible-role-moodle-master/molecule/default/README.md deleted file mode 100644 index 633c5c9a..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/default/README.md +++ /dev/null @@ -1,53 +0,0 @@ -# Ansible Role tests - -This now uses Molecule. You need to install it and all dependencies to be able to -run the tests. -Images are now based upon prebuilt PHP/MySQL images so to speed up the test process. - -We use molecule 3.x version. - -```bash - pip uninstall -y docker docker-py - pip install molecule ansible-lint docker flake8 yamllint -``` - - -To launch the test do: - -```bash - molecule test -``` - - -## Checking the container - - -```bash - molecule converge - molecule login -``` - - -## Possible issues - -### Local testing and apparmor on ubuntu - -I stumbled on an issue with apparmor and mysql that prevents mysql from accessing /etc/mysql/conf.d -("mysqld: Can't read dir of '/etc/mysql/conf.d/' (Errcode: 13 - Permission denied)"). - -It seems that it is a recuring issue with apparmor and docker on priviledged instances (--priviledged). -Seems that it works on the travis-ci environment without an issue but the local test systematically -fails at this stage. -It seems from the logs that apparmors tries to read a file on the /var/lib/overlay2 (overlay filesystem) -that is not mounted on the guest OS. - -I posted an issue on the main mysql role here: https://github.com/geerlingguy/ansible-role-mysql/issues/263 - -Looking at similar issue from other users - -Some more info: - - - https://github.com/moby/moby/issues/5490 - - https://blogs.oracle.com/jsmyth/apparmor-and-mysql - - https://github.com/moby/moby/issues/7512#issuecomment-51845976 - diff --git a/ansible/roles/ansible-role-moodle-master/molecule/default/tools/check-exists.yml b/ansible/roles/ansible-role-moodle-master/molecule/default/tools/check-exists.yml deleted file mode 100644 index 98c6b507..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/default/tools/check-exists.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- - -- name: Check {{ item }} - stat: path="{{ item }}" - register: stats_result - -- name: Asserting "{{ item }}" exists - assert: {that: "'exists' in stats_result.stat"} diff --git a/ansible/roles/ansible-role-moodle-master/molecule/default/tools/playbook-test-check-moodle.yml b/ansible/roles/ansible-role-moodle-master/molecule/default/tools/playbook-test-check-moodle.yml deleted file mode 100644 index 7401364d..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/default/tools/playbook-test-check-moodle.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- - -# You can run this script by providing this playbook and the value of a real moodle install - -- hosts: localhost - gather_facts: true - connection: local - - tasks: - - name: Check the state of current moodle - check_moodle: - install_dir: "/srv/moodle/src" - register: moodle_state diff --git a/ansible/roles/ansible-role-moodle-master/molecule/default/tools/playbook-test-handlers.yml b/ansible/roles/ansible-role-moodle-master/molecule/default/tools/playbook-test-handlers.yml deleted file mode 100644 index daf5e3a3..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/default/tools/playbook-test-handlers.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -- hosts: all - - vars_files: - - vars.yml - - vars-db.yml - - roles: - - role_under_test - - tasks: - - name: Trigger installation - command: /bin/true - notify: install moodle - changed_when: false - - - name: Trigger installation - command: /bin/true - notify: update moodle - changed_when: false diff --git a/ansible/roles/ansible-role-moodle-master/molecule/default/vars-db.yml b/ansible/roles/ansible-role-moodle-master/molecule/default/vars-db.yml deleted file mode 100644 index abfbaa0e..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/default/vars-db.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -# Moodle database details -moodle_database: - dbtype: "mariadb" - dbhost: "localhost" - dbname: "moodle" - dbuser: "username" - dbpass: "password" - dbprefix: "mdl_" - -# Database details -mysql_enablerepo: "remi" - -mysql_databases: - - name: "{{ moodle_database.dbname }}" - encoding: UTF8 - collation: utf8_general_ci - -mysql_users: - - name: "{{ moodle_database.dbuser }}" - host: "%" - password: "{{ moodle_database.dbpass }}" - priv: "{{ moodle_database.dbname }}.*:ALL" - -dbengine: "mysql" -# mysql_root_password_update: true diff --git a/ansible/roles/ansible-role-moodle-master/molecule/default/vars.yml b/ansible/roles/ansible-role-moodle-master/molecule/default/vars.yml deleted file mode 100644 index f3f144e7..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/default/vars.yml +++ /dev/null @@ -1,26 +0,0 @@ ---- -php_enable_webserver: false -php_version: '7.2' -php_enable_php_fpm: true -php_fpm_listen: "127.0.0.1:9000" -mysql_python_package_debian: python3-mysqldb - - -apache_mods_enabled: - - expires.load - - ssl.load - - rewrite.load - - proxy.load - - proxy_fcgi.load -apache_remove_default_vhost: true -apache_vhosts: - - servername: "{{ moodle_domain_name }}" - serveralias: "www.{{ moodle_domain_name }}" - documentroot: "{{ moodle_src_path }}" - extra_parameters: | - - SetHandler "proxy:fcgi://{{ php_fpm_listen }}" - - -# Moodle Version -moodle_version: "v3.8.2" diff --git a/ansible/roles/ansible-role-moodle-master/molecule/postgres/converge.yml b/ansible/roles/ansible-role-moodle-master/molecule/postgres/converge.yml deleted file mode 100644 index 55bbeff3..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/postgres/converge.yml +++ /dev/null @@ -1,11 +0,0 @@ ---- - -- name: Converge - hosts: all - become: true - - vars_files: - - ../default/vars.yml - - vars-db.yml - roles: - - name: ansible-role-moodle diff --git a/ansible/roles/ansible-role-moodle-master/molecule/postgres/molecule.yml b/ansible/roles/ansible-role-moodle-master/molecule/postgres/molecule.yml deleted file mode 100644 index 0365ffb0..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/postgres/molecule.yml +++ /dev/null @@ -1,33 +0,0 @@ ---- -dependency: - name: galaxy -driver: - name: docker -platforms: - - name: instanceposgres - image: "calllearning/${MOLECULE_DISTRO:-ubuntu}-postgres-moodle-ansible:${MOLECULE_DISTRO_VERSION:-1804}" - command: ${MOLECULE_DOCKER_COMMAND:-""} - volumes: - - /sys/fs/cgroup:/sys/fs/cgroup:ro - privileged: true - pre_build_image: true - etc_hosts: "{'moodlepg.test': '127.0.0.1'}" -provisioner: - name: ansible - log: true - playbooks: - converge: ${MOLECULE_PLAYBOOK:-converge.yml} -scenario: - name: postgres - test_sequence: # Remove idempotence and side effect tests to make build a bit faster - - dependency - - cleanup - - destroy - - create - - prepare - - converge - - verify - - cleanup - - destroy -verifier: - name: ansible diff --git a/ansible/roles/ansible-role-moodle-master/molecule/postgres/vars-db.yml b/ansible/roles/ansible-role-moodle-master/molecule/postgres/vars-db.yml deleted file mode 100644 index 94d14a49..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/postgres/vars-db.yml +++ /dev/null @@ -1,27 +0,0 @@ ---- -# Moodle database details -moodle_database: - dbtype: "pgsql" - dbhost: "localhost" - dbname: "moodle" - dbuser: "username" - dbpass: "password" - dbprefix: "mdl_" - -# Moodle Version -moodle_version: "v3.8.2" -moodle_domain_name: "moodlepg.test" - -# As the playbook create the user first, we need to do that in this order -postgresql_users: - - name: "{{ moodle_database.dbuser }}" - password: "{{ moodle_database.dbpass }}" - -postgresql_databases: - - name: "{{ moodle_database.dbname }}" - owner: "{{ moodle_database.dbuser }}" -# Here we drop the collation info as it is an issue with CentOS/Redhat images for testing. -# TODO: find a way to install them in CENTOS 8 -# https://github.com/geerlingguy/ansible-role-postgresql/blob/master/molecule/default/converge.yml - -dbengine: "postgres" diff --git a/ansible/roles/ansible-role-moodle-master/molecule/postgres/verify.yml b/ansible/roles/ansible-role-moodle-master/molecule/postgres/verify.yml deleted file mode 100644 index b921698f..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/postgres/verify.yml +++ /dev/null @@ -1,53 +0,0 @@ ---- - -- name: Verify - hosts: all - become: true - - vars: - files_to_check: - - "{{ moodle_src_path }}" - - "{{ moodle_dataroot }}" - - "{{ moodle_localcachedir }}" - - "{{ moodle_tempdir }}" - - "{{ moodle_sharedcachedir }}" - - "{{ moodle_src_path }}/config.php" - vars_files: - - ../default/vars.yml - - vars-db.yml - - pre_tasks: - - name: Import Moodle PHP Setup role to set the web server config - import_role: - name: ansible-role-moodle - tasks_from: configure-vars.yml - - tasks: - - name: Check that all directories and files have been created - include_tasks: ../default/tools/check-exists.yml - loop: "{{ files_to_check }}" - - - name: Get Moodle current configuration - check_moodle: - install_dir: "{{ moodle_src_path }}" - become: true - become_user: "{{ moodle_webserver_user }}" - register: moodle_state - - - name: Check that Moodle is installed - assert: - that: moodle_state.moodle_is_installed - - - name: Check that Moodle has the right version - assert: - that: - - "moodle_state.current_release == '3.8.2 (Build: 20200309)'" - - - name: Get the site frontpage - action: uri url=http://moodlepg.test return_content=yes - register: webpage - - - name: Check that the page contains - assert: - that: - - "'

Moodle Test Site

' in webpage.content" diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/.gitignore b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/.gitignore deleted file mode 100644 index f9da32b8..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/.gitignore +++ /dev/null @@ -1 +0,0 @@ -roles diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/Makefile b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/Makefile deleted file mode 100644 index 218c55ac..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# Makefile to build the given image -.DEFAULT_GOAL := build - -DBFLAVORS=mysql postgres - -build: - for DBFLAVOR in $(DBFLAVORS); \ - do \ - packer build -var-file=./vars/centos8.vars.json -var="docker_image_dbflavor=$$DBFLAVOR" moodle-ami.json ; \ - packer build -var-file=./vars/ubuntu1804.vars.json -var="docker_image_dbflavor=$$DBFLAVOR" moodle-ami.json ; \ - packer build -var-file=./vars/debian10.vars.json -var="docker_image_dbflavor=$$DBFLAVOR" moodle-ami.json ; \ - done - -push: - for IMAGE in `docker image ls calllearning/*-moodle-ansible --format "{{.Repository}}"`; \ - do \ - docker push $$IMAGE; \ - done diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/README.md b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/README.md deleted file mode 100644 index 4729ea0c..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/README.md +++ /dev/null @@ -1,37 +0,0 @@ -Packer for Moodle Ansible role testing --- - -The Ansible role test (molecule) is quite lenghtly because of the sheer amount of dependencies to install (apache, -mysql, php, ...). We can reduce drastically the testing time by pre-building the OS images and then just running -the relevant ansible role. -This series of script will use Harshicorp Packer (https://www.packer.io/) to build the relevant image and then -push it to our CALL Learning docker repository. The images built are based on Jeff Geerling base images ( -geerlingguy/docker-xxx) so we can then easily run ansible on them. - - -Ansible version details -== -The required version of ansible is at least 2.9.6, on which all playbook have been tested - -Building the image -== -This is the command to launch the build on docker: - - make build - -This will generate several docker images for each distribution and database engine - -Variables -== - -Note -== - -The run command had to be modified to take into account: -* Local docker build with ansible: - * https://www.packer.io/docs/provisioners/ansible.html#docker - * Remove the /bin/bash at the end so we run the docker systemd daemon for centos/debian -* Add the link to /sys/fs/cgroup and --privileged -* Packer will rebuild the image but will not copy the VOLUME and CMD info from docker so -we need to add it again. - diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/playbook-mysql.yml b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/playbook-mysql.yml deleted file mode 100644 index 7d450617..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/playbook-mysql.yml +++ /dev/null @@ -1,29 +0,0 @@ ---- - -- name: Prebuild Image - Mysql - hosts: all - become: true - - vars_files: - - ../../../defaults/main.yml - - vars.yml - - vars-mysql.yml - - pre_tasks: - - name: Import Moodle PHP Setup role to set the web server config - include_tasks: ../../../tasks/phpsql-setup.yml - tags: install - roles: - - role: geerlingguy.repo-remi - when: ansible_os_family == 'RedHat' - # Database install - - name: geerlingguy.mysql - # Then apache - - geerlingguy.apache - - geerlingguy.php-versions - - geerlingguy.php - # Then PHP Database libraries - - name: geerlingguy.php-mysql - # Other dependencies such as composer - - name: geerlingguy.composer - - name: geerlingguy.git diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/playbook-postgres.yml b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/playbook-postgres.yml deleted file mode 100644 index 85119215..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/playbook-postgres.yml +++ /dev/null @@ -1,41 +0,0 @@ ---- - -- name: Prebuild Image - Postgres - hosts: all - become: true - - vars_files: - - ../../../defaults/main.yml - - vars.yml - - vars-postgres.yml - - pre_tasks: - - name: Import Moodle PHP Setup role to set the web server config - # Include here and not import as we need the variable values for the rest of the script - include_tasks: ../../../tasks/phpsql-setup.yml - tags: install - # The Fedora 30+ container images have only C.UTF-8 installed - - name: Set database locale if using Fedora 30+ or RedHat 8+ - set_fact: - postgresql_databases: - - name: "{{ moodle_database.dbname }}" - owner: "{{ moodle_database.dbuser }}" - lc_collate: 'C.UTF-8' - lc_ctype: 'C.UTF-8' - when: - - ( ansible_distribution == 'Fedora' and ansible_distribution_major_version >= '30') or - ( ansible_os_family == 'RedHat' and ansible_distribution_major_version == '8') - roles: - - role: geerlingguy.repo-remi - when: ansible_os_family == 'RedHat' - # Database install - - name: geerlingguy.postgresql - # Then apache - - geerlingguy.apache - - geerlingguy.php-versions - - geerlingguy.php - # Then PHP Database libraries - - name: geerlingguy.php-pgsql - # Other dependencies such as composer - - name: geerlingguy.composer - - name: geerlingguy.git diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars-mysql.yml b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars-mysql.yml deleted file mode 100644 index 937a4358..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars-mysql.yml +++ /dev/null @@ -1,16 +0,0 @@ ---- -# Database details -mysql_enablerepo: "remi" - -mysql_databases: - - name: "moodle" - encoding: UTF8 - collation: utf8_general_ci - -mysql_users: - - name: "username" - host: "%" - password: "password" - priv: "moodle.*:ALL" - -dbengine: mysql diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars-postgres.yml b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars-postgres.yml deleted file mode 100644 index afcee1aa..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars-postgres.yml +++ /dev/null @@ -1,14 +0,0 @@ ---- -# As the playbook create the user first, we need to do that in this order -postgresql_users: - - name: "username" - password: "password" - -postgresql_databases: - - name: "moodle" - owner: "username" -# Here we drop the collation info as it is an issue with CentOS/Redhat images for testing. -# TODO: find a way to install them in CENTOS 8 -# https://github.com/geerlingguy/ansible-role-postgresql/blob/master/molecule/default/converge.yml - -dbengine: postgres diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars.yml b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars.yml deleted file mode 100644 index d690a132..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/ansible/vars.yml +++ /dev/null @@ -1,23 +0,0 @@ ---- -php_enable_webserver: false -php_version: '7.2' -php_enable_php_fpm: true -php_fpm_listen: "127.0.0.1:9000" -mysql_python_package_debian: python3-mysqldb - - -apache_mods_enabled: - - expires.load - - ssl.load - - rewrite.load - - proxy.load - - proxy_fcgi.load -apache_remove_default_vhost: true -apache_vhosts: - - servername: "{{ moodle_domain_name }}" - serveralias: "www.{{ moodle_domain_name }}" - documentroot: "{{ moodle_src_path }}" - extra_parameters: | - - SetHandler "proxy:fcgi://{{ php_fpm_listen }}" - diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/moodle-ami.json b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/moodle-ami.json deleted file mode 100644 index 31ea6ad3..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/moodle-ami.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "variables": { - "full_image_version": "{{ user `docker_image_type` }}{{ user `docker_image_version` }}", - "ansible_host": "default", - "ansible_connection": "docker" - }, - "builders": [ - { - "type": "docker", - "image": "geerlingguy/docker-{{ user `full_image_version` }}-ansible:latest", - "run_command": [ - "-d", - "-i", - "-t", - "-v", - "/sys/fs/cgroup:/sys/fs/cgroup:ro", - "--privileged", - "--name", - "{{user `ansible_host`}}", - "{{.Image}}" - ], - "commit": true, - "changes": [ - "VOLUME [{{ user `changes_volumes` }}]", - "CMD [\"{{ user `changes_cmd` }}\"]" - ] - - } - ], - "provisioners": [ - { - "type": "ansible", - "playbook_file": "ansible/playbook-{{ user `docker_image_dbflavor` }}.yml", - "user": "root", - "extra_arguments": [ - "--extra-vars", - "ansible_host={{user `ansible_host`}} ansible_connection={{user `ansible_connection`}}" - ], - "galaxy_file": "./requirements.yml" - } - ], - "post-processors": [ - { - "type": "docker-tag", - "repository": "calllearning/{{ user `docker_image_type` }}-{{ user `docker_image_dbflavor` }}-moodle-ansible", - "tags": "{{ user `docker_image_version` }}" - } - ] -} diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/requirements.yml b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/requirements.yml deleted file mode 100644 index 65f5f049..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/requirements.yml +++ /dev/null @@ -1,12 +0,0 @@ ---- -- src: geerlingguy.repo-remi -- src: geerlingguy.apache -- src: geerlingguy.apache-php-fpm -- src: geerlingguy.postgresql -- src: geerlingguy.mysql -- src: geerlingguy.php -- src: geerlingguy.php-versions -- src: geerlingguy.php-pgsql -- src: geerlingguy.php-mysql -- src: geerlingguy.git -- src: geerlingguy.composer diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/centos8.vars.json b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/centos8.vars.json deleted file mode 100644 index ecdeada2..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/centos8.vars.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "docker_image_type": "centos", - "docker_image_version": "8", - "changes_volumes": "\"/sys/fs/cgroup\"", - "changes_cmd": "/usr/lib/systemd/systemd" -} diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/debian10.vars.json b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/debian10.vars.json deleted file mode 100644 index bd5f3918..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/debian10.vars.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "docker_image_type": "debian", - "docker_image_version": "10", - "changes_volumes": "\"/sys/fs/cgroup\"", - "changes_cmd": "/lib/systemd/systemd" -} diff --git a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/ubuntu1804.vars.json b/ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/ubuntu1804.vars.json deleted file mode 100644 index d38e98b8..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/prebuild/vars/ubuntu1804.vars.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "docker_image_type": "ubuntu", - "docker_image_version": "1804", - "changes_volumes": "\"/sys/fs/cgroup\", \"/tmp\", \"/run\"", - "changes_cmd": "/lib/systemd/systemd" -} diff --git a/ansible/roles/ansible-role-moodle-master/molecule/update/converge.yml b/ansible/roles/ansible-role-moodle-master/molecule/update/converge.yml deleted file mode 100644 index 33237a24..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/update/converge.yml +++ /dev/null @@ -1,41 +0,0 @@ ---- - -- name: Converge - hosts: all - become: true - - vars_files: - - ../default/vars.yml - - ../default/vars-db.yml - vars: - moodle_domain_name: "moodleupdate.test" # We override this for the test - - pre_tasks: - - name: Import Moodle PHP Setup role to set the web server config - import_role: - name: ansible-role-moodle - tasks_from: phpsql-setup - tags: install - - name: Set Moodle version to 3.8.1 to update it later - set_fact: - moodle_version: "v3.8.1" - roles: - # Finally the role under test - - name: ansible-role-moodle - tasks: - - name: Check the state of current moodle - check_moodle: - install_dir: "{{ moodle_src_path }}" - become: true - become_user: "{{ moodle_webserver_user }}" - register: moodle_state_v381 - - name: Check the version of moodle is the right one - assert: - that: - - "moodle_state_v381.current_release == '3.8.1 (Build: 20200113)'" - - "not moodle_state_v381.moodle_needs_upgrading|bool" - - name: Update moodle to v3.8.2 - include_role: - name: ansible-role-moodle - vars: - moodle_version: "v3.8.2" diff --git a/ansible/roles/ansible-role-moodle-master/molecule/update/molecule.yml b/ansible/roles/ansible-role-moodle-master/molecule/update/molecule.yml deleted file mode 100644 index ea8adb34..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/update/molecule.yml +++ /dev/null @@ -1,33 +0,0 @@ ---- -dependency: - name: galaxy -driver: - name: docker -platforms: - - name: instanceupdate - image: "calllearning/${MOLECULE_DISTRO:-ubuntu}-mysql-moodle-ansible:${MOLECULE_DISTRO_VERSION:-1804}" - command: ${MOLECULE_DOCKER_COMMAND:-""} - volumes: - - /sys/fs/cgroup:/sys/fs/cgroup:ro - privileged: true - pre_build_image: true - etc_hosts: "{'moodleupdate.test': '127.0.0.1'}" -provisioner: - name: ansible - log: true - playbooks: - converge: ${MOLECULE_PLAYBOOK:-converge.yml} -scenario: - name: update - test_sequence: # Remove idempotence and side effect tests to make build a bit faster - - dependency - - cleanup - - destroy - - create - - prepare - - converge - - verify - - cleanup - - destroy -verifier: - name: ansible diff --git a/ansible/roles/ansible-role-moodle-master/molecule/update/verify.yml b/ansible/roles/ansible-role-moodle-master/molecule/update/verify.yml deleted file mode 100644 index fc6b47ec..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule/update/verify.yml +++ /dev/null @@ -1,47 +0,0 @@ ---- - -- name: Verify - hosts: all - become: true - - vars: - files_to_check: - - "{{ moodle_src_path }}" - - "{{ moodle_dataroot }}" - - "{{ moodle_localcachedir }}" - - "{{ moodle_tempdir }}" - - "{{ moodle_sharedcachedir }}" - - "{{ moodle_src_path }}/config.php" - moodle_domain_name: "moodleupdate.test" # We override this for the test - vars_files: - - ../default/vars.yml - - ../default/vars-db.yml - - pre_tasks: - - name: Import Moodle PHP Setup role to set the web server config - import_role: - name: ansible-role-moodle - tasks_from: configure-vars.yml - - tasks: - - name: Check the state of current moodle - check_moodle: - install_dir: "{{ moodle_src_path }}" - become: true - become_user: "{{ moodle_webserver_user }}" - register: moodle_state - - - name: Check the version of moodle is the right one - assert: - that: - - "moodle_state.current_release == '3.8.2 (Build: 20200309)'" - - "not moodle_state.moodle_needs_upgrading|bool" - - - name: Get the site frontpage - action: uri url=http://moodleupdate.test return_content=yes - register: webpage - - - name: Check that the page contains - assert: - that: - - "'

Moodle Test Site

' in webpage.content" diff --git a/ansible/roles/ansible-role-moodle-master/molecule_test_local.sh b/ansible/roles/ansible-role-moodle-master/molecule_test_local.sh deleted file mode 100755 index b1636b39..00000000 --- a/ansible/roles/ansible-role-moodle-master/molecule_test_local.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash -# Disable apparmor for mysqld as it creates issue at install (https://github.com/moby/moby/issues/7276#issuecomment-68827244) -if [[ "$distro" =~ ^(ubuntu1[6-8]04|debian9)$ ]] && [ -f /etc/lsb-release ] && [ /etc/apparmor.d/usr.sbin.mysqld ]; then - source /etc/lsb-release - if [ $DISTRIB_ID = 'Ubuntu' ]; then - printf "Disabling apparmor for mysql" - [ -f /etc/apparmor.d/disable/usr.sbin.mysqld ] || sudo ln -s /etc/apparmor.d/usr.sbin.mysqld /etc/apparmor.d/disable/ - sudo apparmor_parser -R /etc/apparmor.d/usr.sbin.mysqld || true - sudo aa-status - fi -fi - -molecule check - -if [[ "$distro" =~ ^(ubuntu1[6-8]04|debian9)$ ]] && [ -f /etc/lsb-release ] && [ /etc/apparmor.d/usr.sbin.mysqld ]; then - if [ $DISTRIB_ID = 'Ubuntu' ]; then - printf "Enabling apparmor for mysql again" - sudo rm /etc/apparmor.d/disable/usr.sbin.mysqld || true - sudo apparmor_parser -r /etc/apparmor.d/usr.sbin.mysqld || true - sudo aa-status - fi -fi diff --git a/ansible/roles/ansible-role-moodle-master/patches/aurora.patch b/ansible/roles/ansible-role-moodle-master/patches/aurora.patch deleted file mode 100644 index f61fecb8..00000000 --- a/ansible/roles/ansible-role-moodle-master/patches/aurora.patch +++ /dev/null @@ -1,20 +0,0 @@ -diff --git a/lib/dml/mysqli_native_moodle_database.php b/lib/dml/mysqli_native_moodle_database.php -index 05c6c43..2b9351a 100644 ---- a/lib/dml/mysqli_native_moodle_database.php -+++ b/lib/dml/mysqli_native_moodle_database.php -@@ -347,6 +347,15 @@ class mysqli_native_moodle_database extends moodle_database { - * @return bool true if table can be created or changed to compressed row format. - */ - public function is_compressed_row_format_supported($cached = true) { -+ // START: Patch for Aurora Mysql to avoid issue at install -+ // See https://tracker.moodle.org/browse/MDL-58931 -+ if ( isset($this->dboptions['disablecompressedrowformat']) -+ && $this->dboptions['disablecompressedrowformat'] ) { -+ $this->compressedrowformatsupported = false; -+ return false; -+ } -+ // END: Patch for Aurora Mysql to avoid issue at install -+ - if ($cached and isset($this->compressedrowformatsupported)) { - return($this->compressedrowformatsupported); - } diff --git a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-bootstrapsolr.yml b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-bootstrapsolr.yml deleted file mode 100644 index 8c5a1d97..00000000 --- a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-bootstrapsolr.yml +++ /dev/null @@ -1,11 +0,0 @@ ---- - -- name: Bootstrap Solr - command: chdir="{{ moodle_src_path }}" {{ item }} - # The commands here are availble since MOODLE 3.2 - loop: - - php search/cli/indexer.php --force - - php admin/tool/task/cli/schedule_task.php --execute=\\core\\task\\search_index_task - become: true - become_user: "{{ moodle_webserver_user }}" - changed_when: false diff --git a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-datadump.yml b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-datadump.yml deleted file mode 100644 index 83f03693..00000000 --- a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-datadump.yml +++ /dev/null @@ -1,88 +0,0 @@ ---- - -- name: Install necessary packages to do the dump (Postgres) - apt: - pkg: - - postgresql-client - - python-psycopg2 - - libpq-dev - state: present - when: ansible_distribution == 'Debian' and dbengine == 'postgres' - -- name: Install necessary packages to do the dump (Postgres) - yum: - name: - - postgresql-lib - - postgresql-devel - state: present - when: ansible_distribution == 'Redhat' and dbengine == 'postgres' - -- name: Install necessary packages to do the dump (Mysql) - apt: - pkg: - - python-pymysql - state: present - when: ansible_distribution == 'Debian' and dbengine == 'mysql' - -- name: Install necessary packages to do the dump (Mysql) - yum: - name: - - python2-PyMySQL - state: present - when: ansible_distribution == 'Redhat' and dbengine == 'mysql' - -- name: Set default dump folder if not set - set_fact: - local_dump_folder: "dumps" - when: not local_dump_folder is defined - -- name: Create local installation directory if it does not exist - file: - path: "{{ local_dump_folder }}" - state: directory - delegate_to: localhost - changed_when: false - -- name: Do a database dump (Mysql) - # This assumes that mysqldump is installed (this is the case on a frontend normally) - mysql_db: - name: "{{ moodle_database.dbname }}" - login_host: "{{ moodle_database.dbhost }}" - login_user: "{{ moodle_database.dbuser }}" - login_password: "{{ moodle_database.password }}" - state: dump - target: /tmp/dump.sql.bz2 - changed_when: false - when: dbengine == 'mysql' - -- name: Do a database dump (Postgres) - # This assumes that pg_dump is installed (this is the case on a frontend normally) - postgresql_db: - name: "{{ moodle_database.dbname }}" - login_host: "{{ moodle_database.dbhost }}" - login_user: "{{ moodle_database.dbuser }}" - login_password: "{{ moodle_database.password }}" - state: dump - target: /tmp/dump.sql.bz2 - changed_when: false - when: dbengine == 'postgres' - -- name: Compress archive - archive: - path: "/tmp/dbdump.sql" - dest: "/tmp/dbdump.sql.gz" - format: gz - force_archive: true - changed_when: false - -- name: Fetch archive - fetch: - src: "/tmp/dbdump.sql.gz" - flat: true - dest: "{{ local_dump_folder }}/moodledata-{{ inventory_hostname }}.{{ ansible_date_time.epoch }}.tar.gz" - -- name: Delete Archive - file: - state: absent - path: "/tmp/dbdump.sql.gz" - changed_when: false diff --git a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-fetchsources.yml b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-fetchsources.yml deleted file mode 100644 index a121eeba..00000000 --- a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-fetchsources.yml +++ /dev/null @@ -1,37 +0,0 @@ ---- - -- name: Make sure that Patch package is installed on CentOS - yum: - name: patch - state: present - when: ansible_os_family == 'RedHat' - -# Fetch moodle source from a git repository -- name: Install or update Moodle source code in the destination folder - git: - repo: "{{ moodle_git_url }}" - dest: "{{ moodle_src_path }}" - version: "{{ moodle_version }}" - depth: 1 # Only shallow cloning. Can be fixed if needed later to have the full history (git pull --unshallow) - key_file: "{{ moodle_git_key_file }}" - accept_hostkey: yes - recursive: true - update: true - force: "{{ moodle_force_source_update }}" - become: true - become_user: "{{ moodle_webserver_user }}" # Check out as www-data - -# Apply patch depending on the patch_to_apply variable -- name: Apply all patches - patch: - src: "patches/{{ item }}.patch" - basedir: "{{ moodle_src_path }}" - strip: 1 - loop: "{{ patch_to_apply }}" - -- name: Make sure all source file belongs to the webserver user - file: - path: "{{ moodle_src_path }}" - owner: "{{ moodle_webserver_user }}" - group: "{{ moodle_webserver_group }}" - recurse: true diff --git a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-filedump.yml b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-filedump.yml deleted file mode 100644 index 243e0e58..00000000 --- a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-filedump.yml +++ /dev/null @@ -1,25 +0,0 @@ ---- - -- name: Set default dump folder if not set - set_fact: - local_dump_folder: "dumps" - when: not local_dump_folder is defined - -- name: Create local installation directory if it does not exist - file: - path: "{{ local_dump_folder }}" - state: directory - delegate_to: localhost - -- name: Sync data folder locally - synchronize: - mode: pull - src: "{{ moodle_sitedata }}" - dest: "{{ local_dump_folder }}/moodledata-{{ inventory_hostname }}.{{ ansible_date_time.epoch }}" - -- name: Archive data folder - archive: - path: "{{ local_dump_folder }}/moodledata-{{ inventory_hostname }}.{{ ansible_date_time.epoch }}/" - dest: "{{ local_dump_folder }}/moodledata-{{ inventory_hostname }}.{{ ansible_date_time.epoch }}.tar.bz2" - format: bz2 - delegate_to: localhost diff --git a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-install.yml b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-install.yml deleted file mode 100644 index 9343a522..00000000 --- a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-install.yml +++ /dev/null @@ -1,23 +0,0 @@ ---- - -- name: Moodle- Check before if installation directory exists - stat: - path: "{{ moodle_src_path }}/config.php" - register: moodle_config_source - -- name: Run installer - command: > - php admin/cli/install_database.php - --adminuser="{{ moodle_site_admin.username }}" - --adminpass="{{ moodle_site_admin.password }}" - --adminemail="{{ moodle_site_admin.email }}" - --agree-license - --fullname="{{ moodle_site_fullname }}" - --shortname="{{ moodle_site_shortname }}" - args: - chdir: "{{ moodle_src_path }}" - become: true - become_user: "{{ moodle_webserver_user }}" - register: installerresult - changed_when: installerresult.rc != 0 - when: moodle_config_source.stat.exists|bool diff --git a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-resetpw.yml b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-resetpw.yml deleted file mode 100644 index 091ad94e..00000000 --- a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-resetpw.yml +++ /dev/null @@ -1,12 +0,0 @@ ---- - -- name: Reset password - command: chdir="{{ moodle_src_path }}" {{ item }} - loop: - - php admin/cli/purge_caches.php - - php admin/cli/reset_password.php - --username="{{ moodle_site_admin.username }}" --password="{{ moodle_site_admin.password }}" - become: true - become_user: "{{ moodle_webserver_user }}" - changed_when: false - no_log: true diff --git a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-setupsolr.yml b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-setupsolr.yml deleted file mode 100644 index 975298b4..00000000 --- a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-setupsolr.yml +++ /dev/null @@ -1,12 +0,0 @@ ---- - -- name: Setup Solr - command: chdir="{{ moodle_src_path }}" {{ item }} - # CFG command here Since Moodle 3.3 - loop: - - php admin/cli/purge_caches.php - - php admin/cli/cfg.php --component=search_solr --name=indexname --set="{{ moodle_solr_collection_name }}" - - php admin/cli/cfg.php --component=search_solr --name=server_hostname --set="{{ solr_server_host }}" - become: true - become_user: "{{ moodle_webserver_user }}" - changed_when: false diff --git a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-update.yml b/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-update.yml deleted file mode 100644 index 8ce76192..00000000 --- a/ansible/roles/ansible-role-moodle-master/tasks/commands/moodle-update.yml +++ /dev/null @@ -1,11 +0,0 @@ ---- - -- name: Run update - command: > - php admin/cli/upgrade.php --non-interactive - args: - chdir: "{{ moodle_src_path }}" - become: true - become_user: "{{ moodle_webserver_user }}" - register: updaterresult - changed_when: updaterresult.rc != 0 diff --git a/ansible/roles/ansible-role-moodle-master/tasks/configure-vars.yml b/ansible/roles/ansible-role-moodle-master/tasks/configure-vars.yml deleted file mode 100644 index f0e9c901..00000000 --- a/ansible/roles/ansible-role-moodle-master/tasks/configure-vars.yml +++ /dev/null @@ -1,8 +0,0 @@ ---- - -- name: Set Moodle Data facts - set_fact: - moodle_dataroot: "{{ moodle_sitedata.shared_data_folder }}/{{ moodle_sitedata.data_dir_name }}" - moodle_tempdir: "{{ moodle_sitedata.shared_data_folder }}/{{ moodle_sitedata.temp_dir_name }}" - moodle_sharedcachedir: "{{ moodle_sitedata.shared_data_folder }}/{{ moodle_sitedata.cache_dir_name }}" - moodle_localcachedir: "{{ moodle_sitedata.local_data_folder }}/{{ moodle_sitedata.cache_dir_name }}" diff --git a/ansible/roles/ansible-role-moodle-master/tasks/fetch-sources.yml b/ansible/roles/ansible-role-moodle-master/tasks/fetch-sources.yml deleted file mode 100644 index 018f7354..00000000 --- a/ansible/roles/ansible-role-moodle-master/tasks/fetch-sources.yml +++ /dev/null @@ -1,34 +0,0 @@ ---- - -- name: Make sure that Patch package is installed on CentOS - yum: - name: patch - state: present - when: ansible_os_family == 'RedHat' - -# Fetch moodle source from a git repository -- name: Install or update Moodle source code in the destination folder - git: - repo: "{{ moodle_git_url }}" - dest: "{{ moodle_src_path }}" - version: "{{ moodle_version }}" - depth: 1 # Only shallow cloning. Can be fixed if needed later to have the full history (git pull --unshallow) - key_file: "{{ moodle_git_key_file }}" - accept_hostkey: yes - become: true - become_user: "{{ moodle_webserver_user }}" # Check out as www-data - -# Apply patch depending on the patch_to_apply variable -- name: Apply all patches - patch: - src: "patches/{{ item }}.patch" - basedir: "{{ moodle_src_path }}" - strip: 1 - loop: "{{ patch_to_apply }}" - -- name: Make sure all source file belongs to the webserver user - file: - path: "{{ moodle_src_path }}" - owner: "{{ moodle_webserver_user }}" - group: "{{ moodle_webserver_group }}" - recurse: true diff --git a/ansible/roles/ansible-role-moodle-master/tasks/phpsql-setup.yml b/ansible/roles/ansible-role-moodle-master/tasks/phpsql-setup.yml deleted file mode 100644 index 44f88b58..00000000 --- a/ansible/roles/ansible-role-moodle-master/tasks/phpsql-setup.yml +++ /dev/null @@ -1,124 +0,0 @@ ---- - -# Usual tweaks and php mandatory packages for Moodle -# We don't use any of these tasks in the role itself as -# this is only a tool here to be used in other playbook like: -# - import_role: call-learning.moodle -# tasks_from: phpsql-setup.yml -# tags: install - - -# -# Global Packages -# - -# Debian -- name: Update apt cache. - apt: update_cache=yes cache_valid_time=86400 - when: ansible_os_family == 'Debian' - -- name: Add specific packages for Debian - apt: - pkg: - - python-crontab - - cron - - python-pymysql - state: present - when: ansible_distribution == "Debian" - -# Redhat and Centos - -- name: Tweak Redhad/Centos package names - block: - - name: Set Mysql Packages For Redhat/Centos - set_fact: - mysql_packages: - - mariadb - - mariadb-server - - mysql-libs - - python2-PyMySQL - - python3-PyMySQL - - perl-DBD-MySQL - mysql_daemon: mariadb - mysql_log_error: /var/log/mariadb/mariadb.log - mysql_syslog_tag: mariadb - when: ansible_os_family == 'RedHat' - -- name: Add specific packages for Redhat/Centos - yum: - name: crontabs - state: present - when: ansible_os_family == 'RedHat' - -- name: Define postgresql_version to 9.3 for RedHat/CentOS. - set_fact: - postgresql_version: "9.3" - when: ansible_os_family == "RedHat" - -# ALL Systems -- name: Install dependencies. - package: name={{ item }} - with_items: - - curl - - unzip - - sendmail - -# -# PHP Packages -# - -# ALL Distribution (note the difference in name from Debian and Ubuntu, version prefixing) -- name: Set php_packages for all distributions - block: - # We use PHP 7.2 for testing (see vars.yml and php-versions role) - - name: Set php packages to an empty list and php_prefix - set_fact: - php_packages: [] - php_prefix: php - - name: Set Php package prefix for Debian like systems - set_fact: - php_prefix: "php{{ php_version }}" - when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu' - - name: Set all php packages names - set_fact: - php_packages: "{{ php_packages }} + [ '{{ php_prefix }}-{{ item }}' ]" - loop: - - cli - - common - - curl - - gd - - intl - - json - - mbstring - - opcache - - readline - - soap - - xml - - xmlrpc - - zip - - fpm - - cli - - ldap - - solr - - redis - -- name: Add APCU package for debian / Ubuntu - set_fact: - php_packages: "{{ php_packages }} + ['php-apcu']" - when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu' - -# Need to add php-process on Redhat so we can use moodle moosh -- name: Set php_packages (apcu + php-process) for PHP CentOS/Redhat from REMI package. - set_fact: - php_packages: "{{ php_packages }} + ['php-pecl-apcu', 'php-process']" - when: ansible_os_family == "RedHat" - -- name: Set php_package for postgres - set_fact: - php_packages: "{{ php_packages }} + ['{{ php_prefix }}-pgsql']" - when: dbengine == 'postgres' - -- name: Set php_package for MySQL - set_fact: - php_packages: "{{ php_packages }} + ['{{ php_prefix }}-mysql']" - when: dbengine == 'mysql' diff --git a/ansible/roles/ansible-role-moodle-master/tasks/setup-dirs.yml b/ansible/roles/ansible-role-moodle-master/tasks/setup-dirs.yml deleted file mode 100644 index 2c808e52..00000000 --- a/ansible/roles/ansible-role-moodle-master/tasks/setup-dirs.yml +++ /dev/null @@ -1,48 +0,0 @@ ---- -# Creates the relevant directories to install moodle: -# - a source directory -# - a data directory where we will have all site data - -- name: Create installation directory if it does not exist - file: - path: "{{ moodle_src_path }}" - state: directory - owner: "{{ moodle_webserver_user }}" - group: "{{ moodle_webserver_group }}" - become: true - -- name: Create data root directory - file: - path: "{{ moodle_dataroot }}" - state: directory - owner: "{{ moodle_webserver_user }}" - group: "{{ moodle_webserver_group }}" - mode: "u=rwx,g=rwx,o=r" - recurse: true - changed_when: false - become: true - -- name: Create all standard data Directories - file: - path: "{{ item }}" - state: directory - owner: "{{ moodle_webserver_user }}" - group: "{{ moodle_webserver_group }}" - mode: "u=rwx,g=rwx,o=r" - loop: - - "{{ moodle_sitedata.shared_data_folder }}" - - "{{ moodle_sitedata.local_data_folder }}" - - "{{ moodle_dataroot }}" - -- name: Create all shared data Directories - file: - path: "{{ item }}" - state: directory - owner: "{{ moodle_webserver_user }}" - group: "{{ moodle_webserver_group }}" - mode: "u=rwx,g=rwx,o=r" - loop: - - "{{ moodle_localcachedir }}" - - "{{ moodle_tempdir }}" - - "{{ moodle_sharedcachedir }}" - when: shared_drive_subfolder_create|bool diff --git a/ansible/roles/ansible-role-moodle-master/tasks/setup-moodle.yml b/ansible/roles/ansible-role-moodle-master/tasks/setup-moodle.yml deleted file mode 100644 index 260d2ef8..00000000 --- a/ansible/roles/ansible-role-moodle-master/tasks/setup-moodle.yml +++ /dev/null @@ -1,42 +0,0 @@ ---- - -- name: Create config if it does not exist - template: - src: config.php.j2 - dest: "{{ moodle_src_path }}/config.php" - mode: 0644 - owner: "{{ moodle_webserver_user }}" - group: "{{ moodle_webserver_group }}" - backup: true # Take a backup just in case - -# This is using our custom module to check moodle state -- name: Check the state of current moodle - check_moodle: - install_dir: "{{ moodle_src_path }}" - become: true - become_user: "{{ moodle_webserver_user }}" - register: moodle_state - -- name: Install Moodle - include_tasks: commands/moodle-install.yml - when: not moodle_state.moodle_is_installed|bool - -# Change password to make sure we are always in sync -# Watch out this will work on Moodle where the reset_password.php command accepts arguments -# Added the cache purge as sometimes old users are cached when db is replaced -- name: Change admin password - import_tasks: commands/moodle-resetpw.yml - when: moodle_state.moodle_is_installed|bool - -- name: Launch update (if needed) - import_tasks: commands/moodle-update.yml - when: moodle_state.moodle_is_installed|bool - and moodle_state.moodle_needs_upgrading|bool - -- name: Setup cron - cron: - name: "Moodle Cron" - minute: "{{ moodle_cron_periodicity }}" - job: "php {{ moodle_src_path }}/admin/cli/cron.php 2>&1" - user: "{{ moodle_webserver_user }}" - when: moodle_cron_periodicity is defined and moodle_cron_periodicity != 0 diff --git a/ansible/roles/ansible-role-moodle-master/tasks/setup-moosh.yml b/ansible/roles/ansible-role-moodle-master/tasks/setup-moosh.yml deleted file mode 100644 index 7320f09f..00000000 --- a/ansible/roles/ansible-role-moodle-master/tasks/setup-moosh.yml +++ /dev/null @@ -1,56 +0,0 @@ ---- -# Here we assume that composer has been installed -# See https://github.com/geerlingguy/ansible-role-composer for the role to install composer - -# This defines the usual path if not defined. We need to have an -# absolute path here as Redhat/Centos don't look at /usr/local/bin for binaries -- name: Define composer path to the default value if not defined - set_fact: - composer_path: "/usr/local/bin/composer" - when: composer_path is undefined - -- name: Check if composer is installed - command: "{{ composer_path }} --version" - register: composer_installed - failed_when: composer_installed.rc != 0 - changed_when: false - -- name: Check if Moosh is installed - stat: "path={{ moosh_install_directory }}" - register: moosh_dir_status - -- name: Moosh - get from repository and install or update - block: - - name: Moosh - clone repository - git: - repo: "{{ moosh_repository }}" - dest: "{{ moosh_install_directory }}" - version: "{{ moosh_branch |default(omit) }}" - update: true - depth: 1 - changed_when: false - - name: Moosh - Install moosh dependencies - command: "{{ composer_path }} install" - args: - chdir: "{{ moosh_install_directory }}" - changed_when: false - when: not moosh_dir_status.stat.exists - -- name: Make sure all moosh files belongs to the web user - file: - path: "{{ moosh_install_directory }}" - owner: "{{ moodle_webserver_user }}" - group: "{{ moodle_webserver_group }}" - mode: "u=rwx,g=rx,o=rx" - recurse: true - -# Note that the best place would be /usr/local/bin on Debian like system -# But unfortunately the apache user has only /usr/bin in its path -- name: Moosh - link to Moosh binary - file: - src: "{{ moosh_install_directory }}/moosh.php" - dest: /usr/bin/moosh - owner: "{{ moodle_webserver_user }}" - group: "{{ moodle_webserver_group }}" - state: link - changed_when: false diff --git a/ansible/roles/ansible-role-moodle-master/tasks/tools.yml b/ansible/roles/ansible-role-moodle-master/tasks/tools.yml deleted file mode 100644 index 2a29d1e0..00000000 --- a/ansible/roles/ansible-role-moodle-master/tasks/tools.yml +++ /dev/null @@ -1,29 +0,0 @@ ---- - -- name: Tools - do file dump - import_tasks: commands/moodle-filedump.yml - tags: ['never', 'task-filedump'] - -- name: Tools - do a database dump - import_tasks: commands/moodle-datadump.yml - tags: ['never', 'task-datadump'] - -- name: Tools - Retrieve the latest code on the given branch (including submodules) - import_tasks: commands/moodle-fetchsources.yml - tags: ['never', 'task-fetchsource', 'task-updatecode'] - -- name: Tools - Update Moodle - import_tasks: commands/moodle-update.yml - tags: ['never', 'task-updatecode'] - -- name: Tools - Change admin password - import_tasks: commands/moodle-resetpw.yml - tags: ['never', 'task-updatepassword'] - -- name: Tools - Bootstrap Search SOLR - import_tasks: commands/moodle-bootstrapsolr.yml - tags: ['never', 'task-bootstrapsolr'] - -- name: Tools - Setup SOLR config in Moodle - import_tasks: commands/moodle-setupsolr.yml - tags: ['never', 'setup-solr'] From 490b42243427199b88ad4844616bc88b641a857b Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 5 Jan 2021 15:26:33 -0800 Subject: [PATCH 014/129] Fix moodle nginx config to fix the CSS issues --- .../roles/nginx/templates/connectbox_moodle.conf.j2 | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 b/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 index cd23fa67..3c00fb09 100644 --- a/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 +++ b/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 @@ -12,8 +12,13 @@ server { try_files $uri $uri/ =404; } - location ~ \.php$ { - include snippets/fastcgi-php.conf; - fastcgi_pass unix:/var/run/php/php7.4-fpm.sock; + location ~ [^/]\.php(/|$) { + fastcgi_split_path_info ^(.+\.php)(/.+)$; + fastcgi_index index.php; + include fastcgi_params; + fastcgi_param PATH_INFO $fastcgi_path_info; + fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; + + fastcgi_pass unix:/var/run/php/php7.4-fpm.sock; } } From a00052635ac693a44de7d327ff386ce4cd6ca18d Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 5 Jan 2021 16:21:13 -0800 Subject: [PATCH 015/129] Set moodledata directory permissions to 755 which Moodle requires --- ansible/roles/moodle/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml index 7189efc7..29336941 100644 --- a/ansible/roles/moodle/tasks/main.yml +++ b/ansible/roles/moodle/tasks/main.yml @@ -14,7 +14,7 @@ path: /var/www/moodledata/ owner: www-data group: www-data - mode: 0664 + mode: 0775 - name: Copy config.php to working directory From be36f44af551345bcd1508d59f96fb89cd2f2d0c Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 5 Jan 2021 16:49:57 -0800 Subject: [PATCH 016/129] Delete Old, Then Create A Moodle Database From Template --- .../roles/ansible-postgresql/tasks/main.yml | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/ansible/roles/ansible-postgresql/tasks/main.yml b/ansible/roles/ansible-postgresql/tasks/main.yml index 697eeb35..ac540b7b 100644 --- a/ansible/roles/ansible-postgresql/tasks/main.yml +++ b/ansible/roles/ansible-postgresql/tasks/main.yml @@ -102,6 +102,31 @@ # become_user: postgres # failed_when: # - '"No such" not in result.stdout' + +- name: Delete Existing Moodle Database + command: psql -c "DROP DATABASE IF EXISTS moodle;" + become: true + become_user: postgres + +- name: Copy Default Postgres Database Dump To /tmp + template: + src: "{{ item.src }}" + dest: "/tmp/{{ item.dest }}" + mode: 0666 + owner: postgres + group: postgres + with_items: + - { src: "moodle_database_template.dump", dest: "moodle_database_template.dump" } + +- name: Create empty Moodle Database + command: psql -c "create database moodle;" + become: true + become_user: postgres + +- name: Install Default Postgres Database for Moodle + command: psql -f /tmp/moodle_database_template.dump moodle + become: true + become_user: postgres - name: Ensure PostgreSQL is running service: From 6668a84f4fe3274091e1f9690a0a9399adbf1dae Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 5 Jan 2021 16:50:10 -0800 Subject: [PATCH 017/129] Default Moodle Template Database --- .../templates/moodle_database_template.dump | 55440 ++++++++++++++++ 1 file changed, 55440 insertions(+) create mode 100644 ansible/roles/ansible-postgresql/templates/moodle_database_template.dump diff --git a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump new file mode 100644 index 00000000..8b06c84a --- /dev/null +++ b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump @@ -0,0 +1,55440 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 9.6.20 +-- Dumped by pg_dump version 9.6.20 + +-- Started on 2021-01-05 23:30:08 UTC + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- TOC entry 1 (class 3079 OID 13017) +-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: +-- + +CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; + + +-- +-- TOC entry 10532 (class 0 OID 0) +-- Dependencies: 1 +-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: +-- + +COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; + + +SET default_tablespace = ''; + +SET default_with_oids = false; + +-- +-- TOC entry 593 (class 1259 OID 19636) +-- Name: mdl_analytics_indicator_calc; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_analytics_indicator_calc ( + id bigint NOT NULL, + starttime bigint NOT NULL, + endtime bigint NOT NULL, + contextid bigint NOT NULL, + sampleorigin character varying(255) DEFAULT ''::character varying NOT NULL, + sampleid bigint NOT NULL, + indicator character varying(255) DEFAULT ''::character varying NOT NULL, + value numeric(10,2), + timecreated bigint NOT NULL +); + + +ALTER TABLE public.mdl_analytics_indicator_calc OWNER TO postgres; + +-- +-- TOC entry 10533 (class 0 OID 0) +-- Dependencies: 593 +-- Name: TABLE mdl_analytics_indicator_calc; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_analytics_indicator_calc IS 'Stored indicator calculations'; + + +-- +-- TOC entry 592 (class 1259 OID 19634) +-- Name: mdl_analytics_indicator_calc_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_analytics_indicator_calc_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_analytics_indicator_calc_id_seq OWNER TO postgres; + +-- +-- TOC entry 10534 (class 0 OID 0) +-- Dependencies: 592 +-- Name: mdl_analytics_indicator_calc_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_analytics_indicator_calc_id_seq OWNED BY public.mdl_analytics_indicator_calc.id; + + +-- +-- TOC entry 581 (class 1259 OID 19545) +-- Name: mdl_analytics_models; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_analytics_models ( + id bigint NOT NULL, + enabled smallint DEFAULT 0 NOT NULL, + trained smallint DEFAULT 0 NOT NULL, + name character varying(1333), + target character varying(255) DEFAULT ''::character varying NOT NULL, + indicators text NOT NULL, + timesplitting character varying(255), + predictionsprocessor character varying(255), + version bigint NOT NULL, + contextids text, + timecreated bigint, + timemodified bigint NOT NULL, + usermodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_analytics_models OWNER TO postgres; + +-- +-- TOC entry 10535 (class 0 OID 0) +-- Dependencies: 581 +-- Name: TABLE mdl_analytics_models; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_analytics_models IS 'Analytic models.'; + + +-- +-- TOC entry 580 (class 1259 OID 19543) +-- Name: mdl_analytics_models_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_analytics_models_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_analytics_models_id_seq OWNER TO postgres; + +-- +-- TOC entry 10536 (class 0 OID 0) +-- Dependencies: 580 +-- Name: mdl_analytics_models_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_analytics_models_id_seq OWNED BY public.mdl_analytics_models.id; + + +-- +-- TOC entry 583 (class 1259 OID 19560) +-- Name: mdl_analytics_models_log; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_analytics_models_log ( + id bigint NOT NULL, + modelid bigint NOT NULL, + version bigint NOT NULL, + evaluationmode character varying(50) DEFAULT ''::character varying NOT NULL, + target character varying(255) DEFAULT ''::character varying NOT NULL, + indicators text NOT NULL, + timesplitting character varying(255), + score numeric(10,5) DEFAULT 0 NOT NULL, + info text, + dir text NOT NULL, + timecreated bigint NOT NULL, + usermodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_analytics_models_log OWNER TO postgres; + +-- +-- TOC entry 10537 (class 0 OID 0) +-- Dependencies: 583 +-- Name: TABLE mdl_analytics_models_log; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_analytics_models_log IS 'Analytic models changes during evaluation.'; + + +-- +-- TOC entry 582 (class 1259 OID 19558) +-- Name: mdl_analytics_models_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_analytics_models_log_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_analytics_models_log_id_seq OWNER TO postgres; + +-- +-- TOC entry 10538 (class 0 OID 0) +-- Dependencies: 582 +-- Name: mdl_analytics_models_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_analytics_models_log_id_seq OWNED BY public.mdl_analytics_models_log.id; + + +-- +-- TOC entry 589 (class 1259 OID 19605) +-- Name: mdl_analytics_predict_samples; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_analytics_predict_samples ( + id bigint NOT NULL, + modelid bigint NOT NULL, + analysableid bigint NOT NULL, + timesplitting character varying(255) DEFAULT ''::character varying NOT NULL, + rangeindex bigint NOT NULL, + sampleids text NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_analytics_predict_samples OWNER TO postgres; + +-- +-- TOC entry 10539 (class 0 OID 0) +-- Dependencies: 589 +-- Name: TABLE mdl_analytics_predict_samples; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_analytics_predict_samples IS 'Samples already used for predictions.'; + + +-- +-- TOC entry 588 (class 1259 OID 19603) +-- Name: mdl_analytics_predict_samples_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_analytics_predict_samples_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_analytics_predict_samples_id_seq OWNER TO postgres; + +-- +-- TOC entry 10540 (class 0 OID 0) +-- Dependencies: 588 +-- Name: mdl_analytics_predict_samples_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_analytics_predict_samples_id_seq OWNED BY public.mdl_analytics_predict_samples.id; + + +-- +-- TOC entry 595 (class 1259 OID 19651) +-- Name: mdl_analytics_prediction_actions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_analytics_prediction_actions ( + id bigint NOT NULL, + predictionid bigint NOT NULL, + userid bigint NOT NULL, + actionname character varying(255) DEFAULT ''::character varying NOT NULL, + timecreated bigint NOT NULL +); + + +ALTER TABLE public.mdl_analytics_prediction_actions OWNER TO postgres; + +-- +-- TOC entry 10541 (class 0 OID 0) +-- Dependencies: 595 +-- Name: TABLE mdl_analytics_prediction_actions; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_analytics_prediction_actions IS 'Register of user actions over predictions.'; + + +-- +-- TOC entry 594 (class 1259 OID 19649) +-- Name: mdl_analytics_prediction_actions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_analytics_prediction_actions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_analytics_prediction_actions_id_seq OWNER TO postgres; + +-- +-- TOC entry 10542 (class 0 OID 0) +-- Dependencies: 594 +-- Name: mdl_analytics_prediction_actions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_analytics_prediction_actions_id_seq OWNED BY public.mdl_analytics_prediction_actions.id; + + +-- +-- TOC entry 585 (class 1259 OID 19575) +-- Name: mdl_analytics_predictions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_analytics_predictions ( + id bigint NOT NULL, + modelid bigint NOT NULL, + contextid bigint NOT NULL, + sampleid bigint NOT NULL, + rangeindex integer NOT NULL, + prediction numeric(10,2) NOT NULL, + predictionscore numeric(10,5) NOT NULL, + calculations text NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timestart bigint, + timeend bigint +); + + +ALTER TABLE public.mdl_analytics_predictions OWNER TO postgres; + +-- +-- TOC entry 10543 (class 0 OID 0) +-- Dependencies: 585 +-- Name: TABLE mdl_analytics_predictions; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_analytics_predictions IS 'Predictions'; + + +-- +-- TOC entry 584 (class 1259 OID 19573) +-- Name: mdl_analytics_predictions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_analytics_predictions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_analytics_predictions_id_seq OWNER TO postgres; + +-- +-- TOC entry 10544 (class 0 OID 0) +-- Dependencies: 584 +-- Name: mdl_analytics_predictions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_analytics_predictions_id_seq OWNED BY public.mdl_analytics_predictions.id; + + +-- +-- TOC entry 587 (class 1259 OID 19590) +-- Name: mdl_analytics_train_samples; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_analytics_train_samples ( + id bigint NOT NULL, + modelid bigint NOT NULL, + analysableid bigint NOT NULL, + timesplitting character varying(255) DEFAULT ''::character varying NOT NULL, + sampleids text NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_analytics_train_samples OWNER TO postgres; + +-- +-- TOC entry 10545 (class 0 OID 0) +-- Dependencies: 587 +-- Name: TABLE mdl_analytics_train_samples; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_analytics_train_samples IS 'Samples used for training'; + + +-- +-- TOC entry 586 (class 1259 OID 19588) +-- Name: mdl_analytics_train_samples_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_analytics_train_samples_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_analytics_train_samples_id_seq OWNER TO postgres; + +-- +-- TOC entry 10546 (class 0 OID 0) +-- Dependencies: 586 +-- Name: mdl_analytics_train_samples_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_analytics_train_samples_id_seq OWNED BY public.mdl_analytics_train_samples.id; + + +-- +-- TOC entry 599 (class 1259 OID 19675) +-- Name: mdl_analytics_used_analysables; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_analytics_used_analysables ( + id bigint NOT NULL, + modelid bigint NOT NULL, + action character varying(50) DEFAULT ''::character varying NOT NULL, + analysableid bigint NOT NULL, + firstanalysis bigint NOT NULL, + timeanalysed bigint NOT NULL +); + + +ALTER TABLE public.mdl_analytics_used_analysables OWNER TO postgres; + +-- +-- TOC entry 10547 (class 0 OID 0) +-- Dependencies: 599 +-- Name: TABLE mdl_analytics_used_analysables; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_analytics_used_analysables IS 'List of analysables used by each model'; + + +-- +-- TOC entry 598 (class 1259 OID 19673) +-- Name: mdl_analytics_used_analysables_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_analytics_used_analysables_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_analytics_used_analysables_id_seq OWNER TO postgres; + +-- +-- TOC entry 10548 (class 0 OID 0) +-- Dependencies: 598 +-- Name: mdl_analytics_used_analysables_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_analytics_used_analysables_id_seq OWNED BY public.mdl_analytics_used_analysables.id; + + +-- +-- TOC entry 591 (class 1259 OID 19621) +-- Name: mdl_analytics_used_files; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_analytics_used_files ( + id bigint NOT NULL, + modelid bigint DEFAULT 0 NOT NULL, + fileid bigint DEFAULT 0 NOT NULL, + action character varying(50) DEFAULT ''::character varying NOT NULL, + "time" bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_analytics_used_files OWNER TO postgres; + +-- +-- TOC entry 10549 (class 0 OID 0) +-- Dependencies: 591 +-- Name: TABLE mdl_analytics_used_files; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_analytics_used_files IS 'Files that have already been used for training and prediction.'; + + +-- +-- TOC entry 590 (class 1259 OID 19619) +-- Name: mdl_analytics_used_files_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_analytics_used_files_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_analytics_used_files_id_seq OWNER TO postgres; + +-- +-- TOC entry 10550 (class 0 OID 0) +-- Dependencies: 590 +-- Name: mdl_analytics_used_files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_analytics_used_files_id_seq OWNED BY public.mdl_analytics_used_files.id; + + +-- +-- TOC entry 671 (class 1259 OID 20234) +-- Name: mdl_assign; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_assign ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + intro text NOT NULL, + introformat smallint DEFAULT 0 NOT NULL, + alwaysshowdescription smallint DEFAULT 0 NOT NULL, + nosubmissions smallint DEFAULT 0 NOT NULL, + submissiondrafts smallint DEFAULT 0 NOT NULL, + sendnotifications smallint DEFAULT 0 NOT NULL, + sendlatenotifications smallint DEFAULT 0 NOT NULL, + duedate bigint DEFAULT 0 NOT NULL, + allowsubmissionsfromdate bigint DEFAULT 0 NOT NULL, + grade bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + requiresubmissionstatement smallint DEFAULT 0 NOT NULL, + completionsubmit smallint DEFAULT 0 NOT NULL, + cutoffdate bigint DEFAULT 0 NOT NULL, + gradingduedate bigint DEFAULT 0 NOT NULL, + teamsubmission smallint DEFAULT 0 NOT NULL, + requireallteammemberssubmit smallint DEFAULT 0 NOT NULL, + teamsubmissiongroupingid bigint DEFAULT 0 NOT NULL, + blindmarking smallint DEFAULT 0 NOT NULL, + hidegrader smallint DEFAULT 0 NOT NULL, + revealidentities smallint DEFAULT 0 NOT NULL, + attemptreopenmethod character varying(10) DEFAULT 'none'::character varying NOT NULL, + maxattempts integer DEFAULT '-1'::integer NOT NULL, + markingworkflow smallint DEFAULT 0 NOT NULL, + markingallocation smallint DEFAULT 0 NOT NULL, + sendstudentnotifications smallint DEFAULT 1 NOT NULL, + preventsubmissionnotingroup smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_assign OWNER TO postgres; + +-- +-- TOC entry 10551 (class 0 OID 0) +-- Dependencies: 671 +-- Name: TABLE mdl_assign; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_assign IS 'This table saves information about an instance of mod_assign in a course.'; + + +-- +-- TOC entry 675 (class 1259 OID 20295) +-- Name: mdl_assign_grades; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_assign_grades ( + id bigint NOT NULL, + assignment bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + grader bigint DEFAULT 0 NOT NULL, + grade numeric(10,5) DEFAULT 0, + attemptnumber bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_assign_grades OWNER TO postgres; + +-- +-- TOC entry 10552 (class 0 OID 0) +-- Dependencies: 675 +-- Name: TABLE mdl_assign_grades; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_assign_grades IS 'Grading information about a single assignment submission.'; + + +-- +-- TOC entry 674 (class 1259 OID 20293) +-- Name: mdl_assign_grades_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_assign_grades_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_assign_grades_id_seq OWNER TO postgres; + +-- +-- TOC entry 10553 (class 0 OID 0) +-- Dependencies: 674 +-- Name: mdl_assign_grades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_assign_grades_id_seq OWNED BY public.mdl_assign_grades.id; + + +-- +-- TOC entry 670 (class 1259 OID 20232) +-- Name: mdl_assign_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_assign_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_assign_id_seq OWNER TO postgres; + +-- +-- TOC entry 10554 (class 0 OID 0) +-- Dependencies: 670 +-- Name: mdl_assign_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_assign_id_seq OWNED BY public.mdl_assign.id; + + +-- +-- TOC entry 683 (class 1259 OID 20362) +-- Name: mdl_assign_overrides; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_assign_overrides ( + id bigint NOT NULL, + assignid bigint DEFAULT 0 NOT NULL, + groupid bigint, + userid bigint, + sortorder bigint, + allowsubmissionsfromdate bigint, + duedate bigint, + cutoffdate bigint +); + + +ALTER TABLE public.mdl_assign_overrides OWNER TO postgres; + +-- +-- TOC entry 10555 (class 0 OID 0) +-- Dependencies: 683 +-- Name: TABLE mdl_assign_overrides; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_assign_overrides IS 'The overrides to assign settings.'; + + +-- +-- TOC entry 682 (class 1259 OID 20360) +-- Name: mdl_assign_overrides_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_assign_overrides_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_assign_overrides_id_seq OWNER TO postgres; + +-- +-- TOC entry 10556 (class 0 OID 0) +-- Dependencies: 682 +-- Name: mdl_assign_overrides_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_assign_overrides_id_seq OWNED BY public.mdl_assign_overrides.id; + + +-- +-- TOC entry 677 (class 1259 OID 20314) +-- Name: mdl_assign_plugin_config; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_assign_plugin_config ( + id bigint NOT NULL, + assignment bigint DEFAULT 0 NOT NULL, + plugin character varying(28) DEFAULT ''::character varying NOT NULL, + subtype character varying(28) DEFAULT ''::character varying NOT NULL, + name character varying(28) DEFAULT ''::character varying NOT NULL, + value text +); + + +ALTER TABLE public.mdl_assign_plugin_config OWNER TO postgres; + +-- +-- TOC entry 10557 (class 0 OID 0) +-- Dependencies: 677 +-- Name: TABLE mdl_assign_plugin_config; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_assign_plugin_config IS 'Config data for an instance of a plugin in an assignment.'; + + +-- +-- TOC entry 676 (class 1259 OID 20312) +-- Name: mdl_assign_plugin_config_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_assign_plugin_config_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_assign_plugin_config_id_seq OWNER TO postgres; + +-- +-- TOC entry 10558 (class 0 OID 0) +-- Dependencies: 676 +-- Name: mdl_assign_plugin_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_assign_plugin_config_id_seq OWNED BY public.mdl_assign_plugin_config.id; + + +-- +-- TOC entry 673 (class 1259 OID 20275) +-- Name: mdl_assign_submission; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_assign_submission ( + id bigint NOT NULL, + assignment bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + status character varying(10), + groupid bigint DEFAULT 0 NOT NULL, + attemptnumber bigint DEFAULT 0 NOT NULL, + latest smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_assign_submission OWNER TO postgres; + +-- +-- TOC entry 10559 (class 0 OID 0) +-- Dependencies: 673 +-- Name: TABLE mdl_assign_submission; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_assign_submission IS 'This table keeps information about student interactions with the mod/assign. This is limited to metadata about a student submission but does not include the submission itself which is stored by plugins.'; + + +-- +-- TOC entry 672 (class 1259 OID 20273) +-- Name: mdl_assign_submission_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_assign_submission_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_assign_submission_id_seq OWNER TO postgres; + +-- +-- TOC entry 10560 (class 0 OID 0) +-- Dependencies: 672 +-- Name: mdl_assign_submission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_assign_submission_id_seq OWNED BY public.mdl_assign_submission.id; + + +-- +-- TOC entry 681 (class 1259 OID 20345) +-- Name: mdl_assign_user_flags; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_assign_user_flags ( + id bigint NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + assignment bigint DEFAULT 0 NOT NULL, + locked bigint DEFAULT 0 NOT NULL, + mailed smallint DEFAULT 0 NOT NULL, + extensionduedate bigint DEFAULT 0 NOT NULL, + workflowstate character varying(20), + allocatedmarker bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_assign_user_flags OWNER TO postgres; + +-- +-- TOC entry 10561 (class 0 OID 0) +-- Dependencies: 681 +-- Name: TABLE mdl_assign_user_flags; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_assign_user_flags IS 'List of flags that can be set for a single user in a single assignment.'; + + +-- +-- TOC entry 680 (class 1259 OID 20343) +-- Name: mdl_assign_user_flags_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_assign_user_flags_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_assign_user_flags_id_seq OWNER TO postgres; + +-- +-- TOC entry 10562 (class 0 OID 0) +-- Dependencies: 680 +-- Name: mdl_assign_user_flags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_assign_user_flags_id_seq OWNED BY public.mdl_assign_user_flags.id; + + +-- +-- TOC entry 679 (class 1259 OID 20333) +-- Name: mdl_assign_user_mapping; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_assign_user_mapping ( + id bigint NOT NULL, + assignment bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_assign_user_mapping OWNER TO postgres; + +-- +-- TOC entry 10563 (class 0 OID 0) +-- Dependencies: 679 +-- Name: TABLE mdl_assign_user_mapping; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_assign_user_mapping IS 'Map an assignment specific id number to a user'; + + +-- +-- TOC entry 678 (class 1259 OID 20331) +-- Name: mdl_assign_user_mapping_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_assign_user_mapping_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_assign_user_mapping_id_seq OWNER TO postgres; + +-- +-- TOC entry 10564 (class 0 OID 0) +-- Dependencies: 678 +-- Name: mdl_assign_user_mapping_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_assign_user_mapping_id_seq OWNED BY public.mdl_assign_user_mapping.id; + + +-- +-- TOC entry 997 (class 1259 OID 23083) +-- Name: mdl_assignfeedback_comments; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_assignfeedback_comments ( + id bigint NOT NULL, + assignment bigint DEFAULT 0 NOT NULL, + grade bigint DEFAULT 0 NOT NULL, + commenttext text, + commentformat smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_assignfeedback_comments OWNER TO postgres; + +-- +-- TOC entry 10565 (class 0 OID 0) +-- Dependencies: 997 +-- Name: TABLE mdl_assignfeedback_comments; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_assignfeedback_comments IS 'Text feedback for submitted assignments'; + + +-- +-- TOC entry 996 (class 1259 OID 23081) +-- Name: mdl_assignfeedback_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_assignfeedback_comments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_assignfeedback_comments_id_seq OWNER TO postgres; + +-- +-- TOC entry 10566 (class 0 OID 0) +-- Dependencies: 996 +-- Name: mdl_assignfeedback_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_assignfeedback_comments_id_seq OWNED BY public.mdl_assignfeedback_comments.id; + + +-- +-- TOC entry 1001 (class 1259 OID 23119) +-- Name: mdl_assignfeedback_editpdf_annot; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_assignfeedback_editpdf_annot ( + id bigint NOT NULL, + gradeid bigint DEFAULT 0 NOT NULL, + pageno bigint DEFAULT 0 NOT NULL, + x bigint DEFAULT 0, + y bigint DEFAULT 0, + endx bigint DEFAULT 0, + endy bigint DEFAULT 0, + path text, + type character varying(10) DEFAULT 'line'::character varying, + colour character varying(10) DEFAULT 'black'::character varying, + draft smallint DEFAULT 1 NOT NULL +); + + +ALTER TABLE public.mdl_assignfeedback_editpdf_annot OWNER TO postgres; + +-- +-- TOC entry 10567 (class 0 OID 0) +-- Dependencies: 1001 +-- Name: TABLE mdl_assignfeedback_editpdf_annot; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_assignfeedback_editpdf_annot IS 'stores annotations added to pdfs submitted by students'; + + +-- +-- TOC entry 1000 (class 1259 OID 23117) +-- Name: mdl_assignfeedback_editpdf_annot_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_assignfeedback_editpdf_annot_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_assignfeedback_editpdf_annot_id_seq OWNER TO postgres; + +-- +-- TOC entry 10568 (class 0 OID 0) +-- Dependencies: 1000 +-- Name: mdl_assignfeedback_editpdf_annot_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_assignfeedback_editpdf_annot_id_seq OWNED BY public.mdl_assignfeedback_editpdf_annot.id; + + +-- +-- TOC entry 999 (class 1259 OID 23099) +-- Name: mdl_assignfeedback_editpdf_cmnt; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_assignfeedback_editpdf_cmnt ( + id bigint NOT NULL, + gradeid bigint DEFAULT 0 NOT NULL, + x bigint DEFAULT 0, + y bigint DEFAULT 0, + width bigint DEFAULT 120, + rawtext text, + pageno bigint DEFAULT 0 NOT NULL, + colour character varying(10) DEFAULT 'black'::character varying, + draft smallint DEFAULT 1 NOT NULL +); + + +ALTER TABLE public.mdl_assignfeedback_editpdf_cmnt OWNER TO postgres; + +-- +-- TOC entry 10569 (class 0 OID 0) +-- Dependencies: 999 +-- Name: TABLE mdl_assignfeedback_editpdf_cmnt; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_assignfeedback_editpdf_cmnt IS 'Stores comments added to pdfs'; + + +-- +-- TOC entry 998 (class 1259 OID 23097) +-- Name: mdl_assignfeedback_editpdf_cmnt_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_assignfeedback_editpdf_cmnt_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_assignfeedback_editpdf_cmnt_id_seq OWNER TO postgres; + +-- +-- TOC entry 10570 (class 0 OID 0) +-- Dependencies: 998 +-- Name: mdl_assignfeedback_editpdf_cmnt_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_assignfeedback_editpdf_cmnt_id_seq OWNED BY public.mdl_assignfeedback_editpdf_cmnt.id; + + +-- +-- TOC entry 1005 (class 1259 OID 23156) +-- Name: mdl_assignfeedback_editpdf_queue; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_assignfeedback_editpdf_queue ( + id bigint NOT NULL, + submissionid bigint NOT NULL, + submissionattempt bigint NOT NULL, + attemptedconversions bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_assignfeedback_editpdf_queue OWNER TO postgres; + +-- +-- TOC entry 10571 (class 0 OID 0) +-- Dependencies: 1005 +-- Name: TABLE mdl_assignfeedback_editpdf_queue; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_assignfeedback_editpdf_queue IS 'Queue for processing.'; + + +-- +-- TOC entry 1004 (class 1259 OID 23154) +-- Name: mdl_assignfeedback_editpdf_queue_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_assignfeedback_editpdf_queue_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_assignfeedback_editpdf_queue_id_seq OWNER TO postgres; + +-- +-- TOC entry 10572 (class 0 OID 0) +-- Dependencies: 1004 +-- Name: mdl_assignfeedback_editpdf_queue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_assignfeedback_editpdf_queue_id_seq OWNED BY public.mdl_assignfeedback_editpdf_queue.id; + + +-- +-- TOC entry 1003 (class 1259 OID 23141) +-- Name: mdl_assignfeedback_editpdf_quick; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_assignfeedback_editpdf_quick ( + id bigint NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + rawtext text NOT NULL, + width bigint DEFAULT 120 NOT NULL, + colour character varying(10) DEFAULT 'yellow'::character varying +); + + +ALTER TABLE public.mdl_assignfeedback_editpdf_quick OWNER TO postgres; + +-- +-- TOC entry 10573 (class 0 OID 0) +-- Dependencies: 1003 +-- Name: TABLE mdl_assignfeedback_editpdf_quick; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_assignfeedback_editpdf_quick IS 'Stores teacher specified quicklist comments'; + + +-- +-- TOC entry 1002 (class 1259 OID 23139) +-- Name: mdl_assignfeedback_editpdf_quick_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_assignfeedback_editpdf_quick_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_assignfeedback_editpdf_quick_id_seq OWNER TO postgres; + +-- +-- TOC entry 10574 (class 0 OID 0) +-- Dependencies: 1002 +-- Name: mdl_assignfeedback_editpdf_quick_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_assignfeedback_editpdf_quick_id_seq OWNED BY public.mdl_assignfeedback_editpdf_quick.id; + + +-- +-- TOC entry 1007 (class 1259 OID 23166) +-- Name: mdl_assignfeedback_editpdf_rot; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_assignfeedback_editpdf_rot ( + id bigint NOT NULL, + gradeid bigint DEFAULT 0 NOT NULL, + pageno bigint DEFAULT 0 NOT NULL, + pathnamehash text NOT NULL, + isrotated smallint DEFAULT 0 NOT NULL, + degree bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_assignfeedback_editpdf_rot OWNER TO postgres; + +-- +-- TOC entry 10575 (class 0 OID 0) +-- Dependencies: 1007 +-- Name: TABLE mdl_assignfeedback_editpdf_rot; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_assignfeedback_editpdf_rot IS 'Stores rotation information of a page.'; + + +-- +-- TOC entry 1006 (class 1259 OID 23164) +-- Name: mdl_assignfeedback_editpdf_rot_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_assignfeedback_editpdf_rot_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_assignfeedback_editpdf_rot_id_seq OWNER TO postgres; + +-- +-- TOC entry 10576 (class 0 OID 0) +-- Dependencies: 1006 +-- Name: mdl_assignfeedback_editpdf_rot_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_assignfeedback_editpdf_rot_id_seq OWNED BY public.mdl_assignfeedback_editpdf_rot.id; + + +-- +-- TOC entry 1009 (class 1259 OID 23183) +-- Name: mdl_assignfeedback_file; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_assignfeedback_file ( + id bigint NOT NULL, + assignment bigint DEFAULT 0 NOT NULL, + grade bigint DEFAULT 0 NOT NULL, + numfiles bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_assignfeedback_file OWNER TO postgres; + +-- +-- TOC entry 10577 (class 0 OID 0) +-- Dependencies: 1009 +-- Name: TABLE mdl_assignfeedback_file; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_assignfeedback_file IS 'Stores info about the number of files submitted by a student.'; + + +-- +-- TOC entry 1008 (class 1259 OID 23181) +-- Name: mdl_assignfeedback_file_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_assignfeedback_file_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_assignfeedback_file_id_seq OWNER TO postgres; + +-- +-- TOC entry 10578 (class 0 OID 0) +-- Dependencies: 1008 +-- Name: mdl_assignfeedback_file_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_assignfeedback_file_id_seq OWNED BY public.mdl_assignfeedback_file.id; + + +-- +-- TOC entry 685 (class 1259 OID 20374) +-- Name: mdl_assignment; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_assignment ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + intro text NOT NULL, + introformat smallint DEFAULT 0 NOT NULL, + assignmenttype character varying(50) DEFAULT ''::character varying NOT NULL, + resubmit smallint DEFAULT 0 NOT NULL, + preventlate smallint DEFAULT 0 NOT NULL, + emailteachers smallint DEFAULT 0 NOT NULL, + var1 bigint DEFAULT 0, + var2 bigint DEFAULT 0, + var3 bigint DEFAULT 0, + var4 bigint DEFAULT 0, + var5 bigint DEFAULT 0, + maxbytes bigint DEFAULT 100000 NOT NULL, + timedue bigint DEFAULT 0 NOT NULL, + timeavailable bigint DEFAULT 0 NOT NULL, + grade bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_assignment OWNER TO postgres; + +-- +-- TOC entry 10579 (class 0 OID 0) +-- Dependencies: 685 +-- Name: TABLE mdl_assignment; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_assignment IS 'Defines assignments'; + + +-- +-- TOC entry 684 (class 1259 OID 20372) +-- Name: mdl_assignment_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_assignment_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_assignment_id_seq OWNER TO postgres; + +-- +-- TOC entry 10580 (class 0 OID 0) +-- Dependencies: 684 +-- Name: mdl_assignment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_assignment_id_seq OWNED BY public.mdl_assignment.id; + + +-- +-- TOC entry 687 (class 1259 OID 20403) +-- Name: mdl_assignment_submissions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_assignment_submissions ( + id bigint NOT NULL, + assignment bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + numfiles bigint DEFAULT 0 NOT NULL, + data1 text, + data2 text, + grade bigint DEFAULT 0 NOT NULL, + submissioncomment text NOT NULL, + format smallint DEFAULT 0 NOT NULL, + teacher bigint DEFAULT 0 NOT NULL, + timemarked bigint DEFAULT 0 NOT NULL, + mailed smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_assignment_submissions OWNER TO postgres; + +-- +-- TOC entry 10581 (class 0 OID 0) +-- Dependencies: 687 +-- Name: TABLE mdl_assignment_submissions; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_assignment_submissions IS 'Info about submitted assignments'; + + +-- +-- TOC entry 686 (class 1259 OID 20401) +-- Name: mdl_assignment_submissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_assignment_submissions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_assignment_submissions_id_seq OWNER TO postgres; + +-- +-- TOC entry 10582 (class 0 OID 0) +-- Dependencies: 686 +-- Name: mdl_assignment_submissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_assignment_submissions_id_seq OWNED BY public.mdl_assignment_submissions.id; + + +-- +-- TOC entry 689 (class 1259 OID 20428) +-- Name: mdl_assignment_upgrade; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_assignment_upgrade ( + id bigint NOT NULL, + oldcmid bigint DEFAULT 0 NOT NULL, + oldinstance bigint DEFAULT 0 NOT NULL, + newcmid bigint DEFAULT 0 NOT NULL, + newinstance bigint DEFAULT 0 NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_assignment_upgrade OWNER TO postgres; + +-- +-- TOC entry 10583 (class 0 OID 0) +-- Dependencies: 689 +-- Name: TABLE mdl_assignment_upgrade; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_assignment_upgrade IS 'Info about upgraded assignments'; + + +-- +-- TOC entry 688 (class 1259 OID 20426) +-- Name: mdl_assignment_upgrade_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_assignment_upgrade_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_assignment_upgrade_id_seq OWNER TO postgres; + +-- +-- TOC entry 10584 (class 0 OID 0) +-- Dependencies: 688 +-- Name: mdl_assignment_upgrade_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_assignment_upgrade_id_seq OWNED BY public.mdl_assignment_upgrade.id; + + +-- +-- TOC entry 993 (class 1259 OID 23054) +-- Name: mdl_assignsubmission_file; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_assignsubmission_file ( + id bigint NOT NULL, + assignment bigint DEFAULT 0 NOT NULL, + submission bigint DEFAULT 0 NOT NULL, + numfiles bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_assignsubmission_file OWNER TO postgres; + +-- +-- TOC entry 10585 (class 0 OID 0) +-- Dependencies: 993 +-- Name: TABLE mdl_assignsubmission_file; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_assignsubmission_file IS 'Info about file submissions for assignments'; + + +-- +-- TOC entry 992 (class 1259 OID 23052) +-- Name: mdl_assignsubmission_file_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_assignsubmission_file_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_assignsubmission_file_id_seq OWNER TO postgres; + +-- +-- TOC entry 10586 (class 0 OID 0) +-- Dependencies: 992 +-- Name: mdl_assignsubmission_file_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_assignsubmission_file_id_seq OWNED BY public.mdl_assignsubmission_file.id; + + +-- +-- TOC entry 995 (class 1259 OID 23067) +-- Name: mdl_assignsubmission_onlinetext; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_assignsubmission_onlinetext ( + id bigint NOT NULL, + assignment bigint DEFAULT 0 NOT NULL, + submission bigint DEFAULT 0 NOT NULL, + onlinetext text, + onlineformat smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_assignsubmission_onlinetext OWNER TO postgres; + +-- +-- TOC entry 10587 (class 0 OID 0) +-- Dependencies: 995 +-- Name: TABLE mdl_assignsubmission_onlinetext; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_assignsubmission_onlinetext IS 'Info about onlinetext submission'; + + +-- +-- TOC entry 994 (class 1259 OID 23065) +-- Name: mdl_assignsubmission_onlinetext_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_assignsubmission_onlinetext_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_assignsubmission_onlinetext_id_seq OWNER TO postgres; + +-- +-- TOC entry 10588 (class 0 OID 0) +-- Dependencies: 994 +-- Name: mdl_assignsubmission_onlinetext_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_assignsubmission_onlinetext_id_seq OWNED BY public.mdl_assignsubmission_onlinetext.id; + + +-- +-- TOC entry 887 (class 1259 OID 22306) +-- Name: mdl_auth_oauth2_linked_login; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_auth_oauth2_linked_login ( + id bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + usermodified bigint NOT NULL, + userid bigint NOT NULL, + issuerid bigint NOT NULL, + username character varying(255) DEFAULT ''::character varying NOT NULL, + email text NOT NULL, + confirmtoken character varying(64) DEFAULT ''::character varying NOT NULL, + confirmtokenexpires bigint +); + + +ALTER TABLE public.mdl_auth_oauth2_linked_login OWNER TO postgres; + +-- +-- TOC entry 10589 (class 0 OID 0) +-- Dependencies: 887 +-- Name: TABLE mdl_auth_oauth2_linked_login; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_auth_oauth2_linked_login IS 'Accounts linked to a users Moodle account.'; + + +-- +-- TOC entry 886 (class 1259 OID 22304) +-- Name: mdl_auth_oauth2_linked_login_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_auth_oauth2_linked_login_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_auth_oauth2_linked_login_id_seq OWNER TO postgres; + +-- +-- TOC entry 10590 (class 0 OID 0) +-- Dependencies: 886 +-- Name: mdl_auth_oauth2_linked_login_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_auth_oauth2_linked_login_id_seq OWNED BY public.mdl_auth_oauth2_linked_login.id; + + +-- +-- TOC entry 475 (class 1259 OID 18802) +-- Name: mdl_backup_controllers; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_backup_controllers ( + id bigint NOT NULL, + backupid character varying(32) DEFAULT ''::character varying NOT NULL, + operation character varying(20) DEFAULT 'backup'::character varying NOT NULL, + type character varying(10) DEFAULT ''::character varying NOT NULL, + itemid bigint NOT NULL, + format character varying(20) DEFAULT ''::character varying NOT NULL, + interactive smallint NOT NULL, + purpose smallint NOT NULL, + userid bigint NOT NULL, + status smallint NOT NULL, + execution smallint NOT NULL, + executiontime bigint NOT NULL, + checksum character varying(32) DEFAULT ''::character varying NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + progress numeric(15,14) DEFAULT 0 NOT NULL, + controller text NOT NULL +); + + +ALTER TABLE public.mdl_backup_controllers OWNER TO postgres; + +-- +-- TOC entry 10591 (class 0 OID 0) +-- Dependencies: 475 +-- Name: TABLE mdl_backup_controllers; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_backup_controllers IS 'To store the backup_controllers as they are used'; + + +-- +-- TOC entry 474 (class 1259 OID 18800) +-- Name: mdl_backup_controllers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_backup_controllers_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_backup_controllers_id_seq OWNER TO postgres; + +-- +-- TOC entry 10592 (class 0 OID 0) +-- Dependencies: 474 +-- Name: mdl_backup_controllers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_backup_controllers_id_seq OWNED BY public.mdl_backup_controllers.id; + + +-- +-- TOC entry 445 (class 1259 OID 18591) +-- Name: mdl_backup_courses; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_backup_courses ( + id bigint NOT NULL, + courseid bigint DEFAULT 0 NOT NULL, + laststarttime bigint DEFAULT 0 NOT NULL, + lastendtime bigint DEFAULT 0 NOT NULL, + laststatus character varying(1) DEFAULT '5'::character varying NOT NULL, + nextstarttime bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_backup_courses OWNER TO postgres; + +-- +-- TOC entry 10593 (class 0 OID 0) +-- Dependencies: 445 +-- Name: TABLE mdl_backup_courses; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_backup_courses IS 'To store every course backup status'; + + +-- +-- TOC entry 444 (class 1259 OID 18589) +-- Name: mdl_backup_courses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_backup_courses_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_backup_courses_id_seq OWNER TO postgres; + +-- +-- TOC entry 10594 (class 0 OID 0) +-- Dependencies: 444 +-- Name: mdl_backup_courses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_backup_courses_id_seq OWNED BY public.mdl_backup_courses.id; + + +-- +-- TOC entry 477 (class 1259 OID 18823) +-- Name: mdl_backup_logs; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_backup_logs ( + id bigint NOT NULL, + backupid character varying(32) DEFAULT ''::character varying NOT NULL, + loglevel smallint NOT NULL, + message text NOT NULL, + timecreated bigint NOT NULL +); + + +ALTER TABLE public.mdl_backup_logs OWNER TO postgres; + +-- +-- TOC entry 10595 (class 0 OID 0) +-- Dependencies: 477 +-- Name: TABLE mdl_backup_logs; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_backup_logs IS 'To store all the logs from backup and restore operations (by db logger)'; + + +-- +-- TOC entry 476 (class 1259 OID 18821) +-- Name: mdl_backup_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_backup_logs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_backup_logs_id_seq OWNER TO postgres; + +-- +-- TOC entry 10596 (class 0 OID 0) +-- Dependencies: 476 +-- Name: mdl_backup_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_backup_logs_id_seq OWNED BY public.mdl_backup_logs.id; + + +-- +-- TOC entry 491 (class 1259 OID 18929) +-- Name: mdl_badge; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_badge ( + id bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + description text, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + usercreated bigint NOT NULL, + usermodified bigint NOT NULL, + issuername character varying(255) DEFAULT ''::character varying NOT NULL, + issuerurl character varying(255) DEFAULT ''::character varying NOT NULL, + issuercontact character varying(255), + expiredate bigint, + expireperiod bigint, + type smallint DEFAULT 1 NOT NULL, + courseid bigint, + message text NOT NULL, + messagesubject text NOT NULL, + attachment smallint DEFAULT 1 NOT NULL, + notification smallint DEFAULT 1 NOT NULL, + status smallint DEFAULT 0 NOT NULL, + nextcron bigint, + version character varying(255), + language character varying(255), + imageauthorname character varying(255), + imageauthoremail character varying(255), + imageauthorurl character varying(255), + imagecaption text +); + + +ALTER TABLE public.mdl_badge OWNER TO postgres; + +-- +-- TOC entry 10597 (class 0 OID 0) +-- Dependencies: 491 +-- Name: TABLE mdl_badge; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_badge IS 'Defines badge'; + + +-- +-- TOC entry 513 (class 1259 OID 19097) +-- Name: mdl_badge_alignment; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_badge_alignment ( + id bigint NOT NULL, + badgeid bigint DEFAULT 0 NOT NULL, + targetname character varying(255) DEFAULT ''::character varying NOT NULL, + targeturl character varying(255) DEFAULT ''::character varying NOT NULL, + targetdescription text, + targetframework character varying(255), + targetcode character varying(255) +); + + +ALTER TABLE public.mdl_badge_alignment OWNER TO postgres; + +-- +-- TOC entry 10598 (class 0 OID 0) +-- Dependencies: 513 +-- Name: TABLE mdl_badge_alignment; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_badge_alignment IS 'Defines alignment for badges'; + + +-- +-- TOC entry 512 (class 1259 OID 19095) +-- Name: mdl_badge_alignment_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_badge_alignment_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_badge_alignment_id_seq OWNER TO postgres; + +-- +-- TOC entry 10599 (class 0 OID 0) +-- Dependencies: 512 +-- Name: mdl_badge_alignment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_badge_alignment_id_seq OWNED BY public.mdl_badge_alignment.id; + + +-- +-- TOC entry 505 (class 1259 OID 19041) +-- Name: mdl_badge_backpack; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_badge_backpack ( + id bigint NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + email character varying(100) DEFAULT ''::character varying NOT NULL, + backpackuid bigint NOT NULL, + autosync smallint DEFAULT 0 NOT NULL, + password character varying(50), + externalbackpackid bigint +); + + +ALTER TABLE public.mdl_badge_backpack OWNER TO postgres; + +-- +-- TOC entry 10600 (class 0 OID 0) +-- Dependencies: 505 +-- Name: TABLE mdl_badge_backpack; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_badge_backpack IS 'Defines settings for connecting external backpack'; + + +-- +-- TOC entry 504 (class 1259 OID 19039) +-- Name: mdl_badge_backpack_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_badge_backpack_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_badge_backpack_id_seq OWNER TO postgres; + +-- +-- TOC entry 10601 (class 0 OID 0) +-- Dependencies: 504 +-- Name: mdl_badge_backpack_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_badge_backpack_id_seq OWNED BY public.mdl_badge_backpack.id; + + +-- +-- TOC entry 507 (class 1259 OID 19054) +-- Name: mdl_badge_backpack_oauth2; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_badge_backpack_oauth2 ( + id bigint NOT NULL, + usermodified bigint DEFAULT 0 NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + userid bigint NOT NULL, + issuerid bigint NOT NULL, + externalbackpackid bigint NOT NULL, + token text NOT NULL, + refreshtoken text NOT NULL, + expires bigint, + scope text +); + + +ALTER TABLE public.mdl_badge_backpack_oauth2 OWNER TO postgres; + +-- +-- TOC entry 10602 (class 0 OID 0) +-- Dependencies: 507 +-- Name: TABLE mdl_badge_backpack_oauth2; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_badge_backpack_oauth2 IS 'Default comment for the table, please edit me'; + + +-- +-- TOC entry 506 (class 1259 OID 19052) +-- Name: mdl_badge_backpack_oauth2_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_badge_backpack_oauth2_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_badge_backpack_oauth2_id_seq OWNER TO postgres; + +-- +-- TOC entry 10603 (class 0 OID 0) +-- Dependencies: 506 +-- Name: mdl_badge_backpack_oauth2_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_badge_backpack_oauth2_id_seq OWNED BY public.mdl_badge_backpack_oauth2.id; + + +-- +-- TOC entry 493 (class 1259 OID 18953) +-- Name: mdl_badge_criteria; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_badge_criteria ( + id bigint NOT NULL, + badgeid bigint DEFAULT 0 NOT NULL, + criteriatype bigint, + method smallint DEFAULT 1 NOT NULL, + description text, + descriptionformat smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_badge_criteria OWNER TO postgres; + +-- +-- TOC entry 10604 (class 0 OID 0) +-- Dependencies: 493 +-- Name: TABLE mdl_badge_criteria; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_badge_criteria IS 'Defines criteria for issuing badges'; + + +-- +-- TOC entry 492 (class 1259 OID 18951) +-- Name: mdl_badge_criteria_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_badge_criteria_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_badge_criteria_id_seq OWNER TO postgres; + +-- +-- TOC entry 10605 (class 0 OID 0) +-- Dependencies: 492 +-- Name: mdl_badge_criteria_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_badge_criteria_id_seq OWNED BY public.mdl_badge_criteria.id; + + +-- +-- TOC entry 499 (class 1259 OID 19001) +-- Name: mdl_badge_criteria_met; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_badge_criteria_met ( + id bigint NOT NULL, + issuedid bigint, + critid bigint NOT NULL, + userid bigint NOT NULL, + datemet bigint NOT NULL +); + + +ALTER TABLE public.mdl_badge_criteria_met OWNER TO postgres; + +-- +-- TOC entry 10606 (class 0 OID 0) +-- Dependencies: 499 +-- Name: TABLE mdl_badge_criteria_met; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_badge_criteria_met IS 'Defines criteria that were met for an issued badge'; + + +-- +-- TOC entry 498 (class 1259 OID 18999) +-- Name: mdl_badge_criteria_met_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_badge_criteria_met_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_badge_criteria_met_id_seq OWNER TO postgres; + +-- +-- TOC entry 10607 (class 0 OID 0) +-- Dependencies: 498 +-- Name: mdl_badge_criteria_met_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_badge_criteria_met_id_seq OWNED BY public.mdl_badge_criteria_met.id; + + +-- +-- TOC entry 495 (class 1259 OID 18970) +-- Name: mdl_badge_criteria_param; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_badge_criteria_param ( + id bigint NOT NULL, + critid bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + value character varying(255) +); + + +ALTER TABLE public.mdl_badge_criteria_param OWNER TO postgres; + +-- +-- TOC entry 10608 (class 0 OID 0) +-- Dependencies: 495 +-- Name: TABLE mdl_badge_criteria_param; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_badge_criteria_param IS 'Defines parameters for badges criteria'; + + +-- +-- TOC entry 494 (class 1259 OID 18968) +-- Name: mdl_badge_criteria_param_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_badge_criteria_param_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_badge_criteria_param_id_seq OWNER TO postgres; + +-- +-- TOC entry 10609 (class 0 OID 0) +-- Dependencies: 494 +-- Name: mdl_badge_criteria_param_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_badge_criteria_param_id_seq OWNED BY public.mdl_badge_criteria_param.id; + + +-- +-- TOC entry 501 (class 1259 OID 19012) +-- Name: mdl_badge_endorsement; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_badge_endorsement ( + id bigint NOT NULL, + badgeid bigint DEFAULT 0 NOT NULL, + issuername character varying(255) DEFAULT ''::character varying NOT NULL, + issuerurl character varying(255) DEFAULT ''::character varying NOT NULL, + issueremail character varying(255) DEFAULT ''::character varying NOT NULL, + claimid character varying(255), + claimcomment text, + dateissued bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_badge_endorsement OWNER TO postgres; + +-- +-- TOC entry 10610 (class 0 OID 0) +-- Dependencies: 501 +-- Name: TABLE mdl_badge_endorsement; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_badge_endorsement IS 'Defines endorsement for badge'; + + +-- +-- TOC entry 500 (class 1259 OID 19010) +-- Name: mdl_badge_endorsement_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_badge_endorsement_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_badge_endorsement_id_seq OWNER TO postgres; + +-- +-- TOC entry 10611 (class 0 OID 0) +-- Dependencies: 500 +-- Name: mdl_badge_endorsement_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_badge_endorsement_id_seq OWNED BY public.mdl_badge_endorsement.id; + + +-- +-- TOC entry 509 (class 1259 OID 19072) +-- Name: mdl_badge_external; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_badge_external ( + id bigint NOT NULL, + backpackid bigint NOT NULL, + collectionid bigint NOT NULL, + entityid character varying(255), + assertion text +); + + +ALTER TABLE public.mdl_badge_external OWNER TO postgres; + +-- +-- TOC entry 10612 (class 0 OID 0) +-- Dependencies: 509 +-- Name: TABLE mdl_badge_external; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_badge_external IS 'Setting for external badges display'; + + +-- +-- TOC entry 517 (class 1259 OID 19124) +-- Name: mdl_badge_external_backpack; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_badge_external_backpack ( + id bigint NOT NULL, + backpackapiurl character varying(255) DEFAULT ''::character varying NOT NULL, + backpackweburl character varying(255) DEFAULT ''::character varying NOT NULL, + apiversion character varying(12) DEFAULT '1.0'::character varying NOT NULL, + sortorder bigint DEFAULT 0 NOT NULL, + password character varying(255), + oauth2_issuerid bigint +); + + +ALTER TABLE public.mdl_badge_external_backpack OWNER TO postgres; + +-- +-- TOC entry 10613 (class 0 OID 0) +-- Dependencies: 517 +-- Name: TABLE mdl_badge_external_backpack; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_badge_external_backpack IS 'Defines settings for site level backpacks that a user can connect to.'; + + +-- +-- TOC entry 516 (class 1259 OID 19122) +-- Name: mdl_badge_external_backpack_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_badge_external_backpack_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_badge_external_backpack_id_seq OWNER TO postgres; + +-- +-- TOC entry 10614 (class 0 OID 0) +-- Dependencies: 516 +-- Name: mdl_badge_external_backpack_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_badge_external_backpack_id_seq OWNED BY public.mdl_badge_external_backpack.id; + + +-- +-- TOC entry 508 (class 1259 OID 19070) +-- Name: mdl_badge_external_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_badge_external_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_badge_external_id_seq OWNER TO postgres; + +-- +-- TOC entry 10615 (class 0 OID 0) +-- Dependencies: 508 +-- Name: mdl_badge_external_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_badge_external_id_seq OWNED BY public.mdl_badge_external.id; + + +-- +-- TOC entry 511 (class 1259 OID 19084) +-- Name: mdl_badge_external_identifier; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_badge_external_identifier ( + id bigint NOT NULL, + sitebackpackid bigint NOT NULL, + internalid character varying(128) DEFAULT ''::character varying NOT NULL, + externalid character varying(128) DEFAULT ''::character varying NOT NULL, + type character varying(16) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_badge_external_identifier OWNER TO postgres; + +-- +-- TOC entry 10616 (class 0 OID 0) +-- Dependencies: 511 +-- Name: TABLE mdl_badge_external_identifier; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_badge_external_identifier IS 'Setting for external badges mappings'; + + +-- +-- TOC entry 510 (class 1259 OID 19082) +-- Name: mdl_badge_external_identifier_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_badge_external_identifier_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_badge_external_identifier_id_seq OWNER TO postgres; + +-- +-- TOC entry 10617 (class 0 OID 0) +-- Dependencies: 510 +-- Name: mdl_badge_external_identifier_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_badge_external_identifier_id_seq OWNED BY public.mdl_badge_external_identifier.id; + + +-- +-- TOC entry 490 (class 1259 OID 18927) +-- Name: mdl_badge_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_badge_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_badge_id_seq OWNER TO postgres; + +-- +-- TOC entry 10618 (class 0 OID 0) +-- Dependencies: 490 +-- Name: mdl_badge_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_badge_id_seq OWNED BY public.mdl_badge.id; + + +-- +-- TOC entry 497 (class 1259 OID 18983) +-- Name: mdl_badge_issued; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_badge_issued ( + id bigint NOT NULL, + badgeid bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + uniquehash text NOT NULL, + dateissued bigint DEFAULT 0 NOT NULL, + dateexpire bigint, + visible smallint DEFAULT 0 NOT NULL, + issuernotified bigint +); + + +ALTER TABLE public.mdl_badge_issued OWNER TO postgres; + +-- +-- TOC entry 10619 (class 0 OID 0) +-- Dependencies: 497 +-- Name: TABLE mdl_badge_issued; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_badge_issued IS 'Defines issued badges'; + + +-- +-- TOC entry 496 (class 1259 OID 18981) +-- Name: mdl_badge_issued_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_badge_issued_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_badge_issued_id_seq OWNER TO postgres; + +-- +-- TOC entry 10620 (class 0 OID 0) +-- Dependencies: 496 +-- Name: mdl_badge_issued_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_badge_issued_id_seq OWNED BY public.mdl_badge_issued.id; + + +-- +-- TOC entry 503 (class 1259 OID 19029) +-- Name: mdl_badge_manual_award; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_badge_manual_award ( + id bigint NOT NULL, + badgeid bigint NOT NULL, + recipientid bigint NOT NULL, + issuerid bigint NOT NULL, + issuerrole bigint NOT NULL, + datemet bigint NOT NULL +); + + +ALTER TABLE public.mdl_badge_manual_award OWNER TO postgres; + +-- +-- TOC entry 10621 (class 0 OID 0) +-- Dependencies: 503 +-- Name: TABLE mdl_badge_manual_award; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_badge_manual_award IS 'Track manual award criteria for badges'; + + +-- +-- TOC entry 502 (class 1259 OID 19027) +-- Name: mdl_badge_manual_award_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_badge_manual_award_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_badge_manual_award_id_seq OWNER TO postgres; + +-- +-- TOC entry 10622 (class 0 OID 0) +-- Dependencies: 502 +-- Name: mdl_badge_manual_award_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_badge_manual_award_id_seq OWNED BY public.mdl_badge_manual_award.id; + + +-- +-- TOC entry 515 (class 1259 OID 19112) +-- Name: mdl_badge_related; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_badge_related ( + id bigint NOT NULL, + badgeid bigint DEFAULT 0 NOT NULL, + relatedbadgeid bigint +); + + +ALTER TABLE public.mdl_badge_related OWNER TO postgres; + +-- +-- TOC entry 10623 (class 0 OID 0) +-- Dependencies: 515 +-- Name: TABLE mdl_badge_related; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_badge_related IS 'Defines badge related for badges'; + + +-- +-- TOC entry 514 (class 1259 OID 19110) +-- Name: mdl_badge_related_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_badge_related_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_badge_related_id_seq OWNER TO postgres; + +-- +-- TOC entry 10624 (class 0 OID 0) +-- Dependencies: 514 +-- Name: mdl_badge_related_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_badge_related_id_seq OWNED BY public.mdl_badge_related.id; + + +-- +-- TOC entry 447 (class 1259 OID 18605) +-- Name: mdl_block; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_block ( + id bigint NOT NULL, + name character varying(40) DEFAULT ''::character varying NOT NULL, + cron bigint DEFAULT 0 NOT NULL, + lastcron bigint DEFAULT 0 NOT NULL, + visible smallint DEFAULT 1 NOT NULL +); + + +ALTER TABLE public.mdl_block OWNER TO postgres; + +-- +-- TOC entry 10625 (class 0 OID 0) +-- Dependencies: 447 +-- Name: TABLE mdl_block; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_block IS 'contains all installed blocks'; + + +-- +-- TOC entry 446 (class 1259 OID 18603) +-- Name: mdl_block_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_block_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_block_id_seq OWNER TO postgres; + +-- +-- TOC entry 10626 (class 0 OID 0) +-- Dependencies: 446 +-- Name: mdl_block_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_block_id_seq OWNED BY public.mdl_block.id; + + +-- +-- TOC entry 449 (class 1259 OID 18618) +-- Name: mdl_block_instances; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_block_instances ( + id bigint NOT NULL, + blockname character varying(40) DEFAULT ''::character varying NOT NULL, + parentcontextid bigint NOT NULL, + showinsubcontexts smallint NOT NULL, + requiredbytheme smallint DEFAULT 0 NOT NULL, + pagetypepattern character varying(64) DEFAULT ''::character varying NOT NULL, + subpagepattern character varying(16), + defaultregion character varying(16) DEFAULT ''::character varying NOT NULL, + defaultweight bigint NOT NULL, + configdata text, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_block_instances OWNER TO postgres; + +-- +-- TOC entry 10627 (class 0 OID 0) +-- Dependencies: 449 +-- Name: TABLE mdl_block_instances; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_block_instances IS 'This table stores block instances. The type of block this is is given by the blockname column. The places this block instance appears is controlled by the parentcontexid, showinsubcontexts, pagetypepattern and subpagepattern fields. Where the block a'; + + +-- +-- TOC entry 448 (class 1259 OID 18616) +-- Name: mdl_block_instances_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_block_instances_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_block_instances_id_seq OWNER TO postgres; + +-- +-- TOC entry 10628 (class 0 OID 0) +-- Dependencies: 448 +-- Name: mdl_block_instances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_block_instances_id_seq OWNED BY public.mdl_block_instances.id; + + +-- +-- TOC entry 451 (class 1259 OID 18636) +-- Name: mdl_block_positions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_block_positions ( + id bigint NOT NULL, + blockinstanceid bigint NOT NULL, + contextid bigint NOT NULL, + pagetype character varying(64) DEFAULT ''::character varying NOT NULL, + subpage character varying(16) DEFAULT ''::character varying NOT NULL, + visible smallint NOT NULL, + region character varying(16) DEFAULT ''::character varying NOT NULL, + weight bigint NOT NULL +); + + +ALTER TABLE public.mdl_block_positions OWNER TO postgres; + +-- +-- TOC entry 10629 (class 0 OID 0) +-- Dependencies: 451 +-- Name: TABLE mdl_block_positions; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_block_positions IS 'Stores the position of a sticky block_instance on a another page than the one where it was added.'; + + +-- +-- TOC entry 450 (class 1259 OID 18634) +-- Name: mdl_block_positions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_block_positions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_block_positions_id_seq OWNER TO postgres; + +-- +-- TOC entry 10630 (class 0 OID 0) +-- Dependencies: 450 +-- Name: mdl_block_positions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_block_positions_id_seq OWNED BY public.mdl_block_positions.id; + + +-- +-- TOC entry 921 (class 1259 OID 22555) +-- Name: mdl_block_recent_activity; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_block_recent_activity ( + id bigint NOT NULL, + courseid bigint NOT NULL, + cmid bigint NOT NULL, + timecreated bigint NOT NULL, + userid bigint NOT NULL, + action smallint NOT NULL, + modname character varying(20) +); + + +ALTER TABLE public.mdl_block_recent_activity OWNER TO postgres; + +-- +-- TOC entry 10631 (class 0 OID 0) +-- Dependencies: 921 +-- Name: TABLE mdl_block_recent_activity; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_block_recent_activity IS 'Recent activity block'; + + +-- +-- TOC entry 920 (class 1259 OID 22553) +-- Name: mdl_block_recent_activity_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_block_recent_activity_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_block_recent_activity_id_seq OWNER TO postgres; + +-- +-- TOC entry 10632 (class 0 OID 0) +-- Dependencies: 920 +-- Name: mdl_block_recent_activity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_block_recent_activity_id_seq OWNED BY public.mdl_block_recent_activity.id; + + +-- +-- TOC entry 923 (class 1259 OID 22564) +-- Name: mdl_block_recentlyaccesseditems; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_block_recentlyaccesseditems ( + id bigint NOT NULL, + courseid bigint NOT NULL, + cmid bigint NOT NULL, + userid bigint NOT NULL, + timeaccess bigint NOT NULL +); + + +ALTER TABLE public.mdl_block_recentlyaccesseditems OWNER TO postgres; + +-- +-- TOC entry 10633 (class 0 OID 0) +-- Dependencies: 923 +-- Name: TABLE mdl_block_recentlyaccesseditems; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_block_recentlyaccesseditems IS 'Most recently accessed items accessed by a user'; + + +-- +-- TOC entry 922 (class 1259 OID 22562) +-- Name: mdl_block_recentlyaccesseditems_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_block_recentlyaccesseditems_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_block_recentlyaccesseditems_id_seq OWNER TO postgres; + +-- +-- TOC entry 10634 (class 0 OID 0) +-- Dependencies: 922 +-- Name: mdl_block_recentlyaccesseditems_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_block_recentlyaccesseditems_id_seq OWNED BY public.mdl_block_recentlyaccesseditems.id; + + +-- +-- TOC entry 925 (class 1259 OID 22576) +-- Name: mdl_block_rss_client; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_block_rss_client ( + id bigint NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + title text NOT NULL, + preferredtitle character varying(64) DEFAULT ''::character varying NOT NULL, + description text NOT NULL, + shared smallint DEFAULT 0 NOT NULL, + url character varying(255) DEFAULT ''::character varying NOT NULL, + skiptime bigint DEFAULT 0 NOT NULL, + skipuntil bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_block_rss_client OWNER TO postgres; + +-- +-- TOC entry 10635 (class 0 OID 0) +-- Dependencies: 925 +-- Name: TABLE mdl_block_rss_client; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_block_rss_client IS 'Remote news feed information. Contains the news feed id, the userid of the user who added the feed, the title of the feed itself and a description of the feed contents along with the url used to access the remote feed. Preferredtitle is a field for f'; + + +-- +-- TOC entry 924 (class 1259 OID 22574) +-- Name: mdl_block_rss_client_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_block_rss_client_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_block_rss_client_id_seq OWNER TO postgres; + +-- +-- TOC entry 10636 (class 0 OID 0) +-- Dependencies: 924 +-- Name: mdl_block_rss_client_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_block_rss_client_id_seq OWNED BY public.mdl_block_rss_client.id; + + +-- +-- TOC entry 465 (class 1259 OID 18733) +-- Name: mdl_blog_association; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_blog_association ( + id bigint NOT NULL, + contextid bigint NOT NULL, + blogid bigint NOT NULL +); + + +ALTER TABLE public.mdl_blog_association OWNER TO postgres; + +-- +-- TOC entry 10637 (class 0 OID 0) +-- Dependencies: 465 +-- Name: TABLE mdl_blog_association; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_blog_association IS 'Associations of blog entries with courses and module instances'; + + +-- +-- TOC entry 464 (class 1259 OID 18731) +-- Name: mdl_blog_association_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_blog_association_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_blog_association_id_seq OWNER TO postgres; + +-- +-- TOC entry 10638 (class 0 OID 0) +-- Dependencies: 464 +-- Name: mdl_blog_association_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_blog_association_id_seq OWNED BY public.mdl_blog_association.id; + + +-- +-- TOC entry 467 (class 1259 OID 18743) +-- Name: mdl_blog_external; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_blog_external ( + id bigint NOT NULL, + userid bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + description text, + url text NOT NULL, + filtertags character varying(255), + failedlastsync smallint DEFAULT 0 NOT NULL, + timemodified bigint, + timefetched bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_blog_external OWNER TO postgres; + +-- +-- TOC entry 10639 (class 0 OID 0) +-- Dependencies: 467 +-- Name: TABLE mdl_blog_external; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_blog_external IS 'External blog links used for RSS copying of blog entries to Moodle user blogs'; + + +-- +-- TOC entry 466 (class 1259 OID 18741) +-- Name: mdl_blog_external_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_blog_external_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_blog_external_id_seq OWNER TO postgres; + +-- +-- TOC entry 10640 (class 0 OID 0) +-- Dependencies: 466 +-- Name: mdl_blog_external_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_blog_external_id_seq OWNED BY public.mdl_blog_external.id; + + +-- +-- TOC entry 691 (class 1259 OID 20443) +-- Name: mdl_book; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_book ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + intro text, + introformat smallint DEFAULT 0 NOT NULL, + numbering smallint DEFAULT 0 NOT NULL, + navstyle smallint DEFAULT 1 NOT NULL, + customtitles smallint DEFAULT 0 NOT NULL, + revision bigint DEFAULT 0 NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_book OWNER TO postgres; + +-- +-- TOC entry 10641 (class 0 OID 0) +-- Dependencies: 691 +-- Name: TABLE mdl_book; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_book IS 'Defines book'; + + +-- +-- TOC entry 693 (class 1259 OID 20463) +-- Name: mdl_book_chapters; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_book_chapters ( + id bigint NOT NULL, + bookid bigint DEFAULT 0 NOT NULL, + pagenum bigint DEFAULT 0 NOT NULL, + subchapter bigint DEFAULT 0 NOT NULL, + title character varying(255) DEFAULT ''::character varying NOT NULL, + content text NOT NULL, + contentformat smallint DEFAULT 0 NOT NULL, + hidden smallint DEFAULT 0 NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + importsrc character varying(255) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_book_chapters OWNER TO postgres; + +-- +-- TOC entry 10642 (class 0 OID 0) +-- Dependencies: 693 +-- Name: TABLE mdl_book_chapters; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_book_chapters IS 'Defines book_chapters'; + + +-- +-- TOC entry 692 (class 1259 OID 20461) +-- Name: mdl_book_chapters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_book_chapters_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_book_chapters_id_seq OWNER TO postgres; + +-- +-- TOC entry 10643 (class 0 OID 0) +-- Dependencies: 692 +-- Name: mdl_book_chapters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_book_chapters_id_seq OWNED BY public.mdl_book_chapters.id; + + +-- +-- TOC entry 690 (class 1259 OID 20441) +-- Name: mdl_book_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_book_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_book_id_seq OWNER TO postgres; + +-- +-- TOC entry 10644 (class 0 OID 0) +-- Dependencies: 690 +-- Name: mdl_book_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_book_id_seq OWNED BY public.mdl_book.id; + + +-- +-- TOC entry 226 (class 1259 OID 16771) +-- Name: mdl_cache_filters; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_cache_filters ( + id bigint NOT NULL, + filter character varying(32) DEFAULT ''::character varying NOT NULL, + version bigint DEFAULT 0 NOT NULL, + md5key character varying(32) DEFAULT ''::character varying NOT NULL, + rawtext text NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_cache_filters OWNER TO postgres; + +-- +-- TOC entry 10645 (class 0 OID 0) +-- Dependencies: 226 +-- Name: TABLE mdl_cache_filters; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_cache_filters IS 'For keeping information about cached data'; + + +-- +-- TOC entry 225 (class 1259 OID 16769) +-- Name: mdl_cache_filters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_cache_filters_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_cache_filters_id_seq OWNER TO postgres; + +-- +-- TOC entry 10646 (class 0 OID 0) +-- Dependencies: 225 +-- Name: mdl_cache_filters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_cache_filters_id_seq OWNED BY public.mdl_cache_filters.id; + + +-- +-- TOC entry 415 (class 1259 OID 18372) +-- Name: mdl_cache_flags; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_cache_flags ( + id bigint NOT NULL, + flagtype character varying(255) DEFAULT ''::character varying NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + value text NOT NULL, + expiry bigint NOT NULL +); + + +ALTER TABLE public.mdl_cache_flags OWNER TO postgres; + +-- +-- TOC entry 10647 (class 0 OID 0) +-- Dependencies: 415 +-- Name: TABLE mdl_cache_flags; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_cache_flags IS 'Cache of time-sensitive flags'; + + +-- +-- TOC entry 414 (class 1259 OID 18370) +-- Name: mdl_cache_flags_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_cache_flags_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_cache_flags_id_seq OWNER TO postgres; + +-- +-- TOC entry 10648 (class 0 OID 0) +-- Dependencies: 414 +-- Name: mdl_cache_flags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_cache_flags_id_seq OWNED BY public.mdl_cache_flags.id; + + +-- +-- TOC entry 293 (class 1259 OID 17361) +-- Name: mdl_capabilities; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_capabilities ( + id bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + captype character varying(50) DEFAULT ''::character varying NOT NULL, + contextlevel bigint DEFAULT 0 NOT NULL, + component character varying(100) DEFAULT ''::character varying NOT NULL, + riskbitmask bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_capabilities OWNER TO postgres; + +-- +-- TOC entry 10649 (class 0 OID 0) +-- Dependencies: 293 +-- Name: TABLE mdl_capabilities; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_capabilities IS 'this defines all capabilities'; + + +-- +-- TOC entry 292 (class 1259 OID 17359) +-- Name: mdl_capabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_capabilities_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_capabilities_id_seq OWNER TO postgres; + +-- +-- TOC entry 10650 (class 0 OID 0) +-- Dependencies: 292 +-- Name: mdl_capabilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_capabilities_id_seq OWNED BY public.mdl_capabilities.id; + + +-- +-- TOC entry 695 (class 1259 OID 20483) +-- Name: mdl_chat; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_chat ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + intro text NOT NULL, + introformat smallint DEFAULT 0 NOT NULL, + keepdays bigint DEFAULT 0 NOT NULL, + studentlogs smallint DEFAULT 0 NOT NULL, + chattime bigint DEFAULT 0 NOT NULL, + schedule smallint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_chat OWNER TO postgres; + +-- +-- TOC entry 10651 (class 0 OID 0) +-- Dependencies: 695 +-- Name: TABLE mdl_chat; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_chat IS 'Each of these is a chat room'; + + +-- +-- TOC entry 694 (class 1259 OID 20481) +-- Name: mdl_chat_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_chat_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_chat_id_seq OWNER TO postgres; + +-- +-- TOC entry 10652 (class 0 OID 0) +-- Dependencies: 694 +-- Name: mdl_chat_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_chat_id_seq OWNED BY public.mdl_chat.id; + + +-- +-- TOC entry 697 (class 1259 OID 20503) +-- Name: mdl_chat_messages; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_chat_messages ( + id bigint NOT NULL, + chatid bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + groupid bigint DEFAULT 0 NOT NULL, + issystem smallint DEFAULT 0 NOT NULL, + message text NOT NULL, + "timestamp" bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_chat_messages OWNER TO postgres; + +-- +-- TOC entry 10653 (class 0 OID 0) +-- Dependencies: 697 +-- Name: TABLE mdl_chat_messages; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_chat_messages IS 'Stores all the actual chat messages'; + + +-- +-- TOC entry 699 (class 1259 OID 20523) +-- Name: mdl_chat_messages_current; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_chat_messages_current ( + id bigint NOT NULL, + chatid bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + groupid bigint DEFAULT 0 NOT NULL, + issystem smallint DEFAULT 0 NOT NULL, + message text NOT NULL, + "timestamp" bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_chat_messages_current OWNER TO postgres; + +-- +-- TOC entry 10654 (class 0 OID 0) +-- Dependencies: 699 +-- Name: TABLE mdl_chat_messages_current; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_chat_messages_current IS 'Stores current session'; + + +-- +-- TOC entry 698 (class 1259 OID 20521) +-- Name: mdl_chat_messages_current_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_chat_messages_current_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_chat_messages_current_id_seq OWNER TO postgres; + +-- +-- TOC entry 10655 (class 0 OID 0) +-- Dependencies: 698 +-- Name: mdl_chat_messages_current_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_chat_messages_current_id_seq OWNED BY public.mdl_chat_messages_current.id; + + +-- +-- TOC entry 696 (class 1259 OID 20501) +-- Name: mdl_chat_messages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_chat_messages_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_chat_messages_id_seq OWNER TO postgres; + +-- +-- TOC entry 10656 (class 0 OID 0) +-- Dependencies: 696 +-- Name: mdl_chat_messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_chat_messages_id_seq OWNED BY public.mdl_chat_messages.id; + + +-- +-- TOC entry 701 (class 1259 OID 20543) +-- Name: mdl_chat_users; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_chat_users ( + id bigint NOT NULL, + chatid bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + groupid bigint DEFAULT 0 NOT NULL, + version character varying(16) DEFAULT ''::character varying NOT NULL, + ip character varying(45) DEFAULT ''::character varying NOT NULL, + firstping bigint DEFAULT 0 NOT NULL, + lastping bigint DEFAULT 0 NOT NULL, + lastmessageping bigint DEFAULT 0 NOT NULL, + sid character varying(32) DEFAULT ''::character varying NOT NULL, + course bigint DEFAULT 0 NOT NULL, + lang character varying(30) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_chat_users OWNER TO postgres; + +-- +-- TOC entry 10657 (class 0 OID 0) +-- Dependencies: 701 +-- Name: TABLE mdl_chat_users; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_chat_users IS 'Keeps track of which users are in which chat rooms'; + + +-- +-- TOC entry 700 (class 1259 OID 20541) +-- Name: mdl_chat_users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_chat_users_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_chat_users_id_seq OWNER TO postgres; + +-- +-- TOC entry 10658 (class 0 OID 0) +-- Dependencies: 700 +-- Name: mdl_chat_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_chat_users_id_seq OWNED BY public.mdl_chat_users.id; + + +-- +-- TOC entry 703 (class 1259 OID 20566) +-- Name: mdl_choice; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_choice ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + intro text NOT NULL, + introformat smallint DEFAULT 0 NOT NULL, + publish smallint DEFAULT 0 NOT NULL, + showresults smallint DEFAULT 0 NOT NULL, + display smallint DEFAULT 0 NOT NULL, + allowupdate smallint DEFAULT 0 NOT NULL, + allowmultiple smallint DEFAULT 0 NOT NULL, + showunanswered smallint DEFAULT 0 NOT NULL, + includeinactive smallint DEFAULT 1 NOT NULL, + limitanswers smallint DEFAULT 0 NOT NULL, + timeopen bigint DEFAULT 0 NOT NULL, + timeclose bigint DEFAULT 0 NOT NULL, + showpreview smallint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + completionsubmit smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_choice OWNER TO postgres; + +-- +-- TOC entry 10659 (class 0 OID 0) +-- Dependencies: 703 +-- Name: TABLE mdl_choice; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_choice IS 'Available choices are stored here'; + + +-- +-- TOC entry 707 (class 1259 OID 20609) +-- Name: mdl_choice_answers; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_choice_answers ( + id bigint NOT NULL, + choiceid bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + optionid bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_choice_answers OWNER TO postgres; + +-- +-- TOC entry 10660 (class 0 OID 0) +-- Dependencies: 707 +-- Name: TABLE mdl_choice_answers; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_choice_answers IS 'choices performed by users'; + + +-- +-- TOC entry 706 (class 1259 OID 20607) +-- Name: mdl_choice_answers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_choice_answers_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_choice_answers_id_seq OWNER TO postgres; + +-- +-- TOC entry 10661 (class 0 OID 0) +-- Dependencies: 706 +-- Name: mdl_choice_answers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_choice_answers_id_seq OWNED BY public.mdl_choice_answers.id; + + +-- +-- TOC entry 702 (class 1259 OID 20564) +-- Name: mdl_choice_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_choice_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_choice_id_seq OWNER TO postgres; + +-- +-- TOC entry 10662 (class 0 OID 0) +-- Dependencies: 702 +-- Name: mdl_choice_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_choice_id_seq OWNED BY public.mdl_choice.id; + + +-- +-- TOC entry 705 (class 1259 OID 20594) +-- Name: mdl_choice_options; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_choice_options ( + id bigint NOT NULL, + choiceid bigint DEFAULT 0 NOT NULL, + text text, + maxanswers bigint DEFAULT 0, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_choice_options OWNER TO postgres; + +-- +-- TOC entry 10663 (class 0 OID 0) +-- Dependencies: 705 +-- Name: TABLE mdl_choice_options; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_choice_options IS 'available options to choice'; + + +-- +-- TOC entry 704 (class 1259 OID 20592) +-- Name: mdl_choice_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_choice_options_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_choice_options_id_seq OWNER TO postgres; + +-- +-- TOC entry 10664 (class 0 OID 0) +-- Dependencies: 704 +-- Name: mdl_choice_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_choice_options_id_seq OWNED BY public.mdl_choice_options.id; + + +-- +-- TOC entry 407 (class 1259 OID 18318) +-- Name: mdl_cohort; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_cohort ( + id bigint NOT NULL, + contextid bigint NOT NULL, + name character varying(254) DEFAULT ''::character varying NOT NULL, + idnumber character varying(100), + description text, + descriptionformat smallint NOT NULL, + visible smallint DEFAULT 1 NOT NULL, + component character varying(100) DEFAULT ''::character varying NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + theme character varying(50) +); + + +ALTER TABLE public.mdl_cohort OWNER TO postgres; + +-- +-- TOC entry 10665 (class 0 OID 0) +-- Dependencies: 407 +-- Name: TABLE mdl_cohort; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_cohort IS 'Each record represents one cohort (aka site-wide group).'; + + +-- +-- TOC entry 406 (class 1259 OID 18316) +-- Name: mdl_cohort_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_cohort_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_cohort_id_seq OWNER TO postgres; + +-- +-- TOC entry 10666 (class 0 OID 0) +-- Dependencies: 406 +-- Name: mdl_cohort_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_cohort_id_seq OWNED BY public.mdl_cohort.id; + + +-- +-- TOC entry 409 (class 1259 OID 18333) +-- Name: mdl_cohort_members; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_cohort_members ( + id bigint NOT NULL, + cohortid bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + timeadded bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_cohort_members OWNER TO postgres; + +-- +-- TOC entry 10667 (class 0 OID 0) +-- Dependencies: 409 +-- Name: TABLE mdl_cohort_members; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_cohort_members IS 'Link a user to a cohort.'; + + +-- +-- TOC entry 408 (class 1259 OID 18331) +-- Name: mdl_cohort_members_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_cohort_members_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_cohort_members_id_seq OWNER TO postgres; + +-- +-- TOC entry 10668 (class 0 OID 0) +-- Dependencies: 408 +-- Name: mdl_cohort_members_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_cohort_members_id_seq OWNED BY public.mdl_cohort_members.id; + + +-- +-- TOC entry 453 (class 1259 OID 18650) +-- Name: mdl_comments; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_comments ( + id bigint NOT NULL, + contextid bigint NOT NULL, + component character varying(255), + commentarea character varying(255) DEFAULT ''::character varying NOT NULL, + itemid bigint NOT NULL, + content text NOT NULL, + format smallint DEFAULT 0 NOT NULL, + userid bigint NOT NULL, + timecreated bigint NOT NULL +); + + +ALTER TABLE public.mdl_comments OWNER TO postgres; + +-- +-- TOC entry 10669 (class 0 OID 0) +-- Dependencies: 453 +-- Name: TABLE mdl_comments; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_comments IS 'moodle comments module'; + + +-- +-- TOC entry 452 (class 1259 OID 18648) +-- Name: mdl_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_comments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_comments_id_seq OWNER TO postgres; + +-- +-- TOC entry 10670 (class 0 OID 0) +-- Dependencies: 452 +-- Name: mdl_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_comments_id_seq OWNED BY public.mdl_comments.id; + + +-- +-- TOC entry 537 (class 1259 OID 19276) +-- Name: mdl_competency; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_competency ( + id bigint NOT NULL, + shortname character varying(100), + description text, + descriptionformat smallint DEFAULT 0 NOT NULL, + idnumber character varying(100), + competencyframeworkid bigint NOT NULL, + parentid bigint DEFAULT 0 NOT NULL, + path character varying(255) DEFAULT ''::character varying NOT NULL, + sortorder bigint NOT NULL, + ruletype character varying(100), + ruleoutcome smallint DEFAULT 0 NOT NULL, + ruleconfig text, + scaleid bigint, + scaleconfiguration text, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + usermodified bigint +); + + +ALTER TABLE public.mdl_competency OWNER TO postgres; + +-- +-- TOC entry 10671 (class 0 OID 0) +-- Dependencies: 537 +-- Name: TABLE mdl_competency; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_competency IS 'This table contains the master record of each competency in a framework'; + + +-- +-- TOC entry 543 (class 1259 OID 19317) +-- Name: mdl_competency_coursecomp; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_competency_coursecomp ( + id bigint NOT NULL, + courseid bigint NOT NULL, + competencyid bigint NOT NULL, + ruleoutcome smallint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + usermodified bigint NOT NULL, + sortorder bigint NOT NULL +); + + +ALTER TABLE public.mdl_competency_coursecomp OWNER TO postgres; + +-- +-- TOC entry 10672 (class 0 OID 0) +-- Dependencies: 543 +-- Name: TABLE mdl_competency_coursecomp; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_competency_coursecomp IS 'Link a competency to a course.'; + + +-- +-- TOC entry 542 (class 1259 OID 19315) +-- Name: mdl_competency_coursecomp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_competency_coursecomp_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_competency_coursecomp_id_seq OWNER TO postgres; + +-- +-- TOC entry 10673 (class 0 OID 0) +-- Dependencies: 542 +-- Name: mdl_competency_coursecomp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_competency_coursecomp_id_seq OWNED BY public.mdl_competency_coursecomp.id; + + +-- +-- TOC entry 539 (class 1259 OID 19293) +-- Name: mdl_competency_coursecompsetting; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_competency_coursecompsetting ( + id bigint NOT NULL, + courseid bigint NOT NULL, + pushratingstouserplans smallint, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + usermodified bigint +); + + +ALTER TABLE public.mdl_competency_coursecompsetting OWNER TO postgres; + +-- +-- TOC entry 10674 (class 0 OID 0) +-- Dependencies: 539 +-- Name: TABLE mdl_competency_coursecompsetting; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_competency_coursecompsetting IS 'This table contains the course specific settings for competencies.'; + + +-- +-- TOC entry 538 (class 1259 OID 19291) +-- Name: mdl_competency_coursecompsetting_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_competency_coursecompsetting_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_competency_coursecompsetting_id_seq OWNER TO postgres; + +-- +-- TOC entry 10675 (class 0 OID 0) +-- Dependencies: 538 +-- Name: mdl_competency_coursecompsetting_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_competency_coursecompsetting_id_seq OWNED BY public.mdl_competency_coursecompsetting.id; + + +-- +-- TOC entry 563 (class 1259 OID 19425) +-- Name: mdl_competency_evidence; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_competency_evidence ( + id bigint NOT NULL, + usercompetencyid bigint NOT NULL, + contextid bigint NOT NULL, + action smallint NOT NULL, + actionuserid bigint, + descidentifier character varying(255) DEFAULT ''::character varying NOT NULL, + desccomponent character varying(255) DEFAULT ''::character varying NOT NULL, + desca text, + url character varying(255), + grade bigint, + note text, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + usermodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_competency_evidence OWNER TO postgres; + +-- +-- TOC entry 10676 (class 0 OID 0) +-- Dependencies: 563 +-- Name: TABLE mdl_competency_evidence; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_competency_evidence IS 'The evidence linked to a user competency'; + + +-- +-- TOC entry 562 (class 1259 OID 19423) +-- Name: mdl_competency_evidence_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_competency_evidence_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_competency_evidence_id_seq OWNER TO postgres; + +-- +-- TOC entry 10677 (class 0 OID 0) +-- Dependencies: 562 +-- Name: mdl_competency_evidence_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_competency_evidence_id_seq OWNED BY public.mdl_competency_evidence.id; + + +-- +-- TOC entry 541 (class 1259 OID 19302) +-- Name: mdl_competency_framework; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_competency_framework ( + id bigint NOT NULL, + shortname character varying(100), + contextid bigint NOT NULL, + idnumber character varying(100), + description text, + descriptionformat smallint DEFAULT 0 NOT NULL, + scaleid bigint, + scaleconfiguration text NOT NULL, + visible smallint DEFAULT 1 NOT NULL, + taxonomies character varying(255) DEFAULT ''::character varying NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + usermodified bigint +); + + +ALTER TABLE public.mdl_competency_framework OWNER TO postgres; + +-- +-- TOC entry 10678 (class 0 OID 0) +-- Dependencies: 541 +-- Name: TABLE mdl_competency_framework; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_competency_framework IS 'List of competency frameworks.'; + + +-- +-- TOC entry 540 (class 1259 OID 19300) +-- Name: mdl_competency_framework_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_competency_framework_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_competency_framework_id_seq OWNER TO postgres; + +-- +-- TOC entry 10679 (class 0 OID 0) +-- Dependencies: 540 +-- Name: mdl_competency_framework_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_competency_framework_id_seq OWNED BY public.mdl_competency_framework.id; + + +-- +-- TOC entry 536 (class 1259 OID 19274) +-- Name: mdl_competency_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_competency_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_competency_id_seq OWNER TO postgres; + +-- +-- TOC entry 10680 (class 0 OID 0) +-- Dependencies: 536 +-- Name: mdl_competency_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_competency_id_seq OWNED BY public.mdl_competency.id; + + +-- +-- TOC entry 569 (class 1259 OID 19462) +-- Name: mdl_competency_modulecomp; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_competency_modulecomp ( + id bigint NOT NULL, + cmid bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + usermodified bigint NOT NULL, + sortorder bigint NOT NULL, + competencyid bigint NOT NULL, + ruleoutcome smallint NOT NULL +); + + +ALTER TABLE public.mdl_competency_modulecomp OWNER TO postgres; + +-- +-- TOC entry 10681 (class 0 OID 0) +-- Dependencies: 569 +-- Name: TABLE mdl_competency_modulecomp; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_competency_modulecomp IS 'Link a competency to a module.'; + + +-- +-- TOC entry 568 (class 1259 OID 19460) +-- Name: mdl_competency_modulecomp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_competency_modulecomp_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_competency_modulecomp_id_seq OWNER TO postgres; + +-- +-- TOC entry 10682 (class 0 OID 0) +-- Dependencies: 568 +-- Name: mdl_competency_modulecomp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_competency_modulecomp_id_seq OWNED BY public.mdl_competency_modulecomp.id; + + +-- +-- TOC entry 545 (class 1259 OID 19329) +-- Name: mdl_competency_plan; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_competency_plan ( + id bigint NOT NULL, + name character varying(100) DEFAULT ''::character varying NOT NULL, + description text, + descriptionformat smallint DEFAULT 0 NOT NULL, + userid bigint NOT NULL, + templateid bigint, + origtemplateid bigint, + status smallint NOT NULL, + duedate bigint DEFAULT 0, + reviewerid bigint, + timecreated bigint NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + usermodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_competency_plan OWNER TO postgres; + +-- +-- TOC entry 10683 (class 0 OID 0) +-- Dependencies: 545 +-- Name: TABLE mdl_competency_plan; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_competency_plan IS 'Learning plans'; + + +-- +-- TOC entry 544 (class 1259 OID 19327) +-- Name: mdl_competency_plan_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_competency_plan_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_competency_plan_id_seq OWNER TO postgres; + +-- +-- TOC entry 10684 (class 0 OID 0) +-- Dependencies: 544 +-- Name: mdl_competency_plan_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_competency_plan_id_seq OWNED BY public.mdl_competency_plan.id; + + +-- +-- TOC entry 561 (class 1259 OID 19416) +-- Name: mdl_competency_plancomp; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_competency_plancomp ( + id bigint NOT NULL, + planid bigint NOT NULL, + competencyid bigint NOT NULL, + sortorder bigint, + timecreated bigint NOT NULL, + timemodified bigint, + usermodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_competency_plancomp OWNER TO postgres; + +-- +-- TOC entry 10685 (class 0 OID 0) +-- Dependencies: 561 +-- Name: TABLE mdl_competency_plancomp; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_competency_plancomp IS 'Plan competencies'; + + +-- +-- TOC entry 560 (class 1259 OID 19414) +-- Name: mdl_competency_plancomp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_competency_plancomp_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_competency_plancomp_id_seq OWNER TO postgres; + +-- +-- TOC entry 10686 (class 0 OID 0) +-- Dependencies: 560 +-- Name: mdl_competency_plancomp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_competency_plancomp_id_seq OWNED BY public.mdl_competency_plancomp.id; + + +-- +-- TOC entry 553 (class 1259 OID 19380) +-- Name: mdl_competency_relatedcomp; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_competency_relatedcomp ( + id bigint NOT NULL, + competencyid bigint NOT NULL, + relatedcompetencyid bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint, + usermodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_competency_relatedcomp OWNER TO postgres; + +-- +-- TOC entry 10687 (class 0 OID 0) +-- Dependencies: 553 +-- Name: TABLE mdl_competency_relatedcomp; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_competency_relatedcomp IS 'Related competencies'; + + +-- +-- TOC entry 552 (class 1259 OID 19378) +-- Name: mdl_competency_relatedcomp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_competency_relatedcomp_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_competency_relatedcomp_id_seq OWNER TO postgres; + +-- +-- TOC entry 10688 (class 0 OID 0) +-- Dependencies: 552 +-- Name: mdl_competency_relatedcomp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_competency_relatedcomp_id_seq OWNED BY public.mdl_competency_relatedcomp.id; + + +-- +-- TOC entry 547 (class 1259 OID 19347) +-- Name: mdl_competency_template; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_competency_template ( + id bigint NOT NULL, + shortname character varying(100), + contextid bigint NOT NULL, + description text, + descriptionformat smallint DEFAULT 0 NOT NULL, + visible smallint DEFAULT 1 NOT NULL, + duedate bigint, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + usermodified bigint +); + + +ALTER TABLE public.mdl_competency_template OWNER TO postgres; + +-- +-- TOC entry 10689 (class 0 OID 0) +-- Dependencies: 547 +-- Name: TABLE mdl_competency_template; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_competency_template IS 'Learning plan templates.'; + + +-- +-- TOC entry 546 (class 1259 OID 19345) +-- Name: mdl_competency_template_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_competency_template_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_competency_template_id_seq OWNER TO postgres; + +-- +-- TOC entry 10690 (class 0 OID 0) +-- Dependencies: 546 +-- Name: mdl_competency_template_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_competency_template_id_seq OWNED BY public.mdl_competency_template.id; + + +-- +-- TOC entry 551 (class 1259 OID 19370) +-- Name: mdl_competency_templatecohort; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_competency_templatecohort ( + id bigint NOT NULL, + templateid bigint NOT NULL, + cohortid bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + usermodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_competency_templatecohort OWNER TO postgres; + +-- +-- TOC entry 10691 (class 0 OID 0) +-- Dependencies: 551 +-- Name: TABLE mdl_competency_templatecohort; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_competency_templatecohort IS 'Default comment for the table, please edit me'; + + +-- +-- TOC entry 550 (class 1259 OID 19368) +-- Name: mdl_competency_templatecohort_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_competency_templatecohort_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_competency_templatecohort_id_seq OWNER TO postgres; + +-- +-- TOC entry 10692 (class 0 OID 0) +-- Dependencies: 550 +-- Name: mdl_competency_templatecohort_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_competency_templatecohort_id_seq OWNED BY public.mdl_competency_templatecohort.id; + + +-- +-- TOC entry 549 (class 1259 OID 19360) +-- Name: mdl_competency_templatecomp; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_competency_templatecomp ( + id bigint NOT NULL, + templateid bigint NOT NULL, + competencyid bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + usermodified bigint NOT NULL, + sortorder bigint +); + + +ALTER TABLE public.mdl_competency_templatecomp OWNER TO postgres; + +-- +-- TOC entry 10693 (class 0 OID 0) +-- Dependencies: 549 +-- Name: TABLE mdl_competency_templatecomp; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_competency_templatecomp IS 'Link a competency to a learning plan template.'; + + +-- +-- TOC entry 548 (class 1259 OID 19358) +-- Name: mdl_competency_templatecomp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_competency_templatecomp_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_competency_templatecomp_id_seq OWNER TO postgres; + +-- +-- TOC entry 10694 (class 0 OID 0) +-- Dependencies: 548 +-- Name: mdl_competency_templatecomp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_competency_templatecomp_id_seq OWNED BY public.mdl_competency_templatecomp.id; + + +-- +-- TOC entry 555 (class 1259 OID 19388) +-- Name: mdl_competency_usercomp; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_competency_usercomp ( + id bigint NOT NULL, + userid bigint NOT NULL, + competencyid bigint NOT NULL, + status smallint DEFAULT 0 NOT NULL, + reviewerid bigint, + proficiency smallint, + grade bigint, + timecreated bigint NOT NULL, + timemodified bigint, + usermodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_competency_usercomp OWNER TO postgres; + +-- +-- TOC entry 10695 (class 0 OID 0) +-- Dependencies: 555 +-- Name: TABLE mdl_competency_usercomp; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_competency_usercomp IS 'User competencies'; + + +-- +-- TOC entry 554 (class 1259 OID 19386) +-- Name: mdl_competency_usercomp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_competency_usercomp_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_competency_usercomp_id_seq OWNER TO postgres; + +-- +-- TOC entry 10696 (class 0 OID 0) +-- Dependencies: 554 +-- Name: mdl_competency_usercomp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_competency_usercomp_id_seq OWNED BY public.mdl_competency_usercomp.id; + + +-- +-- TOC entry 557 (class 1259 OID 19398) +-- Name: mdl_competency_usercompcourse; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_competency_usercompcourse ( + id bigint NOT NULL, + userid bigint NOT NULL, + courseid bigint NOT NULL, + competencyid bigint NOT NULL, + proficiency smallint, + grade bigint, + timecreated bigint NOT NULL, + timemodified bigint, + usermodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_competency_usercompcourse OWNER TO postgres; + +-- +-- TOC entry 10697 (class 0 OID 0) +-- Dependencies: 557 +-- Name: TABLE mdl_competency_usercompcourse; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_competency_usercompcourse IS 'User competencies in a course'; + + +-- +-- TOC entry 556 (class 1259 OID 19396) +-- Name: mdl_competency_usercompcourse_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_competency_usercompcourse_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_competency_usercompcourse_id_seq OWNER TO postgres; + +-- +-- TOC entry 10698 (class 0 OID 0) +-- Dependencies: 556 +-- Name: mdl_competency_usercompcourse_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_competency_usercompcourse_id_seq OWNED BY public.mdl_competency_usercompcourse.id; + + +-- +-- TOC entry 559 (class 1259 OID 19407) +-- Name: mdl_competency_usercompplan; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_competency_usercompplan ( + id bigint NOT NULL, + userid bigint NOT NULL, + competencyid bigint NOT NULL, + planid bigint NOT NULL, + proficiency smallint, + grade bigint, + sortorder bigint, + timecreated bigint NOT NULL, + timemodified bigint, + usermodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_competency_usercompplan OWNER TO postgres; + +-- +-- TOC entry 10699 (class 0 OID 0) +-- Dependencies: 559 +-- Name: TABLE mdl_competency_usercompplan; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_competency_usercompplan IS 'User competencies plans'; + + +-- +-- TOC entry 558 (class 1259 OID 19405) +-- Name: mdl_competency_usercompplan_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_competency_usercompplan_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_competency_usercompplan_id_seq OWNER TO postgres; + +-- +-- TOC entry 10700 (class 0 OID 0) +-- Dependencies: 558 +-- Name: mdl_competency_usercompplan_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_competency_usercompplan_id_seq OWNED BY public.mdl_competency_usercompplan.id; + + +-- +-- TOC entry 565 (class 1259 OID 19439) +-- Name: mdl_competency_userevidence; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_competency_userevidence ( + id bigint NOT NULL, + userid bigint NOT NULL, + name character varying(100) DEFAULT ''::character varying NOT NULL, + description text NOT NULL, + descriptionformat smallint NOT NULL, + url text NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + usermodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_competency_userevidence OWNER TO postgres; + +-- +-- TOC entry 10701 (class 0 OID 0) +-- Dependencies: 565 +-- Name: TABLE mdl_competency_userevidence; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_competency_userevidence IS 'The evidence of prior learning'; + + +-- +-- TOC entry 564 (class 1259 OID 19437) +-- Name: mdl_competency_userevidence_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_competency_userevidence_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_competency_userevidence_id_seq OWNER TO postgres; + +-- +-- TOC entry 10702 (class 0 OID 0) +-- Dependencies: 564 +-- Name: mdl_competency_userevidence_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_competency_userevidence_id_seq OWNED BY public.mdl_competency_userevidence.id; + + +-- +-- TOC entry 567 (class 1259 OID 19452) +-- Name: mdl_competency_userevidencecomp; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_competency_userevidencecomp ( + id bigint NOT NULL, + userevidenceid bigint NOT NULL, + competencyid bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + usermodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_competency_userevidencecomp OWNER TO postgres; + +-- +-- TOC entry 10703 (class 0 OID 0) +-- Dependencies: 567 +-- Name: TABLE mdl_competency_userevidencecomp; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_competency_userevidencecomp IS 'Relationship between user evidence and competencies'; + + +-- +-- TOC entry 566 (class 1259 OID 19450) +-- Name: mdl_competency_userevidencecomp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_competency_userevidencecomp_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_competency_userevidencecomp_id_seq OWNER TO postgres; + +-- +-- TOC entry 10704 (class 0 OID 0) +-- Dependencies: 566 +-- Name: mdl_competency_userevidencecomp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_competency_userevidencecomp_id_seq OWNED BY public.mdl_competency_userevidencecomp.id; + + +-- +-- TOC entry 186 (class 1259 OID 16387) +-- Name: mdl_config; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_config ( + id bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + value text NOT NULL +); + + +ALTER TABLE public.mdl_config OWNER TO postgres; + +-- +-- TOC entry 10705 (class 0 OID 0) +-- Dependencies: 186 +-- Name: TABLE mdl_config; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_config IS 'Moodle configuration variables'; + + +-- +-- TOC entry 185 (class 1259 OID 16385) +-- Name: mdl_config_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_config_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_config_id_seq OWNER TO postgres; + +-- +-- TOC entry 10706 (class 0 OID 0) +-- Dependencies: 185 +-- Name: mdl_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_config_id_seq OWNED BY public.mdl_config.id; + + +-- +-- TOC entry 190 (class 1259 OID 16414) +-- Name: mdl_config_log; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_config_log ( + id bigint NOT NULL, + userid bigint NOT NULL, + timemodified bigint NOT NULL, + plugin character varying(100), + name character varying(100) DEFAULT ''::character varying NOT NULL, + value text, + oldvalue text +); + + +ALTER TABLE public.mdl_config_log OWNER TO postgres; + +-- +-- TOC entry 10707 (class 0 OID 0) +-- Dependencies: 190 +-- Name: TABLE mdl_config_log; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_config_log IS 'Changes done in server configuration through admin UI'; + + +-- +-- TOC entry 189 (class 1259 OID 16412) +-- Name: mdl_config_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_config_log_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_config_log_id_seq OWNER TO postgres; + +-- +-- TOC entry 10708 (class 0 OID 0) +-- Dependencies: 189 +-- Name: mdl_config_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_config_log_id_seq OWNED BY public.mdl_config_log.id; + + +-- +-- TOC entry 188 (class 1259 OID 16400) +-- Name: mdl_config_plugins; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_config_plugins ( + id bigint NOT NULL, + plugin character varying(100) DEFAULT 'core'::character varying NOT NULL, + name character varying(100) DEFAULT ''::character varying NOT NULL, + value text NOT NULL +); + + +ALTER TABLE public.mdl_config_plugins OWNER TO postgres; + +-- +-- TOC entry 10709 (class 0 OID 0) +-- Dependencies: 188 +-- Name: TABLE mdl_config_plugins; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_config_plugins IS 'Moodle modules and plugins configuration variables'; + + +-- +-- TOC entry 187 (class 1259 OID 16398) +-- Name: mdl_config_plugins_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_config_plugins_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_config_plugins_id_seq OWNER TO postgres; + +-- +-- TOC entry 10710 (class 0 OID 0) +-- Dependencies: 187 +-- Name: mdl_config_plugins_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_config_plugins_id_seq OWNED BY public.mdl_config_plugins.id; + + +-- +-- TOC entry 621 (class 1259 OID 19829) +-- Name: mdl_contentbank_content; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_contentbank_content ( + id bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + contenttype character varying(100) DEFAULT ''::character varying NOT NULL, + contextid bigint NOT NULL, + instanceid bigint, + configdata text, + usercreated bigint NOT NULL, + usermodified bigint, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 +); + + +ALTER TABLE public.mdl_contentbank_content OWNER TO postgres; + +-- +-- TOC entry 10711 (class 0 OID 0) +-- Dependencies: 621 +-- Name: TABLE mdl_contentbank_content; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_contentbank_content IS 'This table stores content data in the content bank.'; + + +-- +-- TOC entry 620 (class 1259 OID 19827) +-- Name: mdl_contentbank_content_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_contentbank_content_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_contentbank_content_id_seq OWNER TO postgres; + +-- +-- TOC entry 10712 (class 0 OID 0) +-- Dependencies: 620 +-- Name: mdl_contentbank_content_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_contentbank_content_id_seq OWNED BY public.mdl_contentbank_content.id; + + +-- +-- TOC entry 290 (class 1259 OID 17338) +-- Name: mdl_context; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_context ( + id bigint NOT NULL, + contextlevel bigint DEFAULT 0 NOT NULL, + instanceid bigint DEFAULT 0 NOT NULL, + path character varying(255), + depth smallint DEFAULT 0 NOT NULL, + locked smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_context OWNER TO postgres; + +-- +-- TOC entry 10713 (class 0 OID 0) +-- Dependencies: 290 +-- Name: TABLE mdl_context; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_context IS 'one of these must be set'; + + +-- +-- TOC entry 289 (class 1259 OID 17336) +-- Name: mdl_context_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_context_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_context_id_seq OWNER TO postgres; + +-- +-- TOC entry 10714 (class 0 OID 0) +-- Dependencies: 289 +-- Name: mdl_context_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_context_id_seq OWNED BY public.mdl_context.id; + + +-- +-- TOC entry 291 (class 1259 OID 17352) +-- Name: mdl_context_temp; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_context_temp ( + id bigint NOT NULL, + path character varying(255) DEFAULT ''::character varying NOT NULL, + depth smallint NOT NULL, + locked smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_context_temp OWNER TO postgres; + +-- +-- TOC entry 10715 (class 0 OID 0) +-- Dependencies: 291 +-- Name: TABLE mdl_context_temp; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_context_temp IS 'Used by build_context_path() in upgrade and cron to keep context depths and paths in sync.'; + + +-- +-- TOC entry 194 (class 1259 OID 16443) +-- Name: mdl_course; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_course ( + id bigint NOT NULL, + category bigint DEFAULT 0 NOT NULL, + sortorder bigint DEFAULT 0 NOT NULL, + fullname character varying(254) DEFAULT ''::character varying NOT NULL, + shortname character varying(255) DEFAULT ''::character varying NOT NULL, + idnumber character varying(100) DEFAULT ''::character varying NOT NULL, + summary text, + summaryformat smallint DEFAULT 0 NOT NULL, + format character varying(21) DEFAULT 'topics'::character varying NOT NULL, + showgrades smallint DEFAULT 1 NOT NULL, + newsitems integer DEFAULT 1 NOT NULL, + startdate bigint DEFAULT 0 NOT NULL, + enddate bigint DEFAULT 0 NOT NULL, + relativedatesmode smallint DEFAULT 0 NOT NULL, + marker bigint DEFAULT 0 NOT NULL, + maxbytes bigint DEFAULT 0 NOT NULL, + legacyfiles smallint DEFAULT 0 NOT NULL, + showreports smallint DEFAULT 0 NOT NULL, + visible smallint DEFAULT 1 NOT NULL, + visibleold smallint DEFAULT 1 NOT NULL, + groupmode smallint DEFAULT 0 NOT NULL, + groupmodeforce smallint DEFAULT 0 NOT NULL, + defaultgroupingid bigint DEFAULT 0 NOT NULL, + lang character varying(30) DEFAULT ''::character varying NOT NULL, + calendartype character varying(30) DEFAULT ''::character varying NOT NULL, + theme character varying(50) DEFAULT ''::character varying NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + requested smallint DEFAULT 0 NOT NULL, + enablecompletion smallint DEFAULT 0 NOT NULL, + completionnotify smallint DEFAULT 0 NOT NULL, + cacherev bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_course OWNER TO postgres; + +-- +-- TOC entry 10716 (class 0 OID 0) +-- Dependencies: 194 +-- Name: TABLE mdl_course; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_course IS 'Central course table'; + + +-- +-- TOC entry 196 (class 1259 OID 16488) +-- Name: mdl_course_categories; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_course_categories ( + id bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + idnumber character varying(100), + description text, + descriptionformat smallint DEFAULT 0 NOT NULL, + parent bigint DEFAULT 0 NOT NULL, + sortorder bigint DEFAULT 0 NOT NULL, + coursecount bigint DEFAULT 0 NOT NULL, + visible smallint DEFAULT 1 NOT NULL, + visibleold smallint DEFAULT 1 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + depth bigint DEFAULT 0 NOT NULL, + path character varying(255) DEFAULT ''::character varying NOT NULL, + theme character varying(50) +); + + +ALTER TABLE public.mdl_course_categories OWNER TO postgres; + +-- +-- TOC entry 10717 (class 0 OID 0) +-- Dependencies: 196 +-- Name: TABLE mdl_course_categories; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_course_categories IS 'Course categories'; + + +-- +-- TOC entry 195 (class 1259 OID 16486) +-- Name: mdl_course_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_course_categories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_course_categories_id_seq OWNER TO postgres; + +-- +-- TOC entry 10718 (class 0 OID 0) +-- Dependencies: 195 +-- Name: mdl_course_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_course_categories_id_seq OWNED BY public.mdl_course_categories.id; + + +-- +-- TOC entry 198 (class 1259 OID 16510) +-- Name: mdl_course_completion_aggr_methd; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_course_completion_aggr_methd ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + criteriatype bigint, + method smallint DEFAULT 0 NOT NULL, + value numeric(10,5) +); + + +ALTER TABLE public.mdl_course_completion_aggr_methd OWNER TO postgres; + +-- +-- TOC entry 10719 (class 0 OID 0) +-- Dependencies: 198 +-- Name: TABLE mdl_course_completion_aggr_methd; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_course_completion_aggr_methd IS 'Course completion aggregation methods for criteria'; + + +-- +-- TOC entry 197 (class 1259 OID 16508) +-- Name: mdl_course_completion_aggr_methd_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_course_completion_aggr_methd_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_course_completion_aggr_methd_id_seq OWNER TO postgres; + +-- +-- TOC entry 10720 (class 0 OID 0) +-- Dependencies: 197 +-- Name: mdl_course_completion_aggr_methd_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_course_completion_aggr_methd_id_seq OWNED BY public.mdl_course_completion_aggr_methd.id; + + +-- +-- TOC entry 202 (class 1259 OID 16534) +-- Name: mdl_course_completion_crit_compl; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_course_completion_crit_compl ( + id bigint NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + course bigint DEFAULT 0 NOT NULL, + criteriaid bigint DEFAULT 0 NOT NULL, + gradefinal numeric(10,5), + unenroled bigint, + timecompleted bigint +); + + +ALTER TABLE public.mdl_course_completion_crit_compl OWNER TO postgres; + +-- +-- TOC entry 10721 (class 0 OID 0) +-- Dependencies: 202 +-- Name: TABLE mdl_course_completion_crit_compl; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_course_completion_crit_compl IS 'Course completion user records'; + + +-- +-- TOC entry 201 (class 1259 OID 16532) +-- Name: mdl_course_completion_crit_compl_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_course_completion_crit_compl_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_course_completion_crit_compl_id_seq OWNER TO postgres; + +-- +-- TOC entry 10722 (class 0 OID 0) +-- Dependencies: 201 +-- Name: mdl_course_completion_crit_compl_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_course_completion_crit_compl_id_seq OWNED BY public.mdl_course_completion_crit_compl.id; + + +-- +-- TOC entry 200 (class 1259 OID 16523) +-- Name: mdl_course_completion_criteria; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_course_completion_criteria ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + criteriatype bigint DEFAULT 0 NOT NULL, + module character varying(100), + moduleinstance bigint, + courseinstance bigint, + enrolperiod bigint, + timeend bigint, + gradepass numeric(10,5), + role bigint +); + + +ALTER TABLE public.mdl_course_completion_criteria OWNER TO postgres; + +-- +-- TOC entry 10723 (class 0 OID 0) +-- Dependencies: 200 +-- Name: TABLE mdl_course_completion_criteria; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_course_completion_criteria IS 'Course completion criteria'; + + +-- +-- TOC entry 199 (class 1259 OID 16521) +-- Name: mdl_course_completion_criteria_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_course_completion_criteria_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_course_completion_criteria_id_seq OWNER TO postgres; + +-- +-- TOC entry 10724 (class 0 OID 0) +-- Dependencies: 199 +-- Name: mdl_course_completion_criteria_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_course_completion_criteria_id_seq OWNED BY public.mdl_course_completion_criteria.id; + + +-- +-- TOC entry 579 (class 1259 OID 19527) +-- Name: mdl_course_completion_defaults; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_course_completion_defaults ( + id bigint NOT NULL, + course bigint NOT NULL, + module bigint NOT NULL, + completion smallint DEFAULT 0 NOT NULL, + completionview smallint DEFAULT 0 NOT NULL, + completionusegrade smallint DEFAULT 0 NOT NULL, + completionexpected bigint DEFAULT 0 NOT NULL, + customrules text +); + + +ALTER TABLE public.mdl_course_completion_defaults OWNER TO postgres; + +-- +-- TOC entry 10725 (class 0 OID 0) +-- Dependencies: 579 +-- Name: TABLE mdl_course_completion_defaults; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_course_completion_defaults IS 'Default settings for activities completion'; + + +-- +-- TOC entry 578 (class 1259 OID 19525) +-- Name: mdl_course_completion_defaults_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_course_completion_defaults_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_course_completion_defaults_id_seq OWNER TO postgres; + +-- +-- TOC entry 10726 (class 0 OID 0) +-- Dependencies: 578 +-- Name: mdl_course_completion_defaults_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_course_completion_defaults_id_seq OWNED BY public.mdl_course_completion_defaults.id; + + +-- +-- TOC entry 204 (class 1259 OID 16550) +-- Name: mdl_course_completions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_course_completions ( + id bigint NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + course bigint DEFAULT 0 NOT NULL, + timeenrolled bigint DEFAULT 0 NOT NULL, + timestarted bigint DEFAULT 0 NOT NULL, + timecompleted bigint, + reaggregate bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_course_completions OWNER TO postgres; + +-- +-- TOC entry 10727 (class 0 OID 0) +-- Dependencies: 204 +-- Name: TABLE mdl_course_completions; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_course_completions IS 'Course completion records'; + + +-- +-- TOC entry 203 (class 1259 OID 16548) +-- Name: mdl_course_completions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_course_completions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_course_completions_id_seq OWNER TO postgres; + +-- +-- TOC entry 10728 (class 0 OID 0) +-- Dependencies: 203 +-- Name: mdl_course_completions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_course_completions_id_seq OWNED BY public.mdl_course_completions.id; + + +-- +-- TOC entry 218 (class 1259 OID 16689) +-- Name: mdl_course_format_options; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_course_format_options ( + id bigint NOT NULL, + courseid bigint NOT NULL, + format character varying(21) DEFAULT ''::character varying NOT NULL, + sectionid bigint DEFAULT 0 NOT NULL, + name character varying(100) DEFAULT ''::character varying NOT NULL, + value text +); + + +ALTER TABLE public.mdl_course_format_options OWNER TO postgres; + +-- +-- TOC entry 10729 (class 0 OID 0) +-- Dependencies: 218 +-- Name: TABLE mdl_course_format_options; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_course_format_options IS 'Stores format-specific options for the course or course section'; + + +-- +-- TOC entry 217 (class 1259 OID 16687) +-- Name: mdl_course_format_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_course_format_options_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_course_format_options_id_seq OWNER TO postgres; + +-- +-- TOC entry 10730 (class 0 OID 0) +-- Dependencies: 217 +-- Name: mdl_course_format_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_course_format_options_id_seq OWNED BY public.mdl_course_format_options.id; + + +-- +-- TOC entry 193 (class 1259 OID 16441) +-- Name: mdl_course_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_course_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_course_id_seq OWNER TO postgres; + +-- +-- TOC entry 10731 (class 0 OID 0) +-- Dependencies: 193 +-- Name: mdl_course_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_course_id_seq OWNED BY public.mdl_course.id; + + +-- +-- TOC entry 210 (class 1259 OID 16610) +-- Name: mdl_course_modules; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_course_modules ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + module bigint DEFAULT 0 NOT NULL, + instance bigint DEFAULT 0 NOT NULL, + section bigint DEFAULT 0 NOT NULL, + idnumber character varying(100), + added bigint DEFAULT 0 NOT NULL, + score smallint DEFAULT 0 NOT NULL, + indent integer DEFAULT 0 NOT NULL, + visible smallint DEFAULT 1 NOT NULL, + visibleoncoursepage smallint DEFAULT 1 NOT NULL, + visibleold smallint DEFAULT 1 NOT NULL, + groupmode smallint DEFAULT 0 NOT NULL, + groupingid bigint DEFAULT 0 NOT NULL, + completion smallint DEFAULT 0 NOT NULL, + completiongradeitemnumber bigint, + completionview smallint DEFAULT 0 NOT NULL, + completionexpected bigint DEFAULT 0 NOT NULL, + showdescription smallint DEFAULT 0 NOT NULL, + availability text, + deletioninprogress smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_course_modules OWNER TO postgres; + +-- +-- TOC entry 10732 (class 0 OID 0) +-- Dependencies: 210 +-- Name: TABLE mdl_course_modules; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_course_modules IS 'course_modules table retrofitted from MySQL'; + + +-- +-- TOC entry 212 (class 1259 OID 16644) +-- Name: mdl_course_modules_completion; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_course_modules_completion ( + id bigint NOT NULL, + coursemoduleid bigint NOT NULL, + userid bigint NOT NULL, + completionstate smallint NOT NULL, + viewed smallint, + overrideby bigint, + timemodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_course_modules_completion OWNER TO postgres; + +-- +-- TOC entry 10733 (class 0 OID 0) +-- Dependencies: 212 +-- Name: TABLE mdl_course_modules_completion; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_course_modules_completion IS 'Stores the completion state (completed or not completed, etc) of each user on each activity.'; + + +-- +-- TOC entry 211 (class 1259 OID 16642) +-- Name: mdl_course_modules_completion_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_course_modules_completion_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_course_modules_completion_id_seq OWNER TO postgres; + +-- +-- TOC entry 10734 (class 0 OID 0) +-- Dependencies: 211 +-- Name: mdl_course_modules_completion_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_course_modules_completion_id_seq OWNED BY public.mdl_course_modules_completion.id; + + +-- +-- TOC entry 209 (class 1259 OID 16608) +-- Name: mdl_course_modules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_course_modules_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_course_modules_id_seq OWNER TO postgres; + +-- +-- TOC entry 10735 (class 0 OID 0) +-- Dependencies: 209 +-- Name: mdl_course_modules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_course_modules_id_seq OWNED BY public.mdl_course_modules.id; + + +-- +-- TOC entry 481 (class 1259 OID 18855) +-- Name: mdl_course_published; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_course_published ( + id bigint NOT NULL, + huburl character varying(255), + courseid bigint NOT NULL, + timepublished bigint NOT NULL, + enrollable smallint DEFAULT 1 NOT NULL, + hubcourseid bigint NOT NULL, + status smallint DEFAULT 0, + timechecked bigint +); + + +ALTER TABLE public.mdl_course_published OWNER TO postgres; + +-- +-- TOC entry 10736 (class 0 OID 0) +-- Dependencies: 481 +-- Name: TABLE mdl_course_published; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_course_published IS 'Information about how and when an local courses were published to hubs'; + + +-- +-- TOC entry 480 (class 1259 OID 18853) +-- Name: mdl_course_published_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_course_published_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_course_published_id_seq OWNER TO postgres; + +-- +-- TOC entry 10737 (class 0 OID 0) +-- Dependencies: 480 +-- Name: mdl_course_published_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_course_published_id_seq OWNED BY public.mdl_course_published.id; + + +-- +-- TOC entry 216 (class 1259 OID 16671) +-- Name: mdl_course_request; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_course_request ( + id bigint NOT NULL, + fullname character varying(254) DEFAULT ''::character varying NOT NULL, + shortname character varying(100) DEFAULT ''::character varying NOT NULL, + summary text NOT NULL, + summaryformat smallint DEFAULT 0 NOT NULL, + category bigint DEFAULT 0 NOT NULL, + reason text NOT NULL, + requester bigint DEFAULT 0 NOT NULL, + password character varying(50) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_course_request OWNER TO postgres; + +-- +-- TOC entry 10738 (class 0 OID 0) +-- Dependencies: 216 +-- Name: TABLE mdl_course_request; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_course_request IS 'course requests'; + + +-- +-- TOC entry 215 (class 1259 OID 16669) +-- Name: mdl_course_request_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_course_request_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_course_request_id_seq OWNER TO postgres; + +-- +-- TOC entry 10739 (class 0 OID 0) +-- Dependencies: 215 +-- Name: mdl_course_request_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_course_request_id_seq OWNED BY public.mdl_course_request.id; + + +-- +-- TOC entry 214 (class 1259 OID 16654) +-- Name: mdl_course_sections; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_course_sections ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + section bigint DEFAULT 0 NOT NULL, + name character varying(255), + summary text, + summaryformat smallint DEFAULT 0 NOT NULL, + sequence text, + visible smallint DEFAULT 1 NOT NULL, + availability text, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_course_sections OWNER TO postgres; + +-- +-- TOC entry 10740 (class 0 OID 0) +-- Dependencies: 214 +-- Name: TABLE mdl_course_sections; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_course_sections IS 'to define the sections for each course'; + + +-- +-- TOC entry 213 (class 1259 OID 16652) +-- Name: mdl_course_sections_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_course_sections_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_course_sections_id_seq OWNER TO postgres; + +-- +-- TOC entry 10741 (class 0 OID 0) +-- Dependencies: 213 +-- Name: mdl_course_sections_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_course_sections_id_seq OWNED BY public.mdl_course_sections.id; + + +-- +-- TOC entry 605 (class 1259 OID 19715) +-- Name: mdl_customfield_category; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_customfield_category ( + id bigint NOT NULL, + name character varying(400) DEFAULT ''::character varying NOT NULL, + description text, + descriptionformat bigint, + sortorder bigint, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + component character varying(100) DEFAULT ''::character varying NOT NULL, + area character varying(100) DEFAULT ''::character varying NOT NULL, + itemid bigint DEFAULT 0 NOT NULL, + contextid bigint +); + + +ALTER TABLE public.mdl_customfield_category OWNER TO postgres; + +-- +-- TOC entry 10742 (class 0 OID 0) +-- Dependencies: 605 +-- Name: TABLE mdl_customfield_category; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_customfield_category IS 'core_customfield category table'; + + +-- +-- TOC entry 604 (class 1259 OID 19713) +-- Name: mdl_customfield_category_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_customfield_category_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_customfield_category_id_seq OWNER TO postgres; + +-- +-- TOC entry 10743 (class 0 OID 0) +-- Dependencies: 604 +-- Name: mdl_customfield_category_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_customfield_category_id_seq OWNED BY public.mdl_customfield_category.id; + + +-- +-- TOC entry 609 (class 1259 OID 19748) +-- Name: mdl_customfield_data; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_customfield_data ( + id bigint NOT NULL, + fieldid bigint NOT NULL, + instanceid bigint NOT NULL, + intvalue bigint, + decvalue numeric(10,5), + shortcharvalue character varying(255), + charvalue character varying(1333), + value text NOT NULL, + valueformat bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + contextid bigint +); + + +ALTER TABLE public.mdl_customfield_data OWNER TO postgres; + +-- +-- TOC entry 10744 (class 0 OID 0) +-- Dependencies: 609 +-- Name: TABLE mdl_customfield_data; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_customfield_data IS 'core_customfield data table'; + + +-- +-- TOC entry 608 (class 1259 OID 19746) +-- Name: mdl_customfield_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_customfield_data_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_customfield_data_id_seq OWNER TO postgres; + +-- +-- TOC entry 10745 (class 0 OID 0) +-- Dependencies: 608 +-- Name: mdl_customfield_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_customfield_data_id_seq OWNED BY public.mdl_customfield_data.id; + + +-- +-- TOC entry 607 (class 1259 OID 19732) +-- Name: mdl_customfield_field; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_customfield_field ( + id bigint NOT NULL, + shortname character varying(100) DEFAULT ''::character varying NOT NULL, + name character varying(400) DEFAULT ''::character varying NOT NULL, + type character varying(100) DEFAULT ''::character varying NOT NULL, + description text, + descriptionformat bigint, + sortorder bigint, + categoryid bigint, + configdata text, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_customfield_field OWNER TO postgres; + +-- +-- TOC entry 10746 (class 0 OID 0) +-- Dependencies: 607 +-- Name: TABLE mdl_customfield_field; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_customfield_field IS 'core_customfield field table'; + + +-- +-- TOC entry 606 (class 1259 OID 19730) +-- Name: mdl_customfield_field_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_customfield_field_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_customfield_field_id_seq OWNER TO postgres; + +-- +-- TOC entry 10747 (class 0 OID 0) +-- Dependencies: 606 +-- Name: mdl_customfield_field_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_customfield_field_id_seq OWNED BY public.mdl_customfield_field.id; + + +-- +-- TOC entry 709 (class 1259 OID 20624) +-- Name: mdl_data; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_data ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + intro text NOT NULL, + introformat smallint DEFAULT 0 NOT NULL, + comments smallint DEFAULT 0 NOT NULL, + timeavailablefrom bigint DEFAULT 0 NOT NULL, + timeavailableto bigint DEFAULT 0 NOT NULL, + timeviewfrom bigint DEFAULT 0 NOT NULL, + timeviewto bigint DEFAULT 0 NOT NULL, + requiredentries integer DEFAULT 0 NOT NULL, + requiredentriestoview integer DEFAULT 0 NOT NULL, + maxentries integer DEFAULT 0 NOT NULL, + rssarticles smallint DEFAULT 0 NOT NULL, + singletemplate text, + listtemplate text, + listtemplateheader text, + listtemplatefooter text, + addtemplate text, + rsstemplate text, + rsstitletemplate text, + csstemplate text, + jstemplate text, + asearchtemplate text, + approval smallint DEFAULT 0 NOT NULL, + manageapproved smallint DEFAULT 1 NOT NULL, + scale bigint DEFAULT 0 NOT NULL, + assessed bigint DEFAULT 0 NOT NULL, + assesstimestart bigint DEFAULT 0 NOT NULL, + assesstimefinish bigint DEFAULT 0 NOT NULL, + defaultsort bigint DEFAULT 0 NOT NULL, + defaultsortdir smallint DEFAULT 0 NOT NULL, + editany smallint DEFAULT 0 NOT NULL, + notification bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + config text, + completionentries bigint DEFAULT 0 +); + + +ALTER TABLE public.mdl_data OWNER TO postgres; + +-- +-- TOC entry 10748 (class 0 OID 0) +-- Dependencies: 709 +-- Name: TABLE mdl_data; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_data IS 'all database activities'; + + +-- +-- TOC entry 715 (class 1259 OID 20692) +-- Name: mdl_data_content; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_data_content ( + id bigint NOT NULL, + fieldid bigint DEFAULT 0 NOT NULL, + recordid bigint DEFAULT 0 NOT NULL, + content text, + content1 text, + content2 text, + content3 text, + content4 text +); + + +ALTER TABLE public.mdl_data_content OWNER TO postgres; + +-- +-- TOC entry 10749 (class 0 OID 0) +-- Dependencies: 715 +-- Name: TABLE mdl_data_content; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_data_content IS 'the content introduced in each record/fields'; + + +-- +-- TOC entry 714 (class 1259 OID 20690) +-- Name: mdl_data_content_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_data_content_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_data_content_id_seq OWNER TO postgres; + +-- +-- TOC entry 10750 (class 0 OID 0) +-- Dependencies: 714 +-- Name: mdl_data_content_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_data_content_id_seq OWNED BY public.mdl_data_content.id; + + +-- +-- TOC entry 711 (class 1259 OID 20660) +-- Name: mdl_data_fields; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_data_fields ( + id bigint NOT NULL, + dataid bigint DEFAULT 0 NOT NULL, + type character varying(255) DEFAULT ''::character varying NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + description text NOT NULL, + required smallint DEFAULT 0 NOT NULL, + param1 text, + param2 text, + param3 text, + param4 text, + param5 text, + param6 text, + param7 text, + param8 text, + param9 text, + param10 text +); + + +ALTER TABLE public.mdl_data_fields OWNER TO postgres; + +-- +-- TOC entry 10751 (class 0 OID 0) +-- Dependencies: 711 +-- Name: TABLE mdl_data_fields; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_data_fields IS 'every field available'; + + +-- +-- TOC entry 710 (class 1259 OID 20658) +-- Name: mdl_data_fields_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_data_fields_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_data_fields_id_seq OWNER TO postgres; + +-- +-- TOC entry 10752 (class 0 OID 0) +-- Dependencies: 710 +-- Name: mdl_data_fields_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_data_fields_id_seq OWNED BY public.mdl_data_fields.id; + + +-- +-- TOC entry 708 (class 1259 OID 20622) +-- Name: mdl_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_data_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_data_id_seq OWNER TO postgres; + +-- +-- TOC entry 10753 (class 0 OID 0) +-- Dependencies: 708 +-- Name: mdl_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_data_id_seq OWNED BY public.mdl_data.id; + + +-- +-- TOC entry 713 (class 1259 OID 20677) +-- Name: mdl_data_records; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_data_records ( + id bigint NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + groupid bigint DEFAULT 0 NOT NULL, + dataid bigint DEFAULT 0 NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + approved smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_data_records OWNER TO postgres; + +-- +-- TOC entry 10754 (class 0 OID 0) +-- Dependencies: 713 +-- Name: TABLE mdl_data_records; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_data_records IS 'every record introduced'; + + +-- +-- TOC entry 712 (class 1259 OID 20675) +-- Name: mdl_data_records_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_data_records_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_data_records_id_seq OWNER TO postgres; + +-- +-- TOC entry 10755 (class 0 OID 0) +-- Dependencies: 712 +-- Name: mdl_data_records_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_data_records_id_seq OWNED BY public.mdl_data_records.id; + + +-- +-- TOC entry 927 (class 1259 OID 22593) +-- Name: mdl_editor_atto_autosave; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_editor_atto_autosave ( + id bigint NOT NULL, + elementid character varying(255) DEFAULT ''::character varying NOT NULL, + contextid bigint NOT NULL, + pagehash character varying(64) DEFAULT ''::character varying NOT NULL, + userid bigint NOT NULL, + drafttext text NOT NULL, + draftid bigint, + pageinstance character varying(64) DEFAULT ''::character varying NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_editor_atto_autosave OWNER TO postgres; + +-- +-- TOC entry 10756 (class 0 OID 0) +-- Dependencies: 927 +-- Name: TABLE mdl_editor_atto_autosave; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_editor_atto_autosave IS 'Draft text that is auto-saved every 5 seconds while an editor is open.'; + + +-- +-- TOC entry 926 (class 1259 OID 22591) +-- Name: mdl_editor_atto_autosave_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_editor_atto_autosave_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_editor_atto_autosave_id_seq OWNER TO postgres; + +-- +-- TOC entry 10757 (class 0 OID 0) +-- Dependencies: 926 +-- Name: mdl_editor_atto_autosave_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_editor_atto_autosave_id_seq OWNED BY public.mdl_editor_atto_autosave.id; + + +-- +-- TOC entry 206 (class 1259 OID 16567) +-- Name: mdl_enrol; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_enrol ( + id bigint NOT NULL, + enrol character varying(20) DEFAULT ''::character varying NOT NULL, + status bigint DEFAULT 0 NOT NULL, + courseid bigint NOT NULL, + sortorder bigint DEFAULT 0 NOT NULL, + name character varying(255), + enrolperiod bigint DEFAULT 0, + enrolstartdate bigint DEFAULT 0, + enrolenddate bigint DEFAULT 0, + expirynotify smallint DEFAULT 0, + expirythreshold bigint DEFAULT 0, + notifyall smallint DEFAULT 0, + password character varying(50), + cost character varying(20), + currency character varying(3), + roleid bigint DEFAULT 0, + customint1 bigint, + customint2 bigint, + customint3 bigint, + customint4 bigint, + customint5 bigint, + customint6 bigint, + customint7 bigint, + customint8 bigint, + customchar1 character varying(255), + customchar2 character varying(255), + customchar3 character varying(1333), + customdec1 numeric(12,7), + customdec2 numeric(12,7), + customtext1 text, + customtext2 text, + customtext3 text, + customtext4 text, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_enrol OWNER TO postgres; + +-- +-- TOC entry 10758 (class 0 OID 0) +-- Dependencies: 206 +-- Name: TABLE mdl_enrol; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_enrol IS 'Instances of enrolment plugins used in courses, fields marked as custom have a plugin defined meaning, core does not touch them. Create a new linked table if you need even more custom fields.'; + + +-- +-- TOC entry 889 (class 1259 OID 22324) +-- Name: mdl_enrol_flatfile; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_enrol_flatfile ( + id bigint NOT NULL, + action character varying(30) DEFAULT ''::character varying NOT NULL, + roleid bigint NOT NULL, + userid bigint NOT NULL, + courseid bigint NOT NULL, + timestart bigint DEFAULT 0 NOT NULL, + timeend bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_enrol_flatfile OWNER TO postgres; + +-- +-- TOC entry 10759 (class 0 OID 0) +-- Dependencies: 889 +-- Name: TABLE mdl_enrol_flatfile; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_enrol_flatfile IS 'enrol_flatfile table retrofitted from MySQL'; + + +-- +-- TOC entry 888 (class 1259 OID 22322) +-- Name: mdl_enrol_flatfile_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_enrol_flatfile_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_enrol_flatfile_id_seq OWNER TO postgres; + +-- +-- TOC entry 10760 (class 0 OID 0) +-- Dependencies: 888 +-- Name: mdl_enrol_flatfile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_enrol_flatfile_id_seq OWNED BY public.mdl_enrol_flatfile.id; + + +-- +-- TOC entry 205 (class 1259 OID 16565) +-- Name: mdl_enrol_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_enrol_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_enrol_id_seq OWNER TO postgres; + +-- +-- TOC entry 10761 (class 0 OID 0) +-- Dependencies: 205 +-- Name: mdl_enrol_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_enrol_id_seq OWNED BY public.mdl_enrol.id; + + +-- +-- TOC entry 895 (class 1259 OID 22376) +-- Name: mdl_enrol_lti_lti2_consumer; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_enrol_lti_lti2_consumer ( + id bigint NOT NULL, + name character varying(50) DEFAULT ''::character varying NOT NULL, + consumerkey256 character varying(255) DEFAULT ''::character varying NOT NULL, + consumerkey text, + secret character varying(1024) DEFAULT ''::character varying NOT NULL, + ltiversion character varying(10), + consumername character varying(255), + consumerversion character varying(255), + consumerguid character varying(1024), + profile text, + toolproxy text, + settings text, + protected smallint NOT NULL, + enabled smallint NOT NULL, + enablefrom bigint, + enableuntil bigint, + lastaccess bigint, + created bigint NOT NULL, + updated bigint NOT NULL +); + + +ALTER TABLE public.mdl_enrol_lti_lti2_consumer OWNER TO postgres; + +-- +-- TOC entry 10762 (class 0 OID 0) +-- Dependencies: 895 +-- Name: TABLE mdl_enrol_lti_lti2_consumer; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_enrol_lti_lti2_consumer IS 'LTI consumers interacting with moodle'; + + +-- +-- TOC entry 894 (class 1259 OID 22374) +-- Name: mdl_enrol_lti_lti2_consumer_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_enrol_lti_lti2_consumer_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_enrol_lti_lti2_consumer_id_seq OWNER TO postgres; + +-- +-- TOC entry 10763 (class 0 OID 0) +-- Dependencies: 894 +-- Name: mdl_enrol_lti_lti2_consumer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_enrol_lti_lti2_consumer_id_seq OWNED BY public.mdl_enrol_lti_lti2_consumer.id; + + +-- +-- TOC entry 899 (class 1259 OID 22405) +-- Name: mdl_enrol_lti_lti2_context; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_enrol_lti_lti2_context ( + id bigint NOT NULL, + consumerid bigint NOT NULL, + lticontextkey character varying(255) DEFAULT ''::character varying NOT NULL, + type character varying(100), + settings text, + created bigint NOT NULL, + updated bigint NOT NULL +); + + +ALTER TABLE public.mdl_enrol_lti_lti2_context OWNER TO postgres; + +-- +-- TOC entry 10764 (class 0 OID 0) +-- Dependencies: 899 +-- Name: TABLE mdl_enrol_lti_lti2_context; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_enrol_lti_lti2_context IS 'Information about a specific LTI contexts from the consumers'; + + +-- +-- TOC entry 898 (class 1259 OID 22403) +-- Name: mdl_enrol_lti_lti2_context_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_enrol_lti_lti2_context_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_enrol_lti_lti2_context_id_seq OWNER TO postgres; + +-- +-- TOC entry 10765 (class 0 OID 0) +-- Dependencies: 898 +-- Name: mdl_enrol_lti_lti2_context_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_enrol_lti_lti2_context_id_seq OWNED BY public.mdl_enrol_lti_lti2_context.id; + + +-- +-- TOC entry 901 (class 1259 OID 22418) +-- Name: mdl_enrol_lti_lti2_nonce; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_enrol_lti_lti2_nonce ( + id bigint NOT NULL, + consumerid bigint NOT NULL, + value character varying(64) DEFAULT ''::character varying NOT NULL, + expires bigint NOT NULL +); + + +ALTER TABLE public.mdl_enrol_lti_lti2_nonce OWNER TO postgres; + +-- +-- TOC entry 10766 (class 0 OID 0) +-- Dependencies: 901 +-- Name: TABLE mdl_enrol_lti_lti2_nonce; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_enrol_lti_lti2_nonce IS 'Nonce used for authentication between moodle and a consumer'; + + +-- +-- TOC entry 900 (class 1259 OID 22416) +-- Name: mdl_enrol_lti_lti2_nonce_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_enrol_lti_lti2_nonce_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_enrol_lti_lti2_nonce_id_seq OWNER TO postgres; + +-- +-- TOC entry 10767 (class 0 OID 0) +-- Dependencies: 900 +-- Name: mdl_enrol_lti_lti2_nonce_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_enrol_lti_lti2_nonce_id_seq OWNED BY public.mdl_enrol_lti_lti2_nonce.id; + + +-- +-- TOC entry 903 (class 1259 OID 22428) +-- Name: mdl_enrol_lti_lti2_resource_link; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_enrol_lti_lti2_resource_link ( + id bigint NOT NULL, + contextid bigint, + consumerid bigint, + ltiresourcelinkkey character varying(255) DEFAULT ''::character varying NOT NULL, + settings text, + primaryresourcelinkid bigint, + shareapproved smallint, + created bigint NOT NULL, + updated bigint NOT NULL +); + + +ALTER TABLE public.mdl_enrol_lti_lti2_resource_link OWNER TO postgres; + +-- +-- TOC entry 10768 (class 0 OID 0) +-- Dependencies: 903 +-- Name: TABLE mdl_enrol_lti_lti2_resource_link; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_enrol_lti_lti2_resource_link IS 'Link from the consumer to the tool'; + + +-- +-- TOC entry 902 (class 1259 OID 22426) +-- Name: mdl_enrol_lti_lti2_resource_link_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_enrol_lti_lti2_resource_link_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_enrol_lti_lti2_resource_link_id_seq OWNER TO postgres; + +-- +-- TOC entry 10769 (class 0 OID 0) +-- Dependencies: 902 +-- Name: mdl_enrol_lti_lti2_resource_link_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_enrol_lti_lti2_resource_link_id_seq OWNED BY public.mdl_enrol_lti_lti2_resource_link.id; + + +-- +-- TOC entry 905 (class 1259 OID 22443) +-- Name: mdl_enrol_lti_lti2_share_key; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_enrol_lti_lti2_share_key ( + id bigint NOT NULL, + sharekey character varying(32) DEFAULT ''::character varying NOT NULL, + resourcelinkid bigint NOT NULL, + autoapprove smallint NOT NULL, + expires bigint NOT NULL +); + + +ALTER TABLE public.mdl_enrol_lti_lti2_share_key OWNER TO postgres; + +-- +-- TOC entry 10770 (class 0 OID 0) +-- Dependencies: 905 +-- Name: TABLE mdl_enrol_lti_lti2_share_key; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_enrol_lti_lti2_share_key IS 'Resource link share key'; + + +-- +-- TOC entry 904 (class 1259 OID 22441) +-- Name: mdl_enrol_lti_lti2_share_key_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_enrol_lti_lti2_share_key_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_enrol_lti_lti2_share_key_id_seq OWNER TO postgres; + +-- +-- TOC entry 10771 (class 0 OID 0) +-- Dependencies: 904 +-- Name: mdl_enrol_lti_lti2_share_key_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_enrol_lti_lti2_share_key_id_seq OWNED BY public.mdl_enrol_lti_lti2_share_key.id; + + +-- +-- TOC entry 897 (class 1259 OID 22391) +-- Name: mdl_enrol_lti_lti2_tool_proxy; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_enrol_lti_lti2_tool_proxy ( + id bigint NOT NULL, + toolproxykey character varying(32) DEFAULT ''::character varying NOT NULL, + consumerid bigint NOT NULL, + toolproxy text NOT NULL, + created bigint NOT NULL, + updated bigint NOT NULL +); + + +ALTER TABLE public.mdl_enrol_lti_lti2_tool_proxy OWNER TO postgres; + +-- +-- TOC entry 10772 (class 0 OID 0) +-- Dependencies: 897 +-- Name: TABLE mdl_enrol_lti_lti2_tool_proxy; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_enrol_lti_lti2_tool_proxy IS 'A tool proxy between moodle and a consumer'; + + +-- +-- TOC entry 896 (class 1259 OID 22389) +-- Name: mdl_enrol_lti_lti2_tool_proxy_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_enrol_lti_lti2_tool_proxy_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_enrol_lti_lti2_tool_proxy_id_seq OWNER TO postgres; + +-- +-- TOC entry 10773 (class 0 OID 0) +-- Dependencies: 896 +-- Name: mdl_enrol_lti_lti2_tool_proxy_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_enrol_lti_lti2_tool_proxy_id_seq OWNED BY public.mdl_enrol_lti_lti2_tool_proxy.id; + + +-- +-- TOC entry 907 (class 1259 OID 22454) +-- Name: mdl_enrol_lti_lti2_user_result; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_enrol_lti_lti2_user_result ( + id bigint NOT NULL, + resourcelinkid bigint NOT NULL, + ltiuserkey character varying(255) DEFAULT ''::character varying NOT NULL, + ltiresultsourcedid character varying(1024) DEFAULT ''::character varying NOT NULL, + created bigint NOT NULL, + updated bigint NOT NULL +); + + +ALTER TABLE public.mdl_enrol_lti_lti2_user_result OWNER TO postgres; + +-- +-- TOC entry 10774 (class 0 OID 0) +-- Dependencies: 907 +-- Name: TABLE mdl_enrol_lti_lti2_user_result; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_enrol_lti_lti2_user_result IS 'Results for each user for each resource link'; + + +-- +-- TOC entry 906 (class 1259 OID 22452) +-- Name: mdl_enrol_lti_lti2_user_result_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_enrol_lti_lti2_user_result_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_enrol_lti_lti2_user_result_id_seq OWNER TO postgres; + +-- +-- TOC entry 10775 (class 0 OID 0) +-- Dependencies: 906 +-- Name: mdl_enrol_lti_lti2_user_result_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_enrol_lti_lti2_user_result_id_seq OWNED BY public.mdl_enrol_lti_lti2_user_result.id; + + +-- +-- TOC entry 909 (class 1259 OID 22468) +-- Name: mdl_enrol_lti_tool_consumer_map; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_enrol_lti_tool_consumer_map ( + id bigint NOT NULL, + toolid bigint NOT NULL, + consumerid bigint NOT NULL +); + + +ALTER TABLE public.mdl_enrol_lti_tool_consumer_map OWNER TO postgres; + +-- +-- TOC entry 10776 (class 0 OID 0) +-- Dependencies: 909 +-- Name: TABLE mdl_enrol_lti_tool_consumer_map; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_enrol_lti_tool_consumer_map IS 'Table that maps the published tool to tool consumers.'; + + +-- +-- TOC entry 908 (class 1259 OID 22466) +-- Name: mdl_enrol_lti_tool_consumer_map_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_enrol_lti_tool_consumer_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_enrol_lti_tool_consumer_map_id_seq OWNER TO postgres; + +-- +-- TOC entry 10777 (class 0 OID 0) +-- Dependencies: 908 +-- Name: mdl_enrol_lti_tool_consumer_map_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_enrol_lti_tool_consumer_map_id_seq OWNED BY public.mdl_enrol_lti_tool_consumer_map.id; + + +-- +-- TOC entry 891 (class 1259 OID 22339) +-- Name: mdl_enrol_lti_tools; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_enrol_lti_tools ( + id bigint NOT NULL, + enrolid bigint NOT NULL, + contextid bigint NOT NULL, + institution character varying(40) DEFAULT ''::character varying NOT NULL, + lang character varying(30) DEFAULT 'en'::character varying NOT NULL, + timezone character varying(100) DEFAULT '99'::character varying NOT NULL, + maxenrolled bigint DEFAULT 0 NOT NULL, + maildisplay smallint DEFAULT 2 NOT NULL, + city character varying(120) DEFAULT ''::character varying NOT NULL, + country character varying(2) DEFAULT ''::character varying NOT NULL, + gradesync smallint DEFAULT 0 NOT NULL, + gradesynccompletion smallint DEFAULT 0 NOT NULL, + membersync smallint DEFAULT 0 NOT NULL, + membersyncmode smallint DEFAULT 0 NOT NULL, + roleinstructor bigint NOT NULL, + rolelearner bigint NOT NULL, + secret text, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_enrol_lti_tools OWNER TO postgres; + +-- +-- TOC entry 10778 (class 0 OID 0) +-- Dependencies: 891 +-- Name: TABLE mdl_enrol_lti_tools; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_enrol_lti_tools IS 'List of tools provided to the remote system'; + + +-- +-- TOC entry 890 (class 1259 OID 22337) +-- Name: mdl_enrol_lti_tools_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_enrol_lti_tools_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_enrol_lti_tools_id_seq OWNER TO postgres; + +-- +-- TOC entry 10779 (class 0 OID 0) +-- Dependencies: 890 +-- Name: mdl_enrol_lti_tools_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_enrol_lti_tools_id_seq OWNED BY public.mdl_enrol_lti_tools.id; + + +-- +-- TOC entry 893 (class 1259 OID 22363) +-- Name: mdl_enrol_lti_users; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_enrol_lti_users ( + id bigint NOT NULL, + userid bigint NOT NULL, + toolid bigint NOT NULL, + serviceurl text, + sourceid text, + consumerkey text, + consumersecret text, + membershipsurl text, + membershipsid text, + lastgrade numeric(10,5), + lastaccess bigint, + timecreated bigint +); + + +ALTER TABLE public.mdl_enrol_lti_users OWNER TO postgres; + +-- +-- TOC entry 10780 (class 0 OID 0) +-- Dependencies: 893 +-- Name: TABLE mdl_enrol_lti_users; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_enrol_lti_users IS 'User access log and gradeback data'; + + +-- +-- TOC entry 892 (class 1259 OID 22361) +-- Name: mdl_enrol_lti_users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_enrol_lti_users_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_enrol_lti_users_id_seq OWNER TO postgres; + +-- +-- TOC entry 10781 (class 0 OID 0) +-- Dependencies: 892 +-- Name: mdl_enrol_lti_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_enrol_lti_users_id_seq OWNED BY public.mdl_enrol_lti_users.id; + + +-- +-- TOC entry 911 (class 1259 OID 22478) +-- Name: mdl_enrol_paypal; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_enrol_paypal ( + id bigint NOT NULL, + business character varying(255) DEFAULT ''::character varying NOT NULL, + receiver_email character varying(255) DEFAULT ''::character varying NOT NULL, + receiver_id character varying(255) DEFAULT ''::character varying NOT NULL, + item_name character varying(255) DEFAULT ''::character varying NOT NULL, + courseid bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + instanceid bigint DEFAULT 0 NOT NULL, + memo character varying(255) DEFAULT ''::character varying NOT NULL, + tax character varying(255) DEFAULT ''::character varying NOT NULL, + option_name1 character varying(255) DEFAULT ''::character varying NOT NULL, + option_selection1_x character varying(255) DEFAULT ''::character varying NOT NULL, + option_name2 character varying(255) DEFAULT ''::character varying NOT NULL, + option_selection2_x character varying(255) DEFAULT ''::character varying NOT NULL, + payment_status character varying(255) DEFAULT ''::character varying NOT NULL, + pending_reason character varying(255) DEFAULT ''::character varying NOT NULL, + reason_code character varying(30) DEFAULT ''::character varying NOT NULL, + txn_id character varying(255) DEFAULT ''::character varying NOT NULL, + parent_txn_id character varying(255) DEFAULT ''::character varying NOT NULL, + payment_type character varying(30) DEFAULT ''::character varying NOT NULL, + timeupdated bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_enrol_paypal OWNER TO postgres; + +-- +-- TOC entry 10782 (class 0 OID 0) +-- Dependencies: 911 +-- Name: TABLE mdl_enrol_paypal; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_enrol_paypal IS 'Holds all known information about PayPal transactions'; + + +-- +-- TOC entry 910 (class 1259 OID 22476) +-- Name: mdl_enrol_paypal_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_enrol_paypal_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_enrol_paypal_id_seq OWNER TO postgres; + +-- +-- TOC entry 10783 (class 0 OID 0) +-- Dependencies: 910 +-- Name: mdl_enrol_paypal_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_enrol_paypal_id_seq OWNED BY public.mdl_enrol_paypal.id; + + +-- +-- TOC entry 224 (class 1259 OID 16732) +-- Name: mdl_event; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_event ( + id bigint NOT NULL, + name text NOT NULL, + description text NOT NULL, + format smallint DEFAULT 0 NOT NULL, + categoryid bigint DEFAULT 0 NOT NULL, + courseid bigint DEFAULT 0 NOT NULL, + groupid bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + repeatid bigint DEFAULT 0 NOT NULL, + component character varying(100), + modulename character varying(20) DEFAULT ''::character varying NOT NULL, + instance bigint DEFAULT 0 NOT NULL, + type smallint DEFAULT 0 NOT NULL, + eventtype character varying(20) DEFAULT ''::character varying NOT NULL, + timestart bigint DEFAULT 0 NOT NULL, + timeduration bigint DEFAULT 0 NOT NULL, + timesort bigint, + visible smallint DEFAULT 1 NOT NULL, + uuid character varying(255) DEFAULT ''::character varying NOT NULL, + sequence bigint DEFAULT 1 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + subscriptionid bigint, + priority bigint, + location text +); + + +ALTER TABLE public.mdl_event OWNER TO postgres; + +-- +-- TOC entry 10784 (class 0 OID 0) +-- Dependencies: 224 +-- Name: TABLE mdl_event; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_event IS 'For everything with a time associated to it'; + + +-- +-- TOC entry 223 (class 1259 OID 16730) +-- Name: mdl_event_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_event_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_event_id_seq OWNER TO postgres; + +-- +-- TOC entry 10785 (class 0 OID 0) +-- Dependencies: 223 +-- Name: mdl_event_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_event_id_seq OWNED BY public.mdl_event.id; + + +-- +-- TOC entry 489 (class 1259 OID 18910) +-- Name: mdl_event_subscriptions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_event_subscriptions ( + id bigint NOT NULL, + url character varying(255) DEFAULT ''::character varying NOT NULL, + categoryid bigint DEFAULT 0 NOT NULL, + courseid bigint DEFAULT 0 NOT NULL, + groupid bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + eventtype character varying(20) DEFAULT ''::character varying NOT NULL, + pollinterval bigint DEFAULT 0 NOT NULL, + lastupdated bigint, + name character varying(255) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_event_subscriptions OWNER TO postgres; + +-- +-- TOC entry 10786 (class 0 OID 0) +-- Dependencies: 489 +-- Name: TABLE mdl_event_subscriptions; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_event_subscriptions IS 'Tracks subscriptions to remote calendars.'; + + +-- +-- TOC entry 488 (class 1259 OID 18908) +-- Name: mdl_event_subscriptions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_event_subscriptions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_event_subscriptions_id_seq OWNER TO postgres; + +-- +-- TOC entry 10787 (class 0 OID 0) +-- Dependencies: 488 +-- Name: mdl_event_subscriptions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_event_subscriptions_id_seq OWNED BY public.mdl_event_subscriptions.id; + + +-- +-- TOC entry 363 (class 1259 OID 17891) +-- Name: mdl_events_handlers; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_events_handlers ( + id bigint NOT NULL, + eventname character varying(166) DEFAULT ''::character varying NOT NULL, + component character varying(166) DEFAULT ''::character varying NOT NULL, + handlerfile character varying(255) DEFAULT ''::character varying NOT NULL, + handlerfunction text, + schedule character varying(255), + status bigint DEFAULT 0 NOT NULL, + internal smallint DEFAULT 1 NOT NULL +); + + +ALTER TABLE public.mdl_events_handlers OWNER TO postgres; + +-- +-- TOC entry 10788 (class 0 OID 0) +-- Dependencies: 363 +-- Name: TABLE mdl_events_handlers; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_events_handlers IS 'This table is for storing which components requests what type of event, and the location of the responsible handlers. For example, the assignment registers ''grade_updated'' event with a function assignment_grade_handler() that should be called event t'; + + +-- +-- TOC entry 362 (class 1259 OID 17889) +-- Name: mdl_events_handlers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_events_handlers_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_events_handlers_id_seq OWNER TO postgres; + +-- +-- TOC entry 10789 (class 0 OID 0) +-- Dependencies: 362 +-- Name: mdl_events_handlers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_events_handlers_id_seq OWNED BY public.mdl_events_handlers.id; + + +-- +-- TOC entry 361 (class 1259 OID 17879) +-- Name: mdl_events_queue; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_events_queue ( + id bigint NOT NULL, + eventdata text NOT NULL, + stackdump text, + userid bigint, + timecreated bigint NOT NULL +); + + +ALTER TABLE public.mdl_events_queue OWNER TO postgres; + +-- +-- TOC entry 10790 (class 0 OID 0) +-- Dependencies: 361 +-- Name: TABLE mdl_events_queue; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_events_queue IS 'This table is for storing queued events. It stores only one copy of the eventdata here, and entries from this table are being references by the event_queue_handlers table.'; + + +-- +-- TOC entry 365 (class 1259 OID 17908) +-- Name: mdl_events_queue_handlers; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_events_queue_handlers ( + id bigint NOT NULL, + queuedeventid bigint NOT NULL, + handlerid bigint NOT NULL, + status bigint, + errormessage text, + timemodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_events_queue_handlers OWNER TO postgres; + +-- +-- TOC entry 10791 (class 0 OID 0) +-- Dependencies: 365 +-- Name: TABLE mdl_events_queue_handlers; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_events_queue_handlers IS 'This is the list of queued handlers for processing. The event object is retrieved from the events_queue table. When no further reference is made to the event_queues table, the corresponding entry in the events_queue table should be deleted. Entry sho'; + + +-- +-- TOC entry 364 (class 1259 OID 17906) +-- Name: mdl_events_queue_handlers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_events_queue_handlers_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_events_queue_handlers_id_seq OWNER TO postgres; + +-- +-- TOC entry 10792 (class 0 OID 0) +-- Dependencies: 364 +-- Name: mdl_events_queue_handlers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_events_queue_handlers_id_seq OWNED BY public.mdl_events_queue_handlers.id; + + +-- +-- TOC entry 360 (class 1259 OID 17877) +-- Name: mdl_events_queue_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_events_queue_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_events_queue_id_seq OWNER TO postgres; + +-- +-- TOC entry 10793 (class 0 OID 0) +-- Dependencies: 360 +-- Name: mdl_events_queue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_events_queue_id_seq OWNED BY public.mdl_events_queue.id; + + +-- +-- TOC entry 457 (class 1259 OID 18680) +-- Name: mdl_external_functions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_external_functions ( + id bigint NOT NULL, + name character varying(200) DEFAULT ''::character varying NOT NULL, + classname character varying(100) DEFAULT ''::character varying NOT NULL, + methodname character varying(100) DEFAULT ''::character varying NOT NULL, + classpath character varying(255), + component character varying(100) DEFAULT ''::character varying NOT NULL, + capabilities character varying(255), + services character varying(1333) +); + + +ALTER TABLE public.mdl_external_functions OWNER TO postgres; + +-- +-- TOC entry 10794 (class 0 OID 0) +-- Dependencies: 457 +-- Name: TABLE mdl_external_functions; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_external_functions IS 'list of all external functions'; + + +-- +-- TOC entry 456 (class 1259 OID 18678) +-- Name: mdl_external_functions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_external_functions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_external_functions_id_seq OWNER TO postgres; + +-- +-- TOC entry 10795 (class 0 OID 0) +-- Dependencies: 456 +-- Name: mdl_external_functions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_external_functions_id_seq OWNED BY public.mdl_external_functions.id; + + +-- +-- TOC entry 455 (class 1259 OID 18665) +-- Name: mdl_external_services; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_external_services ( + id bigint NOT NULL, + name character varying(200) DEFAULT ''::character varying NOT NULL, + enabled smallint NOT NULL, + requiredcapability character varying(150), + restrictedusers smallint NOT NULL, + component character varying(100), + timecreated bigint NOT NULL, + timemodified bigint, + shortname character varying(255), + downloadfiles smallint DEFAULT 0 NOT NULL, + uploadfiles smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_external_services OWNER TO postgres; + +-- +-- TOC entry 10796 (class 0 OID 0) +-- Dependencies: 455 +-- Name: TABLE mdl_external_services; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_external_services IS 'built in and custom external services'; + + +-- +-- TOC entry 459 (class 1259 OID 18696) +-- Name: mdl_external_services_functions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_external_services_functions ( + id bigint NOT NULL, + externalserviceid bigint NOT NULL, + functionname character varying(200) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_external_services_functions OWNER TO postgres; + +-- +-- TOC entry 10797 (class 0 OID 0) +-- Dependencies: 459 +-- Name: TABLE mdl_external_services_functions; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_external_services_functions IS 'lists functions available in each service group'; + + +-- +-- TOC entry 458 (class 1259 OID 18694) +-- Name: mdl_external_services_functions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_external_services_functions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_external_services_functions_id_seq OWNER TO postgres; + +-- +-- TOC entry 10798 (class 0 OID 0) +-- Dependencies: 458 +-- Name: mdl_external_services_functions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_external_services_functions_id_seq OWNED BY public.mdl_external_services_functions.id; + + +-- +-- TOC entry 454 (class 1259 OID 18663) +-- Name: mdl_external_services_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_external_services_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_external_services_id_seq OWNER TO postgres; + +-- +-- TOC entry 10799 (class 0 OID 0) +-- Dependencies: 454 +-- Name: mdl_external_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_external_services_id_seq OWNED BY public.mdl_external_services.id; + + +-- +-- TOC entry 461 (class 1259 OID 18706) +-- Name: mdl_external_services_users; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_external_services_users ( + id bigint NOT NULL, + externalserviceid bigint NOT NULL, + userid bigint NOT NULL, + iprestriction character varying(255), + validuntil bigint, + timecreated bigint +); + + +ALTER TABLE public.mdl_external_services_users OWNER TO postgres; + +-- +-- TOC entry 10800 (class 0 OID 0) +-- Dependencies: 461 +-- Name: TABLE mdl_external_services_users; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_external_services_users IS 'users allowed to use services with restricted users flag'; + + +-- +-- TOC entry 460 (class 1259 OID 18704) +-- Name: mdl_external_services_users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_external_services_users_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_external_services_users_id_seq OWNER TO postgres; + +-- +-- TOC entry 10801 (class 0 OID 0) +-- Dependencies: 460 +-- Name: mdl_external_services_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_external_services_users_id_seq OWNED BY public.mdl_external_services_users.id; + + +-- +-- TOC entry 463 (class 1259 OID 18716) +-- Name: mdl_external_tokens; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_external_tokens ( + id bigint NOT NULL, + token character varying(128) DEFAULT ''::character varying NOT NULL, + privatetoken character varying(64), + tokentype smallint NOT NULL, + userid bigint NOT NULL, + externalserviceid bigint NOT NULL, + sid character varying(128), + contextid bigint NOT NULL, + creatorid bigint DEFAULT 1 NOT NULL, + iprestriction character varying(255), + validuntil bigint, + timecreated bigint NOT NULL, + lastaccess bigint +); + + +ALTER TABLE public.mdl_external_tokens OWNER TO postgres; + +-- +-- TOC entry 10802 (class 0 OID 0) +-- Dependencies: 463 +-- Name: TABLE mdl_external_tokens; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_external_tokens IS 'Security tokens for accessing of external services'; + + +-- +-- TOC entry 462 (class 1259 OID 18714) +-- Name: mdl_external_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_external_tokens_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_external_tokens_id_seq OWNER TO postgres; + +-- +-- TOC entry 10803 (class 0 OID 0) +-- Dependencies: 462 +-- Name: mdl_external_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_external_tokens_id_seq OWNED BY public.mdl_external_tokens.id; + + +-- +-- TOC entry 603 (class 1259 OID 19702) +-- Name: mdl_favourite; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_favourite ( + id bigint NOT NULL, + component character varying(100) DEFAULT ''::character varying NOT NULL, + itemtype character varying(100) DEFAULT ''::character varying NOT NULL, + itemid bigint NOT NULL, + contextid bigint NOT NULL, + userid bigint NOT NULL, + ordering bigint, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_favourite OWNER TO postgres; + +-- +-- TOC entry 10804 (class 0 OID 0) +-- Dependencies: 603 +-- Name: TABLE mdl_favourite; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_favourite IS 'Stores the relationship between an arbitrary item (itemtype, itemid), and a context area (component, contextid) for a specific user. Used by the favourites subsystem.'; + + +-- +-- TOC entry 602 (class 1259 OID 19700) +-- Name: mdl_favourite_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_favourite_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_favourite_id_seq OWNER TO postgres; + +-- +-- TOC entry 10805 (class 0 OID 0) +-- Dependencies: 602 +-- Name: mdl_favourite_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_favourite_id_seq OWNED BY public.mdl_favourite.id; + + +-- +-- TOC entry 717 (class 1259 OID 20707) +-- Name: mdl_feedback; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_feedback ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + intro text NOT NULL, + introformat smallint DEFAULT 0 NOT NULL, + anonymous smallint DEFAULT 1 NOT NULL, + email_notification smallint DEFAULT 1 NOT NULL, + multiple_submit smallint DEFAULT 1 NOT NULL, + autonumbering smallint DEFAULT 1 NOT NULL, + site_after_submit character varying(255) DEFAULT ''::character varying NOT NULL, + page_after_submit text NOT NULL, + page_after_submitformat smallint DEFAULT 0 NOT NULL, + publish_stats smallint DEFAULT 0 NOT NULL, + timeopen bigint DEFAULT 0 NOT NULL, + timeclose bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + completionsubmit smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_feedback OWNER TO postgres; + +-- +-- TOC entry 10806 (class 0 OID 0) +-- Dependencies: 717 +-- Name: TABLE mdl_feedback; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_feedback IS 'all feedbacks'; + + +-- +-- TOC entry 723 (class 1259 OID 20769) +-- Name: mdl_feedback_completed; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_feedback_completed ( + id bigint NOT NULL, + feedback bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + random_response bigint DEFAULT 0 NOT NULL, + anonymous_response smallint DEFAULT 0 NOT NULL, + courseid bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_feedback_completed OWNER TO postgres; + +-- +-- TOC entry 10807 (class 0 OID 0) +-- Dependencies: 723 +-- Name: TABLE mdl_feedback_completed; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_feedback_completed IS 'filled out feedback'; + + +-- +-- TOC entry 722 (class 1259 OID 20767) +-- Name: mdl_feedback_completed_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_feedback_completed_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_feedback_completed_id_seq OWNER TO postgres; + +-- +-- TOC entry 10808 (class 0 OID 0) +-- Dependencies: 722 +-- Name: mdl_feedback_completed_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_feedback_completed_id_seq OWNED BY public.mdl_feedback_completed.id; + + +-- +-- TOC entry 725 (class 1259 OID 20785) +-- Name: mdl_feedback_completedtmp; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_feedback_completedtmp ( + id bigint NOT NULL, + feedback bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + guestid character varying(255) DEFAULT ''::character varying NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + random_response bigint DEFAULT 0 NOT NULL, + anonymous_response smallint DEFAULT 0 NOT NULL, + courseid bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_feedback_completedtmp OWNER TO postgres; + +-- +-- TOC entry 10809 (class 0 OID 0) +-- Dependencies: 725 +-- Name: TABLE mdl_feedback_completedtmp; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_feedback_completedtmp IS 'filled out feedback'; + + +-- +-- TOC entry 724 (class 1259 OID 20783) +-- Name: mdl_feedback_completedtmp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_feedback_completedtmp_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_feedback_completedtmp_id_seq OWNER TO postgres; + +-- +-- TOC entry 10810 (class 0 OID 0) +-- Dependencies: 724 +-- Name: mdl_feedback_completedtmp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_feedback_completedtmp_id_seq OWNED BY public.mdl_feedback_completedtmp.id; + + +-- +-- TOC entry 716 (class 1259 OID 20705) +-- Name: mdl_feedback_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_feedback_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_feedback_id_seq OWNER TO postgres; + +-- +-- TOC entry 10811 (class 0 OID 0) +-- Dependencies: 716 +-- Name: mdl_feedback_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_feedback_id_seq OWNED BY public.mdl_feedback.id; + + +-- +-- TOC entry 721 (class 1259 OID 20745) +-- Name: mdl_feedback_item; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_feedback_item ( + id bigint NOT NULL, + feedback bigint DEFAULT 0 NOT NULL, + template bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + label character varying(255) DEFAULT ''::character varying NOT NULL, + presentation text NOT NULL, + typ character varying(255) DEFAULT ''::character varying NOT NULL, + hasvalue smallint DEFAULT 0 NOT NULL, + "position" smallint DEFAULT 0 NOT NULL, + required smallint DEFAULT 0 NOT NULL, + dependitem bigint DEFAULT 0 NOT NULL, + dependvalue character varying(255) DEFAULT ''::character varying NOT NULL, + options character varying(255) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_feedback_item OWNER TO postgres; + +-- +-- TOC entry 10812 (class 0 OID 0) +-- Dependencies: 721 +-- Name: TABLE mdl_feedback_item; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_feedback_item IS 'feedback_items'; + + +-- +-- TOC entry 720 (class 1259 OID 20743) +-- Name: mdl_feedback_item_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_feedback_item_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_feedback_item_id_seq OWNER TO postgres; + +-- +-- TOC entry 10813 (class 0 OID 0) +-- Dependencies: 720 +-- Name: mdl_feedback_item_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_feedback_item_id_seq OWNED BY public.mdl_feedback_item.id; + + +-- +-- TOC entry 731 (class 1259 OID 20838) +-- Name: mdl_feedback_sitecourse_map; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_feedback_sitecourse_map ( + id bigint NOT NULL, + feedbackid bigint DEFAULT 0 NOT NULL, + courseid bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_feedback_sitecourse_map OWNER TO postgres; + +-- +-- TOC entry 10814 (class 0 OID 0) +-- Dependencies: 731 +-- Name: TABLE mdl_feedback_sitecourse_map; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_feedback_sitecourse_map IS 'feedback sitecourse map'; + + +-- +-- TOC entry 730 (class 1259 OID 20836) +-- Name: mdl_feedback_sitecourse_map_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_feedback_sitecourse_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_feedback_sitecourse_map_id_seq OWNER TO postgres; + +-- +-- TOC entry 10815 (class 0 OID 0) +-- Dependencies: 730 +-- Name: mdl_feedback_sitecourse_map_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_feedback_sitecourse_map_id_seq OWNED BY public.mdl_feedback_sitecourse_map.id; + + +-- +-- TOC entry 719 (class 1259 OID 20733) +-- Name: mdl_feedback_template; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_feedback_template ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + ispublic smallint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_feedback_template OWNER TO postgres; + +-- +-- TOC entry 10816 (class 0 OID 0) +-- Dependencies: 719 +-- Name: TABLE mdl_feedback_template; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_feedback_template IS 'templates of feedbackstructures'; + + +-- +-- TOC entry 718 (class 1259 OID 20731) +-- Name: mdl_feedback_template_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_feedback_template_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_feedback_template_id_seq OWNER TO postgres; + +-- +-- TOC entry 10817 (class 0 OID 0) +-- Dependencies: 718 +-- Name: mdl_feedback_template_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_feedback_template_id_seq OWNED BY public.mdl_feedback_template.id; + + +-- +-- TOC entry 727 (class 1259 OID 20802) +-- Name: mdl_feedback_value; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_feedback_value ( + id bigint NOT NULL, + course_id bigint DEFAULT 0 NOT NULL, + item bigint DEFAULT 0 NOT NULL, + completed bigint DEFAULT 0 NOT NULL, + tmp_completed bigint DEFAULT 0 NOT NULL, + value text NOT NULL +); + + +ALTER TABLE public.mdl_feedback_value OWNER TO postgres; + +-- +-- TOC entry 10818 (class 0 OID 0) +-- Dependencies: 727 +-- Name: TABLE mdl_feedback_value; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_feedback_value IS 'values of the completeds'; + + +-- +-- TOC entry 726 (class 1259 OID 20800) +-- Name: mdl_feedback_value_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_feedback_value_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_feedback_value_id_seq OWNER TO postgres; + +-- +-- TOC entry 10819 (class 0 OID 0) +-- Dependencies: 726 +-- Name: mdl_feedback_value_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_feedback_value_id_seq OWNED BY public.mdl_feedback_value.id; + + +-- +-- TOC entry 729 (class 1259 OID 20820) +-- Name: mdl_feedback_valuetmp; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_feedback_valuetmp ( + id bigint NOT NULL, + course_id bigint DEFAULT 0 NOT NULL, + item bigint DEFAULT 0 NOT NULL, + completed bigint DEFAULT 0 NOT NULL, + tmp_completed bigint DEFAULT 0 NOT NULL, + value text NOT NULL +); + + +ALTER TABLE public.mdl_feedback_valuetmp OWNER TO postgres; + +-- +-- TOC entry 10820 (class 0 OID 0) +-- Dependencies: 729 +-- Name: TABLE mdl_feedback_valuetmp; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_feedback_valuetmp IS 'values of the completedstmp'; + + +-- +-- TOC entry 728 (class 1259 OID 20818) +-- Name: mdl_feedback_valuetmp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_feedback_valuetmp_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_feedback_valuetmp_id_seq OWNER TO postgres; + +-- +-- TOC entry 10821 (class 0 OID 0) +-- Dependencies: 728 +-- Name: mdl_feedback_valuetmp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_feedback_valuetmp_id_seq OWNED BY public.mdl_feedback_valuetmp.id; + + +-- +-- TOC entry 437 (class 1259 OID 18539) +-- Name: mdl_file_conversion; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_file_conversion ( + id bigint NOT NULL, + usermodified bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + sourcefileid bigint NOT NULL, + targetformat character varying(100) DEFAULT ''::character varying NOT NULL, + status bigint DEFAULT 0, + statusmessage text, + converter character varying(255), + destfileid bigint, + data text +); + + +ALTER TABLE public.mdl_file_conversion OWNER TO postgres; + +-- +-- TOC entry 10822 (class 0 OID 0) +-- Dependencies: 437 +-- Name: TABLE mdl_file_conversion; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_file_conversion IS 'Table to track file conversions.'; + + +-- +-- TOC entry 436 (class 1259 OID 18537) +-- Name: mdl_file_conversion_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_file_conversion_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_file_conversion_id_seq OWNER TO postgres; + +-- +-- TOC entry 10823 (class 0 OID 0) +-- Dependencies: 436 +-- Name: mdl_file_conversion_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_file_conversion_id_seq OWNED BY public.mdl_file_conversion.id; + + +-- +-- TOC entry 433 (class 1259 OID 18499) +-- Name: mdl_files; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_files ( + id bigint NOT NULL, + contenthash character varying(40) DEFAULT ''::character varying NOT NULL, + pathnamehash character varying(40) DEFAULT ''::character varying NOT NULL, + contextid bigint NOT NULL, + component character varying(100) DEFAULT ''::character varying NOT NULL, + filearea character varying(50) DEFAULT ''::character varying NOT NULL, + itemid bigint NOT NULL, + filepath character varying(255) DEFAULT ''::character varying NOT NULL, + filename character varying(255) DEFAULT ''::character varying NOT NULL, + userid bigint, + filesize bigint NOT NULL, + mimetype character varying(100), + status bigint DEFAULT 0 NOT NULL, + source text, + author character varying(255), + license character varying(255), + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + sortorder bigint DEFAULT 0 NOT NULL, + referencefileid bigint +); + + +ALTER TABLE public.mdl_files OWNER TO postgres; + +-- +-- TOC entry 10824 (class 0 OID 0) +-- Dependencies: 433 +-- Name: TABLE mdl_files; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_files IS 'description of files, content is stored in sha1 file pool'; + + +-- +-- TOC entry 432 (class 1259 OID 18497) +-- Name: mdl_files_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_files_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_files_id_seq OWNER TO postgres; + +-- +-- TOC entry 10825 (class 0 OID 0) +-- Dependencies: 432 +-- Name: mdl_files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_files_id_seq OWNED BY public.mdl_files.id; + + +-- +-- TOC entry 435 (class 1259 OID 18525) +-- Name: mdl_files_reference; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_files_reference ( + id bigint NOT NULL, + repositoryid bigint NOT NULL, + lastsync bigint, + reference text, + referencehash character varying(40) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_files_reference OWNER TO postgres; + +-- +-- TOC entry 10826 (class 0 OID 0) +-- Dependencies: 435 +-- Name: TABLE mdl_files_reference; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_files_reference IS 'Store files references'; + + +-- +-- TOC entry 434 (class 1259 OID 18523) +-- Name: mdl_files_reference_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_files_reference_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_files_reference_id_seq OWNER TO postgres; + +-- +-- TOC entry 10827 (class 0 OID 0) +-- Dependencies: 434 +-- Name: mdl_files_reference_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_files_reference_id_seq OWNED BY public.mdl_files_reference.id; + + +-- +-- TOC entry 220 (class 1259 OID 16705) +-- Name: mdl_filter_active; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_filter_active ( + id bigint NOT NULL, + filter character varying(32) DEFAULT ''::character varying NOT NULL, + contextid bigint NOT NULL, + active smallint NOT NULL, + sortorder bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_filter_active OWNER TO postgres; + +-- +-- TOC entry 10828 (class 0 OID 0) +-- Dependencies: 220 +-- Name: TABLE mdl_filter_active; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_filter_active IS 'Stores information about which filters are active in which contexts. Also the filter sort order. See get_active_filters in lib/filterlib.php for how this data is used.'; + + +-- +-- TOC entry 219 (class 1259 OID 16703) +-- Name: mdl_filter_active_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_filter_active_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_filter_active_id_seq OWNER TO postgres; + +-- +-- TOC entry 10829 (class 0 OID 0) +-- Dependencies: 219 +-- Name: mdl_filter_active_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_filter_active_id_seq OWNED BY public.mdl_filter_active.id; + + +-- +-- TOC entry 222 (class 1259 OID 16717) +-- Name: mdl_filter_config; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_filter_config ( + id bigint NOT NULL, + filter character varying(32) DEFAULT ''::character varying NOT NULL, + contextid bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + value text +); + + +ALTER TABLE public.mdl_filter_config OWNER TO postgres; + +-- +-- TOC entry 10830 (class 0 OID 0) +-- Dependencies: 222 +-- Name: TABLE mdl_filter_config; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_filter_config IS 'Stores per-context configuration settings for filters which have them.'; + + +-- +-- TOC entry 221 (class 1259 OID 16715) +-- Name: mdl_filter_config_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_filter_config_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_filter_config_id_seq OWNER TO postgres; + +-- +-- TOC entry 10831 (class 0 OID 0) +-- Dependencies: 221 +-- Name: mdl_filter_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_filter_config_id_seq OWNED BY public.mdl_filter_config.id; + + +-- +-- TOC entry 733 (class 1259 OID 20850) +-- Name: mdl_folder; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_folder ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + intro text, + introformat smallint DEFAULT 0 NOT NULL, + revision bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + display smallint DEFAULT 0 NOT NULL, + showexpanded smallint DEFAULT 1 NOT NULL, + showdownloadfolder smallint DEFAULT 1 NOT NULL +); + + +ALTER TABLE public.mdl_folder OWNER TO postgres; + +-- +-- TOC entry 10832 (class 0 OID 0) +-- Dependencies: 733 +-- Name: TABLE mdl_folder; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_folder IS 'each record is one folder resource'; + + +-- +-- TOC entry 732 (class 1259 OID 20848) +-- Name: mdl_folder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_folder_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_folder_id_seq OWNER TO postgres; + +-- +-- TOC entry 10833 (class 0 OID 0) +-- Dependencies: 732 +-- Name: mdl_folder_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_folder_id_seq OWNED BY public.mdl_folder.id; + + +-- +-- TOC entry 735 (class 1259 OID 20870) +-- Name: mdl_forum; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_forum ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + type character varying(20) DEFAULT 'general'::character varying NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + intro text NOT NULL, + introformat smallint DEFAULT 0 NOT NULL, + duedate bigint DEFAULT 0 NOT NULL, + cutoffdate bigint DEFAULT 0 NOT NULL, + assessed bigint DEFAULT 0 NOT NULL, + assesstimestart bigint DEFAULT 0 NOT NULL, + assesstimefinish bigint DEFAULT 0 NOT NULL, + scale bigint DEFAULT 0 NOT NULL, + grade_forum bigint DEFAULT 0 NOT NULL, + grade_forum_notify smallint DEFAULT 0 NOT NULL, + maxbytes bigint DEFAULT 0 NOT NULL, + maxattachments bigint DEFAULT 1 NOT NULL, + forcesubscribe smallint DEFAULT 0 NOT NULL, + trackingtype smallint DEFAULT 1 NOT NULL, + rsstype smallint DEFAULT 0 NOT NULL, + rssarticles smallint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + warnafter bigint DEFAULT 0 NOT NULL, + blockafter bigint DEFAULT 0 NOT NULL, + blockperiod bigint DEFAULT 0 NOT NULL, + completiondiscussions integer DEFAULT 0 NOT NULL, + completionreplies integer DEFAULT 0 NOT NULL, + completionposts integer DEFAULT 0 NOT NULL, + displaywordcount smallint DEFAULT 0 NOT NULL, + lockdiscussionafter bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_forum OWNER TO postgres; + +-- +-- TOC entry 10834 (class 0 OID 0) +-- Dependencies: 735 +-- Name: TABLE mdl_forum; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_forum IS 'Forums contain and structure discussion'; + + +-- +-- TOC entry 745 (class 1259 OID 20992) +-- Name: mdl_forum_digests; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_forum_digests ( + id bigint NOT NULL, + userid bigint NOT NULL, + forum bigint NOT NULL, + maildigest smallint DEFAULT '-1'::integer NOT NULL +); + + +ALTER TABLE public.mdl_forum_digests OWNER TO postgres; + +-- +-- TOC entry 10835 (class 0 OID 0) +-- Dependencies: 745 +-- Name: TABLE mdl_forum_digests; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_forum_digests IS 'Keeps track of user mail delivery preferences for each forum'; + + +-- +-- TOC entry 744 (class 1259 OID 20990) +-- Name: mdl_forum_digests_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_forum_digests_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_forum_digests_id_seq OWNER TO postgres; + +-- +-- TOC entry 10836 (class 0 OID 0) +-- Dependencies: 744 +-- Name: mdl_forum_digests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_forum_digests_id_seq OWNED BY public.mdl_forum_digests.id; + + +-- +-- TOC entry 751 (class 1259 OID 21032) +-- Name: mdl_forum_discussion_subs; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_forum_discussion_subs ( + id bigint NOT NULL, + forum bigint NOT NULL, + userid bigint NOT NULL, + discussion bigint NOT NULL, + preference bigint DEFAULT 1 NOT NULL +); + + +ALTER TABLE public.mdl_forum_discussion_subs OWNER TO postgres; + +-- +-- TOC entry 10837 (class 0 OID 0) +-- Dependencies: 751 +-- Name: TABLE mdl_forum_discussion_subs; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_forum_discussion_subs IS 'Users may choose to subscribe and unsubscribe from specific discussions.'; + + +-- +-- TOC entry 750 (class 1259 OID 21030) +-- Name: mdl_forum_discussion_subs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_forum_discussion_subs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_forum_discussion_subs_id_seq OWNER TO postgres; + +-- +-- TOC entry 10838 (class 0 OID 0) +-- Dependencies: 750 +-- Name: mdl_forum_discussion_subs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_forum_discussion_subs_id_seq OWNED BY public.mdl_forum_discussion_subs.id; + + +-- +-- TOC entry 737 (class 1259 OID 20909) +-- Name: mdl_forum_discussions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_forum_discussions ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + forum bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + firstpost bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + groupid bigint DEFAULT '-1'::integer NOT NULL, + assessed smallint DEFAULT 1 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + usermodified bigint DEFAULT 0 NOT NULL, + timestart bigint DEFAULT 0 NOT NULL, + timeend bigint DEFAULT 0 NOT NULL, + pinned smallint DEFAULT 0 NOT NULL, + timelocked bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_forum_discussions OWNER TO postgres; + +-- +-- TOC entry 10839 (class 0 OID 0) +-- Dependencies: 737 +-- Name: TABLE mdl_forum_discussions; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_forum_discussions IS 'Forums are composed of discussions'; + + +-- +-- TOC entry 736 (class 1259 OID 20907) +-- Name: mdl_forum_discussions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_forum_discussions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_forum_discussions_id_seq OWNER TO postgres; + +-- +-- TOC entry 10840 (class 0 OID 0) +-- Dependencies: 736 +-- Name: mdl_forum_discussions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_forum_discussions_id_seq OWNED BY public.mdl_forum_discussions.id; + + +-- +-- TOC entry 753 (class 1259 OID 21045) +-- Name: mdl_forum_grades; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_forum_grades ( + id bigint NOT NULL, + forum bigint NOT NULL, + itemnumber bigint NOT NULL, + userid bigint NOT NULL, + grade numeric(10,5), + timecreated bigint NOT NULL, + timemodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_forum_grades OWNER TO postgres; + +-- +-- TOC entry 10841 (class 0 OID 0) +-- Dependencies: 753 +-- Name: TABLE mdl_forum_grades; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_forum_grades IS 'Grading data for forum instances'; + + +-- +-- TOC entry 752 (class 1259 OID 21043) +-- Name: mdl_forum_grades_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_forum_grades_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_forum_grades_id_seq OWNER TO postgres; + +-- +-- TOC entry 10842 (class 0 OID 0) +-- Dependencies: 752 +-- Name: mdl_forum_grades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_forum_grades_id_seq OWNED BY public.mdl_forum_grades.id; + + +-- +-- TOC entry 734 (class 1259 OID 20868) +-- Name: mdl_forum_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_forum_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_forum_id_seq OWNER TO postgres; + +-- +-- TOC entry 10843 (class 0 OID 0) +-- Dependencies: 734 +-- Name: mdl_forum_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_forum_id_seq OWNED BY public.mdl_forum.id; + + +-- +-- TOC entry 739 (class 1259 OID 20933) +-- Name: mdl_forum_posts; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_forum_posts ( + id bigint NOT NULL, + discussion bigint DEFAULT 0 NOT NULL, + parent bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + created bigint DEFAULT 0 NOT NULL, + modified bigint DEFAULT 0 NOT NULL, + mailed smallint DEFAULT 0 NOT NULL, + subject character varying(255) DEFAULT ''::character varying NOT NULL, + message text NOT NULL, + messageformat smallint DEFAULT 0 NOT NULL, + messagetrust smallint DEFAULT 0 NOT NULL, + attachment character varying(100) DEFAULT ''::character varying NOT NULL, + totalscore smallint DEFAULT 0 NOT NULL, + mailnow bigint DEFAULT 0 NOT NULL, + deleted smallint DEFAULT 0 NOT NULL, + privatereplyto bigint DEFAULT 0 NOT NULL, + wordcount bigint, + charcount bigint +); + + +ALTER TABLE public.mdl_forum_posts OWNER TO postgres; + +-- +-- TOC entry 10844 (class 0 OID 0) +-- Dependencies: 739 +-- Name: TABLE mdl_forum_posts; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_forum_posts IS 'All posts are stored in this table'; + + +-- +-- TOC entry 738 (class 1259 OID 20931) +-- Name: mdl_forum_posts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_forum_posts_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_forum_posts_id_seq OWNER TO postgres; + +-- +-- TOC entry 10845 (class 0 OID 0) +-- Dependencies: 738 +-- Name: mdl_forum_posts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_forum_posts_id_seq OWNED BY public.mdl_forum_posts.id; + + +-- +-- TOC entry 741 (class 1259 OID 20964) +-- Name: mdl_forum_queue; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_forum_queue ( + id bigint NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + discussionid bigint DEFAULT 0 NOT NULL, + postid bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_forum_queue OWNER TO postgres; + +-- +-- TOC entry 10846 (class 0 OID 0) +-- Dependencies: 741 +-- Name: TABLE mdl_forum_queue; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_forum_queue IS 'For keeping track of posts that will be mailed in digest form'; + + +-- +-- TOC entry 740 (class 1259 OID 20962) +-- Name: mdl_forum_queue_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_forum_queue_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_forum_queue_id_seq OWNER TO postgres; + +-- +-- TOC entry 10847 (class 0 OID 0) +-- Dependencies: 740 +-- Name: mdl_forum_queue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_forum_queue_id_seq OWNED BY public.mdl_forum_queue.id; + + +-- +-- TOC entry 747 (class 1259 OID 21004) +-- Name: mdl_forum_read; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_forum_read ( + id bigint NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + forumid bigint DEFAULT 0 NOT NULL, + discussionid bigint DEFAULT 0 NOT NULL, + postid bigint DEFAULT 0 NOT NULL, + firstread bigint DEFAULT 0 NOT NULL, + lastread bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_forum_read OWNER TO postgres; + +-- +-- TOC entry 10848 (class 0 OID 0) +-- Dependencies: 747 +-- Name: TABLE mdl_forum_read; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_forum_read IS 'Tracks each users read posts'; + + +-- +-- TOC entry 746 (class 1259 OID 21002) +-- Name: mdl_forum_read_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_forum_read_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_forum_read_id_seq OWNER TO postgres; + +-- +-- TOC entry 10849 (class 0 OID 0) +-- Dependencies: 746 +-- Name: mdl_forum_read_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_forum_read_id_seq OWNED BY public.mdl_forum_read.id; + + +-- +-- TOC entry 743 (class 1259 OID 20979) +-- Name: mdl_forum_subscriptions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_forum_subscriptions ( + id bigint NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + forum bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_forum_subscriptions OWNER TO postgres; + +-- +-- TOC entry 10850 (class 0 OID 0) +-- Dependencies: 743 +-- Name: TABLE mdl_forum_subscriptions; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_forum_subscriptions IS 'Keeps track of who is subscribed to what forum'; + + +-- +-- TOC entry 742 (class 1259 OID 20977) +-- Name: mdl_forum_subscriptions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_forum_subscriptions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_forum_subscriptions_id_seq OWNER TO postgres; + +-- +-- TOC entry 10851 (class 0 OID 0) +-- Dependencies: 742 +-- Name: mdl_forum_subscriptions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_forum_subscriptions_id_seq OWNED BY public.mdl_forum_subscriptions.id; + + +-- +-- TOC entry 749 (class 1259 OID 21021) +-- Name: mdl_forum_track_prefs; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_forum_track_prefs ( + id bigint NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + forumid bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_forum_track_prefs OWNER TO postgres; + +-- +-- TOC entry 10852 (class 0 OID 0) +-- Dependencies: 749 +-- Name: TABLE mdl_forum_track_prefs; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_forum_track_prefs IS 'Tracks each users untracked forums'; + + +-- +-- TOC entry 748 (class 1259 OID 21019) +-- Name: mdl_forum_track_prefs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_forum_track_prefs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_forum_track_prefs_id_seq OWNER TO postgres; + +-- +-- TOC entry 10853 (class 0 OID 0) +-- Dependencies: 748 +-- Name: mdl_forum_track_prefs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_forum_track_prefs_id_seq OWNED BY public.mdl_forum_track_prefs.id; + + +-- +-- TOC entry 755 (class 1259 OID 21059) +-- Name: mdl_glossary; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_glossary ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + intro text NOT NULL, + introformat smallint DEFAULT 0 NOT NULL, + allowduplicatedentries smallint DEFAULT 0 NOT NULL, + displayformat character varying(50) DEFAULT 'dictionary'::character varying NOT NULL, + mainglossary smallint DEFAULT 0 NOT NULL, + showspecial smallint DEFAULT 1 NOT NULL, + showalphabet smallint DEFAULT 1 NOT NULL, + showall smallint DEFAULT 1 NOT NULL, + allowcomments smallint DEFAULT 0 NOT NULL, + allowprintview smallint DEFAULT 1 NOT NULL, + usedynalink smallint DEFAULT 1 NOT NULL, + defaultapproval smallint DEFAULT 1 NOT NULL, + approvaldisplayformat character varying(50) DEFAULT 'default'::character varying NOT NULL, + globalglossary smallint DEFAULT 0 NOT NULL, + entbypage smallint DEFAULT 10 NOT NULL, + editalways smallint DEFAULT 0 NOT NULL, + rsstype smallint DEFAULT 0 NOT NULL, + rssarticles smallint DEFAULT 0 NOT NULL, + assessed bigint DEFAULT 0 NOT NULL, + assesstimestart bigint DEFAULT 0 NOT NULL, + assesstimefinish bigint DEFAULT 0 NOT NULL, + scale bigint DEFAULT 0 NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + completionentries integer DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_glossary OWNER TO postgres; + +-- +-- TOC entry 10854 (class 0 OID 0) +-- Dependencies: 755 +-- Name: TABLE mdl_glossary; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_glossary IS 'all glossaries'; + + +-- +-- TOC entry 759 (class 1259 OID 21125) +-- Name: mdl_glossary_alias; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_glossary_alias ( + id bigint NOT NULL, + entryid bigint DEFAULT 0 NOT NULL, + alias character varying(255) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_glossary_alias OWNER TO postgres; + +-- +-- TOC entry 10855 (class 0 OID 0) +-- Dependencies: 759 +-- Name: TABLE mdl_glossary_alias; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_glossary_alias IS 'entries alias'; + + +-- +-- TOC entry 758 (class 1259 OID 21123) +-- Name: mdl_glossary_alias_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_glossary_alias_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_glossary_alias_id_seq OWNER TO postgres; + +-- +-- TOC entry 10856 (class 0 OID 0) +-- Dependencies: 758 +-- Name: mdl_glossary_alias_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_glossary_alias_id_seq OWNED BY public.mdl_glossary_alias.id; + + +-- +-- TOC entry 761 (class 1259 OID 21136) +-- Name: mdl_glossary_categories; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_glossary_categories ( + id bigint NOT NULL, + glossaryid bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + usedynalink smallint DEFAULT 1 NOT NULL +); + + +ALTER TABLE public.mdl_glossary_categories OWNER TO postgres; + +-- +-- TOC entry 10857 (class 0 OID 0) +-- Dependencies: 761 +-- Name: TABLE mdl_glossary_categories; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_glossary_categories IS 'all categories for glossary entries'; + + +-- +-- TOC entry 760 (class 1259 OID 21134) +-- Name: mdl_glossary_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_glossary_categories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_glossary_categories_id_seq OWNER TO postgres; + +-- +-- TOC entry 10858 (class 0 OID 0) +-- Dependencies: 760 +-- Name: mdl_glossary_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_glossary_categories_id_seq OWNED BY public.mdl_glossary_categories.id; + + +-- +-- TOC entry 757 (class 1259 OID 21097) +-- Name: mdl_glossary_entries; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_glossary_entries ( + id bigint NOT NULL, + glossaryid bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + concept character varying(255) DEFAULT ''::character varying NOT NULL, + definition text NOT NULL, + definitionformat smallint DEFAULT 0 NOT NULL, + definitiontrust smallint DEFAULT 0 NOT NULL, + attachment character varying(100) DEFAULT ''::character varying NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + teacherentry smallint DEFAULT 0 NOT NULL, + sourceglossaryid bigint DEFAULT 0 NOT NULL, + usedynalink smallint DEFAULT 1 NOT NULL, + casesensitive smallint DEFAULT 0 NOT NULL, + fullmatch smallint DEFAULT 1 NOT NULL, + approved smallint DEFAULT 1 NOT NULL +); + + +ALTER TABLE public.mdl_glossary_entries OWNER TO postgres; + +-- +-- TOC entry 10859 (class 0 OID 0) +-- Dependencies: 757 +-- Name: TABLE mdl_glossary_entries; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_glossary_entries IS 'all glossary entries'; + + +-- +-- TOC entry 763 (class 1259 OID 21148) +-- Name: mdl_glossary_entries_categories; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_glossary_entries_categories ( + id bigint NOT NULL, + categoryid bigint DEFAULT 0 NOT NULL, + entryid bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_glossary_entries_categories OWNER TO postgres; + +-- +-- TOC entry 10860 (class 0 OID 0) +-- Dependencies: 763 +-- Name: TABLE mdl_glossary_entries_categories; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_glossary_entries_categories IS 'categories of each glossary entry'; + + +-- +-- TOC entry 762 (class 1259 OID 21146) +-- Name: mdl_glossary_entries_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_glossary_entries_categories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_glossary_entries_categories_id_seq OWNER TO postgres; + +-- +-- TOC entry 10861 (class 0 OID 0) +-- Dependencies: 762 +-- Name: mdl_glossary_entries_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_glossary_entries_categories_id_seq OWNED BY public.mdl_glossary_entries_categories.id; + + +-- +-- TOC entry 756 (class 1259 OID 21095) +-- Name: mdl_glossary_entries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_glossary_entries_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_glossary_entries_id_seq OWNER TO postgres; + +-- +-- TOC entry 10862 (class 0 OID 0) +-- Dependencies: 756 +-- Name: mdl_glossary_entries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_glossary_entries_id_seq OWNED BY public.mdl_glossary_entries.id; + + +-- +-- TOC entry 765 (class 1259 OID 21160) +-- Name: mdl_glossary_formats; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_glossary_formats ( + id bigint NOT NULL, + name character varying(50) DEFAULT ''::character varying NOT NULL, + popupformatname character varying(50) DEFAULT ''::character varying NOT NULL, + visible smallint DEFAULT 1 NOT NULL, + showgroup smallint DEFAULT 1 NOT NULL, + showtabs character varying(100), + defaultmode character varying(50) DEFAULT ''::character varying NOT NULL, + defaulthook character varying(50) DEFAULT ''::character varying NOT NULL, + sortkey character varying(50) DEFAULT ''::character varying NOT NULL, + sortorder character varying(50) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_glossary_formats OWNER TO postgres; + +-- +-- TOC entry 10863 (class 0 OID 0) +-- Dependencies: 765 +-- Name: TABLE mdl_glossary_formats; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_glossary_formats IS 'Setting of the display formats'; + + +-- +-- TOC entry 764 (class 1259 OID 21158) +-- Name: mdl_glossary_formats_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_glossary_formats_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_glossary_formats_id_seq OWNER TO postgres; + +-- +-- TOC entry 10864 (class 0 OID 0) +-- Dependencies: 764 +-- Name: mdl_glossary_formats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_glossary_formats_id_seq OWNED BY public.mdl_glossary_formats.id; + + +-- +-- TOC entry 754 (class 1259 OID 21057) +-- Name: mdl_glossary_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_glossary_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_glossary_id_seq OWNER TO postgres; + +-- +-- TOC entry 10865 (class 0 OID 0) +-- Dependencies: 754 +-- Name: mdl_glossary_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_glossary_id_seq OWNED BY public.mdl_glossary.id; + + +-- +-- TOC entry 371 (class 1259 OID 17949) +-- Name: mdl_grade_categories; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_grade_categories ( + id bigint NOT NULL, + courseid bigint NOT NULL, + parent bigint, + depth bigint DEFAULT 0 NOT NULL, + path character varying(255), + fullname character varying(255) DEFAULT ''::character varying NOT NULL, + aggregation bigint DEFAULT 0 NOT NULL, + keephigh bigint DEFAULT 0 NOT NULL, + droplow bigint DEFAULT 0 NOT NULL, + aggregateonlygraded smallint DEFAULT 0 NOT NULL, + aggregateoutcomes smallint DEFAULT 0 NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + hidden smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_grade_categories OWNER TO postgres; + +-- +-- TOC entry 10866 (class 0 OID 0) +-- Dependencies: 371 +-- Name: TABLE mdl_grade_categories; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_grade_categories IS 'This table keeps information about categories, used for grouping items.'; + + +-- +-- TOC entry 379 (class 1259 OID 18053) +-- Name: mdl_grade_categories_history; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_grade_categories_history ( + id bigint NOT NULL, + action bigint DEFAULT 0 NOT NULL, + oldid bigint NOT NULL, + source character varying(255), + timemodified bigint, + loggeduser bigint, + courseid bigint NOT NULL, + parent bigint, + depth bigint DEFAULT 0 NOT NULL, + path character varying(255), + fullname character varying(255) DEFAULT ''::character varying NOT NULL, + aggregation bigint DEFAULT 0 NOT NULL, + keephigh bigint DEFAULT 0 NOT NULL, + droplow bigint DEFAULT 0 NOT NULL, + aggregateonlygraded smallint DEFAULT 0 NOT NULL, + aggregateoutcomes smallint DEFAULT 0 NOT NULL, + aggregatesubcats smallint DEFAULT 0 NOT NULL, + hidden smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_grade_categories_history OWNER TO postgres; + +-- +-- TOC entry 10867 (class 0 OID 0) +-- Dependencies: 379 +-- Name: TABLE mdl_grade_categories_history; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_grade_categories_history IS 'History of grade_categories'; + + +-- +-- TOC entry 378 (class 1259 OID 18051) +-- Name: mdl_grade_categories_history_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_grade_categories_history_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_grade_categories_history_id_seq OWNER TO postgres; + +-- +-- TOC entry 10868 (class 0 OID 0) +-- Dependencies: 378 +-- Name: mdl_grade_categories_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_grade_categories_history_id_seq OWNED BY public.mdl_grade_categories_history.id; + + +-- +-- TOC entry 370 (class 1259 OID 17947) +-- Name: mdl_grade_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_grade_categories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_grade_categories_id_seq OWNER TO postgres; + +-- +-- TOC entry 10869 (class 0 OID 0) +-- Dependencies: 370 +-- Name: mdl_grade_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_grade_categories_id_seq OWNED BY public.mdl_grade_categories.id; + + +-- +-- TOC entry 375 (class 1259 OID 18005) +-- Name: mdl_grade_grades; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_grade_grades ( + id bigint NOT NULL, + itemid bigint NOT NULL, + userid bigint NOT NULL, + rawgrade numeric(10,5), + rawgrademax numeric(10,5) DEFAULT 100 NOT NULL, + rawgrademin numeric(10,5) DEFAULT 0 NOT NULL, + rawscaleid bigint, + usermodified bigint, + finalgrade numeric(10,5), + hidden bigint DEFAULT 0 NOT NULL, + locked bigint DEFAULT 0 NOT NULL, + locktime bigint DEFAULT 0 NOT NULL, + exported bigint DEFAULT 0 NOT NULL, + overridden bigint DEFAULT 0 NOT NULL, + excluded bigint DEFAULT 0 NOT NULL, + feedback text, + feedbackformat bigint DEFAULT 0 NOT NULL, + information text, + informationformat bigint DEFAULT 0 NOT NULL, + timecreated bigint, + timemodified bigint, + aggregationstatus character varying(10) DEFAULT 'unknown'::character varying NOT NULL, + aggregationweight numeric(10,5) +); + + +ALTER TABLE public.mdl_grade_grades OWNER TO postgres; + +-- +-- TOC entry 10870 (class 0 OID 0) +-- Dependencies: 375 +-- Name: TABLE mdl_grade_grades; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_grade_grades IS 'grade_grades This table keeps individual grades for each user and each item, exactly as imported or submitted by modules. The rawgrademax/min and rawscaleid are stored here to record the values at the time the grade was stored, because teachers migh'; + + +-- +-- TOC entry 383 (class 1259 OID 18116) +-- Name: mdl_grade_grades_history; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_grade_grades_history ( + id bigint NOT NULL, + action bigint DEFAULT 0 NOT NULL, + oldid bigint NOT NULL, + source character varying(255), + timemodified bigint, + loggeduser bigint, + itemid bigint NOT NULL, + userid bigint NOT NULL, + rawgrade numeric(10,5), + rawgrademax numeric(10,5) DEFAULT 100 NOT NULL, + rawgrademin numeric(10,5) DEFAULT 0 NOT NULL, + rawscaleid bigint, + usermodified bigint, + finalgrade numeric(10,5), + hidden bigint DEFAULT 0 NOT NULL, + locked bigint DEFAULT 0 NOT NULL, + locktime bigint DEFAULT 0 NOT NULL, + exported bigint DEFAULT 0 NOT NULL, + overridden bigint DEFAULT 0 NOT NULL, + excluded bigint DEFAULT 0 NOT NULL, + feedback text, + feedbackformat bigint DEFAULT 0 NOT NULL, + information text, + informationformat bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_grade_grades_history OWNER TO postgres; + +-- +-- TOC entry 10871 (class 0 OID 0) +-- Dependencies: 383 +-- Name: TABLE mdl_grade_grades_history; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_grade_grades_history IS 'History table'; + + +-- +-- TOC entry 382 (class 1259 OID 18114) +-- Name: mdl_grade_grades_history_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_grade_grades_history_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_grade_grades_history_id_seq OWNER TO postgres; + +-- +-- TOC entry 10872 (class 0 OID 0) +-- Dependencies: 382 +-- Name: mdl_grade_grades_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_grade_grades_history_id_seq OWNED BY public.mdl_grade_grades_history.id; + + +-- +-- TOC entry 374 (class 1259 OID 18003) +-- Name: mdl_grade_grades_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_grade_grades_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_grade_grades_id_seq OWNER TO postgres; + +-- +-- TOC entry 10873 (class 0 OID 0) +-- Dependencies: 374 +-- Name: mdl_grade_grades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_grade_grades_id_seq OWNED BY public.mdl_grade_grades.id; + + +-- +-- TOC entry 385 (class 1259 OID 18147) +-- Name: mdl_grade_import_newitem; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_grade_import_newitem ( + id bigint NOT NULL, + itemname character varying(255) DEFAULT ''::character varying NOT NULL, + importcode bigint NOT NULL, + importer bigint NOT NULL +); + + +ALTER TABLE public.mdl_grade_import_newitem OWNER TO postgres; + +-- +-- TOC entry 10874 (class 0 OID 0) +-- Dependencies: 385 +-- Name: TABLE mdl_grade_import_newitem; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_grade_import_newitem IS 'temporary table for storing new grade_item names from grade import'; + + +-- +-- TOC entry 384 (class 1259 OID 18145) +-- Name: mdl_grade_import_newitem_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_grade_import_newitem_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_grade_import_newitem_id_seq OWNER TO postgres; + +-- +-- TOC entry 10875 (class 0 OID 0) +-- Dependencies: 384 +-- Name: mdl_grade_import_newitem_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_grade_import_newitem_id_seq OWNED BY public.mdl_grade_import_newitem.id; + + +-- +-- TOC entry 387 (class 1259 OID 18157) +-- Name: mdl_grade_import_values; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_grade_import_values ( + id bigint NOT NULL, + itemid bigint, + newgradeitem bigint, + userid bigint NOT NULL, + finalgrade numeric(10,5), + feedback text, + importcode bigint NOT NULL, + importer bigint, + importonlyfeedback smallint DEFAULT 0 +); + + +ALTER TABLE public.mdl_grade_import_values OWNER TO postgres; + +-- +-- TOC entry 10876 (class 0 OID 0) +-- Dependencies: 387 +-- Name: TABLE mdl_grade_import_values; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_grade_import_values IS 'Temporary table for importing grades'; + + +-- +-- TOC entry 386 (class 1259 OID 18155) +-- Name: mdl_grade_import_values_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_grade_import_values_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_grade_import_values_id_seq OWNER TO postgres; + +-- +-- TOC entry 10877 (class 0 OID 0) +-- Dependencies: 386 +-- Name: mdl_grade_import_values_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_grade_import_values_id_seq OWNED BY public.mdl_grade_import_values.id; + + +-- +-- TOC entry 373 (class 1259 OID 17970) +-- Name: mdl_grade_items; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_grade_items ( + id bigint NOT NULL, + courseid bigint, + categoryid bigint, + itemname character varying(255), + itemtype character varying(30) DEFAULT ''::character varying NOT NULL, + itemmodule character varying(30), + iteminstance bigint, + itemnumber bigint, + iteminfo text, + idnumber character varying(255), + calculation text, + gradetype smallint DEFAULT 1 NOT NULL, + grademax numeric(10,5) DEFAULT 100 NOT NULL, + grademin numeric(10,5) DEFAULT 0 NOT NULL, + scaleid bigint, + outcomeid bigint, + gradepass numeric(10,5) DEFAULT 0 NOT NULL, + multfactor numeric(10,5) DEFAULT 1.0 NOT NULL, + plusfactor numeric(10,5) DEFAULT 0 NOT NULL, + aggregationcoef numeric(10,5) DEFAULT 0 NOT NULL, + aggregationcoef2 numeric(10,5) DEFAULT 0 NOT NULL, + sortorder bigint DEFAULT 0 NOT NULL, + display bigint DEFAULT 0 NOT NULL, + decimals smallint, + hidden bigint DEFAULT 0 NOT NULL, + locked bigint DEFAULT 0 NOT NULL, + locktime bigint DEFAULT 0 NOT NULL, + needsupdate bigint DEFAULT 0 NOT NULL, + weightoverride smallint DEFAULT 0 NOT NULL, + timecreated bigint, + timemodified bigint +); + + +ALTER TABLE public.mdl_grade_items OWNER TO postgres; + +-- +-- TOC entry 10878 (class 0 OID 0) +-- Dependencies: 373 +-- Name: TABLE mdl_grade_items; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_grade_items IS 'This table keeps information about gradeable items (ie columns). If an activity (eg an assignment or quiz) has multiple grade_items associated with it (eg several outcomes or numerical grades), then there will be a corresponding multiple number of ro'; + + +-- +-- TOC entry 381 (class 1259 OID 18080) +-- Name: mdl_grade_items_history; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_grade_items_history ( + id bigint NOT NULL, + action bigint DEFAULT 0 NOT NULL, + oldid bigint NOT NULL, + source character varying(255), + timemodified bigint, + loggeduser bigint, + courseid bigint, + categoryid bigint, + itemname character varying(255), + itemtype character varying(30) DEFAULT ''::character varying NOT NULL, + itemmodule character varying(30), + iteminstance bigint, + itemnumber bigint, + iteminfo text, + idnumber character varying(255), + calculation text, + gradetype smallint DEFAULT 1 NOT NULL, + grademax numeric(10,5) DEFAULT 100 NOT NULL, + grademin numeric(10,5) DEFAULT 0 NOT NULL, + scaleid bigint, + outcomeid bigint, + gradepass numeric(10,5) DEFAULT 0 NOT NULL, + multfactor numeric(10,5) DEFAULT 1.0 NOT NULL, + plusfactor numeric(10,5) DEFAULT 0 NOT NULL, + aggregationcoef numeric(10,5) DEFAULT 0 NOT NULL, + aggregationcoef2 numeric(10,5) DEFAULT 0 NOT NULL, + sortorder bigint DEFAULT 0 NOT NULL, + hidden bigint DEFAULT 0 NOT NULL, + locked bigint DEFAULT 0 NOT NULL, + locktime bigint DEFAULT 0 NOT NULL, + needsupdate bigint DEFAULT 0 NOT NULL, + display bigint DEFAULT 0 NOT NULL, + decimals smallint, + weightoverride smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_grade_items_history OWNER TO postgres; + +-- +-- TOC entry 10879 (class 0 OID 0) +-- Dependencies: 381 +-- Name: TABLE mdl_grade_items_history; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_grade_items_history IS 'History of grade_items'; + + +-- +-- TOC entry 380 (class 1259 OID 18078) +-- Name: mdl_grade_items_history_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_grade_items_history_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_grade_items_history_id_seq OWNER TO postgres; + +-- +-- TOC entry 10880 (class 0 OID 0) +-- Dependencies: 380 +-- Name: mdl_grade_items_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_grade_items_history_id_seq OWNED BY public.mdl_grade_items_history.id; + + +-- +-- TOC entry 372 (class 1259 OID 17968) +-- Name: mdl_grade_items_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_grade_items_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_grade_items_id_seq OWNER TO postgres; + +-- +-- TOC entry 10881 (class 0 OID 0) +-- Dependencies: 372 +-- Name: mdl_grade_items_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_grade_items_id_seq OWNED BY public.mdl_grade_items.id; + + +-- +-- TOC entry 413 (class 1259 OID 18362) +-- Name: mdl_grade_letters; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_grade_letters ( + id bigint NOT NULL, + contextid bigint NOT NULL, + lowerboundary numeric(10,5) NOT NULL, + letter character varying(255) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_grade_letters OWNER TO postgres; + +-- +-- TOC entry 10882 (class 0 OID 0) +-- Dependencies: 413 +-- Name: TABLE mdl_grade_letters; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_grade_letters IS 'Repository for grade letters, for courses and other moodle entities that use grades.'; + + +-- +-- TOC entry 412 (class 1259 OID 18360) +-- Name: mdl_grade_letters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_grade_letters_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_grade_letters_id_seq OWNER TO postgres; + +-- +-- TOC entry 10883 (class 0 OID 0) +-- Dependencies: 412 +-- Name: mdl_grade_letters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_grade_letters_id_seq OWNED BY public.mdl_grade_letters.id; + + +-- +-- TOC entry 367 (class 1259 OID 17921) +-- Name: mdl_grade_outcomes; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_grade_outcomes ( + id bigint NOT NULL, + courseid bigint, + shortname character varying(255) DEFAULT ''::character varying NOT NULL, + fullname text NOT NULL, + scaleid bigint, + description text, + descriptionformat smallint DEFAULT 0 NOT NULL, + timecreated bigint, + timemodified bigint, + usermodified bigint +); + + +ALTER TABLE public.mdl_grade_outcomes OWNER TO postgres; + +-- +-- TOC entry 10884 (class 0 OID 0) +-- Dependencies: 367 +-- Name: TABLE mdl_grade_outcomes; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_grade_outcomes IS 'This table describes the outcomes used in the system. An outcome is a statement tied to a rubric scale from low to high, such as “Not met, Borderline, Met” (stored as 0,1 or 2)'; + + +-- +-- TOC entry 369 (class 1259 OID 17938) +-- Name: mdl_grade_outcomes_courses; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_grade_outcomes_courses ( + id bigint NOT NULL, + courseid bigint NOT NULL, + outcomeid bigint NOT NULL +); + + +ALTER TABLE public.mdl_grade_outcomes_courses OWNER TO postgres; + +-- +-- TOC entry 10885 (class 0 OID 0) +-- Dependencies: 369 +-- Name: TABLE mdl_grade_outcomes_courses; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_grade_outcomes_courses IS 'stores what outcomes are used in what courses.'; + + +-- +-- TOC entry 368 (class 1259 OID 17936) +-- Name: mdl_grade_outcomes_courses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_grade_outcomes_courses_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_grade_outcomes_courses_id_seq OWNER TO postgres; + +-- +-- TOC entry 10886 (class 0 OID 0) +-- Dependencies: 368 +-- Name: mdl_grade_outcomes_courses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_grade_outcomes_courses_id_seq OWNED BY public.mdl_grade_outcomes_courses.id; + + +-- +-- TOC entry 377 (class 1259 OID 18033) +-- Name: mdl_grade_outcomes_history; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_grade_outcomes_history ( + id bigint NOT NULL, + action bigint DEFAULT 0 NOT NULL, + oldid bigint NOT NULL, + source character varying(255), + timemodified bigint, + loggeduser bigint, + courseid bigint, + shortname character varying(255) DEFAULT ''::character varying NOT NULL, + fullname text NOT NULL, + scaleid bigint, + description text, + descriptionformat smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_grade_outcomes_history OWNER TO postgres; + +-- +-- TOC entry 10887 (class 0 OID 0) +-- Dependencies: 377 +-- Name: TABLE mdl_grade_outcomes_history; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_grade_outcomes_history IS 'History table'; + + +-- +-- TOC entry 376 (class 1259 OID 18031) +-- Name: mdl_grade_outcomes_history_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_grade_outcomes_history_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_grade_outcomes_history_id_seq OWNER TO postgres; + +-- +-- TOC entry 10888 (class 0 OID 0) +-- Dependencies: 376 +-- Name: mdl_grade_outcomes_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_grade_outcomes_history_id_seq OWNED BY public.mdl_grade_outcomes_history.id; + + +-- +-- TOC entry 366 (class 1259 OID 17919) +-- Name: mdl_grade_outcomes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_grade_outcomes_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_grade_outcomes_id_seq OWNER TO postgres; + +-- +-- TOC entry 10889 (class 0 OID 0) +-- Dependencies: 366 +-- Name: mdl_grade_outcomes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_grade_outcomes_id_seq OWNED BY public.mdl_grade_outcomes.id; + + +-- +-- TOC entry 417 (class 1259 OID 18388) +-- Name: mdl_grade_settings; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_grade_settings ( + id bigint NOT NULL, + courseid bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + value text +); + + +ALTER TABLE public.mdl_grade_settings OWNER TO postgres; + +-- +-- TOC entry 10890 (class 0 OID 0) +-- Dependencies: 417 +-- Name: TABLE mdl_grade_settings; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_grade_settings IS 'gradebook settings'; + + +-- +-- TOC entry 416 (class 1259 OID 18386) +-- Name: mdl_grade_settings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_grade_settings_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_grade_settings_id_seq OWNER TO postgres; + +-- +-- TOC entry 10891 (class 0 OID 0) +-- Dependencies: 416 +-- Name: mdl_grade_settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_grade_settings_id_seq OWNED BY public.mdl_grade_settings.id; + + +-- +-- TOC entry 483 (class 1259 OID 18865) +-- Name: mdl_grading_areas; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_grading_areas ( + id bigint NOT NULL, + contextid bigint NOT NULL, + component character varying(100) DEFAULT ''::character varying NOT NULL, + areaname character varying(100) DEFAULT ''::character varying NOT NULL, + activemethod character varying(100) +); + + +ALTER TABLE public.mdl_grading_areas OWNER TO postgres; + +-- +-- TOC entry 10892 (class 0 OID 0) +-- Dependencies: 483 +-- Name: TABLE mdl_grading_areas; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_grading_areas IS 'Identifies gradable areas where advanced grading can happen. For each area, the current active plugin can be set.'; + + +-- +-- TOC entry 482 (class 1259 OID 18863) +-- Name: mdl_grading_areas_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_grading_areas_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_grading_areas_id_seq OWNER TO postgres; + +-- +-- TOC entry 10893 (class 0 OID 0) +-- Dependencies: 482 +-- Name: mdl_grading_areas_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_grading_areas_id_seq OWNED BY public.mdl_grading_areas.id; + + +-- +-- TOC entry 485 (class 1259 OID 18877) +-- Name: mdl_grading_definitions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_grading_definitions ( + id bigint NOT NULL, + areaid bigint NOT NULL, + method character varying(100) DEFAULT ''::character varying NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + description text, + descriptionformat smallint, + status bigint DEFAULT 0 NOT NULL, + copiedfromid bigint, + timecreated bigint NOT NULL, + usercreated bigint NOT NULL, + timemodified bigint NOT NULL, + usermodified bigint NOT NULL, + timecopied bigint DEFAULT 0, + options text +); + + +ALTER TABLE public.mdl_grading_definitions OWNER TO postgres; + +-- +-- TOC entry 10894 (class 0 OID 0) +-- Dependencies: 485 +-- Name: TABLE mdl_grading_definitions; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_grading_definitions IS 'Contains the basic information about an advanced grading form defined in the given gradable area'; + + +-- +-- TOC entry 484 (class 1259 OID 18875) +-- Name: mdl_grading_definitions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_grading_definitions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_grading_definitions_id_seq OWNER TO postgres; + +-- +-- TOC entry 10895 (class 0 OID 0) +-- Dependencies: 484 +-- Name: mdl_grading_definitions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_grading_definitions_id_seq OWNED BY public.mdl_grading_definitions.id; + + +-- +-- TOC entry 487 (class 1259 OID 18896) +-- Name: mdl_grading_instances; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_grading_instances ( + id bigint NOT NULL, + definitionid bigint NOT NULL, + raterid bigint NOT NULL, + itemid bigint, + rawgrade numeric(10,5), + status bigint DEFAULT 0 NOT NULL, + feedback text, + feedbackformat smallint, + timemodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_grading_instances OWNER TO postgres; + +-- +-- TOC entry 10896 (class 0 OID 0) +-- Dependencies: 487 +-- Name: TABLE mdl_grading_instances; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_grading_instances IS 'Grading form instance is an assessment record for one gradable item assessed by one rater'; + + +-- +-- TOC entry 486 (class 1259 OID 18894) +-- Name: mdl_grading_instances_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_grading_instances_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_grading_instances_id_seq OWNER TO postgres; + +-- +-- TOC entry 10897 (class 0 OID 0) +-- Dependencies: 486 +-- Name: mdl_grading_instances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_grading_instances_id_seq OWNED BY public.mdl_grading_instances.id; + + +-- +-- TOC entry 933 (class 1259 OID 22636) +-- Name: mdl_gradingform_guide_comments; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_gradingform_guide_comments ( + id bigint NOT NULL, + definitionid bigint NOT NULL, + sortorder bigint NOT NULL, + description text, + descriptionformat smallint +); + + +ALTER TABLE public.mdl_gradingform_guide_comments OWNER TO postgres; + +-- +-- TOC entry 10898 (class 0 OID 0) +-- Dependencies: 933 +-- Name: TABLE mdl_gradingform_guide_comments; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_gradingform_guide_comments IS 'frequently used comments used in marking guide'; + + +-- +-- TOC entry 932 (class 1259 OID 22634) +-- Name: mdl_gradingform_guide_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_gradingform_guide_comments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_gradingform_guide_comments_id_seq OWNER TO postgres; + +-- +-- TOC entry 10899 (class 0 OID 0) +-- Dependencies: 932 +-- Name: mdl_gradingform_guide_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_gradingform_guide_comments_id_seq OWNED BY public.mdl_gradingform_guide_comments.id; + + +-- +-- TOC entry 929 (class 1259 OID 22609) +-- Name: mdl_gradingform_guide_criteria; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_gradingform_guide_criteria ( + id bigint NOT NULL, + definitionid bigint NOT NULL, + sortorder bigint NOT NULL, + shortname character varying(255) DEFAULT ''::character varying NOT NULL, + description text, + descriptionformat smallint, + descriptionmarkers text, + descriptionmarkersformat smallint, + maxscore numeric(10,5) NOT NULL +); + + +ALTER TABLE public.mdl_gradingform_guide_criteria OWNER TO postgres; + +-- +-- TOC entry 10900 (class 0 OID 0) +-- Dependencies: 929 +-- Name: TABLE mdl_gradingform_guide_criteria; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_gradingform_guide_criteria IS 'Stores the rows of the criteria grid.'; + + +-- +-- TOC entry 928 (class 1259 OID 22607) +-- Name: mdl_gradingform_guide_criteria_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_gradingform_guide_criteria_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_gradingform_guide_criteria_id_seq OWNER TO postgres; + +-- +-- TOC entry 10901 (class 0 OID 0) +-- Dependencies: 928 +-- Name: mdl_gradingform_guide_criteria_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_gradingform_guide_criteria_id_seq OWNED BY public.mdl_gradingform_guide_criteria.id; + + +-- +-- TOC entry 931 (class 1259 OID 22622) +-- Name: mdl_gradingform_guide_fillings; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_gradingform_guide_fillings ( + id bigint NOT NULL, + instanceid bigint NOT NULL, + criterionid bigint NOT NULL, + remark text, + remarkformat smallint, + score numeric(10,5) NOT NULL +); + + +ALTER TABLE public.mdl_gradingform_guide_fillings OWNER TO postgres; + +-- +-- TOC entry 10902 (class 0 OID 0) +-- Dependencies: 931 +-- Name: TABLE mdl_gradingform_guide_fillings; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_gradingform_guide_fillings IS 'Stores the data of how the guide is filled by a particular rater'; + + +-- +-- TOC entry 930 (class 1259 OID 22620) +-- Name: mdl_gradingform_guide_fillings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_gradingform_guide_fillings_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_gradingform_guide_fillings_id_seq OWNER TO postgres; + +-- +-- TOC entry 10903 (class 0 OID 0) +-- Dependencies: 930 +-- Name: mdl_gradingform_guide_fillings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_gradingform_guide_fillings_id_seq OWNED BY public.mdl_gradingform_guide_fillings.id; + + +-- +-- TOC entry 935 (class 1259 OID 22648) +-- Name: mdl_gradingform_rubric_criteria; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_gradingform_rubric_criteria ( + id bigint NOT NULL, + definitionid bigint NOT NULL, + sortorder bigint NOT NULL, + description text, + descriptionformat smallint +); + + +ALTER TABLE public.mdl_gradingform_rubric_criteria OWNER TO postgres; + +-- +-- TOC entry 10904 (class 0 OID 0) +-- Dependencies: 935 +-- Name: TABLE mdl_gradingform_rubric_criteria; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_gradingform_rubric_criteria IS 'Stores the rows of the rubric grid.'; + + +-- +-- TOC entry 934 (class 1259 OID 22646) +-- Name: mdl_gradingform_rubric_criteria_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_gradingform_rubric_criteria_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_gradingform_rubric_criteria_id_seq OWNER TO postgres; + +-- +-- TOC entry 10905 (class 0 OID 0) +-- Dependencies: 934 +-- Name: mdl_gradingform_rubric_criteria_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_gradingform_rubric_criteria_id_seq OWNED BY public.mdl_gradingform_rubric_criteria.id; + + +-- +-- TOC entry 939 (class 1259 OID 22672) +-- Name: mdl_gradingform_rubric_fillings; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_gradingform_rubric_fillings ( + id bigint NOT NULL, + instanceid bigint NOT NULL, + criterionid bigint NOT NULL, + levelid bigint, + remark text, + remarkformat smallint +); + + +ALTER TABLE public.mdl_gradingform_rubric_fillings OWNER TO postgres; + +-- +-- TOC entry 10906 (class 0 OID 0) +-- Dependencies: 939 +-- Name: TABLE mdl_gradingform_rubric_fillings; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_gradingform_rubric_fillings IS 'Stores the data of how the rubric is filled by a particular rater'; + + +-- +-- TOC entry 938 (class 1259 OID 22670) +-- Name: mdl_gradingform_rubric_fillings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_gradingform_rubric_fillings_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_gradingform_rubric_fillings_id_seq OWNER TO postgres; + +-- +-- TOC entry 10907 (class 0 OID 0) +-- Dependencies: 938 +-- Name: mdl_gradingform_rubric_fillings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_gradingform_rubric_fillings_id_seq OWNED BY public.mdl_gradingform_rubric_fillings.id; + + +-- +-- TOC entry 937 (class 1259 OID 22660) +-- Name: mdl_gradingform_rubric_levels; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_gradingform_rubric_levels ( + id bigint NOT NULL, + criterionid bigint NOT NULL, + score numeric(10,5) NOT NULL, + definition text, + definitionformat bigint +); + + +ALTER TABLE public.mdl_gradingform_rubric_levels OWNER TO postgres; + +-- +-- TOC entry 10908 (class 0 OID 0) +-- Dependencies: 937 +-- Name: TABLE mdl_gradingform_rubric_levels; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_gradingform_rubric_levels IS 'Stores the columns of the rubric grid.'; + + +-- +-- TOC entry 936 (class 1259 OID 22658) +-- Name: mdl_gradingform_rubric_levels_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_gradingform_rubric_levels_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_gradingform_rubric_levels_id_seq OWNER TO postgres; + +-- +-- TOC entry 10909 (class 0 OID 0) +-- Dependencies: 936 +-- Name: mdl_gradingform_rubric_levels_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_gradingform_rubric_levels_id_seq OWNED BY public.mdl_gradingform_rubric_levels.id; + + +-- +-- TOC entry 401 (class 1259 OID 18270) +-- Name: mdl_groupings; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_groupings ( + id bigint NOT NULL, + courseid bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + idnumber character varying(100) DEFAULT ''::character varying NOT NULL, + description text, + descriptionformat smallint DEFAULT 0 NOT NULL, + configdata text, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_groupings OWNER TO postgres; + +-- +-- TOC entry 10910 (class 0 OID 0) +-- Dependencies: 401 +-- Name: TABLE mdl_groupings; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_groupings IS 'A grouping is a collection of groups. WAS: groups_groupings'; + + +-- +-- TOC entry 405 (class 1259 OID 18305) +-- Name: mdl_groupings_groups; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_groupings_groups ( + id bigint NOT NULL, + groupingid bigint DEFAULT 0 NOT NULL, + groupid bigint DEFAULT 0 NOT NULL, + timeadded bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_groupings_groups OWNER TO postgres; + +-- +-- TOC entry 10911 (class 0 OID 0) +-- Dependencies: 405 +-- Name: TABLE mdl_groupings_groups; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_groupings_groups IS 'Link a grouping to a group (note, groups can be in multiple groupings ONLY in a course). WAS: groups_groupings_groups'; + + +-- +-- TOC entry 404 (class 1259 OID 18303) +-- Name: mdl_groupings_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_groupings_groups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_groupings_groups_id_seq OWNER TO postgres; + +-- +-- TOC entry 10912 (class 0 OID 0) +-- Dependencies: 404 +-- Name: mdl_groupings_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_groupings_groups_id_seq OWNED BY public.mdl_groupings_groups.id; + + +-- +-- TOC entry 400 (class 1259 OID 18268) +-- Name: mdl_groupings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_groupings_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_groupings_id_seq OWNER TO postgres; + +-- +-- TOC entry 10913 (class 0 OID 0) +-- Dependencies: 400 +-- Name: mdl_groupings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_groupings_id_seq OWNED BY public.mdl_groupings.id; + + +-- +-- TOC entry 399 (class 1259 OID 18250) +-- Name: mdl_groups; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_groups ( + id bigint NOT NULL, + courseid bigint NOT NULL, + idnumber character varying(100) DEFAULT ''::character varying NOT NULL, + name character varying(254) DEFAULT ''::character varying NOT NULL, + description text, + descriptionformat smallint DEFAULT 0 NOT NULL, + enrolmentkey character varying(50), + picture bigint DEFAULT 0 NOT NULL, + hidepicture smallint DEFAULT 0 NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_groups OWNER TO postgres; + +-- +-- TOC entry 10914 (class 0 OID 0) +-- Dependencies: 399 +-- Name: TABLE mdl_groups; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_groups IS 'Each record represents a group.'; + + +-- +-- TOC entry 398 (class 1259 OID 18248) +-- Name: mdl_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_groups_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_groups_id_seq OWNER TO postgres; + +-- +-- TOC entry 10915 (class 0 OID 0) +-- Dependencies: 398 +-- Name: mdl_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_groups_id_seq OWNED BY public.mdl_groups.id; + + +-- +-- TOC entry 403 (class 1259 OID 18289) +-- Name: mdl_groups_members; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_groups_members ( + id bigint NOT NULL, + groupid bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + timeadded bigint DEFAULT 0 NOT NULL, + component character varying(100) DEFAULT ''::character varying NOT NULL, + itemid bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_groups_members OWNER TO postgres; + +-- +-- TOC entry 10916 (class 0 OID 0) +-- Dependencies: 403 +-- Name: TABLE mdl_groups_members; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_groups_members IS 'Link a user to a group.'; + + +-- +-- TOC entry 402 (class 1259 OID 18287) +-- Name: mdl_groups_members_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_groups_members_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_groups_members_id_seq OWNER TO postgres; + +-- +-- TOC entry 10917 (class 0 OID 0) +-- Dependencies: 402 +-- Name: mdl_groups_members_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_groups_members_id_seq OWNED BY public.mdl_groups_members.id; + + +-- +-- TOC entry 615 (class 1259 OID 19792) +-- Name: mdl_h5p; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_h5p ( + id bigint NOT NULL, + jsoncontent text NOT NULL, + mainlibraryid bigint NOT NULL, + displayoptions smallint, + pathnamehash character varying(40) DEFAULT ''::character varying NOT NULL, + contenthash character varying(40) DEFAULT ''::character varying NOT NULL, + filtered text, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_h5p OWNER TO postgres; + +-- +-- TOC entry 10918 (class 0 OID 0) +-- Dependencies: 615 +-- Name: TABLE mdl_h5p; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_h5p IS 'Stores H5P content information'; + + +-- +-- TOC entry 617 (class 1259 OID 19808) +-- Name: mdl_h5p_contents_libraries; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_h5p_contents_libraries ( + id bigint NOT NULL, + h5pid bigint NOT NULL, + libraryid bigint NOT NULL, + dependencytype character varying(10) DEFAULT ''::character varying NOT NULL, + dropcss smallint NOT NULL, + weight bigint NOT NULL +); + + +ALTER TABLE public.mdl_h5p_contents_libraries OWNER TO postgres; + +-- +-- TOC entry 10919 (class 0 OID 0) +-- Dependencies: 617 +-- Name: TABLE mdl_h5p_contents_libraries; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_h5p_contents_libraries IS 'Store which library is used in which content.'; + + +-- +-- TOC entry 616 (class 1259 OID 19806) +-- Name: mdl_h5p_contents_libraries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_h5p_contents_libraries_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_h5p_contents_libraries_id_seq OWNER TO postgres; + +-- +-- TOC entry 10920 (class 0 OID 0) +-- Dependencies: 616 +-- Name: mdl_h5p_contents_libraries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_h5p_contents_libraries_id_seq OWNED BY public.mdl_h5p_contents_libraries.id; + + +-- +-- TOC entry 614 (class 1259 OID 19790) +-- Name: mdl_h5p_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_h5p_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_h5p_id_seq OWNER TO postgres; + +-- +-- TOC entry 10921 (class 0 OID 0) +-- Dependencies: 614 +-- Name: mdl_h5p_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_h5p_id_seq OWNED BY public.mdl_h5p.id; + + +-- +-- TOC entry 611 (class 1259 OID 19765) +-- Name: mdl_h5p_libraries; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_h5p_libraries ( + id bigint NOT NULL, + machinename character varying(255) DEFAULT ''::character varying NOT NULL, + title character varying(255) DEFAULT ''::character varying NOT NULL, + majorversion smallint NOT NULL, + minorversion smallint NOT NULL, + patchversion smallint NOT NULL, + runnable smallint NOT NULL, + fullscreen smallint DEFAULT 0 NOT NULL, + embedtypes character varying(255) DEFAULT ''::character varying NOT NULL, + preloadedjs text, + preloadedcss text, + droplibrarycss text, + semantics text, + addto text, + coremajor smallint, + coreminor smallint, + metadatasettings text +); + + +ALTER TABLE public.mdl_h5p_libraries OWNER TO postgres; + +-- +-- TOC entry 10922 (class 0 OID 0) +-- Dependencies: 611 +-- Name: TABLE mdl_h5p_libraries; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_h5p_libraries IS 'Stores information about libraries used by H5P content.'; + + +-- +-- TOC entry 619 (class 1259 OID 19819) +-- Name: mdl_h5p_libraries_cachedassets; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_h5p_libraries_cachedassets ( + id bigint NOT NULL, + libraryid bigint NOT NULL, + hash character varying(255) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_h5p_libraries_cachedassets OWNER TO postgres; + +-- +-- TOC entry 10923 (class 0 OID 0) +-- Dependencies: 619 +-- Name: TABLE mdl_h5p_libraries_cachedassets; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_h5p_libraries_cachedassets IS 'H5P cached library assets'; + + +-- +-- TOC entry 618 (class 1259 OID 19817) +-- Name: mdl_h5p_libraries_cachedassets_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_h5p_libraries_cachedassets_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_h5p_libraries_cachedassets_id_seq OWNER TO postgres; + +-- +-- TOC entry 10924 (class 0 OID 0) +-- Dependencies: 618 +-- Name: mdl_h5p_libraries_cachedassets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_h5p_libraries_cachedassets_id_seq OWNED BY public.mdl_h5p_libraries_cachedassets.id; + + +-- +-- TOC entry 610 (class 1259 OID 19763) +-- Name: mdl_h5p_libraries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_h5p_libraries_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_h5p_libraries_id_seq OWNER TO postgres; + +-- +-- TOC entry 10925 (class 0 OID 0) +-- Dependencies: 610 +-- Name: mdl_h5p_libraries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_h5p_libraries_id_seq OWNED BY public.mdl_h5p_libraries.id; + + +-- +-- TOC entry 613 (class 1259 OID 19781) +-- Name: mdl_h5p_library_dependencies; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_h5p_library_dependencies ( + id bigint NOT NULL, + libraryid bigint NOT NULL, + requiredlibraryid bigint NOT NULL, + dependencytype character varying(255) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_h5p_library_dependencies OWNER TO postgres; + +-- +-- TOC entry 10926 (class 0 OID 0) +-- Dependencies: 613 +-- Name: TABLE mdl_h5p_library_dependencies; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_h5p_library_dependencies IS 'Stores H5P library dependencies'; + + +-- +-- TOC entry 612 (class 1259 OID 19779) +-- Name: mdl_h5p_library_dependencies_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_h5p_library_dependencies_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_h5p_library_dependencies_id_seq OWNER TO postgres; + +-- +-- TOC entry 10927 (class 0 OID 0) +-- Dependencies: 612 +-- Name: mdl_h5p_library_dependencies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_h5p_library_dependencies_id_seq OWNED BY public.mdl_h5p_library_dependencies.id; + + +-- +-- TOC entry 767 (class 1259 OID 21176) +-- Name: mdl_h5pactivity; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_h5pactivity ( + id bigint NOT NULL, + course bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + intro text, + introformat smallint DEFAULT 0 NOT NULL, + grade bigint DEFAULT 0, + displayoptions smallint DEFAULT 0 NOT NULL, + enabletracking smallint DEFAULT 1 NOT NULL, + grademethod smallint DEFAULT 1 NOT NULL, + reviewmode smallint DEFAULT 1 +); + + +ALTER TABLE public.mdl_h5pactivity OWNER TO postgres; + +-- +-- TOC entry 10928 (class 0 OID 0) +-- Dependencies: 767 +-- Name: TABLE mdl_h5pactivity; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_h5pactivity IS 'Stores the h5pactivity activity module instances.'; + + +-- +-- TOC entry 769 (class 1259 OID 21195) +-- Name: mdl_h5pactivity_attempts; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_h5pactivity_attempts ( + id bigint NOT NULL, + h5pactivityid bigint NOT NULL, + userid bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + attempt integer DEFAULT 1 NOT NULL, + rawscore bigint DEFAULT 0, + maxscore bigint DEFAULT 0, + scaled numeric(10,5) DEFAULT 0 NOT NULL, + duration bigint DEFAULT 0, + completion smallint, + success smallint +); + + +ALTER TABLE public.mdl_h5pactivity_attempts OWNER TO postgres; + +-- +-- TOC entry 10929 (class 0 OID 0) +-- Dependencies: 769 +-- Name: TABLE mdl_h5pactivity_attempts; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_h5pactivity_attempts IS 'Users attempts inside H5P activities'; + + +-- +-- TOC entry 768 (class 1259 OID 21193) +-- Name: mdl_h5pactivity_attempts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_h5pactivity_attempts_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_h5pactivity_attempts_id_seq OWNER TO postgres; + +-- +-- TOC entry 10930 (class 0 OID 0) +-- Dependencies: 768 +-- Name: mdl_h5pactivity_attempts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_h5pactivity_attempts_id_seq OWNED BY public.mdl_h5pactivity_attempts.id; + + +-- +-- TOC entry 771 (class 1259 OID 21213) +-- Name: mdl_h5pactivity_attempts_results; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_h5pactivity_attempts_results ( + id bigint NOT NULL, + attemptid bigint NOT NULL, + subcontent character varying(128), + timecreated bigint NOT NULL, + interactiontype character varying(128), + description text, + correctpattern text, + response text NOT NULL, + additionals text, + rawscore bigint DEFAULT 0 NOT NULL, + maxscore bigint DEFAULT 0 NOT NULL, + duration bigint DEFAULT 0, + completion smallint, + success smallint +); + + +ALTER TABLE public.mdl_h5pactivity_attempts_results OWNER TO postgres; + +-- +-- TOC entry 10931 (class 0 OID 0) +-- Dependencies: 771 +-- Name: TABLE mdl_h5pactivity_attempts_results; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_h5pactivity_attempts_results IS 'H5Pactivities_attempts tracking info'; + + +-- +-- TOC entry 770 (class 1259 OID 21211) +-- Name: mdl_h5pactivity_attempts_results_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_h5pactivity_attempts_results_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_h5pactivity_attempts_results_id_seq OWNER TO postgres; + +-- +-- TOC entry 10932 (class 0 OID 0) +-- Dependencies: 770 +-- Name: mdl_h5pactivity_attempts_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_h5pactivity_attempts_results_id_seq OWNED BY public.mdl_h5pactivity_attempts_results.id; + + +-- +-- TOC entry 766 (class 1259 OID 21174) +-- Name: mdl_h5pactivity_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_h5pactivity_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_h5pactivity_id_seq OWNER TO postgres; + +-- +-- TOC entry 10933 (class 0 OID 0) +-- Dependencies: 766 +-- Name: mdl_h5pactivity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_h5pactivity_id_seq OWNED BY public.mdl_h5pactivity.id; + + +-- +-- TOC entry 773 (class 1259 OID 21229) +-- Name: mdl_imscp; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_imscp ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + intro text, + introformat smallint DEFAULT 0 NOT NULL, + revision bigint DEFAULT 0 NOT NULL, + keepold bigint DEFAULT '-1'::integer NOT NULL, + structure text, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_imscp OWNER TO postgres; + +-- +-- TOC entry 10934 (class 0 OID 0) +-- Dependencies: 773 +-- Name: TABLE mdl_imscp; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_imscp IS 'each record is one imscp resource'; + + +-- +-- TOC entry 772 (class 1259 OID 21227) +-- Name: mdl_imscp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_imscp_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_imscp_id_seq OWNER TO postgres; + +-- +-- TOC entry 10935 (class 0 OID 0) +-- Dependencies: 772 +-- Name: mdl_imscp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_imscp_id_seq OWNED BY public.mdl_imscp.id; + + +-- +-- TOC entry 775 (class 1259 OID 21247) +-- Name: mdl_label; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_label ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + intro text NOT NULL, + introformat smallint DEFAULT 0, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_label OWNER TO postgres; + +-- +-- TOC entry 10936 (class 0 OID 0) +-- Dependencies: 775 +-- Name: TABLE mdl_label; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_label IS 'Defines labels'; + + +-- +-- TOC entry 774 (class 1259 OID 21245) +-- Name: mdl_label_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_label_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_label_id_seq OWNER TO postgres; + +-- +-- TOC entry 10937 (class 0 OID 0) +-- Dependencies: 774 +-- Name: mdl_label_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_label_id_seq OWNED BY public.mdl_label.id; + + +-- +-- TOC entry 777 (class 1259 OID 21263) +-- Name: mdl_lesson; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_lesson ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + intro text, + introformat smallint DEFAULT 0 NOT NULL, + practice smallint DEFAULT 0 NOT NULL, + modattempts smallint DEFAULT 0 NOT NULL, + usepassword smallint DEFAULT 0 NOT NULL, + password character varying(32) DEFAULT ''::character varying NOT NULL, + dependency bigint DEFAULT 0 NOT NULL, + conditions text NOT NULL, + grade bigint DEFAULT 0 NOT NULL, + custom smallint DEFAULT 0 NOT NULL, + ongoing smallint DEFAULT 0 NOT NULL, + usemaxgrade smallint DEFAULT 0 NOT NULL, + maxanswers smallint DEFAULT 4 NOT NULL, + maxattempts smallint DEFAULT 5 NOT NULL, + review smallint DEFAULT 0 NOT NULL, + nextpagedefault smallint DEFAULT 0 NOT NULL, + feedback smallint DEFAULT 1 NOT NULL, + minquestions smallint DEFAULT 0 NOT NULL, + maxpages smallint DEFAULT 0 NOT NULL, + timelimit bigint DEFAULT 0 NOT NULL, + retake smallint DEFAULT 1 NOT NULL, + activitylink bigint DEFAULT 0 NOT NULL, + mediafile character varying(255) DEFAULT ''::character varying NOT NULL, + mediaheight bigint DEFAULT 100 NOT NULL, + mediawidth bigint DEFAULT 650 NOT NULL, + mediaclose smallint DEFAULT 0 NOT NULL, + slideshow smallint DEFAULT 0 NOT NULL, + width bigint DEFAULT 640 NOT NULL, + height bigint DEFAULT 480 NOT NULL, + bgcolor character varying(7) DEFAULT '#FFFFFF'::character varying NOT NULL, + displayleft smallint DEFAULT 0 NOT NULL, + displayleftif smallint DEFAULT 0 NOT NULL, + progressbar smallint DEFAULT 0 NOT NULL, + available bigint DEFAULT 0 NOT NULL, + deadline bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + completionendreached smallint DEFAULT 0, + completiontimespent bigint DEFAULT 0, + allowofflineattempts smallint DEFAULT 0 +); + + +ALTER TABLE public.mdl_lesson OWNER TO postgres; + +-- +-- TOC entry 10938 (class 0 OID 0) +-- Dependencies: 777 +-- Name: TABLE mdl_lesson; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_lesson IS 'Defines lesson'; + + +-- +-- TOC entry 781 (class 1259 OID 21337) +-- Name: mdl_lesson_answers; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_lesson_answers ( + id bigint NOT NULL, + lessonid bigint DEFAULT 0 NOT NULL, + pageid bigint DEFAULT 0 NOT NULL, + jumpto bigint DEFAULT 0 NOT NULL, + grade smallint DEFAULT 0 NOT NULL, + score bigint DEFAULT 0 NOT NULL, + flags smallint DEFAULT 0 NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + answer text, + answerformat smallint DEFAULT 0 NOT NULL, + response text, + responseformat smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_lesson_answers OWNER TO postgres; + +-- +-- TOC entry 10939 (class 0 OID 0) +-- Dependencies: 781 +-- Name: TABLE mdl_lesson_answers; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_lesson_answers IS 'Defines lesson_answers'; + + +-- +-- TOC entry 780 (class 1259 OID 21335) +-- Name: mdl_lesson_answers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_lesson_answers_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_lesson_answers_id_seq OWNER TO postgres; + +-- +-- TOC entry 10940 (class 0 OID 0) +-- Dependencies: 780 +-- Name: mdl_lesson_answers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_lesson_answers_id_seq OWNED BY public.mdl_lesson_answers.id; + + +-- +-- TOC entry 783 (class 1259 OID 21360) +-- Name: mdl_lesson_attempts; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_lesson_attempts ( + id bigint NOT NULL, + lessonid bigint DEFAULT 0 NOT NULL, + pageid bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + answerid bigint DEFAULT 0 NOT NULL, + retry smallint DEFAULT 0 NOT NULL, + correct bigint DEFAULT 0 NOT NULL, + useranswer text, + timeseen bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_lesson_attempts OWNER TO postgres; + +-- +-- TOC entry 10941 (class 0 OID 0) +-- Dependencies: 783 +-- Name: TABLE mdl_lesson_attempts; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_lesson_attempts IS 'Defines lesson_attempts'; + + +-- +-- TOC entry 782 (class 1259 OID 21358) +-- Name: mdl_lesson_attempts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_lesson_attempts_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_lesson_attempts_id_seq OWNER TO postgres; + +-- +-- TOC entry 10942 (class 0 OID 0) +-- Dependencies: 782 +-- Name: mdl_lesson_attempts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_lesson_attempts_id_seq OWNED BY public.mdl_lesson_attempts.id; + + +-- +-- TOC entry 789 (class 1259 OID 21413) +-- Name: mdl_lesson_branch; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_lesson_branch ( + id bigint NOT NULL, + lessonid bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + pageid bigint DEFAULT 0 NOT NULL, + retry bigint DEFAULT 0 NOT NULL, + flag smallint DEFAULT 0 NOT NULL, + timeseen bigint DEFAULT 0 NOT NULL, + nextpageid bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_lesson_branch OWNER TO postgres; + +-- +-- TOC entry 10943 (class 0 OID 0) +-- Dependencies: 789 +-- Name: TABLE mdl_lesson_branch; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_lesson_branch IS 'branches for each lesson/user'; + + +-- +-- TOC entry 788 (class 1259 OID 21411) +-- Name: mdl_lesson_branch_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_lesson_branch_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_lesson_branch_id_seq OWNER TO postgres; + +-- +-- TOC entry 10944 (class 0 OID 0) +-- Dependencies: 788 +-- Name: mdl_lesson_branch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_lesson_branch_id_seq OWNED BY public.mdl_lesson_branch.id; + + +-- +-- TOC entry 785 (class 1259 OID 21382) +-- Name: mdl_lesson_grades; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_lesson_grades ( + id bigint NOT NULL, + lessonid bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + grade double precision DEFAULT 0 NOT NULL, + late smallint DEFAULT 0 NOT NULL, + completed bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_lesson_grades OWNER TO postgres; + +-- +-- TOC entry 10945 (class 0 OID 0) +-- Dependencies: 785 +-- Name: TABLE mdl_lesson_grades; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_lesson_grades IS 'Defines lesson_grades'; + + +-- +-- TOC entry 784 (class 1259 OID 21380) +-- Name: mdl_lesson_grades_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_lesson_grades_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_lesson_grades_id_seq OWNER TO postgres; + +-- +-- TOC entry 10946 (class 0 OID 0) +-- Dependencies: 784 +-- Name: mdl_lesson_grades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_lesson_grades_id_seq OWNED BY public.mdl_lesson_grades.id; + + +-- +-- TOC entry 776 (class 1259 OID 21261) +-- Name: mdl_lesson_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_lesson_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_lesson_id_seq OWNER TO postgres; + +-- +-- TOC entry 10947 (class 0 OID 0) +-- Dependencies: 776 +-- Name: mdl_lesson_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_lesson_id_seq OWNED BY public.mdl_lesson.id; + + +-- +-- TOC entry 791 (class 1259 OID 21431) +-- Name: mdl_lesson_overrides; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_lesson_overrides ( + id bigint NOT NULL, + lessonid bigint DEFAULT 0 NOT NULL, + groupid bigint, + userid bigint, + available bigint, + deadline bigint, + timelimit bigint, + review smallint, + maxattempts smallint, + retake smallint, + password character varying(32) +); + + +ALTER TABLE public.mdl_lesson_overrides OWNER TO postgres; + +-- +-- TOC entry 10948 (class 0 OID 0) +-- Dependencies: 791 +-- Name: TABLE mdl_lesson_overrides; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_lesson_overrides IS 'The overrides to lesson settings.'; + + +-- +-- TOC entry 790 (class 1259 OID 21429) +-- Name: mdl_lesson_overrides_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_lesson_overrides_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_lesson_overrides_id_seq OWNER TO postgres; + +-- +-- TOC entry 10949 (class 0 OID 0) +-- Dependencies: 790 +-- Name: mdl_lesson_overrides_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_lesson_overrides_id_seq OWNED BY public.mdl_lesson_overrides.id; + + +-- +-- TOC entry 779 (class 1259 OID 21314) +-- Name: mdl_lesson_pages; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_lesson_pages ( + id bigint NOT NULL, + lessonid bigint DEFAULT 0 NOT NULL, + prevpageid bigint DEFAULT 0 NOT NULL, + nextpageid bigint DEFAULT 0 NOT NULL, + qtype smallint DEFAULT 0 NOT NULL, + qoption smallint DEFAULT 0 NOT NULL, + layout smallint DEFAULT 1 NOT NULL, + display smallint DEFAULT 1 NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + title character varying(255) DEFAULT ''::character varying NOT NULL, + contents text NOT NULL, + contentsformat smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_lesson_pages OWNER TO postgres; + +-- +-- TOC entry 10950 (class 0 OID 0) +-- Dependencies: 779 +-- Name: TABLE mdl_lesson_pages; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_lesson_pages IS 'Defines lesson_pages'; + + +-- +-- TOC entry 778 (class 1259 OID 21312) +-- Name: mdl_lesson_pages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_lesson_pages_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_lesson_pages_id_seq OWNER TO postgres; + +-- +-- TOC entry 10951 (class 0 OID 0) +-- Dependencies: 778 +-- Name: mdl_lesson_pages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_lesson_pages_id_seq OWNED BY public.mdl_lesson_pages.id; + + +-- +-- TOC entry 787 (class 1259 OID 21397) +-- Name: mdl_lesson_timer; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_lesson_timer ( + id bigint NOT NULL, + lessonid bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + starttime bigint DEFAULT 0 NOT NULL, + lessontime bigint DEFAULT 0 NOT NULL, + completed smallint DEFAULT 0, + timemodifiedoffline bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_lesson_timer OWNER TO postgres; + +-- +-- TOC entry 10952 (class 0 OID 0) +-- Dependencies: 787 +-- Name: TABLE mdl_lesson_timer; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_lesson_timer IS 'lesson timer for each lesson'; + + +-- +-- TOC entry 786 (class 1259 OID 21395) +-- Name: mdl_lesson_timer_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_lesson_timer_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_lesson_timer_id_seq OWNER TO postgres; + +-- +-- TOC entry 10953 (class 0 OID 0) +-- Dependencies: 786 +-- Name: mdl_lesson_timer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_lesson_timer_id_seq OWNED BY public.mdl_lesson_timer.id; + + +-- +-- TOC entry 471 (class 1259 OID 18771) +-- Name: mdl_license; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_license ( + id bigint NOT NULL, + shortname character varying(255), + fullname text, + source character varying(255), + enabled smallint DEFAULT 1 NOT NULL, + version bigint DEFAULT 0 NOT NULL, + custom smallint DEFAULT 0 NOT NULL, + sortorder integer DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_license OWNER TO postgres; + +-- +-- TOC entry 10954 (class 0 OID 0) +-- Dependencies: 471 +-- Name: TABLE mdl_license; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_license IS 'store licenses used by moodle'; + + +-- +-- TOC entry 470 (class 1259 OID 18769) +-- Name: mdl_license_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_license_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_license_id_seq OWNER TO postgres; + +-- +-- TOC entry 10955 (class 0 OID 0) +-- Dependencies: 470 +-- Name: mdl_license_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_license_id_seq OWNED BY public.mdl_license.id; + + +-- +-- TOC entry 523 (class 1259 OID 19175) +-- Name: mdl_lock_db; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_lock_db ( + id bigint NOT NULL, + resourcekey character varying(255) DEFAULT ''::character varying NOT NULL, + expires bigint, + owner character varying(36) +); + + +ALTER TABLE public.mdl_lock_db OWNER TO postgres; + +-- +-- TOC entry 10956 (class 0 OID 0) +-- Dependencies: 523 +-- Name: TABLE mdl_lock_db; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_lock_db IS 'Stores active and inactive lock types for db locking method.'; + + +-- +-- TOC entry 522 (class 1259 OID 19173) +-- Name: mdl_lock_db_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_lock_db_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_lock_db_id_seq OWNER TO postgres; + +-- +-- TOC entry 10957 (class 0 OID 0) +-- Dependencies: 522 +-- Name: mdl_lock_db_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_lock_db_id_seq OWNED BY public.mdl_lock_db.id; + + +-- +-- TOC entry 228 (class 1259 OID 16787) +-- Name: mdl_log; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_log ( + id bigint NOT NULL, + "time" bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + ip character varying(45) DEFAULT ''::character varying NOT NULL, + course bigint DEFAULT 0 NOT NULL, + module character varying(20) DEFAULT ''::character varying NOT NULL, + cmid bigint DEFAULT 0 NOT NULL, + action character varying(40) DEFAULT ''::character varying NOT NULL, + url character varying(100) DEFAULT ''::character varying NOT NULL, + info character varying(255) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_log OWNER TO postgres; + +-- +-- TOC entry 10958 (class 0 OID 0) +-- Dependencies: 228 +-- Name: TABLE mdl_log; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_log IS 'Every action is logged as far as possible'; + + +-- +-- TOC entry 232 (class 1259 OID 16821) +-- Name: mdl_log_display; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_log_display ( + id bigint NOT NULL, + module character varying(20) DEFAULT ''::character varying NOT NULL, + action character varying(40) DEFAULT ''::character varying NOT NULL, + mtable character varying(30) DEFAULT ''::character varying NOT NULL, + field character varying(200) DEFAULT ''::character varying NOT NULL, + component character varying(100) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_log_display OWNER TO postgres; + +-- +-- TOC entry 10959 (class 0 OID 0) +-- Dependencies: 232 +-- Name: TABLE mdl_log_display; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_log_display IS 'For a particular module/action, specifies a moodle table/field'; + + +-- +-- TOC entry 231 (class 1259 OID 16819) +-- Name: mdl_log_display_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_log_display_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_log_display_id_seq OWNER TO postgres; + +-- +-- TOC entry 10960 (class 0 OID 0) +-- Dependencies: 231 +-- Name: mdl_log_display_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_log_display_id_seq OWNED BY public.mdl_log_display.id; + + +-- +-- TOC entry 227 (class 1259 OID 16785) +-- Name: mdl_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_log_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_log_id_seq OWNER TO postgres; + +-- +-- TOC entry 10961 (class 0 OID 0) +-- Dependencies: 227 +-- Name: mdl_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_log_id_seq OWNED BY public.mdl_log.id; + + +-- +-- TOC entry 230 (class 1259 OID 16809) +-- Name: mdl_log_queries; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_log_queries ( + id bigint NOT NULL, + qtype integer NOT NULL, + sqltext text NOT NULL, + sqlparams text, + error integer DEFAULT 0 NOT NULL, + info text, + backtrace text, + exectime numeric(10,5) NOT NULL, + timelogged bigint NOT NULL +); + + +ALTER TABLE public.mdl_log_queries OWNER TO postgres; + +-- +-- TOC entry 10962 (class 0 OID 0) +-- Dependencies: 230 +-- Name: TABLE mdl_log_queries; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_log_queries IS 'Logged database queries.'; + + +-- +-- TOC entry 229 (class 1259 OID 16807) +-- Name: mdl_log_queries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_log_queries_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_log_queries_id_seq OWNER TO postgres; + +-- +-- TOC entry 10963 (class 0 OID 0) +-- Dependencies: 229 +-- Name: mdl_log_queries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_log_queries_id_seq OWNED BY public.mdl_log_queries.id; + + +-- +-- TOC entry 1039 (class 1259 OID 23375) +-- Name: mdl_logstore_standard_log; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_logstore_standard_log ( + id bigint NOT NULL, + eventname character varying(255) DEFAULT ''::character varying NOT NULL, + component character varying(100) DEFAULT ''::character varying NOT NULL, + action character varying(100) DEFAULT ''::character varying NOT NULL, + target character varying(100) DEFAULT ''::character varying NOT NULL, + objecttable character varying(50), + objectid bigint, + crud character varying(1) DEFAULT ''::character varying NOT NULL, + edulevel smallint NOT NULL, + contextid bigint NOT NULL, + contextlevel bigint NOT NULL, + contextinstanceid bigint NOT NULL, + userid bigint NOT NULL, + courseid bigint, + relateduserid bigint, + anonymous smallint DEFAULT 0 NOT NULL, + other text, + timecreated bigint NOT NULL, + origin character varying(10), + ip character varying(45), + realuserid bigint +); + + +ALTER TABLE public.mdl_logstore_standard_log OWNER TO postgres; + +-- +-- TOC entry 10964 (class 0 OID 0) +-- Dependencies: 1039 +-- Name: TABLE mdl_logstore_standard_log; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_logstore_standard_log IS 'Standard log table'; + + +-- +-- TOC entry 1038 (class 1259 OID 23373) +-- Name: mdl_logstore_standard_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_logstore_standard_log_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_logstore_standard_log_id_seq OWNER TO postgres; + +-- +-- TOC entry 10965 (class 0 OID 0) +-- Dependencies: 1038 +-- Name: mdl_logstore_standard_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_logstore_standard_log_id_seq OWNED BY public.mdl_logstore_standard_log.id; + + +-- +-- TOC entry 793 (class 1259 OID 21443) +-- Name: mdl_lti; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_lti ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + intro text, + introformat smallint DEFAULT 0, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + typeid bigint, + toolurl text NOT NULL, + securetoolurl text, + instructorchoicesendname smallint, + instructorchoicesendemailaddr smallint, + instructorchoiceallowroster smallint, + instructorchoiceallowsetting smallint, + instructorcustomparameters text, + instructorchoiceacceptgrades smallint, + grade bigint DEFAULT 100 NOT NULL, + launchcontainer smallint DEFAULT 1 NOT NULL, + resourcekey character varying(255), + password character varying(255), + debuglaunch smallint DEFAULT 0 NOT NULL, + showtitlelaunch smallint DEFAULT 0 NOT NULL, + showdescriptionlaunch smallint DEFAULT 0 NOT NULL, + servicesalt character varying(40), + icon text, + secureicon text +); + + +ALTER TABLE public.mdl_lti OWNER TO postgres; + +-- +-- TOC entry 10966 (class 0 OID 0) +-- Dependencies: 793 +-- Name: TABLE mdl_lti; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_lti IS 'This table contains Basic LTI activities instances'; + + +-- +-- TOC entry 805 (class 1259 OID 21535) +-- Name: mdl_lti_access_tokens; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_lti_access_tokens ( + id bigint NOT NULL, + typeid bigint NOT NULL, + scope text NOT NULL, + token character varying(128) DEFAULT ''::character varying NOT NULL, + validuntil bigint NOT NULL, + timecreated bigint NOT NULL, + lastaccess bigint +); + + +ALTER TABLE public.mdl_lti_access_tokens OWNER TO postgres; + +-- +-- TOC entry 10967 (class 0 OID 0) +-- Dependencies: 805 +-- Name: TABLE mdl_lti_access_tokens; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_lti_access_tokens IS 'Security tokens for accessing of LTI services'; + + +-- +-- TOC entry 804 (class 1259 OID 21533) +-- Name: mdl_lti_access_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_lti_access_tokens_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_lti_access_tokens_id_seq OWNER TO postgres; + +-- +-- TOC entry 10968 (class 0 OID 0) +-- Dependencies: 804 +-- Name: mdl_lti_access_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_lti_access_tokens_id_seq OWNED BY public.mdl_lti_access_tokens.id; + + +-- +-- TOC entry 792 (class 1259 OID 21441) +-- Name: mdl_lti_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_lti_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_lti_id_seq OWNER TO postgres; + +-- +-- TOC entry 10969 (class 0 OID 0) +-- Dependencies: 792 +-- Name: mdl_lti_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_lti_id_seq OWNED BY public.mdl_lti.id; + + +-- +-- TOC entry 803 (class 1259 OID 21526) +-- Name: mdl_lti_submission; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_lti_submission ( + id bigint NOT NULL, + ltiid bigint NOT NULL, + userid bigint NOT NULL, + datesubmitted bigint NOT NULL, + dateupdated bigint NOT NULL, + gradepercent numeric(10,5) NOT NULL, + originalgrade numeric(10,5) NOT NULL, + launchid bigint NOT NULL, + state smallint NOT NULL +); + + +ALTER TABLE public.mdl_lti_submission OWNER TO postgres; + +-- +-- TOC entry 10970 (class 0 OID 0) +-- Dependencies: 803 +-- Name: TABLE mdl_lti_submission; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_lti_submission IS 'Keeps track of individual submissions for LTI activities.'; + + +-- +-- TOC entry 802 (class 1259 OID 21524) +-- Name: mdl_lti_submission_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_lti_submission_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_lti_submission_id_seq OWNER TO postgres; + +-- +-- TOC entry 10971 (class 0 OID 0) +-- Dependencies: 802 +-- Name: mdl_lti_submission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_lti_submission_id_seq OWNED BY public.mdl_lti_submission.id; + + +-- +-- TOC entry 795 (class 1259 OID 21465) +-- Name: mdl_lti_tool_proxies; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_lti_tool_proxies ( + id bigint NOT NULL, + name character varying(255) DEFAULT 'Tool Provider'::character varying NOT NULL, + regurl text, + state smallint DEFAULT 1 NOT NULL, + guid character varying(255), + secret character varying(255), + vendorcode character varying(255), + capabilityoffered text NOT NULL, + serviceoffered text NOT NULL, + toolproxy text, + createdby bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_lti_tool_proxies OWNER TO postgres; + +-- +-- TOC entry 10972 (class 0 OID 0) +-- Dependencies: 795 +-- Name: TABLE mdl_lti_tool_proxies; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_lti_tool_proxies IS 'LTI tool proxy registrations'; + + +-- +-- TOC entry 794 (class 1259 OID 21463) +-- Name: mdl_lti_tool_proxies_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_lti_tool_proxies_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_lti_tool_proxies_id_seq OWNER TO postgres; + +-- +-- TOC entry 10973 (class 0 OID 0) +-- Dependencies: 794 +-- Name: mdl_lti_tool_proxies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_lti_tool_proxies_id_seq OWNED BY public.mdl_lti_tool_proxies.id; + + +-- +-- TOC entry 801 (class 1259 OID 21511) +-- Name: mdl_lti_tool_settings; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_lti_tool_settings ( + id bigint NOT NULL, + toolproxyid bigint NOT NULL, + typeid bigint, + course bigint, + coursemoduleid bigint, + settings text NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_lti_tool_settings OWNER TO postgres; + +-- +-- TOC entry 10974 (class 0 OID 0) +-- Dependencies: 801 +-- Name: TABLE mdl_lti_tool_settings; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_lti_tool_settings IS 'LTI tool setting values'; + + +-- +-- TOC entry 800 (class 1259 OID 21509) +-- Name: mdl_lti_tool_settings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_lti_tool_settings_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_lti_tool_settings_id_seq OWNER TO postgres; + +-- +-- TOC entry 10975 (class 0 OID 0) +-- Dependencies: 800 +-- Name: mdl_lti_tool_settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_lti_tool_settings_id_seq OWNED BY public.mdl_lti_tool_settings.id; + + +-- +-- TOC entry 797 (class 1259 OID 21479) +-- Name: mdl_lti_types; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_lti_types ( + id bigint NOT NULL, + name character varying(255) DEFAULT 'basiclti Activity'::character varying NOT NULL, + baseurl text NOT NULL, + tooldomain character varying(255) DEFAULT ''::character varying NOT NULL, + state smallint DEFAULT 2 NOT NULL, + course bigint NOT NULL, + coursevisible smallint DEFAULT 0 NOT NULL, + ltiversion character varying(10) DEFAULT ''::character varying NOT NULL, + clientid character varying(255), + toolproxyid bigint, + enabledcapability text, + parameter text, + icon text, + secureicon text, + createdby bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + description text +); + + +ALTER TABLE public.mdl_lti_types OWNER TO postgres; + +-- +-- TOC entry 10976 (class 0 OID 0) +-- Dependencies: 797 +-- Name: TABLE mdl_lti_types; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_lti_types IS 'Basic LTI pre-configured activities'; + + +-- +-- TOC entry 799 (class 1259 OID 21498) +-- Name: mdl_lti_types_config; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_lti_types_config ( + id bigint NOT NULL, + typeid bigint NOT NULL, + name character varying(100) DEFAULT ''::character varying NOT NULL, + value text NOT NULL +); + + +ALTER TABLE public.mdl_lti_types_config OWNER TO postgres; + +-- +-- TOC entry 10977 (class 0 OID 0) +-- Dependencies: 799 +-- Name: TABLE mdl_lti_types_config; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_lti_types_config IS 'Basic LTI types configuration'; + + +-- +-- TOC entry 798 (class 1259 OID 21496) +-- Name: mdl_lti_types_config_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_lti_types_config_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_lti_types_config_id_seq OWNER TO postgres; + +-- +-- TOC entry 10978 (class 0 OID 0) +-- Dependencies: 798 +-- Name: mdl_lti_types_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_lti_types_config_id_seq OWNED BY public.mdl_lti_types_config.id; + + +-- +-- TOC entry 796 (class 1259 OID 21477) +-- Name: mdl_lti_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_lti_types_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_lti_types_id_seq OWNER TO postgres; + +-- +-- TOC entry 10979 (class 0 OID 0) +-- Dependencies: 796 +-- Name: mdl_lti_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_lti_types_id_seq OWNED BY public.mdl_lti_types.id; + + +-- +-- TOC entry 1011 (class 1259 OID 23196) +-- Name: mdl_ltiservice_gradebookservices; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_ltiservice_gradebookservices ( + id bigint NOT NULL, + gradeitemid bigint NOT NULL, + courseid bigint NOT NULL, + toolproxyid bigint, + typeid bigint, + baseurl text, + ltilinkid bigint, + resourceid character varying(512), + tag character varying(255) +); + + +ALTER TABLE public.mdl_ltiservice_gradebookservices OWNER TO postgres; + +-- +-- TOC entry 10980 (class 0 OID 0) +-- Dependencies: 1011 +-- Name: TABLE mdl_ltiservice_gradebookservices; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_ltiservice_gradebookservices IS 'This file records the grade items created by the LTI Gradebook Services service'; + + +-- +-- TOC entry 1010 (class 1259 OID 23194) +-- Name: mdl_ltiservice_gradebookservices_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_ltiservice_gradebookservices_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_ltiservice_gradebookservices_id_seq OWNER TO postgres; + +-- +-- TOC entry 10981 (class 0 OID 0) +-- Dependencies: 1010 +-- Name: mdl_ltiservice_gradebookservices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_ltiservice_gradebookservices_id_seq OWNED BY public.mdl_ltiservice_gradebookservices.id; + + +-- +-- TOC entry 234 (class 1259 OID 16835) +-- Name: mdl_message; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_message ( + id bigint NOT NULL, + useridfrom bigint DEFAULT 0 NOT NULL, + useridto bigint DEFAULT 0 NOT NULL, + subject text, + fullmessage text, + fullmessageformat smallint DEFAULT 0, + fullmessagehtml text, + smallmessage text, + notification smallint DEFAULT 0, + contexturl text, + contexturlname text, + timecreated bigint DEFAULT 0 NOT NULL, + timeuserfromdeleted bigint DEFAULT 0 NOT NULL, + timeusertodeleted bigint DEFAULT 0 NOT NULL, + component character varying(100), + eventtype character varying(100), + customdata text +); + + +ALTER TABLE public.mdl_message OWNER TO postgres; + +-- +-- TOC entry 10982 (class 0 OID 0) +-- Dependencies: 234 +-- Name: TABLE mdl_message; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_message IS 'Stores all unread messages'; + + +-- +-- TOC entry 913 (class 1259 OID 22514) +-- Name: mdl_message_airnotifier_devices; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_message_airnotifier_devices ( + id bigint NOT NULL, + userdeviceid bigint NOT NULL, + enable smallint DEFAULT 1 NOT NULL +); + + +ALTER TABLE public.mdl_message_airnotifier_devices OWNER TO postgres; + +-- +-- TOC entry 10983 (class 0 OID 0) +-- Dependencies: 913 +-- Name: TABLE mdl_message_airnotifier_devices; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_message_airnotifier_devices IS 'Store information about the devices registered in Airnotifier for PUSH notifications'; + + +-- +-- TOC entry 912 (class 1259 OID 22512) +-- Name: mdl_message_airnotifier_devices_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_message_airnotifier_devices_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_message_airnotifier_devices_id_seq OWNER TO postgres; + +-- +-- TOC entry 10984 (class 0 OID 0) +-- Dependencies: 912 +-- Name: mdl_message_airnotifier_devices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_message_airnotifier_devices_id_seq OWNED BY public.mdl_message_airnotifier_devices.id; + + +-- +-- TOC entry 252 (class 1259 OID 16968) +-- Name: mdl_message_contact_requests; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_message_contact_requests ( + id bigint NOT NULL, + userid bigint NOT NULL, + requesteduserid bigint NOT NULL, + timecreated bigint NOT NULL +); + + +ALTER TABLE public.mdl_message_contact_requests OWNER TO postgres; + +-- +-- TOC entry 10985 (class 0 OID 0) +-- Dependencies: 252 +-- Name: TABLE mdl_message_contact_requests; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_message_contact_requests IS 'Maintains list of contact requests between users'; + + +-- +-- TOC entry 251 (class 1259 OID 16966) +-- Name: mdl_message_contact_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_message_contact_requests_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_message_contact_requests_id_seq OWNER TO postgres; + +-- +-- TOC entry 10986 (class 0 OID 0) +-- Dependencies: 251 +-- Name: mdl_message_contact_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_message_contact_requests_id_seq OWNED BY public.mdl_message_contact_requests.id; + + +-- +-- TOC entry 250 (class 1259 OID 16957) +-- Name: mdl_message_contacts; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_message_contacts ( + id bigint NOT NULL, + userid bigint NOT NULL, + contactid bigint NOT NULL, + timecreated bigint +); + + +ALTER TABLE public.mdl_message_contacts OWNER TO postgres; + +-- +-- TOC entry 10987 (class 0 OID 0) +-- Dependencies: 250 +-- Name: TABLE mdl_message_contacts; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_message_contacts IS 'Maintains lists of contacts between users'; + + +-- +-- TOC entry 249 (class 1259 OID 16955) +-- Name: mdl_message_contacts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_message_contacts_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_message_contacts_id_seq OWNER TO postgres; + +-- +-- TOC entry 10988 (class 0 OID 0) +-- Dependencies: 249 +-- Name: mdl_message_contacts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_message_contacts_id_seq OWNED BY public.mdl_message_contacts.id; + + +-- +-- TOC entry 244 (class 1259 OID 16922) +-- Name: mdl_message_conversation_actions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_message_conversation_actions ( + id bigint NOT NULL, + userid bigint NOT NULL, + conversationid bigint NOT NULL, + action bigint NOT NULL, + timecreated bigint NOT NULL +); + + +ALTER TABLE public.mdl_message_conversation_actions OWNER TO postgres; + +-- +-- TOC entry 10989 (class 0 OID 0) +-- Dependencies: 244 +-- Name: TABLE mdl_message_conversation_actions; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_message_conversation_actions IS 'Stores all per-user actions on individual conversations'; + + +-- +-- TOC entry 243 (class 1259 OID 16920) +-- Name: mdl_message_conversation_actions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_message_conversation_actions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_message_conversation_actions_id_seq OWNER TO postgres; + +-- +-- TOC entry 10990 (class 0 OID 0) +-- Dependencies: 243 +-- Name: mdl_message_conversation_actions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_message_conversation_actions_id_seq OWNED BY public.mdl_message_conversation_actions.id; + + +-- +-- TOC entry 242 (class 1259 OID 16912) +-- Name: mdl_message_conversation_members; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_message_conversation_members ( + id bigint NOT NULL, + conversationid bigint NOT NULL, + userid bigint NOT NULL, + timecreated bigint NOT NULL +); + + +ALTER TABLE public.mdl_message_conversation_members OWNER TO postgres; + +-- +-- TOC entry 10991 (class 0 OID 0) +-- Dependencies: 242 +-- Name: TABLE mdl_message_conversation_members; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_message_conversation_members IS 'Stores all members in a conversations'; + + +-- +-- TOC entry 241 (class 1259 OID 16910) +-- Name: mdl_message_conversation_members_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_message_conversation_members_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_message_conversation_members_id_seq OWNER TO postgres; + +-- +-- TOC entry 10992 (class 0 OID 0) +-- Dependencies: 241 +-- Name: mdl_message_conversation_members_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_message_conversation_members_id_seq OWNED BY public.mdl_message_conversation_members.id; + + +-- +-- TOC entry 240 (class 1259 OID 16895) +-- Name: mdl_message_conversations; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_message_conversations ( + id bigint NOT NULL, + type bigint DEFAULT 1 NOT NULL, + name character varying(255), + convhash character varying(40), + component character varying(100), + itemtype character varying(100), + itemid bigint, + contextid bigint, + enabled smallint DEFAULT 0 NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint +); + + +ALTER TABLE public.mdl_message_conversations OWNER TO postgres; + +-- +-- TOC entry 10993 (class 0 OID 0) +-- Dependencies: 240 +-- Name: TABLE mdl_message_conversations; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_message_conversations IS 'Stores all message conversations'; + + +-- +-- TOC entry 239 (class 1259 OID 16893) +-- Name: mdl_message_conversations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_message_conversations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_message_conversations_id_seq OWNER TO postgres; + +-- +-- TOC entry 10994 (class 0 OID 0) +-- Dependencies: 239 +-- Name: mdl_message_conversations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_message_conversations_id_seq OWNED BY public.mdl_message_conversations.id; + + +-- +-- TOC entry 915 (class 1259 OID 22524) +-- Name: mdl_message_email_messages; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_message_email_messages ( + id bigint NOT NULL, + useridto bigint NOT NULL, + conversationid bigint NOT NULL, + messageid bigint NOT NULL +); + + +ALTER TABLE public.mdl_message_email_messages OWNER TO postgres; + +-- +-- TOC entry 10995 (class 0 OID 0) +-- Dependencies: 915 +-- Name: TABLE mdl_message_email_messages; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_message_email_messages IS 'Keeps track of what emails to send in an email digest'; + + +-- +-- TOC entry 914 (class 1259 OID 22522) +-- Name: mdl_message_email_messages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_message_email_messages_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_message_email_messages_id_seq OWNER TO postgres; + +-- +-- TOC entry 10996 (class 0 OID 0) +-- Dependencies: 914 +-- Name: mdl_message_email_messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_message_email_messages_id_seq OWNED BY public.mdl_message_email_messages.id; + + +-- +-- TOC entry 233 (class 1259 OID 16833) +-- Name: mdl_message_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_message_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_message_id_seq OWNER TO postgres; + +-- +-- TOC entry 10997 (class 0 OID 0) +-- Dependencies: 233 +-- Name: mdl_message_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_message_id_seq OWNED BY public.mdl_message.id; + + +-- +-- TOC entry 917 (class 1259 OID 22535) +-- Name: mdl_message_popup; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_message_popup ( + id bigint NOT NULL, + messageid bigint NOT NULL, + isread smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_message_popup OWNER TO postgres; + +-- +-- TOC entry 10998 (class 0 OID 0) +-- Dependencies: 917 +-- Name: TABLE mdl_message_popup; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_message_popup IS 'Keep state of notifications for the popup message processor'; + + +-- +-- TOC entry 916 (class 1259 OID 22533) +-- Name: mdl_message_popup_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_message_popup_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_message_popup_id_seq OWNER TO postgres; + +-- +-- TOC entry 10999 (class 0 OID 0) +-- Dependencies: 916 +-- Name: mdl_message_popup_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_message_popup_id_seq OWNED BY public.mdl_message_popup.id; + + +-- +-- TOC entry 919 (class 1259 OID 22546) +-- Name: mdl_message_popup_notifications; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_message_popup_notifications ( + id bigint NOT NULL, + notificationid bigint NOT NULL +); + + +ALTER TABLE public.mdl_message_popup_notifications OWNER TO postgres; + +-- +-- TOC entry 11000 (class 0 OID 0) +-- Dependencies: 919 +-- Name: TABLE mdl_message_popup_notifications; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_message_popup_notifications IS 'List of notifications to display in the message output popup'; + + +-- +-- TOC entry 918 (class 1259 OID 22544) +-- Name: mdl_message_popup_notifications_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_message_popup_notifications_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_message_popup_notifications_id_seq OWNER TO postgres; + +-- +-- TOC entry 11001 (class 0 OID 0) +-- Dependencies: 918 +-- Name: mdl_message_popup_notifications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_message_popup_notifications_id_seq OWNED BY public.mdl_message_popup_notifications.id; + + +-- +-- TOC entry 431 (class 1259 OID 18489) +-- Name: mdl_message_processors; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_message_processors ( + id bigint NOT NULL, + name character varying(166) DEFAULT ''::character varying NOT NULL, + enabled smallint DEFAULT 1 NOT NULL +); + + +ALTER TABLE public.mdl_message_processors OWNER TO postgres; + +-- +-- TOC entry 11002 (class 0 OID 0) +-- Dependencies: 431 +-- Name: TABLE mdl_message_processors; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_message_processors IS 'List of message output plugins'; + + +-- +-- TOC entry 430 (class 1259 OID 18487) +-- Name: mdl_message_processors_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_message_processors_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_message_processors_id_seq OWNER TO postgres; + +-- +-- TOC entry 11003 (class 0 OID 0) +-- Dependencies: 430 +-- Name: mdl_message_processors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_message_processors_id_seq OWNED BY public.mdl_message_processors.id; + + +-- +-- TOC entry 429 (class 1259 OID 18475) +-- Name: mdl_message_providers; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_message_providers ( + id bigint NOT NULL, + name character varying(100) DEFAULT ''::character varying NOT NULL, + component character varying(200) DEFAULT ''::character varying NOT NULL, + capability character varying(255) +); + + +ALTER TABLE public.mdl_message_providers OWNER TO postgres; + +-- +-- TOC entry 11004 (class 0 OID 0) +-- Dependencies: 429 +-- Name: TABLE mdl_message_providers; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_message_providers IS 'This table stores the message providers (modules and core systems)'; + + +-- +-- TOC entry 428 (class 1259 OID 18473) +-- Name: mdl_message_providers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_message_providers_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_message_providers_id_seq OWNER TO postgres; + +-- +-- TOC entry 11005 (class 0 OID 0) +-- Dependencies: 428 +-- Name: mdl_message_providers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_message_providers_id_seq OWNED BY public.mdl_message_providers.id; + + +-- +-- TOC entry 236 (class 1259 OID 16856) +-- Name: mdl_message_read; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_message_read ( + id bigint NOT NULL, + useridfrom bigint DEFAULT 0 NOT NULL, + useridto bigint DEFAULT 0 NOT NULL, + subject text, + fullmessage text, + fullmessageformat smallint DEFAULT 0, + fullmessagehtml text, + smallmessage text, + notification smallint DEFAULT 0, + contexturl text, + contexturlname text, + timecreated bigint DEFAULT 0 NOT NULL, + timeread bigint DEFAULT 0 NOT NULL, + timeuserfromdeleted bigint DEFAULT 0 NOT NULL, + timeusertodeleted bigint DEFAULT 0 NOT NULL, + component character varying(100), + eventtype character varying(100) +); + + +ALTER TABLE public.mdl_message_read OWNER TO postgres; + +-- +-- TOC entry 11006 (class 0 OID 0) +-- Dependencies: 236 +-- Name: TABLE mdl_message_read; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_message_read IS 'Stores all messages that have been read'; + + +-- +-- TOC entry 235 (class 1259 OID 16854) +-- Name: mdl_message_read_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_message_read_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_message_read_id_seq OWNER TO postgres; + +-- +-- TOC entry 11007 (class 0 OID 0) +-- Dependencies: 235 +-- Name: mdl_message_read_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_message_read_id_seq OWNED BY public.mdl_message_read.id; + + +-- +-- TOC entry 246 (class 1259 OID 16932) +-- Name: mdl_message_user_actions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_message_user_actions ( + id bigint NOT NULL, + userid bigint NOT NULL, + messageid bigint NOT NULL, + action bigint NOT NULL, + timecreated bigint NOT NULL +); + + +ALTER TABLE public.mdl_message_user_actions OWNER TO postgres; + +-- +-- TOC entry 11008 (class 0 OID 0) +-- Dependencies: 246 +-- Name: TABLE mdl_message_user_actions; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_message_user_actions IS 'Stores all per-user actions on individual messages'; + + +-- +-- TOC entry 245 (class 1259 OID 16930) +-- Name: mdl_message_user_actions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_message_user_actions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_message_user_actions_id_seq OWNER TO postgres; + +-- +-- TOC entry 11009 (class 0 OID 0) +-- Dependencies: 245 +-- Name: mdl_message_user_actions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_message_user_actions_id_seq OWNED BY public.mdl_message_user_actions.id; + + +-- +-- TOC entry 254 (class 1259 OID 16979) +-- Name: mdl_message_users_blocked; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_message_users_blocked ( + id bigint NOT NULL, + userid bigint NOT NULL, + blockeduserid bigint NOT NULL, + timecreated bigint +); + + +ALTER TABLE public.mdl_message_users_blocked OWNER TO postgres; + +-- +-- TOC entry 11010 (class 0 OID 0) +-- Dependencies: 254 +-- Name: TABLE mdl_message_users_blocked; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_message_users_blocked IS 'Maintains lists of blocked users'; + + +-- +-- TOC entry 253 (class 1259 OID 16977) +-- Name: mdl_message_users_blocked_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_message_users_blocked_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_message_users_blocked_id_seq OWNER TO postgres; + +-- +-- TOC entry 11011 (class 0 OID 0) +-- Dependencies: 253 +-- Name: mdl_message_users_blocked_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_message_users_blocked_id_seq OWNED BY public.mdl_message_users_blocked.id; + + +-- +-- TOC entry 533 (class 1259 OID 19254) +-- Name: mdl_messageinbound_datakeys; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_messageinbound_datakeys ( + id bigint NOT NULL, + handler bigint NOT NULL, + datavalue bigint NOT NULL, + datakey character varying(64), + timecreated bigint NOT NULL, + expires bigint +); + + +ALTER TABLE public.mdl_messageinbound_datakeys OWNER TO postgres; + +-- +-- TOC entry 11012 (class 0 OID 0) +-- Dependencies: 533 +-- Name: TABLE mdl_messageinbound_datakeys; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_messageinbound_datakeys IS 'Inbound Message data item secret keys.'; + + +-- +-- TOC entry 532 (class 1259 OID 19252) +-- Name: mdl_messageinbound_datakeys_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_messageinbound_datakeys_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_messageinbound_datakeys_id_seq OWNER TO postgres; + +-- +-- TOC entry 11013 (class 0 OID 0) +-- Dependencies: 532 +-- Name: mdl_messageinbound_datakeys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_messageinbound_datakeys_id_seq OWNED BY public.mdl_messageinbound_datakeys.id; + + +-- +-- TOC entry 531 (class 1259 OID 19240) +-- Name: mdl_messageinbound_handlers; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_messageinbound_handlers ( + id bigint NOT NULL, + component character varying(100) DEFAULT ''::character varying NOT NULL, + classname character varying(255) DEFAULT ''::character varying NOT NULL, + defaultexpiration bigint DEFAULT 86400 NOT NULL, + validateaddress smallint DEFAULT 1 NOT NULL, + enabled smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_messageinbound_handlers OWNER TO postgres; + +-- +-- TOC entry 11014 (class 0 OID 0) +-- Dependencies: 531 +-- Name: TABLE mdl_messageinbound_handlers; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_messageinbound_handlers IS 'Inbound Message Handler definitions.'; + + +-- +-- TOC entry 530 (class 1259 OID 19238) +-- Name: mdl_messageinbound_handlers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_messageinbound_handlers_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_messageinbound_handlers_id_seq OWNER TO postgres; + +-- +-- TOC entry 11015 (class 0 OID 0) +-- Dependencies: 530 +-- Name: mdl_messageinbound_handlers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_messageinbound_handlers_id_seq OWNED BY public.mdl_messageinbound_handlers.id; + + +-- +-- TOC entry 535 (class 1259 OID 19264) +-- Name: mdl_messageinbound_messagelist; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_messageinbound_messagelist ( + id bigint NOT NULL, + messageid text NOT NULL, + userid bigint NOT NULL, + address text NOT NULL, + timecreated bigint NOT NULL +); + + +ALTER TABLE public.mdl_messageinbound_messagelist OWNER TO postgres; + +-- +-- TOC entry 11016 (class 0 OID 0) +-- Dependencies: 535 +-- Name: TABLE mdl_messageinbound_messagelist; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_messageinbound_messagelist IS 'A list of message IDs for existing replies'; + + +-- +-- TOC entry 534 (class 1259 OID 19262) +-- Name: mdl_messageinbound_messagelist_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_messageinbound_messagelist_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_messageinbound_messagelist_id_seq OWNER TO postgres; + +-- +-- TOC entry 11017 (class 0 OID 0) +-- Dependencies: 534 +-- Name: mdl_messageinbound_messagelist_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_messageinbound_messagelist_id_seq OWNED BY public.mdl_messageinbound_messagelist.id; + + +-- +-- TOC entry 238 (class 1259 OID 16879) +-- Name: mdl_messages; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_messages ( + id bigint NOT NULL, + useridfrom bigint NOT NULL, + conversationid bigint NOT NULL, + subject text, + fullmessage text, + fullmessageformat smallint DEFAULT 0 NOT NULL, + fullmessagehtml text, + smallmessage text, + timecreated bigint NOT NULL, + fullmessagetrust smallint DEFAULT 0 NOT NULL, + customdata text +); + + +ALTER TABLE public.mdl_messages OWNER TO postgres; + +-- +-- TOC entry 11018 (class 0 OID 0) +-- Dependencies: 238 +-- Name: TABLE mdl_messages; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_messages IS 'Stores all messages'; + + +-- +-- TOC entry 237 (class 1259 OID 16877) +-- Name: mdl_messages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_messages_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_messages_id_seq OWNER TO postgres; + +-- +-- TOC entry 11019 (class 0 OID 0) +-- Dependencies: 237 +-- Name: mdl_messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_messages_id_seq OWNED BY public.mdl_messages.id; + + +-- +-- TOC entry 339 (class 1259 OID 17709) +-- Name: mdl_mnet_application; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_mnet_application ( + id bigint NOT NULL, + name character varying(50) DEFAULT ''::character varying NOT NULL, + display_name character varying(50) DEFAULT ''::character varying NOT NULL, + xmlrpc_server_url character varying(255) DEFAULT ''::character varying NOT NULL, + sso_land_url character varying(255) DEFAULT ''::character varying NOT NULL, + sso_jump_url character varying(255) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_mnet_application OWNER TO postgres; + +-- +-- TOC entry 11020 (class 0 OID 0) +-- Dependencies: 339 +-- Name: TABLE mdl_mnet_application; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_mnet_application IS 'Information about applications on remote hosts'; + + +-- +-- TOC entry 338 (class 1259 OID 17707) +-- Name: mdl_mnet_application_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_mnet_application_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_mnet_application_id_seq OWNER TO postgres; + +-- +-- TOC entry 11021 (class 0 OID 0) +-- Dependencies: 338 +-- Name: mdl_mnet_application_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_mnet_application_id_seq OWNED BY public.mdl_mnet_application.id; + + +-- +-- TOC entry 341 (class 1259 OID 17725) +-- Name: mdl_mnet_host; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_mnet_host ( + id bigint NOT NULL, + deleted smallint DEFAULT 0 NOT NULL, + wwwroot character varying(255) DEFAULT ''::character varying NOT NULL, + ip_address character varying(45) DEFAULT ''::character varying NOT NULL, + name character varying(80) DEFAULT ''::character varying NOT NULL, + public_key text NOT NULL, + public_key_expires bigint DEFAULT 0 NOT NULL, + transport smallint DEFAULT 0 NOT NULL, + portno integer DEFAULT 0 NOT NULL, + last_connect_time bigint DEFAULT 0 NOT NULL, + last_log_id bigint DEFAULT 0 NOT NULL, + force_theme smallint DEFAULT 0 NOT NULL, + theme character varying(100), + applicationid bigint DEFAULT 1 NOT NULL, + sslverification smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_mnet_host OWNER TO postgres; + +-- +-- TOC entry 11022 (class 0 OID 0) +-- Dependencies: 341 +-- Name: TABLE mdl_mnet_host; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_mnet_host IS 'Information about the local and remote hosts for RPC'; + + +-- +-- TOC entry 343 (class 1259 OID 17749) +-- Name: mdl_mnet_host2service; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_mnet_host2service ( + id bigint NOT NULL, + hostid bigint DEFAULT 0 NOT NULL, + serviceid bigint DEFAULT 0 NOT NULL, + publish smallint DEFAULT 0 NOT NULL, + subscribe smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_mnet_host2service OWNER TO postgres; + +-- +-- TOC entry 11023 (class 0 OID 0) +-- Dependencies: 343 +-- Name: TABLE mdl_mnet_host2service; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_mnet_host2service IS 'Information about the services for a given host'; + + +-- +-- TOC entry 342 (class 1259 OID 17747) +-- Name: mdl_mnet_host2service_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_mnet_host2service_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_mnet_host2service_id_seq OWNER TO postgres; + +-- +-- TOC entry 11024 (class 0 OID 0) +-- Dependencies: 342 +-- Name: mdl_mnet_host2service_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_mnet_host2service_id_seq OWNED BY public.mdl_mnet_host2service.id; + + +-- +-- TOC entry 340 (class 1259 OID 17723) +-- Name: mdl_mnet_host_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_mnet_host_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_mnet_host_id_seq OWNER TO postgres; + +-- +-- TOC entry 11025 (class 0 OID 0) +-- Dependencies: 340 +-- Name: mdl_mnet_host_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_mnet_host_id_seq OWNED BY public.mdl_mnet_host.id; + + +-- +-- TOC entry 345 (class 1259 OID 17762) +-- Name: mdl_mnet_log; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_mnet_log ( + id bigint NOT NULL, + hostid bigint DEFAULT 0 NOT NULL, + remoteid bigint DEFAULT 0 NOT NULL, + "time" bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + ip character varying(45) DEFAULT ''::character varying NOT NULL, + course bigint DEFAULT 0 NOT NULL, + coursename character varying(40) DEFAULT ''::character varying NOT NULL, + module character varying(20) DEFAULT ''::character varying NOT NULL, + cmid bigint DEFAULT 0 NOT NULL, + action character varying(40) DEFAULT ''::character varying NOT NULL, + url character varying(100) DEFAULT ''::character varying NOT NULL, + info character varying(255) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_mnet_log OWNER TO postgres; + +-- +-- TOC entry 11026 (class 0 OID 0) +-- Dependencies: 345 +-- Name: TABLE mdl_mnet_log; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_mnet_log IS 'Store session data from users migrating to other sites'; + + +-- +-- TOC entry 344 (class 1259 OID 17760) +-- Name: mdl_mnet_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_mnet_log_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_mnet_log_id_seq OWNER TO postgres; + +-- +-- TOC entry 11027 (class 0 OID 0) +-- Dependencies: 344 +-- Name: mdl_mnet_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_mnet_log_id_seq OWNED BY public.mdl_mnet_log.id; + + +-- +-- TOC entry 349 (class 1259 OID 17804) +-- Name: mdl_mnet_remote_rpc; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_mnet_remote_rpc ( + id bigint NOT NULL, + functionname character varying(40) DEFAULT ''::character varying NOT NULL, + xmlrpcpath character varying(80) DEFAULT ''::character varying NOT NULL, + plugintype character varying(20) DEFAULT ''::character varying NOT NULL, + pluginname character varying(20) DEFAULT ''::character varying NOT NULL, + enabled smallint NOT NULL +); + + +ALTER TABLE public.mdl_mnet_remote_rpc OWNER TO postgres; + +-- +-- TOC entry 11028 (class 0 OID 0) +-- Dependencies: 349 +-- Name: TABLE mdl_mnet_remote_rpc; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_mnet_remote_rpc IS 'This table describes functions that might be called remotely (we have less information about them than local functions)'; + + +-- +-- TOC entry 348 (class 1259 OID 17802) +-- Name: mdl_mnet_remote_rpc_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_mnet_remote_rpc_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_mnet_remote_rpc_id_seq OWNER TO postgres; + +-- +-- TOC entry 11029 (class 0 OID 0) +-- Dependencies: 348 +-- Name: mdl_mnet_remote_rpc_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_mnet_remote_rpc_id_seq OWNED BY public.mdl_mnet_remote_rpc.id; + + +-- +-- TOC entry 355 (class 1259 OID 17839) +-- Name: mdl_mnet_remote_service2rpc; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_mnet_remote_service2rpc ( + id bigint NOT NULL, + serviceid bigint DEFAULT 0 NOT NULL, + rpcid bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_mnet_remote_service2rpc OWNER TO postgres; + +-- +-- TOC entry 11030 (class 0 OID 0) +-- Dependencies: 355 +-- Name: TABLE mdl_mnet_remote_service2rpc; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_mnet_remote_service2rpc IS 'Group functions or methods under a service'; + + +-- +-- TOC entry 354 (class 1259 OID 17837) +-- Name: mdl_mnet_remote_service2rpc_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_mnet_remote_service2rpc_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_mnet_remote_service2rpc_id_seq OWNER TO postgres; + +-- +-- TOC entry 11031 (class 0 OID 0) +-- Dependencies: 354 +-- Name: mdl_mnet_remote_service2rpc_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_mnet_remote_service2rpc_id_seq OWNED BY public.mdl_mnet_remote_service2rpc.id; + + +-- +-- TOC entry 347 (class 1259 OID 17786) +-- Name: mdl_mnet_rpc; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_mnet_rpc ( + id bigint NOT NULL, + functionname character varying(40) DEFAULT ''::character varying NOT NULL, + xmlrpcpath character varying(80) DEFAULT ''::character varying NOT NULL, + plugintype character varying(20) DEFAULT ''::character varying NOT NULL, + pluginname character varying(20) DEFAULT ''::character varying NOT NULL, + enabled smallint DEFAULT 0 NOT NULL, + help text NOT NULL, + profile text NOT NULL, + filename character varying(100) DEFAULT ''::character varying NOT NULL, + classname character varying(150), + static smallint +); + + +ALTER TABLE public.mdl_mnet_rpc OWNER TO postgres; + +-- +-- TOC entry 11032 (class 0 OID 0) +-- Dependencies: 347 +-- Name: TABLE mdl_mnet_rpc; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_mnet_rpc IS 'Functions or methods that we may publish or subscribe to'; + + +-- +-- TOC entry 346 (class 1259 OID 17784) +-- Name: mdl_mnet_rpc_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_mnet_rpc_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_mnet_rpc_id_seq OWNER TO postgres; + +-- +-- TOC entry 11033 (class 0 OID 0) +-- Dependencies: 346 +-- Name: mdl_mnet_rpc_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_mnet_rpc_id_seq OWNED BY public.mdl_mnet_rpc.id; + + +-- +-- TOC entry 351 (class 1259 OID 17816) +-- Name: mdl_mnet_service; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_mnet_service ( + id bigint NOT NULL, + name character varying(40) DEFAULT ''::character varying NOT NULL, + description character varying(40) DEFAULT ''::character varying NOT NULL, + apiversion character varying(10) DEFAULT ''::character varying NOT NULL, + offer smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_mnet_service OWNER TO postgres; + +-- +-- TOC entry 11034 (class 0 OID 0) +-- Dependencies: 351 +-- Name: TABLE mdl_mnet_service; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_mnet_service IS 'A service is a group of functions'; + + +-- +-- TOC entry 353 (class 1259 OID 17828) +-- Name: mdl_mnet_service2rpc; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_mnet_service2rpc ( + id bigint NOT NULL, + serviceid bigint DEFAULT 0 NOT NULL, + rpcid bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_mnet_service2rpc OWNER TO postgres; + +-- +-- TOC entry 11035 (class 0 OID 0) +-- Dependencies: 353 +-- Name: TABLE mdl_mnet_service2rpc; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_mnet_service2rpc IS 'Group functions or methods under a service'; + + +-- +-- TOC entry 352 (class 1259 OID 17826) +-- Name: mdl_mnet_service2rpc_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_mnet_service2rpc_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_mnet_service2rpc_id_seq OWNER TO postgres; + +-- +-- TOC entry 11036 (class 0 OID 0) +-- Dependencies: 352 +-- Name: mdl_mnet_service2rpc_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_mnet_service2rpc_id_seq OWNED BY public.mdl_mnet_service2rpc.id; + + +-- +-- TOC entry 350 (class 1259 OID 17814) +-- Name: mdl_mnet_service_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_mnet_service_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_mnet_service_id_seq OWNER TO postgres; + +-- +-- TOC entry 11037 (class 0 OID 0) +-- Dependencies: 350 +-- Name: mdl_mnet_service_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_mnet_service_id_seq OWNED BY public.mdl_mnet_service.id; + + +-- +-- TOC entry 357 (class 1259 OID 17850) +-- Name: mdl_mnet_session; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_mnet_session ( + id bigint NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + username character varying(100) DEFAULT ''::character varying NOT NULL, + token character varying(40) DEFAULT ''::character varying NOT NULL, + mnethostid bigint DEFAULT 0 NOT NULL, + useragent character varying(40) DEFAULT ''::character varying NOT NULL, + confirm_timeout bigint DEFAULT 0 NOT NULL, + session_id character varying(40) DEFAULT ''::character varying NOT NULL, + expires bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_mnet_session OWNER TO postgres; + +-- +-- TOC entry 11038 (class 0 OID 0) +-- Dependencies: 357 +-- Name: TABLE mdl_mnet_session; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_mnet_session IS 'Store session data from users migrating to other sites'; + + +-- +-- TOC entry 356 (class 1259 OID 17848) +-- Name: mdl_mnet_session_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_mnet_session_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_mnet_session_id_seq OWNER TO postgres; + +-- +-- TOC entry 11039 (class 0 OID 0) +-- Dependencies: 356 +-- Name: mdl_mnet_session_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_mnet_session_id_seq OWNED BY public.mdl_mnet_session.id; + + +-- +-- TOC entry 359 (class 1259 OID 17867) +-- Name: mdl_mnet_sso_access_control; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_mnet_sso_access_control ( + id bigint NOT NULL, + username character varying(100) DEFAULT ''::character varying NOT NULL, + mnet_host_id bigint DEFAULT 0 NOT NULL, + accessctrl character varying(20) DEFAULT 'allow'::character varying NOT NULL +); + + +ALTER TABLE public.mdl_mnet_sso_access_control OWNER TO postgres; + +-- +-- TOC entry 11040 (class 0 OID 0) +-- Dependencies: 359 +-- Name: TABLE mdl_mnet_sso_access_control; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_mnet_sso_access_control IS 'Users by host permitted (or not) to login from a remote provider'; + + +-- +-- TOC entry 358 (class 1259 OID 17865) +-- Name: mdl_mnet_sso_access_control_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_mnet_sso_access_control_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_mnet_sso_access_control_id_seq OWNER TO postgres; + +-- +-- TOC entry 11041 (class 0 OID 0) +-- Dependencies: 358 +-- Name: mdl_mnet_sso_access_control_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_mnet_sso_access_control_id_seq OWNED BY public.mdl_mnet_sso_access_control.id; + + +-- +-- TOC entry 941 (class 1259 OID 22687) +-- Name: mdl_mnetservice_enrol_courses; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_mnetservice_enrol_courses ( + id bigint NOT NULL, + hostid bigint NOT NULL, + remoteid bigint NOT NULL, + categoryid bigint NOT NULL, + categoryname character varying(255) DEFAULT ''::character varying NOT NULL, + sortorder bigint DEFAULT 0 NOT NULL, + fullname character varying(254) DEFAULT ''::character varying NOT NULL, + shortname character varying(100) DEFAULT ''::character varying NOT NULL, + idnumber character varying(100) DEFAULT ''::character varying NOT NULL, + summary text NOT NULL, + summaryformat smallint DEFAULT 0, + startdate bigint NOT NULL, + roleid bigint NOT NULL, + rolename character varying(255) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_mnetservice_enrol_courses OWNER TO postgres; + +-- +-- TOC entry 11042 (class 0 OID 0) +-- Dependencies: 941 +-- Name: TABLE mdl_mnetservice_enrol_courses; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_mnetservice_enrol_courses IS 'Caches the information fetched via XML-RPC about courses on remote hosts that are offered for our users'; + + +-- +-- TOC entry 940 (class 1259 OID 22685) +-- Name: mdl_mnetservice_enrol_courses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_mnetservice_enrol_courses_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_mnetservice_enrol_courses_id_seq OWNER TO postgres; + +-- +-- TOC entry 11043 (class 0 OID 0) +-- Dependencies: 940 +-- Name: mdl_mnetservice_enrol_courses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_mnetservice_enrol_courses_id_seq OWNED BY public.mdl_mnetservice_enrol_courses.id; + + +-- +-- TOC entry 943 (class 1259 OID 22706) +-- Name: mdl_mnetservice_enrol_enrolments; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_mnetservice_enrol_enrolments ( + id bigint NOT NULL, + hostid bigint NOT NULL, + userid bigint NOT NULL, + remotecourseid bigint NOT NULL, + rolename character varying(255) DEFAULT ''::character varying NOT NULL, + enroltime bigint DEFAULT 0 NOT NULL, + enroltype character varying(20) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_mnetservice_enrol_enrolments OWNER TO postgres; + +-- +-- TOC entry 11044 (class 0 OID 0) +-- Dependencies: 943 +-- Name: TABLE mdl_mnetservice_enrol_enrolments; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_mnetservice_enrol_enrolments IS 'Caches the information about enrolments of our local users in courses on remote hosts'; + + +-- +-- TOC entry 942 (class 1259 OID 22704) +-- Name: mdl_mnetservice_enrol_enrolments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_mnetservice_enrol_enrolments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_mnetservice_enrol_enrolments_id_seq OWNER TO postgres; + +-- +-- TOC entry 11045 (class 0 OID 0) +-- Dependencies: 942 +-- Name: mdl_mnetservice_enrol_enrolments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_mnetservice_enrol_enrolments_id_seq OWNED BY public.mdl_mnetservice_enrol_enrolments.id; + + +-- +-- TOC entry 256 (class 1259 OID 16990) +-- Name: mdl_modules; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_modules ( + id bigint NOT NULL, + name character varying(20) DEFAULT ''::character varying NOT NULL, + cron bigint DEFAULT 0 NOT NULL, + lastcron bigint DEFAULT 0 NOT NULL, + search character varying(255) DEFAULT ''::character varying NOT NULL, + visible smallint DEFAULT 1 NOT NULL +); + + +ALTER TABLE public.mdl_modules OWNER TO postgres; + +-- +-- TOC entry 11046 (class 0 OID 0) +-- Dependencies: 256 +-- Name: TABLE mdl_modules; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_modules IS 'modules available in the site'; + + +-- +-- TOC entry 255 (class 1259 OID 16988) +-- Name: mdl_modules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_modules_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_modules_id_seq OWNER TO postgres; + +-- +-- TOC entry 11047 (class 0 OID 0) +-- Dependencies: 255 +-- Name: mdl_modules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_modules_id_seq OWNED BY public.mdl_modules.id; + + +-- +-- TOC entry 258 (class 1259 OID 17004) +-- Name: mdl_my_pages; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_my_pages ( + id bigint NOT NULL, + userid bigint DEFAULT 0, + name character varying(200) DEFAULT ''::character varying NOT NULL, + private smallint DEFAULT 1 NOT NULL, + sortorder integer DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_my_pages OWNER TO postgres; + +-- +-- TOC entry 11048 (class 0 OID 0) +-- Dependencies: 258 +-- Name: TABLE mdl_my_pages; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_my_pages IS 'Extra user pages for the My Moodle system'; + + +-- +-- TOC entry 257 (class 1259 OID 17002) +-- Name: mdl_my_pages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_my_pages_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_my_pages_id_seq OWNER TO postgres; + +-- +-- TOC entry 11049 (class 0 OID 0) +-- Dependencies: 257 +-- Name: mdl_my_pages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_my_pages_id_seq OWNED BY public.mdl_my_pages.id; + + +-- +-- TOC entry 248 (class 1259 OID 16943) +-- Name: mdl_notifications; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_notifications ( + id bigint NOT NULL, + useridfrom bigint NOT NULL, + useridto bigint NOT NULL, + subject text, + fullmessage text, + fullmessageformat smallint DEFAULT 0 NOT NULL, + fullmessagehtml text, + smallmessage text, + component character varying(100), + eventtype character varying(100), + contexturl text, + contexturlname text, + timeread bigint, + timecreated bigint NOT NULL, + customdata text +); + + +ALTER TABLE public.mdl_notifications OWNER TO postgres; + +-- +-- TOC entry 11050 (class 0 OID 0) +-- Dependencies: 248 +-- Name: TABLE mdl_notifications; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_notifications IS 'Stores all notifications'; + + +-- +-- TOC entry 247 (class 1259 OID 16941) +-- Name: mdl_notifications_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_notifications_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_notifications_id_seq OWNER TO postgres; + +-- +-- TOC entry 11051 (class 0 OID 0) +-- Dependencies: 247 +-- Name: mdl_notifications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_notifications_id_seq OWNED BY public.mdl_notifications.id; + + +-- +-- TOC entry 597 (class 1259 OID 19663) +-- Name: mdl_oauth2_access_token; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_oauth2_access_token ( + id bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + usermodified bigint NOT NULL, + issuerid bigint NOT NULL, + token text NOT NULL, + expires bigint NOT NULL, + scope text NOT NULL +); + + +ALTER TABLE public.mdl_oauth2_access_token OWNER TO postgres; + +-- +-- TOC entry 11052 (class 0 OID 0) +-- Dependencies: 597 +-- Name: TABLE mdl_oauth2_access_token; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_oauth2_access_token IS 'Stores access tokens for system accounts in order to be able to use a single token across multiple sessions'; + + +-- +-- TOC entry 596 (class 1259 OID 19661) +-- Name: mdl_oauth2_access_token_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_oauth2_access_token_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_oauth2_access_token_id_seq OWNER TO postgres; + +-- +-- TOC entry 11053 (class 0 OID 0) +-- Dependencies: 596 +-- Name: mdl_oauth2_access_token_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_oauth2_access_token_id_seq OWNED BY public.mdl_oauth2_access_token.id; + + +-- +-- TOC entry 571 (class 1259 OID 19474) +-- Name: mdl_oauth2_endpoint; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_oauth2_endpoint ( + id bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + usermodified bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + url text NOT NULL, + issuerid bigint NOT NULL +); + + +ALTER TABLE public.mdl_oauth2_endpoint OWNER TO postgres; + +-- +-- TOC entry 11054 (class 0 OID 0) +-- Dependencies: 571 +-- Name: TABLE mdl_oauth2_endpoint; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_oauth2_endpoint IS 'Describes the named endpoint for an oauth2 service.'; + + +-- +-- TOC entry 570 (class 1259 OID 19472) +-- Name: mdl_oauth2_endpoint_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_oauth2_endpoint_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_oauth2_endpoint_id_seq OWNER TO postgres; + +-- +-- TOC entry 11055 (class 0 OID 0) +-- Dependencies: 570 +-- Name: mdl_oauth2_endpoint_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_oauth2_endpoint_id_seq OWNED BY public.mdl_oauth2_endpoint.id; + + +-- +-- TOC entry 573 (class 1259 OID 19487) +-- Name: mdl_oauth2_issuer; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_oauth2_issuer ( + id bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + usermodified bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + image text NOT NULL, + baseurl text NOT NULL, + clientid text NOT NULL, + clientsecret text NOT NULL, + loginscopes text NOT NULL, + loginscopesoffline text NOT NULL, + loginparams text NOT NULL, + loginparamsoffline text NOT NULL, + alloweddomains text NOT NULL, + scopessupported text, + enabled smallint DEFAULT 1 NOT NULL, + showonloginpage smallint DEFAULT 1 NOT NULL, + basicauth smallint DEFAULT 0 NOT NULL, + sortorder bigint NOT NULL, + requireconfirmation smallint DEFAULT 1 NOT NULL +); + + +ALTER TABLE public.mdl_oauth2_issuer OWNER TO postgres; + +-- +-- TOC entry 11056 (class 0 OID 0) +-- Dependencies: 573 +-- Name: TABLE mdl_oauth2_issuer; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_oauth2_issuer IS 'Details for an oauth 2 connect identity issuer.'; + + +-- +-- TOC entry 572 (class 1259 OID 19485) +-- Name: mdl_oauth2_issuer_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_oauth2_issuer_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_oauth2_issuer_id_seq OWNER TO postgres; + +-- +-- TOC entry 11057 (class 0 OID 0) +-- Dependencies: 572 +-- Name: mdl_oauth2_issuer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_oauth2_issuer_id_seq OWNED BY public.mdl_oauth2_issuer.id; + + +-- +-- TOC entry 575 (class 1259 OID 19503) +-- Name: mdl_oauth2_system_account; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_oauth2_system_account ( + id bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + usermodified bigint NOT NULL, + issuerid bigint NOT NULL, + refreshtoken text NOT NULL, + grantedscopes text NOT NULL, + email text, + username text NOT NULL +); + + +ALTER TABLE public.mdl_oauth2_system_account OWNER TO postgres; + +-- +-- TOC entry 11058 (class 0 OID 0) +-- Dependencies: 575 +-- Name: TABLE mdl_oauth2_system_account; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_oauth2_system_account IS 'Stored details used to get an access token as a system user for this oauth2 service.'; + + +-- +-- TOC entry 574 (class 1259 OID 19501) +-- Name: mdl_oauth2_system_account_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_oauth2_system_account_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_oauth2_system_account_id_seq OWNER TO postgres; + +-- +-- TOC entry 11059 (class 0 OID 0) +-- Dependencies: 574 +-- Name: mdl_oauth2_system_account_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_oauth2_system_account_id_seq OWNED BY public.mdl_oauth2_system_account.id; + + +-- +-- TOC entry 577 (class 1259 OID 19515) +-- Name: mdl_oauth2_user_field_mapping; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_oauth2_user_field_mapping ( + id bigint NOT NULL, + timemodified bigint NOT NULL, + timecreated bigint NOT NULL, + usermodified bigint NOT NULL, + issuerid bigint NOT NULL, + externalfield character varying(64) DEFAULT ''::character varying NOT NULL, + internalfield character varying(64) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_oauth2_user_field_mapping OWNER TO postgres; + +-- +-- TOC entry 11060 (class 0 OID 0) +-- Dependencies: 577 +-- Name: TABLE mdl_oauth2_user_field_mapping; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_oauth2_user_field_mapping IS 'Mapping of oauth user fields to moodle fields.'; + + +-- +-- TOC entry 576 (class 1259 OID 19513) +-- Name: mdl_oauth2_user_field_mapping_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_oauth2_user_field_mapping_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_oauth2_user_field_mapping_id_seq OWNER TO postgres; + +-- +-- TOC entry 11061 (class 0 OID 0) +-- Dependencies: 576 +-- Name: mdl_oauth2_user_field_mapping_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_oauth2_user_field_mapping_id_seq OWNED BY public.mdl_oauth2_user_field_mapping.id; + + +-- +-- TOC entry 807 (class 1259 OID 21549) +-- Name: mdl_page; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_page ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + intro text, + introformat smallint DEFAULT 0 NOT NULL, + content text, + contentformat smallint DEFAULT 0 NOT NULL, + legacyfiles smallint DEFAULT 0 NOT NULL, + legacyfileslast bigint, + display smallint DEFAULT 0 NOT NULL, + displayoptions text, + revision bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_page OWNER TO postgres; + +-- +-- TOC entry 11062 (class 0 OID 0) +-- Dependencies: 807 +-- Name: TABLE mdl_page; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_page IS 'Each record is one page and its config data'; + + +-- +-- TOC entry 806 (class 1259 OID 21547) +-- Name: mdl_page_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_page_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_page_id_seq OWNER TO postgres; + +-- +-- TOC entry 11063 (class 0 OID 0) +-- Dependencies: 806 +-- Name: mdl_page_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_page_id_seq OWNED BY public.mdl_page.id; + + +-- +-- TOC entry 419 (class 1259 OID 18402) +-- Name: mdl_portfolio_instance; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_portfolio_instance ( + id bigint NOT NULL, + plugin character varying(50) DEFAULT ''::character varying NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + visible smallint DEFAULT 1 NOT NULL +); + + +ALTER TABLE public.mdl_portfolio_instance OWNER TO postgres; + +-- +-- TOC entry 11064 (class 0 OID 0) +-- Dependencies: 419 +-- Name: TABLE mdl_portfolio_instance; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_portfolio_instance IS 'base table (not including config data) for instances of portfolio plugins.'; + + +-- +-- TOC entry 421 (class 1259 OID 18413) +-- Name: mdl_portfolio_instance_config; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_portfolio_instance_config ( + id bigint NOT NULL, + instance bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + value text +); + + +ALTER TABLE public.mdl_portfolio_instance_config OWNER TO postgres; + +-- +-- TOC entry 11065 (class 0 OID 0) +-- Dependencies: 421 +-- Name: TABLE mdl_portfolio_instance_config; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_portfolio_instance_config IS 'config for portfolio plugin instances'; + + +-- +-- TOC entry 420 (class 1259 OID 18411) +-- Name: mdl_portfolio_instance_config_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_portfolio_instance_config_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_portfolio_instance_config_id_seq OWNER TO postgres; + +-- +-- TOC entry 11066 (class 0 OID 0) +-- Dependencies: 420 +-- Name: mdl_portfolio_instance_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_portfolio_instance_config_id_seq OWNED BY public.mdl_portfolio_instance_config.id; + + +-- +-- TOC entry 418 (class 1259 OID 18400) +-- Name: mdl_portfolio_instance_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_portfolio_instance_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_portfolio_instance_id_seq OWNER TO postgres; + +-- +-- TOC entry 11067 (class 0 OID 0) +-- Dependencies: 418 +-- Name: mdl_portfolio_instance_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_portfolio_instance_id_seq OWNED BY public.mdl_portfolio_instance.id; + + +-- +-- TOC entry 423 (class 1259 OID 18427) +-- Name: mdl_portfolio_instance_user; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_portfolio_instance_user ( + id bigint NOT NULL, + instance bigint NOT NULL, + userid bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + value text +); + + +ALTER TABLE public.mdl_portfolio_instance_user OWNER TO postgres; + +-- +-- TOC entry 11068 (class 0 OID 0) +-- Dependencies: 423 +-- Name: TABLE mdl_portfolio_instance_user; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_portfolio_instance_user IS 'user data for portfolio instances.'; + + +-- +-- TOC entry 422 (class 1259 OID 18425) +-- Name: mdl_portfolio_instance_user_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_portfolio_instance_user_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_portfolio_instance_user_id_seq OWNER TO postgres; + +-- +-- TOC entry 11069 (class 0 OID 0) +-- Dependencies: 422 +-- Name: mdl_portfolio_instance_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_portfolio_instance_user_id_seq OWNED BY public.mdl_portfolio_instance_user.id; + + +-- +-- TOC entry 425 (class 1259 OID 18441) +-- Name: mdl_portfolio_log; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_portfolio_log ( + id bigint NOT NULL, + userid bigint NOT NULL, + "time" bigint NOT NULL, + portfolio bigint NOT NULL, + caller_class character varying(150) DEFAULT ''::character varying NOT NULL, + caller_file character varying(255) DEFAULT ''::character varying NOT NULL, + caller_component character varying(255), + caller_sha1 character varying(255) DEFAULT ''::character varying NOT NULL, + tempdataid bigint DEFAULT 0 NOT NULL, + returnurl character varying(255) DEFAULT ''::character varying NOT NULL, + continueurl character varying(255) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_portfolio_log OWNER TO postgres; + +-- +-- TOC entry 11070 (class 0 OID 0) +-- Dependencies: 425 +-- Name: TABLE mdl_portfolio_log; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_portfolio_log IS 'log of portfolio transfers (used to later check for duplicates)'; + + +-- +-- TOC entry 424 (class 1259 OID 18439) +-- Name: mdl_portfolio_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_portfolio_log_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_portfolio_log_id_seq OWNER TO postgres; + +-- +-- TOC entry 11071 (class 0 OID 0) +-- Dependencies: 424 +-- Name: mdl_portfolio_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_portfolio_log_id_seq OWNED BY public.mdl_portfolio_log.id; + + +-- +-- TOC entry 947 (class 1259 OID 22733) +-- Name: mdl_portfolio_mahara_queue; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_portfolio_mahara_queue ( + id bigint NOT NULL, + transferid bigint NOT NULL, + token character varying(50) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_portfolio_mahara_queue OWNER TO postgres; + +-- +-- TOC entry 11072 (class 0 OID 0) +-- Dependencies: 947 +-- Name: TABLE mdl_portfolio_mahara_queue; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_portfolio_mahara_queue IS 'maps mahara tokens to transfer ids'; + + +-- +-- TOC entry 946 (class 1259 OID 22731) +-- Name: mdl_portfolio_mahara_queue_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_portfolio_mahara_queue_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_portfolio_mahara_queue_id_seq OWNER TO postgres; + +-- +-- TOC entry 11073 (class 0 OID 0) +-- Dependencies: 946 +-- Name: mdl_portfolio_mahara_queue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_portfolio_mahara_queue_id_seq OWNED BY public.mdl_portfolio_mahara_queue.id; + + +-- +-- TOC entry 427 (class 1259 OID 18460) +-- Name: mdl_portfolio_tempdata; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_portfolio_tempdata ( + id bigint NOT NULL, + data text, + expirytime bigint NOT NULL, + userid bigint NOT NULL, + instance bigint DEFAULT 0, + queued smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_portfolio_tempdata OWNER TO postgres; + +-- +-- TOC entry 11074 (class 0 OID 0) +-- Dependencies: 427 +-- Name: TABLE mdl_portfolio_tempdata; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_portfolio_tempdata IS 'stores temporary data for portfolio exports. the id of this table is used for the itemid for the temporary files area. cron can clean up stale records (and associated file data) after expirytime.'; + + +-- +-- TOC entry 426 (class 1259 OID 18458) +-- Name: mdl_portfolio_tempdata_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_portfolio_tempdata_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_portfolio_tempdata_id_seq OWNER TO postgres; + +-- +-- TOC entry 11075 (class 0 OID 0) +-- Dependencies: 426 +-- Name: mdl_portfolio_tempdata_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_portfolio_tempdata_id_seq OWNED BY public.mdl_portfolio_tempdata.id; + + +-- +-- TOC entry 286 (class 1259 OID 17291) +-- Name: mdl_post; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_post ( + id bigint NOT NULL, + module character varying(20) DEFAULT ''::character varying NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + courseid bigint DEFAULT 0 NOT NULL, + groupid bigint DEFAULT 0 NOT NULL, + moduleid bigint DEFAULT 0 NOT NULL, + coursemoduleid bigint DEFAULT 0 NOT NULL, + subject character varying(128) DEFAULT ''::character varying NOT NULL, + summary text, + content text, + uniquehash character varying(255) DEFAULT ''::character varying NOT NULL, + rating bigint DEFAULT 0 NOT NULL, + format bigint DEFAULT 0 NOT NULL, + summaryformat smallint DEFAULT 0 NOT NULL, + attachment character varying(100), + publishstate character varying(20) DEFAULT 'draft'::character varying NOT NULL, + lastmodified bigint DEFAULT 0 NOT NULL, + created bigint DEFAULT 0 NOT NULL, + usermodified bigint +); + + +ALTER TABLE public.mdl_post OWNER TO postgres; + +-- +-- TOC entry 11076 (class 0 OID 0) +-- Dependencies: 286 +-- Name: TABLE mdl_post; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_post IS 'Generic post table to hold data blog entries etc in different modules'; + + +-- +-- TOC entry 285 (class 1259 OID 17289) +-- Name: mdl_post_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_post_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_post_id_seq OWNER TO postgres; + +-- +-- TOC entry 11077 (class 0 OID 0) +-- Dependencies: 285 +-- Name: mdl_post_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_post_id_seq OWNED BY public.mdl_post.id; + + +-- +-- TOC entry 479 (class 1259 OID 18837) +-- Name: mdl_profiling; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_profiling ( + id bigint NOT NULL, + runid character varying(32) DEFAULT ''::character varying NOT NULL, + url character varying(255) DEFAULT ''::character varying NOT NULL, + data text NOT NULL, + totalexecutiontime bigint NOT NULL, + totalcputime bigint NOT NULL, + totalcalls bigint NOT NULL, + totalmemory bigint NOT NULL, + runreference smallint DEFAULT 0 NOT NULL, + runcomment character varying(255) DEFAULT ''::character varying NOT NULL, + timecreated bigint NOT NULL +); + + +ALTER TABLE public.mdl_profiling OWNER TO postgres; + +-- +-- TOC entry 11078 (class 0 OID 0) +-- Dependencies: 479 +-- Name: TABLE mdl_profiling; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_profiling IS 'Stores the results of all the profiling runs'; + + +-- +-- TOC entry 478 (class 1259 OID 18835) +-- Name: mdl_profiling_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_profiling_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_profiling_id_seq OWNER TO postgres; + +-- +-- TOC entry 11079 (class 0 OID 0) +-- Dependencies: 478 +-- Name: mdl_profiling_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_profiling_id_seq OWNED BY public.mdl_profiling.id; + + +-- +-- TOC entry 633 (class 1259 OID 19928) +-- Name: mdl_qtype_ddimageortext; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_qtype_ddimageortext ( + id bigint NOT NULL, + questionid bigint DEFAULT 0 NOT NULL, + shuffleanswers smallint DEFAULT 1 NOT NULL, + correctfeedback text NOT NULL, + correctfeedbackformat smallint DEFAULT 0 NOT NULL, + partiallycorrectfeedback text NOT NULL, + partiallycorrectfeedbackformat smallint DEFAULT 0 NOT NULL, + incorrectfeedback text NOT NULL, + incorrectfeedbackformat smallint DEFAULT 0 NOT NULL, + shownumcorrect smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_qtype_ddimageortext OWNER TO postgres; + +-- +-- TOC entry 11080 (class 0 OID 0) +-- Dependencies: 633 +-- Name: TABLE mdl_qtype_ddimageortext; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_qtype_ddimageortext IS 'Defines drag and drop (text or images onto a background image) questions'; + + +-- +-- TOC entry 637 (class 1259 OID 19963) +-- Name: mdl_qtype_ddimageortext_drags; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_qtype_ddimageortext_drags ( + id bigint NOT NULL, + questionid bigint DEFAULT 0 NOT NULL, + no bigint DEFAULT 0 NOT NULL, + draggroup bigint DEFAULT 0 NOT NULL, + infinite smallint DEFAULT 0 NOT NULL, + label text NOT NULL +); + + +ALTER TABLE public.mdl_qtype_ddimageortext_drags OWNER TO postgres; + +-- +-- TOC entry 11081 (class 0 OID 0) +-- Dependencies: 637 +-- Name: TABLE mdl_qtype_ddimageortext_drags; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_qtype_ddimageortext_drags IS 'Images to drag. Actual file names are not stored here we use the file names as found in the file storage area.'; + + +-- +-- TOC entry 636 (class 1259 OID 19961) +-- Name: mdl_qtype_ddimageortext_drags_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_qtype_ddimageortext_drags_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_qtype_ddimageortext_drags_id_seq OWNER TO postgres; + +-- +-- TOC entry 11082 (class 0 OID 0) +-- Dependencies: 636 +-- Name: mdl_qtype_ddimageortext_drags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_qtype_ddimageortext_drags_id_seq OWNED BY public.mdl_qtype_ddimageortext_drags.id; + + +-- +-- TOC entry 635 (class 1259 OID 19946) +-- Name: mdl_qtype_ddimageortext_drops; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_qtype_ddimageortext_drops ( + id bigint NOT NULL, + questionid bigint DEFAULT 0 NOT NULL, + no bigint DEFAULT 0 NOT NULL, + xleft bigint DEFAULT 0 NOT NULL, + ytop bigint DEFAULT 0 NOT NULL, + choice bigint DEFAULT 0 NOT NULL, + label text NOT NULL +); + + +ALTER TABLE public.mdl_qtype_ddimageortext_drops OWNER TO postgres; + +-- +-- TOC entry 11083 (class 0 OID 0) +-- Dependencies: 635 +-- Name: TABLE mdl_qtype_ddimageortext_drops; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_qtype_ddimageortext_drops IS 'Drop boxes'; + + +-- +-- TOC entry 634 (class 1259 OID 19944) +-- Name: mdl_qtype_ddimageortext_drops_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_qtype_ddimageortext_drops_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_qtype_ddimageortext_drops_id_seq OWNER TO postgres; + +-- +-- TOC entry 11084 (class 0 OID 0) +-- Dependencies: 634 +-- Name: mdl_qtype_ddimageortext_drops_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_qtype_ddimageortext_drops_id_seq OWNED BY public.mdl_qtype_ddimageortext_drops.id; + + +-- +-- TOC entry 632 (class 1259 OID 19926) +-- Name: mdl_qtype_ddimageortext_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_qtype_ddimageortext_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_qtype_ddimageortext_id_seq OWNER TO postgres; + +-- +-- TOC entry 11085 (class 0 OID 0) +-- Dependencies: 632 +-- Name: mdl_qtype_ddimageortext_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_qtype_ddimageortext_id_seq OWNED BY public.mdl_qtype_ddimageortext.id; + + +-- +-- TOC entry 639 (class 1259 OID 19979) +-- Name: mdl_qtype_ddmarker; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_qtype_ddmarker ( + id bigint NOT NULL, + questionid bigint DEFAULT 0 NOT NULL, + shuffleanswers smallint DEFAULT 1 NOT NULL, + correctfeedback text NOT NULL, + correctfeedbackformat smallint DEFAULT 0 NOT NULL, + partiallycorrectfeedback text NOT NULL, + partiallycorrectfeedbackformat smallint DEFAULT 0 NOT NULL, + incorrectfeedback text NOT NULL, + incorrectfeedbackformat smallint DEFAULT 0 NOT NULL, + shownumcorrect smallint DEFAULT 0 NOT NULL, + showmisplaced smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_qtype_ddmarker OWNER TO postgres; + +-- +-- TOC entry 11086 (class 0 OID 0) +-- Dependencies: 639 +-- Name: TABLE mdl_qtype_ddmarker; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_qtype_ddmarker IS 'Defines drag and drop (text or images onto a background image) questions'; + + +-- +-- TOC entry 643 (class 1259 OID 20013) +-- Name: mdl_qtype_ddmarker_drags; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_qtype_ddmarker_drags ( + id bigint NOT NULL, + questionid bigint DEFAULT 0 NOT NULL, + no bigint DEFAULT 0 NOT NULL, + label text NOT NULL, + infinite smallint DEFAULT 0 NOT NULL, + noofdrags bigint DEFAULT 1 NOT NULL +); + + +ALTER TABLE public.mdl_qtype_ddmarker_drags OWNER TO postgres; + +-- +-- TOC entry 11087 (class 0 OID 0) +-- Dependencies: 643 +-- Name: TABLE mdl_qtype_ddmarker_drags; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_qtype_ddmarker_drags IS 'Labels for markers to drag.'; + + +-- +-- TOC entry 642 (class 1259 OID 20011) +-- Name: mdl_qtype_ddmarker_drags_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_qtype_ddmarker_drags_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_qtype_ddmarker_drags_id_seq OWNER TO postgres; + +-- +-- TOC entry 11088 (class 0 OID 0) +-- Dependencies: 642 +-- Name: mdl_qtype_ddmarker_drags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_qtype_ddmarker_drags_id_seq OWNED BY public.mdl_qtype_ddmarker_drags.id; + + +-- +-- TOC entry 641 (class 1259 OID 19998) +-- Name: mdl_qtype_ddmarker_drops; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_qtype_ddmarker_drops ( + id bigint NOT NULL, + questionid bigint DEFAULT 0 NOT NULL, + no bigint DEFAULT 0 NOT NULL, + shape character varying(255), + coords text NOT NULL, + choice bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_qtype_ddmarker_drops OWNER TO postgres; + +-- +-- TOC entry 11089 (class 0 OID 0) +-- Dependencies: 641 +-- Name: TABLE mdl_qtype_ddmarker_drops; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_qtype_ddmarker_drops IS 'drop regions'; + + +-- +-- TOC entry 640 (class 1259 OID 19996) +-- Name: mdl_qtype_ddmarker_drops_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_qtype_ddmarker_drops_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_qtype_ddmarker_drops_id_seq OWNER TO postgres; + +-- +-- TOC entry 11090 (class 0 OID 0) +-- Dependencies: 640 +-- Name: mdl_qtype_ddmarker_drops_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_qtype_ddmarker_drops_id_seq OWNED BY public.mdl_qtype_ddmarker_drops.id; + + +-- +-- TOC entry 638 (class 1259 OID 19977) +-- Name: mdl_qtype_ddmarker_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_qtype_ddmarker_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_qtype_ddmarker_id_seq OWNER TO postgres; + +-- +-- TOC entry 11091 (class 0 OID 0) +-- Dependencies: 638 +-- Name: mdl_qtype_ddmarker_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_qtype_ddmarker_id_seq OWNED BY public.mdl_qtype_ddmarker.id; + + +-- +-- TOC entry 647 (class 1259 OID 20047) +-- Name: mdl_qtype_essay_options; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_qtype_essay_options ( + id bigint NOT NULL, + questionid bigint NOT NULL, + responseformat character varying(16) DEFAULT 'editor'::character varying NOT NULL, + responserequired smallint DEFAULT 1 NOT NULL, + responsefieldlines smallint DEFAULT 15 NOT NULL, + attachments smallint DEFAULT 0 NOT NULL, + attachmentsrequired smallint DEFAULT 0 NOT NULL, + graderinfo text, + graderinfoformat smallint DEFAULT 0 NOT NULL, + responsetemplate text, + responsetemplateformat smallint DEFAULT 0 NOT NULL, + filetypeslist text +); + + +ALTER TABLE public.mdl_qtype_essay_options OWNER TO postgres; + +-- +-- TOC entry 11092 (class 0 OID 0) +-- Dependencies: 647 +-- Name: TABLE mdl_qtype_essay_options; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_qtype_essay_options IS 'Extra options for essay questions.'; + + +-- +-- TOC entry 646 (class 1259 OID 20045) +-- Name: mdl_qtype_essay_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_qtype_essay_options_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_qtype_essay_options_id_seq OWNER TO postgres; + +-- +-- TOC entry 11093 (class 0 OID 0) +-- Dependencies: 646 +-- Name: mdl_qtype_essay_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_qtype_essay_options_id_seq OWNED BY public.mdl_qtype_essay_options.id; + + +-- +-- TOC entry 651 (class 1259 OID 20084) +-- Name: mdl_qtype_match_options; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_qtype_match_options ( + id bigint NOT NULL, + questionid bigint DEFAULT 0 NOT NULL, + shuffleanswers smallint DEFAULT 1 NOT NULL, + correctfeedback text NOT NULL, + correctfeedbackformat smallint DEFAULT 0 NOT NULL, + partiallycorrectfeedback text NOT NULL, + partiallycorrectfeedbackformat smallint DEFAULT 0 NOT NULL, + incorrectfeedback text NOT NULL, + incorrectfeedbackformat smallint DEFAULT 0 NOT NULL, + shownumcorrect smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_qtype_match_options OWNER TO postgres; + +-- +-- TOC entry 11094 (class 0 OID 0) +-- Dependencies: 651 +-- Name: TABLE mdl_qtype_match_options; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_qtype_match_options IS 'Defines the question-type specific options for matching questions'; + + +-- +-- TOC entry 650 (class 1259 OID 20082) +-- Name: mdl_qtype_match_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_qtype_match_options_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_qtype_match_options_id_seq OWNER TO postgres; + +-- +-- TOC entry 11095 (class 0 OID 0) +-- Dependencies: 650 +-- Name: mdl_qtype_match_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_qtype_match_options_id_seq OWNED BY public.mdl_qtype_match_options.id; + + +-- +-- TOC entry 653 (class 1259 OID 20102) +-- Name: mdl_qtype_match_subquestions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_qtype_match_subquestions ( + id bigint NOT NULL, + questionid bigint DEFAULT 0 NOT NULL, + questiontext text NOT NULL, + questiontextformat smallint DEFAULT 0 NOT NULL, + answertext character varying(255) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_qtype_match_subquestions OWNER TO postgres; + +-- +-- TOC entry 11096 (class 0 OID 0) +-- Dependencies: 653 +-- Name: TABLE mdl_qtype_match_subquestions; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_qtype_match_subquestions IS 'The subquestions that make up a matching question'; + + +-- +-- TOC entry 652 (class 1259 OID 20100) +-- Name: mdl_qtype_match_subquestions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_qtype_match_subquestions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_qtype_match_subquestions_id_seq OWNER TO postgres; + +-- +-- TOC entry 11097 (class 0 OID 0) +-- Dependencies: 652 +-- Name: mdl_qtype_match_subquestions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_qtype_match_subquestions_id_seq OWNED BY public.mdl_qtype_match_subquestions.id; + + +-- +-- TOC entry 657 (class 1259 OID 20130) +-- Name: mdl_qtype_multichoice_options; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_qtype_multichoice_options ( + id bigint NOT NULL, + questionid bigint DEFAULT 0 NOT NULL, + layout smallint DEFAULT 0 NOT NULL, + single smallint DEFAULT 0 NOT NULL, + shuffleanswers smallint DEFAULT 1 NOT NULL, + correctfeedback text NOT NULL, + correctfeedbackformat smallint DEFAULT 0 NOT NULL, + partiallycorrectfeedback text NOT NULL, + partiallycorrectfeedbackformat smallint DEFAULT 0 NOT NULL, + incorrectfeedback text NOT NULL, + incorrectfeedbackformat smallint DEFAULT 0 NOT NULL, + answernumbering character varying(10) DEFAULT 'abc'::character varying NOT NULL, + shownumcorrect smallint DEFAULT 0 NOT NULL, + showstandardinstruction smallint DEFAULT 1 NOT NULL +); + + +ALTER TABLE public.mdl_qtype_multichoice_options OWNER TO postgres; + +-- +-- TOC entry 11098 (class 0 OID 0) +-- Dependencies: 657 +-- Name: TABLE mdl_qtype_multichoice_options; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_qtype_multichoice_options IS 'Options for multiple choice questions'; + + +-- +-- TOC entry 656 (class 1259 OID 20128) +-- Name: mdl_qtype_multichoice_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_qtype_multichoice_options_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_qtype_multichoice_options_id_seq OWNER TO postgres; + +-- +-- TOC entry 11099 (class 0 OID 0) +-- Dependencies: 656 +-- Name: mdl_qtype_multichoice_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_qtype_multichoice_options_id_seq OWNED BY public.mdl_qtype_multichoice_options.id; + + +-- +-- TOC entry 665 (class 1259 OID 20192) +-- Name: mdl_qtype_randomsamatch_options; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_qtype_randomsamatch_options ( + id bigint NOT NULL, + questionid bigint DEFAULT 0 NOT NULL, + choose bigint DEFAULT 4 NOT NULL, + subcats smallint DEFAULT 1 NOT NULL, + correctfeedback text NOT NULL, + correctfeedbackformat smallint DEFAULT 0 NOT NULL, + partiallycorrectfeedback text NOT NULL, + partiallycorrectfeedbackformat smallint DEFAULT 0 NOT NULL, + incorrectfeedback text NOT NULL, + incorrectfeedbackformat smallint DEFAULT 0 NOT NULL, + shownumcorrect smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_qtype_randomsamatch_options OWNER TO postgres; + +-- +-- TOC entry 11100 (class 0 OID 0) +-- Dependencies: 665 +-- Name: TABLE mdl_qtype_randomsamatch_options; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_qtype_randomsamatch_options IS 'Info about a random short-answer matching question'; + + +-- +-- TOC entry 664 (class 1259 OID 20190) +-- Name: mdl_qtype_randomsamatch_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_qtype_randomsamatch_options_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_qtype_randomsamatch_options_id_seq OWNER TO postgres; + +-- +-- TOC entry 11101 (class 0 OID 0) +-- Dependencies: 664 +-- Name: mdl_qtype_randomsamatch_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_qtype_randomsamatch_options_id_seq OWNED BY public.mdl_qtype_randomsamatch_options.id; + + +-- +-- TOC entry 667 (class 1259 OID 20211) +-- Name: mdl_qtype_shortanswer_options; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_qtype_shortanswer_options ( + id bigint NOT NULL, + questionid bigint DEFAULT 0 NOT NULL, + usecase smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_qtype_shortanswer_options OWNER TO postgres; + +-- +-- TOC entry 11102 (class 0 OID 0) +-- Dependencies: 667 +-- Name: TABLE mdl_qtype_shortanswer_options; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_qtype_shortanswer_options IS 'Options for short answer questions'; + + +-- +-- TOC entry 666 (class 1259 OID 20209) +-- Name: mdl_qtype_shortanswer_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_qtype_shortanswer_options_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_qtype_shortanswer_options_id_seq OWNER TO postgres; + +-- +-- TOC entry 11103 (class 0 OID 0) +-- Dependencies: 666 +-- Name: mdl_qtype_shortanswer_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_qtype_shortanswer_options_id_seq OWNED BY public.mdl_qtype_shortanswer_options.id; + + +-- +-- TOC entry 319 (class 1259 OID 17557) +-- Name: mdl_question; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_question ( + id bigint NOT NULL, + category bigint DEFAULT 0 NOT NULL, + parent bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + questiontext text NOT NULL, + questiontextformat smallint DEFAULT 0 NOT NULL, + generalfeedback text NOT NULL, + generalfeedbackformat smallint DEFAULT 0 NOT NULL, + defaultmark numeric(12,7) DEFAULT 1 NOT NULL, + penalty numeric(12,7) DEFAULT 0.3333333 NOT NULL, + qtype character varying(20) DEFAULT ''::character varying NOT NULL, + length bigint DEFAULT 1 NOT NULL, + stamp character varying(255) DEFAULT ''::character varying NOT NULL, + version character varying(255) DEFAULT ''::character varying NOT NULL, + hidden smallint DEFAULT 0 NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + createdby bigint, + modifiedby bigint, + idnumber character varying(100) +); + + +ALTER TABLE public.mdl_question OWNER TO postgres; + +-- +-- TOC entry 11104 (class 0 OID 0) +-- Dependencies: 319 +-- Name: TABLE mdl_question; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_question IS 'The questions themselves'; + + +-- +-- TOC entry 321 (class 1259 OID 17588) +-- Name: mdl_question_answers; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_question_answers ( + id bigint NOT NULL, + question bigint DEFAULT 0 NOT NULL, + answer text NOT NULL, + answerformat smallint DEFAULT 0 NOT NULL, + fraction numeric(12,7) DEFAULT 0 NOT NULL, + feedback text NOT NULL, + feedbackformat smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_question_answers OWNER TO postgres; + +-- +-- TOC entry 11105 (class 0 OID 0) +-- Dependencies: 321 +-- Name: TABLE mdl_question_answers; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_question_answers IS 'Answers, with a fractional grade (0-1) and feedback'; + + +-- +-- TOC entry 320 (class 1259 OID 17586) +-- Name: mdl_question_answers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_question_answers_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_question_answers_id_seq OWNER TO postgres; + +-- +-- TOC entry 11106 (class 0 OID 0) +-- Dependencies: 320 +-- Name: mdl_question_answers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_question_answers_id_seq OWNED BY public.mdl_question_answers.id; + + +-- +-- TOC entry 331 (class 1259 OID 17659) +-- Name: mdl_question_attempt_step_data; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_question_attempt_step_data ( + id bigint NOT NULL, + attemptstepid bigint NOT NULL, + name character varying(32) DEFAULT ''::character varying NOT NULL, + value text +); + + +ALTER TABLE public.mdl_question_attempt_step_data OWNER TO postgres; + +-- +-- TOC entry 11107 (class 0 OID 0) +-- Dependencies: 331 +-- Name: TABLE mdl_question_attempt_step_data; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_question_attempt_step_data IS 'Each question_attempt_step has an associative array of the data that was submitted by the user in the POST request. It can also contain extra data from the question type or behaviour to avoid re-computation. The convention is that names belonging to '; + + +-- +-- TOC entry 330 (class 1259 OID 17657) +-- Name: mdl_question_attempt_step_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_question_attempt_step_data_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_question_attempt_step_data_id_seq OWNER TO postgres; + +-- +-- TOC entry 11108 (class 0 OID 0) +-- Dependencies: 330 +-- Name: mdl_question_attempt_step_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_question_attempt_step_data_id_seq OWNED BY public.mdl_question_attempt_step_data.id; + + +-- +-- TOC entry 329 (class 1259 OID 17647) +-- Name: mdl_question_attempt_steps; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_question_attempt_steps ( + id bigint NOT NULL, + questionattemptid bigint NOT NULL, + sequencenumber bigint NOT NULL, + state character varying(13) DEFAULT ''::character varying NOT NULL, + fraction numeric(12,7), + timecreated bigint NOT NULL, + userid bigint +); + + +ALTER TABLE public.mdl_question_attempt_steps OWNER TO postgres; + +-- +-- TOC entry 11109 (class 0 OID 0) +-- Dependencies: 329 +-- Name: TABLE mdl_question_attempt_steps; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_question_attempt_steps IS 'Stores one step in in a question attempt. As well as the data here, the step will have some data in the question_attempt_step_data table.'; + + +-- +-- TOC entry 328 (class 1259 OID 17645) +-- Name: mdl_question_attempt_steps_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_question_attempt_steps_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_question_attempt_steps_id_seq OWNER TO postgres; + +-- +-- TOC entry 11110 (class 0 OID 0) +-- Dependencies: 328 +-- Name: mdl_question_attempt_steps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_question_attempt_steps_id_seq OWNED BY public.mdl_question_attempt_steps.id; + + +-- +-- TOC entry 327 (class 1259 OID 17628) +-- Name: mdl_question_attempts; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_question_attempts ( + id bigint NOT NULL, + questionusageid bigint NOT NULL, + slot bigint NOT NULL, + behaviour character varying(32) DEFAULT ''::character varying NOT NULL, + questionid bigint NOT NULL, + variant bigint DEFAULT 1 NOT NULL, + maxmark numeric(12,7) NOT NULL, + minfraction numeric(12,7) NOT NULL, + maxfraction numeric(12,7) DEFAULT 1 NOT NULL, + flagged smallint DEFAULT 0 NOT NULL, + questionsummary text, + rightanswer text, + responsesummary text, + timemodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_question_attempts OWNER TO postgres; + +-- +-- TOC entry 11111 (class 0 OID 0) +-- Dependencies: 327 +-- Name: TABLE mdl_question_attempts; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_question_attempts IS 'Each row here corresponds to an attempt at one question, as part of a question_usage. A question_attempt will have some question_attempt_steps'; + + +-- +-- TOC entry 326 (class 1259 OID 17626) +-- Name: mdl_question_attempts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_question_attempts_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_question_attempts_id_seq OWNER TO postgres; + +-- +-- TOC entry 11112 (class 0 OID 0) +-- Dependencies: 326 +-- Name: mdl_question_attempts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_question_attempts_id_seq OWNED BY public.mdl_question_attempts.id; + + +-- +-- TOC entry 623 (class 1259 OID 19849) +-- Name: mdl_question_calculated; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_question_calculated ( + id bigint NOT NULL, + question bigint DEFAULT 0 NOT NULL, + answer bigint DEFAULT 0 NOT NULL, + tolerance character varying(20) DEFAULT '0.0'::character varying NOT NULL, + tolerancetype bigint DEFAULT 1 NOT NULL, + correctanswerlength bigint DEFAULT 2 NOT NULL, + correctanswerformat bigint DEFAULT 2 NOT NULL +); + + +ALTER TABLE public.mdl_question_calculated OWNER TO postgres; + +-- +-- TOC entry 11113 (class 0 OID 0) +-- Dependencies: 623 +-- Name: TABLE mdl_question_calculated; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_question_calculated IS 'Options for questions of type calculated'; + + +-- +-- TOC entry 622 (class 1259 OID 19847) +-- Name: mdl_question_calculated_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_question_calculated_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_question_calculated_id_seq OWNER TO postgres; + +-- +-- TOC entry 11114 (class 0 OID 0) +-- Dependencies: 622 +-- Name: mdl_question_calculated_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_question_calculated_id_seq OWNED BY public.mdl_question_calculated.id; + + +-- +-- TOC entry 625 (class 1259 OID 19865) +-- Name: mdl_question_calculated_options; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_question_calculated_options ( + id bigint NOT NULL, + question bigint DEFAULT 0 NOT NULL, + synchronize smallint DEFAULT 0 NOT NULL, + single smallint DEFAULT 0 NOT NULL, + shuffleanswers smallint DEFAULT 0 NOT NULL, + correctfeedback text, + correctfeedbackformat smallint DEFAULT 0 NOT NULL, + partiallycorrectfeedback text, + partiallycorrectfeedbackformat smallint DEFAULT 0 NOT NULL, + incorrectfeedback text, + incorrectfeedbackformat smallint DEFAULT 0 NOT NULL, + answernumbering character varying(10) DEFAULT 'abc'::character varying NOT NULL, + shownumcorrect smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_question_calculated_options OWNER TO postgres; + +-- +-- TOC entry 11115 (class 0 OID 0) +-- Dependencies: 625 +-- Name: TABLE mdl_question_calculated_options; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_question_calculated_options IS 'Options for questions of type calculated'; + + +-- +-- TOC entry 624 (class 1259 OID 19863) +-- Name: mdl_question_calculated_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_question_calculated_options_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_question_calculated_options_id_seq OWNER TO postgres; + +-- +-- TOC entry 11116 (class 0 OID 0) +-- Dependencies: 624 +-- Name: mdl_question_calculated_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_question_calculated_options_id_seq OWNED BY public.mdl_question_calculated_options.id; + + +-- +-- TOC entry 317 (class 1259 OID 17536) +-- Name: mdl_question_categories; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_question_categories ( + id bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + contextid bigint DEFAULT 0 NOT NULL, + info text NOT NULL, + infoformat smallint DEFAULT 0 NOT NULL, + stamp character varying(255) DEFAULT ''::character varying NOT NULL, + parent bigint DEFAULT 0 NOT NULL, + sortorder bigint DEFAULT 999 NOT NULL, + idnumber character varying(100) +); + + +ALTER TABLE public.mdl_question_categories OWNER TO postgres; + +-- +-- TOC entry 11117 (class 0 OID 0) +-- Dependencies: 317 +-- Name: TABLE mdl_question_categories; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_question_categories IS 'Categories are for grouping questions'; + + +-- +-- TOC entry 316 (class 1259 OID 17534) +-- Name: mdl_question_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_question_categories_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_question_categories_id_seq OWNER TO postgres; + +-- +-- TOC entry 11118 (class 0 OID 0) +-- Dependencies: 316 +-- Name: mdl_question_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_question_categories_id_seq OWNED BY public.mdl_question_categories.id; + + +-- +-- TOC entry 627 (class 1259 OID 19886) +-- Name: mdl_question_dataset_definitions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_question_dataset_definitions ( + id bigint NOT NULL, + category bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + type bigint DEFAULT 0 NOT NULL, + options character varying(255) DEFAULT ''::character varying NOT NULL, + itemcount bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_question_dataset_definitions OWNER TO postgres; + +-- +-- TOC entry 11119 (class 0 OID 0) +-- Dependencies: 627 +-- Name: TABLE mdl_question_dataset_definitions; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_question_dataset_definitions IS 'Organises and stores properties for dataset items'; + + +-- +-- TOC entry 626 (class 1259 OID 19884) +-- Name: mdl_question_dataset_definitions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_question_dataset_definitions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_question_dataset_definitions_id_seq OWNER TO postgres; + +-- +-- TOC entry 11120 (class 0 OID 0) +-- Dependencies: 626 +-- Name: mdl_question_dataset_definitions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_question_dataset_definitions_id_seq OWNED BY public.mdl_question_dataset_definitions.id; + + +-- +-- TOC entry 629 (class 1259 OID 19903) +-- Name: mdl_question_dataset_items; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_question_dataset_items ( + id bigint NOT NULL, + definition bigint DEFAULT 0 NOT NULL, + itemnumber bigint DEFAULT 0 NOT NULL, + value character varying(255) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_question_dataset_items OWNER TO postgres; + +-- +-- TOC entry 11121 (class 0 OID 0) +-- Dependencies: 629 +-- Name: TABLE mdl_question_dataset_items; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_question_dataset_items IS 'Individual dataset items'; + + +-- +-- TOC entry 628 (class 1259 OID 19901) +-- Name: mdl_question_dataset_items_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_question_dataset_items_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_question_dataset_items_id_seq OWNER TO postgres; + +-- +-- TOC entry 11122 (class 0 OID 0) +-- Dependencies: 628 +-- Name: mdl_question_dataset_items_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_question_dataset_items_id_seq OWNED BY public.mdl_question_dataset_items.id; + + +-- +-- TOC entry 631 (class 1259 OID 19915) +-- Name: mdl_question_datasets; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_question_datasets ( + id bigint NOT NULL, + question bigint DEFAULT 0 NOT NULL, + datasetdefinition bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_question_datasets OWNER TO postgres; + +-- +-- TOC entry 11123 (class 0 OID 0) +-- Dependencies: 631 +-- Name: TABLE mdl_question_datasets; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_question_datasets IS 'Many-many relation between questions and dataset definitions'; + + +-- +-- TOC entry 630 (class 1259 OID 19913) +-- Name: mdl_question_datasets_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_question_datasets_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_question_datasets_id_seq OWNER TO postgres; + +-- +-- TOC entry 11124 (class 0 OID 0) +-- Dependencies: 630 +-- Name: mdl_question_datasets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_question_datasets_id_seq OWNED BY public.mdl_question_datasets.id; + + +-- +-- TOC entry 645 (class 1259 OID 20029) +-- Name: mdl_question_ddwtos; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_question_ddwtos ( + id bigint NOT NULL, + questionid bigint DEFAULT 0 NOT NULL, + shuffleanswers smallint DEFAULT 1 NOT NULL, + correctfeedback text NOT NULL, + correctfeedbackformat smallint DEFAULT 0 NOT NULL, + partiallycorrectfeedback text NOT NULL, + partiallycorrectfeedbackformat smallint DEFAULT 0 NOT NULL, + incorrectfeedback text NOT NULL, + incorrectfeedbackformat smallint DEFAULT 0 NOT NULL, + shownumcorrect smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_question_ddwtos OWNER TO postgres; + +-- +-- TOC entry 11125 (class 0 OID 0) +-- Dependencies: 645 +-- Name: TABLE mdl_question_ddwtos; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_question_ddwtos IS 'Defines drag and drop (words into sentences) questions'; + + +-- +-- TOC entry 644 (class 1259 OID 20027) +-- Name: mdl_question_ddwtos_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_question_ddwtos_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_question_ddwtos_id_seq OWNER TO postgres; + +-- +-- TOC entry 11126 (class 0 OID 0) +-- Dependencies: 644 +-- Name: mdl_question_ddwtos_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_question_ddwtos_id_seq OWNED BY public.mdl_question_ddwtos.id; + + +-- +-- TOC entry 649 (class 1259 OID 20066) +-- Name: mdl_question_gapselect; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_question_gapselect ( + id bigint NOT NULL, + questionid bigint DEFAULT 0 NOT NULL, + shuffleanswers smallint DEFAULT 1 NOT NULL, + correctfeedback text NOT NULL, + correctfeedbackformat smallint DEFAULT 0 NOT NULL, + partiallycorrectfeedback text NOT NULL, + partiallycorrectfeedbackformat smallint DEFAULT 0 NOT NULL, + incorrectfeedback text NOT NULL, + incorrectfeedbackformat smallint DEFAULT 0 NOT NULL, + shownumcorrect smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_question_gapselect OWNER TO postgres; + +-- +-- TOC entry 11127 (class 0 OID 0) +-- Dependencies: 649 +-- Name: TABLE mdl_question_gapselect; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_question_gapselect IS 'Defines select missing words questions'; + + +-- +-- TOC entry 648 (class 1259 OID 20064) +-- Name: mdl_question_gapselect_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_question_gapselect_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_question_gapselect_id_seq OWNER TO postgres; + +-- +-- TOC entry 11128 (class 0 OID 0) +-- Dependencies: 648 +-- Name: mdl_question_gapselect_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_question_gapselect_id_seq OWNED BY public.mdl_question_gapselect.id; + + +-- +-- TOC entry 323 (class 1259 OID 17604) +-- Name: mdl_question_hints; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_question_hints ( + id bigint NOT NULL, + questionid bigint NOT NULL, + hint text NOT NULL, + hintformat smallint DEFAULT 0 NOT NULL, + shownumcorrect smallint, + clearwrong smallint, + options character varying(255) +); + + +ALTER TABLE public.mdl_question_hints OWNER TO postgres; + +-- +-- TOC entry 11129 (class 0 OID 0) +-- Dependencies: 323 +-- Name: TABLE mdl_question_hints; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_question_hints IS 'Stores the the part of the question definition that gives different feedback after each try in interactive and similar behaviours.'; + + +-- +-- TOC entry 322 (class 1259 OID 17602) +-- Name: mdl_question_hints_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_question_hints_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_question_hints_id_seq OWNER TO postgres; + +-- +-- TOC entry 11130 (class 0 OID 0) +-- Dependencies: 322 +-- Name: mdl_question_hints_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_question_hints_id_seq OWNED BY public.mdl_question_hints.id; + + +-- +-- TOC entry 318 (class 1259 OID 17555) +-- Name: mdl_question_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_question_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_question_id_seq OWNER TO postgres; + +-- +-- TOC entry 11131 (class 0 OID 0) +-- Dependencies: 318 +-- Name: mdl_question_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_question_id_seq OWNED BY public.mdl_question.id; + + +-- +-- TOC entry 655 (class 1259 OID 20117) +-- Name: mdl_question_multianswer; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_question_multianswer ( + id bigint NOT NULL, + question bigint DEFAULT 0 NOT NULL, + sequence text NOT NULL +); + + +ALTER TABLE public.mdl_question_multianswer OWNER TO postgres; + +-- +-- TOC entry 11132 (class 0 OID 0) +-- Dependencies: 655 +-- Name: TABLE mdl_question_multianswer; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_question_multianswer IS 'Options for multianswer questions'; + + +-- +-- TOC entry 654 (class 1259 OID 20115) +-- Name: mdl_question_multianswer_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_question_multianswer_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_question_multianswer_id_seq OWNER TO postgres; + +-- +-- TOC entry 11133 (class 0 OID 0) +-- Dependencies: 654 +-- Name: mdl_question_multianswer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_question_multianswer_id_seq OWNED BY public.mdl_question_multianswer.id; + + +-- +-- TOC entry 659 (class 1259 OID 20152) +-- Name: mdl_question_numerical; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_question_numerical ( + id bigint NOT NULL, + question bigint DEFAULT 0 NOT NULL, + answer bigint DEFAULT 0 NOT NULL, + tolerance character varying(255) DEFAULT '0.0'::character varying NOT NULL +); + + +ALTER TABLE public.mdl_question_numerical OWNER TO postgres; + +-- +-- TOC entry 11134 (class 0 OID 0) +-- Dependencies: 659 +-- Name: TABLE mdl_question_numerical; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_question_numerical IS 'Options for numerical questions.'; + + +-- +-- TOC entry 658 (class 1259 OID 20150) +-- Name: mdl_question_numerical_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_question_numerical_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_question_numerical_id_seq OWNER TO postgres; + +-- +-- TOC entry 11135 (class 0 OID 0) +-- Dependencies: 658 +-- Name: mdl_question_numerical_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_question_numerical_id_seq OWNED BY public.mdl_question_numerical.id; + + +-- +-- TOC entry 661 (class 1259 OID 20165) +-- Name: mdl_question_numerical_options; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_question_numerical_options ( + id bigint NOT NULL, + question bigint DEFAULT 0 NOT NULL, + showunits smallint DEFAULT 0 NOT NULL, + unitsleft smallint DEFAULT 0 NOT NULL, + unitgradingtype smallint DEFAULT 0 NOT NULL, + unitpenalty numeric(12,7) DEFAULT 0.1 NOT NULL +); + + +ALTER TABLE public.mdl_question_numerical_options OWNER TO postgres; + +-- +-- TOC entry 11136 (class 0 OID 0) +-- Dependencies: 661 +-- Name: TABLE mdl_question_numerical_options; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_question_numerical_options IS 'Options for questions of type numerical This table is also used by the calculated question type'; + + +-- +-- TOC entry 660 (class 1259 OID 20163) +-- Name: mdl_question_numerical_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_question_numerical_options_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_question_numerical_options_id_seq OWNER TO postgres; + +-- +-- TOC entry 11137 (class 0 OID 0) +-- Dependencies: 660 +-- Name: mdl_question_numerical_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_question_numerical_options_id_seq OWNED BY public.mdl_question_numerical_options.id; + + +-- +-- TOC entry 663 (class 1259 OID 20179) +-- Name: mdl_question_numerical_units; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_question_numerical_units ( + id bigint NOT NULL, + question bigint DEFAULT 0 NOT NULL, + multiplier numeric(38,19) DEFAULT 1.00000000000000000000 NOT NULL, + unit character varying(50) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_question_numerical_units OWNER TO postgres; + +-- +-- TOC entry 11138 (class 0 OID 0) +-- Dependencies: 663 +-- Name: TABLE mdl_question_numerical_units; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_question_numerical_units IS 'Optional unit options for numerical questions. This table is also used by the calculated question type.'; + + +-- +-- TOC entry 662 (class 1259 OID 20177) +-- Name: mdl_question_numerical_units_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_question_numerical_units_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_question_numerical_units_id_seq OWNER TO postgres; + +-- +-- TOC entry 11139 (class 0 OID 0) +-- Dependencies: 662 +-- Name: mdl_question_numerical_units_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_question_numerical_units_id_seq OWNED BY public.mdl_question_numerical_units.id; + + +-- +-- TOC entry 335 (class 1259 OID 17686) +-- Name: mdl_question_response_analysis; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_question_response_analysis ( + id bigint NOT NULL, + hashcode character varying(40) DEFAULT ''::character varying NOT NULL, + whichtries character varying(255) DEFAULT ''::character varying NOT NULL, + timemodified bigint NOT NULL, + questionid bigint NOT NULL, + variant bigint, + subqid character varying(100) DEFAULT ''::character varying NOT NULL, + aid character varying(100), + response text, + credit numeric(15,5) NOT NULL +); + + +ALTER TABLE public.mdl_question_response_analysis OWNER TO postgres; + +-- +-- TOC entry 11140 (class 0 OID 0) +-- Dependencies: 335 +-- Name: TABLE mdl_question_response_analysis; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_question_response_analysis IS 'Analysis of student responses given to questions.'; + + +-- +-- TOC entry 334 (class 1259 OID 17684) +-- Name: mdl_question_response_analysis_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_question_response_analysis_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_question_response_analysis_id_seq OWNER TO postgres; + +-- +-- TOC entry 11141 (class 0 OID 0) +-- Dependencies: 334 +-- Name: mdl_question_response_analysis_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_question_response_analysis_id_seq OWNED BY public.mdl_question_response_analysis.id; + + +-- +-- TOC entry 337 (class 1259 OID 17700) +-- Name: mdl_question_response_count; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_question_response_count ( + id bigint NOT NULL, + analysisid bigint NOT NULL, + try bigint NOT NULL, + rcount bigint NOT NULL +); + + +ALTER TABLE public.mdl_question_response_count OWNER TO postgres; + +-- +-- TOC entry 11142 (class 0 OID 0) +-- Dependencies: 337 +-- Name: TABLE mdl_question_response_count; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_question_response_count IS 'Count for each responses for each try at a question.'; + + +-- +-- TOC entry 336 (class 1259 OID 17698) +-- Name: mdl_question_response_count_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_question_response_count_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_question_response_count_id_seq OWNER TO postgres; + +-- +-- TOC entry 11143 (class 0 OID 0) +-- Dependencies: 336 +-- Name: mdl_question_response_count_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_question_response_count_id_seq OWNED BY public.mdl_question_response_count.id; + + +-- +-- TOC entry 333 (class 1259 OID 17672) +-- Name: mdl_question_statistics; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_question_statistics ( + id bigint NOT NULL, + hashcode character varying(40) DEFAULT ''::character varying NOT NULL, + timemodified bigint NOT NULL, + questionid bigint NOT NULL, + slot bigint, + subquestion smallint NOT NULL, + variant bigint, + s bigint DEFAULT 0 NOT NULL, + effectiveweight numeric(15,5), + negcovar smallint DEFAULT 0 NOT NULL, + discriminationindex numeric(15,5), + discriminativeefficiency numeric(15,5), + sd numeric(15,10), + facility numeric(15,10), + subquestions text, + maxmark numeric(12,7), + positions text, + randomguessscore numeric(12,7) +); + + +ALTER TABLE public.mdl_question_statistics OWNER TO postgres; + +-- +-- TOC entry 11144 (class 0 OID 0) +-- Dependencies: 333 +-- Name: TABLE mdl_question_statistics; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_question_statistics IS 'Statistics for individual questions used in an activity.'; + + +-- +-- TOC entry 332 (class 1259 OID 17670) +-- Name: mdl_question_statistics_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_question_statistics_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_question_statistics_id_seq OWNER TO postgres; + +-- +-- TOC entry 11145 (class 0 OID 0) +-- Dependencies: 332 +-- Name: mdl_question_statistics_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_question_statistics_id_seq OWNED BY public.mdl_question_statistics.id; + + +-- +-- TOC entry 669 (class 1259 OID 20222) +-- Name: mdl_question_truefalse; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_question_truefalse ( + id bigint NOT NULL, + question bigint DEFAULT 0 NOT NULL, + trueanswer bigint DEFAULT 0 NOT NULL, + falseanswer bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_question_truefalse OWNER TO postgres; + +-- +-- TOC entry 11146 (class 0 OID 0) +-- Dependencies: 669 +-- Name: TABLE mdl_question_truefalse; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_question_truefalse IS 'Options for True-False questions'; + + +-- +-- TOC entry 668 (class 1259 OID 20220) +-- Name: mdl_question_truefalse_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_question_truefalse_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_question_truefalse_id_seq OWNER TO postgres; + +-- +-- TOC entry 11147 (class 0 OID 0) +-- Dependencies: 668 +-- Name: mdl_question_truefalse_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_question_truefalse_id_seq OWNED BY public.mdl_question_truefalse.id; + + +-- +-- TOC entry 325 (class 1259 OID 17617) +-- Name: mdl_question_usages; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_question_usages ( + id bigint NOT NULL, + contextid bigint NOT NULL, + component character varying(255) DEFAULT ''::character varying NOT NULL, + preferredbehaviour character varying(32) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_question_usages OWNER TO postgres; + +-- +-- TOC entry 11148 (class 0 OID 0) +-- Dependencies: 325 +-- Name: TABLE mdl_question_usages; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_question_usages IS 'This table''s main purpose it to assign a unique id to each attempt at a set of questions by some part of Moodle. A question usage is made up of a number of question_attempts.'; + + +-- +-- TOC entry 324 (class 1259 OID 17615) +-- Name: mdl_question_usages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_question_usages_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_question_usages_id_seq OWNER TO postgres; + +-- +-- TOC entry 11149 (class 0 OID 0) +-- Dependencies: 324 +-- Name: mdl_question_usages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_question_usages_id_seq OWNED BY public.mdl_question_usages.id; + + +-- +-- TOC entry 809 (class 1259 OID 21569) +-- Name: mdl_quiz; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_quiz ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + intro text NOT NULL, + introformat smallint DEFAULT 0 NOT NULL, + timeopen bigint DEFAULT 0 NOT NULL, + timeclose bigint DEFAULT 0 NOT NULL, + timelimit bigint DEFAULT 0 NOT NULL, + overduehandling character varying(16) DEFAULT 'autoabandon'::character varying NOT NULL, + graceperiod bigint DEFAULT 0 NOT NULL, + preferredbehaviour character varying(32) DEFAULT ''::character varying NOT NULL, + canredoquestions smallint DEFAULT 0 NOT NULL, + attempts integer DEFAULT 0 NOT NULL, + attemptonlast smallint DEFAULT 0 NOT NULL, + grademethod smallint DEFAULT 1 NOT NULL, + decimalpoints smallint DEFAULT 2 NOT NULL, + questiondecimalpoints smallint DEFAULT '-1'::integer NOT NULL, + reviewattempt integer DEFAULT 0 NOT NULL, + reviewcorrectness integer DEFAULT 0 NOT NULL, + reviewmarks integer DEFAULT 0 NOT NULL, + reviewspecificfeedback integer DEFAULT 0 NOT NULL, + reviewgeneralfeedback integer DEFAULT 0 NOT NULL, + reviewrightanswer integer DEFAULT 0 NOT NULL, + reviewoverallfeedback integer DEFAULT 0 NOT NULL, + questionsperpage bigint DEFAULT 0 NOT NULL, + navmethod character varying(16) DEFAULT 'free'::character varying NOT NULL, + shuffleanswers smallint DEFAULT 0 NOT NULL, + sumgrades numeric(10,5) DEFAULT 0 NOT NULL, + grade numeric(10,5) DEFAULT 0 NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + password character varying(255) DEFAULT ''::character varying NOT NULL, + subnet character varying(255) DEFAULT ''::character varying NOT NULL, + browsersecurity character varying(32) DEFAULT ''::character varying NOT NULL, + delay1 bigint DEFAULT 0 NOT NULL, + delay2 bigint DEFAULT 0 NOT NULL, + showuserpicture smallint DEFAULT 0 NOT NULL, + showblocks smallint DEFAULT 0 NOT NULL, + completionattemptsexhausted smallint DEFAULT 0, + completionpass smallint DEFAULT 0, + allowofflineattempts smallint DEFAULT 0 +); + + +ALTER TABLE public.mdl_quiz OWNER TO postgres; + +-- +-- TOC entry 11150 (class 0 OID 0) +-- Dependencies: 809 +-- Name: TABLE mdl_quiz; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_quiz IS 'The settings for each quiz.'; + + +-- +-- TOC entry 819 (class 1259 OID 21678) +-- Name: mdl_quiz_attempts; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_quiz_attempts ( + id bigint NOT NULL, + quiz bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + attempt integer DEFAULT 0 NOT NULL, + uniqueid bigint DEFAULT 0 NOT NULL, + layout text NOT NULL, + currentpage bigint DEFAULT 0 NOT NULL, + preview smallint DEFAULT 0 NOT NULL, + state character varying(16) DEFAULT 'inprogress'::character varying NOT NULL, + timestart bigint DEFAULT 0 NOT NULL, + timefinish bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + timemodifiedoffline bigint DEFAULT 0 NOT NULL, + timecheckstate bigint DEFAULT 0, + sumgrades numeric(10,5) +); + + +ALTER TABLE public.mdl_quiz_attempts OWNER TO postgres; + +-- +-- TOC entry 11151 (class 0 OID 0) +-- Dependencies: 819 +-- Name: TABLE mdl_quiz_attempts; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_quiz_attempts IS 'Stores users attempts at quizzes.'; + + +-- +-- TOC entry 818 (class 1259 OID 21676) +-- Name: mdl_quiz_attempts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_quiz_attempts_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_quiz_attempts_id_seq OWNER TO postgres; + +-- +-- TOC entry 11152 (class 0 OID 0) +-- Dependencies: 818 +-- Name: mdl_quiz_attempts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_quiz_attempts_id_seq OWNED BY public.mdl_quiz_attempts.id; + + +-- +-- TOC entry 815 (class 1259 OID 21650) +-- Name: mdl_quiz_feedback; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_quiz_feedback ( + id bigint NOT NULL, + quizid bigint DEFAULT 0 NOT NULL, + feedbacktext text NOT NULL, + feedbacktextformat smallint DEFAULT 0 NOT NULL, + mingrade numeric(10,5) DEFAULT 0 NOT NULL, + maxgrade numeric(10,5) DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_quiz_feedback OWNER TO postgres; + +-- +-- TOC entry 11153 (class 0 OID 0) +-- Dependencies: 815 +-- Name: TABLE mdl_quiz_feedback; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_quiz_feedback IS 'Feedback given to students based on which grade band their overall score lies.'; + + +-- +-- TOC entry 814 (class 1259 OID 21648) +-- Name: mdl_quiz_feedback_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_quiz_feedback_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_quiz_feedback_id_seq OWNER TO postgres; + +-- +-- TOC entry 11154 (class 0 OID 0) +-- Dependencies: 814 +-- Name: mdl_quiz_feedback_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_quiz_feedback_id_seq OWNED BY public.mdl_quiz_feedback.id; + + +-- +-- TOC entry 821 (class 1259 OID 21706) +-- Name: mdl_quiz_grades; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_quiz_grades ( + id bigint NOT NULL, + quiz bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + grade numeric(10,5) DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_quiz_grades OWNER TO postgres; + +-- +-- TOC entry 11155 (class 0 OID 0) +-- Dependencies: 821 +-- Name: TABLE mdl_quiz_grades; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_quiz_grades IS 'Stores the overall grade for each user on the quiz, based on their various attempts and the quiz.grademethod setting.'; + + +-- +-- TOC entry 820 (class 1259 OID 21704) +-- Name: mdl_quiz_grades_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_quiz_grades_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_quiz_grades_id_seq OWNER TO postgres; + +-- +-- TOC entry 11156 (class 0 OID 0) +-- Dependencies: 820 +-- Name: mdl_quiz_grades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_quiz_grades_id_seq OWNED BY public.mdl_quiz_grades.id; + + +-- +-- TOC entry 808 (class 1259 OID 21567) +-- Name: mdl_quiz_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_quiz_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_quiz_id_seq OWNER TO postgres; + +-- +-- TOC entry 11157 (class 0 OID 0) +-- Dependencies: 808 +-- Name: mdl_quiz_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_quiz_id_seq OWNED BY public.mdl_quiz.id; + + +-- +-- TOC entry 817 (class 1259 OID 21666) +-- Name: mdl_quiz_overrides; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_quiz_overrides ( + id bigint NOT NULL, + quiz bigint DEFAULT 0 NOT NULL, + groupid bigint, + userid bigint, + timeopen bigint, + timeclose bigint, + timelimit bigint, + attempts integer, + password character varying(255) +); + + +ALTER TABLE public.mdl_quiz_overrides OWNER TO postgres; + +-- +-- TOC entry 11158 (class 0 OID 0) +-- Dependencies: 817 +-- Name: TABLE mdl_quiz_overrides; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_quiz_overrides IS 'The overrides to quiz settings on a per-user and per-group basis.'; + + +-- +-- TOC entry 816 (class 1259 OID 21664) +-- Name: mdl_quiz_overrides_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_quiz_overrides_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_quiz_overrides_id_seq OWNER TO postgres; + +-- +-- TOC entry 11159 (class 0 OID 0) +-- Dependencies: 816 +-- Name: mdl_quiz_overrides_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_quiz_overrides_id_seq OWNED BY public.mdl_quiz_overrides.id; + + +-- +-- TOC entry 1013 (class 1259 OID 23209) +-- Name: mdl_quiz_overview_regrades; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_quiz_overview_regrades ( + id bigint NOT NULL, + questionusageid bigint NOT NULL, + slot bigint NOT NULL, + newfraction numeric(12,7), + oldfraction numeric(12,7), + regraded smallint NOT NULL, + timemodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_quiz_overview_regrades OWNER TO postgres; + +-- +-- TOC entry 11160 (class 0 OID 0) +-- Dependencies: 1013 +-- Name: TABLE mdl_quiz_overview_regrades; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_quiz_overview_regrades IS 'This table records which question attempts need regrading and the grade they will be regraded to.'; + + +-- +-- TOC entry 1012 (class 1259 OID 23207) +-- Name: mdl_quiz_overview_regrades_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_quiz_overview_regrades_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_quiz_overview_regrades_id_seq OWNER TO postgres; + +-- +-- TOC entry 11161 (class 0 OID 0) +-- Dependencies: 1012 +-- Name: mdl_quiz_overview_regrades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_quiz_overview_regrades_id_seq OWNED BY public.mdl_quiz_overview_regrades.id; + + +-- +-- TOC entry 823 (class 1259 OID 21720) +-- Name: mdl_quiz_reports; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_quiz_reports ( + id bigint NOT NULL, + name character varying(255), + displayorder bigint NOT NULL, + capability character varying(255) +); + + +ALTER TABLE public.mdl_quiz_reports OWNER TO postgres; + +-- +-- TOC entry 11162 (class 0 OID 0) +-- Dependencies: 823 +-- Name: TABLE mdl_quiz_reports; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_quiz_reports IS 'Lists all the installed quiz reports and their display order and so on. No need to worry about deleting old records. Only records with an equivalent directory are displayed.'; + + +-- +-- TOC entry 822 (class 1259 OID 21718) +-- Name: mdl_quiz_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_quiz_reports_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_quiz_reports_id_seq OWNER TO postgres; + +-- +-- TOC entry 11163 (class 0 OID 0) +-- Dependencies: 822 +-- Name: mdl_quiz_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_quiz_reports_id_seq OWNED BY public.mdl_quiz_reports.id; + + +-- +-- TOC entry 813 (class 1259 OID 21636) +-- Name: mdl_quiz_sections; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_quiz_sections ( + id bigint NOT NULL, + quizid bigint NOT NULL, + firstslot bigint NOT NULL, + heading character varying(1333), + shufflequestions smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_quiz_sections OWNER TO postgres; + +-- +-- TOC entry 11164 (class 0 OID 0) +-- Dependencies: 813 +-- Name: TABLE mdl_quiz_sections; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_quiz_sections IS 'Stores sections of a quiz with section name (heading), from slot-number N and whether the question order should be shuffled.'; + + +-- +-- TOC entry 812 (class 1259 OID 21634) +-- Name: mdl_quiz_sections_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_quiz_sections_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_quiz_sections_id_seq OWNER TO postgres; + +-- +-- TOC entry 11165 (class 0 OID 0) +-- Dependencies: 812 +-- Name: mdl_quiz_sections_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_quiz_sections_id_seq OWNED BY public.mdl_quiz_sections.id; + + +-- +-- TOC entry 825 (class 1259 OID 21732) +-- Name: mdl_quiz_slot_tags; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_quiz_slot_tags ( + id bigint NOT NULL, + slotid bigint, + tagid bigint, + tagname character varying(255) +); + + +ALTER TABLE public.mdl_quiz_slot_tags OWNER TO postgres; + +-- +-- TOC entry 11166 (class 0 OID 0) +-- Dependencies: 825 +-- Name: TABLE mdl_quiz_slot_tags; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_quiz_slot_tags IS 'Stores data about the tags that a question must have so that it can be selected for a quiz slot (when having a random question by tags on that slot).'; + + +-- +-- TOC entry 824 (class 1259 OID 21730) +-- Name: mdl_quiz_slot_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_quiz_slot_tags_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_quiz_slot_tags_id_seq OWNER TO postgres; + +-- +-- TOC entry 11167 (class 0 OID 0) +-- Dependencies: 824 +-- Name: mdl_quiz_slot_tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_quiz_slot_tags_id_seq OWNED BY public.mdl_quiz_slot_tags.id; + + +-- +-- TOC entry 811 (class 1259 OID 21620) +-- Name: mdl_quiz_slots; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_quiz_slots ( + id bigint NOT NULL, + slot bigint NOT NULL, + quizid bigint DEFAULT 0 NOT NULL, + page bigint NOT NULL, + requireprevious smallint DEFAULT 0 NOT NULL, + questionid bigint DEFAULT 0 NOT NULL, + questioncategoryid bigint, + includingsubcategories smallint, + maxmark numeric(12,7) DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_quiz_slots OWNER TO postgres; + +-- +-- TOC entry 11168 (class 0 OID 0) +-- Dependencies: 811 +-- Name: TABLE mdl_quiz_slots; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_quiz_slots IS 'Stores the question used in a quiz, with the order, and for each question, which page it appears on, and the maximum mark (weight).'; + + +-- +-- TOC entry 810 (class 1259 OID 21618) +-- Name: mdl_quiz_slots_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_quiz_slots_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_quiz_slots_id_seq OWNER TO postgres; + +-- +-- TOC entry 11169 (class 0 OID 0) +-- Dependencies: 810 +-- Name: mdl_quiz_slots_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_quiz_slots_id_seq OWNED BY public.mdl_quiz_slots.id; + + +-- +-- TOC entry 1015 (class 1259 OID 23218) +-- Name: mdl_quiz_statistics; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_quiz_statistics ( + id bigint NOT NULL, + hashcode character varying(40) DEFAULT ''::character varying NOT NULL, + whichattempts smallint NOT NULL, + timemodified bigint NOT NULL, + firstattemptscount bigint NOT NULL, + highestattemptscount bigint NOT NULL, + lastattemptscount bigint NOT NULL, + allattemptscount bigint NOT NULL, + firstattemptsavg numeric(15,5), + highestattemptsavg numeric(15,5), + lastattemptsavg numeric(15,5), + allattemptsavg numeric(15,5), + median numeric(15,5), + standarddeviation numeric(15,5), + skewness numeric(15,10), + kurtosis numeric(15,5), + cic numeric(15,10), + errorratio numeric(15,10), + standarderror numeric(15,10) +); + + +ALTER TABLE public.mdl_quiz_statistics OWNER TO postgres; + +-- +-- TOC entry 11170 (class 0 OID 0) +-- Dependencies: 1015 +-- Name: TABLE mdl_quiz_statistics; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_quiz_statistics IS 'table to cache results from analysis done in statistics report for quizzes.'; + + +-- +-- TOC entry 1014 (class 1259 OID 23216) +-- Name: mdl_quiz_statistics_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_quiz_statistics_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_quiz_statistics_id_seq OWNER TO postgres; + +-- +-- TOC entry 11171 (class 0 OID 0) +-- Dependencies: 1014 +-- Name: mdl_quiz_statistics_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_quiz_statistics_id_seq OWNED BY public.mdl_quiz_statistics.id; + + +-- +-- TOC entry 1017 (class 1259 OID 23227) +-- Name: mdl_quizaccess_seb_quizsettings; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_quizaccess_seb_quizsettings ( + id bigint NOT NULL, + quizid bigint NOT NULL, + cmid bigint NOT NULL, + templateid bigint NOT NULL, + requiresafeexambrowser smallint NOT NULL, + showsebtaskbar smallint, + showwificontrol smallint, + showreloadbutton smallint, + showtime smallint, + showkeyboardlayout smallint, + allowuserquitseb smallint, + quitpassword text, + linkquitseb text, + userconfirmquit smallint, + enableaudiocontrol smallint, + muteonstartup smallint, + allowspellchecking smallint, + allowreloadinexam smallint, + activateurlfiltering smallint, + filterembeddedcontent smallint, + expressionsallowed text, + regexallowed text, + expressionsblocked text, + regexblocked text, + allowedbrowserexamkeys text, + showsebdownloadlink smallint, + usermodified bigint DEFAULT 0 NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_quizaccess_seb_quizsettings OWNER TO postgres; + +-- +-- TOC entry 11172 (class 0 OID 0) +-- Dependencies: 1017 +-- Name: TABLE mdl_quizaccess_seb_quizsettings; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_quizaccess_seb_quizsettings IS 'Stores the quiz level Safe Exam Browser configuration.'; + + +-- +-- TOC entry 1016 (class 1259 OID 23225) +-- Name: mdl_quizaccess_seb_quizsettings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_quizaccess_seb_quizsettings_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_quizaccess_seb_quizsettings_id_seq OWNER TO postgres; + +-- +-- TOC entry 11173 (class 0 OID 0) +-- Dependencies: 1016 +-- Name: mdl_quizaccess_seb_quizsettings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_quizaccess_seb_quizsettings_id_seq OWNED BY public.mdl_quizaccess_seb_quizsettings.id; + + +-- +-- TOC entry 1019 (class 1259 OID 23245) +-- Name: mdl_quizaccess_seb_template; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_quizaccess_seb_template ( + id bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + description text NOT NULL, + content text NOT NULL, + enabled smallint NOT NULL, + sortorder bigint NOT NULL, + usermodified bigint DEFAULT 0 NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_quizaccess_seb_template OWNER TO postgres; + +-- +-- TOC entry 11174 (class 0 OID 0) +-- Dependencies: 1019 +-- Name: TABLE mdl_quizaccess_seb_template; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_quizaccess_seb_template IS 'Templates for Safe Exam Browser configuration.'; + + +-- +-- TOC entry 1018 (class 1259 OID 23243) +-- Name: mdl_quizaccess_seb_template_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_quizaccess_seb_template_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_quizaccess_seb_template_id_seq OWNER TO postgres; + +-- +-- TOC entry 11175 (class 0 OID 0) +-- Dependencies: 1018 +-- Name: mdl_quizaccess_seb_template_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_quizaccess_seb_template_id_seq OWNED BY public.mdl_quizaccess_seb_template.id; + + +-- +-- TOC entry 469 (class 1259 OID 18758) +-- Name: mdl_rating; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_rating ( + id bigint NOT NULL, + contextid bigint NOT NULL, + component character varying(100) DEFAULT ''::character varying NOT NULL, + ratingarea character varying(50) DEFAULT ''::character varying NOT NULL, + itemid bigint NOT NULL, + scaleid bigint NOT NULL, + rating bigint NOT NULL, + userid bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_rating OWNER TO postgres; + +-- +-- TOC entry 11176 (class 0 OID 0) +-- Dependencies: 469 +-- Name: TABLE mdl_rating; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_rating IS 'moodle ratings'; + + +-- +-- TOC entry 468 (class 1259 OID 18756) +-- Name: mdl_rating_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_rating_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_rating_id_seq OWNER TO postgres; + +-- +-- TOC entry 11177 (class 0 OID 0) +-- Dependencies: 468 +-- Name: mdl_rating_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_rating_id_seq OWNED BY public.mdl_rating.id; + + +-- +-- TOC entry 473 (class 1259 OID 18786) +-- Name: mdl_registration_hubs; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_registration_hubs ( + id bigint NOT NULL, + token character varying(255) DEFAULT ''::character varying NOT NULL, + hubname character varying(255) DEFAULT ''::character varying NOT NULL, + huburl character varying(255) DEFAULT ''::character varying NOT NULL, + confirmed smallint DEFAULT 0 NOT NULL, + secret character varying(255), + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_registration_hubs OWNER TO postgres; + +-- +-- TOC entry 11178 (class 0 OID 0) +-- Dependencies: 473 +-- Name: TABLE mdl_registration_hubs; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_registration_hubs IS 'hub where the site is registered on with their associated token'; + + +-- +-- TOC entry 472 (class 1259 OID 18784) +-- Name: mdl_registration_hubs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_registration_hubs_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_registration_hubs_id_seq OWNER TO postgres; + +-- +-- TOC entry 11179 (class 0 OID 0) +-- Dependencies: 472 +-- Name: mdl_registration_hubs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_registration_hubs_id_seq OWNED BY public.mdl_registration_hubs.id; + + +-- +-- TOC entry 439 (class 1259 OID 18554) +-- Name: mdl_repository; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_repository ( + id bigint NOT NULL, + type character varying(255) DEFAULT ''::character varying NOT NULL, + visible smallint DEFAULT 1, + sortorder bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_repository OWNER TO postgres; + +-- +-- TOC entry 11180 (class 0 OID 0) +-- Dependencies: 439 +-- Name: TABLE mdl_repository; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_repository IS 'This table contains one entry for every configured external repository instance.'; + + +-- +-- TOC entry 438 (class 1259 OID 18552) +-- Name: mdl_repository_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_repository_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_repository_id_seq OWNER TO postgres; + +-- +-- TOC entry 11181 (class 0 OID 0) +-- Dependencies: 438 +-- Name: mdl_repository_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_repository_id_seq OWNED BY public.mdl_repository.id; + + +-- +-- TOC entry 443 (class 1259 OID 18579) +-- Name: mdl_repository_instance_config; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_repository_instance_config ( + id bigint NOT NULL, + instanceid bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + value text +); + + +ALTER TABLE public.mdl_repository_instance_config OWNER TO postgres; + +-- +-- TOC entry 11182 (class 0 OID 0) +-- Dependencies: 443 +-- Name: TABLE mdl_repository_instance_config; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_repository_instance_config IS 'The config for intances'; + + +-- +-- TOC entry 442 (class 1259 OID 18577) +-- Name: mdl_repository_instance_config_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_repository_instance_config_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_repository_instance_config_id_seq OWNER TO postgres; + +-- +-- TOC entry 11183 (class 0 OID 0) +-- Dependencies: 442 +-- Name: mdl_repository_instance_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_repository_instance_config_id_seq OWNED BY public.mdl_repository_instance_config.id; + + +-- +-- TOC entry 441 (class 1259 OID 18565) +-- Name: mdl_repository_instances; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_repository_instances ( + id bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + typeid bigint NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + contextid bigint NOT NULL, + username character varying(255), + password character varying(255), + timecreated bigint, + timemodified bigint, + readonly smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_repository_instances OWNER TO postgres; + +-- +-- TOC entry 11184 (class 0 OID 0) +-- Dependencies: 441 +-- Name: TABLE mdl_repository_instances; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_repository_instances IS 'This table contains one entry for every configured external repository instance.'; + + +-- +-- TOC entry 440 (class 1259 OID 18563) +-- Name: mdl_repository_instances_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_repository_instances_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_repository_instances_id_seq OWNER TO postgres; + +-- +-- TOC entry 11185 (class 0 OID 0) +-- Dependencies: 440 +-- Name: mdl_repository_instances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_repository_instances_id_seq OWNED BY public.mdl_repository_instances.id; + + +-- +-- TOC entry 945 (class 1259 OID 22719) +-- Name: mdl_repository_onedrive_access; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_repository_onedrive_access ( + id bigint NOT NULL, + timemodified bigint NOT NULL, + timecreated bigint NOT NULL, + usermodified bigint NOT NULL, + permissionid character varying(255) DEFAULT ''::character varying NOT NULL, + itemid character varying(255) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_repository_onedrive_access OWNER TO postgres; + +-- +-- TOC entry 11186 (class 0 OID 0) +-- Dependencies: 945 +-- Name: TABLE mdl_repository_onedrive_access; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_repository_onedrive_access IS 'List of temporary access grants.'; + + +-- +-- TOC entry 944 (class 1259 OID 22717) +-- Name: mdl_repository_onedrive_access_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_repository_onedrive_access_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_repository_onedrive_access_id_seq OWNER TO postgres; + +-- +-- TOC entry 11187 (class 0 OID 0) +-- Dependencies: 944 +-- Name: mdl_repository_onedrive_access_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_repository_onedrive_access_id_seq OWNED BY public.mdl_repository_onedrive_access.id; + + +-- +-- TOC entry 827 (class 1259 OID 21742) +-- Name: mdl_resource; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_resource ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + intro text, + introformat smallint DEFAULT 0 NOT NULL, + tobemigrated smallint DEFAULT 0 NOT NULL, + legacyfiles smallint DEFAULT 0 NOT NULL, + legacyfileslast bigint, + display smallint DEFAULT 0 NOT NULL, + displayoptions text, + filterfiles smallint DEFAULT 0 NOT NULL, + revision bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_resource OWNER TO postgres; + +-- +-- TOC entry 11188 (class 0 OID 0) +-- Dependencies: 827 +-- Name: TABLE mdl_resource; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_resource IS 'Each record is one resource and its config data'; + + +-- +-- TOC entry 826 (class 1259 OID 21740) +-- Name: mdl_resource_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_resource_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_resource_id_seq OWNER TO postgres; + +-- +-- TOC entry 11189 (class 0 OID 0) +-- Dependencies: 826 +-- Name: mdl_resource_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_resource_id_seq OWNED BY public.mdl_resource.id; + + +-- +-- TOC entry 829 (class 1259 OID 21763) +-- Name: mdl_resource_old; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_resource_old ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + type character varying(30) DEFAULT ''::character varying NOT NULL, + reference character varying(255) DEFAULT ''::character varying NOT NULL, + intro text, + introformat smallint DEFAULT 0 NOT NULL, + alltext text NOT NULL, + popup text NOT NULL, + options character varying(255) DEFAULT ''::character varying NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + oldid bigint NOT NULL, + cmid bigint, + newmodule character varying(50), + newid bigint, + migrated bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_resource_old OWNER TO postgres; + +-- +-- TOC entry 11190 (class 0 OID 0) +-- Dependencies: 829 +-- Name: TABLE mdl_resource_old; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_resource_old IS 'backup of all old resource instances from 1.9'; + + +-- +-- TOC entry 828 (class 1259 OID 21761) +-- Name: mdl_resource_old_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_resource_old_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_resource_old_id_seq OWNER TO postgres; + +-- +-- TOC entry 11191 (class 0 OID 0) +-- Dependencies: 828 +-- Name: mdl_resource_old_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_resource_old_id_seq OWNED BY public.mdl_resource_old.id; + + +-- +-- TOC entry 288 (class 1259 OID 17321) +-- Name: mdl_role; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_role ( + id bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + shortname character varying(100) DEFAULT ''::character varying NOT NULL, + description text NOT NULL, + sortorder bigint DEFAULT 0 NOT NULL, + archetype character varying(30) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_role OWNER TO postgres; + +-- +-- TOC entry 11192 (class 0 OID 0) +-- Dependencies: 288 +-- Name: TABLE mdl_role; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_role IS 'moodle roles'; + + +-- +-- TOC entry 295 (class 1259 OID 17375) +-- Name: mdl_role_allow_assign; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_role_allow_assign ( + id bigint NOT NULL, + roleid bigint DEFAULT 0 NOT NULL, + allowassign bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_role_allow_assign OWNER TO postgres; + +-- +-- TOC entry 11193 (class 0 OID 0) +-- Dependencies: 295 +-- Name: TABLE mdl_role_allow_assign; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_role_allow_assign IS 'this defines what role can assign what role'; + + +-- +-- TOC entry 294 (class 1259 OID 17373) +-- Name: mdl_role_allow_assign_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_role_allow_assign_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_role_allow_assign_id_seq OWNER TO postgres; + +-- +-- TOC entry 11194 (class 0 OID 0) +-- Dependencies: 294 +-- Name: mdl_role_allow_assign_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_role_allow_assign_id_seq OWNED BY public.mdl_role_allow_assign.id; + + +-- +-- TOC entry 297 (class 1259 OID 17388) +-- Name: mdl_role_allow_override; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_role_allow_override ( + id bigint NOT NULL, + roleid bigint DEFAULT 0 NOT NULL, + allowoverride bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_role_allow_override OWNER TO postgres; + +-- +-- TOC entry 11195 (class 0 OID 0) +-- Dependencies: 297 +-- Name: TABLE mdl_role_allow_override; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_role_allow_override IS 'this defines what role can override what role'; + + +-- +-- TOC entry 296 (class 1259 OID 17386) +-- Name: mdl_role_allow_override_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_role_allow_override_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_role_allow_override_id_seq OWNER TO postgres; + +-- +-- TOC entry 11196 (class 0 OID 0) +-- Dependencies: 296 +-- Name: mdl_role_allow_override_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_role_allow_override_id_seq OWNED BY public.mdl_role_allow_override.id; + + +-- +-- TOC entry 299 (class 1259 OID 17401) +-- Name: mdl_role_allow_switch; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_role_allow_switch ( + id bigint NOT NULL, + roleid bigint NOT NULL, + allowswitch bigint NOT NULL +); + + +ALTER TABLE public.mdl_role_allow_switch OWNER TO postgres; + +-- +-- TOC entry 11197 (class 0 OID 0) +-- Dependencies: 299 +-- Name: TABLE mdl_role_allow_switch; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_role_allow_switch IS 'This table stores which which other roles a user is allowed to switch to if they have one role.'; + + +-- +-- TOC entry 298 (class 1259 OID 17399) +-- Name: mdl_role_allow_switch_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_role_allow_switch_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_role_allow_switch_id_seq OWNER TO postgres; + +-- +-- TOC entry 11198 (class 0 OID 0) +-- Dependencies: 298 +-- Name: mdl_role_allow_switch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_role_allow_switch_id_seq OWNED BY public.mdl_role_allow_switch.id; + + +-- +-- TOC entry 301 (class 1259 OID 17412) +-- Name: mdl_role_allow_view; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_role_allow_view ( + id bigint NOT NULL, + roleid bigint NOT NULL, + allowview bigint NOT NULL +); + + +ALTER TABLE public.mdl_role_allow_view OWNER TO postgres; + +-- +-- TOC entry 11199 (class 0 OID 0) +-- Dependencies: 301 +-- Name: TABLE mdl_role_allow_view; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_role_allow_view IS 'This table stores which which other roles a user is allowed to view to if they have one role.'; + + +-- +-- TOC entry 300 (class 1259 OID 17410) +-- Name: mdl_role_allow_view_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_role_allow_view_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_role_allow_view_id_seq OWNER TO postgres; + +-- +-- TOC entry 11200 (class 0 OID 0) +-- Dependencies: 300 +-- Name: mdl_role_allow_view_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_role_allow_view_id_seq OWNED BY public.mdl_role_allow_view.id; + + +-- +-- TOC entry 303 (class 1259 OID 17423) +-- Name: mdl_role_assignments; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_role_assignments ( + id bigint NOT NULL, + roleid bigint DEFAULT 0 NOT NULL, + contextid bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + modifierid bigint DEFAULT 0 NOT NULL, + component character varying(100) DEFAULT ''::character varying NOT NULL, + itemid bigint DEFAULT 0 NOT NULL, + sortorder bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_role_assignments OWNER TO postgres; + +-- +-- TOC entry 11201 (class 0 OID 0) +-- Dependencies: 303 +-- Name: TABLE mdl_role_assignments; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_role_assignments IS 'assigning roles in different context'; + + +-- +-- TOC entry 302 (class 1259 OID 17421) +-- Name: mdl_role_assignments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_role_assignments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_role_assignments_id_seq OWNER TO postgres; + +-- +-- TOC entry 11202 (class 0 OID 0) +-- Dependencies: 302 +-- Name: mdl_role_assignments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_role_assignments_id_seq OWNED BY public.mdl_role_assignments.id; + + +-- +-- TOC entry 305 (class 1259 OID 17446) +-- Name: mdl_role_capabilities; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_role_capabilities ( + id bigint NOT NULL, + contextid bigint DEFAULT 0 NOT NULL, + roleid bigint DEFAULT 0 NOT NULL, + capability character varying(255) DEFAULT ''::character varying NOT NULL, + permission bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + modifierid bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_role_capabilities OWNER TO postgres; + +-- +-- TOC entry 11203 (class 0 OID 0) +-- Dependencies: 305 +-- Name: TABLE mdl_role_capabilities; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_role_capabilities IS 'permission has to be signed, overriding a capability for a particular role in a particular context'; + + +-- +-- TOC entry 304 (class 1259 OID 17444) +-- Name: mdl_role_capabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_role_capabilities_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_role_capabilities_id_seq OWNER TO postgres; + +-- +-- TOC entry 11204 (class 0 OID 0) +-- Dependencies: 304 +-- Name: mdl_role_capabilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_role_capabilities_id_seq OWNED BY public.mdl_role_capabilities.id; + + +-- +-- TOC entry 309 (class 1259 OID 17479) +-- Name: mdl_role_context_levels; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_role_context_levels ( + id bigint NOT NULL, + roleid bigint NOT NULL, + contextlevel bigint NOT NULL +); + + +ALTER TABLE public.mdl_role_context_levels OWNER TO postgres; + +-- +-- TOC entry 11205 (class 0 OID 0) +-- Dependencies: 309 +-- Name: TABLE mdl_role_context_levels; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_role_context_levels IS 'Lists which roles can be assigned at which context levels. The assignment is allowed in the corresponding row is present in this table.'; + + +-- +-- TOC entry 308 (class 1259 OID 17477) +-- Name: mdl_role_context_levels_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_role_context_levels_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_role_context_levels_id_seq OWNER TO postgres; + +-- +-- TOC entry 11206 (class 0 OID 0) +-- Dependencies: 308 +-- Name: mdl_role_context_levels_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_role_context_levels_id_seq OWNED BY public.mdl_role_context_levels.id; + + +-- +-- TOC entry 287 (class 1259 OID 17319) +-- Name: mdl_role_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_role_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_role_id_seq OWNER TO postgres; + +-- +-- TOC entry 11207 (class 0 OID 0) +-- Dependencies: 287 +-- Name: mdl_role_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_role_id_seq OWNED BY public.mdl_role.id; + + +-- +-- TOC entry 307 (class 1259 OID 17465) +-- Name: mdl_role_names; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_role_names ( + id bigint NOT NULL, + roleid bigint DEFAULT 0 NOT NULL, + contextid bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_role_names OWNER TO postgres; + +-- +-- TOC entry 11208 (class 0 OID 0) +-- Dependencies: 307 +-- Name: TABLE mdl_role_names; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_role_names IS 'role names in native strings'; + + +-- +-- TOC entry 306 (class 1259 OID 17463) +-- Name: mdl_role_names_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_role_names_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_role_names_id_seq OWNER TO postgres; + +-- +-- TOC entry 11209 (class 0 OID 0) +-- Dependencies: 306 +-- Name: mdl_role_names_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_role_names_id_seq OWNED BY public.mdl_role_names.id; + + +-- +-- TOC entry 270 (class 1259 OID 17146) +-- Name: mdl_scale; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_scale ( + id bigint NOT NULL, + courseid bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + scale text NOT NULL, + description text NOT NULL, + descriptionformat smallint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_scale OWNER TO postgres; + +-- +-- TOC entry 11210 (class 0 OID 0) +-- Dependencies: 270 +-- Name: TABLE mdl_scale; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_scale IS 'Defines grading scales'; + + +-- +-- TOC entry 272 (class 1259 OID 17163) +-- Name: mdl_scale_history; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_scale_history ( + id bigint NOT NULL, + action bigint DEFAULT 0 NOT NULL, + oldid bigint NOT NULL, + source character varying(255), + timemodified bigint, + loggeduser bigint, + courseid bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + scale text NOT NULL, + description text NOT NULL +); + + +ALTER TABLE public.mdl_scale_history OWNER TO postgres; + +-- +-- TOC entry 11211 (class 0 OID 0) +-- Dependencies: 272 +-- Name: TABLE mdl_scale_history; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_scale_history IS 'History table'; + + +-- +-- TOC entry 271 (class 1259 OID 17161) +-- Name: mdl_scale_history_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_scale_history_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_scale_history_id_seq OWNER TO postgres; + +-- +-- TOC entry 11212 (class 0 OID 0) +-- Dependencies: 271 +-- Name: mdl_scale_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_scale_history_id_seq OWNED BY public.mdl_scale_history.id; + + +-- +-- TOC entry 269 (class 1259 OID 17144) +-- Name: mdl_scale_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_scale_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_scale_id_seq OWNER TO postgres; + +-- +-- TOC entry 11213 (class 0 OID 0) +-- Dependencies: 269 +-- Name: mdl_scale_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_scale_id_seq OWNED BY public.mdl_scale.id; + + +-- +-- TOC entry 831 (class 1259 OID 21784) +-- Name: mdl_scorm; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_scorm ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + scormtype character varying(50) DEFAULT 'local'::character varying NOT NULL, + reference character varying(255) DEFAULT ''::character varying NOT NULL, + intro text NOT NULL, + introformat smallint DEFAULT 0 NOT NULL, + version character varying(9) DEFAULT ''::character varying NOT NULL, + maxgrade double precision DEFAULT 0 NOT NULL, + grademethod smallint DEFAULT 0 NOT NULL, + whatgrade bigint DEFAULT 0 NOT NULL, + maxattempt bigint DEFAULT 1 NOT NULL, + forcecompleted smallint DEFAULT 0 NOT NULL, + forcenewattempt smallint DEFAULT 0 NOT NULL, + lastattemptlock smallint DEFAULT 0 NOT NULL, + masteryoverride smallint DEFAULT 1 NOT NULL, + displayattemptstatus smallint DEFAULT 1 NOT NULL, + displaycoursestructure smallint DEFAULT 0 NOT NULL, + updatefreq smallint DEFAULT 0 NOT NULL, + sha1hash character varying(40), + md5hash character varying(32) DEFAULT ''::character varying NOT NULL, + revision bigint DEFAULT 0 NOT NULL, + launch bigint DEFAULT 0 NOT NULL, + skipview smallint DEFAULT 1 NOT NULL, + hidebrowse smallint DEFAULT 0 NOT NULL, + hidetoc smallint DEFAULT 0 NOT NULL, + nav smallint DEFAULT 1 NOT NULL, + navpositionleft bigint DEFAULT '-100'::integer, + navpositiontop bigint DEFAULT '-100'::integer, + auto smallint DEFAULT 0 NOT NULL, + popup smallint DEFAULT 0 NOT NULL, + options character varying(255) DEFAULT ''::character varying NOT NULL, + width bigint DEFAULT 100 NOT NULL, + height bigint DEFAULT 600 NOT NULL, + timeopen bigint DEFAULT 0 NOT NULL, + timeclose bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + completionstatusrequired smallint, + completionscorerequired bigint, + completionstatusallscos smallint, + displayactivityname smallint DEFAULT 1 NOT NULL, + autocommit smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_scorm OWNER TO postgres; + +-- +-- TOC entry 11214 (class 0 OID 0) +-- Dependencies: 831 +-- Name: TABLE mdl_scorm; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_scorm IS 'each table is one SCORM module and its configuration'; + + +-- +-- TOC entry 851 (class 1259 OID 21982) +-- Name: mdl_scorm_aicc_session; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_scorm_aicc_session ( + id bigint NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + scormid bigint DEFAULT 0 NOT NULL, + hacpsession character varying(255) DEFAULT ''::character varying NOT NULL, + scoid bigint DEFAULT 0, + scormmode character varying(50), + scormstatus character varying(255), + attempt bigint, + lessonstatus character varying(255), + sessiontime character varying(255), + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_scorm_aicc_session OWNER TO postgres; + +-- +-- TOC entry 11215 (class 0 OID 0) +-- Dependencies: 851 +-- Name: TABLE mdl_scorm_aicc_session; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_scorm_aicc_session IS 'Used by AICC HACP to store session information'; + + +-- +-- TOC entry 850 (class 1259 OID 21980) +-- Name: mdl_scorm_aicc_session_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_scorm_aicc_session_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_scorm_aicc_session_id_seq OWNER TO postgres; + +-- +-- TOC entry 11216 (class 0 OID 0) +-- Dependencies: 850 +-- Name: mdl_scorm_aicc_session_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_scorm_aicc_session_id_seq OWNED BY public.mdl_scorm_aicc_session.id; + + +-- +-- TOC entry 830 (class 1259 OID 21782) +-- Name: mdl_scorm_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_scorm_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_scorm_id_seq OWNER TO postgres; + +-- +-- TOC entry 11217 (class 0 OID 0) +-- Dependencies: 830 +-- Name: mdl_scorm_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_scorm_id_seq OWNED BY public.mdl_scorm.id; + + +-- +-- TOC entry 833 (class 1259 OID 21832) +-- Name: mdl_scorm_scoes; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_scorm_scoes ( + id bigint NOT NULL, + scorm bigint DEFAULT 0 NOT NULL, + manifest character varying(255) DEFAULT ''::character varying NOT NULL, + organization character varying(255) DEFAULT ''::character varying NOT NULL, + parent character varying(255) DEFAULT ''::character varying NOT NULL, + identifier character varying(255) DEFAULT ''::character varying NOT NULL, + launch text NOT NULL, + scormtype character varying(5) DEFAULT ''::character varying NOT NULL, + title character varying(255) DEFAULT ''::character varying NOT NULL, + sortorder bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_scorm_scoes OWNER TO postgres; + +-- +-- TOC entry 11218 (class 0 OID 0) +-- Dependencies: 833 +-- Name: TABLE mdl_scorm_scoes; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_scorm_scoes IS 'each SCO part of the SCORM module'; + + +-- +-- TOC entry 835 (class 1259 OID 21852) +-- Name: mdl_scorm_scoes_data; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_scorm_scoes_data ( + id bigint NOT NULL, + scoid bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + value text NOT NULL +); + + +ALTER TABLE public.mdl_scorm_scoes_data OWNER TO postgres; + +-- +-- TOC entry 11219 (class 0 OID 0) +-- Dependencies: 835 +-- Name: TABLE mdl_scorm_scoes_data; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_scorm_scoes_data IS 'Contains variable data get from packages'; + + +-- +-- TOC entry 834 (class 1259 OID 21850) +-- Name: mdl_scorm_scoes_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_scorm_scoes_data_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_scorm_scoes_data_id_seq OWNER TO postgres; + +-- +-- TOC entry 11220 (class 0 OID 0) +-- Dependencies: 834 +-- Name: mdl_scorm_scoes_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_scorm_scoes_data_id_seq OWNED BY public.mdl_scorm_scoes_data.id; + + +-- +-- TOC entry 832 (class 1259 OID 21830) +-- Name: mdl_scorm_scoes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_scorm_scoes_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_scorm_scoes_id_seq OWNER TO postgres; + +-- +-- TOC entry 11221 (class 0 OID 0) +-- Dependencies: 832 +-- Name: mdl_scorm_scoes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_scorm_scoes_id_seq OWNED BY public.mdl_scorm_scoes.id; + + +-- +-- TOC entry 837 (class 1259 OID 21866) +-- Name: mdl_scorm_scoes_track; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_scorm_scoes_track ( + id bigint NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + scormid bigint DEFAULT 0 NOT NULL, + scoid bigint DEFAULT 0 NOT NULL, + attempt bigint DEFAULT 1 NOT NULL, + element character varying(255) DEFAULT ''::character varying NOT NULL, + value text NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_scorm_scoes_track OWNER TO postgres; + +-- +-- TOC entry 11222 (class 0 OID 0) +-- Dependencies: 837 +-- Name: TABLE mdl_scorm_scoes_track; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_scorm_scoes_track IS 'to track SCOes'; + + +-- +-- TOC entry 836 (class 1259 OID 21864) +-- Name: mdl_scorm_scoes_track_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_scorm_scoes_track_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_scorm_scoes_track_id_seq OWNER TO postgres; + +-- +-- TOC entry 11223 (class 0 OID 0) +-- Dependencies: 836 +-- Name: mdl_scorm_scoes_track_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_scorm_scoes_track_id_seq OWNED BY public.mdl_scorm_scoes_track.id; + + +-- +-- TOC entry 841 (class 1259 OID 21902) +-- Name: mdl_scorm_seq_mapinfo; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_scorm_seq_mapinfo ( + id bigint NOT NULL, + scoid bigint DEFAULT 0 NOT NULL, + objectiveid bigint DEFAULT 0 NOT NULL, + targetobjectiveid bigint DEFAULT 0 NOT NULL, + readsatisfiedstatus smallint DEFAULT 1 NOT NULL, + readnormalizedmeasure smallint DEFAULT 1 NOT NULL, + writesatisfiedstatus smallint DEFAULT 0 NOT NULL, + writenormalizedmeasure smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_scorm_seq_mapinfo OWNER TO postgres; + +-- +-- TOC entry 11224 (class 0 OID 0) +-- Dependencies: 841 +-- Name: TABLE mdl_scorm_seq_mapinfo; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_scorm_seq_mapinfo IS 'SCORM2004 objective mapinfo description'; + + +-- +-- TOC entry 840 (class 1259 OID 21900) +-- Name: mdl_scorm_seq_mapinfo_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_scorm_seq_mapinfo_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_scorm_seq_mapinfo_id_seq OWNER TO postgres; + +-- +-- TOC entry 11225 (class 0 OID 0) +-- Dependencies: 840 +-- Name: mdl_scorm_seq_mapinfo_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_scorm_seq_mapinfo_id_seq OWNED BY public.mdl_scorm_seq_mapinfo.id; + + +-- +-- TOC entry 839 (class 1259 OID 21887) +-- Name: mdl_scorm_seq_objective; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_scorm_seq_objective ( + id bigint NOT NULL, + scoid bigint DEFAULT 0 NOT NULL, + primaryobj smallint DEFAULT 0 NOT NULL, + objectiveid character varying(255) DEFAULT ''::character varying NOT NULL, + satisfiedbymeasure smallint DEFAULT 1 NOT NULL, + minnormalizedmeasure real DEFAULT 0.0000 NOT NULL +); + + +ALTER TABLE public.mdl_scorm_seq_objective OWNER TO postgres; + +-- +-- TOC entry 11226 (class 0 OID 0) +-- Dependencies: 839 +-- Name: TABLE mdl_scorm_seq_objective; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_scorm_seq_objective IS 'SCORM2004 objective description'; + + +-- +-- TOC entry 838 (class 1259 OID 21885) +-- Name: mdl_scorm_seq_objective_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_scorm_seq_objective_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_scorm_seq_objective_id_seq OWNER TO postgres; + +-- +-- TOC entry 11227 (class 0 OID 0) +-- Dependencies: 838 +-- Name: mdl_scorm_seq_objective_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_scorm_seq_objective_id_seq OWNED BY public.mdl_scorm_seq_objective.id; + + +-- +-- TOC entry 847 (class 1259 OID 21951) +-- Name: mdl_scorm_seq_rolluprule; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_scorm_seq_rolluprule ( + id bigint NOT NULL, + scoid bigint DEFAULT 0 NOT NULL, + childactivityset character varying(15) DEFAULT ''::character varying NOT NULL, + minimumcount bigint DEFAULT 0 NOT NULL, + minimumpercent real DEFAULT 0.0000 NOT NULL, + conditioncombination character varying(3) DEFAULT 'all'::character varying NOT NULL, + action character varying(15) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_scorm_seq_rolluprule OWNER TO postgres; + +-- +-- TOC entry 11228 (class 0 OID 0) +-- Dependencies: 847 +-- Name: TABLE mdl_scorm_seq_rolluprule; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_scorm_seq_rolluprule IS 'SCORM2004 sequencing rule'; + + +-- +-- TOC entry 846 (class 1259 OID 21949) +-- Name: mdl_scorm_seq_rolluprule_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_scorm_seq_rolluprule_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_scorm_seq_rolluprule_id_seq OWNER TO postgres; + +-- +-- TOC entry 11229 (class 0 OID 0) +-- Dependencies: 846 +-- Name: mdl_scorm_seq_rolluprule_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_scorm_seq_rolluprule_id_seq OWNED BY public.mdl_scorm_seq_rolluprule.id; + + +-- +-- TOC entry 849 (class 1259 OID 21967) +-- Name: mdl_scorm_seq_rolluprulecond; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_scorm_seq_rolluprulecond ( + id bigint NOT NULL, + scoid bigint DEFAULT 0 NOT NULL, + rollupruleid bigint DEFAULT 0 NOT NULL, + operator character varying(5) DEFAULT 'noOp'::character varying NOT NULL, + cond character varying(25) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_scorm_seq_rolluprulecond OWNER TO postgres; + +-- +-- TOC entry 11230 (class 0 OID 0) +-- Dependencies: 849 +-- Name: TABLE mdl_scorm_seq_rolluprulecond; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_scorm_seq_rolluprulecond IS 'SCORM2004 sequencing rule'; + + +-- +-- TOC entry 848 (class 1259 OID 21965) +-- Name: mdl_scorm_seq_rolluprulecond_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_scorm_seq_rolluprulecond_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_scorm_seq_rolluprulecond_id_seq OWNER TO postgres; + +-- +-- TOC entry 11231 (class 0 OID 0) +-- Dependencies: 848 +-- Name: mdl_scorm_seq_rolluprulecond_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_scorm_seq_rolluprulecond_id_seq OWNED BY public.mdl_scorm_seq_rolluprulecond.id; + + +-- +-- TOC entry 845 (class 1259 OID 21934) +-- Name: mdl_scorm_seq_rulecond; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_scorm_seq_rulecond ( + id bigint NOT NULL, + scoid bigint DEFAULT 0 NOT NULL, + ruleconditionsid bigint DEFAULT 0 NOT NULL, + refrencedobjective character varying(255) DEFAULT ''::character varying NOT NULL, + measurethreshold real DEFAULT 0.0000 NOT NULL, + operator character varying(5) DEFAULT 'noOp'::character varying NOT NULL, + cond character varying(30) DEFAULT 'always'::character varying NOT NULL +); + + +ALTER TABLE public.mdl_scorm_seq_rulecond OWNER TO postgres; + +-- +-- TOC entry 11232 (class 0 OID 0) +-- Dependencies: 845 +-- Name: TABLE mdl_scorm_seq_rulecond; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_scorm_seq_rulecond IS 'SCORM2004 rule condition'; + + +-- +-- TOC entry 844 (class 1259 OID 21932) +-- Name: mdl_scorm_seq_rulecond_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_scorm_seq_rulecond_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_scorm_seq_rulecond_id_seq OWNER TO postgres; + +-- +-- TOC entry 11233 (class 0 OID 0) +-- Dependencies: 844 +-- Name: mdl_scorm_seq_rulecond_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_scorm_seq_rulecond_id_seq OWNED BY public.mdl_scorm_seq_rulecond.id; + + +-- +-- TOC entry 843 (class 1259 OID 21920) +-- Name: mdl_scorm_seq_ruleconds; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_scorm_seq_ruleconds ( + id bigint NOT NULL, + scoid bigint DEFAULT 0 NOT NULL, + conditioncombination character varying(3) DEFAULT 'all'::character varying NOT NULL, + ruletype smallint DEFAULT 0 NOT NULL, + action character varying(25) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_scorm_seq_ruleconds OWNER TO postgres; + +-- +-- TOC entry 11234 (class 0 OID 0) +-- Dependencies: 843 +-- Name: TABLE mdl_scorm_seq_ruleconds; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_scorm_seq_ruleconds IS 'SCORM2004 rule conditions'; + + +-- +-- TOC entry 842 (class 1259 OID 21918) +-- Name: mdl_scorm_seq_ruleconds_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_scorm_seq_ruleconds_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_scorm_seq_ruleconds_id_seq OWNER TO postgres; + +-- +-- TOC entry 11235 (class 0 OID 0) +-- Dependencies: 842 +-- Name: mdl_scorm_seq_ruleconds_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_scorm_seq_ruleconds_id_seq OWNED BY public.mdl_scorm_seq_ruleconds.id; + + +-- +-- TOC entry 601 (class 1259 OID 19687) +-- Name: mdl_search_index_requests; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_search_index_requests ( + id bigint NOT NULL, + contextid bigint NOT NULL, + searcharea character varying(255) DEFAULT ''::character varying NOT NULL, + timerequested bigint NOT NULL, + partialarea character varying(255) DEFAULT ''::character varying NOT NULL, + partialtime bigint NOT NULL, + indexpriority bigint NOT NULL +); + + +ALTER TABLE public.mdl_search_index_requests OWNER TO postgres; + +-- +-- TOC entry 11236 (class 0 OID 0) +-- Dependencies: 601 +-- Name: TABLE mdl_search_index_requests; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_search_index_requests IS 'Records requests for (re)indexing of specific contexts. Entries will be removed from this table when indexing of that context is complete. (This table is not used for normal time-based indexing of new content.)'; + + +-- +-- TOC entry 600 (class 1259 OID 19685) +-- Name: mdl_search_index_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_search_index_requests_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_search_index_requests_id_seq OWNER TO postgres; + +-- +-- TOC entry 11237 (class 0 OID 0) +-- Dependencies: 600 +-- Name: mdl_search_index_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_search_index_requests_id_seq OWNED BY public.mdl_search_index_requests.id; + + +-- +-- TOC entry 949 (class 1259 OID 22744) +-- Name: mdl_search_simpledb_index; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_search_simpledb_index ( + id bigint NOT NULL, + docid character varying(255) DEFAULT ''::character varying NOT NULL, + itemid bigint NOT NULL, + title text, + content text, + contextid bigint NOT NULL, + areaid character varying(255) DEFAULT ''::character varying NOT NULL, + type smallint NOT NULL, + courseid bigint NOT NULL, + owneruserid bigint, + modified bigint NOT NULL, + userid bigint, + description1 text, + description2 text +); + + +ALTER TABLE public.mdl_search_simpledb_index OWNER TO postgres; + +-- +-- TOC entry 11238 (class 0 OID 0) +-- Dependencies: 949 +-- Name: TABLE mdl_search_simpledb_index; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_search_simpledb_index IS 'search_simpledb table containing the index data.'; + + +-- +-- TOC entry 948 (class 1259 OID 22742) +-- Name: mdl_search_simpledb_index_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_search_simpledb_index_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_search_simpledb_index_id_seq OWNER TO postgres; + +-- +-- TOC entry 11239 (class 0 OID 0) +-- Dependencies: 948 +-- Name: mdl_search_simpledb_index_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_search_simpledb_index_id_seq OWNED BY public.mdl_search_simpledb_index.id; + + +-- +-- TOC entry 260 (class 1259 OID 17017) +-- Name: mdl_sessions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_sessions ( + id bigint NOT NULL, + state bigint DEFAULT 0 NOT NULL, + sid character varying(128) DEFAULT ''::character varying NOT NULL, + userid bigint NOT NULL, + sessdata text, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + firstip character varying(45), + lastip character varying(45) +); + + +ALTER TABLE public.mdl_sessions OWNER TO postgres; + +-- +-- TOC entry 11240 (class 0 OID 0) +-- Dependencies: 260 +-- Name: TABLE mdl_sessions; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_sessions IS 'Database based session storage - now recommended'; + + +-- +-- TOC entry 259 (class 1259 OID 17015) +-- Name: mdl_sessions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_sessions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_sessions_id_seq OWNER TO postgres; + +-- +-- TOC entry 11241 (class 0 OID 0) +-- Dependencies: 259 +-- Name: mdl_sessions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_sessions_id_seq OWNED BY public.mdl_sessions.id; + + +-- +-- TOC entry 274 (class 1259 OID 17183) +-- Name: mdl_stats_daily; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_stats_daily ( + id bigint NOT NULL, + courseid bigint DEFAULT 0 NOT NULL, + timeend bigint DEFAULT 0 NOT NULL, + roleid bigint DEFAULT 0 NOT NULL, + stattype character varying(20) DEFAULT 'activity'::character varying NOT NULL, + stat1 bigint DEFAULT 0 NOT NULL, + stat2 bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_stats_daily OWNER TO postgres; + +-- +-- TOC entry 11242 (class 0 OID 0) +-- Dependencies: 274 +-- Name: TABLE mdl_stats_daily; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_stats_daily IS 'to accumulate daily stats'; + + +-- +-- TOC entry 273 (class 1259 OID 17181) +-- Name: mdl_stats_daily_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_stats_daily_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_stats_daily_id_seq OWNER TO postgres; + +-- +-- TOC entry 11243 (class 0 OID 0) +-- Dependencies: 273 +-- Name: mdl_stats_daily_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_stats_daily_id_seq OWNED BY public.mdl_stats_daily.id; + + +-- +-- TOC entry 278 (class 1259 OID 17217) +-- Name: mdl_stats_monthly; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_stats_monthly ( + id bigint NOT NULL, + courseid bigint DEFAULT 0 NOT NULL, + timeend bigint DEFAULT 0 NOT NULL, + roleid bigint DEFAULT 0 NOT NULL, + stattype character varying(20) DEFAULT 'activity'::character varying NOT NULL, + stat1 bigint DEFAULT 0 NOT NULL, + stat2 bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_stats_monthly OWNER TO postgres; + +-- +-- TOC entry 11244 (class 0 OID 0) +-- Dependencies: 278 +-- Name: TABLE mdl_stats_monthly; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_stats_monthly IS 'To accumulate monthly stats'; + + +-- +-- TOC entry 277 (class 1259 OID 17215) +-- Name: mdl_stats_monthly_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_stats_monthly_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_stats_monthly_id_seq OWNER TO postgres; + +-- +-- TOC entry 11245 (class 0 OID 0) +-- Dependencies: 277 +-- Name: mdl_stats_monthly_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_stats_monthly_id_seq OWNED BY public.mdl_stats_monthly.id; + + +-- +-- TOC entry 280 (class 1259 OID 17234) +-- Name: mdl_stats_user_daily; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_stats_user_daily ( + id bigint NOT NULL, + courseid bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + roleid bigint DEFAULT 0 NOT NULL, + timeend bigint DEFAULT 0 NOT NULL, + statsreads bigint DEFAULT 0 NOT NULL, + statswrites bigint DEFAULT 0 NOT NULL, + stattype character varying(30) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_stats_user_daily OWNER TO postgres; + +-- +-- TOC entry 11246 (class 0 OID 0) +-- Dependencies: 280 +-- Name: TABLE mdl_stats_user_daily; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_stats_user_daily IS 'To accumulate daily stats per course/user'; + + +-- +-- TOC entry 279 (class 1259 OID 17232) +-- Name: mdl_stats_user_daily_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_stats_user_daily_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_stats_user_daily_id_seq OWNER TO postgres; + +-- +-- TOC entry 11247 (class 0 OID 0) +-- Dependencies: 279 +-- Name: mdl_stats_user_daily_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_stats_user_daily_id_seq OWNED BY public.mdl_stats_user_daily.id; + + +-- +-- TOC entry 284 (class 1259 OID 17272) +-- Name: mdl_stats_user_monthly; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_stats_user_monthly ( + id bigint NOT NULL, + courseid bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + roleid bigint DEFAULT 0 NOT NULL, + timeend bigint DEFAULT 0 NOT NULL, + statsreads bigint DEFAULT 0 NOT NULL, + statswrites bigint DEFAULT 0 NOT NULL, + stattype character varying(30) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_stats_user_monthly OWNER TO postgres; + +-- +-- TOC entry 11248 (class 0 OID 0) +-- Dependencies: 284 +-- Name: TABLE mdl_stats_user_monthly; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_stats_user_monthly IS 'To accumulate monthly stats per course/user'; + + +-- +-- TOC entry 283 (class 1259 OID 17270) +-- Name: mdl_stats_user_monthly_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_stats_user_monthly_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_stats_user_monthly_id_seq OWNER TO postgres; + +-- +-- TOC entry 11249 (class 0 OID 0) +-- Dependencies: 283 +-- Name: mdl_stats_user_monthly_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_stats_user_monthly_id_seq OWNED BY public.mdl_stats_user_monthly.id; + + +-- +-- TOC entry 282 (class 1259 OID 17253) +-- Name: mdl_stats_user_weekly; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_stats_user_weekly ( + id bigint NOT NULL, + courseid bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + roleid bigint DEFAULT 0 NOT NULL, + timeend bigint DEFAULT 0 NOT NULL, + statsreads bigint DEFAULT 0 NOT NULL, + statswrites bigint DEFAULT 0 NOT NULL, + stattype character varying(30) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_stats_user_weekly OWNER TO postgres; + +-- +-- TOC entry 11250 (class 0 OID 0) +-- Dependencies: 282 +-- Name: TABLE mdl_stats_user_weekly; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_stats_user_weekly IS 'To accumulate weekly stats per course/user'; + + +-- +-- TOC entry 281 (class 1259 OID 17251) +-- Name: mdl_stats_user_weekly_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_stats_user_weekly_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_stats_user_weekly_id_seq OWNER TO postgres; + +-- +-- TOC entry 11251 (class 0 OID 0) +-- Dependencies: 281 +-- Name: mdl_stats_user_weekly_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_stats_user_weekly_id_seq OWNED BY public.mdl_stats_user_weekly.id; + + +-- +-- TOC entry 276 (class 1259 OID 17200) +-- Name: mdl_stats_weekly; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_stats_weekly ( + id bigint NOT NULL, + courseid bigint DEFAULT 0 NOT NULL, + timeend bigint DEFAULT 0 NOT NULL, + roleid bigint DEFAULT 0 NOT NULL, + stattype character varying(20) DEFAULT 'activity'::character varying NOT NULL, + stat1 bigint DEFAULT 0 NOT NULL, + stat2 bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_stats_weekly OWNER TO postgres; + +-- +-- TOC entry 11252 (class 0 OID 0) +-- Dependencies: 276 +-- Name: TABLE mdl_stats_weekly; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_stats_weekly IS 'To accumulate weekly stats'; + + +-- +-- TOC entry 275 (class 1259 OID 17198) +-- Name: mdl_stats_weekly_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_stats_weekly_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_stats_weekly_id_seq OWNER TO postgres; + +-- +-- TOC entry 11253 (class 0 OID 0) +-- Dependencies: 275 +-- Name: mdl_stats_weekly_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_stats_weekly_id_seq OWNED BY public.mdl_stats_weekly.id; + + +-- +-- TOC entry 853 (class 1259 OID 22001) +-- Name: mdl_survey; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_survey ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + template bigint DEFAULT 0 NOT NULL, + days integer DEFAULT 0 NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + intro text NOT NULL, + introformat smallint DEFAULT 0 NOT NULL, + questions character varying(255) DEFAULT ''::character varying NOT NULL, + completionsubmit smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_survey OWNER TO postgres; + +-- +-- TOC entry 11254 (class 0 OID 0) +-- Dependencies: 853 +-- Name: TABLE mdl_survey; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_survey IS 'Each record is one SURVEY module with its configuration'; + + +-- +-- TOC entry 859 (class 1259 OID 22056) +-- Name: mdl_survey_analysis; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_survey_analysis ( + id bigint NOT NULL, + survey bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + notes text NOT NULL +); + + +ALTER TABLE public.mdl_survey_analysis OWNER TO postgres; + +-- +-- TOC entry 11255 (class 0 OID 0) +-- Dependencies: 859 +-- Name: TABLE mdl_survey_analysis; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_survey_analysis IS 'text about each survey submission'; + + +-- +-- TOC entry 858 (class 1259 OID 22054) +-- Name: mdl_survey_analysis_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_survey_analysis_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_survey_analysis_id_seq OWNER TO postgres; + +-- +-- TOC entry 11256 (class 0 OID 0) +-- Dependencies: 858 +-- Name: mdl_survey_analysis_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_survey_analysis_id_seq OWNED BY public.mdl_survey_analysis.id; + + +-- +-- TOC entry 857 (class 1259 OID 22038) +-- Name: mdl_survey_answers; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_survey_answers ( + id bigint NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + survey bigint DEFAULT 0 NOT NULL, + question bigint DEFAULT 0 NOT NULL, + "time" bigint DEFAULT 0 NOT NULL, + answer1 text NOT NULL, + answer2 text NOT NULL +); + + +ALTER TABLE public.mdl_survey_answers OWNER TO postgres; + +-- +-- TOC entry 11257 (class 0 OID 0) +-- Dependencies: 857 +-- Name: TABLE mdl_survey_answers; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_survey_answers IS 'the answers to each questions filled by the users'; + + +-- +-- TOC entry 856 (class 1259 OID 22036) +-- Name: mdl_survey_answers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_survey_answers_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_survey_answers_id_seq OWNER TO postgres; + +-- +-- TOC entry 11258 (class 0 OID 0) +-- Dependencies: 856 +-- Name: mdl_survey_answers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_survey_answers_id_seq OWNED BY public.mdl_survey_answers.id; + + +-- +-- TOC entry 852 (class 1259 OID 21999) +-- Name: mdl_survey_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_survey_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_survey_id_seq OWNER TO postgres; + +-- +-- TOC entry 11259 (class 0 OID 0) +-- Dependencies: 852 +-- Name: mdl_survey_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_survey_id_seq OWNED BY public.mdl_survey.id; + + +-- +-- TOC entry 855 (class 1259 OID 22022) +-- Name: mdl_survey_questions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_survey_questions ( + id bigint NOT NULL, + text character varying(255) DEFAULT ''::character varying NOT NULL, + shorttext character varying(30) DEFAULT ''::character varying NOT NULL, + multi character varying(100) DEFAULT ''::character varying NOT NULL, + intro character varying(50) DEFAULT ''::character varying NOT NULL, + type smallint DEFAULT 0 NOT NULL, + options text +); + + +ALTER TABLE public.mdl_survey_questions OWNER TO postgres; + +-- +-- TOC entry 11260 (class 0 OID 0) +-- Dependencies: 855 +-- Name: TABLE mdl_survey_questions; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_survey_questions IS 'the questions conforming one survey'; + + +-- +-- TOC entry 854 (class 1259 OID 22020) +-- Name: mdl_survey_questions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_survey_questions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_survey_questions_id_seq OWNER TO postgres; + +-- +-- TOC entry 11261 (class 0 OID 0) +-- Dependencies: 854 +-- Name: mdl_survey_questions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_survey_questions_id_seq OWNED BY public.mdl_survey_questions.id; + + +-- +-- TOC entry 393 (class 1259 OID 18201) +-- Name: mdl_tag; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tag ( + id bigint NOT NULL, + userid bigint NOT NULL, + tagcollid bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + rawname character varying(255) DEFAULT ''::character varying NOT NULL, + isstandard smallint DEFAULT 0 NOT NULL, + description text, + descriptionformat smallint DEFAULT 0 NOT NULL, + flag smallint DEFAULT 0, + timemodified bigint +); + + +ALTER TABLE public.mdl_tag OWNER TO postgres; + +-- +-- TOC entry 11262 (class 0 OID 0) +-- Dependencies: 393 +-- Name: TABLE mdl_tag; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tag IS 'Tag table - this generic table will replace the old "tags" table.'; + + +-- +-- TOC entry 391 (class 1259 OID 18186) +-- Name: mdl_tag_area; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tag_area ( + id bigint NOT NULL, + component character varying(100) DEFAULT ''::character varying NOT NULL, + itemtype character varying(100) DEFAULT ''::character varying NOT NULL, + enabled smallint DEFAULT 1 NOT NULL, + tagcollid bigint NOT NULL, + callback character varying(100), + callbackfile character varying(100), + showstandard smallint DEFAULT 0 NOT NULL, + multiplecontexts smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_tag_area OWNER TO postgres; + +-- +-- TOC entry 11263 (class 0 OID 0) +-- Dependencies: 391 +-- Name: TABLE mdl_tag_area; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tag_area IS 'Defines various tag areas, one area is identified by component and itemtype'; + + +-- +-- TOC entry 390 (class 1259 OID 18184) +-- Name: mdl_tag_area_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tag_area_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tag_area_id_seq OWNER TO postgres; + +-- +-- TOC entry 11264 (class 0 OID 0) +-- Dependencies: 390 +-- Name: mdl_tag_area_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tag_area_id_seq OWNED BY public.mdl_tag_area.id; + + +-- +-- TOC entry 389 (class 1259 OID 18172) +-- Name: mdl_tag_coll; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tag_coll ( + id bigint NOT NULL, + name character varying(255), + isdefault smallint DEFAULT 0 NOT NULL, + component character varying(100), + sortorder integer DEFAULT 0 NOT NULL, + searchable smallint DEFAULT 1 NOT NULL, + customurl character varying(255) +); + + +ALTER TABLE public.mdl_tag_coll OWNER TO postgres; + +-- +-- TOC entry 11265 (class 0 OID 0) +-- Dependencies: 389 +-- Name: TABLE mdl_tag_coll; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tag_coll IS 'Defines different set of tags'; + + +-- +-- TOC entry 388 (class 1259 OID 18170) +-- Name: mdl_tag_coll_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tag_coll_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tag_coll_id_seq OWNER TO postgres; + +-- +-- TOC entry 11266 (class 0 OID 0) +-- Dependencies: 388 +-- Name: mdl_tag_coll_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tag_coll_id_seq OWNED BY public.mdl_tag_coll.id; + + +-- +-- TOC entry 395 (class 1259 OID 18221) +-- Name: mdl_tag_correlation; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tag_correlation ( + id bigint NOT NULL, + tagid bigint NOT NULL, + correlatedtags text NOT NULL +); + + +ALTER TABLE public.mdl_tag_correlation OWNER TO postgres; + +-- +-- TOC entry 11267 (class 0 OID 0) +-- Dependencies: 395 +-- Name: TABLE mdl_tag_correlation; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tag_correlation IS 'The rationale for the ''tag_correlation'' table is performance. It works as a cache for a potentially heavy load query done at the ''tag_instance'' table. So, the ''tag_correlation'' table stores redundant information derived from the ''tag_instance'' ta'; + + +-- +-- TOC entry 394 (class 1259 OID 18219) +-- Name: mdl_tag_correlation_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tag_correlation_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tag_correlation_id_seq OWNER TO postgres; + +-- +-- TOC entry 11268 (class 0 OID 0) +-- Dependencies: 394 +-- Name: mdl_tag_correlation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tag_correlation_id_seq OWNED BY public.mdl_tag_correlation.id; + + +-- +-- TOC entry 392 (class 1259 OID 18199) +-- Name: mdl_tag_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tag_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tag_id_seq OWNER TO postgres; + +-- +-- TOC entry 11269 (class 0 OID 0) +-- Dependencies: 392 +-- Name: mdl_tag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tag_id_seq OWNED BY public.mdl_tag.id; + + +-- +-- TOC entry 397 (class 1259 OID 18233) +-- Name: mdl_tag_instance; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tag_instance ( + id bigint NOT NULL, + tagid bigint NOT NULL, + component character varying(100) DEFAULT ''::character varying NOT NULL, + itemtype character varying(100) DEFAULT ''::character varying NOT NULL, + itemid bigint NOT NULL, + contextid bigint, + tiuserid bigint DEFAULT 0 NOT NULL, + ordering bigint, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_tag_instance OWNER TO postgres; + +-- +-- TOC entry 11270 (class 0 OID 0) +-- Dependencies: 397 +-- Name: TABLE mdl_tag_instance; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tag_instance IS 'tag_instance table holds the information of associations between tags and other items'; + + +-- +-- TOC entry 396 (class 1259 OID 18231) +-- Name: mdl_tag_instance_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tag_instance_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tag_instance_id_seq OWNER TO postgres; + +-- +-- TOC entry 11271 (class 0 OID 0) +-- Dependencies: 396 +-- Name: mdl_tag_instance_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tag_instance_id_seq OWNED BY public.mdl_tag_instance.id; + + +-- +-- TOC entry 527 (class 1259 OID 19209) +-- Name: mdl_task_adhoc; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_task_adhoc ( + id bigint NOT NULL, + component character varying(255) DEFAULT ''::character varying NOT NULL, + classname character varying(255) DEFAULT ''::character varying NOT NULL, + nextruntime bigint NOT NULL, + faildelay bigint, + customdata text, + userid bigint, + blocking smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_task_adhoc OWNER TO postgres; + +-- +-- TOC entry 11272 (class 0 OID 0) +-- Dependencies: 527 +-- Name: TABLE mdl_task_adhoc; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_task_adhoc IS 'List of adhoc tasks waiting to run.'; + + +-- +-- TOC entry 526 (class 1259 OID 19207) +-- Name: mdl_task_adhoc_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_task_adhoc_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_task_adhoc_id_seq OWNER TO postgres; + +-- +-- TOC entry 11273 (class 0 OID 0) +-- Dependencies: 526 +-- Name: mdl_task_adhoc_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_task_adhoc_id_seq OWNED BY public.mdl_task_adhoc.id; + + +-- +-- TOC entry 529 (class 1259 OID 19225) +-- Name: mdl_task_log; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_task_log ( + id bigint NOT NULL, + type smallint NOT NULL, + component character varying(255) DEFAULT ''::character varying NOT NULL, + classname character varying(255) DEFAULT ''::character varying NOT NULL, + userid bigint NOT NULL, + timestart numeric(20,10) NOT NULL, + timeend numeric(20,10) NOT NULL, + dbreads bigint NOT NULL, + dbwrites bigint NOT NULL, + result smallint NOT NULL, + output text NOT NULL +); + + +ALTER TABLE public.mdl_task_log OWNER TO postgres; + +-- +-- TOC entry 11274 (class 0 OID 0) +-- Dependencies: 529 +-- Name: TABLE mdl_task_log; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_task_log IS 'The log table for all tasks'; + + +-- +-- TOC entry 528 (class 1259 OID 19223) +-- Name: mdl_task_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_task_log_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_task_log_id_seq OWNER TO postgres; + +-- +-- TOC entry 11275 (class 0 OID 0) +-- Dependencies: 528 +-- Name: mdl_task_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_task_log_id_seq OWNED BY public.mdl_task_log.id; + + +-- +-- TOC entry 525 (class 1259 OID 19187) +-- Name: mdl_task_scheduled; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_task_scheduled ( + id bigint NOT NULL, + component character varying(255) DEFAULT ''::character varying NOT NULL, + classname character varying(255) DEFAULT ''::character varying NOT NULL, + lastruntime bigint, + nextruntime bigint, + blocking smallint DEFAULT 0 NOT NULL, + minute character varying(25) DEFAULT ''::character varying NOT NULL, + hour character varying(25) DEFAULT ''::character varying NOT NULL, + day character varying(25) DEFAULT ''::character varying NOT NULL, + month character varying(25) DEFAULT ''::character varying NOT NULL, + dayofweek character varying(25) DEFAULT ''::character varying NOT NULL, + faildelay bigint, + customised smallint DEFAULT 0 NOT NULL, + disabled smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_task_scheduled OWNER TO postgres; + +-- +-- TOC entry 11276 (class 0 OID 0) +-- Dependencies: 525 +-- Name: TABLE mdl_task_scheduled; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_task_scheduled IS 'List of scheduled tasks to be run by cron.'; + + +-- +-- TOC entry 524 (class 1259 OID 19185) +-- Name: mdl_task_scheduled_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_task_scheduled_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_task_scheduled_id_seq OWNER TO postgres; + +-- +-- TOC entry 11277 (class 0 OID 0) +-- Dependencies: 524 +-- Name: mdl_task_scheduled_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_task_scheduled_id_seq OWNED BY public.mdl_task_scheduled.id; + + +-- +-- TOC entry 951 (class 1259 OID 22763) +-- Name: mdl_tool_cohortroles; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tool_cohortroles ( + id bigint NOT NULL, + cohortid bigint NOT NULL, + roleid bigint NOT NULL, + userid bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + usermodified bigint +); + + +ALTER TABLE public.mdl_tool_cohortroles OWNER TO postgres; + +-- +-- TOC entry 11278 (class 0 OID 0) +-- Dependencies: 951 +-- Name: TABLE mdl_tool_cohortroles; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tool_cohortroles IS 'Mapping of users to cohort role assignments.'; + + +-- +-- TOC entry 950 (class 1259 OID 22761) +-- Name: mdl_tool_cohortroles_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tool_cohortroles_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tool_cohortroles_id_seq OWNER TO postgres; + +-- +-- TOC entry 11279 (class 0 OID 0) +-- Dependencies: 950 +-- Name: mdl_tool_cohortroles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tool_cohortroles_id_seq OWNED BY public.mdl_tool_cohortroles.id; + + +-- +-- TOC entry 953 (class 1259 OID 22772) +-- Name: mdl_tool_customlang; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tool_customlang ( + id bigint NOT NULL, + lang character varying(20) DEFAULT ''::character varying NOT NULL, + componentid bigint NOT NULL, + stringid character varying(255) DEFAULT ''::character varying NOT NULL, + original text NOT NULL, + master text, + local text, + timemodified bigint NOT NULL, + timecustomized bigint, + outdated smallint DEFAULT 0, + modified smallint DEFAULT 0 +); + + +ALTER TABLE public.mdl_tool_customlang OWNER TO postgres; + +-- +-- TOC entry 11280 (class 0 OID 0) +-- Dependencies: 953 +-- Name: TABLE mdl_tool_customlang; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tool_customlang IS 'Contains the working checkout of all strings and their customization'; + + +-- +-- TOC entry 955 (class 1259 OID 22789) +-- Name: mdl_tool_customlang_components; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tool_customlang_components ( + id bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + version character varying(255) +); + + +ALTER TABLE public.mdl_tool_customlang_components OWNER TO postgres; + +-- +-- TOC entry 11281 (class 0 OID 0) +-- Dependencies: 955 +-- Name: TABLE mdl_tool_customlang_components; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tool_customlang_components IS 'Contains the list of all installed plugins that provide their own language pack'; + + +-- +-- TOC entry 954 (class 1259 OID 22787) +-- Name: mdl_tool_customlang_components_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tool_customlang_components_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tool_customlang_components_id_seq OWNER TO postgres; + +-- +-- TOC entry 11282 (class 0 OID 0) +-- Dependencies: 954 +-- Name: mdl_tool_customlang_components_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tool_customlang_components_id_seq OWNED BY public.mdl_tool_customlang_components.id; + + +-- +-- TOC entry 952 (class 1259 OID 22770) +-- Name: mdl_tool_customlang_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tool_customlang_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tool_customlang_id_seq OWNER TO postgres; + +-- +-- TOC entry 11283 (class 0 OID 0) +-- Dependencies: 952 +-- Name: mdl_tool_customlang_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tool_customlang_id_seq OWNED BY public.mdl_tool_customlang.id; + + +-- +-- TOC entry 961 (class 1259 OID 22841) +-- Name: mdl_tool_dataprivacy_category; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tool_dataprivacy_category ( + id bigint NOT NULL, + name character varying(100) DEFAULT ''::character varying NOT NULL, + description text, + descriptionformat smallint, + usermodified bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_tool_dataprivacy_category OWNER TO postgres; + +-- +-- TOC entry 11284 (class 0 OID 0) +-- Dependencies: 961 +-- Name: TABLE mdl_tool_dataprivacy_category; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tool_dataprivacy_category IS 'Data categories'; + + +-- +-- TOC entry 960 (class 1259 OID 22839) +-- Name: mdl_tool_dataprivacy_category_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tool_dataprivacy_category_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tool_dataprivacy_category_id_seq OWNER TO postgres; + +-- +-- TOC entry 11285 (class 0 OID 0) +-- Dependencies: 960 +-- Name: mdl_tool_dataprivacy_category_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tool_dataprivacy_category_id_seq OWNED BY public.mdl_tool_dataprivacy_category.id; + + +-- +-- TOC entry 967 (class 1259 OID 22875) +-- Name: mdl_tool_dataprivacy_ctxexpired; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tool_dataprivacy_ctxexpired ( + id bigint NOT NULL, + contextid bigint NOT NULL, + unexpiredroles text, + expiredroles text, + defaultexpired smallint NOT NULL, + status smallint DEFAULT 0 NOT NULL, + usermodified bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_tool_dataprivacy_ctxexpired OWNER TO postgres; + +-- +-- TOC entry 11286 (class 0 OID 0) +-- Dependencies: 967 +-- Name: TABLE mdl_tool_dataprivacy_ctxexpired; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tool_dataprivacy_ctxexpired IS 'Default comment for the table, please edit me'; + + +-- +-- TOC entry 966 (class 1259 OID 22873) +-- Name: mdl_tool_dataprivacy_ctxexpired_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tool_dataprivacy_ctxexpired_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tool_dataprivacy_ctxexpired_id_seq OWNER TO postgres; + +-- +-- TOC entry 11287 (class 0 OID 0) +-- Dependencies: 966 +-- Name: mdl_tool_dataprivacy_ctxexpired_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tool_dataprivacy_ctxexpired_id_seq OWNED BY public.mdl_tool_dataprivacy_ctxexpired.id; + + +-- +-- TOC entry 963 (class 1259 OID 22853) +-- Name: mdl_tool_dataprivacy_ctxinstance; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tool_dataprivacy_ctxinstance ( + id bigint NOT NULL, + contextid bigint NOT NULL, + purposeid bigint, + categoryid bigint, + usermodified bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_tool_dataprivacy_ctxinstance OWNER TO postgres; + +-- +-- TOC entry 11288 (class 0 OID 0) +-- Dependencies: 963 +-- Name: TABLE mdl_tool_dataprivacy_ctxinstance; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tool_dataprivacy_ctxinstance IS 'Default comment for the table, please edit me'; + + +-- +-- TOC entry 962 (class 1259 OID 22851) +-- Name: mdl_tool_dataprivacy_ctxinstance_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tool_dataprivacy_ctxinstance_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tool_dataprivacy_ctxinstance_id_seq OWNER TO postgres; + +-- +-- TOC entry 11289 (class 0 OID 0) +-- Dependencies: 962 +-- Name: mdl_tool_dataprivacy_ctxinstance_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tool_dataprivacy_ctxinstance_id_seq OWNED BY public.mdl_tool_dataprivacy_ctxinstance.id; + + +-- +-- TOC entry 965 (class 1259 OID 22864) +-- Name: mdl_tool_dataprivacy_ctxlevel; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tool_dataprivacy_ctxlevel ( + id bigint NOT NULL, + contextlevel smallint NOT NULL, + purposeid bigint, + categoryid bigint, + usermodified bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_tool_dataprivacy_ctxlevel OWNER TO postgres; + +-- +-- TOC entry 11290 (class 0 OID 0) +-- Dependencies: 965 +-- Name: TABLE mdl_tool_dataprivacy_ctxlevel; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tool_dataprivacy_ctxlevel IS 'Default comment for the table, please edit me'; + + +-- +-- TOC entry 964 (class 1259 OID 22862) +-- Name: mdl_tool_dataprivacy_ctxlevel_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tool_dataprivacy_ctxlevel_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tool_dataprivacy_ctxlevel_id_seq OWNER TO postgres; + +-- +-- TOC entry 11291 (class 0 OID 0) +-- Dependencies: 964 +-- Name: mdl_tool_dataprivacy_ctxlevel_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tool_dataprivacy_ctxlevel_id_seq OWNED BY public.mdl_tool_dataprivacy_ctxlevel.id; + + +-- +-- TOC entry 959 (class 1259 OID 22828) +-- Name: mdl_tool_dataprivacy_purpose; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tool_dataprivacy_purpose ( + id bigint NOT NULL, + name character varying(100) DEFAULT ''::character varying NOT NULL, + description text, + descriptionformat smallint, + lawfulbases text NOT NULL, + sensitivedatareasons text, + retentionperiod character varying(255) DEFAULT ''::character varying NOT NULL, + protected smallint, + usermodified bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_tool_dataprivacy_purpose OWNER TO postgres; + +-- +-- TOC entry 11292 (class 0 OID 0) +-- Dependencies: 959 +-- Name: TABLE mdl_tool_dataprivacy_purpose; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tool_dataprivacy_purpose IS 'Data purposes'; + + +-- +-- TOC entry 958 (class 1259 OID 22826) +-- Name: mdl_tool_dataprivacy_purpose_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tool_dataprivacy_purpose_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tool_dataprivacy_purpose_id_seq OWNER TO postgres; + +-- +-- TOC entry 11293 (class 0 OID 0) +-- Dependencies: 958 +-- Name: mdl_tool_dataprivacy_purpose_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tool_dataprivacy_purpose_id_seq OWNED BY public.mdl_tool_dataprivacy_purpose.id; + + +-- +-- TOC entry 969 (class 1259 OID 22888) +-- Name: mdl_tool_dataprivacy_purposerole; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tool_dataprivacy_purposerole ( + id bigint NOT NULL, + purposeid bigint NOT NULL, + roleid bigint NOT NULL, + lawfulbases text, + sensitivedatareasons text, + retentionperiod character varying(255) DEFAULT ''::character varying NOT NULL, + protected smallint, + usermodified bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_tool_dataprivacy_purposerole OWNER TO postgres; + +-- +-- TOC entry 11294 (class 0 OID 0) +-- Dependencies: 969 +-- Name: TABLE mdl_tool_dataprivacy_purposerole; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tool_dataprivacy_purposerole IS 'Data purpose overrides for a specific role'; + + +-- +-- TOC entry 968 (class 1259 OID 22886) +-- Name: mdl_tool_dataprivacy_purposerole_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tool_dataprivacy_purposerole_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tool_dataprivacy_purposerole_id_seq OWNER TO postgres; + +-- +-- TOC entry 11295 (class 0 OID 0) +-- Dependencies: 968 +-- Name: mdl_tool_dataprivacy_purposerole_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tool_dataprivacy_purposerole_id_seq OWNED BY public.mdl_tool_dataprivacy_purposerole.id; + + +-- +-- TOC entry 957 (class 1259 OID 22801) +-- Name: mdl_tool_dataprivacy_request; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tool_dataprivacy_request ( + id bigint NOT NULL, + type bigint DEFAULT 0 NOT NULL, + comments text, + commentsformat smallint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + requestedby bigint DEFAULT 0 NOT NULL, + status smallint DEFAULT 0 NOT NULL, + dpo bigint DEFAULT 0, + dpocomment text, + dpocommentformat smallint DEFAULT 0 NOT NULL, + systemapproved smallint DEFAULT 0 NOT NULL, + usermodified bigint DEFAULT 0 NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + creationmethod bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_tool_dataprivacy_request OWNER TO postgres; + +-- +-- TOC entry 11296 (class 0 OID 0) +-- Dependencies: 957 +-- Name: TABLE mdl_tool_dataprivacy_request; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tool_dataprivacy_request IS 'Table for data requests'; + + +-- +-- TOC entry 956 (class 1259 OID 22799) +-- Name: mdl_tool_dataprivacy_request_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tool_dataprivacy_request_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tool_dataprivacy_request_id_seq OWNER TO postgres; + +-- +-- TOC entry 11297 (class 0 OID 0) +-- Dependencies: 956 +-- Name: mdl_tool_dataprivacy_request_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tool_dataprivacy_request_id_seq OWNED BY public.mdl_tool_dataprivacy_request.id; + + +-- +-- TOC entry 977 (class 1259 OID 22941) +-- Name: mdl_tool_monitor_events; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tool_monitor_events ( + id bigint NOT NULL, + eventname character varying(254) DEFAULT ''::character varying NOT NULL, + contextid bigint NOT NULL, + contextlevel bigint NOT NULL, + contextinstanceid bigint NOT NULL, + link character varying(254) DEFAULT ''::character varying NOT NULL, + courseid bigint NOT NULL, + timecreated bigint NOT NULL +); + + +ALTER TABLE public.mdl_tool_monitor_events OWNER TO postgres; + +-- +-- TOC entry 11298 (class 0 OID 0) +-- Dependencies: 977 +-- Name: TABLE mdl_tool_monitor_events; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tool_monitor_events IS 'A table that keeps a log of events related to subscriptions'; + + +-- +-- TOC entry 976 (class 1259 OID 22939) +-- Name: mdl_tool_monitor_events_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tool_monitor_events_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tool_monitor_events_id_seq OWNER TO postgres; + +-- +-- TOC entry 11299 (class 0 OID 0) +-- Dependencies: 976 +-- Name: mdl_tool_monitor_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tool_monitor_events_id_seq OWNED BY public.mdl_tool_monitor_events.id; + + +-- +-- TOC entry 975 (class 1259 OID 22931) +-- Name: mdl_tool_monitor_history; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tool_monitor_history ( + id bigint NOT NULL, + sid bigint NOT NULL, + userid bigint NOT NULL, + timesent bigint NOT NULL +); + + +ALTER TABLE public.mdl_tool_monitor_history OWNER TO postgres; + +-- +-- TOC entry 11300 (class 0 OID 0) +-- Dependencies: 975 +-- Name: TABLE mdl_tool_monitor_history; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tool_monitor_history IS 'Table to store history of message notifications sent'; + + +-- +-- TOC entry 974 (class 1259 OID 22929) +-- Name: mdl_tool_monitor_history_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tool_monitor_history_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tool_monitor_history_id_seq OWNER TO postgres; + +-- +-- TOC entry 11301 (class 0 OID 0) +-- Dependencies: 974 +-- Name: mdl_tool_monitor_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tool_monitor_history_id_seq OWNED BY public.mdl_tool_monitor_history.id; + + +-- +-- TOC entry 971 (class 1259 OID 22903) +-- Name: mdl_tool_monitor_rules; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tool_monitor_rules ( + id bigint NOT NULL, + description text, + descriptionformat smallint NOT NULL, + name character varying(254) DEFAULT ''::character varying NOT NULL, + userid bigint NOT NULL, + courseid bigint NOT NULL, + plugin character varying(254) DEFAULT ''::character varying NOT NULL, + eventname character varying(254) DEFAULT ''::character varying NOT NULL, + template text NOT NULL, + templateformat smallint NOT NULL, + frequency smallint NOT NULL, + timewindow integer NOT NULL, + timemodified bigint NOT NULL, + timecreated bigint NOT NULL +); + + +ALTER TABLE public.mdl_tool_monitor_rules OWNER TO postgres; + +-- +-- TOC entry 11302 (class 0 OID 0) +-- Dependencies: 971 +-- Name: TABLE mdl_tool_monitor_rules; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tool_monitor_rules IS 'Table to store rules'; + + +-- +-- TOC entry 970 (class 1259 OID 22901) +-- Name: mdl_tool_monitor_rules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tool_monitor_rules_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tool_monitor_rules_id_seq OWNER TO postgres; + +-- +-- TOC entry 11303 (class 0 OID 0) +-- Dependencies: 970 +-- Name: mdl_tool_monitor_rules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tool_monitor_rules_id_seq OWNED BY public.mdl_tool_monitor_rules.id; + + +-- +-- TOC entry 973 (class 1259 OID 22919) +-- Name: mdl_tool_monitor_subscriptions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tool_monitor_subscriptions ( + id bigint NOT NULL, + courseid bigint NOT NULL, + ruleid bigint NOT NULL, + cmid bigint NOT NULL, + userid bigint NOT NULL, + timecreated bigint NOT NULL, + lastnotificationsent bigint DEFAULT 0 NOT NULL, + inactivedate bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_tool_monitor_subscriptions OWNER TO postgres; + +-- +-- TOC entry 11304 (class 0 OID 0) +-- Dependencies: 973 +-- Name: TABLE mdl_tool_monitor_subscriptions; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tool_monitor_subscriptions IS 'Table to store user subscriptions to various rules'; + + +-- +-- TOC entry 972 (class 1259 OID 22917) +-- Name: mdl_tool_monitor_subscriptions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tool_monitor_subscriptions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tool_monitor_subscriptions_id_seq OWNER TO postgres; + +-- +-- TOC entry 11305 (class 0 OID 0) +-- Dependencies: 972 +-- Name: mdl_tool_monitor_subscriptions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tool_monitor_subscriptions_id_seq OWNED BY public.mdl_tool_monitor_subscriptions.id; + + +-- +-- TOC entry 979 (class 1259 OID 22954) +-- Name: mdl_tool_policy; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tool_policy ( + id bigint NOT NULL, + sortorder integer DEFAULT 999 NOT NULL, + currentversionid bigint +); + + +ALTER TABLE public.mdl_tool_policy OWNER TO postgres; + +-- +-- TOC entry 11306 (class 0 OID 0) +-- Dependencies: 979 +-- Name: TABLE mdl_tool_policy; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tool_policy IS 'Contains the list of policy documents defined on the site.'; + + +-- +-- TOC entry 983 (class 1259 OID 22984) +-- Name: mdl_tool_policy_acceptances; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tool_policy_acceptances ( + id bigint NOT NULL, + policyversionid bigint NOT NULL, + userid bigint NOT NULL, + status smallint, + lang character varying(30) DEFAULT ''::character varying NOT NULL, + usermodified bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + note text +); + + +ALTER TABLE public.mdl_tool_policy_acceptances OWNER TO postgres; + +-- +-- TOC entry 11307 (class 0 OID 0) +-- Dependencies: 983 +-- Name: TABLE mdl_tool_policy_acceptances; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tool_policy_acceptances IS 'Tracks users accepting the policy versions'; + + +-- +-- TOC entry 982 (class 1259 OID 22982) +-- Name: mdl_tool_policy_acceptances_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tool_policy_acceptances_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tool_policy_acceptances_id_seq OWNER TO postgres; + +-- +-- TOC entry 11308 (class 0 OID 0) +-- Dependencies: 982 +-- Name: mdl_tool_policy_acceptances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tool_policy_acceptances_id_seq OWNED BY public.mdl_tool_policy_acceptances.id; + + +-- +-- TOC entry 978 (class 1259 OID 22952) +-- Name: mdl_tool_policy_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tool_policy_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tool_policy_id_seq OWNER TO postgres; + +-- +-- TOC entry 11309 (class 0 OID 0) +-- Dependencies: 978 +-- Name: mdl_tool_policy_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tool_policy_id_seq OWNED BY public.mdl_tool_policy.id; + + +-- +-- TOC entry 981 (class 1259 OID 22964) +-- Name: mdl_tool_policy_versions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tool_policy_versions ( + id bigint NOT NULL, + name character varying(1333) DEFAULT ''::character varying NOT NULL, + type smallint DEFAULT 0 NOT NULL, + audience smallint DEFAULT 0 NOT NULL, + archived smallint DEFAULT 0 NOT NULL, + usermodified bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + policyid bigint NOT NULL, + agreementstyle smallint DEFAULT 0 NOT NULL, + optional smallint DEFAULT 0 NOT NULL, + revision character varying(1333) DEFAULT ''::character varying NOT NULL, + summary text NOT NULL, + summaryformat smallint NOT NULL, + content text NOT NULL, + contentformat smallint NOT NULL +); + + +ALTER TABLE public.mdl_tool_policy_versions OWNER TO postgres; + +-- +-- TOC entry 11310 (class 0 OID 0) +-- Dependencies: 981 +-- Name: TABLE mdl_tool_policy_versions; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tool_policy_versions IS 'Holds versions of the policy documents'; + + +-- +-- TOC entry 980 (class 1259 OID 22962) +-- Name: mdl_tool_policy_versions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tool_policy_versions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tool_policy_versions_id_seq OWNER TO postgres; + +-- +-- TOC entry 11311 (class 0 OID 0) +-- Dependencies: 980 +-- Name: mdl_tool_policy_versions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tool_policy_versions_id_seq OWNED BY public.mdl_tool_policy_versions.id; + + +-- +-- TOC entry 987 (class 1259 OID 23011) +-- Name: mdl_tool_recyclebin_category; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tool_recyclebin_category ( + id bigint NOT NULL, + categoryid bigint NOT NULL, + shortname character varying(255) DEFAULT ''::character varying NOT NULL, + fullname character varying(255) DEFAULT ''::character varying NOT NULL, + timecreated bigint NOT NULL +); + + +ALTER TABLE public.mdl_tool_recyclebin_category OWNER TO postgres; + +-- +-- TOC entry 11312 (class 0 OID 0) +-- Dependencies: 987 +-- Name: TABLE mdl_tool_recyclebin_category; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tool_recyclebin_category IS 'A list of items in the category recycle bin'; + + +-- +-- TOC entry 986 (class 1259 OID 23009) +-- Name: mdl_tool_recyclebin_category_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tool_recyclebin_category_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tool_recyclebin_category_id_seq OWNER TO postgres; + +-- +-- TOC entry 11313 (class 0 OID 0) +-- Dependencies: 986 +-- Name: mdl_tool_recyclebin_category_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tool_recyclebin_category_id_seq OWNED BY public.mdl_tool_recyclebin_category.id; + + +-- +-- TOC entry 985 (class 1259 OID 23000) +-- Name: mdl_tool_recyclebin_course; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tool_recyclebin_course ( + id bigint NOT NULL, + courseid bigint NOT NULL, + section bigint NOT NULL, + module bigint NOT NULL, + name character varying(255), + timecreated bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_tool_recyclebin_course OWNER TO postgres; + +-- +-- TOC entry 11314 (class 0 OID 0) +-- Dependencies: 985 +-- Name: TABLE mdl_tool_recyclebin_course; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tool_recyclebin_course IS 'A list of items in the course recycle bin'; + + +-- +-- TOC entry 984 (class 1259 OID 22998) +-- Name: mdl_tool_recyclebin_course_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tool_recyclebin_course_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tool_recyclebin_course_id_seq OWNER TO postgres; + +-- +-- TOC entry 11315 (class 0 OID 0) +-- Dependencies: 984 +-- Name: mdl_tool_recyclebin_course_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tool_recyclebin_course_id_seq OWNED BY public.mdl_tool_recyclebin_course.id; + + +-- +-- TOC entry 991 (class 1259 OID 23040) +-- Name: mdl_tool_usertours_steps; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tool_usertours_steps ( + id bigint NOT NULL, + tourid bigint NOT NULL, + title text, + content text, + targettype smallint NOT NULL, + targetvalue text NOT NULL, + sortorder bigint DEFAULT 0 NOT NULL, + configdata text NOT NULL +); + + +ALTER TABLE public.mdl_tool_usertours_steps OWNER TO postgres; + +-- +-- TOC entry 11316 (class 0 OID 0) +-- Dependencies: 991 +-- Name: TABLE mdl_tool_usertours_steps; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tool_usertours_steps IS 'Steps in an tour'; + + +-- +-- TOC entry 990 (class 1259 OID 23038) +-- Name: mdl_tool_usertours_steps_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tool_usertours_steps_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tool_usertours_steps_id_seq OWNER TO postgres; + +-- +-- TOC entry 11317 (class 0 OID 0) +-- Dependencies: 990 +-- Name: mdl_tool_usertours_steps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tool_usertours_steps_id_seq OWNED BY public.mdl_tool_usertours_steps.id; + + +-- +-- TOC entry 989 (class 1259 OID 23026) +-- Name: mdl_tool_usertours_tours; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_tool_usertours_tours ( + id bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + description text, + pathmatch character varying(255), + enabled smallint DEFAULT 0 NOT NULL, + sortorder bigint DEFAULT 0 NOT NULL, + configdata text NOT NULL +); + + +ALTER TABLE public.mdl_tool_usertours_tours OWNER TO postgres; + +-- +-- TOC entry 11318 (class 0 OID 0) +-- Dependencies: 989 +-- Name: TABLE mdl_tool_usertours_tours; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_tool_usertours_tours IS 'List of tours'; + + +-- +-- TOC entry 988 (class 1259 OID 23024) +-- Name: mdl_tool_usertours_tours_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_tool_usertours_tours_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_tool_usertours_tours_id_seq OWNER TO postgres; + +-- +-- TOC entry 11319 (class 0 OID 0) +-- Dependencies: 988 +-- Name: mdl_tool_usertours_tours_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_tool_usertours_tours_id_seq OWNED BY public.mdl_tool_usertours_tours.id; + + +-- +-- TOC entry 192 (class 1259 OID 16428) +-- Name: mdl_upgrade_log; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_upgrade_log ( + id bigint NOT NULL, + type bigint NOT NULL, + plugin character varying(100), + version character varying(100), + targetversion character varying(100), + info character varying(255) DEFAULT ''::character varying NOT NULL, + details text, + backtrace text, + userid bigint NOT NULL, + timemodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_upgrade_log OWNER TO postgres; + +-- +-- TOC entry 11320 (class 0 OID 0) +-- Dependencies: 192 +-- Name: TABLE mdl_upgrade_log; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_upgrade_log IS 'Upgrade logging'; + + +-- +-- TOC entry 191 (class 1259 OID 16426) +-- Name: mdl_upgrade_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_upgrade_log_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_upgrade_log_id_seq OWNER TO postgres; + +-- +-- TOC entry 11321 (class 0 OID 0) +-- Dependencies: 191 +-- Name: mdl_upgrade_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_upgrade_log_id_seq OWNED BY public.mdl_upgrade_log.id; + + +-- +-- TOC entry 861 (class 1259 OID 22071) +-- Name: mdl_url; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_url ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + intro text, + introformat smallint DEFAULT 0 NOT NULL, + externalurl text NOT NULL, + display smallint DEFAULT 0 NOT NULL, + displayoptions text, + parameters text, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_url OWNER TO postgres; + +-- +-- TOC entry 11322 (class 0 OID 0) +-- Dependencies: 861 +-- Name: TABLE mdl_url; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_url IS 'each record is one url resource'; + + +-- +-- TOC entry 860 (class 1259 OID 22069) +-- Name: mdl_url_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_url_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_url_id_seq OWNER TO postgres; + +-- +-- TOC entry 11323 (class 0 OID 0) +-- Dependencies: 860 +-- Name: mdl_url_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_url_id_seq OWNED BY public.mdl_url.id; + + +-- +-- TOC entry 262 (class 1259 OID 17035) +-- Name: mdl_user; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_user ( + id bigint NOT NULL, + auth character varying(20) DEFAULT 'manual'::character varying NOT NULL, + confirmed smallint DEFAULT 0 NOT NULL, + policyagreed smallint DEFAULT 0 NOT NULL, + deleted smallint DEFAULT 0 NOT NULL, + suspended smallint DEFAULT 0 NOT NULL, + mnethostid bigint DEFAULT 0 NOT NULL, + username character varying(100) DEFAULT ''::character varying NOT NULL, + password character varying(255) DEFAULT ''::character varying NOT NULL, + idnumber character varying(255) DEFAULT ''::character varying NOT NULL, + firstname character varying(100) DEFAULT ''::character varying NOT NULL, + lastname character varying(100) DEFAULT ''::character varying NOT NULL, + email character varying(100) DEFAULT ''::character varying NOT NULL, + emailstop smallint DEFAULT 0 NOT NULL, + icq character varying(15) DEFAULT ''::character varying NOT NULL, + skype character varying(50) DEFAULT ''::character varying NOT NULL, + yahoo character varying(50) DEFAULT ''::character varying NOT NULL, + aim character varying(50) DEFAULT ''::character varying NOT NULL, + msn character varying(50) DEFAULT ''::character varying NOT NULL, + phone1 character varying(20) DEFAULT ''::character varying NOT NULL, + phone2 character varying(20) DEFAULT ''::character varying NOT NULL, + institution character varying(255) DEFAULT ''::character varying NOT NULL, + department character varying(255) DEFAULT ''::character varying NOT NULL, + address character varying(255) DEFAULT ''::character varying NOT NULL, + city character varying(120) DEFAULT ''::character varying NOT NULL, + country character varying(2) DEFAULT ''::character varying NOT NULL, + lang character varying(30) DEFAULT 'en'::character varying NOT NULL, + calendartype character varying(30) DEFAULT 'gregorian'::character varying NOT NULL, + theme character varying(50) DEFAULT ''::character varying NOT NULL, + timezone character varying(100) DEFAULT '99'::character varying NOT NULL, + firstaccess bigint DEFAULT 0 NOT NULL, + lastaccess bigint DEFAULT 0 NOT NULL, + lastlogin bigint DEFAULT 0 NOT NULL, + currentlogin bigint DEFAULT 0 NOT NULL, + lastip character varying(45) DEFAULT ''::character varying NOT NULL, + secret character varying(15) DEFAULT ''::character varying NOT NULL, + picture bigint DEFAULT 0 NOT NULL, + url character varying(255) DEFAULT ''::character varying NOT NULL, + description text, + descriptionformat smallint DEFAULT 1 NOT NULL, + mailformat smallint DEFAULT 1 NOT NULL, + maildigest smallint DEFAULT 0 NOT NULL, + maildisplay smallint DEFAULT 2 NOT NULL, + autosubscribe smallint DEFAULT 1 NOT NULL, + trackforums smallint DEFAULT 0 NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + trustbitmask bigint DEFAULT 0 NOT NULL, + imagealt character varying(255), + lastnamephonetic character varying(255), + firstnamephonetic character varying(255), + middlename character varying(255), + alternatename character varying(255), + moodlenetprofile character varying(255) +); + + +ALTER TABLE public.mdl_user OWNER TO postgres; + +-- +-- TOC entry 11324 (class 0 OID 0) +-- Dependencies: 262 +-- Name: TABLE mdl_user; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_user IS 'One record for each person'; + + +-- +-- TOC entry 519 (class 1259 OID 19142) +-- Name: mdl_user_devices; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_user_devices ( + id bigint NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + appid character varying(128) DEFAULT ''::character varying NOT NULL, + name character varying(32) DEFAULT ''::character varying NOT NULL, + model character varying(32) DEFAULT ''::character varying NOT NULL, + platform character varying(32) DEFAULT ''::character varying NOT NULL, + version character varying(32) DEFAULT ''::character varying NOT NULL, + pushid character varying(255) DEFAULT ''::character varying NOT NULL, + uuid character varying(255) DEFAULT ''::character varying NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_user_devices OWNER TO postgres; + +-- +-- TOC entry 11325 (class 0 OID 0) +-- Dependencies: 519 +-- Name: TABLE mdl_user_devices; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_user_devices IS 'This table stores user''s mobile devices information in order to send PUSH notifications'; + + +-- +-- TOC entry 518 (class 1259 OID 19140) +-- Name: mdl_user_devices_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_user_devices_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_user_devices_id_seq OWNER TO postgres; + +-- +-- TOC entry 11326 (class 0 OID 0) +-- Dependencies: 518 +-- Name: mdl_user_devices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_user_devices_id_seq OWNED BY public.mdl_user_devices.id; + + +-- +-- TOC entry 208 (class 1259 OID 16592) +-- Name: mdl_user_enrolments; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_user_enrolments ( + id bigint NOT NULL, + status bigint DEFAULT 0 NOT NULL, + enrolid bigint NOT NULL, + userid bigint NOT NULL, + timestart bigint DEFAULT 0 NOT NULL, + timeend bigint DEFAULT 2147483647 NOT NULL, + modifierid bigint DEFAULT 0 NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_user_enrolments OWNER TO postgres; + +-- +-- TOC entry 11327 (class 0 OID 0) +-- Dependencies: 208 +-- Name: TABLE mdl_user_enrolments; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_user_enrolments IS 'Users participating in courses (aka enrolled users) - everybody who is participating/visible in course, that means both teachers and students'; + + +-- +-- TOC entry 207 (class 1259 OID 16590) +-- Name: mdl_user_enrolments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_user_enrolments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_user_enrolments_id_seq OWNER TO postgres; + +-- +-- TOC entry 11328 (class 0 OID 0) +-- Dependencies: 207 +-- Name: mdl_user_enrolments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_user_enrolments_id_seq OWNED BY public.mdl_user_enrolments.id; + + +-- +-- TOC entry 261 (class 1259 OID 17033) +-- Name: mdl_user_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_user_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_user_id_seq OWNER TO postgres; + +-- +-- TOC entry 11329 (class 0 OID 0) +-- Dependencies: 261 +-- Name: mdl_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_user_id_seq OWNED BY public.mdl_user.id; + + +-- +-- TOC entry 313 (class 1259 OID 17511) +-- Name: mdl_user_info_category; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_user_info_category ( + id bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + sortorder bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_user_info_category OWNER TO postgres; + +-- +-- TOC entry 11330 (class 0 OID 0) +-- Dependencies: 313 +-- Name: TABLE mdl_user_info_category; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_user_info_category IS 'Customisable fields categories'; + + +-- +-- TOC entry 312 (class 1259 OID 17509) +-- Name: mdl_user_info_category_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_user_info_category_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_user_info_category_id_seq OWNER TO postgres; + +-- +-- TOC entry 11331 (class 0 OID 0) +-- Dependencies: 312 +-- Name: mdl_user_info_category_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_user_info_category_id_seq OWNED BY public.mdl_user_info_category.id; + + +-- +-- TOC entry 315 (class 1259 OID 17521) +-- Name: mdl_user_info_data; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_user_info_data ( + id bigint NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + fieldid bigint DEFAULT 0 NOT NULL, + data text NOT NULL, + dataformat smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_user_info_data OWNER TO postgres; + +-- +-- TOC entry 11332 (class 0 OID 0) +-- Dependencies: 315 +-- Name: TABLE mdl_user_info_data; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_user_info_data IS 'Data for the customisable user fields'; + + +-- +-- TOC entry 314 (class 1259 OID 17519) +-- Name: mdl_user_info_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_user_info_data_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_user_info_data_id_seq OWNER TO postgres; + +-- +-- TOC entry 11333 (class 0 OID 0) +-- Dependencies: 314 +-- Name: mdl_user_info_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_user_info_data_id_seq OWNED BY public.mdl_user_info_data.id; + + +-- +-- TOC entry 311 (class 1259 OID 17489) +-- Name: mdl_user_info_field; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_user_info_field ( + id bigint NOT NULL, + shortname character varying(255) DEFAULT 'shortname'::character varying NOT NULL, + name text NOT NULL, + datatype character varying(255) DEFAULT ''::character varying NOT NULL, + description text, + descriptionformat smallint DEFAULT 0 NOT NULL, + categoryid bigint DEFAULT 0 NOT NULL, + sortorder bigint DEFAULT 0 NOT NULL, + required smallint DEFAULT 0 NOT NULL, + locked smallint DEFAULT 0 NOT NULL, + visible smallint DEFAULT 0 NOT NULL, + forceunique smallint DEFAULT 0 NOT NULL, + signup smallint DEFAULT 0 NOT NULL, + defaultdata text, + defaultdataformat smallint DEFAULT 0 NOT NULL, + param1 text, + param2 text, + param3 text, + param4 text, + param5 text +); + + +ALTER TABLE public.mdl_user_info_field OWNER TO postgres; + +-- +-- TOC entry 11334 (class 0 OID 0) +-- Dependencies: 311 +-- Name: TABLE mdl_user_info_field; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_user_info_field IS 'Customisable user profile fields'; + + +-- +-- TOC entry 310 (class 1259 OID 17487) +-- Name: mdl_user_info_field_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_user_info_field_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_user_info_field_id_seq OWNER TO postgres; + +-- +-- TOC entry 11335 (class 0 OID 0) +-- Dependencies: 310 +-- Name: mdl_user_info_field_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_user_info_field_id_seq OWNED BY public.mdl_user_info_field.id; + + +-- +-- TOC entry 266 (class 1259 OID 17122) +-- Name: mdl_user_lastaccess; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_user_lastaccess ( + id bigint NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + courseid bigint DEFAULT 0 NOT NULL, + timeaccess bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_user_lastaccess OWNER TO postgres; + +-- +-- TOC entry 11336 (class 0 OID 0) +-- Dependencies: 266 +-- Name: TABLE mdl_user_lastaccess; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_user_lastaccess IS 'To keep track of course page access times, used in online participants block, and participants list'; + + +-- +-- TOC entry 265 (class 1259 OID 17120) +-- Name: mdl_user_lastaccess_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_user_lastaccess_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_user_lastaccess_id_seq OWNER TO postgres; + +-- +-- TOC entry 11337 (class 0 OID 0) +-- Dependencies: 265 +-- Name: mdl_user_lastaccess_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_user_lastaccess_id_seq OWNED BY public.mdl_user_lastaccess.id; + + +-- +-- TOC entry 268 (class 1259 OID 17136) +-- Name: mdl_user_password_history; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_user_password_history ( + id bigint NOT NULL, + userid bigint NOT NULL, + hash character varying(255) DEFAULT ''::character varying NOT NULL, + timecreated bigint NOT NULL +); + + +ALTER TABLE public.mdl_user_password_history OWNER TO postgres; + +-- +-- TOC entry 11338 (class 0 OID 0) +-- Dependencies: 268 +-- Name: TABLE mdl_user_password_history; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_user_password_history IS 'A rotating log of hashes of previously used passwords for each user.'; + + +-- +-- TOC entry 267 (class 1259 OID 17134) +-- Name: mdl_user_password_history_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_user_password_history_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_user_password_history_id_seq OWNER TO postgres; + +-- +-- TOC entry 11339 (class 0 OID 0) +-- Dependencies: 267 +-- Name: mdl_user_password_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_user_password_history_id_seq OWNED BY public.mdl_user_password_history.id; + + +-- +-- TOC entry 521 (class 1259 OID 19164) +-- Name: mdl_user_password_resets; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_user_password_resets ( + id bigint NOT NULL, + userid bigint NOT NULL, + timerequested bigint NOT NULL, + timererequested bigint DEFAULT 0 NOT NULL, + token character varying(32) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_user_password_resets OWNER TO postgres; + +-- +-- TOC entry 11340 (class 0 OID 0) +-- Dependencies: 521 +-- Name: TABLE mdl_user_password_resets; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_user_password_resets IS 'table tracking password reset confirmation tokens'; + + +-- +-- TOC entry 520 (class 1259 OID 19162) +-- Name: mdl_user_password_resets_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_user_password_resets_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_user_password_resets_id_seq OWNER TO postgres; + +-- +-- TOC entry 11341 (class 0 OID 0) +-- Dependencies: 520 +-- Name: mdl_user_password_resets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_user_password_resets_id_seq OWNED BY public.mdl_user_password_resets.id; + + +-- +-- TOC entry 264 (class 1259 OID 17107) +-- Name: mdl_user_preferences; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_user_preferences ( + id bigint NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + value character varying(1333) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_user_preferences OWNER TO postgres; + +-- +-- TOC entry 11342 (class 0 OID 0) +-- Dependencies: 264 +-- Name: TABLE mdl_user_preferences; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_user_preferences IS 'Allows modules to store arbitrary user preferences'; + + +-- +-- TOC entry 263 (class 1259 OID 17105) +-- Name: mdl_user_preferences_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_user_preferences_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_user_preferences_id_seq OWNER TO postgres; + +-- +-- TOC entry 11343 (class 0 OID 0) +-- Dependencies: 263 +-- Name: mdl_user_preferences_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_user_preferences_id_seq OWNED BY public.mdl_user_preferences.id; + + +-- +-- TOC entry 411 (class 1259 OID 18347) +-- Name: mdl_user_private_key; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_user_private_key ( + id bigint NOT NULL, + script character varying(128) DEFAULT ''::character varying NOT NULL, + value character varying(128) DEFAULT ''::character varying NOT NULL, + userid bigint NOT NULL, + instance bigint, + iprestriction character varying(255), + validuntil bigint, + timecreated bigint +); + + +ALTER TABLE public.mdl_user_private_key OWNER TO postgres; + +-- +-- TOC entry 11344 (class 0 OID 0) +-- Dependencies: 411 +-- Name: TABLE mdl_user_private_key; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_user_private_key IS 'access keys used in cookieless scripts - rss, etc.'; + + +-- +-- TOC entry 410 (class 1259 OID 18345) +-- Name: mdl_user_private_key_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_user_private_key_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_user_private_key_id_seq OWNER TO postgres; + +-- +-- TOC entry 11345 (class 0 OID 0) +-- Dependencies: 410 +-- Name: mdl_user_private_key_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_user_private_key_id_seq OWNED BY public.mdl_user_private_key.id; + + +-- +-- TOC entry 863 (class 1259 OID 22088) +-- Name: mdl_wiki; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_wiki ( + id bigint NOT NULL, + course bigint DEFAULT 0 NOT NULL, + name character varying(255) DEFAULT 'Wiki'::character varying NOT NULL, + intro text, + introformat smallint DEFAULT 0 NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + firstpagetitle character varying(255) DEFAULT 'First Page'::character varying NOT NULL, + wikimode character varying(20) DEFAULT 'collaborative'::character varying NOT NULL, + defaultformat character varying(20) DEFAULT 'creole'::character varying NOT NULL, + forceformat smallint DEFAULT 1 NOT NULL, + editbegin bigint DEFAULT 0 NOT NULL, + editend bigint DEFAULT 0 +); + + +ALTER TABLE public.mdl_wiki OWNER TO postgres; + +-- +-- TOC entry 11346 (class 0 OID 0) +-- Dependencies: 863 +-- Name: TABLE mdl_wiki; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_wiki IS 'Stores Wiki activity configuration'; + + +-- +-- TOC entry 862 (class 1259 OID 22086) +-- Name: mdl_wiki_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_wiki_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_wiki_id_seq OWNER TO postgres; + +-- +-- TOC entry 11347 (class 0 OID 0) +-- Dependencies: 862 +-- Name: mdl_wiki_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_wiki_id_seq OWNED BY public.mdl_wiki.id; + + +-- +-- TOC entry 873 (class 1259 OID 22174) +-- Name: mdl_wiki_links; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_wiki_links ( + id bigint NOT NULL, + subwikiid bigint DEFAULT 0 NOT NULL, + frompageid bigint DEFAULT 0 NOT NULL, + topageid bigint DEFAULT 0 NOT NULL, + tomissingpage character varying(255) +); + + +ALTER TABLE public.mdl_wiki_links OWNER TO postgres; + +-- +-- TOC entry 11348 (class 0 OID 0) +-- Dependencies: 873 +-- Name: TABLE mdl_wiki_links; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_wiki_links IS 'Page wiki links'; + + +-- +-- TOC entry 872 (class 1259 OID 22172) +-- Name: mdl_wiki_links_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_wiki_links_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_wiki_links_id_seq OWNER TO postgres; + +-- +-- TOC entry 11349 (class 0 OID 0) +-- Dependencies: 872 +-- Name: mdl_wiki_links_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_wiki_links_id_seq OWNED BY public.mdl_wiki_links.id; + + +-- +-- TOC entry 875 (class 1259 OID 22187) +-- Name: mdl_wiki_locks; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_wiki_locks ( + id bigint NOT NULL, + pageid bigint DEFAULT 0 NOT NULL, + sectionname character varying(255), + userid bigint DEFAULT 0 NOT NULL, + lockedat bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_wiki_locks OWNER TO postgres; + +-- +-- TOC entry 11350 (class 0 OID 0) +-- Dependencies: 875 +-- Name: TABLE mdl_wiki_locks; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_wiki_locks IS 'Manages page locks'; + + +-- +-- TOC entry 874 (class 1259 OID 22185) +-- Name: mdl_wiki_locks_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_wiki_locks_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_wiki_locks_id_seq OWNER TO postgres; + +-- +-- TOC entry 11351 (class 0 OID 0) +-- Dependencies: 874 +-- Name: mdl_wiki_locks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_wiki_locks_id_seq OWNED BY public.mdl_wiki_locks.id; + + +-- +-- TOC entry 867 (class 1259 OID 22124) +-- Name: mdl_wiki_pages; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_wiki_pages ( + id bigint NOT NULL, + subwikiid bigint DEFAULT 0 NOT NULL, + title character varying(255) DEFAULT 'title'::character varying NOT NULL, + cachedcontent text NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL, + timerendered bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL, + pageviews bigint DEFAULT 0 NOT NULL, + readonly smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_wiki_pages OWNER TO postgres; + +-- +-- TOC entry 11352 (class 0 OID 0) +-- Dependencies: 867 +-- Name: TABLE mdl_wiki_pages; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_wiki_pages IS 'Stores wiki pages'; + + +-- +-- TOC entry 866 (class 1259 OID 22122) +-- Name: mdl_wiki_pages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_wiki_pages_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_wiki_pages_id_seq OWNER TO postgres; + +-- +-- TOC entry 11353 (class 0 OID 0) +-- Dependencies: 866 +-- Name: mdl_wiki_pages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_wiki_pages_id_seq OWNED BY public.mdl_wiki_pages.id; + + +-- +-- TOC entry 865 (class 1259 OID 22111) +-- Name: mdl_wiki_subwikis; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_wiki_subwikis ( + id bigint NOT NULL, + wikiid bigint DEFAULT 0 NOT NULL, + groupid bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_wiki_subwikis OWNER TO postgres; + +-- +-- TOC entry 11354 (class 0 OID 0) +-- Dependencies: 865 +-- Name: TABLE mdl_wiki_subwikis; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_wiki_subwikis IS 'Stores subwiki instances'; + + +-- +-- TOC entry 864 (class 1259 OID 22109) +-- Name: mdl_wiki_subwikis_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_wiki_subwikis_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_wiki_subwikis_id_seq OWNER TO postgres; + +-- +-- TOC entry 11355 (class 0 OID 0) +-- Dependencies: 864 +-- Name: mdl_wiki_subwikis_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_wiki_subwikis_id_seq OWNED BY public.mdl_wiki_subwikis.id; + + +-- +-- TOC entry 871 (class 1259 OID 22162) +-- Name: mdl_wiki_synonyms; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_wiki_synonyms ( + id bigint NOT NULL, + subwikiid bigint DEFAULT 0 NOT NULL, + pageid bigint DEFAULT 0 NOT NULL, + pagesynonym character varying(255) DEFAULT 'Pagesynonym'::character varying NOT NULL +); + + +ALTER TABLE public.mdl_wiki_synonyms OWNER TO postgres; + +-- +-- TOC entry 11356 (class 0 OID 0) +-- Dependencies: 871 +-- Name: TABLE mdl_wiki_synonyms; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_wiki_synonyms IS 'Stores wiki pages synonyms'; + + +-- +-- TOC entry 870 (class 1259 OID 22160) +-- Name: mdl_wiki_synonyms_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_wiki_synonyms_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_wiki_synonyms_id_seq OWNER TO postgres; + +-- +-- TOC entry 11357 (class 0 OID 0) +-- Dependencies: 870 +-- Name: mdl_wiki_synonyms_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_wiki_synonyms_id_seq OWNED BY public.mdl_wiki_synonyms.id; + + +-- +-- TOC entry 869 (class 1259 OID 22145) +-- Name: mdl_wiki_versions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_wiki_versions ( + id bigint NOT NULL, + pageid bigint DEFAULT 0 NOT NULL, + content text NOT NULL, + contentformat character varying(20) DEFAULT 'creole'::character varying NOT NULL, + version integer DEFAULT 0 NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + userid bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_wiki_versions OWNER TO postgres; + +-- +-- TOC entry 11358 (class 0 OID 0) +-- Dependencies: 869 +-- Name: TABLE mdl_wiki_versions; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_wiki_versions IS 'Stores wiki page history'; + + +-- +-- TOC entry 868 (class 1259 OID 22143) +-- Name: mdl_wiki_versions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_wiki_versions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_wiki_versions_id_seq OWNER TO postgres; + +-- +-- TOC entry 11359 (class 0 OID 0) +-- Dependencies: 868 +-- Name: mdl_wiki_versions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_wiki_versions_id_seq OWNED BY public.mdl_wiki_versions.id; + + +-- +-- TOC entry 877 (class 1259 OID 22198) +-- Name: mdl_workshop; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_workshop ( + id bigint NOT NULL, + course bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + intro text, + introformat smallint DEFAULT 0 NOT NULL, + instructauthors text, + instructauthorsformat smallint DEFAULT 0 NOT NULL, + instructreviewers text, + instructreviewersformat smallint DEFAULT 0 NOT NULL, + timemodified bigint NOT NULL, + phase smallint DEFAULT 0, + useexamples smallint DEFAULT 0, + usepeerassessment smallint DEFAULT 0, + useselfassessment smallint DEFAULT 0, + grade numeric(10,5) DEFAULT 80, + gradinggrade numeric(10,5) DEFAULT 20, + strategy character varying(30) DEFAULT ''::character varying NOT NULL, + evaluation character varying(30) DEFAULT ''::character varying NOT NULL, + gradedecimals smallint DEFAULT 0, + submissiontypetext smallint DEFAULT 1 NOT NULL, + submissiontypefile smallint DEFAULT 1 NOT NULL, + nattachments smallint DEFAULT 1, + submissionfiletypes character varying(255), + latesubmissions smallint DEFAULT 0, + maxbytes bigint DEFAULT 100000, + examplesmode smallint DEFAULT 0, + submissionstart bigint DEFAULT 0, + submissionend bigint DEFAULT 0, + assessmentstart bigint DEFAULT 0, + assessmentend bigint DEFAULT 0, + phaseswitchassessment smallint DEFAULT 0 NOT NULL, + conclusion text, + conclusionformat smallint DEFAULT 1 NOT NULL, + overallfeedbackmode smallint DEFAULT 1, + overallfeedbackfiles smallint DEFAULT 0, + overallfeedbackfiletypes character varying(255), + overallfeedbackmaxbytes bigint DEFAULT 100000 +); + + +ALTER TABLE public.mdl_workshop OWNER TO postgres; + +-- +-- TOC entry 11360 (class 0 OID 0) +-- Dependencies: 877 +-- Name: TABLE mdl_workshop; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_workshop IS 'This table keeps information about the module instances and their settings'; + + +-- +-- TOC entry 885 (class 1259 OID 22295) +-- Name: mdl_workshop_aggregations; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_workshop_aggregations ( + id bigint NOT NULL, + workshopid bigint NOT NULL, + userid bigint NOT NULL, + gradinggrade numeric(10,5), + timegraded bigint +); + + +ALTER TABLE public.mdl_workshop_aggregations OWNER TO postgres; + +-- +-- TOC entry 11361 (class 0 OID 0) +-- Dependencies: 885 +-- Name: TABLE mdl_workshop_aggregations; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_workshop_aggregations IS 'Aggregated grades for assessment are stored here. The aggregated grade for submission is stored in workshop_submissions'; + + +-- +-- TOC entry 884 (class 1259 OID 22293) +-- Name: mdl_workshop_aggregations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_workshop_aggregations_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_workshop_aggregations_id_seq OWNER TO postgres; + +-- +-- TOC entry 11362 (class 0 OID 0) +-- Dependencies: 884 +-- Name: mdl_workshop_aggregations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_workshop_aggregations_id_seq OWNED BY public.mdl_workshop_aggregations.id; + + +-- +-- TOC entry 881 (class 1259 OID 22260) +-- Name: mdl_workshop_assessments; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_workshop_assessments ( + id bigint NOT NULL, + submissionid bigint NOT NULL, + reviewerid bigint NOT NULL, + weight bigint DEFAULT 1 NOT NULL, + timecreated bigint DEFAULT 0, + timemodified bigint DEFAULT 0, + grade numeric(10,5), + gradinggrade numeric(10,5), + gradinggradeover numeric(10,5), + gradinggradeoverby bigint, + feedbackauthor text, + feedbackauthorformat smallint DEFAULT 0, + feedbackauthorattachment smallint DEFAULT 0, + feedbackreviewer text, + feedbackreviewerformat smallint DEFAULT 0 +); + + +ALTER TABLE public.mdl_workshop_assessments OWNER TO postgres; + +-- +-- TOC entry 11363 (class 0 OID 0) +-- Dependencies: 881 +-- Name: TABLE mdl_workshop_assessments; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_workshop_assessments IS 'Info about the made assessment and automatically calculated grade for it. The proposed grade can be overridden by teacher.'; + + +-- +-- TOC entry 880 (class 1259 OID 22258) +-- Name: mdl_workshop_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_workshop_assessments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_workshop_assessments_id_seq OWNER TO postgres; + +-- +-- TOC entry 11364 (class 0 OID 0) +-- Dependencies: 880 +-- Name: mdl_workshop_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_workshop_assessments_id_seq OWNED BY public.mdl_workshop_assessments.id; + + +-- +-- TOC entry 883 (class 1259 OID 22280) +-- Name: mdl_workshop_grades; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_workshop_grades ( + id bigint NOT NULL, + assessmentid bigint NOT NULL, + strategy character varying(30) DEFAULT ''::character varying NOT NULL, + dimensionid bigint NOT NULL, + grade numeric(10,5) NOT NULL, + peercomment text, + peercommentformat smallint DEFAULT 0 +); + + +ALTER TABLE public.mdl_workshop_grades OWNER TO postgres; + +-- +-- TOC entry 11365 (class 0 OID 0) +-- Dependencies: 883 +-- Name: TABLE mdl_workshop_grades; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_workshop_grades IS 'How the reviewers filled-up the grading forms, given grades and comments'; + + +-- +-- TOC entry 882 (class 1259 OID 22278) +-- Name: mdl_workshop_grades_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_workshop_grades_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_workshop_grades_id_seq OWNER TO postgres; + +-- +-- TOC entry 11366 (class 0 OID 0) +-- Dependencies: 882 +-- Name: mdl_workshop_grades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_workshop_grades_id_seq OWNED BY public.mdl_workshop_grades.id; + + +-- +-- TOC entry 876 (class 1259 OID 22196) +-- Name: mdl_workshop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_workshop_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_workshop_id_seq OWNER TO postgres; + +-- +-- TOC entry 11367 (class 0 OID 0) +-- Dependencies: 876 +-- Name: mdl_workshop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_workshop_id_seq OWNED BY public.mdl_workshop.id; + + +-- +-- TOC entry 879 (class 1259 OID 22238) +-- Name: mdl_workshop_submissions; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_workshop_submissions ( + id bigint NOT NULL, + workshopid bigint NOT NULL, + example smallint DEFAULT 0, + authorid bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + title character varying(255) DEFAULT ''::character varying NOT NULL, + content text, + contentformat smallint DEFAULT 0 NOT NULL, + contenttrust smallint DEFAULT 0 NOT NULL, + attachment smallint DEFAULT 0, + grade numeric(10,5), + gradeover numeric(10,5), + gradeoverby bigint, + feedbackauthor text, + feedbackauthorformat smallint DEFAULT 0, + timegraded bigint, + published smallint DEFAULT 0, + late smallint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_workshop_submissions OWNER TO postgres; + +-- +-- TOC entry 11368 (class 0 OID 0) +-- Dependencies: 879 +-- Name: TABLE mdl_workshop_submissions; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_workshop_submissions IS 'Info about the submission and the aggregation of the grade for submission, grade for assessment and final grade. Both grade for submission and grade for assessment can be overridden by teacher. Final grade is always the sum of them. All grades are st'; + + +-- +-- TOC entry 878 (class 1259 OID 22236) +-- Name: mdl_workshop_submissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_workshop_submissions_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_workshop_submissions_id_seq OWNER TO postgres; + +-- +-- TOC entry 11369 (class 0 OID 0) +-- Dependencies: 878 +-- Name: mdl_workshop_submissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_workshop_submissions_id_seq OWNED BY public.mdl_workshop_submissions.id; + + +-- +-- TOC entry 1035 (class 1259 OID 23352) +-- Name: mdl_workshopallocation_scheduled; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_workshopallocation_scheduled ( + id bigint NOT NULL, + workshopid bigint NOT NULL, + enabled smallint DEFAULT 0 NOT NULL, + submissionend bigint NOT NULL, + timeallocated bigint, + settings text, + resultstatus bigint, + resultmessage character varying(1333), + resultlog text +); + + +ALTER TABLE public.mdl_workshopallocation_scheduled OWNER TO postgres; + +-- +-- TOC entry 11370 (class 0 OID 0) +-- Dependencies: 1035 +-- Name: TABLE mdl_workshopallocation_scheduled; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_workshopallocation_scheduled IS 'Stores the allocation settings for the scheduled allocator'; + + +-- +-- TOC entry 1034 (class 1259 OID 23350) +-- Name: mdl_workshopallocation_scheduled_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_workshopallocation_scheduled_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_workshopallocation_scheduled_id_seq OWNER TO postgres; + +-- +-- TOC entry 11371 (class 0 OID 0) +-- Dependencies: 1034 +-- Name: mdl_workshopallocation_scheduled_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_workshopallocation_scheduled_id_seq OWNED BY public.mdl_workshopallocation_scheduled.id; + + +-- +-- TOC entry 1037 (class 1259 OID 23365) +-- Name: mdl_workshopeval_best_settings; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_workshopeval_best_settings ( + id bigint NOT NULL, + workshopid bigint NOT NULL, + comparison smallint DEFAULT 5 +); + + +ALTER TABLE public.mdl_workshopeval_best_settings OWNER TO postgres; + +-- +-- TOC entry 11372 (class 0 OID 0) +-- Dependencies: 1037 +-- Name: TABLE mdl_workshopeval_best_settings; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_workshopeval_best_settings IS 'Settings for the grading evaluation subplugin Comparison with the best assessment.'; + + +-- +-- TOC entry 1036 (class 1259 OID 23363) +-- Name: mdl_workshopeval_best_settings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_workshopeval_best_settings_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_workshopeval_best_settings_id_seq OWNER TO postgres; + +-- +-- TOC entry 11373 (class 0 OID 0) +-- Dependencies: 1036 +-- Name: mdl_workshopeval_best_settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_workshopeval_best_settings_id_seq OWNED BY public.mdl_workshopeval_best_settings.id; + + +-- +-- TOC entry 1021 (class 1259 OID 23261) +-- Name: mdl_workshopform_accumulative; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_workshopform_accumulative ( + id bigint NOT NULL, + workshopid bigint NOT NULL, + sort bigint DEFAULT 0, + description text, + descriptionformat smallint DEFAULT 0, + grade bigint NOT NULL, + weight integer DEFAULT 1 +); + + +ALTER TABLE public.mdl_workshopform_accumulative OWNER TO postgres; + +-- +-- TOC entry 11374 (class 0 OID 0) +-- Dependencies: 1021 +-- Name: TABLE mdl_workshopform_accumulative; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_workshopform_accumulative IS 'The assessment dimensions definitions of Accumulative grading strategy forms'; + + +-- +-- TOC entry 1020 (class 1259 OID 23259) +-- Name: mdl_workshopform_accumulative_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_workshopform_accumulative_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_workshopform_accumulative_id_seq OWNER TO postgres; + +-- +-- TOC entry 11375 (class 0 OID 0) +-- Dependencies: 1020 +-- Name: mdl_workshopform_accumulative_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_workshopform_accumulative_id_seq OWNED BY public.mdl_workshopform_accumulative.id; + + +-- +-- TOC entry 1023 (class 1259 OID 23276) +-- Name: mdl_workshopform_comments; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_workshopform_comments ( + id bigint NOT NULL, + workshopid bigint NOT NULL, + sort bigint DEFAULT 0, + description text, + descriptionformat smallint DEFAULT 0 +); + + +ALTER TABLE public.mdl_workshopform_comments OWNER TO postgres; + +-- +-- TOC entry 11376 (class 0 OID 0) +-- Dependencies: 1023 +-- Name: TABLE mdl_workshopform_comments; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_workshopform_comments IS 'The assessment dimensions definitions of Comments strategy forms'; + + +-- +-- TOC entry 1022 (class 1259 OID 23274) +-- Name: mdl_workshopform_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_workshopform_comments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_workshopform_comments_id_seq OWNER TO postgres; + +-- +-- TOC entry 11377 (class 0 OID 0) +-- Dependencies: 1022 +-- Name: mdl_workshopform_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_workshopform_comments_id_seq OWNED BY public.mdl_workshopform_comments.id; + + +-- +-- TOC entry 1025 (class 1259 OID 23290) +-- Name: mdl_workshopform_numerrors; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_workshopform_numerrors ( + id bigint NOT NULL, + workshopid bigint NOT NULL, + sort bigint DEFAULT 0, + description text, + descriptionformat smallint DEFAULT 0, + descriptiontrust bigint, + grade0 character varying(50), + grade1 character varying(50), + weight integer DEFAULT 1 +); + + +ALTER TABLE public.mdl_workshopform_numerrors OWNER TO postgres; + +-- +-- TOC entry 11378 (class 0 OID 0) +-- Dependencies: 1025 +-- Name: TABLE mdl_workshopform_numerrors; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_workshopform_numerrors IS 'The assessment dimensions definitions of Number of errors grading strategy forms'; + + +-- +-- TOC entry 1024 (class 1259 OID 23288) +-- Name: mdl_workshopform_numerrors_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_workshopform_numerrors_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_workshopform_numerrors_id_seq OWNER TO postgres; + +-- +-- TOC entry 11379 (class 0 OID 0) +-- Dependencies: 1024 +-- Name: mdl_workshopform_numerrors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_workshopform_numerrors_id_seq OWNED BY public.mdl_workshopform_numerrors.id; + + +-- +-- TOC entry 1027 (class 1259 OID 23305) +-- Name: mdl_workshopform_numerrors_map; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_workshopform_numerrors_map ( + id bigint NOT NULL, + workshopid bigint NOT NULL, + nonegative bigint NOT NULL, + grade numeric(10,5) NOT NULL +); + + +ALTER TABLE public.mdl_workshopform_numerrors_map OWNER TO postgres; + +-- +-- TOC entry 11380 (class 0 OID 0) +-- Dependencies: 1027 +-- Name: TABLE mdl_workshopform_numerrors_map; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_workshopform_numerrors_map IS 'This maps the number of errors to a percentual grade for submission'; + + +-- +-- TOC entry 1026 (class 1259 OID 23303) +-- Name: mdl_workshopform_numerrors_map_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_workshopform_numerrors_map_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_workshopform_numerrors_map_id_seq OWNER TO postgres; + +-- +-- TOC entry 11381 (class 0 OID 0) +-- Dependencies: 1026 +-- Name: mdl_workshopform_numerrors_map_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_workshopform_numerrors_map_id_seq OWNED BY public.mdl_workshopform_numerrors_map.id; + + +-- +-- TOC entry 1029 (class 1259 OID 23315) +-- Name: mdl_workshopform_rubric; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_workshopform_rubric ( + id bigint NOT NULL, + workshopid bigint NOT NULL, + sort bigint DEFAULT 0, + description text, + descriptionformat smallint DEFAULT 0 +); + + +ALTER TABLE public.mdl_workshopform_rubric OWNER TO postgres; + +-- +-- TOC entry 11382 (class 0 OID 0) +-- Dependencies: 1029 +-- Name: TABLE mdl_workshopform_rubric; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_workshopform_rubric IS 'The assessment dimensions definitions of Rubric grading strategy forms'; + + +-- +-- TOC entry 1033 (class 1259 OID 23342) +-- Name: mdl_workshopform_rubric_config; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_workshopform_rubric_config ( + id bigint NOT NULL, + workshopid bigint NOT NULL, + layout character varying(30) DEFAULT 'list'::character varying +); + + +ALTER TABLE public.mdl_workshopform_rubric_config OWNER TO postgres; + +-- +-- TOC entry 11383 (class 0 OID 0) +-- Dependencies: 1033 +-- Name: TABLE mdl_workshopform_rubric_config; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_workshopform_rubric_config IS 'Configuration table for the Rubric grading strategy'; + + +-- +-- TOC entry 1032 (class 1259 OID 23340) +-- Name: mdl_workshopform_rubric_config_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_workshopform_rubric_config_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_workshopform_rubric_config_id_seq OWNER TO postgres; + +-- +-- TOC entry 11384 (class 0 OID 0) +-- Dependencies: 1032 +-- Name: mdl_workshopform_rubric_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_workshopform_rubric_config_id_seq OWNED BY public.mdl_workshopform_rubric_config.id; + + +-- +-- TOC entry 1028 (class 1259 OID 23313) +-- Name: mdl_workshopform_rubric_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_workshopform_rubric_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_workshopform_rubric_id_seq OWNER TO postgres; + +-- +-- TOC entry 11385 (class 0 OID 0) +-- Dependencies: 1028 +-- Name: mdl_workshopform_rubric_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_workshopform_rubric_id_seq OWNED BY public.mdl_workshopform_rubric.id; + + +-- +-- TOC entry 1031 (class 1259 OID 23329) +-- Name: mdl_workshopform_rubric_levels; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_workshopform_rubric_levels ( + id bigint NOT NULL, + dimensionid bigint NOT NULL, + grade numeric(10,5) NOT NULL, + definition text, + definitionformat smallint DEFAULT 0 +); + + +ALTER TABLE public.mdl_workshopform_rubric_levels OWNER TO postgres; + +-- +-- TOC entry 11386 (class 0 OID 0) +-- Dependencies: 1031 +-- Name: TABLE mdl_workshopform_rubric_levels; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_workshopform_rubric_levels IS 'The definition of rubric rating scales'; + + +-- +-- TOC entry 1030 (class 1259 OID 23327) +-- Name: mdl_workshopform_rubric_levels_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_workshopform_rubric_levels_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_workshopform_rubric_levels_id_seq OWNER TO postgres; + +-- +-- TOC entry 11387 (class 0 OID 0) +-- Dependencies: 1030 +-- Name: mdl_workshopform_rubric_levels_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_workshopform_rubric_levels_id_seq OWNED BY public.mdl_workshopform_rubric_levels.id; + + +-- +-- TOC entry 6445 (class 2604 OID 19639) +-- Name: mdl_analytics_indicator_calc id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_analytics_indicator_calc ALTER COLUMN id SET DEFAULT nextval('public.mdl_analytics_indicator_calc_id_seq'::regclass); + + +-- +-- TOC entry 6423 (class 2604 OID 19548) +-- Name: mdl_analytics_models id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_analytics_models ALTER COLUMN id SET DEFAULT nextval('public.mdl_analytics_models_id_seq'::regclass); + + +-- +-- TOC entry 6427 (class 2604 OID 19563) +-- Name: mdl_analytics_models_log id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_analytics_models_log ALTER COLUMN id SET DEFAULT nextval('public.mdl_analytics_models_log_id_seq'::regclass); + + +-- +-- TOC entry 6436 (class 2604 OID 19608) +-- Name: mdl_analytics_predict_samples id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_analytics_predict_samples ALTER COLUMN id SET DEFAULT nextval('public.mdl_analytics_predict_samples_id_seq'::regclass); + + +-- +-- TOC entry 6448 (class 2604 OID 19654) +-- Name: mdl_analytics_prediction_actions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_analytics_prediction_actions ALTER COLUMN id SET DEFAULT nextval('public.mdl_analytics_prediction_actions_id_seq'::regclass); + + +-- +-- TOC entry 6431 (class 2604 OID 19578) +-- Name: mdl_analytics_predictions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_analytics_predictions ALTER COLUMN id SET DEFAULT nextval('public.mdl_analytics_predictions_id_seq'::regclass); + + +-- +-- TOC entry 6433 (class 2604 OID 19593) +-- Name: mdl_analytics_train_samples id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_analytics_train_samples ALTER COLUMN id SET DEFAULT nextval('public.mdl_analytics_train_samples_id_seq'::regclass); + + +-- +-- TOC entry 6451 (class 2604 OID 19678) +-- Name: mdl_analytics_used_analysables id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_analytics_used_analysables ALTER COLUMN id SET DEFAULT nextval('public.mdl_analytics_used_analysables_id_seq'::regclass); + + +-- +-- TOC entry 6440 (class 2604 OID 19624) +-- Name: mdl_analytics_used_files id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_analytics_used_files ALTER COLUMN id SET DEFAULT nextval('public.mdl_analytics_used_files_id_seq'::regclass); + + +-- +-- TOC entry 6630 (class 2604 OID 20237) +-- Name: mdl_assign id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assign ALTER COLUMN id SET DEFAULT nextval('public.mdl_assign_id_seq'::regclass); + + +-- +-- TOC entry 6667 (class 2604 OID 20298) +-- Name: mdl_assign_grades id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assign_grades ALTER COLUMN id SET DEFAULT nextval('public.mdl_assign_grades_id_seq'::regclass); + + +-- +-- TOC entry 6690 (class 2604 OID 20365) +-- Name: mdl_assign_overrides id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assign_overrides ALTER COLUMN id SET DEFAULT nextval('public.mdl_assign_overrides_id_seq'::regclass); + + +-- +-- TOC entry 6675 (class 2604 OID 20317) +-- Name: mdl_assign_plugin_config id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assign_plugin_config ALTER COLUMN id SET DEFAULT nextval('public.mdl_assign_plugin_config_id_seq'::regclass); + + +-- +-- TOC entry 6659 (class 2604 OID 20278) +-- Name: mdl_assign_submission id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assign_submission ALTER COLUMN id SET DEFAULT nextval('public.mdl_assign_submission_id_seq'::regclass); + + +-- +-- TOC entry 6683 (class 2604 OID 20348) +-- Name: mdl_assign_user_flags id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assign_user_flags ALTER COLUMN id SET DEFAULT nextval('public.mdl_assign_user_flags_id_seq'::regclass); + + +-- +-- TOC entry 6680 (class 2604 OID 20336) +-- Name: mdl_assign_user_mapping id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assign_user_mapping ALTER COLUMN id SET DEFAULT nextval('public.mdl_assign_user_mapping_id_seq'::regclass); + + +-- +-- TOC entry 7711 (class 2604 OID 23086) +-- Name: mdl_assignfeedback_comments id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignfeedback_comments ALTER COLUMN id SET DEFAULT nextval('public.mdl_assignfeedback_comments_id_seq'::regclass); + + +-- +-- TOC entry 7723 (class 2604 OID 23122) +-- Name: mdl_assignfeedback_editpdf_annot id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_annot ALTER COLUMN id SET DEFAULT nextval('public.mdl_assignfeedback_editpdf_annot_id_seq'::regclass); + + +-- +-- TOC entry 7715 (class 2604 OID 23102) +-- Name: mdl_assignfeedback_editpdf_cmnt id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_cmnt ALTER COLUMN id SET DEFAULT nextval('public.mdl_assignfeedback_editpdf_cmnt_id_seq'::regclass); + + +-- +-- TOC entry 7737 (class 2604 OID 23159) +-- Name: mdl_assignfeedback_editpdf_queue id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_queue ALTER COLUMN id SET DEFAULT nextval('public.mdl_assignfeedback_editpdf_queue_id_seq'::regclass); + + +-- +-- TOC entry 7733 (class 2604 OID 23144) +-- Name: mdl_assignfeedback_editpdf_quick id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_quick ALTER COLUMN id SET DEFAULT nextval('public.mdl_assignfeedback_editpdf_quick_id_seq'::regclass); + + +-- +-- TOC entry 7739 (class 2604 OID 23169) +-- Name: mdl_assignfeedback_editpdf_rot id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_rot ALTER COLUMN id SET DEFAULT nextval('public.mdl_assignfeedback_editpdf_rot_id_seq'::regclass); + + +-- +-- TOC entry 7744 (class 2604 OID 23186) +-- Name: mdl_assignfeedback_file id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignfeedback_file ALTER COLUMN id SET DEFAULT nextval('public.mdl_assignfeedback_file_id_seq'::regclass); + + +-- +-- TOC entry 6692 (class 2604 OID 20377) +-- Name: mdl_assignment id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignment ALTER COLUMN id SET DEFAULT nextval('public.mdl_assignment_id_seq'::regclass); + + +-- +-- TOC entry 6710 (class 2604 OID 20406) +-- Name: mdl_assignment_submissions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignment_submissions ALTER COLUMN id SET DEFAULT nextval('public.mdl_assignment_submissions_id_seq'::regclass); + + +-- +-- TOC entry 6721 (class 2604 OID 20431) +-- Name: mdl_assignment_upgrade id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignment_upgrade ALTER COLUMN id SET DEFAULT nextval('public.mdl_assignment_upgrade_id_seq'::regclass); + + +-- +-- TOC entry 7703 (class 2604 OID 23057) +-- Name: mdl_assignsubmission_file id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignsubmission_file ALTER COLUMN id SET DEFAULT nextval('public.mdl_assignsubmission_file_id_seq'::regclass); + + +-- +-- TOC entry 7707 (class 2604 OID 23070) +-- Name: mdl_assignsubmission_onlinetext id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignsubmission_onlinetext ALTER COLUMN id SET DEFAULT nextval('public.mdl_assignsubmission_onlinetext_id_seq'::regclass); + + +-- +-- TOC entry 7530 (class 2604 OID 22309) +-- Name: mdl_auth_oauth2_linked_login id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_auth_oauth2_linked_login ALTER COLUMN id SET DEFAULT nextval('public.mdl_auth_oauth2_linked_login_id_seq'::regclass); + + +-- +-- TOC entry 6243 (class 2604 OID 18805) +-- Name: mdl_backup_controllers id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_backup_controllers ALTER COLUMN id SET DEFAULT nextval('public.mdl_backup_controllers_id_seq'::regclass); + + +-- +-- TOC entry 6186 (class 2604 OID 18594) +-- Name: mdl_backup_courses id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_backup_courses ALTER COLUMN id SET DEFAULT nextval('public.mdl_backup_courses_id_seq'::regclass); + + +-- +-- TOC entry 6250 (class 2604 OID 18826) +-- Name: mdl_backup_logs id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_backup_logs ALTER COLUMN id SET DEFAULT nextval('public.mdl_backup_logs_id_seq'::regclass); + + +-- +-- TOC entry 6279 (class 2604 OID 18932) +-- Name: mdl_badge id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge ALTER COLUMN id SET DEFAULT nextval('public.mdl_badge_id_seq'::regclass); + + +-- +-- TOC entry 6321 (class 2604 OID 19100) +-- Name: mdl_badge_alignment id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_alignment ALTER COLUMN id SET DEFAULT nextval('public.mdl_badge_alignment_id_seq'::regclass); + + +-- +-- TOC entry 6308 (class 2604 OID 19044) +-- Name: mdl_badge_backpack id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_backpack ALTER COLUMN id SET DEFAULT nextval('public.mdl_badge_backpack_id_seq'::regclass); + + +-- +-- TOC entry 6312 (class 2604 OID 19057) +-- Name: mdl_badge_backpack_oauth2 id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_backpack_oauth2 ALTER COLUMN id SET DEFAULT nextval('public.mdl_badge_backpack_oauth2_id_seq'::regclass); + + +-- +-- TOC entry 6289 (class 2604 OID 18956) +-- Name: mdl_badge_criteria id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_criteria ALTER COLUMN id SET DEFAULT nextval('public.mdl_badge_criteria_id_seq'::regclass); + + +-- +-- TOC entry 6300 (class 2604 OID 19004) +-- Name: mdl_badge_criteria_met id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_criteria_met ALTER COLUMN id SET DEFAULT nextval('public.mdl_badge_criteria_met_id_seq'::regclass); + + +-- +-- TOC entry 6293 (class 2604 OID 18973) +-- Name: mdl_badge_criteria_param id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_criteria_param ALTER COLUMN id SET DEFAULT nextval('public.mdl_badge_criteria_param_id_seq'::regclass); + + +-- +-- TOC entry 6301 (class 2604 OID 19015) +-- Name: mdl_badge_endorsement id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_endorsement ALTER COLUMN id SET DEFAULT nextval('public.mdl_badge_endorsement_id_seq'::regclass); + + +-- +-- TOC entry 6316 (class 2604 OID 19075) +-- Name: mdl_badge_external id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_external ALTER COLUMN id SET DEFAULT nextval('public.mdl_badge_external_id_seq'::regclass); + + +-- +-- TOC entry 6327 (class 2604 OID 19127) +-- Name: mdl_badge_external_backpack id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_external_backpack ALTER COLUMN id SET DEFAULT nextval('public.mdl_badge_external_backpack_id_seq'::regclass); + + +-- +-- TOC entry 6317 (class 2604 OID 19087) +-- Name: mdl_badge_external_identifier id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_external_identifier ALTER COLUMN id SET DEFAULT nextval('public.mdl_badge_external_identifier_id_seq'::regclass); + + +-- +-- TOC entry 6295 (class 2604 OID 18986) +-- Name: mdl_badge_issued id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_issued ALTER COLUMN id SET DEFAULT nextval('public.mdl_badge_issued_id_seq'::regclass); + + +-- +-- TOC entry 6307 (class 2604 OID 19032) +-- Name: mdl_badge_manual_award id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_manual_award ALTER COLUMN id SET DEFAULT nextval('public.mdl_badge_manual_award_id_seq'::regclass); + + +-- +-- TOC entry 6325 (class 2604 OID 19115) +-- Name: mdl_badge_related id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_related ALTER COLUMN id SET DEFAULT nextval('public.mdl_badge_related_id_seq'::regclass); + + +-- +-- TOC entry 6192 (class 2604 OID 18608) +-- Name: mdl_block id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_block ALTER COLUMN id SET DEFAULT nextval('public.mdl_block_id_seq'::regclass); + + +-- +-- TOC entry 6197 (class 2604 OID 18621) +-- Name: mdl_block_instances id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_block_instances ALTER COLUMN id SET DEFAULT nextval('public.mdl_block_instances_id_seq'::regclass); + + +-- +-- TOC entry 6202 (class 2604 OID 18639) +-- Name: mdl_block_positions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_block_positions ALTER COLUMN id SET DEFAULT nextval('public.mdl_block_positions_id_seq'::regclass); + + +-- +-- TOC entry 7596 (class 2604 OID 22558) +-- Name: mdl_block_recent_activity id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_block_recent_activity ALTER COLUMN id SET DEFAULT nextval('public.mdl_block_recent_activity_id_seq'::regclass); + + +-- +-- TOC entry 7597 (class 2604 OID 22567) +-- Name: mdl_block_recentlyaccesseditems id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_block_recentlyaccesseditems ALTER COLUMN id SET DEFAULT nextval('public.mdl_block_recentlyaccesseditems_id_seq'::regclass); + + +-- +-- TOC entry 7598 (class 2604 OID 22579) +-- Name: mdl_block_rss_client id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_block_rss_client ALTER COLUMN id SET DEFAULT nextval('public.mdl_block_rss_client_id_seq'::regclass); + + +-- +-- TOC entry 6224 (class 2604 OID 18736) +-- Name: mdl_blog_association id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_blog_association ALTER COLUMN id SET DEFAULT nextval('public.mdl_blog_association_id_seq'::regclass); + + +-- +-- TOC entry 6225 (class 2604 OID 18746) +-- Name: mdl_blog_external id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_blog_external ALTER COLUMN id SET DEFAULT nextval('public.mdl_blog_external_id_seq'::regclass); + + +-- +-- TOC entry 6727 (class 2604 OID 20446) +-- Name: mdl_book id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_book ALTER COLUMN id SET DEFAULT nextval('public.mdl_book_id_seq'::regclass); + + +-- +-- TOC entry 6737 (class 2604 OID 20466) +-- Name: mdl_book_chapters id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_book_chapters ALTER COLUMN id SET DEFAULT nextval('public.mdl_book_chapters_id_seq'::regclass); + + +-- +-- TOC entry 5587 (class 2604 OID 16774) +-- Name: mdl_cache_filters id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_cache_filters ALTER COLUMN id SET DEFAULT nextval('public.mdl_cache_filters_id_seq'::regclass); + + +-- +-- TOC entry 6132 (class 2604 OID 18375) +-- Name: mdl_cache_flags id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_cache_flags ALTER COLUMN id SET DEFAULT nextval('public.mdl_cache_flags_id_seq'::regclass); + + +-- +-- TOC entry 5795 (class 2604 OID 17364) +-- Name: mdl_capabilities id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_capabilities ALTER COLUMN id SET DEFAULT nextval('public.mdl_capabilities_id_seq'::regclass); + + +-- +-- TOC entry 6747 (class 2604 OID 20486) +-- Name: mdl_chat id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_chat ALTER COLUMN id SET DEFAULT nextval('public.mdl_chat_id_seq'::regclass); + + +-- +-- TOC entry 6756 (class 2604 OID 20506) +-- Name: mdl_chat_messages id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_chat_messages ALTER COLUMN id SET DEFAULT nextval('public.mdl_chat_messages_id_seq'::regclass); + + +-- +-- TOC entry 6762 (class 2604 OID 20526) +-- Name: mdl_chat_messages_current id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_chat_messages_current ALTER COLUMN id SET DEFAULT nextval('public.mdl_chat_messages_current_id_seq'::regclass); + + +-- +-- TOC entry 6768 (class 2604 OID 20546) +-- Name: mdl_chat_users id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_chat_users ALTER COLUMN id SET DEFAULT nextval('public.mdl_chat_users_id_seq'::regclass); + + +-- +-- TOC entry 6780 (class 2604 OID 20569) +-- Name: mdl_choice id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_choice ALTER COLUMN id SET DEFAULT nextval('public.mdl_choice_id_seq'::regclass); + + +-- +-- TOC entry 6801 (class 2604 OID 20612) +-- Name: mdl_choice_answers id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_choice_answers ALTER COLUMN id SET DEFAULT nextval('public.mdl_choice_answers_id_seq'::regclass); + + +-- +-- TOC entry 6797 (class 2604 OID 20597) +-- Name: mdl_choice_options id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_choice_options ALTER COLUMN id SET DEFAULT nextval('public.mdl_choice_options_id_seq'::regclass); + + +-- +-- TOC entry 6119 (class 2604 OID 18321) +-- Name: mdl_cohort id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_cohort ALTER COLUMN id SET DEFAULT nextval('public.mdl_cohort_id_seq'::regclass); + + +-- +-- TOC entry 6123 (class 2604 OID 18336) +-- Name: mdl_cohort_members id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_cohort_members ALTER COLUMN id SET DEFAULT nextval('public.mdl_cohort_members_id_seq'::regclass); + + +-- +-- TOC entry 6206 (class 2604 OID 18653) +-- Name: mdl_comments id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_comments ALTER COLUMN id SET DEFAULT nextval('public.mdl_comments_id_seq'::regclass); + + +-- +-- TOC entry 6372 (class 2604 OID 19279) +-- Name: mdl_competency id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency ALTER COLUMN id SET DEFAULT nextval('public.mdl_competency_id_seq'::regclass); + + +-- +-- TOC entry 6382 (class 2604 OID 19320) +-- Name: mdl_competency_coursecomp id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_coursecomp ALTER COLUMN id SET DEFAULT nextval('public.mdl_competency_coursecomp_id_seq'::regclass); + + +-- +-- TOC entry 6377 (class 2604 OID 19296) +-- Name: mdl_competency_coursecompsetting id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_coursecompsetting ALTER COLUMN id SET DEFAULT nextval('public.mdl_competency_coursecompsetting_id_seq'::regclass); + + +-- +-- TOC entry 6399 (class 2604 OID 19428) +-- Name: mdl_competency_evidence id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_evidence ALTER COLUMN id SET DEFAULT nextval('public.mdl_competency_evidence_id_seq'::regclass); + + +-- +-- TOC entry 6378 (class 2604 OID 19305) +-- Name: mdl_competency_framework id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_framework ALTER COLUMN id SET DEFAULT nextval('public.mdl_competency_framework_id_seq'::regclass); + + +-- +-- TOC entry 6405 (class 2604 OID 19465) +-- Name: mdl_competency_modulecomp id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_modulecomp ALTER COLUMN id SET DEFAULT nextval('public.mdl_competency_modulecomp_id_seq'::regclass); + + +-- +-- TOC entry 6383 (class 2604 OID 19332) +-- Name: mdl_competency_plan id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_plan ALTER COLUMN id SET DEFAULT nextval('public.mdl_competency_plan_id_seq'::regclass); + + +-- +-- TOC entry 6398 (class 2604 OID 19419) +-- Name: mdl_competency_plancomp id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_plancomp ALTER COLUMN id SET DEFAULT nextval('public.mdl_competency_plancomp_id_seq'::regclass); + + +-- +-- TOC entry 6393 (class 2604 OID 19383) +-- Name: mdl_competency_relatedcomp id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_relatedcomp ALTER COLUMN id SET DEFAULT nextval('public.mdl_competency_relatedcomp_id_seq'::regclass); + + +-- +-- TOC entry 6388 (class 2604 OID 19350) +-- Name: mdl_competency_template id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_template ALTER COLUMN id SET DEFAULT nextval('public.mdl_competency_template_id_seq'::regclass); + + +-- +-- TOC entry 6392 (class 2604 OID 19373) +-- Name: mdl_competency_templatecohort id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_templatecohort ALTER COLUMN id SET DEFAULT nextval('public.mdl_competency_templatecohort_id_seq'::regclass); + + +-- +-- TOC entry 6391 (class 2604 OID 19363) +-- Name: mdl_competency_templatecomp id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_templatecomp ALTER COLUMN id SET DEFAULT nextval('public.mdl_competency_templatecomp_id_seq'::regclass); + + +-- +-- TOC entry 6394 (class 2604 OID 19391) +-- Name: mdl_competency_usercomp id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_usercomp ALTER COLUMN id SET DEFAULT nextval('public.mdl_competency_usercomp_id_seq'::regclass); + + +-- +-- TOC entry 6396 (class 2604 OID 19401) +-- Name: mdl_competency_usercompcourse id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_usercompcourse ALTER COLUMN id SET DEFAULT nextval('public.mdl_competency_usercompcourse_id_seq'::regclass); + + +-- +-- TOC entry 6397 (class 2604 OID 19410) +-- Name: mdl_competency_usercompplan id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_usercompplan ALTER COLUMN id SET DEFAULT nextval('public.mdl_competency_usercompplan_id_seq'::regclass); + + +-- +-- TOC entry 6402 (class 2604 OID 19442) +-- Name: mdl_competency_userevidence id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_userevidence ALTER COLUMN id SET DEFAULT nextval('public.mdl_competency_userevidence_id_seq'::regclass); + + +-- +-- TOC entry 6404 (class 2604 OID 19455) +-- Name: mdl_competency_userevidencecomp id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_userevidencecomp ALTER COLUMN id SET DEFAULT nextval('public.mdl_competency_userevidencecomp_id_seq'::regclass); + + +-- +-- TOC entry 5441 (class 2604 OID 16390) +-- Name: mdl_config id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_config ALTER COLUMN id SET DEFAULT nextval('public.mdl_config_id_seq'::regclass); + + +-- +-- TOC entry 5446 (class 2604 OID 16417) +-- Name: mdl_config_log id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_config_log ALTER COLUMN id SET DEFAULT nextval('public.mdl_config_log_id_seq'::regclass); + + +-- +-- TOC entry 5443 (class 2604 OID 16403) +-- Name: mdl_config_plugins id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_config_plugins ALTER COLUMN id SET DEFAULT nextval('public.mdl_config_plugins_id_seq'::regclass); + + +-- +-- TOC entry 6485 (class 2604 OID 19832) +-- Name: mdl_contentbank_content id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_contentbank_content ALTER COLUMN id SET DEFAULT nextval('public.mdl_contentbank_content_id_seq'::regclass); + + +-- +-- TOC entry 5788 (class 2604 OID 17341) +-- Name: mdl_context id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_context ALTER COLUMN id SET DEFAULT nextval('public.mdl_context_id_seq'::regclass); + + +-- +-- TOC entry 5450 (class 2604 OID 16446) +-- Name: mdl_course id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course ALTER COLUMN id SET DEFAULT nextval('public.mdl_course_id_seq'::regclass); + + +-- +-- TOC entry 5481 (class 2604 OID 16491) +-- Name: mdl_course_categories id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_categories ALTER COLUMN id SET DEFAULT nextval('public.mdl_course_categories_id_seq'::regclass); + + +-- +-- TOC entry 5492 (class 2604 OID 16513) +-- Name: mdl_course_completion_aggr_methd id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_completion_aggr_methd ALTER COLUMN id SET DEFAULT nextval('public.mdl_course_completion_aggr_methd_id_seq'::regclass); + + +-- +-- TOC entry 5498 (class 2604 OID 16537) +-- Name: mdl_course_completion_crit_compl id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_completion_crit_compl ALTER COLUMN id SET DEFAULT nextval('public.mdl_course_completion_crit_compl_id_seq'::regclass); + + +-- +-- TOC entry 5495 (class 2604 OID 16526) +-- Name: mdl_course_completion_criteria id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_completion_criteria ALTER COLUMN id SET DEFAULT nextval('public.mdl_course_completion_criteria_id_seq'::regclass); + + +-- +-- TOC entry 6418 (class 2604 OID 19530) +-- Name: mdl_course_completion_defaults id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_completion_defaults ALTER COLUMN id SET DEFAULT nextval('public.mdl_course_completion_defaults_id_seq'::regclass); + + +-- +-- TOC entry 5502 (class 2604 OID 16553) +-- Name: mdl_course_completions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_completions ALTER COLUMN id SET DEFAULT nextval('public.mdl_course_completions_id_seq'::regclass); + + +-- +-- TOC entry 5560 (class 2604 OID 16692) +-- Name: mdl_course_format_options id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_format_options ALTER COLUMN id SET DEFAULT nextval('public.mdl_course_format_options_id_seq'::regclass); + + +-- +-- TOC entry 5528 (class 2604 OID 16613) +-- Name: mdl_course_modules id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_modules ALTER COLUMN id SET DEFAULT nextval('public.mdl_course_modules_id_seq'::regclass); + + +-- +-- TOC entry 5546 (class 2604 OID 16647) +-- Name: mdl_course_modules_completion id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_modules_completion ALTER COLUMN id SET DEFAULT nextval('public.mdl_course_modules_completion_id_seq'::regclass); + + +-- +-- TOC entry 6257 (class 2604 OID 18858) +-- Name: mdl_course_published id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_published ALTER COLUMN id SET DEFAULT nextval('public.mdl_course_published_id_seq'::regclass); + + +-- +-- TOC entry 5553 (class 2604 OID 16674) +-- Name: mdl_course_request id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_request ALTER COLUMN id SET DEFAULT nextval('public.mdl_course_request_id_seq'::regclass); + + +-- +-- TOC entry 5547 (class 2604 OID 16657) +-- Name: mdl_course_sections id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_sections ALTER COLUMN id SET DEFAULT nextval('public.mdl_course_sections_id_seq'::regclass); + + +-- +-- TOC entry 6459 (class 2604 OID 19718) +-- Name: mdl_customfield_category id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_customfield_category ALTER COLUMN id SET DEFAULT nextval('public.mdl_customfield_category_id_seq'::regclass); + + +-- +-- TOC entry 6468 (class 2604 OID 19751) +-- Name: mdl_customfield_data id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_customfield_data ALTER COLUMN id SET DEFAULT nextval('public.mdl_customfield_data_id_seq'::regclass); + + +-- +-- TOC entry 6464 (class 2604 OID 19735) +-- Name: mdl_customfield_field id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_customfield_field ALTER COLUMN id SET DEFAULT nextval('public.mdl_customfield_field_id_seq'::regclass); + + +-- +-- TOC entry 6806 (class 2604 OID 20627) +-- Name: mdl_data id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_data ALTER COLUMN id SET DEFAULT nextval('public.mdl_data_id_seq'::regclass); + + +-- +-- TOC entry 6843 (class 2604 OID 20695) +-- Name: mdl_data_content id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_data_content ALTER COLUMN id SET DEFAULT nextval('public.mdl_data_content_id_seq'::regclass); + + +-- +-- TOC entry 6831 (class 2604 OID 20663) +-- Name: mdl_data_fields id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_data_fields ALTER COLUMN id SET DEFAULT nextval('public.mdl_data_fields_id_seq'::regclass); + + +-- +-- TOC entry 6836 (class 2604 OID 20680) +-- Name: mdl_data_records id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_data_records ALTER COLUMN id SET DEFAULT nextval('public.mdl_data_records_id_seq'::regclass); + + +-- +-- TOC entry 7605 (class 2604 OID 22596) +-- Name: mdl_editor_atto_autosave id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_editor_atto_autosave ALTER COLUMN id SET DEFAULT nextval('public.mdl_editor_atto_autosave_id_seq'::regclass); + + +-- +-- TOC entry 5508 (class 2604 OID 16570) +-- Name: mdl_enrol id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol ALTER COLUMN id SET DEFAULT nextval('public.mdl_enrol_id_seq'::regclass); + + +-- +-- TOC entry 7533 (class 2604 OID 22327) +-- Name: mdl_enrol_flatfile id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_flatfile ALTER COLUMN id SET DEFAULT nextval('public.mdl_enrol_flatfile_id_seq'::regclass); + + +-- +-- TOC entry 7551 (class 2604 OID 22379) +-- Name: mdl_enrol_lti_lti2_consumer id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_lti_lti2_consumer ALTER COLUMN id SET DEFAULT nextval('public.mdl_enrol_lti_lti2_consumer_id_seq'::regclass); + + +-- +-- TOC entry 7557 (class 2604 OID 22408) +-- Name: mdl_enrol_lti_lti2_context id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_lti_lti2_context ALTER COLUMN id SET DEFAULT nextval('public.mdl_enrol_lti_lti2_context_id_seq'::regclass); + + +-- +-- TOC entry 7559 (class 2604 OID 22421) +-- Name: mdl_enrol_lti_lti2_nonce id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_lti_lti2_nonce ALTER COLUMN id SET DEFAULT nextval('public.mdl_enrol_lti_lti2_nonce_id_seq'::regclass); + + +-- +-- TOC entry 7561 (class 2604 OID 22431) +-- Name: mdl_enrol_lti_lti2_resource_link id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_lti_lti2_resource_link ALTER COLUMN id SET DEFAULT nextval('public.mdl_enrol_lti_lti2_resource_link_id_seq'::regclass); + + +-- +-- TOC entry 7563 (class 2604 OID 22446) +-- Name: mdl_enrol_lti_lti2_share_key id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_lti_lti2_share_key ALTER COLUMN id SET DEFAULT nextval('public.mdl_enrol_lti_lti2_share_key_id_seq'::regclass); + + +-- +-- TOC entry 7555 (class 2604 OID 22394) +-- Name: mdl_enrol_lti_lti2_tool_proxy id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_lti_lti2_tool_proxy ALTER COLUMN id SET DEFAULT nextval('public.mdl_enrol_lti_lti2_tool_proxy_id_seq'::regclass); + + +-- +-- TOC entry 7565 (class 2604 OID 22457) +-- Name: mdl_enrol_lti_lti2_user_result id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_lti_lti2_user_result ALTER COLUMN id SET DEFAULT nextval('public.mdl_enrol_lti_lti2_user_result_id_seq'::regclass); + + +-- +-- TOC entry 7568 (class 2604 OID 22471) +-- Name: mdl_enrol_lti_tool_consumer_map id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_lti_tool_consumer_map ALTER COLUMN id SET DEFAULT nextval('public.mdl_enrol_lti_tool_consumer_map_id_seq'::regclass); + + +-- +-- TOC entry 7538 (class 2604 OID 22342) +-- Name: mdl_enrol_lti_tools id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_lti_tools ALTER COLUMN id SET DEFAULT nextval('public.mdl_enrol_lti_tools_id_seq'::regclass); + + +-- +-- TOC entry 7550 (class 2604 OID 22366) +-- Name: mdl_enrol_lti_users id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_lti_users ALTER COLUMN id SET DEFAULT nextval('public.mdl_enrol_lti_users_id_seq'::regclass); + + +-- +-- TOC entry 7569 (class 2604 OID 22481) +-- Name: mdl_enrol_paypal id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_paypal ALTER COLUMN id SET DEFAULT nextval('public.mdl_enrol_paypal_id_seq'::regclass); + + +-- +-- TOC entry 5570 (class 2604 OID 16735) +-- Name: mdl_event id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_event ALTER COLUMN id SET DEFAULT nextval('public.mdl_event_id_seq'::regclass); + + +-- +-- TOC entry 6270 (class 2604 OID 18913) +-- Name: mdl_event_subscriptions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_event_subscriptions ALTER COLUMN id SET DEFAULT nextval('public.mdl_event_subscriptions_id_seq'::regclass); + + +-- +-- TOC entry 5973 (class 2604 OID 17894) +-- Name: mdl_events_handlers id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_events_handlers ALTER COLUMN id SET DEFAULT nextval('public.mdl_events_handlers_id_seq'::regclass); + + +-- +-- TOC entry 5972 (class 2604 OID 17882) +-- Name: mdl_events_queue id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_events_queue ALTER COLUMN id SET DEFAULT nextval('public.mdl_events_queue_id_seq'::regclass); + + +-- +-- TOC entry 5979 (class 2604 OID 17911) +-- Name: mdl_events_queue_handlers id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_events_queue_handlers ALTER COLUMN id SET DEFAULT nextval('public.mdl_events_queue_handlers_id_seq'::regclass); + + +-- +-- TOC entry 6213 (class 2604 OID 18683) +-- Name: mdl_external_functions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_external_functions ALTER COLUMN id SET DEFAULT nextval('public.mdl_external_functions_id_seq'::regclass); + + +-- +-- TOC entry 6209 (class 2604 OID 18668) +-- Name: mdl_external_services id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_external_services ALTER COLUMN id SET DEFAULT nextval('public.mdl_external_services_id_seq'::regclass); + + +-- +-- TOC entry 6218 (class 2604 OID 18699) +-- Name: mdl_external_services_functions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_external_services_functions ALTER COLUMN id SET DEFAULT nextval('public.mdl_external_services_functions_id_seq'::regclass); + + +-- +-- TOC entry 6220 (class 2604 OID 18709) +-- Name: mdl_external_services_users id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_external_services_users ALTER COLUMN id SET DEFAULT nextval('public.mdl_external_services_users_id_seq'::regclass); + + +-- +-- TOC entry 6221 (class 2604 OID 18719) +-- Name: mdl_external_tokens id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_external_tokens ALTER COLUMN id SET DEFAULT nextval('public.mdl_external_tokens_id_seq'::regclass); + + +-- +-- TOC entry 6456 (class 2604 OID 19705) +-- Name: mdl_favourite id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_favourite ALTER COLUMN id SET DEFAULT nextval('public.mdl_favourite_id_seq'::regclass); + + +-- +-- TOC entry 6846 (class 2604 OID 20710) +-- Name: mdl_feedback id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_feedback ALTER COLUMN id SET DEFAULT nextval('public.mdl_feedback_id_seq'::regclass); + + +-- +-- TOC entry 6877 (class 2604 OID 20772) +-- Name: mdl_feedback_completed id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_feedback_completed ALTER COLUMN id SET DEFAULT nextval('public.mdl_feedback_completed_id_seq'::regclass); + + +-- +-- TOC entry 6884 (class 2604 OID 20788) +-- Name: mdl_feedback_completedtmp id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_feedback_completedtmp ALTER COLUMN id SET DEFAULT nextval('public.mdl_feedback_completedtmp_id_seq'::regclass); + + +-- +-- TOC entry 6865 (class 2604 OID 20748) +-- Name: mdl_feedback_item id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_feedback_item ALTER COLUMN id SET DEFAULT nextval('public.mdl_feedback_item_id_seq'::regclass); + + +-- +-- TOC entry 6902 (class 2604 OID 20841) +-- Name: mdl_feedback_sitecourse_map id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_feedback_sitecourse_map ALTER COLUMN id SET DEFAULT nextval('public.mdl_feedback_sitecourse_map_id_seq'::regclass); + + +-- +-- TOC entry 6861 (class 2604 OID 20736) +-- Name: mdl_feedback_template id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_feedback_template ALTER COLUMN id SET DEFAULT nextval('public.mdl_feedback_template_id_seq'::regclass); + + +-- +-- TOC entry 6892 (class 2604 OID 20805) +-- Name: mdl_feedback_value id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_feedback_value ALTER COLUMN id SET DEFAULT nextval('public.mdl_feedback_value_id_seq'::regclass); + + +-- +-- TOC entry 6897 (class 2604 OID 20823) +-- Name: mdl_feedback_valuetmp id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_feedback_valuetmp ALTER COLUMN id SET DEFAULT nextval('public.mdl_feedback_valuetmp_id_seq'::regclass); + + +-- +-- TOC entry 6173 (class 2604 OID 18542) +-- Name: mdl_file_conversion id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_file_conversion ALTER COLUMN id SET DEFAULT nextval('public.mdl_file_conversion_id_seq'::regclass); + + +-- +-- TOC entry 6162 (class 2604 OID 18502) +-- Name: mdl_files id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_files ALTER COLUMN id SET DEFAULT nextval('public.mdl_files_id_seq'::regclass); + + +-- +-- TOC entry 6171 (class 2604 OID 18528) +-- Name: mdl_files_reference id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_files_reference ALTER COLUMN id SET DEFAULT nextval('public.mdl_files_reference_id_seq'::regclass); + + +-- +-- TOC entry 5564 (class 2604 OID 16708) +-- Name: mdl_filter_active id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_filter_active ALTER COLUMN id SET DEFAULT nextval('public.mdl_filter_active_id_seq'::regclass); + + +-- +-- TOC entry 5567 (class 2604 OID 16720) +-- Name: mdl_filter_config id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_filter_config ALTER COLUMN id SET DEFAULT nextval('public.mdl_filter_config_id_seq'::regclass); + + +-- +-- TOC entry 6905 (class 2604 OID 20853) +-- Name: mdl_folder id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_folder ALTER COLUMN id SET DEFAULT nextval('public.mdl_folder_id_seq'::regclass); + + +-- +-- TOC entry 6914 (class 2604 OID 20873) +-- Name: mdl_forum id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_forum ALTER COLUMN id SET DEFAULT nextval('public.mdl_forum_id_seq'::regclass); + + +-- +-- TOC entry 6979 (class 2604 OID 20995) +-- Name: mdl_forum_digests id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_forum_digests ALTER COLUMN id SET DEFAULT nextval('public.mdl_forum_digests_id_seq'::regclass); + + +-- +-- TOC entry 6991 (class 2604 OID 21035) +-- Name: mdl_forum_discussion_subs id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_forum_discussion_subs ALTER COLUMN id SET DEFAULT nextval('public.mdl_forum_discussion_subs_id_seq'::regclass); + + +-- +-- TOC entry 6942 (class 2604 OID 20912) +-- Name: mdl_forum_discussions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_forum_discussions ALTER COLUMN id SET DEFAULT nextval('public.mdl_forum_discussions_id_seq'::regclass); + + +-- +-- TOC entry 6993 (class 2604 OID 21048) +-- Name: mdl_forum_grades id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_forum_grades ALTER COLUMN id SET DEFAULT nextval('public.mdl_forum_grades_id_seq'::regclass); + + +-- +-- TOC entry 6956 (class 2604 OID 20936) +-- Name: mdl_forum_posts id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_forum_posts ALTER COLUMN id SET DEFAULT nextval('public.mdl_forum_posts_id_seq'::regclass); + + +-- +-- TOC entry 6971 (class 2604 OID 20967) +-- Name: mdl_forum_queue id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_forum_queue ALTER COLUMN id SET DEFAULT nextval('public.mdl_forum_queue_id_seq'::regclass); + + +-- +-- TOC entry 6981 (class 2604 OID 21007) +-- Name: mdl_forum_read id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_forum_read ALTER COLUMN id SET DEFAULT nextval('public.mdl_forum_read_id_seq'::regclass); + + +-- +-- TOC entry 6976 (class 2604 OID 20982) +-- Name: mdl_forum_subscriptions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_forum_subscriptions ALTER COLUMN id SET DEFAULT nextval('public.mdl_forum_subscriptions_id_seq'::regclass); + + +-- +-- TOC entry 6988 (class 2604 OID 21024) +-- Name: mdl_forum_track_prefs id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_forum_track_prefs ALTER COLUMN id SET DEFAULT nextval('public.mdl_forum_track_prefs_id_seq'::regclass); + + +-- +-- TOC entry 6994 (class 2604 OID 21062) +-- Name: mdl_glossary id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_glossary ALTER COLUMN id SET DEFAULT nextval('public.mdl_glossary_id_seq'::regclass); + + +-- +-- TOC entry 7036 (class 2604 OID 21128) +-- Name: mdl_glossary_alias id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_glossary_alias ALTER COLUMN id SET DEFAULT nextval('public.mdl_glossary_alias_id_seq'::regclass); + + +-- +-- TOC entry 7039 (class 2604 OID 21139) +-- Name: mdl_glossary_categories id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_glossary_categories ALTER COLUMN id SET DEFAULT nextval('public.mdl_glossary_categories_id_seq'::regclass); + + +-- +-- TOC entry 7021 (class 2604 OID 21100) +-- Name: mdl_glossary_entries id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_glossary_entries ALTER COLUMN id SET DEFAULT nextval('public.mdl_glossary_entries_id_seq'::regclass); + + +-- +-- TOC entry 7043 (class 2604 OID 21151) +-- Name: mdl_glossary_entries_categories id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_glossary_entries_categories ALTER COLUMN id SET DEFAULT nextval('public.mdl_glossary_entries_categories_id_seq'::regclass); + + +-- +-- TOC entry 7046 (class 2604 OID 21163) +-- Name: mdl_glossary_formats id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_glossary_formats ALTER COLUMN id SET DEFAULT nextval('public.mdl_glossary_formats_id_seq'::regclass); + + +-- +-- TOC entry 5984 (class 2604 OID 17952) +-- Name: mdl_grade_categories id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_categories ALTER COLUMN id SET DEFAULT nextval('public.mdl_grade_categories_id_seq'::regclass); + + +-- +-- TOC entry 6026 (class 2604 OID 18056) +-- Name: mdl_grade_categories_history id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_categories_history ALTER COLUMN id SET DEFAULT nextval('public.mdl_grade_categories_history_id_seq'::regclass); + + +-- +-- TOC entry 6010 (class 2604 OID 18008) +-- Name: mdl_grade_grades id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_grades ALTER COLUMN id SET DEFAULT nextval('public.mdl_grade_grades_id_seq'::regclass); + + +-- +-- TOC entry 6055 (class 2604 OID 18119) +-- Name: mdl_grade_grades_history id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_grades_history ALTER COLUMN id SET DEFAULT nextval('public.mdl_grade_grades_history_id_seq'::regclass); + + +-- +-- TOC entry 6067 (class 2604 OID 18150) +-- Name: mdl_grade_import_newitem id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_import_newitem ALTER COLUMN id SET DEFAULT nextval('public.mdl_grade_import_newitem_id_seq'::regclass); + + +-- +-- TOC entry 6069 (class 2604 OID 18160) +-- Name: mdl_grade_import_values id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_import_values ALTER COLUMN id SET DEFAULT nextval('public.mdl_grade_import_values_id_seq'::regclass); + + +-- +-- TOC entry 5993 (class 2604 OID 17973) +-- Name: mdl_grade_items id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_items ALTER COLUMN id SET DEFAULT nextval('public.mdl_grade_items_id_seq'::regclass); + + +-- +-- TOC entry 6037 (class 2604 OID 18083) +-- Name: mdl_grade_items_history id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_items_history ALTER COLUMN id SET DEFAULT nextval('public.mdl_grade_items_history_id_seq'::regclass); + + +-- +-- TOC entry 6130 (class 2604 OID 18365) +-- Name: mdl_grade_letters id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_letters ALTER COLUMN id SET DEFAULT nextval('public.mdl_grade_letters_id_seq'::regclass); + + +-- +-- TOC entry 5980 (class 2604 OID 17924) +-- Name: mdl_grade_outcomes id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_outcomes ALTER COLUMN id SET DEFAULT nextval('public.mdl_grade_outcomes_id_seq'::regclass); + + +-- +-- TOC entry 5983 (class 2604 OID 17941) +-- Name: mdl_grade_outcomes_courses id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_outcomes_courses ALTER COLUMN id SET DEFAULT nextval('public.mdl_grade_outcomes_courses_id_seq'::regclass); + + +-- +-- TOC entry 6022 (class 2604 OID 18036) +-- Name: mdl_grade_outcomes_history id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_outcomes_history ALTER COLUMN id SET DEFAULT nextval('public.mdl_grade_outcomes_history_id_seq'::regclass); + + +-- +-- TOC entry 6136 (class 2604 OID 18391) +-- Name: mdl_grade_settings id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_settings ALTER COLUMN id SET DEFAULT nextval('public.mdl_grade_settings_id_seq'::regclass); + + +-- +-- TOC entry 6260 (class 2604 OID 18868) +-- Name: mdl_grading_areas id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grading_areas ALTER COLUMN id SET DEFAULT nextval('public.mdl_grading_areas_id_seq'::regclass); + + +-- +-- TOC entry 6263 (class 2604 OID 18880) +-- Name: mdl_grading_definitions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grading_definitions ALTER COLUMN id SET DEFAULT nextval('public.mdl_grading_definitions_id_seq'::regclass); + + +-- +-- TOC entry 6268 (class 2604 OID 18899) +-- Name: mdl_grading_instances id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grading_instances ALTER COLUMN id SET DEFAULT nextval('public.mdl_grading_instances_id_seq'::regclass); + + +-- +-- TOC entry 7613 (class 2604 OID 22639) +-- Name: mdl_gradingform_guide_comments id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_gradingform_guide_comments ALTER COLUMN id SET DEFAULT nextval('public.mdl_gradingform_guide_comments_id_seq'::regclass); + + +-- +-- TOC entry 7610 (class 2604 OID 22612) +-- Name: mdl_gradingform_guide_criteria id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_gradingform_guide_criteria ALTER COLUMN id SET DEFAULT nextval('public.mdl_gradingform_guide_criteria_id_seq'::regclass); + + +-- +-- TOC entry 7612 (class 2604 OID 22625) +-- Name: mdl_gradingform_guide_fillings id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_gradingform_guide_fillings ALTER COLUMN id SET DEFAULT nextval('public.mdl_gradingform_guide_fillings_id_seq'::regclass); + + +-- +-- TOC entry 7614 (class 2604 OID 22651) +-- Name: mdl_gradingform_rubric_criteria id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_gradingform_rubric_criteria ALTER COLUMN id SET DEFAULT nextval('public.mdl_gradingform_rubric_criteria_id_seq'::regclass); + + +-- +-- TOC entry 7616 (class 2604 OID 22675) +-- Name: mdl_gradingform_rubric_fillings id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_gradingform_rubric_fillings ALTER COLUMN id SET DEFAULT nextval('public.mdl_gradingform_rubric_fillings_id_seq'::regclass); + + +-- +-- TOC entry 7615 (class 2604 OID 22663) +-- Name: mdl_gradingform_rubric_levels id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_gradingform_rubric_levels ALTER COLUMN id SET DEFAULT nextval('public.mdl_gradingform_rubric_levels_id_seq'::regclass); + + +-- +-- TOC entry 6102 (class 2604 OID 18273) +-- Name: mdl_groupings id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_groupings ALTER COLUMN id SET DEFAULT nextval('public.mdl_groupings_id_seq'::regclass); + + +-- +-- TOC entry 6115 (class 2604 OID 18308) +-- Name: mdl_groupings_groups id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_groupings_groups ALTER COLUMN id SET DEFAULT nextval('public.mdl_groupings_groups_id_seq'::regclass); + + +-- +-- TOC entry 6094 (class 2604 OID 18253) +-- Name: mdl_groups id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_groups ALTER COLUMN id SET DEFAULT nextval('public.mdl_groups_id_seq'::regclass); + + +-- +-- TOC entry 6109 (class 2604 OID 18292) +-- Name: mdl_groups_members id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_groups_members ALTER COLUMN id SET DEFAULT nextval('public.mdl_groups_members_id_seq'::regclass); + + +-- +-- TOC entry 6476 (class 2604 OID 19795) +-- Name: mdl_h5p id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_h5p ALTER COLUMN id SET DEFAULT nextval('public.mdl_h5p_id_seq'::regclass); + + +-- +-- TOC entry 6481 (class 2604 OID 19811) +-- Name: mdl_h5p_contents_libraries id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_h5p_contents_libraries ALTER COLUMN id SET DEFAULT nextval('public.mdl_h5p_contents_libraries_id_seq'::regclass); + + +-- +-- TOC entry 6469 (class 2604 OID 19768) +-- Name: mdl_h5p_libraries id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_h5p_libraries ALTER COLUMN id SET DEFAULT nextval('public.mdl_h5p_libraries_id_seq'::regclass); + + +-- +-- TOC entry 6483 (class 2604 OID 19822) +-- Name: mdl_h5p_libraries_cachedassets id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_h5p_libraries_cachedassets ALTER COLUMN id SET DEFAULT nextval('public.mdl_h5p_libraries_cachedassets_id_seq'::regclass); + + +-- +-- TOC entry 6474 (class 2604 OID 19784) +-- Name: mdl_h5p_library_dependencies id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_h5p_library_dependencies ALTER COLUMN id SET DEFAULT nextval('public.mdl_h5p_library_dependencies_id_seq'::regclass); + + +-- +-- TOC entry 7055 (class 2604 OID 21179) +-- Name: mdl_h5pactivity id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_h5pactivity ALTER COLUMN id SET DEFAULT nextval('public.mdl_h5pactivity_id_seq'::regclass); + + +-- +-- TOC entry 7063 (class 2604 OID 21198) +-- Name: mdl_h5pactivity_attempts id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_h5pactivity_attempts ALTER COLUMN id SET DEFAULT nextval('public.mdl_h5pactivity_attempts_id_seq'::regclass); + + +-- +-- TOC entry 7069 (class 2604 OID 21216) +-- Name: mdl_h5pactivity_attempts_results id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_h5pactivity_attempts_results ALTER COLUMN id SET DEFAULT nextval('public.mdl_h5pactivity_attempts_results_id_seq'::regclass); + + +-- +-- TOC entry 7073 (class 2604 OID 21232) +-- Name: mdl_imscp id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_imscp ALTER COLUMN id SET DEFAULT nextval('public.mdl_imscp_id_seq'::regclass); + + +-- +-- TOC entry 7080 (class 2604 OID 21250) +-- Name: mdl_label id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_label ALTER COLUMN id SET DEFAULT nextval('public.mdl_label_id_seq'::regclass); + + +-- +-- TOC entry 7085 (class 2604 OID 21266) +-- Name: mdl_lesson id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lesson ALTER COLUMN id SET DEFAULT nextval('public.mdl_lesson_id_seq'::regclass); + + +-- +-- TOC entry 7137 (class 2604 OID 21340) +-- Name: mdl_lesson_answers id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lesson_answers ALTER COLUMN id SET DEFAULT nextval('public.mdl_lesson_answers_id_seq'::regclass); + + +-- +-- TOC entry 7148 (class 2604 OID 21363) +-- Name: mdl_lesson_attempts id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lesson_attempts ALTER COLUMN id SET DEFAULT nextval('public.mdl_lesson_attempts_id_seq'::regclass); + + +-- +-- TOC entry 7169 (class 2604 OID 21416) +-- Name: mdl_lesson_branch id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lesson_branch ALTER COLUMN id SET DEFAULT nextval('public.mdl_lesson_branch_id_seq'::regclass); + + +-- +-- TOC entry 7156 (class 2604 OID 21385) +-- Name: mdl_lesson_grades id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lesson_grades ALTER COLUMN id SET DEFAULT nextval('public.mdl_lesson_grades_id_seq'::regclass); + + +-- +-- TOC entry 7177 (class 2604 OID 21434) +-- Name: mdl_lesson_overrides id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lesson_overrides ALTER COLUMN id SET DEFAULT nextval('public.mdl_lesson_overrides_id_seq'::regclass); + + +-- +-- TOC entry 7125 (class 2604 OID 21317) +-- Name: mdl_lesson_pages id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lesson_pages ALTER COLUMN id SET DEFAULT nextval('public.mdl_lesson_pages_id_seq'::regclass); + + +-- +-- TOC entry 7162 (class 2604 OID 21400) +-- Name: mdl_lesson_timer id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lesson_timer ALTER COLUMN id SET DEFAULT nextval('public.mdl_lesson_timer_id_seq'::regclass); + + +-- +-- TOC entry 6232 (class 2604 OID 18774) +-- Name: mdl_license id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_license ALTER COLUMN id SET DEFAULT nextval('public.mdl_license_id_seq'::regclass); + + +-- +-- TOC entry 6344 (class 2604 OID 19178) +-- Name: mdl_lock_db id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lock_db ALTER COLUMN id SET DEFAULT nextval('public.mdl_lock_db_id_seq'::regclass); + + +-- +-- TOC entry 5592 (class 2604 OID 16790) +-- Name: mdl_log id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_log ALTER COLUMN id SET DEFAULT nextval('public.mdl_log_id_seq'::regclass); + + +-- +-- TOC entry 5604 (class 2604 OID 16824) +-- Name: mdl_log_display id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_log_display ALTER COLUMN id SET DEFAULT nextval('public.mdl_log_display_id_seq'::regclass); + + +-- +-- TOC entry 5602 (class 2604 OID 16812) +-- Name: mdl_log_queries id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_log_queries ALTER COLUMN id SET DEFAULT nextval('public.mdl_log_queries_id_seq'::regclass); + + +-- +-- TOC entry 7784 (class 2604 OID 23378) +-- Name: mdl_logstore_standard_log id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_logstore_standard_log ALTER COLUMN id SET DEFAULT nextval('public.mdl_logstore_standard_log_id_seq'::regclass); + + +-- +-- TOC entry 7179 (class 2604 OID 21446) +-- Name: mdl_lti id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lti ALTER COLUMN id SET DEFAULT nextval('public.mdl_lti_id_seq'::regclass); + + +-- +-- TOC entry 7203 (class 2604 OID 21538) +-- Name: mdl_lti_access_tokens id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lti_access_tokens ALTER COLUMN id SET DEFAULT nextval('public.mdl_lti_access_tokens_id_seq'::regclass); + + +-- +-- TOC entry 7202 (class 2604 OID 21529) +-- Name: mdl_lti_submission id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lti_submission ALTER COLUMN id SET DEFAULT nextval('public.mdl_lti_submission_id_seq'::regclass); + + +-- +-- TOC entry 7190 (class 2604 OID 21468) +-- Name: mdl_lti_tool_proxies id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lti_tool_proxies ALTER COLUMN id SET DEFAULT nextval('public.mdl_lti_tool_proxies_id_seq'::regclass); + + +-- +-- TOC entry 7201 (class 2604 OID 21514) +-- Name: mdl_lti_tool_settings id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lti_tool_settings ALTER COLUMN id SET DEFAULT nextval('public.mdl_lti_tool_settings_id_seq'::regclass); + + +-- +-- TOC entry 7193 (class 2604 OID 21482) +-- Name: mdl_lti_types id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lti_types ALTER COLUMN id SET DEFAULT nextval('public.mdl_lti_types_id_seq'::regclass); + + +-- +-- TOC entry 7199 (class 2604 OID 21501) +-- Name: mdl_lti_types_config id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lti_types_config ALTER COLUMN id SET DEFAULT nextval('public.mdl_lti_types_config_id_seq'::regclass); + + +-- +-- TOC entry 7748 (class 2604 OID 23199) +-- Name: mdl_ltiservice_gradebookservices id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_ltiservice_gradebookservices ALTER COLUMN id SET DEFAULT nextval('public.mdl_ltiservice_gradebookservices_id_seq'::regclass); + + +-- +-- TOC entry 5610 (class 2604 OID 16838) +-- Name: mdl_message id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message ALTER COLUMN id SET DEFAULT nextval('public.mdl_message_id_seq'::regclass); + + +-- +-- TOC entry 7590 (class 2604 OID 22517) +-- Name: mdl_message_airnotifier_devices id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_airnotifier_devices ALTER COLUMN id SET DEFAULT nextval('public.mdl_message_airnotifier_devices_id_seq'::regclass); + + +-- +-- TOC entry 5639 (class 2604 OID 16971) +-- Name: mdl_message_contact_requests id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_contact_requests ALTER COLUMN id SET DEFAULT nextval('public.mdl_message_contact_requests_id_seq'::regclass); + + +-- +-- TOC entry 5638 (class 2604 OID 16960) +-- Name: mdl_message_contacts id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_contacts ALTER COLUMN id SET DEFAULT nextval('public.mdl_message_contacts_id_seq'::regclass); + + +-- +-- TOC entry 5634 (class 2604 OID 16925) +-- Name: mdl_message_conversation_actions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_conversation_actions ALTER COLUMN id SET DEFAULT nextval('public.mdl_message_conversation_actions_id_seq'::regclass); + + +-- +-- TOC entry 5633 (class 2604 OID 16915) +-- Name: mdl_message_conversation_members id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_conversation_members ALTER COLUMN id SET DEFAULT nextval('public.mdl_message_conversation_members_id_seq'::regclass); + + +-- +-- TOC entry 5630 (class 2604 OID 16898) +-- Name: mdl_message_conversations id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_conversations ALTER COLUMN id SET DEFAULT nextval('public.mdl_message_conversations_id_seq'::regclass); + + +-- +-- TOC entry 7592 (class 2604 OID 22527) +-- Name: mdl_message_email_messages id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_email_messages ALTER COLUMN id SET DEFAULT nextval('public.mdl_message_email_messages_id_seq'::regclass); + + +-- +-- TOC entry 7593 (class 2604 OID 22538) +-- Name: mdl_message_popup id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_popup ALTER COLUMN id SET DEFAULT nextval('public.mdl_message_popup_id_seq'::regclass); + + +-- +-- TOC entry 7595 (class 2604 OID 22549) +-- Name: mdl_message_popup_notifications id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_popup_notifications ALTER COLUMN id SET DEFAULT nextval('public.mdl_message_popup_notifications_id_seq'::regclass); + + +-- +-- TOC entry 6159 (class 2604 OID 18492) +-- Name: mdl_message_processors id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_processors ALTER COLUMN id SET DEFAULT nextval('public.mdl_message_processors_id_seq'::regclass); + + +-- +-- TOC entry 6156 (class 2604 OID 18478) +-- Name: mdl_message_providers id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_providers ALTER COLUMN id SET DEFAULT nextval('public.mdl_message_providers_id_seq'::regclass); + + +-- +-- TOC entry 5618 (class 2604 OID 16859) +-- Name: mdl_message_read id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_read ALTER COLUMN id SET DEFAULT nextval('public.mdl_message_read_id_seq'::regclass); + + +-- +-- TOC entry 5635 (class 2604 OID 16935) +-- Name: mdl_message_user_actions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_user_actions ALTER COLUMN id SET DEFAULT nextval('public.mdl_message_user_actions_id_seq'::regclass); + + +-- +-- TOC entry 5640 (class 2604 OID 16982) +-- Name: mdl_message_users_blocked id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_users_blocked ALTER COLUMN id SET DEFAULT nextval('public.mdl_message_users_blocked_id_seq'::regclass); + + +-- +-- TOC entry 6370 (class 2604 OID 19257) +-- Name: mdl_messageinbound_datakeys id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_messageinbound_datakeys ALTER COLUMN id SET DEFAULT nextval('public.mdl_messageinbound_datakeys_id_seq'::regclass); + + +-- +-- TOC entry 6364 (class 2604 OID 19243) +-- Name: mdl_messageinbound_handlers id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_messageinbound_handlers ALTER COLUMN id SET DEFAULT nextval('public.mdl_messageinbound_handlers_id_seq'::regclass); + + +-- +-- TOC entry 6371 (class 2604 OID 19267) +-- Name: mdl_messageinbound_messagelist id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_messageinbound_messagelist ALTER COLUMN id SET DEFAULT nextval('public.mdl_messageinbound_messagelist_id_seq'::regclass); + + +-- +-- TOC entry 5627 (class 2604 OID 16882) +-- Name: mdl_messages id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_messages ALTER COLUMN id SET DEFAULT nextval('public.mdl_messages_id_seq'::regclass); + + +-- +-- TOC entry 5899 (class 2604 OID 17712) +-- Name: mdl_mnet_application id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnet_application ALTER COLUMN id SET DEFAULT nextval('public.mdl_mnet_application_id_seq'::regclass); + + +-- +-- TOC entry 5905 (class 2604 OID 17728) +-- Name: mdl_mnet_host id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnet_host ALTER COLUMN id SET DEFAULT nextval('public.mdl_mnet_host_id_seq'::regclass); + + +-- +-- TOC entry 5918 (class 2604 OID 17752) +-- Name: mdl_mnet_host2service id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnet_host2service ALTER COLUMN id SET DEFAULT nextval('public.mdl_mnet_host2service_id_seq'::regclass); + + +-- +-- TOC entry 5923 (class 2604 OID 17765) +-- Name: mdl_mnet_log id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnet_log ALTER COLUMN id SET DEFAULT nextval('public.mdl_mnet_log_id_seq'::regclass); + + +-- +-- TOC entry 5943 (class 2604 OID 17807) +-- Name: mdl_mnet_remote_rpc id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnet_remote_rpc ALTER COLUMN id SET DEFAULT nextval('public.mdl_mnet_remote_rpc_id_seq'::regclass); + + +-- +-- TOC entry 5956 (class 2604 OID 17842) +-- Name: mdl_mnet_remote_service2rpc id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnet_remote_service2rpc ALTER COLUMN id SET DEFAULT nextval('public.mdl_mnet_remote_service2rpc_id_seq'::regclass); + + +-- +-- TOC entry 5936 (class 2604 OID 17789) +-- Name: mdl_mnet_rpc id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnet_rpc ALTER COLUMN id SET DEFAULT nextval('public.mdl_mnet_rpc_id_seq'::regclass); + + +-- +-- TOC entry 5948 (class 2604 OID 17819) +-- Name: mdl_mnet_service id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnet_service ALTER COLUMN id SET DEFAULT nextval('public.mdl_mnet_service_id_seq'::regclass); + + +-- +-- TOC entry 5953 (class 2604 OID 17831) +-- Name: mdl_mnet_service2rpc id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnet_service2rpc ALTER COLUMN id SET DEFAULT nextval('public.mdl_mnet_service2rpc_id_seq'::regclass); + + +-- +-- TOC entry 5959 (class 2604 OID 17853) +-- Name: mdl_mnet_session id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnet_session ALTER COLUMN id SET DEFAULT nextval('public.mdl_mnet_session_id_seq'::regclass); + + +-- +-- TOC entry 5968 (class 2604 OID 17870) +-- Name: mdl_mnet_sso_access_control id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnet_sso_access_control ALTER COLUMN id SET DEFAULT nextval('public.mdl_mnet_sso_access_control_id_seq'::regclass); + + +-- +-- TOC entry 7617 (class 2604 OID 22690) +-- Name: mdl_mnetservice_enrol_courses id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnetservice_enrol_courses ALTER COLUMN id SET DEFAULT nextval('public.mdl_mnetservice_enrol_courses_id_seq'::regclass); + + +-- +-- TOC entry 7625 (class 2604 OID 22709) +-- Name: mdl_mnetservice_enrol_enrolments id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnetservice_enrol_enrolments ALTER COLUMN id SET DEFAULT nextval('public.mdl_mnetservice_enrol_enrolments_id_seq'::regclass); + + +-- +-- TOC entry 5641 (class 2604 OID 16993) +-- Name: mdl_modules id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_modules ALTER COLUMN id SET DEFAULT nextval('public.mdl_modules_id_seq'::regclass); + + +-- +-- TOC entry 5647 (class 2604 OID 17007) +-- Name: mdl_my_pages id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_my_pages ALTER COLUMN id SET DEFAULT nextval('public.mdl_my_pages_id_seq'::regclass); + + +-- +-- TOC entry 5636 (class 2604 OID 16946) +-- Name: mdl_notifications id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_notifications ALTER COLUMN id SET DEFAULT nextval('public.mdl_notifications_id_seq'::regclass); + + +-- +-- TOC entry 6450 (class 2604 OID 19666) +-- Name: mdl_oauth2_access_token id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_oauth2_access_token ALTER COLUMN id SET DEFAULT nextval('public.mdl_oauth2_access_token_id_seq'::regclass); + + +-- +-- TOC entry 6406 (class 2604 OID 19477) +-- Name: mdl_oauth2_endpoint id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_oauth2_endpoint ALTER COLUMN id SET DEFAULT nextval('public.mdl_oauth2_endpoint_id_seq'::regclass); + + +-- +-- TOC entry 6408 (class 2604 OID 19490) +-- Name: mdl_oauth2_issuer id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_oauth2_issuer ALTER COLUMN id SET DEFAULT nextval('public.mdl_oauth2_issuer_id_seq'::regclass); + + +-- +-- TOC entry 6414 (class 2604 OID 19506) +-- Name: mdl_oauth2_system_account id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_oauth2_system_account ALTER COLUMN id SET DEFAULT nextval('public.mdl_oauth2_system_account_id_seq'::regclass); + + +-- +-- TOC entry 6415 (class 2604 OID 19518) +-- Name: mdl_oauth2_user_field_mapping id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_oauth2_user_field_mapping ALTER COLUMN id SET DEFAULT nextval('public.mdl_oauth2_user_field_mapping_id_seq'::regclass); + + +-- +-- TOC entry 7205 (class 2604 OID 21552) +-- Name: mdl_page id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_page ALTER COLUMN id SET DEFAULT nextval('public.mdl_page_id_seq'::regclass); + + +-- +-- TOC entry 6138 (class 2604 OID 18405) +-- Name: mdl_portfolio_instance id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_portfolio_instance ALTER COLUMN id SET DEFAULT nextval('public.mdl_portfolio_instance_id_seq'::regclass); + + +-- +-- TOC entry 6142 (class 2604 OID 18416) +-- Name: mdl_portfolio_instance_config id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_portfolio_instance_config ALTER COLUMN id SET DEFAULT nextval('public.mdl_portfolio_instance_config_id_seq'::regclass); + + +-- +-- TOC entry 6144 (class 2604 OID 18430) +-- Name: mdl_portfolio_instance_user id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_portfolio_instance_user ALTER COLUMN id SET DEFAULT nextval('public.mdl_portfolio_instance_user_id_seq'::regclass); + + +-- +-- TOC entry 6146 (class 2604 OID 18444) +-- Name: mdl_portfolio_log id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_portfolio_log ALTER COLUMN id SET DEFAULT nextval('public.mdl_portfolio_log_id_seq'::regclass); + + +-- +-- TOC entry 7632 (class 2604 OID 22736) +-- Name: mdl_portfolio_mahara_queue id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_portfolio_mahara_queue ALTER COLUMN id SET DEFAULT nextval('public.mdl_portfolio_mahara_queue_id_seq'::regclass); + + +-- +-- TOC entry 6153 (class 2604 OID 18463) +-- Name: mdl_portfolio_tempdata id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_portfolio_tempdata ALTER COLUMN id SET DEFAULT nextval('public.mdl_portfolio_tempdata_id_seq'::regclass); + + +-- +-- TOC entry 5768 (class 2604 OID 17294) +-- Name: mdl_post id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_post ALTER COLUMN id SET DEFAULT nextval('public.mdl_post_id_seq'::regclass); + + +-- +-- TOC entry 6252 (class 2604 OID 18840) +-- Name: mdl_profiling id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_profiling ALTER COLUMN id SET DEFAULT nextval('public.mdl_profiling_id_seq'::regclass); + + +-- +-- TOC entry 6520 (class 2604 OID 19931) +-- Name: mdl_qtype_ddimageortext id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_ddimageortext ALTER COLUMN id SET DEFAULT nextval('public.mdl_qtype_ddimageortext_id_seq'::regclass); + + +-- +-- TOC entry 6533 (class 2604 OID 19966) +-- Name: mdl_qtype_ddimageortext_drags id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_ddimageortext_drags ALTER COLUMN id SET DEFAULT nextval('public.mdl_qtype_ddimageortext_drags_id_seq'::regclass); + + +-- +-- TOC entry 6527 (class 2604 OID 19949) +-- Name: mdl_qtype_ddimageortext_drops id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_ddimageortext_drops ALTER COLUMN id SET DEFAULT nextval('public.mdl_qtype_ddimageortext_drops_id_seq'::regclass); + + +-- +-- TOC entry 6538 (class 2604 OID 19982) +-- Name: mdl_qtype_ddmarker id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_ddmarker ALTER COLUMN id SET DEFAULT nextval('public.mdl_qtype_ddmarker_id_seq'::regclass); + + +-- +-- TOC entry 6550 (class 2604 OID 20016) +-- Name: mdl_qtype_ddmarker_drags id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_ddmarker_drags ALTER COLUMN id SET DEFAULT nextval('public.mdl_qtype_ddmarker_drags_id_seq'::regclass); + + +-- +-- TOC entry 6546 (class 2604 OID 20001) +-- Name: mdl_qtype_ddmarker_drops id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_ddmarker_drops ALTER COLUMN id SET DEFAULT nextval('public.mdl_qtype_ddmarker_drops_id_seq'::regclass); + + +-- +-- TOC entry 6562 (class 2604 OID 20050) +-- Name: mdl_qtype_essay_options id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_essay_options ALTER COLUMN id SET DEFAULT nextval('public.mdl_qtype_essay_options_id_seq'::regclass); + + +-- +-- TOC entry 6577 (class 2604 OID 20087) +-- Name: mdl_qtype_match_options id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_match_options ALTER COLUMN id SET DEFAULT nextval('public.mdl_qtype_match_options_id_seq'::regclass); + + +-- +-- TOC entry 6584 (class 2604 OID 20105) +-- Name: mdl_qtype_match_subquestions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_match_subquestions ALTER COLUMN id SET DEFAULT nextval('public.mdl_qtype_match_subquestions_id_seq'::regclass); + + +-- +-- TOC entry 6590 (class 2604 OID 20133) +-- Name: mdl_qtype_multichoice_options id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_multichoice_options ALTER COLUMN id SET DEFAULT nextval('public.mdl_qtype_multichoice_options_id_seq'::regclass); + + +-- +-- TOC entry 6615 (class 2604 OID 20195) +-- Name: mdl_qtype_randomsamatch_options id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_randomsamatch_options ALTER COLUMN id SET DEFAULT nextval('public.mdl_qtype_randomsamatch_options_id_seq'::regclass); + + +-- +-- TOC entry 6623 (class 2604 OID 20214) +-- Name: mdl_qtype_shortanswer_options id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_shortanswer_options ALTER COLUMN id SET DEFAULT nextval('public.mdl_qtype_shortanswer_options_id_seq'::regclass); + + +-- +-- TOC entry 5856 (class 2604 OID 17560) +-- Name: mdl_question id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question ALTER COLUMN id SET DEFAULT nextval('public.mdl_question_id_seq'::regclass); + + +-- +-- TOC entry 5871 (class 2604 OID 17591) +-- Name: mdl_question_answers id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_answers ALTER COLUMN id SET DEFAULT nextval('public.mdl_question_answers_id_seq'::regclass); + + +-- +-- TOC entry 5888 (class 2604 OID 17662) +-- Name: mdl_question_attempt_step_data id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_attempt_step_data ALTER COLUMN id SET DEFAULT nextval('public.mdl_question_attempt_step_data_id_seq'::regclass); + + +-- +-- TOC entry 5886 (class 2604 OID 17650) +-- Name: mdl_question_attempt_steps id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_attempt_steps ALTER COLUMN id SET DEFAULT nextval('public.mdl_question_attempt_steps_id_seq'::regclass); + + +-- +-- TOC entry 5881 (class 2604 OID 17631) +-- Name: mdl_question_attempts id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_attempts ALTER COLUMN id SET DEFAULT nextval('public.mdl_question_attempts_id_seq'::regclass); + + +-- +-- TOC entry 6490 (class 2604 OID 19852) +-- Name: mdl_question_calculated id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_calculated ALTER COLUMN id SET DEFAULT nextval('public.mdl_question_calculated_id_seq'::regclass); + + +-- +-- TOC entry 6497 (class 2604 OID 19868) +-- Name: mdl_question_calculated_options id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_calculated_options ALTER COLUMN id SET DEFAULT nextval('public.mdl_question_calculated_options_id_seq'::regclass); + + +-- +-- TOC entry 5849 (class 2604 OID 17539) +-- Name: mdl_question_categories id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_categories ALTER COLUMN id SET DEFAULT nextval('public.mdl_question_categories_id_seq'::regclass); + + +-- +-- TOC entry 6507 (class 2604 OID 19889) +-- Name: mdl_question_dataset_definitions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_dataset_definitions ALTER COLUMN id SET DEFAULT nextval('public.mdl_question_dataset_definitions_id_seq'::regclass); + + +-- +-- TOC entry 6513 (class 2604 OID 19906) +-- Name: mdl_question_dataset_items id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_dataset_items ALTER COLUMN id SET DEFAULT nextval('public.mdl_question_dataset_items_id_seq'::regclass); + + +-- +-- TOC entry 6517 (class 2604 OID 19918) +-- Name: mdl_question_datasets id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_datasets ALTER COLUMN id SET DEFAULT nextval('public.mdl_question_datasets_id_seq'::regclass); + + +-- +-- TOC entry 6555 (class 2604 OID 20032) +-- Name: mdl_question_ddwtos id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_ddwtos ALTER COLUMN id SET DEFAULT nextval('public.mdl_question_ddwtos_id_seq'::regclass); + + +-- +-- TOC entry 6570 (class 2604 OID 20069) +-- Name: mdl_question_gapselect id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_gapselect ALTER COLUMN id SET DEFAULT nextval('public.mdl_question_gapselect_id_seq'::regclass); + + +-- +-- TOC entry 5876 (class 2604 OID 17607) +-- Name: mdl_question_hints id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_hints ALTER COLUMN id SET DEFAULT nextval('public.mdl_question_hints_id_seq'::regclass); + + +-- +-- TOC entry 6588 (class 2604 OID 20120) +-- Name: mdl_question_multianswer id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_multianswer ALTER COLUMN id SET DEFAULT nextval('public.mdl_question_multianswer_id_seq'::regclass); + + +-- +-- TOC entry 6601 (class 2604 OID 20155) +-- Name: mdl_question_numerical id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_numerical ALTER COLUMN id SET DEFAULT nextval('public.mdl_question_numerical_id_seq'::regclass); + + +-- +-- TOC entry 6605 (class 2604 OID 20168) +-- Name: mdl_question_numerical_options id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_numerical_options ALTER COLUMN id SET DEFAULT nextval('public.mdl_question_numerical_options_id_seq'::regclass); + + +-- +-- TOC entry 6611 (class 2604 OID 20182) +-- Name: mdl_question_numerical_units id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_numerical_units ALTER COLUMN id SET DEFAULT nextval('public.mdl_question_numerical_units_id_seq'::regclass); + + +-- +-- TOC entry 5894 (class 2604 OID 17689) +-- Name: mdl_question_response_analysis id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_response_analysis ALTER COLUMN id SET DEFAULT nextval('public.mdl_question_response_analysis_id_seq'::regclass); + + +-- +-- TOC entry 5898 (class 2604 OID 17703) +-- Name: mdl_question_response_count id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_response_count ALTER COLUMN id SET DEFAULT nextval('public.mdl_question_response_count_id_seq'::regclass); + + +-- +-- TOC entry 5890 (class 2604 OID 17675) +-- Name: mdl_question_statistics id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_statistics ALTER COLUMN id SET DEFAULT nextval('public.mdl_question_statistics_id_seq'::regclass); + + +-- +-- TOC entry 6626 (class 2604 OID 20225) +-- Name: mdl_question_truefalse id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_truefalse ALTER COLUMN id SET DEFAULT nextval('public.mdl_question_truefalse_id_seq'::regclass); + + +-- +-- TOC entry 5878 (class 2604 OID 17620) +-- Name: mdl_question_usages id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_usages ALTER COLUMN id SET DEFAULT nextval('public.mdl_question_usages_id_seq'::regclass); + + +-- +-- TOC entry 7214 (class 2604 OID 21572) +-- Name: mdl_quiz id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quiz ALTER COLUMN id SET DEFAULT nextval('public.mdl_quiz_id_seq'::regclass); + + +-- +-- TOC entry 7268 (class 2604 OID 21681) +-- Name: mdl_quiz_attempts id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quiz_attempts ALTER COLUMN id SET DEFAULT nextval('public.mdl_quiz_attempts_id_seq'::regclass); + + +-- +-- TOC entry 7261 (class 2604 OID 21653) +-- Name: mdl_quiz_feedback id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quiz_feedback ALTER COLUMN id SET DEFAULT nextval('public.mdl_quiz_feedback_id_seq'::regclass); + + +-- +-- TOC entry 7281 (class 2604 OID 21709) +-- Name: mdl_quiz_grades id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quiz_grades ALTER COLUMN id SET DEFAULT nextval('public.mdl_quiz_grades_id_seq'::regclass); + + +-- +-- TOC entry 7266 (class 2604 OID 21669) +-- Name: mdl_quiz_overrides id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quiz_overrides ALTER COLUMN id SET DEFAULT nextval('public.mdl_quiz_overrides_id_seq'::regclass); + + +-- +-- TOC entry 7749 (class 2604 OID 23212) +-- Name: mdl_quiz_overview_regrades id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quiz_overview_regrades ALTER COLUMN id SET DEFAULT nextval('public.mdl_quiz_overview_regrades_id_seq'::regclass); + + +-- +-- TOC entry 7286 (class 2604 OID 21723) +-- Name: mdl_quiz_reports id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quiz_reports ALTER COLUMN id SET DEFAULT nextval('public.mdl_quiz_reports_id_seq'::regclass); + + +-- +-- TOC entry 7259 (class 2604 OID 21639) +-- Name: mdl_quiz_sections id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quiz_sections ALTER COLUMN id SET DEFAULT nextval('public.mdl_quiz_sections_id_seq'::regclass); + + +-- +-- TOC entry 7287 (class 2604 OID 21735) +-- Name: mdl_quiz_slot_tags id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quiz_slot_tags ALTER COLUMN id SET DEFAULT nextval('public.mdl_quiz_slot_tags_id_seq'::regclass); + + +-- +-- TOC entry 7254 (class 2604 OID 21623) +-- Name: mdl_quiz_slots id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quiz_slots ALTER COLUMN id SET DEFAULT nextval('public.mdl_quiz_slots_id_seq'::regclass); + + +-- +-- TOC entry 7750 (class 2604 OID 23221) +-- Name: mdl_quiz_statistics id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quiz_statistics ALTER COLUMN id SET DEFAULT nextval('public.mdl_quiz_statistics_id_seq'::regclass); + + +-- +-- TOC entry 7752 (class 2604 OID 23230) +-- Name: mdl_quizaccess_seb_quizsettings id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quizaccess_seb_quizsettings ALTER COLUMN id SET DEFAULT nextval('public.mdl_quizaccess_seb_quizsettings_id_seq'::regclass); + + +-- +-- TOC entry 7756 (class 2604 OID 23248) +-- Name: mdl_quizaccess_seb_template id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quizaccess_seb_template ALTER COLUMN id SET DEFAULT nextval('public.mdl_quizaccess_seb_template_id_seq'::regclass); + + +-- +-- TOC entry 6229 (class 2604 OID 18761) +-- Name: mdl_rating id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_rating ALTER COLUMN id SET DEFAULT nextval('public.mdl_rating_id_seq'::regclass); + + +-- +-- TOC entry 6237 (class 2604 OID 18789) +-- Name: mdl_registration_hubs id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_registration_hubs ALTER COLUMN id SET DEFAULT nextval('public.mdl_registration_hubs_id_seq'::regclass); + + +-- +-- TOC entry 6176 (class 2604 OID 18557) +-- Name: mdl_repository id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_repository ALTER COLUMN id SET DEFAULT nextval('public.mdl_repository_id_seq'::regclass); + + +-- +-- TOC entry 6184 (class 2604 OID 18582) +-- Name: mdl_repository_instance_config id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_repository_instance_config ALTER COLUMN id SET DEFAULT nextval('public.mdl_repository_instance_config_id_seq'::regclass); + + +-- +-- TOC entry 6180 (class 2604 OID 18568) +-- Name: mdl_repository_instances id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_repository_instances ALTER COLUMN id SET DEFAULT nextval('public.mdl_repository_instances_id_seq'::regclass); + + +-- +-- TOC entry 7629 (class 2604 OID 22722) +-- Name: mdl_repository_onedrive_access id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_repository_onedrive_access ALTER COLUMN id SET DEFAULT nextval('public.mdl_repository_onedrive_access_id_seq'::regclass); + + +-- +-- TOC entry 7288 (class 2604 OID 21745) +-- Name: mdl_resource id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_resource ALTER COLUMN id SET DEFAULT nextval('public.mdl_resource_id_seq'::regclass); + + +-- +-- TOC entry 7298 (class 2604 OID 21766) +-- Name: mdl_resource_old id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_resource_old ALTER COLUMN id SET DEFAULT nextval('public.mdl_resource_old_id_seq'::regclass); + + +-- +-- TOC entry 5783 (class 2604 OID 17324) +-- Name: mdl_role id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_role ALTER COLUMN id SET DEFAULT nextval('public.mdl_role_id_seq'::regclass); + + +-- +-- TOC entry 5801 (class 2604 OID 17378) +-- Name: mdl_role_allow_assign id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_role_allow_assign ALTER COLUMN id SET DEFAULT nextval('public.mdl_role_allow_assign_id_seq'::regclass); + + +-- +-- TOC entry 5804 (class 2604 OID 17391) +-- Name: mdl_role_allow_override id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_role_allow_override ALTER COLUMN id SET DEFAULT nextval('public.mdl_role_allow_override_id_seq'::regclass); + + +-- +-- TOC entry 5807 (class 2604 OID 17404) +-- Name: mdl_role_allow_switch id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_role_allow_switch ALTER COLUMN id SET DEFAULT nextval('public.mdl_role_allow_switch_id_seq'::regclass); + + +-- +-- TOC entry 5808 (class 2604 OID 17415) +-- Name: mdl_role_allow_view id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_role_allow_view ALTER COLUMN id SET DEFAULT nextval('public.mdl_role_allow_view_id_seq'::regclass); + + +-- +-- TOC entry 5809 (class 2604 OID 17426) +-- Name: mdl_role_assignments id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_role_assignments ALTER COLUMN id SET DEFAULT nextval('public.mdl_role_assignments_id_seq'::regclass); + + +-- +-- TOC entry 5818 (class 2604 OID 17449) +-- Name: mdl_role_capabilities id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_role_capabilities ALTER COLUMN id SET DEFAULT nextval('public.mdl_role_capabilities_id_seq'::regclass); + + +-- +-- TOC entry 5829 (class 2604 OID 17482) +-- Name: mdl_role_context_levels id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_role_context_levels ALTER COLUMN id SET DEFAULT nextval('public.mdl_role_context_levels_id_seq'::regclass); + + +-- +-- TOC entry 5825 (class 2604 OID 17468) +-- Name: mdl_role_names id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_role_names ALTER COLUMN id SET DEFAULT nextval('public.mdl_role_names_id_seq'::regclass); + + +-- +-- TOC entry 5712 (class 2604 OID 17149) +-- Name: mdl_scale id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scale ALTER COLUMN id SET DEFAULT nextval('public.mdl_scale_id_seq'::regclass); + + +-- +-- TOC entry 5718 (class 2604 OID 17166) +-- Name: mdl_scale_history id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scale_history ALTER COLUMN id SET DEFAULT nextval('public.mdl_scale_history_id_seq'::regclass); + + +-- +-- TOC entry 7307 (class 2604 OID 21787) +-- Name: mdl_scorm id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scorm ALTER COLUMN id SET DEFAULT nextval('public.mdl_scorm_id_seq'::regclass); + + +-- +-- TOC entry 7401 (class 2604 OID 21985) +-- Name: mdl_scorm_aicc_session id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scorm_aicc_session ALTER COLUMN id SET DEFAULT nextval('public.mdl_scorm_aicc_session_id_seq'::regclass); + + +-- +-- TOC entry 7344 (class 2604 OID 21835) +-- Name: mdl_scorm_scoes id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scorm_scoes ALTER COLUMN id SET DEFAULT nextval('public.mdl_scorm_scoes_id_seq'::regclass); + + +-- +-- TOC entry 7353 (class 2604 OID 21855) +-- Name: mdl_scorm_scoes_data id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scorm_scoes_data ALTER COLUMN id SET DEFAULT nextval('public.mdl_scorm_scoes_data_id_seq'::regclass); + + +-- +-- TOC entry 7356 (class 2604 OID 21869) +-- Name: mdl_scorm_scoes_track id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scorm_scoes_track ALTER COLUMN id SET DEFAULT nextval('public.mdl_scorm_scoes_track_id_seq'::regclass); + + +-- +-- TOC entry 7369 (class 2604 OID 21905) +-- Name: mdl_scorm_seq_mapinfo id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scorm_seq_mapinfo ALTER COLUMN id SET DEFAULT nextval('public.mdl_scorm_seq_mapinfo_id_seq'::regclass); + + +-- +-- TOC entry 7363 (class 2604 OID 21890) +-- Name: mdl_scorm_seq_objective id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scorm_seq_objective ALTER COLUMN id SET DEFAULT nextval('public.mdl_scorm_seq_objective_id_seq'::regclass); + + +-- +-- TOC entry 7389 (class 2604 OID 21954) +-- Name: mdl_scorm_seq_rolluprule id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scorm_seq_rolluprule ALTER COLUMN id SET DEFAULT nextval('public.mdl_scorm_seq_rolluprule_id_seq'::regclass); + + +-- +-- TOC entry 7396 (class 2604 OID 21970) +-- Name: mdl_scorm_seq_rolluprulecond id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scorm_seq_rolluprulecond ALTER COLUMN id SET DEFAULT nextval('public.mdl_scorm_seq_rolluprulecond_id_seq'::regclass); + + +-- +-- TOC entry 7382 (class 2604 OID 21937) +-- Name: mdl_scorm_seq_rulecond id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scorm_seq_rulecond ALTER COLUMN id SET DEFAULT nextval('public.mdl_scorm_seq_rulecond_id_seq'::regclass); + + +-- +-- TOC entry 7377 (class 2604 OID 21923) +-- Name: mdl_scorm_seq_ruleconds id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scorm_seq_ruleconds ALTER COLUMN id SET DEFAULT nextval('public.mdl_scorm_seq_ruleconds_id_seq'::regclass); + + +-- +-- TOC entry 6453 (class 2604 OID 19690) +-- Name: mdl_search_index_requests id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_search_index_requests ALTER COLUMN id SET DEFAULT nextval('public.mdl_search_index_requests_id_seq'::regclass); + + +-- +-- TOC entry 7634 (class 2604 OID 22747) +-- Name: mdl_search_simpledb_index id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_search_simpledb_index ALTER COLUMN id SET DEFAULT nextval('public.mdl_search_simpledb_index_id_seq'::regclass); + + +-- +-- TOC entry 5652 (class 2604 OID 17020) +-- Name: mdl_sessions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_sessions ALTER COLUMN id SET DEFAULT nextval('public.mdl_sessions_id_seq'::regclass); + + +-- +-- TOC entry 5723 (class 2604 OID 17186) +-- Name: mdl_stats_daily id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_stats_daily ALTER COLUMN id SET DEFAULT nextval('public.mdl_stats_daily_id_seq'::regclass); + + +-- +-- TOC entry 5737 (class 2604 OID 17220) +-- Name: mdl_stats_monthly id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_stats_monthly ALTER COLUMN id SET DEFAULT nextval('public.mdl_stats_monthly_id_seq'::regclass); + + +-- +-- TOC entry 5744 (class 2604 OID 17237) +-- Name: mdl_stats_user_daily id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_stats_user_daily ALTER COLUMN id SET DEFAULT nextval('public.mdl_stats_user_daily_id_seq'::regclass); + + +-- +-- TOC entry 5760 (class 2604 OID 17275) +-- Name: mdl_stats_user_monthly id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_stats_user_monthly ALTER COLUMN id SET DEFAULT nextval('public.mdl_stats_user_monthly_id_seq'::regclass); + + +-- +-- TOC entry 5752 (class 2604 OID 17256) +-- Name: mdl_stats_user_weekly id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_stats_user_weekly ALTER COLUMN id SET DEFAULT nextval('public.mdl_stats_user_weekly_id_seq'::regclass); + + +-- +-- TOC entry 5730 (class 2604 OID 17203) +-- Name: mdl_stats_weekly id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_stats_weekly ALTER COLUMN id SET DEFAULT nextval('public.mdl_stats_weekly_id_seq'::regclass); + + +-- +-- TOC entry 7408 (class 2604 OID 22004) +-- Name: mdl_survey id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_survey ALTER COLUMN id SET DEFAULT nextval('public.mdl_survey_id_seq'::regclass); + + +-- +-- TOC entry 7429 (class 2604 OID 22059) +-- Name: mdl_survey_analysis id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_survey_analysis ALTER COLUMN id SET DEFAULT nextval('public.mdl_survey_analysis_id_seq'::regclass); + + +-- +-- TOC entry 7424 (class 2604 OID 22041) +-- Name: mdl_survey_answers id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_survey_answers ALTER COLUMN id SET DEFAULT nextval('public.mdl_survey_answers_id_seq'::regclass); + + +-- +-- TOC entry 7418 (class 2604 OID 22025) +-- Name: mdl_survey_questions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_survey_questions ALTER COLUMN id SET DEFAULT nextval('public.mdl_survey_questions_id_seq'::regclass); + + +-- +-- TOC entry 6081 (class 2604 OID 18204) +-- Name: mdl_tag id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tag ALTER COLUMN id SET DEFAULT nextval('public.mdl_tag_id_seq'::regclass); + + +-- +-- TOC entry 6075 (class 2604 OID 18189) +-- Name: mdl_tag_area id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tag_area ALTER COLUMN id SET DEFAULT nextval('public.mdl_tag_area_id_seq'::regclass); + + +-- +-- TOC entry 6071 (class 2604 OID 18175) +-- Name: mdl_tag_coll id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tag_coll ALTER COLUMN id SET DEFAULT nextval('public.mdl_tag_coll_id_seq'::regclass); + + +-- +-- TOC entry 6087 (class 2604 OID 18224) +-- Name: mdl_tag_correlation id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tag_correlation ALTER COLUMN id SET DEFAULT nextval('public.mdl_tag_correlation_id_seq'::regclass); + + +-- +-- TOC entry 6088 (class 2604 OID 18236) +-- Name: mdl_tag_instance id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tag_instance ALTER COLUMN id SET DEFAULT nextval('public.mdl_tag_instance_id_seq'::regclass); + + +-- +-- TOC entry 6357 (class 2604 OID 19212) +-- Name: mdl_task_adhoc id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_task_adhoc ALTER COLUMN id SET DEFAULT nextval('public.mdl_task_adhoc_id_seq'::regclass); + + +-- +-- TOC entry 6361 (class 2604 OID 19228) +-- Name: mdl_task_log id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_task_log ALTER COLUMN id SET DEFAULT nextval('public.mdl_task_log_id_seq'::regclass); + + +-- +-- TOC entry 6346 (class 2604 OID 19190) +-- Name: mdl_task_scheduled id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_task_scheduled ALTER COLUMN id SET DEFAULT nextval('public.mdl_task_scheduled_id_seq'::regclass); + + +-- +-- TOC entry 7637 (class 2604 OID 22766) +-- Name: mdl_tool_cohortroles id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_cohortroles ALTER COLUMN id SET DEFAULT nextval('public.mdl_tool_cohortroles_id_seq'::regclass); + + +-- +-- TOC entry 7638 (class 2604 OID 22775) +-- Name: mdl_tool_customlang id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_customlang ALTER COLUMN id SET DEFAULT nextval('public.mdl_tool_customlang_id_seq'::regclass); + + +-- +-- TOC entry 7643 (class 2604 OID 22792) +-- Name: mdl_tool_customlang_components id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_customlang_components ALTER COLUMN id SET DEFAULT nextval('public.mdl_tool_customlang_components_id_seq'::regclass); + + +-- +-- TOC entry 7661 (class 2604 OID 22844) +-- Name: mdl_tool_dataprivacy_category id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_dataprivacy_category ALTER COLUMN id SET DEFAULT nextval('public.mdl_tool_dataprivacy_category_id_seq'::regclass); + + +-- +-- TOC entry 7665 (class 2604 OID 22878) +-- Name: mdl_tool_dataprivacy_ctxexpired id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_dataprivacy_ctxexpired ALTER COLUMN id SET DEFAULT nextval('public.mdl_tool_dataprivacy_ctxexpired_id_seq'::regclass); + + +-- +-- TOC entry 7663 (class 2604 OID 22856) +-- Name: mdl_tool_dataprivacy_ctxinstance id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_dataprivacy_ctxinstance ALTER COLUMN id SET DEFAULT nextval('public.mdl_tool_dataprivacy_ctxinstance_id_seq'::regclass); + + +-- +-- TOC entry 7664 (class 2604 OID 22867) +-- Name: mdl_tool_dataprivacy_ctxlevel id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_dataprivacy_ctxlevel ALTER COLUMN id SET DEFAULT nextval('public.mdl_tool_dataprivacy_ctxlevel_id_seq'::regclass); + + +-- +-- TOC entry 7658 (class 2604 OID 22831) +-- Name: mdl_tool_dataprivacy_purpose id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_dataprivacy_purpose ALTER COLUMN id SET DEFAULT nextval('public.mdl_tool_dataprivacy_purpose_id_seq'::regclass); + + +-- +-- TOC entry 7667 (class 2604 OID 22891) +-- Name: mdl_tool_dataprivacy_purposerole id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_dataprivacy_purposerole ALTER COLUMN id SET DEFAULT nextval('public.mdl_tool_dataprivacy_purposerole_id_seq'::regclass); + + +-- +-- TOC entry 7645 (class 2604 OID 22804) +-- Name: mdl_tool_dataprivacy_request id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_dataprivacy_request ALTER COLUMN id SET DEFAULT nextval('public.mdl_tool_dataprivacy_request_id_seq'::regclass); + + +-- +-- TOC entry 7677 (class 2604 OID 22944) +-- Name: mdl_tool_monitor_events id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_monitor_events ALTER COLUMN id SET DEFAULT nextval('public.mdl_tool_monitor_events_id_seq'::regclass); + + +-- +-- TOC entry 7676 (class 2604 OID 22934) +-- Name: mdl_tool_monitor_history id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_monitor_history ALTER COLUMN id SET DEFAULT nextval('public.mdl_tool_monitor_history_id_seq'::regclass); + + +-- +-- TOC entry 7669 (class 2604 OID 22906) +-- Name: mdl_tool_monitor_rules id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_monitor_rules ALTER COLUMN id SET DEFAULT nextval('public.mdl_tool_monitor_rules_id_seq'::regclass); + + +-- +-- TOC entry 7673 (class 2604 OID 22922) +-- Name: mdl_tool_monitor_subscriptions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_monitor_subscriptions ALTER COLUMN id SET DEFAULT nextval('public.mdl_tool_monitor_subscriptions_id_seq'::regclass); + + +-- +-- TOC entry 7680 (class 2604 OID 22957) +-- Name: mdl_tool_policy id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_policy ALTER COLUMN id SET DEFAULT nextval('public.mdl_tool_policy_id_seq'::regclass); + + +-- +-- TOC entry 7690 (class 2604 OID 22987) +-- Name: mdl_tool_policy_acceptances id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_policy_acceptances ALTER COLUMN id SET DEFAULT nextval('public.mdl_tool_policy_acceptances_id_seq'::regclass); + + +-- +-- TOC entry 7682 (class 2604 OID 22967) +-- Name: mdl_tool_policy_versions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_policy_versions ALTER COLUMN id SET DEFAULT nextval('public.mdl_tool_policy_versions_id_seq'::regclass); + + +-- +-- TOC entry 7694 (class 2604 OID 23014) +-- Name: mdl_tool_recyclebin_category id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_recyclebin_category ALTER COLUMN id SET DEFAULT nextval('public.mdl_tool_recyclebin_category_id_seq'::regclass); + + +-- +-- TOC entry 7692 (class 2604 OID 23003) +-- Name: mdl_tool_recyclebin_course id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_recyclebin_course ALTER COLUMN id SET DEFAULT nextval('public.mdl_tool_recyclebin_course_id_seq'::regclass); + + +-- +-- TOC entry 7701 (class 2604 OID 23043) +-- Name: mdl_tool_usertours_steps id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_usertours_steps ALTER COLUMN id SET DEFAULT nextval('public.mdl_tool_usertours_steps_id_seq'::regclass); + + +-- +-- TOC entry 7697 (class 2604 OID 23029) +-- Name: mdl_tool_usertours_tours id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_usertours_tours ALTER COLUMN id SET DEFAULT nextval('public.mdl_tool_usertours_tours_id_seq'::regclass); + + +-- +-- TOC entry 5448 (class 2604 OID 16431) +-- Name: mdl_upgrade_log id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_upgrade_log ALTER COLUMN id SET DEFAULT nextval('public.mdl_upgrade_log_id_seq'::regclass); + + +-- +-- TOC entry 7432 (class 2604 OID 22074) +-- Name: mdl_url id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_url ALTER COLUMN id SET DEFAULT nextval('public.mdl_url_id_seq'::regclass); + + +-- +-- TOC entry 5655 (class 2604 OID 17038) +-- Name: mdl_user id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_user ALTER COLUMN id SET DEFAULT nextval('public.mdl_user_id_seq'::regclass); + + +-- +-- TOC entry 6332 (class 2604 OID 19145) +-- Name: mdl_user_devices id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_user_devices ALTER COLUMN id SET DEFAULT nextval('public.mdl_user_devices_id_seq'::regclass); + + +-- +-- TOC entry 5521 (class 2604 OID 16595) +-- Name: mdl_user_enrolments id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_user_enrolments ALTER COLUMN id SET DEFAULT nextval('public.mdl_user_enrolments_id_seq'::regclass); + + +-- +-- TOC entry 5842 (class 2604 OID 17514) +-- Name: mdl_user_info_category id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_user_info_category ALTER COLUMN id SET DEFAULT nextval('public.mdl_user_info_category_id_seq'::regclass); + + +-- +-- TOC entry 5845 (class 2604 OID 17524) +-- Name: mdl_user_info_data id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_user_info_data ALTER COLUMN id SET DEFAULT nextval('public.mdl_user_info_data_id_seq'::regclass); + + +-- +-- TOC entry 5830 (class 2604 OID 17492) +-- Name: mdl_user_info_field id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_user_info_field ALTER COLUMN id SET DEFAULT nextval('public.mdl_user_info_field_id_seq'::regclass); + + +-- +-- TOC entry 5706 (class 2604 OID 17125) +-- Name: mdl_user_lastaccess id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_user_lastaccess ALTER COLUMN id SET DEFAULT nextval('public.mdl_user_lastaccess_id_seq'::regclass); + + +-- +-- TOC entry 5710 (class 2604 OID 17139) +-- Name: mdl_user_password_history id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_user_password_history ALTER COLUMN id SET DEFAULT nextval('public.mdl_user_password_history_id_seq'::regclass); + + +-- +-- TOC entry 6341 (class 2604 OID 19167) +-- Name: mdl_user_password_resets id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_user_password_resets ALTER COLUMN id SET DEFAULT nextval('public.mdl_user_password_resets_id_seq'::regclass); + + +-- +-- TOC entry 5702 (class 2604 OID 17110) +-- Name: mdl_user_preferences id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_user_preferences ALTER COLUMN id SET DEFAULT nextval('public.mdl_user_preferences_id_seq'::regclass); + + +-- +-- TOC entry 6127 (class 2604 OID 18350) +-- Name: mdl_user_private_key id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_user_private_key ALTER COLUMN id SET DEFAULT nextval('public.mdl_user_private_key_id_seq'::regclass); + + +-- +-- TOC entry 7438 (class 2604 OID 22091) +-- Name: mdl_wiki id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_wiki ALTER COLUMN id SET DEFAULT nextval('public.mdl_wiki_id_seq'::regclass); + + +-- +-- TOC entry 7473 (class 2604 OID 22177) +-- Name: mdl_wiki_links id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_wiki_links ALTER COLUMN id SET DEFAULT nextval('public.mdl_wiki_links_id_seq'::regclass); + + +-- +-- TOC entry 7477 (class 2604 OID 22190) +-- Name: mdl_wiki_locks id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_wiki_locks ALTER COLUMN id SET DEFAULT nextval('public.mdl_wiki_locks_id_seq'::regclass); + + +-- +-- TOC entry 7454 (class 2604 OID 22127) +-- Name: mdl_wiki_pages id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_wiki_pages ALTER COLUMN id SET DEFAULT nextval('public.mdl_wiki_pages_id_seq'::regclass); + + +-- +-- TOC entry 7450 (class 2604 OID 22114) +-- Name: mdl_wiki_subwikis id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_wiki_subwikis ALTER COLUMN id SET DEFAULT nextval('public.mdl_wiki_subwikis_id_seq'::regclass); + + +-- +-- TOC entry 7469 (class 2604 OID 22165) +-- Name: mdl_wiki_synonyms id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_wiki_synonyms ALTER COLUMN id SET DEFAULT nextval('public.mdl_wiki_synonyms_id_seq'::regclass); + + +-- +-- TOC entry 7463 (class 2604 OID 22148) +-- Name: mdl_wiki_versions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_wiki_versions ALTER COLUMN id SET DEFAULT nextval('public.mdl_wiki_versions_id_seq'::regclass); + + +-- +-- TOC entry 7481 (class 2604 OID 22201) +-- Name: mdl_workshop id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshop ALTER COLUMN id SET DEFAULT nextval('public.mdl_workshop_id_seq'::regclass); + + +-- +-- TOC entry 7529 (class 2604 OID 22298) +-- Name: mdl_workshop_aggregations id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshop_aggregations ALTER COLUMN id SET DEFAULT nextval('public.mdl_workshop_aggregations_id_seq'::regclass); + + +-- +-- TOC entry 7519 (class 2604 OID 22263) +-- Name: mdl_workshop_assessments id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshop_assessments ALTER COLUMN id SET DEFAULT nextval('public.mdl_workshop_assessments_id_seq'::regclass); + + +-- +-- TOC entry 7526 (class 2604 OID 22283) +-- Name: mdl_workshop_grades id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshop_grades ALTER COLUMN id SET DEFAULT nextval('public.mdl_workshop_grades_id_seq'::regclass); + + +-- +-- TOC entry 7510 (class 2604 OID 22241) +-- Name: mdl_workshop_submissions id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshop_submissions ALTER COLUMN id SET DEFAULT nextval('public.mdl_workshop_submissions_id_seq'::regclass); + + +-- +-- TOC entry 7780 (class 2604 OID 23355) +-- Name: mdl_workshopallocation_scheduled id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshopallocation_scheduled ALTER COLUMN id SET DEFAULT nextval('public.mdl_workshopallocation_scheduled_id_seq'::regclass); + + +-- +-- TOC entry 7782 (class 2604 OID 23368) +-- Name: mdl_workshopeval_best_settings id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshopeval_best_settings ALTER COLUMN id SET DEFAULT nextval('public.mdl_workshopeval_best_settings_id_seq'::regclass); + + +-- +-- TOC entry 7761 (class 2604 OID 23264) +-- Name: mdl_workshopform_accumulative id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshopform_accumulative ALTER COLUMN id SET DEFAULT nextval('public.mdl_workshopform_accumulative_id_seq'::regclass); + + +-- +-- TOC entry 7765 (class 2604 OID 23279) +-- Name: mdl_workshopform_comments id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshopform_comments ALTER COLUMN id SET DEFAULT nextval('public.mdl_workshopform_comments_id_seq'::regclass); + + +-- +-- TOC entry 7768 (class 2604 OID 23293) +-- Name: mdl_workshopform_numerrors id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshopform_numerrors ALTER COLUMN id SET DEFAULT nextval('public.mdl_workshopform_numerrors_id_seq'::regclass); + + +-- +-- TOC entry 7772 (class 2604 OID 23308) +-- Name: mdl_workshopform_numerrors_map id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshopform_numerrors_map ALTER COLUMN id SET DEFAULT nextval('public.mdl_workshopform_numerrors_map_id_seq'::regclass); + + +-- +-- TOC entry 7773 (class 2604 OID 23318) +-- Name: mdl_workshopform_rubric id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshopform_rubric ALTER COLUMN id SET DEFAULT nextval('public.mdl_workshopform_rubric_id_seq'::regclass); + + +-- +-- TOC entry 7778 (class 2604 OID 23345) +-- Name: mdl_workshopform_rubric_config id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshopform_rubric_config ALTER COLUMN id SET DEFAULT nextval('public.mdl_workshopform_rubric_config_id_seq'::regclass); + + +-- +-- TOC entry 7776 (class 2604 OID 23332) +-- Name: mdl_workshopform_rubric_levels id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshopform_rubric_levels ALTER COLUMN id SET DEFAULT nextval('public.mdl_workshopform_rubric_levels_id_seq'::regclass); + + +-- +-- TOC entry 10078 (class 0 OID 19636) +-- Dependencies: 593 +-- Data for Name: mdl_analytics_indicator_calc; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_analytics_indicator_calc (id, starttime, endtime, contextid, sampleorigin, sampleid, indicator, value, timecreated) FROM stdin; +\. + + +-- +-- TOC entry 11388 (class 0 OID 0) +-- Dependencies: 592 +-- Name: mdl_analytics_indicator_calc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_analytics_indicator_calc_id_seq', 1, false); + + +-- +-- TOC entry 10066 (class 0 OID 19545) +-- Dependencies: 581 +-- Data for Name: mdl_analytics_models; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_analytics_models (id, enabled, trained, name, target, indicators, timesplitting, predictionsprocessor, version, contextids, timecreated, timemodified, usermodified) FROM stdin; +1 0 0 \N \\core_course\\analytics\\target\\course_dropout ["\\\\core\\\\analytics\\\\indicator\\\\any_access_after_end","\\\\core\\\\analytics\\\\indicator\\\\any_access_before_start","\\\\core\\\\analytics\\\\indicator\\\\any_write_action_in_course","\\\\core\\\\analytics\\\\indicator\\\\read_actions","\\\\core_course\\\\analytics\\\\indicator\\\\completion_enabled","\\\\core_course\\\\analytics\\\\indicator\\\\potential_cognitive_depth","\\\\core_course\\\\analytics\\\\indicator\\\\potential_social_breadth","\\\\mod_assign\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_assign\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_book\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_book\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_chat\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_chat\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_choice\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_choice\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_data\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_data\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_feedback\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_feedback\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_folder\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_folder\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_forum\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_forum\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_glossary\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_glossary\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_imscp\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_imscp\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_label\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_label\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_lesson\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_lesson\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_lti\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_lti\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_page\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_page\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_quiz\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_quiz\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_resource\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_resource\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_scorm\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_scorm\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_survey\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_survey\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_url\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_url\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_wiki\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_wiki\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_workshop\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_workshop\\\\analytics\\\\indicator\\\\social_breadth"] \N \N 1609808471 \N 1609808471 1609808471 0 +2 1 1 \N \\core_course\\analytics\\target\\no_teaching ["\\\\core_course\\\\analytics\\\\indicator\\\\no_teacher","\\\\core_course\\\\analytics\\\\indicator\\\\no_student"] \\core\\analytics\\time_splitting\\single_range \N 1609808471 \N 1609808471 1609808471 0 +3 1 1 \N \\core_user\\analytics\\target\\upcoming_activities_due ["\\\\core_course\\\\analytics\\\\indicator\\\\activities_due"] \\core\\analytics\\time_splitting\\upcoming_week \N 1609808471 \N 1609808471 1609808471 0 +4 1 1 \N \\core_course\\analytics\\target\\no_access_since_course_start ["\\\\core\\\\analytics\\\\indicator\\\\any_course_access"] \\core\\analytics\\time_splitting\\one_month_after_start \N 1609808471 \N 1609808471 1609808471 0 +5 1 1 \N \\core_course\\analytics\\target\\no_recent_accesses ["\\\\core\\\\analytics\\\\indicator\\\\any_course_access"] \\core\\analytics\\time_splitting\\past_month \N 1609808471 \N 1609808471 1609808471 0 +\. + + +-- +-- TOC entry 11389 (class 0 OID 0) +-- Dependencies: 580 +-- Name: mdl_analytics_models_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_analytics_models_id_seq', 5, true); + + +-- +-- TOC entry 10068 (class 0 OID 19560) +-- Dependencies: 583 +-- Data for Name: mdl_analytics_models_log; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_analytics_models_log (id, modelid, version, evaluationmode, target, indicators, timesplitting, score, info, dir, timecreated, usermodified) FROM stdin; +\. + + +-- +-- TOC entry 11390 (class 0 OID 0) +-- Dependencies: 582 +-- Name: mdl_analytics_models_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_analytics_models_log_id_seq', 1, false); + + +-- +-- TOC entry 10074 (class 0 OID 19605) +-- Dependencies: 589 +-- Data for Name: mdl_analytics_predict_samples; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_analytics_predict_samples (id, modelid, analysableid, timesplitting, rangeindex, sampleids, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11391 (class 0 OID 0) +-- Dependencies: 588 +-- Name: mdl_analytics_predict_samples_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_analytics_predict_samples_id_seq', 1, false); + + +-- +-- TOC entry 10080 (class 0 OID 19651) +-- Dependencies: 595 +-- Data for Name: mdl_analytics_prediction_actions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_analytics_prediction_actions (id, predictionid, userid, actionname, timecreated) FROM stdin; +\. + + +-- +-- TOC entry 11392 (class 0 OID 0) +-- Dependencies: 594 +-- Name: mdl_analytics_prediction_actions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_analytics_prediction_actions_id_seq', 1, false); + + +-- +-- TOC entry 10070 (class 0 OID 19575) +-- Dependencies: 585 +-- Data for Name: mdl_analytics_predictions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_analytics_predictions (id, modelid, contextid, sampleid, rangeindex, prediction, predictionscore, calculations, timecreated, timestart, timeend) FROM stdin; +\. + + +-- +-- TOC entry 11393 (class 0 OID 0) +-- Dependencies: 584 +-- Name: mdl_analytics_predictions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_analytics_predictions_id_seq', 1, false); + + +-- +-- TOC entry 10072 (class 0 OID 19590) +-- Dependencies: 587 +-- Data for Name: mdl_analytics_train_samples; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_analytics_train_samples (id, modelid, analysableid, timesplitting, sampleids, timecreated) FROM stdin; +\. + + +-- +-- TOC entry 11394 (class 0 OID 0) +-- Dependencies: 586 +-- Name: mdl_analytics_train_samples_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_analytics_train_samples_id_seq', 1, false); + + +-- +-- TOC entry 10084 (class 0 OID 19675) +-- Dependencies: 599 +-- Data for Name: mdl_analytics_used_analysables; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_analytics_used_analysables (id, modelid, action, analysableid, firstanalysis, timeanalysed) FROM stdin; +\. + + +-- +-- TOC entry 11395 (class 0 OID 0) +-- Dependencies: 598 +-- Name: mdl_analytics_used_analysables_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_analytics_used_analysables_id_seq', 1, false); + + +-- +-- TOC entry 10076 (class 0 OID 19621) +-- Dependencies: 591 +-- Data for Name: mdl_analytics_used_files; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_analytics_used_files (id, modelid, fileid, action, "time") FROM stdin; +\. + + +-- +-- TOC entry 11396 (class 0 OID 0) +-- Dependencies: 590 +-- Name: mdl_analytics_used_files_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_analytics_used_files_id_seq', 1, false); + + +-- +-- TOC entry 10156 (class 0 OID 20234) +-- Dependencies: 671 +-- Data for Name: mdl_assign; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_assign (id, course, name, intro, introformat, alwaysshowdescription, nosubmissions, submissiondrafts, sendnotifications, sendlatenotifications, duedate, allowsubmissionsfromdate, grade, timemodified, requiresubmissionstatement, completionsubmit, cutoffdate, gradingduedate, teamsubmission, requireallteammemberssubmit, teamsubmissiongroupingid, blindmarking, hidegrader, revealidentities, attemptreopenmethod, maxattempts, markingworkflow, markingallocation, sendstudentnotifications, preventsubmissionnotingroup) FROM stdin; +\. + + +-- +-- TOC entry 10160 (class 0 OID 20295) +-- Dependencies: 675 +-- Data for Name: mdl_assign_grades; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_assign_grades (id, assignment, userid, timecreated, timemodified, grader, grade, attemptnumber) FROM stdin; +\. + + +-- +-- TOC entry 11397 (class 0 OID 0) +-- Dependencies: 674 +-- Name: mdl_assign_grades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_assign_grades_id_seq', 1, false); + + +-- +-- TOC entry 11398 (class 0 OID 0) +-- Dependencies: 670 +-- Name: mdl_assign_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_assign_id_seq', 1, false); + + +-- +-- TOC entry 10168 (class 0 OID 20362) +-- Dependencies: 683 +-- Data for Name: mdl_assign_overrides; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_assign_overrides (id, assignid, groupid, userid, sortorder, allowsubmissionsfromdate, duedate, cutoffdate) FROM stdin; +\. + + +-- +-- TOC entry 11399 (class 0 OID 0) +-- Dependencies: 682 +-- Name: mdl_assign_overrides_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_assign_overrides_id_seq', 1, false); + + +-- +-- TOC entry 10162 (class 0 OID 20314) +-- Dependencies: 677 +-- Data for Name: mdl_assign_plugin_config; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_assign_plugin_config (id, assignment, plugin, subtype, name, value) FROM stdin; +\. + + +-- +-- TOC entry 11400 (class 0 OID 0) +-- Dependencies: 676 +-- Name: mdl_assign_plugin_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_assign_plugin_config_id_seq', 1, false); + + +-- +-- TOC entry 10158 (class 0 OID 20275) +-- Dependencies: 673 +-- Data for Name: mdl_assign_submission; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_assign_submission (id, assignment, userid, timecreated, timemodified, status, groupid, attemptnumber, latest) FROM stdin; +\. + + +-- +-- TOC entry 11401 (class 0 OID 0) +-- Dependencies: 672 +-- Name: mdl_assign_submission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_assign_submission_id_seq', 1, false); + + +-- +-- TOC entry 10166 (class 0 OID 20345) +-- Dependencies: 681 +-- Data for Name: mdl_assign_user_flags; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_assign_user_flags (id, userid, assignment, locked, mailed, extensionduedate, workflowstate, allocatedmarker) FROM stdin; +\. + + +-- +-- TOC entry 11402 (class 0 OID 0) +-- Dependencies: 680 +-- Name: mdl_assign_user_flags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_assign_user_flags_id_seq', 1, false); + + +-- +-- TOC entry 10164 (class 0 OID 20333) +-- Dependencies: 679 +-- Data for Name: mdl_assign_user_mapping; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_assign_user_mapping (id, assignment, userid) FROM stdin; +\. + + +-- +-- TOC entry 11403 (class 0 OID 0) +-- Dependencies: 678 +-- Name: mdl_assign_user_mapping_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_assign_user_mapping_id_seq', 1, false); + + +-- +-- TOC entry 10482 (class 0 OID 23083) +-- Dependencies: 997 +-- Data for Name: mdl_assignfeedback_comments; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_assignfeedback_comments (id, assignment, grade, commenttext, commentformat) FROM stdin; +\. + + +-- +-- TOC entry 11404 (class 0 OID 0) +-- Dependencies: 996 +-- Name: mdl_assignfeedback_comments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_assignfeedback_comments_id_seq', 1, false); + + +-- +-- TOC entry 10486 (class 0 OID 23119) +-- Dependencies: 1001 +-- Data for Name: mdl_assignfeedback_editpdf_annot; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_assignfeedback_editpdf_annot (id, gradeid, pageno, x, y, endx, endy, path, type, colour, draft) FROM stdin; +\. + + +-- +-- TOC entry 11405 (class 0 OID 0) +-- Dependencies: 1000 +-- Name: mdl_assignfeedback_editpdf_annot_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_assignfeedback_editpdf_annot_id_seq', 1, false); + + +-- +-- TOC entry 10484 (class 0 OID 23099) +-- Dependencies: 999 +-- Data for Name: mdl_assignfeedback_editpdf_cmnt; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_assignfeedback_editpdf_cmnt (id, gradeid, x, y, width, rawtext, pageno, colour, draft) FROM stdin; +\. + + +-- +-- TOC entry 11406 (class 0 OID 0) +-- Dependencies: 998 +-- Name: mdl_assignfeedback_editpdf_cmnt_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_assignfeedback_editpdf_cmnt_id_seq', 1, false); + + +-- +-- TOC entry 10490 (class 0 OID 23156) +-- Dependencies: 1005 +-- Data for Name: mdl_assignfeedback_editpdf_queue; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_assignfeedback_editpdf_queue (id, submissionid, submissionattempt, attemptedconversions) FROM stdin; +\. + + +-- +-- TOC entry 11407 (class 0 OID 0) +-- Dependencies: 1004 +-- Name: mdl_assignfeedback_editpdf_queue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_assignfeedback_editpdf_queue_id_seq', 1, false); + + +-- +-- TOC entry 10488 (class 0 OID 23141) +-- Dependencies: 1003 +-- Data for Name: mdl_assignfeedback_editpdf_quick; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_assignfeedback_editpdf_quick (id, userid, rawtext, width, colour) FROM stdin; +\. + + +-- +-- TOC entry 11408 (class 0 OID 0) +-- Dependencies: 1002 +-- Name: mdl_assignfeedback_editpdf_quick_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_assignfeedback_editpdf_quick_id_seq', 1, false); + + +-- +-- TOC entry 10492 (class 0 OID 23166) +-- Dependencies: 1007 +-- Data for Name: mdl_assignfeedback_editpdf_rot; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_assignfeedback_editpdf_rot (id, gradeid, pageno, pathnamehash, isrotated, degree) FROM stdin; +\. + + +-- +-- TOC entry 11409 (class 0 OID 0) +-- Dependencies: 1006 +-- Name: mdl_assignfeedback_editpdf_rot_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_assignfeedback_editpdf_rot_id_seq', 1, false); + + +-- +-- TOC entry 10494 (class 0 OID 23183) +-- Dependencies: 1009 +-- Data for Name: mdl_assignfeedback_file; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_assignfeedback_file (id, assignment, grade, numfiles) FROM stdin; +\. + + +-- +-- TOC entry 11410 (class 0 OID 0) +-- Dependencies: 1008 +-- Name: mdl_assignfeedback_file_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_assignfeedback_file_id_seq', 1, false); + + +-- +-- TOC entry 10170 (class 0 OID 20374) +-- Dependencies: 685 +-- Data for Name: mdl_assignment; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_assignment (id, course, name, intro, introformat, assignmenttype, resubmit, preventlate, emailteachers, var1, var2, var3, var4, var5, maxbytes, timedue, timeavailable, grade, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11411 (class 0 OID 0) +-- Dependencies: 684 +-- Name: mdl_assignment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_assignment_id_seq', 1, false); + + +-- +-- TOC entry 10172 (class 0 OID 20403) +-- Dependencies: 687 +-- Data for Name: mdl_assignment_submissions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_assignment_submissions (id, assignment, userid, timecreated, timemodified, numfiles, data1, data2, grade, submissioncomment, format, teacher, timemarked, mailed) FROM stdin; +\. + + +-- +-- TOC entry 11412 (class 0 OID 0) +-- Dependencies: 686 +-- Name: mdl_assignment_submissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_assignment_submissions_id_seq', 1, false); + + +-- +-- TOC entry 10174 (class 0 OID 20428) +-- Dependencies: 689 +-- Data for Name: mdl_assignment_upgrade; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_assignment_upgrade (id, oldcmid, oldinstance, newcmid, newinstance, timecreated) FROM stdin; +\. + + +-- +-- TOC entry 11413 (class 0 OID 0) +-- Dependencies: 688 +-- Name: mdl_assignment_upgrade_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_assignment_upgrade_id_seq', 1, false); + + +-- +-- TOC entry 10478 (class 0 OID 23054) +-- Dependencies: 993 +-- Data for Name: mdl_assignsubmission_file; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_assignsubmission_file (id, assignment, submission, numfiles) FROM stdin; +\. + + +-- +-- TOC entry 11414 (class 0 OID 0) +-- Dependencies: 992 +-- Name: mdl_assignsubmission_file_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_assignsubmission_file_id_seq', 1, false); + + +-- +-- TOC entry 10480 (class 0 OID 23067) +-- Dependencies: 995 +-- Data for Name: mdl_assignsubmission_onlinetext; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_assignsubmission_onlinetext (id, assignment, submission, onlinetext, onlineformat) FROM stdin; +\. + + +-- +-- TOC entry 11415 (class 0 OID 0) +-- Dependencies: 994 +-- Name: mdl_assignsubmission_onlinetext_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_assignsubmission_onlinetext_id_seq', 1, false); + + +-- +-- TOC entry 10372 (class 0 OID 22306) +-- Dependencies: 887 +-- Data for Name: mdl_auth_oauth2_linked_login; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_auth_oauth2_linked_login (id, timecreated, timemodified, usermodified, userid, issuerid, username, email, confirmtoken, confirmtokenexpires) FROM stdin; +\. + + +-- +-- TOC entry 11416 (class 0 OID 0) +-- Dependencies: 886 +-- Name: mdl_auth_oauth2_linked_login_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_auth_oauth2_linked_login_id_seq', 1, false); + + +-- +-- TOC entry 9960 (class 0 OID 18802) +-- Dependencies: 475 +-- Data for Name: mdl_backup_controllers; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_backup_controllers (id, backupid, operation, type, itemid, format, interactive, purpose, userid, status, execution, executiontime, checksum, timecreated, timemodified, progress, controller) FROM stdin; +\. + + +-- +-- TOC entry 11417 (class 0 OID 0) +-- Dependencies: 474 +-- Name: mdl_backup_controllers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_backup_controllers_id_seq', 1, false); + + +-- +-- TOC entry 9930 (class 0 OID 18591) +-- Dependencies: 445 +-- Data for Name: mdl_backup_courses; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_backup_courses (id, courseid, laststarttime, lastendtime, laststatus, nextstarttime) FROM stdin; +\. + + +-- +-- TOC entry 11418 (class 0 OID 0) +-- Dependencies: 444 +-- Name: mdl_backup_courses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_backup_courses_id_seq', 1, false); + + +-- +-- TOC entry 9962 (class 0 OID 18823) +-- Dependencies: 477 +-- Data for Name: mdl_backup_logs; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_backup_logs (id, backupid, loglevel, message, timecreated) FROM stdin; +\. + + +-- +-- TOC entry 11419 (class 0 OID 0) +-- Dependencies: 476 +-- Name: mdl_backup_logs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_backup_logs_id_seq', 1, false); + + +-- +-- TOC entry 9976 (class 0 OID 18929) +-- Dependencies: 491 +-- Data for Name: mdl_badge; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_badge (id, name, description, timecreated, timemodified, usercreated, usermodified, issuername, issuerurl, issuercontact, expiredate, expireperiod, type, courseid, message, messagesubject, attachment, notification, status, nextcron, version, language, imageauthorname, imageauthoremail, imageauthorurl, imagecaption) FROM stdin; +\. + + +-- +-- TOC entry 9998 (class 0 OID 19097) +-- Dependencies: 513 +-- Data for Name: mdl_badge_alignment; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_badge_alignment (id, badgeid, targetname, targeturl, targetdescription, targetframework, targetcode) FROM stdin; +\. + + +-- +-- TOC entry 11420 (class 0 OID 0) +-- Dependencies: 512 +-- Name: mdl_badge_alignment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_badge_alignment_id_seq', 1, false); + + +-- +-- TOC entry 9990 (class 0 OID 19041) +-- Dependencies: 505 +-- Data for Name: mdl_badge_backpack; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_badge_backpack (id, userid, email, backpackuid, autosync, password, externalbackpackid) FROM stdin; +\. + + +-- +-- TOC entry 11421 (class 0 OID 0) +-- Dependencies: 504 +-- Name: mdl_badge_backpack_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_badge_backpack_id_seq', 1, false); + + +-- +-- TOC entry 9992 (class 0 OID 19054) +-- Dependencies: 507 +-- Data for Name: mdl_badge_backpack_oauth2; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_badge_backpack_oauth2 (id, usermodified, timecreated, timemodified, userid, issuerid, externalbackpackid, token, refreshtoken, expires, scope) FROM stdin; +\. + + +-- +-- TOC entry 11422 (class 0 OID 0) +-- Dependencies: 506 +-- Name: mdl_badge_backpack_oauth2_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_badge_backpack_oauth2_id_seq', 1, false); + + +-- +-- TOC entry 9978 (class 0 OID 18953) +-- Dependencies: 493 +-- Data for Name: mdl_badge_criteria; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_badge_criteria (id, badgeid, criteriatype, method, description, descriptionformat) FROM stdin; +\. + + +-- +-- TOC entry 11423 (class 0 OID 0) +-- Dependencies: 492 +-- Name: mdl_badge_criteria_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_badge_criteria_id_seq', 1, false); + + +-- +-- TOC entry 9984 (class 0 OID 19001) +-- Dependencies: 499 +-- Data for Name: mdl_badge_criteria_met; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_badge_criteria_met (id, issuedid, critid, userid, datemet) FROM stdin; +\. + + +-- +-- TOC entry 11424 (class 0 OID 0) +-- Dependencies: 498 +-- Name: mdl_badge_criteria_met_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_badge_criteria_met_id_seq', 1, false); + + +-- +-- TOC entry 9980 (class 0 OID 18970) +-- Dependencies: 495 +-- Data for Name: mdl_badge_criteria_param; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_badge_criteria_param (id, critid, name, value) FROM stdin; +\. + + +-- +-- TOC entry 11425 (class 0 OID 0) +-- Dependencies: 494 +-- Name: mdl_badge_criteria_param_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_badge_criteria_param_id_seq', 1, false); + + +-- +-- TOC entry 9986 (class 0 OID 19012) +-- Dependencies: 501 +-- Data for Name: mdl_badge_endorsement; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_badge_endorsement (id, badgeid, issuername, issuerurl, issueremail, claimid, claimcomment, dateissued) FROM stdin; +\. + + +-- +-- TOC entry 11426 (class 0 OID 0) +-- Dependencies: 500 +-- Name: mdl_badge_endorsement_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_badge_endorsement_id_seq', 1, false); + + +-- +-- TOC entry 9994 (class 0 OID 19072) +-- Dependencies: 509 +-- Data for Name: mdl_badge_external; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_badge_external (id, backpackid, collectionid, entityid, assertion) FROM stdin; +\. + + +-- +-- TOC entry 10002 (class 0 OID 19124) +-- Dependencies: 517 +-- Data for Name: mdl_badge_external_backpack; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_badge_external_backpack (id, backpackapiurl, backpackweburl, apiversion, sortorder, password, oauth2_issuerid) FROM stdin; +1 https://api.badgr.io/v2 https://badgr.io 2 1 \N +\. + + +-- +-- TOC entry 11427 (class 0 OID 0) +-- Dependencies: 516 +-- Name: mdl_badge_external_backpack_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_badge_external_backpack_id_seq', 1, true); + + +-- +-- TOC entry 11428 (class 0 OID 0) +-- Dependencies: 508 +-- Name: mdl_badge_external_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_badge_external_id_seq', 1, false); + + +-- +-- TOC entry 9996 (class 0 OID 19084) +-- Dependencies: 511 +-- Data for Name: mdl_badge_external_identifier; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_badge_external_identifier (id, sitebackpackid, internalid, externalid, type) FROM stdin; +\. + + +-- +-- TOC entry 11429 (class 0 OID 0) +-- Dependencies: 510 +-- Name: mdl_badge_external_identifier_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_badge_external_identifier_id_seq', 1, false); + + +-- +-- TOC entry 11430 (class 0 OID 0) +-- Dependencies: 490 +-- Name: mdl_badge_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_badge_id_seq', 1, false); + + +-- +-- TOC entry 9982 (class 0 OID 18983) +-- Dependencies: 497 +-- Data for Name: mdl_badge_issued; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_badge_issued (id, badgeid, userid, uniquehash, dateissued, dateexpire, visible, issuernotified) FROM stdin; +\. + + +-- +-- TOC entry 11431 (class 0 OID 0) +-- Dependencies: 496 +-- Name: mdl_badge_issued_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_badge_issued_id_seq', 1, false); + + +-- +-- TOC entry 9988 (class 0 OID 19029) +-- Dependencies: 503 +-- Data for Name: mdl_badge_manual_award; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_badge_manual_award (id, badgeid, recipientid, issuerid, issuerrole, datemet) FROM stdin; +\. + + +-- +-- TOC entry 11432 (class 0 OID 0) +-- Dependencies: 502 +-- Name: mdl_badge_manual_award_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_badge_manual_award_id_seq', 1, false); + + +-- +-- TOC entry 10000 (class 0 OID 19112) +-- Dependencies: 515 +-- Data for Name: mdl_badge_related; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_badge_related (id, badgeid, relatedbadgeid) FROM stdin; +\. + + +-- +-- TOC entry 11433 (class 0 OID 0) +-- Dependencies: 514 +-- Name: mdl_badge_related_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_badge_related_id_seq', 1, false); + + +-- +-- TOC entry 9932 (class 0 OID 18605) +-- Dependencies: 447 +-- Data for Name: mdl_block; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_block (id, name, cron, lastcron, visible) FROM stdin; +1 activity_modules 0 0 1 +2 activity_results 0 0 1 +3 admin_bookmarks 0 0 1 +4 badges 0 0 1 +5 blog_menu 0 0 1 +6 blog_recent 0 0 1 +7 blog_tags 0 0 1 +8 calendar_month 0 0 1 +9 calendar_upcoming 0 0 1 +10 comments 0 0 1 +11 completionstatus 0 0 1 +12 course_list 0 0 1 +13 course_summary 0 0 1 +14 feedback 0 0 1 +15 globalsearch 0 0 1 +16 glossary_random 0 0 1 +17 html 0 0 1 +18 login 0 0 1 +19 lp 0 0 1 +20 mentees 0 0 1 +21 mnet_hosts 0 0 1 +22 myoverview 0 0 1 +23 myprofile 0 0 1 +24 navigation 0 0 1 +25 news_items 0 0 1 +26 online_users 0 0 1 +27 private_files 0 0 1 +28 quiz_results 0 0 0 +29 recent_activity 0 0 1 +30 recentlyaccessedcourses 0 0 1 +31 recentlyaccesseditems 0 0 1 +32 rss_client 0 0 1 +33 search_forums 0 0 1 +34 section_links 0 0 1 +35 selfcompletion 0 0 1 +36 settings 0 0 1 +37 site_main_menu 0 0 1 +38 social_activities 0 0 1 +39 starredcourses 0 0 1 +40 tag_flickr 0 0 1 +41 tag_youtube 0 0 0 +42 tags 0 0 1 +43 timeline 0 0 1 +\. + + +-- +-- TOC entry 11434 (class 0 OID 0) +-- Dependencies: 446 +-- Name: mdl_block_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_block_id_seq', 43, true); + + +-- +-- TOC entry 9934 (class 0 OID 18618) +-- Dependencies: 449 +-- Data for Name: mdl_block_instances; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_block_instances (id, blockname, parentcontextid, showinsubcontexts, requiredbytheme, pagetypepattern, subpagepattern, defaultregion, defaultweight, configdata, timecreated, timemodified) FROM stdin; +1 admin_bookmarks 1 0 0 admin-* \N side-pre 2 1609808495 1609808495 +2 timeline 1 0 0 my-index 2 side-post 0 1609808495 1609808495 +3 private_files 1 0 0 my-index 2 side-post 1 1609808495 1609808495 +4 online_users 1 0 0 my-index 2 side-post 2 1609808495 1609808495 +5 badges 1 0 0 my-index 2 side-post 3 1609808495 1609808495 +6 calendar_month 1 0 0 my-index 2 side-post 4 1609808495 1609808495 +7 calendar_upcoming 1 0 0 my-index 2 side-post 5 1609808495 1609808495 +8 lp 1 0 0 my-index 2 content 0 1609808495 1609808495 +9 recentlyaccessedcourses 1 0 0 my-index 2 content 1 1609808495 1609808495 +10 myoverview 1 0 0 my-index 2 content 2 1609808495 1609808495 +11 myoverview 5 0 0 my-index 3 content 2 1609884719 1609884719 +12 recentlyaccessedcourses 5 0 0 my-index 3 content 1 1609884719 1609884719 +13 lp 5 0 0 my-index 3 content 0 1609884719 1609884719 +14 calendar_upcoming 5 0 0 my-index 3 side-post 5 1609884719 1609884719 +15 calendar_month 5 0 0 my-index 3 side-post 4 1609884719 1609884719 +16 badges 5 0 0 my-index 3 side-post 3 1609884719 1609884719 +17 online_users 5 0 0 my-index 3 side-post 2 1609884719 1609884719 +18 private_files 5 0 0 my-index 3 side-post 1 1609884719 1609884719 +19 timeline 5 0 0 my-index 3 side-post 0 1609884719 1609884719 +\. + + +-- +-- TOC entry 11435 (class 0 OID 0) +-- Dependencies: 448 +-- Name: mdl_block_instances_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_block_instances_id_seq', 19, true); + + +-- +-- TOC entry 9936 (class 0 OID 18636) +-- Dependencies: 451 +-- Data for Name: mdl_block_positions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_block_positions (id, blockinstanceid, contextid, pagetype, subpage, visible, region, weight) FROM stdin; +\. + + +-- +-- TOC entry 11436 (class 0 OID 0) +-- Dependencies: 450 +-- Name: mdl_block_positions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_block_positions_id_seq', 1, false); + + +-- +-- TOC entry 10406 (class 0 OID 22555) +-- Dependencies: 921 +-- Data for Name: mdl_block_recent_activity; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_block_recent_activity (id, courseid, cmid, timecreated, userid, action, modname) FROM stdin; +\. + + +-- +-- TOC entry 11437 (class 0 OID 0) +-- Dependencies: 920 +-- Name: mdl_block_recent_activity_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_block_recent_activity_id_seq', 1, false); + + +-- +-- TOC entry 10408 (class 0 OID 22564) +-- Dependencies: 923 +-- Data for Name: mdl_block_recentlyaccesseditems; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_block_recentlyaccesseditems (id, courseid, cmid, userid, timeaccess) FROM stdin; +\. + + +-- +-- TOC entry 11438 (class 0 OID 0) +-- Dependencies: 922 +-- Name: mdl_block_recentlyaccesseditems_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_block_recentlyaccesseditems_id_seq', 1, false); + + +-- +-- TOC entry 10410 (class 0 OID 22576) +-- Dependencies: 925 +-- Data for Name: mdl_block_rss_client; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_block_rss_client (id, userid, title, preferredtitle, description, shared, url, skiptime, skipuntil) FROM stdin; +\. + + +-- +-- TOC entry 11439 (class 0 OID 0) +-- Dependencies: 924 +-- Name: mdl_block_rss_client_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_block_rss_client_id_seq', 1, false); + + +-- +-- TOC entry 9950 (class 0 OID 18733) +-- Dependencies: 465 +-- Data for Name: mdl_blog_association; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_blog_association (id, contextid, blogid) FROM stdin; +\. + + +-- +-- TOC entry 11440 (class 0 OID 0) +-- Dependencies: 464 +-- Name: mdl_blog_association_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_blog_association_id_seq', 1, false); + + +-- +-- TOC entry 9952 (class 0 OID 18743) +-- Dependencies: 467 +-- Data for Name: mdl_blog_external; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_blog_external (id, userid, name, description, url, filtertags, failedlastsync, timemodified, timefetched) FROM stdin; +\. + + +-- +-- TOC entry 11441 (class 0 OID 0) +-- Dependencies: 466 +-- Name: mdl_blog_external_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_blog_external_id_seq', 1, false); + + +-- +-- TOC entry 10176 (class 0 OID 20443) +-- Dependencies: 691 +-- Data for Name: mdl_book; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_book (id, course, name, intro, introformat, numbering, navstyle, customtitles, revision, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 10178 (class 0 OID 20463) +-- Dependencies: 693 +-- Data for Name: mdl_book_chapters; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_book_chapters (id, bookid, pagenum, subchapter, title, content, contentformat, hidden, timecreated, timemodified, importsrc) FROM stdin; +\. + + +-- +-- TOC entry 11442 (class 0 OID 0) +-- Dependencies: 692 +-- Name: mdl_book_chapters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_book_chapters_id_seq', 1, false); + + +-- +-- TOC entry 11443 (class 0 OID 0) +-- Dependencies: 690 +-- Name: mdl_book_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_book_id_seq', 1, false); + + +-- +-- TOC entry 9711 (class 0 OID 16771) +-- Dependencies: 226 +-- Data for Name: mdl_cache_filters; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_cache_filters (id, filter, version, md5key, rawtext, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11444 (class 0 OID 0) +-- Dependencies: 225 +-- Name: mdl_cache_filters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_cache_filters_id_seq', 1, false); + + +-- +-- TOC entry 9900 (class 0 OID 18372) +-- Dependencies: 415 +-- Data for Name: mdl_cache_flags; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_cache_flags (id, flagtype, name, timemodified, value, expiry) FROM stdin; +1 userpreferenceschanged 2 1609884654 1 1609913454 +\. + + +-- +-- TOC entry 11445 (class 0 OID 0) +-- Dependencies: 414 +-- Name: mdl_cache_flags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_cache_flags_id_seq', 1, true); + + +-- +-- TOC entry 9778 (class 0 OID 17361) +-- Dependencies: 293 +-- Data for Name: mdl_capabilities; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_capabilities (id, name, captype, contextlevel, component, riskbitmask) FROM stdin; +1 moodle/site:config write 10 moodle 62 +2 moodle/site:configview read 10 moodle 0 +3 moodle/site:readallmessages read 10 moodle 8 +4 moodle/site:manageallmessaging write 10 moodle 8 +5 moodle/site:deleteanymessage write 10 moodle 32 +6 moodle/site:sendmessage write 10 moodle 16 +7 moodle/site:deleteownmessage write 10 moodle 0 +8 moodle/site:approvecourse write 40 moodle 4 +9 moodle/backup:backupcourse write 50 moodle 28 +10 moodle/backup:backupsection write 50 moodle 28 +11 moodle/backup:backupactivity write 70 moodle 28 +12 moodle/backup:backuptargetimport read 50 moodle 28 +13 moodle/backup:downloadfile write 50 moodle 28 +14 moodle/backup:configure write 50 moodle 28 +15 moodle/backup:userinfo read 50 moodle 8 +16 moodle/backup:anonymise read 50 moodle 8 +17 moodle/restore:restorecourse write 50 moodle 28 +18 moodle/restore:restoresection write 50 moodle 28 +19 moodle/restore:restoreactivity write 50 moodle 28 +20 moodle/restore:viewautomatedfilearea write 50 moodle 28 +21 moodle/restore:restoretargetimport write 50 moodle 28 +22 moodle/restore:uploadfile write 50 moodle 28 +23 moodle/restore:configure write 50 moodle 28 +24 moodle/restore:rolldates write 50 moodle 0 +25 moodle/restore:userinfo write 50 moodle 30 +26 moodle/restore:createuser write 10 moodle 24 +27 moodle/site:manageblocks write 80 moodle 20 +28 moodle/site:accessallgroups read 70 moodle 0 +29 moodle/site:viewanonymousevents read 70 moodle 8 +30 moodle/site:viewfullnames read 70 moodle 0 +31 moodle/site:viewuseridentity read 70 moodle 0 +32 moodle/site:viewreports read 50 moodle 8 +33 moodle/site:trustcontent write 70 moodle 4 +34 moodle/site:uploadusers write 10 moodle 24 +35 moodle/filter:manage write 50 moodle 0 +36 moodle/user:create write 10 moodle 24 +37 moodle/user:delete write 10 moodle 40 +38 moodle/user:update write 10 moodle 24 +39 moodle/user:viewdetails read 50 moodle 0 +40 moodle/user:viewalldetails read 30 moodle 8 +41 moodle/user:viewlastip read 30 moodle 8 +42 moodle/user:viewhiddendetails read 50 moodle 8 +43 moodle/user:loginas write 50 moodle 30 +44 moodle/user:managesyspages write 10 moodle 0 +45 moodle/user:manageblocks write 30 moodle 0 +46 moodle/user:manageownblocks write 10 moodle 0 +47 moodle/user:manageownfiles write 10 moodle 0 +48 moodle/user:ignoreuserquota write 10 moodle 0 +49 moodle/my:configsyspages write 10 moodle 0 +50 moodle/role:assign write 50 moodle 28 +51 moodle/role:review read 50 moodle 8 +52 moodle/role:override write 50 moodle 28 +53 moodle/role:safeoverride write 50 moodle 16 +54 moodle/role:manage write 10 moodle 28 +55 moodle/role:switchroles read 50 moodle 12 +56 moodle/category:manage write 40 moodle 4 +57 moodle/category:viewcourselist read 40 moodle 0 +58 moodle/category:viewhiddencategories read 40 moodle 0 +59 moodle/cohort:manage write 40 moodle 0 +60 moodle/cohort:assign write 40 moodle 0 +61 moodle/cohort:view read 50 moodle 0 +62 moodle/course:create write 40 moodle 4 +63 moodle/course:creategroupconversations write 50 moodle 4 +64 moodle/course:request write 40 moodle 0 +65 moodle/course:delete write 50 moodle 32 +66 moodle/course:update write 50 moodle 4 +67 moodle/course:view read 50 moodle 0 +68 moodle/course:enrolreview read 50 moodle 8 +69 moodle/course:enrolconfig write 50 moodle 8 +70 moodle/course:reviewotherusers read 50 moodle 0 +71 moodle/course:bulkmessaging write 50 moodle 16 +72 moodle/course:viewhiddenuserfields read 50 moodle 8 +73 moodle/course:viewhiddencourses read 50 moodle 0 +74 moodle/course:visibility write 50 moodle 0 +75 moodle/course:managefiles write 50 moodle 4 +76 moodle/course:ignoreavailabilityrestrictions read 70 moodle 0 +77 moodle/course:ignorefilesizelimits write 50 moodle 0 +78 moodle/course:manageactivities write 70 moodle 4 +79 moodle/course:activityvisibility write 70 moodle 0 +80 moodle/course:viewhiddenactivities read 70 moodle 0 +81 moodle/course:viewparticipants read 50 moodle 0 +82 moodle/course:changefullname write 50 moodle 4 +83 moodle/course:changeshortname write 50 moodle 4 +84 moodle/course:changelockedcustomfields write 50 moodle 16 +85 moodle/course:configurecustomfields write 10 moodle 16 +86 moodle/course:renameroles write 50 moodle 0 +87 moodle/course:changeidnumber write 50 moodle 4 +88 moodle/course:changecategory write 50 moodle 4 +89 moodle/course:changesummary write 50 moodle 4 +90 moodle/course:setforcedlanguage write 50 moodle 0 +91 moodle/site:viewparticipants read 10 moodle 0 +92 moodle/course:isincompletionreports read 50 moodle 0 +93 moodle/course:viewscales read 50 moodle 0 +94 moodle/course:managescales write 50 moodle 0 +95 moodle/course:managegroups write 50 moodle 4 +96 moodle/course:reset write 50 moodle 32 +97 moodle/course:viewsuspendedusers read 50 moodle 0 +98 moodle/course:tag write 50 moodle 16 +99 moodle/blog:view read 10 moodle 0 +100 moodle/blog:search read 10 moodle 0 +101 moodle/blog:viewdrafts read 10 moodle 8 +102 moodle/blog:create write 10 moodle 16 +103 moodle/blog:manageentries write 10 moodle 16 +104 moodle/blog:manageexternal write 10 moodle 16 +105 moodle/calendar:manageownentries write 50 moodle 16 +106 moodle/calendar:managegroupentries write 50 moodle 16 +107 moodle/calendar:manageentries write 50 moodle 16 +108 moodle/user:editprofile write 30 moodle 24 +109 moodle/user:editownprofile write 10 moodle 16 +110 moodle/user:changeownpassword write 10 moodle 0 +111 moodle/user:readuserposts read 30 moodle 0 +112 moodle/user:readuserblogs read 30 moodle 0 +113 moodle/user:viewuseractivitiesreport read 30 moodle 8 +114 moodle/user:editmessageprofile write 30 moodle 16 +115 moodle/user:editownmessageprofile write 10 moodle 0 +116 moodle/question:managecategory write 50 moodle 20 +117 moodle/question:add write 50 moodle 20 +118 moodle/question:editmine write 50 moodle 20 +119 moodle/question:editall write 50 moodle 20 +120 moodle/question:viewmine read 50 moodle 0 +121 moodle/question:viewall read 50 moodle 0 +122 moodle/question:usemine read 50 moodle 0 +123 moodle/question:useall read 50 moodle 0 +124 moodle/question:movemine write 50 moodle 0 +125 moodle/question:moveall write 50 moodle 0 +126 moodle/question:config write 10 moodle 2 +127 moodle/question:flag write 50 moodle 0 +128 moodle/question:tagmine write 50 moodle 0 +129 moodle/question:tagall write 50 moodle 0 +130 moodle/site:doclinks read 10 moodle 0 +131 moodle/course:sectionvisibility write 50 moodle 0 +132 moodle/course:useremail write 50 moodle 0 +133 moodle/course:viewhiddensections read 50 moodle 0 +134 moodle/course:setcurrentsection write 50 moodle 0 +135 moodle/course:movesections write 50 moodle 0 +136 moodle/site:mnetlogintoremote read 10 moodle 0 +137 moodle/grade:viewall read 50 moodle 8 +138 moodle/grade:view read 50 moodle 0 +139 moodle/grade:viewhidden read 50 moodle 8 +140 moodle/grade:import write 50 moodle 12 +141 moodle/grade:export read 50 moodle 8 +142 moodle/grade:manage write 50 moodle 12 +143 moodle/grade:edit write 50 moodle 12 +144 moodle/grade:managegradingforms write 50 moodle 12 +145 moodle/grade:sharegradingforms write 10 moodle 4 +146 moodle/grade:managesharedforms write 10 moodle 4 +147 moodle/grade:manageoutcomes write 50 moodle 0 +148 moodle/grade:manageletters write 50 moodle 0 +149 moodle/grade:hide write 50 moodle 0 +150 moodle/grade:lock write 50 moodle 0 +151 moodle/grade:unlock write 50 moodle 0 +152 moodle/my:manageblocks write 10 moodle 0 +153 moodle/notes:view read 50 moodle 0 +154 moodle/notes:manage write 50 moodle 16 +155 moodle/tag:manage write 10 moodle 16 +156 moodle/tag:edit write 10 moodle 16 +157 moodle/tag:flag write 10 moodle 16 +158 moodle/tag:editblocks write 10 moodle 0 +159 moodle/block:view read 80 moodle 0 +160 moodle/block:edit write 80 moodle 20 +161 moodle/portfolio:export read 10 moodle 0 +162 moodle/comment:view read 50 moodle 0 +163 moodle/comment:post write 50 moodle 24 +164 moodle/comment:delete write 50 moodle 32 +165 moodle/webservice:createtoken write 10 moodle 62 +166 moodle/webservice:managealltokens write 10 moodle 42 +167 moodle/webservice:createmobiletoken write 10 moodle 24 +168 moodle/rating:view read 50 moodle 0 +169 moodle/rating:viewany read 50 moodle 8 +170 moodle/rating:viewall read 50 moodle 8 +171 moodle/rating:rate write 50 moodle 0 +172 moodle/course:markcomplete write 50 moodle 0 +173 moodle/course:overridecompletion write 50 moodle 0 +174 moodle/badges:manageglobalsettings write 10 moodle 34 +175 moodle/badges:viewbadges read 50 moodle 0 +176 moodle/badges:manageownbadges write 30 moodle 0 +177 moodle/badges:viewotherbadges read 30 moodle 0 +178 moodle/badges:earnbadge write 50 moodle 0 +179 moodle/badges:createbadge write 50 moodle 16 +180 moodle/badges:deletebadge write 50 moodle 32 +181 moodle/badges:configuredetails write 50 moodle 16 +182 moodle/badges:configurecriteria write 50 moodle 4 +183 moodle/badges:configuremessages write 50 moodle 16 +184 moodle/badges:awardbadge write 50 moodle 16 +185 moodle/badges:revokebadge write 50 moodle 16 +186 moodle/badges:viewawarded read 50 moodle 8 +187 moodle/site:forcelanguage read 10 moodle 0 +188 moodle/search:query read 10 moodle 0 +189 moodle/competency:competencymanage write 40 moodle 0 +190 moodle/competency:competencyview read 40 moodle 0 +191 moodle/competency:competencygrade write 50 moodle 0 +192 moodle/competency:coursecompetencymanage write 50 moodle 0 +193 moodle/competency:coursecompetencyconfigure write 70 moodle 0 +194 moodle/competency:coursecompetencygradable read 50 moodle 0 +195 moodle/competency:coursecompetencyview read 50 moodle 0 +196 moodle/competency:evidencedelete write 30 moodle 0 +197 moodle/competency:planmanage write 30 moodle 0 +198 moodle/competency:planmanagedraft write 30 moodle 0 +199 moodle/competency:planmanageown write 30 moodle 0 +200 moodle/competency:planmanageowndraft write 30 moodle 0 +201 moodle/competency:planview read 30 moodle 0 +202 moodle/competency:planviewdraft read 30 moodle 0 +203 moodle/competency:planviewown read 30 moodle 0 +204 moodle/competency:planviewowndraft read 30 moodle 0 +205 moodle/competency:planrequestreview write 30 moodle 0 +206 moodle/competency:planrequestreviewown write 30 moodle 0 +207 moodle/competency:planreview write 30 moodle 0 +208 moodle/competency:plancomment write 30 moodle 0 +209 moodle/competency:plancommentown write 30 moodle 0 +210 moodle/competency:usercompetencyview read 30 moodle 0 +211 moodle/competency:usercompetencyrequestreview write 30 moodle 0 +212 moodle/competency:usercompetencyrequestreviewown write 30 moodle 0 +213 moodle/competency:usercompetencyreview write 30 moodle 0 +214 moodle/competency:usercompetencycomment write 30 moodle 0 +215 moodle/competency:usercompetencycommentown write 30 moodle 0 +216 moodle/competency:templatemanage write 40 moodle 0 +217 moodle/analytics:listinsights read 50 moodle 8 +218 moodle/analytics:managemodels write 10 moodle 2 +219 moodle/competency:templateview read 40 moodle 0 +220 moodle/competency:userevidencemanage write 30 moodle 0 +221 moodle/competency:userevidencemanageown write 30 moodle 0 +222 moodle/competency:userevidenceview read 30 moodle 0 +223 moodle/site:maintenanceaccess write 10 moodle 0 +224 moodle/site:messageanyuser write 10 moodle 16 +225 moodle/site:managecontextlocks write 70 moodle 0 +226 moodle/course:togglecompletion write 70 moodle 0 +227 moodle/analytics:listowninsights read 10 moodle 0 +228 moodle/h5p:setdisplayoptions write 70 moodle 0 +229 moodle/h5p:deploy write 70 moodle 4 +230 moodle/h5p:updatelibraries write 70 moodle 4 +231 moodle/course:recommendactivity write 10 moodle 0 +232 moodle/contentbank:access read 50 moodle 0 +233 moodle/contentbank:upload write 50 moodle 16 +234 moodle/contentbank:deleteanycontent write 50 moodle 32 +235 moodle/contentbank:deleteowncontent write 50 moodle 0 +236 moodle/contentbank:manageanycontent write 50 moodle 32 +237 moodle/contentbank:manageowncontent write 50 moodle 0 +238 moodle/contentbank:useeditor write 50 moodle 16 +239 mod/assign:view read 70 mod_assign 0 +240 mod/assign:submit write 70 mod_assign 0 +241 mod/assign:grade write 70 mod_assign 4 +242 mod/assign:exportownsubmission read 70 mod_assign 0 +243 mod/assign:addinstance write 50 mod_assign 4 +244 mod/assign:editothersubmission write 70 mod_assign 41 +245 mod/assign:grantextension write 70 mod_assign 0 +246 mod/assign:revealidentities write 70 mod_assign 0 +247 mod/assign:reviewgrades write 70 mod_assign 0 +248 mod/assign:releasegrades write 70 mod_assign 0 +249 mod/assign:managegrades write 70 mod_assign 0 +250 mod/assign:manageallocations write 70 mod_assign 0 +251 mod/assign:viewgrades read 70 mod_assign 0 +252 mod/assign:viewblinddetails write 70 mod_assign 8 +253 mod/assign:receivegradernotifications read 70 mod_assign 0 +254 mod/assign:manageoverrides write 70 mod_assign 0 +255 mod/assign:showhiddengrader read 70 mod_assign 0 +256 mod/assignment:view read 70 mod_assignment 0 +257 mod/assignment:addinstance write 50 mod_assignment 4 +258 mod/assignment:submit write 70 mod_assignment 0 +259 mod/assignment:grade write 70 mod_assignment 4 +260 mod/assignment:exportownsubmission read 70 mod_assignment 0 +261 mod/book:addinstance write 50 mod_book 4 +262 mod/book:read read 70 mod_book 0 +263 mod/book:viewhiddenchapters read 70 mod_book 0 +264 mod/book:edit write 70 mod_book 4 +265 mod/chat:addinstance write 50 mod_chat 4 +266 mod/chat:chat write 70 mod_chat 16 +267 mod/chat:readlog read 70 mod_chat 0 +268 mod/chat:deletelog write 70 mod_chat 0 +269 mod/chat:exportparticipatedsession read 70 mod_chat 8 +270 mod/chat:exportsession read 70 mod_chat 8 +271 mod/chat:view read 70 mod_chat 0 +272 mod/choice:addinstance write 50 mod_choice 4 +273 mod/choice:choose write 70 mod_choice 0 +274 mod/choice:readresponses read 70 mod_choice 0 +275 mod/choice:deleteresponses write 70 mod_choice 0 +276 mod/choice:downloadresponses read 70 mod_choice 0 +277 mod/choice:view read 70 mod_choice 0 +278 mod/data:addinstance write 50 mod_data 4 +279 mod/data:viewentry read 70 mod_data 0 +280 mod/data:writeentry write 70 mod_data 16 +281 mod/data:comment write 70 mod_data 16 +282 mod/data:rate write 70 mod_data 0 +283 mod/data:viewrating read 70 mod_data 0 +284 mod/data:viewanyrating read 70 mod_data 8 +285 mod/data:viewallratings read 70 mod_data 8 +286 mod/data:approve write 70 mod_data 16 +287 mod/data:manageentries write 70 mod_data 16 +288 mod/data:managecomments write 70 mod_data 16 +289 mod/data:managetemplates write 70 mod_data 20 +290 mod/data:viewalluserpresets read 70 mod_data 0 +291 mod/data:manageuserpresets write 70 mod_data 20 +292 mod/data:exportentry read 70 mod_data 8 +293 mod/data:exportownentry read 70 mod_data 0 +294 mod/data:exportallentries read 70 mod_data 8 +295 mod/data:exportuserinfo read 70 mod_data 8 +296 mod/data:view read 70 mod_data 0 +297 mod/feedback:addinstance write 50 mod_feedback 4 +298 mod/feedback:view read 70 mod_feedback 0 +299 mod/feedback:complete write 70 mod_feedback 16 +300 mod/feedback:viewanalysepage read 70 mod_feedback 8 +301 mod/feedback:deletesubmissions write 70 mod_feedback 0 +302 mod/feedback:mapcourse write 70 mod_feedback 0 +303 mod/feedback:edititems write 70 mod_feedback 20 +304 mod/feedback:createprivatetemplate write 70 mod_feedback 16 +305 mod/feedback:createpublictemplate write 70 mod_feedback 16 +306 mod/feedback:deletetemplate write 70 mod_feedback 0 +307 mod/feedback:viewreports read 70 mod_feedback 8 +308 mod/feedback:receivemail read 70 mod_feedback 8 +309 mod/folder:addinstance write 50 mod_folder 4 +310 mod/folder:view read 70 mod_folder 0 +311 mod/folder:managefiles write 70 mod_folder 16 +312 mod/forum:addinstance write 50 mod_forum 4 +313 mod/forum:viewdiscussion read 70 mod_forum 0 +314 mod/forum:viewhiddentimedposts read 70 mod_forum 0 +315 mod/forum:startdiscussion write 70 mod_forum 16 +316 mod/forum:replypost write 70 mod_forum 16 +317 mod/forum:addnews write 70 mod_forum 16 +318 mod/forum:replynews write 70 mod_forum 16 +319 mod/forum:viewrating read 70 mod_forum 0 +320 mod/forum:viewanyrating read 70 mod_forum 8 +321 mod/forum:viewallratings read 70 mod_forum 8 +322 mod/forum:rate write 70 mod_forum 0 +323 mod/forum:postprivatereply write 70 mod_forum 0 +324 mod/forum:readprivatereplies read 70 mod_forum 0 +325 mod/forum:createattachment write 70 mod_forum 16 +326 mod/forum:deleteownpost write 70 mod_forum 0 +327 mod/forum:deleteanypost write 70 mod_forum 0 +328 mod/forum:splitdiscussions write 70 mod_forum 0 +329 mod/forum:movediscussions write 70 mod_forum 0 +330 mod/forum:pindiscussions write 70 mod_forum 0 +331 mod/forum:editanypost write 70 mod_forum 16 +332 mod/forum:viewqandawithoutposting read 70 mod_forum 0 +333 mod/forum:viewsubscribers read 70 mod_forum 0 +334 mod/forum:managesubscriptions write 70 mod_forum 16 +335 mod/forum:postwithoutthrottling write 70 mod_forum 16 +336 mod/forum:exportdiscussion read 70 mod_forum 8 +337 mod/forum:exportforum read 70 mod_forum 8 +338 mod/forum:exportpost read 70 mod_forum 8 +339 mod/forum:exportownpost read 70 mod_forum 8 +340 mod/forum:addquestion write 70 mod_forum 16 +341 mod/forum:allowforcesubscribe read 70 mod_forum 0 +342 mod/forum:canposttomygroups write 70 mod_forum 0 +343 mod/forum:canoverridediscussionlock write 70 mod_forum 0 +344 mod/forum:canoverridecutoff write 70 mod_forum 0 +345 mod/forum:cantogglefavourite write 70 mod_forum 0 +346 mod/forum:grade write 70 mod_forum 0 +347 mod/glossary:addinstance write 50 mod_glossary 4 +348 mod/glossary:view read 70 mod_glossary 0 +349 mod/glossary:write write 70 mod_glossary 16 +350 mod/glossary:manageentries write 70 mod_glossary 16 +351 mod/glossary:managecategories write 70 mod_glossary 16 +352 mod/glossary:comment write 70 mod_glossary 16 +353 mod/glossary:managecomments write 70 mod_glossary 16 +354 mod/glossary:import write 70 mod_glossary 16 +355 mod/glossary:export read 70 mod_glossary 0 +356 mod/glossary:approve write 70 mod_glossary 16 +357 mod/glossary:rate write 70 mod_glossary 0 +358 mod/glossary:viewrating read 70 mod_glossary 0 +359 mod/glossary:viewanyrating read 70 mod_glossary 8 +360 mod/glossary:viewallratings read 70 mod_glossary 8 +361 mod/glossary:exportentry read 70 mod_glossary 8 +362 mod/glossary:exportownentry read 70 mod_glossary 0 +363 mod/h5pactivity:view read 70 mod_h5pactivity 0 +364 mod/h5pactivity:addinstance write 50 mod_h5pactivity 0 +365 mod/h5pactivity:submit write 70 mod_h5pactivity 0 +366 mod/h5pactivity:reviewattempts read 70 mod_h5pactivity 0 +367 mod/imscp:view read 70 mod_imscp 0 +368 mod/imscp:addinstance write 50 mod_imscp 4 +369 mod/label:addinstance write 50 mod_label 4 +370 mod/label:view read 70 mod_label 0 +371 mod/lesson:addinstance write 50 mod_lesson 4 +372 mod/lesson:edit write 70 mod_lesson 4 +373 mod/lesson:grade write 70 mod_lesson 20 +374 mod/lesson:viewreports read 70 mod_lesson 8 +375 mod/lesson:manage write 70 mod_lesson 0 +376 mod/lesson:manageoverrides write 70 mod_lesson 0 +377 mod/lesson:view read 70 mod_lesson 0 +378 mod/lti:view read 70 mod_lti 0 +379 mod/lti:addinstance write 50 mod_lti 4 +380 mod/lti:manage write 70 mod_lti 8 +381 mod/lti:admin write 70 mod_lti 8 +382 mod/lti:addcoursetool write 50 mod_lti 0 +383 mod/lti:addpreconfiguredinstance write 50 mod_lti 0 +384 mod/lti:addmanualinstance write 50 mod_lti 0 +385 mod/lti:requesttooladd write 50 mod_lti 0 +386 mod/page:view read 70 mod_page 0 +387 mod/page:addinstance write 50 mod_page 4 +388 mod/quiz:view read 70 mod_quiz 0 +389 mod/quiz:addinstance write 50 mod_quiz 4 +390 mod/quiz:attempt write 70 mod_quiz 16 +391 mod/quiz:reviewmyattempts read 70 mod_quiz 0 +392 mod/quiz:manage write 70 mod_quiz 16 +393 mod/quiz:manageoverrides write 70 mod_quiz 0 +394 mod/quiz:preview write 70 mod_quiz 0 +395 mod/quiz:grade write 70 mod_quiz 20 +396 mod/quiz:regrade write 70 mod_quiz 16 +397 mod/quiz:viewreports read 70 mod_quiz 8 +398 mod/quiz:deleteattempts write 70 mod_quiz 32 +399 mod/quiz:ignoretimelimits read 70 mod_quiz 0 +400 mod/quiz:emailconfirmsubmission read 70 mod_quiz 0 +401 mod/quiz:emailnotifysubmission read 70 mod_quiz 0 +402 mod/quiz:emailwarnoverdue read 70 mod_quiz 0 +403 mod/resource:view read 70 mod_resource 0 +404 mod/resource:addinstance write 50 mod_resource 4 +405 mod/scorm:addinstance write 50 mod_scorm 4 +406 mod/scorm:viewreport read 70 mod_scorm 0 +407 mod/scorm:skipview read 70 mod_scorm 0 +408 mod/scorm:savetrack write 70 mod_scorm 0 +409 mod/scorm:viewscores read 70 mod_scorm 0 +410 mod/scorm:deleteresponses write 70 mod_scorm 0 +411 mod/scorm:deleteownresponses write 70 mod_scorm 0 +412 mod/survey:addinstance write 50 mod_survey 4 +413 mod/survey:participate read 70 mod_survey 0 +414 mod/survey:readresponses read 70 mod_survey 0 +415 mod/survey:download read 70 mod_survey 0 +416 mod/url:view read 70 mod_url 0 +417 mod/url:addinstance write 50 mod_url 4 +418 mod/wiki:addinstance write 50 mod_wiki 4 +419 mod/wiki:viewpage read 70 mod_wiki 0 +420 mod/wiki:editpage write 70 mod_wiki 16 +421 mod/wiki:createpage write 70 mod_wiki 16 +422 mod/wiki:viewcomment read 70 mod_wiki 0 +423 mod/wiki:editcomment write 70 mod_wiki 16 +424 mod/wiki:managecomment write 70 mod_wiki 0 +425 mod/wiki:managefiles write 70 mod_wiki 0 +426 mod/wiki:overridelock write 70 mod_wiki 0 +427 mod/wiki:managewiki write 70 mod_wiki 0 +428 mod/workshop:view read 70 mod_workshop 0 +429 mod/workshop:addinstance write 50 mod_workshop 4 +430 mod/workshop:switchphase write 70 mod_workshop 0 +431 mod/workshop:editdimensions write 70 mod_workshop 4 +432 mod/workshop:submit write 70 mod_workshop 0 +433 mod/workshop:peerassess write 70 mod_workshop 0 +434 mod/workshop:manageexamples write 70 mod_workshop 0 +435 mod/workshop:allocate write 70 mod_workshop 0 +436 mod/workshop:publishsubmissions write 70 mod_workshop 0 +437 mod/workshop:viewauthornames read 70 mod_workshop 0 +438 mod/workshop:viewreviewernames read 70 mod_workshop 0 +439 mod/workshop:viewallsubmissions read 70 mod_workshop 0 +440 mod/workshop:viewpublishedsubmissions read 70 mod_workshop 0 +441 mod/workshop:viewauthorpublished read 70 mod_workshop 0 +442 mod/workshop:viewallassessments read 70 mod_workshop 0 +443 mod/workshop:overridegrades write 70 mod_workshop 0 +444 mod/workshop:ignoredeadlines write 70 mod_workshop 0 +445 mod/workshop:deletesubmissions write 70 mod_workshop 0 +446 mod/workshop:exportsubmissions read 70 mod_workshop 0 +447 auth/oauth2:managelinkedlogins write 30 auth_oauth2 0 +448 enrol/category:synchronised write 10 enrol_category 0 +449 enrol/category:config write 50 enrol_category 0 +450 enrol/cohort:config write 50 enrol_cohort 0 +451 enrol/cohort:unenrol write 50 enrol_cohort 0 +452 enrol/database:unenrol write 50 enrol_database 0 +453 enrol/database:config write 50 enrol_database 0 +454 enrol/flatfile:manage write 50 enrol_flatfile 0 +455 enrol/flatfile:unenrol write 50 enrol_flatfile 0 +456 enrol/guest:config write 50 enrol_guest 0 +457 enrol/imsenterprise:config write 50 enrol_imsenterprise 0 +458 enrol/ldap:manage write 50 enrol_ldap 0 +459 enrol/lti:config write 50 enrol_lti 0 +460 enrol/lti:unenrol write 50 enrol_lti 0 +461 enrol/manual:config write 50 enrol_manual 0 +462 enrol/manual:enrol write 50 enrol_manual 0 +463 enrol/manual:manage write 50 enrol_manual 0 +464 enrol/manual:unenrol write 50 enrol_manual 0 +465 enrol/manual:unenrolself write 50 enrol_manual 0 +466 enrol/meta:config write 50 enrol_meta 0 +467 enrol/meta:selectaslinked read 50 enrol_meta 0 +468 enrol/meta:unenrol write 50 enrol_meta 0 +469 enrol/mnet:config write 50 enrol_mnet 0 +470 enrol/paypal:config write 50 enrol_paypal 0 +471 enrol/paypal:manage write 50 enrol_paypal 0 +472 enrol/paypal:unenrol write 50 enrol_paypal 0 +473 enrol/paypal:unenrolself write 50 enrol_paypal 0 +474 enrol/self:config write 50 enrol_self 0 +475 enrol/self:manage write 50 enrol_self 0 +476 enrol/self:holdkey write 50 enrol_self 0 +477 enrol/self:unenrolself write 50 enrol_self 0 +478 enrol/self:unenrol write 50 enrol_self 0 +479 message/airnotifier:managedevice write 10 message_airnotifier 0 +480 block/activity_modules:addinstance write 80 block_activity_modules 20 +481 block/activity_results:addinstance write 80 block_activity_results 20 +482 block/admin_bookmarks:myaddinstance write 10 block_admin_bookmarks 0 +483 block/admin_bookmarks:addinstance write 80 block_admin_bookmarks 20 +484 block/badges:addinstance read 80 block_badges 0 +485 block/badges:myaddinstance read 10 block_badges 8 +486 block/blog_menu:addinstance write 80 block_blog_menu 20 +487 block/blog_recent:addinstance write 80 block_blog_recent 20 +488 block/blog_tags:addinstance write 80 block_blog_tags 20 +489 block/calendar_month:myaddinstance write 10 block_calendar_month 0 +490 block/calendar_month:addinstance write 80 block_calendar_month 20 +491 block/calendar_upcoming:myaddinstance write 10 block_calendar_upcoming 0 +492 block/calendar_upcoming:addinstance write 80 block_calendar_upcoming 20 +493 block/comments:myaddinstance write 10 block_comments 0 +494 block/comments:addinstance write 80 block_comments 20 +495 block/completionstatus:addinstance write 80 block_completionstatus 20 +496 block/course_list:myaddinstance write 10 block_course_list 0 +497 block/course_list:addinstance write 80 block_course_list 20 +498 block/course_summary:addinstance write 80 block_course_summary 20 +499 block/feedback:addinstance write 80 block_feedback 20 +500 block/globalsearch:myaddinstance write 10 block_globalsearch 0 +501 block/globalsearch:addinstance write 80 block_globalsearch 0 +502 block/glossary_random:myaddinstance write 10 block_glossary_random 0 +503 block/glossary_random:addinstance write 80 block_glossary_random 20 +504 block/html:myaddinstance write 10 block_html 0 +505 block/html:addinstance write 80 block_html 20 +506 block/login:addinstance write 80 block_login 20 +507 block/lp:addinstance write 10 block_lp 0 +508 block/lp:myaddinstance write 10 block_lp 0 +509 block/mentees:myaddinstance write 10 block_mentees 0 +510 block/mentees:addinstance write 80 block_mentees 20 +511 block/mnet_hosts:myaddinstance write 10 block_mnet_hosts 0 +512 block/mnet_hosts:addinstance write 80 block_mnet_hosts 20 +513 block/myoverview:myaddinstance write 10 block_myoverview 0 +514 block/myprofile:myaddinstance write 10 block_myprofile 0 +515 block/myprofile:addinstance write 80 block_myprofile 20 +516 block/navigation:myaddinstance write 10 block_navigation 0 +517 block/navigation:addinstance write 80 block_navigation 20 +518 block/news_items:myaddinstance write 10 block_news_items 0 +519 block/news_items:addinstance write 80 block_news_items 20 +520 block/online_users:myaddinstance write 10 block_online_users 0 +521 block/online_users:addinstance write 80 block_online_users 20 +522 block/online_users:viewlist read 80 block_online_users 0 +523 block/private_files:myaddinstance write 10 block_private_files 0 +524 block/private_files:addinstance write 80 block_private_files 20 +525 block/quiz_results:addinstance write 80 block_quiz_results 20 +526 block/recent_activity:addinstance write 80 block_recent_activity 20 +527 block/recent_activity:viewaddupdatemodule read 50 block_recent_activity 0 +528 block/recent_activity:viewdeletemodule read 50 block_recent_activity 0 +529 block/recentlyaccessedcourses:myaddinstance write 10 block_recentlyaccessedcourses 0 +530 block/recentlyaccesseditems:myaddinstance write 10 block_recentlyaccesseditems 0 +531 block/rss_client:myaddinstance write 10 block_rss_client 0 +532 block/rss_client:addinstance write 80 block_rss_client 20 +533 block/rss_client:manageownfeeds write 80 block_rss_client 0 +534 block/rss_client:manageanyfeeds write 80 block_rss_client 16 +535 block/search_forums:addinstance write 80 block_search_forums 20 +536 block/section_links:addinstance write 80 block_section_links 20 +537 block/selfcompletion:addinstance write 80 block_selfcompletion 20 +538 block/settings:myaddinstance write 10 block_settings 0 +539 block/settings:addinstance write 80 block_settings 20 +540 block/site_main_menu:addinstance write 80 block_site_main_menu 20 +541 block/social_activities:addinstance write 80 block_social_activities 20 +542 block/starredcourses:myaddinstance write 10 block_starredcourses 0 +543 block/tag_flickr:addinstance write 80 block_tag_flickr 20 +544 block/tag_youtube:addinstance write 80 block_tag_youtube 20 +545 block/tags:myaddinstance write 10 block_tags 0 +546 block/tags:addinstance write 80 block_tags 20 +547 block/timeline:myaddinstance write 10 block_timeline 0 +548 report/completion:view read 50 report_completion 8 +549 report/courseoverview:view read 10 report_courseoverview 8 +550 report/log:view read 50 report_log 8 +551 report/log:viewtoday read 50 report_log 8 +552 report/loglive:view read 50 report_loglive 8 +553 report/outline:view read 50 report_outline 8 +554 report/outline:viewuserreport read 50 report_outline 8 +555 report/participation:view read 50 report_participation 8 +556 report/performance:view read 10 report_performance 2 +557 report/progress:view read 50 report_progress 8 +558 report/questioninstances:view read 10 report_questioninstances 0 +559 report/security:view read 10 report_security 2 +560 report/stats:view read 50 report_stats 8 +561 report/status:view read 10 report_status 2 +562 report/usersessions:manageownsessions write 30 report_usersessions 0 +563 gradeexport/ods:view read 50 gradeexport_ods 8 +564 gradeexport/ods:publish read 50 gradeexport_ods 8 +565 gradeexport/txt:view read 50 gradeexport_txt 8 +566 gradeexport/txt:publish read 50 gradeexport_txt 8 +567 gradeexport/xls:view read 50 gradeexport_xls 8 +568 gradeexport/xls:publish read 50 gradeexport_xls 8 +569 gradeexport/xml:view read 50 gradeexport_xml 8 +570 gradeexport/xml:publish read 50 gradeexport_xml 8 +571 gradeimport/csv:view write 50 gradeimport_csv 0 +572 gradeimport/direct:view write 50 gradeimport_direct 0 +573 gradeimport/xml:view write 50 gradeimport_xml 0 +574 gradeimport/xml:publish write 50 gradeimport_xml 0 +575 gradereport/grader:view read 50 gradereport_grader 8 +576 gradereport/history:view read 50 gradereport_history 8 +577 gradereport/outcomes:view read 50 gradereport_outcomes 8 +578 gradereport/overview:view read 50 gradereport_overview 8 +579 gradereport/singleview:view read 50 gradereport_singleview 8 +580 gradereport/user:view read 50 gradereport_user 8 +581 webservice/rest:use read 50 webservice_rest 0 +582 webservice/soap:use read 50 webservice_soap 0 +583 webservice/xmlrpc:use read 50 webservice_xmlrpc 0 +584 repository/areafiles:view read 70 repository_areafiles 0 +585 repository/boxnet:view read 70 repository_boxnet 0 +586 repository/contentbank:view read 70 repository_contentbank 0 +587 repository/contentbank:accesscoursecontent read 50 repository_contentbank 0 +588 repository/contentbank:accesscoursecategorycontent read 40 repository_contentbank 0 +589 repository/contentbank:accessgeneralcontent read 40 repository_contentbank 0 +590 repository/coursefiles:view read 70 repository_coursefiles 0 +591 repository/dropbox:view read 70 repository_dropbox 0 +592 repository/equella:view read 70 repository_equella 0 +593 repository/filesystem:view read 70 repository_filesystem 0 +594 repository/flickr:view read 70 repository_flickr 0 +595 repository/flickr_public:view read 70 repository_flickr_public 0 +596 repository/googledocs:view read 70 repository_googledocs 0 +597 repository/local:view read 70 repository_local 0 +598 repository/merlot:view read 70 repository_merlot 0 +599 repository/nextcloud:view read 70 repository_nextcloud 0 +600 repository/onedrive:view read 70 repository_onedrive 0 +601 repository/picasa:view read 70 repository_picasa 0 +602 repository/recent:view read 70 repository_recent 0 +603 repository/s3:view read 70 repository_s3 0 +604 repository/skydrive:view read 70 repository_skydrive 0 +605 repository/upload:view read 70 repository_upload 0 +606 repository/url:view read 70 repository_url 0 +607 repository/user:view read 70 repository_user 0 +608 repository/webdav:view read 70 repository_webdav 0 +609 repository/wikimedia:view read 70 repository_wikimedia 0 +610 repository/youtube:view read 70 repository_youtube 0 +611 tool/customlang:view read 10 tool_customlang 2 +612 tool/customlang:edit write 10 tool_customlang 6 +613 tool/dataprivacy:managedatarequests write 10 tool_dataprivacy 60 +614 tool/dataprivacy:requestdeleteforotheruser write 10 tool_dataprivacy 60 +615 tool/dataprivacy:managedataregistry write 10 tool_dataprivacy 60 +616 tool/dataprivacy:makedatarequestsforchildren write 30 tool_dataprivacy 24 +617 tool/dataprivacy:makedatadeletionrequestsforchildren write 30 tool_dataprivacy 24 +618 tool/dataprivacy:downloadownrequest read 30 tool_dataprivacy 0 +619 tool/dataprivacy:downloadallrequests read 30 tool_dataprivacy 8 +620 tool/dataprivacy:requestdelete write 30 tool_dataprivacy 32 +621 tool/lpmigrate:frameworksmigrate write 10 tool_lpmigrate 0 +622 tool/monitor:subscribe read 50 tool_monitor 8 +623 tool/monitor:managerules write 50 tool_monitor 4 +624 tool/monitor:managetool write 10 tool_monitor 4 +625 tool/policy:accept write 10 tool_policy 0 +626 tool/policy:acceptbehalf write 30 tool_policy 8 +627 tool/policy:managedocs write 10 tool_policy 0 +628 tool/policy:viewacceptances read 10 tool_policy 0 +629 tool/recyclebin:deleteitems write 50 tool_recyclebin 32 +630 tool/recyclebin:restoreitems write 50 tool_recyclebin 0 +631 tool/recyclebin:viewitems read 50 tool_recyclebin 0 +632 tool/uploaduser:uploaduserpictures write 10 tool_uploaduser 16 +633 tool/usertours:managetours write 10 tool_usertours 4 +634 contenttype/h5p:access read 50 contenttype_h5p 0 +635 contenttype/h5p:upload write 50 contenttype_h5p 16 +636 contenttype/h5p:useeditor write 50 contenttype_h5p 16 +637 booktool/exportimscp:export read 70 booktool_exportimscp 0 +638 booktool/importhtml:import write 70 booktool_importhtml 4 +639 booktool/print:print read 70 booktool_print 0 +640 forumreport/summary:view read 70 forumreport_summary 0 +641 forumreport/summary:viewall read 70 forumreport_summary 8 +642 quiz/grading:viewstudentnames read 70 quiz_grading 0 +643 quiz/grading:viewidnumber read 70 quiz_grading 0 +644 quiz/statistics:view read 70 quiz_statistics 0 +645 quizaccess/seb:managetemplates write 10 quizaccess_seb 0 +646 quizaccess/seb:bypassseb read 70 quizaccess_seb 0 +647 quizaccess/seb:manage_seb_requiresafeexambrowser write 70 quizaccess_seb 0 +648 quizaccess/seb:manage_seb_templateid read 70 quizaccess_seb 0 +649 quizaccess/seb:manage_filemanager_sebconfigfile write 70 quizaccess_seb 0 +650 quizaccess/seb:manage_seb_showsebdownloadlink write 70 quizaccess_seb 0 +651 quizaccess/seb:manage_seb_allowedbrowserexamkeys write 70 quizaccess_seb 0 +652 quizaccess/seb:manage_seb_linkquitseb write 70 quizaccess_seb 0 +653 quizaccess/seb:manage_seb_userconfirmquit write 70 quizaccess_seb 0 +654 quizaccess/seb:manage_seb_allowuserquitseb write 70 quizaccess_seb 0 +655 quizaccess/seb:manage_seb_quitpassword write 70 quizaccess_seb 0 +656 quizaccess/seb:manage_seb_allowreloadinexam write 70 quizaccess_seb 0 +657 quizaccess/seb:manage_seb_showsebtaskbar write 70 quizaccess_seb 0 +658 quizaccess/seb:manage_seb_showreloadbutton write 70 quizaccess_seb 0 +659 quizaccess/seb:manage_seb_showtime write 70 quizaccess_seb 0 +660 quizaccess/seb:manage_seb_showkeyboardlayout write 70 quizaccess_seb 0 +661 quizaccess/seb:manage_seb_showwificontrol write 70 quizaccess_seb 0 +662 quizaccess/seb:manage_seb_enableaudiocontrol write 70 quizaccess_seb 0 +663 quizaccess/seb:manage_seb_muteonstartup write 70 quizaccess_seb 0 +664 quizaccess/seb:manage_seb_allowspellchecking write 70 quizaccess_seb 0 +665 quizaccess/seb:manage_seb_activateurlfiltering write 70 quizaccess_seb 0 +666 quizaccess/seb:manage_seb_filterembeddedcontent write 70 quizaccess_seb 0 +667 quizaccess/seb:manage_seb_expressionsallowed write 70 quizaccess_seb 0 +668 quizaccess/seb:manage_seb_regexallowed write 70 quizaccess_seb 0 +669 quizaccess/seb:manage_seb_expressionsblocked write 70 quizaccess_seb 0 +670 quizaccess/seb:manage_seb_regexblocked write 70 quizaccess_seb 0 +671 atto/h5p:addembed write 70 atto_h5p 0 +672 atto/recordrtc:recordaudio write 70 atto_recordrtc 0 +673 atto/recordrtc:recordvideo write 70 atto_recordrtc 0 +\. + + +-- +-- TOC entry 11446 (class 0 OID 0) +-- Dependencies: 292 +-- Name: mdl_capabilities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_capabilities_id_seq', 673, true); + + +-- +-- TOC entry 10180 (class 0 OID 20483) +-- Dependencies: 695 +-- Data for Name: mdl_chat; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_chat (id, course, name, intro, introformat, keepdays, studentlogs, chattime, schedule, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11447 (class 0 OID 0) +-- Dependencies: 694 +-- Name: mdl_chat_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_chat_id_seq', 1, false); + + +-- +-- TOC entry 10182 (class 0 OID 20503) +-- Dependencies: 697 +-- Data for Name: mdl_chat_messages; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_chat_messages (id, chatid, userid, groupid, issystem, message, "timestamp") FROM stdin; +\. + + +-- +-- TOC entry 10184 (class 0 OID 20523) +-- Dependencies: 699 +-- Data for Name: mdl_chat_messages_current; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_chat_messages_current (id, chatid, userid, groupid, issystem, message, "timestamp") FROM stdin; +\. + + +-- +-- TOC entry 11448 (class 0 OID 0) +-- Dependencies: 698 +-- Name: mdl_chat_messages_current_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_chat_messages_current_id_seq', 1, false); + + +-- +-- TOC entry 11449 (class 0 OID 0) +-- Dependencies: 696 +-- Name: mdl_chat_messages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_chat_messages_id_seq', 1, false); + + +-- +-- TOC entry 10186 (class 0 OID 20543) +-- Dependencies: 701 +-- Data for Name: mdl_chat_users; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_chat_users (id, chatid, userid, groupid, version, ip, firstping, lastping, lastmessageping, sid, course, lang) FROM stdin; +\. + + +-- +-- TOC entry 11450 (class 0 OID 0) +-- Dependencies: 700 +-- Name: mdl_chat_users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_chat_users_id_seq', 1, false); + + +-- +-- TOC entry 10188 (class 0 OID 20566) +-- Dependencies: 703 +-- Data for Name: mdl_choice; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_choice (id, course, name, intro, introformat, publish, showresults, display, allowupdate, allowmultiple, showunanswered, includeinactive, limitanswers, timeopen, timeclose, showpreview, timemodified, completionsubmit) FROM stdin; +\. + + +-- +-- TOC entry 10192 (class 0 OID 20609) +-- Dependencies: 707 +-- Data for Name: mdl_choice_answers; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_choice_answers (id, choiceid, userid, optionid, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11451 (class 0 OID 0) +-- Dependencies: 706 +-- Name: mdl_choice_answers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_choice_answers_id_seq', 1, false); + + +-- +-- TOC entry 11452 (class 0 OID 0) +-- Dependencies: 702 +-- Name: mdl_choice_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_choice_id_seq', 1, false); + + +-- +-- TOC entry 10190 (class 0 OID 20594) +-- Dependencies: 705 +-- Data for Name: mdl_choice_options; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_choice_options (id, choiceid, text, maxanswers, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11453 (class 0 OID 0) +-- Dependencies: 704 +-- Name: mdl_choice_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_choice_options_id_seq', 1, false); + + +-- +-- TOC entry 9892 (class 0 OID 18318) +-- Dependencies: 407 +-- Data for Name: mdl_cohort; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_cohort (id, contextid, name, idnumber, description, descriptionformat, visible, component, timecreated, timemodified, theme) FROM stdin; +\. + + +-- +-- TOC entry 11454 (class 0 OID 0) +-- Dependencies: 406 +-- Name: mdl_cohort_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_cohort_id_seq', 1, false); + + +-- +-- TOC entry 9894 (class 0 OID 18333) +-- Dependencies: 409 +-- Data for Name: mdl_cohort_members; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_cohort_members (id, cohortid, userid, timeadded) FROM stdin; +\. + + +-- +-- TOC entry 11455 (class 0 OID 0) +-- Dependencies: 408 +-- Name: mdl_cohort_members_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_cohort_members_id_seq', 1, false); + + +-- +-- TOC entry 9938 (class 0 OID 18650) +-- Dependencies: 453 +-- Data for Name: mdl_comments; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_comments (id, contextid, component, commentarea, itemid, content, format, userid, timecreated) FROM stdin; +\. + + +-- +-- TOC entry 11456 (class 0 OID 0) +-- Dependencies: 452 +-- Name: mdl_comments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_comments_id_seq', 1, false); + + +-- +-- TOC entry 10022 (class 0 OID 19276) +-- Dependencies: 537 +-- Data for Name: mdl_competency; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_competency (id, shortname, description, descriptionformat, idnumber, competencyframeworkid, parentid, path, sortorder, ruletype, ruleoutcome, ruleconfig, scaleid, scaleconfiguration, timecreated, timemodified, usermodified) FROM stdin; +\. + + +-- +-- TOC entry 10028 (class 0 OID 19317) +-- Dependencies: 543 +-- Data for Name: mdl_competency_coursecomp; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_competency_coursecomp (id, courseid, competencyid, ruleoutcome, timecreated, timemodified, usermodified, sortorder) FROM stdin; +\. + + +-- +-- TOC entry 11457 (class 0 OID 0) +-- Dependencies: 542 +-- Name: mdl_competency_coursecomp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_competency_coursecomp_id_seq', 1, false); + + +-- +-- TOC entry 10024 (class 0 OID 19293) +-- Dependencies: 539 +-- Data for Name: mdl_competency_coursecompsetting; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_competency_coursecompsetting (id, courseid, pushratingstouserplans, timecreated, timemodified, usermodified) FROM stdin; +\. + + +-- +-- TOC entry 11458 (class 0 OID 0) +-- Dependencies: 538 +-- Name: mdl_competency_coursecompsetting_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_competency_coursecompsetting_id_seq', 1, false); + + +-- +-- TOC entry 10048 (class 0 OID 19425) +-- Dependencies: 563 +-- Data for Name: mdl_competency_evidence; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_competency_evidence (id, usercompetencyid, contextid, action, actionuserid, descidentifier, desccomponent, desca, url, grade, note, timecreated, timemodified, usermodified) FROM stdin; +\. + + +-- +-- TOC entry 11459 (class 0 OID 0) +-- Dependencies: 562 +-- Name: mdl_competency_evidence_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_competency_evidence_id_seq', 1, false); + + +-- +-- TOC entry 10026 (class 0 OID 19302) +-- Dependencies: 541 +-- Data for Name: mdl_competency_framework; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_competency_framework (id, shortname, contextid, idnumber, description, descriptionformat, scaleid, scaleconfiguration, visible, taxonomies, timecreated, timemodified, usermodified) FROM stdin; +\. + + +-- +-- TOC entry 11460 (class 0 OID 0) +-- Dependencies: 540 +-- Name: mdl_competency_framework_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_competency_framework_id_seq', 1, false); + + +-- +-- TOC entry 11461 (class 0 OID 0) +-- Dependencies: 536 +-- Name: mdl_competency_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_competency_id_seq', 1, false); + + +-- +-- TOC entry 10054 (class 0 OID 19462) +-- Dependencies: 569 +-- Data for Name: mdl_competency_modulecomp; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_competency_modulecomp (id, cmid, timecreated, timemodified, usermodified, sortorder, competencyid, ruleoutcome) FROM stdin; +\. + + +-- +-- TOC entry 11462 (class 0 OID 0) +-- Dependencies: 568 +-- Name: mdl_competency_modulecomp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_competency_modulecomp_id_seq', 1, false); + + +-- +-- TOC entry 10030 (class 0 OID 19329) +-- Dependencies: 545 +-- Data for Name: mdl_competency_plan; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_competency_plan (id, name, description, descriptionformat, userid, templateid, origtemplateid, status, duedate, reviewerid, timecreated, timemodified, usermodified) FROM stdin; +\. + + +-- +-- TOC entry 11463 (class 0 OID 0) +-- Dependencies: 544 +-- Name: mdl_competency_plan_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_competency_plan_id_seq', 1, false); + + +-- +-- TOC entry 10046 (class 0 OID 19416) +-- Dependencies: 561 +-- Data for Name: mdl_competency_plancomp; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_competency_plancomp (id, planid, competencyid, sortorder, timecreated, timemodified, usermodified) FROM stdin; +\. + + +-- +-- TOC entry 11464 (class 0 OID 0) +-- Dependencies: 560 +-- Name: mdl_competency_plancomp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_competency_plancomp_id_seq', 1, false); + + +-- +-- TOC entry 10038 (class 0 OID 19380) +-- Dependencies: 553 +-- Data for Name: mdl_competency_relatedcomp; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_competency_relatedcomp (id, competencyid, relatedcompetencyid, timecreated, timemodified, usermodified) FROM stdin; +\. + + +-- +-- TOC entry 11465 (class 0 OID 0) +-- Dependencies: 552 +-- Name: mdl_competency_relatedcomp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_competency_relatedcomp_id_seq', 1, false); + + +-- +-- TOC entry 10032 (class 0 OID 19347) +-- Dependencies: 547 +-- Data for Name: mdl_competency_template; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_competency_template (id, shortname, contextid, description, descriptionformat, visible, duedate, timecreated, timemodified, usermodified) FROM stdin; +\. + + +-- +-- TOC entry 11466 (class 0 OID 0) +-- Dependencies: 546 +-- Name: mdl_competency_template_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_competency_template_id_seq', 1, false); + + +-- +-- TOC entry 10036 (class 0 OID 19370) +-- Dependencies: 551 +-- Data for Name: mdl_competency_templatecohort; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_competency_templatecohort (id, templateid, cohortid, timecreated, timemodified, usermodified) FROM stdin; +\. + + +-- +-- TOC entry 11467 (class 0 OID 0) +-- Dependencies: 550 +-- Name: mdl_competency_templatecohort_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_competency_templatecohort_id_seq', 1, false); + + +-- +-- TOC entry 10034 (class 0 OID 19360) +-- Dependencies: 549 +-- Data for Name: mdl_competency_templatecomp; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_competency_templatecomp (id, templateid, competencyid, timecreated, timemodified, usermodified, sortorder) FROM stdin; +\. + + +-- +-- TOC entry 11468 (class 0 OID 0) +-- Dependencies: 548 +-- Name: mdl_competency_templatecomp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_competency_templatecomp_id_seq', 1, false); + + +-- +-- TOC entry 10040 (class 0 OID 19388) +-- Dependencies: 555 +-- Data for Name: mdl_competency_usercomp; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_competency_usercomp (id, userid, competencyid, status, reviewerid, proficiency, grade, timecreated, timemodified, usermodified) FROM stdin; +\. + + +-- +-- TOC entry 11469 (class 0 OID 0) +-- Dependencies: 554 +-- Name: mdl_competency_usercomp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_competency_usercomp_id_seq', 1, false); + + +-- +-- TOC entry 10042 (class 0 OID 19398) +-- Dependencies: 557 +-- Data for Name: mdl_competency_usercompcourse; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_competency_usercompcourse (id, userid, courseid, competencyid, proficiency, grade, timecreated, timemodified, usermodified) FROM stdin; +\. + + +-- +-- TOC entry 11470 (class 0 OID 0) +-- Dependencies: 556 +-- Name: mdl_competency_usercompcourse_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_competency_usercompcourse_id_seq', 1, false); + + +-- +-- TOC entry 10044 (class 0 OID 19407) +-- Dependencies: 559 +-- Data for Name: mdl_competency_usercompplan; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_competency_usercompplan (id, userid, competencyid, planid, proficiency, grade, sortorder, timecreated, timemodified, usermodified) FROM stdin; +\. + + +-- +-- TOC entry 11471 (class 0 OID 0) +-- Dependencies: 558 +-- Name: mdl_competency_usercompplan_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_competency_usercompplan_id_seq', 1, false); + + +-- +-- TOC entry 10050 (class 0 OID 19439) +-- Dependencies: 565 +-- Data for Name: mdl_competency_userevidence; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_competency_userevidence (id, userid, name, description, descriptionformat, url, timecreated, timemodified, usermodified) FROM stdin; +\. + + +-- +-- TOC entry 11472 (class 0 OID 0) +-- Dependencies: 564 +-- Name: mdl_competency_userevidence_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_competency_userevidence_id_seq', 1, false); + + +-- +-- TOC entry 10052 (class 0 OID 19452) +-- Dependencies: 567 +-- Data for Name: mdl_competency_userevidencecomp; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_competency_userevidencecomp (id, userevidenceid, competencyid, timecreated, timemodified, usermodified) FROM stdin; +\. + + +-- +-- TOC entry 11473 (class 0 OID 0) +-- Dependencies: 566 +-- Name: mdl_competency_userevidencecomp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_competency_userevidencecomp_id_seq', 1, false); + + +-- +-- TOC entry 9671 (class 0 OID 16387) +-- Dependencies: 186 +-- Data for Name: mdl_config; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_config (id, name, value) FROM stdin; +3 auth email +4 enrol_plugins_enabled manual,guest,self,cohort +5 theme boost +6 filter_multilang_converted 1 +7 siteidentifier H3kgTYs3E7HQmfbuxbNmm2edmkYrsAsx18.237.39.129 +8 backup_version 2008111700 +9 backup_release 2.0 dev +10 mnet_dispatcher_mode off +11 sessiontimeout 28800 +12 stringfilters +15 antiviruses +16 media_plugins_sortorder videojs,youtube,swf +17 upgrade_extracreditweightsstepignored 1 +18 upgrade_calculatedgradeitemsignored 1 +19 upgrade_letterboundarycourses 1 +20 mnet_localhost_id 1 +21 mnet_all_hosts_id 2 +22 siteguest 1 +23 siteadmins 2 +27 gdversion 2 +28 licenses unknown,allrightsreserved,public,cc,cc-nd,cc-nc-nd,cc-nc,cc-nc-sa,cc-sa +29 sitedefaultlicense unknown +30 badges_site_backpack 1 +31 version 2020061503.07 +32 enableuserfeedback 0 +33 userfeedback_nextreminder 1 +34 userfeedback_remindafter 90 +35 enableoutcomes 0 +36 usecomments 1 +37 usetags 1 +38 enablenotes 1 +39 enableportfolios 0 +41 enablestats 0 +42 enablerssfeeds 0 +43 enableblogs 1 +44 enablecompletion 1 +45 completiondefault 1 +46 enableavailability 1 +47 enableplagiarism 0 +48 enablebadges 1 +49 enableglobalsearch 0 +50 allowstealth 0 +51 enableanalytics 1 +52 allowemojipicker 1 +53 userfiltersdefault realname +54 defaultpreference_maildisplay 2 +55 defaultpreference_mailformat 1 +56 defaultpreference_maildigest 0 +57 defaultpreference_autosubscribe 1 +58 defaultpreference_trackforums 0 +59 autologinguests 0 +60 hiddenuserfields +61 showuseridentity email +62 fullnamedisplay language +63 alternativefullnameformat language +64 maxusersperpage 100 +65 enablegravatar 0 +66 gravatardefaulturl mm +67 agedigitalconsentverification 0 +68 agedigitalconsentmap *, 16\nAT, 14\nBE, 13\nBG, 14\nCY, 14\nCZ, 15\nDK, 13\nEE, 13\nES, 14\nFI, 13\nFR, 15\nGB, 13\nGR, 15\nIT, 14\nLT, 14\nLV, 13\nMT, 13\nNO, 13\nPT, 13\nSE, 13\nUS, 13 +69 sitepolicy +70 sitepolicyguest +71 enablecourserequests 1 +72 defaultrequestcategory 1 +73 lockrequestcategory 0 +74 courserequestnotify +75 activitychoosertabmode 0 +76 enableasyncbackup 0 +77 grade_profilereport user +78 grade_aggregationposition 1 +79 grade_includescalesinaggregation 1 +80 grade_hiddenasdate 0 +81 gradepublishing 0 +82 grade_export_exportfeedback 0 +83 grade_export_displaytype 1 +84 grade_export_decimalpoints 2 +85 grade_navmethod 1 +86 grade_export_userprofilefields firstname,lastname,idnumber,institution,department,email +87 grade_export_customprofilefields +88 recovergradesdefault 0 +89 gradeexport +90 unlimitedgrades 0 +91 grade_report_showmin 1 +92 gradepointmax 100 +93 gradepointdefault 100 +94 grade_minmaxtouse 1 +95 grade_mygrades_report overview +96 gradereport_mygradeurl +97 grade_hideforcedsettings 1 +98 grade_aggregation 13 +99 grade_aggregation_flag 0 +100 grade_aggregations_visible 13 +101 grade_aggregateonlygraded 1 +102 grade_aggregateonlygraded_flag 2 +103 grade_aggregateoutcomes 0 +104 grade_aggregateoutcomes_flag 2 +105 grade_keephigh 0 +106 grade_keephigh_flag 3 +107 grade_droplow 0 +108 grade_droplow_flag 2 +109 grade_overridecat 1 +110 grade_displaytype 1 +111 grade_decimalpoints 2 +112 grade_item_advanced iteminfo,idnumber,gradepass,plusfactor,multfactor,display,decimals,hiddenuntil,locktime +113 grade_report_studentsperpage 100 +114 grade_report_showonlyactiveenrol 1 +115 grade_report_quickgrading 1 +116 grade_report_showquickfeedback 0 +117 grade_report_meanselection 1 +118 grade_report_enableajax 0 +119 grade_report_showcalculations 1 +120 grade_report_showeyecons 0 +121 grade_report_showaverages 1 +122 grade_report_showlocks 0 +123 grade_report_showranges 0 +25 jsrev 1609808510 +26 templaterev 1609808510 +13 filterall 0 +24 themerev 1609808510 +2 rolesactive 1 +40 enablewebservices 0 +124 grade_report_showanalysisicon 1 +125 grade_report_showuserimage 1 +126 grade_report_showactivityicons 1 +127 grade_report_shownumberofgrades 0 +128 grade_report_averagesdisplaytype inherit +129 grade_report_rangesdisplaytype inherit +130 grade_report_averagesdecimalpoints inherit +131 grade_report_rangesdecimalpoints inherit +132 grade_report_historyperpage 50 +133 grade_report_overview_showrank 0 +134 grade_report_overview_showtotalsifcontainhidden 0 +135 grade_report_user_showrank 0 +136 grade_report_user_showpercentage 1 +137 grade_report_user_showgrade 1 +138 grade_report_user_showfeedback 1 +139 grade_report_user_showrange 1 +140 grade_report_user_showweight 1 +141 grade_report_user_showaverage 0 +142 grade_report_user_showlettergrade 0 +143 grade_report_user_rangedecimals 0 +144 grade_report_user_showhiddenitems 1 +145 grade_report_user_showtotalsifcontainhidden 0 +146 grade_report_user_showcontributiontocoursetotal 1 +147 badges_defaultissuername +148 badges_defaultissuercontact +149 badges_badgesalt badges1609808466 +150 badges_allowcoursebadges 1 +151 badges_allowexternalbackpack 1 +152 rememberuserlicensepref 1 +154 forcetimezone 99 +155 country 0 +156 defaultcity +157 geoip2file /var/www/moodledata/geoip/GeoLite2-City.mmdb +158 googlemapkey3 +159 allcountrycodes +160 autolang 1 +161 lang en +162 langmenu 1 +163 langlist +165 langcache 1 +166 langstringcache 1 +167 locale +168 latinexcelexport 0 +169 messaging 1 +170 messagingallusers 0 +171 messagingdefaultpressenter 1 +172 messagingdeletereadnotificationsdelay 604800 +173 messagingdeleteallnotificationsdelay 2620800 +174 messagingallowemailoverride 0 +175 requiremodintro 0 +177 authloginviaemail 0 +178 allowaccountssameemail 0 +179 authpreventaccountcreation 0 +180 loginpageautofocus 0 +181 guestloginbutton 1 +182 limitconcurrentlogins 0 +183 alternateloginurl +184 forgottenpasswordurl +185 auth_instructions +186 allowemailaddresses +187 denyemailaddresses +188 verifychangedemail 1 +189 recaptchapublickey +190 recaptchaprivatekey +191 filteruploadedfiles 0 +192 filtermatchoneperpage 0 +193 filtermatchonepertext 0 +194 media_default_width 400 +195 media_default_height 300 +196 portfolio_moderate_filesize_threshold 1048576 +197 portfolio_high_filesize_threshold 5242880 +198 portfolio_moderate_db_threshold 20 +199 portfolio_high_db_threshold 50 +200 repositorycacheexpire 120 +201 repositorygetfiletimeout 30 +202 repositorysyncfiletimeout 1 +203 repositorysyncimagetimeout 3 +204 repositoryallowexternallinks 1 +205 legacyfilesinnewcourses 0 +206 legacyfilesaddallowed 1 +207 searchengine simpledb +208 searchindexwhendisabled 0 +209 searchindextime 600 +210 searchallavailablecourses 0 +211 searchincludeallcourses 0 +212 searchenablecategories 0 +213 searchdefaultcategory core-all +214 searchhideallcategory 0 +215 enablewsdocumentation 0 +216 allowbeforeblock 0 +217 allowedip +218 blockedip +219 protectusernames 1 +220 forcelogin 0 +221 forceloginforprofiles 1 +222 forceloginforprofileimage 0 +223 opentowebcrawlers 0 +224 allowindexing 0 +225 maxbytes 0 +226 userquota 104857600 +227 allowobjectembed 0 +228 enabletrusttext 0 +229 maxeditingtime 1800 +230 extendedusernamechars 0 +231 keeptagnamecase 1 +232 profilesforenrolledusersonly 1 +233 cronclionly 1 +234 cronremotepassword +235 lockoutthreshold 0 +236 lockoutwindow 1800 +237 lockoutduration 1800 +238 passwordpolicy 1 +239 minpasswordlength 8 +240 minpassworddigits 1 +241 minpasswordlower 1 +242 minpasswordupper 1 +243 minpasswordnonalphanum 1 +244 maxconsecutiveidentchars 0 +245 passwordpolicycheckonlogin 0 +246 passwordreuselimit 0 +247 pwresettime 1800 +248 passwordchangelogout 0 +249 passwordchangetokendeletion 0 +250 tokenduration 7257600 +251 groupenrolmentkeypolicy 1 +252 disableuserimages 0 +253 emailchangeconfirmation 1 +254 rememberusername 2 +255 strictformsrequired 0 +256 cookiesecure 1 +257 cookiehttponly 0 +258 allowframembedding 0 +259 curlsecurityblockedhosts +260 curlsecurityallowedport +261 displayloginfailures 0 +262 notifyloginfailures +263 notifyloginthreshold 10 +264 themelist +265 themedesignermode 0 +266 allowuserthemes 0 +267 allowcoursethemes 0 +268 allowcategorythemes 0 +269 allowcohortthemes 0 +270 allowthemechangeonurl 0 +271 allowuserblockhiding 1 +272 langmenuinsecurelayout 0 +273 logininfoinsecurelayout 0 +274 custommenuitems +275 customusermenuitems grades,grades|/grade/report/mygrades.php|t/grades\nmessages,message|/message/index.php|t/message\npreferences,moodle|/user/preferences.php|t/preferences +276 enabledevicedetection 1 +277 devicedetectregex [] +278 calendartype gregorian +279 calendar_adminseesall 0 +280 calendar_site_timeformat 0 +281 calendar_startwday 1 +282 calendar_weekend 65 +283 calendar_lookahead 21 +284 calendar_maxevents 10 +285 enablecalendarexport 1 +286 calendar_customexport 1 +287 calendar_exportlookahead 365 +288 calendar_exportlookback 5 +290 calendar_showicalsource 1 +291 useblogassociations 1 +292 bloglevel 4 +293 useexternalblogs 1 +294 externalblogcrontime 86400 +295 maxexternalblogsperuser 1 +296 blogusecomments 1 +297 blogshowcommentscount 1 +298 defaulthomepage 1 +299 allowguestmymoodle 1 +300 navshowfullcoursenames 0 +301 navshowcategories 1 +302 navshowmycoursecategories 0 +303 navshowallcourses 0 +304 navsortmycoursessort sortorder +305 navsortmycourseshiddenlast 1 +306 navcourselimit 10 +307 usesitenameforsitepages 0 +308 linkadmincategories 1 +309 linkcoursesections 1 +310 navshowfrontpagemods 1 +311 navadduserpostslinks 1 +312 formatstringstriptags 1 +313 emoticons [{"text":":-)","imagename":"s\\/smiley","imagecomponent":"core","altidentifier":"smiley","altcomponent":"core_pix"},{"text":":)","imagename":"s\\/smiley","imagecomponent":"core","altidentifier":"smiley","altcomponent":"core_pix"},{"text":":-D","imagename":"s\\/biggrin","imagecomponent":"core","altidentifier":"biggrin","altcomponent":"core_pix"},{"text":";-)","imagename":"s\\/wink","imagecomponent":"core","altidentifier":"wink","altcomponent":"core_pix"},{"text":":-\\/","imagename":"s\\/mixed","imagecomponent":"core","altidentifier":"mixed","altcomponent":"core_pix"},{"text":"V-.","imagename":"s\\/thoughtful","imagecomponent":"core","altidentifier":"thoughtful","altcomponent":"core_pix"},{"text":":-P","imagename":"s\\/tongueout","imagecomponent":"core","altidentifier":"tongueout","altcomponent":"core_pix"},{"text":":-p","imagename":"s\\/tongueout","imagecomponent":"core","altidentifier":"tongueout","altcomponent":"core_pix"},{"text":"B-)","imagename":"s\\/cool","imagecomponent":"core","altidentifier":"cool","altcomponent":"core_pix"},{"text":"^-)","imagename":"s\\/approve","imagecomponent":"core","altidentifier":"approve","altcomponent":"core_pix"},{"text":"8-)","imagename":"s\\/wideeyes","imagecomponent":"core","altidentifier":"wideeyes","altcomponent":"core_pix"},{"text":":o)","imagename":"s\\/clown","imagecomponent":"core","altidentifier":"clown","altcomponent":"core_pix"},{"text":":-(","imagename":"s\\/sad","imagecomponent":"core","altidentifier":"sad","altcomponent":"core_pix"},{"text":":(","imagename":"s\\/sad","imagecomponent":"core","altidentifier":"sad","altcomponent":"core_pix"},{"text":"8-.","imagename":"s\\/shy","imagecomponent":"core","altidentifier":"shy","altcomponent":"core_pix"},{"text":":-I","imagename":"s\\/blush","imagecomponent":"core","altidentifier":"blush","altcomponent":"core_pix"},{"text":":-X","imagename":"s\\/kiss","imagecomponent":"core","altidentifier":"kiss","altcomponent":"core_pix"},{"text":"8-o","imagename":"s\\/surprise","imagecomponent":"core","altidentifier":"surprise","altcomponent":"core_pix"},{"text":"P-|","imagename":"s\\/blackeye","imagecomponent":"core","altidentifier":"blackeye","altcomponent":"core_pix"},{"text":"8-[","imagename":"s\\/angry","imagecomponent":"core","altidentifier":"angry","altcomponent":"core_pix"},{"text":"(grr)","imagename":"s\\/angry","imagecomponent":"core","altidentifier":"angry","altcomponent":"core_pix"},{"text":"xx-P","imagename":"s\\/dead","imagecomponent":"core","altidentifier":"dead","altcomponent":"core_pix"},{"text":"|-.","imagename":"s\\/sleepy","imagecomponent":"core","altidentifier":"sleepy","altcomponent":"core_pix"},{"text":"}-]","imagename":"s\\/evil","imagecomponent":"core","altidentifier":"evil","altcomponent":"core_pix"},{"text":"(h)","imagename":"s\\/heart","imagecomponent":"core","altidentifier":"heart","altcomponent":"core_pix"},{"text":"(heart)","imagename":"s\\/heart","imagecomponent":"core","altidentifier":"heart","altcomponent":"core_pix"},{"text":"(y)","imagename":"s\\/yes","imagecomponent":"core","altidentifier":"yes","altcomponent":"core"},{"text":"(n)","imagename":"s\\/no","imagecomponent":"core","altidentifier":"no","altcomponent":"core"},{"text":"(martin)","imagename":"s\\/martin","imagecomponent":"core","altidentifier":"martin","altcomponent":"core_pix"},{"text":"( )","imagename":"s\\/egg","imagecomponent":"core","altidentifier":"egg","altcomponent":"core_pix"}] +314 docroot https://docs.moodle.org +315 doclang +316 doctonewwindow 0 +317 coursecontactduplicates 0 +318 courselistshortnames 0 +319 coursesperpage 20 +320 courseswithsummarieslimit 10 +321 courseoverviewfileslimit 1 +322 courseoverviewfilesext .jpg,.gif,.png +323 coursegraceperiodbefore 0 +324 coursegraceperiodafter 0 +325 useexternalyui 0 +326 yuicomboloading 1 +327 cachejs 1 +328 modchooserdefault 1 +329 additionalhtmlhead +330 additionalhtmltopofbody +331 additionalhtmlfooter +332 cachetemplates 1 +333 pathtophp +334 pathtodu +335 aspellpath +336 pathtodot +337 pathtogs /usr/bin/gs +338 pathtopython +339 supportname Admin User +340 supportemail +341 supportpage +342 dbsessions 0 +343 sessioncookie +344 sessioncookiepath +345 sessioncookiedomain +346 statsfirstrun none +347 statsmaxruntime 0 +348 statsruntimedays 31 +349 statsuserthreshold 0 +350 slasharguments 1 +351 getremoteaddrconf 3 +352 reverseproxyignore +353 proxyhost +354 proxyport 0 +355 proxytype HTTP +356 proxyuser +357 proxypassword +358 proxybypass localhost, 127.0.0.1 +359 maintenance_enabled 0 +360 maintenance_message +361 deleteunconfirmed 168 +362 deleteincompleteusers 0 +363 disablegradehistory 0 +364 gradehistorylifetime 0 +365 tempdatafoldercleanup 168 +366 filescleanupperiod 86400 +367 extramemorylimit 512M +368 maxtimelimit 0 +369 curlcache 120 +370 curltimeoutkbitrate 56 +498 messageinbound_mailbox +499 messageinbound_domain +500 messageinbound_host +371 task_scheduled_concurrency_limit 3 +372 task_scheduled_max_runtime 1800 +373 task_adhoc_concurrency_limit 3 +374 task_adhoc_max_runtime 1800 +375 task_logmode 1 +376 task_logtostdout 1 +377 task_logretention 2419200 +378 task_logretainruns 20 +379 smtphosts +380 smtpsecure +381 smtpauthtype LOGIN +382 smtpuser +383 smtppass +384 smtpmaxbulk 1 +385 allowedemaildomains +386 sitemailcharset 0 +387 allowusermailcharset 0 +388 allowattachments 1 +389 mailnewline LF +390 emailfromvia 1 +391 emailsubjectprefix +392 updateautocheck 1 +393 updateminmaturity 200 +394 updatenotifybuilds 0 +395 dndallowtextandlinks 0 +396 pathtosassc +397 contextlocking 0 +398 contextlockappliestoadmin 1 +399 forceclean 0 +400 enablecourserelativedates 0 +401 debug 0 +402 debugdisplay 0 +403 perfdebug 7 +404 debugstringids 0 +405 debugvalidators 0 +406 debugpageinfo 0 +407 profilingenabled 0 +408 profilingincluded +409 profilingexcluded +410 profilingautofrec 0 +411 profilingallowme 0 +412 profilingallowall 0 +413 profilingslow 0 +414 profilinglifetime 1440 +415 profilingimportprefix (I) +289 calendar_exportsalt BZbQVUNtdpSQs8j5gGrndp3LMDkPopmWa5KiqxGMgvvQjS6LHeHte4jUalFG +416 release 3.9.3+ (Build: 20201224) +469 glossary_dupentries 0 +470 glossary_allowcomments 0 +471 glossary_linkbydefault 1 +472 glossary_defaultapproval 1 +473 glossary_enablerssfeeds 0 +474 glossary_linkentries 0 +475 glossary_casesensitive 0 +476 glossary_fullmatch 0 +477 block_course_list_adminview all +478 block_course_list_hideallcourseslink 0 +479 block_html_allowcssclasses 0 +480 block_online_users_timetosee 5 +481 block_online_users_onlinestatushiding 1 +482 block_rss_client_num_entries 5 +419 allversionshash b2866237f8919ab355fc818846fe24ac40cff09f +164 langrev 1609808510 +417 localcachedirpurged 1609808510 +418 scheduledtaskreset 1609808510 +422 branch 39 +423 notloggedinroleid 6 +424 guestroleid 6 +425 defaultuserroleid 7 +426 creatornewroleid 3 +427 restorernewroleid 3 +428 sitepolicyhandler +429 gradebookroles 5 +430 h5plibraryhandler h5plib_v124 +431 jabberhost +432 jabberserver +433 jabberusername +434 jabberpassword +435 jabberport 5222 +436 airnotifierurl https://messages.moodle.net +437 airnotifierport 443 +438 airnotifiermobileappname com.moodle.moodlemobile +439 airnotifierappname commoodlemoodlemobile +440 airnotifieraccesskey +441 chat_method ajax +442 chat_refresh_userlist 10 +443 chat_old_ping 35 +444 chat_refresh_room 5 +14 texteditors atto,tinymce,textarea +445 chat_normal_updatemode jsupdate +446 chat_serverhost connectbox +447 chat_serverip 127.0.0.1 +448 chat_serverport 9111 +449 chat_servermax 100 +450 data_enablerssfeeds 0 +451 feedback_allowfullanonymous 0 +452 forum_displaymode 3 +453 forum_shortpost 300 +454 forum_longpost 600 +455 forum_manydiscussions 100 +456 forum_maxbytes 512000 +457 forum_maxattachments 9 +458 forum_subscription 0 +459 forum_trackingtype 1 +460 forum_trackreadposts 1 +461 forum_allowforcedreadtracking 0 +462 forum_oldpostdays 14 +463 forum_usermarksread 0 +483 block_rss_client_timeout 30 +464 forum_cleanreadtime 2 +465 digestmailtime 17 +466 forum_enablerssfeeds 0 +467 forum_enabletimedposts 1 +468 glossary_entbypage 10 +484 pathtounoconv /usr/bin/unoconv +485 filter_multilang_force_old 0 +486 filter_censor_badwords +487 logguests 1 +488 loglifetime 0 +489 profileroles 5,4,3 +490 coursecontact 3 +491 frontpage 6 +492 frontpageloggedin 6 +493 maxcategorydepth 2 +494 frontpagecourselimit 200 +495 commentsperpage 15 +496 defaultfrontpageroleid 8 +497 messageinbound_enabled 0 +421 registrationpending 0 +501 messageinbound_hostssl ssl +502 messageinbound_hostuser +503 messageinbound_hostpass +504 enablemobilewebservice 0 +505 mobilecssurl +506 timezone America/Los_Angeles +507 registerauth +508 noreplyaddress noreply@email.com +\. + + +-- +-- TOC entry 11474 (class 0 OID 0) +-- Dependencies: 185 +-- Name: mdl_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_config_id_seq', 508, true); + + +-- +-- TOC entry 9675 (class 0 OID 16414) +-- Dependencies: 190 +-- Data for Name: mdl_config_log; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_config_log (id, userid, timemodified, plugin, name, value, oldvalue) FROM stdin; +1 0 1609808472 \N enableuserfeedback 0 \N +2 0 1609808472 \N userfeedback_nextreminder 1 \N +3 0 1609808472 \N userfeedback_remindafter 90 \N +4 0 1609808472 \N enableoutcomes 0 \N +5 0 1609808472 \N usecomments 1 \N +6 0 1609808472 \N usetags 1 \N +7 0 1609808472 \N enablenotes 1 \N +8 0 1609808472 \N enableportfolios 0 \N +9 0 1609808472 \N enablewebservices 0 \N +10 0 1609808472 \N enablestats 0 \N +11 0 1609808472 \N enablerssfeeds 0 \N +12 0 1609808472 \N enableblogs 1 \N +13 0 1609808472 \N enablecompletion 1 \N +14 0 1609808472 \N completiondefault 1 \N +15 0 1609808472 \N enableavailability 1 \N +16 0 1609808472 \N enableplagiarism 0 \N +17 0 1609808472 \N enablebadges 1 \N +18 0 1609808472 \N enableglobalsearch 0 \N +19 0 1609808472 \N allowstealth 0 \N +20 0 1609808472 \N enableanalytics 1 \N +21 0 1609808472 \N allowemojipicker 1 \N +22 0 1609808472 \N userfiltersdefault realname \N +23 0 1609808472 \N defaultpreference_maildisplay 2 \N +24 0 1609808472 \N defaultpreference_mailformat 1 \N +25 0 1609808472 \N defaultpreference_maildigest 0 \N +26 0 1609808472 \N defaultpreference_autosubscribe 1 \N +27 0 1609808472 \N defaultpreference_trackforums 0 \N +28 0 1609808472 \N autologinguests 0 \N +29 0 1609808472 \N hiddenuserfields \N +30 0 1609808472 \N showuseridentity email \N +31 0 1609808472 \N fullnamedisplay language \N +32 0 1609808472 \N alternativefullnameformat language \N +33 0 1609808472 \N maxusersperpage 100 \N +34 0 1609808472 \N enablegravatar 0 \N +35 0 1609808472 \N gravatardefaulturl mm \N +36 0 1609808472 \N agedigitalconsentverification 0 \N +37 0 1609808472 \N agedigitalconsentmap *, 16\nAT, 14\nBE, 13\nBG, 14\nCY, 14\nCZ, 15\nDK, 13\nEE, 13\nES, 14\nFI, 13\nFR, 15\nGB, 13\nGR, 15\nIT, 14\nLT, 14\nLV, 13\nMT, 13\nNO, 13\nPT, 13\nSE, 13\nUS, 13 \N +38 0 1609808472 \N sitepolicy \N +39 0 1609808472 \N sitepolicyguest \N +40 0 1609808472 moodlecourse visible 1 \N +41 0 1609808472 moodlecourse format topics \N +42 0 1609808472 moodlecourse maxsections 52 \N +43 0 1609808472 moodlecourse numsections 4 \N +44 0 1609808472 moodlecourse hiddensections 0 \N +45 0 1609808472 moodlecourse coursedisplay 0 \N +46 0 1609808472 moodlecourse courseenddateenabled 1 \N +47 0 1609808472 moodlecourse courseduration 31536000 \N +48 0 1609808472 moodlecourse lang \N +49 0 1609808472 moodlecourse newsitems 5 \N +50 0 1609808472 moodlecourse showgrades 1 \N +51 0 1609808472 moodlecourse showreports 0 \N +52 0 1609808472 moodlecourse maxbytes 0 \N +53 0 1609808472 moodlecourse enablecompletion 1 \N +54 0 1609808472 moodlecourse groupmode 0 \N +55 0 1609808472 moodlecourse groupmodeforce 0 \N +56 0 1609808472 \N enablecourserequests 1 \N +57 0 1609808472 \N defaultrequestcategory 1 \N +58 0 1609808472 \N lockrequestcategory 0 \N +59 0 1609808472 \N courserequestnotify \N +60 0 1609808472 \N activitychoosertabmode 0 \N +61 0 1609808472 backup loglifetime 30 \N +62 0 1609808472 backup backup_general_users 1 \N +63 0 1609808472 backup backup_general_users_locked \N +64 0 1609808472 backup backup_general_anonymize 0 \N +65 0 1609808472 backup backup_general_anonymize_locked \N +66 0 1609808472 backup backup_general_role_assignments 1 \N +67 0 1609808472 backup backup_general_role_assignments_locked \N +68 0 1609808472 backup backup_general_activities 1 \N +69 0 1609808472 backup backup_general_activities_locked \N +70 0 1609808472 backup backup_general_blocks 1 \N +71 0 1609808472 backup backup_general_blocks_locked \N +72 0 1609808472 backup backup_general_files 1 \N +73 0 1609808472 backup backup_general_files_locked \N +74 0 1609808473 backup backup_general_filters 1 \N +75 0 1609808473 backup backup_general_filters_locked \N +76 0 1609808473 backup backup_general_comments 1 \N +77 0 1609808473 backup backup_general_comments_locked \N +78 0 1609808473 backup backup_general_badges 1 \N +79 0 1609808473 backup backup_general_badges_locked \N +80 0 1609808473 backup backup_general_calendarevents 1 \N +81 0 1609808473 backup backup_general_calendarevents_locked \N +82 0 1609808473 backup backup_general_userscompletion 1 \N +83 0 1609808473 backup backup_general_userscompletion_locked \N +84 0 1609808473 backup backup_general_logs 0 \N +85 0 1609808473 backup backup_general_logs_locked \N +86 0 1609808473 backup backup_general_histories 0 \N +87 0 1609808473 backup backup_general_histories_locked \N +88 0 1609808473 backup backup_general_questionbank 1 \N +89 0 1609808473 backup backup_general_questionbank_locked \N +90 0 1609808473 backup backup_general_groups 1 \N +91 0 1609808473 backup backup_general_groups_locked \N +92 0 1609808473 backup backup_general_competencies 1 \N +93 0 1609808473 backup backup_general_competencies_locked \N +94 0 1609808473 backup backup_general_contentbankcontent 1 \N +95 0 1609808473 backup backup_general_contentbankcontent_locked \N +96 0 1609808473 backup import_general_maxresults 10 \N +97 0 1609808473 backup import_general_duplicate_admin_allowed 0 \N +98 0 1609808473 backup backup_import_activities 1 \N +99 0 1609808473 backup backup_import_activities_locked \N +100 0 1609808473 backup backup_import_blocks 1 \N +101 0 1609808473 backup backup_import_blocks_locked \N +102 0 1609808473 backup backup_import_filters 1 \N +103 0 1609808473 backup backup_import_filters_locked \N +104 0 1609808473 backup backup_import_calendarevents 1 \N +105 0 1609808473 backup backup_import_calendarevents_locked \N +106 0 1609808473 backup backup_import_questionbank 1 \N +107 0 1609808473 backup backup_import_questionbank_locked \N +108 0 1609808473 backup backup_import_groups 1 \N +109 0 1609808473 backup backup_import_groups_locked \N +110 0 1609808473 backup backup_import_competencies 1 \N +111 0 1609808473 backup backup_import_competencies_locked \N +112 0 1609808473 backup backup_import_contentbankcontent 1 \N +113 0 1609808473 backup backup_import_contentbankcontent_locked \N +114 0 1609808473 backup backup_auto_active 0 \N +115 0 1609808473 backup backup_auto_weekdays 0000000 \N +116 0 1609808473 backup backup_auto_hour 0 \N +117 0 1609808473 backup backup_auto_minute 0 \N +118 0 1609808473 backup backup_auto_storage 0 \N +119 0 1609808473 backup backup_auto_destination \N +120 0 1609808473 backup backup_auto_max_kept 1 \N +121 0 1609808473 backup backup_auto_delete_days 0 \N +122 0 1609808473 backup backup_auto_min_kept 0 \N +123 0 1609808473 backup backup_shortname 0 \N +124 0 1609808473 backup backup_auto_skip_hidden 1 \N +125 0 1609808473 backup backup_auto_skip_modif_days 30 \N +126 0 1609808473 backup backup_auto_skip_modif_prev 0 \N +127 0 1609808473 backup backup_auto_users 1 \N +128 0 1609808473 backup backup_auto_role_assignments 1 \N +129 0 1609808473 backup backup_auto_activities 1 \N +130 0 1609808473 backup backup_auto_blocks 1 \N +131 0 1609808473 backup backup_auto_files 1 \N +132 0 1609808473 backup backup_auto_filters 1 \N +133 0 1609808473 backup backup_auto_comments 1 \N +134 0 1609808473 backup backup_auto_badges 1 \N +135 0 1609808473 backup backup_auto_calendarevents 1 \N +136 0 1609808473 backup backup_auto_userscompletion 1 \N +137 0 1609808473 backup backup_auto_logs 0 \N +138 0 1609808473 backup backup_auto_histories 0 \N +139 0 1609808473 backup backup_auto_questionbank 1 \N +140 0 1609808473 backup backup_auto_groups 1 \N +141 0 1609808473 backup backup_auto_competencies 1 \N +142 0 1609808473 backup backup_auto_contentbankcontent 1 \N +143 0 1609808473 restore restore_general_users 1 \N +144 0 1609808473 restore restore_general_users_locked \N +145 0 1609808473 restore restore_general_enrolments 1 \N +146 0 1609808473 restore restore_general_enrolments_locked \N +147 0 1609808473 restore restore_general_role_assignments 1 \N +148 0 1609808473 restore restore_general_role_assignments_locked \N +149 0 1609808473 restore restore_general_activities 1 \N +150 0 1609808473 restore restore_general_activities_locked \N +151 0 1609808473 restore restore_general_blocks 1 \N +152 0 1609808473 restore restore_general_blocks_locked \N +153 0 1609808473 restore restore_general_filters 1 \N +154 0 1609808473 restore restore_general_filters_locked \N +155 0 1609808473 restore restore_general_comments 1 \N +156 0 1609808473 restore restore_general_comments_locked \N +157 0 1609808473 restore restore_general_badges 1 \N +158 0 1609808473 restore restore_general_badges_locked \N +159 0 1609808473 restore restore_general_calendarevents 1 \N +160 0 1609808473 restore restore_general_calendarevents_locked \N +161 0 1609808473 restore restore_general_userscompletion 1 \N +162 0 1609808473 restore restore_general_userscompletion_locked \N +163 0 1609808473 restore restore_general_logs 1 \N +164 0 1609808473 restore restore_general_logs_locked \N +165 0 1609808473 restore restore_general_histories 1 \N +166 0 1609808473 restore restore_general_histories_locked \N +167 0 1609808473 restore restore_general_groups 1 \N +168 0 1609808473 restore restore_general_groups_locked \N +169 0 1609808473 restore restore_general_competencies 1 \N +170 0 1609808473 restore restore_general_competencies_locked \N +171 0 1609808473 restore restore_general_contentbankcontent 1 \N +172 0 1609808473 restore restore_general_contentbankcontent_locked \N +173 0 1609808473 restore restore_merge_overwrite_conf 0 \N +174 0 1609808473 restore restore_merge_overwrite_conf_locked \N +175 0 1609808473 restore restore_merge_course_fullname 1 \N +176 0 1609808473 restore restore_merge_course_fullname_locked \N +177 0 1609808473 restore restore_merge_course_shortname 1 \N +178 0 1609808473 restore restore_merge_course_shortname_locked \N +179 0 1609808473 restore restore_merge_course_startdate 1 \N +180 0 1609808473 restore restore_merge_course_startdate_locked \N +181 0 1609808473 restore restore_replace_overwrite_conf 0 \N +182 0 1609808473 restore restore_replace_overwrite_conf_locked \N +183 0 1609808473 restore restore_replace_course_fullname 1 \N +184 0 1609808473 restore restore_replace_course_fullname_locked \N +185 0 1609808473 restore restore_replace_course_shortname 1 \N +186 0 1609808473 restore restore_replace_course_shortname_locked \N +187 0 1609808473 restore restore_replace_course_startdate 1 \N +188 0 1609808473 restore restore_replace_course_startdate_locked \N +189 0 1609808473 restore restore_replace_keep_roles_and_enrolments 0 \N +190 0 1609808473 restore restore_replace_keep_roles_and_enrolments_locked \N +191 0 1609808473 restore restore_replace_keep_groups_and_groupings 0 \N +192 0 1609808473 restore restore_replace_keep_groups_and_groupings_locked \N +193 0 1609808473 \N enableasyncbackup 0 \N +194 0 1609808473 backup backup_async_message_users 0 \N +195 0 1609808473 backup backup_async_message_subject Moodle {operation} completed successfully \N +196 0 1609808473 backup backup_async_message Hi {user_firstname},
Your {operation} (ID: {backupid}) has completed successfully.

You can access it here: {link}. \N +197 0 1609808473 \N grade_profilereport user \N +198 0 1609808473 \N grade_aggregationposition 1 \N +199 0 1609808473 \N grade_includescalesinaggregation 1 \N +200 0 1609808473 \N grade_hiddenasdate 0 \N +201 0 1609808473 \N gradepublishing 0 \N +202 0 1609808473 \N grade_export_exportfeedback 0 \N +203 0 1609808473 \N grade_export_displaytype 1 \N +204 0 1609808473 \N grade_export_decimalpoints 2 \N +205 0 1609808473 \N grade_navmethod 1 \N +206 0 1609808473 \N grade_export_userprofilefields firstname,lastname,idnumber,institution,department,email \N +207 0 1609808473 \N grade_export_customprofilefields \N +208 0 1609808473 \N recovergradesdefault 0 \N +209 0 1609808473 \N gradeexport \N +210 0 1609808473 \N unlimitedgrades 0 \N +211 0 1609808473 \N grade_report_showmin 1 \N +212 0 1609808473 \N gradepointmax 100 \N +213 0 1609808473 \N gradepointdefault 100 \N +214 0 1609808473 \N grade_minmaxtouse 1 \N +215 0 1609808473 \N grade_mygrades_report overview \N +216 0 1609808473 \N gradereport_mygradeurl \N +217 0 1609808473 \N grade_hideforcedsettings 1 \N +218 0 1609808473 \N grade_aggregation 13 \N +219 0 1609808473 \N grade_aggregation_flag 0 \N +220 0 1609808473 \N grade_aggregations_visible 13 \N +221 0 1609808473 \N grade_aggregateonlygraded 1 \N +222 0 1609808473 \N grade_aggregateonlygraded_flag 2 \N +223 0 1609808473 \N grade_aggregateoutcomes 0 \N +224 0 1609808473 \N grade_aggregateoutcomes_flag 2 \N +225 0 1609808473 \N grade_keephigh 0 \N +226 0 1609808473 \N grade_keephigh_flag 3 \N +227 0 1609808473 \N grade_droplow 0 \N +228 0 1609808473 \N grade_droplow_flag 2 \N +229 0 1609808473 \N grade_overridecat 1 \N +230 0 1609808473 \N grade_displaytype 1 \N +231 0 1609808473 \N grade_decimalpoints 2 \N +232 0 1609808473 \N grade_item_advanced iteminfo,idnumber,gradepass,plusfactor,multfactor,display,decimals,hiddenuntil,locktime \N +233 0 1609808473 \N grade_report_studentsperpage 100 \N +234 0 1609808473 \N grade_report_showonlyactiveenrol 1 \N +235 0 1609808473 \N grade_report_quickgrading 1 \N +236 0 1609808473 \N grade_report_showquickfeedback 0 \N +237 0 1609808473 \N grade_report_meanselection 1 \N +238 0 1609808473 \N grade_report_enableajax 0 \N +239 0 1609808473 \N grade_report_showcalculations 1 \N +240 0 1609808473 \N grade_report_showeyecons 0 \N +241 0 1609808473 \N grade_report_showaverages 1 \N +242 0 1609808473 \N grade_report_showlocks 0 \N +243 0 1609808473 \N grade_report_showranges 0 \N +244 0 1609808473 \N grade_report_showanalysisicon 1 \N +245 0 1609808473 \N grade_report_showuserimage 1 \N +246 0 1609808473 \N grade_report_showactivityicons 1 \N +247 0 1609808473 \N grade_report_shownumberofgrades 0 \N +248 0 1609808473 \N grade_report_averagesdisplaytype inherit \N +249 0 1609808473 \N grade_report_rangesdisplaytype inherit \N +250 0 1609808473 \N grade_report_averagesdecimalpoints inherit \N +251 0 1609808473 \N grade_report_rangesdecimalpoints inherit \N +252 0 1609808473 \N grade_report_historyperpage 50 \N +253 0 1609808473 \N grade_report_overview_showrank 0 \N +254 0 1609808473 \N grade_report_overview_showtotalsifcontainhidden 0 \N +255 0 1609808473 \N grade_report_user_showrank 0 \N +256 0 1609808473 \N grade_report_user_showpercentage 1 \N +257 0 1609808473 \N grade_report_user_showgrade 1 \N +258 0 1609808473 \N grade_report_user_showfeedback 1 \N +259 0 1609808473 \N grade_report_user_showrange 1 \N +260 0 1609808473 \N grade_report_user_showweight 1 \N +261 0 1609808473 \N grade_report_user_showaverage 0 \N +262 0 1609808473 \N grade_report_user_showlettergrade 0 \N +263 0 1609808473 \N grade_report_user_rangedecimals 0 \N +264 0 1609808473 \N grade_report_user_showhiddenitems 1 \N +265 0 1609808473 \N grade_report_user_showtotalsifcontainhidden 0 \N +266 0 1609808473 \N grade_report_user_showcontributiontocoursetotal 1 \N +267 0 1609808474 analytics modeinstruction \N +268 0 1609808474 analytics percentonline 0 \N +269 0 1609808474 analytics typeinstitution \N +270 0 1609808474 analytics levelinstitution \N +271 0 1609808474 analytics predictionsprocessor \\mlbackend_php\\processor \N +372 0 1609808475 \N maxeditingtime 1800 \N +373 0 1609808475 \N extendedusernamechars 0 \N +272 0 1609808474 analytics defaulttimesplittingsevaluation \\core\\analytics\\time_splitting\\quarters_accum,\\core\\analytics\\time_splitting\\quarters,\\core\\analytics\\time_splitting\\single_range \N +273 0 1609808474 analytics modeloutputdir \N +274 0 1609808474 analytics onlycli 1 \N +275 0 1609808474 analytics modeltimelimit 1200 \N +276 0 1609808474 core_competency enabled 1 \N +277 0 1609808474 core_competency pushcourseratingstouserplans 1 \N +278 0 1609808474 \N badges_defaultissuername \N +279 0 1609808474 \N badges_defaultissuercontact \N +280 0 1609808474 \N badges_badgesalt badges1609808466 \N +281 0 1609808474 \N badges_allowcoursebadges 1 \N +282 0 1609808474 \N badges_allowexternalbackpack 1 \N +283 0 1609808474 \N rememberuserlicensepref 1 \N +284 0 1609808474 \N timezone Europe/London \N +285 0 1609808474 \N forcetimezone 99 \N +286 0 1609808474 \N country 0 \N +287 0 1609808474 \N defaultcity \N +288 0 1609808474 \N geoip2file /var/www/moodledata/geoip/GeoLite2-City.mmdb \N +289 0 1609808474 \N googlemapkey3 \N +290 0 1609808474 \N allcountrycodes \N +291 0 1609808474 \N autolang 1 \N +292 0 1609808475 \N lang en \N +293 0 1609808475 \N langmenu 1 \N +294 0 1609808475 \N langlist \N +295 0 1609808475 \N langcache 1 \N +296 0 1609808475 \N langstringcache 1 \N +297 0 1609808475 \N locale \N +298 0 1609808475 \N latinexcelexport 0 \N +299 0 1609808475 \N messaging 1 \N +300 0 1609808475 \N messagingallusers 0 \N +301 0 1609808475 \N messagingdefaultpressenter 1 \N +302 0 1609808475 \N messagingdeletereadnotificationsdelay 604800 \N +303 0 1609808475 \N messagingdeleteallnotificationsdelay 2620800 \N +304 0 1609808475 \N messagingallowemailoverride 0 \N +305 0 1609808475 \N requiremodintro 0 \N +306 0 1609808475 \N registerauth \N +307 0 1609808475 \N authloginviaemail 0 \N +308 0 1609808475 \N allowaccountssameemail 0 \N +309 0 1609808475 \N authpreventaccountcreation 0 \N +310 0 1609808475 \N loginpageautofocus 0 \N +311 0 1609808475 \N guestloginbutton 1 \N +312 0 1609808475 \N limitconcurrentlogins 0 \N +313 0 1609808475 \N alternateloginurl \N +314 0 1609808475 \N forgottenpasswordurl \N +315 0 1609808475 \N auth_instructions \N +316 0 1609808475 \N allowemailaddresses \N +317 0 1609808475 \N denyemailaddresses \N +318 0 1609808475 \N verifychangedemail 1 \N +319 0 1609808475 \N recaptchapublickey \N +320 0 1609808475 \N recaptchaprivatekey \N +321 0 1609808475 cachestore_apcu testperformance 0 \N +322 0 1609808475 cachestore_memcached testservers \N +323 0 1609808475 cachestore_mongodb testserver \N +324 0 1609808475 cachestore_redis test_server \N +325 0 1609808475 cachestore_redis test_password \N +326 0 1609808475 \N filteruploadedfiles 0 \N +327 0 1609808475 \N filtermatchoneperpage 0 \N +328 0 1609808475 \N filtermatchonepertext 0 \N +329 0 1609808475 \N media_default_width 400 \N +330 0 1609808475 \N media_default_height 300 \N +331 0 1609808475 \N portfolio_moderate_filesize_threshold 1048576 \N +332 0 1609808475 \N portfolio_high_filesize_threshold 5242880 \N +333 0 1609808475 \N portfolio_moderate_db_threshold 20 \N +334 0 1609808475 \N portfolio_high_db_threshold 50 \N +335 0 1609808475 question_preview behaviour deferredfeedback \N +336 0 1609808475 question_preview correctness 1 \N +337 0 1609808475 question_preview marks 2 \N +338 0 1609808475 question_preview markdp 2 \N +339 0 1609808475 question_preview feedback 1 \N +340 0 1609808475 question_preview generalfeedback 1 \N +341 0 1609808475 question_preview rightanswer 1 \N +342 0 1609808475 question_preview history 0 \N +343 0 1609808475 \N repositorycacheexpire 120 \N +344 0 1609808475 \N repositorygetfiletimeout 30 \N +345 0 1609808475 \N repositorysyncfiletimeout 1 \N +346 0 1609808475 \N repositorysyncimagetimeout 3 \N +347 0 1609808475 \N repositoryallowexternallinks 1 \N +348 0 1609808475 \N legacyfilesinnewcourses 0 \N +349 0 1609808475 \N legacyfilesaddallowed 1 \N +350 0 1609808475 \N searchengine simpledb \N +351 0 1609808475 \N searchindexwhendisabled 0 \N +352 0 1609808475 \N searchindextime 600 \N +353 0 1609808475 \N searchallavailablecourses 0 \N +354 0 1609808475 \N searchincludeallcourses 0 \N +355 0 1609808475 \N searchenablecategories 0 \N +356 0 1609808475 \N searchdefaultcategory core-all \N +357 0 1609808475 \N searchhideallcategory 0 \N +358 0 1609808475 \N enablewsdocumentation 0 \N +359 0 1609808475 \N allowbeforeblock 0 \N +360 0 1609808475 \N allowedip \N +361 0 1609808475 \N blockedip \N +362 0 1609808475 \N protectusernames 1 \N +363 0 1609808475 \N forcelogin 0 \N +364 0 1609808475 \N forceloginforprofiles 1 \N +365 0 1609808475 \N forceloginforprofileimage 0 \N +366 0 1609808475 \N opentowebcrawlers 0 \N +367 0 1609808475 \N allowindexing 0 \N +368 0 1609808475 \N maxbytes 0 \N +369 0 1609808475 \N userquota 104857600 \N +370 0 1609808475 \N allowobjectembed 0 \N +371 0 1609808475 \N enabletrusttext 0 \N +374 0 1609808475 \N keeptagnamecase 1 \N +375 0 1609808475 \N profilesforenrolledusersonly 1 \N +376 0 1609808475 \N cronclionly 1 \N +377 0 1609808475 \N cronremotepassword \N +378 0 1609808475 tool_task enablerunnow 1 \N +379 0 1609808475 \N lockoutthreshold 0 \N +380 0 1609808475 \N lockoutwindow 1800 \N +381 0 1609808475 \N lockoutduration 1800 \N +382 0 1609808475 \N passwordpolicy 1 \N +383 0 1609808475 \N minpasswordlength 8 \N +384 0 1609808475 \N minpassworddigits 1 \N +385 0 1609808475 \N minpasswordlower 1 \N +386 0 1609808475 \N minpasswordupper 1 \N +387 0 1609808475 \N minpasswordnonalphanum 1 \N +388 0 1609808475 \N maxconsecutiveidentchars 0 \N +389 0 1609808475 \N passwordpolicycheckonlogin 0 \N +390 0 1609808475 \N passwordreuselimit 0 \N +391 0 1609808475 \N pwresettime 1800 \N +392 0 1609808475 \N passwordchangelogout 0 \N +393 0 1609808475 \N passwordchangetokendeletion 0 \N +394 0 1609808475 \N tokenduration 7257600 \N +395 0 1609808475 \N groupenrolmentkeypolicy 1 \N +396 0 1609808475 \N disableuserimages 0 \N +397 0 1609808475 \N emailchangeconfirmation 1 \N +398 0 1609808475 \N rememberusername 2 \N +399 0 1609808475 \N strictformsrequired 0 \N +400 0 1609808475 \N cookiesecure 1 \N +401 0 1609808475 \N cookiehttponly 0 \N +402 0 1609808475 \N allowframembedding 0 \N +403 0 1609808475 \N curlsecurityblockedhosts \N +404 0 1609808475 \N curlsecurityallowedport \N +405 0 1609808475 \N displayloginfailures 0 \N +406 0 1609808475 \N notifyloginfailures \N +407 0 1609808475 \N notifyloginthreshold 10 \N +408 0 1609808475 \N themelist \N +409 0 1609808475 \N themedesignermode 0 \N +410 0 1609808475 \N allowuserthemes 0 \N +411 0 1609808475 \N allowcoursethemes 0 \N +412 0 1609808475 \N allowcategorythemes 0 \N +413 0 1609808475 \N allowcohortthemes 0 \N +414 0 1609808475 \N allowthemechangeonurl 0 \N +415 0 1609808475 \N allowuserblockhiding 1 \N +416 0 1609808475 \N langmenuinsecurelayout 0 \N +417 0 1609808475 \N logininfoinsecurelayout 0 \N +418 0 1609808475 \N custommenuitems \N +419 0 1609808475 \N customusermenuitems grades,grades|/grade/report/mygrades.php|t/grades\nmessages,message|/message/index.php|t/message\npreferences,moodle|/user/preferences.php|t/preferences \N +420 0 1609808475 \N enabledevicedetection 1 \N +421 0 1609808475 \N devicedetectregex [] \N +422 0 1609808475 theme_boost preset default.scss \N +423 0 1609808475 theme_boost presetfiles \N +424 0 1609808475 theme_boost backgroundimage \N +425 0 1609808475 theme_boost brandcolor \N +426 0 1609808475 theme_boost scsspre \N +427 0 1609808475 theme_boost scss \N +428 0 1609808475 theme_classic navbardark 0 \N +429 0 1609808475 theme_classic preset default.scss \N +430 0 1609808475 theme_classic presetfiles \N +431 0 1609808475 theme_classic backgroundimage \N +432 0 1609808475 theme_classic brandcolor \N +433 0 1609808475 theme_classic scsspre \N +434 0 1609808475 theme_classic scss \N +435 0 1609808475 core_admin logo \N +436 0 1609808475 core_admin logocompact \N +437 0 1609808475 core_admin coursecolor1 #81ecec \N +438 0 1609808475 core_admin coursecolor2 #74b9ff \N +439 0 1609808475 core_admin coursecolor3 #a29bfe \N +440 0 1609808475 core_admin coursecolor4 #dfe6e9 \N +441 0 1609808475 core_admin coursecolor5 #00b894 \N +442 0 1609808475 core_admin coursecolor6 #0984e3 \N +443 0 1609808475 core_admin coursecolor7 #b2bec3 \N +444 0 1609808475 core_admin coursecolor8 #fdcb6e \N +445 0 1609808475 core_admin coursecolor9 #fd79a8 \N +446 0 1609808475 core_admin coursecolor10 #6c5ce7 \N +447 0 1609808475 \N calendartype gregorian \N +448 0 1609808475 \N calendar_adminseesall 0 \N +449 0 1609808475 \N calendar_site_timeformat 0 \N +450 0 1609808475 \N calendar_startwday 1 \N +451 0 1609808475 \N calendar_weekend 65 \N +452 0 1609808475 \N calendar_lookahead 21 \N +453 0 1609808475 \N calendar_maxevents 10 \N +454 0 1609808475 \N enablecalendarexport 1 \N +455 0 1609808475 \N calendar_customexport 1 \N +456 0 1609808475 \N calendar_exportlookahead 365 \N +457 0 1609808475 \N calendar_exportlookback 5 \N +458 0 1609808475 \N calendar_exportsalt D52uRsgLflbBciD7d3mc2HEUHSgAOXl5iRAuqH8lTj2OkTkZ9uwhUZllCDJz \N +459 0 1609808475 \N calendar_showicalsource 1 \N +460 0 1609808476 \N useblogassociations 1 \N +461 0 1609808476 \N bloglevel 4 \N +462 0 1609808476 \N useexternalblogs 1 \N +463 0 1609808476 \N externalblogcrontime 86400 \N +464 0 1609808476 \N maxexternalblogsperuser 1 \N +465 0 1609808476 \N blogusecomments 1 \N +466 0 1609808476 \N blogshowcommentscount 1 \N +467 0 1609808476 \N defaulthomepage 1 \N +468 0 1609808476 \N allowguestmymoodle 1 \N +469 0 1609808476 \N navshowfullcoursenames 0 \N +470 0 1609808476 \N navshowcategories 1 \N +471 0 1609808476 \N navshowmycoursecategories 0 \N +472 0 1609808476 \N navshowallcourses 0 \N +473 0 1609808476 \N navsortmycoursessort sortorder \N +474 0 1609808476 \N navsortmycourseshiddenlast 1 \N +475 0 1609808476 \N navcourselimit 10 \N +476 0 1609808476 \N usesitenameforsitepages 0 \N +477 0 1609808476 \N linkadmincategories 1 \N +478 0 1609808476 \N linkcoursesections 1 \N +479 0 1609808476 \N navshowfrontpagemods 1 \N +480 0 1609808476 \N navadduserpostslinks 1 \N +481 0 1609808476 \N formatstringstriptags 1 \N +482 0 1609808476 \N emoticons [{"text":":-)","imagename":"s\\/smiley","imagecomponent":"core","altidentifier":"smiley","altcomponent":"core_pix"},{"text":":)","imagename":"s\\/smiley","imagecomponent":"core","altidentifier":"smiley","altcomponent":"core_pix"},{"text":":-D","imagename":"s\\/biggrin","imagecomponent":"core","altidentifier":"biggrin","altcomponent":"core_pix"},{"text":";-)","imagename":"s\\/wink","imagecomponent":"core","altidentifier":"wink","altcomponent":"core_pix"},{"text":":-\\/","imagename":"s\\/mixed","imagecomponent":"core","altidentifier":"mixed","altcomponent":"core_pix"},{"text":"V-.","imagename":"s\\/thoughtful","imagecomponent":"core","altidentifier":"thoughtful","altcomponent":"core_pix"},{"text":":-P","imagename":"s\\/tongueout","imagecomponent":"core","altidentifier":"tongueout","altcomponent":"core_pix"},{"text":":-p","imagename":"s\\/tongueout","imagecomponent":"core","altidentifier":"tongueout","altcomponent":"core_pix"},{"text":"B-)","imagename":"s\\/cool","imagecomponent":"core","altidentifier":"cool","altcomponent":"core_pix"},{"text":"^-)","imagename":"s\\/approve","imagecomponent":"core","altidentifier":"approve","altcomponent":"core_pix"},{"text":"8-)","imagename":"s\\/wideeyes","imagecomponent":"core","altidentifier":"wideeyes","altcomponent":"core_pix"},{"text":":o)","imagename":"s\\/clown","imagecomponent":"core","altidentifier":"clown","altcomponent":"core_pix"},{"text":":-(","imagename":"s\\/sad","imagecomponent":"core","altidentifier":"sad","altcomponent":"core_pix"},{"text":":(","imagename":"s\\/sad","imagecomponent":"core","altidentifier":"sad","altcomponent":"core_pix"},{"text":"8-.","imagename":"s\\/shy","imagecomponent":"core","altidentifier":"shy","altcomponent":"core_pix"},{"text":":-I","imagename":"s\\/blush","imagecomponent":"core","altidentifier":"blush","altcomponent":"core_pix"},{"text":":-X","imagename":"s\\/kiss","imagecomponent":"core","altidentifier":"kiss","altcomponent":"core_pix"},{"text":"8-o","imagename":"s\\/surprise","imagecomponent":"core","altidentifier":"surprise","altcomponent":"core_pix"},{"text":"P-|","imagename":"s\\/blackeye","imagecomponent":"core","altidentifier":"blackeye","altcomponent":"core_pix"},{"text":"8-[","imagename":"s\\/angry","imagecomponent":"core","altidentifier":"angry","altcomponent":"core_pix"},{"text":"(grr)","imagename":"s\\/angry","imagecomponent":"core","altidentifier":"angry","altcomponent":"core_pix"},{"text":"xx-P","imagename":"s\\/dead","imagecomponent":"core","altidentifier":"dead","altcomponent":"core_pix"},{"text":"|-.","imagename":"s\\/sleepy","imagecomponent":"core","altidentifier":"sleepy","altcomponent":"core_pix"},{"text":"}-]","imagename":"s\\/evil","imagecomponent":"core","altidentifier":"evil","altcomponent":"core_pix"},{"text":"(h)","imagename":"s\\/heart","imagecomponent":"core","altidentifier":"heart","altcomponent":"core_pix"},{"text":"(heart)","imagename":"s\\/heart","imagecomponent":"core","altidentifier":"heart","altcomponent":"core_pix"},{"text":"(y)","imagename":"s\\/yes","imagecomponent":"core","altidentifier":"yes","altcomponent":"core"},{"text":"(n)","imagename":"s\\/no","imagecomponent":"core","altidentifier":"no","altcomponent":"core"},{"text":"(martin)","imagename":"s\\/martin","imagecomponent":"core","altidentifier":"martin","altcomponent":"core_pix"},{"text":"( )","imagename":"s\\/egg","imagecomponent":"core","altidentifier":"egg","altcomponent":"core_pix"}] \N +483 0 1609808476 \N docroot https://docs.moodle.org \N +484 0 1609808476 \N doclang \N +485 0 1609808476 \N doctonewwindow 0 \N +486 0 1609808476 \N coursecontactduplicates 0 \N +487 0 1609808476 \N courselistshortnames 0 \N +488 0 1609808476 \N coursesperpage 20 \N +489 0 1609808476 \N courseswithsummarieslimit 10 \N +490 0 1609808476 \N courseoverviewfileslimit 1 \N +491 0 1609808476 \N courseoverviewfilesext .jpg,.gif,.png \N +492 0 1609808476 \N coursegraceperiodbefore 0 \N +493 0 1609808476 \N coursegraceperiodafter 0 \N +494 0 1609808476 \N useexternalyui 0 \N +495 0 1609808476 \N yuicomboloading 1 \N +496 0 1609808476 \N cachejs 1 \N +497 0 1609808476 \N modchooserdefault 1 \N +498 0 1609808476 \N additionalhtmlhead \N +499 0 1609808476 \N additionalhtmltopofbody \N +500 0 1609808476 \N additionalhtmlfooter \N +501 0 1609808476 \N cachetemplates 1 \N +502 0 1609808476 \N pathtophp \N +503 0 1609808476 \N pathtodu \N +504 0 1609808476 \N aspellpath \N +505 0 1609808476 \N pathtodot \N +506 0 1609808476 \N pathtogs /usr/bin/gs \N +507 0 1609808476 \N pathtopython \N +508 0 1609808476 \N supportname Admin User \N +509 0 1609808476 \N supportemail \N +510 0 1609808476 \N supportpage \N +511 0 1609808476 \N dbsessions 0 \N +512 0 1609808476 \N sessioncookie \N +513 0 1609808476 \N sessioncookiepath \N +514 0 1609808476 \N sessioncookiedomain \N +515 0 1609808476 \N statsfirstrun none \N +516 0 1609808476 \N statsmaxruntime 0 \N +517 0 1609808476 \N statsruntimedays 31 \N +518 0 1609808476 \N statsuserthreshold 0 \N +519 0 1609808476 \N slasharguments 1 \N +520 0 1609808476 \N getremoteaddrconf 3 \N +521 0 1609808476 \N reverseproxyignore \N +522 0 1609808476 \N proxyhost \N +523 0 1609808476 \N proxyport 0 \N +524 0 1609808476 \N proxytype HTTP \N +525 0 1609808476 \N proxyuser \N +526 0 1609808476 \N proxypassword \N +527 0 1609808476 \N proxybypass localhost, 127.0.0.1 \N +528 0 1609808476 \N maintenance_enabled 0 \N +529 0 1609808476 \N maintenance_message \N +530 0 1609808476 \N deleteunconfirmed 168 \N +531 0 1609808476 \N deleteincompleteusers 0 \N +532 0 1609808476 \N disablegradehistory 0 \N +533 0 1609808476 \N gradehistorylifetime 0 \N +534 0 1609808476 \N tempdatafoldercleanup 168 \N +535 0 1609808476 \N filescleanupperiod 86400 \N +536 0 1609808476 \N extramemorylimit 512M \N +537 0 1609808476 \N maxtimelimit 0 \N +538 0 1609808476 \N curlcache 120 \N +539 0 1609808476 \N curltimeoutkbitrate 56 \N +540 0 1609808476 \N task_scheduled_concurrency_limit 3 \N +541 0 1609808476 \N task_scheduled_max_runtime 1800 \N +542 0 1609808476 \N task_adhoc_concurrency_limit 3 \N +543 0 1609808476 \N task_adhoc_max_runtime 1800 \N +544 0 1609808476 \N task_logmode 1 \N +545 0 1609808476 \N task_logtostdout 1 \N +546 0 1609808476 \N task_logretention 2419200 \N +547 0 1609808476 \N task_logretainruns 20 \N +548 0 1609808476 \N smtphosts \N +549 0 1609808476 \N smtpsecure \N +550 0 1609808476 \N smtpauthtype LOGIN \N +551 0 1609808476 \N smtpuser \N +552 0 1609808476 \N smtppass \N +553 0 1609808476 \N smtpmaxbulk 1 \N +554 0 1609808476 \N allowedemaildomains \N +555 0 1609808476 \N sitemailcharset 0 \N +556 0 1609808476 \N allowusermailcharset 0 \N +557 0 1609808476 \N allowattachments 1 \N +558 0 1609808476 \N mailnewline LF \N +559 0 1609808476 \N emailfromvia 1 \N +560 0 1609808476 \N emailsubjectprefix \N +561 0 1609808476 \N updateautocheck 1 \N +562 0 1609808476 \N updateminmaturity 200 \N +563 0 1609808476 \N updatenotifybuilds 0 \N +564 0 1609808476 \N dndallowtextandlinks 0 \N +565 0 1609808476 \N pathtosassc \N +566 0 1609808476 \N contextlocking 0 \N +567 0 1609808476 \N contextlockappliestoadmin 1 \N +568 0 1609808476 \N forceclean 0 \N +569 0 1609808476 \N enablecourserelativedates 0 \N +570 0 1609808476 \N debug 0 \N +571 0 1609808476 \N debugdisplay 0 \N +572 0 1609808476 \N perfdebug 7 \N +573 0 1609808476 \N debugstringids 0 \N +574 0 1609808476 \N debugvalidators 0 \N +575 0 1609808476 \N debugpageinfo 0 \N +576 0 1609808476 \N profilingenabled 0 \N +577 0 1609808476 \N profilingincluded \N +578 0 1609808476 \N profilingexcluded \N +579 0 1609808476 \N profilingautofrec 0 \N +580 0 1609808476 \N profilingallowme 0 \N +581 0 1609808476 \N profilingallowall 0 \N +582 0 1609808476 \N profilingslow 0 \N +583 0 1609808476 \N profilinglifetime 1440 \N +584 0 1609808476 \N profilingimportprefix (I) \N +585 0 1609808478 \N calendar_exportsalt BZbQVUNtdpSQs8j5gGrndp3LMDkPopmWa5KiqxGMgvvQjS6LHeHte4jUalFG D52uRsgLflbBciD7d3mc2HEUHSgAOXl5iRAuqH8lTj2OkTkZ9uwhUZllCDJz +586 0 1609808496 activitynames filter_active 1 +587 0 1609808496 displayh5p filter_active 1 +588 0 1609808496 emoticon filter_active 1 +589 0 1609808496 mathjaxloader filter_active 1 +590 0 1609808496 mediaplugin filter_active 1 +591 0 1609808496 urltolink filter_active 1 +592 2 1609884655 \N notloggedinroleid 6 \N +593 2 1609884655 \N guestroleid 6 \N +594 2 1609884655 \N defaultuserroleid 7 \N +595 2 1609884655 \N creatornewroleid 3 \N +596 2 1609884655 \N restorernewroleid 3 \N +597 2 1609884655 tool_dataprivacy contactdataprotectionofficer 0 \N +598 2 1609884655 tool_dataprivacy automaticdataexportapproval 0 \N +599 2 1609884655 tool_dataprivacy automaticdatadeletionapproval 0 \N +600 2 1609884655 tool_dataprivacy automaticdeletionrequests 1 \N +601 2 1609884655 tool_dataprivacy privacyrequestexpiry 604800 \N +602 2 1609884655 tool_dataprivacy requireallenddatesforuserdeletion 1 \N +603 2 1609884655 tool_dataprivacy showdataretentionsummary 1 \N +604 2 1609884655 tool_log exportlog 1 \N +605 2 1609884655 \N sitepolicyhandler \N +606 2 1609884655 \N gradebookroles 5 \N +607 2 1609884655 analytics logstore logstore_standard \N +608 2 1609884655 \N h5plibraryhandler h5plib_v124 \N +609 2 1609884655 \N jabberhost \N +610 2 1609884655 \N jabberserver \N +611 2 1609884655 \N jabberusername \N +612 2 1609884655 \N jabberpassword \N +613 2 1609884655 \N jabberport 5222 \N +614 2 1609884655 \N airnotifierurl https://messages.moodle.net \N +615 2 1609884655 \N airnotifierport 443 \N +616 2 1609884655 \N airnotifiermobileappname com.moodle.moodlemobile \N +617 2 1609884655 \N airnotifierappname commoodlemoodlemobile \N +618 2 1609884655 \N airnotifieraccesskey \N +619 2 1609884655 assign feedback_plugin_for_gradebook assignfeedback_comments \N +620 2 1609884655 assign showrecentsubmissions 0 \N +621 2 1609884655 assign submissionreceipts 1 \N +622 2 1609884655 assign submissionstatement This submission is my own work, except where I have acknowledged the use of the works of other people. \N +623 2 1609884655 assign submissionstatementteamsubmission This submission is the work of my group, except where we have acknowledged the use of the works of other people. \N +624 2 1609884655 assign submissionstatementteamsubmissionallsubmit This submission is my own work as a group member, except where I have acknowledged the use of the works of other people. \N +625 2 1609884655 assign maxperpage -1 \N +626 2 1609884655 assign alwaysshowdescription 1 \N +627 2 1609884655 assign alwaysshowdescription_adv \N +628 2 1609884655 assign alwaysshowdescription_locked \N +629 2 1609884655 assign allowsubmissionsfromdate 0 \N +630 2 1609884655 assign allowsubmissionsfromdate_enabled 1 \N +631 2 1609884655 assign allowsubmissionsfromdate_adv \N +632 2 1609884655 assign duedate 604800 \N +633 2 1609884655 assign duedate_enabled 1 \N +634 2 1609884655 assign duedate_adv \N +635 2 1609884655 assign cutoffdate 1209600 \N +636 2 1609884655 assign cutoffdate_enabled \N +637 2 1609884655 assign cutoffdate_adv \N +638 2 1609884655 assign gradingduedate 1209600 \N +639 2 1609884655 assign gradingduedate_enabled 1 \N +640 2 1609884655 assign gradingduedate_adv \N +641 2 1609884655 assign submissiondrafts 0 \N +642 2 1609884655 assign submissiondrafts_adv \N +643 2 1609884655 assign submissiondrafts_locked \N +644 2 1609884655 assign requiresubmissionstatement 0 \N +645 2 1609884655 assign requiresubmissionstatement_adv \N +646 2 1609884655 assign requiresubmissionstatement_locked \N +647 2 1609884655 assign attemptreopenmethod none \N +648 2 1609884655 assign attemptreopenmethod_adv \N +649 2 1609884655 assign attemptreopenmethod_locked \N +650 2 1609884655 assign maxattempts -1 \N +651 2 1609884655 assign maxattempts_adv \N +652 2 1609884655 assign maxattempts_locked \N +653 2 1609884655 assign teamsubmission 0 \N +654 2 1609884655 assign teamsubmission_adv \N +655 2 1609884655 assign teamsubmission_locked \N +656 2 1609884655 assign preventsubmissionnotingroup 0 \N +657 2 1609884655 assign preventsubmissionnotingroup_adv \N +658 2 1609884655 assign preventsubmissionnotingroup_locked \N +659 2 1609884655 assign requireallteammemberssubmit 0 \N +660 2 1609884655 assign requireallteammemberssubmit_adv \N +661 2 1609884655 assign requireallteammemberssubmit_locked \N +662 2 1609884655 assign teamsubmissiongroupingid \N +663 2 1609884655 assign teamsubmissiongroupingid_adv \N +664 2 1609884655 assign sendnotifications 0 \N +665 2 1609884655 assign sendnotifications_adv \N +666 2 1609884655 assign sendnotifications_locked \N +667 2 1609884655 assign sendlatenotifications 0 \N +668 2 1609884655 assign sendlatenotifications_adv \N +669 2 1609884655 assign sendlatenotifications_locked \N +670 2 1609884655 assign sendstudentnotifications 1 \N +671 2 1609884655 assign sendstudentnotifications_adv \N +672 2 1609884655 assign sendstudentnotifications_locked \N +673 2 1609884655 assign blindmarking 0 \N +674 2 1609884655 assign blindmarking_adv \N +675 2 1609884655 assign blindmarking_locked \N +676 2 1609884655 assign hidegrader 0 \N +677 2 1609884655 assign hidegrader_adv \N +678 2 1609884655 assign hidegrader_locked \N +679 2 1609884655 assign markingworkflow 0 \N +680 2 1609884655 assign markingworkflow_adv \N +681 2 1609884655 assign markingworkflow_locked \N +682 2 1609884655 assign markingallocation 0 \N +683 2 1609884655 assign markingallocation_adv \N +684 2 1609884655 assign markingallocation_locked \N +685 2 1609884655 assignsubmission_file default 1 \N +686 2 1609884655 assignsubmission_file maxfiles 20 \N +687 2 1609884655 assignsubmission_file filetypes \N +688 2 1609884655 assignsubmission_file maxbytes 0 \N +689 2 1609884655 assignsubmission_onlinetext default 0 \N +690 2 1609884655 assignfeedback_comments default 1 \N +691 2 1609884655 assignfeedback_comments inline 0 \N +692 2 1609884655 assignfeedback_comments inline_adv \N +693 2 1609884655 assignfeedback_comments inline_locked \N +694 2 1609884655 assignfeedback_editpdf default 1 \N +695 2 1609884655 assignfeedback_editpdf stamps \N +696 2 1609884655 assignfeedback_file default 0 \N +697 2 1609884655 assignfeedback_offline default 0 \N +698 2 1609884655 book numberingoptions 0,1,2,3 \N +699 2 1609884655 book navoptions 0,1,2 \N +700 2 1609884655 book numbering 1 \N +701 2 1609884655 book navstyle 1 \N +702 2 1609884655 \N chat_method ajax \N +703 2 1609884655 \N chat_refresh_userlist 10 \N +704 2 1609884655 \N chat_old_ping 35 \N +705 2 1609884655 \N chat_refresh_room 5 \N +706 2 1609884655 \N chat_normal_updatemode jsupdate \N +707 2 1609884655 \N chat_serverhost connectbox \N +708 2 1609884655 \N chat_serverip 127.0.0.1 \N +709 2 1609884655 \N chat_serverport 9111 \N +710 2 1609884655 \N chat_servermax 100 \N +711 2 1609884655 \N data_enablerssfeeds 0 \N +712 2 1609884655 \N feedback_allowfullanonymous 0 \N +713 2 1609884655 resource framesize 130 \N +714 2 1609884655 resource displayoptions 0,1,4,5,6 \N +715 2 1609884655 resource printintro 1 \N +716 2 1609884655 resource display 0 \N +717 2 1609884655 resource showsize 0 \N +718 2 1609884655 resource showtype 0 \N +719 2 1609884655 resource showdate 0 \N +720 2 1609884655 resource popupwidth 620 \N +721 2 1609884655 resource popupheight 450 \N +722 2 1609884655 resource filterfiles 0 \N +723 2 1609884655 folder showexpanded 1 \N +724 2 1609884655 folder maxsizetodownload 0 \N +725 2 1609884655 \N forum_displaymode 3 \N +726 2 1609884655 \N forum_shortpost 300 \N +727 2 1609884655 \N forum_longpost 600 \N +728 2 1609884655 \N forum_manydiscussions 100 \N +729 2 1609884655 \N forum_maxbytes 512000 \N +730 2 1609884655 \N forum_maxattachments 9 \N +731 2 1609884655 \N forum_subscription 0 \N +732 2 1609884655 \N forum_trackingtype 1 \N +733 2 1609884655 \N forum_trackreadposts 1 \N +734 2 1609884655 \N forum_allowforcedreadtracking 0 \N +735 2 1609884655 \N forum_oldpostdays 14 \N +736 2 1609884655 \N forum_usermarksread 0 \N +737 2 1609884655 \N forum_cleanreadtime 2 \N +738 2 1609884655 \N digestmailtime 17 \N +739 2 1609884655 \N forum_enablerssfeeds 0 \N +740 2 1609884655 \N forum_enabletimedposts 1 \N +741 2 1609884655 \N glossary_entbypage 10 \N +742 2 1609884655 \N glossary_dupentries 0 \N +743 2 1609884655 \N glossary_allowcomments 0 \N +744 2 1609884655 \N glossary_linkbydefault 1 \N +745 2 1609884655 \N glossary_defaultapproval 1 \N +746 2 1609884655 \N glossary_enablerssfeeds 0 \N +747 2 1609884655 \N glossary_linkentries 0 \N +748 2 1609884655 \N glossary_casesensitive 0 \N +749 2 1609884655 \N glossary_fullmatch 0 \N +750 2 1609884655 imscp keepold 1 \N +751 2 1609884655 imscp keepold_adv \N +752 2 1609884655 label dndmedia 1 \N +753 2 1609884655 label dndresizewidth 400 \N +754 2 1609884655 label dndresizeheight 400 \N +755 2 1609884655 mod_lesson mediafile \N +756 2 1609884655 mod_lesson mediafile_adv 1 \N +757 2 1609884655 mod_lesson mediawidth 640 \N +758 2 1609884655 mod_lesson mediaheight 480 \N +759 2 1609884655 mod_lesson mediaclose 0 \N +760 2 1609884655 mod_lesson progressbar 0 \N +761 2 1609884655 mod_lesson progressbar_adv \N +762 2 1609884655 mod_lesson ongoing 0 \N +763 2 1609884656 mod_lesson ongoing_adv 1 \N +764 2 1609884656 mod_lesson displayleftmenu 0 \N +765 2 1609884656 mod_lesson displayleftmenu_adv \N +766 2 1609884656 mod_lesson displayleftif 0 \N +767 2 1609884656 mod_lesson displayleftif_adv 1 \N +768 2 1609884656 mod_lesson slideshow 0 \N +769 2 1609884656 mod_lesson slideshow_adv 1 \N +770 2 1609884656 mod_lesson slideshowwidth 640 \N +771 2 1609884656 mod_lesson slideshowheight 480 \N +772 2 1609884656 mod_lesson slideshowbgcolor #FFFFFF \N +773 2 1609884656 mod_lesson maxanswers 5 \N +774 2 1609884656 mod_lesson maxanswers_adv 1 \N +775 2 1609884656 mod_lesson defaultfeedback 0 \N +776 2 1609884656 mod_lesson defaultfeedback_adv 1 \N +777 2 1609884656 mod_lesson activitylink \N +778 2 1609884656 mod_lesson activitylink_adv 1 \N +779 2 1609884656 mod_lesson timelimit 0 \N +780 2 1609884656 mod_lesson timelimit_adv \N +781 2 1609884656 mod_lesson password 0 \N +782 2 1609884656 mod_lesson password_adv 1 \N +783 2 1609884656 mod_lesson modattempts 0 \N +784 2 1609884656 mod_lesson modattempts_adv \N +785 2 1609884656 mod_lesson displayreview 0 \N +786 2 1609884656 mod_lesson displayreview_adv \N +787 2 1609884656 mod_lesson maximumnumberofattempts 1 \N +788 2 1609884656 mod_lesson maximumnumberofattempts_adv \N +789 2 1609884656 mod_lesson defaultnextpage 0 \N +790 2 1609884656 mod_lesson defaultnextpage_adv 1 \N +791 2 1609884656 mod_lesson numberofpagestoshow 1 \N +792 2 1609884656 mod_lesson numberofpagestoshow_adv 1 \N +793 2 1609884656 mod_lesson practice 0 \N +794 2 1609884656 mod_lesson practice_adv \N +795 2 1609884656 mod_lesson customscoring 1 \N +796 2 1609884656 mod_lesson customscoring_adv 1 \N +797 2 1609884656 mod_lesson retakesallowed 0 \N +798 2 1609884656 mod_lesson retakesallowed_adv \N +799 2 1609884656 mod_lesson handlingofretakes 0 \N +800 2 1609884656 mod_lesson handlingofretakes_adv 1 \N +801 2 1609884656 mod_lesson minimumnumberofquestions 0 \N +802 2 1609884656 mod_lesson minimumnumberofquestions_adv 1 \N +803 2 1609884656 page displayoptions 5 \N +804 2 1609884656 page printheading 1 \N +805 2 1609884656 page printintro 0 \N +806 2 1609884656 page printlastmodified 1 \N +807 2 1609884656 page display 5 \N +808 2 1609884656 page popupwidth 620 \N +809 2 1609884656 page popupheight 450 \N +810 2 1609884656 quiz timelimit 0 \N +811 2 1609884656 quiz timelimit_adv \N +812 2 1609884656 quiz overduehandling autosubmit \N +813 2 1609884656 quiz overduehandling_adv \N +814 2 1609884656 quiz graceperiod 86400 \N +815 2 1609884656 quiz graceperiod_adv \N +816 2 1609884656 quiz graceperiodmin 60 \N +817 2 1609884656 quiz attempts 0 \N +818 2 1609884656 quiz attempts_adv \N +819 2 1609884656 quiz grademethod 1 \N +820 2 1609884656 quiz grademethod_adv \N +821 2 1609884656 quiz maximumgrade 10 \N +822 2 1609884656 quiz questionsperpage 1 \N +823 2 1609884656 quiz questionsperpage_adv \N +824 2 1609884656 quiz navmethod free \N +825 2 1609884656 quiz navmethod_adv 1 \N +826 2 1609884656 quiz shuffleanswers 1 \N +827 2 1609884656 quiz shuffleanswers_adv \N +828 2 1609884656 quiz preferredbehaviour deferredfeedback \N +829 2 1609884656 quiz canredoquestions 0 \N +830 2 1609884656 quiz canredoquestions_adv 1 \N +831 2 1609884656 quiz attemptonlast 0 \N +832 2 1609884656 quiz attemptonlast_adv 1 \N +833 2 1609884656 quiz reviewattempt 69904 \N +834 2 1609884656 quiz reviewcorrectness 69904 \N +835 2 1609884656 quiz reviewmarks 69904 \N +836 2 1609884656 quiz reviewspecificfeedback 69904 \N +837 2 1609884656 quiz reviewgeneralfeedback 69904 \N +838 2 1609884656 quiz reviewrightanswer 69904 \N +839 2 1609884656 quiz reviewoverallfeedback 4368 \N +840 2 1609884656 quiz showuserpicture 0 \N +841 2 1609884656 quiz showuserpicture_adv \N +842 2 1609884656 quiz decimalpoints 2 \N +843 2 1609884656 quiz decimalpoints_adv \N +844 2 1609884656 quiz questiondecimalpoints -1 \N +845 2 1609884656 quiz questiondecimalpoints_adv \N +846 2 1609884656 quiz showblocks 0 \N +847 2 1609884656 quiz showblocks_adv 1 \N +848 2 1609884656 quiz quizpassword \N +849 2 1609884656 quiz quizpassword_adv \N +850 2 1609884656 quiz quizpassword_required \N +851 2 1609884656 quiz subnet \N +852 2 1609884656 quiz subnet_adv 1 \N +853 2 1609884656 quiz delay1 0 \N +854 2 1609884656 quiz delay1_adv 1 \N +855 2 1609884656 quiz delay2 0 \N +856 2 1609884656 quiz delay2_adv 1 \N +857 2 1609884656 quiz browsersecurity - \N +858 2 1609884656 quiz browsersecurity_adv 1 \N +859 2 1609884656 quiz initialnumfeedbacks 2 \N +860 2 1609884656 quiz autosaveperiod 60 \N +861 2 1609884656 quizaccess_seb autoreconfigureseb 1 \N +862 2 1609884656 quizaccess_seb showseblinks seb,http \N +863 2 1609884656 quizaccess_seb downloadlink https://safeexambrowser.org/download_en.html \N +864 2 1609884656 quizaccess_seb quizpasswordrequired 0 \N +865 2 1609884656 quizaccess_seb displayblocksbeforestart 0 \N +866 2 1609884656 quizaccess_seb displayblockswhenfinished 1 \N +867 2 1609884656 scorm displaycoursestructure 0 \N +868 2 1609884656 scorm displaycoursestructure_adv \N +869 2 1609884656 scorm popup 0 \N +870 2 1609884656 scorm popup_adv \N +871 2 1609884656 scorm displayactivityname 1 \N +872 2 1609884656 scorm framewidth 100 \N +873 2 1609884656 scorm framewidth_adv 1 \N +874 2 1609884656 scorm frameheight 500 \N +875 2 1609884656 scorm frameheight_adv 1 \N +876 2 1609884656 scorm winoptgrp_adv 1 \N +877 2 1609884656 scorm scrollbars 0 \N +878 2 1609884656 scorm directories 0 \N +879 2 1609884656 scorm location 0 \N +880 2 1609884656 scorm menubar 0 \N +881 2 1609884656 scorm toolbar 0 \N +882 2 1609884656 scorm status 0 \N +883 2 1609884656 scorm skipview 0 \N +884 2 1609884656 scorm skipview_adv 1 \N +885 2 1609884656 scorm hidebrowse 0 \N +886 2 1609884656 scorm hidebrowse_adv 1 \N +887 2 1609884656 scorm hidetoc 0 \N +888 2 1609884656 scorm hidetoc_adv 1 \N +889 2 1609884656 scorm nav 1 \N +890 2 1609884656 scorm nav_adv 1 \N +891 2 1609884656 scorm navpositionleft -100 \N +892 2 1609884656 scorm navpositionleft_adv 1 \N +893 2 1609884656 scorm navpositiontop -100 \N +894 2 1609884656 scorm navpositiontop_adv 1 \N +895 2 1609884656 scorm collapsetocwinsize 767 \N +896 2 1609884656 scorm collapsetocwinsize_adv 1 \N +897 2 1609884656 scorm displayattemptstatus 1 \N +898 2 1609884656 scorm displayattemptstatus_adv \N +899 2 1609884656 scorm grademethod 1 \N +900 2 1609884656 scorm maxgrade 100 \N +901 2 1609884656 scorm maxattempt 0 \N +902 2 1609884656 scorm whatgrade 0 \N +903 2 1609884656 scorm forcecompleted 0 \N +904 2 1609884656 scorm forcenewattempt 0 \N +905 2 1609884656 scorm autocommit 0 \N +906 2 1609884656 scorm masteryoverride 1 \N +907 2 1609884656 scorm lastattemptlock 0 \N +908 2 1609884656 scorm auto 0 \N +909 2 1609884656 scorm updatefreq 0 \N +910 2 1609884656 scorm scormstandard 0 \N +911 2 1609884656 scorm allowtypeexternal 0 \N +912 2 1609884656 scorm allowtypelocalsync 0 \N +913 2 1609884656 scorm allowtypeexternalaicc 0 \N +914 2 1609884656 scorm allowaicchacp 0 \N +915 2 1609884656 scorm aicchacptimeout 30 \N +916 2 1609884656 scorm aicchacpkeepsessiondata 1 \N +917 2 1609884656 scorm aiccuserid 1 \N +918 2 1609884656 scorm forcejavascript 1 \N +919 2 1609884656 scorm allowapidebug 0 \N +920 2 1609884656 scorm apidebugmask .* \N +921 2 1609884656 scorm protectpackagedownloads 0 \N +922 2 1609884656 url framesize 130 \N +923 2 1609884656 url secretphrase \N +924 2 1609884656 url rolesinparams 0 \N +925 2 1609884656 url displayoptions 0,1,5,6 \N +926 2 1609884656 url printintro 1 \N +927 2 1609884656 url display 0 \N +928 2 1609884656 url popupwidth 620 \N +929 2 1609884656 url popupheight 450 \N +930 2 1609884656 workshop grade 80 \N +931 2 1609884656 workshop gradinggrade 20 \N +932 2 1609884656 workshop gradedecimals 0 \N +933 2 1609884656 workshop maxbytes 0 \N +934 2 1609884656 workshop strategy accumulative \N +935 2 1609884656 workshop examplesmode 0 \N +936 2 1609884656 workshopallocation_random numofreviews 5 \N +937 2 1609884656 workshopform_numerrors grade0 No \N +938 2 1609884656 workshopform_numerrors grade1 Yes \N +939 2 1609884656 workshopeval_best comparison 5 \N +940 2 1609884656 tool_recyclebin coursebinenable 1 \N +941 2 1609884656 tool_recyclebin coursebinexpiry 604800 \N +942 2 1609884656 tool_recyclebin categorybinenable 1 \N +943 2 1609884656 tool_recyclebin categorybinexpiry 604800 \N +944 2 1609884656 tool_recyclebin autohide 1 \N +945 2 1609884656 antivirus_clamav runningmethod commandline \N +946 2 1609884656 antivirus_clamav pathtoclam \N +947 2 1609884656 antivirus_clamav pathtounixsocket \N +948 2 1609884656 antivirus_clamav tcpsockethost \N +949 2 1609884656 antivirus_clamav tcpsocketport 3310 \N +950 2 1609884656 antivirus_clamav clamfailureonupload donothing \N +951 2 1609884656 antivirus_clamav tries 1 \N +952 2 1609884656 auth_cas field_map_firstname \N +953 2 1609884656 auth_cas field_updatelocal_firstname oncreate \N +954 2 1609884656 auth_cas field_updateremote_firstname 0 \N +955 2 1609884656 auth_cas field_lock_firstname unlocked \N +956 2 1609884656 auth_cas field_map_lastname \N +957 2 1609884656 auth_cas field_updatelocal_lastname oncreate \N +958 2 1609884656 auth_cas field_updateremote_lastname 0 \N +959 2 1609884656 auth_cas field_lock_lastname unlocked \N +960 2 1609884656 auth_cas field_map_email \N +961 2 1609884656 auth_cas field_updatelocal_email oncreate \N +962 2 1609884656 auth_cas field_updateremote_email 0 \N +963 2 1609884656 auth_cas field_lock_email unlocked \N +964 2 1609884656 auth_cas field_map_city \N +965 2 1609884656 auth_cas field_updatelocal_city oncreate \N +966 2 1609884656 auth_cas field_updateremote_city 0 \N +967 2 1609884656 auth_cas field_lock_city unlocked \N +968 2 1609884656 auth_cas field_map_country \N +969 2 1609884656 auth_cas field_updatelocal_country oncreate \N +970 2 1609884656 auth_cas field_updateremote_country 0 \N +971 2 1609884656 auth_cas field_lock_country unlocked \N +972 2 1609884656 auth_cas field_map_lang \N +973 2 1609884656 auth_cas field_updatelocal_lang oncreate \N +974 2 1609884656 auth_cas field_updateremote_lang 0 \N +975 2 1609884656 auth_cas field_lock_lang unlocked \N +976 2 1609884656 auth_cas field_map_description \N +977 2 1609884656 auth_cas field_updatelocal_description oncreate \N +978 2 1609884656 auth_cas field_updateremote_description 0 \N +979 2 1609884656 auth_cas field_lock_description unlocked \N +980 2 1609884656 auth_cas field_map_url \N +981 2 1609884656 auth_cas field_updatelocal_url oncreate \N +982 2 1609884656 auth_cas field_updateremote_url 0 \N +983 2 1609884656 auth_cas field_lock_url unlocked \N +984 2 1609884656 auth_cas field_map_idnumber \N +985 2 1609884656 auth_cas field_updatelocal_idnumber oncreate \N +986 2 1609884656 auth_cas field_updateremote_idnumber 0 \N +987 2 1609884656 auth_cas field_lock_idnumber unlocked \N +988 2 1609884656 auth_cas field_map_institution \N +989 2 1609884656 auth_cas field_updatelocal_institution oncreate \N +990 2 1609884656 auth_cas field_updateremote_institution 0 \N +991 2 1609884656 auth_cas field_lock_institution unlocked \N +992 2 1609884656 auth_cas field_map_department \N +993 2 1609884656 auth_cas field_updatelocal_department oncreate \N +994 2 1609884656 auth_cas field_updateremote_department 0 \N +995 2 1609884656 auth_cas field_lock_department unlocked \N +996 2 1609884656 auth_cas field_map_phone1 \N +997 2 1609884656 auth_cas field_updatelocal_phone1 oncreate \N +998 2 1609884656 auth_cas field_updateremote_phone1 0 \N +999 2 1609884656 auth_cas field_lock_phone1 unlocked \N +1000 2 1609884656 auth_cas field_map_phone2 \N +1001 2 1609884656 auth_cas field_updatelocal_phone2 oncreate \N +1002 2 1609884656 auth_cas field_updateremote_phone2 0 \N +1003 2 1609884656 auth_cas field_lock_phone2 unlocked \N +1004 2 1609884656 auth_cas field_map_address \N +1005 2 1609884656 auth_cas field_updatelocal_address oncreate \N +1006 2 1609884656 auth_cas field_updateremote_address 0 \N +1007 2 1609884656 auth_cas field_lock_address unlocked \N +1008 2 1609884656 auth_cas field_map_firstnamephonetic \N +1009 2 1609884656 auth_cas field_updatelocal_firstnamephonetic oncreate \N +1010 2 1609884656 auth_cas field_updateremote_firstnamephonetic 0 \N +1011 2 1609884656 auth_cas field_lock_firstnamephonetic unlocked \N +1012 2 1609884656 auth_cas field_map_lastnamephonetic \N +1013 2 1609884656 auth_cas field_updatelocal_lastnamephonetic oncreate \N +1014 2 1609884656 auth_cas field_updateremote_lastnamephonetic 0 \N +1015 2 1609884656 auth_cas field_lock_lastnamephonetic unlocked \N +1016 2 1609884656 auth_cas field_map_middlename \N +1017 2 1609884656 auth_cas field_updatelocal_middlename oncreate \N +1018 2 1609884656 auth_cas field_updateremote_middlename 0 \N +1019 2 1609884656 auth_cas field_lock_middlename unlocked \N +1020 2 1609884656 auth_cas field_map_alternatename \N +1021 2 1609884656 auth_cas field_updatelocal_alternatename oncreate \N +1022 2 1609884656 auth_cas field_updateremote_alternatename 0 \N +1023 2 1609884656 auth_cas field_lock_alternatename unlocked \N +1024 2 1609884656 auth_email recaptcha 0 \N +1025 2 1609884656 auth_email field_lock_firstname unlocked \N +1026 2 1609884656 auth_email field_lock_lastname unlocked \N +1027 2 1609884656 auth_email field_lock_email unlocked \N +1028 2 1609884656 auth_email field_lock_city unlocked \N +1029 2 1609884656 auth_email field_lock_country unlocked \N +1030 2 1609884656 auth_email field_lock_lang unlocked \N +1031 2 1609884656 auth_email field_lock_description unlocked \N +1032 2 1609884656 auth_email field_lock_url unlocked \N +1033 2 1609884656 auth_email field_lock_idnumber unlocked \N +1034 2 1609884656 auth_email field_lock_institution unlocked \N +1035 2 1609884656 auth_email field_lock_department unlocked \N +1036 2 1609884656 auth_email field_lock_phone1 unlocked \N +1037 2 1609884656 auth_email field_lock_phone2 unlocked \N +1038 2 1609884656 auth_email field_lock_address unlocked \N +1039 2 1609884656 auth_email field_lock_firstnamephonetic unlocked \N +1040 2 1609884656 auth_email field_lock_lastnamephonetic unlocked \N +1041 2 1609884656 auth_email field_lock_middlename unlocked \N +1042 2 1609884656 auth_email field_lock_alternatename unlocked \N +1043 2 1609884656 auth_db host 127.0.0.1 \N +1044 2 1609884656 auth_db type mysqli \N +1045 2 1609884656 auth_db sybasequoting 0 \N +1046 2 1609884656 auth_db name \N +1047 2 1609884656 auth_db user \N +1048 2 1609884656 auth_db pass \N +1049 2 1609884656 auth_db table \N +1050 2 1609884656 auth_db fielduser \N +1051 2 1609884656 auth_db fieldpass \N +1052 2 1609884656 auth_db passtype plaintext \N +1053 2 1609884656 auth_db extencoding utf-8 \N +1054 2 1609884656 auth_db setupsql \N +1055 2 1609884656 auth_db debugauthdb 0 \N +1056 2 1609884656 auth_db changepasswordurl \N +1057 2 1609884656 auth_db removeuser 0 \N +1058 2 1609884656 auth_db updateusers 0 \N +1059 2 1609884656 auth_db field_map_firstname \N +1060 2 1609884656 auth_db field_updatelocal_firstname oncreate \N +1061 2 1609884656 auth_db field_updateremote_firstname 0 \N +1062 2 1609884656 auth_db field_lock_firstname unlocked \N +1063 2 1609884656 auth_db field_map_lastname \N +1064 2 1609884656 auth_db field_updatelocal_lastname oncreate \N +1065 2 1609884656 auth_db field_updateremote_lastname 0 \N +1066 2 1609884656 auth_db field_lock_lastname unlocked \N +1067 2 1609884656 auth_db field_map_email \N +1068 2 1609884656 auth_db field_updatelocal_email oncreate \N +1069 2 1609884656 auth_db field_updateremote_email 0 \N +1070 2 1609884656 auth_db field_lock_email unlocked \N +1071 2 1609884656 auth_db field_map_city \N +1072 2 1609884656 auth_db field_updatelocal_city oncreate \N +1073 2 1609884656 auth_db field_updateremote_city 0 \N +1074 2 1609884656 auth_db field_lock_city unlocked \N +1075 2 1609884656 auth_db field_map_country \N +1076 2 1609884656 auth_db field_updatelocal_country oncreate \N +1077 2 1609884656 auth_db field_updateremote_country 0 \N +1078 2 1609884656 auth_db field_lock_country unlocked \N +1079 2 1609884656 auth_db field_map_lang \N +1080 2 1609884656 auth_db field_updatelocal_lang oncreate \N +1081 2 1609884656 auth_db field_updateremote_lang 0 \N +1082 2 1609884656 auth_db field_lock_lang unlocked \N +1083 2 1609884656 auth_db field_map_description \N +1084 2 1609884656 auth_db field_updatelocal_description oncreate \N +1085 2 1609884656 auth_db field_updateremote_description 0 \N +1086 2 1609884656 auth_db field_lock_description unlocked \N +1087 2 1609884656 auth_db field_map_url \N +1088 2 1609884656 auth_db field_updatelocal_url oncreate \N +1089 2 1609884656 auth_db field_updateremote_url 0 \N +1090 2 1609884656 auth_db field_lock_url unlocked \N +1091 2 1609884656 auth_db field_map_idnumber \N +1092 2 1609884656 auth_db field_updatelocal_idnumber oncreate \N +1093 2 1609884656 auth_db field_updateremote_idnumber 0 \N +1094 2 1609884656 auth_db field_lock_idnumber unlocked \N +1095 2 1609884656 auth_db field_map_institution \N +1096 2 1609884656 auth_db field_updatelocal_institution oncreate \N +1097 2 1609884656 auth_db field_updateremote_institution 0 \N +1098 2 1609884656 auth_db field_lock_institution unlocked \N +1099 2 1609884656 auth_db field_map_department \N +1100 2 1609884656 auth_db field_updatelocal_department oncreate \N +1101 2 1609884656 auth_db field_updateremote_department 0 \N +1102 2 1609884656 auth_db field_lock_department unlocked \N +1103 2 1609884656 auth_db field_map_phone1 \N +1104 2 1609884656 auth_db field_updatelocal_phone1 oncreate \N +1105 2 1609884656 auth_db field_updateremote_phone1 0 \N +1106 2 1609884656 auth_db field_lock_phone1 unlocked \N +1107 2 1609884656 auth_db field_map_phone2 \N +1108 2 1609884656 auth_db field_updatelocal_phone2 oncreate \N +1109 2 1609884656 auth_db field_updateremote_phone2 0 \N +1110 2 1609884656 auth_db field_lock_phone2 unlocked \N +1111 2 1609884656 auth_db field_map_address \N +1112 2 1609884656 auth_db field_updatelocal_address oncreate \N +1113 2 1609884656 auth_db field_updateremote_address 0 \N +1114 2 1609884656 auth_db field_lock_address unlocked \N +1115 2 1609884656 auth_db field_map_firstnamephonetic \N +1116 2 1609884656 auth_db field_updatelocal_firstnamephonetic oncreate \N +1117 2 1609884656 auth_db field_updateremote_firstnamephonetic 0 \N +1118 2 1609884656 auth_db field_lock_firstnamephonetic unlocked \N +1119 2 1609884656 auth_db field_map_lastnamephonetic \N +1120 2 1609884656 auth_db field_updatelocal_lastnamephonetic oncreate \N +1121 2 1609884656 auth_db field_updateremote_lastnamephonetic 0 \N +1122 2 1609884656 auth_db field_lock_lastnamephonetic unlocked \N +1123 2 1609884656 auth_db field_map_middlename \N +1124 2 1609884656 auth_db field_updatelocal_middlename oncreate \N +1125 2 1609884656 auth_db field_updateremote_middlename 0 \N +1126 2 1609884656 auth_db field_lock_middlename unlocked \N +1127 2 1609884656 auth_db field_map_alternatename \N +1128 2 1609884656 auth_db field_updatelocal_alternatename oncreate \N +1129 2 1609884656 auth_db field_updateremote_alternatename 0 \N +1130 2 1609884656 auth_db field_lock_alternatename unlocked \N +1131 2 1609884656 auth_ldap field_map_firstname \N +1132 2 1609884656 auth_ldap field_updatelocal_firstname oncreate \N +1133 2 1609884656 auth_ldap field_updateremote_firstname 0 \N +1134 2 1609884656 auth_ldap field_lock_firstname unlocked \N +1135 2 1609884656 auth_ldap field_map_lastname \N +1136 2 1609884656 auth_ldap field_updatelocal_lastname oncreate \N +1137 2 1609884656 auth_ldap field_updateremote_lastname 0 \N +1138 2 1609884656 auth_ldap field_lock_lastname unlocked \N +1139 2 1609884656 auth_ldap field_map_email \N +1140 2 1609884656 auth_ldap field_updatelocal_email oncreate \N +1141 2 1609884656 auth_ldap field_updateremote_email 0 \N +1142 2 1609884656 auth_ldap field_lock_email unlocked \N +1143 2 1609884656 auth_ldap field_map_city \N +1144 2 1609884656 auth_ldap field_updatelocal_city oncreate \N +1145 2 1609884656 auth_ldap field_updateremote_city 0 \N +1146 2 1609884656 auth_ldap field_lock_city unlocked \N +1147 2 1609884656 auth_ldap field_map_country \N +1148 2 1609884656 auth_ldap field_updatelocal_country oncreate \N +1149 2 1609884656 auth_ldap field_updateremote_country 0 \N +1150 2 1609884656 auth_ldap field_lock_country unlocked \N +1151 2 1609884656 auth_ldap field_map_lang \N +1152 2 1609884656 auth_ldap field_updatelocal_lang oncreate \N +1153 2 1609884656 auth_ldap field_updateremote_lang 0 \N +1154 2 1609884656 auth_ldap field_lock_lang unlocked \N +1155 2 1609884656 auth_ldap field_map_description \N +1156 2 1609884656 auth_ldap field_updatelocal_description oncreate \N +1157 2 1609884656 auth_ldap field_updateremote_description 0 \N +1158 2 1609884656 auth_ldap field_lock_description unlocked \N +1159 2 1609884657 auth_ldap field_map_url \N +1160 2 1609884657 auth_ldap field_updatelocal_url oncreate \N +1161 2 1609884657 auth_ldap field_updateremote_url 0 \N +1162 2 1609884657 auth_ldap field_lock_url unlocked \N +1163 2 1609884657 auth_ldap field_map_idnumber \N +1164 2 1609884657 auth_ldap field_updatelocal_idnumber oncreate \N +1165 2 1609884657 auth_ldap field_updateremote_idnumber 0 \N +1166 2 1609884657 auth_ldap field_lock_idnumber unlocked \N +1167 2 1609884657 auth_ldap field_map_institution \N +1168 2 1609884657 auth_ldap field_updatelocal_institution oncreate \N +1169 2 1609884657 auth_ldap field_updateremote_institution 0 \N +1170 2 1609884657 auth_ldap field_lock_institution unlocked \N +1171 2 1609884657 auth_ldap field_map_department \N +1172 2 1609884657 auth_ldap field_updatelocal_department oncreate \N +1173 2 1609884657 auth_ldap field_updateremote_department 0 \N +1174 2 1609884657 auth_ldap field_lock_department unlocked \N +1175 2 1609884657 auth_ldap field_map_phone1 \N +1176 2 1609884657 auth_ldap field_updatelocal_phone1 oncreate \N +1177 2 1609884657 auth_ldap field_updateremote_phone1 0 \N +1178 2 1609884657 auth_ldap field_lock_phone1 unlocked \N +1179 2 1609884657 auth_ldap field_map_phone2 \N +1180 2 1609884657 auth_ldap field_updatelocal_phone2 oncreate \N +1181 2 1609884657 auth_ldap field_updateremote_phone2 0 \N +1182 2 1609884657 auth_ldap field_lock_phone2 unlocked \N +1183 2 1609884657 auth_ldap field_map_address \N +1184 2 1609884657 auth_ldap field_updatelocal_address oncreate \N +1185 2 1609884657 auth_ldap field_updateremote_address 0 \N +1186 2 1609884657 auth_ldap field_lock_address unlocked \N +1187 2 1609884657 auth_ldap field_map_firstnamephonetic \N +1188 2 1609884657 auth_ldap field_updatelocal_firstnamephonetic oncreate \N +1189 2 1609884657 auth_ldap field_updateremote_firstnamephonetic 0 \N +1190 2 1609884657 auth_ldap field_lock_firstnamephonetic unlocked \N +1191 2 1609884657 auth_ldap field_map_lastnamephonetic \N +1192 2 1609884657 auth_ldap field_updatelocal_lastnamephonetic oncreate \N +1193 2 1609884657 auth_ldap field_updateremote_lastnamephonetic 0 \N +1194 2 1609884657 auth_ldap field_lock_lastnamephonetic unlocked \N +1195 2 1609884657 auth_ldap field_map_middlename \N +1196 2 1609884657 auth_ldap field_updatelocal_middlename oncreate \N +1197 2 1609884657 auth_ldap field_updateremote_middlename 0 \N +1198 2 1609884657 auth_ldap field_lock_middlename unlocked \N +1199 2 1609884657 auth_ldap field_map_alternatename \N +1200 2 1609884657 auth_ldap field_updatelocal_alternatename oncreate \N +1201 2 1609884657 auth_ldap field_updateremote_alternatename 0 \N +1202 2 1609884657 auth_ldap field_lock_alternatename unlocked \N +1203 2 1609884657 auth_manual expiration 0 \N +1204 2 1609884657 auth_manual expirationtime 30 \N +1205 2 1609884657 auth_manual expiration_warning 0 \N +1206 2 1609884657 auth_manual field_lock_firstname unlocked \N +1207 2 1609884657 auth_manual field_lock_lastname unlocked \N +1208 2 1609884657 auth_manual field_lock_email unlocked \N +1209 2 1609884657 auth_manual field_lock_city unlocked \N +1210 2 1609884657 auth_manual field_lock_country unlocked \N +1211 2 1609884657 auth_manual field_lock_lang unlocked \N +1212 2 1609884657 auth_manual field_lock_description unlocked \N +1213 2 1609884657 auth_manual field_lock_url unlocked \N +1214 2 1609884657 auth_manual field_lock_idnumber unlocked \N +1215 2 1609884657 auth_manual field_lock_institution unlocked \N +1216 2 1609884657 auth_manual field_lock_department unlocked \N +1217 2 1609884657 auth_manual field_lock_phone1 unlocked \N +1218 2 1609884657 auth_manual field_lock_phone2 unlocked \N +1219 2 1609884657 auth_manual field_lock_address unlocked \N +1220 2 1609884657 auth_manual field_lock_firstnamephonetic unlocked \N +1221 2 1609884657 auth_manual field_lock_lastnamephonetic unlocked \N +1222 2 1609884657 auth_manual field_lock_middlename unlocked \N +1223 2 1609884657 auth_manual field_lock_alternatename unlocked \N +1224 2 1609884657 auth_mnet rpc_negotiation_timeout 30 \N +1225 2 1609884657 auth_none field_lock_firstname unlocked \N +1226 2 1609884657 auth_none field_lock_lastname unlocked \N +1227 2 1609884657 auth_none field_lock_email unlocked \N +1228 2 1609884657 auth_none field_lock_city unlocked \N +1229 2 1609884657 auth_none field_lock_country unlocked \N +1230 2 1609884657 auth_none field_lock_lang unlocked \N +1231 2 1609884657 auth_none field_lock_description unlocked \N +1232 2 1609884657 auth_none field_lock_url unlocked \N +1233 2 1609884657 auth_none field_lock_idnumber unlocked \N +1234 2 1609884657 auth_none field_lock_institution unlocked \N +1235 2 1609884657 auth_none field_lock_department unlocked \N +1236 2 1609884657 auth_none field_lock_phone1 unlocked \N +1237 2 1609884657 auth_none field_lock_phone2 unlocked \N +1238 2 1609884657 auth_none field_lock_address unlocked \N +1239 2 1609884657 auth_none field_lock_firstnamephonetic unlocked \N +1240 2 1609884657 auth_none field_lock_lastnamephonetic unlocked \N +1241 2 1609884657 auth_none field_lock_middlename unlocked \N +1242 2 1609884657 auth_none field_lock_alternatename unlocked \N +1243 2 1609884657 auth_oauth2 field_lock_firstname unlocked \N +1244 2 1609884657 auth_oauth2 field_lock_lastname unlocked \N +1245 2 1609884657 auth_oauth2 field_lock_email unlocked \N +1246 2 1609884657 auth_oauth2 field_lock_city unlocked \N +1247 2 1609884657 auth_oauth2 field_lock_country unlocked \N +1248 2 1609884657 auth_oauth2 field_lock_lang unlocked \N +1249 2 1609884657 auth_oauth2 field_lock_description unlocked \N +1250 2 1609884657 auth_oauth2 field_lock_url unlocked \N +1251 2 1609884657 auth_oauth2 field_lock_idnumber unlocked \N +1252 2 1609884657 auth_oauth2 field_lock_institution unlocked \N +1253 2 1609884657 auth_oauth2 field_lock_department unlocked \N +1254 2 1609884657 auth_oauth2 field_lock_phone1 unlocked \N +1255 2 1609884657 auth_oauth2 field_lock_phone2 unlocked \N +1256 2 1609884657 auth_oauth2 field_lock_address unlocked \N +1257 2 1609884657 auth_oauth2 field_lock_firstnamephonetic unlocked \N +1258 2 1609884657 auth_oauth2 field_lock_lastnamephonetic unlocked \N +1259 2 1609884657 auth_oauth2 field_lock_middlename unlocked \N +1260 2 1609884657 auth_oauth2 field_lock_alternatename unlocked \N +1261 2 1609884657 auth_shibboleth user_attribute \N +1262 2 1609884657 auth_shibboleth convert_data \N +1263 2 1609884657 auth_shibboleth alt_login off \N +1264 2 1609884657 auth_shibboleth organization_selection urn:mace:organization1:providerID, Example Organization 1\n https://another.idp-id.com/shibboleth, Other Example Organization, /Shibboleth.sso/DS/SWITCHaai\n urn:mace:organization2:providerID, Example Organization 2, /Shibboleth.sso/WAYF/SWITCHaai \N +1265 2 1609884657 auth_shibboleth logout_handler \N +1266 2 1609884657 auth_shibboleth logout_return_url \N +1267 2 1609884657 auth_shibboleth login_name Shibboleth Login \N +1268 2 1609884657 auth_shibboleth auth_logo \N +1269 2 1609884657 auth_shibboleth auth_instructions Use the Shibboleth login to get access via Shibboleth, if your institution supports it. Otherwise, use the normal login form shown here. \N +1270 2 1609884657 auth_shibboleth changepasswordurl \N +1271 2 1609884657 auth_shibboleth field_map_firstname \N +1272 2 1609884657 auth_shibboleth field_updatelocal_firstname oncreate \N +1273 2 1609884657 auth_shibboleth field_lock_firstname unlocked \N +1274 2 1609884657 auth_shibboleth field_map_lastname \N +1275 2 1609884657 auth_shibboleth field_updatelocal_lastname oncreate \N +1276 2 1609884657 auth_shibboleth field_lock_lastname unlocked \N +1277 2 1609884657 auth_shibboleth field_map_email \N +1278 2 1609884657 auth_shibboleth field_updatelocal_email oncreate \N +1279 2 1609884657 auth_shibboleth field_lock_email unlocked \N +1280 2 1609884657 auth_shibboleth field_map_city \N +1281 2 1609884657 auth_shibboleth field_updatelocal_city oncreate \N +1282 2 1609884657 auth_shibboleth field_lock_city unlocked \N +1283 2 1609884657 auth_shibboleth field_map_country \N +1284 2 1609884657 auth_shibboleth field_updatelocal_country oncreate \N +1285 2 1609884657 auth_shibboleth field_lock_country unlocked \N +1286 2 1609884657 auth_shibboleth field_map_lang \N +1287 2 1609884657 auth_shibboleth field_updatelocal_lang oncreate \N +1288 2 1609884657 auth_shibboleth field_lock_lang unlocked \N +1289 2 1609884657 auth_shibboleth field_map_description \N +1290 2 1609884657 auth_shibboleth field_updatelocal_description oncreate \N +1291 2 1609884657 auth_shibboleth field_lock_description unlocked \N +1292 2 1609884657 auth_shibboleth field_map_url \N +1293 2 1609884657 auth_shibboleth field_updatelocal_url oncreate \N +1294 2 1609884657 auth_shibboleth field_lock_url unlocked \N +1295 2 1609884657 auth_shibboleth field_map_idnumber \N +1296 2 1609884657 auth_shibboleth field_updatelocal_idnumber oncreate \N +1297 2 1609884657 auth_shibboleth field_lock_idnumber unlocked \N +1298 2 1609884657 auth_shibboleth field_map_institution \N +1299 2 1609884657 auth_shibboleth field_updatelocal_institution oncreate \N +1300 2 1609884657 auth_shibboleth field_lock_institution unlocked \N +1301 2 1609884657 auth_shibboleth field_map_department \N +1302 2 1609884657 auth_shibboleth field_updatelocal_department oncreate \N +1303 2 1609884657 auth_shibboleth field_lock_department unlocked \N +1304 2 1609884657 auth_shibboleth field_map_phone1 \N +1305 2 1609884657 auth_shibboleth field_updatelocal_phone1 oncreate \N +1306 2 1609884657 auth_shibboleth field_lock_phone1 unlocked \N +1307 2 1609884657 auth_shibboleth field_map_phone2 \N +1308 2 1609884657 auth_shibboleth field_updatelocal_phone2 oncreate \N +1309 2 1609884657 auth_shibboleth field_lock_phone2 unlocked \N +1310 2 1609884657 auth_shibboleth field_map_address \N +1311 2 1609884657 auth_shibboleth field_updatelocal_address oncreate \N +1312 2 1609884657 auth_shibboleth field_lock_address unlocked \N +1313 2 1609884657 auth_shibboleth field_map_firstnamephonetic \N +1314 2 1609884657 auth_shibboleth field_updatelocal_firstnamephonetic oncreate \N +1315 2 1609884657 auth_shibboleth field_lock_firstnamephonetic unlocked \N +1316 2 1609884657 auth_shibboleth field_map_lastnamephonetic \N +1317 2 1609884657 auth_shibboleth field_updatelocal_lastnamephonetic oncreate \N +1318 2 1609884657 auth_shibboleth field_lock_lastnamephonetic unlocked \N +1319 2 1609884657 auth_shibboleth field_map_middlename \N +1320 2 1609884657 auth_shibboleth field_updatelocal_middlename oncreate \N +1321 2 1609884657 auth_shibboleth field_lock_middlename unlocked \N +1322 2 1609884657 auth_shibboleth field_map_alternatename \N +1323 2 1609884657 auth_shibboleth field_updatelocal_alternatename oncreate \N +1324 2 1609884657 auth_shibboleth field_lock_alternatename unlocked \N +1325 2 1609884657 block_activity_results config_showbest 3 \N +1326 2 1609884657 block_activity_results config_showbest_locked \N +1327 2 1609884657 block_activity_results config_showworst 0 \N +1328 2 1609884657 block_activity_results config_showworst_locked \N +1329 2 1609884657 block_activity_results config_usegroups 0 \N +1330 2 1609884657 block_activity_results config_usegroups_locked \N +1331 2 1609884657 block_activity_results config_nameformat 1 \N +1332 2 1609884657 block_activity_results config_nameformat_locked \N +1333 2 1609884657 block_activity_results config_gradeformat 1 \N +1334 2 1609884657 block_activity_results config_gradeformat_locked \N +1335 2 1609884657 block_activity_results config_decimalpoints 2 \N +1336 2 1609884657 block_activity_results config_decimalpoints_locked \N +1337 2 1609884657 block_myoverview displaycategories 1 \N +1338 2 1609884657 block_myoverview layouts card,list,summary \N +1339 2 1609884657 block_myoverview displaygroupingallincludinghidden 0 \N +1340 2 1609884657 block_myoverview displaygroupingall 1 \N +1341 2 1609884657 block_myoverview displaygroupinginprogress 1 \N +1342 2 1609884657 block_myoverview displaygroupingpast 1 \N +1343 2 1609884657 block_myoverview displaygroupingfuture 1 \N +1344 2 1609884657 block_myoverview displaygroupingcustomfield 0 \N +1345 2 1609884657 block_myoverview customfiltergrouping \N +1346 2 1609884657 block_myoverview displaygroupingfavourites 1 \N +1347 2 1609884657 block_myoverview displaygroupinghidden 1 \N +1348 2 1609884657 \N block_course_list_adminview all \N +1349 2 1609884657 \N block_course_list_hideallcourseslink 0 \N +1350 2 1609884657 \N block_html_allowcssclasses 0 \N +1351 2 1609884657 \N block_online_users_timetosee 5 \N +1352 2 1609884657 \N block_online_users_onlinestatushiding 1 \N +1353 2 1609884657 block_recentlyaccessedcourses displaycategories 1 \N +1354 2 1609884657 \N block_rss_client_num_entries 5 \N +1355 2 1609884657 \N block_rss_client_timeout 30 \N +1356 2 1609884657 block_section_links numsections1 22 \N +1357 2 1609884657 block_section_links incby1 2 \N +1358 2 1609884657 block_section_links numsections2 40 \N +1359 2 1609884657 block_section_links incby2 5 \N +1360 2 1609884657 block_starredcourses displaycategories 1 \N +1361 2 1609884657 block_tag_youtube apikey \N +1362 2 1609884657 format_singleactivity activitytype forum \N +1363 2 1609884657 fileconverter_googledrive issuerid \N +1364 2 1609884657 \N pathtounoconv /usr/bin/unoconv \N +1365 2 1609884657 enrol_cohort roleid 5 \N +1366 2 1609884657 enrol_cohort unenrolaction 0 \N +1367 2 1609884657 enrol_meta nosyncroleids \N +1368 2 1609884657 enrol_meta syncall 1 \N +1369 2 1609884657 enrol_meta unenrolaction 3 \N +1370 2 1609884657 enrol_meta coursesort sortorder \N +1371 2 1609884657 enrol_database dbtype \N +1372 2 1609884657 enrol_database dbhost localhost \N +1373 2 1609884657 enrol_database dbuser \N +1374 2 1609884657 enrol_database dbpass \N +1375 2 1609884657 enrol_database dbname \N +1376 2 1609884657 enrol_database dbencoding utf-8 \N +1377 2 1609884657 enrol_database dbsetupsql \N +1378 2 1609884657 enrol_database dbsybasequoting 0 \N +1379 2 1609884657 enrol_database debugdb 0 \N +1380 2 1609884657 enrol_database localcoursefield idnumber \N +1381 2 1609884657 enrol_database localuserfield idnumber \N +1382 2 1609884657 enrol_database localrolefield shortname \N +1383 2 1609884657 enrol_database localcategoryfield id \N +1384 2 1609884657 enrol_database remoteenroltable \N +1385 2 1609884657 enrol_database remotecoursefield \N +1386 2 1609884657 enrol_database remoteuserfield \N +1387 2 1609884657 enrol_database remoterolefield \N +1388 2 1609884657 enrol_database remoteotheruserfield \N +1389 2 1609884657 enrol_database defaultrole 5 \N +1390 2 1609884657 enrol_database ignorehiddencourses 0 \N +1391 2 1609884657 enrol_database unenrolaction 0 \N +1392 2 1609884657 enrol_database newcoursetable \N +1393 2 1609884657 enrol_database newcoursefullname fullname \N +1394 2 1609884657 enrol_database newcourseshortname shortname \N +1395 2 1609884657 enrol_database newcourseidnumber idnumber \N +1396 2 1609884657 enrol_database newcoursecategory \N +1397 2 1609884657 enrol_database defaultcategory 1 \N +1398 2 1609884657 enrol_database templatecourse \N +1399 2 1609884657 enrol_flatfile location \N +1400 2 1609884657 enrol_flatfile encoding UTF-8 \N +1401 2 1609884657 enrol_flatfile mailstudents 0 \N +1402 2 1609884657 enrol_flatfile mailteachers 0 \N +1403 2 1609884657 enrol_flatfile mailadmins 0 \N +1404 2 1609884657 enrol_flatfile unenrolaction 3 \N +1405 2 1609884657 enrol_flatfile expiredaction 3 \N +1406 2 1609884657 enrol_guest requirepassword 0 \N +1407 2 1609884657 enrol_guest usepasswordpolicy 0 \N +1408 2 1609884657 enrol_guest showhint 0 \N +1409 2 1609884657 enrol_guest defaultenrol 1 \N +1410 2 1609884657 enrol_guest status 1 \N +1411 2 1609884657 enrol_guest status_adv \N +1412 2 1609884657 enrol_imsenterprise imsfilelocation \N +1413 2 1609884657 enrol_imsenterprise logtolocation \N +1414 2 1609884657 enrol_imsenterprise mailadmins 0 \N +1415 2 1609884657 enrol_imsenterprise createnewusers 0 \N +1416 2 1609884657 enrol_imsenterprise imsupdateusers 0 \N +1417 2 1609884657 enrol_imsenterprise imsdeleteusers 0 \N +1418 2 1609884657 enrol_imsenterprise fixcaseusernames 0 \N +1419 2 1609884657 enrol_imsenterprise fixcasepersonalnames 0 \N +1420 2 1609884657 enrol_imsenterprise imssourcedidfallback 0 \N +1421 2 1609884657 enrol_imsenterprise imsrolemap01 5 \N +1422 2 1609884657 enrol_imsenterprise imsrolemap02 3 \N +1423 2 1609884657 enrol_imsenterprise imsrolemap03 3 \N +1424 2 1609884657 enrol_imsenterprise imsrolemap04 5 \N +1425 2 1609884657 enrol_imsenterprise imsrolemap05 0 \N +1426 2 1609884657 enrol_imsenterprise imsrolemap06 4 \N +1427 2 1609884657 enrol_imsenterprise imsrolemap07 0 \N +1428 2 1609884657 enrol_imsenterprise imsrolemap08 4 \N +1429 2 1609884657 enrol_imsenterprise truncatecoursecodes 0 \N +1430 2 1609884657 enrol_imsenterprise createnewcourses 0 \N +1431 2 1609884657 enrol_imsenterprise updatecourses 0 \N +1432 2 1609884657 enrol_imsenterprise createnewcategories 0 \N +1433 2 1609884657 enrol_imsenterprise nestedcategories 0 \N +1434 2 1609884657 enrol_imsenterprise categoryidnumber 0 \N +1435 2 1609884657 enrol_imsenterprise categoryseparator \N +1436 2 1609884657 enrol_imsenterprise imsunenrol 0 \N +1437 2 1609884657 enrol_imsenterprise imscoursemapshortname coursecode \N +1438 2 1609884657 enrol_imsenterprise imscoursemapfullname short \N +1439 2 1609884657 enrol_imsenterprise imscoursemapsummary ignore \N +1440 2 1609884657 enrol_imsenterprise imsrestricttarget \N +1441 2 1609884657 enrol_imsenterprise imscapitafix 0 \N +1442 2 1609884657 enrol_manual expiredaction 1 \N +1443 2 1609884657 enrol_manual expirynotifyhour 6 \N +1444 2 1609884657 enrol_manual defaultenrol 1 \N +1445 2 1609884657 enrol_manual status 0 \N +1446 2 1609884657 enrol_manual roleid 5 \N +1447 2 1609884657 enrol_manual enrolstart 4 \N +1448 2 1609884657 enrol_manual enrolperiod 0 \N +1449 2 1609884657 enrol_manual expirynotify 0 \N +1450 2 1609884657 enrol_manual expirythreshold 86400 \N +1451 2 1609884657 enrol_mnet roleid 5 \N +1452 2 1609884657 enrol_mnet roleid_adv 1 \N +1453 2 1609884657 enrol_paypal paypalbusiness \N +1454 2 1609884657 enrol_paypal mailstudents 0 \N +1455 2 1609884657 enrol_paypal mailteachers 0 \N +1456 2 1609884657 enrol_paypal mailadmins 0 \N +1457 2 1609884657 enrol_paypal expiredaction 3 \N +1458 2 1609884657 enrol_paypal status 1 \N +1459 2 1609884657 enrol_paypal cost 0 \N +1460 2 1609884657 enrol_paypal currency USD \N +1461 2 1609884657 enrol_paypal roleid 5 \N +1462 2 1609884657 enrol_paypal enrolperiod 0 \N +1463 2 1609884657 enrol_lti emaildisplay 2 \N +1464 2 1609884657 enrol_lti city \N +1465 2 1609884657 enrol_lti country \N +1466 2 1609884657 enrol_lti timezone 99 \N +1467 2 1609884657 enrol_lti lang en \N +1468 2 1609884657 enrol_lti institution \N +1469 2 1609884657 enrol_self requirepassword 0 \N +1470 2 1609884657 enrol_self usepasswordpolicy 0 \N +1471 2 1609884657 enrol_self showhint 0 \N +1472 2 1609884657 enrol_self expiredaction 1 \N +1473 2 1609884657 enrol_self expirynotifyhour 6 \N +1474 2 1609884657 enrol_self defaultenrol 1 \N +1475 2 1609884657 enrol_self status 1 \N +1476 2 1609884657 enrol_self newenrols 1 \N +1477 2 1609884657 enrol_self groupkey 0 \N +1478 2 1609884657 enrol_self roleid 5 \N +1479 2 1609884657 enrol_self enrolperiod 0 \N +1480 2 1609884657 enrol_self expirynotify 0 \N +1481 2 1609884657 enrol_self expirythreshold 86400 \N +1482 2 1609884657 enrol_self longtimenosee 0 \N +1483 2 1609884657 enrol_self maxenrolled 0 \N +1484 2 1609884657 enrol_self sendcoursewelcomemessage 1 \N +1485 2 1609884657 filter_urltolink formats 1,4,0 \N +1486 2 1609884657 filter_urltolink embedimages 1 \N +1487 2 1609884657 filter_emoticon formats 1,4,0 \N +1488 2 1609884657 filter_displayh5p allowedsources \N +1489 2 1609884657 filter_mathjaxloader httpsurl https://cdn.jsdelivr.net/npm/mathjax@2.7.8/MathJax.js \N +1490 2 1609884657 filter_mathjaxloader texfiltercompatibility 0 \N +1491 2 1609884657 filter_mathjaxloader mathjaxconfig \nMathJax.Hub.Config({\n config: ["Accessible.js", "Safe.js"],\n errorSettings: { message: ["!"] },\n skipStartupTypeset: true,\n messageStyle: "none"\n});\n \N +1492 2 1609884657 filter_mathjaxloader additionaldelimiters \N +1493 2 1609884657 \N filter_multilang_force_old 0 \N +1494 2 1609884657 filter_tex latexpreamble \\usepackage[latin1]{inputenc}\n\\usepackage{amsmath}\n\\usepackage{amsfonts}\n\\RequirePackage{amsmath,amssymb,latexsym}\n \N +1495 2 1609884657 filter_tex latexbackground #FFFFFF \N +1496 2 1609884657 filter_tex density 120 \N +1497 2 1609884657 filter_tex pathlatex /usr/bin/latex \N +1498 2 1609884657 filter_tex pathdvips /usr/bin/dvips \N +1499 2 1609884657 filter_tex pathconvert /usr/bin/convert \N +1500 2 1609884657 filter_tex pathdvisvgm /usr/bin/dvisvgm \N +1501 2 1609884657 filter_tex pathmimetex \N +1502 2 1609884657 filter_tex convertformat gif \N +1503 2 1609884657 \N filter_censor_badwords \N +1504 2 1609884657 logstore_database dbdriver \N +1505 2 1609884657 logstore_database dbhost \N +1506 2 1609884657 logstore_database dbuser \N +1507 2 1609884657 logstore_database dbpass \N +1508 2 1609884657 logstore_database dbname \N +1509 2 1609884657 logstore_database dbtable \N +1510 2 1609884657 logstore_database dbpersist 0 \N +1511 2 1609884657 logstore_database dbsocket \N +1512 2 1609884657 logstore_database dbport \N +1513 2 1609884657 logstore_database dbschema \N +1514 2 1609884657 logstore_database dbcollation \N +1515 2 1609884657 logstore_database dbhandlesoptions 0 \N +1516 2 1609884657 logstore_database buffersize 50 \N +1517 2 1609884657 logstore_database jsonformat 1 \N +1518 2 1609884657 logstore_database logguests 0 \N +1519 2 1609884657 logstore_database includelevels 1,2,0 \N +1520 2 1609884657 logstore_database includeactions c,r,u,d \N +1521 2 1609884657 logstore_legacy loglegacy 0 \N +1522 2 1609884657 \N logguests 1 \N +1523 2 1609884657 \N loglifetime 0 \N +1524 2 1609884657 logstore_standard logguests 1 \N +1525 2 1609884657 logstore_standard jsonformat 1 \N +1526 2 1609884657 logstore_standard loglifetime 0 \N +1527 2 1609884657 logstore_standard buffersize 50 \N +1528 2 1609884657 mlbackend_python useserver 0 \N +1529 2 1609884657 mlbackend_python host \N +1530 2 1609884657 mlbackend_python port 0 \N +1531 2 1609884657 mlbackend_python secure 0 \N +1532 2 1609884657 mlbackend_python username default \N +1533 2 1609884657 mlbackend_python password \N +1534 2 1609884657 media_videojs videoextensions html_video,media_source,.f4v,.flv \N +1535 2 1609884657 media_videojs audioextensions html_audio \N +1536 2 1609884657 media_videojs rtmp 0 \N +1537 2 1609884657 media_videojs useflash 0 \N +1538 2 1609884657 media_videojs youtube 1 \N +1539 2 1609884657 media_videojs videocssclass video-js \N +1540 2 1609884657 media_videojs audiocssclass video-js \N +1541 2 1609884657 media_videojs limitsize 1 \N +1542 2 1609884657 qtype_multichoice answerhowmany 1 \N +1543 2 1609884657 qtype_multichoice shuffleanswers 1 \N +1544 2 1609884657 qtype_multichoice answernumbering abc \N +1545 2 1609884657 editor_atto toolbar collapse = collapse\nstyle1 = title, bold, italic\nlist = unorderedlist, orderedlist, indent\nlinks = link\nfiles = emojipicker, image, media, recordrtc, managefiles, h5p\nstyle2 = underline, strike, subscript, superscript\nalign = align\ninsert = equation, charmap, table, clear\nundo = undo\naccessibility = accessibilitychecker, accessibilityhelper\nother = html \N +1546 2 1609884657 editor_atto autosavefrequency 60 \N +1547 2 1609884657 atto_collapse showgroups 5 \N +1548 2 1609884657 atto_equation librarygroup1 \n\\cdot\n\\times\n\\ast\n\\div\n\\diamond\n\\pm\n\\mp\n\\oplus\n\\ominus\n\\otimes\n\\oslash\n\\odot\n\\circ\n\\bullet\n\\asymp\n\\equiv\n\\subseteq\n\\supseteq\n\\leq\n\\geq\n\\preceq\n\\succeq\n\\sim\n\\simeq\n\\approx\n\\subset\n\\supset\n\\ll\n\\gg\n\\prec\n\\succ\n\\infty\n\\in\n\\ni\n\\forall\n\\exists\n\\neq\n \N +1549 2 1609884657 atto_equation librarygroup2 \n\\leftarrow\n\\rightarrow\n\\uparrow\n\\downarrow\n\\leftrightarrow\n\\nearrow\n\\searrow\n\\swarrow\n\\nwarrow\n\\Leftarrow\n\\Rightarrow\n\\Uparrow\n\\Downarrow\n\\Leftrightarrow\n \N +1550 2 1609884657 atto_equation librarygroup3 \n\\alpha\n\\beta\n\\gamma\n\\delta\n\\epsilon\n\\zeta\n\\eta\n\\theta\n\\iota\n\\kappa\n\\lambda\n\\mu\n\\nu\n\\xi\n\\pi\n\\rho\n\\sigma\n\\tau\n\\upsilon\n\\phi\n\\chi\n\\psi\n\\omega\n\\Gamma\n\\Delta\n\\Theta\n\\Lambda\n\\Xi\n\\Pi\n\\Sigma\n\\Upsilon\n\\Phi\n\\Psi\n\\Omega\n \N +1551 2 1609884657 atto_equation librarygroup4 \n\\sum{a,b}\n\\sqrt[a]{b+c}\n\\int_{a}^{b}{c}\n\\iint_{a}^{b}{c}\n\\iiint_{a}^{b}{c}\n\\oint{a}\n(a)\n[a]\n\\lbrace{a}\\rbrace\n\\left| \\begin{matrix} a_1 & a_2 \\ a_3 & a_4 \\end{matrix} \\right|\n\\frac{a}{b+c}\n\\vec{a}\n\\binom {a} {b}\n{a \\brack b}\n{a \\brace b}\n \N +1552 2 1609884657 atto_recordrtc allowedtypes both \N +1553 2 1609884657 atto_recordrtc audiobitrate 128000 \N +1554 2 1609884657 atto_recordrtc videobitrate 2500000 \N +1555 2 1609884657 atto_recordrtc timelimit 120 \N +1556 2 1609884657 atto_table allowborders 0 \N +1557 2 1609884657 atto_table allowbackgroundcolour 0 \N +1558 2 1609884657 atto_table allowwidth 0 \N +1559 2 1609884657 editor_tinymce customtoolbar wrap,formatselect,wrap,bold,italic,wrap,bullist,numlist,wrap,link,unlink,wrap,image\n\nundo,redo,wrap,underline,strikethrough,sub,sup,wrap,justifyleft,justifycenter,justifyright,wrap,outdent,indent,wrap,forecolor,backcolor,wrap,ltr,rtl\n\nfontselect,fontsizeselect,wrap,code,search,replace,wrap,nonbreaking,charmap,table,wrap,cleanup,removeformat,pastetext,pasteword,wrap,fullscreen \N +1560 2 1609884657 editor_tinymce fontselectlist Trebuchet=Trebuchet MS,Verdana,Arial,Helvetica,sans-serif;Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;Wingdings=wingdings \N +1561 2 1609884657 editor_tinymce customconfig \N +1562 2 1609884657 tinymce_moodleemoticon requireemoticon 1 \N +1563 2 1609884657 tinymce_spellchecker spellengine \N +1564 2 1609884657 tinymce_spellchecker spelllanguagelist +English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv \N +1565 2 1609884657 \N profileroles 5,4,3 \N +1566 2 1609884657 \N coursecontact 3 \N +1567 2 1609884657 \N frontpage 6 \N +1568 2 1609884657 \N frontpageloggedin 6 \N +1569 2 1609884657 \N maxcategorydepth 2 \N +1570 2 1609884657 \N frontpagecourselimit 200 \N +1571 2 1609884657 \N commentsperpage 15 \N +1572 2 1609884657 \N defaultfrontpageroleid 8 \N +1573 2 1609884657 \N messageinbound_enabled 0 \N +1574 2 1609884657 \N messageinbound_mailbox \N +1575 2 1609884657 \N messageinbound_domain \N +1576 2 1609884657 \N messageinbound_host \N +1577 2 1609884657 \N messageinbound_hostssl ssl \N +1578 2 1609884657 \N messageinbound_hostuser \N +1579 2 1609884657 \N messageinbound_hostpass \N +1580 2 1609884657 \N enablemobilewebservice 0 \N +1581 2 1609884657 tool_mobile apppolicy \N +1582 2 1609884658 tool_mobile typeoflogin 1 \N +1583 2 1609884658 tool_mobile qrcodetype 1 \N +1584 2 1609884658 tool_mobile forcedurlscheme moodlemobile \N +1585 2 1609884658 tool_mobile minimumversion \N +1586 2 1609884658 \N mobilecssurl \N +1587 2 1609884658 tool_mobile enablesmartappbanners 0 \N +1588 2 1609884658 tool_mobile iosappid 633359593 \N +1589 2 1609884658 tool_mobile androidappid com.moodle.moodlemobile \N +1590 2 1609884658 tool_mobile setuplink https://download.moodle.org/mobile \N +1591 2 1609884658 tool_mobile forcelogout 0 \N +1592 2 1609884658 tool_mobile disabledfeatures \N +1593 2 1609884658 tool_mobile custommenuitems \N +1594 2 1609884658 tool_mobile customlangstrings \N +1595 2 1609884658 tool_moodlenet enablemoodlenet 0 \N +1596 2 1609884658 tool_moodlenet defaultmoodlenetname MoodleNet Central \N +1597 2 1609884658 tool_moodlenet defaultmoodlenet https://moodle.net \N +1598 2 1609884709 \N timezone America/Los_Angeles \N +1599 2 1609884709 \N registerauth \N +1600 2 1609884719 \N noreplyaddress noreply@email.com \N +\. + + +-- +-- TOC entry 11475 (class 0 OID 0) +-- Dependencies: 189 +-- Name: mdl_config_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_config_log_id_seq', 1600, true); + + +-- +-- TOC entry 9673 (class 0 OID 16400) +-- Dependencies: 188 +-- Data for Name: mdl_config_plugins; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; +1 question multichoice_sortorder 1 +2 question truefalse_sortorder 2 +3 question match_sortorder 3 +4 question shortanswer_sortorder 4 +5 question numerical_sortorder 5 +6 question essay_sortorder 6 +7 moodlecourse visible 1 +8 moodlecourse format topics +9 moodlecourse maxsections 52 +10 moodlecourse numsections 4 +11 moodlecourse hiddensections 0 +12 moodlecourse coursedisplay 0 +13 moodlecourse courseenddateenabled 1 +14 moodlecourse courseduration 31536000 +15 moodlecourse lang +16 moodlecourse newsitems 5 +17 moodlecourse showgrades 1 +18 moodlecourse showreports 0 +19 moodlecourse maxbytes 0 +20 moodlecourse enablecompletion 1 +21 moodlecourse groupmode 0 +22 moodlecourse groupmodeforce 0 +23 backup loglifetime 30 +24 backup backup_general_users 1 +25 backup backup_general_users_locked +26 backup backup_general_anonymize 0 +27 backup backup_general_anonymize_locked +28 backup backup_general_role_assignments 1 +29 backup backup_general_role_assignments_locked +30 backup backup_general_activities 1 +31 backup backup_general_activities_locked +32 backup backup_general_blocks 1 +33 backup backup_general_blocks_locked +34 backup backup_general_files 1 +35 backup backup_general_files_locked +36 backup backup_general_filters 1 +37 backup backup_general_filters_locked +38 backup backup_general_comments 1 +39 backup backup_general_comments_locked +40 backup backup_general_badges 1 +41 backup backup_general_badges_locked +42 backup backup_general_calendarevents 1 +43 backup backup_general_calendarevents_locked +44 backup backup_general_userscompletion 1 +45 backup backup_general_userscompletion_locked +46 backup backup_general_logs 0 +47 backup backup_general_logs_locked +48 backup backup_general_histories 0 +49 backup backup_general_histories_locked +50 backup backup_general_questionbank 1 +51 backup backup_general_questionbank_locked +52 backup backup_general_groups 1 +53 backup backup_general_groups_locked +54 backup backup_general_competencies 1 +55 backup backup_general_competencies_locked +56 backup backup_general_contentbankcontent 1 +57 backup backup_general_contentbankcontent_locked +58 backup import_general_maxresults 10 +59 backup import_general_duplicate_admin_allowed 0 +60 backup backup_import_activities 1 +61 backup backup_import_activities_locked +62 backup backup_import_blocks 1 +63 backup backup_import_blocks_locked +64 backup backup_import_filters 1 +65 backup backup_import_filters_locked +66 backup backup_import_calendarevents 1 +67 backup backup_import_calendarevents_locked +68 backup backup_import_questionbank 1 +69 backup backup_import_questionbank_locked +70 backup backup_import_groups 1 +71 backup backup_import_groups_locked +72 backup backup_import_competencies 1 +73 backup backup_import_competencies_locked +74 backup backup_import_contentbankcontent 1 +75 backup backup_import_contentbankcontent_locked +76 backup backup_auto_active 0 +77 backup backup_auto_weekdays 0000000 +78 backup backup_auto_hour 0 +79 backup backup_auto_minute 0 +80 backup backup_auto_storage 0 +81 backup backup_auto_destination +82 backup backup_auto_max_kept 1 +83 backup backup_auto_delete_days 0 +84 backup backup_auto_min_kept 0 +85 backup backup_shortname 0 +86 backup backup_auto_skip_hidden 1 +87 backup backup_auto_skip_modif_days 30 +88 backup backup_auto_skip_modif_prev 0 +89 backup backup_auto_users 1 +90 backup backup_auto_role_assignments 1 +91 backup backup_auto_activities 1 +92 backup backup_auto_blocks 1 +93 backup backup_auto_files 1 +94 backup backup_auto_filters 1 +95 backup backup_auto_comments 1 +96 backup backup_auto_badges 1 +97 backup backup_auto_calendarevents 1 +98 backup backup_auto_userscompletion 1 +99 backup backup_auto_logs 0 +100 backup backup_auto_histories 0 +101 backup backup_auto_questionbank 1 +102 backup backup_auto_groups 1 +103 backup backup_auto_competencies 1 +104 backup backup_auto_contentbankcontent 1 +105 restore restore_general_users 1 +106 restore restore_general_users_locked +107 restore restore_general_enrolments 1 +108 restore restore_general_enrolments_locked +109 restore restore_general_role_assignments 1 +110 restore restore_general_role_assignments_locked +111 restore restore_general_activities 1 +112 restore restore_general_activities_locked +113 restore restore_general_blocks 1 +114 restore restore_general_blocks_locked +115 restore restore_general_filters 1 +116 restore restore_general_filters_locked +117 restore restore_general_comments 1 +118 restore restore_general_comments_locked +119 restore restore_general_badges 1 +120 restore restore_general_badges_locked +121 restore restore_general_calendarevents 1 +122 restore restore_general_calendarevents_locked +123 restore restore_general_userscompletion 1 +124 restore restore_general_userscompletion_locked +125 restore restore_general_logs 1 +126 restore restore_general_logs_locked +127 restore restore_general_histories 1 +128 restore restore_general_histories_locked +129 restore restore_general_groups 1 +130 restore restore_general_groups_locked +131 restore restore_general_competencies 1 +132 restore restore_general_competencies_locked +133 restore restore_general_contentbankcontent 1 +134 restore restore_general_contentbankcontent_locked +135 restore restore_merge_overwrite_conf 0 +136 restore restore_merge_overwrite_conf_locked +137 restore restore_merge_course_fullname 1 +138 restore restore_merge_course_fullname_locked +139 restore restore_merge_course_shortname 1 +140 restore restore_merge_course_shortname_locked +141 restore restore_merge_course_startdate 1 +142 restore restore_merge_course_startdate_locked +143 restore restore_replace_overwrite_conf 0 +144 restore restore_replace_overwrite_conf_locked +145 restore restore_replace_course_fullname 1 +146 restore restore_replace_course_fullname_locked +147 restore restore_replace_course_shortname 1 +148 restore restore_replace_course_shortname_locked +149 restore restore_replace_course_startdate 1 +150 restore restore_replace_course_startdate_locked +151 restore restore_replace_keep_roles_and_enrolments 0 +152 restore restore_replace_keep_roles_and_enrolments_locked +153 restore restore_replace_keep_groups_and_groupings 0 +154 restore restore_replace_keep_groups_and_groupings_locked +155 backup backup_async_message_users 0 +156 backup backup_async_message_subject Moodle {operation} completed successfully +157 backup backup_async_message Hi {user_firstname},
Your {operation} (ID: {backupid}) has completed successfully.

You can access it here: {link}. +158 analytics modeinstruction +159 analytics percentonline 0 +160 analytics typeinstitution +161 analytics levelinstitution +162 analytics predictionsprocessor \\mlbackend_php\\processor +163 analytics defaulttimesplittingsevaluation \\core\\analytics\\time_splitting\\quarters_accum,\\core\\analytics\\time_splitting\\quarters,\\core\\analytics\\time_splitting\\single_range +164 analytics modeloutputdir +165 analytics onlycli 1 +166 analytics modeltimelimit 1200 +167 core_competency enabled 1 +168 core_competency pushcourseratingstouserplans 1 +169 cachestore_apcu testperformance 0 +170 cachestore_memcached testservers +171 cachestore_mongodb testserver +172 cachestore_redis test_server +173 cachestore_redis test_password +174 question_preview behaviour deferredfeedback +175 question_preview correctness 1 +176 question_preview marks 2 +177 question_preview markdp 2 +178 question_preview feedback 1 +179 question_preview generalfeedback 1 +180 question_preview rightanswer 1 +181 question_preview history 0 +182 tool_task enablerunnow 1 +183 theme_boost preset default.scss +184 theme_boost presetfiles +185 theme_boost backgroundimage +186 theme_boost brandcolor +187 theme_boost scsspre +188 theme_boost scss +189 theme_classic navbardark 0 +190 theme_classic preset default.scss +191 theme_classic presetfiles +192 theme_classic backgroundimage +193 theme_classic brandcolor +194 theme_classic scsspre +195 theme_classic scss +196 core_admin logo +197 core_admin logocompact +198 core_admin coursecolor1 #81ecec +199 core_admin coursecolor2 #74b9ff +200 core_admin coursecolor3 #a29bfe +201 core_admin coursecolor4 #dfe6e9 +202 core_admin coursecolor5 #00b894 +203 core_admin coursecolor6 #0984e3 +204 core_admin coursecolor7 #b2bec3 +205 core_admin coursecolor8 #fdcb6e +206 core_admin coursecolor9 #fd79a8 +207 core_admin coursecolor10 #6c5ce7 +208 antivirus_clamav version 2020061500 +209 availability_completion version 2020061500 +210 availability_date version 2020061500 +211 availability_grade version 2020061500 +212 availability_group version 2020061500 +213 availability_grouping version 2020061500 +214 availability_profile version 2020061500 +215 qtype_calculated version 2020061500 +216 qtype_calculatedmulti version 2020061500 +217 qtype_calculatedsimple version 2020061500 +218 qtype_ddimageortext version 2020061500 +219 qtype_ddmarker version 2020061500 +220 qtype_ddwtos version 2020061500 +221 qtype_description version 2020061500 +222 qtype_essay version 2020061500 +223 qtype_gapselect version 2020061500 +224 qtype_match version 2020061500 +225 qtype_missingtype version 2020061500 +226 qtype_multianswer version 2020061500 +227 qtype_multichoice version 2020061500 +228 qtype_numerical version 2020061500 +229 qtype_random version 2020061500 +230 qtype_randomsamatch version 2020061500 +231 qtype_shortanswer version 2020061500 +232 qtype_truefalse version 2020061500 +233 mod_assign version 2020061500 +234 mod_assignment version 2020061500 +236 mod_book version 2020061500 +237 mod_chat version 2020061500 +238 mod_choice version 2020061500 +239 mod_data version 2020061500 +240 mod_feedback version 2020061500 +242 mod_folder version 2020061500 +244 mod_forum version 2020061501 +245 mod_glossary version 2020061500 +246 mod_h5pactivity version 2020061500 +247 mod_imscp version 2020061500 +249 mod_label version 2020061500 +250 mod_lesson version 2020061500 +251 mod_lti version 2020061501 +253 mod_lti kid 060173215daee673f086 +254 mod_lti privatekey -----BEGIN PRIVATE KEY-----\nMIIEwAIBADANBgkqhkiG9w0BAQEFAASCBKowggSmAgEAAoIBAQDLWwaU8o+Bdd2l\nBt87/XwNznEr3IdSMEYpPR9exYoKG0dMsy6TpKD7ZCtOV/eUs3FLk938QTEVkwzP\n7BCENdrOnSnzuw2SdYnJsznLmIKGJVyfO2/JjJkmRw8tF8XwIulOKrp9ripzarYs\nChOGOGqd2AZMl3CV5FPgV2Sppswrp1ucwMg7q58ppLrjGBC4Ea/fNDvWQl2dDBA7\n+knS2xhfFeiRqtzxQGSVXzWx4QLOGnoZ/554aDKAHjVSR52aJ0V5x0eAnLMIb/pM\nR4KeVK5qU4xSlhlmRSfjQMD95iPhGbt8yBFKe8p2wwfQp2pRpbhXKO/2UIzSIYA8\n1aYVPT6/AgMBAAECggEBAKDrjkDN1ZvXvqZ50qtxQvrV856G65qxUsQNd0aSwVKQ\nFZLvdBsnurBUqyRa3jOQ8EWjZJXarNHqxMfAga1txJGdsvYJfor4cinnpwOi0x7+\nb9Ydva9bkFHHB45icqM9rSvLCjqsWTFuL2yYKK0c9dmkeg+gA1rKDUnJPoI12Plt\nFCOxNVEGGUx/dvzm6gS7/uDJ081fLQiQ6GAYeOP9NnxcKjyGLfsWKTbfV0uicGAA\naLlGi23Om1RsbakkgJFmh0zODLTO8Qq42b7sLOs5EjaaLuMlzJmTDRWv6rw76UCe\nZUlAcLAFuV/B3jwfK01ScWkDUt71kqpacX25nwjxr3kCgYEA5piYs20nwqYwi7To\njk1XzT/96DXDHrYyav7Wg8WahypvqaMme2IQniZ5Kee7Y45oxS/iutfT7qdFf+zO\nSailr25S0+fNJTO7lMBBvq3vuECuZeXU+759UoSLG3TGiB77IwiNgZgZ8N5W1sPb\nZ19IRFXvJ7JYpW9MgQsQ7tv/5t0CgYEA4cItOErbk8ycTc2grcYfAbYtXUqKtzHu\nYMre6GQhTa87yswtqH4DO9FM6sktAvlgxyLGZbODt8zIkQm1NNDT3Yj+D/qM+W2v\naeWdwkiOZkCRNIQopUDAoNHX2RRWhGHmBDWq9KGkK/l2rmRQpaTSibPPvKdsFLOP\nLI7Tkzh3TEsCgYEAp/9QcJf7uaHeCEpaiyHp78zJLN3OM5fFj5Htsr7J3+OYylvk\nc0t0k+Ovrkn3iYZ86fwDEOCgtGQFDDf36k4Ft5OGoH9mQ842wR54R3TtCq2E4RPa\nYTXck7ugpPYklZMMn+9hOKMZcxRo67pxJBSUz8RTofYbAxvc/r6TLZH2E7kCgYEA\njnmNMEmN6ejne/KZxRGT3/CpEIdKo/LPDib6Jo+KtQwyH/pblkpwn/+nG0V7MrVP\nbl1z+BsitYx3x5Do2zwveVBLhqoI7iFa4uoWddZ0h/OXsBz3ydLjvpqwLj+3mjRu\nhZmZGmoowdfeHpEQlHlApcblA5pli2sGoIhC3lZ0c6ECgYEA5Y9IgFLCIACdCEb4\numcXm0yRbwNS56kiE8nRi5lec4y9NrBqreyySh/NLae4IEfOm/wmhG5vQ2QEIBXH\nc7OX9lqcJtndxpDUuTq8Z7z0JSxPKWLYRuY7Mk67k1GNYXl8l9111kM7yaCJLsmB\nklRbV30qZ+2r4o/2plUDZFpaGQk=\n-----END PRIVATE KEY-----\n +255 mod_page version 2020061500 +257 mod_quiz version 2020061500 +258 mod_resource version 2020061500 +259 mod_scorm version 2020061500 +260 mod_survey version 2020061500 +262 mod_url version 2020061500 +264 mod_wiki version 2020061500 +266 mod_workshop version 2020061500 +267 auth_cas version 2020061501 +269 auth_db version 2020061500 +271 auth_email version 2020061500 +272 auth_ldap version 2020061501 +274 auth_lti version 2020061500 +275 auth_manual version 2020061500 +276 auth_mnet version 2020061500 +278 auth_nologin version 2020061500 +279 auth_none version 2020061500 +280 auth_oauth2 version 2020061500 +281 auth_shibboleth version 2020061500 +283 auth_webservice version 2020061500 +284 calendartype_gregorian version 2020061500 +285 customfield_checkbox version 2020061500 +286 customfield_date version 2020061500 +287 customfield_select version 2020061500 +288 customfield_text version 2020061500 +289 customfield_textarea version 2020061500 +290 enrol_category version 2020061500 +292 enrol_cohort version 2020061500 +293 enrol_database version 2020061500 +295 enrol_flatfile version 2020061500 +297 enrol_flatfile map_1 manager +298 enrol_flatfile map_2 coursecreator +299 enrol_flatfile map_3 editingteacher +300 enrol_flatfile map_4 teacher +301 enrol_flatfile map_5 student +302 enrol_flatfile map_6 guest +303 enrol_flatfile map_7 user +304 enrol_flatfile map_8 frontpage +305 enrol_guest version 2020061500 +306 enrol_imsenterprise version 2020061500 +308 enrol_ldap version 2020061500 +310 enrol_lti version 2020061500 +311 enrol_manual version 2020061500 +313 enrol_meta version 2020061500 +315 enrol_mnet version 2020061500 +316 enrol_paypal version 2020061500 +317 enrol_self version 2020061500 +319 message_airnotifier version 2020061500 +321 message airnotifier_provider_enrol_manual_expiry_notification_permitted permitted +322 message airnotifier_provider_mod_forum_posts_permitted permitted +325 message airnotifier_provider_mod_forum_digests_permitted permitted +326 message airnotifier_provider_mod_quiz_submission_permitted permitted +327 message airnotifier_provider_mod_quiz_confirmation_permitted permitted +330 message airnotifier_provider_mod_quiz_attempt_overdue_permitted permitted +333 message airnotifier_provider_mod_feedback_submission_permitted permitted +334 message airnotifier_provider_mod_feedback_message_permitted permitted +335 message airnotifier_provider_enrol_paypal_paypal_enrolment_permitted permitted +336 message airnotifier_provider_mod_lesson_graded_essay_permitted permitted +339 message airnotifier_provider_enrol_self_expiry_notification_permitted permitted +340 message airnotifier_provider_enrol_imsenterprise_imsenterprise_enrolment_permitted permitted +341 message airnotifier_provider_mod_assignment_assignment_updates_permitted permitted +342 message airnotifier_provider_moodle_notices_permitted permitted +343 message airnotifier_provider_moodle_errors_permitted permitted +344 message airnotifier_provider_moodle_availableupdate_permitted permitted +345 message airnotifier_provider_moodle_instantmessage_permitted permitted +346 message airnotifier_provider_moodle_backup_permitted permitted +347 message airnotifier_provider_moodle_courserequested_permitted permitted +348 message airnotifier_provider_moodle_courserequestapproved_permitted permitted +351 message airnotifier_provider_moodle_courserequestrejected_permitted permitted +354 message airnotifier_provider_moodle_badgerecipientnotice_permitted permitted +357 message airnotifier_provider_moodle_badgecreatornotice_permitted permitted +358 message airnotifier_provider_moodle_competencyplancomment_permitted permitted +359 message airnotifier_provider_moodle_competencyusercompcomment_permitted permitted +360 message airnotifier_provider_moodle_insights_permitted permitted +363 message airnotifier_provider_moodle_messagecontactrequests_permitted permitted +364 message message_provider_moodle_messagecontactrequests_loggedin airnotifier +366 message airnotifier_provider_moodle_asyncbackupnotification_permitted permitted +367 message airnotifier_provider_moodle_gradenotifications_permitted permitted +368 message airnotifier_provider_mod_assign_assign_notification_permitted permitted +369 message airnotifier_provider_enrol_flatfile_flatfile_enrolment_permitted permitted +370 message_email version 2020061500 +372 message email_provider_enrol_manual_expiry_notification_permitted permitted +373 message message_provider_enrol_manual_expiry_notification_loggedin email +374 message message_provider_enrol_manual_expiry_notification_loggedoff email +375 message email_provider_mod_forum_posts_permitted permitted +323 message message_provider_mod_forum_posts_loggedin email,airnotifier +324 message message_provider_mod_forum_posts_loggedoff email,airnotifier +376 message email_provider_mod_forum_digests_permitted permitted +377 message message_provider_mod_forum_digests_loggedin email +378 message message_provider_mod_forum_digests_loggedoff email +379 message email_provider_mod_quiz_submission_permitted permitted +380 message message_provider_mod_quiz_submission_loggedin email +381 message message_provider_mod_quiz_submission_loggedoff email +382 message email_provider_mod_quiz_confirmation_permitted permitted +328 message message_provider_mod_quiz_confirmation_loggedin email,airnotifier +329 message message_provider_mod_quiz_confirmation_loggedoff email,airnotifier +383 message email_provider_mod_quiz_attempt_overdue_permitted permitted +331 message message_provider_mod_quiz_attempt_overdue_loggedin email,airnotifier +332 message message_provider_mod_quiz_attempt_overdue_loggedoff email,airnotifier +384 message email_provider_mod_feedback_submission_permitted permitted +385 message message_provider_mod_feedback_submission_loggedin email +386 message message_provider_mod_feedback_submission_loggedoff email +387 message email_provider_mod_feedback_message_permitted permitted +388 message message_provider_mod_feedback_message_loggedin email +389 message message_provider_mod_feedback_message_loggedoff email +390 message email_provider_enrol_paypal_paypal_enrolment_permitted permitted +391 message message_provider_enrol_paypal_paypal_enrolment_loggedin email +392 message message_provider_enrol_paypal_paypal_enrolment_loggedoff email +393 message email_provider_mod_lesson_graded_essay_permitted permitted +355 message message_provider_moodle_badgerecipientnotice_loggedin popup,airnotifier +361 message message_provider_moodle_insights_loggedin popup,airnotifier +337 message message_provider_mod_lesson_graded_essay_loggedin email,airnotifier +338 message message_provider_mod_lesson_graded_essay_loggedoff email,airnotifier +394 message email_provider_enrol_self_expiry_notification_permitted permitted +395 message message_provider_enrol_self_expiry_notification_loggedin email +396 message message_provider_enrol_self_expiry_notification_loggedoff email +397 message email_provider_enrol_imsenterprise_imsenterprise_enrolment_permitted permitted +398 message message_provider_enrol_imsenterprise_imsenterprise_enrolment_loggedin email +399 message message_provider_enrol_imsenterprise_imsenterprise_enrolment_loggedoff email +400 message email_provider_mod_assignment_assignment_updates_permitted permitted +401 message message_provider_mod_assignment_assignment_updates_loggedin email +402 message message_provider_mod_assignment_assignment_updates_loggedoff email +403 message email_provider_moodle_notices_permitted permitted +404 message message_provider_moodle_notices_loggedin email +405 message message_provider_moodle_notices_loggedoff email +406 message email_provider_moodle_errors_permitted permitted +407 message message_provider_moodle_errors_loggedin email +408 message message_provider_moodle_errors_loggedoff email +409 message email_provider_moodle_availableupdate_permitted permitted +410 message message_provider_moodle_availableupdate_loggedin email +411 message message_provider_moodle_availableupdate_loggedoff email +412 message email_provider_moodle_instantmessage_permitted permitted +414 message email_provider_moodle_backup_permitted permitted +415 message message_provider_moodle_backup_loggedin email +416 message message_provider_moodle_backup_loggedoff email +417 message email_provider_moodle_courserequested_permitted permitted +418 message message_provider_moodle_courserequested_loggedin email +419 message message_provider_moodle_courserequested_loggedoff email +420 message email_provider_moodle_courserequestapproved_permitted permitted +349 message message_provider_moodle_courserequestapproved_loggedin email,airnotifier +350 message message_provider_moodle_courserequestapproved_loggedoff email,airnotifier +421 message email_provider_moodle_courserequestrejected_permitted permitted +352 message message_provider_moodle_courserequestrejected_loggedin email,airnotifier +353 message message_provider_moodle_courserequestrejected_loggedoff email,airnotifier +422 message email_provider_moodle_badgerecipientnotice_permitted permitted +423 message email_provider_moodle_badgecreatornotice_permitted permitted +424 message message_provider_moodle_badgecreatornotice_loggedoff email +425 message email_provider_moodle_competencyplancomment_permitted permitted +426 message message_provider_moodle_competencyplancomment_loggedin email +427 message message_provider_moodle_competencyplancomment_loggedoff email +428 message email_provider_moodle_competencyusercompcomment_permitted permitted +429 message message_provider_moodle_competencyusercompcomment_loggedin email +430 message message_provider_moodle_competencyusercompcomment_loggedoff email +431 message email_provider_moodle_insights_permitted permitted +432 message email_provider_moodle_messagecontactrequests_permitted permitted +365 message message_provider_moodle_messagecontactrequests_loggedoff email,airnotifier +433 message email_provider_moodle_asyncbackupnotification_permitted permitted +435 message email_provider_moodle_gradenotifications_permitted permitted +437 message email_provider_mod_assign_assign_notification_permitted permitted +438 message message_provider_mod_assign_assign_notification_loggedin email +439 message message_provider_mod_assign_assign_notification_loggedoff email +440 message email_provider_enrol_flatfile_flatfile_enrolment_permitted permitted +441 message message_provider_enrol_flatfile_flatfile_enrolment_loggedin email +442 message message_provider_enrol_flatfile_flatfile_enrolment_loggedoff email +443 message_jabber version 2020061500 +445 message jabber_provider_enrol_manual_expiry_notification_permitted permitted +446 message jabber_provider_mod_forum_posts_permitted permitted +447 message jabber_provider_mod_forum_digests_permitted permitted +448 message jabber_provider_mod_quiz_submission_permitted permitted +449 message jabber_provider_mod_quiz_confirmation_permitted permitted +450 message jabber_provider_mod_quiz_attempt_overdue_permitted permitted +451 message jabber_provider_mod_feedback_submission_permitted permitted +452 message jabber_provider_mod_feedback_message_permitted permitted +453 message jabber_provider_enrol_paypal_paypal_enrolment_permitted permitted +454 message jabber_provider_mod_lesson_graded_essay_permitted permitted +455 message jabber_provider_enrol_self_expiry_notification_permitted permitted +456 message jabber_provider_enrol_imsenterprise_imsenterprise_enrolment_permitted permitted +457 message jabber_provider_mod_assignment_assignment_updates_permitted permitted +458 message jabber_provider_moodle_notices_permitted permitted +459 message jabber_provider_moodle_errors_permitted permitted +539 block_private_files version 2020061500 +540 block_quiz_results version 2020061500 +542 block_recent_activity version 2020061500 +543 block_recentlyaccessedcourses version 2020061500 +545 block_recentlyaccesseditems version 2020061500 +546 block_rss_client version 2020061500 +547 block_search_forums version 2020061500 +460 message jabber_provider_moodle_availableupdate_permitted permitted +461 message jabber_provider_moodle_instantmessage_permitted permitted +462 message jabber_provider_moodle_backup_permitted permitted +463 message jabber_provider_moodle_courserequested_permitted permitted +464 message jabber_provider_moodle_courserequestapproved_permitted permitted +465 message jabber_provider_moodle_courserequestrejected_permitted permitted +466 message jabber_provider_moodle_badgerecipientnotice_permitted permitted +467 message jabber_provider_moodle_badgecreatornotice_permitted permitted +468 message jabber_provider_moodle_competencyplancomment_permitted permitted +469 message jabber_provider_moodle_competencyusercompcomment_permitted permitted +470 message jabber_provider_moodle_insights_permitted permitted +471 message jabber_provider_moodle_messagecontactrequests_permitted permitted +472 message jabber_provider_moodle_asyncbackupnotification_permitted permitted +473 message jabber_provider_moodle_gradenotifications_permitted permitted +474 message jabber_provider_mod_assign_assign_notification_permitted permitted +475 message jabber_provider_enrol_flatfile_flatfile_enrolment_permitted permitted +476 message_popup version 2020061500 +478 message popup_provider_enrol_manual_expiry_notification_permitted permitted +479 message popup_provider_mod_forum_posts_permitted permitted +480 message popup_provider_mod_forum_digests_permitted permitted +481 message popup_provider_mod_quiz_submission_permitted permitted +482 message popup_provider_mod_quiz_confirmation_permitted permitted +483 message popup_provider_mod_quiz_attempt_overdue_permitted permitted +484 message popup_provider_mod_feedback_submission_permitted permitted +485 message popup_provider_mod_feedback_message_permitted permitted +486 message popup_provider_enrol_paypal_paypal_enrolment_permitted permitted +487 message popup_provider_mod_lesson_graded_essay_permitted permitted +488 message popup_provider_enrol_self_expiry_notification_permitted permitted +489 message popup_provider_enrol_imsenterprise_imsenterprise_enrolment_permitted permitted +490 message popup_provider_mod_assignment_assignment_updates_permitted permitted +491 message popup_provider_moodle_notices_permitted permitted +492 message popup_provider_moodle_errors_permitted permitted +493 message popup_provider_moodle_availableupdate_permitted permitted +494 message popup_provider_moodle_instantmessage_permitted permitted +495 message message_provider_moodle_instantmessage_loggedin popup +413 message message_provider_moodle_instantmessage_loggedoff popup,email +496 message popup_provider_moodle_backup_permitted permitted +497 message popup_provider_moodle_courserequested_permitted permitted +498 message popup_provider_moodle_courserequestapproved_permitted permitted +499 message popup_provider_moodle_courserequestrejected_permitted permitted +500 message popup_provider_moodle_badgerecipientnotice_permitted permitted +356 message message_provider_moodle_badgerecipientnotice_loggedoff popup,email,airnotifier +501 message popup_provider_moodle_badgecreatornotice_permitted permitted +502 message popup_provider_moodle_competencyplancomment_permitted permitted +503 message popup_provider_moodle_competencyusercompcomment_permitted permitted +504 message popup_provider_moodle_insights_permitted permitted +362 message message_provider_moodle_insights_loggedoff popup,email,airnotifier +505 message popup_provider_moodle_messagecontactrequests_permitted permitted +506 message popup_provider_moodle_asyncbackupnotification_permitted permitted +507 message message_provider_moodle_asyncbackupnotification_loggedin popup +434 message message_provider_moodle_asyncbackupnotification_loggedoff popup,email +508 message popup_provider_moodle_gradenotifications_permitted permitted +509 message message_provider_moodle_gradenotifications_loggedin popup +436 message message_provider_moodle_gradenotifications_loggedoff popup,email +510 message popup_provider_mod_assign_assign_notification_permitted permitted +511 message popup_provider_enrol_flatfile_flatfile_enrolment_permitted permitted +512 block_activity_modules version 2020061500 +513 block_activity_results version 2020061500 +514 block_admin_bookmarks version 2020061500 +515 block_badges version 2020061500 +516 block_blog_menu version 2020061500 +517 block_blog_recent version 2020061500 +518 block_blog_tags version 2020061500 +519 block_calendar_month version 2020061500 +520 block_calendar_upcoming version 2020061500 +521 block_comments version 2020061500 +522 block_completionstatus version 2020061500 +523 block_course_list version 2020061500 +524 block_course_summary version 2020061500 +525 block_feedback version 2020061500 +527 block_globalsearch version 2020061500 +528 block_glossary_random version 2020061500 +529 block_html version 2020061500 +530 block_login version 2020061500 +531 block_lp version 2020061500 +532 block_mentees version 2020061500 +533 block_mnet_hosts version 2020061500 +534 block_myoverview version 2020061500 +535 block_myprofile version 2020061500 +536 block_navigation version 2020061500 +537 block_news_items version 2020061500 +538 block_online_users version 2020061500 +548 block_section_links version 2020061500 +549 block_selfcompletion version 2020061500 +550 block_settings version 2020061500 +551 block_site_main_menu version 2020061500 +552 block_social_activities version 2020061500 +553 block_starredcourses version 2020061500 +554 block_tag_flickr version 2020061500 +555 block_tag_youtube version 2020061501 +557 block_tags version 2020061500 +558 block_timeline version 2020061500 +560 media_html5audio version 2020061500 +561 media_html5video version 2020061500 +562 media_swf version 2020061500 +563 media_videojs version 2020061500 +564 media_vimeo version 2020061500 +565 media_youtube version 2020061500 +566 filter_activitynames version 2020061500 +568 filter_algebra version 2020061500 +569 filter_censor version 2020061500 +570 filter_data version 2020061500 +572 filter_displayh5p version 2020061500 +574 filter_emailprotect version 2020061500 +575 filter_emoticon version 2020061500 +577 filter_glossary version 2020061500 +579 filter_mathjaxloader version 2020061500 +581 filter_mediaplugin version 2020061500 +583 filter_multilang version 2020061500 +584 filter_tex version 2020061500 +586 filter_tidy version 2020061500 +587 filter_urltolink version 2020061500 +589 editor_atto version 2020061500 +591 editor_textarea version 2020061500 +592 editor_tinymce version 2020061500 +593 format_singleactivity version 2020061500 +594 format_social version 2020061500 +595 format_topics version 2020061500 +596 format_weeks version 2020061500 +597 dataformat_csv version 2020061500 +598 dataformat_excel version 2020061500 +599 dataformat_html version 2020061500 +600 dataformat_json version 2020061500 +601 dataformat_ods version 2020061500 +602 dataformat_pdf version 2020061500 +603 profilefield_checkbox version 2020061500 +604 profilefield_datetime version 2020061500 +605 profilefield_menu version 2020061500 +606 profilefield_text version 2020061500 +607 profilefield_textarea version 2020061500 +608 report_backups version 2020061500 +609 report_competency version 2020061500 +610 report_completion version 2020061500 +612 report_configlog version 2020061500 +613 report_courseoverview version 2020061500 +614 report_eventlist version 2020061500 +615 report_insights version 2020061500 +616 report_log version 2020061500 +618 report_loglive version 2020061500 +619 report_outline version 2020061500 +621 report_participation version 2020061500 +623 report_performance version 2020061500 +624 report_progress version 2020061500 +626 report_questioninstances version 2020061500 +627 report_security version 2020061500 +628 report_stats version 2020061500 +630 report_status version 2020061500 +631 report_usersessions version 2020061500 +632 gradeexport_ods version 2020061500 +633 gradeexport_txt version 2020061500 +634 gradeexport_xls version 2020061500 +635 gradeexport_xml version 2020061500 +636 gradeimport_csv version 2020061500 +637 gradeimport_direct version 2020061500 +638 gradeimport_xml version 2020061500 +639 gradereport_grader version 2020061500 +640 gradereport_history version 2020061500 +641 gradereport_outcomes version 2020061500 +642 gradereport_overview version 2020061500 +643 gradereport_singleview version 2020061500 +644 gradereport_user version 2020061500 +645 gradingform_guide version 2020061500 +646 gradingform_rubric version 2020061500 +647 mlbackend_php version 2020061500 +648 mlbackend_python version 2020061500 +649 mnetservice_enrol version 2020061500 +650 webservice_rest version 2020061500 +651 webservice_soap version 2020061500 +652 webservice_xmlrpc version 2020061500 +653 repository_areafiles version 2020061500 +655 areafiles enablecourseinstances 0 +656 areafiles enableuserinstances 0 +657 repository_boxnet version 2020061500 +658 repository_contentbank version 2020061500 +660 contentbank enablecourseinstances 0 +661 contentbank enableuserinstances 0 +662 repository_coursefiles version 2020061500 +663 repository_dropbox version 2020061500 +664 repository_equella version 2020061500 +665 repository_filesystem version 2020061500 +666 repository_flickr version 2020061500 +667 repository_flickr_public version 2020061500 +668 repository_googledocs version 2020061500 +669 repository_local version 2020061500 +671 local enablecourseinstances 0 +672 local enableuserinstances 0 +673 repository_merlot version 2020061500 +674 repository_nextcloud version 2020061500 +675 repository_onedrive version 2020061500 +676 repository_picasa version 2020061500 +677 repository_recent version 2020061500 +679 recent enablecourseinstances 0 +680 recent enableuserinstances 0 +681 repository_s3 version 2020061500 +682 repository_skydrive version 2020061500 +683 repository_upload version 2020061500 +685 upload enablecourseinstances 0 +686 upload enableuserinstances 0 +687 repository_url version 2020061500 +689 url enablecourseinstances 0 +690 url enableuserinstances 0 +691 repository_user version 2020061500 +693 user enablecourseinstances 0 +694 user enableuserinstances 0 +695 repository_webdav version 2020061500 +696 repository_wikimedia version 2020061500 +698 wikimedia enablecourseinstances 0 +699 wikimedia enableuserinstances 0 +700 repository_youtube version 2020061500 +702 portfolio_boxnet version 2020061500 +703 portfolio_download version 2020061500 +704 portfolio_flickr version 2020061500 +705 portfolio_googledocs version 2020061500 +706 portfolio_mahara version 2020061500 +707 portfolio_picasa version 2020061500 +708 search_simpledb version 2020061500 +710 search_solr version 2020061500 +711 qbehaviour_adaptive version 2020061500 +712 qbehaviour_adaptivenopenalty version 2020061500 +713 qbehaviour_deferredcbm version 2020061500 +714 qbehaviour_deferredfeedback version 2020061500 +715 qbehaviour_immediatecbm version 2020061500 +716 qbehaviour_immediatefeedback version 2020061500 +717 qbehaviour_informationitem version 2020061500 +718 qbehaviour_interactive version 2020061500 +719 qbehaviour_interactivecountback version 2020061500 +720 qbehaviour_manualgraded version 2020061500 +722 question disabledbehaviours manualgraded +723 qbehaviour_missing version 2020061500 +724 qformat_aiken version 2020061500 +725 qformat_blackboard_six version 2020061500 +726 qformat_examview version 2020061500 +727 qformat_gift version 2020061500 +728 qformat_missingword version 2020061500 +729 qformat_multianswer version 2020061500 +730 qformat_webct version 2020061500 +731 qformat_xhtml version 2020061500 +732 qformat_xml version 2020061500 +733 tool_analytics version 2020061500 +734 tool_availabilityconditions version 2020061500 +735 tool_behat version 2020061500 +736 tool_capability version 2020061500 +737 tool_cohortroles version 2020061500 +738 tool_customlang version 2020061500 +740 tool_dataprivacy version 2020061501 +741 message airnotifier_provider_tool_dataprivacy_contactdataprotectionofficer_permitted permitted +742 message email_provider_tool_dataprivacy_contactdataprotectionofficer_permitted permitted +743 message jabber_provider_tool_dataprivacy_contactdataprotectionofficer_permitted permitted +744 message popup_provider_tool_dataprivacy_contactdataprotectionofficer_permitted permitted +745 message message_provider_tool_dataprivacy_contactdataprotectionofficer_loggedin email,popup +746 message message_provider_tool_dataprivacy_contactdataprotectionofficer_loggedoff email,popup +747 message airnotifier_provider_tool_dataprivacy_datarequestprocessingresults_permitted permitted +748 message email_provider_tool_dataprivacy_datarequestprocessingresults_permitted permitted +749 message jabber_provider_tool_dataprivacy_datarequestprocessingresults_permitted permitted +750 message popup_provider_tool_dataprivacy_datarequestprocessingresults_permitted permitted +751 message message_provider_tool_dataprivacy_datarequestprocessingresults_loggedin email,popup +752 message message_provider_tool_dataprivacy_datarequestprocessingresults_loggedoff email,popup +753 message airnotifier_provider_tool_dataprivacy_notifyexceptions_permitted permitted +754 message email_provider_tool_dataprivacy_notifyexceptions_permitted permitted +755 message jabber_provider_tool_dataprivacy_notifyexceptions_permitted permitted +756 message popup_provider_tool_dataprivacy_notifyexceptions_permitted permitted +757 message message_provider_tool_dataprivacy_notifyexceptions_loggedin email +758 message message_provider_tool_dataprivacy_notifyexceptions_loggedoff email +759 tool_dbtransfer version 2020061500 +760 tool_filetypes version 2020061500 +761 tool_generator version 2020061500 +762 tool_health version 2020061500 +763 tool_httpsreplace version 2020061500 +764 tool_innodb version 2020061500 +765 tool_installaddon version 2020061500 +766 tool_langimport version 2020061500 +767 tool_licensemanager version 2020061500 +768 tool_log version 2020061500 +770 tool_log enabled_stores logstore_standard +771 tool_lp version 2020061500 +772 tool_lpimportcsv version 2020061500 +773 tool_lpmigrate version 2020061500 +774 tool_messageinbound version 2020061500 +775 message airnotifier_provider_tool_messageinbound_invalidrecipienthandler_permitted permitted +776 message email_provider_tool_messageinbound_invalidrecipienthandler_permitted permitted +777 message jabber_provider_tool_messageinbound_invalidrecipienthandler_permitted permitted +778 message popup_provider_tool_messageinbound_invalidrecipienthandler_permitted permitted +779 message message_provider_tool_messageinbound_invalidrecipienthandler_loggedin email +780 message message_provider_tool_messageinbound_invalidrecipienthandler_loggedoff email +781 message airnotifier_provider_tool_messageinbound_messageprocessingerror_permitted permitted +782 message email_provider_tool_messageinbound_messageprocessingerror_permitted permitted +783 message jabber_provider_tool_messageinbound_messageprocessingerror_permitted permitted +784 message popup_provider_tool_messageinbound_messageprocessingerror_permitted permitted +785 message message_provider_tool_messageinbound_messageprocessingerror_loggedin email +786 message message_provider_tool_messageinbound_messageprocessingerror_loggedoff email +787 message airnotifier_provider_tool_messageinbound_messageprocessingsuccess_permitted permitted +788 message email_provider_tool_messageinbound_messageprocessingsuccess_permitted permitted +789 message jabber_provider_tool_messageinbound_messageprocessingsuccess_permitted permitted +790 message popup_provider_tool_messageinbound_messageprocessingsuccess_permitted permitted +791 message message_provider_tool_messageinbound_messageprocessingsuccess_loggedin email +792 message message_provider_tool_messageinbound_messageprocessingsuccess_loggedoff email +793 tool_mobile version 2020061500 +794 tool_monitor version 2020061500 +795 message airnotifier_provider_tool_monitor_notification_permitted permitted +796 message email_provider_tool_monitor_notification_permitted permitted +797 message jabber_provider_tool_monitor_notification_permitted permitted +798 message popup_provider_tool_monitor_notification_permitted permitted +799 message message_provider_tool_monitor_notification_loggedin email +800 message message_provider_tool_monitor_notification_loggedoff email +801 tool_moodlenet version 2020061503 +802 tool_multilangupgrade version 2020061500 +803 tool_oauth2 version 2020061500 +804 tool_phpunit version 2020061500 +805 tool_policy version 2020061500 +806 tool_profiling version 2020061500 +807 tool_recyclebin version 2020061500 +808 tool_replace version 2020061500 +809 tool_spamcleaner version 2020061500 +810 tool_task version 2020061500 +811 tool_templatelibrary version 2020061500 +812 tool_unsuproles version 2020061500 +814 tool_uploadcourse version 2020061500 +815 tool_uploaduser version 2020061500 +816 tool_usertours version 2020061502 +818 tool_xmldb version 2020061500 +819 cachestore_apcu version 2020061500 +820 cachestore_file version 2020061500 +821 cachestore_memcached version 2020061500 +822 cachestore_mongodb version 2020061500 +823 cachestore_redis version 2020061500 +824 cachestore_session version 2020061500 +825 cachestore_static version 2020061500 +826 cachelock_file version 2020061500 +827 fileconverter_googledrive version 2020061500 +828 fileconverter_unoconv version 2020061500 +830 contenttype_h5p version 2020061500 +831 theme_boost version 2020061500 +832 theme_classic version 2020061500 +833 h5plib_v124 version 2020061500 +834 assignsubmission_comments version 2020061500 +847 assignfeedback_offline sortorder 2 +846 assignfeedback_file sortorder 3 +852 assignfeedback_offline version 2020061500 +839 assignsubmission_file version 2020061500 +840 assignsubmission_onlinetext version 2020061500 +853 assignment_offline version 2020061500 +854 assignment_online version 2020061500 +855 assignment_upload version 2020061500 +838 assignsubmission_onlinetext sortorder 0 +836 assignsubmission_file sortorder 1 +837 assignsubmission_comments sortorder 2 +842 assignfeedback_comments version 2020061500 +848 assignfeedback_editpdf version 2020061500 +850 assignfeedback_file version 2020061500 +844 assignfeedback_comments sortorder 0 +845 assignfeedback_editpdf sortorder 1 +856 assignment_uploadsingle version 2020061500 +857 booktool_exportimscp version 2020061500 +858 booktool_importhtml version 2020061500 +859 booktool_print version 2020061500 +860 datafield_checkbox version 2020061500 +861 datafield_date version 2020061500 +862 datafield_file version 2020061500 +863 datafield_latlong version 2020061500 +864 datafield_menu version 2020061500 +865 datafield_multimenu version 2020061500 +866 datafield_number version 2020061500 +867 datafield_picture version 2020061500 +868 datafield_radiobutton version 2020061500 +869 datafield_text version 2020061500 +870 datafield_textarea version 2020061500 +871 datafield_url version 2020061500 +872 datapreset_imagegallery version 2020061500 +873 forumreport_summary version 2020061500 +874 ltiservice_basicoutcomes version 2020061500 +875 ltiservice_gradebookservices version 2020061500 +876 ltiservice_memberships version 2020061500 +877 ltiservice_profile version 2020061500 +878 ltiservice_toolproxy version 2020061500 +879 ltiservice_toolsettings version 2020061500 +880 quiz_grading version 2020061500 +882 quiz_overview version 2020061500 +884 quiz_responses version 2020061500 +886 quiz_statistics version 2020061500 +888 quizaccess_delaybetweenattempts version 2020061500 +889 quizaccess_ipaddress version 2020061500 +890 quizaccess_numattempts version 2020061500 +891 quizaccess_offlineattempts version 2020061500 +892 quizaccess_openclosedate version 2020061500 +893 quizaccess_password version 2020061500 +894 quizaccess_seb version 2020061500 +896 quizaccess_securewindow version 2020061500 +897 quizaccess_timelimit version 2020061500 +898 scormreport_basic version 2020061500 +899 scormreport_graphs version 2020061500 +900 scormreport_interactions version 2020061500 +901 scormreport_objectives version 2020061500 +902 workshopform_accumulative version 2020061500 +904 workshopform_comments version 2020061500 +906 workshopform_numerrors version 2020061500 +908 workshopform_rubric version 2020061500 +910 workshopallocation_manual version 2020061500 +911 workshopallocation_random version 2020061500 +912 workshopallocation_scheduled version 2020061500 +913 workshopeval_best version 2020061500 +914 atto_accessibilitychecker version 2020061500 +915 atto_accessibilityhelper version 2020061500 +916 atto_align version 2020061500 +917 atto_backcolor version 2020061500 +918 atto_bold version 2020061500 +919 atto_charmap version 2020061500 +920 atto_clear version 2020061500 +921 atto_collapse version 2020061500 +922 atto_emojipicker version 2020061500 +923 atto_emoticon version 2020061500 +924 atto_equation version 2020061500 +925 atto_fontcolor version 2020061500 +926 atto_h5p version 2020061500 +927 atto_html version 2020061500 +928 atto_image version 2020061500 +929 atto_indent version 2020061500 +930 atto_italic version 2020061500 +931 atto_link version 2020061500 +932 atto_managefiles version 2020061500 +933 atto_media version 2020061500 +934 atto_noautolink version 2020061500 +935 atto_orderedlist version 2020061500 +936 atto_recordrtc version 2020061500 +937 atto_rtl version 2020061500 +938 atto_strike version 2020061500 +939 atto_subscript version 2020061500 +940 atto_superscript version 2020061500 +941 atto_table version 2020061500 +942 atto_title version 2020061500 +943 atto_underline version 2020061500 +944 atto_undo version 2020061500 +945 atto_unorderedlist version 2020061500 +946 tinymce_ctrlhelp version 2020061500 +947 tinymce_managefiles version 2020061500 +948 tinymce_moodleemoticon version 2020061500 +949 tinymce_moodleimage version 2020061500 +950 tinymce_moodlemedia version 2020061500 +951 tinymce_moodlenolink version 2020061500 +952 tinymce_pdw version 2020061500 +953 tinymce_spellchecker version 2020061500 +955 tinymce_wrap version 2020061500 +956 logstore_database version 2020061500 +957 logstore_legacy version 2020061500 +958 logstore_standard version 2020061500 +959 tool_dataprivacy contactdataprotectionofficer 0 +960 tool_dataprivacy automaticdataexportapproval 0 +961 tool_dataprivacy automaticdatadeletionapproval 0 +962 tool_dataprivacy automaticdeletionrequests 1 +963 tool_dataprivacy privacyrequestexpiry 604800 +964 tool_dataprivacy requireallenddatesforuserdeletion 1 +965 tool_dataprivacy showdataretentionsummary 1 +966 tool_log exportlog 1 +967 analytics logstore logstore_standard +968 assign feedback_plugin_for_gradebook assignfeedback_comments +969 assign showrecentsubmissions 0 +970 assign submissionreceipts 1 +971 assign submissionstatement This submission is my own work, except where I have acknowledged the use of the works of other people. +972 assign submissionstatementteamsubmission This submission is the work of my group, except where we have acknowledged the use of the works of other people. +973 assign submissionstatementteamsubmissionallsubmit This submission is my own work as a group member, except where I have acknowledged the use of the works of other people. +974 assign maxperpage -1 +975 assign alwaysshowdescription 1 +976 assign alwaysshowdescription_adv +977 assign alwaysshowdescription_locked +978 assign allowsubmissionsfromdate 0 +979 assign allowsubmissionsfromdate_enabled 1 +980 assign allowsubmissionsfromdate_adv +981 assign duedate 604800 +982 assign duedate_enabled 1 +983 assign duedate_adv +984 assign cutoffdate 1209600 +985 assign cutoffdate_enabled +986 assign cutoffdate_adv +987 assign gradingduedate 1209600 +988 assign gradingduedate_enabled 1 +989 assign gradingduedate_adv +990 assign submissiondrafts 0 +991 assign submissiondrafts_adv +992 assign submissiondrafts_locked +993 assign requiresubmissionstatement 0 +994 assign requiresubmissionstatement_adv +995 assign requiresubmissionstatement_locked +996 assign attemptreopenmethod none +997 assign attemptreopenmethod_adv +998 assign attemptreopenmethod_locked +999 assign maxattempts -1 +1000 assign maxattempts_adv +1001 assign maxattempts_locked +1002 assign teamsubmission 0 +1003 assign teamsubmission_adv +1004 assign teamsubmission_locked +1005 assign preventsubmissionnotingroup 0 +1006 assign preventsubmissionnotingroup_adv +1007 assign preventsubmissionnotingroup_locked +1008 assign requireallteammemberssubmit 0 +1009 assign requireallteammemberssubmit_adv +1010 assign requireallteammemberssubmit_locked +1011 assign teamsubmissiongroupingid +1012 assign teamsubmissiongroupingid_adv +1013 assign sendnotifications 0 +1014 assign sendnotifications_adv +1015 assign sendnotifications_locked +1016 assign sendlatenotifications 0 +1017 assign sendlatenotifications_adv +1018 assign sendlatenotifications_locked +1019 assign sendstudentnotifications 1 +1020 assign sendstudentnotifications_adv +1021 assign sendstudentnotifications_locked +1022 assign blindmarking 0 +1023 assign blindmarking_adv +1024 assign blindmarking_locked +1025 assign hidegrader 0 +1026 assign hidegrader_adv +1027 assign hidegrader_locked +1028 assign markingworkflow 0 +1029 assign markingworkflow_adv +1030 assign markingworkflow_locked +1031 assign markingallocation 0 +1032 assign markingallocation_adv +1033 assign markingallocation_locked +1034 assignsubmission_file default 1 +1035 assignsubmission_file maxfiles 20 +1036 assignsubmission_file filetypes +1037 assignsubmission_file maxbytes 0 +1038 assignsubmission_onlinetext default 0 +1039 assignfeedback_comments default 1 +1040 assignfeedback_comments inline 0 +1041 assignfeedback_comments inline_adv +1042 assignfeedback_comments inline_locked +1043 assignfeedback_editpdf default 1 +1044 assignfeedback_editpdf stamps +1045 assignfeedback_file default 0 +1046 assignfeedback_offline default 0 +1047 book numberingoptions 0,1,2,3 +1048 book navoptions 0,1,2 +1049 book numbering 1 +1050 book navstyle 1 +1051 resource framesize 130 +1052 resource displayoptions 0,1,4,5,6 +1053 resource printintro 1 +1054 resource display 0 +1055 resource showsize 0 +1056 resource showtype 0 +1057 resource showdate 0 +1058 resource popupwidth 620 +1059 resource popupheight 450 +1060 resource filterfiles 0 +1061 folder showexpanded 1 +1062 folder maxsizetodownload 0 +1063 imscp keepold 1 +1064 imscp keepold_adv +1065 label dndmedia 1 +1066 label dndresizewidth 400 +1067 label dndresizeheight 400 +1068 mod_lesson mediafile +1069 mod_lesson mediafile_adv 1 +1070 mod_lesson mediawidth 640 +1071 mod_lesson mediaheight 480 +1072 mod_lesson mediaclose 0 +1073 mod_lesson progressbar 0 +1074 mod_lesson progressbar_adv +1075 mod_lesson ongoing 0 +1076 mod_lesson ongoing_adv 1 +1077 mod_lesson displayleftmenu 0 +1078 mod_lesson displayleftmenu_adv +1079 mod_lesson displayleftif 0 +1080 mod_lesson displayleftif_adv 1 +1081 mod_lesson slideshow 0 +1082 mod_lesson slideshow_adv 1 +1083 mod_lesson slideshowwidth 640 +1084 mod_lesson slideshowheight 480 +1085 mod_lesson slideshowbgcolor #FFFFFF +1086 mod_lesson maxanswers 5 +1087 mod_lesson maxanswers_adv 1 +1088 mod_lesson defaultfeedback 0 +1089 mod_lesson defaultfeedback_adv 1 +1090 mod_lesson activitylink +1091 mod_lesson activitylink_adv 1 +1092 mod_lesson timelimit 0 +1093 mod_lesson timelimit_adv +1094 mod_lesson password 0 +1095 mod_lesson password_adv 1 +1096 mod_lesson modattempts 0 +1097 mod_lesson modattempts_adv +1098 mod_lesson displayreview 0 +1099 mod_lesson displayreview_adv +1100 mod_lesson maximumnumberofattempts 1 +1101 mod_lesson maximumnumberofattempts_adv +1102 mod_lesson defaultnextpage 0 +1103 mod_lesson defaultnextpage_adv 1 +1104 mod_lesson numberofpagestoshow 1 +1105 mod_lesson numberofpagestoshow_adv 1 +1106 mod_lesson practice 0 +1107 mod_lesson practice_adv +1108 mod_lesson customscoring 1 +1109 mod_lesson customscoring_adv 1 +1110 mod_lesson retakesallowed 0 +1111 mod_lesson retakesallowed_adv +1112 mod_lesson handlingofretakes 0 +1113 mod_lesson handlingofretakes_adv 1 +1114 mod_lesson minimumnumberofquestions 0 +1115 mod_lesson minimumnumberofquestions_adv 1 +1116 page displayoptions 5 +1117 page printheading 1 +1118 page printintro 0 +1119 page printlastmodified 1 +1120 page display 5 +1121 page popupwidth 620 +1122 page popupheight 450 +1123 quiz timelimit 0 +1124 quiz timelimit_adv +1125 quiz overduehandling autosubmit +1126 quiz overduehandling_adv +1127 quiz graceperiod 86400 +1128 quiz graceperiod_adv +1129 quiz graceperiodmin 60 +1130 quiz attempts 0 +1131 quiz attempts_adv +1132 quiz grademethod 1 +1133 quiz grademethod_adv +1134 quiz maximumgrade 10 +1135 quiz questionsperpage 1 +1136 quiz questionsperpage_adv +1137 quiz navmethod free +1138 quiz navmethod_adv 1 +1139 quiz shuffleanswers 1 +1140 quiz shuffleanswers_adv +1141 quiz preferredbehaviour deferredfeedback +1142 quiz canredoquestions 0 +1143 quiz canredoquestions_adv 1 +1144 quiz attemptonlast 0 +1145 quiz attemptonlast_adv 1 +1146 quiz reviewattempt 69904 +1147 quiz reviewcorrectness 69904 +1148 quiz reviewmarks 69904 +1149 quiz reviewspecificfeedback 69904 +1150 quiz reviewgeneralfeedback 69904 +1151 quiz reviewrightanswer 69904 +1152 quiz reviewoverallfeedback 4368 +1153 quiz showuserpicture 0 +1154 quiz showuserpicture_adv +1155 quiz decimalpoints 2 +1156 quiz decimalpoints_adv +1157 quiz questiondecimalpoints -1 +1158 quiz questiondecimalpoints_adv +1159 quiz showblocks 0 +1160 quiz showblocks_adv 1 +1161 quiz quizpassword +1162 quiz quizpassword_adv +1163 quiz quizpassword_required +1164 quiz subnet +1165 quiz subnet_adv 1 +1166 quiz delay1 0 +1167 quiz delay1_adv 1 +1168 quiz delay2 0 +1169 quiz delay2_adv 1 +1170 quiz browsersecurity - +1171 quiz browsersecurity_adv 1 +1172 quiz initialnumfeedbacks 2 +1173 quiz autosaveperiod 60 +1174 quizaccess_seb autoreconfigureseb 1 +1175 quizaccess_seb showseblinks seb,http +1176 quizaccess_seb downloadlink https://safeexambrowser.org/download_en.html +1177 quizaccess_seb quizpasswordrequired 0 +1178 quizaccess_seb displayblocksbeforestart 0 +1179 quizaccess_seb displayblockswhenfinished 1 +1180 scorm displaycoursestructure 0 +1181 scorm displaycoursestructure_adv +1182 scorm popup 0 +1183 scorm popup_adv +1184 scorm displayactivityname 1 +1185 scorm framewidth 100 +1186 scorm framewidth_adv 1 +1187 scorm frameheight 500 +1188 scorm frameheight_adv 1 +1189 scorm winoptgrp_adv 1 +1190 scorm scrollbars 0 +1191 scorm directories 0 +1192 scorm location 0 +1193 scorm menubar 0 +1194 scorm toolbar 0 +1195 scorm status 0 +1196 scorm skipview 0 +1197 scorm skipview_adv 1 +1198 scorm hidebrowse 0 +1199 scorm hidebrowse_adv 1 +1200 scorm hidetoc 0 +1201 scorm hidetoc_adv 1 +1202 scorm nav 1 +1203 scorm nav_adv 1 +1204 scorm navpositionleft -100 +1205 scorm navpositionleft_adv 1 +1206 scorm navpositiontop -100 +1207 scorm navpositiontop_adv 1 +1208 scorm collapsetocwinsize 767 +1209 scorm collapsetocwinsize_adv 1 +1210 scorm displayattemptstatus 1 +1211 scorm displayattemptstatus_adv +1212 scorm grademethod 1 +1213 scorm maxgrade 100 +1214 scorm maxattempt 0 +1215 scorm whatgrade 0 +1216 scorm forcecompleted 0 +1217 scorm forcenewattempt 0 +1218 scorm autocommit 0 +1219 scorm masteryoverride 1 +1220 scorm lastattemptlock 0 +1221 scorm auto 0 +1222 scorm updatefreq 0 +1223 scorm scormstandard 0 +1224 scorm allowtypeexternal 0 +1225 scorm allowtypelocalsync 0 +1226 scorm allowtypeexternalaicc 0 +1227 scorm allowaicchacp 0 +1228 scorm aicchacptimeout 30 +1229 scorm aicchacpkeepsessiondata 1 +1230 scorm aiccuserid 1 +1231 scorm forcejavascript 1 +1232 scorm allowapidebug 0 +1233 scorm apidebugmask .* +1234 scorm protectpackagedownloads 0 +1235 url framesize 130 +1236 url secretphrase +1237 url rolesinparams 0 +1238 url displayoptions 0,1,5,6 +1239 url printintro 1 +1240 url display 0 +1241 url popupwidth 620 +1242 url popupheight 450 +1243 workshop grade 80 +1244 workshop gradinggrade 20 +1245 workshop gradedecimals 0 +1246 workshop maxbytes 0 +1247 workshop strategy accumulative +1248 workshop examplesmode 0 +1249 workshopallocation_random numofreviews 5 +1250 workshopform_numerrors grade0 No +1251 workshopform_numerrors grade1 Yes +1252 workshopeval_best comparison 5 +1253 tool_recyclebin coursebinenable 1 +1254 tool_recyclebin coursebinexpiry 604800 +1255 tool_recyclebin categorybinenable 1 +1256 tool_recyclebin categorybinexpiry 604800 +1257 tool_recyclebin autohide 1 +1258 antivirus_clamav runningmethod commandline +1259 antivirus_clamav pathtoclam +1260 antivirus_clamav pathtounixsocket +1261 antivirus_clamav tcpsockethost +1262 antivirus_clamav tcpsocketport 3310 +1263 antivirus_clamav clamfailureonupload donothing +1264 antivirus_clamav tries 1 +1265 auth_cas field_map_firstname +1266 auth_cas field_updatelocal_firstname oncreate +1267 auth_cas field_updateremote_firstname 0 +1268 auth_cas field_lock_firstname unlocked +1269 auth_cas field_map_lastname +1270 auth_cas field_updatelocal_lastname oncreate +1271 auth_cas field_updateremote_lastname 0 +1272 auth_cas field_lock_lastname unlocked +1273 auth_cas field_map_email +1274 auth_cas field_updatelocal_email oncreate +1275 auth_cas field_updateremote_email 0 +1276 auth_cas field_lock_email unlocked +1277 auth_cas field_map_city +1278 auth_cas field_updatelocal_city oncreate +1279 auth_cas field_updateremote_city 0 +1280 auth_cas field_lock_city unlocked +1281 auth_cas field_map_country +1282 auth_cas field_updatelocal_country oncreate +1283 auth_cas field_updateremote_country 0 +1284 auth_cas field_lock_country unlocked +1285 auth_cas field_map_lang +1286 auth_cas field_updatelocal_lang oncreate +1287 auth_cas field_updateremote_lang 0 +1288 auth_cas field_lock_lang unlocked +1289 auth_cas field_map_description +1290 auth_cas field_updatelocal_description oncreate +1291 auth_cas field_updateremote_description 0 +1292 auth_cas field_lock_description unlocked +1293 auth_cas field_map_url +1294 auth_cas field_updatelocal_url oncreate +1295 auth_cas field_updateremote_url 0 +1296 auth_cas field_lock_url unlocked +1297 auth_cas field_map_idnumber +1298 auth_cas field_updatelocal_idnumber oncreate +1299 auth_cas field_updateremote_idnumber 0 +1300 auth_cas field_lock_idnumber unlocked +1301 auth_cas field_map_institution +1302 auth_cas field_updatelocal_institution oncreate +1303 auth_cas field_updateremote_institution 0 +1304 auth_cas field_lock_institution unlocked +1305 auth_cas field_map_department +1306 auth_cas field_updatelocal_department oncreate +1307 auth_cas field_updateremote_department 0 +1308 auth_cas field_lock_department unlocked +1309 auth_cas field_map_phone1 +1310 auth_cas field_updatelocal_phone1 oncreate +1311 auth_cas field_updateremote_phone1 0 +1312 auth_cas field_lock_phone1 unlocked +1313 auth_cas field_map_phone2 +1314 auth_cas field_updatelocal_phone2 oncreate +1315 auth_cas field_updateremote_phone2 0 +1316 auth_cas field_lock_phone2 unlocked +1317 auth_cas field_map_address +1318 auth_cas field_updatelocal_address oncreate +1319 auth_cas field_updateremote_address 0 +1320 auth_cas field_lock_address unlocked +1321 auth_cas field_map_firstnamephonetic +1322 auth_cas field_updatelocal_firstnamephonetic oncreate +1323 auth_cas field_updateremote_firstnamephonetic 0 +1324 auth_cas field_lock_firstnamephonetic unlocked +1325 auth_cas field_map_lastnamephonetic +1326 auth_cas field_updatelocal_lastnamephonetic oncreate +1327 auth_cas field_updateremote_lastnamephonetic 0 +1328 auth_cas field_lock_lastnamephonetic unlocked +1329 auth_cas field_map_middlename +1330 auth_cas field_updatelocal_middlename oncreate +1331 auth_cas field_updateremote_middlename 0 +1332 auth_cas field_lock_middlename unlocked +1333 auth_cas field_map_alternatename +1334 auth_cas field_updatelocal_alternatename oncreate +1335 auth_cas field_updateremote_alternatename 0 +1336 auth_cas field_lock_alternatename unlocked +1337 auth_email recaptcha 0 +1338 auth_email field_lock_firstname unlocked +1339 auth_email field_lock_lastname unlocked +1340 auth_email field_lock_email unlocked +1341 auth_email field_lock_city unlocked +1342 auth_email field_lock_country unlocked +1343 auth_email field_lock_lang unlocked +1344 auth_email field_lock_description unlocked +1345 auth_email field_lock_url unlocked +1346 auth_email field_lock_idnumber unlocked +1347 auth_email field_lock_institution unlocked +1348 auth_email field_lock_department unlocked +1349 auth_email field_lock_phone1 unlocked +1350 auth_email field_lock_phone2 unlocked +1351 auth_email field_lock_address unlocked +1352 auth_email field_lock_firstnamephonetic unlocked +1353 auth_email field_lock_lastnamephonetic unlocked +1354 auth_email field_lock_middlename unlocked +1355 auth_email field_lock_alternatename unlocked +1356 auth_db host 127.0.0.1 +1357 auth_db type mysqli +1358 auth_db sybasequoting 0 +1359 auth_db name +1360 auth_db user +1361 auth_db pass +1362 auth_db table +1363 auth_db fielduser +1364 auth_db fieldpass +1365 auth_db passtype plaintext +1366 auth_db extencoding utf-8 +1367 auth_db setupsql +1368 auth_db debugauthdb 0 +1369 auth_db changepasswordurl +1370 auth_db removeuser 0 +1371 auth_db updateusers 0 +1372 auth_db field_map_firstname +1373 auth_db field_updatelocal_firstname oncreate +1374 auth_db field_updateremote_firstname 0 +1375 auth_db field_lock_firstname unlocked +1376 auth_db field_map_lastname +1377 auth_db field_updatelocal_lastname oncreate +1378 auth_db field_updateremote_lastname 0 +1379 auth_db field_lock_lastname unlocked +1380 auth_db field_map_email +1381 auth_db field_updatelocal_email oncreate +1382 auth_db field_updateremote_email 0 +1383 auth_db field_lock_email unlocked +1384 auth_db field_map_city +1385 auth_db field_updatelocal_city oncreate +1386 auth_db field_updateremote_city 0 +1387 auth_db field_lock_city unlocked +1388 auth_db field_map_country +1389 auth_db field_updatelocal_country oncreate +1390 auth_db field_updateremote_country 0 +1391 auth_db field_lock_country unlocked +1392 auth_db field_map_lang +1393 auth_db field_updatelocal_lang oncreate +1394 auth_db field_updateremote_lang 0 +1395 auth_db field_lock_lang unlocked +1396 auth_db field_map_description +1397 auth_db field_updatelocal_description oncreate +1398 auth_db field_updateremote_description 0 +1399 auth_db field_lock_description unlocked +1400 auth_db field_map_url +1401 auth_db field_updatelocal_url oncreate +1402 auth_db field_updateremote_url 0 +1403 auth_db field_lock_url unlocked +1404 auth_db field_map_idnumber +1405 auth_db field_updatelocal_idnumber oncreate +1406 auth_db field_updateremote_idnumber 0 +1407 auth_db field_lock_idnumber unlocked +1408 auth_db field_map_institution +1409 auth_db field_updatelocal_institution oncreate +1410 auth_db field_updateremote_institution 0 +1411 auth_db field_lock_institution unlocked +1412 auth_db field_map_department +1413 auth_db field_updatelocal_department oncreate +1414 auth_db field_updateremote_department 0 +1415 auth_db field_lock_department unlocked +1416 auth_db field_map_phone1 +1417 auth_db field_updatelocal_phone1 oncreate +1418 auth_db field_updateremote_phone1 0 +1419 auth_db field_lock_phone1 unlocked +1420 auth_db field_map_phone2 +1421 auth_db field_updatelocal_phone2 oncreate +1422 auth_db field_updateremote_phone2 0 +1423 auth_db field_lock_phone2 unlocked +1424 auth_db field_map_address +1425 auth_db field_updatelocal_address oncreate +1426 auth_db field_updateremote_address 0 +1427 auth_db field_lock_address unlocked +1428 auth_db field_map_firstnamephonetic +1429 auth_db field_updatelocal_firstnamephonetic oncreate +1430 auth_db field_updateremote_firstnamephonetic 0 +1431 auth_db field_lock_firstnamephonetic unlocked +1432 auth_db field_map_lastnamephonetic +1433 auth_db field_updatelocal_lastnamephonetic oncreate +1434 auth_db field_updateremote_lastnamephonetic 0 +1435 auth_db field_lock_lastnamephonetic unlocked +1436 auth_db field_map_middlename +1437 auth_db field_updatelocal_middlename oncreate +1438 auth_db field_updateremote_middlename 0 +1439 auth_db field_lock_middlename unlocked +1440 auth_db field_map_alternatename +1441 auth_db field_updatelocal_alternatename oncreate +1442 auth_db field_updateremote_alternatename 0 +1443 auth_db field_lock_alternatename unlocked +1444 auth_ldap field_map_firstname +1445 auth_ldap field_updatelocal_firstname oncreate +1446 auth_ldap field_updateremote_firstname 0 +1447 auth_ldap field_lock_firstname unlocked +1448 auth_ldap field_map_lastname +1449 auth_ldap field_updatelocal_lastname oncreate +1450 auth_ldap field_updateremote_lastname 0 +1451 auth_ldap field_lock_lastname unlocked +1452 auth_ldap field_map_email +1453 auth_ldap field_updatelocal_email oncreate +1454 auth_ldap field_updateremote_email 0 +1455 auth_ldap field_lock_email unlocked +1456 auth_ldap field_map_city +1457 auth_ldap field_updatelocal_city oncreate +1458 auth_ldap field_updateremote_city 0 +1459 auth_ldap field_lock_city unlocked +1460 auth_ldap field_map_country +1461 auth_ldap field_updatelocal_country oncreate +1462 auth_ldap field_updateremote_country 0 +1463 auth_ldap field_lock_country unlocked +1464 auth_ldap field_map_lang +1465 auth_ldap field_updatelocal_lang oncreate +1466 auth_ldap field_updateremote_lang 0 +1467 auth_ldap field_lock_lang unlocked +1468 auth_ldap field_map_description +1469 auth_ldap field_updatelocal_description oncreate +1470 auth_ldap field_updateremote_description 0 +1471 auth_ldap field_lock_description unlocked +1472 auth_ldap field_map_url +1473 auth_ldap field_updatelocal_url oncreate +1474 auth_ldap field_updateremote_url 0 +1475 auth_ldap field_lock_url unlocked +1476 auth_ldap field_map_idnumber +1477 auth_ldap field_updatelocal_idnumber oncreate +1478 auth_ldap field_updateremote_idnumber 0 +1479 auth_ldap field_lock_idnumber unlocked +1480 auth_ldap field_map_institution +1481 auth_ldap field_updatelocal_institution oncreate +1482 auth_ldap field_updateremote_institution 0 +1483 auth_ldap field_lock_institution unlocked +1484 auth_ldap field_map_department +1485 auth_ldap field_updatelocal_department oncreate +1486 auth_ldap field_updateremote_department 0 +1487 auth_ldap field_lock_department unlocked +1488 auth_ldap field_map_phone1 +1489 auth_ldap field_updatelocal_phone1 oncreate +1490 auth_ldap field_updateremote_phone1 0 +1491 auth_ldap field_lock_phone1 unlocked +1492 auth_ldap field_map_phone2 +1493 auth_ldap field_updatelocal_phone2 oncreate +1494 auth_ldap field_updateremote_phone2 0 +1495 auth_ldap field_lock_phone2 unlocked +1496 auth_ldap field_map_address +1497 auth_ldap field_updatelocal_address oncreate +1498 auth_ldap field_updateremote_address 0 +1499 auth_ldap field_lock_address unlocked +1500 auth_ldap field_map_firstnamephonetic +1501 auth_ldap field_updatelocal_firstnamephonetic oncreate +1502 auth_ldap field_updateremote_firstnamephonetic 0 +1503 auth_ldap field_lock_firstnamephonetic unlocked +1504 auth_ldap field_map_lastnamephonetic +1505 auth_ldap field_updatelocal_lastnamephonetic oncreate +1506 auth_ldap field_updateremote_lastnamephonetic 0 +1507 auth_ldap field_lock_lastnamephonetic unlocked +1508 auth_ldap field_map_middlename +1509 auth_ldap field_updatelocal_middlename oncreate +1510 auth_ldap field_updateremote_middlename 0 +1511 auth_ldap field_lock_middlename unlocked +1512 auth_ldap field_map_alternatename +1513 auth_ldap field_updatelocal_alternatename oncreate +1514 auth_ldap field_updateremote_alternatename 0 +1515 auth_ldap field_lock_alternatename unlocked +1516 auth_manual expiration 0 +1517 auth_manual expirationtime 30 +1518 auth_manual expiration_warning 0 +1519 auth_manual field_lock_firstname unlocked +1520 auth_manual field_lock_lastname unlocked +1521 auth_manual field_lock_email unlocked +1522 auth_manual field_lock_city unlocked +1523 auth_manual field_lock_country unlocked +1524 auth_manual field_lock_lang unlocked +1525 auth_manual field_lock_description unlocked +1526 auth_manual field_lock_url unlocked +1527 auth_manual field_lock_idnumber unlocked +1528 auth_manual field_lock_institution unlocked +1529 auth_manual field_lock_department unlocked +1530 auth_manual field_lock_phone1 unlocked +1531 auth_manual field_lock_phone2 unlocked +1532 auth_manual field_lock_address unlocked +1533 auth_manual field_lock_firstnamephonetic unlocked +1534 auth_manual field_lock_lastnamephonetic unlocked +1535 auth_manual field_lock_middlename unlocked +1536 auth_manual field_lock_alternatename unlocked +1537 auth_mnet rpc_negotiation_timeout 30 +1538 auth_none field_lock_firstname unlocked +1539 auth_none field_lock_lastname unlocked +1540 auth_none field_lock_email unlocked +1541 auth_none field_lock_city unlocked +1542 auth_none field_lock_country unlocked +1543 auth_none field_lock_lang unlocked +1544 auth_none field_lock_description unlocked +1545 auth_none field_lock_url unlocked +1546 auth_none field_lock_idnumber unlocked +1547 auth_none field_lock_institution unlocked +1548 auth_none field_lock_department unlocked +1549 auth_none field_lock_phone1 unlocked +1550 auth_none field_lock_phone2 unlocked +1551 auth_none field_lock_address unlocked +1552 auth_none field_lock_firstnamephonetic unlocked +1553 auth_none field_lock_lastnamephonetic unlocked +1554 auth_none field_lock_middlename unlocked +1555 auth_none field_lock_alternatename unlocked +1556 auth_oauth2 field_lock_firstname unlocked +1761 enrol_paypal mailadmins 0 +1557 auth_oauth2 field_lock_lastname unlocked +1558 auth_oauth2 field_lock_email unlocked +1559 auth_oauth2 field_lock_city unlocked +1560 auth_oauth2 field_lock_country unlocked +1561 auth_oauth2 field_lock_lang unlocked +1562 auth_oauth2 field_lock_description unlocked +1563 auth_oauth2 field_lock_url unlocked +1564 auth_oauth2 field_lock_idnumber unlocked +1565 auth_oauth2 field_lock_institution unlocked +1566 auth_oauth2 field_lock_department unlocked +1567 auth_oauth2 field_lock_phone1 unlocked +1568 auth_oauth2 field_lock_phone2 unlocked +1569 auth_oauth2 field_lock_address unlocked +1570 auth_oauth2 field_lock_firstnamephonetic unlocked +1571 auth_oauth2 field_lock_lastnamephonetic unlocked +1572 auth_oauth2 field_lock_middlename unlocked +1573 auth_oauth2 field_lock_alternatename unlocked +1574 auth_shibboleth user_attribute +1575 auth_shibboleth convert_data +1576 auth_shibboleth alt_login off +1577 auth_shibboleth organization_selection urn:mace:organization1:providerID, Example Organization 1\n https://another.idp-id.com/shibboleth, Other Example Organization, /Shibboleth.sso/DS/SWITCHaai\n urn:mace:organization2:providerID, Example Organization 2, /Shibboleth.sso/WAYF/SWITCHaai +1578 auth_shibboleth logout_handler +1579 auth_shibboleth logout_return_url +1580 auth_shibboleth login_name Shibboleth Login +1581 auth_shibboleth auth_logo +1582 auth_shibboleth auth_instructions Use the Shibboleth login to get access via Shibboleth, if your institution supports it. Otherwise, use the normal login form shown here. +1583 auth_shibboleth changepasswordurl +1584 auth_shibboleth field_map_firstname +1585 auth_shibboleth field_updatelocal_firstname oncreate +1586 auth_shibboleth field_lock_firstname unlocked +1587 auth_shibboleth field_map_lastname +1588 auth_shibboleth field_updatelocal_lastname oncreate +1589 auth_shibboleth field_lock_lastname unlocked +1590 auth_shibboleth field_map_email +1591 auth_shibboleth field_updatelocal_email oncreate +1592 auth_shibboleth field_lock_email unlocked +1593 auth_shibboleth field_map_city +1594 auth_shibboleth field_updatelocal_city oncreate +1595 auth_shibboleth field_lock_city unlocked +1596 auth_shibboleth field_map_country +1597 auth_shibboleth field_updatelocal_country oncreate +1598 auth_shibboleth field_lock_country unlocked +1599 auth_shibboleth field_map_lang +1600 auth_shibboleth field_updatelocal_lang oncreate +1601 auth_shibboleth field_lock_lang unlocked +1602 auth_shibboleth field_map_description +1603 auth_shibboleth field_updatelocal_description oncreate +1604 auth_shibboleth field_lock_description unlocked +1605 auth_shibboleth field_map_url +1606 auth_shibboleth field_updatelocal_url oncreate +1607 auth_shibboleth field_lock_url unlocked +1608 auth_shibboleth field_map_idnumber +1609 auth_shibboleth field_updatelocal_idnumber oncreate +1610 auth_shibboleth field_lock_idnumber unlocked +1611 auth_shibboleth field_map_institution +1612 auth_shibboleth field_updatelocal_institution oncreate +1613 auth_shibboleth field_lock_institution unlocked +1614 auth_shibboleth field_map_department +1615 auth_shibboleth field_updatelocal_department oncreate +1616 auth_shibboleth field_lock_department unlocked +1617 auth_shibboleth field_map_phone1 +1618 auth_shibboleth field_updatelocal_phone1 oncreate +1619 auth_shibboleth field_lock_phone1 unlocked +1620 auth_shibboleth field_map_phone2 +1621 auth_shibboleth field_updatelocal_phone2 oncreate +1622 auth_shibboleth field_lock_phone2 unlocked +1623 auth_shibboleth field_map_address +1624 auth_shibboleth field_updatelocal_address oncreate +1625 auth_shibboleth field_lock_address unlocked +1626 auth_shibboleth field_map_firstnamephonetic +1627 auth_shibboleth field_updatelocal_firstnamephonetic oncreate +1628 auth_shibboleth field_lock_firstnamephonetic unlocked +1629 auth_shibboleth field_map_lastnamephonetic +1630 auth_shibboleth field_updatelocal_lastnamephonetic oncreate +1631 auth_shibboleth field_lock_lastnamephonetic unlocked +1632 auth_shibboleth field_map_middlename +1633 auth_shibboleth field_updatelocal_middlename oncreate +1634 auth_shibboleth field_lock_middlename unlocked +1635 auth_shibboleth field_map_alternatename +1636 auth_shibboleth field_updatelocal_alternatename oncreate +1637 auth_shibboleth field_lock_alternatename unlocked +1638 block_activity_results config_showbest 3 +1639 block_activity_results config_showbest_locked +1640 block_activity_results config_showworst 0 +1641 block_activity_results config_showworst_locked +1642 block_activity_results config_usegroups 0 +1643 block_activity_results config_usegroups_locked +1644 block_activity_results config_nameformat 1 +1645 block_activity_results config_nameformat_locked +1646 block_activity_results config_gradeformat 1 +1647 block_activity_results config_gradeformat_locked +1648 block_activity_results config_decimalpoints 2 +1649 block_activity_results config_decimalpoints_locked +1650 block_myoverview displaycategories 1 +1651 block_myoverview layouts card,list,summary +1652 block_myoverview displaygroupingallincludinghidden 0 +1653 block_myoverview displaygroupingall 1 +1654 block_myoverview displaygroupinginprogress 1 +1655 block_myoverview displaygroupingpast 1 +1656 block_myoverview displaygroupingfuture 1 +1657 block_myoverview displaygroupingcustomfield 0 +1658 block_myoverview customfiltergrouping +1659 block_myoverview displaygroupingfavourites 1 +1660 block_myoverview displaygroupinghidden 1 +1661 block_recentlyaccessedcourses displaycategories 1 +1662 block_section_links numsections1 22 +1663 block_section_links incby1 2 +1664 block_section_links numsections2 40 +1665 block_section_links incby2 5 +1666 block_starredcourses displaycategories 1 +1667 block_tag_youtube apikey +1668 format_singleactivity activitytype forum +1669 fileconverter_googledrive issuerid +1670 enrol_cohort roleid 5 +1671 enrol_cohort unenrolaction 0 +1672 enrol_meta nosyncroleids +1673 enrol_meta syncall 1 +1674 enrol_meta unenrolaction 3 +1675 enrol_meta coursesort sortorder +1676 enrol_database dbtype +1677 enrol_database dbhost localhost +1678 enrol_database dbuser +1679 enrol_database dbpass +1680 enrol_database dbname +1681 enrol_database dbencoding utf-8 +1682 enrol_database dbsetupsql +1683 enrol_database dbsybasequoting 0 +1684 enrol_database debugdb 0 +1685 enrol_database localcoursefield idnumber +1686 enrol_database localuserfield idnumber +1687 enrol_database localrolefield shortname +1688 enrol_database localcategoryfield id +1689 enrol_database remoteenroltable +1690 enrol_database remotecoursefield +1691 enrol_database remoteuserfield +1692 enrol_database remoterolefield +1693 enrol_database remoteotheruserfield +1694 enrol_database defaultrole 5 +1695 enrol_database ignorehiddencourses 0 +1696 enrol_database unenrolaction 0 +1697 enrol_database newcoursetable +1698 enrol_database newcoursefullname fullname +1699 enrol_database newcourseshortname shortname +1700 enrol_database newcourseidnumber idnumber +1701 enrol_database newcoursecategory +1702 enrol_database defaultcategory 1 +1703 enrol_database templatecourse +1704 enrol_flatfile location +1705 enrol_flatfile encoding UTF-8 +1706 enrol_flatfile mailstudents 0 +1707 enrol_flatfile mailteachers 0 +1708 enrol_flatfile mailadmins 0 +1709 enrol_flatfile unenrolaction 3 +1710 enrol_flatfile expiredaction 3 +1711 enrol_guest requirepassword 0 +1712 enrol_guest usepasswordpolicy 0 +1713 enrol_guest showhint 0 +1714 enrol_guest defaultenrol 1 +1715 enrol_guest status 1 +1716 enrol_guest status_adv +1717 enrol_imsenterprise imsfilelocation +1718 enrol_imsenterprise logtolocation +1719 enrol_imsenterprise mailadmins 0 +1720 enrol_imsenterprise createnewusers 0 +1721 enrol_imsenterprise imsupdateusers 0 +1722 enrol_imsenterprise imsdeleteusers 0 +1723 enrol_imsenterprise fixcaseusernames 0 +1724 enrol_imsenterprise fixcasepersonalnames 0 +1725 enrol_imsenterprise imssourcedidfallback 0 +1726 enrol_imsenterprise imsrolemap01 5 +1727 enrol_imsenterprise imsrolemap02 3 +1728 enrol_imsenterprise imsrolemap03 3 +1729 enrol_imsenterprise imsrolemap04 5 +1730 enrol_imsenterprise imsrolemap05 0 +1731 enrol_imsenterprise imsrolemap06 4 +1732 enrol_imsenterprise imsrolemap07 0 +1733 enrol_imsenterprise imsrolemap08 4 +1734 enrol_imsenterprise truncatecoursecodes 0 +1735 enrol_imsenterprise createnewcourses 0 +1736 enrol_imsenterprise updatecourses 0 +1737 enrol_imsenterprise createnewcategories 0 +1738 enrol_imsenterprise nestedcategories 0 +1739 enrol_imsenterprise categoryidnumber 0 +1740 enrol_imsenterprise categoryseparator +1741 enrol_imsenterprise imsunenrol 0 +1742 enrol_imsenterprise imscoursemapshortname coursecode +1743 enrol_imsenterprise imscoursemapfullname short +1744 enrol_imsenterprise imscoursemapsummary ignore +1745 enrol_imsenterprise imsrestricttarget +1746 enrol_imsenterprise imscapitafix 0 +1747 enrol_manual expiredaction 1 +1748 enrol_manual expirynotifyhour 6 +1749 enrol_manual defaultenrol 1 +1750 enrol_manual status 0 +1751 enrol_manual roleid 5 +1752 enrol_manual enrolstart 4 +1753 enrol_manual enrolperiod 0 +1754 enrol_manual expirynotify 0 +1755 enrol_manual expirythreshold 86400 +1756 enrol_mnet roleid 5 +1757 enrol_mnet roleid_adv 1 +1758 enrol_paypal paypalbusiness +1759 enrol_paypal mailstudents 0 +1760 enrol_paypal mailteachers 0 +1762 enrol_paypal expiredaction 3 +1763 enrol_paypal status 1 +1764 enrol_paypal cost 0 +1765 enrol_paypal currency USD +1766 enrol_paypal roleid 5 +1767 enrol_paypal enrolperiod 0 +1768 enrol_lti emaildisplay 2 +1769 enrol_lti city +1770 enrol_lti country +1771 enrol_lti timezone 99 +1772 enrol_lti lang en +1773 enrol_lti institution +1774 enrol_self requirepassword 0 +1775 enrol_self usepasswordpolicy 0 +1776 enrol_self showhint 0 +1777 enrol_self expiredaction 1 +1778 enrol_self expirynotifyhour 6 +1779 enrol_self defaultenrol 1 +1780 enrol_self status 1 +1781 enrol_self newenrols 1 +1782 enrol_self groupkey 0 +1783 enrol_self roleid 5 +1784 enrol_self enrolperiod 0 +1785 enrol_self expirynotify 0 +1786 enrol_self expirythreshold 86400 +1787 enrol_self longtimenosee 0 +1788 enrol_self maxenrolled 0 +1789 enrol_self sendcoursewelcomemessage 1 +1790 filter_urltolink formats 1,4,0 +1791 filter_urltolink embedimages 1 +1792 filter_emoticon formats 1,4,0 +1793 filter_displayh5p allowedsources +1794 filter_mathjaxloader httpsurl https://cdn.jsdelivr.net/npm/mathjax@2.7.8/MathJax.js +1795 filter_mathjaxloader texfiltercompatibility 0 +1796 filter_mathjaxloader mathjaxconfig \nMathJax.Hub.Config({\n config: ["Accessible.js", "Safe.js"],\n errorSettings: { message: ["!"] },\n skipStartupTypeset: true,\n messageStyle: "none"\n});\n +1797 filter_mathjaxloader additionaldelimiters +1798 filter_tex latexpreamble \\usepackage[latin1]{inputenc}\n\\usepackage{amsmath}\n\\usepackage{amsfonts}\n\\RequirePackage{amsmath,amssymb,latexsym}\n +1799 filter_tex latexbackground #FFFFFF +1800 filter_tex density 120 +1801 filter_tex pathlatex /usr/bin/latex +1802 filter_tex pathdvips /usr/bin/dvips +1803 filter_tex pathconvert /usr/bin/convert +1804 filter_tex pathdvisvgm /usr/bin/dvisvgm +1805 filter_tex pathmimetex +1806 filter_tex convertformat gif +1807 logstore_database dbdriver +1808 logstore_database dbhost +1809 logstore_database dbuser +1810 logstore_database dbpass +1811 logstore_database dbname +1812 logstore_database dbtable +1813 logstore_database dbpersist 0 +1814 logstore_database dbsocket +1815 logstore_database dbport +1816 logstore_database dbschema +1817 logstore_database dbcollation +1818 logstore_database dbhandlesoptions 0 +1819 logstore_database buffersize 50 +1820 logstore_database jsonformat 1 +1821 logstore_database logguests 0 +1822 logstore_database includelevels 1,2,0 +1823 logstore_database includeactions c,r,u,d +1824 logstore_legacy loglegacy 0 +1825 logstore_standard logguests 1 +1826 logstore_standard jsonformat 1 +1827 logstore_standard loglifetime 0 +1828 logstore_standard buffersize 50 +1829 mlbackend_python useserver 0 +1830 mlbackend_python host +1831 mlbackend_python port 0 +1832 mlbackend_python secure 0 +1833 mlbackend_python username default +1834 mlbackend_python password +1835 media_videojs videoextensions html_video,media_source,.f4v,.flv +1836 media_videojs audioextensions html_audio +1837 media_videojs rtmp 0 +1838 media_videojs useflash 0 +1839 media_videojs youtube 1 +1840 media_videojs videocssclass video-js +1841 media_videojs audiocssclass video-js +1842 media_videojs limitsize 1 +1843 qtype_multichoice answerhowmany 1 +1844 qtype_multichoice shuffleanswers 1 +1845 qtype_multichoice answernumbering abc +1846 editor_atto toolbar collapse = collapse\nstyle1 = title, bold, italic\nlist = unorderedlist, orderedlist, indent\nlinks = link\nfiles = emojipicker, image, media, recordrtc, managefiles, h5p\nstyle2 = underline, strike, subscript, superscript\nalign = align\ninsert = equation, charmap, table, clear\nundo = undo\naccessibility = accessibilitychecker, accessibilityhelper\nother = html +1847 editor_atto autosavefrequency 60 +1848 atto_collapse showgroups 5 +1849 atto_equation librarygroup1 \n\\cdot\n\\times\n\\ast\n\\div\n\\diamond\n\\pm\n\\mp\n\\oplus\n\\ominus\n\\otimes\n\\oslash\n\\odot\n\\circ\n\\bullet\n\\asymp\n\\equiv\n\\subseteq\n\\supseteq\n\\leq\n\\geq\n\\preceq\n\\succeq\n\\sim\n\\simeq\n\\approx\n\\subset\n\\supset\n\\ll\n\\gg\n\\prec\n\\succ\n\\infty\n\\in\n\\ni\n\\forall\n\\exists\n\\neq\n +1850 atto_equation librarygroup2 \n\\leftarrow\n\\rightarrow\n\\uparrow\n\\downarrow\n\\leftrightarrow\n\\nearrow\n\\searrow\n\\swarrow\n\\nwarrow\n\\Leftarrow\n\\Rightarrow\n\\Uparrow\n\\Downarrow\n\\Leftrightarrow\n +1851 atto_equation librarygroup3 \n\\alpha\n\\beta\n\\gamma\n\\delta\n\\epsilon\n\\zeta\n\\eta\n\\theta\n\\iota\n\\kappa\n\\lambda\n\\mu\n\\nu\n\\xi\n\\pi\n\\rho\n\\sigma\n\\tau\n\\upsilon\n\\phi\n\\chi\n\\psi\n\\omega\n\\Gamma\n\\Delta\n\\Theta\n\\Lambda\n\\Xi\n\\Pi\n\\Sigma\n\\Upsilon\n\\Phi\n\\Psi\n\\Omega\n +1852 atto_equation librarygroup4 \n\\sum{a,b}\n\\sqrt[a]{b+c}\n\\int_{a}^{b}{c}\n\\iint_{a}^{b}{c}\n\\iiint_{a}^{b}{c}\n\\oint{a}\n(a)\n[a]\n\\lbrace{a}\\rbrace\n\\left| \\begin{matrix} a_1 & a_2 \\ a_3 & a_4 \\end{matrix} \\right|\n\\frac{a}{b+c}\n\\vec{a}\n\\binom {a} {b}\n{a \\brack b}\n{a \\brace b}\n +1853 atto_recordrtc allowedtypes both +1854 atto_recordrtc audiobitrate 128000 +1855 atto_recordrtc videobitrate 2500000 +1856 atto_recordrtc timelimit 120 +1857 atto_table allowborders 0 +1858 atto_table allowbackgroundcolour 0 +1859 atto_table allowwidth 0 +1860 editor_tinymce customtoolbar wrap,formatselect,wrap,bold,italic,wrap,bullist,numlist,wrap,link,unlink,wrap,image\n\nundo,redo,wrap,underline,strikethrough,sub,sup,wrap,justifyleft,justifycenter,justifyright,wrap,outdent,indent,wrap,forecolor,backcolor,wrap,ltr,rtl\n\nfontselect,fontsizeselect,wrap,code,search,replace,wrap,nonbreaking,charmap,table,wrap,cleanup,removeformat,pastetext,pasteword,wrap,fullscreen +1861 editor_tinymce fontselectlist Trebuchet=Trebuchet MS,Verdana,Arial,Helvetica,sans-serif;Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;Wingdings=wingdings +1862 editor_tinymce customconfig +1863 tinymce_moodleemoticon requireemoticon 1 +1864 tinymce_spellchecker spellengine +1865 tinymce_spellchecker spelllanguagelist +English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv +1866 tool_mobile apppolicy +1867 tool_mobile typeoflogin 1 +1868 tool_mobile qrcodetype 1 +1869 tool_mobile forcedurlscheme moodlemobile +1870 tool_mobile minimumversion +1871 tool_mobile enablesmartappbanners 0 +1872 tool_mobile iosappid 633359593 +1873 tool_mobile androidappid com.moodle.moodlemobile +1874 tool_mobile setuplink https://download.moodle.org/mobile +1875 tool_mobile forcelogout 0 +1876 tool_mobile disabledfeatures +1877 tool_mobile custommenuitems +1878 tool_mobile customlangstrings +1879 tool_moodlenet enablemoodlenet 0 +1880 tool_moodlenet defaultmoodlenetname MoodleNet Central +1881 tool_moodlenet defaultmoodlenet https://moodle.net +\. + + +-- +-- TOC entry 11476 (class 0 OID 0) +-- Dependencies: 187 +-- Name: mdl_config_plugins_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_config_plugins_id_seq', 1881, true); + + +-- +-- TOC entry 10106 (class 0 OID 19829) +-- Dependencies: 621 +-- Data for Name: mdl_contentbank_content; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_contentbank_content (id, name, contenttype, contextid, instanceid, configdata, usercreated, usermodified, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11477 (class 0 OID 0) +-- Dependencies: 620 +-- Name: mdl_contentbank_content_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_contentbank_content_id_seq', 1, false); + + +-- +-- TOC entry 9775 (class 0 OID 17338) +-- Dependencies: 290 +-- Data for Name: mdl_context; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_context (id, contextlevel, instanceid, path, depth, locked) FROM stdin; +1 10 0 /1 1 0 +2 50 1 /1/2 2 0 +3 40 1 /1/3 2 0 +4 30 1 /1/4 2 0 +5 30 2 /1/5 2 0 +6 80 1 /1/6 2 0 +7 80 2 /1/7 2 0 +8 80 3 /1/8 2 0 +9 80 4 /1/9 2 0 +10 80 5 /1/10 2 0 +11 80 6 /1/11 2 0 +12 80 7 /1/12 2 0 +13 80 8 /1/13 2 0 +14 80 9 /1/14 2 0 +15 80 10 /1/15 2 0 +16 80 11 /1/5/16 3 0 +17 80 12 /1/5/17 3 0 +18 80 13 /1/5/18 3 0 +19 80 14 /1/5/19 3 0 +20 80 15 /1/5/20 3 0 +21 80 16 /1/5/21 3 0 +22 80 17 /1/5/22 3 0 +23 80 18 /1/5/23 3 0 +24 80 19 /1/5/24 3 0 +\. + + +-- +-- TOC entry 11478 (class 0 OID 0) +-- Dependencies: 289 +-- Name: mdl_context_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_context_id_seq', 24, true); + + +-- +-- TOC entry 9776 (class 0 OID 17352) +-- Dependencies: 291 +-- Data for Name: mdl_context_temp; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_context_temp (id, path, depth, locked) FROM stdin; +\. + + +-- +-- TOC entry 9679 (class 0 OID 16443) +-- Dependencies: 194 +-- Data for Name: mdl_course; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_course (id, category, sortorder, fullname, shortname, idnumber, summary, summaryformat, format, showgrades, newsitems, startdate, enddate, relativedatesmode, marker, maxbytes, legacyfiles, showreports, visible, visibleold, groupmode, groupmodeforce, defaultgroupingid, lang, calendartype, theme, timecreated, timemodified, requested, enablecompletion, completionnotify, cacherev) FROM stdin; +1 0 0 FROMDUMP:fullsitename shortsitename

Front Page Summary

0 site 1 3 0 0 0 0 0 0 0 1 1 0 0 0 1609808466 1609884709 0 0 0 1609808510 +\. + + +-- +-- TOC entry 9681 (class 0 OID 16488) +-- Dependencies: 196 +-- Data for Name: mdl_course_categories; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_course_categories (id, name, idnumber, description, descriptionformat, parent, sortorder, coursecount, visible, visibleold, timemodified, depth, path, theme) FROM stdin; +1 Miscellaneous \N \N 0 0 10000 0 1 1 1609808466 1 /1 \N +\. + + +-- +-- TOC entry 11479 (class 0 OID 0) +-- Dependencies: 195 +-- Name: mdl_course_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_course_categories_id_seq', 1, true); + + +-- +-- TOC entry 9683 (class 0 OID 16510) +-- Dependencies: 198 +-- Data for Name: mdl_course_completion_aggr_methd; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_course_completion_aggr_methd (id, course, criteriatype, method, value) FROM stdin; +\. + + +-- +-- TOC entry 11480 (class 0 OID 0) +-- Dependencies: 197 +-- Name: mdl_course_completion_aggr_methd_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_course_completion_aggr_methd_id_seq', 1, false); + + +-- +-- TOC entry 9687 (class 0 OID 16534) +-- Dependencies: 202 +-- Data for Name: mdl_course_completion_crit_compl; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_course_completion_crit_compl (id, userid, course, criteriaid, gradefinal, unenroled, timecompleted) FROM stdin; +\. + + +-- +-- TOC entry 11481 (class 0 OID 0) +-- Dependencies: 201 +-- Name: mdl_course_completion_crit_compl_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_course_completion_crit_compl_id_seq', 1, false); + + +-- +-- TOC entry 9685 (class 0 OID 16523) +-- Dependencies: 200 +-- Data for Name: mdl_course_completion_criteria; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_course_completion_criteria (id, course, criteriatype, module, moduleinstance, courseinstance, enrolperiod, timeend, gradepass, role) FROM stdin; +\. + + +-- +-- TOC entry 11482 (class 0 OID 0) +-- Dependencies: 199 +-- Name: mdl_course_completion_criteria_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_course_completion_criteria_id_seq', 1, false); + + +-- +-- TOC entry 10064 (class 0 OID 19527) +-- Dependencies: 579 +-- Data for Name: mdl_course_completion_defaults; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_course_completion_defaults (id, course, module, completion, completionview, completionusegrade, completionexpected, customrules) FROM stdin; +\. + + +-- +-- TOC entry 11483 (class 0 OID 0) +-- Dependencies: 578 +-- Name: mdl_course_completion_defaults_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_course_completion_defaults_id_seq', 1, false); + + +-- +-- TOC entry 9689 (class 0 OID 16550) +-- Dependencies: 204 +-- Data for Name: mdl_course_completions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_course_completions (id, userid, course, timeenrolled, timestarted, timecompleted, reaggregate) FROM stdin; +\. + + +-- +-- TOC entry 11484 (class 0 OID 0) +-- Dependencies: 203 +-- Name: mdl_course_completions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_course_completions_id_seq', 1, false); + + +-- +-- TOC entry 9703 (class 0 OID 16689) +-- Dependencies: 218 +-- Data for Name: mdl_course_format_options; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_course_format_options (id, courseid, format, sectionid, name, value) FROM stdin; +1 1 site 0 numsections 1 +\. + + +-- +-- TOC entry 11485 (class 0 OID 0) +-- Dependencies: 217 +-- Name: mdl_course_format_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_course_format_options_id_seq', 1, true); + + +-- +-- TOC entry 11486 (class 0 OID 0) +-- Dependencies: 193 +-- Name: mdl_course_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_course_id_seq', 2, false); + + +-- +-- TOC entry 9695 (class 0 OID 16610) +-- Dependencies: 210 +-- Data for Name: mdl_course_modules; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_course_modules (id, course, module, instance, section, idnumber, added, score, indent, visible, visibleoncoursepage, visibleold, groupmode, groupingid, completion, completiongradeitemnumber, completionview, completionexpected, showdescription, availability, deletioninprogress) FROM stdin; +\. + + +-- +-- TOC entry 9697 (class 0 OID 16644) +-- Dependencies: 212 +-- Data for Name: mdl_course_modules_completion; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_course_modules_completion (id, coursemoduleid, userid, completionstate, viewed, overrideby, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11487 (class 0 OID 0) +-- Dependencies: 211 +-- Name: mdl_course_modules_completion_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_course_modules_completion_id_seq', 1, false); + + +-- +-- TOC entry 11488 (class 0 OID 0) +-- Dependencies: 209 +-- Name: mdl_course_modules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_course_modules_id_seq', 1, false); + + +-- +-- TOC entry 9966 (class 0 OID 18855) +-- Dependencies: 481 +-- Data for Name: mdl_course_published; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_course_published (id, huburl, courseid, timepublished, enrollable, hubcourseid, status, timechecked) FROM stdin; +\. + + +-- +-- TOC entry 11489 (class 0 OID 0) +-- Dependencies: 480 +-- Name: mdl_course_published_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_course_published_id_seq', 1, false); + + +-- +-- TOC entry 9701 (class 0 OID 16671) +-- Dependencies: 216 +-- Data for Name: mdl_course_request; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_course_request (id, fullname, shortname, summary, summaryformat, category, reason, requester, password) FROM stdin; +\. + + +-- +-- TOC entry 11490 (class 0 OID 0) +-- Dependencies: 215 +-- Name: mdl_course_request_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_course_request_id_seq', 1, false); + + +-- +-- TOC entry 9699 (class 0 OID 16654) +-- Dependencies: 214 +-- Data for Name: mdl_course_sections; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_course_sections (id, course, section, name, summary, summaryformat, sequence, visible, availability, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11491 (class 0 OID 0) +-- Dependencies: 213 +-- Name: mdl_course_sections_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_course_sections_id_seq', 1, false); + + +-- +-- TOC entry 10090 (class 0 OID 19715) +-- Dependencies: 605 +-- Data for Name: mdl_customfield_category; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_customfield_category (id, name, description, descriptionformat, sortorder, timecreated, timemodified, component, area, itemid, contextid) FROM stdin; +\. + + +-- +-- TOC entry 11492 (class 0 OID 0) +-- Dependencies: 604 +-- Name: mdl_customfield_category_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_customfield_category_id_seq', 1, false); + + +-- +-- TOC entry 10094 (class 0 OID 19748) +-- Dependencies: 609 +-- Data for Name: mdl_customfield_data; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_customfield_data (id, fieldid, instanceid, intvalue, decvalue, shortcharvalue, charvalue, value, valueformat, timecreated, timemodified, contextid) FROM stdin; +\. + + +-- +-- TOC entry 11493 (class 0 OID 0) +-- Dependencies: 608 +-- Name: mdl_customfield_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_customfield_data_id_seq', 1, false); + + +-- +-- TOC entry 10092 (class 0 OID 19732) +-- Dependencies: 607 +-- Data for Name: mdl_customfield_field; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_customfield_field (id, shortname, name, type, description, descriptionformat, sortorder, categoryid, configdata, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11494 (class 0 OID 0) +-- Dependencies: 606 +-- Name: mdl_customfield_field_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_customfield_field_id_seq', 1, false); + + +-- +-- TOC entry 10194 (class 0 OID 20624) +-- Dependencies: 709 +-- Data for Name: mdl_data; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_data (id, course, name, intro, introformat, comments, timeavailablefrom, timeavailableto, timeviewfrom, timeviewto, requiredentries, requiredentriestoview, maxentries, rssarticles, singletemplate, listtemplate, listtemplateheader, listtemplatefooter, addtemplate, rsstemplate, rsstitletemplate, csstemplate, jstemplate, asearchtemplate, approval, manageapproved, scale, assessed, assesstimestart, assesstimefinish, defaultsort, defaultsortdir, editany, notification, timemodified, config, completionentries) FROM stdin; +\. + + +-- +-- TOC entry 10200 (class 0 OID 20692) +-- Dependencies: 715 +-- Data for Name: mdl_data_content; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_data_content (id, fieldid, recordid, content, content1, content2, content3, content4) FROM stdin; +\. + + +-- +-- TOC entry 11495 (class 0 OID 0) +-- Dependencies: 714 +-- Name: mdl_data_content_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_data_content_id_seq', 1, false); + + +-- +-- TOC entry 10196 (class 0 OID 20660) +-- Dependencies: 711 +-- Data for Name: mdl_data_fields; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_data_fields (id, dataid, type, name, description, required, param1, param2, param3, param4, param5, param6, param7, param8, param9, param10) FROM stdin; +\. + + +-- +-- TOC entry 11496 (class 0 OID 0) +-- Dependencies: 710 +-- Name: mdl_data_fields_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_data_fields_id_seq', 1, false); + + +-- +-- TOC entry 11497 (class 0 OID 0) +-- Dependencies: 708 +-- Name: mdl_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_data_id_seq', 1, false); + + +-- +-- TOC entry 10198 (class 0 OID 20677) +-- Dependencies: 713 +-- Data for Name: mdl_data_records; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_data_records (id, userid, groupid, dataid, timecreated, timemodified, approved) FROM stdin; +\. + + +-- +-- TOC entry 11498 (class 0 OID 0) +-- Dependencies: 712 +-- Name: mdl_data_records_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_data_records_id_seq', 1, false); + + +-- +-- TOC entry 10412 (class 0 OID 22593) +-- Dependencies: 927 +-- Data for Name: mdl_editor_atto_autosave; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_editor_atto_autosave (id, elementid, contextid, pagehash, userid, drafttext, draftid, pageinstance, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11499 (class 0 OID 0) +-- Dependencies: 926 +-- Name: mdl_editor_atto_autosave_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_editor_atto_autosave_id_seq', 1, true); + + +-- +-- TOC entry 9691 (class 0 OID 16567) +-- Dependencies: 206 +-- Data for Name: mdl_enrol; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_enrol (id, enrol, status, courseid, sortorder, name, enrolperiod, enrolstartdate, enrolenddate, expirynotify, expirythreshold, notifyall, password, cost, currency, roleid, customint1, customint2, customint3, customint4, customint5, customint6, customint7, customint8, customchar1, customchar2, customchar3, customdec1, customdec2, customtext1, customtext2, customtext3, customtext4, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 10374 (class 0 OID 22324) +-- Dependencies: 889 +-- Data for Name: mdl_enrol_flatfile; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_enrol_flatfile (id, action, roleid, userid, courseid, timestart, timeend, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11500 (class 0 OID 0) +-- Dependencies: 888 +-- Name: mdl_enrol_flatfile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_enrol_flatfile_id_seq', 1, false); + + +-- +-- TOC entry 11501 (class 0 OID 0) +-- Dependencies: 205 +-- Name: mdl_enrol_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_enrol_id_seq', 1, false); + + +-- +-- TOC entry 10380 (class 0 OID 22376) +-- Dependencies: 895 +-- Data for Name: mdl_enrol_lti_lti2_consumer; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_enrol_lti_lti2_consumer (id, name, consumerkey256, consumerkey, secret, ltiversion, consumername, consumerversion, consumerguid, profile, toolproxy, settings, protected, enabled, enablefrom, enableuntil, lastaccess, created, updated) FROM stdin; +\. + + +-- +-- TOC entry 11502 (class 0 OID 0) +-- Dependencies: 894 +-- Name: mdl_enrol_lti_lti2_consumer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_enrol_lti_lti2_consumer_id_seq', 1, false); + + +-- +-- TOC entry 10384 (class 0 OID 22405) +-- Dependencies: 899 +-- Data for Name: mdl_enrol_lti_lti2_context; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_enrol_lti_lti2_context (id, consumerid, lticontextkey, type, settings, created, updated) FROM stdin; +\. + + +-- +-- TOC entry 11503 (class 0 OID 0) +-- Dependencies: 898 +-- Name: mdl_enrol_lti_lti2_context_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_enrol_lti_lti2_context_id_seq', 1, false); + + +-- +-- TOC entry 10386 (class 0 OID 22418) +-- Dependencies: 901 +-- Data for Name: mdl_enrol_lti_lti2_nonce; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_enrol_lti_lti2_nonce (id, consumerid, value, expires) FROM stdin; +\. + + +-- +-- TOC entry 11504 (class 0 OID 0) +-- Dependencies: 900 +-- Name: mdl_enrol_lti_lti2_nonce_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_enrol_lti_lti2_nonce_id_seq', 1, false); + + +-- +-- TOC entry 10388 (class 0 OID 22428) +-- Dependencies: 903 +-- Data for Name: mdl_enrol_lti_lti2_resource_link; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_enrol_lti_lti2_resource_link (id, contextid, consumerid, ltiresourcelinkkey, settings, primaryresourcelinkid, shareapproved, created, updated) FROM stdin; +\. + + +-- +-- TOC entry 11505 (class 0 OID 0) +-- Dependencies: 902 +-- Name: mdl_enrol_lti_lti2_resource_link_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_enrol_lti_lti2_resource_link_id_seq', 1, false); + + +-- +-- TOC entry 10390 (class 0 OID 22443) +-- Dependencies: 905 +-- Data for Name: mdl_enrol_lti_lti2_share_key; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_enrol_lti_lti2_share_key (id, sharekey, resourcelinkid, autoapprove, expires) FROM stdin; +\. + + +-- +-- TOC entry 11506 (class 0 OID 0) +-- Dependencies: 904 +-- Name: mdl_enrol_lti_lti2_share_key_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_enrol_lti_lti2_share_key_id_seq', 1, false); + + +-- +-- TOC entry 10382 (class 0 OID 22391) +-- Dependencies: 897 +-- Data for Name: mdl_enrol_lti_lti2_tool_proxy; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_enrol_lti_lti2_tool_proxy (id, toolproxykey, consumerid, toolproxy, created, updated) FROM stdin; +\. + + +-- +-- TOC entry 11507 (class 0 OID 0) +-- Dependencies: 896 +-- Name: mdl_enrol_lti_lti2_tool_proxy_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_enrol_lti_lti2_tool_proxy_id_seq', 1, false); + + +-- +-- TOC entry 10392 (class 0 OID 22454) +-- Dependencies: 907 +-- Data for Name: mdl_enrol_lti_lti2_user_result; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_enrol_lti_lti2_user_result (id, resourcelinkid, ltiuserkey, ltiresultsourcedid, created, updated) FROM stdin; +\. + + +-- +-- TOC entry 11508 (class 0 OID 0) +-- Dependencies: 906 +-- Name: mdl_enrol_lti_lti2_user_result_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_enrol_lti_lti2_user_result_id_seq', 1, false); + + +-- +-- TOC entry 10394 (class 0 OID 22468) +-- Dependencies: 909 +-- Data for Name: mdl_enrol_lti_tool_consumer_map; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_enrol_lti_tool_consumer_map (id, toolid, consumerid) FROM stdin; +\. + + +-- +-- TOC entry 11509 (class 0 OID 0) +-- Dependencies: 908 +-- Name: mdl_enrol_lti_tool_consumer_map_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_enrol_lti_tool_consumer_map_id_seq', 1, false); + + +-- +-- TOC entry 10376 (class 0 OID 22339) +-- Dependencies: 891 +-- Data for Name: mdl_enrol_lti_tools; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_enrol_lti_tools (id, enrolid, contextid, institution, lang, timezone, maxenrolled, maildisplay, city, country, gradesync, gradesynccompletion, membersync, membersyncmode, roleinstructor, rolelearner, secret, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11510 (class 0 OID 0) +-- Dependencies: 890 +-- Name: mdl_enrol_lti_tools_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_enrol_lti_tools_id_seq', 1, false); + + +-- +-- TOC entry 10378 (class 0 OID 22363) +-- Dependencies: 893 +-- Data for Name: mdl_enrol_lti_users; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_enrol_lti_users (id, userid, toolid, serviceurl, sourceid, consumerkey, consumersecret, membershipsurl, membershipsid, lastgrade, lastaccess, timecreated) FROM stdin; +\. + + +-- +-- TOC entry 11511 (class 0 OID 0) +-- Dependencies: 892 +-- Name: mdl_enrol_lti_users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_enrol_lti_users_id_seq', 1, false); + + +-- +-- TOC entry 10396 (class 0 OID 22478) +-- Dependencies: 911 +-- Data for Name: mdl_enrol_paypal; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_enrol_paypal (id, business, receiver_email, receiver_id, item_name, courseid, userid, instanceid, memo, tax, option_name1, option_selection1_x, option_name2, option_selection2_x, payment_status, pending_reason, reason_code, txn_id, parent_txn_id, payment_type, timeupdated) FROM stdin; +\. + + +-- +-- TOC entry 11512 (class 0 OID 0) +-- Dependencies: 910 +-- Name: mdl_enrol_paypal_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_enrol_paypal_id_seq', 1, false); + + +-- +-- TOC entry 9709 (class 0 OID 16732) +-- Dependencies: 224 +-- Data for Name: mdl_event; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_event (id, name, description, format, categoryid, courseid, groupid, userid, repeatid, component, modulename, instance, type, eventtype, timestart, timeduration, timesort, visible, uuid, sequence, timemodified, subscriptionid, priority, location) FROM stdin; +\. + + +-- +-- TOC entry 11513 (class 0 OID 0) +-- Dependencies: 223 +-- Name: mdl_event_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_event_id_seq', 1, false); + + +-- +-- TOC entry 9974 (class 0 OID 18910) +-- Dependencies: 489 +-- Data for Name: mdl_event_subscriptions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_event_subscriptions (id, url, categoryid, courseid, groupid, userid, eventtype, pollinterval, lastupdated, name) FROM stdin; +\. + + +-- +-- TOC entry 11514 (class 0 OID 0) +-- Dependencies: 488 +-- Name: mdl_event_subscriptions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_event_subscriptions_id_seq', 1, false); + + +-- +-- TOC entry 9848 (class 0 OID 17891) +-- Dependencies: 363 +-- Data for Name: mdl_events_handlers; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_events_handlers (id, eventname, component, handlerfile, handlerfunction, schedule, status, internal) FROM stdin; +\. + + +-- +-- TOC entry 11515 (class 0 OID 0) +-- Dependencies: 362 +-- Name: mdl_events_handlers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_events_handlers_id_seq', 1, false); + + +-- +-- TOC entry 9846 (class 0 OID 17879) +-- Dependencies: 361 +-- Data for Name: mdl_events_queue; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_events_queue (id, eventdata, stackdump, userid, timecreated) FROM stdin; +\. + + +-- +-- TOC entry 9850 (class 0 OID 17908) +-- Dependencies: 365 +-- Data for Name: mdl_events_queue_handlers; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_events_queue_handlers (id, queuedeventid, handlerid, status, errormessage, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11516 (class 0 OID 0) +-- Dependencies: 364 +-- Name: mdl_events_queue_handlers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_events_queue_handlers_id_seq', 1, false); + + +-- +-- TOC entry 11517 (class 0 OID 0) +-- Dependencies: 360 +-- Name: mdl_events_queue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_events_queue_id_seq', 1, false); + + +-- +-- TOC entry 9942 (class 0 OID 18680) +-- Dependencies: 457 +-- Data for Name: mdl_external_functions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_external_functions (id, name, classname, methodname, classpath, component, capabilities, services) FROM stdin; +1 core_auth_confirm_user core_auth_external confirm_user \N moodle \N +2 core_auth_request_password_reset core_auth_external request_password_reset \N moodle \N +3 core_auth_is_minor core_auth_external is_minor \N moodle \N +4 core_auth_is_age_digital_consent_verification_enabled core_auth_external is_age_digital_consent_verification_enabled \N moodle \N +5 core_auth_resend_confirmation_email core_auth_external resend_confirmation_email \N moodle \N +6 core_backup_get_async_backup_progress core_backup_external get_async_backup_progress backup/externallib.php moodle \N +7 core_backup_get_async_backup_links_backup core_backup_external get_async_backup_links_backup backup/externallib.php moodle \N +8 core_backup_get_async_backup_links_restore core_backup_external get_async_backup_links_restore backup/externallib.php moodle \N +9 core_backup_get_copy_progress core_backup_external get_copy_progress backup/externallib.php moodle \N +10 core_backup_submit_copy_form core_backup_external submit_copy_form backup/externallib.php moodle \N +11 core_badges_get_user_badges core_badges_external get_user_badges \N moodle moodle/badges:viewotherbadges moodle_mobile_app +12 core_blog_get_entries core_blog\\external get_entries \N moodle moodle_mobile_app +13 core_blog_view_entries core_blog\\external view_entries \N moodle moodle_mobile_app +14 core_calendar_get_calendar_monthly_view core_calendar_external get_calendar_monthly_view calendar/externallib.php moodle moodle_mobile_app +15 core_calendar_get_calendar_day_view core_calendar_external get_calendar_day_view calendar/externallib.php moodle moodle_mobile_app +16 core_calendar_get_calendar_upcoming_view core_calendar_external get_calendar_upcoming_view calendar/externallib.php moodle moodle_mobile_app +17 core_calendar_update_event_start_day core_calendar_external update_event_start_day calendar/externallib.php moodle moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries moodle_mobile_app +18 core_calendar_create_calendar_events core_calendar_external create_calendar_events calendar/externallib.php moodle moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries moodle_mobile_app +19 core_calendar_delete_calendar_events core_calendar_external delete_calendar_events calendar/externallib.php moodle moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries moodle_mobile_app +20 core_calendar_get_calendar_events core_calendar_external get_calendar_events calendar/externallib.php moodle moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries moodle_mobile_app +21 core_calendar_get_action_events_by_timesort core_calendar_external get_calendar_action_events_by_timesort calendar/externallib.php moodle moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries moodle_mobile_app +22 core_calendar_get_action_events_by_course core_calendar_external get_calendar_action_events_by_course calendar/externallib.php moodle moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries moodle_mobile_app +23 core_calendar_get_action_events_by_courses core_calendar_external get_calendar_action_events_by_courses calendar/externallib.php moodle moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries moodle_mobile_app +24 core_calendar_get_calendar_event_by_id core_calendar_external get_calendar_event_by_id calendar/externallib.php moodle moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries moodle_mobile_app +25 core_calendar_submit_create_update_form core_calendar_external submit_create_update_form calendar/externallib.php moodle moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries moodle_mobile_app +26 core_calendar_get_calendar_access_information core_calendar_external get_calendar_access_information calendar/externallib.php moodle moodle_mobile_app +27 core_calendar_get_allowed_event_types core_calendar_external get_allowed_event_types calendar/externallib.php moodle moodle_mobile_app +28 core_calendar_get_timestamps core_calendar_external get_timestamps calendar/externallib.php moodle \N +29 core_cohort_add_cohort_members core_cohort_external add_cohort_members cohort/externallib.php moodle moodle/cohort:assign \N +30 core_cohort_create_cohorts core_cohort_external create_cohorts cohort/externallib.php moodle moodle/cohort:manage \N +31 core_cohort_delete_cohort_members core_cohort_external delete_cohort_members cohort/externallib.php moodle moodle/cohort:assign \N +32 core_cohort_delete_cohorts core_cohort_external delete_cohorts cohort/externallib.php moodle moodle/cohort:manage \N +33 core_cohort_get_cohort_members core_cohort_external get_cohort_members cohort/externallib.php moodle moodle/cohort:view \N +34 core_cohort_search_cohorts core_cohort_external search_cohorts cohort/externallib.php moodle moodle/cohort:view \N +35 core_cohort_get_cohorts core_cohort_external get_cohorts cohort/externallib.php moodle moodle/cohort:view \N +36 core_cohort_update_cohorts core_cohort_external update_cohorts cohort/externallib.php moodle moodle/cohort:manage \N +37 core_comment_get_comments core_comment_external get_comments \N moodle moodle/comment:view moodle_mobile_app +38 core_comment_add_comments core_comment_external add_comments \N moodle moodle_mobile_app +39 core_comment_delete_comments core_comment_external delete_comments \N moodle moodle_mobile_app +40 core_completion_get_activities_completion_status core_completion_external get_activities_completion_status \N moodle moodle_mobile_app +41 core_completion_get_course_completion_status core_completion_external get_course_completion_status \N moodle report/completion:view moodle_mobile_app +42 core_completion_mark_course_self_completed core_completion_external mark_course_self_completed \N moodle moodle_mobile_app +43 core_completion_update_activity_completion_status_manually core_completion_external update_activity_completion_status_manually \N moodle moodle_mobile_app +44 core_completion_override_activity_completion_status core_completion_external override_activity_completion_status \N moodle moodle/course:overridecompletion \N +45 core_course_create_categories core_course_external create_categories course/externallib.php moodle moodle/category:manage \N +46 core_course_create_courses core_course_external create_courses course/externallib.php moodle moodle/course:create, moodle/course:visibility \N +47 core_course_delete_categories core_course_external delete_categories course/externallib.php moodle moodle/category:manage \N +48 core_course_delete_courses core_course_external delete_courses course/externallib.php moodle moodle/course:delete \N +49 core_course_delete_modules core_course_external delete_modules course/externallib.php moodle moodle/course:manageactivities \N +50 core_course_duplicate_course core_course_external duplicate_course course/externallib.php moodle moodle/backup:backupcourse, moodle/restore:restorecourse, moodle/course:create \N +51 core_course_get_categories core_course_external get_categories course/externallib.php moodle moodle/category:viewhiddencategories moodle_mobile_app +52 core_course_get_contents core_course_external get_course_contents course/externallib.php moodle moodle/course:update, moodle/course:viewhiddencourses moodle_mobile_app +53 core_course_get_course_module core_course_external get_course_module course/externallib.php moodle moodle_mobile_app +54 core_course_get_course_module_by_instance core_course_external get_course_module_by_instance course/externallib.php moodle moodle_mobile_app +55 core_course_get_module core_course_external get_module course/externallib.php moodle \N +56 core_course_edit_module core_course_external edit_module course/externallib.php moodle \N +57 core_course_edit_section core_course_external edit_section course/externallib.php moodle \N +58 core_course_get_courses core_course_external get_courses course/externallib.php moodle moodle/course:view, moodle/course:update, moodle/course:viewhiddencourses moodle_mobile_app +59 core_course_import_course core_course_external import_course course/externallib.php moodle moodle/backup:backuptargetimport, moodle/restore:restoretargetimport \N +60 core_course_search_courses core_course_external search_courses course/externallib.php moodle moodle_mobile_app +61 core_course_update_categories core_course_external update_categories course/externallib.php moodle moodle/category:manage \N +62 core_course_update_courses core_course_external update_courses course/externallib.php moodle moodle/course:update, moodle/course:changecategory, moodle/course:changefullname, moodle/course:changeshortname, moodle/course:changeidnumber, moodle/course:changesummary, moodle/course:visibility \N +63 core_course_view_course core_course_external view_course course/externallib.php moodle moodle_mobile_app +64 core_course_get_user_navigation_options core_course_external get_user_navigation_options course/externallib.php moodle moodle_mobile_app +65 core_course_get_user_administration_options core_course_external get_user_administration_options course/externallib.php moodle moodle_mobile_app +66 core_course_get_courses_by_field core_course_external get_courses_by_field course/externallib.php moodle moodle_mobile_app +67 core_course_check_updates core_course_external check_updates course/externallib.php moodle moodle_mobile_app +68 core_course_get_updates_since core_course_external get_updates_since course/externallib.php moodle moodle_mobile_app +69 core_course_get_enrolled_courses_by_timeline_classification core_course_external get_enrolled_courses_by_timeline_classification course/externallib.php moodle moodle_mobile_app +70 core_course_get_recent_courses core_course_external get_recent_courses course/externallib.php moodle moodle_mobile_app +71 core_course_set_favourite_courses core_course_external set_favourite_courses course/externallib.php moodle moodle_mobile_app +72 core_course_get_enrolled_users_by_cmid core_course_external get_enrolled_users_by_cmid course/externallib.php moodle \N +73 core_course_add_content_item_to_user_favourites core_course_external add_content_item_to_user_favourites course/externallib.php moodle \N +74 core_course_remove_content_item_from_user_favourites core_course_external remove_content_item_from_user_favourites course/externallib.php moodle \N +75 core_course_get_course_content_items core_course_external get_course_content_items course/externallib.php moodle \N +76 core_course_get_activity_chooser_footer core_course_external get_activity_chooser_footer course/externallib.php moodle \N +77 core_course_toggle_activity_recommendation core_course_external toggle_activity_recommendation course/externallib.php moodle \N +78 core_enrol_get_course_enrolment_methods core_enrol_external get_course_enrolment_methods enrol/externallib.php moodle moodle_mobile_app +79 core_enrol_get_enrolled_users core_enrol_external get_enrolled_users enrol/externallib.php moodle moodle/user:viewdetails, moodle/user:viewhiddendetails, moodle/course:useremail, moodle/user:update, moodle/site:accessallgroups moodle_mobile_app +80 core_enrol_get_enrolled_users_with_capability core_enrol_external get_enrolled_users_with_capability enrol/externallib.php moodle \N +81 core_enrol_get_potential_users core_enrol_external get_potential_users enrol/externallib.php moodle moodle/course:enrolreview \N +82 core_enrol_search_users core_enrol_external search_users enrol/externallib.php moodle moodle/course:viewparticipants moodle_mobile_app +83 core_enrol_get_users_courses core_enrol_external get_users_courses enrol/externallib.php moodle moodle/course:viewparticipants moodle_mobile_app +84 core_enrol_edit_user_enrolment core_enrol_external edit_user_enrolment enrol/externallib.php moodle \N +85 core_enrol_submit_user_enrolment_form core_enrol_external submit_user_enrolment_form enrol/externallib.php moodle \N +86 core_enrol_unenrol_user_enrolment core_enrol_external unenrol_user_enrolment enrol/externallib.php moodle \N +87 core_fetch_notifications core_external fetch_notifications lib/external/externallib.php moodle \N +88 core_session_touch core\\session\\external touch_session \N moodle \N +89 core_session_time_remaining core\\session\\external time_remaining \N moodle \N +90 core_files_get_files core_files_external get_files files/externallib.php moodle moodle_mobile_app +91 core_files_upload core_files_external upload files/externallib.php moodle \N +92 core_form_get_filetypes_browser_data core_form\\external get_filetypes_browser_data \N moodle \N +93 core_get_component_strings core_external get_component_strings lib/external/externallib.php moodle moodle_mobile_app +94 core_get_fragment core_external get_fragment lib/external/externallib.php moodle \N +95 core_get_string core_external get_string lib/external/externallib.php moodle \N +96 core_get_strings core_external get_strings lib/external/externallib.php moodle \N +97 core_get_user_dates core_external get_user_dates lib/external/externallib.php moodle \N +98 core_grades_get_grades core_grades_external get_grades \N moodle moodle/grade:view, moodle/grade:viewall, moodle/grade:viewhidden \N +99 core_grades_update_grades core_grades_external update_grades \N moodle \N +100 core_grades_grader_gradingpanel_point_fetch core_grades\\grades\\grader\\gradingpanel\\point\\external\\fetch execute \N moodle moodle_mobile_app +101 core_grades_grader_gradingpanel_point_store core_grades\\grades\\grader\\gradingpanel\\point\\external\\store execute \N moodle moodle_mobile_app +102 core_grades_grader_gradingpanel_scale_fetch core_grades\\grades\\grader\\gradingpanel\\scale\\external\\fetch execute \N moodle moodle_mobile_app +103 core_grades_grader_gradingpanel_scale_store core_grades\\grades\\grader\\gradingpanel\\scale\\external\\store execute \N moodle moodle_mobile_app +104 core_grading_get_definitions core_grading_external get_definitions \N moodle \N +105 core_grading_get_gradingform_instances core_grading_external get_gradingform_instances \N moodle \N +106 core_grading_save_definitions core_grading_external save_definitions \N moodle \N +107 core_group_add_group_members core_group_external add_group_members group/externallib.php moodle moodle/course:managegroups \N +108 core_group_assign_grouping core_group_external assign_grouping group/externallib.php moodle \N +109 core_group_create_groupings core_group_external create_groupings group/externallib.php moodle \N +110 core_group_create_groups core_group_external create_groups group/externallib.php moodle moodle/course:managegroups \N +111 core_group_delete_group_members core_group_external delete_group_members group/externallib.php moodle moodle/course:managegroups \N +112 core_group_delete_groupings core_group_external delete_groupings group/externallib.php moodle \N +113 core_group_delete_groups core_group_external delete_groups group/externallib.php moodle moodle/course:managegroups \N +114 core_group_get_activity_allowed_groups core_group_external get_activity_allowed_groups group/externallib.php moodle moodle_mobile_app +115 core_group_get_activity_groupmode core_group_external get_activity_groupmode group/externallib.php moodle moodle_mobile_app +116 core_group_get_course_groupings core_group_external get_course_groupings group/externallib.php moodle moodle_mobile_app +117 core_group_get_course_groups core_group_external get_course_groups group/externallib.php moodle moodle/course:managegroups moodle_mobile_app +118 core_group_get_course_user_groups core_group_external get_course_user_groups group/externallib.php moodle moodle/course:managegroups moodle_mobile_app +119 core_group_get_group_members core_group_external get_group_members group/externallib.php moodle moodle/course:managegroups \N +120 core_group_get_groupings core_group_external get_groupings group/externallib.php moodle \N +121 core_group_get_groups core_group_external get_groups group/externallib.php moodle moodle/course:managegroups \N +122 core_group_unassign_grouping core_group_external unassign_grouping group/externallib.php moodle \N +123 core_group_update_groupings core_group_external update_groupings group/externallib.php moodle \N +124 core_group_update_groups core_group_external update_groups group/externallib.php moodle moodle/course:managegroups \N +125 core_message_mute_conversations core_message_external mute_conversations message/externallib.php moodle moodle_mobile_app +126 core_message_unmute_conversations core_message_external unmute_conversations message/externallib.php moodle moodle_mobile_app +127 core_message_block_user core_message_external block_user message/externallib.php moodle moodle_mobile_app +128 core_message_block_contacts core_message_external block_contacts message/externallib.php moodle moodle_mobile_app +129 core_message_create_contacts core_message_external create_contacts message/externallib.php moodle moodle_mobile_app +130 core_message_get_contact_requests core_message_external get_contact_requests message/externallib.php moodle moodle_mobile_app +131 core_message_create_contact_request core_message_external create_contact_request message/externallib.php moodle moodle_mobile_app +132 core_message_confirm_contact_request core_message_external confirm_contact_request message/externallib.php moodle moodle_mobile_app +133 core_message_decline_contact_request core_message_external decline_contact_request message/externallib.php moodle moodle_mobile_app +134 core_message_get_received_contact_requests_count core_message_external get_received_contact_requests_count message/externallib.php moodle moodle_mobile_app +135 core_message_delete_contacts core_message_external delete_contacts message/externallib.php moodle moodle_mobile_app +136 core_message_delete_conversation core_message_external delete_conversation message/externallib.php moodle moodle/site:deleteownmessage moodle_mobile_app +137 core_message_delete_conversations_by_id core_message_external delete_conversations_by_id message/externallib.php moodle moodle/site:deleteownmessage moodle_mobile_app +138 core_message_delete_message core_message_external delete_message message/externallib.php moodle moodle/site:deleteownmessage moodle_mobile_app +139 core_message_get_blocked_users core_message_external get_blocked_users message/externallib.php moodle moodle_mobile_app +140 core_message_data_for_messagearea_search_messages core_message_external data_for_messagearea_search_messages message/externallib.php moodle moodle_mobile_app +141 core_message_data_for_messagearea_search_users core_message_external data_for_messagearea_search_users message/externallib.php moodle \N +142 core_message_data_for_messagearea_search_users_in_course core_message_external data_for_messagearea_search_users_in_course message/externallib.php moodle \N +143 core_message_message_search_users core_message_external message_search_users message/externallib.php moodle moodle_mobile_app +144 core_message_data_for_messagearea_conversations core_message_external data_for_messagearea_conversations message/externallib.php moodle moodle_mobile_app +145 core_message_data_for_messagearea_contacts core_message_external data_for_messagearea_contacts message/externallib.php moodle moodle_mobile_app +146 core_message_data_for_messagearea_messages core_message_external data_for_messagearea_messages message/externallib.php moodle moodle_mobile_app +147 core_message_data_for_messagearea_get_most_recent_message core_message_external data_for_messagearea_get_most_recent_message message/externallib.php moodle \N +148 core_message_data_for_messagearea_get_profile core_message_external data_for_messagearea_get_profile message/externallib.php moodle \N +149 core_message_get_contacts core_message_external get_contacts message/externallib.php moodle moodle_mobile_app +150 core_message_get_user_contacts core_message_external get_user_contacts message/externallib.php moodle moodle_mobile_app +151 core_message_get_conversations core_message_external get_conversations message/externallib.php moodle moodle_mobile_app +152 core_message_get_conversation core_message_external get_conversation message/externallib.php moodle moodle_mobile_app +153 core_message_get_conversation_between_users core_message_external get_conversation_between_users message/externallib.php moodle moodle_mobile_app +154 core_message_get_self_conversation core_message_external get_self_conversation message/externallib.php moodle moodle_mobile_app +155 core_message_get_messages core_message_external get_messages message/externallib.php moodle moodle_mobile_app +156 core_message_get_conversation_counts core_message_external get_conversation_counts message/externallib.php moodle moodle_mobile_app +157 core_message_get_unread_conversation_counts core_message_external get_unread_conversation_counts message/externallib.php moodle moodle_mobile_app +158 core_message_get_conversation_members core_message_external get_conversation_members message/externallib.php moodle moodle_mobile_app +159 core_message_get_member_info core_message_external get_member_info message/externallib.php moodle moodle_mobile_app +160 core_message_get_unread_conversations_count core_message_external get_unread_conversations_count message/externallib.php moodle moodle_mobile_app +161 core_message_mark_all_notifications_as_read core_message_external mark_all_notifications_as_read message/externallib.php moodle moodle_mobile_app +162 core_message_mark_all_messages_as_read core_message_external mark_all_messages_as_read message/externallib.php moodle moodle_mobile_app +163 core_message_mark_all_conversation_messages_as_read core_message_external mark_all_conversation_messages_as_read message/externallib.php moodle moodle_mobile_app +164 core_message_mark_message_read core_message_external mark_message_read message/externallib.php moodle moodle_mobile_app +165 core_message_mark_notification_read core_message_external mark_notification_read message/externallib.php moodle moodle_mobile_app +166 core_message_message_processor_config_form core_message_external message_processor_config_form message/externallib.php moodle moodle_mobile_app +167 core_message_get_message_processor core_message_external get_message_processor message/externallib.php moodle \N +168 core_message_search_contacts core_message_external search_contacts message/externallib.php moodle moodle_mobile_app +169 core_message_send_instant_messages core_message_external send_instant_messages message/externallib.php moodle moodle/site:sendmessage moodle_mobile_app +170 core_message_send_messages_to_conversation core_message_external send_messages_to_conversation message/externallib.php moodle moodle/site:sendmessage moodle_mobile_app +171 core_message_get_conversation_messages core_message_external get_conversation_messages message/externallib.php moodle moodle_mobile_app +172 core_message_unblock_user core_message_external unblock_user message/externallib.php moodle moodle_mobile_app +173 core_message_unblock_contacts core_message_external unblock_contacts message/externallib.php moodle moodle_mobile_app +174 core_message_get_user_notification_preferences core_message_external get_user_notification_preferences message/externallib.php moodle moodle/user:editownmessageprofile moodle_mobile_app +175 core_message_get_user_message_preferences core_message_external get_user_message_preferences message/externallib.php moodle moodle/user:editownmessageprofile moodle_mobile_app +176 core_message_set_favourite_conversations core_message_external set_favourite_conversations message/externallib.php moodle moodle_mobile_app +177 core_message_unset_favourite_conversations core_message_external unset_favourite_conversations message/externallib.php moodle moodle_mobile_app +178 core_message_delete_message_for_all_users core_message_external delete_message_for_all_users message/externallib.php moodle moodle/site:deleteanymessage moodle_mobile_app +179 core_notes_create_notes core_notes_external create_notes notes/externallib.php moodle moodle/notes:manage moodle_mobile_app +180 core_notes_delete_notes core_notes_external delete_notes notes/externallib.php moodle moodle/notes:manage moodle_mobile_app +181 core_notes_get_course_notes core_notes_external get_course_notes notes/externallib.php moodle moodle/notes:view moodle_mobile_app +182 core_notes_get_notes core_notes_external get_notes notes/externallib.php moodle moodle/notes:view \N +183 core_notes_update_notes core_notes_external update_notes notes/externallib.php moodle moodle/notes:manage \N +184 core_notes_view_notes core_notes_external view_notes notes/externallib.php moodle moodle/notes:view moodle_mobile_app +185 core_output_load_template core\\output\\external load_template \N moodle \N +186 core_output_load_template_with_dependencies core\\output\\external load_template_with_dependencies \N moodle \N +187 core_output_load_fontawesome_icon_map core\\output\\external load_fontawesome_icon_map \N moodle \N +188 core_output_load_fontawesome_icon_system_map core\\external\\output\\icon_system\\load_fontawesome_map execute \N moodle \N +189 core_question_update_flag core_question_external update_flag \N moodle moodle/question:flag moodle_mobile_app +190 core_question_submit_tags_form core_question_external submit_tags_form \N moodle \N +191 core_question_get_random_question_summaries core_question_external get_random_question_summaries \N moodle \N +192 core_rating_get_item_ratings core_rating_external get_item_ratings \N moodle moodle/rating:view moodle_mobile_app +193 core_rating_add_rating core_rating_external add_rating \N moodle moodle/rating:rate moodle_mobile_app +194 core_role_assign_roles core_role_external assign_roles enrol/externallib.php moodle moodle/role:assign \N +195 core_role_unassign_roles core_role_external unassign_roles enrol/externallib.php moodle moodle/role:assign \N +196 core_search_get_relevant_users \\core_search\\external get_relevant_users \N moodle \N +197 core_tag_get_tagindex core_tag_external get_tagindex \N moodle moodle_mobile_app +198 core_tag_get_tags core_tag_external get_tags \N moodle \N +199 core_tag_update_tags core_tag_external update_tags \N moodle \N +200 core_tag_get_tagindex_per_area core_tag_external get_tagindex_per_area \N moodle moodle_mobile_app +201 core_tag_get_tag_areas core_tag_external get_tag_areas \N moodle moodle_mobile_app +202 core_tag_get_tag_collections core_tag_external get_tag_collections \N moodle moodle_mobile_app +203 core_tag_get_tag_cloud core_tag_external get_tag_cloud \N moodle moodle_mobile_app +204 core_update_inplace_editable core_external update_inplace_editable lib/external/externallib.php moodle \N +205 core_user_add_user_device core_user_external add_user_device user/externallib.php moodle moodle_mobile_app +206 core_user_add_user_private_files core_user_external add_user_private_files user/externallib.php moodle moodle/user:manageownfiles moodle_mobile_app +207 core_user_create_users core_user_external create_users user/externallib.php moodle moodle/user:create \N +208 core_user_delete_users core_user_external delete_users user/externallib.php moodle moodle/user:delete \N +209 core_user_get_course_user_profiles core_user_external get_course_user_profiles user/externallib.php moodle moodle/user:viewdetails, moodle/user:viewhiddendetails, moodle/course:useremail, moodle/user:update, moodle/site:accessallgroups moodle_mobile_app +210 core_user_get_users core_user_external get_users user/externallib.php moodle moodle/user:viewdetails, moodle/user:viewhiddendetails, moodle/course:useremail, moodle/user:update \N +211 core_user_get_users_by_field core_user_external get_users_by_field user/externallib.php moodle moodle/user:viewdetails, moodle/user:viewhiddendetails, moodle/course:useremail, moodle/user:update moodle_mobile_app +212 core_user_remove_user_device core_user_external remove_user_device user/externallib.php moodle moodle_mobile_app +213 core_user_update_users core_user_external update_users user/externallib.php moodle moodle/user:update \N +214 core_user_update_user_preferences core_user_external update_user_preferences user/externallib.php moodle moodle/user:editownmessageprofile, moodle/user:editmessageprofile moodle_mobile_app +215 core_user_view_user_list core_user_external view_user_list user/externallib.php moodle moodle/course:viewparticipants moodle_mobile_app +216 core_user_view_user_profile core_user_external view_user_profile user/externallib.php moodle moodle/user:viewdetails moodle_mobile_app +217 core_user_get_user_preferences core_user_external get_user_preferences user/externallib.php moodle moodle_mobile_app +218 core_user_update_picture core_user_external update_picture user/externallib.php moodle moodle/user:editownprofile, moodle/user:editprofile moodle_mobile_app +219 core_user_set_user_preferences core_user_external set_user_preferences user/externallib.php moodle moodle/site:config moodle_mobile_app +220 core_user_agree_site_policy core_user_external agree_site_policy user/externallib.php moodle moodle_mobile_app +221 core_user_get_private_files_info core_user_external get_private_files_info user/externallib.php moodle moodle/user:manageownfiles moodle_mobile_app +222 core_competency_create_competency_framework core_competency\\external create_competency_framework \N moodle moodle/competency:competencymanage \N +223 core_competency_read_competency_framework core_competency\\external read_competency_framework \N moodle moodle/competency:competencyview \N +224 core_competency_duplicate_competency_framework core_competency\\external duplicate_competency_framework \N moodle moodle/competency:competencymanage \N +225 core_competency_delete_competency_framework core_competency\\external delete_competency_framework \N moodle moodle/competency:competencymanage \N +226 core_competency_update_competency_framework core_competency\\external update_competency_framework \N moodle moodle/competency:competencymanage \N +227 core_competency_list_competency_frameworks core_competency\\external list_competency_frameworks \N moodle moodle/competency:competencyview \N +228 core_competency_count_competency_frameworks core_competency\\external count_competency_frameworks \N moodle moodle/competency:competencyview \N +229 core_competency_competency_framework_viewed core_competency\\external competency_framework_viewed \N moodle moodle/competency:competencyview \N +230 core_competency_create_competency core_competency\\external create_competency \N moodle moodle/competency:competencymanage \N +231 core_competency_read_competency core_competency\\external read_competency \N moodle moodle/competency:competencyview \N +232 core_competency_competency_viewed core_competency\\external competency_viewed \N moodle moodle/competency:competencyview moodle_mobile_app +233 core_competency_delete_competency core_competency\\external delete_competency \N moodle moodle/competency:competencymanage \N +234 core_competency_update_competency core_competency\\external update_competency \N moodle moodle/competency:competencymanage \N +235 core_competency_list_competencies core_competency\\external list_competencies \N moodle moodle/competency:competencyview \N +236 core_competency_list_competencies_in_template core_competency\\external list_competencies_in_template \N moodle moodle/competency:competencyview \N +237 core_competency_count_competencies core_competency\\external count_competencies \N moodle moodle/competency:competencyview \N +238 core_competency_count_competencies_in_template core_competency\\external count_competencies_in_template \N moodle moodle/competency:competencyview \N +239 core_competency_search_competencies core_competency\\external search_competencies \N moodle moodle/competency:competencyview \N +240 core_competency_set_parent_competency core_competency\\external set_parent_competency \N moodle moodle/competency:competencymanage \N +241 core_competency_move_up_competency core_competency\\external move_up_competency \N moodle moodle/competency:competencymanage \N +438 mod_lesson_get_pages mod_lesson_external get_pages \N mod_lesson mod/lesson:view moodle_mobile_app +242 core_competency_move_down_competency core_competency\\external move_down_competency \N moodle moodle/competency:competencymanage \N +243 core_competency_list_course_module_competencies core_competency\\external list_course_module_competencies \N moodle moodle/competency:coursecompetencyview \N +244 core_competency_count_course_module_competencies core_competency\\external count_course_module_competencies \N moodle moodle/competency:coursecompetencyview \N +245 core_competency_list_course_competencies core_competency\\external list_course_competencies \N moodle moodle/competency:coursecompetencyview moodle_mobile_app +246 core_competency_count_competencies_in_course core_competency\\external count_competencies_in_course \N moodle moodle/competency:coursecompetencyview \N +247 core_competency_count_courses_using_competency core_competency\\external count_courses_using_competency \N moodle moodle/competency:coursecompetencyview \N +248 core_competency_add_competency_to_course core_competency\\external add_competency_to_course \N moodle moodle/competency:coursecompetencymanage \N +249 core_competency_add_competency_to_template core_competency\\external add_competency_to_template \N moodle moodle/competency:templatemanage \N +250 core_competency_remove_competency_from_course core_competency\\external remove_competency_from_course \N moodle moodle/competency:coursecompetencymanage \N +251 core_competency_set_course_competency_ruleoutcome core_competency\\external set_course_competency_ruleoutcome \N moodle moodle/competency:coursecompetencymanage \N +252 core_competency_remove_competency_from_template core_competency\\external remove_competency_from_template \N moodle moodle/competency:templatemanage \N +253 core_competency_reorder_course_competency core_competency\\external reorder_course_competency \N moodle moodle/competency:coursecompetencymanage \N +254 core_competency_reorder_template_competency core_competency\\external reorder_template_competency \N moodle moodle/competency:templatemanage \N +255 core_competency_create_template core_competency\\external create_template \N moodle moodle/competency:templatemanage \N +256 core_competency_duplicate_template core_competency\\external duplicate_template \N moodle moodle/competency:templatemanage \N +257 core_competency_read_template core_competency\\external read_template \N moodle moodle/competency:templateview \N +258 core_competency_delete_template core_competency\\external delete_template \N moodle moodle/competency:templatemanage \N +259 core_competency_update_template core_competency\\external update_template \N moodle moodle/competency:templatemanage \N +260 core_competency_list_templates core_competency\\external list_templates \N moodle moodle/competency:templateview \N +261 core_competency_list_templates_using_competency core_competency\\external list_templates_using_competency \N moodle moodle/competency:templateview \N +262 core_competency_count_templates core_competency\\external count_templates \N moodle moodle/competency:templateview \N +263 core_competency_count_templates_using_competency core_competency\\external count_templates_using_competency \N moodle moodle/competency:templateview \N +264 core_competency_create_plan core_competency\\external create_plan \N moodle moodle/competency:planmanage \N +265 core_competency_update_plan core_competency\\external update_plan \N moodle moodle/competency:planmanage \N +266 core_competency_complete_plan core_competency\\external complete_plan \N moodle moodle/competency:planmanage \N +267 core_competency_reopen_plan core_competency\\external reopen_plan \N moodle moodle/competency:planmanage \N +268 core_competency_read_plan core_competency\\external read_plan \N moodle moodle/competency:planviewown \N +269 core_competency_delete_plan core_competency\\external delete_plan \N moodle moodle/competency:planmanage \N +270 core_competency_list_user_plans core_competency\\external list_user_plans \N moodle moodle/competency:planviewown \N +271 core_competency_list_plan_competencies core_competency\\external list_plan_competencies \N moodle moodle/competency:planviewown \N +272 core_competency_add_competency_to_plan core_competency\\external add_competency_to_plan \N moodle moodle/competency:planmanage \N +273 core_competency_remove_competency_from_plan core_competency\\external remove_competency_from_plan \N moodle moodle/competency:planmanage \N +274 core_competency_reorder_plan_competency core_competency\\external reorder_plan_competency \N moodle moodle/competency:planmanage \N +275 core_competency_plan_request_review core_competency\\external plan_request_review \N moodle moodle/competency:planmanagedraft \N +276 core_competency_plan_start_review core_competency\\external plan_start_review \N moodle moodle/competency:planmanage \N +277 core_competency_plan_stop_review core_competency\\external plan_stop_review \N moodle moodle/competency:planmanage \N +278 core_competency_plan_cancel_review_request core_competency\\external plan_cancel_review_request \N moodle moodle/competency:planmanagedraft \N +279 core_competency_approve_plan core_competency\\external approve_plan \N moodle moodle/competency:planmanage \N +280 core_competency_unapprove_plan core_competency\\external unapprove_plan \N moodle moodle/competency:planmanage \N +281 core_competency_template_has_related_data core_competency\\external template_has_related_data \N moodle moodle/competency:templateview \N +282 core_competency_get_scale_values core_competency\\external get_scale_values \N moodle moodle/competency:competencymanage moodle_mobile_app +283 core_competency_add_related_competency core_competency\\external add_related_competency \N moodle moodle/competency:competencymanage \N +284 core_competency_remove_related_competency core_competency\\external remove_related_competency \N moodle moodle/competency:competencymanage \N +285 core_competency_read_user_evidence core_competency\\external read_user_evidence \N moodle moodle/competency:userevidenceview \N +286 core_competency_delete_user_evidence core_competency\\external delete_user_evidence \N moodle moodle/competency:userevidencemanageown \N +287 core_competency_create_user_evidence_competency core_competency\\external create_user_evidence_competency \N moodle moodle/competency:userevidencemanageown, moodle/competency:competencyview \N +288 core_competency_delete_user_evidence_competency core_competency\\external delete_user_evidence_competency \N moodle moodle/competency:userevidencemanageown \N +289 core_competency_user_competency_cancel_review_request core_competency\\external user_competency_cancel_review_request \N moodle moodle/competency:userevidencemanageown \N +290 core_competency_user_competency_request_review core_competency\\external user_competency_request_review \N moodle moodle/competency:userevidencemanageown \N +291 core_competency_user_competency_start_review core_competency\\external user_competency_start_review \N moodle moodle/competency:competencygrade \N +292 core_competency_user_competency_stop_review core_competency\\external user_competency_stop_review \N moodle moodle/competency:competencygrade \N +293 core_competency_user_competency_viewed core_competency\\external user_competency_viewed \N moodle moodle/competency:usercompetencyview moodle_mobile_app +294 core_competency_user_competency_viewed_in_plan core_competency\\external user_competency_viewed_in_plan \N moodle moodle/competency:usercompetencyview moodle_mobile_app +295 core_competency_user_competency_viewed_in_course core_competency\\external user_competency_viewed_in_course \N moodle moodle/competency:usercompetencyview moodle_mobile_app +296 core_competency_user_competency_plan_viewed core_competency\\external user_competency_plan_viewed \N moodle moodle/competency:usercompetencyview moodle_mobile_app +297 core_competency_grade_competency core_competency\\external grade_competency \N moodle moodle/competency:competencygrade \N +298 core_competency_grade_competency_in_plan core_competency\\external grade_competency_in_plan \N moodle moodle/competency:competencygrade \N +299 core_competency_grade_competency_in_course core_competency\\external grade_competency_in_course \N moodle moodle/competency:competencygrade moodle_mobile_app +300 core_competency_unlink_plan_from_template core_competency\\external unlink_plan_from_template \N moodle moodle/competency:planmanage \N +301 core_competency_template_viewed core_competency\\external template_viewed \N moodle moodle/competency:templateview \N +302 core_competency_request_review_of_user_evidence_linked_competencies core_competency\\external request_review_of_user_evidence_linked_competencies \N moodle moodle/competency:userevidencemanageown \N +303 core_competency_update_course_competency_settings core_competency\\external update_course_competency_settings \N moodle moodle/competency:coursecompetencyconfigure \N +304 core_competency_delete_evidence core_competency\\external delete_evidence \N moodle moodle/competency:evidencedelete moodle_mobile_app +305 core_webservice_get_site_info core_webservice_external get_site_info webservice/externallib.php moodle moodle_mobile_app +306 core_block_get_course_blocks core_block_external get_course_blocks \N moodle moodle_mobile_app +307 core_block_get_dashboard_blocks core_block_external get_dashboard_blocks \N moodle moodle_mobile_app +308 core_filters_get_available_in_context core_filters\\external get_available_in_context \N moodle moodle_mobile_app +309 core_customfield_delete_field core_customfield_external delete_field customfield/externallib.php moodle \N +310 core_customfield_reload_template core_customfield_external reload_template customfield/externallib.php moodle \N +311 core_customfield_create_category core_customfield_external create_category customfield/externallib.php moodle \N +312 core_customfield_delete_category core_customfield_external delete_category customfield/externallib.php moodle \N +313 core_customfield_move_field core_customfield_external move_field customfield/externallib.php moodle \N +314 core_customfield_move_category core_customfield_external move_category customfield/externallib.php moodle \N +315 core_h5p_get_trusted_h5p_file core_h5p\\external get_trusted_h5p_file \N moodle moodle_mobile_app +316 core_table_get_dynamic_table_content core_table\\external\\dynamic\\get execute \N moodle moodle_mobile_app +317 core_xapi_statement_post core_xapi\\external\\post_statement execute \N moodle moodle_mobile_app +318 core_contentbank_delete_content core_contentbank\\external\\delete_content execute \N moodle moodle/contentbank:deleteanycontent \N +319 core_contentbank_rename_content core_contentbank\\external\\rename_content execute \N moodle moodle/contentbank:manageowncontent \N +320 core_create_userfeedback_action_record core\\external\\record_userfeedback_action execute \N moodle \N +321 mod_assign_copy_previous_attempt mod_assign_external copy_previous_attempt mod/assign/externallib.php mod_assign mod/assign:view, mod/assign:submit \N +322 mod_assign_get_grades mod_assign_external get_grades mod/assign/externallib.php mod_assign moodle_mobile_app +323 mod_assign_get_assignments mod_assign_external get_assignments mod/assign/externallib.php mod_assign moodle_mobile_app +324 mod_assign_get_submissions mod_assign_external get_submissions mod/assign/externallib.php mod_assign moodle_mobile_app +325 mod_assign_get_user_flags mod_assign_external get_user_flags mod/assign/externallib.php mod_assign moodle_mobile_app +326 mod_assign_set_user_flags mod_assign_external set_user_flags mod/assign/externallib.php mod_assign mod/assign:grade moodle_mobile_app +327 mod_assign_get_user_mappings mod_assign_external get_user_mappings mod/assign/externallib.php mod_assign moodle_mobile_app +328 mod_assign_revert_submissions_to_draft mod_assign_external revert_submissions_to_draft mod/assign/externallib.php mod_assign moodle_mobile_app +329 mod_assign_lock_submissions mod_assign_external lock_submissions mod/assign/externallib.php mod_assign moodle_mobile_app +330 mod_assign_unlock_submissions mod_assign_external unlock_submissions mod/assign/externallib.php mod_assign moodle_mobile_app +331 mod_assign_save_submission mod_assign_external save_submission mod/assign/externallib.php mod_assign moodle_mobile_app +332 mod_assign_submit_for_grading mod_assign_external submit_for_grading mod/assign/externallib.php mod_assign moodle_mobile_app +333 mod_assign_save_grade mod_assign_external save_grade mod/assign/externallib.php mod_assign moodle_mobile_app +334 mod_assign_save_grades mod_assign_external save_grades mod/assign/externallib.php mod_assign moodle_mobile_app +335 mod_assign_save_user_extensions mod_assign_external save_user_extensions mod/assign/externallib.php mod_assign moodle_mobile_app +336 mod_assign_reveal_identities mod_assign_external reveal_identities mod/assign/externallib.php mod_assign moodle_mobile_app +337 mod_assign_view_grading_table mod_assign_external view_grading_table mod/assign/externallib.php mod_assign mod/assign:view, mod/assign:viewgrades moodle_mobile_app +338 mod_assign_view_submission_status mod_assign_external view_submission_status mod/assign/externallib.php mod_assign mod/assign:view moodle_mobile_app +339 mod_assign_get_submission_status mod_assign_external get_submission_status mod/assign/externallib.php mod_assign mod/assign:view moodle_mobile_app +340 mod_assign_list_participants mod_assign_external list_participants mod/assign/externallib.php mod_assign mod/assign:view, mod/assign:viewgrades moodle_mobile_app +341 mod_assign_submit_grading_form mod_assign_external submit_grading_form mod/assign/externallib.php mod_assign mod/assign:grade moodle_mobile_app +342 mod_assign_get_participant mod_assign_external get_participant mod/assign/externallib.php mod_assign mod/assign:view, mod/assign:viewgrades moodle_mobile_app +343 mod_assign_view_assign mod_assign_external view_assign mod/assign/externallib.php mod_assign mod/assign:view moodle_mobile_app +344 mod_book_view_book mod_book_external view_book \N mod_book mod/book:read moodle_mobile_app +345 mod_book_get_books_by_courses mod_book_external get_books_by_courses \N mod_book moodle_mobile_app +346 mod_chat_login_user mod_chat_external login_user \N mod_chat mod/chat:chat moodle_mobile_app +347 mod_chat_get_chat_users mod_chat_external get_chat_users \N mod_chat mod/chat:chat moodle_mobile_app +348 mod_chat_send_chat_message mod_chat_external send_chat_message \N mod_chat mod/chat:chat moodle_mobile_app +349 mod_chat_get_chat_latest_messages mod_chat_external get_chat_latest_messages \N mod_chat mod/chat:chat moodle_mobile_app +350 mod_chat_view_chat mod_chat_external view_chat \N mod_chat mod/chat:chat moodle_mobile_app +351 mod_chat_get_chats_by_courses mod_chat_external get_chats_by_courses \N mod_chat moodle_mobile_app +352 mod_chat_get_sessions mod_chat_external get_sessions \N mod_chat moodle_mobile_app +353 mod_chat_get_session_messages mod_chat_external get_session_messages \N mod_chat moodle_mobile_app +354 mod_choice_get_choice_results mod_choice_external get_choice_results \N mod_choice moodle_mobile_app +355 mod_choice_get_choice_options mod_choice_external get_choice_options \N mod_choice mod/choice:choose moodle_mobile_app +356 mod_choice_submit_choice_response mod_choice_external submit_choice_response \N mod_choice mod/choice:choose moodle_mobile_app +357 mod_choice_view_choice mod_choice_external view_choice \N mod_choice moodle_mobile_app +358 mod_choice_get_choices_by_courses mod_choice_external get_choices_by_courses \N mod_choice moodle_mobile_app +359 mod_choice_delete_choice_responses mod_choice_external delete_choice_responses \N mod_choice mod/choice:choose moodle_mobile_app +360 mod_data_get_databases_by_courses mod_data_external get_databases_by_courses \N mod_data mod/data:viewentry moodle_mobile_app +361 mod_data_view_database mod_data_external view_database \N mod_data mod/data:viewentry moodle_mobile_app +362 mod_data_get_data_access_information mod_data_external get_data_access_information \N mod_data mod/data:viewentry moodle_mobile_app +363 mod_data_get_entries mod_data_external get_entries \N mod_data mod/data:viewentry moodle_mobile_app +364 mod_data_get_entry mod_data_external get_entry \N mod_data mod/data:viewentry moodle_mobile_app +365 mod_data_get_fields mod_data_external get_fields \N mod_data mod/data:viewentry moodle_mobile_app +366 mod_data_search_entries mod_data_external search_entries \N mod_data mod/data:viewentry moodle_mobile_app +367 mod_data_approve_entry mod_data_external approve_entry \N mod_data mod/data:approve moodle_mobile_app +368 mod_data_delete_entry mod_data_external delete_entry \N mod_data mod/data:manageentries moodle_mobile_app +369 mod_data_add_entry mod_data_external add_entry \N mod_data mod/data:writeentry moodle_mobile_app +370 mod_data_update_entry mod_data_external update_entry \N mod_data mod/data:writeentry moodle_mobile_app +371 mod_feedback_get_feedbacks_by_courses mod_feedback_external get_feedbacks_by_courses \N mod_feedback mod/feedback:view moodle_mobile_app +372 mod_feedback_get_feedback_access_information mod_feedback_external get_feedback_access_information \N mod_feedback mod/feedback:view moodle_mobile_app +373 mod_feedback_view_feedback mod_feedback_external view_feedback \N mod_feedback mod/feedback:view moodle_mobile_app +374 mod_feedback_get_current_completed_tmp mod_feedback_external get_current_completed_tmp \N mod_feedback mod/feedback:view moodle_mobile_app +375 mod_feedback_get_items mod_feedback_external get_items \N mod_feedback mod/feedback:view moodle_mobile_app +376 mod_feedback_launch_feedback mod_feedback_external launch_feedback \N mod_feedback mod/feedback:complete moodle_mobile_app +377 mod_feedback_get_page_items mod_feedback_external get_page_items \N mod_feedback mod/feedback:complete moodle_mobile_app +378 mod_feedback_process_page mod_feedback_external process_page \N mod_feedback mod/feedback:complete moodle_mobile_app +379 mod_feedback_get_analysis mod_feedback_external get_analysis \N mod_feedback mod/feedback:viewanalysepage moodle_mobile_app +380 mod_feedback_get_unfinished_responses mod_feedback_external get_unfinished_responses \N mod_feedback mod/feedback:view moodle_mobile_app +381 mod_feedback_get_finished_responses mod_feedback_external get_finished_responses \N mod_feedback mod/feedback:view moodle_mobile_app +382 mod_feedback_get_non_respondents mod_feedback_external get_non_respondents \N mod_feedback mod/feedback:viewreports moodle_mobile_app +383 mod_feedback_get_responses_analysis mod_feedback_external get_responses_analysis \N mod_feedback mod/feedback:viewreports moodle_mobile_app +384 mod_feedback_get_last_completed mod_feedback_external get_last_completed \N mod_feedback mod/feedback:view moodle_mobile_app +385 mod_folder_view_folder mod_folder_external view_folder \N mod_folder mod/folder:view moodle_mobile_app +386 mod_folder_get_folders_by_courses mod_folder_external get_folders_by_courses \N mod_folder mod/folder:view moodle_mobile_app +387 mod_forum_get_forums_by_courses mod_forum_external get_forums_by_courses mod/forum/externallib.php mod_forum mod/forum:viewdiscussion moodle_mobile_app +388 mod_forum_get_discussion_posts mod_forum_external get_discussion_posts mod/forum/externallib.php mod_forum mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting moodle_mobile_app +389 mod_forum_get_forum_discussion_posts mod_forum_external get_forum_discussion_posts mod/forum/externallib.php mod_forum mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting moodle_mobile_app +594 tool_mobile_get_config tool_mobile\\external get_config \N tool_mobile moodle_mobile_app +390 mod_forum_get_forum_discussions_paginated mod_forum_external get_forum_discussions_paginated mod/forum/externallib.php mod_forum mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting moodle_mobile_app +391 mod_forum_get_forum_discussions mod_forum_external get_forum_discussions mod/forum/externallib.php mod_forum mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting moodle_mobile_app +392 mod_forum_view_forum mod_forum_external view_forum mod/forum/externallib.php mod_forum mod/forum:viewdiscussion moodle_mobile_app +393 mod_forum_view_forum_discussion mod_forum_external view_forum_discussion mod/forum/externallib.php mod_forum mod/forum:viewdiscussion moodle_mobile_app +394 mod_forum_add_discussion_post mod_forum_external add_discussion_post mod/forum/externallib.php mod_forum mod/forum:replypost moodle_mobile_app +395 mod_forum_add_discussion mod_forum_external add_discussion mod/forum/externallib.php mod_forum mod/forum:startdiscussion moodle_mobile_app +396 mod_forum_can_add_discussion mod_forum_external can_add_discussion mod/forum/externallib.php mod_forum moodle_mobile_app +397 mod_forum_get_forum_access_information mod_forum_external get_forum_access_information \N mod_forum moodle_mobile_app +398 mod_forum_set_subscription_state mod_forum_external set_subscription_state mod/forum/externallib.php mod_forum moodle_mobile_app +399 mod_forum_set_lock_state mod_forum_external set_lock_state mod/forum/externallib.php mod_forum moodle/course:manageactivities moodle_mobile_app +400 mod_forum_toggle_favourite_state mod_forum_external toggle_favourite_state mod/forum/externallib.php mod_forum moodle_mobile_app +401 mod_forum_set_pin_state mod_forum_external set_pin_state mod/forum/externallib.php mod_forum moodle_mobile_app +402 mod_forum_delete_post mod_forum_external delete_post mod/forum/externallib.php mod_forum moodle_mobile_app +403 mod_forum_get_discussion_posts_by_userid mod_forum_external get_discussion_posts_by_userid mod/forum/externallib.php mod_forum mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting \N +404 mod_forum_get_discussion_post mod_forum_external get_discussion_post mod/forum/externallib.php mod_forum moodle_mobile_app +405 mod_forum_prepare_draft_area_for_post mod_forum_external prepare_draft_area_for_post mod/forum/externallib.php mod_forum moodle_mobile_app +406 mod_forum_update_discussion_post mod_forum_external update_discussion_post mod/forum/externallib.php mod_forum moodle_mobile_app +407 mod_glossary_get_glossaries_by_courses mod_glossary_external get_glossaries_by_courses \N mod_glossary mod/glossary:view moodle_mobile_app +408 mod_glossary_view_glossary mod_glossary_external view_glossary \N mod_glossary mod/glossary:view moodle_mobile_app +409 mod_glossary_view_entry mod_glossary_external view_entry \N mod_glossary mod/glossary:view moodle_mobile_app +410 mod_glossary_get_entries_by_letter mod_glossary_external get_entries_by_letter \N mod_glossary mod/glossary:view moodle_mobile_app +411 mod_glossary_get_entries_by_date mod_glossary_external get_entries_by_date \N mod_glossary mod/glossary:view moodle_mobile_app +412 mod_glossary_get_categories mod_glossary_external get_categories \N mod_glossary mod/glossary:view moodle_mobile_app +413 mod_glossary_get_entries_by_category mod_glossary_external get_entries_by_category \N mod_glossary mod/glossary:view moodle_mobile_app +414 mod_glossary_get_authors mod_glossary_external get_authors \N mod_glossary mod/glossary:view moodle_mobile_app +415 mod_glossary_get_entries_by_author mod_glossary_external get_entries_by_author \N mod_glossary mod/glossary:view moodle_mobile_app +416 mod_glossary_get_entries_by_author_id mod_glossary_external get_entries_by_author_id \N mod_glossary mod/glossary:view moodle_mobile_app +417 mod_glossary_get_entries_by_search mod_glossary_external get_entries_by_search \N mod_glossary mod/glossary:view moodle_mobile_app +418 mod_glossary_get_entries_by_term mod_glossary_external get_entries_by_term \N mod_glossary mod/glossary:view moodle_mobile_app +419 mod_glossary_get_entries_to_approve mod_glossary_external get_entries_to_approve \N mod_glossary mod/glossary:approve moodle_mobile_app +420 mod_glossary_get_entry_by_id mod_glossary_external get_entry_by_id \N mod_glossary mod/glossary:view moodle_mobile_app +421 mod_glossary_add_entry mod_glossary_external add_entry \N mod_glossary mod/glossary:write moodle_mobile_app +422 mod_h5pactivity_get_h5pactivity_access_information mod_h5pactivity\\external\\get_h5pactivity_access_information execute \N mod_h5pactivity mod/h5pactivity:view moodle_mobile_app +423 mod_h5pactivity_view_h5pactivity mod_h5pactivity\\external\\view_h5pactivity execute \N mod_h5pactivity mod/h5pactivity:view moodle_mobile_app +424 mod_h5pactivity_get_attempts mod_h5pactivity\\external\\get_attempts execute \N mod_h5pactivity mod/h5pactivity:view moodle_mobile_app +425 mod_h5pactivity_get_results mod_h5pactivity\\external\\get_results execute \N mod_h5pactivity mod/h5pactivity:view moodle_mobile_app +426 mod_h5pactivity_get_h5pactivities_by_courses mod_h5pactivity\\external\\get_h5pactivities_by_courses execute \N mod_h5pactivity mod/h5pactivity:view moodle_mobile_app +427 mod_imscp_view_imscp mod_imscp_external view_imscp \N mod_imscp mod/imscp:view moodle_mobile_app +428 mod_imscp_get_imscps_by_courses mod_imscp_external get_imscps_by_courses \N mod_imscp mod/imscp:view moodle_mobile_app +429 mod_label_get_labels_by_courses mod_label_external get_labels_by_courses \N mod_label mod/label:view moodle_mobile_app +430 mod_lesson_get_lessons_by_courses mod_lesson_external get_lessons_by_courses \N mod_lesson mod/lesson:view moodle_mobile_app +431 mod_lesson_get_lesson_access_information mod_lesson_external get_lesson_access_information \N mod_lesson mod/lesson:view moodle_mobile_app +432 mod_lesson_view_lesson mod_lesson_external view_lesson \N mod_lesson mod/lesson:view moodle_mobile_app +433 mod_lesson_get_questions_attempts mod_lesson_external get_questions_attempts \N mod_lesson mod/lesson:view moodle_mobile_app +434 mod_lesson_get_user_grade mod_lesson_external get_user_grade \N mod_lesson mod/lesson:view moodle_mobile_app +435 mod_lesson_get_user_attempt_grade mod_lesson_external get_user_attempt_grade \N mod_lesson mod/lesson:view moodle_mobile_app +436 mod_lesson_get_content_pages_viewed mod_lesson_external get_content_pages_viewed \N mod_lesson mod/lesson:view moodle_mobile_app +437 mod_lesson_get_user_timers mod_lesson_external get_user_timers \N mod_lesson mod/lesson:view moodle_mobile_app +439 mod_lesson_launch_attempt mod_lesson_external launch_attempt \N mod_lesson mod/lesson:view moodle_mobile_app +440 mod_lesson_get_page_data mod_lesson_external get_page_data \N mod_lesson mod/lesson:view moodle_mobile_app +441 mod_lesson_process_page mod_lesson_external process_page \N mod_lesson mod/lesson:view moodle_mobile_app +442 mod_lesson_finish_attempt mod_lesson_external finish_attempt \N mod_lesson mod/lesson:view moodle_mobile_app +443 mod_lesson_get_attempts_overview mod_lesson_external get_attempts_overview \N mod_lesson mod/lesson:viewreports moodle_mobile_app +444 mod_lesson_get_user_attempt mod_lesson_external get_user_attempt \N mod_lesson mod/lesson:viewreports moodle_mobile_app +445 mod_lesson_get_pages_possible_jumps mod_lesson_external get_pages_possible_jumps \N mod_lesson mod/lesson:view moodle_mobile_app +446 mod_lesson_get_lesson mod_lesson_external get_lesson \N mod_lesson mod/lesson:view moodle_mobile_app +447 mod_lti_get_tool_launch_data mod_lti_external get_tool_launch_data \N mod_lti mod/lti:view moodle_mobile_app +448 mod_lti_get_ltis_by_courses mod_lti_external get_ltis_by_courses \N mod_lti mod/lti:view moodle_mobile_app +449 mod_lti_view_lti mod_lti_external view_lti \N mod_lti mod/lti:view moodle_mobile_app +450 mod_lti_get_tool_proxies mod_lti_external get_tool_proxies \N mod_lti moodle/site:config \N +451 mod_lti_create_tool_proxy mod_lti_external create_tool_proxy \N mod_lti moodle/site:config \N +452 mod_lti_delete_tool_proxy mod_lti_external delete_tool_proxy \N mod_lti moodle/site:config \N +453 mod_lti_get_tool_proxy_registration_request mod_lti_external get_tool_proxy_registration_request \N mod_lti moodle/site:config \N +454 mod_lti_get_tool_types mod_lti_external get_tool_types \N mod_lti moodle/site:config \N +455 mod_lti_create_tool_type mod_lti_external create_tool_type \N mod_lti moodle/site:config \N +456 mod_lti_update_tool_type mod_lti_external update_tool_type \N mod_lti moodle/site:config \N +457 mod_lti_delete_tool_type mod_lti_external delete_tool_type \N mod_lti moodle/site:config \N +458 mod_lti_is_cartridge mod_lti_external is_cartridge \N mod_lti moodle/site:config \N +459 mod_page_view_page mod_page_external view_page \N mod_page mod/page:view moodle_mobile_app +460 mod_page_get_pages_by_courses mod_page_external get_pages_by_courses \N mod_page mod/page:view moodle_mobile_app +461 mod_quiz_get_quizzes_by_courses mod_quiz_external get_quizzes_by_courses \N mod_quiz mod/quiz:view moodle_mobile_app +462 mod_quiz_view_quiz mod_quiz_external view_quiz \N mod_quiz mod/quiz:view moodle_mobile_app +463 mod_quiz_get_user_attempts mod_quiz_external get_user_attempts \N mod_quiz mod/quiz:view moodle_mobile_app +464 mod_quiz_get_user_best_grade mod_quiz_external get_user_best_grade \N mod_quiz mod/quiz:view moodle_mobile_app +465 mod_quiz_get_combined_review_options mod_quiz_external get_combined_review_options \N mod_quiz mod/quiz:view moodle_mobile_app +466 mod_quiz_start_attempt mod_quiz_external start_attempt \N mod_quiz mod/quiz:attempt moodle_mobile_app +467 mod_quiz_get_attempt_data mod_quiz_external get_attempt_data \N mod_quiz mod/quiz:attempt moodle_mobile_app +468 mod_quiz_get_attempt_summary mod_quiz_external get_attempt_summary \N mod_quiz mod/quiz:attempt moodle_mobile_app +469 mod_quiz_save_attempt mod_quiz_external save_attempt \N mod_quiz mod/quiz:attempt moodle_mobile_app +470 mod_quiz_process_attempt mod_quiz_external process_attempt \N mod_quiz mod/quiz:attempt moodle_mobile_app +471 mod_quiz_get_attempt_review mod_quiz_external get_attempt_review \N mod_quiz mod/quiz:reviewmyattempts moodle_mobile_app +472 mod_quiz_view_attempt mod_quiz_external view_attempt \N mod_quiz mod/quiz:attempt moodle_mobile_app +473 mod_quiz_view_attempt_summary mod_quiz_external view_attempt_summary \N mod_quiz mod/quiz:attempt moodle_mobile_app +474 mod_quiz_view_attempt_review mod_quiz_external view_attempt_review \N mod_quiz mod/quiz:reviewmyattempts moodle_mobile_app +475 mod_quiz_get_quiz_feedback_for_grade mod_quiz_external get_quiz_feedback_for_grade \N mod_quiz mod/quiz:view moodle_mobile_app +476 mod_quiz_get_quiz_access_information mod_quiz_external get_quiz_access_information \N mod_quiz mod/quiz:view moodle_mobile_app +477 mod_quiz_get_attempt_access_information mod_quiz_external get_attempt_access_information \N mod_quiz mod/quiz:view moodle_mobile_app +478 mod_quiz_get_quiz_required_qtypes mod_quiz_external get_quiz_required_qtypes \N mod_quiz mod/quiz:view moodle_mobile_app +479 mod_resource_view_resource mod_resource_external view_resource \N mod_resource mod/resource:view moodle_mobile_app +480 mod_resource_get_resources_by_courses mod_resource_external get_resources_by_courses \N mod_resource mod/resource:view moodle_mobile_app +481 mod_scorm_view_scorm mod_scorm_external view_scorm \N mod_scorm moodle_mobile_app +482 mod_scorm_get_scorm_attempt_count mod_scorm_external get_scorm_attempt_count \N mod_scorm moodle_mobile_app +483 mod_scorm_get_scorm_scoes mod_scorm_external get_scorm_scoes \N mod_scorm moodle_mobile_app +484 mod_scorm_get_scorm_user_data mod_scorm_external get_scorm_user_data \N mod_scorm moodle_mobile_app +485 mod_scorm_insert_scorm_tracks mod_scorm_external insert_scorm_tracks \N mod_scorm mod/scorm:savetrack moodle_mobile_app +486 mod_scorm_get_scorm_sco_tracks mod_scorm_external get_scorm_sco_tracks \N mod_scorm moodle_mobile_app +487 mod_scorm_get_scorms_by_courses mod_scorm_external get_scorms_by_courses \N mod_scorm moodle_mobile_app +488 mod_scorm_launch_sco mod_scorm_external launch_sco \N mod_scorm moodle_mobile_app +489 mod_scorm_get_scorm_access_information mod_scorm_external get_scorm_access_information \N mod_scorm moodle_mobile_app +490 mod_survey_get_surveys_by_courses mod_survey_external get_surveys_by_courses \N mod_survey moodle_mobile_app +491 mod_survey_view_survey mod_survey_external view_survey \N mod_survey mod/survey:participate moodle_mobile_app +492 mod_survey_get_questions mod_survey_external get_questions \N mod_survey mod/survey:participate moodle_mobile_app +493 mod_survey_submit_answers mod_survey_external submit_answers \N mod_survey mod/survey:participate moodle_mobile_app +494 mod_url_view_url mod_url_external view_url \N mod_url mod/url:view moodle_mobile_app +495 mod_url_get_urls_by_courses mod_url_external get_urls_by_courses \N mod_url mod/url:view moodle_mobile_app +496 mod_wiki_get_wikis_by_courses mod_wiki_external get_wikis_by_courses \N mod_wiki mod/wiki:viewpage moodle_mobile_app +497 mod_wiki_view_wiki mod_wiki_external view_wiki \N mod_wiki mod/wiki:viewpage moodle_mobile_app +498 mod_wiki_view_page mod_wiki_external view_page \N mod_wiki mod/wiki:viewpage moodle_mobile_app +499 mod_wiki_get_subwikis mod_wiki_external get_subwikis \N mod_wiki mod/wiki:viewpage moodle_mobile_app +500 mod_wiki_get_subwiki_pages mod_wiki_external get_subwiki_pages \N mod_wiki mod/wiki:viewpage moodle_mobile_app +501 mod_wiki_get_subwiki_files mod_wiki_external get_subwiki_files \N mod_wiki mod/wiki:viewpage moodle_mobile_app +502 mod_wiki_get_page_contents mod_wiki_external get_page_contents \N mod_wiki mod/wiki:viewpage moodle_mobile_app +503 mod_wiki_get_page_for_editing mod_wiki_external get_page_for_editing \N mod_wiki mod/wiki:editpage moodle_mobile_app +504 mod_wiki_new_page mod_wiki_external new_page \N mod_wiki mod/wiki:editpage moodle_mobile_app +505 mod_wiki_edit_page mod_wiki_external edit_page \N mod_wiki mod/wiki:editpage moodle_mobile_app +506 mod_workshop_get_workshops_by_courses mod_workshop_external get_workshops_by_courses \N mod_workshop mod/workshop:view moodle_mobile_app +507 mod_workshop_get_workshop_access_information mod_workshop_external get_workshop_access_information \N mod_workshop mod/workshop:view moodle_mobile_app +508 mod_workshop_get_user_plan mod_workshop_external get_user_plan \N mod_workshop mod/workshop:view moodle_mobile_app +509 mod_workshop_view_workshop mod_workshop_external view_workshop \N mod_workshop mod/workshop:view moodle_mobile_app +510 mod_workshop_add_submission mod_workshop_external add_submission \N mod_workshop mod/workshop:submit moodle_mobile_app +511 mod_workshop_update_submission mod_workshop_external update_submission \N mod_workshop mod/workshop:submit moodle_mobile_app +512 mod_workshop_delete_submission mod_workshop_external delete_submission \N mod_workshop mod/workshop:submit moodle_mobile_app +513 mod_workshop_get_submissions mod_workshop_external get_submissions \N mod_workshop moodle_mobile_app +514 mod_workshop_get_submission mod_workshop_external get_submission \N mod_workshop moodle_mobile_app +515 mod_workshop_get_submission_assessments mod_workshop_external get_submission_assessments \N mod_workshop moodle_mobile_app +516 mod_workshop_get_assessment mod_workshop_external get_assessment \N mod_workshop moodle_mobile_app +517 mod_workshop_get_assessment_form_definition mod_workshop_external get_assessment_form_definition \N mod_workshop moodle_mobile_app +518 mod_workshop_get_reviewer_assessments mod_workshop_external get_reviewer_assessments \N mod_workshop moodle_mobile_app +519 mod_workshop_update_assessment mod_workshop_external update_assessment \N mod_workshop moodle_mobile_app +520 mod_workshop_get_grades mod_workshop_external get_grades \N mod_workshop moodle_mobile_app +521 mod_workshop_evaluate_assessment mod_workshop_external evaluate_assessment \N mod_workshop moodle_mobile_app +522 mod_workshop_get_grades_report mod_workshop_external get_grades_report \N mod_workshop moodle_mobile_app +523 mod_workshop_view_submission mod_workshop_external view_submission \N mod_workshop mod/workshop:view moodle_mobile_app +524 mod_workshop_evaluate_submission mod_workshop_external evaluate_submission \N mod_workshop moodle_mobile_app +525 auth_email_get_signup_settings auth_email_external get_signup_settings \N auth_email \N +526 auth_email_signup_user auth_email_external signup_user \N auth_email \N +527 enrol_guest_get_instance_info enrol_guest_external get_instance_info \N enrol_guest moodle_mobile_app +528 enrol_manual_enrol_users enrol_manual_external enrol_users enrol/manual/externallib.php enrol_manual enrol/manual:enrol \N +529 enrol_manual_unenrol_users enrol_manual_external unenrol_users enrol/manual/externallib.php enrol_manual enrol/manual:unenrol \N +530 enrol_self_get_instance_info enrol_self_external get_instance_info enrol/self/externallib.php enrol_self moodle_mobile_app +531 enrol_self_enrol_user enrol_self_external enrol_user enrol/self/externallib.php enrol_self moodle_mobile_app +532 message_airnotifier_is_system_configured message_airnotifier_external is_system_configured message/output/airnotifier/externallib.php message_airnotifier moodle_mobile_app +533 message_airnotifier_are_notification_preferences_configured message_airnotifier_external are_notification_preferences_configured message/output/airnotifier/externallib.php message_airnotifier moodle_mobile_app +534 message_airnotifier_get_user_devices message_airnotifier_external get_user_devices message/output/airnotifier/externallib.php message_airnotifier moodle_mobile_app +535 message_airnotifier_enable_device message_airnotifier_external enable_device message/output/airnotifier/externallib.php message_airnotifier message/airnotifier:managedevice moodle_mobile_app +536 message_popup_get_popup_notifications message_popup_external get_popup_notifications message/output/popup/externallib.php message_popup moodle_mobile_app +537 message_popup_get_unread_popup_notification_count message_popup_external get_unread_popup_notification_count message/output/popup/externallib.php message_popup moodle_mobile_app +538 block_recentlyaccesseditems_get_recent_items block_recentlyaccesseditems\\external get_recent_items \N block_recentlyaccesseditems moodle_mobile_app +539 block_starredcourses_get_starred_courses block_starredcourses_external get_starred_courses block/starredcourses/classes/external.php block_starredcourses moodle_mobile_app +540 report_competency_data_for_report report_competency\\external data_for_report \N report_competency moodle/competency:coursecompetencyview \N +541 report_insights_set_notuseful_prediction report_insights\\external set_notuseful_prediction \N report_insights moodle_mobile_app +542 report_insights_set_fixed_prediction report_insights\\external set_fixed_prediction \N report_insights moodle_mobile_app +543 report_insights_action_executed report_insights\\external action_executed \N report_insights moodle_mobile_app +544 gradereport_overview_get_course_grades gradereport_overview_external get_course_grades \N gradereport_overview moodle_mobile_app +593 tool_mobile_get_public_config tool_mobile\\external get_public_config \N tool_mobile moodle_mobile_app +545 gradereport_overview_view_grade_report gradereport_overview_external view_grade_report \N gradereport_overview gradereport/overview:view moodle_mobile_app +546 gradereport_user_get_grades_table gradereport_user_external get_grades_table grade/report/user/externallib.php gradereport_user gradereport/user:view moodle_mobile_app +547 gradereport_user_view_grade_report gradereport_user_external view_grade_report grade/report/user/externallib.php gradereport_user gradereport/user:view moodle_mobile_app +548 gradereport_user_get_grade_items gradereport_user_external get_grade_items grade/report/user/externallib.php gradereport_user gradereport/user:view moodle_mobile_app +549 gradingform_guide_grader_gradingpanel_fetch gradingform_guide\\grades\\grader\\gradingpanel\\external\\fetch execute \N gradingform_guide \N +550 gradingform_guide_grader_gradingpanel_store gradingform_guide\\grades\\grader\\gradingpanel\\external\\store execute \N gradingform_guide \N +551 gradingform_rubric_grader_gradingpanel_fetch gradingform_rubric\\grades\\grader\\gradingpanel\\external\\fetch execute \N gradingform_rubric \N +552 gradingform_rubric_grader_gradingpanel_store gradingform_rubric\\grades\\grader\\gradingpanel\\external\\store execute \N gradingform_rubric \N +553 tool_analytics_potential_contexts tool_analytics\\external potential_contexts \N tool_analytics moodle_mobile_app +554 tool_dataprivacy_cancel_data_request tool_dataprivacy\\external cancel_data_request \N tool_dataprivacy \N +555 tool_dataprivacy_contact_dpo tool_dataprivacy\\external contact_dpo \N tool_dataprivacy \N +556 tool_dataprivacy_mark_complete tool_dataprivacy\\external mark_complete \N tool_dataprivacy tool/dataprivacy:managedatarequests \N +557 tool_dataprivacy_get_data_request tool_dataprivacy\\external get_data_request \N tool_dataprivacy tool/dataprivacy:managedatarequests \N +558 tool_dataprivacy_approve_data_request tool_dataprivacy\\external approve_data_request \N tool_dataprivacy tool/dataprivacy:managedatarequests \N +559 tool_dataprivacy_bulk_approve_data_requests tool_dataprivacy\\external bulk_approve_data_requests \N tool_dataprivacy tool/dataprivacy:managedatarequests \N +560 tool_dataprivacy_deny_data_request tool_dataprivacy\\external deny_data_request \N tool_dataprivacy tool/dataprivacy:managedatarequests \N +561 tool_dataprivacy_bulk_deny_data_requests tool_dataprivacy\\external bulk_deny_data_requests \N tool_dataprivacy tool/dataprivacy:managedatarequests \N +562 tool_dataprivacy_get_users tool_dataprivacy\\external get_users \N tool_dataprivacy tool/dataprivacy:managedatarequests \N +563 tool_dataprivacy_create_purpose_form tool_dataprivacy\\external create_purpose_form \N tool_dataprivacy \N +564 tool_dataprivacy_create_category_form tool_dataprivacy\\external create_category_form \N tool_dataprivacy \N +565 tool_dataprivacy_delete_purpose tool_dataprivacy\\external delete_purpose \N tool_dataprivacy \N +566 tool_dataprivacy_delete_category tool_dataprivacy\\external delete_category \N tool_dataprivacy \N +567 tool_dataprivacy_set_contextlevel_form tool_dataprivacy\\external set_contextlevel_form \N tool_dataprivacy \N +568 tool_dataprivacy_set_context_form tool_dataprivacy\\external set_context_form \N tool_dataprivacy \N +569 tool_dataprivacy_tree_extra_branches tool_dataprivacy\\external tree_extra_branches \N tool_dataprivacy \N +570 tool_dataprivacy_confirm_contexts_for_deletion tool_dataprivacy\\external confirm_contexts_for_deletion \N tool_dataprivacy \N +571 tool_dataprivacy_set_context_defaults tool_dataprivacy\\external set_context_defaults \N tool_dataprivacy tool/dataprivacy:managedataregistry \N +572 tool_dataprivacy_get_category_options tool_dataprivacy\\external get_category_options \N tool_dataprivacy tool/dataprivacy:managedataregistry \N +573 tool_dataprivacy_get_purpose_options tool_dataprivacy\\external get_purpose_options \N tool_dataprivacy tool/dataprivacy:managedataregistry \N +574 tool_dataprivacy_get_activity_options tool_dataprivacy\\external get_activity_options \N tool_dataprivacy tool/dataprivacy:managedataregistry \N +575 tool_lp_data_for_competency_frameworks_manage_page tool_lp\\external data_for_competency_frameworks_manage_page \N tool_lp moodle/competency:competencyview \N +576 tool_lp_data_for_competency_summary tool_lp\\external data_for_competency_summary \N tool_lp moodle/competency:competencyview \N +577 tool_lp_data_for_competencies_manage_page tool_lp\\external data_for_competencies_manage_page \N tool_lp moodle/competency:competencyview \N +578 tool_lp_list_courses_using_competency tool_lp\\external list_courses_using_competency \N tool_lp moodle/competency:coursecompetencyview \N +579 tool_lp_data_for_course_competencies_page tool_lp\\external data_for_course_competencies_page \N tool_lp moodle/competency:coursecompetencyview moodle_mobile_app +580 tool_lp_data_for_template_competencies_page tool_lp\\external data_for_template_competencies_page \N tool_lp moodle/competency:templateview \N +581 tool_lp_data_for_templates_manage_page tool_lp\\external data_for_templates_manage_page \N tool_lp moodle/competency:templateview \N +582 tool_lp_data_for_plans_page tool_lp\\external data_for_plans_page \N tool_lp moodle/competency:planviewown moodle_mobile_app +583 tool_lp_data_for_plan_page tool_lp\\external data_for_plan_page \N tool_lp moodle/competency:planview moodle_mobile_app +584 tool_lp_data_for_related_competencies_section tool_lp\\external data_for_related_competencies_section \N tool_lp moodle/competency:competencyview \N +585 tool_lp_search_users tool_lp\\external search_users \N tool_lp \N +586 tool_lp_search_cohorts core_cohort_external search_cohorts cohort/externallib.php tool_lp moodle/cohort:view \N +587 tool_lp_data_for_user_evidence_list_page tool_lp\\external data_for_user_evidence_list_page \N tool_lp moodle/competency:userevidenceview moodle_mobile_app +588 tool_lp_data_for_user_evidence_page tool_lp\\external data_for_user_evidence_page \N tool_lp moodle/competency:userevidenceview moodle_mobile_app +589 tool_lp_data_for_user_competency_summary tool_lp\\external data_for_user_competency_summary \N tool_lp moodle/competency:planview moodle_mobile_app +590 tool_lp_data_for_user_competency_summary_in_plan tool_lp\\external data_for_user_competency_summary_in_plan \N tool_lp moodle/competency:planview moodle_mobile_app +591 tool_lp_data_for_user_competency_summary_in_course tool_lp\\external data_for_user_competency_summary_in_course \N tool_lp moodle/competency:coursecompetencyview moodle_mobile_app +592 tool_mobile_get_plugins_supporting_mobile tool_mobile\\external get_plugins_supporting_mobile \N tool_mobile moodle_mobile_app +595 tool_mobile_get_autologin_key tool_mobile\\external get_autologin_key \N tool_mobile moodle_mobile_app +596 tool_mobile_get_content tool_mobile\\external get_content \N tool_mobile moodle_mobile_app +597 tool_mobile_call_external_functions tool_mobile\\external call_external_functions \N tool_mobile moodle_mobile_app +598 tool_mobile_validate_subscription_key tool_mobile\\external validate_subscription_key \N tool_mobile moodle_mobile_app +599 tool_mobile_get_tokens_for_qr_login tool_mobile\\external get_tokens_for_qr_login \N tool_mobile moodle_mobile_app +600 tool_moodlenet_verify_webfinger tool_moodlenet\\external verify_webfinger \N tool_moodlenet moodle_mobile_app +601 tool_moodlenet_search_courses tool_moodlenet\\external search_courses \N tool_moodlenet moodle_mobile_app +602 tool_policy_get_policy_version tool_policy\\external get_policy_version \N tool_policy \N +603 tool_policy_submit_accept_on_behalf tool_policy\\external submit_accept_on_behalf \N tool_policy \N +604 tool_templatelibrary_list_templates tool_templatelibrary\\external list_templates \N tool_templatelibrary \N +605 tool_templatelibrary_load_canonical_template tool_templatelibrary\\external load_canonical_template \N tool_templatelibrary \N +606 tool_usertours_fetch_and_start_tour tool_usertours\\external\\tour fetch_and_start_tour \N tool_usertours \N +607 tool_usertours_step_shown tool_usertours\\external\\tour step_shown \N tool_usertours \N +608 tool_usertours_complete_tour tool_usertours\\external\\tour complete_tour \N tool_usertours \N +609 tool_usertours_reset_tour tool_usertours\\external\\tour reset_tour \N tool_usertours \N +610 tool_xmldb_invoke_move_action tool_xmldb_external invoke_move_action \N tool_xmldb \N +\. + + +-- +-- TOC entry 11518 (class 0 OID 0) +-- Dependencies: 456 +-- Name: mdl_external_functions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_external_functions_id_seq', 610, true); + + +-- +-- TOC entry 9940 (class 0 OID 18665) +-- Dependencies: 455 +-- Data for Name: mdl_external_services; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_external_services (id, name, enabled, requiredcapability, restrictedusers, component, timecreated, timemodified, shortname, downloadfiles, uploadfiles) FROM stdin; +1 Moodle mobile web service 1 \N 0 moodle 1609808471 1609884657 moodle_mobile_app 1 1 +\. + + +-- +-- TOC entry 9944 (class 0 OID 18696) +-- Dependencies: 459 +-- Data for Name: mdl_external_services_functions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_external_services_functions (id, externalserviceid, functionname) FROM stdin; +1 1 core_badges_get_user_badges +2 1 core_blog_get_entries +3 1 core_blog_view_entries +4 1 core_calendar_get_calendar_monthly_view +5 1 core_calendar_get_calendar_day_view +6 1 core_calendar_get_calendar_upcoming_view +7 1 core_calendar_update_event_start_day +8 1 core_calendar_create_calendar_events +9 1 core_calendar_delete_calendar_events +10 1 core_calendar_get_calendar_events +11 1 core_calendar_get_action_events_by_timesort +12 1 core_calendar_get_action_events_by_course +13 1 core_calendar_get_action_events_by_courses +14 1 core_calendar_get_calendar_event_by_id +15 1 core_calendar_submit_create_update_form +16 1 core_calendar_get_calendar_access_information +17 1 core_calendar_get_allowed_event_types +18 1 core_comment_get_comments +19 1 core_comment_add_comments +20 1 core_comment_delete_comments +21 1 core_completion_get_activities_completion_status +22 1 core_completion_get_course_completion_status +23 1 core_completion_mark_course_self_completed +24 1 core_completion_update_activity_completion_status_manually +25 1 core_course_get_categories +26 1 core_course_get_contents +27 1 core_course_get_course_module +28 1 core_course_get_course_module_by_instance +29 1 core_course_get_courses +30 1 core_course_search_courses +31 1 core_course_view_course +32 1 core_course_get_user_navigation_options +33 1 core_course_get_user_administration_options +34 1 core_course_get_courses_by_field +35 1 core_course_check_updates +36 1 core_course_get_updates_since +37 1 core_course_get_enrolled_courses_by_timeline_classification +38 1 core_course_get_recent_courses +39 1 core_course_set_favourite_courses +40 1 core_enrol_get_course_enrolment_methods +41 1 core_enrol_get_enrolled_users +42 1 core_enrol_search_users +43 1 core_enrol_get_users_courses +44 1 core_files_get_files +45 1 core_get_component_strings +46 1 core_grades_grader_gradingpanel_point_fetch +47 1 core_grades_grader_gradingpanel_point_store +48 1 core_grades_grader_gradingpanel_scale_fetch +49 1 core_grades_grader_gradingpanel_scale_store +50 1 core_group_get_activity_allowed_groups +51 1 core_group_get_activity_groupmode +52 1 core_group_get_course_groupings +53 1 core_group_get_course_groups +54 1 core_group_get_course_user_groups +55 1 core_message_mute_conversations +56 1 core_message_unmute_conversations +57 1 core_message_block_user +58 1 core_message_block_contacts +59 1 core_message_create_contacts +60 1 core_message_get_contact_requests +61 1 core_message_create_contact_request +62 1 core_message_confirm_contact_request +63 1 core_message_decline_contact_request +64 1 core_message_get_received_contact_requests_count +65 1 core_message_delete_contacts +66 1 core_message_delete_conversation +67 1 core_message_delete_conversations_by_id +68 1 core_message_delete_message +69 1 core_message_get_blocked_users +70 1 core_message_data_for_messagearea_search_messages +71 1 core_message_message_search_users +72 1 core_message_data_for_messagearea_conversations +73 1 core_message_data_for_messagearea_contacts +74 1 core_message_data_for_messagearea_messages +75 1 core_message_get_contacts +76 1 core_message_get_user_contacts +77 1 core_message_get_conversations +78 1 core_message_get_conversation +79 1 core_message_get_conversation_between_users +80 1 core_message_get_self_conversation +81 1 core_message_get_messages +82 1 core_message_get_conversation_counts +83 1 core_message_get_unread_conversation_counts +84 1 core_message_get_conversation_members +85 1 core_message_get_member_info +86 1 core_message_get_unread_conversations_count +87 1 core_message_mark_all_notifications_as_read +88 1 core_message_mark_all_messages_as_read +89 1 core_message_mark_all_conversation_messages_as_read +90 1 core_message_mark_message_read +91 1 core_message_mark_notification_read +92 1 core_message_message_processor_config_form +93 1 core_message_search_contacts +94 1 core_message_send_instant_messages +95 1 core_message_send_messages_to_conversation +96 1 core_message_get_conversation_messages +97 1 core_message_unblock_user +98 1 core_message_unblock_contacts +99 1 core_message_get_user_notification_preferences +100 1 core_message_get_user_message_preferences +101 1 core_message_set_favourite_conversations +102 1 core_message_unset_favourite_conversations +103 1 core_message_delete_message_for_all_users +104 1 core_notes_create_notes +105 1 core_notes_delete_notes +106 1 core_notes_get_course_notes +107 1 core_notes_view_notes +108 1 core_question_update_flag +109 1 core_rating_get_item_ratings +110 1 core_rating_add_rating +111 1 core_tag_get_tagindex +112 1 core_tag_get_tagindex_per_area +113 1 core_tag_get_tag_areas +114 1 core_tag_get_tag_collections +115 1 core_tag_get_tag_cloud +116 1 core_user_add_user_device +117 1 core_user_add_user_private_files +118 1 core_user_get_course_user_profiles +119 1 core_user_get_users_by_field +120 1 core_user_remove_user_device +121 1 core_user_update_user_preferences +122 1 core_user_view_user_list +123 1 core_user_view_user_profile +124 1 core_user_get_user_preferences +125 1 core_user_update_picture +126 1 core_user_set_user_preferences +127 1 core_user_agree_site_policy +128 1 core_user_get_private_files_info +129 1 core_competency_competency_viewed +130 1 mod_lesson_get_pages +131 1 core_competency_list_course_competencies +132 1 core_competency_get_scale_values +133 1 core_competency_user_competency_viewed +134 1 core_competency_user_competency_viewed_in_plan +135 1 core_competency_user_competency_viewed_in_course +136 1 core_competency_user_competency_plan_viewed +137 1 core_competency_grade_competency_in_course +138 1 core_competency_delete_evidence +139 1 core_webservice_get_site_info +140 1 core_block_get_course_blocks +141 1 core_block_get_dashboard_blocks +142 1 core_filters_get_available_in_context +143 1 core_h5p_get_trusted_h5p_file +144 1 core_table_get_dynamic_table_content +145 1 core_xapi_statement_post +146 1 mod_assign_get_grades +147 1 mod_assign_get_assignments +148 1 mod_assign_get_submissions +149 1 mod_assign_get_user_flags +150 1 mod_assign_set_user_flags +151 1 mod_assign_get_user_mappings +152 1 mod_assign_revert_submissions_to_draft +153 1 mod_assign_lock_submissions +154 1 mod_assign_unlock_submissions +155 1 mod_assign_save_submission +156 1 mod_assign_submit_for_grading +157 1 mod_assign_save_grade +158 1 mod_assign_save_grades +159 1 mod_assign_save_user_extensions +160 1 mod_assign_reveal_identities +161 1 mod_assign_view_grading_table +162 1 mod_assign_view_submission_status +163 1 mod_assign_get_submission_status +164 1 mod_assign_list_participants +165 1 mod_assign_submit_grading_form +166 1 mod_assign_get_participant +167 1 mod_assign_view_assign +168 1 mod_book_view_book +169 1 mod_book_get_books_by_courses +170 1 mod_chat_login_user +171 1 mod_chat_get_chat_users +172 1 mod_chat_send_chat_message +173 1 mod_chat_get_chat_latest_messages +174 1 mod_chat_view_chat +175 1 mod_chat_get_chats_by_courses +176 1 mod_chat_get_sessions +177 1 mod_chat_get_session_messages +178 1 mod_choice_get_choice_results +179 1 mod_choice_get_choice_options +180 1 mod_choice_submit_choice_response +181 1 mod_choice_view_choice +182 1 mod_choice_get_choices_by_courses +183 1 mod_choice_delete_choice_responses +184 1 mod_data_get_databases_by_courses +185 1 mod_data_view_database +186 1 mod_data_get_data_access_information +187 1 mod_data_get_entries +188 1 mod_data_get_entry +189 1 mod_data_get_fields +190 1 mod_data_search_entries +191 1 mod_data_approve_entry +192 1 mod_data_delete_entry +193 1 mod_data_add_entry +194 1 mod_data_update_entry +195 1 mod_feedback_get_feedbacks_by_courses +196 1 mod_feedback_get_feedback_access_information +197 1 mod_feedback_view_feedback +198 1 mod_feedback_get_current_completed_tmp +199 1 mod_feedback_get_items +200 1 mod_feedback_launch_feedback +201 1 mod_feedback_get_page_items +202 1 mod_feedback_process_page +203 1 mod_feedback_get_analysis +308 1 mod_url_view_url +204 1 mod_feedback_get_unfinished_responses +205 1 mod_feedback_get_finished_responses +206 1 mod_feedback_get_non_respondents +207 1 mod_feedback_get_responses_analysis +208 1 mod_feedback_get_last_completed +209 1 mod_folder_view_folder +210 1 mod_folder_get_folders_by_courses +211 1 mod_forum_get_forums_by_courses +212 1 mod_forum_get_discussion_posts +213 1 mod_forum_get_forum_discussion_posts +214 1 tool_mobile_get_config +215 1 mod_forum_get_forum_discussions_paginated +216 1 mod_forum_get_forum_discussions +217 1 mod_forum_view_forum +218 1 mod_forum_view_forum_discussion +219 1 mod_forum_add_discussion_post +220 1 mod_forum_add_discussion +221 1 mod_forum_can_add_discussion +222 1 mod_forum_get_forum_access_information +223 1 mod_forum_set_subscription_state +224 1 mod_forum_set_lock_state +225 1 mod_forum_toggle_favourite_state +226 1 mod_forum_set_pin_state +227 1 mod_forum_delete_post +228 1 mod_forum_get_discussion_post +229 1 mod_forum_prepare_draft_area_for_post +230 1 mod_forum_update_discussion_post +231 1 mod_glossary_get_glossaries_by_courses +232 1 mod_glossary_view_glossary +233 1 mod_glossary_view_entry +234 1 mod_glossary_get_entries_by_letter +235 1 mod_glossary_get_entries_by_date +236 1 mod_glossary_get_categories +237 1 mod_glossary_get_entries_by_category +238 1 mod_glossary_get_authors +239 1 mod_glossary_get_entries_by_author +240 1 mod_glossary_get_entries_by_author_id +241 1 mod_glossary_get_entries_by_search +242 1 mod_glossary_get_entries_by_term +243 1 mod_glossary_get_entries_to_approve +244 1 mod_glossary_get_entry_by_id +245 1 mod_glossary_add_entry +246 1 mod_h5pactivity_get_h5pactivity_access_information +247 1 mod_h5pactivity_view_h5pactivity +248 1 mod_h5pactivity_get_attempts +249 1 mod_h5pactivity_get_results +250 1 mod_h5pactivity_get_h5pactivities_by_courses +251 1 mod_imscp_view_imscp +252 1 mod_imscp_get_imscps_by_courses +253 1 mod_label_get_labels_by_courses +254 1 mod_lesson_get_lessons_by_courses +255 1 mod_lesson_get_lesson_access_information +256 1 mod_lesson_view_lesson +257 1 mod_lesson_get_questions_attempts +258 1 mod_lesson_get_user_grade +259 1 mod_lesson_get_user_attempt_grade +260 1 mod_lesson_get_content_pages_viewed +261 1 mod_lesson_get_user_timers +262 1 mod_lesson_launch_attempt +263 1 mod_lesson_get_page_data +264 1 mod_lesson_process_page +265 1 mod_lesson_finish_attempt +266 1 mod_lesson_get_attempts_overview +267 1 mod_lesson_get_user_attempt +268 1 mod_lesson_get_pages_possible_jumps +269 1 mod_lesson_get_lesson +270 1 mod_lti_get_tool_launch_data +271 1 mod_lti_get_ltis_by_courses +272 1 mod_lti_view_lti +273 1 mod_page_view_page +274 1 mod_page_get_pages_by_courses +275 1 mod_quiz_get_quizzes_by_courses +276 1 mod_quiz_view_quiz +277 1 mod_quiz_get_user_attempts +278 1 mod_quiz_get_user_best_grade +279 1 mod_quiz_get_combined_review_options +280 1 mod_quiz_start_attempt +281 1 mod_quiz_get_attempt_data +282 1 mod_quiz_get_attempt_summary +283 1 mod_quiz_save_attempt +284 1 mod_quiz_process_attempt +285 1 mod_quiz_get_attempt_review +286 1 mod_quiz_view_attempt +287 1 mod_quiz_view_attempt_summary +288 1 mod_quiz_view_attempt_review +289 1 mod_quiz_get_quiz_feedback_for_grade +290 1 mod_quiz_get_quiz_access_information +291 1 mod_quiz_get_attempt_access_information +292 1 mod_quiz_get_quiz_required_qtypes +293 1 mod_resource_view_resource +294 1 mod_resource_get_resources_by_courses +295 1 mod_scorm_view_scorm +296 1 mod_scorm_get_scorm_attempt_count +297 1 mod_scorm_get_scorm_scoes +298 1 mod_scorm_get_scorm_user_data +299 1 mod_scorm_insert_scorm_tracks +300 1 mod_scorm_get_scorm_sco_tracks +301 1 mod_scorm_get_scorms_by_courses +302 1 mod_scorm_launch_sco +303 1 mod_scorm_get_scorm_access_information +304 1 mod_survey_get_surveys_by_courses +305 1 mod_survey_view_survey +306 1 mod_survey_get_questions +307 1 mod_survey_submit_answers +309 1 mod_url_get_urls_by_courses +310 1 mod_wiki_get_wikis_by_courses +311 1 mod_wiki_view_wiki +312 1 mod_wiki_view_page +313 1 mod_wiki_get_subwikis +314 1 mod_wiki_get_subwiki_pages +315 1 mod_wiki_get_subwiki_files +316 1 mod_wiki_get_page_contents +317 1 mod_wiki_get_page_for_editing +318 1 mod_wiki_new_page +319 1 mod_wiki_edit_page +320 1 mod_workshop_get_workshops_by_courses +321 1 mod_workshop_get_workshop_access_information +322 1 mod_workshop_get_user_plan +323 1 mod_workshop_view_workshop +324 1 mod_workshop_add_submission +325 1 mod_workshop_update_submission +326 1 mod_workshop_delete_submission +327 1 mod_workshop_get_submissions +328 1 mod_workshop_get_submission +329 1 mod_workshop_get_submission_assessments +330 1 mod_workshop_get_assessment +331 1 mod_workshop_get_assessment_form_definition +332 1 mod_workshop_get_reviewer_assessments +333 1 mod_workshop_update_assessment +334 1 mod_workshop_get_grades +335 1 mod_workshop_evaluate_assessment +336 1 mod_workshop_get_grades_report +337 1 mod_workshop_view_submission +338 1 mod_workshop_evaluate_submission +339 1 enrol_guest_get_instance_info +340 1 enrol_self_get_instance_info +341 1 enrol_self_enrol_user +342 1 message_airnotifier_is_system_configured +343 1 message_airnotifier_are_notification_preferences_configured +344 1 message_airnotifier_get_user_devices +345 1 message_airnotifier_enable_device +346 1 message_popup_get_popup_notifications +347 1 message_popup_get_unread_popup_notification_count +348 1 block_recentlyaccesseditems_get_recent_items +349 1 block_starredcourses_get_starred_courses +350 1 report_insights_set_notuseful_prediction +351 1 report_insights_set_fixed_prediction +352 1 report_insights_action_executed +353 1 gradereport_overview_get_course_grades +354 1 tool_mobile_get_public_config +355 1 gradereport_overview_view_grade_report +356 1 gradereport_user_get_grades_table +357 1 gradereport_user_view_grade_report +358 1 gradereport_user_get_grade_items +359 1 tool_analytics_potential_contexts +360 1 tool_lp_data_for_course_competencies_page +361 1 tool_lp_data_for_plans_page +362 1 tool_lp_data_for_plan_page +363 1 tool_lp_data_for_user_evidence_list_page +364 1 tool_lp_data_for_user_evidence_page +365 1 tool_lp_data_for_user_competency_summary +366 1 tool_lp_data_for_user_competency_summary_in_plan +367 1 tool_lp_data_for_user_competency_summary_in_course +368 1 tool_mobile_get_plugins_supporting_mobile +369 1 tool_mobile_get_autologin_key +370 1 tool_mobile_get_content +371 1 tool_mobile_call_external_functions +372 1 tool_mobile_validate_subscription_key +373 1 tool_mobile_get_tokens_for_qr_login +374 1 tool_moodlenet_verify_webfinger +375 1 tool_moodlenet_search_courses +\. + + +-- +-- TOC entry 11519 (class 0 OID 0) +-- Dependencies: 458 +-- Name: mdl_external_services_functions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_external_services_functions_id_seq', 375, true); + + +-- +-- TOC entry 11520 (class 0 OID 0) +-- Dependencies: 454 +-- Name: mdl_external_services_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_external_services_id_seq', 1, true); + + +-- +-- TOC entry 9946 (class 0 OID 18706) +-- Dependencies: 461 +-- Data for Name: mdl_external_services_users; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_external_services_users (id, externalserviceid, userid, iprestriction, validuntil, timecreated) FROM stdin; +\. + + +-- +-- TOC entry 11521 (class 0 OID 0) +-- Dependencies: 460 +-- Name: mdl_external_services_users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_external_services_users_id_seq', 1, false); + + +-- +-- TOC entry 9948 (class 0 OID 18716) +-- Dependencies: 463 +-- Data for Name: mdl_external_tokens; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_external_tokens (id, token, privatetoken, tokentype, userid, externalserviceid, sid, contextid, creatorid, iprestriction, validuntil, timecreated, lastaccess) FROM stdin; +\. + + +-- +-- TOC entry 11522 (class 0 OID 0) +-- Dependencies: 462 +-- Name: mdl_external_tokens_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_external_tokens_id_seq', 1, false); + + +-- +-- TOC entry 10088 (class 0 OID 19702) +-- Dependencies: 603 +-- Data for Name: mdl_favourite; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_favourite (id, component, itemtype, itemid, contextid, userid, ordering, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11523 (class 0 OID 0) +-- Dependencies: 602 +-- Name: mdl_favourite_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_favourite_id_seq', 1, false); + + +-- +-- TOC entry 10202 (class 0 OID 20707) +-- Dependencies: 717 +-- Data for Name: mdl_feedback; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_feedback (id, course, name, intro, introformat, anonymous, email_notification, multiple_submit, autonumbering, site_after_submit, page_after_submit, page_after_submitformat, publish_stats, timeopen, timeclose, timemodified, completionsubmit) FROM stdin; +\. + + +-- +-- TOC entry 10208 (class 0 OID 20769) +-- Dependencies: 723 +-- Data for Name: mdl_feedback_completed; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_feedback_completed (id, feedback, userid, timemodified, random_response, anonymous_response, courseid) FROM stdin; +\. + + +-- +-- TOC entry 11524 (class 0 OID 0) +-- Dependencies: 722 +-- Name: mdl_feedback_completed_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_feedback_completed_id_seq', 1, false); + + +-- +-- TOC entry 10210 (class 0 OID 20785) +-- Dependencies: 725 +-- Data for Name: mdl_feedback_completedtmp; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_feedback_completedtmp (id, feedback, userid, guestid, timemodified, random_response, anonymous_response, courseid) FROM stdin; +\. + + +-- +-- TOC entry 11525 (class 0 OID 0) +-- Dependencies: 724 +-- Name: mdl_feedback_completedtmp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_feedback_completedtmp_id_seq', 1, false); + + +-- +-- TOC entry 11526 (class 0 OID 0) +-- Dependencies: 716 +-- Name: mdl_feedback_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_feedback_id_seq', 1, false); + + +-- +-- TOC entry 10206 (class 0 OID 20745) +-- Dependencies: 721 +-- Data for Name: mdl_feedback_item; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_feedback_item (id, feedback, template, name, label, presentation, typ, hasvalue, "position", required, dependitem, dependvalue, options) FROM stdin; +\. + + +-- +-- TOC entry 11527 (class 0 OID 0) +-- Dependencies: 720 +-- Name: mdl_feedback_item_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_feedback_item_id_seq', 1, false); + + +-- +-- TOC entry 10216 (class 0 OID 20838) +-- Dependencies: 731 +-- Data for Name: mdl_feedback_sitecourse_map; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_feedback_sitecourse_map (id, feedbackid, courseid) FROM stdin; +\. + + +-- +-- TOC entry 11528 (class 0 OID 0) +-- Dependencies: 730 +-- Name: mdl_feedback_sitecourse_map_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_feedback_sitecourse_map_id_seq', 1, false); + + +-- +-- TOC entry 10204 (class 0 OID 20733) +-- Dependencies: 719 +-- Data for Name: mdl_feedback_template; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_feedback_template (id, course, ispublic, name) FROM stdin; +\. + + +-- +-- TOC entry 11529 (class 0 OID 0) +-- Dependencies: 718 +-- Name: mdl_feedback_template_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_feedback_template_id_seq', 1, false); + + +-- +-- TOC entry 10212 (class 0 OID 20802) +-- Dependencies: 727 +-- Data for Name: mdl_feedback_value; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_feedback_value (id, course_id, item, completed, tmp_completed, value) FROM stdin; +\. + + +-- +-- TOC entry 11530 (class 0 OID 0) +-- Dependencies: 726 +-- Name: mdl_feedback_value_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_feedback_value_id_seq', 1, false); + + +-- +-- TOC entry 10214 (class 0 OID 20820) +-- Dependencies: 729 +-- Data for Name: mdl_feedback_valuetmp; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_feedback_valuetmp (id, course_id, item, completed, tmp_completed, value) FROM stdin; +\. + + +-- +-- TOC entry 11531 (class 0 OID 0) +-- Dependencies: 728 +-- Name: mdl_feedback_valuetmp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_feedback_valuetmp_id_seq', 1, false); + + +-- +-- TOC entry 9922 (class 0 OID 18539) +-- Dependencies: 437 +-- Data for Name: mdl_file_conversion; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_file_conversion (id, usermodified, timecreated, timemodified, sourcefileid, targetformat, status, statusmessage, converter, destfileid, data) FROM stdin; +\. + + +-- +-- TOC entry 11532 (class 0 OID 0) +-- Dependencies: 436 +-- Name: mdl_file_conversion_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_file_conversion_id_seq', 1, false); + + +-- +-- TOC entry 9918 (class 0 OID 18499) +-- Dependencies: 433 +-- Data for Name: mdl_files; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_files (id, contenthash, pathnamehash, contextid, component, filearea, itemid, filepath, filename, userid, filesize, mimetype, status, source, author, license, timecreated, timemodified, sortorder, referencefileid) FROM stdin; +1 5f8e911d0da441e36f47c5c46f4393269211ca56 508e674d49c30d4fde325fe6c7f6fd3d56b247e1 1 assignfeedback_editpdf stamps 0 / smile.png 2 1085 image/png 0 \N \N \N 1609808505 1609808505 0 \N +2 da39a3ee5e6b4b0d3255bfef95601890afd80709 70b7cdade7b4e27d4e83f0cdaad10d6a3c0cccb5 1 assignfeedback_editpdf stamps 0 / . 2 0 \N 0 \N \N \N 1609808505 1609808505 0 \N +3 75c101cb8cb34ea573cd25ac38f8157b1de901b8 68317eab56c67d32aeaee5acf509a0c4aa828b6b 1 assignfeedback_editpdf stamps 0 / sad.png 2 966 image/png 0 \N \N \N 1609808505 1609808505 0 \N +4 0c5190a24c3943966541401c883eacaa20ca20cb 695a55ff780e61c9e59428aa425430b0d6bde53b 1 assignfeedback_editpdf stamps 0 / tick.png 2 1039 image/png 0 \N \N \N 1609808505 1609808505 0 \N +5 8c96a486d5801e0f4ab8c411f561f1c687e1f865 373e63af262a9b8466ba8632551520be793c37ff 1 assignfeedback_editpdf stamps 0 / cross.png 2 861 image/png 0 \N \N \N 1609808505 1609808505 0 \N +\. + + +-- +-- TOC entry 11533 (class 0 OID 0) +-- Dependencies: 432 +-- Name: mdl_files_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_files_id_seq', 5, true); + + +-- +-- TOC entry 9920 (class 0 OID 18525) +-- Dependencies: 435 +-- Data for Name: mdl_files_reference; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_files_reference (id, repositoryid, lastsync, reference, referencehash) FROM stdin; +\. + + +-- +-- TOC entry 11534 (class 0 OID 0) +-- Dependencies: 434 +-- Name: mdl_files_reference_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_files_reference_id_seq', 1, false); + + +-- +-- TOC entry 9705 (class 0 OID 16705) +-- Dependencies: 220 +-- Data for Name: mdl_filter_active; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_filter_active (id, filter, contextid, active, sortorder) FROM stdin; +2 displayh5p 1 1 1 +1 activitynames 1 1 2 +4 mathjaxloader 1 1 3 +3 emoticon 1 1 4 +6 urltolink 1 1 5 +5 mediaplugin 1 1 6 +\. + + +-- +-- TOC entry 11535 (class 0 OID 0) +-- Dependencies: 219 +-- Name: mdl_filter_active_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_filter_active_id_seq', 6, true); + + +-- +-- TOC entry 9707 (class 0 OID 16717) +-- Dependencies: 222 +-- Data for Name: mdl_filter_config; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_filter_config (id, filter, contextid, name, value) FROM stdin; +\. + + +-- +-- TOC entry 11536 (class 0 OID 0) +-- Dependencies: 221 +-- Name: mdl_filter_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_filter_config_id_seq', 1, false); + + +-- +-- TOC entry 10218 (class 0 OID 20850) +-- Dependencies: 733 +-- Data for Name: mdl_folder; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_folder (id, course, name, intro, introformat, revision, timemodified, display, showexpanded, showdownloadfolder) FROM stdin; +\. + + +-- +-- TOC entry 11537 (class 0 OID 0) +-- Dependencies: 732 +-- Name: mdl_folder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_folder_id_seq', 1, false); + + +-- +-- TOC entry 10220 (class 0 OID 20870) +-- Dependencies: 735 +-- Data for Name: mdl_forum; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_forum (id, course, type, name, intro, introformat, duedate, cutoffdate, assessed, assesstimestart, assesstimefinish, scale, grade_forum, grade_forum_notify, maxbytes, maxattachments, forcesubscribe, trackingtype, rsstype, rssarticles, timemodified, warnafter, blockafter, blockperiod, completiondiscussions, completionreplies, completionposts, displaywordcount, lockdiscussionafter) FROM stdin; +\. + + +-- +-- TOC entry 10230 (class 0 OID 20992) +-- Dependencies: 745 +-- Data for Name: mdl_forum_digests; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_forum_digests (id, userid, forum, maildigest) FROM stdin; +\. + + +-- +-- TOC entry 11538 (class 0 OID 0) +-- Dependencies: 744 +-- Name: mdl_forum_digests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_forum_digests_id_seq', 1, false); + + +-- +-- TOC entry 10236 (class 0 OID 21032) +-- Dependencies: 751 +-- Data for Name: mdl_forum_discussion_subs; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_forum_discussion_subs (id, forum, userid, discussion, preference) FROM stdin; +\. + + +-- +-- TOC entry 11539 (class 0 OID 0) +-- Dependencies: 750 +-- Name: mdl_forum_discussion_subs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_forum_discussion_subs_id_seq', 1, false); + + +-- +-- TOC entry 10222 (class 0 OID 20909) +-- Dependencies: 737 +-- Data for Name: mdl_forum_discussions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_forum_discussions (id, course, forum, name, firstpost, userid, groupid, assessed, timemodified, usermodified, timestart, timeend, pinned, timelocked) FROM stdin; +\. + + +-- +-- TOC entry 11540 (class 0 OID 0) +-- Dependencies: 736 +-- Name: mdl_forum_discussions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_forum_discussions_id_seq', 1, false); + + +-- +-- TOC entry 10238 (class 0 OID 21045) +-- Dependencies: 753 +-- Data for Name: mdl_forum_grades; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_forum_grades (id, forum, itemnumber, userid, grade, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11541 (class 0 OID 0) +-- Dependencies: 752 +-- Name: mdl_forum_grades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_forum_grades_id_seq', 1, false); + + +-- +-- TOC entry 11542 (class 0 OID 0) +-- Dependencies: 734 +-- Name: mdl_forum_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_forum_id_seq', 1, false); + + +-- +-- TOC entry 10224 (class 0 OID 20933) +-- Dependencies: 739 +-- Data for Name: mdl_forum_posts; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_forum_posts (id, discussion, parent, userid, created, modified, mailed, subject, message, messageformat, messagetrust, attachment, totalscore, mailnow, deleted, privatereplyto, wordcount, charcount) FROM stdin; +\. + + +-- +-- TOC entry 11543 (class 0 OID 0) +-- Dependencies: 738 +-- Name: mdl_forum_posts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_forum_posts_id_seq', 1, false); + + +-- +-- TOC entry 10226 (class 0 OID 20964) +-- Dependencies: 741 +-- Data for Name: mdl_forum_queue; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_forum_queue (id, userid, discussionid, postid, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11544 (class 0 OID 0) +-- Dependencies: 740 +-- Name: mdl_forum_queue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_forum_queue_id_seq', 1, false); + + +-- +-- TOC entry 10232 (class 0 OID 21004) +-- Dependencies: 747 +-- Data for Name: mdl_forum_read; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_forum_read (id, userid, forumid, discussionid, postid, firstread, lastread) FROM stdin; +\. + + +-- +-- TOC entry 11545 (class 0 OID 0) +-- Dependencies: 746 +-- Name: mdl_forum_read_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_forum_read_id_seq', 1, false); + + +-- +-- TOC entry 10228 (class 0 OID 20979) +-- Dependencies: 743 +-- Data for Name: mdl_forum_subscriptions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_forum_subscriptions (id, userid, forum) FROM stdin; +\. + + +-- +-- TOC entry 11546 (class 0 OID 0) +-- Dependencies: 742 +-- Name: mdl_forum_subscriptions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_forum_subscriptions_id_seq', 1, false); + + +-- +-- TOC entry 10234 (class 0 OID 21021) +-- Dependencies: 749 +-- Data for Name: mdl_forum_track_prefs; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_forum_track_prefs (id, userid, forumid) FROM stdin; +\. + + +-- +-- TOC entry 11547 (class 0 OID 0) +-- Dependencies: 748 +-- Name: mdl_forum_track_prefs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_forum_track_prefs_id_seq', 1, false); + + +-- +-- TOC entry 10240 (class 0 OID 21059) +-- Dependencies: 755 +-- Data for Name: mdl_glossary; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_glossary (id, course, name, intro, introformat, allowduplicatedentries, displayformat, mainglossary, showspecial, showalphabet, showall, allowcomments, allowprintview, usedynalink, defaultapproval, approvaldisplayformat, globalglossary, entbypage, editalways, rsstype, rssarticles, assessed, assesstimestart, assesstimefinish, scale, timecreated, timemodified, completionentries) FROM stdin; +\. + + +-- +-- TOC entry 10244 (class 0 OID 21125) +-- Dependencies: 759 +-- Data for Name: mdl_glossary_alias; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_glossary_alias (id, entryid, alias) FROM stdin; +\. + + +-- +-- TOC entry 11548 (class 0 OID 0) +-- Dependencies: 758 +-- Name: mdl_glossary_alias_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_glossary_alias_id_seq', 1, false); + + +-- +-- TOC entry 10246 (class 0 OID 21136) +-- Dependencies: 761 +-- Data for Name: mdl_glossary_categories; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_glossary_categories (id, glossaryid, name, usedynalink) FROM stdin; +\. + + +-- +-- TOC entry 11549 (class 0 OID 0) +-- Dependencies: 760 +-- Name: mdl_glossary_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_glossary_categories_id_seq', 1, false); + + +-- +-- TOC entry 10242 (class 0 OID 21097) +-- Dependencies: 757 +-- Data for Name: mdl_glossary_entries; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_glossary_entries (id, glossaryid, userid, concept, definition, definitionformat, definitiontrust, attachment, timecreated, timemodified, teacherentry, sourceglossaryid, usedynalink, casesensitive, fullmatch, approved) FROM stdin; +\. + + +-- +-- TOC entry 10248 (class 0 OID 21148) +-- Dependencies: 763 +-- Data for Name: mdl_glossary_entries_categories; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_glossary_entries_categories (id, categoryid, entryid) FROM stdin; +\. + + +-- +-- TOC entry 11550 (class 0 OID 0) +-- Dependencies: 762 +-- Name: mdl_glossary_entries_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_glossary_entries_categories_id_seq', 1, false); + + +-- +-- TOC entry 11551 (class 0 OID 0) +-- Dependencies: 756 +-- Name: mdl_glossary_entries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_glossary_entries_id_seq', 1, false); + + +-- +-- TOC entry 10250 (class 0 OID 21160) +-- Dependencies: 765 +-- Data for Name: mdl_glossary_formats; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_glossary_formats (id, name, popupformatname, visible, showgroup, showtabs, defaultmode, defaulthook, sortkey, sortorder) FROM stdin; +1 continuous continuous 1 1 standard,category,date +2 dictionary dictionary 1 1 standard +3 encyclopedia encyclopedia 1 1 standard,category,date,author +4 entrylist entrylist 1 1 standard,category,date,author +5 faq faq 1 1 standard,category,date,author +6 fullwithauthor fullwithauthor 1 1 standard,category,date,author +7 fullwithoutauthor fullwithoutauthor 1 1 standard,category,date +\. + + +-- +-- TOC entry 11552 (class 0 OID 0) +-- Dependencies: 764 +-- Name: mdl_glossary_formats_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_glossary_formats_id_seq', 7, true); + + +-- +-- TOC entry 11553 (class 0 OID 0) +-- Dependencies: 754 +-- Name: mdl_glossary_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_glossary_id_seq', 1, false); + + +-- +-- TOC entry 9856 (class 0 OID 17949) +-- Dependencies: 371 +-- Data for Name: mdl_grade_categories; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_grade_categories (id, courseid, parent, depth, path, fullname, aggregation, keephigh, droplow, aggregateonlygraded, aggregateoutcomes, timecreated, timemodified, hidden) FROM stdin; +\. + + +-- +-- TOC entry 9864 (class 0 OID 18053) +-- Dependencies: 379 +-- Data for Name: mdl_grade_categories_history; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_grade_categories_history (id, action, oldid, source, timemodified, loggeduser, courseid, parent, depth, path, fullname, aggregation, keephigh, droplow, aggregateonlygraded, aggregateoutcomes, aggregatesubcats, hidden) FROM stdin; +\. + + +-- +-- TOC entry 11554 (class 0 OID 0) +-- Dependencies: 378 +-- Name: mdl_grade_categories_history_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_grade_categories_history_id_seq', 1, false); + + +-- +-- TOC entry 11555 (class 0 OID 0) +-- Dependencies: 370 +-- Name: mdl_grade_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_grade_categories_id_seq', 1, false); + + +-- +-- TOC entry 9860 (class 0 OID 18005) +-- Dependencies: 375 +-- Data for Name: mdl_grade_grades; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_grade_grades (id, itemid, userid, rawgrade, rawgrademax, rawgrademin, rawscaleid, usermodified, finalgrade, hidden, locked, locktime, exported, overridden, excluded, feedback, feedbackformat, information, informationformat, timecreated, timemodified, aggregationstatus, aggregationweight) FROM stdin; +\. + + +-- +-- TOC entry 9868 (class 0 OID 18116) +-- Dependencies: 383 +-- Data for Name: mdl_grade_grades_history; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_grade_grades_history (id, action, oldid, source, timemodified, loggeduser, itemid, userid, rawgrade, rawgrademax, rawgrademin, rawscaleid, usermodified, finalgrade, hidden, locked, locktime, exported, overridden, excluded, feedback, feedbackformat, information, informationformat) FROM stdin; +\. + + +-- +-- TOC entry 11556 (class 0 OID 0) +-- Dependencies: 382 +-- Name: mdl_grade_grades_history_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_grade_grades_history_id_seq', 1, false); + + +-- +-- TOC entry 11557 (class 0 OID 0) +-- Dependencies: 374 +-- Name: mdl_grade_grades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_grade_grades_id_seq', 1, false); + + +-- +-- TOC entry 9870 (class 0 OID 18147) +-- Dependencies: 385 +-- Data for Name: mdl_grade_import_newitem; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_grade_import_newitem (id, itemname, importcode, importer) FROM stdin; +\. + + +-- +-- TOC entry 11558 (class 0 OID 0) +-- Dependencies: 384 +-- Name: mdl_grade_import_newitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_grade_import_newitem_id_seq', 1, false); + + +-- +-- TOC entry 9872 (class 0 OID 18157) +-- Dependencies: 387 +-- Data for Name: mdl_grade_import_values; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_grade_import_values (id, itemid, newgradeitem, userid, finalgrade, feedback, importcode, importer, importonlyfeedback) FROM stdin; +\. + + +-- +-- TOC entry 11559 (class 0 OID 0) +-- Dependencies: 386 +-- Name: mdl_grade_import_values_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_grade_import_values_id_seq', 1, false); + + +-- +-- TOC entry 9858 (class 0 OID 17970) +-- Dependencies: 373 +-- Data for Name: mdl_grade_items; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_grade_items (id, courseid, categoryid, itemname, itemtype, itemmodule, iteminstance, itemnumber, iteminfo, idnumber, calculation, gradetype, grademax, grademin, scaleid, outcomeid, gradepass, multfactor, plusfactor, aggregationcoef, aggregationcoef2, sortorder, display, decimals, hidden, locked, locktime, needsupdate, weightoverride, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 9866 (class 0 OID 18080) +-- Dependencies: 381 +-- Data for Name: mdl_grade_items_history; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_grade_items_history (id, action, oldid, source, timemodified, loggeduser, courseid, categoryid, itemname, itemtype, itemmodule, iteminstance, itemnumber, iteminfo, idnumber, calculation, gradetype, grademax, grademin, scaleid, outcomeid, gradepass, multfactor, plusfactor, aggregationcoef, aggregationcoef2, sortorder, hidden, locked, locktime, needsupdate, display, decimals, weightoverride) FROM stdin; +\. + + +-- +-- TOC entry 11560 (class 0 OID 0) +-- Dependencies: 380 +-- Name: mdl_grade_items_history_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_grade_items_history_id_seq', 1, false); + + +-- +-- TOC entry 11561 (class 0 OID 0) +-- Dependencies: 372 +-- Name: mdl_grade_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_grade_items_id_seq', 1, false); + + +-- +-- TOC entry 9898 (class 0 OID 18362) +-- Dependencies: 413 +-- Data for Name: mdl_grade_letters; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_grade_letters (id, contextid, lowerboundary, letter) FROM stdin; +\. + + +-- +-- TOC entry 11562 (class 0 OID 0) +-- Dependencies: 412 +-- Name: mdl_grade_letters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_grade_letters_id_seq', 1, false); + + +-- +-- TOC entry 9852 (class 0 OID 17921) +-- Dependencies: 367 +-- Data for Name: mdl_grade_outcomes; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_grade_outcomes (id, courseid, shortname, fullname, scaleid, description, descriptionformat, timecreated, timemodified, usermodified) FROM stdin; +\. + + +-- +-- TOC entry 9854 (class 0 OID 17938) +-- Dependencies: 369 +-- Data for Name: mdl_grade_outcomes_courses; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_grade_outcomes_courses (id, courseid, outcomeid) FROM stdin; +\. + + +-- +-- TOC entry 11563 (class 0 OID 0) +-- Dependencies: 368 +-- Name: mdl_grade_outcomes_courses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_grade_outcomes_courses_id_seq', 1, false); + + +-- +-- TOC entry 9862 (class 0 OID 18033) +-- Dependencies: 377 +-- Data for Name: mdl_grade_outcomes_history; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_grade_outcomes_history (id, action, oldid, source, timemodified, loggeduser, courseid, shortname, fullname, scaleid, description, descriptionformat) FROM stdin; +\. + + +-- +-- TOC entry 11564 (class 0 OID 0) +-- Dependencies: 376 +-- Name: mdl_grade_outcomes_history_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_grade_outcomes_history_id_seq', 1, false); + + +-- +-- TOC entry 11565 (class 0 OID 0) +-- Dependencies: 366 +-- Name: mdl_grade_outcomes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_grade_outcomes_id_seq', 1, false); + + +-- +-- TOC entry 9902 (class 0 OID 18388) +-- Dependencies: 417 +-- Data for Name: mdl_grade_settings; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_grade_settings (id, courseid, name, value) FROM stdin; +\. + + +-- +-- TOC entry 11566 (class 0 OID 0) +-- Dependencies: 416 +-- Name: mdl_grade_settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_grade_settings_id_seq', 1, false); + + +-- +-- TOC entry 9968 (class 0 OID 18865) +-- Dependencies: 483 +-- Data for Name: mdl_grading_areas; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_grading_areas (id, contextid, component, areaname, activemethod) FROM stdin; +\. + + +-- +-- TOC entry 11567 (class 0 OID 0) +-- Dependencies: 482 +-- Name: mdl_grading_areas_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_grading_areas_id_seq', 1, false); + + +-- +-- TOC entry 9970 (class 0 OID 18877) +-- Dependencies: 485 +-- Data for Name: mdl_grading_definitions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_grading_definitions (id, areaid, method, name, description, descriptionformat, status, copiedfromid, timecreated, usercreated, timemodified, usermodified, timecopied, options) FROM stdin; +\. + + +-- +-- TOC entry 11568 (class 0 OID 0) +-- Dependencies: 484 +-- Name: mdl_grading_definitions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_grading_definitions_id_seq', 1, false); + + +-- +-- TOC entry 9972 (class 0 OID 18896) +-- Dependencies: 487 +-- Data for Name: mdl_grading_instances; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_grading_instances (id, definitionid, raterid, itemid, rawgrade, status, feedback, feedbackformat, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11569 (class 0 OID 0) +-- Dependencies: 486 +-- Name: mdl_grading_instances_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_grading_instances_id_seq', 1, false); + + +-- +-- TOC entry 10418 (class 0 OID 22636) +-- Dependencies: 933 +-- Data for Name: mdl_gradingform_guide_comments; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_gradingform_guide_comments (id, definitionid, sortorder, description, descriptionformat) FROM stdin; +\. + + +-- +-- TOC entry 11570 (class 0 OID 0) +-- Dependencies: 932 +-- Name: mdl_gradingform_guide_comments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_gradingform_guide_comments_id_seq', 1, false); + + +-- +-- TOC entry 10414 (class 0 OID 22609) +-- Dependencies: 929 +-- Data for Name: mdl_gradingform_guide_criteria; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_gradingform_guide_criteria (id, definitionid, sortorder, shortname, description, descriptionformat, descriptionmarkers, descriptionmarkersformat, maxscore) FROM stdin; +\. + + +-- +-- TOC entry 11571 (class 0 OID 0) +-- Dependencies: 928 +-- Name: mdl_gradingform_guide_criteria_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_gradingform_guide_criteria_id_seq', 1, false); + + +-- +-- TOC entry 10416 (class 0 OID 22622) +-- Dependencies: 931 +-- Data for Name: mdl_gradingform_guide_fillings; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_gradingform_guide_fillings (id, instanceid, criterionid, remark, remarkformat, score) FROM stdin; +\. + + +-- +-- TOC entry 11572 (class 0 OID 0) +-- Dependencies: 930 +-- Name: mdl_gradingform_guide_fillings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_gradingform_guide_fillings_id_seq', 1, false); + + +-- +-- TOC entry 10420 (class 0 OID 22648) +-- Dependencies: 935 +-- Data for Name: mdl_gradingform_rubric_criteria; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_gradingform_rubric_criteria (id, definitionid, sortorder, description, descriptionformat) FROM stdin; +\. + + +-- +-- TOC entry 11573 (class 0 OID 0) +-- Dependencies: 934 +-- Name: mdl_gradingform_rubric_criteria_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_gradingform_rubric_criteria_id_seq', 1, false); + + +-- +-- TOC entry 10424 (class 0 OID 22672) +-- Dependencies: 939 +-- Data for Name: mdl_gradingform_rubric_fillings; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_gradingform_rubric_fillings (id, instanceid, criterionid, levelid, remark, remarkformat) FROM stdin; +\. + + +-- +-- TOC entry 11574 (class 0 OID 0) +-- Dependencies: 938 +-- Name: mdl_gradingform_rubric_fillings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_gradingform_rubric_fillings_id_seq', 1, false); + + +-- +-- TOC entry 10422 (class 0 OID 22660) +-- Dependencies: 937 +-- Data for Name: mdl_gradingform_rubric_levels; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_gradingform_rubric_levels (id, criterionid, score, definition, definitionformat) FROM stdin; +\. + + +-- +-- TOC entry 11575 (class 0 OID 0) +-- Dependencies: 936 +-- Name: mdl_gradingform_rubric_levels_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_gradingform_rubric_levels_id_seq', 1, false); + + +-- +-- TOC entry 9886 (class 0 OID 18270) +-- Dependencies: 401 +-- Data for Name: mdl_groupings; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_groupings (id, courseid, name, idnumber, description, descriptionformat, configdata, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 9890 (class 0 OID 18305) +-- Dependencies: 405 +-- Data for Name: mdl_groupings_groups; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_groupings_groups (id, groupingid, groupid, timeadded) FROM stdin; +\. + + +-- +-- TOC entry 11576 (class 0 OID 0) +-- Dependencies: 404 +-- Name: mdl_groupings_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_groupings_groups_id_seq', 1, false); + + +-- +-- TOC entry 11577 (class 0 OID 0) +-- Dependencies: 400 +-- Name: mdl_groupings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_groupings_id_seq', 1, false); + + +-- +-- TOC entry 9884 (class 0 OID 18250) +-- Dependencies: 399 +-- Data for Name: mdl_groups; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_groups (id, courseid, idnumber, name, description, descriptionformat, enrolmentkey, picture, hidepicture, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11578 (class 0 OID 0) +-- Dependencies: 398 +-- Name: mdl_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_groups_id_seq', 1, false); + + +-- +-- TOC entry 9888 (class 0 OID 18289) +-- Dependencies: 403 +-- Data for Name: mdl_groups_members; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_groups_members (id, groupid, userid, timeadded, component, itemid) FROM stdin; +\. + + +-- +-- TOC entry 11579 (class 0 OID 0) +-- Dependencies: 402 +-- Name: mdl_groups_members_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_groups_members_id_seq', 1, false); + + +-- +-- TOC entry 10100 (class 0 OID 19792) +-- Dependencies: 615 +-- Data for Name: mdl_h5p; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_h5p (id, jsoncontent, mainlibraryid, displayoptions, pathnamehash, contenthash, filtered, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 10102 (class 0 OID 19808) +-- Dependencies: 617 +-- Data for Name: mdl_h5p_contents_libraries; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_h5p_contents_libraries (id, h5pid, libraryid, dependencytype, dropcss, weight) FROM stdin; +\. + + +-- +-- TOC entry 11580 (class 0 OID 0) +-- Dependencies: 616 +-- Name: mdl_h5p_contents_libraries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_h5p_contents_libraries_id_seq', 1, false); + + +-- +-- TOC entry 11581 (class 0 OID 0) +-- Dependencies: 614 +-- Name: mdl_h5p_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_h5p_id_seq', 1, false); + + +-- +-- TOC entry 10096 (class 0 OID 19765) +-- Dependencies: 611 +-- Data for Name: mdl_h5p_libraries; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_h5p_libraries (id, machinename, title, majorversion, minorversion, patchversion, runnable, fullscreen, embedtypes, preloadedjs, preloadedcss, droplibrarycss, semantics, addto, coremajor, coreminor, metadatasettings) FROM stdin; +\. + + +-- +-- TOC entry 10104 (class 0 OID 19819) +-- Dependencies: 619 +-- Data for Name: mdl_h5p_libraries_cachedassets; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_h5p_libraries_cachedassets (id, libraryid, hash) FROM stdin; +\. + + +-- +-- TOC entry 11582 (class 0 OID 0) +-- Dependencies: 618 +-- Name: mdl_h5p_libraries_cachedassets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_h5p_libraries_cachedassets_id_seq', 1, false); + + +-- +-- TOC entry 11583 (class 0 OID 0) +-- Dependencies: 610 +-- Name: mdl_h5p_libraries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_h5p_libraries_id_seq', 1, false); + + +-- +-- TOC entry 10098 (class 0 OID 19781) +-- Dependencies: 613 +-- Data for Name: mdl_h5p_library_dependencies; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_h5p_library_dependencies (id, libraryid, requiredlibraryid, dependencytype) FROM stdin; +\. + + +-- +-- TOC entry 11584 (class 0 OID 0) +-- Dependencies: 612 +-- Name: mdl_h5p_library_dependencies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_h5p_library_dependencies_id_seq', 1, false); + + +-- +-- TOC entry 10252 (class 0 OID 21176) +-- Dependencies: 767 +-- Data for Name: mdl_h5pactivity; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_h5pactivity (id, course, name, timecreated, timemodified, intro, introformat, grade, displayoptions, enabletracking, grademethod, reviewmode) FROM stdin; +\. + + +-- +-- TOC entry 10254 (class 0 OID 21195) +-- Dependencies: 769 +-- Data for Name: mdl_h5pactivity_attempts; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_h5pactivity_attempts (id, h5pactivityid, userid, timecreated, timemodified, attempt, rawscore, maxscore, scaled, duration, completion, success) FROM stdin; +\. + + +-- +-- TOC entry 11585 (class 0 OID 0) +-- Dependencies: 768 +-- Name: mdl_h5pactivity_attempts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_h5pactivity_attempts_id_seq', 1, false); + + +-- +-- TOC entry 10256 (class 0 OID 21213) +-- Dependencies: 771 +-- Data for Name: mdl_h5pactivity_attempts_results; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_h5pactivity_attempts_results (id, attemptid, subcontent, timecreated, interactiontype, description, correctpattern, response, additionals, rawscore, maxscore, duration, completion, success) FROM stdin; +\. + + +-- +-- TOC entry 11586 (class 0 OID 0) +-- Dependencies: 770 +-- Name: mdl_h5pactivity_attempts_results_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_h5pactivity_attempts_results_id_seq', 1, false); + + +-- +-- TOC entry 11587 (class 0 OID 0) +-- Dependencies: 766 +-- Name: mdl_h5pactivity_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_h5pactivity_id_seq', 1, false); + + +-- +-- TOC entry 10258 (class 0 OID 21229) +-- Dependencies: 773 +-- Data for Name: mdl_imscp; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_imscp (id, course, name, intro, introformat, revision, keepold, structure, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11588 (class 0 OID 0) +-- Dependencies: 772 +-- Name: mdl_imscp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_imscp_id_seq', 1, false); + + +-- +-- TOC entry 10260 (class 0 OID 21247) +-- Dependencies: 775 +-- Data for Name: mdl_label; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_label (id, course, name, intro, introformat, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11589 (class 0 OID 0) +-- Dependencies: 774 +-- Name: mdl_label_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_label_id_seq', 1, false); + + +-- +-- TOC entry 10262 (class 0 OID 21263) +-- Dependencies: 777 +-- Data for Name: mdl_lesson; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_lesson (id, course, name, intro, introformat, practice, modattempts, usepassword, password, dependency, conditions, grade, custom, ongoing, usemaxgrade, maxanswers, maxattempts, review, nextpagedefault, feedback, minquestions, maxpages, timelimit, retake, activitylink, mediafile, mediaheight, mediawidth, mediaclose, slideshow, width, height, bgcolor, displayleft, displayleftif, progressbar, available, deadline, timemodified, completionendreached, completiontimespent, allowofflineattempts) FROM stdin; +\. + + +-- +-- TOC entry 10266 (class 0 OID 21337) +-- Dependencies: 781 +-- Data for Name: mdl_lesson_answers; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_lesson_answers (id, lessonid, pageid, jumpto, grade, score, flags, timecreated, timemodified, answer, answerformat, response, responseformat) FROM stdin; +\. + + +-- +-- TOC entry 11590 (class 0 OID 0) +-- Dependencies: 780 +-- Name: mdl_lesson_answers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_lesson_answers_id_seq', 1, false); + + +-- +-- TOC entry 10268 (class 0 OID 21360) +-- Dependencies: 783 +-- Data for Name: mdl_lesson_attempts; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_lesson_attempts (id, lessonid, pageid, userid, answerid, retry, correct, useranswer, timeseen) FROM stdin; +\. + + +-- +-- TOC entry 11591 (class 0 OID 0) +-- Dependencies: 782 +-- Name: mdl_lesson_attempts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_lesson_attempts_id_seq', 1, false); + + +-- +-- TOC entry 10274 (class 0 OID 21413) +-- Dependencies: 789 +-- Data for Name: mdl_lesson_branch; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_lesson_branch (id, lessonid, userid, pageid, retry, flag, timeseen, nextpageid) FROM stdin; +\. + + +-- +-- TOC entry 11592 (class 0 OID 0) +-- Dependencies: 788 +-- Name: mdl_lesson_branch_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_lesson_branch_id_seq', 1, false); + + +-- +-- TOC entry 10270 (class 0 OID 21382) +-- Dependencies: 785 +-- Data for Name: mdl_lesson_grades; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_lesson_grades (id, lessonid, userid, grade, late, completed) FROM stdin; +\. + + +-- +-- TOC entry 11593 (class 0 OID 0) +-- Dependencies: 784 +-- Name: mdl_lesson_grades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_lesson_grades_id_seq', 1, false); + + +-- +-- TOC entry 11594 (class 0 OID 0) +-- Dependencies: 776 +-- Name: mdl_lesson_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_lesson_id_seq', 1, false); + + +-- +-- TOC entry 10276 (class 0 OID 21431) +-- Dependencies: 791 +-- Data for Name: mdl_lesson_overrides; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_lesson_overrides (id, lessonid, groupid, userid, available, deadline, timelimit, review, maxattempts, retake, password) FROM stdin; +\. + + +-- +-- TOC entry 11595 (class 0 OID 0) +-- Dependencies: 790 +-- Name: mdl_lesson_overrides_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_lesson_overrides_id_seq', 1, false); + + +-- +-- TOC entry 10264 (class 0 OID 21314) +-- Dependencies: 779 +-- Data for Name: mdl_lesson_pages; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_lesson_pages (id, lessonid, prevpageid, nextpageid, qtype, qoption, layout, display, timecreated, timemodified, title, contents, contentsformat) FROM stdin; +\. + + +-- +-- TOC entry 11596 (class 0 OID 0) +-- Dependencies: 778 +-- Name: mdl_lesson_pages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_lesson_pages_id_seq', 1, false); + + +-- +-- TOC entry 10272 (class 0 OID 21397) +-- Dependencies: 787 +-- Data for Name: mdl_lesson_timer; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_lesson_timer (id, lessonid, userid, starttime, lessontime, completed, timemodifiedoffline) FROM stdin; +\. + + +-- +-- TOC entry 11597 (class 0 OID 0) +-- Dependencies: 786 +-- Name: mdl_lesson_timer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_lesson_timer_id_seq', 1, false); + + +-- +-- TOC entry 9956 (class 0 OID 18771) +-- Dependencies: 471 +-- Data for Name: mdl_license; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_license (id, shortname, fullname, source, enabled, version, custom, sortorder) FROM stdin; +1 unknown Licence not specified 1 2010033100 0 1 +2 allrightsreserved All rights reserved https://en.wikipedia.org/wiki/All_rights_reserved 1 2010033100 0 2 +3 public Public domain https://en.wikipedia.org/wiki/Public_domain 1 2010033100 0 3 +4 cc Creative Commons https://creativecommons.org/licenses/by/3.0/ 1 2010033100 0 4 +5 cc-nd Creative Commons - NoDerivs https://creativecommons.org/licenses/by-nd/3.0/ 1 2010033100 0 5 +6 cc-nc-nd Creative Commons - No Commercial NoDerivs https://creativecommons.org/licenses/by-nc-nd/3.0/ 1 2010033100 0 6 +7 cc-nc Creative Commons - No Commercial https://creativecommons.org/licenses/by-nc/3.0/ 1 2010033100 0 7 +8 cc-nc-sa Creative Commons - No Commercial ShareAlike https://creativecommons.org/licenses/by-nc-sa/3.0/ 1 2010033100 0 8 +9 cc-sa Creative Commons - ShareAlike https://creativecommons.org/licenses/by-sa/3.0/ 1 2010033100 0 9 +\. + + +-- +-- TOC entry 11598 (class 0 OID 0) +-- Dependencies: 470 +-- Name: mdl_license_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_license_id_seq', 9, true); + + +-- +-- TOC entry 10008 (class 0 OID 19175) +-- Dependencies: 523 +-- Data for Name: mdl_lock_db; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_lock_db (id, resourcekey, expires, owner) FROM stdin; +\. + + +-- +-- TOC entry 11599 (class 0 OID 0) +-- Dependencies: 522 +-- Name: mdl_lock_db_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_lock_db_id_seq', 1, false); + + +-- +-- TOC entry 9713 (class 0 OID 16787) +-- Dependencies: 228 +-- Data for Name: mdl_log; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_log (id, "time", userid, ip, course, module, cmid, action, url, info) FROM stdin; +\. + + +-- +-- TOC entry 9717 (class 0 OID 16821) +-- Dependencies: 232 +-- Data for Name: mdl_log_display; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_log_display (id, module, action, mtable, field, component) FROM stdin; +1 course user report user '' || firstname || ' ' || lastname moodle +2 course view course fullname moodle +3 course view section course_sections name moodle +4 course update course fullname moodle +5 course hide course fullname moodle +6 course show course fullname moodle +7 course move course fullname moodle +8 course enrol course fullname moodle +9 course unenrol course fullname moodle +10 course report log course fullname moodle +11 course report live course fullname moodle +12 course report outline course fullname moodle +13 course report participation course fullname moodle +14 course report stats course fullname moodle +15 category add course_categories name moodle +16 category hide course_categories name moodle +17 category move course_categories name moodle +18 category show course_categories name moodle +19 category update course_categories name moodle +20 message write user '' || firstname || ' ' || lastname moodle +21 message read user '' || firstname || ' ' || lastname moodle +22 message add contact user '' || firstname || ' ' || lastname moodle +23 message remove contact user '' || firstname || ' ' || lastname moodle +24 message block contact user '' || firstname || ' ' || lastname moodle +25 message unblock contact user '' || firstname || ' ' || lastname moodle +26 group view groups name moodle +27 tag update tag name moodle +28 tag flag tag name moodle +29 user view user '' || firstname || ' ' || lastname moodle +30 assign add assign name mod_assign +31 assign delete mod assign name mod_assign +32 assign download all submissions assign name mod_assign +33 assign grade submission assign name mod_assign +34 assign lock submission assign name mod_assign +35 assign reveal identities assign name mod_assign +36 assign revert submission to draft assign name mod_assign +37 assign set marking workflow state assign name mod_assign +38 assign submission statement accepted assign name mod_assign +39 assign submit assign name mod_assign +40 assign submit for grading assign name mod_assign +41 assign unlock submission assign name mod_assign +42 assign update assign name mod_assign +43 assign upload assign name mod_assign +44 assign view assign name mod_assign +45 assign view all course fullname mod_assign +46 assign view confirm submit assignment form assign name mod_assign +47 assign view grading form assign name mod_assign +48 assign view submission assign name mod_assign +49 assign view submission grading table assign name mod_assign +50 assign view submit assignment form assign name mod_assign +51 assign view feedback assign name mod_assign +52 assign view batch set marking workflow state assign name mod_assign +53 assignment view assignment name mod_assignment +54 assignment add assignment name mod_assignment +55 assignment update assignment name mod_assignment +56 assignment view submission assignment name mod_assignment +57 assignment upload assignment name mod_assignment +58 book add book name mod_book +59 book update book name mod_book +60 book view book name mod_book +61 book add chapter book_chapters title mod_book +62 book update chapter book_chapters title mod_book +63 book view chapter book_chapters title mod_book +64 chat view chat name mod_chat +65 chat add chat name mod_chat +66 chat update chat name mod_chat +67 chat report chat name mod_chat +68 chat talk chat name mod_chat +69 choice view choice name mod_choice +70 choice update choice name mod_choice +71 choice add choice name mod_choice +72 choice report choice name mod_choice +73 choice choose choice name mod_choice +74 choice choose again choice name mod_choice +75 data view data name mod_data +76 data add data name mod_data +77 data update data name mod_data +78 data record delete data name mod_data +79 data fields add data_fields name mod_data +80 data fields update data_fields name mod_data +81 data templates saved data name mod_data +82 data templates def data name mod_data +83 feedback startcomplete feedback name mod_feedback +84 feedback submit feedback name mod_feedback +85 feedback delete feedback name mod_feedback +86 feedback view feedback name mod_feedback +87 feedback view all course shortname mod_feedback +88 folder view folder name mod_folder +89 folder view all folder name mod_folder +90 folder update folder name mod_folder +91 folder add folder name mod_folder +92 forum add forum name mod_forum +93 forum update forum name mod_forum +94 forum add discussion forum_discussions name mod_forum +95 forum add post forum_posts subject mod_forum +96 forum update post forum_posts subject mod_forum +97 forum user report user '' || firstname || ' ' || lastname mod_forum +98 forum move discussion forum_discussions name mod_forum +99 forum view subscribers forum name mod_forum +100 forum view discussion forum_discussions name mod_forum +101 forum view forum forum name mod_forum +102 forum subscribe forum name mod_forum +103 forum unsubscribe forum name mod_forum +104 forum pin discussion forum_discussions name mod_forum +105 forum unpin discussion forum_discussions name mod_forum +106 glossary add glossary name mod_glossary +107 glossary update glossary name mod_glossary +108 glossary view glossary name mod_glossary +109 glossary view all glossary name mod_glossary +110 glossary add entry glossary name mod_glossary +111 glossary update entry glossary name mod_glossary +112 glossary add category glossary name mod_glossary +113 glossary update category glossary name mod_glossary +114 glossary delete category glossary name mod_glossary +115 glossary approve entry glossary name mod_glossary +116 glossary disapprove entry glossary name mod_glossary +117 glossary view entry glossary_entries concept mod_glossary +118 imscp view imscp name mod_imscp +119 imscp view all imscp name mod_imscp +120 imscp update imscp name mod_imscp +121 imscp add imscp name mod_imscp +122 label add label name mod_label +123 label update label name mod_label +124 lesson start lesson name mod_lesson +125 lesson end lesson name mod_lesson +126 lesson view lesson_pages title mod_lesson +127 lti view lti name mod_lti +128 lti launch lti name mod_lti +129 lti view all lti name mod_lti +130 page view page name mod_page +131 page view all page name mod_page +132 page update page name mod_page +133 page add page name mod_page +134 quiz add quiz name mod_quiz +135 quiz update quiz name mod_quiz +136 quiz view quiz name mod_quiz +137 quiz report quiz name mod_quiz +138 quiz attempt quiz name mod_quiz +139 quiz submit quiz name mod_quiz +140 quiz review quiz name mod_quiz +141 quiz editquestions quiz name mod_quiz +142 quiz preview quiz name mod_quiz +143 quiz start attempt quiz name mod_quiz +144 quiz close attempt quiz name mod_quiz +145 quiz continue attempt quiz name mod_quiz +146 quiz edit override quiz name mod_quiz +147 quiz delete override quiz name mod_quiz +148 quiz view summary quiz name mod_quiz +149 resource view resource name mod_resource +150 resource view all resource name mod_resource +151 resource update resource name mod_resource +152 resource add resource name mod_resource +153 scorm view scorm name mod_scorm +154 scorm review scorm name mod_scorm +155 scorm update scorm name mod_scorm +156 scorm add scorm name mod_scorm +157 survey add survey name mod_survey +158 survey update survey name mod_survey +159 survey download survey name mod_survey +160 survey view form survey name mod_survey +161 survey view graph survey name mod_survey +162 survey view report survey name mod_survey +163 survey submit survey name mod_survey +164 url view url name mod_url +165 url view all url name mod_url +166 url update url name mod_url +167 url add url name mod_url +168 workshop add workshop name mod_workshop +169 workshop update workshop name mod_workshop +170 workshop view workshop name mod_workshop +171 workshop view all workshop name mod_workshop +172 workshop add submission workshop_submissions title mod_workshop +173 workshop update submission workshop_submissions title mod_workshop +174 workshop view submission workshop_submissions title mod_workshop +175 workshop add assessment workshop_submissions title mod_workshop +176 workshop update assessment workshop_submissions title mod_workshop +177 workshop add example workshop_submissions title mod_workshop +178 workshop update example workshop_submissions title mod_workshop +179 workshop view example workshop_submissions title mod_workshop +180 workshop add reference assessment workshop_submissions title mod_workshop +181 workshop update reference assessment workshop_submissions title mod_workshop +182 workshop add example assessment workshop_submissions title mod_workshop +183 workshop update example assessment workshop_submissions title mod_workshop +184 workshop update aggregate grades workshop name mod_workshop +185 workshop update clear aggregated grades workshop name mod_workshop +186 workshop update clear assessments workshop name mod_workshop +187 book exportimscp book name booktool_exportimscp +188 book print book name booktool_print +189 book print chapter book_chapters title booktool_print +\. + + +-- +-- TOC entry 11600 (class 0 OID 0) +-- Dependencies: 231 +-- Name: mdl_log_display_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_log_display_id_seq', 189, true); + + +-- +-- TOC entry 11601 (class 0 OID 0) +-- Dependencies: 227 +-- Name: mdl_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_log_id_seq', 1, false); + + +-- +-- TOC entry 9715 (class 0 OID 16809) +-- Dependencies: 230 +-- Data for Name: mdl_log_queries; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_log_queries (id, qtype, sqltext, sqlparams, error, info, backtrace, exectime, timelogged) FROM stdin; +\. + + +-- +-- TOC entry 11602 (class 0 OID 0) +-- Dependencies: 229 +-- Name: mdl_log_queries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_log_queries_id_seq', 1, false); + + +-- +-- TOC entry 10524 (class 0 OID 23375) +-- Dependencies: 1039 +-- Data for Name: mdl_logstore_standard_log; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_logstore_standard_log (id, eventname, component, action, target, objecttable, objectid, crud, edulevel, contextid, contextlevel, contextinstanceid, userid, courseid, relateduserid, anonymous, other, timecreated, origin, ip, realuserid) FROM stdin; +1 \\core\\event\\user_loggedin core loggedin user user 2 r 0 1 10 0 2 0 \N 0 a:1:{s:8:"username";s:5:"admin";} 1609808513 web 67.182.30.218 \N +2 \\core\\event\\user_loggedin core loggedin user user 2 r 0 1 10 0 2 0 \N 0 a:1:{s:8:"username";s:5:"admin";} 1609883714 web 67.182.30.218 \N +3 \\core\\event\\user_password_updated core updated user_password \N \N u 0 5 30 2 2 0 2 0 a:1:{s:14:"forgottenreset";b:0;} 1609884654 web 67.182.30.218 \N +4 \\core\\event\\user_updated core updated user user 2 u 0 5 30 2 2 0 2 0 N; 1609884654 web 67.182.30.218 \N +5 \\core\\event\\config_log_created core created config_log config_log 592 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"notloggedinroleid";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +6 \\core\\event\\config_log_created core created config_log config_log 593 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"guestroleid";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +7 \\core\\event\\config_log_created core created config_log config_log 594 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"defaultuserroleid";s:8:"oldvalue";N;s:5:"value";s:1:"7";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +8 \\core\\event\\config_log_created core created config_log config_log 595 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"creatornewroleid";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +9 \\core\\event\\config_log_created core created config_log config_log 596 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"restorernewroleid";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +10 \\core\\event\\config_log_created core created config_log config_log 597 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"contactdataprotectionofficer";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"tool_dataprivacy";} 1609884655 web 67.182.30.218 \N +11 \\core\\event\\config_log_created core created config_log config_log 598 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"automaticdataexportapproval";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"tool_dataprivacy";} 1609884655 web 67.182.30.218 \N +12 \\core\\event\\config_log_created core created config_log config_log 599 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"automaticdatadeletionapproval";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"tool_dataprivacy";} 1609884655 web 67.182.30.218 \N +13 \\core\\event\\config_log_created core created config_log config_log 600 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"automaticdeletionrequests";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"tool_dataprivacy";} 1609884655 web 67.182.30.218 \N +14 \\core\\event\\config_log_created core created config_log config_log 601 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"privacyrequestexpiry";s:8:"oldvalue";N;s:5:"value";s:6:"604800";s:6:"plugin";s:16:"tool_dataprivacy";} 1609884655 web 67.182.30.218 \N +15 \\core\\event\\config_log_created core created config_log config_log 602 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:33:"requireallenddatesforuserdeletion";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"tool_dataprivacy";} 1609884655 web 67.182.30.218 \N +16 \\core\\event\\config_log_created core created config_log config_log 603 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"showdataretentionsummary";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"tool_dataprivacy";} 1609884655 web 67.182.30.218 \N +17 \\core\\event\\config_log_created core created config_log config_log 604 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"exportlog";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:8:"tool_log";} 1609884655 web 67.182.30.218 \N +18 \\core\\event\\config_log_created core created config_log config_log 605 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"sitepolicyhandler";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +19 \\core\\event\\config_log_created core created config_log config_log 606 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"gradebookroles";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +20 \\core\\event\\config_log_created core created config_log config_log 607 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"logstore";s:8:"oldvalue";N;s:5:"value";s:17:"logstore_standard";s:6:"plugin";s:9:"analytics";} 1609884655 web 67.182.30.218 \N +21 \\core\\event\\config_log_created core created config_log config_log 608 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"h5plibraryhandler";s:8:"oldvalue";N;s:5:"value";s:11:"h5plib_v124";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +22 \\core\\event\\config_log_created core created config_log config_log 609 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"jabberhost";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +23 \\core\\event\\config_log_created core created config_log config_log 610 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"jabberserver";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +24 \\core\\event\\config_log_created core created config_log config_log 611 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"jabberusername";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +25 \\core\\event\\config_log_created core created config_log config_log 612 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"jabberpassword";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +26 \\core\\event\\config_log_created core created config_log config_log 613 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"jabberport";s:8:"oldvalue";N;s:5:"value";s:4:"5222";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +27 \\core\\event\\config_log_created core created config_log config_log 614 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"airnotifierurl";s:8:"oldvalue";N;s:5:"value";s:27:"https://messages.moodle.net";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +28 \\core\\event\\config_log_created core created config_log config_log 615 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"airnotifierport";s:8:"oldvalue";N;s:5:"value";s:3:"443";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +29 \\core\\event\\config_log_created core created config_log config_log 616 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"airnotifiermobileappname";s:8:"oldvalue";N;s:5:"value";s:23:"com.moodle.moodlemobile";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +30 \\core\\event\\config_log_created core created config_log config_log 617 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"airnotifierappname";s:8:"oldvalue";N;s:5:"value";s:21:"commoodlemoodlemobile";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +31 \\core\\event\\config_log_created core created config_log config_log 618 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"airnotifieraccesskey";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +32 \\core\\event\\config_log_created core created config_log config_log 619 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"feedback_plugin_for_gradebook";s:8:"oldvalue";N;s:5:"value";s:23:"assignfeedback_comments";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +33 \\core\\event\\config_log_created core created config_log config_log 620 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"showrecentsubmissions";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +34 \\core\\event\\config_log_created core created config_log config_log 621 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"submissionreceipts";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +35 \\core\\event\\config_log_created core created config_log config_log 622 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"submissionstatement";s:8:"oldvalue";N;s:5:"value";s:102:"This submission is my own work, except where I have acknowledged the use of the works of other people.";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +36 \\core\\event\\config_log_created core created config_log config_log 623 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:33:"submissionstatementteamsubmission";s:8:"oldvalue";N;s:5:"value";s:112:"This submission is the work of my group, except where we have acknowledged the use of the works of other people.";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +37 \\core\\event\\config_log_created core created config_log config_log 624 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:42:"submissionstatementteamsubmissionallsubmit";s:8:"oldvalue";N;s:5:"value";s:120:"This submission is my own work as a group member, except where I have acknowledged the use of the works of other people.";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +38 \\core\\event\\config_log_created core created config_log config_log 625 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"maxperpage";s:8:"oldvalue";N;s:5:"value";s:2:"-1";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +39 \\core\\event\\config_log_created core created config_log config_log 626 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"alwaysshowdescription";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +40 \\core\\event\\config_log_created core created config_log config_log 627 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"alwaysshowdescription_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +41 \\core\\event\\config_log_created core created config_log config_log 628 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"alwaysshowdescription_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +42 \\core\\event\\config_log_created core created config_log config_log 629 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"allowsubmissionsfromdate";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +43 \\core\\event\\config_log_created core created config_log config_log 630 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:32:"allowsubmissionsfromdate_enabled";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +44 \\core\\event\\config_log_created core created config_log config_log 631 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"allowsubmissionsfromdate_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +45 \\core\\event\\config_log_created core created config_log config_log 632 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"duedate";s:8:"oldvalue";N;s:5:"value";s:6:"604800";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +46 \\core\\event\\config_log_created core created config_log config_log 633 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"duedate_enabled";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +47 \\core\\event\\config_log_created core created config_log config_log 634 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"duedate_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +48 \\core\\event\\config_log_created core created config_log config_log 635 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"cutoffdate";s:8:"oldvalue";N;s:5:"value";s:7:"1209600";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +49 \\core\\event\\config_log_created core created config_log config_log 636 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"cutoffdate_enabled";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +50 \\core\\event\\config_log_created core created config_log config_log 637 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"cutoffdate_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +51 \\core\\event\\config_log_created core created config_log config_log 638 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"gradingduedate";s:8:"oldvalue";N;s:5:"value";s:7:"1209600";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +52 \\core\\event\\config_log_created core created config_log config_log 639 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"gradingduedate_enabled";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +53 \\core\\event\\config_log_created core created config_log config_log 640 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"gradingduedate_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +54 \\core\\event\\config_log_created core created config_log config_log 641 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"submissiondrafts";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +55 \\core\\event\\config_log_created core created config_log config_log 642 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"submissiondrafts_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +56 \\core\\event\\config_log_created core created config_log config_log 643 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"submissiondrafts_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +57 \\core\\event\\config_log_created core created config_log config_log 644 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"requiresubmissionstatement";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +58 \\core\\event\\config_log_created core created config_log config_log 645 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"requiresubmissionstatement_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +59 \\core\\event\\config_log_created core created config_log config_log 646 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:33:"requiresubmissionstatement_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +60 \\core\\event\\config_log_created core created config_log config_log 647 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"attemptreopenmethod";s:8:"oldvalue";N;s:5:"value";s:4:"none";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +61 \\core\\event\\config_log_created core created config_log config_log 648 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"attemptreopenmethod_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +62 \\core\\event\\config_log_created core created config_log config_log 649 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"attemptreopenmethod_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +63 \\core\\event\\config_log_created core created config_log config_log 650 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"maxattempts";s:8:"oldvalue";N;s:5:"value";s:2:"-1";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +64 \\core\\event\\config_log_created core created config_log config_log 651 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"maxattempts_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +65 \\core\\event\\config_log_created core created config_log config_log 652 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"maxattempts_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +66 \\core\\event\\config_log_created core created config_log config_log 653 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"teamsubmission";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +67 \\core\\event\\config_log_created core created config_log config_log 654 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"teamsubmission_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +68 \\core\\event\\config_log_created core created config_log config_log 655 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"teamsubmission_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +69 \\core\\event\\config_log_created core created config_log config_log 656 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"preventsubmissionnotingroup";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +70 \\core\\event\\config_log_created core created config_log config_log 657 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"preventsubmissionnotingroup_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +71 \\core\\event\\config_log_created core created config_log config_log 658 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"preventsubmissionnotingroup_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +72 \\core\\event\\config_log_created core created config_log config_log 659 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"requireallteammemberssubmit";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +73 \\core\\event\\config_log_created core created config_log config_log 660 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"requireallteammemberssubmit_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +74 \\core\\event\\config_log_created core created config_log config_log 661 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"requireallteammemberssubmit_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +75 \\core\\event\\config_log_created core created config_log config_log 662 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"teamsubmissiongroupingid";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +76 \\core\\event\\config_log_created core created config_log config_log 663 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"teamsubmissiongroupingid_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +77 \\core\\event\\config_log_created core created config_log config_log 664 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"sendnotifications";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +78 \\core\\event\\config_log_created core created config_log config_log 665 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"sendnotifications_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +79 \\core\\event\\config_log_created core created config_log config_log 666 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"sendnotifications_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +80 \\core\\event\\config_log_created core created config_log config_log 667 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"sendlatenotifications";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +81 \\core\\event\\config_log_created core created config_log config_log 668 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"sendlatenotifications_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +82 \\core\\event\\config_log_created core created config_log config_log 669 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"sendlatenotifications_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +83 \\core\\event\\config_log_created core created config_log config_log 670 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"sendstudentnotifications";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +84 \\core\\event\\config_log_created core created config_log config_log 671 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"sendstudentnotifications_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +85 \\core\\event\\config_log_created core created config_log config_log 672 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"sendstudentnotifications_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +86 \\core\\event\\config_log_created core created config_log config_log 673 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"blindmarking";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +87 \\core\\event\\config_log_created core created config_log config_log 674 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"blindmarking_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +88 \\core\\event\\config_log_created core created config_log config_log 675 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"blindmarking_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +89 \\core\\event\\config_log_created core created config_log config_log 676 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"hidegrader";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +90 \\core\\event\\config_log_created core created config_log config_log 677 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"hidegrader_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +91 \\core\\event\\config_log_created core created config_log config_log 678 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"hidegrader_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +92 \\core\\event\\config_log_created core created config_log config_log 679 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"markingworkflow";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +93 \\core\\event\\config_log_created core created config_log config_log 680 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"markingworkflow_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +94 \\core\\event\\config_log_created core created config_log config_log 681 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"markingworkflow_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +95 \\core\\event\\config_log_created core created config_log config_log 682 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"markingallocation";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +96 \\core\\event\\config_log_created core created config_log config_log 683 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"markingallocation_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +97 \\core\\event\\config_log_created core created config_log config_log 684 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"markingallocation_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N +98 \\core\\event\\config_log_created core created config_log config_log 685 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:21:"assignsubmission_file";} 1609884655 web 67.182.30.218 \N +99 \\core\\event\\config_log_created core created config_log config_log 686 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"maxfiles";s:8:"oldvalue";N;s:5:"value";s:2:"20";s:6:"plugin";s:21:"assignsubmission_file";} 1609884655 web 67.182.30.218 \N +100 \\core\\event\\config_log_created core created config_log config_log 687 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"filetypes";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:21:"assignsubmission_file";} 1609884655 web 67.182.30.218 \N +101 \\core\\event\\config_log_created core created config_log config_log 688 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"maxbytes";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:21:"assignsubmission_file";} 1609884655 web 67.182.30.218 \N +102 \\core\\event\\config_log_created core created config_log config_log 689 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:27:"assignsubmission_onlinetext";} 1609884655 web 67.182.30.218 \N +103 \\core\\event\\config_log_created core created config_log config_log 690 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:23:"assignfeedback_comments";} 1609884655 web 67.182.30.218 \N +104 \\core\\event\\config_log_created core created config_log config_log 691 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"inline";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:23:"assignfeedback_comments";} 1609884655 web 67.182.30.218 \N +105 \\core\\event\\config_log_created core created config_log config_log 692 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"inline_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:23:"assignfeedback_comments";} 1609884655 web 67.182.30.218 \N +106 \\core\\event\\config_log_created core created config_log config_log 693 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"inline_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:23:"assignfeedback_comments";} 1609884655 web 67.182.30.218 \N +107 \\core\\event\\config_log_created core created config_log config_log 694 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:22:"assignfeedback_editpdf";} 1609884655 web 67.182.30.218 \N +108 \\core\\event\\config_log_created core created config_log config_log 695 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"stamps";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"assignfeedback_editpdf";} 1609884655 web 67.182.30.218 \N +109 \\core\\event\\config_log_created core created config_log config_log 696 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"assignfeedback_file";} 1609884655 web 67.182.30.218 \N +110 \\core\\event\\config_log_created core created config_log config_log 697 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:22:"assignfeedback_offline";} 1609884655 web 67.182.30.218 \N +111 \\core\\event\\config_log_created core created config_log config_log 698 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"numberingoptions";s:8:"oldvalue";N;s:5:"value";s:7:"0,1,2,3";s:6:"plugin";s:4:"book";} 1609884655 web 67.182.30.218 \N +112 \\core\\event\\config_log_created core created config_log config_log 699 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"navoptions";s:8:"oldvalue";N;s:5:"value";s:5:"0,1,2";s:6:"plugin";s:4:"book";} 1609884655 web 67.182.30.218 \N +113 \\core\\event\\config_log_created core created config_log config_log 700 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"numbering";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"book";} 1609884655 web 67.182.30.218 \N +114 \\core\\event\\config_log_created core created config_log config_log 701 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"navstyle";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"book";} 1609884655 web 67.182.30.218 \N +115 \\core\\event\\config_log_created core created config_log config_log 702 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"chat_method";s:8:"oldvalue";N;s:5:"value";s:4:"ajax";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +116 \\core\\event\\config_log_created core created config_log config_log 703 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"chat_refresh_userlist";s:8:"oldvalue";N;s:5:"value";s:2:"10";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +117 \\core\\event\\config_log_created core created config_log config_log 704 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"chat_old_ping";s:8:"oldvalue";N;s:5:"value";s:2:"35";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +118 \\core\\event\\config_log_created core created config_log config_log 705 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"chat_refresh_room";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +119 \\core\\event\\config_log_created core created config_log config_log 706 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"chat_normal_updatemode";s:8:"oldvalue";N;s:5:"value";s:8:"jsupdate";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +120 \\core\\event\\config_log_created core created config_log config_log 707 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"chat_serverhost";s:8:"oldvalue";N;s:5:"value";s:10:"connectbox";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +121 \\core\\event\\config_log_created core created config_log config_log 708 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"chat_serverip";s:8:"oldvalue";N;s:5:"value";s:9:"127.0.0.1";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +122 \\core\\event\\config_log_created core created config_log config_log 709 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"chat_serverport";s:8:"oldvalue";N;s:5:"value";s:4:"9111";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +123 \\core\\event\\config_log_created core created config_log config_log 710 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"chat_servermax";s:8:"oldvalue";N;s:5:"value";s:3:"100";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +124 \\core\\event\\config_log_created core created config_log config_log 711 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"data_enablerssfeeds";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +125 \\core\\event\\config_log_created core created config_log config_log 712 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"feedback_allowfullanonymous";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +126 \\core\\event\\config_log_created core created config_log config_log 713 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"framesize";s:8:"oldvalue";N;s:5:"value";s:3:"130";s:6:"plugin";s:8:"resource";} 1609884655 web 67.182.30.218 \N +127 \\core\\event\\config_log_created core created config_log config_log 714 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"displayoptions";s:8:"oldvalue";N;s:5:"value";s:9:"0,1,4,5,6";s:6:"plugin";s:8:"resource";} 1609884655 web 67.182.30.218 \N +128 \\core\\event\\config_log_created core created config_log config_log 715 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"printintro";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:8:"resource";} 1609884655 web 67.182.30.218 \N +129 \\core\\event\\config_log_created core created config_log config_log 716 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"display";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"resource";} 1609884655 web 67.182.30.218 \N +130 \\core\\event\\config_log_created core created config_log config_log 717 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"showsize";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"resource";} 1609884655 web 67.182.30.218 \N +131 \\core\\event\\config_log_created core created config_log config_log 718 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"showtype";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"resource";} 1609884655 web 67.182.30.218 \N +132 \\core\\event\\config_log_created core created config_log config_log 719 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"showdate";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"resource";} 1609884655 web 67.182.30.218 \N +133 \\core\\event\\config_log_created core created config_log config_log 720 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"popupwidth";s:8:"oldvalue";N;s:5:"value";s:3:"620";s:6:"plugin";s:8:"resource";} 1609884655 web 67.182.30.218 \N +134 \\core\\event\\config_log_created core created config_log config_log 721 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"popupheight";s:8:"oldvalue";N;s:5:"value";s:3:"450";s:6:"plugin";s:8:"resource";} 1609884655 web 67.182.30.218 \N +135 \\core\\event\\config_log_created core created config_log config_log 722 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"filterfiles";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"resource";} 1609884655 web 67.182.30.218 \N +136 \\core\\event\\config_log_created core created config_log config_log 723 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"showexpanded";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"folder";} 1609884655 web 67.182.30.218 \N +137 \\core\\event\\config_log_created core created config_log config_log 724 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"maxsizetodownload";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"folder";} 1609884655 web 67.182.30.218 \N +138 \\core\\event\\config_log_created core created config_log config_log 725 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"forum_displaymode";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +139 \\core\\event\\config_log_created core created config_log config_log 726 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"forum_shortpost";s:8:"oldvalue";N;s:5:"value";s:3:"300";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +140 \\core\\event\\config_log_created core created config_log config_log 727 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"forum_longpost";s:8:"oldvalue";N;s:5:"value";s:3:"600";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +141 \\core\\event\\config_log_created core created config_log config_log 728 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"forum_manydiscussions";s:8:"oldvalue";N;s:5:"value";s:3:"100";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +142 \\core\\event\\config_log_created core created config_log config_log 729 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"forum_maxbytes";s:8:"oldvalue";N;s:5:"value";s:6:"512000";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +143 \\core\\event\\config_log_created core created config_log config_log 730 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"forum_maxattachments";s:8:"oldvalue";N;s:5:"value";s:1:"9";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +144 \\core\\event\\config_log_created core created config_log config_log 731 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"forum_subscription";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +145 \\core\\event\\config_log_created core created config_log config_log 732 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"forum_trackingtype";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +146 \\core\\event\\config_log_created core created config_log config_log 733 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"forum_trackreadposts";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +147 \\core\\event\\config_log_created core created config_log config_log 734 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"forum_allowforcedreadtracking";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +148 \\core\\event\\config_log_created core created config_log config_log 735 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"forum_oldpostdays";s:8:"oldvalue";N;s:5:"value";s:2:"14";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +149 \\core\\event\\config_log_created core created config_log config_log 736 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"forum_usermarksread";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +150 \\core\\event\\config_log_created core created config_log config_log 737 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"forum_cleanreadtime";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +151 \\core\\event\\config_log_created core created config_log config_log 738 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"digestmailtime";s:8:"oldvalue";N;s:5:"value";s:2:"17";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +152 \\core\\event\\config_log_created core created config_log config_log 739 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"forum_enablerssfeeds";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +153 \\core\\event\\config_log_created core created config_log config_log 740 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"forum_enabletimedposts";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +154 \\core\\event\\config_log_created core created config_log config_log 741 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"glossary_entbypage";s:8:"oldvalue";N;s:5:"value";s:2:"10";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +155 \\core\\event\\config_log_created core created config_log config_log 742 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"glossary_dupentries";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +156 \\core\\event\\config_log_created core created config_log config_log 743 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"glossary_allowcomments";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +157 \\core\\event\\config_log_created core created config_log config_log 744 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"glossary_linkbydefault";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +158 \\core\\event\\config_log_created core created config_log config_log 745 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"glossary_defaultapproval";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +159 \\core\\event\\config_log_created core created config_log config_log 746 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"glossary_enablerssfeeds";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +160 \\core\\event\\config_log_created core created config_log config_log 747 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"glossary_linkentries";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +161 \\core\\event\\config_log_created core created config_log config_log 748 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"glossary_casesensitive";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +162 \\core\\event\\config_log_created core created config_log config_log 749 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"glossary_fullmatch";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N +163 \\core\\event\\config_log_created core created config_log config_log 750 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"keepold";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"imscp";} 1609884655 web 67.182.30.218 \N +164 \\core\\event\\config_log_created core created config_log config_log 751 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"keepold_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:5:"imscp";} 1609884655 web 67.182.30.218 \N +165 \\core\\event\\config_log_created core created config_log config_log 752 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"dndmedia";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"label";} 1609884655 web 67.182.30.218 \N +166 \\core\\event\\config_log_created core created config_log config_log 753 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"dndresizewidth";s:8:"oldvalue";N;s:5:"value";s:3:"400";s:6:"plugin";s:5:"label";} 1609884655 web 67.182.30.218 \N +167 \\core\\event\\config_log_created core created config_log config_log 754 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"dndresizeheight";s:8:"oldvalue";N;s:5:"value";s:3:"400";s:6:"plugin";s:5:"label";} 1609884655 web 67.182.30.218 \N +168 \\core\\event\\config_log_created core created config_log config_log 755 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"mediafile";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1609884655 web 67.182.30.218 \N +169 \\core\\event\\config_log_created core created config_log config_log 756 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"mediafile_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884655 web 67.182.30.218 \N +170 \\core\\event\\config_log_created core created config_log config_log 757 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"mediawidth";s:8:"oldvalue";N;s:5:"value";s:3:"640";s:6:"plugin";s:10:"mod_lesson";} 1609884655 web 67.182.30.218 \N +171 \\core\\event\\config_log_created core created config_log config_log 758 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"mediaheight";s:8:"oldvalue";N;s:5:"value";s:3:"480";s:6:"plugin";s:10:"mod_lesson";} 1609884655 web 67.182.30.218 \N +172 \\core\\event\\config_log_created core created config_log config_log 759 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"mediaclose";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884655 web 67.182.30.218 \N +173 \\core\\event\\config_log_created core created config_log config_log 760 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"progressbar";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884655 web 67.182.30.218 \N +174 \\core\\event\\config_log_created core created config_log config_log 761 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"progressbar_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1609884655 web 67.182.30.218 \N +175 \\core\\event\\config_log_created core created config_log config_log 762 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"ongoing";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884655 web 67.182.30.218 \N +176 \\core\\event\\config_log_created core created config_log config_log 763 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"ongoing_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +177 \\core\\event\\config_log_created core created config_log config_log 764 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"displayleftmenu";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +178 \\core\\event\\config_log_created core created config_log config_log 765 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"displayleftmenu_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +179 \\core\\event\\config_log_created core created config_log config_log 766 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"displayleftif";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +180 \\core\\event\\config_log_created core created config_log config_log 767 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"displayleftif_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +181 \\core\\event\\config_log_created core created config_log config_log 768 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"slideshow";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +182 \\core\\event\\config_log_created core created config_log config_log 769 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"slideshow_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +183 \\core\\event\\config_log_created core created config_log config_log 770 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"slideshowwidth";s:8:"oldvalue";N;s:5:"value";s:3:"640";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +184 \\core\\event\\config_log_created core created config_log config_log 771 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"slideshowheight";s:8:"oldvalue";N;s:5:"value";s:3:"480";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +185 \\core\\event\\config_log_created core created config_log config_log 772 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"slideshowbgcolor";s:8:"oldvalue";N;s:5:"value";s:7:"#FFFFFF";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +186 \\core\\event\\config_log_created core created config_log config_log 773 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"maxanswers";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +187 \\core\\event\\config_log_created core created config_log config_log 774 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"maxanswers_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +188 \\core\\event\\config_log_created core created config_log config_log 775 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"defaultfeedback";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +189 \\core\\event\\config_log_created core created config_log config_log 776 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"defaultfeedback_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +190 \\core\\event\\config_log_created core created config_log config_log 777 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"activitylink";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +191 \\core\\event\\config_log_created core created config_log config_log 778 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"activitylink_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +192 \\core\\event\\config_log_created core created config_log config_log 779 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"timelimit";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +193 \\core\\event\\config_log_created core created config_log config_log 780 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"timelimit_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +194 \\core\\event\\config_log_created core created config_log config_log 781 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"password";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +195 \\core\\event\\config_log_created core created config_log config_log 782 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"password_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +196 \\core\\event\\config_log_created core created config_log config_log 783 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"modattempts";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +197 \\core\\event\\config_log_created core created config_log config_log 784 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"modattempts_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +198 \\core\\event\\config_log_created core created config_log config_log 785 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"displayreview";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +199 \\core\\event\\config_log_created core created config_log config_log 786 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"displayreview_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +200 \\core\\event\\config_log_created core created config_log config_log 787 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"maximumnumberofattempts";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +201 \\core\\event\\config_log_created core created config_log config_log 788 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"maximumnumberofattempts_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +202 \\core\\event\\config_log_created core created config_log config_log 789 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"defaultnextpage";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +203 \\core\\event\\config_log_created core created config_log config_log 790 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"defaultnextpage_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +204 \\core\\event\\config_log_created core created config_log config_log 791 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"numberofpagestoshow";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +205 \\core\\event\\config_log_created core created config_log config_log 792 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"numberofpagestoshow_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +206 \\core\\event\\config_log_created core created config_log config_log 793 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"practice";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +207 \\core\\event\\config_log_created core created config_log config_log 794 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"practice_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +208 \\core\\event\\config_log_created core created config_log config_log 795 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"customscoring";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +209 \\core\\event\\config_log_created core created config_log config_log 796 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"customscoring_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +210 \\core\\event\\config_log_created core created config_log config_log 797 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"retakesallowed";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +211 \\core\\event\\config_log_created core created config_log config_log 798 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"retakesallowed_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +212 \\core\\event\\config_log_created core created config_log config_log 799 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"handlingofretakes";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +213 \\core\\event\\config_log_created core created config_log config_log 800 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"handlingofretakes_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +214 \\core\\event\\config_log_created core created config_log config_log 801 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"minimumnumberofquestions";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +215 \\core\\event\\config_log_created core created config_log config_log 802 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"minimumnumberofquestions_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N +216 \\core\\event\\config_log_created core created config_log config_log 803 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"displayoptions";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:4:"page";} 1609884656 web 67.182.30.218 \N +217 \\core\\event\\config_log_created core created config_log config_log 804 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"printheading";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"page";} 1609884656 web 67.182.30.218 \N +218 \\core\\event\\config_log_created core created config_log config_log 805 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"printintro";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"page";} 1609884656 web 67.182.30.218 \N +219 \\core\\event\\config_log_created core created config_log config_log 806 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"printlastmodified";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"page";} 1609884656 web 67.182.30.218 \N +220 \\core\\event\\config_log_created core created config_log config_log 807 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"display";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:4:"page";} 1609884656 web 67.182.30.218 \N +221 \\core\\event\\config_log_created core created config_log config_log 808 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"popupwidth";s:8:"oldvalue";N;s:5:"value";s:3:"620";s:6:"plugin";s:4:"page";} 1609884656 web 67.182.30.218 \N +222 \\core\\event\\config_log_created core created config_log config_log 809 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"popupheight";s:8:"oldvalue";N;s:5:"value";s:3:"450";s:6:"plugin";s:4:"page";} 1609884656 web 67.182.30.218 \N +223 \\core\\event\\config_log_created core created config_log config_log 810 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"timelimit";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +224 \\core\\event\\config_log_created core created config_log config_log 811 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"timelimit_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +225 \\core\\event\\config_log_created core created config_log config_log 812 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"overduehandling";s:8:"oldvalue";N;s:5:"value";s:10:"autosubmit";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +226 \\core\\event\\config_log_created core created config_log config_log 813 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"overduehandling_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +227 \\core\\event\\config_log_created core created config_log config_log 814 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"graceperiod";s:8:"oldvalue";N;s:5:"value";s:5:"86400";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +228 \\core\\event\\config_log_created core created config_log config_log 815 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"graceperiod_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +229 \\core\\event\\config_log_created core created config_log config_log 816 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"graceperiodmin";s:8:"oldvalue";N;s:5:"value";s:2:"60";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +230 \\core\\event\\config_log_created core created config_log config_log 817 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"attempts";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +231 \\core\\event\\config_log_created core created config_log config_log 818 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"attempts_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +232 \\core\\event\\config_log_created core created config_log config_log 819 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"grademethod";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +233 \\core\\event\\config_log_created core created config_log config_log 820 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"grademethod_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +234 \\core\\event\\config_log_created core created config_log config_log 821 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"maximumgrade";s:8:"oldvalue";N;s:5:"value";s:2:"10";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +235 \\core\\event\\config_log_created core created config_log config_log 822 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"questionsperpage";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +236 \\core\\event\\config_log_created core created config_log config_log 823 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"questionsperpage_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +237 \\core\\event\\config_log_created core created config_log config_log 824 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"navmethod";s:8:"oldvalue";N;s:5:"value";s:4:"free";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +238 \\core\\event\\config_log_created core created config_log config_log 825 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"navmethod_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +239 \\core\\event\\config_log_created core created config_log config_log 826 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"shuffleanswers";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +240 \\core\\event\\config_log_created core created config_log config_log 827 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"shuffleanswers_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +241 \\core\\event\\config_log_created core created config_log config_log 828 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"preferredbehaviour";s:8:"oldvalue";N;s:5:"value";s:16:"deferredfeedback";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +242 \\core\\event\\config_log_created core created config_log config_log 829 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"canredoquestions";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +243 \\core\\event\\config_log_created core created config_log config_log 830 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"canredoquestions_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +244 \\core\\event\\config_log_created core created config_log config_log 831 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"attemptonlast";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +245 \\core\\event\\config_log_created core created config_log config_log 832 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"attemptonlast_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +246 \\core\\event\\config_log_created core created config_log config_log 833 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"reviewattempt";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +247 \\core\\event\\config_log_created core created config_log config_log 834 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"reviewcorrectness";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +248 \\core\\event\\config_log_created core created config_log config_log 835 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"reviewmarks";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +249 \\core\\event\\config_log_created core created config_log config_log 836 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"reviewspecificfeedback";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +250 \\core\\event\\config_log_created core created config_log config_log 837 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"reviewgeneralfeedback";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +251 \\core\\event\\config_log_created core created config_log config_log 838 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"reviewrightanswer";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +252 \\core\\event\\config_log_created core created config_log config_log 839 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"reviewoverallfeedback";s:8:"oldvalue";N;s:5:"value";s:4:"4368";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +253 \\core\\event\\config_log_created core created config_log config_log 840 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"showuserpicture";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +254 \\core\\event\\config_log_created core created config_log config_log 841 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"showuserpicture_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +255 \\core\\event\\config_log_created core created config_log config_log 842 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"decimalpoints";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +256 \\core\\event\\config_log_created core created config_log config_log 843 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"decimalpoints_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +257 \\core\\event\\config_log_created core created config_log config_log 844 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"questiondecimalpoints";s:8:"oldvalue";N;s:5:"value";s:2:"-1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +258 \\core\\event\\config_log_created core created config_log config_log 845 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"questiondecimalpoints_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +259 \\core\\event\\config_log_created core created config_log config_log 846 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"showblocks";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +260 \\core\\event\\config_log_created core created config_log config_log 847 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"showblocks_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +261 \\core\\event\\config_log_created core created config_log config_log 848 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"quizpassword";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +262 \\core\\event\\config_log_created core created config_log config_log 849 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"quizpassword_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +263 \\core\\event\\config_log_created core created config_log config_log 850 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"quizpassword_required";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +264 \\core\\event\\config_log_created core created config_log config_log 851 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"subnet";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +265 \\core\\event\\config_log_created core created config_log config_log 852 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"subnet_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +266 \\core\\event\\config_log_created core created config_log config_log 853 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"delay1";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +267 \\core\\event\\config_log_created core created config_log config_log 854 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"delay1_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +268 \\core\\event\\config_log_created core created config_log config_log 855 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"delay2";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +269 \\core\\event\\config_log_created core created config_log config_log 856 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"delay2_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +270 \\core\\event\\config_log_created core created config_log config_log 857 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"browsersecurity";s:8:"oldvalue";N;s:5:"value";s:1:"-";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +271 \\core\\event\\config_log_created core created config_log config_log 858 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"browsersecurity_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +272 \\core\\event\\config_log_created core created config_log config_log 859 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"initialnumfeedbacks";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +273 \\core\\event\\config_log_created core created config_log config_log 860 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"autosaveperiod";s:8:"oldvalue";N;s:5:"value";s:2:"60";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N +274 \\core\\event\\config_log_created core created config_log config_log 861 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"autoreconfigureseb";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:14:"quizaccess_seb";} 1609884656 web 67.182.30.218 \N +275 \\core\\event\\config_log_created core created config_log config_log 862 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"showseblinks";s:8:"oldvalue";N;s:5:"value";s:8:"seb,http";s:6:"plugin";s:14:"quizaccess_seb";} 1609884656 web 67.182.30.218 \N +276 \\core\\event\\config_log_created core created config_log config_log 863 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"downloadlink";s:8:"oldvalue";N;s:5:"value";s:44:"https://safeexambrowser.org/download_en.html";s:6:"plugin";s:14:"quizaccess_seb";} 1609884656 web 67.182.30.218 \N +277 \\core\\event\\config_log_created core created config_log config_log 864 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"quizpasswordrequired";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"quizaccess_seb";} 1609884656 web 67.182.30.218 \N +278 \\core\\event\\config_log_created core created config_log config_log 865 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"displayblocksbeforestart";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"quizaccess_seb";} 1609884656 web 67.182.30.218 \N +279 \\core\\event\\config_log_created core created config_log config_log 866 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"displayblockswhenfinished";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:14:"quizaccess_seb";} 1609884656 web 67.182.30.218 \N +280 \\core\\event\\config_log_created core created config_log config_log 867 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"displaycoursestructure";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +281 \\core\\event\\config_log_created core created config_log config_log 868 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"displaycoursestructure_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +282 \\core\\event\\config_log_created core created config_log config_log 869 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:5:"popup";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +283 \\core\\event\\config_log_created core created config_log config_log 870 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"popup_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +284 \\core\\event\\config_log_created core created config_log config_log 871 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"displayactivityname";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +285 \\core\\event\\config_log_created core created config_log config_log 872 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"framewidth";s:8:"oldvalue";N;s:5:"value";s:3:"100";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +286 \\core\\event\\config_log_created core created config_log config_log 873 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"framewidth_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +287 \\core\\event\\config_log_created core created config_log config_log 874 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"frameheight";s:8:"oldvalue";N;s:5:"value";s:3:"500";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +288 \\core\\event\\config_log_created core created config_log config_log 875 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"frameheight_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +289 \\core\\event\\config_log_created core created config_log config_log 876 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"winoptgrp_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +290 \\core\\event\\config_log_created core created config_log config_log 877 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"scrollbars";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +291 \\core\\event\\config_log_created core created config_log config_log 878 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"directories";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +292 \\core\\event\\config_log_created core created config_log config_log 879 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"location";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +293 \\core\\event\\config_log_created core created config_log config_log 880 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"menubar";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +294 \\core\\event\\config_log_created core created config_log config_log 881 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"toolbar";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +295 \\core\\event\\config_log_created core created config_log config_log 882 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"status";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +296 \\core\\event\\config_log_created core created config_log config_log 883 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"skipview";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +297 \\core\\event\\config_log_created core created config_log config_log 884 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"skipview_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +298 \\core\\event\\config_log_created core created config_log config_log 885 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"hidebrowse";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +299 \\core\\event\\config_log_created core created config_log config_log 886 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"hidebrowse_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +300 \\core\\event\\config_log_created core created config_log config_log 887 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"hidetoc";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +301 \\core\\event\\config_log_created core created config_log config_log 888 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"hidetoc_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +302 \\core\\event\\config_log_created core created config_log config_log 889 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:3:"nav";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +303 \\core\\event\\config_log_created core created config_log config_log 890 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"nav_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +304 \\core\\event\\config_log_created core created config_log config_log 891 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"navpositionleft";s:8:"oldvalue";N;s:5:"value";s:4:"-100";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +305 \\core\\event\\config_log_created core created config_log config_log 892 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"navpositionleft_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +306 \\core\\event\\config_log_created core created config_log config_log 893 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"navpositiontop";s:8:"oldvalue";N;s:5:"value";s:4:"-100";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +307 \\core\\event\\config_log_created core created config_log config_log 894 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"navpositiontop_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +308 \\core\\event\\config_log_created core created config_log config_log 895 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"collapsetocwinsize";s:8:"oldvalue";N;s:5:"value";s:3:"767";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +309 \\core\\event\\config_log_created core created config_log config_log 896 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"collapsetocwinsize_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +310 \\core\\event\\config_log_created core created config_log config_log 897 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"displayattemptstatus";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +311 \\core\\event\\config_log_created core created config_log config_log 898 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"displayattemptstatus_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +312 \\core\\event\\config_log_created core created config_log config_log 899 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"grademethod";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +313 \\core\\event\\config_log_created core created config_log config_log 900 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"maxgrade";s:8:"oldvalue";N;s:5:"value";s:3:"100";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +314 \\core\\event\\config_log_created core created config_log config_log 901 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"maxattempt";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +315 \\core\\event\\config_log_created core created config_log config_log 902 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"whatgrade";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +316 \\core\\event\\config_log_created core created config_log config_log 903 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"forcecompleted";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +317 \\core\\event\\config_log_created core created config_log config_log 904 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"forcenewattempt";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +318 \\core\\event\\config_log_created core created config_log config_log 905 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"autocommit";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +319 \\core\\event\\config_log_created core created config_log config_log 906 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"masteryoverride";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +320 \\core\\event\\config_log_created core created config_log config_log 907 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"lastattemptlock";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +321 \\core\\event\\config_log_created core created config_log config_log 908 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"auto";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +322 \\core\\event\\config_log_created core created config_log config_log 909 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"updatefreq";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +323 \\core\\event\\config_log_created core created config_log config_log 910 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"scormstandard";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +324 \\core\\event\\config_log_created core created config_log config_log 911 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"allowtypeexternal";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +325 \\core\\event\\config_log_created core created config_log config_log 912 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"allowtypelocalsync";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +326 \\core\\event\\config_log_created core created config_log config_log 913 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"allowtypeexternalaicc";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +327 \\core\\event\\config_log_created core created config_log config_log 914 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"allowaicchacp";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +328 \\core\\event\\config_log_created core created config_log config_log 915 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"aicchacptimeout";s:8:"oldvalue";N;s:5:"value";s:2:"30";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +329 \\core\\event\\config_log_created core created config_log config_log 916 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"aicchacpkeepsessiondata";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +330 \\core\\event\\config_log_created core created config_log config_log 917 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"aiccuserid";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +331 \\core\\event\\config_log_created core created config_log config_log 918 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"forcejavascript";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +332 \\core\\event\\config_log_created core created config_log config_log 919 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"allowapidebug";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +333 \\core\\event\\config_log_created core created config_log config_log 920 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"apidebugmask";s:8:"oldvalue";N;s:5:"value";s:2:".*";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +334 \\core\\event\\config_log_created core created config_log config_log 921 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"protectpackagedownloads";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +335 \\core\\event\\config_log_created core created config_log config_log 922 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"framesize";s:8:"oldvalue";N;s:5:"value";s:3:"130";s:6:"plugin";s:3:"url";} 1609884656 web 67.182.30.218 \N +336 \\core\\event\\config_log_created core created config_log config_log 923 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"secretphrase";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:3:"url";} 1609884656 web 67.182.30.218 \N +337 \\core\\event\\config_log_created core created config_log config_log 924 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"rolesinparams";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:3:"url";} 1609884656 web 67.182.30.218 \N +338 \\core\\event\\config_log_created core created config_log config_log 925 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"displayoptions";s:8:"oldvalue";N;s:5:"value";s:7:"0,1,5,6";s:6:"plugin";s:3:"url";} 1609884656 web 67.182.30.218 \N +339 \\core\\event\\config_log_created core created config_log config_log 926 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"printintro";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:3:"url";} 1609884656 web 67.182.30.218 \N +340 \\core\\event\\config_log_created core created config_log config_log 927 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"display";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:3:"url";} 1609884656 web 67.182.30.218 \N +341 \\core\\event\\config_log_created core created config_log config_log 928 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"popupwidth";s:8:"oldvalue";N;s:5:"value";s:3:"620";s:6:"plugin";s:3:"url";} 1609884656 web 67.182.30.218 \N +342 \\core\\event\\config_log_created core created config_log config_log 929 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"popupheight";s:8:"oldvalue";N;s:5:"value";s:3:"450";s:6:"plugin";s:3:"url";} 1609884656 web 67.182.30.218 \N +343 \\core\\event\\config_log_created core created config_log config_log 930 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:5:"grade";s:8:"oldvalue";N;s:5:"value";s:2:"80";s:6:"plugin";s:8:"workshop";} 1609884656 web 67.182.30.218 \N +344 \\core\\event\\config_log_created core created config_log config_log 931 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"gradinggrade";s:8:"oldvalue";N;s:5:"value";s:2:"20";s:6:"plugin";s:8:"workshop";} 1609884656 web 67.182.30.218 \N +345 \\core\\event\\config_log_created core created config_log config_log 932 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"gradedecimals";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"workshop";} 1609884656 web 67.182.30.218 \N +346 \\core\\event\\config_log_created core created config_log config_log 933 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"maxbytes";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"workshop";} 1609884656 web 67.182.30.218 \N +347 \\core\\event\\config_log_created core created config_log config_log 934 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"strategy";s:8:"oldvalue";N;s:5:"value";s:12:"accumulative";s:6:"plugin";s:8:"workshop";} 1609884656 web 67.182.30.218 \N +348 \\core\\event\\config_log_created core created config_log config_log 935 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"examplesmode";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"workshop";} 1609884656 web 67.182.30.218 \N +349 \\core\\event\\config_log_created core created config_log config_log 936 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"numofreviews";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:25:"workshopallocation_random";} 1609884656 web 67.182.30.218 \N +350 \\core\\event\\config_log_created core created config_log config_log 937 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"grade0";s:8:"oldvalue";N;s:5:"value";s:2:"No";s:6:"plugin";s:22:"workshopform_numerrors";} 1609884656 web 67.182.30.218 \N +351 \\core\\event\\config_log_created core created config_log config_log 938 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"grade1";s:8:"oldvalue";N;s:5:"value";s:3:"Yes";s:6:"plugin";s:22:"workshopform_numerrors";} 1609884656 web 67.182.30.218 \N +352 \\core\\event\\config_log_created core created config_log config_log 939 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"comparison";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:17:"workshopeval_best";} 1609884656 web 67.182.30.218 \N +353 \\core\\event\\config_log_created core created config_log config_log 940 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"coursebinenable";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:15:"tool_recyclebin";} 1609884656 web 67.182.30.218 \N +354 \\core\\event\\config_log_created core created config_log config_log 941 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"coursebinexpiry";s:8:"oldvalue";N;s:5:"value";s:6:"604800";s:6:"plugin";s:15:"tool_recyclebin";} 1609884656 web 67.182.30.218 \N +355 \\core\\event\\config_log_created core created config_log config_log 942 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"categorybinenable";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:15:"tool_recyclebin";} 1609884656 web 67.182.30.218 \N +356 \\core\\event\\config_log_created core created config_log config_log 943 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"categorybinexpiry";s:8:"oldvalue";N;s:5:"value";s:6:"604800";s:6:"plugin";s:15:"tool_recyclebin";} 1609884656 web 67.182.30.218 \N +357 \\core\\event\\config_log_created core created config_log config_log 944 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"autohide";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:15:"tool_recyclebin";} 1609884656 web 67.182.30.218 \N +358 \\core\\event\\config_log_created core created config_log config_log 945 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"runningmethod";s:8:"oldvalue";N;s:5:"value";s:11:"commandline";s:6:"plugin";s:16:"antivirus_clamav";} 1609884656 web 67.182.30.218 \N +359 \\core\\event\\config_log_created core created config_log config_log 946 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"pathtoclam";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"antivirus_clamav";} 1609884656 web 67.182.30.218 \N +360 \\core\\event\\config_log_created core created config_log config_log 947 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"pathtounixsocket";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"antivirus_clamav";} 1609884656 web 67.182.30.218 \N +361 \\core\\event\\config_log_created core created config_log config_log 948 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"tcpsockethost";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"antivirus_clamav";} 1609884656 web 67.182.30.218 \N +362 \\core\\event\\config_log_created core created config_log config_log 949 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"tcpsocketport";s:8:"oldvalue";N;s:5:"value";s:4:"3310";s:6:"plugin";s:16:"antivirus_clamav";} 1609884656 web 67.182.30.218 \N +363 \\core\\event\\config_log_created core created config_log config_log 950 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"clamfailureonupload";s:8:"oldvalue";N;s:5:"value";s:9:"donothing";s:6:"plugin";s:16:"antivirus_clamav";} 1609884656 web 67.182.30.218 \N +364 \\core\\event\\config_log_created core created config_log config_log 951 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:5:"tries";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"antivirus_clamav";} 1609884656 web 67.182.30.218 \N +365 \\core\\event\\config_log_created core created config_log config_log 952 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_map_firstname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +366 \\core\\event\\config_log_created core created config_log config_log 953 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updatelocal_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +367 \\core\\event\\config_log_created core created config_log config_log 954 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updateremote_firstname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +368 \\core\\event\\config_log_created core created config_log config_log 955 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +369 \\core\\event\\config_log_created core created config_log config_log 956 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_lastname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +370 \\core\\event\\config_log_created core created config_log config_log 957 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +371 \\core\\event\\config_log_created core created config_log config_log 958 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_lastname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +372 \\core\\event\\config_log_created core created config_log config_log 959 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +373 \\core\\event\\config_log_created core created config_log config_log 960 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_map_email";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +374 \\core\\event\\config_log_created core created config_log config_log 961 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updatelocal_email";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +375 \\core\\event\\config_log_created core created config_log config_log 962 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updateremote_email";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +376 \\core\\event\\config_log_created core created config_log config_log 963 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +377 \\core\\event\\config_log_created core created config_log config_log 964 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_city";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +378 \\core\\event\\config_log_created core created config_log config_log 965 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_city";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +379 \\core\\event\\config_log_created core created config_log config_log 966 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_city";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +380 \\core\\event\\config_log_created core created config_log config_log 967 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +381 \\core\\event\\config_log_created core created config_log config_log 968 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_country";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +382 \\core\\event\\config_log_created core created config_log config_log 969 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_country";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +383 \\core\\event\\config_log_created core created config_log config_log 970 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_country";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +384 \\core\\event\\config_log_created core created config_log config_log 971 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +385 \\core\\event\\config_log_created core created config_log config_log 972 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_lang";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +386 \\core\\event\\config_log_created core created config_log config_log 973 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_lang";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +387 \\core\\event\\config_log_created core created config_log config_log 974 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_lang";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +388 \\core\\event\\config_log_created core created config_log config_log 975 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +389 \\core\\event\\config_log_created core created config_log config_log 976 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_description";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +390 \\core\\event\\config_log_created core created config_log config_log 977 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_description";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +391 \\core\\event\\config_log_created core created config_log config_log 978 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_description";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +392 \\core\\event\\config_log_created core created config_log config_log 979 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +393 \\core\\event\\config_log_created core created config_log config_log 980 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"field_map_url";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +394 \\core\\event\\config_log_created core created config_log config_log 981 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_updatelocal_url";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +395 \\core\\event\\config_log_created core created config_log config_log 982 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updateremote_url";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +396 \\core\\event\\config_log_created core created config_log config_log 983 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +397 \\core\\event\\config_log_created core created config_log config_log 984 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_idnumber";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +398 \\core\\event\\config_log_created core created config_log config_log 985 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +399 \\core\\event\\config_log_created core created config_log config_log 986 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_idnumber";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +400 \\core\\event\\config_log_created core created config_log config_log 987 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +401 \\core\\event\\config_log_created core created config_log config_log 988 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_institution";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +402 \\core\\event\\config_log_created core created config_log config_log 989 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_institution";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +403 \\core\\event\\config_log_created core created config_log config_log 990 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_institution";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +404 \\core\\event\\config_log_created core created config_log config_log 991 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +405 \\core\\event\\config_log_created core created config_log config_log 992 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_department";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +406 \\core\\event\\config_log_created core created config_log config_log 993 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_department";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +407 \\core\\event\\config_log_created core created config_log config_log 994 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_department";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +408 \\core\\event\\config_log_created core created config_log config_log 995 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +409 \\core\\event\\config_log_created core created config_log config_log 996 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone1";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +410 \\core\\event\\config_log_created core created config_log config_log 997 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +411 \\core\\event\\config_log_created core created config_log config_log 998 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone1";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +412 \\core\\event\\config_log_created core created config_log config_log 999 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +413 \\core\\event\\config_log_created core created config_log config_log 1000 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone2";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +414 \\core\\event\\config_log_created core created config_log config_log 1001 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +415 \\core\\event\\config_log_created core created config_log config_log 1002 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone2";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +416 \\core\\event\\config_log_created core created config_log config_log 1003 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +417 \\core\\event\\config_log_created core created config_log config_log 1004 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_address";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +418 \\core\\event\\config_log_created core created config_log config_log 1005 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_address";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +419 \\core\\event\\config_log_created core created config_log config_log 1006 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_address";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +420 \\core\\event\\config_log_created core created config_log config_log 1007 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +421 \\core\\event\\config_log_created core created config_log config_log 1008 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_map_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +422 \\core\\event\\config_log_created core created config_log config_log 1009 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updatelocal_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +423 \\core\\event\\config_log_created core created config_log config_log 1010 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:36:"field_updateremote_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +424 \\core\\event\\config_log_created core created config_log config_log 1011 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +425 \\core\\event\\config_log_created core created config_log config_log 1012 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_map_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +426 \\core\\event\\config_log_created core created config_log config_log 1013 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"field_updatelocal_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +427 \\core\\event\\config_log_created core created config_log config_log 1014 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updateremote_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +428 \\core\\event\\config_log_created core created config_log config_log 1015 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +429 \\core\\event\\config_log_created core created config_log config_log 1016 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_middlename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +430 \\core\\event\\config_log_created core created config_log config_log 1017 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +431 \\core\\event\\config_log_created core created config_log config_log 1018 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_middlename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +432 \\core\\event\\config_log_created core created config_log config_log 1019 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +433 \\core\\event\\config_log_created core created config_log config_log 1020 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_map_alternatename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +434 \\core\\event\\config_log_created core created config_log config_log 1021 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"field_updatelocal_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +435 \\core\\event\\config_log_created core created config_log config_log 1022 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:32:"field_updateremote_alternatename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +436 \\core\\event\\config_log_created core created config_log config_log 1023 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +437 \\core\\event\\config_log_created core created config_log config_log 1024 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"recaptcha";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N +438 \\core\\event\\config_log_created core created config_log config_log 1025 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N +439 \\core\\event\\config_log_created core created config_log config_log 1026 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N +440 \\core\\event\\config_log_created core created config_log config_log 1027 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N +441 \\core\\event\\config_log_created core created config_log config_log 1028 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N +442 \\core\\event\\config_log_created core created config_log config_log 1029 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N +443 \\core\\event\\config_log_created core created config_log config_log 1030 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N +444 \\core\\event\\config_log_created core created config_log config_log 1031 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N +445 \\core\\event\\config_log_created core created config_log config_log 1032 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N +446 \\core\\event\\config_log_created core created config_log config_log 1033 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N +447 \\core\\event\\config_log_created core created config_log config_log 1034 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N +448 \\core\\event\\config_log_created core created config_log config_log 1035 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N +449 \\core\\event\\config_log_created core created config_log config_log 1036 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N +450 \\core\\event\\config_log_created core created config_log config_log 1037 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N +451 \\core\\event\\config_log_created core created config_log config_log 1038 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N +452 \\core\\event\\config_log_created core created config_log config_log 1039 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N +453 \\core\\event\\config_log_created core created config_log config_log 1040 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N +454 \\core\\event\\config_log_created core created config_log config_log 1041 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N +455 \\core\\event\\config_log_created core created config_log config_log 1042 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N +456 \\core\\event\\config_log_created core created config_log config_log 1043 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"host";s:8:"oldvalue";N;s:5:"value";s:9:"127.0.0.1";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +457 \\core\\event\\config_log_created core created config_log config_log 1044 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"type";s:8:"oldvalue";N;s:5:"value";s:6:"mysqli";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +458 \\core\\event\\config_log_created core created config_log config_log 1045 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"sybasequoting";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +459 \\core\\event\\config_log_created core created config_log config_log 1046 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"name";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +460 \\core\\event\\config_log_created core created config_log config_log 1047 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"user";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +461 \\core\\event\\config_log_created core created config_log config_log 1048 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"pass";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +462 \\core\\event\\config_log_created core created config_log config_log 1049 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:5:"table";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +463 \\core\\event\\config_log_created core created config_log config_log 1050 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"fielduser";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +464 \\core\\event\\config_log_created core created config_log config_log 1051 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"fieldpass";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +465 \\core\\event\\config_log_created core created config_log config_log 1052 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"passtype";s:8:"oldvalue";N;s:5:"value";s:9:"plaintext";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +466 \\core\\event\\config_log_created core created config_log config_log 1053 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"extencoding";s:8:"oldvalue";N;s:5:"value";s:5:"utf-8";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +467 \\core\\event\\config_log_created core created config_log config_log 1054 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"setupsql";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +468 \\core\\event\\config_log_created core created config_log config_log 1055 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"debugauthdb";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +469 \\core\\event\\config_log_created core created config_log config_log 1056 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"changepasswordurl";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +470 \\core\\event\\config_log_created core created config_log config_log 1057 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"removeuser";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +471 \\core\\event\\config_log_created core created config_log config_log 1058 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"updateusers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +472 \\core\\event\\config_log_created core created config_log config_log 1059 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_map_firstname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +473 \\core\\event\\config_log_created core created config_log config_log 1060 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updatelocal_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +474 \\core\\event\\config_log_created core created config_log config_log 1061 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updateremote_firstname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +475 \\core\\event\\config_log_created core created config_log config_log 1062 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +476 \\core\\event\\config_log_created core created config_log config_log 1063 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_lastname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +477 \\core\\event\\config_log_created core created config_log config_log 1064 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +478 \\core\\event\\config_log_created core created config_log config_log 1065 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_lastname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +479 \\core\\event\\config_log_created core created config_log config_log 1066 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +480 \\core\\event\\config_log_created core created config_log config_log 1067 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_map_email";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +481 \\core\\event\\config_log_created core created config_log config_log 1068 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updatelocal_email";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +482 \\core\\event\\config_log_created core created config_log config_log 1069 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updateremote_email";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +483 \\core\\event\\config_log_created core created config_log config_log 1070 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +484 \\core\\event\\config_log_created core created config_log config_log 1071 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_city";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +485 \\core\\event\\config_log_created core created config_log config_log 1072 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_city";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +486 \\core\\event\\config_log_created core created config_log config_log 1073 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_city";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +487 \\core\\event\\config_log_created core created config_log config_log 1074 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +488 \\core\\event\\config_log_created core created config_log config_log 1075 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_country";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +489 \\core\\event\\config_log_created core created config_log config_log 1076 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_country";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +490 \\core\\event\\config_log_created core created config_log config_log 1077 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_country";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +491 \\core\\event\\config_log_created core created config_log config_log 1078 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +492 \\core\\event\\config_log_created core created config_log config_log 1079 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_lang";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +493 \\core\\event\\config_log_created core created config_log config_log 1080 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_lang";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +494 \\core\\event\\config_log_created core created config_log config_log 1081 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_lang";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +495 \\core\\event\\config_log_created core created config_log config_log 1082 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +496 \\core\\event\\config_log_created core created config_log config_log 1083 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_description";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +497 \\core\\event\\config_log_created core created config_log config_log 1084 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_description";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +498 \\core\\event\\config_log_created core created config_log config_log 1085 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_description";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +499 \\core\\event\\config_log_created core created config_log config_log 1086 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +500 \\core\\event\\config_log_created core created config_log config_log 1087 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"field_map_url";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +501 \\core\\event\\config_log_created core created config_log config_log 1088 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_updatelocal_url";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +502 \\core\\event\\config_log_created core created config_log config_log 1089 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updateremote_url";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +503 \\core\\event\\config_log_created core created config_log config_log 1090 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +504 \\core\\event\\config_log_created core created config_log config_log 1091 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_idnumber";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +505 \\core\\event\\config_log_created core created config_log config_log 1092 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +506 \\core\\event\\config_log_created core created config_log config_log 1093 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_idnumber";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +507 \\core\\event\\config_log_created core created config_log config_log 1094 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +508 \\core\\event\\config_log_created core created config_log config_log 1095 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_institution";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +509 \\core\\event\\config_log_created core created config_log config_log 1096 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_institution";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +510 \\core\\event\\config_log_created core created config_log config_log 1097 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_institution";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +511 \\core\\event\\config_log_created core created config_log config_log 1098 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +512 \\core\\event\\config_log_created core created config_log config_log 1099 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_department";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +513 \\core\\event\\config_log_created core created config_log config_log 1100 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_department";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +514 \\core\\event\\config_log_created core created config_log config_log 1101 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_department";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +515 \\core\\event\\config_log_created core created config_log config_log 1102 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +516 \\core\\event\\config_log_created core created config_log config_log 1103 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone1";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +517 \\core\\event\\config_log_created core created config_log config_log 1104 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +518 \\core\\event\\config_log_created core created config_log config_log 1105 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone1";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +519 \\core\\event\\config_log_created core created config_log config_log 1106 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +520 \\core\\event\\config_log_created core created config_log config_log 1107 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone2";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +521 \\core\\event\\config_log_created core created config_log config_log 1108 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +522 \\core\\event\\config_log_created core created config_log config_log 1109 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone2";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +523 \\core\\event\\config_log_created core created config_log config_log 1110 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +524 \\core\\event\\config_log_created core created config_log config_log 1111 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_address";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +525 \\core\\event\\config_log_created core created config_log config_log 1112 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_address";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +526 \\core\\event\\config_log_created core created config_log config_log 1113 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_address";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +527 \\core\\event\\config_log_created core created config_log config_log 1114 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +528 \\core\\event\\config_log_created core created config_log config_log 1115 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_map_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +529 \\core\\event\\config_log_created core created config_log config_log 1116 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updatelocal_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +530 \\core\\event\\config_log_created core created config_log config_log 1117 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:36:"field_updateremote_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +531 \\core\\event\\config_log_created core created config_log config_log 1118 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +532 \\core\\event\\config_log_created core created config_log config_log 1119 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_map_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +533 \\core\\event\\config_log_created core created config_log config_log 1120 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"field_updatelocal_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +534 \\core\\event\\config_log_created core created config_log config_log 1121 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updateremote_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +535 \\core\\event\\config_log_created core created config_log config_log 1122 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +536 \\core\\event\\config_log_created core created config_log config_log 1123 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_middlename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +537 \\core\\event\\config_log_created core created config_log config_log 1124 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +538 \\core\\event\\config_log_created core created config_log config_log 1125 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_middlename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +539 \\core\\event\\config_log_created core created config_log config_log 1126 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +540 \\core\\event\\config_log_created core created config_log config_log 1127 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_map_alternatename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +541 \\core\\event\\config_log_created core created config_log config_log 1128 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"field_updatelocal_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +542 \\core\\event\\config_log_created core created config_log config_log 1129 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:32:"field_updateremote_alternatename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +543 \\core\\event\\config_log_created core created config_log config_log 1130 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N +544 \\core\\event\\config_log_created core created config_log config_log 1131 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_map_firstname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +545 \\core\\event\\config_log_created core created config_log config_log 1132 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updatelocal_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +546 \\core\\event\\config_log_created core created config_log config_log 1133 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updateremote_firstname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +547 \\core\\event\\config_log_created core created config_log config_log 1134 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +548 \\core\\event\\config_log_created core created config_log config_log 1135 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_lastname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +549 \\core\\event\\config_log_created core created config_log config_log 1136 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +550 \\core\\event\\config_log_created core created config_log config_log 1137 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_lastname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +551 \\core\\event\\config_log_created core created config_log config_log 1138 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +552 \\core\\event\\config_log_created core created config_log config_log 1139 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_map_email";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +553 \\core\\event\\config_log_created core created config_log config_log 1140 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updatelocal_email";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +554 \\core\\event\\config_log_created core created config_log config_log 1141 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updateremote_email";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +555 \\core\\event\\config_log_created core created config_log config_log 1142 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +556 \\core\\event\\config_log_created core created config_log config_log 1143 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_city";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +557 \\core\\event\\config_log_created core created config_log config_log 1144 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_city";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +558 \\core\\event\\config_log_created core created config_log config_log 1145 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_city";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +559 \\core\\event\\config_log_created core created config_log config_log 1146 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +560 \\core\\event\\config_log_created core created config_log config_log 1147 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_country";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +561 \\core\\event\\config_log_created core created config_log config_log 1148 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_country";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +562 \\core\\event\\config_log_created core created config_log config_log 1149 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_country";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +563 \\core\\event\\config_log_created core created config_log config_log 1150 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +564 \\core\\event\\config_log_created core created config_log config_log 1151 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_lang";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +565 \\core\\event\\config_log_created core created config_log config_log 1152 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_lang";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +566 \\core\\event\\config_log_created core created config_log config_log 1153 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_lang";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +567 \\core\\event\\config_log_created core created config_log config_log 1154 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +568 \\core\\event\\config_log_created core created config_log config_log 1155 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_description";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +569 \\core\\event\\config_log_created core created config_log config_log 1156 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_description";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +570 \\core\\event\\config_log_created core created config_log config_log 1157 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_description";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +571 \\core\\event\\config_log_created core created config_log config_log 1158 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N +572 \\core\\event\\config_log_created core created config_log config_log 1159 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"field_map_url";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +573 \\core\\event\\config_log_created core created config_log config_log 1160 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_updatelocal_url";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +574 \\core\\event\\config_log_created core created config_log config_log 1161 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updateremote_url";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +575 \\core\\event\\config_log_created core created config_log config_log 1162 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +576 \\core\\event\\config_log_created core created config_log config_log 1163 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_idnumber";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +577 \\core\\event\\config_log_created core created config_log config_log 1164 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +578 \\core\\event\\config_log_created core created config_log config_log 1165 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_idnumber";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +579 \\core\\event\\config_log_created core created config_log config_log 1166 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +580 \\core\\event\\config_log_created core created config_log config_log 1167 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_institution";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +581 \\core\\event\\config_log_created core created config_log config_log 1168 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_institution";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +582 \\core\\event\\config_log_created core created config_log config_log 1169 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_institution";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +583 \\core\\event\\config_log_created core created config_log config_log 1170 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +584 \\core\\event\\config_log_created core created config_log config_log 1171 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_department";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +585 \\core\\event\\config_log_created core created config_log config_log 1172 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_department";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +586 \\core\\event\\config_log_created core created config_log config_log 1173 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_department";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +587 \\core\\event\\config_log_created core created config_log config_log 1174 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +588 \\core\\event\\config_log_created core created config_log config_log 1175 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone1";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +589 \\core\\event\\config_log_created core created config_log config_log 1176 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +590 \\core\\event\\config_log_created core created config_log config_log 1177 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone1";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +591 \\core\\event\\config_log_created core created config_log config_log 1178 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +592 \\core\\event\\config_log_created core created config_log config_log 1179 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone2";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +593 \\core\\event\\config_log_created core created config_log config_log 1180 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +594 \\core\\event\\config_log_created core created config_log config_log 1181 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone2";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +595 \\core\\event\\config_log_created core created config_log config_log 1182 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +596 \\core\\event\\config_log_created core created config_log config_log 1183 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_address";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +597 \\core\\event\\config_log_created core created config_log config_log 1184 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_address";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +598 \\core\\event\\config_log_created core created config_log config_log 1185 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_address";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +599 \\core\\event\\config_log_created core created config_log config_log 1186 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +600 \\core\\event\\config_log_created core created config_log config_log 1187 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_map_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +601 \\core\\event\\config_log_created core created config_log config_log 1188 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updatelocal_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +602 \\core\\event\\config_log_created core created config_log config_log 1189 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:36:"field_updateremote_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +603 \\core\\event\\config_log_created core created config_log config_log 1190 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +604 \\core\\event\\config_log_created core created config_log config_log 1191 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_map_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +605 \\core\\event\\config_log_created core created config_log config_log 1192 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"field_updatelocal_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +606 \\core\\event\\config_log_created core created config_log config_log 1193 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updateremote_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +607 \\core\\event\\config_log_created core created config_log config_log 1194 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +608 \\core\\event\\config_log_created core created config_log config_log 1195 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_middlename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +609 \\core\\event\\config_log_created core created config_log config_log 1196 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +610 \\core\\event\\config_log_created core created config_log config_log 1197 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_middlename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +611 \\core\\event\\config_log_created core created config_log config_log 1198 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +612 \\core\\event\\config_log_created core created config_log config_log 1199 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_map_alternatename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +613 \\core\\event\\config_log_created core created config_log config_log 1200 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"field_updatelocal_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +614 \\core\\event\\config_log_created core created config_log config_log 1201 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:32:"field_updateremote_alternatename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +615 \\core\\event\\config_log_created core created config_log config_log 1202 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N +616 \\core\\event\\config_log_created core created config_log config_log 1203 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"expiration";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N +617 \\core\\event\\config_log_created core created config_log config_log 1204 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"expirationtime";s:8:"oldvalue";N;s:5:"value";s:2:"30";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N +618 \\core\\event\\config_log_created core created config_log config_log 1205 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"expiration_warning";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N +619 \\core\\event\\config_log_created core created config_log config_log 1206 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N +620 \\core\\event\\config_log_created core created config_log config_log 1207 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N +621 \\core\\event\\config_log_created core created config_log config_log 1208 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N +622 \\core\\event\\config_log_created core created config_log config_log 1209 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N +623 \\core\\event\\config_log_created core created config_log config_log 1210 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N +624 \\core\\event\\config_log_created core created config_log config_log 1211 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N +625 \\core\\event\\config_log_created core created config_log config_log 1212 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N +626 \\core\\event\\config_log_created core created config_log config_log 1213 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N +627 \\core\\event\\config_log_created core created config_log config_log 1214 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N +628 \\core\\event\\config_log_created core created config_log config_log 1215 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N +629 \\core\\event\\config_log_created core created config_log config_log 1216 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N +630 \\core\\event\\config_log_created core created config_log config_log 1217 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N +631 \\core\\event\\config_log_created core created config_log config_log 1218 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N +632 \\core\\event\\config_log_created core created config_log config_log 1219 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N +633 \\core\\event\\config_log_created core created config_log config_log 1220 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N +634 \\core\\event\\config_log_created core created config_log config_log 1221 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N +635 \\core\\event\\config_log_created core created config_log config_log 1222 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N +636 \\core\\event\\config_log_created core created config_log config_log 1223 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N +637 \\core\\event\\config_log_created core created config_log config_log 1224 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"rpc_negotiation_timeout";s:8:"oldvalue";N;s:5:"value";s:2:"30";s:6:"plugin";s:9:"auth_mnet";} 1609884657 web 67.182.30.218 \N +638 \\core\\event\\config_log_created core created config_log config_log 1225 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N +639 \\core\\event\\config_log_created core created config_log config_log 1226 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N +640 \\core\\event\\config_log_created core created config_log config_log 1227 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N +641 \\core\\event\\config_log_created core created config_log config_log 1228 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N +642 \\core\\event\\config_log_created core created config_log config_log 1229 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N +643 \\core\\event\\config_log_created core created config_log config_log 1230 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N +644 \\core\\event\\config_log_created core created config_log config_log 1231 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N +645 \\core\\event\\config_log_created core created config_log config_log 1232 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N +646 \\core\\event\\config_log_created core created config_log config_log 1233 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N +647 \\core\\event\\config_log_created core created config_log config_log 1234 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N +648 \\core\\event\\config_log_created core created config_log config_log 1235 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N +649 \\core\\event\\config_log_created core created config_log config_log 1236 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N +650 \\core\\event\\config_log_created core created config_log config_log 1237 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N +651 \\core\\event\\config_log_created core created config_log config_log 1238 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N +652 \\core\\event\\config_log_created core created config_log config_log 1239 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N +653 \\core\\event\\config_log_created core created config_log config_log 1240 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N +654 \\core\\event\\config_log_created core created config_log config_log 1241 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N +655 \\core\\event\\config_log_created core created config_log config_log 1242 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N +656 \\core\\event\\config_log_created core created config_log config_log 1243 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N +657 \\core\\event\\config_log_created core created config_log config_log 1244 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N +658 \\core\\event\\config_log_created core created config_log config_log 1245 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N +659 \\core\\event\\config_log_created core created config_log config_log 1246 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N +660 \\core\\event\\config_log_created core created config_log config_log 1247 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N +661 \\core\\event\\config_log_created core created config_log config_log 1248 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N +662 \\core\\event\\config_log_created core created config_log config_log 1249 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N +663 \\core\\event\\config_log_created core created config_log config_log 1250 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N +664 \\core\\event\\config_log_created core created config_log config_log 1251 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N +665 \\core\\event\\config_log_created core created config_log config_log 1252 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N +666 \\core\\event\\config_log_created core created config_log config_log 1253 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N +667 \\core\\event\\config_log_created core created config_log config_log 1254 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N +668 \\core\\event\\config_log_created core created config_log config_log 1255 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N +669 \\core\\event\\config_log_created core created config_log config_log 1256 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N +670 \\core\\event\\config_log_created core created config_log config_log 1257 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N +671 \\core\\event\\config_log_created core created config_log config_log 1258 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N +672 \\core\\event\\config_log_created core created config_log config_log 1259 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N +673 \\core\\event\\config_log_created core created config_log config_log 1260 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N +674 \\core\\event\\config_log_created core created config_log config_log 1261 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"user_attribute";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +675 \\core\\event\\config_log_created core created config_log config_log 1262 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"convert_data";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +676 \\core\\event\\config_log_created core created config_log config_log 1263 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"alt_login";s:8:"oldvalue";N;s:5:"value";s:3:"off";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +677 \\core\\event\\config_log_created core created config_log config_log 1264 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"organization_selection";s:8:"oldvalue";N;s:5:"value";s:259:"urn:mace:organization1:providerID, Example Organization 1\n https://another.idp-id.com/shibboleth, Other Example Organization, /Shibboleth.sso/DS/SWITCHaai\n urn:mace:organization2:providerID, Example Organization 2, /Shibboleth.sso/WAYF/SWITCHaai";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +678 \\core\\event\\config_log_created core created config_log config_log 1265 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"logout_handler";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +679 \\core\\event\\config_log_created core created config_log config_log 1266 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"logout_return_url";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +680 \\core\\event\\config_log_created core created config_log config_log 1267 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"login_name";s:8:"oldvalue";N;s:5:"value";s:16:"Shibboleth Login";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +681 \\core\\event\\config_log_created core created config_log config_log 1268 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"auth_logo";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +682 \\core\\event\\config_log_created core created config_log config_log 1269 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"auth_instructions";s:8:"oldvalue";N;s:5:"value";s:194:"Use the Shibboleth login to get access via Shibboleth, if your institution supports it. Otherwise, use the normal login form shown here.";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +683 \\core\\event\\config_log_created core created config_log config_log 1270 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"changepasswordurl";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +684 \\core\\event\\config_log_created core created config_log config_log 1271 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_map_firstname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +685 \\core\\event\\config_log_created core created config_log config_log 1272 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updatelocal_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +686 \\core\\event\\config_log_created core created config_log config_log 1273 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +687 \\core\\event\\config_log_created core created config_log config_log 1274 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_lastname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +688 \\core\\event\\config_log_created core created config_log config_log 1275 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +689 \\core\\event\\config_log_created core created config_log config_log 1276 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +690 \\core\\event\\config_log_created core created config_log config_log 1277 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_map_email";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +691 \\core\\event\\config_log_created core created config_log config_log 1278 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updatelocal_email";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +692 \\core\\event\\config_log_created core created config_log config_log 1279 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +693 \\core\\event\\config_log_created core created config_log config_log 1280 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_city";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +694 \\core\\event\\config_log_created core created config_log config_log 1281 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_city";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +695 \\core\\event\\config_log_created core created config_log config_log 1282 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +696 \\core\\event\\config_log_created core created config_log config_log 1283 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_country";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +697 \\core\\event\\config_log_created core created config_log config_log 1284 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_country";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +698 \\core\\event\\config_log_created core created config_log config_log 1285 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +699 \\core\\event\\config_log_created core created config_log config_log 1286 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_lang";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +700 \\core\\event\\config_log_created core created config_log config_log 1287 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_lang";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +701 \\core\\event\\config_log_created core created config_log config_log 1288 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +702 \\core\\event\\config_log_created core created config_log config_log 1289 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_description";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +703 \\core\\event\\config_log_created core created config_log config_log 1290 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_description";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +704 \\core\\event\\config_log_created core created config_log config_log 1291 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +705 \\core\\event\\config_log_created core created config_log config_log 1292 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"field_map_url";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +706 \\core\\event\\config_log_created core created config_log config_log 1293 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_updatelocal_url";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +707 \\core\\event\\config_log_created core created config_log config_log 1294 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +708 \\core\\event\\config_log_created core created config_log config_log 1295 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_idnumber";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +709 \\core\\event\\config_log_created core created config_log config_log 1296 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +710 \\core\\event\\config_log_created core created config_log config_log 1297 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +711 \\core\\event\\config_log_created core created config_log config_log 1298 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_institution";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +712 \\core\\event\\config_log_created core created config_log config_log 1299 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_institution";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +713 \\core\\event\\config_log_created core created config_log config_log 1300 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +714 \\core\\event\\config_log_created core created config_log config_log 1301 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_department";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +715 \\core\\event\\config_log_created core created config_log config_log 1302 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_department";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +716 \\core\\event\\config_log_created core created config_log config_log 1303 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +717 \\core\\event\\config_log_created core created config_log config_log 1304 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone1";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +718 \\core\\event\\config_log_created core created config_log config_log 1305 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +719 \\core\\event\\config_log_created core created config_log config_log 1306 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +720 \\core\\event\\config_log_created core created config_log config_log 1307 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone2";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +721 \\core\\event\\config_log_created core created config_log config_log 1308 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +722 \\core\\event\\config_log_created core created config_log config_log 1309 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +723 \\core\\event\\config_log_created core created config_log config_log 1310 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_address";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +724 \\core\\event\\config_log_created core created config_log config_log 1311 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_address";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +725 \\core\\event\\config_log_created core created config_log config_log 1312 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +726 \\core\\event\\config_log_created core created config_log config_log 1313 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_map_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +727 \\core\\event\\config_log_created core created config_log config_log 1314 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updatelocal_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +728 \\core\\event\\config_log_created core created config_log config_log 1315 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +729 \\core\\event\\config_log_created core created config_log config_log 1316 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_map_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +730 \\core\\event\\config_log_created core created config_log config_log 1317 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"field_updatelocal_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +731 \\core\\event\\config_log_created core created config_log config_log 1318 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +732 \\core\\event\\config_log_created core created config_log config_log 1319 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_middlename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +733 \\core\\event\\config_log_created core created config_log config_log 1320 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +734 \\core\\event\\config_log_created core created config_log config_log 1321 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +735 \\core\\event\\config_log_created core created config_log config_log 1322 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_map_alternatename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +736 \\core\\event\\config_log_created core created config_log config_log 1323 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"field_updatelocal_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +737 \\core\\event\\config_log_created core created config_log config_log 1324 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N +738 \\core\\event\\config_log_created core created config_log config_log 1325 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"config_showbest";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N +739 \\core\\event\\config_log_created core created config_log config_log 1326 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"config_showbest_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N +740 \\core\\event\\config_log_created core created config_log config_log 1327 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"config_showworst";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N +741 \\core\\event\\config_log_created core created config_log config_log 1328 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"config_showworst_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N +742 \\core\\event\\config_log_created core created config_log config_log 1329 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"config_usegroups";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N +743 \\core\\event\\config_log_created core created config_log config_log 1330 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"config_usegroups_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N +744 \\core\\event\\config_log_created core created config_log config_log 1331 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"config_nameformat";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N +745 \\core\\event\\config_log_created core created config_log config_log 1332 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"config_nameformat_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N +746 \\core\\event\\config_log_created core created config_log config_log 1333 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"config_gradeformat";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N +747 \\core\\event\\config_log_created core created config_log config_log 1334 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"config_gradeformat_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N +748 \\core\\event\\config_log_created core created config_log config_log 1335 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"config_decimalpoints";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N +749 \\core\\event\\config_log_created core created config_log config_log 1336 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"config_decimalpoints_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N +750 \\core\\event\\config_log_created core created config_log config_log 1337 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"displaycategories";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1609884657 web 67.182.30.218 \N +751 \\core\\event\\config_log_created core created config_log config_log 1338 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"layouts";s:8:"oldvalue";N;s:5:"value";s:17:"card,list,summary";s:6:"plugin";s:16:"block_myoverview";} 1609884657 web 67.182.30.218 \N +752 \\core\\event\\config_log_created core created config_log config_log 1339 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:33:"displaygroupingallincludinghidden";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"block_myoverview";} 1609884657 web 67.182.30.218 \N +753 \\core\\event\\config_log_created core created config_log config_log 1340 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"displaygroupingall";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1609884657 web 67.182.30.218 \N +754 \\core\\event\\config_log_created core created config_log config_log 1341 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"displaygroupinginprogress";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1609884657 web 67.182.30.218 \N +755 \\core\\event\\config_log_created core created config_log config_log 1342 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"displaygroupingpast";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1609884657 web 67.182.30.218 \N +756 \\core\\event\\config_log_created core created config_log config_log 1343 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"displaygroupingfuture";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1609884657 web 67.182.30.218 \N +757 \\core\\event\\config_log_created core created config_log config_log 1344 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"displaygroupingcustomfield";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"block_myoverview";} 1609884657 web 67.182.30.218 \N +758 \\core\\event\\config_log_created core created config_log config_log 1345 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"customfiltergrouping";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"block_myoverview";} 1609884657 web 67.182.30.218 \N +759 \\core\\event\\config_log_created core created config_log config_log 1346 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"displaygroupingfavourites";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1609884657 web 67.182.30.218 \N +760 \\core\\event\\config_log_created core created config_log config_log 1347 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"displaygroupinghidden";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1609884657 web 67.182.30.218 \N +761 \\core\\event\\config_log_created core created config_log config_log 1348 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"block_course_list_adminview";s:8:"oldvalue";N;s:5:"value";s:3:"all";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +762 \\core\\event\\config_log_created core created config_log config_log 1349 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:36:"block_course_list_hideallcourseslink";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +763 \\core\\event\\config_log_created core created config_log config_log 1350 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"block_html_allowcssclasses";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +764 \\core\\event\\config_log_created core created config_log config_log 1351 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"block_online_users_timetosee";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +765 \\core\\event\\config_log_created core created config_log config_log 1352 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:37:"block_online_users_onlinestatushiding";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +766 \\core\\event\\config_log_created core created config_log config_log 1353 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"displaycategories";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:29:"block_recentlyaccessedcourses";} 1609884657 web 67.182.30.218 \N +767 \\core\\event\\config_log_created core created config_log config_log 1354 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"block_rss_client_num_entries";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +768 \\core\\event\\config_log_created core created config_log config_log 1355 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"block_rss_client_timeout";s:8:"oldvalue";N;s:5:"value";s:2:"30";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +769 \\core\\event\\config_log_created core created config_log config_log 1356 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"numsections1";s:8:"oldvalue";N;s:5:"value";s:2:"22";s:6:"plugin";s:19:"block_section_links";} 1609884657 web 67.182.30.218 \N +770 \\core\\event\\config_log_created core created config_log config_log 1357 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"incby1";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";s:19:"block_section_links";} 1609884657 web 67.182.30.218 \N +771 \\core\\event\\config_log_created core created config_log config_log 1358 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"numsections2";s:8:"oldvalue";N;s:5:"value";s:2:"40";s:6:"plugin";s:19:"block_section_links";} 1609884657 web 67.182.30.218 \N +772 \\core\\event\\config_log_created core created config_log config_log 1359 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"incby2";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:19:"block_section_links";} 1609884657 web 67.182.30.218 \N +773 \\core\\event\\config_log_created core created config_log config_log 1360 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"displaycategories";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:20:"block_starredcourses";} 1609884657 web 67.182.30.218 \N +774 \\core\\event\\config_log_created core created config_log config_log 1361 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"apikey";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"block_tag_youtube";} 1609884657 web 67.182.30.218 \N +775 \\core\\event\\config_log_created core created config_log config_log 1362 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"activitytype";s:8:"oldvalue";N;s:5:"value";s:5:"forum";s:6:"plugin";s:21:"format_singleactivity";} 1609884657 web 67.182.30.218 \N +776 \\core\\event\\config_log_created core created config_log config_log 1363 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"issuerid";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:25:"fileconverter_googledrive";} 1609884657 web 67.182.30.218 \N +777 \\core\\event\\config_log_created core created config_log config_log 1364 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"pathtounoconv";s:8:"oldvalue";N;s:5:"value";s:16:"/usr/bin/unoconv";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +778 \\core\\event\\config_log_created core created config_log config_log 1365 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"roleid";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:12:"enrol_cohort";} 1609884657 web 67.182.30.218 \N +779 \\core\\event\\config_log_created core created config_log config_log 1366 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"unenrolaction";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_cohort";} 1609884657 web 67.182.30.218 \N +780 \\core\\event\\config_log_created core created config_log config_log 1367 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"nosyncroleids";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"enrol_meta";} 1609884657 web 67.182.30.218 \N +781 \\core\\event\\config_log_created core created config_log config_log 1368 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"syncall";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_meta";} 1609884657 web 67.182.30.218 \N +782 \\core\\event\\config_log_created core created config_log config_log 1369 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"unenrolaction";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:10:"enrol_meta";} 1609884657 web 67.182.30.218 \N +783 \\core\\event\\config_log_created core created config_log config_log 1370 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"coursesort";s:8:"oldvalue";N;s:5:"value";s:9:"sortorder";s:6:"plugin";s:10:"enrol_meta";} 1609884657 web 67.182.30.218 \N +784 \\core\\event\\config_log_created core created config_log config_log 1371 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbtype";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +785 \\core\\event\\config_log_created core created config_log config_log 1372 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbhost";s:8:"oldvalue";N;s:5:"value";s:9:"localhost";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +786 \\core\\event\\config_log_created core created config_log config_log 1373 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbuser";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +787 \\core\\event\\config_log_created core created config_log config_log 1374 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbpass";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +788 \\core\\event\\config_log_created core created config_log config_log 1375 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +789 \\core\\event\\config_log_created core created config_log config_log 1376 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"dbencoding";s:8:"oldvalue";N;s:5:"value";s:5:"utf-8";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +790 \\core\\event\\config_log_created core created config_log config_log 1377 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"dbsetupsql";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +791 \\core\\event\\config_log_created core created config_log config_log 1378 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"dbsybasequoting";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +792 \\core\\event\\config_log_created core created config_log config_log 1379 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"debugdb";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +793 \\core\\event\\config_log_created core created config_log config_log 1380 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"localcoursefield";s:8:"oldvalue";N;s:5:"value";s:8:"idnumber";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +794 \\core\\event\\config_log_created core created config_log config_log 1381 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"localuserfield";s:8:"oldvalue";N;s:5:"value";s:8:"idnumber";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +795 \\core\\event\\config_log_created core created config_log config_log 1382 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"localrolefield";s:8:"oldvalue";N;s:5:"value";s:9:"shortname";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +796 \\core\\event\\config_log_created core created config_log config_log 1383 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"localcategoryfield";s:8:"oldvalue";N;s:5:"value";s:2:"id";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +797 \\core\\event\\config_log_created core created config_log config_log 1384 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"remoteenroltable";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +798 \\core\\event\\config_log_created core created config_log config_log 1385 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"remotecoursefield";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +799 \\core\\event\\config_log_created core created config_log config_log 1386 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"remoteuserfield";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +800 \\core\\event\\config_log_created core created config_log config_log 1387 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"remoterolefield";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +801 \\core\\event\\config_log_created core created config_log config_log 1388 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"remoteotheruserfield";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +802 \\core\\event\\config_log_created core created config_log config_log 1389 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"defaultrole";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +803 \\core\\event\\config_log_created core created config_log config_log 1390 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"ignorehiddencourses";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +804 \\core\\event\\config_log_created core created config_log config_log 1391 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"unenrolaction";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +805 \\core\\event\\config_log_created core created config_log config_log 1392 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"newcoursetable";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +806 \\core\\event\\config_log_created core created config_log config_log 1393 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"newcoursefullname";s:8:"oldvalue";N;s:5:"value";s:8:"fullname";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +807 \\core\\event\\config_log_created core created config_log config_log 1394 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"newcourseshortname";s:8:"oldvalue";N;s:5:"value";s:9:"shortname";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +808 \\core\\event\\config_log_created core created config_log config_log 1395 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"newcourseidnumber";s:8:"oldvalue";N;s:5:"value";s:8:"idnumber";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +809 \\core\\event\\config_log_created core created config_log config_log 1396 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"newcoursecategory";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +810 \\core\\event\\config_log_created core created config_log config_log 1397 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"defaultcategory";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +811 \\core\\event\\config_log_created core created config_log config_log 1398 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"templatecourse";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N +812 \\core\\event\\config_log_created core created config_log config_log 1399 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"location";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_flatfile";} 1609884657 web 67.182.30.218 \N +813 \\core\\event\\config_log_created core created config_log config_log 1400 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"encoding";s:8:"oldvalue";N;s:5:"value";s:5:"UTF-8";s:6:"plugin";s:14:"enrol_flatfile";} 1609884657 web 67.182.30.218 \N +814 \\core\\event\\config_log_created core created config_log config_log 1401 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"mailstudents";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_flatfile";} 1609884657 web 67.182.30.218 \N +815 \\core\\event\\config_log_created core created config_log config_log 1402 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"mailteachers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_flatfile";} 1609884657 web 67.182.30.218 \N +816 \\core\\event\\config_log_created core created config_log config_log 1403 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"mailadmins";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_flatfile";} 1609884657 web 67.182.30.218 \N +817 \\core\\event\\config_log_created core created config_log config_log 1404 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"unenrolaction";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:14:"enrol_flatfile";} 1609884657 web 67.182.30.218 \N +818 \\core\\event\\config_log_created core created config_log config_log 1405 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"expiredaction";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:14:"enrol_flatfile";} 1609884657 web 67.182.30.218 \N +819 \\core\\event\\config_log_created core created config_log config_log 1406 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"requirepassword";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"enrol_guest";} 1609884657 web 67.182.30.218 \N +820 \\core\\event\\config_log_created core created config_log config_log 1407 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"usepasswordpolicy";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"enrol_guest";} 1609884657 web 67.182.30.218 \N +821 \\core\\event\\config_log_created core created config_log config_log 1408 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"showhint";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"enrol_guest";} 1609884657 web 67.182.30.218 \N +822 \\core\\event\\config_log_created core created config_log config_log 1409 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"defaultenrol";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:11:"enrol_guest";} 1609884657 web 67.182.30.218 \N +823 \\core\\event\\config_log_created core created config_log config_log 1410 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"status";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:11:"enrol_guest";} 1609884657 web 67.182.30.218 \N +824 \\core\\event\\config_log_created core created config_log config_log 1411 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"status_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"enrol_guest";} 1609884657 web 67.182.30.218 \N +825 \\core\\event\\config_log_created core created config_log config_log 1412 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"imsfilelocation";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +826 \\core\\event\\config_log_created core created config_log config_log 1413 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"logtolocation";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +827 \\core\\event\\config_log_created core created config_log config_log 1414 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"mailadmins";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +828 \\core\\event\\config_log_created core created config_log config_log 1415 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"createnewusers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +829 \\core\\event\\config_log_created core created config_log config_log 1416 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"imsupdateusers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +830 \\core\\event\\config_log_created core created config_log config_log 1417 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"imsdeleteusers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +831 \\core\\event\\config_log_created core created config_log config_log 1418 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"fixcaseusernames";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +832 \\core\\event\\config_log_created core created config_log config_log 1419 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"fixcasepersonalnames";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +833 \\core\\event\\config_log_created core created config_log config_log 1420 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"imssourcedidfallback";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +834 \\core\\event\\config_log_created core created config_log config_log 1421 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap01";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +835 \\core\\event\\config_log_created core created config_log config_log 1422 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap02";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +836 \\core\\event\\config_log_created core created config_log config_log 1423 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap03";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +837 \\core\\event\\config_log_created core created config_log config_log 1424 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap04";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +838 \\core\\event\\config_log_created core created config_log config_log 1425 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap05";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +839 \\core\\event\\config_log_created core created config_log config_log 1426 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap06";s:8:"oldvalue";N;s:5:"value";s:1:"4";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +840 \\core\\event\\config_log_created core created config_log config_log 1427 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap07";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +841 \\core\\event\\config_log_created core created config_log config_log 1428 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap08";s:8:"oldvalue";N;s:5:"value";s:1:"4";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +842 \\core\\event\\config_log_created core created config_log config_log 1429 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"truncatecoursecodes";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +843 \\core\\event\\config_log_created core created config_log config_log 1430 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"createnewcourses";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +844 \\core\\event\\config_log_created core created config_log config_log 1431 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"updatecourses";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +845 \\core\\event\\config_log_created core created config_log config_log 1432 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"createnewcategories";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +846 \\core\\event\\config_log_created core created config_log config_log 1433 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"nestedcategories";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +847 \\core\\event\\config_log_created core created config_log config_log 1434 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"categoryidnumber";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +848 \\core\\event\\config_log_created core created config_log config_log 1435 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"categoryseparator";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +849 \\core\\event\\config_log_created core created config_log config_log 1436 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"imsunenrol";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +850 \\core\\event\\config_log_created core created config_log config_log 1437 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"imscoursemapshortname";s:8:"oldvalue";N;s:5:"value";s:10:"coursecode";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +851 \\core\\event\\config_log_created core created config_log config_log 1438 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"imscoursemapfullname";s:8:"oldvalue";N;s:5:"value";s:5:"short";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +852 \\core\\event\\config_log_created core created config_log config_log 1439 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"imscoursemapsummary";s:8:"oldvalue";N;s:5:"value";s:6:"ignore";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +853 \\core\\event\\config_log_created core created config_log config_log 1440 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"imsrestricttarget";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +854 \\core\\event\\config_log_created core created config_log config_log 1441 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imscapitafix";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N +855 \\core\\event\\config_log_created core created config_log config_log 1442 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"expiredaction";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:12:"enrol_manual";} 1609884657 web 67.182.30.218 \N +856 \\core\\event\\config_log_created core created config_log config_log 1443 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"expirynotifyhour";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";s:12:"enrol_manual";} 1609884657 web 67.182.30.218 \N +857 \\core\\event\\config_log_created core created config_log config_log 1444 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"defaultenrol";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:12:"enrol_manual";} 1609884657 web 67.182.30.218 \N +858 \\core\\event\\config_log_created core created config_log config_log 1445 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"status";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_manual";} 1609884657 web 67.182.30.218 \N +859 \\core\\event\\config_log_created core created config_log config_log 1446 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"roleid";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:12:"enrol_manual";} 1609884657 web 67.182.30.218 \N +860 \\core\\event\\config_log_created core created config_log config_log 1447 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"enrolstart";s:8:"oldvalue";N;s:5:"value";s:1:"4";s:6:"plugin";s:12:"enrol_manual";} 1609884657 web 67.182.30.218 \N +861 \\core\\event\\config_log_created core created config_log config_log 1448 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"enrolperiod";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_manual";} 1609884657 web 67.182.30.218 \N +862 \\core\\event\\config_log_created core created config_log config_log 1449 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"expirynotify";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_manual";} 1609884657 web 67.182.30.218 \N +863 \\core\\event\\config_log_created core created config_log config_log 1450 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"expirythreshold";s:8:"oldvalue";N;s:5:"value";s:5:"86400";s:6:"plugin";s:12:"enrol_manual";} 1609884657 web 67.182.30.218 \N +864 \\core\\event\\config_log_created core created config_log config_log 1451 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"roleid";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:10:"enrol_mnet";} 1609884657 web 67.182.30.218 \N +865 \\core\\event\\config_log_created core created config_log config_log 1452 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"roleid_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_mnet";} 1609884657 web 67.182.30.218 \N +866 \\core\\event\\config_log_created core created config_log config_log 1453 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"paypalbusiness";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:12:"enrol_paypal";} 1609884657 web 67.182.30.218 \N +867 \\core\\event\\config_log_created core created config_log config_log 1454 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"mailstudents";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_paypal";} 1609884657 web 67.182.30.218 \N +868 \\core\\event\\config_log_created core created config_log config_log 1455 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"mailteachers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_paypal";} 1609884657 web 67.182.30.218 \N +869 \\core\\event\\config_log_created core created config_log config_log 1456 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"mailadmins";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_paypal";} 1609884657 web 67.182.30.218 \N +870 \\core\\event\\config_log_created core created config_log config_log 1457 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"expiredaction";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:12:"enrol_paypal";} 1609884657 web 67.182.30.218 \N +871 \\core\\event\\config_log_created core created config_log config_log 1458 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"status";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:12:"enrol_paypal";} 1609884657 web 67.182.30.218 \N +872 \\core\\event\\config_log_created core created config_log config_log 1459 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"cost";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_paypal";} 1609884657 web 67.182.30.218 \N +873 \\core\\event\\config_log_created core created config_log config_log 1460 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"currency";s:8:"oldvalue";N;s:5:"value";s:3:"USD";s:6:"plugin";s:12:"enrol_paypal";} 1609884657 web 67.182.30.218 \N +874 \\core\\event\\config_log_created core created config_log config_log 1461 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"roleid";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:12:"enrol_paypal";} 1609884657 web 67.182.30.218 \N +875 \\core\\event\\config_log_created core created config_log config_log 1462 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"enrolperiod";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_paypal";} 1609884657 web 67.182.30.218 \N +876 \\core\\event\\config_log_created core created config_log config_log 1463 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"emaildisplay";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";s:9:"enrol_lti";} 1609884657 web 67.182.30.218 \N +877 \\core\\event\\config_log_created core created config_log config_log 1464 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"city";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"enrol_lti";} 1609884657 web 67.182.30.218 \N +878 \\core\\event\\config_log_created core created config_log config_log 1465 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"country";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"enrol_lti";} 1609884657 web 67.182.30.218 \N +879 \\core\\event\\config_log_created core created config_log config_log 1466 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"timezone";s:8:"oldvalue";N;s:5:"value";s:2:"99";s:6:"plugin";s:9:"enrol_lti";} 1609884657 web 67.182.30.218 \N +880 \\core\\event\\config_log_created core created config_log config_log 1467 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"lang";s:8:"oldvalue";N;s:5:"value";s:2:"en";s:6:"plugin";s:9:"enrol_lti";} 1609884657 web 67.182.30.218 \N +881 \\core\\event\\config_log_created core created config_log config_log 1468 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"institution";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"enrol_lti";} 1609884657 web 67.182.30.218 \N +882 \\core\\event\\config_log_created core created config_log config_log 1469 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"requirepassword";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N +883 \\core\\event\\config_log_created core created config_log config_log 1470 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"usepasswordpolicy";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N +884 \\core\\event\\config_log_created core created config_log config_log 1471 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"showhint";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N +885 \\core\\event\\config_log_created core created config_log config_log 1472 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"expiredaction";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N +886 \\core\\event\\config_log_created core created config_log config_log 1473 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"expirynotifyhour";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N +887 \\core\\event\\config_log_created core created config_log config_log 1474 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"defaultenrol";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N +888 \\core\\event\\config_log_created core created config_log config_log 1475 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"status";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N +889 \\core\\event\\config_log_created core created config_log config_log 1476 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"newenrols";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N +890 \\core\\event\\config_log_created core created config_log config_log 1477 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"groupkey";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N +891 \\core\\event\\config_log_created core created config_log config_log 1478 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"roleid";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N +892 \\core\\event\\config_log_created core created config_log config_log 1479 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"enrolperiod";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N +893 \\core\\event\\config_log_created core created config_log config_log 1480 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"expirynotify";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N +894 \\core\\event\\config_log_created core created config_log config_log 1481 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"expirythreshold";s:8:"oldvalue";N;s:5:"value";s:5:"86400";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N +895 \\core\\event\\config_log_created core created config_log config_log 1482 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"longtimenosee";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N +896 \\core\\event\\config_log_created core created config_log config_log 1483 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"maxenrolled";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N +897 \\core\\event\\config_log_created core created config_log config_log 1484 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"sendcoursewelcomemessage";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N +898 \\core\\event\\config_log_created core created config_log config_log 1485 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"formats";s:8:"oldvalue";N;s:5:"value";s:5:"1,4,0";s:6:"plugin";s:16:"filter_urltolink";} 1609884657 web 67.182.30.218 \N +899 \\core\\event\\config_log_created core created config_log config_log 1486 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"embedimages";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"filter_urltolink";} 1609884657 web 67.182.30.218 \N +900 \\core\\event\\config_log_created core created config_log config_log 1487 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"formats";s:8:"oldvalue";N;s:5:"value";s:5:"1,4,0";s:6:"plugin";s:15:"filter_emoticon";} 1609884657 web 67.182.30.218 \N +901 \\core\\event\\config_log_created core created config_log config_log 1488 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"allowedsources";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"filter_displayh5p";} 1609884657 web 67.182.30.218 \N +902 \\core\\event\\config_log_created core created config_log config_log 1489 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"httpsurl";s:8:"oldvalue";N;s:5:"value";s:53:"https://cdn.jsdelivr.net/npm/mathjax@2.7.8/MathJax.js";s:6:"plugin";s:20:"filter_mathjaxloader";} 1609884657 web 67.182.30.218 \N +903 \\core\\event\\config_log_created core created config_log config_log 1490 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"texfiltercompatibility";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:20:"filter_mathjaxloader";} 1609884657 web 67.182.30.218 \N +904 \\core\\event\\config_log_created core created config_log config_log 1491 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"mathjaxconfig";s:8:"oldvalue";N;s:5:"value";s:162:"\nMathJax.Hub.Config({\n config: ["Accessible.js", "Safe.js"],\n errorSettings: { message: ["!"] },\n skipStartupTypeset: true,\n messageStyle: "none"\n});\n";s:6:"plugin";s:20:"filter_mathjaxloader";} 1609884657 web 67.182.30.218 \N +905 \\core\\event\\config_log_created core created config_log config_log 1492 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"additionaldelimiters";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:20:"filter_mathjaxloader";} 1609884657 web 67.182.30.218 \N +906 \\core\\event\\config_log_created core created config_log config_log 1493 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"filter_multilang_force_old";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +907 \\core\\event\\config_log_created core created config_log config_log 1494 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"latexpreamble";s:8:"oldvalue";N;s:5:"value";s:115:"\\usepackage[latin1]{inputenc}\n\\usepackage{amsmath}\n\\usepackage{amsfonts}\n\\RequirePackage{amsmath,amssymb,latexsym}\n";s:6:"plugin";s:10:"filter_tex";} 1609884657 web 67.182.30.218 \N +908 \\core\\event\\config_log_created core created config_log config_log 1495 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"latexbackground";s:8:"oldvalue";N;s:5:"value";s:7:"#FFFFFF";s:6:"plugin";s:10:"filter_tex";} 1609884657 web 67.182.30.218 \N +909 \\core\\event\\config_log_created core created config_log config_log 1496 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"density";s:8:"oldvalue";N;s:5:"value";s:3:"120";s:6:"plugin";s:10:"filter_tex";} 1609884657 web 67.182.30.218 \N +910 \\core\\event\\config_log_created core created config_log config_log 1497 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"pathlatex";s:8:"oldvalue";N;s:5:"value";s:14:"/usr/bin/latex";s:6:"plugin";s:10:"filter_tex";} 1609884657 web 67.182.30.218 \N +911 \\core\\event\\config_log_created core created config_log config_log 1498 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"pathdvips";s:8:"oldvalue";N;s:5:"value";s:14:"/usr/bin/dvips";s:6:"plugin";s:10:"filter_tex";} 1609884657 web 67.182.30.218 \N +912 \\core\\event\\config_log_created core created config_log config_log 1499 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"pathconvert";s:8:"oldvalue";N;s:5:"value";s:16:"/usr/bin/convert";s:6:"plugin";s:10:"filter_tex";} 1609884657 web 67.182.30.218 \N +913 \\core\\event\\config_log_created core created config_log config_log 1500 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"pathdvisvgm";s:8:"oldvalue";N;s:5:"value";s:16:"/usr/bin/dvisvgm";s:6:"plugin";s:10:"filter_tex";} 1609884657 web 67.182.30.218 \N +914 \\core\\event\\config_log_created core created config_log config_log 1501 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"pathmimetex";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"filter_tex";} 1609884657 web 67.182.30.218 \N +915 \\core\\event\\config_log_created core created config_log config_log 1502 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"convertformat";s:8:"oldvalue";N;s:5:"value";s:3:"gif";s:6:"plugin";s:10:"filter_tex";} 1609884657 web 67.182.30.218 \N +916 \\core\\event\\config_log_created core created config_log config_log 1503 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"filter_censor_badwords";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +917 \\core\\event\\config_log_created core created config_log config_log 1504 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"dbdriver";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N +918 \\core\\event\\config_log_created core created config_log config_log 1505 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbhost";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N +919 \\core\\event\\config_log_created core created config_log config_log 1506 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbuser";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N +920 \\core\\event\\config_log_created core created config_log config_log 1507 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbpass";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N +921 \\core\\event\\config_log_created core created config_log config_log 1508 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N +922 \\core\\event\\config_log_created core created config_log config_log 1509 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"dbtable";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N +923 \\core\\event\\config_log_created core created config_log config_log 1510 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"dbpersist";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N +924 \\core\\event\\config_log_created core created config_log config_log 1511 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"dbsocket";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N +925 \\core\\event\\config_log_created core created config_log config_log 1512 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbport";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N +926 \\core\\event\\config_log_created core created config_log config_log 1513 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"dbschema";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N +927 \\core\\event\\config_log_created core created config_log config_log 1514 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"dbcollation";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N +928 \\core\\event\\config_log_created core created config_log config_log 1515 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"dbhandlesoptions";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N +929 \\core\\event\\config_log_created core created config_log config_log 1516 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"buffersize";s:8:"oldvalue";N;s:5:"value";s:2:"50";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N +930 \\core\\event\\config_log_created core created config_log config_log 1517 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"jsonformat";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N +931 \\core\\event\\config_log_created core created config_log config_log 1518 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"logguests";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N +932 \\core\\event\\config_log_created core created config_log config_log 1519 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"includelevels";s:8:"oldvalue";N;s:5:"value";s:5:"1,2,0";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N +933 \\core\\event\\config_log_created core created config_log config_log 1520 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"includeactions";s:8:"oldvalue";N;s:5:"value";s:7:"c,r,u,d";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N +934 \\core\\event\\config_log_created core created config_log config_log 1521 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"loglegacy";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:15:"logstore_legacy";} 1609884657 web 67.182.30.218 \N +935 \\core\\event\\config_log_created core created config_log config_log 1522 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"logguests";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +936 \\core\\event\\config_log_created core created config_log config_log 1523 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"loglifetime";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +937 \\core\\event\\config_log_created core created config_log config_log 1524 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"logguests";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:17:"logstore_standard";} 1609884657 web 67.182.30.218 \N +938 \\core\\event\\config_log_created core created config_log config_log 1525 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"jsonformat";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:17:"logstore_standard";} 1609884657 web 67.182.30.218 \N +939 \\core\\event\\config_log_created core created config_log config_log 1526 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"loglifetime";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:17:"logstore_standard";} 1609884657 web 67.182.30.218 \N +940 \\core\\event\\config_log_created core created config_log config_log 1527 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"buffersize";s:8:"oldvalue";N;s:5:"value";s:2:"50";s:6:"plugin";s:17:"logstore_standard";} 1609884657 web 67.182.30.218 \N +941 \\core\\event\\config_log_created core created config_log config_log 1528 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"useserver";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"mlbackend_python";} 1609884657 web 67.182.30.218 \N +942 \\core\\event\\config_log_created core created config_log config_log 1529 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"host";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"mlbackend_python";} 1609884657 web 67.182.30.218 \N +943 \\core\\event\\config_log_created core created config_log config_log 1530 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"port";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"mlbackend_python";} 1609884657 web 67.182.30.218 \N +944 \\core\\event\\config_log_created core created config_log config_log 1531 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"secure";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"mlbackend_python";} 1609884657 web 67.182.30.218 \N +945 \\core\\event\\config_log_created core created config_log config_log 1532 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"username";s:8:"oldvalue";N;s:5:"value";s:7:"default";s:6:"plugin";s:16:"mlbackend_python";} 1609884657 web 67.182.30.218 \N +946 \\core\\event\\config_log_created core created config_log config_log 1533 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"password";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"mlbackend_python";} 1609884657 web 67.182.30.218 \N +947 \\core\\event\\config_log_created core created config_log config_log 1534 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"videoextensions";s:8:"oldvalue";N;s:5:"value";s:33:"html_video,media_source,.f4v,.flv";s:6:"plugin";s:13:"media_videojs";} 1609884657 web 67.182.30.218 \N +948 \\core\\event\\config_log_created core created config_log config_log 1535 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"audioextensions";s:8:"oldvalue";N;s:5:"value";s:10:"html_audio";s:6:"plugin";s:13:"media_videojs";} 1609884657 web 67.182.30.218 \N +949 \\core\\event\\config_log_created core created config_log config_log 1536 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"rtmp";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:13:"media_videojs";} 1609884657 web 67.182.30.218 \N +950 \\core\\event\\config_log_created core created config_log config_log 1537 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"useflash";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:13:"media_videojs";} 1609884657 web 67.182.30.218 \N +951 \\core\\event\\config_log_created core created config_log config_log 1538 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"youtube";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:13:"media_videojs";} 1609884657 web 67.182.30.218 \N +952 \\core\\event\\config_log_created core created config_log config_log 1539 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"videocssclass";s:8:"oldvalue";N;s:5:"value";s:8:"video-js";s:6:"plugin";s:13:"media_videojs";} 1609884657 web 67.182.30.218 \N +953 \\core\\event\\config_log_created core created config_log config_log 1540 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"audiocssclass";s:8:"oldvalue";N;s:5:"value";s:8:"video-js";s:6:"plugin";s:13:"media_videojs";} 1609884657 web 67.182.30.218 \N +954 \\core\\event\\config_log_created core created config_log config_log 1541 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"limitsize";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:13:"media_videojs";} 1609884657 web 67.182.30.218 \N +955 \\core\\event\\config_log_created core created config_log config_log 1542 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"answerhowmany";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:17:"qtype_multichoice";} 1609884657 web 67.182.30.218 \N +956 \\core\\event\\config_log_created core created config_log config_log 1543 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"shuffleanswers";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:17:"qtype_multichoice";} 1609884657 web 67.182.30.218 \N +957 \\core\\event\\config_log_created core created config_log config_log 1544 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"answernumbering";s:8:"oldvalue";N;s:5:"value";s:3:"abc";s:6:"plugin";s:17:"qtype_multichoice";} 1609884657 web 67.182.30.218 \N +958 \\core\\event\\config_log_created core created config_log config_log 1545 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"toolbar";s:8:"oldvalue";N;s:5:"value";s:355:"collapse = collapse\nstyle1 = title, bold, italic\nlist = unorderedlist, orderedlist, indent\nlinks = link\nfiles = emojipicker, image, media, recordrtc, managefiles, h5p\nstyle2 = underline, strike, subscript, superscript\nalign = align\ninsert = equation, charmap, table, clear\nundo = undo\naccessibility = accessibilitychecker, accessibilityhelper\nother = html";s:6:"plugin";s:11:"editor_atto";} 1609884657 web 67.182.30.218 \N +959 \\core\\event\\config_log_created core created config_log config_log 1546 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"autosavefrequency";s:8:"oldvalue";N;s:5:"value";s:2:"60";s:6:"plugin";s:11:"editor_atto";} 1609884657 web 67.182.30.218 \N +960 \\core\\event\\config_log_created core created config_log config_log 1547 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"showgroups";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:13:"atto_collapse";} 1609884657 web 67.182.30.218 \N +961 \\core\\event\\config_log_created core created config_log config_log 1548 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"librarygroup1";s:8:"oldvalue";N;s:5:"value";s:244:"\n\\cdot\n\\times\n\\ast\n\\div\n\\diamond\n\\pm\n\\mp\n\\oplus\n\\ominus\n\\otimes\n\\oslash\n\\odot\n\\circ\n\\bullet\n\\asymp\n\\equiv\n\\subseteq\n\\supseteq\n\\leq\n\\geq\n\\preceq\n\\succeq\n\\sim\n\\simeq\n\\approx\n\\subset\n\\supset\n\\ll\n\\gg\n\\prec\n\\succ\n\\infty\n\\in\n\\ni\n\\forall\n\\exists\n\\neq\n";s:6:"plugin";s:13:"atto_equation";} 1609884657 web 67.182.30.218 \N +962 \\core\\event\\config_log_created core created config_log config_log 1549 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"librarygroup2";s:8:"oldvalue";N;s:5:"value";s:155:"\n\\leftarrow\n\\rightarrow\n\\uparrow\n\\downarrow\n\\leftrightarrow\n\\nearrow\n\\searrow\n\\swarrow\n\\nwarrow\n\\Leftarrow\n\\Rightarrow\n\\Uparrow\n\\Downarrow\n\\Leftrightarrow\n";s:6:"plugin";s:13:"atto_equation";} 1609884657 web 67.182.30.218 \N +963 \\core\\event\\config_log_created core created config_log config_log 1550 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"librarygroup3";s:8:"oldvalue";N;s:5:"value";s:210:"\n\\alpha\n\\beta\n\\gamma\n\\delta\n\\epsilon\n\\zeta\n\\eta\n\\theta\n\\iota\n\\kappa\n\\lambda\n\\mu\n\\nu\n\\xi\n\\pi\n\\rho\n\\sigma\n\\tau\n\\upsilon\n\\phi\n\\chi\n\\psi\n\\omega\n\\Gamma\n\\Delta\n\\Theta\n\\Lambda\n\\Xi\n\\Pi\n\\Sigma\n\\Upsilon\n\\Phi\n\\Psi\n\\Omega\n";s:6:"plugin";s:13:"atto_equation";} 1609884657 web 67.182.30.218 \N +964 \\core\\event\\config_log_created core created config_log config_log 1551 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"librarygroup4";s:8:"oldvalue";N;s:5:"value";s:239:"\n\\sum{a,b}\n\\sqrt[a]{b+c}\n\\int_{a}^{b}{c}\n\\iint_{a}^{b}{c}\n\\iiint_{a}^{b}{c}\n\\oint{a}\n(a)\n[a]\n\\lbrace{a}\\rbrace\n\\left| \\begin{matrix} a_1 & a_2 \\ a_3 & a_4 \\end{matrix} \\right|\n\\frac{a}{b+c}\n\\vec{a}\n\\binom {a} {b}\n{a \\brack b}\n{a \\brace b}\n";s:6:"plugin";s:13:"atto_equation";} 1609884657 web 67.182.30.218 \N +965 \\core\\event\\config_log_created core created config_log config_log 1552 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"allowedtypes";s:8:"oldvalue";N;s:5:"value";s:4:"both";s:6:"plugin";s:14:"atto_recordrtc";} 1609884657 web 67.182.30.218 \N +966 \\core\\event\\config_log_created core created config_log config_log 1553 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"audiobitrate";s:8:"oldvalue";N;s:5:"value";s:6:"128000";s:6:"plugin";s:14:"atto_recordrtc";} 1609884657 web 67.182.30.218 \N +967 \\core\\event\\config_log_created core created config_log config_log 1554 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"videobitrate";s:8:"oldvalue";N;s:5:"value";s:7:"2500000";s:6:"plugin";s:14:"atto_recordrtc";} 1609884657 web 67.182.30.218 \N +968 \\core\\event\\config_log_created core created config_log config_log 1555 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"timelimit";s:8:"oldvalue";N;s:5:"value";s:3:"120";s:6:"plugin";s:14:"atto_recordrtc";} 1609884657 web 67.182.30.218 \N +969 \\core\\event\\config_log_created core created config_log config_log 1556 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"allowborders";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"atto_table";} 1609884657 web 67.182.30.218 \N +970 \\core\\event\\config_log_created core created config_log config_log 1557 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"allowbackgroundcolour";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"atto_table";} 1609884657 web 67.182.30.218 \N +971 \\core\\event\\config_log_created core created config_log config_log 1558 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"allowwidth";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"atto_table";} 1609884657 web 67.182.30.218 \N +972 \\core\\event\\config_log_created core created config_log config_log 1559 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"customtoolbar";s:8:"oldvalue";N;s:5:"value";s:378:"wrap,formatselect,wrap,bold,italic,wrap,bullist,numlist,wrap,link,unlink,wrap,image\n\nundo,redo,wrap,underline,strikethrough,sub,sup,wrap,justifyleft,justifycenter,justifyright,wrap,outdent,indent,wrap,forecolor,backcolor,wrap,ltr,rtl\n\nfontselect,fontsizeselect,wrap,code,search,replace,wrap,nonbreaking,charmap,table,wrap,cleanup,removeformat,pastetext,pasteword,wrap,fullscreen";s:6:"plugin";s:14:"editor_tinymce";} 1609884657 web 67.182.30.218 \N +973 \\core\\event\\config_log_created core created config_log config_log 1560 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"fontselectlist";s:8:"oldvalue";N;s:5:"value";s:338:"Trebuchet=Trebuchet MS,Verdana,Arial,Helvetica,sans-serif;Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;Wingdings=wingdings";s:6:"plugin";s:14:"editor_tinymce";} 1609884657 web 67.182.30.218 \N +974 \\core\\event\\config_log_created core created config_log config_log 1561 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"customconfig";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"editor_tinymce";} 1609884657 web 67.182.30.218 \N +975 \\core\\event\\config_log_created core created config_log config_log 1562 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"requireemoticon";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:22:"tinymce_moodleemoticon";} 1609884657 web 67.182.30.218 \N +976 \\core\\event\\config_log_created core created config_log config_log 1563 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"spellengine";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:20:"tinymce_spellchecker";} 1609884657 web 67.182.30.218 \N +977 \\core\\event\\config_log_created core created config_log config_log 1564 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"spelllanguagelist";s:8:"oldvalue";N;s:5:"value";s:118:"+English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv";s:6:"plugin";s:20:"tinymce_spellchecker";} 1609884657 web 67.182.30.218 \N +978 \\core\\event\\config_log_created core created config_log config_log 1565 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"profileroles";s:8:"oldvalue";N;s:5:"value";s:5:"5,4,3";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +979 \\core\\event\\config_log_created core created config_log config_log 1566 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"coursecontact";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +980 \\core\\event\\config_log_created core created config_log config_log 1567 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"frontpage";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +981 \\core\\event\\config_log_created core created config_log config_log 1568 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"frontpageloggedin";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +982 \\core\\event\\config_log_created core created config_log config_log 1569 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"maxcategorydepth";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +983 \\core\\event\\config_log_created core created config_log config_log 1570 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"frontpagecourselimit";s:8:"oldvalue";N;s:5:"value";s:3:"200";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +984 \\core\\event\\config_log_created core created config_log config_log 1571 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"commentsperpage";s:8:"oldvalue";N;s:5:"value";s:2:"15";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +985 \\core\\event\\config_log_created core created config_log config_log 1572 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"defaultfrontpageroleid";s:8:"oldvalue";N;s:5:"value";s:1:"8";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +986 \\core\\event\\config_log_created core created config_log config_log 1573 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"messageinbound_enabled";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +987 \\core\\event\\config_log_created core created config_log config_log 1574 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"messageinbound_mailbox";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +988 \\core\\event\\config_log_created core created config_log config_log 1575 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"messageinbound_domain";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +989 \\core\\event\\config_log_created core created config_log config_log 1576 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"messageinbound_host";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +990 \\core\\event\\config_log_created core created config_log config_log 1577 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"messageinbound_hostssl";s:8:"oldvalue";N;s:5:"value";s:3:"ssl";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +991 \\core\\event\\config_log_created core created config_log config_log 1578 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"messageinbound_hostuser";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +992 \\core\\event\\config_log_created core created config_log config_log 1579 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"messageinbound_hostpass";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +993 \\core\\event\\config_log_created core created config_log config_log 1580 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"enablemobilewebservice";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N +994 \\core\\event\\config_log_created core created config_log config_log 1581 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"apppolicy";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N +995 \\core\\event\\config_log_created core created config_log config_log 1582 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"typeoflogin";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N +996 \\core\\event\\config_log_created core created config_log config_log 1583 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"qrcodetype";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N +997 \\core\\event\\config_log_created core created config_log config_log 1584 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"forcedurlscheme";s:8:"oldvalue";N;s:5:"value";s:12:"moodlemobile";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N +998 \\core\\event\\config_log_created core created config_log config_log 1585 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"minimumversion";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N +999 \\core\\event\\config_log_created core created config_log config_log 1586 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"mobilecssurl";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884658 web 67.182.30.218 \N +1000 \\core\\event\\config_log_created core created config_log config_log 1587 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"enablesmartappbanners";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N +1001 \\core\\event\\config_log_created core created config_log config_log 1588 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"iosappid";s:8:"oldvalue";N;s:5:"value";s:9:"633359593";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N +1002 \\core\\event\\config_log_created core created config_log config_log 1589 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"androidappid";s:8:"oldvalue";N;s:5:"value";s:23:"com.moodle.moodlemobile";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N +1003 \\core\\event\\config_log_created core created config_log config_log 1590 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"setuplink";s:8:"oldvalue";N;s:5:"value";s:34:"https://download.moodle.org/mobile";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N +1004 \\core\\event\\config_log_created core created config_log config_log 1591 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"forcelogout";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N +1005 \\core\\event\\config_log_created core created config_log config_log 1592 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"disabledfeatures";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N +1006 \\core\\event\\config_log_created core created config_log config_log 1593 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"custommenuitems";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N +1007 \\core\\event\\config_log_created core created config_log config_log 1594 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"customlangstrings";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N +1008 \\core\\event\\config_log_created core created config_log config_log 1595 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"enablemoodlenet";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"tool_moodlenet";} 1609884658 web 67.182.30.218 \N +1009 \\core\\event\\config_log_created core created config_log config_log 1596 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"defaultmoodlenetname";s:8:"oldvalue";N;s:5:"value";s:17:"MoodleNet Central";s:6:"plugin";s:14:"tool_moodlenet";} 1609884658 web 67.182.30.218 \N +1010 \\core\\event\\config_log_created core created config_log config_log 1597 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"defaultmoodlenet";s:8:"oldvalue";N;s:5:"value";s:18:"https://moodle.net";s:6:"plugin";s:14:"tool_moodlenet";} 1609884658 web 67.182.30.218 \N +1011 \\core\\event\\config_log_created core created config_log config_log 1598 c 0 1 10 0 2 0 \N 0 {"name":"timezone","oldvalue":null,"value":"America\\/Los_Angeles","plugin":null} 1609884709 web 67.182.30.218 \N +1012 \\core\\event\\config_log_created core created config_log config_log 1599 c 0 1 10 0 2 0 \N 0 {"name":"registerauth","oldvalue":null,"value":"","plugin":null} 1609884709 web 67.182.30.218 \N +1013 \\core\\event\\config_log_created core created config_log config_log 1600 c 0 1 10 0 2 0 \N 0 {"name":"noreplyaddress","oldvalue":null,"value":"noreply@email.com","plugin":null} 1609884719 web 67.182.30.218 \N +1014 \\core\\event\\dashboard_viewed core viewed dashboard \N \N r 0 5 30 2 2 0 2 0 null 1609884720 web 67.182.30.218 \N +1015 \\core\\event\\dashboard_viewed core viewed dashboard \N \N r 0 5 30 2 2 0 2 0 null 1609885379 web 67.182.30.218 \N +1016 \\core\\event\\dashboard_viewed core viewed dashboard \N \N r 0 5 30 2 2 0 2 0 null 1609885382 web 67.182.30.218 \N +1017 \\core\\event\\course_viewed core viewed course \N \N r 2 2 50 1 0 1 \N 0 null 1609888714 web 5.189.174.129 \N +\. + + +-- +-- TOC entry 11603 (class 0 OID 0) +-- Dependencies: 1038 +-- Name: mdl_logstore_standard_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_logstore_standard_log_id_seq', 1017, true); + + +-- +-- TOC entry 10278 (class 0 OID 21443) +-- Dependencies: 793 +-- Data for Name: mdl_lti; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_lti (id, course, name, intro, introformat, timecreated, timemodified, typeid, toolurl, securetoolurl, instructorchoicesendname, instructorchoicesendemailaddr, instructorchoiceallowroster, instructorchoiceallowsetting, instructorcustomparameters, instructorchoiceacceptgrades, grade, launchcontainer, resourcekey, password, debuglaunch, showtitlelaunch, showdescriptionlaunch, servicesalt, icon, secureicon) FROM stdin; +\. + + +-- +-- TOC entry 10290 (class 0 OID 21535) +-- Dependencies: 805 +-- Data for Name: mdl_lti_access_tokens; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_lti_access_tokens (id, typeid, scope, token, validuntil, timecreated, lastaccess) FROM stdin; +\. + + +-- +-- TOC entry 11604 (class 0 OID 0) +-- Dependencies: 804 +-- Name: mdl_lti_access_tokens_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_lti_access_tokens_id_seq', 1, false); + + +-- +-- TOC entry 11605 (class 0 OID 0) +-- Dependencies: 792 +-- Name: mdl_lti_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_lti_id_seq', 1, false); + + +-- +-- TOC entry 10288 (class 0 OID 21526) +-- Dependencies: 803 +-- Data for Name: mdl_lti_submission; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_lti_submission (id, ltiid, userid, datesubmitted, dateupdated, gradepercent, originalgrade, launchid, state) FROM stdin; +\. + + +-- +-- TOC entry 11606 (class 0 OID 0) +-- Dependencies: 802 +-- Name: mdl_lti_submission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_lti_submission_id_seq', 1, false); + + +-- +-- TOC entry 10280 (class 0 OID 21465) +-- Dependencies: 795 +-- Data for Name: mdl_lti_tool_proxies; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_lti_tool_proxies (id, name, regurl, state, guid, secret, vendorcode, capabilityoffered, serviceoffered, toolproxy, createdby, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11607 (class 0 OID 0) +-- Dependencies: 794 +-- Name: mdl_lti_tool_proxies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_lti_tool_proxies_id_seq', 1, false); + + +-- +-- TOC entry 10286 (class 0 OID 21511) +-- Dependencies: 801 +-- Data for Name: mdl_lti_tool_settings; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_lti_tool_settings (id, toolproxyid, typeid, course, coursemoduleid, settings, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11608 (class 0 OID 0) +-- Dependencies: 800 +-- Name: mdl_lti_tool_settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_lti_tool_settings_id_seq', 1, false); + + +-- +-- TOC entry 10282 (class 0 OID 21479) +-- Dependencies: 797 +-- Data for Name: mdl_lti_types; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_lti_types (id, name, baseurl, tooldomain, state, course, coursevisible, ltiversion, clientid, toolproxyid, enabledcapability, parameter, icon, secureicon, createdby, timecreated, timemodified, description) FROM stdin; +\. + + +-- +-- TOC entry 10284 (class 0 OID 21498) +-- Dependencies: 799 +-- Data for Name: mdl_lti_types_config; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_lti_types_config (id, typeid, name, value) FROM stdin; +\. + + +-- +-- TOC entry 11609 (class 0 OID 0) +-- Dependencies: 798 +-- Name: mdl_lti_types_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_lti_types_config_id_seq', 1, false); + + +-- +-- TOC entry 11610 (class 0 OID 0) +-- Dependencies: 796 +-- Name: mdl_lti_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_lti_types_id_seq', 1, false); + + +-- +-- TOC entry 10496 (class 0 OID 23196) +-- Dependencies: 1011 +-- Data for Name: mdl_ltiservice_gradebookservices; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_ltiservice_gradebookservices (id, gradeitemid, courseid, toolproxyid, typeid, baseurl, ltilinkid, resourceid, tag) FROM stdin; +\. + + +-- +-- TOC entry 11611 (class 0 OID 0) +-- Dependencies: 1010 +-- Name: mdl_ltiservice_gradebookservices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_ltiservice_gradebookservices_id_seq', 1, false); + + +-- +-- TOC entry 9719 (class 0 OID 16835) +-- Dependencies: 234 +-- Data for Name: mdl_message; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_message (id, useridfrom, useridto, subject, fullmessage, fullmessageformat, fullmessagehtml, smallmessage, notification, contexturl, contexturlname, timecreated, timeuserfromdeleted, timeusertodeleted, component, eventtype, customdata) FROM stdin; +\. + + +-- +-- TOC entry 10398 (class 0 OID 22514) +-- Dependencies: 913 +-- Data for Name: mdl_message_airnotifier_devices; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_message_airnotifier_devices (id, userdeviceid, enable) FROM stdin; +\. + + +-- +-- TOC entry 11612 (class 0 OID 0) +-- Dependencies: 912 +-- Name: mdl_message_airnotifier_devices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_message_airnotifier_devices_id_seq', 1, false); + + +-- +-- TOC entry 9737 (class 0 OID 16968) +-- Dependencies: 252 +-- Data for Name: mdl_message_contact_requests; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_message_contact_requests (id, userid, requesteduserid, timecreated) FROM stdin; +\. + + +-- +-- TOC entry 11613 (class 0 OID 0) +-- Dependencies: 251 +-- Name: mdl_message_contact_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_message_contact_requests_id_seq', 1, false); + + +-- +-- TOC entry 9735 (class 0 OID 16957) +-- Dependencies: 250 +-- Data for Name: mdl_message_contacts; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_message_contacts (id, userid, contactid, timecreated) FROM stdin; +\. + + +-- +-- TOC entry 11614 (class 0 OID 0) +-- Dependencies: 249 +-- Name: mdl_message_contacts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_message_contacts_id_seq', 1, false); + + +-- +-- TOC entry 9729 (class 0 OID 16922) +-- Dependencies: 244 +-- Data for Name: mdl_message_conversation_actions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_message_conversation_actions (id, userid, conversationid, action, timecreated) FROM stdin; +\. + + +-- +-- TOC entry 11615 (class 0 OID 0) +-- Dependencies: 243 +-- Name: mdl_message_conversation_actions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_message_conversation_actions_id_seq', 1, false); + + +-- +-- TOC entry 9727 (class 0 OID 16912) +-- Dependencies: 242 +-- Data for Name: mdl_message_conversation_members; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_message_conversation_members (id, conversationid, userid, timecreated) FROM stdin; +\. + + +-- +-- TOC entry 11616 (class 0 OID 0) +-- Dependencies: 241 +-- Name: mdl_message_conversation_members_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_message_conversation_members_id_seq', 1, false); + + +-- +-- TOC entry 9725 (class 0 OID 16895) +-- Dependencies: 240 +-- Data for Name: mdl_message_conversations; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_message_conversations (id, type, name, convhash, component, itemtype, itemid, contextid, enabled, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11617 (class 0 OID 0) +-- Dependencies: 239 +-- Name: mdl_message_conversations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_message_conversations_id_seq', 1, false); + + +-- +-- TOC entry 10400 (class 0 OID 22524) +-- Dependencies: 915 +-- Data for Name: mdl_message_email_messages; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_message_email_messages (id, useridto, conversationid, messageid) FROM stdin; +\. + + +-- +-- TOC entry 11618 (class 0 OID 0) +-- Dependencies: 914 +-- Name: mdl_message_email_messages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_message_email_messages_id_seq', 1, false); + + +-- +-- TOC entry 11619 (class 0 OID 0) +-- Dependencies: 233 +-- Name: mdl_message_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_message_id_seq', 1, false); + + +-- +-- TOC entry 10402 (class 0 OID 22535) +-- Dependencies: 917 +-- Data for Name: mdl_message_popup; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_message_popup (id, messageid, isread) FROM stdin; +\. + + +-- +-- TOC entry 11620 (class 0 OID 0) +-- Dependencies: 916 +-- Name: mdl_message_popup_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_message_popup_id_seq', 1, false); + + +-- +-- TOC entry 10404 (class 0 OID 22546) +-- Dependencies: 919 +-- Data for Name: mdl_message_popup_notifications; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_message_popup_notifications (id, notificationid) FROM stdin; +\. + + +-- +-- TOC entry 11621 (class 0 OID 0) +-- Dependencies: 918 +-- Name: mdl_message_popup_notifications_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_message_popup_notifications_id_seq', 1, false); + + +-- +-- TOC entry 9916 (class 0 OID 18489) +-- Dependencies: 431 +-- Data for Name: mdl_message_processors; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_message_processors (id, name, enabled) FROM stdin; +1 airnotifier 1 +2 email 1 +3 jabber 1 +4 popup 1 +\. + + +-- +-- TOC entry 11622 (class 0 OID 0) +-- Dependencies: 430 +-- Name: mdl_message_processors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_message_processors_id_seq', 4, true); + + +-- +-- TOC entry 9914 (class 0 OID 18475) +-- Dependencies: 429 +-- Data for Name: mdl_message_providers; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_message_providers (id, name, component, capability) FROM stdin; +1 notices moodle moodle/site:config +2 errors moodle moodle/site:config +3 availableupdate moodle moodle/site:config +4 instantmessage moodle \N +5 backup moodle moodle/site:config +6 courserequested moodle moodle/site:approvecourse +7 courserequestapproved moodle moodle/course:request +8 courserequestrejected moodle moodle/course:request +9 badgerecipientnotice moodle moodle/badges:earnbadge +10 badgecreatornotice moodle \N +11 competencyplancomment moodle \N +12 competencyusercompcomment moodle \N +13 insights moodle \N +14 messagecontactrequests moodle \N +15 asyncbackupnotification moodle \N +16 gradenotifications moodle \N +17 assign_notification mod_assign \N +18 assignment_updates mod_assignment \N +19 submission mod_feedback \N +20 message mod_feedback \N +21 posts mod_forum \N +22 digests mod_forum \N +23 graded_essay mod_lesson \N +24 submission mod_quiz mod/quiz:emailnotifysubmission +25 confirmation mod_quiz mod/quiz:emailconfirmsubmission +26 attempt_overdue mod_quiz mod/quiz:emailwarnoverdue +27 flatfile_enrolment enrol_flatfile \N +28 imsenterprise_enrolment enrol_imsenterprise \N +29 expiry_notification enrol_manual \N +30 paypal_enrolment enrol_paypal \N +31 expiry_notification enrol_self \N +32 contactdataprotectionofficer tool_dataprivacy tool/dataprivacy:managedatarequests +33 datarequestprocessingresults tool_dataprivacy \N +34 notifyexceptions tool_dataprivacy tool/dataprivacy:managedatarequests +35 invalidrecipienthandler tool_messageinbound \N +36 messageprocessingerror tool_messageinbound \N +37 messageprocessingsuccess tool_messageinbound \N +38 notification tool_monitor tool/monitor:subscribe +\. + + +-- +-- TOC entry 11623 (class 0 OID 0) +-- Dependencies: 428 +-- Name: mdl_message_providers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_message_providers_id_seq', 38, true); + + +-- +-- TOC entry 9721 (class 0 OID 16856) +-- Dependencies: 236 +-- Data for Name: mdl_message_read; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_message_read (id, useridfrom, useridto, subject, fullmessage, fullmessageformat, fullmessagehtml, smallmessage, notification, contexturl, contexturlname, timecreated, timeread, timeuserfromdeleted, timeusertodeleted, component, eventtype) FROM stdin; +\. + + +-- +-- TOC entry 11624 (class 0 OID 0) +-- Dependencies: 235 +-- Name: mdl_message_read_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_message_read_id_seq', 1, false); + + +-- +-- TOC entry 9731 (class 0 OID 16932) +-- Dependencies: 246 +-- Data for Name: mdl_message_user_actions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_message_user_actions (id, userid, messageid, action, timecreated) FROM stdin; +\. + + +-- +-- TOC entry 11625 (class 0 OID 0) +-- Dependencies: 245 +-- Name: mdl_message_user_actions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_message_user_actions_id_seq', 1, false); + + +-- +-- TOC entry 9739 (class 0 OID 16979) +-- Dependencies: 254 +-- Data for Name: mdl_message_users_blocked; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_message_users_blocked (id, userid, blockeduserid, timecreated) FROM stdin; +\. + + +-- +-- TOC entry 11626 (class 0 OID 0) +-- Dependencies: 253 +-- Name: mdl_message_users_blocked_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_message_users_blocked_id_seq', 1, false); + + +-- +-- TOC entry 10018 (class 0 OID 19254) +-- Dependencies: 533 +-- Data for Name: mdl_messageinbound_datakeys; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_messageinbound_datakeys (id, handler, datavalue, datakey, timecreated, expires) FROM stdin; +\. + + +-- +-- TOC entry 11627 (class 0 OID 0) +-- Dependencies: 532 +-- Name: mdl_messageinbound_datakeys_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_messageinbound_datakeys_id_seq', 1, false); + + +-- +-- TOC entry 10016 (class 0 OID 19240) +-- Dependencies: 531 +-- Data for Name: mdl_messageinbound_handlers; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_messageinbound_handlers (id, component, classname, defaultexpiration, validateaddress, enabled) FROM stdin; +1 core \\core\\message\\inbound\\private_files_handler 0 1 0 +2 mod_forum \\mod_forum\\message\\inbound\\reply_handler 604800 1 0 +3 tool_messageinbound \\tool_messageinbound\\message\\inbound\\invalid_recipient_handler 604800 0 1 +\. + + +-- +-- TOC entry 11628 (class 0 OID 0) +-- Dependencies: 530 +-- Name: mdl_messageinbound_handlers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_messageinbound_handlers_id_seq', 3, true); + + +-- +-- TOC entry 10020 (class 0 OID 19264) +-- Dependencies: 535 +-- Data for Name: mdl_messageinbound_messagelist; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_messageinbound_messagelist (id, messageid, userid, address, timecreated) FROM stdin; +\. + + +-- +-- TOC entry 11629 (class 0 OID 0) +-- Dependencies: 534 +-- Name: mdl_messageinbound_messagelist_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_messageinbound_messagelist_id_seq', 1, false); + + +-- +-- TOC entry 9723 (class 0 OID 16879) +-- Dependencies: 238 +-- Data for Name: mdl_messages; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_messages (id, useridfrom, conversationid, subject, fullmessage, fullmessageformat, fullmessagehtml, smallmessage, timecreated, fullmessagetrust, customdata) FROM stdin; +\. + + +-- +-- TOC entry 11630 (class 0 OID 0) +-- Dependencies: 237 +-- Name: mdl_messages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_messages_id_seq', 1, false); + + +-- +-- TOC entry 9824 (class 0 OID 17709) +-- Dependencies: 339 +-- Data for Name: mdl_mnet_application; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_mnet_application (id, name, display_name, xmlrpc_server_url, sso_land_url, sso_jump_url) FROM stdin; +1 moodle Moodle /mnet/xmlrpc/server.php /auth/mnet/land.php /auth/mnet/jump.php +2 mahara Mahara /api/xmlrpc/server.php /auth/xmlrpc/land.php /auth/xmlrpc/jump.php +\. + + +-- +-- TOC entry 11631 (class 0 OID 0) +-- Dependencies: 338 +-- Name: mdl_mnet_application_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_mnet_application_id_seq', 2, true); + + +-- +-- TOC entry 9826 (class 0 OID 17725) +-- Dependencies: 341 +-- Data for Name: mdl_mnet_host; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_mnet_host (id, deleted, wwwroot, ip_address, name, public_key, public_key_expires, transport, portno, last_connect_time, last_log_id, force_theme, theme, applicationid, sslverification) FROM stdin; +1 0 http://18.237.39.129 172.30.2.144 0 0 0 0 0 0 \N 1 0 +2 0 All Hosts 0 0 0 0 0 0 \N 1 0 +\. + + +-- +-- TOC entry 9828 (class 0 OID 17749) +-- Dependencies: 343 +-- Data for Name: mdl_mnet_host2service; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_mnet_host2service (id, hostid, serviceid, publish, subscribe) FROM stdin; +\. + + +-- +-- TOC entry 11632 (class 0 OID 0) +-- Dependencies: 342 +-- Name: mdl_mnet_host2service_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_mnet_host2service_id_seq', 1, false); + + +-- +-- TOC entry 11633 (class 0 OID 0) +-- Dependencies: 340 +-- Name: mdl_mnet_host_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_mnet_host_id_seq', 2, true); + + +-- +-- TOC entry 9830 (class 0 OID 17762) +-- Dependencies: 345 +-- Data for Name: mdl_mnet_log; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_mnet_log (id, hostid, remoteid, "time", userid, ip, course, coursename, module, cmid, action, url, info) FROM stdin; +\. + + +-- +-- TOC entry 11634 (class 0 OID 0) +-- Dependencies: 344 +-- Name: mdl_mnet_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_mnet_log_id_seq', 1, false); + + +-- +-- TOC entry 9834 (class 0 OID 17804) +-- Dependencies: 349 +-- Data for Name: mdl_mnet_remote_rpc; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_mnet_remote_rpc (id, functionname, xmlrpcpath, plugintype, pluginname, enabled) FROM stdin; +1 user_authorise auth/mnet/auth.php/user_authorise auth mnet 1 +2 keepalive_server auth/mnet/auth.php/keepalive_server auth mnet 1 +3 kill_children auth/mnet/auth.php/kill_children auth mnet 1 +4 refresh_log auth/mnet/auth.php/refresh_log auth mnet 1 +5 fetch_user_image auth/mnet/auth.php/fetch_user_image auth mnet 1 +6 fetch_theme_info auth/mnet/auth.php/fetch_theme_info auth mnet 1 +7 update_enrolments auth/mnet/auth.php/update_enrolments auth mnet 1 +8 keepalive_client auth/mnet/auth.php/keepalive_client auth mnet 1 +9 kill_child auth/mnet/auth.php/kill_child auth mnet 1 +10 available_courses enrol/mnet/enrol.php/available_courses enrol mnet 1 +11 user_enrolments enrol/mnet/enrol.php/user_enrolments enrol mnet 1 +12 enrol_user enrol/mnet/enrol.php/enrol_user enrol mnet 1 +13 unenrol_user enrol/mnet/enrol.php/unenrol_user enrol mnet 1 +14 course_enrolments enrol/mnet/enrol.php/course_enrolments enrol mnet 1 +15 send_content_intent portfolio/mahara/lib.php/send_content_intent portfolio mahara 1 +16 send_content_ready portfolio/mahara/lib.php/send_content_ready portfolio mahara 1 +\. + + +-- +-- TOC entry 11635 (class 0 OID 0) +-- Dependencies: 348 +-- Name: mdl_mnet_remote_rpc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_mnet_remote_rpc_id_seq', 16, true); + + +-- +-- TOC entry 9840 (class 0 OID 17839) +-- Dependencies: 355 +-- Data for Name: mdl_mnet_remote_service2rpc; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_mnet_remote_service2rpc (id, serviceid, rpcid) FROM stdin; +1 1 1 +2 1 2 +3 1 3 +4 1 4 +5 1 5 +6 1 6 +7 1 7 +8 2 8 +9 2 9 +10 3 10 +11 3 11 +12 3 12 +13 3 13 +14 3 14 +15 4 15 +16 4 16 +\. + + +-- +-- TOC entry 11636 (class 0 OID 0) +-- Dependencies: 354 +-- Name: mdl_mnet_remote_service2rpc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_mnet_remote_service2rpc_id_seq', 16, true); + + +-- +-- TOC entry 9832 (class 0 OID 17786) +-- Dependencies: 347 +-- Data for Name: mdl_mnet_rpc; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_mnet_rpc (id, functionname, xmlrpcpath, plugintype, pluginname, enabled, help, profile, filename, classname, static) FROM stdin; +1 user_authorise auth/mnet/auth.php/user_authorise auth mnet 1 Return user data for the provided token, compare with user_agent string. a:2:{s:10:"parameters";a:2:{i:0;a:3:{s:4:"name";s:5:"token";s:4:"type";s:6:"string";s:11:"description";s:37:"The unique ID provided by remotehost.";}i:1;a:3:{s:4:"name";s:9:"useragent";s:4:"type";s:6:"string";s:11:"description";s:18:"User Agent string.";}}s:6:"return";a:2:{s:4:"type";s:5:"array";s:11:"description";s:44:"$userdata Array of user info for remote host";}} auth.php auth_plugin_mnet 0 +2 keepalive_server auth/mnet/auth.php/keepalive_server auth mnet 1 Receives an array of usernames from a remote machine and prods their\nsessions to keep them alive a:2:{s:10:"parameters";a:1:{i:0;a:3:{s:4:"name";s:5:"array";s:4:"type";s:5:"array";s:11:"description";s:21:"An array of usernames";}}s:6:"return";a:2:{s:4:"type";s:6:"string";s:11:"description";s:28:""All ok" or an error message";}} auth.php auth_plugin_mnet 0 +3 kill_children auth/mnet/auth.php/kill_children auth mnet 1 The IdP uses this function to kill child sessions on other hosts a:2:{s:10:"parameters";a:2:{i:0;a:3:{s:4:"name";s:8:"username";s:4:"type";s:6:"string";s:11:"description";s:28:"Username for session to kill";}i:1;a:3:{s:4:"name";s:9:"useragent";s:4:"type";s:6:"string";s:11:"description";s:35:"SHA1 hash of user agent to look for";}}s:6:"return";a:2:{s:4:"type";s:6:"string";s:11:"description";s:39:"A plaintext report of what has happened";}} auth.php auth_plugin_mnet 0 +4 refresh_log auth/mnet/auth.php/refresh_log auth mnet 1 Receives an array of log entries from an SP and adds them to the mnet_log\ntable a:2:{s:10:"parameters";a:1:{i:0;a:3:{s:4:"name";s:5:"array";s:4:"type";s:5:"array";s:11:"description";s:21:"An array of usernames";}}s:6:"return";a:2:{s:4:"type";s:6:"string";s:11:"description";s:28:""All ok" or an error message";}} auth.php auth_plugin_mnet 0 +5 fetch_user_image auth/mnet/auth.php/fetch_user_image auth mnet 1 Returns the user's profile image info\nIf the user exists and has a profile picture, the returned array will contain keys:\nf1 - the content of the default 100x100px image\nf1_mimetype - the mimetype of the f1 file\nf2 - the content of the 35x35px variant of the image\nf2_mimetype - the mimetype of the f2 file\nThe mimetype information was added in Moodle 2.0. In Moodle 1.x, images are always jpegs. a:2:{s:10:"parameters";a:1:{i:0;a:3:{s:4:"name";s:8:"username";s:4:"type";s:3:"int";s:11:"description";s:18:"The id of the user";}}s:6:"return";a:2:{s:4:"type";s:11:"false|array";s:11:"description";s:84:"false if user not found, empty array if no picture exists, array with data otherwise";}} auth.php auth_plugin_mnet 0 +6 fetch_theme_info auth/mnet/auth.php/fetch_theme_info auth mnet 1 Returns the theme information and logo url as strings. a:2:{s:10:"parameters";a:0:{}s:6:"return";a:2:{s:4:"type";s:6:"string";s:11:"description";s:14:"The theme info";}} auth.php auth_plugin_mnet 0 +7 update_enrolments auth/mnet/auth.php/update_enrolments auth mnet 1 Invoke this function _on_ the IDP to update it with enrolment info local to\nthe SP right after calling user_authorise()\nNormally called by the SP after calling user_authorise() a:2:{s:10:"parameters";a:2:{i:0;a:3:{s:4:"name";s:8:"username";s:4:"type";s:6:"string";s:11:"description";s:12:"The username";}i:1;a:3:{s:4:"name";s:7:"courses";s:4:"type";s:5:"array";s:11:"description";s:75:"Assoc array of courses following the structure of mnetservice_enrol_courses";}}s:6:"return";a:2:{s:4:"type";s:4:"bool";s:11:"description";s:0:"";}} auth.php auth_plugin_mnet 0 +8 keepalive_client auth/mnet/auth.php/keepalive_client auth mnet 1 Poll the IdP server to let it know that a user it has authenticated is still\nonline a:2:{s:10:"parameters";a:0:{}s:6:"return";a:2:{s:4:"type";s:4:"void";s:11:"description";s:0:"";}} auth.php auth_plugin_mnet 0 +9 kill_child auth/mnet/auth.php/kill_child auth mnet 1 When the IdP requests that child sessions are terminated,\nthis function will be called on each of the child hosts. The machine that\ncalls the function (over xmlrpc) provides us with the mnethostid we need. a:2:{s:10:"parameters";a:2:{i:0;a:3:{s:4:"name";s:8:"username";s:4:"type";s:6:"string";s:11:"description";s:28:"Username for session to kill";}i:1;a:3:{s:4:"name";s:9:"useragent";s:4:"type";s:6:"string";s:11:"description";s:35:"SHA1 hash of user agent to look for";}}s:6:"return";a:2:{s:4:"type";s:4:"bool";s:11:"description";s:15:"True on success";}} auth.php auth_plugin_mnet 0 +10 available_courses enrol/mnet/enrol.php/available_courses enrol mnet 1 Returns list of courses that we offer to the caller for remote enrolment of their users\nSince Moodle 2.0, courses are made available for MNet peers by creating an instance\nof enrol_mnet plugin for the course. Hidden courses are not returned. If there are two\ninstances - one specific for the host and one for 'All hosts', the setting of the specific\none is used. The id of the peer is kept in customint1, no other custom fields are used. a:2:{s:10:"parameters";a:0:{}s:6:"return";a:2:{s:4:"type";s:5:"array";s:11:"description";s:0:"";}} enrol.php enrol_mnet_mnetservice_enrol 0 +11 user_enrolments enrol/mnet/enrol.php/user_enrolments enrol mnet 1 This method has never been implemented in Moodle MNet API a:2:{s:10:"parameters";a:0:{}s:6:"return";a:2:{s:4:"type";s:5:"array";s:11:"description";s:11:"empty array";}} enrol.php enrol_mnet_mnetservice_enrol 0 +12 enrol_user enrol/mnet/enrol.php/enrol_user enrol mnet 1 Enrol remote user to our course\nIf we do not have local record for the remote user in our database,\nit gets created here. a:2:{s:10:"parameters";a:2:{i:0;a:3:{s:4:"name";s:8:"userdata";s:4:"type";s:5:"array";s:11:"description";s:43:"user details {@see mnet_fields_to_import()}";}i:1;a:3:{s:4:"name";s:8:"courseid";s:4:"type";s:3:"int";s:11:"description";s:19:"our local course id";}}s:6:"return";a:2:{s:4:"type";s:4:"bool";s:11:"description";s:69:"true if the enrolment has been successful, throws exception otherwise";}} enrol.php enrol_mnet_mnetservice_enrol 0 +13 unenrol_user enrol/mnet/enrol.php/unenrol_user enrol mnet 1 Unenrol remote user from our course\nOnly users enrolled via enrol_mnet plugin can be unenrolled remotely. If the\nremote user is enrolled into the local course via some other enrol plugin\n(enrol_manual for example), the remote host can't touch such enrolment. Please\ndo not report this behaviour as bug, it is a feature ;-) a:2:{s:10:"parameters";a:2:{i:0;a:3:{s:4:"name";s:8:"username";s:4:"type";s:6:"string";s:11:"description";s:18:"of the remote user";}i:1;a:3:{s:4:"name";s:8:"courseid";s:4:"type";s:3:"int";s:11:"description";s:19:"of our local course";}}s:6:"return";a:2:{s:4:"type";s:4:"bool";s:11:"description";s:71:"true if the unenrolment has been successful, throws exception otherwise";}} enrol.php enrol_mnet_mnetservice_enrol 0 +14 course_enrolments enrol/mnet/enrol.php/course_enrolments enrol mnet 1 Returns a list of users from the client server who are enrolled in our course\nSuitable instance of enrol_mnet must be created in the course. This method will not\nreturn any information about the enrolments in courses that are not available for\nremote enrolment, even if their users are enrolled into them via other plugin\n(note the difference from {@link self::user_enrolments()}).\nThis method will return enrolment information for users from hosts regardless\nthe enrolment plugin. It does not matter if the user was enrolled remotely by\ntheir admin or locally. Once the course is available for remote enrolments, we\nwill tell them everything about their users.\nIn Moodle 1.x the returned array used to be indexed by username. The side effect\nof MDL-19219 fix is that we do not need to use such index and therefore we can\nreturn all enrolment records. MNet clients 1.x will only use the last record for\nthe student, if she is enrolled via multiple plugins. a:2:{s:10:"parameters";a:2:{i:0;a:3:{s:4:"name";s:8:"courseid";s:4:"type";s:3:"int";s:11:"description";s:16:"ID of our course";}i:1;a:3:{s:4:"name";s:5:"roles";s:4:"type";s:12:"string|array";s:11:"description";s:58:"comma separated list of role shortnames (or array of them)";}}s:6:"return";a:2:{s:4:"type";s:5:"array";s:11:"description";s:0:"";}} enrol.php enrol_mnet_mnetservice_enrol 0 +15 fetch_file portfolio/mahara/lib.php/fetch_file portfolio mahara 1 xmlrpc (mnet) function to get the file.\nreads in the file and returns it base_64 encoded\nso that it can be enrypted by mnet. a:2:{s:10:"parameters";a:1:{i:0;a:3:{s:4:"name";s:5:"token";s:4:"type";s:6:"string";s:11:"description";s:56:"the token recieved previously during send_content_intent";}}s:6:"return";a:2:{s:4:"type";s:4:"void";s:11:"description";s:0:"";}} lib.php portfolio_plugin_mahara 1 +\. + + +-- +-- TOC entry 11637 (class 0 OID 0) +-- Dependencies: 346 +-- Name: mdl_mnet_rpc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_mnet_rpc_id_seq', 15, true); + + +-- +-- TOC entry 9836 (class 0 OID 17816) +-- Dependencies: 351 +-- Data for Name: mdl_mnet_service; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_mnet_service (id, name, description, apiversion, offer) FROM stdin; +1 sso_idp 1 1 +2 sso_sp 1 1 +3 mnet_enrol 1 1 +4 pf 1 1 +\. + + +-- +-- TOC entry 9838 (class 0 OID 17828) +-- Dependencies: 353 +-- Data for Name: mdl_mnet_service2rpc; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_mnet_service2rpc (id, serviceid, rpcid) FROM stdin; +1 1 1 +2 1 2 +3 1 3 +4 1 4 +5 1 5 +6 1 6 +7 1 7 +8 2 8 +9 2 9 +10 3 10 +11 3 11 +12 3 12 +13 3 13 +14 3 14 +15 4 15 +\. + + +-- +-- TOC entry 11638 (class 0 OID 0) +-- Dependencies: 352 +-- Name: mdl_mnet_service2rpc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_mnet_service2rpc_id_seq', 15, true); + + +-- +-- TOC entry 11639 (class 0 OID 0) +-- Dependencies: 350 +-- Name: mdl_mnet_service_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_mnet_service_id_seq', 4, true); + + +-- +-- TOC entry 9842 (class 0 OID 17850) +-- Dependencies: 357 +-- Data for Name: mdl_mnet_session; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_mnet_session (id, userid, username, token, mnethostid, useragent, confirm_timeout, session_id, expires) FROM stdin; +\. + + +-- +-- TOC entry 11640 (class 0 OID 0) +-- Dependencies: 356 +-- Name: mdl_mnet_session_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_mnet_session_id_seq', 1, false); + + +-- +-- TOC entry 9844 (class 0 OID 17867) +-- Dependencies: 359 +-- Data for Name: mdl_mnet_sso_access_control; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_mnet_sso_access_control (id, username, mnet_host_id, accessctrl) FROM stdin; +\. + + +-- +-- TOC entry 11641 (class 0 OID 0) +-- Dependencies: 358 +-- Name: mdl_mnet_sso_access_control_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_mnet_sso_access_control_id_seq', 1, false); + + +-- +-- TOC entry 10426 (class 0 OID 22687) +-- Dependencies: 941 +-- Data for Name: mdl_mnetservice_enrol_courses; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_mnetservice_enrol_courses (id, hostid, remoteid, categoryid, categoryname, sortorder, fullname, shortname, idnumber, summary, summaryformat, startdate, roleid, rolename) FROM stdin; +\. + + +-- +-- TOC entry 11642 (class 0 OID 0) +-- Dependencies: 940 +-- Name: mdl_mnetservice_enrol_courses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_mnetservice_enrol_courses_id_seq', 1, false); + + +-- +-- TOC entry 10428 (class 0 OID 22706) +-- Dependencies: 943 +-- Data for Name: mdl_mnetservice_enrol_enrolments; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_mnetservice_enrol_enrolments (id, hostid, userid, remotecourseid, rolename, enroltime, enroltype) FROM stdin; +\. + + +-- +-- TOC entry 11643 (class 0 OID 0) +-- Dependencies: 942 +-- Name: mdl_mnetservice_enrol_enrolments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_mnetservice_enrol_enrolments_id_seq', 1, false); + + +-- +-- TOC entry 9741 (class 0 OID 16990) +-- Dependencies: 256 +-- Data for Name: mdl_modules; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_modules (id, name, cron, lastcron, search, visible) FROM stdin; +1 assign 0 0 1 +2 assignment 60 0 0 +3 book 0 0 1 +4 chat 0 0 1 +5 choice 0 0 1 +6 data 0 0 1 +7 feedback 0 0 1 +8 folder 0 0 1 +9 forum 0 0 1 +10 glossary 0 0 1 +11 h5pactivity 0 0 1 +12 imscp 0 0 1 +13 label 0 0 1 +14 lesson 0 0 1 +15 lti 0 0 1 +16 page 0 0 1 +17 quiz 0 0 1 +18 resource 0 0 1 +19 scorm 0 0 1 +20 survey 0 0 1 +21 url 0 0 1 +22 wiki 0 0 1 +23 workshop 0 0 1 +\. + + +-- +-- TOC entry 11644 (class 0 OID 0) +-- Dependencies: 255 +-- Name: mdl_modules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_modules_id_seq', 23, true); + + +-- +-- TOC entry 9743 (class 0 OID 17004) +-- Dependencies: 258 +-- Data for Name: mdl_my_pages; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_my_pages (id, userid, name, private, sortorder) FROM stdin; +1 \N __default 0 0 +2 \N __default 1 0 +3 2 __default 1 0 +\. + + +-- +-- TOC entry 11645 (class 0 OID 0) +-- Dependencies: 257 +-- Name: mdl_my_pages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_my_pages_id_seq', 3, true); + + +-- +-- TOC entry 9733 (class 0 OID 16943) +-- Dependencies: 248 +-- Data for Name: mdl_notifications; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_notifications (id, useridfrom, useridto, subject, fullmessage, fullmessageformat, fullmessagehtml, smallmessage, component, eventtype, contexturl, contexturlname, timeread, timecreated, customdata) FROM stdin; +\. + + +-- +-- TOC entry 11646 (class 0 OID 0) +-- Dependencies: 247 +-- Name: mdl_notifications_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_notifications_id_seq', 1, false); + + +-- +-- TOC entry 10082 (class 0 OID 19663) +-- Dependencies: 597 +-- Data for Name: mdl_oauth2_access_token; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_oauth2_access_token (id, timecreated, timemodified, usermodified, issuerid, token, expires, scope) FROM stdin; +\. + + +-- +-- TOC entry 11647 (class 0 OID 0) +-- Dependencies: 596 +-- Name: mdl_oauth2_access_token_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_oauth2_access_token_id_seq', 1, false); + + +-- +-- TOC entry 10056 (class 0 OID 19474) +-- Dependencies: 571 +-- Data for Name: mdl_oauth2_endpoint; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_oauth2_endpoint (id, timecreated, timemodified, usermodified, name, url, issuerid) FROM stdin; +\. + + +-- +-- TOC entry 11648 (class 0 OID 0) +-- Dependencies: 570 +-- Name: mdl_oauth2_endpoint_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_oauth2_endpoint_id_seq', 1, false); + + +-- +-- TOC entry 10058 (class 0 OID 19487) +-- Dependencies: 573 +-- Data for Name: mdl_oauth2_issuer; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_oauth2_issuer (id, timecreated, timemodified, usermodified, name, image, baseurl, clientid, clientsecret, loginscopes, loginscopesoffline, loginparams, loginparamsoffline, alloweddomains, scopessupported, enabled, showonloginpage, basicauth, sortorder, requireconfirmation) FROM stdin; +\. + + +-- +-- TOC entry 11649 (class 0 OID 0) +-- Dependencies: 572 +-- Name: mdl_oauth2_issuer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_oauth2_issuer_id_seq', 1, false); + + +-- +-- TOC entry 10060 (class 0 OID 19503) +-- Dependencies: 575 +-- Data for Name: mdl_oauth2_system_account; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_oauth2_system_account (id, timecreated, timemodified, usermodified, issuerid, refreshtoken, grantedscopes, email, username) FROM stdin; +\. + + +-- +-- TOC entry 11650 (class 0 OID 0) +-- Dependencies: 574 +-- Name: mdl_oauth2_system_account_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_oauth2_system_account_id_seq', 1, false); + + +-- +-- TOC entry 10062 (class 0 OID 19515) +-- Dependencies: 577 +-- Data for Name: mdl_oauth2_user_field_mapping; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_oauth2_user_field_mapping (id, timemodified, timecreated, usermodified, issuerid, externalfield, internalfield) FROM stdin; +\. + + +-- +-- TOC entry 11651 (class 0 OID 0) +-- Dependencies: 576 +-- Name: mdl_oauth2_user_field_mapping_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_oauth2_user_field_mapping_id_seq', 1, false); + + +-- +-- TOC entry 10292 (class 0 OID 21549) +-- Dependencies: 807 +-- Data for Name: mdl_page; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_page (id, course, name, intro, introformat, content, contentformat, legacyfiles, legacyfileslast, display, displayoptions, revision, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11652 (class 0 OID 0) +-- Dependencies: 806 +-- Name: mdl_page_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_page_id_seq', 1, false); + + +-- +-- TOC entry 9904 (class 0 OID 18402) +-- Dependencies: 419 +-- Data for Name: mdl_portfolio_instance; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_portfolio_instance (id, plugin, name, visible) FROM stdin; +\. + + +-- +-- TOC entry 9906 (class 0 OID 18413) +-- Dependencies: 421 +-- Data for Name: mdl_portfolio_instance_config; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_portfolio_instance_config (id, instance, name, value) FROM stdin; +\. + + +-- +-- TOC entry 11653 (class 0 OID 0) +-- Dependencies: 420 +-- Name: mdl_portfolio_instance_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_portfolio_instance_config_id_seq', 1, false); + + +-- +-- TOC entry 11654 (class 0 OID 0) +-- Dependencies: 418 +-- Name: mdl_portfolio_instance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_portfolio_instance_id_seq', 1, false); + + +-- +-- TOC entry 9908 (class 0 OID 18427) +-- Dependencies: 423 +-- Data for Name: mdl_portfolio_instance_user; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_portfolio_instance_user (id, instance, userid, name, value) FROM stdin; +\. + + +-- +-- TOC entry 11655 (class 0 OID 0) +-- Dependencies: 422 +-- Name: mdl_portfolio_instance_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_portfolio_instance_user_id_seq', 1, false); + + +-- +-- TOC entry 9910 (class 0 OID 18441) +-- Dependencies: 425 +-- Data for Name: mdl_portfolio_log; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_portfolio_log (id, userid, "time", portfolio, caller_class, caller_file, caller_component, caller_sha1, tempdataid, returnurl, continueurl) FROM stdin; +\. + + +-- +-- TOC entry 11656 (class 0 OID 0) +-- Dependencies: 424 +-- Name: mdl_portfolio_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_portfolio_log_id_seq', 1, false); + + +-- +-- TOC entry 10432 (class 0 OID 22733) +-- Dependencies: 947 +-- Data for Name: mdl_portfolio_mahara_queue; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_portfolio_mahara_queue (id, transferid, token) FROM stdin; +\. + + +-- +-- TOC entry 11657 (class 0 OID 0) +-- Dependencies: 946 +-- Name: mdl_portfolio_mahara_queue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_portfolio_mahara_queue_id_seq', 1, false); + + +-- +-- TOC entry 9912 (class 0 OID 18460) +-- Dependencies: 427 +-- Data for Name: mdl_portfolio_tempdata; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_portfolio_tempdata (id, data, expirytime, userid, instance, queued) FROM stdin; +\. + + +-- +-- TOC entry 11658 (class 0 OID 0) +-- Dependencies: 426 +-- Name: mdl_portfolio_tempdata_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_portfolio_tempdata_id_seq', 1, false); + + +-- +-- TOC entry 9771 (class 0 OID 17291) +-- Dependencies: 286 +-- Data for Name: mdl_post; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_post (id, module, userid, courseid, groupid, moduleid, coursemoduleid, subject, summary, content, uniquehash, rating, format, summaryformat, attachment, publishstate, lastmodified, created, usermodified) FROM stdin; +\. + + +-- +-- TOC entry 11659 (class 0 OID 0) +-- Dependencies: 285 +-- Name: mdl_post_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_post_id_seq', 1, false); + + +-- +-- TOC entry 9964 (class 0 OID 18837) +-- Dependencies: 479 +-- Data for Name: mdl_profiling; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_profiling (id, runid, url, data, totalexecutiontime, totalcputime, totalcalls, totalmemory, runreference, runcomment, timecreated) FROM stdin; +\. + + +-- +-- TOC entry 11660 (class 0 OID 0) +-- Dependencies: 478 +-- Name: mdl_profiling_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_profiling_id_seq', 1, false); + + +-- +-- TOC entry 10118 (class 0 OID 19928) +-- Dependencies: 633 +-- Data for Name: mdl_qtype_ddimageortext; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_qtype_ddimageortext (id, questionid, shuffleanswers, correctfeedback, correctfeedbackformat, partiallycorrectfeedback, partiallycorrectfeedbackformat, incorrectfeedback, incorrectfeedbackformat, shownumcorrect) FROM stdin; +\. + + +-- +-- TOC entry 10122 (class 0 OID 19963) +-- Dependencies: 637 +-- Data for Name: mdl_qtype_ddimageortext_drags; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_qtype_ddimageortext_drags (id, questionid, no, draggroup, infinite, label) FROM stdin; +\. + + +-- +-- TOC entry 11661 (class 0 OID 0) +-- Dependencies: 636 +-- Name: mdl_qtype_ddimageortext_drags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_qtype_ddimageortext_drags_id_seq', 1, false); + + +-- +-- TOC entry 10120 (class 0 OID 19946) +-- Dependencies: 635 +-- Data for Name: mdl_qtype_ddimageortext_drops; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_qtype_ddimageortext_drops (id, questionid, no, xleft, ytop, choice, label) FROM stdin; +\. + + +-- +-- TOC entry 11662 (class 0 OID 0) +-- Dependencies: 634 +-- Name: mdl_qtype_ddimageortext_drops_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_qtype_ddimageortext_drops_id_seq', 1, false); + + +-- +-- TOC entry 11663 (class 0 OID 0) +-- Dependencies: 632 +-- Name: mdl_qtype_ddimageortext_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_qtype_ddimageortext_id_seq', 1, false); + + +-- +-- TOC entry 10124 (class 0 OID 19979) +-- Dependencies: 639 +-- Data for Name: mdl_qtype_ddmarker; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_qtype_ddmarker (id, questionid, shuffleanswers, correctfeedback, correctfeedbackformat, partiallycorrectfeedback, partiallycorrectfeedbackformat, incorrectfeedback, incorrectfeedbackformat, shownumcorrect, showmisplaced) FROM stdin; +\. + + +-- +-- TOC entry 10128 (class 0 OID 20013) +-- Dependencies: 643 +-- Data for Name: mdl_qtype_ddmarker_drags; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_qtype_ddmarker_drags (id, questionid, no, label, infinite, noofdrags) FROM stdin; +\. + + +-- +-- TOC entry 11664 (class 0 OID 0) +-- Dependencies: 642 +-- Name: mdl_qtype_ddmarker_drags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_qtype_ddmarker_drags_id_seq', 1, false); + + +-- +-- TOC entry 10126 (class 0 OID 19998) +-- Dependencies: 641 +-- Data for Name: mdl_qtype_ddmarker_drops; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_qtype_ddmarker_drops (id, questionid, no, shape, coords, choice) FROM stdin; +\. + + +-- +-- TOC entry 11665 (class 0 OID 0) +-- Dependencies: 640 +-- Name: mdl_qtype_ddmarker_drops_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_qtype_ddmarker_drops_id_seq', 1, false); + + +-- +-- TOC entry 11666 (class 0 OID 0) +-- Dependencies: 638 +-- Name: mdl_qtype_ddmarker_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_qtype_ddmarker_id_seq', 1, false); + + +-- +-- TOC entry 10132 (class 0 OID 20047) +-- Dependencies: 647 +-- Data for Name: mdl_qtype_essay_options; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_qtype_essay_options (id, questionid, responseformat, responserequired, responsefieldlines, attachments, attachmentsrequired, graderinfo, graderinfoformat, responsetemplate, responsetemplateformat, filetypeslist) FROM stdin; +\. + + +-- +-- TOC entry 11667 (class 0 OID 0) +-- Dependencies: 646 +-- Name: mdl_qtype_essay_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_qtype_essay_options_id_seq', 1, false); + + +-- +-- TOC entry 10136 (class 0 OID 20084) +-- Dependencies: 651 +-- Data for Name: mdl_qtype_match_options; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_qtype_match_options (id, questionid, shuffleanswers, correctfeedback, correctfeedbackformat, partiallycorrectfeedback, partiallycorrectfeedbackformat, incorrectfeedback, incorrectfeedbackformat, shownumcorrect) FROM stdin; +\. + + +-- +-- TOC entry 11668 (class 0 OID 0) +-- Dependencies: 650 +-- Name: mdl_qtype_match_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_qtype_match_options_id_seq', 1, false); + + +-- +-- TOC entry 10138 (class 0 OID 20102) +-- Dependencies: 653 +-- Data for Name: mdl_qtype_match_subquestions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_qtype_match_subquestions (id, questionid, questiontext, questiontextformat, answertext) FROM stdin; +\. + + +-- +-- TOC entry 11669 (class 0 OID 0) +-- Dependencies: 652 +-- Name: mdl_qtype_match_subquestions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_qtype_match_subquestions_id_seq', 1, false); + + +-- +-- TOC entry 10142 (class 0 OID 20130) +-- Dependencies: 657 +-- Data for Name: mdl_qtype_multichoice_options; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_qtype_multichoice_options (id, questionid, layout, single, shuffleanswers, correctfeedback, correctfeedbackformat, partiallycorrectfeedback, partiallycorrectfeedbackformat, incorrectfeedback, incorrectfeedbackformat, answernumbering, shownumcorrect, showstandardinstruction) FROM stdin; +\. + + +-- +-- TOC entry 11670 (class 0 OID 0) +-- Dependencies: 656 +-- Name: mdl_qtype_multichoice_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_qtype_multichoice_options_id_seq', 1, false); + + +-- +-- TOC entry 10150 (class 0 OID 20192) +-- Dependencies: 665 +-- Data for Name: mdl_qtype_randomsamatch_options; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_qtype_randomsamatch_options (id, questionid, choose, subcats, correctfeedback, correctfeedbackformat, partiallycorrectfeedback, partiallycorrectfeedbackformat, incorrectfeedback, incorrectfeedbackformat, shownumcorrect) FROM stdin; +\. + + +-- +-- TOC entry 11671 (class 0 OID 0) +-- Dependencies: 664 +-- Name: mdl_qtype_randomsamatch_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_qtype_randomsamatch_options_id_seq', 1, false); + + +-- +-- TOC entry 10152 (class 0 OID 20211) +-- Dependencies: 667 +-- Data for Name: mdl_qtype_shortanswer_options; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_qtype_shortanswer_options (id, questionid, usecase) FROM stdin; +\. + + +-- +-- TOC entry 11672 (class 0 OID 0) +-- Dependencies: 666 +-- Name: mdl_qtype_shortanswer_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_qtype_shortanswer_options_id_seq', 1, false); + + +-- +-- TOC entry 9804 (class 0 OID 17557) +-- Dependencies: 319 +-- Data for Name: mdl_question; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_question (id, category, parent, name, questiontext, questiontextformat, generalfeedback, generalfeedbackformat, defaultmark, penalty, qtype, length, stamp, version, hidden, timecreated, timemodified, createdby, modifiedby, idnumber) FROM stdin; +\. + + +-- +-- TOC entry 9806 (class 0 OID 17588) +-- Dependencies: 321 +-- Data for Name: mdl_question_answers; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_question_answers (id, question, answer, answerformat, fraction, feedback, feedbackformat) FROM stdin; +\. + + +-- +-- TOC entry 11673 (class 0 OID 0) +-- Dependencies: 320 +-- Name: mdl_question_answers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_question_answers_id_seq', 1, false); + + +-- +-- TOC entry 9816 (class 0 OID 17659) +-- Dependencies: 331 +-- Data for Name: mdl_question_attempt_step_data; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_question_attempt_step_data (id, attemptstepid, name, value) FROM stdin; +\. + + +-- +-- TOC entry 11674 (class 0 OID 0) +-- Dependencies: 330 +-- Name: mdl_question_attempt_step_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_question_attempt_step_data_id_seq', 1, false); + + +-- +-- TOC entry 9814 (class 0 OID 17647) +-- Dependencies: 329 +-- Data for Name: mdl_question_attempt_steps; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_question_attempt_steps (id, questionattemptid, sequencenumber, state, fraction, timecreated, userid) FROM stdin; +\. + + +-- +-- TOC entry 11675 (class 0 OID 0) +-- Dependencies: 328 +-- Name: mdl_question_attempt_steps_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_question_attempt_steps_id_seq', 1, false); + + +-- +-- TOC entry 9812 (class 0 OID 17628) +-- Dependencies: 327 +-- Data for Name: mdl_question_attempts; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_question_attempts (id, questionusageid, slot, behaviour, questionid, variant, maxmark, minfraction, maxfraction, flagged, questionsummary, rightanswer, responsesummary, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11676 (class 0 OID 0) +-- Dependencies: 326 +-- Name: mdl_question_attempts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_question_attempts_id_seq', 1, false); + + +-- +-- TOC entry 10108 (class 0 OID 19849) +-- Dependencies: 623 +-- Data for Name: mdl_question_calculated; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_question_calculated (id, question, answer, tolerance, tolerancetype, correctanswerlength, correctanswerformat) FROM stdin; +\. + + +-- +-- TOC entry 11677 (class 0 OID 0) +-- Dependencies: 622 +-- Name: mdl_question_calculated_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_question_calculated_id_seq', 1, false); + + +-- +-- TOC entry 10110 (class 0 OID 19865) +-- Dependencies: 625 +-- Data for Name: mdl_question_calculated_options; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_question_calculated_options (id, question, synchronize, single, shuffleanswers, correctfeedback, correctfeedbackformat, partiallycorrectfeedback, partiallycorrectfeedbackformat, incorrectfeedback, incorrectfeedbackformat, answernumbering, shownumcorrect) FROM stdin; +\. + + +-- +-- TOC entry 11678 (class 0 OID 0) +-- Dependencies: 624 +-- Name: mdl_question_calculated_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_question_calculated_options_id_seq', 1, false); + + +-- +-- TOC entry 9802 (class 0 OID 17536) +-- Dependencies: 317 +-- Data for Name: mdl_question_categories; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_question_categories (id, name, contextid, info, infoformat, stamp, parent, sortorder, idnumber) FROM stdin; +\. + + +-- +-- TOC entry 11679 (class 0 OID 0) +-- Dependencies: 316 +-- Name: mdl_question_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_question_categories_id_seq', 1, false); + + +-- +-- TOC entry 10112 (class 0 OID 19886) +-- Dependencies: 627 +-- Data for Name: mdl_question_dataset_definitions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_question_dataset_definitions (id, category, name, type, options, itemcount) FROM stdin; +\. + + +-- +-- TOC entry 11680 (class 0 OID 0) +-- Dependencies: 626 +-- Name: mdl_question_dataset_definitions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_question_dataset_definitions_id_seq', 1, false); + + +-- +-- TOC entry 10114 (class 0 OID 19903) +-- Dependencies: 629 +-- Data for Name: mdl_question_dataset_items; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_question_dataset_items (id, definition, itemnumber, value) FROM stdin; +\. + + +-- +-- TOC entry 11681 (class 0 OID 0) +-- Dependencies: 628 +-- Name: mdl_question_dataset_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_question_dataset_items_id_seq', 1, false); + + +-- +-- TOC entry 10116 (class 0 OID 19915) +-- Dependencies: 631 +-- Data for Name: mdl_question_datasets; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_question_datasets (id, question, datasetdefinition) FROM stdin; +\. + + +-- +-- TOC entry 11682 (class 0 OID 0) +-- Dependencies: 630 +-- Name: mdl_question_datasets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_question_datasets_id_seq', 1, false); + + +-- +-- TOC entry 10130 (class 0 OID 20029) +-- Dependencies: 645 +-- Data for Name: mdl_question_ddwtos; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_question_ddwtos (id, questionid, shuffleanswers, correctfeedback, correctfeedbackformat, partiallycorrectfeedback, partiallycorrectfeedbackformat, incorrectfeedback, incorrectfeedbackformat, shownumcorrect) FROM stdin; +\. + + +-- +-- TOC entry 11683 (class 0 OID 0) +-- Dependencies: 644 +-- Name: mdl_question_ddwtos_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_question_ddwtos_id_seq', 1, false); + + +-- +-- TOC entry 10134 (class 0 OID 20066) +-- Dependencies: 649 +-- Data for Name: mdl_question_gapselect; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_question_gapselect (id, questionid, shuffleanswers, correctfeedback, correctfeedbackformat, partiallycorrectfeedback, partiallycorrectfeedbackformat, incorrectfeedback, incorrectfeedbackformat, shownumcorrect) FROM stdin; +\. + + +-- +-- TOC entry 11684 (class 0 OID 0) +-- Dependencies: 648 +-- Name: mdl_question_gapselect_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_question_gapselect_id_seq', 1, false); + + +-- +-- TOC entry 9808 (class 0 OID 17604) +-- Dependencies: 323 +-- Data for Name: mdl_question_hints; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_question_hints (id, questionid, hint, hintformat, shownumcorrect, clearwrong, options) FROM stdin; +\. + + +-- +-- TOC entry 11685 (class 0 OID 0) +-- Dependencies: 322 +-- Name: mdl_question_hints_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_question_hints_id_seq', 1, false); + + +-- +-- TOC entry 11686 (class 0 OID 0) +-- Dependencies: 318 +-- Name: mdl_question_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_question_id_seq', 1, false); + + +-- +-- TOC entry 10140 (class 0 OID 20117) +-- Dependencies: 655 +-- Data for Name: mdl_question_multianswer; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_question_multianswer (id, question, sequence) FROM stdin; +\. + + +-- +-- TOC entry 11687 (class 0 OID 0) +-- Dependencies: 654 +-- Name: mdl_question_multianswer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_question_multianswer_id_seq', 1, false); + + +-- +-- TOC entry 10144 (class 0 OID 20152) +-- Dependencies: 659 +-- Data for Name: mdl_question_numerical; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_question_numerical (id, question, answer, tolerance) FROM stdin; +\. + + +-- +-- TOC entry 11688 (class 0 OID 0) +-- Dependencies: 658 +-- Name: mdl_question_numerical_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_question_numerical_id_seq', 1, false); + + +-- +-- TOC entry 10146 (class 0 OID 20165) +-- Dependencies: 661 +-- Data for Name: mdl_question_numerical_options; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_question_numerical_options (id, question, showunits, unitsleft, unitgradingtype, unitpenalty) FROM stdin; +\. + + +-- +-- TOC entry 11689 (class 0 OID 0) +-- Dependencies: 660 +-- Name: mdl_question_numerical_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_question_numerical_options_id_seq', 1, false); + + +-- +-- TOC entry 10148 (class 0 OID 20179) +-- Dependencies: 663 +-- Data for Name: mdl_question_numerical_units; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_question_numerical_units (id, question, multiplier, unit) FROM stdin; +\. + + +-- +-- TOC entry 11690 (class 0 OID 0) +-- Dependencies: 662 +-- Name: mdl_question_numerical_units_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_question_numerical_units_id_seq', 1, false); + + +-- +-- TOC entry 9820 (class 0 OID 17686) +-- Dependencies: 335 +-- Data for Name: mdl_question_response_analysis; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_question_response_analysis (id, hashcode, whichtries, timemodified, questionid, variant, subqid, aid, response, credit) FROM stdin; +\. + + +-- +-- TOC entry 11691 (class 0 OID 0) +-- Dependencies: 334 +-- Name: mdl_question_response_analysis_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_question_response_analysis_id_seq', 1, false); + + +-- +-- TOC entry 9822 (class 0 OID 17700) +-- Dependencies: 337 +-- Data for Name: mdl_question_response_count; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_question_response_count (id, analysisid, try, rcount) FROM stdin; +\. + + +-- +-- TOC entry 11692 (class 0 OID 0) +-- Dependencies: 336 +-- Name: mdl_question_response_count_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_question_response_count_id_seq', 1, false); + + +-- +-- TOC entry 9818 (class 0 OID 17672) +-- Dependencies: 333 +-- Data for Name: mdl_question_statistics; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_question_statistics (id, hashcode, timemodified, questionid, slot, subquestion, variant, s, effectiveweight, negcovar, discriminationindex, discriminativeefficiency, sd, facility, subquestions, maxmark, positions, randomguessscore) FROM stdin; +\. + + +-- +-- TOC entry 11693 (class 0 OID 0) +-- Dependencies: 332 +-- Name: mdl_question_statistics_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_question_statistics_id_seq', 1, false); + + +-- +-- TOC entry 10154 (class 0 OID 20222) +-- Dependencies: 669 +-- Data for Name: mdl_question_truefalse; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_question_truefalse (id, question, trueanswer, falseanswer) FROM stdin; +\. + + +-- +-- TOC entry 11694 (class 0 OID 0) +-- Dependencies: 668 +-- Name: mdl_question_truefalse_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_question_truefalse_id_seq', 1, false); + + +-- +-- TOC entry 9810 (class 0 OID 17617) +-- Dependencies: 325 +-- Data for Name: mdl_question_usages; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_question_usages (id, contextid, component, preferredbehaviour) FROM stdin; +\. + + +-- +-- TOC entry 11695 (class 0 OID 0) +-- Dependencies: 324 +-- Name: mdl_question_usages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_question_usages_id_seq', 1, false); + + +-- +-- TOC entry 10294 (class 0 OID 21569) +-- Dependencies: 809 +-- Data for Name: mdl_quiz; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_quiz (id, course, name, intro, introformat, timeopen, timeclose, timelimit, overduehandling, graceperiod, preferredbehaviour, canredoquestions, attempts, attemptonlast, grademethod, decimalpoints, questiondecimalpoints, reviewattempt, reviewcorrectness, reviewmarks, reviewspecificfeedback, reviewgeneralfeedback, reviewrightanswer, reviewoverallfeedback, questionsperpage, navmethod, shuffleanswers, sumgrades, grade, timecreated, timemodified, password, subnet, browsersecurity, delay1, delay2, showuserpicture, showblocks, completionattemptsexhausted, completionpass, allowofflineattempts) FROM stdin; +\. + + +-- +-- TOC entry 10304 (class 0 OID 21678) +-- Dependencies: 819 +-- Data for Name: mdl_quiz_attempts; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_quiz_attempts (id, quiz, userid, attempt, uniqueid, layout, currentpage, preview, state, timestart, timefinish, timemodified, timemodifiedoffline, timecheckstate, sumgrades) FROM stdin; +\. + + +-- +-- TOC entry 11696 (class 0 OID 0) +-- Dependencies: 818 +-- Name: mdl_quiz_attempts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_quiz_attempts_id_seq', 1, false); + + +-- +-- TOC entry 10300 (class 0 OID 21650) +-- Dependencies: 815 +-- Data for Name: mdl_quiz_feedback; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_quiz_feedback (id, quizid, feedbacktext, feedbacktextformat, mingrade, maxgrade) FROM stdin; +\. + + +-- +-- TOC entry 11697 (class 0 OID 0) +-- Dependencies: 814 +-- Name: mdl_quiz_feedback_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_quiz_feedback_id_seq', 1, false); + + +-- +-- TOC entry 10306 (class 0 OID 21706) +-- Dependencies: 821 +-- Data for Name: mdl_quiz_grades; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_quiz_grades (id, quiz, userid, grade, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11698 (class 0 OID 0) +-- Dependencies: 820 +-- Name: mdl_quiz_grades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_quiz_grades_id_seq', 1, false); + + +-- +-- TOC entry 11699 (class 0 OID 0) +-- Dependencies: 808 +-- Name: mdl_quiz_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_quiz_id_seq', 1, false); + + +-- +-- TOC entry 10302 (class 0 OID 21666) +-- Dependencies: 817 +-- Data for Name: mdl_quiz_overrides; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_quiz_overrides (id, quiz, groupid, userid, timeopen, timeclose, timelimit, attempts, password) FROM stdin; +\. + + +-- +-- TOC entry 11700 (class 0 OID 0) +-- Dependencies: 816 +-- Name: mdl_quiz_overrides_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_quiz_overrides_id_seq', 1, false); + + +-- +-- TOC entry 10498 (class 0 OID 23209) +-- Dependencies: 1013 +-- Data for Name: mdl_quiz_overview_regrades; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_quiz_overview_regrades (id, questionusageid, slot, newfraction, oldfraction, regraded, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11701 (class 0 OID 0) +-- Dependencies: 1012 +-- Name: mdl_quiz_overview_regrades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_quiz_overview_regrades_id_seq', 1, false); + + +-- +-- TOC entry 10308 (class 0 OID 21720) +-- Dependencies: 823 +-- Data for Name: mdl_quiz_reports; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_quiz_reports (id, name, displayorder, capability) FROM stdin; +1 grading 6000 mod/quiz:grade +2 overview 10000 \N +3 responses 9000 \N +4 statistics 8000 quiz/statistics:view +\. + + +-- +-- TOC entry 11702 (class 0 OID 0) +-- Dependencies: 822 +-- Name: mdl_quiz_reports_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_quiz_reports_id_seq', 4, true); + + +-- +-- TOC entry 10298 (class 0 OID 21636) +-- Dependencies: 813 +-- Data for Name: mdl_quiz_sections; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_quiz_sections (id, quizid, firstslot, heading, shufflequestions) FROM stdin; +\. + + +-- +-- TOC entry 11703 (class 0 OID 0) +-- Dependencies: 812 +-- Name: mdl_quiz_sections_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_quiz_sections_id_seq', 1, false); + + +-- +-- TOC entry 10310 (class 0 OID 21732) +-- Dependencies: 825 +-- Data for Name: mdl_quiz_slot_tags; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_quiz_slot_tags (id, slotid, tagid, tagname) FROM stdin; +\. + + +-- +-- TOC entry 11704 (class 0 OID 0) +-- Dependencies: 824 +-- Name: mdl_quiz_slot_tags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_quiz_slot_tags_id_seq', 1, false); + + +-- +-- TOC entry 10296 (class 0 OID 21620) +-- Dependencies: 811 +-- Data for Name: mdl_quiz_slots; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_quiz_slots (id, slot, quizid, page, requireprevious, questionid, questioncategoryid, includingsubcategories, maxmark) FROM stdin; +\. + + +-- +-- TOC entry 11705 (class 0 OID 0) +-- Dependencies: 810 +-- Name: mdl_quiz_slots_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_quiz_slots_id_seq', 1, false); + + +-- +-- TOC entry 10500 (class 0 OID 23218) +-- Dependencies: 1015 +-- Data for Name: mdl_quiz_statistics; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_quiz_statistics (id, hashcode, whichattempts, timemodified, firstattemptscount, highestattemptscount, lastattemptscount, allattemptscount, firstattemptsavg, highestattemptsavg, lastattemptsavg, allattemptsavg, median, standarddeviation, skewness, kurtosis, cic, errorratio, standarderror) FROM stdin; +\. + + +-- +-- TOC entry 11706 (class 0 OID 0) +-- Dependencies: 1014 +-- Name: mdl_quiz_statistics_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_quiz_statistics_id_seq', 1, false); + + +-- +-- TOC entry 10502 (class 0 OID 23227) +-- Dependencies: 1017 +-- Data for Name: mdl_quizaccess_seb_quizsettings; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_quizaccess_seb_quizsettings (id, quizid, cmid, templateid, requiresafeexambrowser, showsebtaskbar, showwificontrol, showreloadbutton, showtime, showkeyboardlayout, allowuserquitseb, quitpassword, linkquitseb, userconfirmquit, enableaudiocontrol, muteonstartup, allowspellchecking, allowreloadinexam, activateurlfiltering, filterembeddedcontent, expressionsallowed, regexallowed, expressionsblocked, regexblocked, allowedbrowserexamkeys, showsebdownloadlink, usermodified, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11707 (class 0 OID 0) +-- Dependencies: 1016 +-- Name: mdl_quizaccess_seb_quizsettings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_quizaccess_seb_quizsettings_id_seq', 1, false); + + +-- +-- TOC entry 10504 (class 0 OID 23245) +-- Dependencies: 1019 +-- Data for Name: mdl_quizaccess_seb_template; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_quizaccess_seb_template (id, name, description, content, enabled, sortorder, usermodified, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11708 (class 0 OID 0) +-- Dependencies: 1018 +-- Name: mdl_quizaccess_seb_template_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_quizaccess_seb_template_id_seq', 1, false); + + +-- +-- TOC entry 9954 (class 0 OID 18758) +-- Dependencies: 469 +-- Data for Name: mdl_rating; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_rating (id, contextid, component, ratingarea, itemid, scaleid, rating, userid, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11709 (class 0 OID 0) +-- Dependencies: 468 +-- Name: mdl_rating_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_rating_id_seq', 1, false); + + +-- +-- TOC entry 9958 (class 0 OID 18786) +-- Dependencies: 473 +-- Data for Name: mdl_registration_hubs; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_registration_hubs (id, token, hubname, huburl, confirmed, secret, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11710 (class 0 OID 0) +-- Dependencies: 472 +-- Name: mdl_registration_hubs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_registration_hubs_id_seq', 1, false); + + +-- +-- TOC entry 9924 (class 0 OID 18554) +-- Dependencies: 439 +-- Data for Name: mdl_repository; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_repository (id, type, visible, sortorder) FROM stdin; +1 areafiles 1 1 +2 contentbank 1 2 +3 local 1 3 +4 recent 1 4 +5 upload 1 5 +6 url 1 6 +7 user 1 7 +8 wikimedia 1 8 +\. + + +-- +-- TOC entry 11711 (class 0 OID 0) +-- Dependencies: 438 +-- Name: mdl_repository_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_repository_id_seq', 8, true); + + +-- +-- TOC entry 9928 (class 0 OID 18579) +-- Dependencies: 443 +-- Data for Name: mdl_repository_instance_config; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_repository_instance_config (id, instanceid, name, value) FROM stdin; +\. + + +-- +-- TOC entry 11712 (class 0 OID 0) +-- Dependencies: 442 +-- Name: mdl_repository_instance_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_repository_instance_config_id_seq', 1, false); + + +-- +-- TOC entry 9926 (class 0 OID 18565) +-- Dependencies: 441 +-- Data for Name: mdl_repository_instances; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_repository_instances (id, name, typeid, userid, contextid, username, password, timecreated, timemodified, readonly) FROM stdin; +1 1 0 1 \N \N 1609808499 1609808499 0 +2 2 0 1 \N \N 1609808499 1609808499 0 +3 3 0 1 \N \N 1609808500 1609808500 0 +4 4 0 1 \N \N 1609808500 1609808500 0 +5 5 0 1 \N \N 1609808500 1609808500 0 +6 6 0 1 \N \N 1609808500 1609808500 0 +7 7 0 1 \N \N 1609808500 1609808500 0 +8 8 0 1 \N \N 1609808500 1609808500 0 +\. + + +-- +-- TOC entry 11713 (class 0 OID 0) +-- Dependencies: 440 +-- Name: mdl_repository_instances_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_repository_instances_id_seq', 8, true); + + +-- +-- TOC entry 10430 (class 0 OID 22719) +-- Dependencies: 945 +-- Data for Name: mdl_repository_onedrive_access; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_repository_onedrive_access (id, timemodified, timecreated, usermodified, permissionid, itemid) FROM stdin; +\. + + +-- +-- TOC entry 11714 (class 0 OID 0) +-- Dependencies: 944 +-- Name: mdl_repository_onedrive_access_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_repository_onedrive_access_id_seq', 1, false); + + +-- +-- TOC entry 10312 (class 0 OID 21742) +-- Dependencies: 827 +-- Data for Name: mdl_resource; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_resource (id, course, name, intro, introformat, tobemigrated, legacyfiles, legacyfileslast, display, displayoptions, filterfiles, revision, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11715 (class 0 OID 0) +-- Dependencies: 826 +-- Name: mdl_resource_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_resource_id_seq', 1, false); + + +-- +-- TOC entry 10314 (class 0 OID 21763) +-- Dependencies: 829 +-- Data for Name: mdl_resource_old; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_resource_old (id, course, name, type, reference, intro, introformat, alltext, popup, options, timemodified, oldid, cmid, newmodule, newid, migrated) FROM stdin; +\. + + +-- +-- TOC entry 11716 (class 0 OID 0) +-- Dependencies: 828 +-- Name: mdl_resource_old_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_resource_old_id_seq', 1, false); + + +-- +-- TOC entry 9773 (class 0 OID 17321) +-- Dependencies: 288 +-- Data for Name: mdl_role; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_role (id, name, shortname, description, sortorder, archetype) FROM stdin; +1 manager 1 manager +2 coursecreator 2 coursecreator +3 editingteacher 3 editingteacher +4 teacher 4 teacher +5 student 5 student +6 guest 6 guest +7 user 7 user +8 frontpage 8 frontpage +\. + + +-- +-- TOC entry 9780 (class 0 OID 17375) +-- Dependencies: 295 +-- Data for Name: mdl_role_allow_assign; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_role_allow_assign (id, roleid, allowassign) FROM stdin; +1 1 1 +2 1 2 +3 1 3 +4 1 4 +5 1 5 +6 3 4 +7 3 5 +\. + + +-- +-- TOC entry 11717 (class 0 OID 0) +-- Dependencies: 294 +-- Name: mdl_role_allow_assign_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_role_allow_assign_id_seq', 7, true); + + +-- +-- TOC entry 9782 (class 0 OID 17388) +-- Dependencies: 297 +-- Data for Name: mdl_role_allow_override; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_role_allow_override (id, roleid, allowoverride) FROM stdin; +1 1 1 +2 1 2 +3 1 3 +4 1 4 +5 1 5 +6 1 6 +7 1 7 +8 1 8 +9 3 4 +10 3 5 +11 3 6 +\. + + +-- +-- TOC entry 11718 (class 0 OID 0) +-- Dependencies: 296 +-- Name: mdl_role_allow_override_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_role_allow_override_id_seq', 11, true); + + +-- +-- TOC entry 9784 (class 0 OID 17401) +-- Dependencies: 299 +-- Data for Name: mdl_role_allow_switch; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_role_allow_switch (id, roleid, allowswitch) FROM stdin; +1 1 3 +2 1 4 +3 1 5 +4 1 6 +5 3 4 +6 3 5 +7 3 6 +8 4 5 +9 4 6 +\. + + +-- +-- TOC entry 11719 (class 0 OID 0) +-- Dependencies: 298 +-- Name: mdl_role_allow_switch_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_role_allow_switch_id_seq', 9, true); + + +-- +-- TOC entry 9786 (class 0 OID 17412) +-- Dependencies: 301 +-- Data for Name: mdl_role_allow_view; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_role_allow_view (id, roleid, allowview) FROM stdin; +1 1 1 +2 1 2 +3 1 3 +4 1 4 +5 1 5 +6 1 6 +7 1 7 +8 1 8 +9 2 2 +10 2 3 +11 2 4 +12 2 5 +13 3 2 +14 3 3 +15 3 4 +16 3 5 +17 4 2 +18 4 3 +19 4 4 +20 4 5 +21 5 2 +22 5 3 +23 5 4 +24 5 5 +\. + + +-- +-- TOC entry 11720 (class 0 OID 0) +-- Dependencies: 300 +-- Name: mdl_role_allow_view_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_role_allow_view_id_seq', 24, true); + + +-- +-- TOC entry 9788 (class 0 OID 17423) +-- Dependencies: 303 +-- Data for Name: mdl_role_assignments; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_role_assignments (id, roleid, contextid, userid, timemodified, modifierid, component, itemid, sortorder) FROM stdin; +\. + + +-- +-- TOC entry 11721 (class 0 OID 0) +-- Dependencies: 302 +-- Name: mdl_role_assignments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_role_assignments_id_seq', 1, false); + + +-- +-- TOC entry 9790 (class 0 OID 17446) +-- Dependencies: 305 +-- Data for Name: mdl_role_capabilities; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_role_capabilities (id, contextid, roleid, capability, permission, timemodified, modifierid) FROM stdin; +1 1 1 moodle/site:configview 1 1609808466 0 +2 1 2 moodle/site:configview 1 1609808466 0 +3 1 1 moodle/site:readallmessages 1 1609808466 0 +4 1 3 moodle/site:readallmessages 1 1609808466 0 +5 1 1 moodle/site:manageallmessaging 1 1609808466 0 +6 1 1 moodle/site:deleteanymessage 1 1609808466 0 +7 1 1 moodle/site:sendmessage 1 1609808466 0 +8 1 7 moodle/site:sendmessage 1 1609808466 0 +9 1 7 moodle/site:deleteownmessage 1 1609808466 0 +10 1 1 moodle/site:approvecourse 1 1609808466 0 +11 1 3 moodle/backup:backupcourse 1 1609808466 0 +12 1 1 moodle/backup:backupcourse 1 1609808466 0 +13 1 3 moodle/backup:backupsection 1 1609808466 0 +14 1 1 moodle/backup:backupsection 1 1609808466 0 +15 1 3 moodle/backup:backupactivity 1 1609808466 0 +16 1 1 moodle/backup:backupactivity 1 1609808466 0 +17 1 3 moodle/backup:backuptargetimport 1 1609808466 0 +18 1 1 moodle/backup:backuptargetimport 1 1609808466 0 +19 1 3 moodle/backup:downloadfile 1 1609808466 0 +20 1 1 moodle/backup:downloadfile 1 1609808466 0 +21 1 3 moodle/backup:configure 1 1609808466 0 +22 1 1 moodle/backup:configure 1 1609808466 0 +23 1 1 moodle/backup:userinfo 1 1609808466 0 +24 1 1 moodle/backup:anonymise 1 1609808466 0 +25 1 3 moodle/restore:restorecourse 1 1609808466 0 +26 1 1 moodle/restore:restorecourse 1 1609808466 0 +27 1 3 moodle/restore:restoresection 1 1609808466 0 +28 1 1 moodle/restore:restoresection 1 1609808466 0 +29 1 3 moodle/restore:restoreactivity 1 1609808466 0 +30 1 1 moodle/restore:restoreactivity 1 1609808466 0 +31 1 3 moodle/restore:viewautomatedfilearea 1 1609808466 0 +32 1 1 moodle/restore:viewautomatedfilearea 1 1609808466 0 +33 1 3 moodle/restore:restoretargetimport 1 1609808466 0 +34 1 1 moodle/restore:restoretargetimport 1 1609808466 0 +35 1 3 moodle/restore:uploadfile 1 1609808466 0 +36 1 1 moodle/restore:uploadfile 1 1609808466 0 +37 1 3 moodle/restore:configure 1 1609808466 0 +38 1 1 moodle/restore:configure 1 1609808466 0 +39 1 2 moodle/restore:rolldates 1 1609808466 0 +40 1 1 moodle/restore:rolldates 1 1609808466 0 +41 1 1 moodle/restore:userinfo 1 1609808466 0 +42 1 1 moodle/restore:createuser 1 1609808466 0 +43 1 3 moodle/site:manageblocks 1 1609808466 0 +44 1 1 moodle/site:manageblocks 1 1609808466 0 +45 1 3 moodle/site:accessallgroups 1 1609808466 0 +46 1 1 moodle/site:accessallgroups 1 1609808466 0 +47 1 1 moodle/site:viewanonymousevents 1 1609808466 0 +48 1 4 moodle/site:viewfullnames 1 1609808466 0 +49 1 3 moodle/site:viewfullnames 1 1609808466 0 +50 1 1 moodle/site:viewfullnames 1 1609808466 0 +51 1 4 moodle/site:viewuseridentity 1 1609808466 0 +52 1 3 moodle/site:viewuseridentity 1 1609808466 0 +53 1 1 moodle/site:viewuseridentity 1 1609808466 0 +54 1 4 moodle/site:viewreports 1 1609808466 0 +55 1 3 moodle/site:viewreports 1 1609808466 0 +56 1 1 moodle/site:viewreports 1 1609808466 0 +57 1 3 moodle/site:trustcontent 1 1609808466 0 +58 1 1 moodle/site:trustcontent 1 1609808466 0 +59 1 1 moodle/site:uploadusers 1 1609808466 0 +60 1 3 moodle/filter:manage 1 1609808466 0 +61 1 1 moodle/filter:manage 1 1609808466 0 +62 1 1 moodle/user:create 1 1609808466 0 +63 1 1 moodle/user:delete 1 1609808466 0 +64 1 1 moodle/user:update 1 1609808466 0 +65 1 6 moodle/user:viewdetails 1 1609808466 0 +66 1 5 moodle/user:viewdetails 1 1609808466 0 +67 1 4 moodle/user:viewdetails 1 1609808466 0 +68 1 3 moodle/user:viewdetails 1 1609808466 0 +69 1 1 moodle/user:viewdetails 1 1609808467 0 +70 1 1 moodle/user:viewalldetails 1 1609808467 0 +71 1 1 moodle/user:viewlastip 1 1609808467 0 +72 1 4 moodle/user:viewhiddendetails 1 1609808467 0 +73 1 3 moodle/user:viewhiddendetails 1 1609808467 0 +74 1 1 moodle/user:viewhiddendetails 1 1609808467 0 +75 1 1 moodle/user:loginas 1 1609808467 0 +76 1 1 moodle/user:managesyspages 1 1609808467 0 +77 1 7 moodle/user:manageownblocks 1 1609808467 0 +78 1 7 moodle/user:manageownfiles 1 1609808467 0 +79 1 1 moodle/my:configsyspages 1 1609808467 0 +80 1 3 moodle/role:assign 1 1609808467 0 +81 1 1 moodle/role:assign 1 1609808467 0 +82 1 4 moodle/role:review 1 1609808467 0 +83 1 3 moodle/role:review 1 1609808467 0 +84 1 1 moodle/role:review 1 1609808467 0 +85 1 1 moodle/role:override 1 1609808467 0 +86 1 3 moodle/role:safeoverride 1 1609808467 0 +87 1 1 moodle/role:manage 1 1609808467 0 +88 1 3 moodle/role:switchroles 1 1609808467 0 +89 1 1 moodle/role:switchroles 1 1609808467 0 +90 1 1 moodle/category:manage 1 1609808467 0 +91 1 6 moodle/category:viewcourselist 1 1609808467 0 +92 1 7 moodle/category:viewcourselist 1 1609808467 0 +93 1 2 moodle/category:viewhiddencategories 1 1609808467 0 +94 1 1 moodle/category:viewhiddencategories 1 1609808467 0 +95 1 1 moodle/cohort:manage 1 1609808467 0 +96 1 1 moodle/cohort:assign 1 1609808467 0 +97 1 3 moodle/cohort:view 1 1609808467 0 +98 1 1 moodle/cohort:view 1 1609808467 0 +99 1 2 moodle/course:create 1 1609808467 0 +100 1 1 moodle/course:create 1 1609808467 0 +101 1 3 moodle/course:creategroupconversations 1 1609808467 0 +102 1 1 moodle/course:creategroupconversations 1 1609808467 0 +103 1 1 moodle/course:delete 1 1609808467 0 +104 1 3 moodle/course:update 1 1609808467 0 +105 1 1 moodle/course:update 1 1609808467 0 +106 1 1 moodle/course:view 1 1609808467 0 +107 1 3 moodle/course:enrolreview 1 1609808467 0 +108 1 1 moodle/course:enrolreview 1 1609808467 0 +109 1 3 moodle/course:enrolconfig 1 1609808467 0 +110 1 1 moodle/course:enrolconfig 1 1609808467 0 +111 1 3 moodle/course:reviewotherusers 1 1609808467 0 +112 1 1 moodle/course:reviewotherusers 1 1609808467 0 +113 1 4 moodle/course:bulkmessaging 1 1609808467 0 +114 1 3 moodle/course:bulkmessaging 1 1609808467 0 +115 1 1 moodle/course:bulkmessaging 1 1609808467 0 +116 1 4 moodle/course:viewhiddenuserfields 1 1609808467 0 +117 1 3 moodle/course:viewhiddenuserfields 1 1609808467 0 +118 1 1 moodle/course:viewhiddenuserfields 1 1609808467 0 +119 1 2 moodle/course:viewhiddencourses 1 1609808467 0 +120 1 4 moodle/course:viewhiddencourses 1 1609808467 0 +121 1 3 moodle/course:viewhiddencourses 1 1609808467 0 +122 1 1 moodle/course:viewhiddencourses 1 1609808467 0 +123 1 3 moodle/course:visibility 1 1609808467 0 +124 1 1 moodle/course:visibility 1 1609808467 0 +125 1 3 moodle/course:managefiles 1 1609808467 0 +126 1 1 moodle/course:managefiles 1 1609808467 0 +127 1 1 moodle/course:ignoreavailabilityrestrictions 1 1609808467 0 +128 1 2 moodle/course:ignoreavailabilityrestrictions 1 1609808467 0 +129 1 3 moodle/course:ignoreavailabilityrestrictions 1 1609808467 0 +130 1 4 moodle/course:ignoreavailabilityrestrictions 1 1609808467 0 +131 1 3 moodle/course:manageactivities 1 1609808467 0 +132 1 1 moodle/course:manageactivities 1 1609808467 0 +133 1 3 moodle/course:activityvisibility 1 1609808467 0 +134 1 1 moodle/course:activityvisibility 1 1609808467 0 +135 1 4 moodle/course:viewhiddenactivities 1 1609808467 0 +136 1 3 moodle/course:viewhiddenactivities 1 1609808467 0 +137 1 1 moodle/course:viewhiddenactivities 1 1609808467 0 +138 1 5 moodle/course:viewparticipants 1 1609808467 0 +139 1 4 moodle/course:viewparticipants 1 1609808467 0 +140 1 3 moodle/course:viewparticipants 1 1609808467 0 +141 1 1 moodle/course:viewparticipants 1 1609808467 0 +142 1 3 moodle/course:changefullname 1 1609808467 0 +143 1 1 moodle/course:changefullname 1 1609808467 0 +144 1 3 moodle/course:changeshortname 1 1609808467 0 +145 1 1 moodle/course:changeshortname 1 1609808467 0 +146 1 1 moodle/course:changelockedcustomfields 1 1609808467 0 +147 1 3 moodle/course:renameroles 1 1609808467 0 +148 1 1 moodle/course:renameroles 1 1609808467 0 +149 1 3 moodle/course:changeidnumber 1 1609808467 0 +150 1 1 moodle/course:changeidnumber 1 1609808467 0 +151 1 3 moodle/course:changecategory 1 1609808467 0 +152 1 1 moodle/course:changecategory 1 1609808467 0 +153 1 3 moodle/course:changesummary 1 1609808467 0 +154 1 1 moodle/course:changesummary 1 1609808467 0 +155 1 3 moodle/course:setforcedlanguage 1 1609808467 0 +156 1 1 moodle/course:setforcedlanguage 1 1609808467 0 +157 1 1 moodle/site:viewparticipants 1 1609808467 0 +158 1 5 moodle/course:isincompletionreports 1 1609808467 0 +159 1 5 moodle/course:viewscales 1 1609808467 0 +160 1 4 moodle/course:viewscales 1 1609808467 0 +161 1 3 moodle/course:viewscales 1 1609808467 0 +162 1 1 moodle/course:viewscales 1 1609808467 0 +163 1 3 moodle/course:managescales 1 1609808467 0 +164 1 1 moodle/course:managescales 1 1609808467 0 +165 1 3 moodle/course:managegroups 1 1609808467 0 +166 1 1 moodle/course:managegroups 1 1609808467 0 +167 1 3 moodle/course:reset 1 1609808467 0 +168 1 1 moodle/course:reset 1 1609808467 0 +169 1 3 moodle/course:viewsuspendedusers 1 1609808467 0 +170 1 1 moodle/course:viewsuspendedusers 1 1609808467 0 +171 1 1 moodle/course:tag 1 1609808467 0 +172 1 3 moodle/course:tag 1 1609808467 0 +173 1 6 moodle/blog:view 1 1609808467 0 +174 1 7 moodle/blog:view 1 1609808467 0 +175 1 5 moodle/blog:view 1 1609808467 0 +176 1 4 moodle/blog:view 1 1609808467 0 +177 1 3 moodle/blog:view 1 1609808467 0 +178 1 1 moodle/blog:view 1 1609808468 0 +179 1 6 moodle/blog:search 1 1609808468 0 +180 1 7 moodle/blog:search 1 1609808468 0 +181 1 5 moodle/blog:search 1 1609808468 0 +182 1 4 moodle/blog:search 1 1609808468 0 +183 1 3 moodle/blog:search 1 1609808468 0 +184 1 1 moodle/blog:search 1 1609808468 0 +185 1 1 moodle/blog:viewdrafts 1 1609808468 0 +186 1 7 moodle/blog:create 1 1609808468 0 +187 1 1 moodle/blog:create 1 1609808468 0 +188 1 4 moodle/blog:manageentries 1 1609808468 0 +189 1 3 moodle/blog:manageentries 1 1609808468 0 +190 1 1 moodle/blog:manageentries 1 1609808468 0 +191 1 5 moodle/blog:manageexternal 1 1609808468 0 +192 1 7 moodle/blog:manageexternal 1 1609808468 0 +193 1 4 moodle/blog:manageexternal 1 1609808468 0 +194 1 3 moodle/blog:manageexternal 1 1609808468 0 +195 1 1 moodle/blog:manageexternal 1 1609808468 0 +196 1 7 moodle/calendar:manageownentries 1 1609808468 0 +197 1 1 moodle/calendar:manageownentries 1 1609808468 0 +198 1 4 moodle/calendar:managegroupentries 1 1609808468 0 +199 1 3 moodle/calendar:managegroupentries 1 1609808468 0 +200 1 1 moodle/calendar:managegroupentries 1 1609808468 0 +201 1 4 moodle/calendar:manageentries 1 1609808468 0 +202 1 3 moodle/calendar:manageentries 1 1609808468 0 +203 1 1 moodle/calendar:manageentries 1 1609808468 0 +204 1 1 moodle/user:editprofile 1 1609808468 0 +205 1 6 moodle/user:editownprofile -1000 1609808468 0 +206 1 7 moodle/user:editownprofile 1 1609808468 0 +207 1 1 moodle/user:editownprofile 1 1609808468 0 +208 1 6 moodle/user:changeownpassword -1000 1609808468 0 +209 1 7 moodle/user:changeownpassword 1 1609808468 0 +210 1 1 moodle/user:changeownpassword 1 1609808468 0 +211 1 5 moodle/user:readuserposts 1 1609808468 0 +212 1 4 moodle/user:readuserposts 1 1609808468 0 +213 1 3 moodle/user:readuserposts 1 1609808468 0 +214 1 1 moodle/user:readuserposts 1 1609808468 0 +215 1 5 moodle/user:readuserblogs 1 1609808468 0 +216 1 4 moodle/user:readuserblogs 1 1609808468 0 +217 1 3 moodle/user:readuserblogs 1 1609808468 0 +218 1 1 moodle/user:readuserblogs 1 1609808468 0 +219 1 1 moodle/user:editmessageprofile 1 1609808468 0 +220 1 6 moodle/user:editownmessageprofile -1000 1609808468 0 +221 1 7 moodle/user:editownmessageprofile 1 1609808468 0 +222 1 1 moodle/user:editownmessageprofile 1 1609808468 0 +223 1 3 moodle/question:managecategory 1 1609808468 0 +224 1 1 moodle/question:managecategory 1 1609808468 0 +225 1 3 moodle/question:add 1 1609808468 0 +226 1 1 moodle/question:add 1 1609808468 0 +227 1 3 moodle/question:editmine 1 1609808468 0 +228 1 1 moodle/question:editmine 1 1609808468 0 +229 1 3 moodle/question:editall 1 1609808468 0 +230 1 1 moodle/question:editall 1 1609808468 0 +231 1 3 moodle/question:viewmine 1 1609808468 0 +232 1 1 moodle/question:viewmine 1 1609808468 0 +233 1 3 moodle/question:viewall 1 1609808468 0 +234 1 1 moodle/question:viewall 1 1609808468 0 +235 1 3 moodle/question:usemine 1 1609808468 0 +236 1 1 moodle/question:usemine 1 1609808468 0 +237 1 3 moodle/question:useall 1 1609808468 0 +238 1 1 moodle/question:useall 1 1609808468 0 +239 1 3 moodle/question:movemine 1 1609808468 0 +240 1 1 moodle/question:movemine 1 1609808468 0 +241 1 3 moodle/question:moveall 1 1609808468 0 +242 1 1 moodle/question:moveall 1 1609808468 0 +243 1 1 moodle/question:config 1 1609808468 0 +244 1 5 moodle/question:flag 1 1609808468 0 +245 1 4 moodle/question:flag 1 1609808468 0 +246 1 3 moodle/question:flag 1 1609808468 0 +247 1 1 moodle/question:flag 1 1609808468 0 +248 1 3 moodle/question:tagmine 1 1609808468 0 +249 1 1 moodle/question:tagmine 1 1609808468 0 +250 1 3 moodle/question:tagall 1 1609808468 0 +251 1 1 moodle/question:tagall 1 1609808468 0 +252 1 4 moodle/site:doclinks 1 1609808468 0 +253 1 3 moodle/site:doclinks 1 1609808468 0 +254 1 1 moodle/site:doclinks 1 1609808468 0 +255 1 3 moodle/course:sectionvisibility 1 1609808468 0 +256 1 1 moodle/course:sectionvisibility 1 1609808468 0 +257 1 3 moodle/course:useremail 1 1609808468 0 +258 1 1 moodle/course:useremail 1 1609808468 0 +259 1 3 moodle/course:viewhiddensections 1 1609808468 0 +260 1 1 moodle/course:viewhiddensections 1 1609808468 0 +261 1 3 moodle/course:setcurrentsection 1 1609808468 0 +262 1 1 moodle/course:setcurrentsection 1 1609808468 0 +263 1 3 moodle/course:movesections 1 1609808468 0 +264 1 1 moodle/course:movesections 1 1609808468 0 +265 1 4 moodle/grade:viewall 1 1609808468 0 +266 1 3 moodle/grade:viewall 1 1609808468 0 +267 1 1 moodle/grade:viewall 1 1609808468 0 +268 1 5 moodle/grade:view 1 1609808468 0 +269 1 4 moodle/grade:viewhidden 1 1609808468 0 +270 1 3 moodle/grade:viewhidden 1 1609808468 0 +271 1 1 moodle/grade:viewhidden 1 1609808468 0 +272 1 3 moodle/grade:import 1 1609808468 0 +273 1 1 moodle/grade:import 1 1609808468 0 +274 1 4 moodle/grade:export 1 1609808468 0 +275 1 3 moodle/grade:export 1 1609808468 0 +276 1 1 moodle/grade:export 1 1609808468 0 +277 1 3 moodle/grade:manage 1 1609808468 0 +278 1 1 moodle/grade:manage 1 1609808468 0 +279 1 3 moodle/grade:edit 1 1609808468 0 +280 1 1 moodle/grade:edit 1 1609808468 0 +281 1 3 moodle/grade:managegradingforms 1 1609808468 0 +282 1 1 moodle/grade:managegradingforms 1 1609808468 0 +283 1 1 moodle/grade:sharegradingforms 1 1609808468 0 +284 1 1 moodle/grade:managesharedforms 1 1609808468 0 +285 1 3 moodle/grade:manageoutcomes 1 1609808468 0 +286 1 1 moodle/grade:manageoutcomes 1 1609808469 0 +287 1 3 moodle/grade:manageletters 1 1609808469 0 +288 1 1 moodle/grade:manageletters 1 1609808469 0 +289 1 3 moodle/grade:hide 1 1609808469 0 +290 1 1 moodle/grade:hide 1 1609808469 0 +291 1 3 moodle/grade:lock 1 1609808469 0 +292 1 1 moodle/grade:lock 1 1609808469 0 +293 1 3 moodle/grade:unlock 1 1609808469 0 +294 1 1 moodle/grade:unlock 1 1609808469 0 +295 1 7 moodle/my:manageblocks 1 1609808469 0 +296 1 4 moodle/notes:view 1 1609808469 0 +297 1 3 moodle/notes:view 1 1609808469 0 +298 1 1 moodle/notes:view 1 1609808469 0 +299 1 4 moodle/notes:manage 1 1609808469 0 +300 1 3 moodle/notes:manage 1 1609808469 0 +301 1 1 moodle/notes:manage 1 1609808469 0 +302 1 1 moodle/tag:manage 1 1609808469 0 +303 1 1 moodle/tag:edit 1 1609808469 0 +304 1 7 moodle/tag:flag 1 1609808469 0 +305 1 4 moodle/tag:editblocks 1 1609808469 0 +306 1 3 moodle/tag:editblocks 1 1609808469 0 +307 1 1 moodle/tag:editblocks 1 1609808469 0 +308 1 6 moodle/block:view 1 1609808469 0 +309 1 7 moodle/block:view 1 1609808469 0 +310 1 5 moodle/block:view 1 1609808469 0 +311 1 4 moodle/block:view 1 1609808469 0 +312 1 3 moodle/block:view 1 1609808469 0 +313 1 3 moodle/block:edit 1 1609808469 0 +314 1 1 moodle/block:edit 1 1609808469 0 +315 1 7 moodle/portfolio:export 1 1609808469 0 +316 1 5 moodle/portfolio:export 1 1609808469 0 +317 1 4 moodle/portfolio:export 1 1609808469 0 +318 1 3 moodle/portfolio:export 1 1609808469 0 +319 1 8 moodle/comment:view 1 1609808469 0 +320 1 6 moodle/comment:view 1 1609808469 0 +321 1 7 moodle/comment:view 1 1609808469 0 +322 1 5 moodle/comment:view 1 1609808469 0 +323 1 4 moodle/comment:view 1 1609808469 0 +324 1 3 moodle/comment:view 1 1609808469 0 +325 1 1 moodle/comment:view 1 1609808469 0 +326 1 7 moodle/comment:post 1 1609808469 0 +327 1 5 moodle/comment:post 1 1609808469 0 +328 1 4 moodle/comment:post 1 1609808469 0 +329 1 3 moodle/comment:post 1 1609808469 0 +330 1 1 moodle/comment:post 1 1609808469 0 +331 1 3 moodle/comment:delete 1 1609808469 0 +332 1 1 moodle/comment:delete 1 1609808469 0 +333 1 1 moodle/webservice:createtoken 1 1609808469 0 +334 1 7 moodle/webservice:createmobiletoken 1 1609808469 0 +335 1 7 moodle/rating:view 1 1609808469 0 +336 1 5 moodle/rating:view 1 1609808469 0 +337 1 4 moodle/rating:view 1 1609808469 0 +338 1 3 moodle/rating:view 1 1609808469 0 +339 1 1 moodle/rating:view 1 1609808469 0 +340 1 7 moodle/rating:viewany 1 1609808469 0 +341 1 5 moodle/rating:viewany 1 1609808469 0 +342 1 4 moodle/rating:viewany 1 1609808469 0 +343 1 3 moodle/rating:viewany 1 1609808469 0 +344 1 1 moodle/rating:viewany 1 1609808469 0 +345 1 7 moodle/rating:viewall 1 1609808469 0 +346 1 5 moodle/rating:viewall 1 1609808469 0 +347 1 4 moodle/rating:viewall 1 1609808469 0 +348 1 3 moodle/rating:viewall 1 1609808469 0 +349 1 1 moodle/rating:viewall 1 1609808469 0 +350 1 7 moodle/rating:rate 1 1609808469 0 +351 1 5 moodle/rating:rate 1 1609808469 0 +352 1 4 moodle/rating:rate 1 1609808469 0 +353 1 3 moodle/rating:rate 1 1609808469 0 +354 1 1 moodle/rating:rate 1 1609808469 0 +355 1 4 moodle/course:markcomplete 1 1609808469 0 +356 1 3 moodle/course:markcomplete 1 1609808469 0 +357 1 1 moodle/course:markcomplete 1 1609808469 0 +358 1 4 moodle/course:overridecompletion 1 1609808469 0 +359 1 3 moodle/course:overridecompletion 1 1609808469 0 +360 1 1 moodle/course:overridecompletion 1 1609808469 0 +361 1 1 moodle/badges:manageglobalsettings 1 1609808469 0 +362 1 7 moodle/badges:viewbadges 1 1609808469 0 +363 1 7 moodle/badges:manageownbadges 1 1609808469 0 +364 1 7 moodle/badges:viewotherbadges 1 1609808469 0 +365 1 7 moodle/badges:earnbadge 1 1609808469 0 +366 1 1 moodle/badges:createbadge 1 1609808469 0 +367 1 3 moodle/badges:createbadge 1 1609808469 0 +368 1 1 moodle/badges:deletebadge 1 1609808469 0 +369 1 3 moodle/badges:deletebadge 1 1609808469 0 +370 1 1 moodle/badges:configuredetails 1 1609808469 0 +371 1 3 moodle/badges:configuredetails 1 1609808469 0 +372 1 1 moodle/badges:configurecriteria 1 1609808469 0 +373 1 3 moodle/badges:configurecriteria 1 1609808469 0 +374 1 1 moodle/badges:configuremessages 1 1609808469 0 +375 1 3 moodle/badges:configuremessages 1 1609808469 0 +376 1 1 moodle/badges:awardbadge 1 1609808469 0 +377 1 4 moodle/badges:awardbadge 1 1609808469 0 +378 1 3 moodle/badges:awardbadge 1 1609808469 0 +379 1 1 moodle/badges:revokebadge 1 1609808469 0 +380 1 4 moodle/badges:revokebadge 1 1609808469 0 +381 1 3 moodle/badges:revokebadge 1 1609808469 0 +382 1 1 moodle/badges:viewawarded 1 1609808469 0 +383 1 4 moodle/badges:viewawarded 1 1609808469 0 +384 1 3 moodle/badges:viewawarded 1 1609808469 0 +385 1 6 moodle/search:query 1 1609808469 0 +386 1 7 moodle/search:query 1 1609808469 0 +387 1 5 moodle/search:query 1 1609808469 0 +388 1 4 moodle/search:query 1 1609808469 0 +389 1 3 moodle/search:query 1 1609808469 0 +390 1 1 moodle/search:query 1 1609808469 0 +391 1 1 moodle/competency:competencymanage 1 1609808469 0 +392 1 7 moodle/competency:competencyview 1 1609808469 0 +393 1 3 moodle/competency:competencygrade 1 1609808469 0 +394 1 4 moodle/competency:competencygrade 1 1609808470 0 +395 1 1 moodle/competency:competencygrade 1 1609808470 0 +396 1 3 moodle/competency:coursecompetencymanage 1 1609808470 0 +397 1 1 moodle/competency:coursecompetencymanage 1 1609808470 0 +398 1 1 moodle/competency:coursecompetencyconfigure 1 1609808470 0 +399 1 5 moodle/competency:coursecompetencygradable 1 1609808470 0 +400 1 7 moodle/competency:coursecompetencyview 1 1609808470 0 +401 1 1 moodle/competency:planmanage 1 1609808470 0 +402 1 1 moodle/competency:planmanagedraft 1 1609808470 0 +403 1 1 moodle/competency:planview 1 1609808470 0 +404 1 1 moodle/competency:planviewdraft 1 1609808470 0 +405 1 7 moodle/competency:planviewown 1 1609808470 0 +406 1 1 moodle/competency:planrequestreview 1 1609808470 0 +407 1 7 moodle/competency:planrequestreviewown 1 1609808470 0 +408 1 1 moodle/competency:planreview 1 1609808470 0 +409 1 1 moodle/competency:plancomment 1 1609808470 0 +410 1 7 moodle/competency:plancommentown 1 1609808470 0 +411 1 1 moodle/competency:usercompetencyview 1 1609808470 0 +412 1 3 moodle/competency:usercompetencyview 1 1609808470 0 +413 1 4 moodle/competency:usercompetencyview 1 1609808470 0 +414 1 1 moodle/competency:usercompetencyrequestreview 1 1609808470 0 +415 1 7 moodle/competency:usercompetencyrequestreviewown 1 1609808470 0 +416 1 1 moodle/competency:usercompetencyreview 1 1609808470 0 +417 1 1 moodle/competency:usercompetencycomment 1 1609808470 0 +418 1 7 moodle/competency:usercompetencycommentown 1 1609808470 0 +419 1 1 moodle/competency:templatemanage 1 1609808470 0 +420 1 4 moodle/analytics:listinsights 1 1609808470 0 +421 1 3 moodle/analytics:listinsights 1 1609808470 0 +422 1 1 moodle/analytics:listinsights 1 1609808470 0 +423 1 1 moodle/analytics:managemodels 1 1609808470 0 +424 1 1 moodle/competency:templateview 1 1609808470 0 +425 1 1 moodle/competency:userevidencemanage 1 1609808470 0 +426 1 7 moodle/competency:userevidencemanageown 1 1609808470 0 +427 1 1 moodle/competency:userevidenceview 1 1609808470 0 +428 1 4 moodle/site:messageanyuser 1 1609808470 0 +429 1 3 moodle/site:messageanyuser 1 1609808470 0 +430 1 1 moodle/site:messageanyuser 1 1609808470 0 +431 1 7 moodle/course:togglecompletion 1 1609808470 0 +432 1 7 moodle/analytics:listowninsights 1 1609808470 0 +433 1 3 moodle/h5p:setdisplayoptions 1 1609808470 0 +434 1 1 moodle/h5p:deploy 1 1609808470 0 +435 1 3 moodle/h5p:deploy 1 1609808470 0 +436 1 1 moodle/h5p:updatelibraries 1 1609808470 0 +437 1 1 moodle/course:recommendactivity 1 1609808470 0 +438 1 1 moodle/contentbank:access 1 1609808470 0 +439 1 2 moodle/contentbank:access 1 1609808470 0 +440 1 3 moodle/contentbank:access 1 1609808470 0 +441 1 1 moodle/contentbank:upload 1 1609808470 0 +442 1 2 moodle/contentbank:upload 1 1609808470 0 +443 1 3 moodle/contentbank:upload 1 1609808470 0 +444 1 1 moodle/contentbank:deleteanycontent 1 1609808470 0 +445 1 2 moodle/contentbank:deleteanycontent 1 1609808470 0 +446 1 7 moodle/contentbank:deleteowncontent 1 1609808470 0 +447 1 1 moodle/contentbank:manageanycontent 1 1609808470 0 +448 1 2 moodle/contentbank:manageanycontent 1 1609808470 0 +449 1 1 moodle/contentbank:manageowncontent 1 1609808470 0 +450 1 2 moodle/contentbank:manageowncontent 1 1609808470 0 +451 1 3 moodle/contentbank:manageowncontent 1 1609808470 0 +452 1 1 moodle/contentbank:useeditor 1 1609808470 0 +453 1 2 moodle/contentbank:useeditor 1 1609808470 0 +454 1 3 moodle/contentbank:useeditor 1 1609808470 0 +455 1 6 mod/assign:view 1 1609808480 0 +456 1 5 mod/assign:view 1 1609808480 0 +457 1 4 mod/assign:view 1 1609808480 0 +458 1 3 mod/assign:view 1 1609808480 0 +459 1 1 mod/assign:view 1 1609808480 0 +460 1 5 mod/assign:submit 1 1609808480 0 +461 1 4 mod/assign:grade 1 1609808480 0 +462 1 3 mod/assign:grade 1 1609808480 0 +463 1 1 mod/assign:grade 1 1609808480 0 +464 1 4 mod/assign:exportownsubmission 1 1609808480 0 +465 1 3 mod/assign:exportownsubmission 1 1609808480 0 +466 1 1 mod/assign:exportownsubmission 1 1609808480 0 +467 1 5 mod/assign:exportownsubmission 1 1609808480 0 +468 1 1 mod/assign:addinstance 1 1609808480 0 +469 1 3 mod/assign:addinstance 1 1609808480 0 +470 1 4 mod/assign:grantextension 1 1609808480 0 +471 1 3 mod/assign:grantextension 1 1609808480 0 +472 1 1 mod/assign:grantextension 1 1609808480 0 +473 1 3 mod/assign:revealidentities 1 1609808480 0 +474 1 1 mod/assign:revealidentities 1 1609808480 0 +475 1 1 mod/assign:reviewgrades 1 1609808480 0 +476 1 3 mod/assign:reviewgrades 1 1609808480 0 +477 1 1 mod/assign:releasegrades 1 1609808480 0 +478 1 3 mod/assign:releasegrades 1 1609808480 0 +479 1 1 mod/assign:managegrades 1 1609808480 0 +480 1 3 mod/assign:managegrades 1 1609808480 0 +481 1 1 mod/assign:manageallocations 1 1609808480 0 +482 1 3 mod/assign:manageallocations 1 1609808480 0 +483 1 3 mod/assign:viewgrades 1 1609808480 0 +484 1 1 mod/assign:viewgrades 1 1609808480 0 +485 1 4 mod/assign:viewgrades 1 1609808480 0 +486 1 1 mod/assign:viewblinddetails 1 1609808480 0 +487 1 4 mod/assign:receivegradernotifications 1 1609808480 0 +488 1 3 mod/assign:receivegradernotifications 1 1609808480 0 +489 1 1 mod/assign:receivegradernotifications 1 1609808480 0 +490 1 3 mod/assign:manageoverrides 1 1609808480 0 +491 1 1 mod/assign:manageoverrides 1 1609808480 0 +492 1 4 mod/assign:showhiddengrader 1 1609808480 0 +493 1 3 mod/assign:showhiddengrader 1 1609808480 0 +494 1 1 mod/assign:showhiddengrader 1 1609808480 0 +495 1 6 mod/assignment:view 1 1609808481 0 +496 1 5 mod/assignment:view 1 1609808481 0 +497 1 4 mod/assignment:view 1 1609808481 0 +498 1 3 mod/assignment:view 1 1609808481 0 +499 1 1 mod/assignment:view 1 1609808481 0 +500 1 1 mod/assignment:addinstance 1 1609808481 0 +501 1 3 mod/assignment:addinstance 1 1609808481 0 +502 1 5 mod/assignment:submit 1 1609808481 0 +503 1 4 mod/assignment:grade 1 1609808481 0 +504 1 3 mod/assignment:grade 1 1609808481 0 +505 1 1 mod/assignment:grade 1 1609808481 0 +506 1 4 mod/assignment:exportownsubmission 1 1609808481 0 +507 1 3 mod/assignment:exportownsubmission 1 1609808481 0 +508 1 1 mod/assignment:exportownsubmission 1 1609808481 0 +509 1 5 mod/assignment:exportownsubmission 1 1609808481 0 +510 1 1 mod/book:addinstance 1 1609808481 0 +511 1 3 mod/book:addinstance 1 1609808481 0 +512 1 6 mod/book:read 1 1609808481 0 +513 1 8 mod/book:read 1 1609808481 0 +514 1 5 mod/book:read 1 1609808481 0 +515 1 4 mod/book:read 1 1609808481 0 +516 1 3 mod/book:read 1 1609808481 0 +517 1 1 mod/book:read 1 1609808481 0 +518 1 4 mod/book:viewhiddenchapters 1 1609808481 0 +519 1 3 mod/book:viewhiddenchapters 1 1609808481 0 +520 1 1 mod/book:viewhiddenchapters 1 1609808481 0 +521 1 3 mod/book:edit 1 1609808481 0 +522 1 1 mod/book:edit 1 1609808481 0 +523 1 1 mod/chat:addinstance 1 1609808481 0 +524 1 3 mod/chat:addinstance 1 1609808481 0 +525 1 5 mod/chat:chat 1 1609808481 0 +526 1 4 mod/chat:chat 1 1609808481 0 +527 1 3 mod/chat:chat 1 1609808481 0 +528 1 1 mod/chat:chat 1 1609808481 0 +529 1 5 mod/chat:readlog 1 1609808481 0 +530 1 4 mod/chat:readlog 1 1609808481 0 +531 1 3 mod/chat:readlog 1 1609808481 0 +532 1 1 mod/chat:readlog 1 1609808481 0 +533 1 4 mod/chat:deletelog 1 1609808481 0 +534 1 3 mod/chat:deletelog 1 1609808481 0 +535 1 1 mod/chat:deletelog 1 1609808481 0 +536 1 4 mod/chat:exportparticipatedsession 1 1609808481 0 +537 1 3 mod/chat:exportparticipatedsession 1 1609808481 0 +538 1 1 mod/chat:exportparticipatedsession 1 1609808481 0 +539 1 4 mod/chat:exportsession 1 1609808481 0 +540 1 3 mod/chat:exportsession 1 1609808481 0 +541 1 1 mod/chat:exportsession 1 1609808481 0 +542 1 7 mod/chat:view 1 1609808481 0 +543 1 6 mod/chat:view 1 1609808481 0 +544 1 1 mod/choice:addinstance 1 1609808481 0 +545 1 3 mod/choice:addinstance 1 1609808481 0 +546 1 5 mod/choice:choose 1 1609808482 0 +547 1 4 mod/choice:choose 1 1609808482 0 +548 1 3 mod/choice:choose 1 1609808482 0 +549 1 4 mod/choice:readresponses 1 1609808482 0 +550 1 3 mod/choice:readresponses 1 1609808482 0 +551 1 1 mod/choice:readresponses 1 1609808482 0 +552 1 4 mod/choice:deleteresponses 1 1609808482 0 +553 1 3 mod/choice:deleteresponses 1 1609808482 0 +554 1 1 mod/choice:deleteresponses 1 1609808482 0 +555 1 4 mod/choice:downloadresponses 1 1609808482 0 +556 1 3 mod/choice:downloadresponses 1 1609808482 0 +557 1 1 mod/choice:downloadresponses 1 1609808482 0 +558 1 7 mod/choice:view 1 1609808482 0 +559 1 6 mod/choice:view 1 1609808482 0 +560 1 1 mod/data:addinstance 1 1609808482 0 +561 1 3 mod/data:addinstance 1 1609808482 0 +562 1 8 mod/data:viewentry 1 1609808482 0 +563 1 6 mod/data:viewentry 1 1609808482 0 +564 1 5 mod/data:viewentry 1 1609808482 0 +565 1 4 mod/data:viewentry 1 1609808482 0 +566 1 3 mod/data:viewentry 1 1609808482 0 +567 1 1 mod/data:viewentry 1 1609808482 0 +568 1 5 mod/data:writeentry 1 1609808482 0 +569 1 4 mod/data:writeentry 1 1609808482 0 +570 1 3 mod/data:writeentry 1 1609808482 0 +571 1 1 mod/data:writeentry 1 1609808482 0 +572 1 5 mod/data:comment 1 1609808482 0 +573 1 4 mod/data:comment 1 1609808482 0 +574 1 3 mod/data:comment 1 1609808482 0 +575 1 1 mod/data:comment 1 1609808482 0 +576 1 4 mod/data:rate 1 1609808482 0 +577 1 3 mod/data:rate 1 1609808482 0 +578 1 1 mod/data:rate 1 1609808482 0 +579 1 4 mod/data:viewrating 1 1609808482 0 +580 1 3 mod/data:viewrating 1 1609808482 0 +581 1 1 mod/data:viewrating 1 1609808482 0 +582 1 4 mod/data:viewanyrating 1 1609808482 0 +583 1 3 mod/data:viewanyrating 1 1609808482 0 +584 1 1 mod/data:viewanyrating 1 1609808482 0 +585 1 4 mod/data:viewallratings 1 1609808482 0 +586 1 3 mod/data:viewallratings 1 1609808482 0 +587 1 1 mod/data:viewallratings 1 1609808482 0 +588 1 4 mod/data:approve 1 1609808482 0 +589 1 3 mod/data:approve 1 1609808482 0 +590 1 1 mod/data:approve 1 1609808482 0 +591 1 4 mod/data:manageentries 1 1609808482 0 +592 1 3 mod/data:manageentries 1 1609808482 0 +593 1 1 mod/data:manageentries 1 1609808482 0 +594 1 4 mod/data:managecomments 1 1609808482 0 +595 1 3 mod/data:managecomments 1 1609808482 0 +596 1 1 mod/data:managecomments 1 1609808482 0 +597 1 3 mod/data:managetemplates 1 1609808482 0 +598 1 1 mod/data:managetemplates 1 1609808482 0 +599 1 4 mod/data:viewalluserpresets 1 1609808482 0 +600 1 3 mod/data:viewalluserpresets 1 1609808482 0 +601 1 1 mod/data:viewalluserpresets 1 1609808482 0 +602 1 1 mod/data:manageuserpresets 1 1609808482 0 +603 1 1 mod/data:exportentry 1 1609808482 0 +604 1 4 mod/data:exportentry 1 1609808482 0 +605 1 3 mod/data:exportentry 1 1609808482 0 +606 1 1 mod/data:exportownentry 1 1609808482 0 +607 1 4 mod/data:exportownentry 1 1609808482 0 +608 1 3 mod/data:exportownentry 1 1609808482 0 +609 1 5 mod/data:exportownentry 1 1609808482 0 +610 1 1 mod/data:exportallentries 1 1609808482 0 +611 1 4 mod/data:exportallentries 1 1609808482 0 +612 1 3 mod/data:exportallentries 1 1609808482 0 +613 1 1 mod/data:exportuserinfo 1 1609808482 0 +614 1 4 mod/data:exportuserinfo 1 1609808482 0 +615 1 3 mod/data:exportuserinfo 1 1609808482 0 +616 1 6 mod/data:view 1 1609808482 0 +617 1 5 mod/data:view 1 1609808482 0 +618 1 4 mod/data:view 1 1609808482 0 +619 1 3 mod/data:view 1 1609808482 0 +620 1 1 mod/data:view 1 1609808482 0 +621 1 1 mod/feedback:addinstance 1 1609808483 0 +622 1 3 mod/feedback:addinstance 1 1609808483 0 +623 1 6 mod/feedback:view 1 1609808483 0 +624 1 8 mod/feedback:view 1 1609808483 0 +625 1 5 mod/feedback:view 1 1609808483 0 +626 1 4 mod/feedback:view 1 1609808483 0 +627 1 3 mod/feedback:view 1 1609808483 0 +628 1 1 mod/feedback:view 1 1609808483 0 +629 1 8 mod/feedback:complete 1 1609808483 0 +630 1 5 mod/feedback:complete 1 1609808483 0 +631 1 5 mod/feedback:viewanalysepage 1 1609808483 0 +632 1 3 mod/feedback:viewanalysepage 1 1609808483 0 +633 1 1 mod/feedback:viewanalysepage 1 1609808483 0 +634 1 3 mod/feedback:deletesubmissions 1 1609808483 0 +635 1 1 mod/feedback:deletesubmissions 1 1609808483 0 +636 1 1 mod/feedback:mapcourse 1 1609808483 0 +637 1 3 mod/feedback:edititems 1 1609808483 0 +638 1 1 mod/feedback:edititems 1 1609808483 0 +639 1 3 mod/feedback:createprivatetemplate 1 1609808483 0 +640 1 1 mod/feedback:createprivatetemplate 1 1609808483 0 +641 1 3 mod/feedback:createpublictemplate 1 1609808483 0 +642 1 1 mod/feedback:createpublictemplate 1 1609808483 0 +643 1 3 mod/feedback:deletetemplate 1 1609808483 0 +644 1 1 mod/feedback:deletetemplate 1 1609808483 0 +645 1 4 mod/feedback:viewreports 1 1609808483 0 +646 1 3 mod/feedback:viewreports 1 1609808483 0 +647 1 1 mod/feedback:viewreports 1 1609808483 0 +648 1 4 mod/feedback:receivemail 1 1609808483 0 +649 1 3 mod/feedback:receivemail 1 1609808483 0 +650 1 1 mod/folder:addinstance 1 1609808483 0 +651 1 3 mod/folder:addinstance 1 1609808483 0 +652 1 6 mod/folder:view 1 1609808483 0 +653 1 7 mod/folder:view 1 1609808483 0 +654 1 3 mod/folder:managefiles 1 1609808483 0 +655 1 1 mod/forum:addinstance 1 1609808483 0 +656 1 3 mod/forum:addinstance 1 1609808483 0 +657 1 8 mod/forum:viewdiscussion 1 1609808483 0 +658 1 6 mod/forum:viewdiscussion 1 1609808483 0 +659 1 5 mod/forum:viewdiscussion 1 1609808483 0 +660 1 4 mod/forum:viewdiscussion 1 1609808483 0 +661 1 3 mod/forum:viewdiscussion 1 1609808483 0 +662 1 1 mod/forum:viewdiscussion 1 1609808483 0 +663 1 4 mod/forum:viewhiddentimedposts 1 1609808483 0 +664 1 3 mod/forum:viewhiddentimedposts 1 1609808483 0 +665 1 1 mod/forum:viewhiddentimedposts 1 1609808483 0 +666 1 5 mod/forum:startdiscussion 1 1609808483 0 +667 1 4 mod/forum:startdiscussion 1 1609808483 0 +668 1 3 mod/forum:startdiscussion 1 1609808483 0 +669 1 1 mod/forum:startdiscussion 1 1609808483 0 +670 1 5 mod/forum:replypost 1 1609808483 0 +671 1 4 mod/forum:replypost 1 1609808483 0 +672 1 3 mod/forum:replypost 1 1609808483 0 +673 1 1 mod/forum:replypost 1 1609808483 0 +674 1 4 mod/forum:addnews 1 1609808483 0 +675 1 3 mod/forum:addnews 1 1609808483 0 +676 1 1 mod/forum:addnews 1 1609808483 0 +677 1 4 mod/forum:replynews 1 1609808483 0 +678 1 3 mod/forum:replynews 1 1609808483 0 +679 1 1 mod/forum:replynews 1 1609808483 0 +680 1 5 mod/forum:viewrating 1 1609808483 0 +681 1 4 mod/forum:viewrating 1 1609808483 0 +682 1 3 mod/forum:viewrating 1 1609808483 0 +683 1 1 mod/forum:viewrating 1 1609808483 0 +684 1 4 mod/forum:viewanyrating 1 1609808484 0 +685 1 3 mod/forum:viewanyrating 1 1609808484 0 +686 1 1 mod/forum:viewanyrating 1 1609808484 0 +687 1 4 mod/forum:viewallratings 1 1609808484 0 +688 1 3 mod/forum:viewallratings 1 1609808484 0 +689 1 1 mod/forum:viewallratings 1 1609808484 0 +690 1 4 mod/forum:rate 1 1609808484 0 +691 1 3 mod/forum:rate 1 1609808484 0 +692 1 1 mod/forum:rate 1 1609808484 0 +693 1 4 mod/forum:postprivatereply 1 1609808484 0 +694 1 3 mod/forum:postprivatereply 1 1609808484 0 +695 1 1 mod/forum:postprivatereply 1 1609808484 0 +696 1 4 mod/forum:readprivatereplies 1 1609808484 0 +697 1 3 mod/forum:readprivatereplies 1 1609808484 0 +698 1 1 mod/forum:readprivatereplies 1 1609808484 0 +699 1 5 mod/forum:createattachment 1 1609808484 0 +700 1 4 mod/forum:createattachment 1 1609808484 0 +701 1 3 mod/forum:createattachment 1 1609808484 0 +702 1 1 mod/forum:createattachment 1 1609808484 0 +703 1 5 mod/forum:deleteownpost 1 1609808484 0 +704 1 4 mod/forum:deleteownpost 1 1609808484 0 +705 1 3 mod/forum:deleteownpost 1 1609808484 0 +706 1 1 mod/forum:deleteownpost 1 1609808484 0 +707 1 4 mod/forum:deleteanypost 1 1609808484 0 +708 1 3 mod/forum:deleteanypost 1 1609808484 0 +709 1 1 mod/forum:deleteanypost 1 1609808484 0 +710 1 4 mod/forum:splitdiscussions 1 1609808484 0 +711 1 3 mod/forum:splitdiscussions 1 1609808484 0 +712 1 1 mod/forum:splitdiscussions 1 1609808484 0 +713 1 4 mod/forum:movediscussions 1 1609808484 0 +714 1 3 mod/forum:movediscussions 1 1609808484 0 +715 1 1 mod/forum:movediscussions 1 1609808484 0 +716 1 4 mod/forum:pindiscussions 1 1609808484 0 +717 1 3 mod/forum:pindiscussions 1 1609808484 0 +718 1 1 mod/forum:pindiscussions 1 1609808484 0 +719 1 4 mod/forum:editanypost 1 1609808484 0 +720 1 3 mod/forum:editanypost 1 1609808484 0 +721 1 1 mod/forum:editanypost 1 1609808484 0 +722 1 4 mod/forum:viewqandawithoutposting 1 1609808484 0 +723 1 3 mod/forum:viewqandawithoutposting 1 1609808484 0 +724 1 1 mod/forum:viewqandawithoutposting 1 1609808484 0 +725 1 4 mod/forum:viewsubscribers 1 1609808484 0 +726 1 3 mod/forum:viewsubscribers 1 1609808484 0 +727 1 1 mod/forum:viewsubscribers 1 1609808484 0 +728 1 4 mod/forum:managesubscriptions 1 1609808484 0 +729 1 3 mod/forum:managesubscriptions 1 1609808484 0 +730 1 1 mod/forum:managesubscriptions 1 1609808484 0 +731 1 4 mod/forum:postwithoutthrottling 1 1609808484 0 +732 1 3 mod/forum:postwithoutthrottling 1 1609808484 0 +733 1 1 mod/forum:postwithoutthrottling 1 1609808484 0 +734 1 4 mod/forum:exportdiscussion 1 1609808484 0 +735 1 3 mod/forum:exportdiscussion 1 1609808484 0 +736 1 1 mod/forum:exportdiscussion 1 1609808484 0 +737 1 4 mod/forum:exportforum 1 1609808484 0 +738 1 3 mod/forum:exportforum 1 1609808484 0 +739 1 1 mod/forum:exportforum 1 1609808484 0 +740 1 4 mod/forum:exportpost 1 1609808484 0 +741 1 3 mod/forum:exportpost 1 1609808484 0 +742 1 1 mod/forum:exportpost 1 1609808484 0 +743 1 4 mod/forum:exportownpost 1 1609808484 0 +744 1 3 mod/forum:exportownpost 1 1609808484 0 +745 1 1 mod/forum:exportownpost 1 1609808484 0 +746 1 5 mod/forum:exportownpost 1 1609808484 0 +747 1 4 mod/forum:addquestion 1 1609808484 0 +748 1 3 mod/forum:addquestion 1 1609808484 0 +749 1 1 mod/forum:addquestion 1 1609808484 0 +750 1 5 mod/forum:allowforcesubscribe 1 1609808484 0 +751 1 4 mod/forum:allowforcesubscribe 1 1609808484 0 +752 1 3 mod/forum:allowforcesubscribe 1 1609808484 0 +753 1 8 mod/forum:allowforcesubscribe 1 1609808484 0 +754 1 4 mod/forum:canposttomygroups 1 1609808484 0 +755 1 3 mod/forum:canposttomygroups 1 1609808484 0 +756 1 1 mod/forum:canposttomygroups 1 1609808484 0 +757 1 4 mod/forum:canoverridediscussionlock 1 1609808484 0 +758 1 3 mod/forum:canoverridediscussionlock 1 1609808484 0 +759 1 1 mod/forum:canoverridediscussionlock 1 1609808484 0 +760 1 4 mod/forum:canoverridecutoff 1 1609808484 0 +761 1 3 mod/forum:canoverridecutoff 1 1609808484 0 +762 1 1 mod/forum:canoverridecutoff 1 1609808484 0 +763 1 7 mod/forum:cantogglefavourite 1 1609808484 0 +764 1 4 mod/forum:grade 1 1609808484 0 +765 1 3 mod/forum:grade 1 1609808484 0 +766 1 1 mod/forum:grade 1 1609808484 0 +767 1 3 mod/glossary:addinstance 1 1609808485 0 +768 1 1 mod/glossary:addinstance 1 1609808485 0 +769 1 8 mod/glossary:view 1 1609808485 0 +770 1 6 mod/glossary:view 1 1609808485 0 +771 1 5 mod/glossary:view 1 1609808485 0 +772 1 4 mod/glossary:view 1 1609808485 0 +773 1 3 mod/glossary:view 1 1609808485 0 +774 1 1 mod/glossary:view 1 1609808485 0 +775 1 5 mod/glossary:write 1 1609808485 0 +776 1 4 mod/glossary:write 1 1609808485 0 +777 1 3 mod/glossary:write 1 1609808485 0 +778 1 1 mod/glossary:write 1 1609808485 0 +779 1 4 mod/glossary:manageentries 1 1609808485 0 +780 1 3 mod/glossary:manageentries 1 1609808485 0 +781 1 1 mod/glossary:manageentries 1 1609808485 0 +782 1 4 mod/glossary:managecategories 1 1609808485 0 +783 1 3 mod/glossary:managecategories 1 1609808485 0 +784 1 1 mod/glossary:managecategories 1 1609808485 0 +785 1 5 mod/glossary:comment 1 1609808485 0 +786 1 4 mod/glossary:comment 1 1609808485 0 +787 1 3 mod/glossary:comment 1 1609808485 0 +788 1 1 mod/glossary:comment 1 1609808485 0 +789 1 4 mod/glossary:managecomments 1 1609808485 0 +790 1 3 mod/glossary:managecomments 1 1609808485 0 +791 1 1 mod/glossary:managecomments 1 1609808485 0 +792 1 4 mod/glossary:import 1 1609808485 0 +793 1 3 mod/glossary:import 1 1609808485 0 +794 1 1 mod/glossary:import 1 1609808485 0 +795 1 4 mod/glossary:export 1 1609808485 0 +796 1 3 mod/glossary:export 1 1609808485 0 +797 1 1 mod/glossary:export 1 1609808485 0 +798 1 4 mod/glossary:approve 1 1609808485 0 +799 1 3 mod/glossary:approve 1 1609808485 0 +800 1 1 mod/glossary:approve 1 1609808485 0 +801 1 4 mod/glossary:rate 1 1609808485 0 +802 1 3 mod/glossary:rate 1 1609808485 0 +803 1 1 mod/glossary:rate 1 1609808485 0 +804 1 4 mod/glossary:viewrating 1 1609808485 0 +805 1 3 mod/glossary:viewrating 1 1609808485 0 +806 1 1 mod/glossary:viewrating 1 1609808485 0 +807 1 4 mod/glossary:viewanyrating 1 1609808485 0 +808 1 3 mod/glossary:viewanyrating 1 1609808485 0 +809 1 1 mod/glossary:viewanyrating 1 1609808485 0 +810 1 4 mod/glossary:viewallratings 1 1609808485 0 +811 1 3 mod/glossary:viewallratings 1 1609808485 0 +812 1 1 mod/glossary:viewallratings 1 1609808485 0 +813 1 4 mod/glossary:exportentry 1 1609808485 0 +814 1 3 mod/glossary:exportentry 1 1609808485 0 +815 1 1 mod/glossary:exportentry 1 1609808485 0 +816 1 4 mod/glossary:exportownentry 1 1609808485 0 +817 1 3 mod/glossary:exportownentry 1 1609808485 0 +818 1 1 mod/glossary:exportownentry 1 1609808485 0 +819 1 5 mod/glossary:exportownentry 1 1609808485 0 +820 1 6 mod/h5pactivity:view 1 1609808485 0 +821 1 5 mod/h5pactivity:view 1 1609808485 0 +822 1 4 mod/h5pactivity:view 1 1609808485 0 +823 1 3 mod/h5pactivity:view 1 1609808485 0 +824 1 1 mod/h5pactivity:view 1 1609808485 0 +825 1 3 mod/h5pactivity:addinstance 1 1609808485 0 +826 1 1 mod/h5pactivity:addinstance 1 1609808485 0 +827 1 5 mod/h5pactivity:submit 1 1609808485 0 +828 1 3 mod/h5pactivity:reviewattempts 1 1609808485 0 +829 1 1 mod/h5pactivity:reviewattempts 1 1609808485 0 +830 1 6 mod/imscp:view 1 1609808485 0 +831 1 7 mod/imscp:view 1 1609808485 0 +832 1 3 mod/imscp:addinstance 1 1609808485 0 +833 1 1 mod/imscp:addinstance 1 1609808485 0 +834 1 3 mod/label:addinstance 1 1609808486 0 +835 1 1 mod/label:addinstance 1 1609808486 0 +836 1 7 mod/label:view 1 1609808486 0 +837 1 6 mod/label:view 1 1609808486 0 +838 1 3 mod/lesson:addinstance 1 1609808486 0 +839 1 1 mod/lesson:addinstance 1 1609808486 0 +840 1 3 mod/lesson:edit 1 1609808486 0 +841 1 1 mod/lesson:edit 1 1609808486 0 +842 1 4 mod/lesson:grade 1 1609808486 0 +843 1 3 mod/lesson:grade 1 1609808486 0 +844 1 1 mod/lesson:grade 1 1609808486 0 +845 1 4 mod/lesson:viewreports 1 1609808486 0 +846 1 3 mod/lesson:viewreports 1 1609808486 0 +847 1 1 mod/lesson:viewreports 1 1609808486 0 +848 1 4 mod/lesson:manage 1 1609808486 0 +849 1 3 mod/lesson:manage 1 1609808486 0 +850 1 1 mod/lesson:manage 1 1609808486 0 +851 1 3 mod/lesson:manageoverrides 1 1609808486 0 +852 1 1 mod/lesson:manageoverrides 1 1609808486 0 +853 1 7 mod/lesson:view 1 1609808486 0 +854 1 6 mod/lesson:view 1 1609808486 0 +855 1 5 mod/lti:view 1 1609808486 0 +856 1 4 mod/lti:view 1 1609808486 0 +857 1 3 mod/lti:view 1 1609808486 0 +858 1 1 mod/lti:view 1 1609808486 0 +859 1 3 mod/lti:addinstance 1 1609808486 0 +860 1 1 mod/lti:addinstance 1 1609808486 0 +861 1 4 mod/lti:manage 1 1609808486 0 +862 1 3 mod/lti:manage 1 1609808486 0 +863 1 1 mod/lti:manage 1 1609808486 0 +864 1 3 mod/lti:addcoursetool 1 1609808486 0 +865 1 1 mod/lti:addcoursetool 1 1609808486 0 +866 1 3 mod/lti:addpreconfiguredinstance 1 1609808486 0 +867 1 1 mod/lti:addpreconfiguredinstance 1 1609808486 0 +868 1 3 mod/lti:addmanualinstance 1 1609808486 0 +869 1 1 mod/lti:addmanualinstance 1 1609808486 0 +870 1 3 mod/lti:requesttooladd 1 1609808486 0 +871 1 1 mod/lti:requesttooladd 1 1609808486 0 +872 1 6 mod/page:view 1 1609808487 0 +873 1 7 mod/page:view 1 1609808487 0 +874 1 3 mod/page:addinstance 1 1609808487 0 +875 1 1 mod/page:addinstance 1 1609808487 0 +876 1 6 mod/quiz:view 1 1609808487 0 +877 1 5 mod/quiz:view 1 1609808487 0 +878 1 4 mod/quiz:view 1 1609808487 0 +879 1 3 mod/quiz:view 1 1609808487 0 +880 1 1 mod/quiz:view 1 1609808487 0 +881 1 3 mod/quiz:addinstance 1 1609808487 0 +882 1 1 mod/quiz:addinstance 1 1609808487 0 +883 1 5 mod/quiz:attempt 1 1609808487 0 +884 1 5 mod/quiz:reviewmyattempts 1 1609808487 0 +885 1 3 mod/quiz:manage 1 1609808487 0 +886 1 1 mod/quiz:manage 1 1609808487 0 +887 1 3 mod/quiz:manageoverrides 1 1609808487 0 +888 1 1 mod/quiz:manageoverrides 1 1609808487 0 +889 1 4 mod/quiz:preview 1 1609808487 0 +890 1 3 mod/quiz:preview 1 1609808487 0 +891 1 1 mod/quiz:preview 1 1609808487 0 +892 1 4 mod/quiz:grade 1 1609808487 0 +893 1 3 mod/quiz:grade 1 1609808487 0 +894 1 1 mod/quiz:grade 1 1609808487 0 +895 1 4 mod/quiz:regrade 1 1609808487 0 +896 1 3 mod/quiz:regrade 1 1609808487 0 +897 1 1 mod/quiz:regrade 1 1609808487 0 +898 1 4 mod/quiz:viewreports 1 1609808487 0 +899 1 3 mod/quiz:viewreports 1 1609808487 0 +900 1 1 mod/quiz:viewreports 1 1609808487 0 +901 1 3 mod/quiz:deleteattempts 1 1609808487 0 +902 1 1 mod/quiz:deleteattempts 1 1609808487 0 +903 1 6 mod/resource:view 1 1609808487 0 +904 1 7 mod/resource:view 1 1609808487 0 +905 1 3 mod/resource:addinstance 1 1609808487 0 +906 1 1 mod/resource:addinstance 1 1609808487 0 +907 1 3 mod/scorm:addinstance 1 1609808488 0 +908 1 1 mod/scorm:addinstance 1 1609808488 0 +909 1 4 mod/scorm:viewreport 1 1609808488 0 +910 1 3 mod/scorm:viewreport 1 1609808488 0 +911 1 1 mod/scorm:viewreport 1 1609808488 0 +912 1 5 mod/scorm:skipview 1 1609808488 0 +913 1 5 mod/scorm:savetrack 1 1609808488 0 +914 1 4 mod/scorm:savetrack 1 1609808488 0 +915 1 3 mod/scorm:savetrack 1 1609808488 0 +916 1 1 mod/scorm:savetrack 1 1609808488 0 +917 1 5 mod/scorm:viewscores 1 1609808488 0 +918 1 4 mod/scorm:viewscores 1 1609808488 0 +919 1 3 mod/scorm:viewscores 1 1609808488 0 +920 1 1 mod/scorm:viewscores 1 1609808488 0 +921 1 4 mod/scorm:deleteresponses 1 1609808488 0 +922 1 3 mod/scorm:deleteresponses 1 1609808488 0 +923 1 1 mod/scorm:deleteresponses 1 1609808488 0 +924 1 3 mod/survey:addinstance 1 1609808488 0 +925 1 1 mod/survey:addinstance 1 1609808488 0 +926 1 5 mod/survey:participate 1 1609808488 0 +927 1 4 mod/survey:participate 1 1609808488 0 +928 1 3 mod/survey:participate 1 1609808488 0 +929 1 1 mod/survey:participate 1 1609808488 0 +930 1 4 mod/survey:readresponses 1 1609808488 0 +931 1 3 mod/survey:readresponses 1 1609808488 0 +932 1 1 mod/survey:readresponses 1 1609808488 0 +933 1 4 mod/survey:download 1 1609808488 0 +934 1 3 mod/survey:download 1 1609808488 0 +935 1 1 mod/survey:download 1 1609808488 0 +936 1 6 mod/url:view 1 1609808488 0 +937 1 7 mod/url:view 1 1609808488 0 +938 1 3 mod/url:addinstance 1 1609808488 0 +939 1 1 mod/url:addinstance 1 1609808488 0 +940 1 3 mod/wiki:addinstance 1 1609808488 0 +941 1 1 mod/wiki:addinstance 1 1609808488 0 +942 1 6 mod/wiki:viewpage 1 1609808488 0 +943 1 8 mod/wiki:viewpage 1 1609808488 0 +944 1 5 mod/wiki:viewpage 1 1609808488 0 +945 1 4 mod/wiki:viewpage 1 1609808488 0 +946 1 3 mod/wiki:viewpage 1 1609808488 0 +947 1 1 mod/wiki:viewpage 1 1609808488 0 +948 1 5 mod/wiki:editpage 1 1609808488 0 +949 1 4 mod/wiki:editpage 1 1609808488 0 +950 1 3 mod/wiki:editpage 1 1609808488 0 +951 1 1 mod/wiki:editpage 1 1609808488 0 +952 1 5 mod/wiki:createpage 1 1609808488 0 +953 1 4 mod/wiki:createpage 1 1609808488 0 +954 1 3 mod/wiki:createpage 1 1609808488 0 +955 1 1 mod/wiki:createpage 1 1609808489 0 +956 1 5 mod/wiki:viewcomment 1 1609808489 0 +957 1 4 mod/wiki:viewcomment 1 1609808489 0 +958 1 3 mod/wiki:viewcomment 1 1609808489 0 +959 1 1 mod/wiki:viewcomment 1 1609808489 0 +960 1 5 mod/wiki:editcomment 1 1609808489 0 +961 1 4 mod/wiki:editcomment 1 1609808489 0 +962 1 3 mod/wiki:editcomment 1 1609808489 0 +963 1 1 mod/wiki:editcomment 1 1609808489 0 +964 1 4 mod/wiki:managecomment 1 1609808489 0 +965 1 3 mod/wiki:managecomment 1 1609808489 0 +966 1 1 mod/wiki:managecomment 1 1609808489 0 +967 1 4 mod/wiki:managefiles 1 1609808489 0 +968 1 3 mod/wiki:managefiles 1 1609808489 0 +969 1 1 mod/wiki:managefiles 1 1609808489 0 +970 1 4 mod/wiki:overridelock 1 1609808489 0 +971 1 3 mod/wiki:overridelock 1 1609808489 0 +972 1 1 mod/wiki:overridelock 1 1609808489 0 +973 1 4 mod/wiki:managewiki 1 1609808489 0 +974 1 3 mod/wiki:managewiki 1 1609808489 0 +975 1 1 mod/wiki:managewiki 1 1609808489 0 +976 1 6 mod/workshop:view 1 1609808489 0 +977 1 5 mod/workshop:view 1 1609808489 0 +978 1 4 mod/workshop:view 1 1609808489 0 +979 1 3 mod/workshop:view 1 1609808489 0 +980 1 1 mod/workshop:view 1 1609808489 0 +981 1 3 mod/workshop:addinstance 1 1609808489 0 +982 1 1 mod/workshop:addinstance 1 1609808489 0 +983 1 4 mod/workshop:switchphase 1 1609808489 0 +984 1 3 mod/workshop:switchphase 1 1609808489 0 +985 1 1 mod/workshop:switchphase 1 1609808489 0 +986 1 3 mod/workshop:editdimensions 1 1609808489 0 +987 1 1 mod/workshop:editdimensions 1 1609808489 0 +988 1 5 mod/workshop:submit 1 1609808489 0 +989 1 5 mod/workshop:peerassess 1 1609808489 0 +990 1 4 mod/workshop:manageexamples 1 1609808489 0 +991 1 3 mod/workshop:manageexamples 1 1609808489 0 +992 1 1 mod/workshop:manageexamples 1 1609808489 0 +993 1 4 mod/workshop:allocate 1 1609808489 0 +994 1 3 mod/workshop:allocate 1 1609808489 0 +995 1 1 mod/workshop:allocate 1 1609808489 0 +996 1 4 mod/workshop:publishsubmissions 1 1609808489 0 +997 1 3 mod/workshop:publishsubmissions 1 1609808489 0 +998 1 1 mod/workshop:publishsubmissions 1 1609808489 0 +999 1 5 mod/workshop:viewauthornames 1 1609808489 0 +1000 1 4 mod/workshop:viewauthornames 1 1609808489 0 +1001 1 3 mod/workshop:viewauthornames 1 1609808489 0 +1002 1 1 mod/workshop:viewauthornames 1 1609808489 0 +1003 1 4 mod/workshop:viewreviewernames 1 1609808489 0 +1004 1 3 mod/workshop:viewreviewernames 1 1609808489 0 +1005 1 1 mod/workshop:viewreviewernames 1 1609808489 0 +1006 1 4 mod/workshop:viewallsubmissions 1 1609808489 0 +1007 1 3 mod/workshop:viewallsubmissions 1 1609808489 0 +1008 1 1 mod/workshop:viewallsubmissions 1 1609808489 0 +1009 1 5 mod/workshop:viewpublishedsubmissions 1 1609808489 0 +1010 1 4 mod/workshop:viewpublishedsubmissions 1 1609808489 0 +1011 1 3 mod/workshop:viewpublishedsubmissions 1 1609808489 0 +1012 1 1 mod/workshop:viewpublishedsubmissions 1 1609808489 0 +1013 1 5 mod/workshop:viewauthorpublished 1 1609808489 0 +1014 1 4 mod/workshop:viewauthorpublished 1 1609808489 0 +1015 1 3 mod/workshop:viewauthorpublished 1 1609808489 0 +1016 1 1 mod/workshop:viewauthorpublished 1 1609808489 0 +1017 1 4 mod/workshop:viewallassessments 1 1609808489 0 +1018 1 3 mod/workshop:viewallassessments 1 1609808489 0 +1019 1 1 mod/workshop:viewallassessments 1 1609808489 0 +1020 1 4 mod/workshop:overridegrades 1 1609808489 0 +1021 1 3 mod/workshop:overridegrades 1 1609808489 0 +1022 1 1 mod/workshop:overridegrades 1 1609808489 0 +1023 1 4 mod/workshop:ignoredeadlines 1 1609808489 0 +1024 1 3 mod/workshop:ignoredeadlines 1 1609808489 0 +1025 1 1 mod/workshop:ignoredeadlines 1 1609808489 0 +1026 1 4 mod/workshop:deletesubmissions 1 1609808489 0 +1027 1 3 mod/workshop:deletesubmissions 1 1609808489 0 +1028 1 1 mod/workshop:deletesubmissions 1 1609808489 0 +1029 1 1 mod/workshop:exportsubmissions 1 1609808489 0 +1030 1 4 mod/workshop:exportsubmissions 1 1609808489 0 +1031 1 3 mod/workshop:exportsubmissions 1 1609808489 0 +1032 1 5 mod/workshop:exportsubmissions 1 1609808489 0 +1033 1 7 auth/oauth2:managelinkedlogins 1 1609808490 0 +1034 1 1 enrol/category:config 1 1609808490 0 +1035 1 3 enrol/category:config 1 1609808490 0 +1036 1 3 enrol/cohort:config 1 1609808490 0 +1037 1 1 enrol/cohort:config 1 1609808490 0 +1038 1 1 enrol/cohort:unenrol 1 1609808490 0 +1039 1 1 enrol/database:unenrol 1 1609808491 0 +1040 1 1 enrol/database:config 1 1609808491 0 +1041 1 3 enrol/database:config 1 1609808491 0 +1042 1 1 enrol/guest:config 1 1609808491 0 +1043 1 3 enrol/guest:config 1 1609808491 0 +1044 1 1 enrol/imsenterprise:config 1 1609808491 0 +1045 1 3 enrol/imsenterprise:config 1 1609808491 0 +1046 1 1 enrol/ldap:manage 1 1609808491 0 +1047 1 1 enrol/lti:config 1 1609808491 0 +1048 1 3 enrol/lti:config 1 1609808491 0 +1049 1 1 enrol/lti:unenrol 1 1609808491 0 +1050 1 3 enrol/lti:unenrol 1 1609808491 0 +1051 1 1 enrol/manual:config 1 1609808491 0 +1052 1 1 enrol/manual:enrol 1 1609808491 0 +1053 1 3 enrol/manual:enrol 1 1609808491 0 +1054 1 1 enrol/manual:manage 1 1609808491 0 +1055 1 3 enrol/manual:manage 1 1609808491 0 +1056 1 1 enrol/manual:unenrol 1 1609808491 0 +1057 1 3 enrol/manual:unenrol 1 1609808491 0 +1058 1 1 enrol/meta:config 1 1609808491 0 +1059 1 3 enrol/meta:config 1 1609808491 0 +1060 1 1 enrol/meta:selectaslinked 1 1609808491 0 +1061 1 1 enrol/meta:unenrol 1 1609808491 0 +1062 1 1 enrol/mnet:config 1 1609808491 0 +1063 1 3 enrol/mnet:config 1 1609808491 0 +1064 1 1 enrol/paypal:config 1 1609808491 0 +1065 1 1 enrol/paypal:manage 1 1609808492 0 +1066 1 3 enrol/paypal:manage 1 1609808492 0 +1067 1 1 enrol/paypal:unenrol 1 1609808492 0 +1068 1 3 enrol/self:config 1 1609808492 0 +1069 1 1 enrol/self:config 1 1609808492 0 +1070 1 3 enrol/self:manage 1 1609808492 0 +1071 1 1 enrol/self:manage 1 1609808492 0 +1072 1 5 enrol/self:unenrolself 1 1609808492 0 +1073 1 3 enrol/self:unenrol 1 1609808492 0 +1074 1 1 enrol/self:unenrol 1 1609808492 0 +1075 1 7 message/airnotifier:managedevice 1 1609808492 0 +1076 1 3 block/activity_modules:addinstance 1 1609808492 0 +1077 1 1 block/activity_modules:addinstance 1 1609808492 0 +1078 1 3 block/activity_results:addinstance 1 1609808492 0 +1079 1 1 block/activity_results:addinstance 1 1609808492 0 +1080 1 7 block/admin_bookmarks:myaddinstance 1 1609808492 0 +1081 1 3 block/admin_bookmarks:addinstance 1 1609808492 0 +1082 1 1 block/admin_bookmarks:addinstance 1 1609808492 0 +1083 1 3 block/badges:addinstance 1 1609808492 0 +1084 1 1 block/badges:addinstance 1 1609808492 0 +1085 1 7 block/badges:myaddinstance 1 1609808493 0 +1086 1 3 block/blog_menu:addinstance 1 1609808493 0 +1087 1 1 block/blog_menu:addinstance 1 1609808493 0 +1088 1 3 block/blog_recent:addinstance 1 1609808493 0 +1089 1 1 block/blog_recent:addinstance 1 1609808493 0 +1090 1 3 block/blog_tags:addinstance 1 1609808493 0 +1091 1 1 block/blog_tags:addinstance 1 1609808493 0 +1092 1 7 block/calendar_month:myaddinstance 1 1609808493 0 +1093 1 1 block/calendar_month:addinstance 1 1609808493 0 +1094 1 3 block/calendar_month:addinstance 1 1609808493 0 +1095 1 7 block/calendar_upcoming:myaddinstance 1 1609808493 0 +1096 1 1 block/calendar_upcoming:addinstance 1 1609808493 0 +1097 1 3 block/calendar_upcoming:addinstance 1 1609808493 0 +1098 1 7 block/comments:myaddinstance 1 1609808493 0 +1099 1 1 block/comments:addinstance 1 1609808493 0 +1100 1 3 block/comments:addinstance 1 1609808493 0 +1101 1 1 block/completionstatus:addinstance 1 1609808493 0 +1102 1 3 block/completionstatus:addinstance 1 1609808493 0 +1103 1 7 block/course_list:myaddinstance 1 1609808493 0 +1104 1 1 block/course_list:addinstance 1 1609808493 0 +1105 1 3 block/course_list:addinstance 1 1609808493 0 +1106 1 1 block/course_summary:addinstance 1 1609808493 0 +1107 1 3 block/course_summary:addinstance 1 1609808493 0 +1108 1 1 block/feedback:addinstance 1 1609808493 0 +1109 1 3 block/feedback:addinstance 1 1609808493 0 +1110 1 7 block/globalsearch:myaddinstance 1 1609808493 0 +1111 1 1 block/globalsearch:addinstance 1 1609808493 0 +1112 1 3 block/globalsearch:addinstance 1 1609808493 0 +1113 1 7 block/glossary_random:myaddinstance 1 1609808493 0 +1114 1 1 block/glossary_random:addinstance 1 1609808493 0 +1115 1 3 block/glossary_random:addinstance 1 1609808493 0 +1116 1 7 block/html:myaddinstance 1 1609808493 0 +1117 1 1 block/html:addinstance 1 1609808493 0 +1118 1 3 block/html:addinstance 1 1609808493 0 +1119 1 1 block/login:addinstance 1 1609808493 0 +1120 1 3 block/login:addinstance 1 1609808493 0 +1121 1 1 block/lp:addinstance 1 1609808493 0 +1122 1 3 block/lp:addinstance 1 1609808493 0 +1123 1 7 block/lp:myaddinstance 1 1609808494 0 +1124 1 7 block/mentees:myaddinstance 1 1609808494 0 +1125 1 1 block/mentees:addinstance 1 1609808494 0 +1126 1 3 block/mentees:addinstance 1 1609808494 0 +1127 1 7 block/mnet_hosts:myaddinstance 1 1609808494 0 +1128 1 1 block/mnet_hosts:addinstance 1 1609808494 0 +1129 1 3 block/mnet_hosts:addinstance 1 1609808494 0 +1130 1 7 block/myoverview:myaddinstance 1 1609808494 0 +1131 1 7 block/myprofile:myaddinstance 1 1609808494 0 +1132 1 1 block/myprofile:addinstance 1 1609808494 0 +1133 1 3 block/myprofile:addinstance 1 1609808494 0 +1134 1 7 block/navigation:myaddinstance 1 1609808494 0 +1135 1 1 block/navigation:addinstance 1 1609808494 0 +1136 1 3 block/navigation:addinstance 1 1609808494 0 +1137 1 7 block/news_items:myaddinstance 1 1609808494 0 +1138 1 1 block/news_items:addinstance 1 1609808494 0 +1139 1 3 block/news_items:addinstance 1 1609808494 0 +1140 1 7 block/online_users:myaddinstance 1 1609808494 0 +1141 1 1 block/online_users:addinstance 1 1609808494 0 +1142 1 3 block/online_users:addinstance 1 1609808494 0 +1143 1 7 block/online_users:viewlist 1 1609808494 0 +1144 1 6 block/online_users:viewlist 1 1609808494 0 +1145 1 5 block/online_users:viewlist 1 1609808494 0 +1146 1 4 block/online_users:viewlist 1 1609808494 0 +1147 1 3 block/online_users:viewlist 1 1609808494 0 +1148 1 1 block/online_users:viewlist 1 1609808494 0 +1149 1 7 block/private_files:myaddinstance 1 1609808494 0 +1150 1 1 block/private_files:addinstance 1 1609808494 0 +1151 1 3 block/private_files:addinstance 1 1609808494 0 +1152 1 1 block/quiz_results:addinstance 1 1609808494 0 +1153 1 3 block/quiz_results:addinstance 1 1609808494 0 +1154 1 1 block/recent_activity:addinstance 1 1609808494 0 +1155 1 3 block/recent_activity:addinstance 1 1609808494 0 +1156 1 7 block/recent_activity:viewaddupdatemodule 1 1609808494 0 +1157 1 7 block/recent_activity:viewdeletemodule 1 1609808494 0 +1158 1 7 block/recentlyaccessedcourses:myaddinstance 1 1609808494 0 +1159 1 7 block/recentlyaccesseditems:myaddinstance 1 1609808494 0 +1160 1 7 block/rss_client:myaddinstance 1 1609808494 0 +1161 1 1 block/rss_client:addinstance 1 1609808494 0 +1162 1 3 block/rss_client:addinstance 1 1609808495 0 +1163 1 4 block/rss_client:manageownfeeds 1 1609808495 0 +1164 1 3 block/rss_client:manageownfeeds 1 1609808495 0 +1165 1 1 block/rss_client:manageownfeeds 1 1609808495 0 +1166 1 1 block/rss_client:manageanyfeeds 1 1609808495 0 +1167 1 1 block/search_forums:addinstance 1 1609808495 0 +1168 1 3 block/search_forums:addinstance 1 1609808495 0 +1169 1 1 block/section_links:addinstance 1 1609808495 0 +1170 1 3 block/section_links:addinstance 1 1609808495 0 +1171 1 1 block/selfcompletion:addinstance 1 1609808495 0 +1172 1 3 block/selfcompletion:addinstance 1 1609808495 0 +1173 1 7 block/settings:myaddinstance 1 1609808495 0 +1174 1 1 block/settings:addinstance 1 1609808495 0 +1175 1 3 block/settings:addinstance 1 1609808495 0 +1176 1 1 block/site_main_menu:addinstance 1 1609808495 0 +1177 1 3 block/site_main_menu:addinstance 1 1609808495 0 +1178 1 1 block/social_activities:addinstance 1 1609808495 0 +1179 1 3 block/social_activities:addinstance 1 1609808495 0 +1180 1 7 block/starredcourses:myaddinstance 1 1609808495 0 +1181 1 1 block/tag_flickr:addinstance 1 1609808495 0 +1182 1 3 block/tag_flickr:addinstance 1 1609808495 0 +1183 1 1 block/tag_youtube:addinstance 1 1609808495 0 +1184 1 3 block/tag_youtube:addinstance 1 1609808495 0 +1185 1 7 block/tags:myaddinstance 1 1609808495 0 +1186 1 1 block/tags:addinstance 1 1609808495 0 +1187 1 3 block/tags:addinstance 1 1609808495 0 +1188 1 7 block/timeline:myaddinstance 1 1609808495 0 +1189 1 4 report/completion:view 1 1609808497 0 +1190 1 3 report/completion:view 1 1609808497 0 +1191 1 1 report/completion:view 1 1609808497 0 +1192 1 1 report/courseoverview:view 1 1609808497 0 +1193 1 3 report/courseoverview:view 1 1609808497 0 +1194 1 4 report/courseoverview:view 1 1609808497 0 +1195 1 4 report/log:view 1 1609808497 0 +1196 1 3 report/log:view 1 1609808497 0 +1197 1 1 report/log:view 1 1609808497 0 +1198 1 4 report/log:viewtoday 1 1609808497 0 +1199 1 3 report/log:viewtoday 1 1609808497 0 +1200 1 1 report/log:viewtoday 1 1609808497 0 +1201 1 4 report/loglive:view 1 1609808497 0 +1202 1 3 report/loglive:view 1 1609808497 0 +1203 1 1 report/loglive:view 1 1609808497 0 +1204 1 4 report/outline:view 1 1609808497 0 +1205 1 3 report/outline:view 1 1609808497 0 +1206 1 1 report/outline:view 1 1609808497 0 +1207 1 4 report/outline:viewuserreport 1 1609808497 0 +1208 1 3 report/outline:viewuserreport 1 1609808497 0 +1209 1 1 report/outline:viewuserreport 1 1609808497 0 +1210 1 4 report/participation:view 1 1609808497 0 +1211 1 3 report/participation:view 1 1609808497 0 +1212 1 1 report/participation:view 1 1609808497 0 +1213 1 1 report/performance:view 1 1609808497 0 +1214 1 4 report/progress:view 1 1609808497 0 +1215 1 3 report/progress:view 1 1609808497 0 +1216 1 1 report/progress:view 1 1609808497 0 +1217 1 1 report/security:view 1 1609808498 0 +1218 1 4 report/stats:view 1 1609808498 0 +1219 1 3 report/stats:view 1 1609808498 0 +1220 1 1 report/stats:view 1 1609808498 0 +1221 1 1 report/status:view 1 1609808498 0 +1222 1 1 report/usersessions:manageownsessions 1 1609808498 0 +1223 1 7 report/usersessions:manageownsessions 1 1609808498 0 +1224 1 6 report/usersessions:manageownsessions -1000 1609808498 0 +1225 1 4 gradeexport/ods:view 1 1609808498 0 +1226 1 3 gradeexport/ods:view 1 1609808498 0 +1227 1 1 gradeexport/ods:view 1 1609808498 0 +1228 1 1 gradeexport/ods:publish 1 1609808498 0 +1229 1 4 gradeexport/txt:view 1 1609808498 0 +1230 1 3 gradeexport/txt:view 1 1609808498 0 +1231 1 1 gradeexport/txt:view 1 1609808498 0 +1232 1 1 gradeexport/txt:publish 1 1609808498 0 +1233 1 4 gradeexport/xls:view 1 1609808498 0 +1234 1 3 gradeexport/xls:view 1 1609808498 0 +1235 1 1 gradeexport/xls:view 1 1609808498 0 +1236 1 1 gradeexport/xls:publish 1 1609808498 0 +1237 1 4 gradeexport/xml:view 1 1609808498 0 +1238 1 3 gradeexport/xml:view 1 1609808498 0 +1239 1 1 gradeexport/xml:view 1 1609808498 0 +1240 1 1 gradeexport/xml:publish 1 1609808498 0 +1241 1 3 gradeimport/csv:view 1 1609808498 0 +1242 1 1 gradeimport/csv:view 1 1609808498 0 +1243 1 3 gradeimport/direct:view 1 1609808498 0 +1244 1 1 gradeimport/direct:view 1 1609808498 0 +1245 1 3 gradeimport/xml:view 1 1609808498 0 +1246 1 1 gradeimport/xml:view 1 1609808498 0 +1247 1 1 gradeimport/xml:publish 1 1609808498 0 +1248 1 4 gradereport/grader:view 1 1609808498 0 +1249 1 3 gradereport/grader:view 1 1609808498 0 +1250 1 1 gradereport/grader:view 1 1609808498 0 +1251 1 1 gradereport/history:view 1 1609808498 0 +1252 1 3 gradereport/history:view 1 1609808498 0 +1253 1 4 gradereport/history:view 1 1609808498 0 +1254 1 4 gradereport/outcomes:view 1 1609808498 0 +1255 1 3 gradereport/outcomes:view 1 1609808498 0 +1256 1 1 gradereport/outcomes:view 1 1609808498 0 +1257 1 7 gradereport/overview:view 1 1609808498 0 +1258 1 3 gradereport/singleview:view 1 1609808498 0 +1259 1 1 gradereport/singleview:view 1 1609808499 0 +1260 1 5 gradereport/user:view 1 1609808499 0 +1261 1 4 gradereport/user:view 1 1609808499 0 +1262 1 3 gradereport/user:view 1 1609808499 0 +1263 1 1 gradereport/user:view 1 1609808499 0 +1264 1 7 repository/areafiles:view 1 1609808499 0 +1265 1 7 repository/boxnet:view 1 1609808499 0 +1266 1 2 repository/contentbank:view 1 1609808499 0 +1267 1 3 repository/contentbank:view 1 1609808499 0 +1268 1 1 repository/contentbank:view 1 1609808499 0 +1269 1 2 repository/contentbank:accesscoursecontent 1 1609808499 0 +1270 1 3 repository/contentbank:accesscoursecontent 1 1609808499 0 +1271 1 1 repository/contentbank:accesscoursecontent 1 1609808499 0 +1272 1 2 repository/contentbank:accesscoursecategorycontent 1 1609808499 0 +1273 1 1 repository/contentbank:accesscoursecategorycontent 1 1609808499 0 +1274 1 7 repository/contentbank:accessgeneralcontent 1 1609808499 0 +1275 1 2 repository/coursefiles:view 1 1609808499 0 +1276 1 4 repository/coursefiles:view 1 1609808499 0 +1277 1 3 repository/coursefiles:view 1 1609808499 0 +1278 1 1 repository/coursefiles:view 1 1609808499 0 +1279 1 7 repository/dropbox:view 1 1609808499 0 +1280 1 7 repository/equella:view 1 1609808499 0 +1281 1 2 repository/filesystem:view 1 1609808499 0 +1282 1 4 repository/filesystem:view 1 1609808499 0 +1283 1 3 repository/filesystem:view 1 1609808500 0 +1284 1 1 repository/filesystem:view 1 1609808500 0 +1285 1 7 repository/flickr:view 1 1609808500 0 +1286 1 7 repository/flickr_public:view 1 1609808500 0 +1287 1 7 repository/googledocs:view 1 1609808500 0 +1288 1 2 repository/local:view 1 1609808500 0 +1289 1 4 repository/local:view 1 1609808500 0 +1290 1 3 repository/local:view 1 1609808500 0 +1291 1 1 repository/local:view 1 1609808500 0 +1292 1 7 repository/merlot:view 1 1609808500 0 +1293 1 7 repository/nextcloud:view 1 1609808500 0 +1294 1 7 repository/onedrive:view 1 1609808500 0 +1295 1 7 repository/picasa:view 1 1609808500 0 +1296 1 7 repository/recent:view 1 1609808500 0 +1297 1 7 repository/s3:view 1 1609808500 0 +1298 1 7 repository/skydrive:view 1 1609808500 0 +1299 1 7 repository/upload:view 1 1609808500 0 +1300 1 7 repository/url:view 1 1609808500 0 +1301 1 7 repository/user:view 1 1609808500 0 +1302 1 2 repository/webdav:view 1 1609808500 0 +1303 1 4 repository/webdav:view 1 1609808500 0 +1304 1 3 repository/webdav:view 1 1609808500 0 +1305 1 1 repository/webdav:view 1 1609808500 0 +1306 1 7 repository/wikimedia:view 1 1609808500 0 +1307 1 7 repository/youtube:view 1 1609808501 0 +1308 1 1 tool/customlang:view 1 1609808502 0 +1309 1 1 tool/customlang:edit 1 1609808502 0 +1310 1 7 tool/dataprivacy:downloadownrequest 1 1609808502 0 +1311 1 7 tool/dataprivacy:requestdelete 1 1609808502 0 +1312 1 1 tool/lpmigrate:frameworksmigrate 1 1609808503 0 +1313 1 4 tool/monitor:subscribe 1 1609808503 0 +1314 1 3 tool/monitor:subscribe 1 1609808503 0 +1315 1 1 tool/monitor:subscribe 1 1609808503 0 +1316 1 4 tool/monitor:managerules 1 1609808503 0 +1317 1 3 tool/monitor:managerules 1 1609808503 0 +1318 1 1 tool/monitor:managerules 1 1609808503 0 +1319 1 1 tool/monitor:managetool 1 1609808503 0 +1320 1 7 tool/policy:accept 1 1609808503 0 +1321 1 1 tool/policy:managedocs 1 1609808503 0 +1322 1 1 tool/policy:viewacceptances 1 1609808503 0 +1323 1 3 tool/recyclebin:deleteitems 1 1609808503 0 +1324 1 1 tool/recyclebin:deleteitems 1 1609808503 0 +1325 1 3 tool/recyclebin:restoreitems 1 1609808503 0 +1326 1 1 tool/recyclebin:restoreitems 1 1609808503 0 +1327 1 4 tool/recyclebin:viewitems 1 1609808503 0 +1328 1 3 tool/recyclebin:viewitems 1 1609808503 0 +1329 1 1 tool/recyclebin:viewitems 1 1609808503 0 +1330 1 1 tool/uploaduser:uploaduserpictures 1 1609808504 0 +1331 1 1 tool/usertours:managetours 1 1609808504 0 +1332 1 1 contenttype/h5p:access 1 1609808504 0 +1333 1 2 contenttype/h5p:access 1 1609808504 0 +1334 1 3 contenttype/h5p:access 1 1609808504 0 +1335 1 1 contenttype/h5p:upload 1 1609808504 0 +1336 1 2 contenttype/h5p:upload 1 1609808504 0 +1337 1 3 contenttype/h5p:upload 1 1609808504 0 +1338 1 1 contenttype/h5p:useeditor 1 1609808504 0 +1339 1 2 contenttype/h5p:useeditor 1 1609808504 0 +1340 1 3 contenttype/h5p:useeditor 1 1609808504 0 +1341 1 3 booktool/importhtml:import 1 1609808505 0 +1342 1 1 booktool/importhtml:import 1 1609808505 0 +1343 1 6 booktool/print:print 1 1609808505 0 +1344 1 8 booktool/print:print 1 1609808505 0 +1345 1 5 booktool/print:print 1 1609808505 0 +1346 1 4 booktool/print:print 1 1609808505 0 +1347 1 3 booktool/print:print 1 1609808505 0 +1348 1 1 booktool/print:print 1 1609808505 0 +1349 1 4 forumreport/summary:view 1 1609808506 0 +1350 1 3 forumreport/summary:view 1 1609808506 0 +1351 1 1 forumreport/summary:view 1 1609808506 0 +1352 1 4 forumreport/summary:viewall 1 1609808506 0 +1353 1 3 forumreport/summary:viewall 1 1609808506 0 +1354 1 1 forumreport/summary:viewall 1 1609808506 0 +1355 1 1 quiz/grading:viewstudentnames 1 1609808506 0 +1356 1 3 quiz/grading:viewstudentnames 1 1609808506 0 +1357 1 4 quiz/grading:viewstudentnames 1 1609808506 0 +1358 1 1 quiz/grading:viewidnumber 1 1609808506 0 +1359 1 3 quiz/grading:viewidnumber 1 1609808506 0 +1360 1 4 quiz/grading:viewidnumber 1 1609808506 0 +1361 1 1 quiz/statistics:view 1 1609808506 0 +1362 1 3 quiz/statistics:view 1 1609808506 0 +1363 1 4 quiz/statistics:view 1 1609808506 0 +1364 1 1 quizaccess/seb:managetemplates 1 1609808507 0 +1365 1 1 quizaccess/seb:bypassseb 1 1609808507 0 +1366 1 3 quizaccess/seb:bypassseb 1 1609808507 0 +1367 1 1 quizaccess/seb:manage_seb_requiresafeexambrowser 1 1609808507 0 +1368 1 3 quizaccess/seb:manage_seb_requiresafeexambrowser 1 1609808507 0 +1369 1 1 quizaccess/seb:manage_seb_templateid 1 1609808507 0 +1370 1 3 quizaccess/seb:manage_seb_templateid 1 1609808507 0 +1371 1 1 quizaccess/seb:manage_filemanager_sebconfigfile 1 1609808507 0 +1372 1 3 quizaccess/seb:manage_filemanager_sebconfigfile 1 1609808507 0 +1373 1 1 quizaccess/seb:manage_seb_showsebdownloadlink 1 1609808507 0 +1374 1 3 quizaccess/seb:manage_seb_showsebdownloadlink 1 1609808507 0 +1375 1 1 quizaccess/seb:manage_seb_allowedbrowserexamkeys 1 1609808507 0 +1376 1 3 quizaccess/seb:manage_seb_allowedbrowserexamkeys 1 1609808507 0 +1377 1 1 quizaccess/seb:manage_seb_linkquitseb 1 1609808507 0 +1378 1 3 quizaccess/seb:manage_seb_linkquitseb 1 1609808507 0 +1379 1 1 quizaccess/seb:manage_seb_userconfirmquit 1 1609808507 0 +1380 1 3 quizaccess/seb:manage_seb_userconfirmquit 1 1609808507 0 +1381 1 1 quizaccess/seb:manage_seb_allowuserquitseb 1 1609808507 0 +1382 1 3 quizaccess/seb:manage_seb_allowuserquitseb 1 1609808507 0 +1383 1 1 quizaccess/seb:manage_seb_quitpassword 1 1609808507 0 +1384 1 3 quizaccess/seb:manage_seb_quitpassword 1 1609808507 0 +1385 1 1 quizaccess/seb:manage_seb_allowreloadinexam 1 1609808507 0 +1386 1 3 quizaccess/seb:manage_seb_allowreloadinexam 1 1609808507 0 +1387 1 1 quizaccess/seb:manage_seb_showsebtaskbar 1 1609808507 0 +1388 1 3 quizaccess/seb:manage_seb_showsebtaskbar 1 1609808507 0 +1389 1 1 quizaccess/seb:manage_seb_showreloadbutton 1 1609808507 0 +1390 1 3 quizaccess/seb:manage_seb_showreloadbutton 1 1609808507 0 +1391 1 1 quizaccess/seb:manage_seb_showtime 1 1609808507 0 +1392 1 3 quizaccess/seb:manage_seb_showtime 1 1609808507 0 +1393 1 1 quizaccess/seb:manage_seb_showkeyboardlayout 1 1609808507 0 +1394 1 3 quizaccess/seb:manage_seb_showkeyboardlayout 1 1609808507 0 +1395 1 1 quizaccess/seb:manage_seb_showwificontrol 1 1609808507 0 +1396 1 3 quizaccess/seb:manage_seb_showwificontrol 1 1609808507 0 +1397 1 1 quizaccess/seb:manage_seb_enableaudiocontrol 1 1609808507 0 +1398 1 3 quizaccess/seb:manage_seb_enableaudiocontrol 1 1609808507 0 +1399 1 1 quizaccess/seb:manage_seb_muteonstartup 1 1609808507 0 +1400 1 3 quizaccess/seb:manage_seb_muteonstartup 1 1609808507 0 +1401 1 1 quizaccess/seb:manage_seb_allowspellchecking 1 1609808507 0 +1402 1 3 quizaccess/seb:manage_seb_allowspellchecking 1 1609808507 0 +1403 1 1 quizaccess/seb:manage_seb_activateurlfiltering 1 1609808507 0 +1404 1 3 quizaccess/seb:manage_seb_activateurlfiltering 1 1609808507 0 +1405 1 1 quizaccess/seb:manage_seb_filterembeddedcontent 1 1609808507 0 +1406 1 3 quizaccess/seb:manage_seb_filterembeddedcontent 1 1609808507 0 +1407 1 1 quizaccess/seb:manage_seb_expressionsallowed 1 1609808507 0 +1408 1 3 quizaccess/seb:manage_seb_expressionsallowed 1 1609808507 0 +1409 1 1 quizaccess/seb:manage_seb_regexallowed 1 1609808507 0 +1410 1 3 quizaccess/seb:manage_seb_regexallowed 1 1609808507 0 +1411 1 1 quizaccess/seb:manage_seb_expressionsblocked 1 1609808507 0 +1412 1 3 quizaccess/seb:manage_seb_expressionsblocked 1 1609808507 0 +1413 1 1 quizaccess/seb:manage_seb_regexblocked 1 1609808507 0 +1414 1 3 quizaccess/seb:manage_seb_regexblocked 1 1609808507 0 +1415 1 3 atto/h5p:addembed 1 1609808508 0 +1416 1 7 atto/recordrtc:recordaudio 1 1609808509 0 +1417 1 7 atto/recordrtc:recordvideo 1 1609808509 0 +\. + + +-- +-- TOC entry 11722 (class 0 OID 0) +-- Dependencies: 304 +-- Name: mdl_role_capabilities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_role_capabilities_id_seq', 1417, true); + + +-- +-- TOC entry 9794 (class 0 OID 17479) +-- Dependencies: 309 +-- Data for Name: mdl_role_context_levels; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_role_context_levels (id, roleid, contextlevel) FROM stdin; +1 1 10 +2 1 40 +3 1 50 +4 2 10 +5 2 40 +6 3 50 +7 3 70 +8 4 50 +9 4 70 +10 5 50 +11 5 70 +\. + + +-- +-- TOC entry 11723 (class 0 OID 0) +-- Dependencies: 308 +-- Name: mdl_role_context_levels_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_role_context_levels_id_seq', 11, true); + + +-- +-- TOC entry 11724 (class 0 OID 0) +-- Dependencies: 287 +-- Name: mdl_role_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_role_id_seq', 8, true); + + +-- +-- TOC entry 9792 (class 0 OID 17465) +-- Dependencies: 307 +-- Data for Name: mdl_role_names; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_role_names (id, roleid, contextid, name) FROM stdin; +\. + + +-- +-- TOC entry 11725 (class 0 OID 0) +-- Dependencies: 306 +-- Name: mdl_role_names_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_role_names_id_seq', 1, false); + + +-- +-- TOC entry 9755 (class 0 OID 17146) +-- Dependencies: 270 +-- Data for Name: mdl_scale; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_scale (id, courseid, userid, name, scale, description, descriptionformat, timemodified) FROM stdin; +1 0 0 Separate and Connected ways of knowing Mostly separate knowing,Separate and connected,Mostly connected knowing The scale based on the theory of separate and connected knowing. This theory describes two different ways that we can evaluate and learn about the things we see and hear.
  • Separate knowers remain as objective as possible without including feelings and emotions. In a discussion with other people, they like to defend their own ideas, using logic to find holes in opponent's ideas.
  • Connected knowers are more sensitive to other people. They are skilled at empathy and tend to listen and ask questions until they feel they can connect and "understand things from their point of view". They learn by trying to share the experiences that led to the knowledge they find in other people.
0 1609808470 +2 0 0 Default competence scale Not yet competent,Competent A binary rating scale that provides no further information beyond whether someone has demonstrated proficiency or not. 0 1609808470 +\. + + +-- +-- TOC entry 9757 (class 0 OID 17163) +-- Dependencies: 272 +-- Data for Name: mdl_scale_history; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_scale_history (id, action, oldid, source, timemodified, loggeduser, courseid, userid, name, scale, description) FROM stdin; +\. + + +-- +-- TOC entry 11726 (class 0 OID 0) +-- Dependencies: 271 +-- Name: mdl_scale_history_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_scale_history_id_seq', 1, false); + + +-- +-- TOC entry 11727 (class 0 OID 0) +-- Dependencies: 269 +-- Name: mdl_scale_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_scale_id_seq', 2, true); + + +-- +-- TOC entry 10316 (class 0 OID 21784) +-- Dependencies: 831 +-- Data for Name: mdl_scorm; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_scorm (id, course, name, scormtype, reference, intro, introformat, version, maxgrade, grademethod, whatgrade, maxattempt, forcecompleted, forcenewattempt, lastattemptlock, masteryoverride, displayattemptstatus, displaycoursestructure, updatefreq, sha1hash, md5hash, revision, launch, skipview, hidebrowse, hidetoc, nav, navpositionleft, navpositiontop, auto, popup, options, width, height, timeopen, timeclose, timemodified, completionstatusrequired, completionscorerequired, completionstatusallscos, displayactivityname, autocommit) FROM stdin; +\. + + +-- +-- TOC entry 10336 (class 0 OID 21982) +-- Dependencies: 851 +-- Data for Name: mdl_scorm_aicc_session; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_scorm_aicc_session (id, userid, scormid, hacpsession, scoid, scormmode, scormstatus, attempt, lessonstatus, sessiontime, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11728 (class 0 OID 0) +-- Dependencies: 850 +-- Name: mdl_scorm_aicc_session_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_scorm_aicc_session_id_seq', 1, false); + + +-- +-- TOC entry 11729 (class 0 OID 0) +-- Dependencies: 830 +-- Name: mdl_scorm_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_scorm_id_seq', 1, false); + + +-- +-- TOC entry 10318 (class 0 OID 21832) +-- Dependencies: 833 +-- Data for Name: mdl_scorm_scoes; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_scorm_scoes (id, scorm, manifest, organization, parent, identifier, launch, scormtype, title, sortorder) FROM stdin; +\. + + +-- +-- TOC entry 10320 (class 0 OID 21852) +-- Dependencies: 835 +-- Data for Name: mdl_scorm_scoes_data; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_scorm_scoes_data (id, scoid, name, value) FROM stdin; +\. + + +-- +-- TOC entry 11730 (class 0 OID 0) +-- Dependencies: 834 +-- Name: mdl_scorm_scoes_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_scorm_scoes_data_id_seq', 1, false); + + +-- +-- TOC entry 11731 (class 0 OID 0) +-- Dependencies: 832 +-- Name: mdl_scorm_scoes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_scorm_scoes_id_seq', 1, false); + + +-- +-- TOC entry 10322 (class 0 OID 21866) +-- Dependencies: 837 +-- Data for Name: mdl_scorm_scoes_track; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_scorm_scoes_track (id, userid, scormid, scoid, attempt, element, value, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11732 (class 0 OID 0) +-- Dependencies: 836 +-- Name: mdl_scorm_scoes_track_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_scorm_scoes_track_id_seq', 1, false); + + +-- +-- TOC entry 10326 (class 0 OID 21902) +-- Dependencies: 841 +-- Data for Name: mdl_scorm_seq_mapinfo; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_scorm_seq_mapinfo (id, scoid, objectiveid, targetobjectiveid, readsatisfiedstatus, readnormalizedmeasure, writesatisfiedstatus, writenormalizedmeasure) FROM stdin; +\. + + +-- +-- TOC entry 11733 (class 0 OID 0) +-- Dependencies: 840 +-- Name: mdl_scorm_seq_mapinfo_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_scorm_seq_mapinfo_id_seq', 1, false); + + +-- +-- TOC entry 10324 (class 0 OID 21887) +-- Dependencies: 839 +-- Data for Name: mdl_scorm_seq_objective; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_scorm_seq_objective (id, scoid, primaryobj, objectiveid, satisfiedbymeasure, minnormalizedmeasure) FROM stdin; +\. + + +-- +-- TOC entry 11734 (class 0 OID 0) +-- Dependencies: 838 +-- Name: mdl_scorm_seq_objective_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_scorm_seq_objective_id_seq', 1, false); + + +-- +-- TOC entry 10332 (class 0 OID 21951) +-- Dependencies: 847 +-- Data for Name: mdl_scorm_seq_rolluprule; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_scorm_seq_rolluprule (id, scoid, childactivityset, minimumcount, minimumpercent, conditioncombination, action) FROM stdin; +\. + + +-- +-- TOC entry 11735 (class 0 OID 0) +-- Dependencies: 846 +-- Name: mdl_scorm_seq_rolluprule_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_scorm_seq_rolluprule_id_seq', 1, false); + + +-- +-- TOC entry 10334 (class 0 OID 21967) +-- Dependencies: 849 +-- Data for Name: mdl_scorm_seq_rolluprulecond; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_scorm_seq_rolluprulecond (id, scoid, rollupruleid, operator, cond) FROM stdin; +\. + + +-- +-- TOC entry 11736 (class 0 OID 0) +-- Dependencies: 848 +-- Name: mdl_scorm_seq_rolluprulecond_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_scorm_seq_rolluprulecond_id_seq', 1, false); + + +-- +-- TOC entry 10330 (class 0 OID 21934) +-- Dependencies: 845 +-- Data for Name: mdl_scorm_seq_rulecond; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_scorm_seq_rulecond (id, scoid, ruleconditionsid, refrencedobjective, measurethreshold, operator, cond) FROM stdin; +\. + + +-- +-- TOC entry 11737 (class 0 OID 0) +-- Dependencies: 844 +-- Name: mdl_scorm_seq_rulecond_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_scorm_seq_rulecond_id_seq', 1, false); + + +-- +-- TOC entry 10328 (class 0 OID 21920) +-- Dependencies: 843 +-- Data for Name: mdl_scorm_seq_ruleconds; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_scorm_seq_ruleconds (id, scoid, conditioncombination, ruletype, action) FROM stdin; +\. + + +-- +-- TOC entry 11738 (class 0 OID 0) +-- Dependencies: 842 +-- Name: mdl_scorm_seq_ruleconds_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_scorm_seq_ruleconds_id_seq', 1, false); + + +-- +-- TOC entry 10086 (class 0 OID 19687) +-- Dependencies: 601 +-- Data for Name: mdl_search_index_requests; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_search_index_requests (id, contextid, searcharea, timerequested, partialarea, partialtime, indexpriority) FROM stdin; +\. + + +-- +-- TOC entry 11739 (class 0 OID 0) +-- Dependencies: 600 +-- Name: mdl_search_index_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_search_index_requests_id_seq', 1, false); + + +-- +-- TOC entry 10434 (class 0 OID 22744) +-- Dependencies: 949 +-- Data for Name: mdl_search_simpledb_index; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_search_simpledb_index (id, docid, itemid, title, content, contextid, areaid, type, courseid, owneruserid, modified, userid, description1, description2) FROM stdin; +\. + + +-- +-- TOC entry 11740 (class 0 OID 0) +-- Dependencies: 948 +-- Name: mdl_search_simpledb_index_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_search_simpledb_index_id_seq', 1, false); + + +-- +-- TOC entry 9745 (class 0 OID 17017) +-- Dependencies: 260 +-- Data for Name: mdl_sessions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_sessions (id, state, sid, userid, sessdata, timecreated, timemodified, firstip, lastip) FROM stdin; +48 0 hvvc4ec1f4a7vebg6qatmls3qr 0 \N 1609857857 1609857857 205.178.100.54 205.178.100.54 +50 0 jc87j6tl57nah95q5tr5udt5om 0 \N 1609858213 1609858213 74.120.14.53 74.120.14.53 +4 0 g390evscnnj46m1dik81objdqc 0 \N 1609809062 1609809063 52.147.4.242 52.147.4.242 +6 0 cd0g9e2qjl0k8qg84ms2c21b2t 0 \N 1609809102 1609809102 37.46.150.227 37.46.150.227 +8 0 5kulmlbb0os2t62010q3j5s8aj 0 \N 1609812059 1609812059 186.237.144.74 186.237.144.74 +10 0 7r5uc0b36j205t6r1gi1fuf41g 0 \N 1609814138 1609814138 192.35.168.96 192.35.168.96 +11 0 2anuu9v7p3m9olelilijnkhfop 0 \N 1609814138 1609814138 192.35.168.96 192.35.168.96 +12 0 p4hosuduuribnlt7prhu53ksbm 0 \N 1609814139 1609814139 192.35.168.96 192.35.168.96 +13 0 a3ir4gbtruvhv71m7r3dconhno 0 \N 1609814139 1609814139 192.35.168.96 192.35.168.96 +15 0 o9arou95l3q7qg20icb8nls361 0 \N 1609814355 1609814355 139.162.106.181 139.162.106.181 +17 0 apib2rq6cmj3t8s9bl3j18m246 0 \N 1609817323 1609817323 209.17.96.42 209.17.96.42 +19 0 vssvii2a9dkhfk77ne25jtvv18 0 \N 1609826929 1609826929 119.46.1.122 119.46.1.122 +21 0 64vnfmck17kogc31jo6g879n1q 0 \N 1609829356 1609829356 178.73.215.171 178.73.215.171 +23 0 d4ea49tp7v6nkfrr767mp5ha99 0 \N 1609831226 1609831226 45.155.205.108 45.155.205.108 +25 0 csf01fu5kt15845rkgqeiq4v3j 0 \N 1609831227 1609831227 45.155.205.108 45.155.205.108 +27 0 4dgjaqtcj83b9eb33vna6682nk 0 \N 1609831227 1609831227 45.155.205.108 45.155.205.108 +28 0 j7j1spfe2n22mdbnl9ucf2bs74 0 \N 1609831228 1609831228 45.155.205.108 45.155.205.108 +29 0 uhfne8ijftrke74aah7ds4209i 0 \N 1609831229 1609831229 45.155.205.108 45.155.205.108 +30 0 qnh199jaciuu5qjj9tuglo47ji 0 \N 1609831229 1609831229 45.155.205.108 45.155.205.108 +31 0 59992kis3k8msn7k878tcig9lp 0 \N 1609831230 1609831230 45.155.205.108 45.155.205.108 +32 0 p2369p23sfmo4svolaq3bod0fc 0 \N 1609831230 1609831230 45.155.205.108 45.155.205.108 +33 0 c2r65p2am25gc56sc2q1ctptkt 0 \N 1609831231 1609831231 45.155.205.108 45.155.205.108 +34 0 kvhd9lsk8vgt2j1gq8kves7nqo 0 \N 1609831231 1609831231 45.155.205.108 45.155.205.108 +35 0 l3fudt233n04poa4f5mps2bngc 0 \N 1609831232 1609831232 45.155.205.108 45.155.205.108 +36 0 i4042aj7lebn4gnctdd4kvci1b 0 \N 1609831232 1609831232 45.155.205.108 45.155.205.108 +38 0 gg256398arpas36ck2f9nr62c1 0 \N 1609837562 1609837562 85.12.201.205 85.12.201.205 +40 0 adtmna6n3e61se1aga4geo1rle 0 \N 1609838006 1609838006 51.143.32.186 51.143.32.186 +42 0 k0gsqcbc9hau0venrncodfhef3 0 \N 1609847022 1609847022 20.75.81.246 20.75.81.246 +44 0 knmcs34pvrthb1umeuo6tk71jb 0 \N 1609851488 1609851488 80.44.39.96 80.44.39.96 +46 0 ref8oi41tvuhtk9l8u678llmmn 0 \N 1609853098 1609853098 103.144.146.190 103.144.146.190 +52 0 4chivo1pt1hj4id8uj4ss8r92q 0 \N 1609858214 1609858214 74.120.14.53 74.120.14.53 +53 0 6r7qakqcgcn3rru8e423rc18bf 0 \N 1609858214 1609858214 74.120.14.53 74.120.14.53 +54 0 tq1gfcegjs3fm65pnqpj9ia97u 0 \N 1609858214 1609858214 74.120.14.53 74.120.14.53 +55 0 0n4tle4vfre9rq3vsr5ktmc5b0 0 \N 1609858215 1609858215 74.120.14.53 74.120.14.53 +56 0 ehqsv8efb7iu2f06h7ecfrjh9g 0 \N 1609858215 1609858215 74.120.14.53 74.120.14.53 +57 0 quqspa06mp8m51r88ap06ffv6i 0 \N 1609858215 1609858215 74.120.14.53 74.120.14.53 +59 0 ehrd7b8bk27s2dcv56hh5oj763 0 \N 1609859814 1609859814 128.14.133.58 128.14.133.58 +60 0 u17gkj7m0tg2ris4s9nhrfdub2 0 \N 1609859814 1609859814 128.14.133.58 128.14.133.58 +61 0 2n3oqsojgcfr0d1judvcnnabp1 0 \N 1609859814 1609859814 128.14.133.58 128.14.133.58 +62 0 786ufaikq4sf8jhsuhki9dlr1e 0 \N 1609859815 1609859815 128.14.133.58 128.14.133.58 +64 0 dsba0datl79pfg9jvvao8cou9c 0 \N 1609861812 1609861812 138.68.161.204 138.68.161.204 +68 0 oqoesti3mraj246rqa994umq56 0 \N 1609863506 1609863507 107.0.200.61 107.0.200.61 +72 0 9kq9sa57enerhq9dkqh9pq4nq4 0 \N 1609888714 1609888714 5.189.174.129 5.189.174.129 +71 0 sfv8r52dg34qrv0eon6bfhggon 2 \N 1609883714 1609889130 67.182.30.218 67.182.30.218 +\. + + +-- +-- TOC entry 11741 (class 0 OID 0) +-- Dependencies: 259 +-- Name: mdl_sessions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_sessions_id_seq', 72, true); + + +-- +-- TOC entry 9759 (class 0 OID 17183) +-- Dependencies: 274 +-- Data for Name: mdl_stats_daily; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_stats_daily (id, courseid, timeend, roleid, stattype, stat1, stat2) FROM stdin; +\. + + +-- +-- TOC entry 11742 (class 0 OID 0) +-- Dependencies: 273 +-- Name: mdl_stats_daily_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_stats_daily_id_seq', 1, false); + + +-- +-- TOC entry 9763 (class 0 OID 17217) +-- Dependencies: 278 +-- Data for Name: mdl_stats_monthly; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_stats_monthly (id, courseid, timeend, roleid, stattype, stat1, stat2) FROM stdin; +\. + + +-- +-- TOC entry 11743 (class 0 OID 0) +-- Dependencies: 277 +-- Name: mdl_stats_monthly_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_stats_monthly_id_seq', 1, false); + + +-- +-- TOC entry 9765 (class 0 OID 17234) +-- Dependencies: 280 +-- Data for Name: mdl_stats_user_daily; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_stats_user_daily (id, courseid, userid, roleid, timeend, statsreads, statswrites, stattype) FROM stdin; +\. + + +-- +-- TOC entry 11744 (class 0 OID 0) +-- Dependencies: 279 +-- Name: mdl_stats_user_daily_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_stats_user_daily_id_seq', 1, false); + + +-- +-- TOC entry 9769 (class 0 OID 17272) +-- Dependencies: 284 +-- Data for Name: mdl_stats_user_monthly; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_stats_user_monthly (id, courseid, userid, roleid, timeend, statsreads, statswrites, stattype) FROM stdin; +\. + + +-- +-- TOC entry 11745 (class 0 OID 0) +-- Dependencies: 283 +-- Name: mdl_stats_user_monthly_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_stats_user_monthly_id_seq', 1, false); + + +-- +-- TOC entry 9767 (class 0 OID 17253) +-- Dependencies: 282 +-- Data for Name: mdl_stats_user_weekly; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_stats_user_weekly (id, courseid, userid, roleid, timeend, statsreads, statswrites, stattype) FROM stdin; +\. + + +-- +-- TOC entry 11746 (class 0 OID 0) +-- Dependencies: 281 +-- Name: mdl_stats_user_weekly_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_stats_user_weekly_id_seq', 1, false); + + +-- +-- TOC entry 9761 (class 0 OID 17200) +-- Dependencies: 276 +-- Data for Name: mdl_stats_weekly; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_stats_weekly (id, courseid, timeend, roleid, stattype, stat1, stat2) FROM stdin; +\. + + +-- +-- TOC entry 11747 (class 0 OID 0) +-- Dependencies: 275 +-- Name: mdl_stats_weekly_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_stats_weekly_id_seq', 1, false); + + +-- +-- TOC entry 10338 (class 0 OID 22001) +-- Dependencies: 853 +-- Data for Name: mdl_survey; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_survey (id, course, template, days, timecreated, timemodified, name, intro, introformat, questions, completionsubmit) FROM stdin; +1 0 0 0 985017600 985017600 collesaname collesaintro 0 25,26,27,28,29,30,43,44 0 +2 0 0 0 985017600 985017600 collespname collespintro 0 31,32,33,34,35,36,43,44 0 +3 0 0 0 985017600 985017600 collesapname collesapintro 0 37,38,39,40,41,42,43,44 0 +4 0 0 0 985017600 985017600 attlsname attlsintro 0 65,67,68 0 +5 0 0 0 985017600 985017600 ciqname ciqintro 0 69,70,71,72,73 0 +\. + + +-- +-- TOC entry 10344 (class 0 OID 22056) +-- Dependencies: 859 +-- Data for Name: mdl_survey_analysis; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_survey_analysis (id, survey, userid, notes) FROM stdin; +\. + + +-- +-- TOC entry 11748 (class 0 OID 0) +-- Dependencies: 858 +-- Name: mdl_survey_analysis_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_survey_analysis_id_seq', 1, false); + + +-- +-- TOC entry 10342 (class 0 OID 22038) +-- Dependencies: 857 +-- Data for Name: mdl_survey_answers; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_survey_answers (id, userid, survey, question, "time", answer1, answer2) FROM stdin; +\. + + +-- +-- TOC entry 11749 (class 0 OID 0) +-- Dependencies: 856 +-- Name: mdl_survey_answers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_survey_answers_id_seq', 1, false); + + +-- +-- TOC entry 11750 (class 0 OID 0) +-- Dependencies: 852 +-- Name: mdl_survey_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_survey_id_seq', 5, true); + + +-- +-- TOC entry 10340 (class 0 OID 22022) +-- Dependencies: 855 +-- Data for Name: mdl_survey_questions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_survey_questions (id, text, shorttext, multi, intro, type, options) FROM stdin; +1 colles1 colles1short 1 scaletimes5 +2 colles2 colles2short 1 scaletimes5 +3 colles3 colles3short 1 scaletimes5 +4 colles4 colles4short 1 scaletimes5 +5 colles5 colles5short 1 scaletimes5 +6 colles6 colles6short 1 scaletimes5 +7 colles7 colles7short 1 scaletimes5 +8 colles8 colles8short 1 scaletimes5 +9 colles9 colles9short 1 scaletimes5 +10 colles10 colles10short 1 scaletimes5 +11 colles11 colles11short 1 scaletimes5 +12 colles12 colles12short 1 scaletimes5 +13 colles13 colles13short 1 scaletimes5 +14 colles14 colles14short 1 scaletimes5 +15 colles15 colles15short 1 scaletimes5 +16 colles16 colles16short 1 scaletimes5 +17 colles17 colles17short 1 scaletimes5 +18 colles18 colles18short 1 scaletimes5 +19 colles19 colles19short 1 scaletimes5 +20 colles20 colles20short 1 scaletimes5 +21 colles21 colles21short 1 scaletimes5 +22 colles22 colles22short 1 scaletimes5 +23 colles23 colles23short 1 scaletimes5 +24 colles24 colles24short 1 scaletimes5 +25 collesm1 collesm1short 1,2,3,4 collesmintro 1 scaletimes5 +26 collesm2 collesm2short 5,6,7,8 collesmintro 1 scaletimes5 +27 collesm3 collesm3short 9,10,11,12 collesmintro 1 scaletimes5 +28 collesm4 collesm4short 13,14,15,16 collesmintro 1 scaletimes5 +29 collesm5 collesm5short 17,18,19,20 collesmintro 1 scaletimes5 +30 collesm6 collesm6short 21,22,23,24 collesmintro 1 scaletimes5 +31 collesm1 collesm1short 1,2,3,4 collesmintro 2 scaletimes5 +32 collesm2 collesm2short 5,6,7,8 collesmintro 2 scaletimes5 +33 collesm3 collesm3short 9,10,11,12 collesmintro 2 scaletimes5 +34 collesm4 collesm4short 13,14,15,16 collesmintro 2 scaletimes5 +35 collesm5 collesm5short 17,18,19,20 collesmintro 2 scaletimes5 +36 collesm6 collesm6short 21,22,23,24 collesmintro 2 scaletimes5 +37 collesm1 collesm1short 1,2,3,4 collesmintro 3 scaletimes5 +38 collesm2 collesm2short 5,6,7,8 collesmintro 3 scaletimes5 +39 collesm3 collesm3short 9,10,11,12 collesmintro 3 scaletimes5 +40 collesm4 collesm4short 13,14,15,16 collesmintro 3 scaletimes5 +41 collesm5 collesm5short 17,18,19,20 collesmintro 3 scaletimes5 +42 collesm6 collesm6short 21,22,23,24 collesmintro 3 scaletimes5 +43 howlong 1 howlongoptions +44 othercomments 0 \N +45 attls1 attls1short 1 scaleagree5 +46 attls2 attls2short 1 scaleagree5 +47 attls3 attls3short 1 scaleagree5 +48 attls4 attls4short 1 scaleagree5 +49 attls5 attls5short 1 scaleagree5 +50 attls6 attls6short 1 scaleagree5 +51 attls7 attls7short 1 scaleagree5 +52 attls8 attls8short 1 scaleagree5 +53 attls9 attls9short 1 scaleagree5 +54 attls10 attls10short 1 scaleagree5 +55 attls11 attls11short 1 scaleagree5 +56 attls12 attls12short 1 scaleagree5 +57 attls13 attls13short 1 scaleagree5 +58 attls14 attls14short 1 scaleagree5 +59 attls15 attls15short 1 scaleagree5 +60 attls16 attls16short 1 scaleagree5 +61 attls17 attls17short 1 scaleagree5 +62 attls18 attls18short 1 scaleagree5 +63 attls19 attls19short 1 scaleagree5 +64 attls20 attls20short 1 scaleagree5 +65 attlsm1 attlsm1 45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64 attlsmintro 1 scaleagree5 +66 - - - - 0 - +67 attlsm2 attlsm2 63,62,59,57,55,49,52,50,48,47 attlsmintro -1 scaleagree5 +68 attlsm3 attlsm3 46,54,45,51,60,53,56,58,61,64 attlsmintro -1 scaleagree5 +69 ciq1 ciq1short 0 \N +70 ciq2 ciq2short 0 \N +71 ciq3 ciq3short 0 \N +72 ciq4 ciq4short 0 \N +73 ciq5 ciq5short 0 \N +\. + + +-- +-- TOC entry 11751 (class 0 OID 0) +-- Dependencies: 854 +-- Name: mdl_survey_questions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_survey_questions_id_seq', 73, true); + + +-- +-- TOC entry 9878 (class 0 OID 18201) +-- Dependencies: 393 +-- Data for Name: mdl_tag; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tag (id, userid, tagcollid, name, rawname, isstandard, description, descriptionformat, flag, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 9876 (class 0 OID 18186) +-- Dependencies: 391 +-- Data for Name: mdl_tag_area; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tag_area (id, component, itemtype, enabled, tagcollid, callback, callbackfile, showstandard, multiplecontexts) FROM stdin; +1 core user 1 1 user_get_tagged_users /user/lib.php 2 0 +2 core course 1 1 course_get_tagged_courses /course/lib.php 0 0 +3 core_question question 1 1 \N \N 0 1 +4 core post 1 1 blog_get_tagged_posts /blog/lib.php 0 0 +5 core blog_external 1 1 \N \N 0 0 +6 core course_modules 1 1 course_get_tagged_course_modules /course/lib.php 0 0 +7 mod_book book_chapters 1 1 mod_book_get_tagged_chapters /mod/book/locallib.php 0 0 +8 mod_data data_records 1 1 mod_data_get_tagged_records /mod/data/locallib.php 0 0 +9 mod_forum forum_posts 1 1 mod_forum_get_tagged_posts /mod/forum/locallib.php 0 0 +10 mod_glossary glossary_entries 1 1 mod_glossary_get_tagged_entries /mod/glossary/locallib.php 0 0 +11 mod_wiki wiki_pages 1 1 mod_wiki_get_tagged_pages /mod/wiki/locallib.php 0 0 +\. + + +-- +-- TOC entry 11752 (class 0 OID 0) +-- Dependencies: 390 +-- Name: mdl_tag_area_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tag_area_id_seq', 11, true); + + +-- +-- TOC entry 9874 (class 0 OID 18172) +-- Dependencies: 389 +-- Data for Name: mdl_tag_coll; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tag_coll (id, name, isdefault, component, sortorder, searchable, customurl) FROM stdin; +1 \N 1 \N 0 1 \N +\. + + +-- +-- TOC entry 11753 (class 0 OID 0) +-- Dependencies: 388 +-- Name: mdl_tag_coll_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tag_coll_id_seq', 1, true); + + +-- +-- TOC entry 9880 (class 0 OID 18221) +-- Dependencies: 395 +-- Data for Name: mdl_tag_correlation; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tag_correlation (id, tagid, correlatedtags) FROM stdin; +\. + + +-- +-- TOC entry 11754 (class 0 OID 0) +-- Dependencies: 394 +-- Name: mdl_tag_correlation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tag_correlation_id_seq', 1, false); + + +-- +-- TOC entry 11755 (class 0 OID 0) +-- Dependencies: 392 +-- Name: mdl_tag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tag_id_seq', 1, false); + + +-- +-- TOC entry 9882 (class 0 OID 18233) +-- Dependencies: 397 +-- Data for Name: mdl_tag_instance; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tag_instance (id, tagid, component, itemtype, itemid, contextid, tiuserid, ordering, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11756 (class 0 OID 0) +-- Dependencies: 396 +-- Name: mdl_tag_instance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tag_instance_id_seq', 1, false); + + +-- +-- TOC entry 10012 (class 0 OID 19209) +-- Dependencies: 527 +-- Data for Name: mdl_task_adhoc; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_task_adhoc (id, component, classname, nextruntime, faildelay, customdata, userid, blocking) FROM stdin; +\. + + +-- +-- TOC entry 11757 (class 0 OID 0) +-- Dependencies: 526 +-- Name: mdl_task_adhoc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_task_adhoc_id_seq', 1, false); + + +-- +-- TOC entry 10014 (class 0 OID 19225) +-- Dependencies: 529 +-- Data for Name: mdl_task_log; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_task_log (id, type, component, classname, userid, timestart, timeend, dbreads, dbwrites, result, output) FROM stdin; +\. + + +-- +-- TOC entry 11758 (class 0 OID 0) +-- Dependencies: 528 +-- Name: mdl_task_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_task_log_id_seq', 1, false); + + +-- +-- TOC entry 10010 (class 0 OID 19187) +-- Dependencies: 525 +-- Data for Name: mdl_task_scheduled; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_task_scheduled (id, component, classname, lastruntime, nextruntime, blocking, minute, hour, day, month, dayofweek, faildelay, customised, disabled) FROM stdin; +1 moodle \\core\\task\\session_cleanup_task 0 1609808520 0 * * * * * 0 0 0 +2 moodle \\core\\task\\delete_unconfirmed_users_task 0 1609812000 0 0 * * * * 0 0 0 +3 moodle \\core\\task\\delete_incomplete_users_task 0 1609808700 0 5 * * * * 0 0 0 +4 moodle \\core\\task\\backup_cleanup_task 0 1609809000 0 10 * * * * 0 0 0 +5 moodle \\core\\task\\tag_cron_task 0 1609816380 0 13 3 * * * 0 0 0 +6 moodle \\core\\task\\context_cleanup_task 0 1609809900 0 25 * * * * 0 0 0 +7 moodle \\core\\task\\cache_cleanup_task 0 1609810200 0 30 * * * * 0 0 0 +8 moodle \\core\\task\\messaging_cleanup_task 0 1609810500 0 35 * * * * 0 0 0 +9 moodle \\core\\task\\send_new_user_passwords_task 0 1609808520 0 * * * * * 0 0 0 +10 moodle \\core\\task\\send_failed_login_notifications_task 0 1609808520 0 * * * * * 0 0 0 +11 moodle \\core\\task\\create_contexts_task 0 1609891200 1 0 0 * * * 0 0 0 +12 moodle \\core\\task\\legacy_plugin_cron_task 0 1609808520 0 * * * * * 0 0 0 +13 moodle \\core\\task\\grade_cron_task 0 1609808520 0 * * * * * 0 0 0 +14 moodle \\core\\task\\grade_history_cleanup_task 0 1609891320 0 * 0 * * * 0 0 0 +15 moodle \\core\\task\\completion_regular_task 0 1609808520 0 * * * * * 0 0 0 +16 moodle \\core\\task\\completion_daily_task 0 1609859880 0 18 15 * * * 0 0 0 +17 moodle \\core\\task\\portfolio_cron_task 0 1609808520 0 * * * * * 0 0 0 +18 moodle \\core\\task\\plagiarism_cron_task 0 1609808520 0 * * * * * 0 0 0 +19 moodle \\core\\task\\calendar_cron_task 0 1609808520 0 * * * * * 0 0 0 +20 moodle \\core\\task\\blog_cron_task 0 1609808520 0 * * * * * 0 0 0 +21 moodle \\core\\task\\question_preview_cleanup_task 0 1609808520 0 * * * * * 0 0 0 +22 moodle \\core\\task\\question_stats_cleanup_task 0 1609808520 0 * * * * * 0 0 0 +23 moodle \\core\\task\\registration_cron_task 0 1609941960 0 6 14 * * 3 0 0 0 +24 moodle \\core\\task\\check_for_updates_task 0 1609812000 0 0 */2 * * * 0 0 0 +25 moodle \\core\\task\\cache_cron_task 0 1609811400 0 50 * * * * 0 0 0 +26 moodle \\core\\task\\automated_backup_task 0 1609811400 0 50 * * * * 0 0 0 +27 moodle \\core\\task\\badges_cron_task 0 1609808700 0 */5 * * * * 0 0 0 +28 moodle \\core\\task\\badges_message_task 0 1609808700 0 */5 * * * * 0 0 0 +29 moodle \\core\\task\\file_temp_cleanup_task 0 1609829700 0 55 */6 * * * 0 0 0 +30 moodle \\core\\task\\file_trash_cleanup_task 0 1609829700 0 55 */6 * * * 0 0 0 +31 moodle \\core\\task\\search_index_task 0 1609810200 0 */30 * * * * 0 0 0 +32 moodle \\core\\task\\search_optimize_task 0 1609848900 0 15 */12 * * * 0 0 0 +33 moodle \\core\\task\\stats_cron_task 0 1609891200 0 0 0 * * * 0 0 0 +34 moodle \\core\\task\\password_reset_cleanup_task 0 1609826400 0 0 */6 * * * 0 0 0 +35 moodle \\core\\task\\complete_plans_task 0 1609808880 0 8 * * * * 0 0 0 +36 moodle \\core\\task\\sync_plans_from_template_cohorts_task 0 1609808700 0 5 * * * * 0 0 0 +37 moodle \\core_files\\task\\conversion_cleanup_task 0 1609812840 0 14 2 * * * 0 0 0 +38 moodle \\core\\oauth2\\refresh_system_tokens_task 0 1609810200 0 30 * * * * 0 0 0 +39 moodle \\core\\task\\analytics_cleanup_task 0 1609810920 0 42 * * * * 0 0 0 +40 moodle \\core\\task\\task_log_cleanup_task 0 1609874220 0 17 19 * * * 0 0 0 +41 moodle \\core\\task\\h5p_get_content_types_task 0 1612141200 0 0 1 1 * * 0 0 0 +42 qtype_random \\qtype_random\\task\\remove_unused_questions 0 1609809780 0 23 * * * * 0 0 0 +43 mod_assign \\mod_assign\\task\\cron_task 0 1609808520 0 * * * * * 0 0 0 +44 mod_chat \\mod_chat\\task\\cron_task 0 1609808700 0 */5 * * * * 0 0 0 +45 mod_forum \\mod_forum\\task\\cron_task 0 1609808520 0 * * * * * 0 0 0 +46 mod_lti \\mod_lti\\task\\clean_access_tokens 0 1609820400 0 20 4 * * * 0 0 0 +47 mod_quiz \\mod_quiz\\task\\update_overdue_attempts 0 1609808520 0 * * * * * 0 0 0 +48 mod_quiz \\mod_quiz\\task\\legacy_quiz_reports_cron 0 1609808520 0 * * * * * 0 0 0 +49 mod_quiz \\mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1609808520 0 * * * * * 0 0 0 +50 mod_scorm \\mod_scorm\\task\\cron_task 0 1609808700 0 */5 * * * * 0 0 0 +51 mod_workshop \\mod_workshop\\task\\cron_task 0 1609808520 0 * * * * * 0 0 0 +52 mod_workshop \\mod_workshop\\task\\legacy_workshop_allocation_cron 0 1609808520 0 * * * * * 0 0 0 +53 auth_cas \\auth_cas\\task\\sync_task 0 1609891200 0 0 0 * * * 0 0 1 +54 auth_db \\auth_db\\task\\sync_users 0 1609859040 0 4 15 * * * 0 0 1 +55 auth_ldap \\auth_ldap\\task\\sync_roles 0 1609891200 0 0 0 * * * 0 0 1 +56 auth_ldap \\auth_ldap\\task\\sync_task 0 1609891200 0 0 0 * * * 0 0 1 +57 auth_mnet \\auth_mnet\\task\\cron_task 0 1609808520 0 * * * * * 0 0 0 +58 enrol_category \\enrol_category\\task\\enrol_category_sync 0 1609808520 0 * * * * * 0 0 0 +59 enrol_cohort \\enrol_cohort\\task\\enrol_cohort_sync 0 1609809060 0 11 * * * * 0 0 0 +60 enrol_database \\enrol_database\\task\\sync_enrolments 0 1609873740 0 9 19 * * * 0 0 1 +61 enrol_flatfile \\enrol_flatfile\\task\\flatfile_sync_task 0 1609809300 0 15 * * * * 0 0 0 +62 enrol_imsenterprise \\enrol_imsenterprise\\task\\cron_task 0 1609809000 0 10 * * * * 0 0 0 +63 enrol_ldap \\enrol_ldap\\task\\sync_enrolments 0 1609840800 0 0 10 * * * 0 0 1 +64 enrol_lti \\enrol_lti\\task\\sync_grades 0 1609810200 0 */30 * * * * 0 0 0 +65 enrol_lti \\enrol_lti\\task\\sync_members 0 1609810200 0 */30 * * * * 0 0 0 +66 enrol_manual \\enrol_manual\\task\\sync_enrolments 0 1609809000 0 */10 * * * * 0 0 0 +67 enrol_manual \\enrol_manual\\task\\send_expiry_notifications 0 1609809000 0 */10 * * * * 0 0 0 +68 enrol_meta \\enrol_meta\\task\\enrol_meta_sync 0 1609809360 0 16 * * * * 0 0 0 +69 enrol_paypal \\enrol_paypal\\task\\process_expirations 0 1609808520 0 * * * * * 0 0 0 +70 enrol_self \\enrol_self\\task\\sync_enrolments 0 1609809000 0 */10 * * * * 0 0 0 +71 enrol_self \\enrol_self\\task\\send_expiry_notifications 0 1609809000 0 */10 * * * * 0 0 0 +72 message_email \\message_email\\task\\send_email_task 0 1609884000 0 0 22 * * * 0 0 0 +73 block_recent_activity \\block_recent_activity\\task\\cleanup 0 1609881060 0 11 21 * * * 0 0 0 +74 block_rss_client \\block_rss_client\\task\\refreshfeeds 0 1609808700 0 */5 * * * * 0 0 0 +75 editor_atto \\editor_atto\\task\\autosave_cleanup_task 0 1610374320 0 12 14 * * 1 0 0 0 +76 repository_dropbox \\repository_dropbox\\task\\cron_task 0 1609808520 0 * * * * * 0 0 0 +77 repository_filesystem \\repository_filesystem\\task\\cron_task 0 1609808520 0 * * * * * 0 0 0 +78 repository_onedrive \\repository_onedrive\\remove_temp_access_task 0 1609812360 0 6 2 * * 0 0 0 0 +79 tool_analytics \\tool_analytics\\task\\train_models 0 1609887600 0 0 23 * * * 0 0 0 +80 tool_analytics \\tool_analytics\\task\\predict_models 0 1609891200 0 0 0 * * * 0 0 0 +81 tool_cohortroles \\tool_cohortroles\\task\\cohort_role_sync 0 1609808940 0 9 * * * * 0 0 0 +82 tool_dataprivacy \\tool_dataprivacy\\task\\expired_retention_period 0 1609855200 0 0 14 * * * 0 0 0 +83 tool_dataprivacy \\tool_dataprivacy\\task\\delete_expired_contexts 0 1609819200 0 0 4 * * * 0 0 0 +84 tool_dataprivacy \\tool_dataprivacy\\task\\delete_expired_requests 0 1609859280 0 8 15 * * * 0 0 0 +85 tool_dataprivacy \\tool_dataprivacy\\task\\delete_existing_deleted_users 0 1609827600 0 20 6 * * * 0 0 1 +86 tool_langimport \\tool_langimport\\task\\update_langpacks_task 0 1609819800 0 10 4 * * * 0 0 0 +87 tool_messageinbound \\tool_messageinbound\\task\\pickup_task 0 1609808520 0 * * * * * 0 0 0 +88 tool_messageinbound \\tool_messageinbound\\task\\cleanup_task 0 1609811700 0 55 1 * * * 0 0 0 +89 tool_monitor \\tool_monitor\\task\\clean_events 0 1609808520 0 * * * * * 0 0 0 +90 tool_monitor \\tool_monitor\\task\\check_subscriptions 0 1609862640 0 4 16 * * * 0 0 0 +91 tool_recyclebin \\tool_recyclebin\\task\\cleanup_course_bin 0 1609810200 0 */30 * * * * 0 0 0 +92 tool_recyclebin \\tool_recyclebin\\task\\cleanup_category_bin 0 1609810200 0 */30 * * * * 0 0 0 +93 assignfeedback_editpdf \\assignfeedback_editpdf\\task\\convert_submissions 0 1609809300 0 */15 * * * * 0 0 0 +94 ltiservice_gradebookservices \\ltiservice_gradebookservices\\task\\cleanup_task 0 1609827660 0 21 6 * * * 0 0 0 +95 quiz_statistics \\quiz_statistics\\task\\quiz_statistics_cleanup 0 1609823220 0 7 */5 * * * 0 0 0 +96 workshopallocation_scheduled \\workshopallocation_scheduled\\task\\cron_task 0 1609808520 0 * * * * * 0 0 0 +97 logstore_legacy \\logstore_legacy\\task\\cleanup_task 0 1609823880 0 18 5 * * * 0 0 0 +98 logstore_standard \\logstore_standard\\task\\cleanup_task 0 1609820160 0 16 4 * * * 0 0 0 +\. + + +-- +-- TOC entry 11759 (class 0 OID 0) +-- Dependencies: 524 +-- Name: mdl_task_scheduled_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_task_scheduled_id_seq', 98, true); + + +-- +-- TOC entry 10436 (class 0 OID 22763) +-- Dependencies: 951 +-- Data for Name: mdl_tool_cohortroles; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tool_cohortroles (id, cohortid, roleid, userid, timecreated, timemodified, usermodified) FROM stdin; +\. + + +-- +-- TOC entry 11760 (class 0 OID 0) +-- Dependencies: 950 +-- Name: mdl_tool_cohortroles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tool_cohortroles_id_seq', 1, false); + + +-- +-- TOC entry 10438 (class 0 OID 22772) +-- Dependencies: 953 +-- Data for Name: mdl_tool_customlang; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tool_customlang (id, lang, componentid, stringid, original, master, local, timemodified, timecustomized, outdated, modified) FROM stdin; +\. + + +-- +-- TOC entry 10440 (class 0 OID 22789) +-- Dependencies: 955 +-- Data for Name: mdl_tool_customlang_components; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tool_customlang_components (id, name, version) FROM stdin; +\. + + +-- +-- TOC entry 11761 (class 0 OID 0) +-- Dependencies: 954 +-- Name: mdl_tool_customlang_components_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tool_customlang_components_id_seq', 1, false); + + +-- +-- TOC entry 11762 (class 0 OID 0) +-- Dependencies: 952 +-- Name: mdl_tool_customlang_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tool_customlang_id_seq', 1, false); + + +-- +-- TOC entry 10446 (class 0 OID 22841) +-- Dependencies: 961 +-- Data for Name: mdl_tool_dataprivacy_category; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tool_dataprivacy_category (id, name, description, descriptionformat, usermodified, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11763 (class 0 OID 0) +-- Dependencies: 960 +-- Name: mdl_tool_dataprivacy_category_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tool_dataprivacy_category_id_seq', 1, false); + + +-- +-- TOC entry 10452 (class 0 OID 22875) +-- Dependencies: 967 +-- Data for Name: mdl_tool_dataprivacy_ctxexpired; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tool_dataprivacy_ctxexpired (id, contextid, unexpiredroles, expiredroles, defaultexpired, status, usermodified, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11764 (class 0 OID 0) +-- Dependencies: 966 +-- Name: mdl_tool_dataprivacy_ctxexpired_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tool_dataprivacy_ctxexpired_id_seq', 1, false); + + +-- +-- TOC entry 10448 (class 0 OID 22853) +-- Dependencies: 963 +-- Data for Name: mdl_tool_dataprivacy_ctxinstance; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tool_dataprivacy_ctxinstance (id, contextid, purposeid, categoryid, usermodified, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11765 (class 0 OID 0) +-- Dependencies: 962 +-- Name: mdl_tool_dataprivacy_ctxinstance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tool_dataprivacy_ctxinstance_id_seq', 1, false); + + +-- +-- TOC entry 10450 (class 0 OID 22864) +-- Dependencies: 965 +-- Data for Name: mdl_tool_dataprivacy_ctxlevel; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tool_dataprivacy_ctxlevel (id, contextlevel, purposeid, categoryid, usermodified, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11766 (class 0 OID 0) +-- Dependencies: 964 +-- Name: mdl_tool_dataprivacy_ctxlevel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tool_dataprivacy_ctxlevel_id_seq', 1, false); + + +-- +-- TOC entry 10444 (class 0 OID 22828) +-- Dependencies: 959 +-- Data for Name: mdl_tool_dataprivacy_purpose; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tool_dataprivacy_purpose (id, name, description, descriptionformat, lawfulbases, sensitivedatareasons, retentionperiod, protected, usermodified, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11767 (class 0 OID 0) +-- Dependencies: 958 +-- Name: mdl_tool_dataprivacy_purpose_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tool_dataprivacy_purpose_id_seq', 1, false); + + +-- +-- TOC entry 10454 (class 0 OID 22888) +-- Dependencies: 969 +-- Data for Name: mdl_tool_dataprivacy_purposerole; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tool_dataprivacy_purposerole (id, purposeid, roleid, lawfulbases, sensitivedatareasons, retentionperiod, protected, usermodified, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11768 (class 0 OID 0) +-- Dependencies: 968 +-- Name: mdl_tool_dataprivacy_purposerole_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tool_dataprivacy_purposerole_id_seq', 1, false); + + +-- +-- TOC entry 10442 (class 0 OID 22801) +-- Dependencies: 957 +-- Data for Name: mdl_tool_dataprivacy_request; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tool_dataprivacy_request (id, type, comments, commentsformat, userid, requestedby, status, dpo, dpocomment, dpocommentformat, systemapproved, usermodified, timecreated, timemodified, creationmethod) FROM stdin; +\. + + +-- +-- TOC entry 11769 (class 0 OID 0) +-- Dependencies: 956 +-- Name: mdl_tool_dataprivacy_request_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tool_dataprivacy_request_id_seq', 1, false); + + +-- +-- TOC entry 10462 (class 0 OID 22941) +-- Dependencies: 977 +-- Data for Name: mdl_tool_monitor_events; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tool_monitor_events (id, eventname, contextid, contextlevel, contextinstanceid, link, courseid, timecreated) FROM stdin; +\. + + +-- +-- TOC entry 11770 (class 0 OID 0) +-- Dependencies: 976 +-- Name: mdl_tool_monitor_events_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tool_monitor_events_id_seq', 1, false); + + +-- +-- TOC entry 10460 (class 0 OID 22931) +-- Dependencies: 975 +-- Data for Name: mdl_tool_monitor_history; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tool_monitor_history (id, sid, userid, timesent) FROM stdin; +\. + + +-- +-- TOC entry 11771 (class 0 OID 0) +-- Dependencies: 974 +-- Name: mdl_tool_monitor_history_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tool_monitor_history_id_seq', 1, false); + + +-- +-- TOC entry 10456 (class 0 OID 22903) +-- Dependencies: 971 +-- Data for Name: mdl_tool_monitor_rules; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tool_monitor_rules (id, description, descriptionformat, name, userid, courseid, plugin, eventname, template, templateformat, frequency, timewindow, timemodified, timecreated) FROM stdin; +\. + + +-- +-- TOC entry 11772 (class 0 OID 0) +-- Dependencies: 970 +-- Name: mdl_tool_monitor_rules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tool_monitor_rules_id_seq', 1, false); + + +-- +-- TOC entry 10458 (class 0 OID 22919) +-- Dependencies: 973 +-- Data for Name: mdl_tool_monitor_subscriptions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tool_monitor_subscriptions (id, courseid, ruleid, cmid, userid, timecreated, lastnotificationsent, inactivedate) FROM stdin; +\. + + +-- +-- TOC entry 11773 (class 0 OID 0) +-- Dependencies: 972 +-- Name: mdl_tool_monitor_subscriptions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tool_monitor_subscriptions_id_seq', 1, false); + + +-- +-- TOC entry 10464 (class 0 OID 22954) +-- Dependencies: 979 +-- Data for Name: mdl_tool_policy; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tool_policy (id, sortorder, currentversionid) FROM stdin; +\. + + +-- +-- TOC entry 10468 (class 0 OID 22984) +-- Dependencies: 983 +-- Data for Name: mdl_tool_policy_acceptances; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tool_policy_acceptances (id, policyversionid, userid, status, lang, usermodified, timecreated, timemodified, note) FROM stdin; +\. + + +-- +-- TOC entry 11774 (class 0 OID 0) +-- Dependencies: 982 +-- Name: mdl_tool_policy_acceptances_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tool_policy_acceptances_id_seq', 1, false); + + +-- +-- TOC entry 11775 (class 0 OID 0) +-- Dependencies: 978 +-- Name: mdl_tool_policy_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tool_policy_id_seq', 1, false); + + +-- +-- TOC entry 10466 (class 0 OID 22964) +-- Dependencies: 981 +-- Data for Name: mdl_tool_policy_versions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tool_policy_versions (id, name, type, audience, archived, usermodified, timecreated, timemodified, policyid, agreementstyle, optional, revision, summary, summaryformat, content, contentformat) FROM stdin; +\. + + +-- +-- TOC entry 11776 (class 0 OID 0) +-- Dependencies: 980 +-- Name: mdl_tool_policy_versions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tool_policy_versions_id_seq', 1, false); + + +-- +-- TOC entry 10472 (class 0 OID 23011) +-- Dependencies: 987 +-- Data for Name: mdl_tool_recyclebin_category; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tool_recyclebin_category (id, categoryid, shortname, fullname, timecreated) FROM stdin; +\. + + +-- +-- TOC entry 11777 (class 0 OID 0) +-- Dependencies: 986 +-- Name: mdl_tool_recyclebin_category_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tool_recyclebin_category_id_seq', 1, false); + + +-- +-- TOC entry 10470 (class 0 OID 23000) +-- Dependencies: 985 +-- Data for Name: mdl_tool_recyclebin_course; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tool_recyclebin_course (id, courseid, section, module, name, timecreated) FROM stdin; +\. + + +-- +-- TOC entry 11778 (class 0 OID 0) +-- Dependencies: 984 +-- Name: mdl_tool_recyclebin_course_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tool_recyclebin_course_id_seq', 1, false); + + +-- +-- TOC entry 10476 (class 0 OID 23040) +-- Dependencies: 991 +-- Data for Name: mdl_tool_usertours_steps; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tool_usertours_steps (id, tourid, title, content, targettype, targetvalue, sortorder, configdata) FROM stdin; +\. + + +-- +-- TOC entry 11779 (class 0 OID 0) +-- Dependencies: 990 +-- Name: mdl_tool_usertours_steps_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tool_usertours_steps_id_seq', 1, false); + + +-- +-- TOC entry 10474 (class 0 OID 23026) +-- Dependencies: 989 +-- Data for Name: mdl_tool_usertours_tours; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_tool_usertours_tours (id, name, description, pathmatch, enabled, sortorder, configdata) FROM stdin; +\. + + +-- +-- TOC entry 11780 (class 0 OID 0) +-- Dependencies: 988 +-- Name: mdl_tool_usertours_tours_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_tool_usertours_tours_id_seq', 1, false); + + +-- +-- TOC entry 9677 (class 0 OID 16428) +-- Dependencies: 192 +-- Data for Name: mdl_upgrade_log; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_upgrade_log (id, type, plugin, version, targetversion, info, details, backtrace, userid, timemodified) FROM stdin; +1 0 core 2020061503.07 2020061503.07 Upgrade savepoint reached \N 0 1609808470 +2 0 core 2020061503.07 2020061503.07 Core installed \N 0 1609808479 +3 0 antivirus_clamav \N 2020061500 Starting plugin installation \N 0 1609808479 +4 0 antivirus_clamav 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 +5 0 antivirus_clamav 2020061500 2020061500 Plugin installed \N 0 1609808479 +6 0 availability_completion \N 2020061500 Starting plugin installation \N 0 1609808479 +7 0 availability_completion 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 +8 0 availability_completion 2020061500 2020061500 Plugin installed \N 0 1609808479 +9 0 availability_date \N 2020061500 Starting plugin installation \N 0 1609808479 +10 0 availability_date 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 +11 0 availability_date 2020061500 2020061500 Plugin installed \N 0 1609808479 +12 0 availability_grade \N 2020061500 Starting plugin installation \N 0 1609808479 +13 0 availability_grade 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 +14 0 availability_grade 2020061500 2020061500 Plugin installed \N 0 1609808479 +15 0 availability_group \N 2020061500 Starting plugin installation \N 0 1609808479 +16 0 availability_group 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 +17 0 availability_group 2020061500 2020061500 Plugin installed \N 0 1609808479 +18 0 availability_grouping \N 2020061500 Starting plugin installation \N 0 1609808479 +19 0 availability_grouping 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 +20 0 availability_grouping 2020061500 2020061500 Plugin installed \N 0 1609808479 +21 0 availability_profile \N 2020061500 Starting plugin installation \N 0 1609808479 +22 0 availability_profile 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 +23 0 availability_profile 2020061500 2020061500 Plugin installed \N 0 1609808479 +24 0 qtype_calculated \N 2020061500 Starting plugin installation \N 0 1609808479 +25 0 qtype_calculated 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 +26 0 qtype_calculated 2020061500 2020061500 Plugin installed \N 0 1609808479 +27 0 qtype_calculatedmulti \N 2020061500 Starting plugin installation \N 0 1609808479 +28 0 qtype_calculatedmulti 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 +29 0 qtype_calculatedmulti 2020061500 2020061500 Plugin installed \N 0 1609808479 +30 0 qtype_calculatedsimple \N 2020061500 Starting plugin installation \N 0 1609808479 +31 0 qtype_calculatedsimple 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 +32 0 qtype_calculatedsimple 2020061500 2020061500 Plugin installed \N 0 1609808479 +33 0 qtype_ddimageortext \N 2020061500 Starting plugin installation \N 0 1609808479 +34 0 qtype_ddimageortext 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 +35 0 qtype_ddimageortext 2020061500 2020061500 Plugin installed \N 0 1609808479 +36 0 qtype_ddmarker \N 2020061500 Starting plugin installation \N 0 1609808479 +37 0 qtype_ddmarker 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 +38 0 qtype_ddmarker 2020061500 2020061500 Plugin installed \N 0 1609808479 +39 0 qtype_ddwtos \N 2020061500 Starting plugin installation \N 0 1609808479 +40 0 qtype_ddwtos 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 +41 0 qtype_ddwtos 2020061500 2020061500 Plugin installed \N 0 1609808479 +42 0 qtype_description \N 2020061500 Starting plugin installation \N 0 1609808479 +43 0 qtype_description 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 +44 0 qtype_description 2020061500 2020061500 Plugin installed \N 0 1609808479 +45 0 qtype_essay \N 2020061500 Starting plugin installation \N 0 1609808479 +46 0 qtype_essay 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 +47 0 qtype_essay 2020061500 2020061500 Plugin installed \N 0 1609808479 +48 0 qtype_gapselect \N 2020061500 Starting plugin installation \N 0 1609808479 +49 0 qtype_gapselect 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 +50 0 qtype_gapselect 2020061500 2020061500 Plugin installed \N 0 1609808479 +51 0 qtype_match \N 2020061500 Starting plugin installation \N 0 1609808479 +52 0 qtype_match 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808480 +53 0 qtype_match 2020061500 2020061500 Plugin installed \N 0 1609808480 +54 0 qtype_missingtype \N 2020061500 Starting plugin installation \N 0 1609808480 +55 0 qtype_missingtype 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808480 +56 0 qtype_missingtype 2020061500 2020061500 Plugin installed \N 0 1609808480 +57 0 qtype_multianswer \N 2020061500 Starting plugin installation \N 0 1609808480 +58 0 qtype_multianswer 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808480 +59 0 qtype_multianswer 2020061500 2020061500 Plugin installed \N 0 1609808480 +60 0 qtype_multichoice \N 2020061500 Starting plugin installation \N 0 1609808480 +61 0 qtype_multichoice 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808480 +62 0 qtype_multichoice 2020061500 2020061500 Plugin installed \N 0 1609808480 +63 0 qtype_numerical \N 2020061500 Starting plugin installation \N 0 1609808480 +64 0 qtype_numerical 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808480 +65 0 qtype_numerical 2020061500 2020061500 Plugin installed \N 0 1609808480 +66 0 qtype_random \N 2020061500 Starting plugin installation \N 0 1609808480 +67 0 qtype_random 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808480 +68 0 qtype_random 2020061500 2020061500 Plugin installed \N 0 1609808480 +69 0 qtype_randomsamatch \N 2020061500 Starting plugin installation \N 0 1609808480 +70 0 qtype_randomsamatch 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808480 +71 0 qtype_randomsamatch 2020061500 2020061500 Plugin installed \N 0 1609808480 +72 0 qtype_shortanswer \N 2020061500 Starting plugin installation \N 0 1609808480 +73 0 qtype_shortanswer 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808480 +74 0 qtype_shortanswer 2020061500 2020061500 Plugin installed \N 0 1609808480 +75 0 qtype_truefalse \N 2020061500 Starting plugin installation \N 0 1609808480 +76 0 qtype_truefalse 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808480 +77 0 qtype_truefalse 2020061500 2020061500 Plugin installed \N 0 1609808480 +78 0 mod_assign \N 2020061500 Starting plugin installation \N 0 1609808480 +79 0 mod_assign 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808480 +80 0 mod_assign 2020061500 2020061500 Plugin installed \N 0 1609808481 +81 0 mod_assignment \N 2020061500 Starting plugin installation \N 0 1609808481 +82 0 mod_assignment 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808481 +83 0 mod_assignment 2020061500 2020061500 Plugin installed \N 0 1609808481 +84 0 mod_book \N 2020061500 Starting plugin installation \N 0 1609808481 +85 0 mod_book 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808481 +86 0 mod_book 2020061500 2020061500 Plugin installed \N 0 1609808481 +87 0 mod_chat \N 2020061500 Starting plugin installation \N 0 1609808481 +88 0 mod_chat 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808481 +89 0 mod_chat 2020061500 2020061500 Plugin installed \N 0 1609808481 +90 0 mod_choice \N 2020061500 Starting plugin installation \N 0 1609808481 +91 0 mod_choice 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808481 +92 0 mod_choice 2020061500 2020061500 Plugin installed \N 0 1609808482 +93 0 mod_data \N 2020061500 Starting plugin installation \N 0 1609808482 +94 0 mod_data 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808482 +95 0 mod_data 2020061500 2020061500 Plugin installed \N 0 1609808482 +96 0 mod_feedback \N 2020061500 Starting plugin installation \N 0 1609808482 +97 0 mod_feedback 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808483 +98 0 mod_feedback 2020061500 2020061500 Plugin installed \N 0 1609808483 +99 0 mod_folder \N 2020061500 Starting plugin installation \N 0 1609808483 +100 0 mod_folder 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808483 +101 0 mod_folder 2020061500 2020061500 Plugin installed \N 0 1609808483 +102 0 mod_forum \N 2020061501 Starting plugin installation \N 0 1609808483 +103 0 mod_forum 2020061501 2020061501 Upgrade savepoint reached \N 0 1609808483 +104 0 mod_forum 2020061501 2020061501 Plugin installed \N 0 1609808484 +105 0 mod_glossary \N 2020061500 Starting plugin installation \N 0 1609808484 +106 0 mod_glossary 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808485 +107 0 mod_glossary 2020061500 2020061500 Plugin installed \N 0 1609808485 +108 0 mod_h5pactivity \N 2020061500 Starting plugin installation \N 0 1609808485 +109 0 mod_h5pactivity 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808485 +110 0 mod_h5pactivity 2020061500 2020061500 Plugin installed \N 0 1609808485 +111 0 mod_imscp \N 2020061500 Starting plugin installation \N 0 1609808485 +112 0 mod_imscp 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808485 +113 0 mod_imscp 2020061500 2020061500 Plugin installed \N 0 1609808485 +114 0 mod_label \N 2020061500 Starting plugin installation \N 0 1609808485 +115 0 mod_label 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808486 +116 0 mod_label 2020061500 2020061500 Plugin installed \N 0 1609808486 +117 0 mod_lesson \N 2020061500 Starting plugin installation \N 0 1609808486 +118 0 mod_lesson 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808486 +119 0 mod_lesson 2020061500 2020061500 Plugin installed \N 0 1609808486 +120 0 mod_lti \N 2020061501 Starting plugin installation \N 0 1609808486 +121 0 mod_lti 2020061501 2020061501 Upgrade savepoint reached \N 0 1609808486 +122 0 mod_lti 2020061501 2020061501 Plugin installed \N 0 1609808486 +123 0 mod_page \N 2020061500 Starting plugin installation \N 0 1609808486 +124 0 mod_page 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808487 +125 0 mod_page 2020061500 2020061500 Plugin installed \N 0 1609808487 +126 0 mod_quiz \N 2020061500 Starting plugin installation \N 0 1609808487 +127 0 mod_quiz 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808487 +128 0 mod_quiz 2020061500 2020061500 Plugin installed \N 0 1609808487 +129 0 mod_resource \N 2020061500 Starting plugin installation \N 0 1609808487 +130 0 mod_resource 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808487 +131 0 mod_resource 2020061500 2020061500 Plugin installed \N 0 1609808487 +132 0 mod_scorm \N 2020061500 Starting plugin installation \N 0 1609808487 +133 0 mod_scorm 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808488 +134 0 mod_scorm 2020061500 2020061500 Plugin installed \N 0 1609808488 +135 0 mod_survey \N 2020061500 Starting plugin installation \N 0 1609808488 +136 0 mod_survey 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808488 +137 0 mod_survey 2020061500 2020061500 Plugin installed \N 0 1609808488 +138 0 mod_url \N 2020061500 Starting plugin installation \N 0 1609808488 +139 0 mod_url 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808488 +140 0 mod_url 2020061500 2020061500 Plugin installed \N 0 1609808488 +141 0 mod_wiki \N 2020061500 Starting plugin installation \N 0 1609808488 +142 0 mod_wiki 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808488 +143 0 mod_wiki 2020061500 2020061500 Plugin installed \N 0 1609808489 +144 0 mod_workshop \N 2020061500 Starting plugin installation \N 0 1609808489 +145 0 mod_workshop 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808489 +146 0 mod_workshop 2020061500 2020061500 Plugin installed \N 0 1609808490 +147 0 auth_cas \N 2020061501 Starting plugin installation \N 0 1609808490 +148 0 auth_cas 2020061501 2020061501 Upgrade savepoint reached \N 0 1609808490 +149 0 auth_cas 2020061501 2020061501 Plugin installed \N 0 1609808490 +150 0 auth_db \N 2020061500 Starting plugin installation \N 0 1609808490 +151 0 auth_db 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 +152 0 auth_db 2020061500 2020061500 Plugin installed \N 0 1609808490 +153 0 auth_email \N 2020061500 Starting plugin installation \N 0 1609808490 +154 0 auth_email 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 +155 0 auth_email 2020061500 2020061500 Plugin installed \N 0 1609808490 +156 0 auth_ldap \N 2020061501 Starting plugin installation \N 0 1609808490 +157 0 auth_ldap 2020061501 2020061501 Upgrade savepoint reached \N 0 1609808490 +158 0 auth_ldap 2020061501 2020061501 Plugin installed \N 0 1609808490 +159 0 auth_lti \N 2020061500 Starting plugin installation \N 0 1609808490 +160 0 auth_lti 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 +161 0 auth_lti 2020061500 2020061500 Plugin installed \N 0 1609808490 +162 0 auth_manual \N 2020061500 Starting plugin installation \N 0 1609808490 +163 0 auth_manual 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 +164 0 auth_manual 2020061500 2020061500 Plugin installed \N 0 1609808490 +165 0 auth_mnet \N 2020061500 Starting plugin installation \N 0 1609808490 +166 0 auth_mnet 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 +167 0 auth_mnet 2020061500 2020061500 Plugin installed \N 0 1609808490 +168 0 auth_nologin \N 2020061500 Starting plugin installation \N 0 1609808490 +169 0 auth_nologin 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 +170 0 auth_nologin 2020061500 2020061500 Plugin installed \N 0 1609808490 +171 0 auth_none \N 2020061500 Starting plugin installation \N 0 1609808490 +172 0 auth_none 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 +173 0 auth_none 2020061500 2020061500 Plugin installed \N 0 1609808490 +174 0 auth_oauth2 \N 2020061500 Starting plugin installation \N 0 1609808490 +175 0 auth_oauth2 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 +176 0 auth_oauth2 2020061500 2020061500 Plugin installed \N 0 1609808490 +177 0 auth_shibboleth \N 2020061500 Starting plugin installation \N 0 1609808490 +178 0 auth_shibboleth 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 +179 0 auth_shibboleth 2020061500 2020061500 Plugin installed \N 0 1609808490 +180 0 auth_webservice \N 2020061500 Starting plugin installation \N 0 1609808490 +181 0 auth_webservice 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 +182 0 auth_webservice 2020061500 2020061500 Plugin installed \N 0 1609808490 +183 0 calendartype_gregorian \N 2020061500 Starting plugin installation \N 0 1609808490 +184 0 calendartype_gregorian 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 +185 0 calendartype_gregorian 2020061500 2020061500 Plugin installed \N 0 1609808490 +186 0 customfield_checkbox \N 2020061500 Starting plugin installation \N 0 1609808490 +187 0 customfield_checkbox 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 +188 0 customfield_checkbox 2020061500 2020061500 Plugin installed \N 0 1609808490 +189 0 customfield_date \N 2020061500 Starting plugin installation \N 0 1609808490 +190 0 customfield_date 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 +191 0 customfield_date 2020061500 2020061500 Plugin installed \N 0 1609808490 +192 0 customfield_select \N 2020061500 Starting plugin installation \N 0 1609808490 +193 0 customfield_select 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 +194 0 customfield_select 2020061500 2020061500 Plugin installed \N 0 1609808490 +195 0 customfield_text \N 2020061500 Starting plugin installation \N 0 1609808490 +196 0 customfield_text 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 +197 0 customfield_text 2020061500 2020061500 Plugin installed \N 0 1609808490 +198 0 customfield_textarea \N 2020061500 Starting plugin installation \N 0 1609808490 +199 0 customfield_textarea 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 +200 0 customfield_textarea 2020061500 2020061500 Plugin installed \N 0 1609808490 +201 0 enrol_category \N 2020061500 Starting plugin installation \N 0 1609808490 +202 0 enrol_category 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 +203 0 enrol_category 2020061500 2020061500 Plugin installed \N 0 1609808490 +204 0 enrol_cohort \N 2020061500 Starting plugin installation \N 0 1609808490 +205 0 enrol_cohort 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 +206 0 enrol_cohort 2020061500 2020061500 Plugin installed \N 0 1609808491 +207 0 enrol_database \N 2020061500 Starting plugin installation \N 0 1609808491 +208 0 enrol_database 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808491 +209 0 enrol_database 2020061500 2020061500 Plugin installed \N 0 1609808491 +210 0 enrol_flatfile \N 2020061500 Starting plugin installation \N 0 1609808491 +211 0 enrol_flatfile 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808491 +212 0 enrol_flatfile 2020061500 2020061500 Plugin installed \N 0 1609808491 +213 0 enrol_guest \N 2020061500 Starting plugin installation \N 0 1609808491 +214 0 enrol_guest 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808491 +215 0 enrol_guest 2020061500 2020061500 Plugin installed \N 0 1609808491 +216 0 enrol_imsenterprise \N 2020061500 Starting plugin installation \N 0 1609808491 +217 0 enrol_imsenterprise 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808491 +218 0 enrol_imsenterprise 2020061500 2020061500 Plugin installed \N 0 1609808491 +219 0 enrol_ldap \N 2020061500 Starting plugin installation \N 0 1609808491 +220 0 enrol_ldap 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808491 +221 0 enrol_ldap 2020061500 2020061500 Plugin installed \N 0 1609808491 +222 0 enrol_lti \N 2020061500 Starting plugin installation \N 0 1609808491 +223 0 enrol_lti 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808491 +224 0 enrol_lti 2020061500 2020061500 Plugin installed \N 0 1609808491 +225 0 enrol_manual \N 2020061500 Starting plugin installation \N 0 1609808491 +226 0 enrol_manual 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808491 +227 0 enrol_manual 2020061500 2020061500 Plugin installed \N 0 1609808491 +228 0 enrol_meta \N 2020061500 Starting plugin installation \N 0 1609808491 +229 0 enrol_meta 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808491 +230 0 enrol_meta 2020061500 2020061500 Plugin installed \N 0 1609808491 +231 0 enrol_mnet \N 2020061500 Starting plugin installation \N 0 1609808491 +232 0 enrol_mnet 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808491 +233 0 enrol_mnet 2020061500 2020061500 Plugin installed \N 0 1609808491 +234 0 enrol_paypal \N 2020061500 Starting plugin installation \N 0 1609808491 +235 0 enrol_paypal 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808491 +236 0 enrol_paypal 2020061500 2020061500 Plugin installed \N 0 1609808492 +237 0 enrol_self \N 2020061500 Starting plugin installation \N 0 1609808492 +238 0 enrol_self 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808492 +239 0 enrol_self 2020061500 2020061500 Plugin installed \N 0 1609808492 +240 0 message_airnotifier \N 2020061500 Starting plugin installation \N 0 1609808492 +241 0 message_airnotifier 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808492 +242 0 message_airnotifier 2020061500 2020061500 Plugin installed \N 0 1609808492 +243 0 message_email \N 2020061500 Starting plugin installation \N 0 1609808492 +244 0 message_email 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808492 +245 0 message_email 2020061500 2020061500 Plugin installed \N 0 1609808492 +246 0 message_jabber \N 2020061500 Starting plugin installation \N 0 1609808492 +247 0 message_jabber 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808492 +248 0 message_jabber 2020061500 2020061500 Plugin installed \N 0 1609808492 +249 0 message_popup \N 2020061500 Starting plugin installation \N 0 1609808492 +250 0 message_popup 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808492 +251 0 message_popup 2020061500 2020061500 Plugin installed \N 0 1609808492 +252 0 block_activity_modules \N 2020061500 Starting plugin installation \N 0 1609808492 +253 0 block_activity_modules 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808492 +254 0 block_activity_modules 2020061500 2020061500 Plugin installed \N 0 1609808492 +255 0 block_activity_results \N 2020061500 Starting plugin installation \N 0 1609808492 +256 0 block_activity_results 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808492 +257 0 block_activity_results 2020061500 2020061500 Plugin installed \N 0 1609808492 +258 0 block_admin_bookmarks \N 2020061500 Starting plugin installation \N 0 1609808492 +259 0 block_admin_bookmarks 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808492 +260 0 block_admin_bookmarks 2020061500 2020061500 Plugin installed \N 0 1609808492 +261 0 block_badges \N 2020061500 Starting plugin installation \N 0 1609808492 +262 0 block_badges 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808492 +263 0 block_badges 2020061500 2020061500 Plugin installed \N 0 1609808493 +264 0 block_blog_menu \N 2020061500 Starting plugin installation \N 0 1609808493 +265 0 block_blog_menu 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 +266 0 block_blog_menu 2020061500 2020061500 Plugin installed \N 0 1609808493 +267 0 block_blog_recent \N 2020061500 Starting plugin installation \N 0 1609808493 +268 0 block_blog_recent 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 +269 0 block_blog_recent 2020061500 2020061500 Plugin installed \N 0 1609808493 +270 0 block_blog_tags \N 2020061500 Starting plugin installation \N 0 1609808493 +271 0 block_blog_tags 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 +272 0 block_blog_tags 2020061500 2020061500 Plugin installed \N 0 1609808493 +273 0 block_calendar_month \N 2020061500 Starting plugin installation \N 0 1609808493 +274 0 block_calendar_month 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 +275 0 block_calendar_month 2020061500 2020061500 Plugin installed \N 0 1609808493 +276 0 block_calendar_upcoming \N 2020061500 Starting plugin installation \N 0 1609808493 +277 0 block_calendar_upcoming 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 +278 0 block_calendar_upcoming 2020061500 2020061500 Plugin installed \N 0 1609808493 +279 0 block_comments \N 2020061500 Starting plugin installation \N 0 1609808493 +280 0 block_comments 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 +281 0 block_comments 2020061500 2020061500 Plugin installed \N 0 1609808493 +282 0 block_completionstatus \N 2020061500 Starting plugin installation \N 0 1609808493 +283 0 block_completionstatus 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 +284 0 block_completionstatus 2020061500 2020061500 Plugin installed \N 0 1609808493 +285 0 block_course_list \N 2020061500 Starting plugin installation \N 0 1609808493 +286 0 block_course_list 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 +287 0 block_course_list 2020061500 2020061500 Plugin installed \N 0 1609808493 +288 0 block_course_summary \N 2020061500 Starting plugin installation \N 0 1609808493 +289 0 block_course_summary 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 +290 0 block_course_summary 2020061500 2020061500 Plugin installed \N 0 1609808493 +291 0 block_feedback \N 2020061500 Starting plugin installation \N 0 1609808493 +292 0 block_feedback 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 +293 0 block_feedback 2020061500 2020061500 Plugin installed \N 0 1609808493 +294 0 block_globalsearch \N 2020061500 Starting plugin installation \N 0 1609808493 +295 0 block_globalsearch 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 +296 0 block_globalsearch 2020061500 2020061500 Plugin installed \N 0 1609808493 +297 0 block_glossary_random \N 2020061500 Starting plugin installation \N 0 1609808493 +298 0 block_glossary_random 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 +299 0 block_glossary_random 2020061500 2020061500 Plugin installed \N 0 1609808493 +300 0 block_html \N 2020061500 Starting plugin installation \N 0 1609808493 +301 0 block_html 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 +302 0 block_html 2020061500 2020061500 Plugin installed \N 0 1609808493 +303 0 block_login \N 2020061500 Starting plugin installation \N 0 1609808493 +304 0 block_login 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 +305 0 block_login 2020061500 2020061500 Plugin installed \N 0 1609808493 +306 0 block_lp \N 2020061500 Starting plugin installation \N 0 1609808493 +307 0 block_lp 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 +308 0 block_lp 2020061500 2020061500 Plugin installed \N 0 1609808494 +309 0 block_mentees \N 2020061500 Starting plugin installation \N 0 1609808494 +310 0 block_mentees 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 +311 0 block_mentees 2020061500 2020061500 Plugin installed \N 0 1609808494 +312 0 block_mnet_hosts \N 2020061500 Starting plugin installation \N 0 1609808494 +313 0 block_mnet_hosts 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 +314 0 block_mnet_hosts 2020061500 2020061500 Plugin installed \N 0 1609808494 +315 0 block_myoverview \N 2020061500 Starting plugin installation \N 0 1609808494 +316 0 block_myoverview 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 +317 0 block_myoverview 2020061500 2020061500 Plugin installed \N 0 1609808494 +318 0 block_myprofile \N 2020061500 Starting plugin installation \N 0 1609808494 +319 0 block_myprofile 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 +320 0 block_myprofile 2020061500 2020061500 Plugin installed \N 0 1609808494 +321 0 block_navigation \N 2020061500 Starting plugin installation \N 0 1609808494 +322 0 block_navigation 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 +323 0 block_navigation 2020061500 2020061500 Plugin installed \N 0 1609808494 +324 0 block_news_items \N 2020061500 Starting plugin installation \N 0 1609808494 +325 0 block_news_items 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 +326 0 block_news_items 2020061500 2020061500 Plugin installed \N 0 1609808494 +327 0 block_online_users \N 2020061500 Starting plugin installation \N 0 1609808494 +328 0 block_online_users 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 +329 0 block_online_users 2020061500 2020061500 Plugin installed \N 0 1609808494 +330 0 block_private_files \N 2020061500 Starting plugin installation \N 0 1609808494 +331 0 block_private_files 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 +332 0 block_private_files 2020061500 2020061500 Plugin installed \N 0 1609808494 +333 0 block_quiz_results \N 2020061500 Starting plugin installation \N 0 1609808494 +334 0 block_quiz_results 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 +335 0 block_quiz_results 2020061500 2020061500 Plugin installed \N 0 1609808494 +336 0 block_recent_activity \N 2020061500 Starting plugin installation \N 0 1609808494 +337 0 block_recent_activity 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 +338 0 block_recent_activity 2020061500 2020061500 Plugin installed \N 0 1609808494 +339 0 block_recentlyaccessedcourses \N 2020061500 Starting plugin installation \N 0 1609808494 +340 0 block_recentlyaccessedcourses 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 +341 0 block_recentlyaccessedcourses 2020061500 2020061500 Plugin installed \N 0 1609808494 +342 0 block_recentlyaccesseditems \N 2020061500 Starting plugin installation \N 0 1609808494 +343 0 block_recentlyaccesseditems 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 +344 0 block_recentlyaccesseditems 2020061500 2020061500 Plugin installed \N 0 1609808494 +345 0 block_rss_client \N 2020061500 Starting plugin installation \N 0 1609808494 +346 0 block_rss_client 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 +347 0 block_rss_client 2020061500 2020061500 Plugin installed \N 0 1609808495 +348 0 block_search_forums \N 2020061500 Starting plugin installation \N 0 1609808495 +349 0 block_search_forums 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 +350 0 block_search_forums 2020061500 2020061500 Plugin installed \N 0 1609808495 +351 0 block_section_links \N 2020061500 Starting plugin installation \N 0 1609808495 +352 0 block_section_links 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 +353 0 block_section_links 2020061500 2020061500 Plugin installed \N 0 1609808495 +354 0 block_selfcompletion \N 2020061500 Starting plugin installation \N 0 1609808495 +355 0 block_selfcompletion 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 +356 0 block_selfcompletion 2020061500 2020061500 Plugin installed \N 0 1609808495 +357 0 block_settings \N 2020061500 Starting plugin installation \N 0 1609808495 +358 0 block_settings 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 +359 0 block_settings 2020061500 2020061500 Plugin installed \N 0 1609808495 +360 0 block_site_main_menu \N 2020061500 Starting plugin installation \N 0 1609808495 +361 0 block_site_main_menu 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 +362 0 block_site_main_menu 2020061500 2020061500 Plugin installed \N 0 1609808495 +363 0 block_social_activities \N 2020061500 Starting plugin installation \N 0 1609808495 +364 0 block_social_activities 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 +365 0 block_social_activities 2020061500 2020061500 Plugin installed \N 0 1609808495 +366 0 block_starredcourses \N 2020061500 Starting plugin installation \N 0 1609808495 +367 0 block_starredcourses 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 +368 0 block_starredcourses 2020061500 2020061500 Plugin installed \N 0 1609808495 +369 0 block_tag_flickr \N 2020061500 Starting plugin installation \N 0 1609808495 +370 0 block_tag_flickr 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 +371 0 block_tag_flickr 2020061500 2020061500 Plugin installed \N 0 1609808495 +372 0 block_tag_youtube \N 2020061501 Starting plugin installation \N 0 1609808495 +373 0 block_tag_youtube 2020061501 2020061501 Upgrade savepoint reached \N 0 1609808495 +374 0 block_tag_youtube 2020061501 2020061501 Plugin installed \N 0 1609808495 +375 0 block_tags \N 2020061500 Starting plugin installation \N 0 1609808495 +376 0 block_tags 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 +377 0 block_tags 2020061500 2020061500 Plugin installed \N 0 1609808495 +378 0 block_timeline \N 2020061500 Starting plugin installation \N 0 1609808495 +379 0 block_timeline 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 +380 0 block_timeline 2020061500 2020061500 Plugin installed \N 0 1609808495 +381 0 media_html5audio \N 2020061500 Starting plugin installation \N 0 1609808495 +382 0 media_html5audio 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 +383 0 media_html5audio 2020061500 2020061500 Plugin installed \N 0 1609808495 +384 0 media_html5video \N 2020061500 Starting plugin installation \N 0 1609808495 +385 0 media_html5video 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 +386 0 media_html5video 2020061500 2020061500 Plugin installed \N 0 1609808495 +387 0 media_swf \N 2020061500 Starting plugin installation \N 0 1609808495 +388 0 media_swf 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 +389 0 media_swf 2020061500 2020061500 Plugin installed \N 0 1609808495 +390 0 media_videojs \N 2020061500 Starting plugin installation \N 0 1609808495 +391 0 media_videojs 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 +392 0 media_videojs 2020061500 2020061500 Plugin installed \N 0 1609808495 +393 0 media_vimeo \N 2020061500 Starting plugin installation \N 0 1609808495 +394 0 media_vimeo 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 +395 0 media_vimeo 2020061500 2020061500 Plugin installed \N 0 1609808495 +396 0 media_youtube \N 2020061500 Starting plugin installation \N 0 1609808495 +397 0 media_youtube 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 +398 0 media_youtube 2020061500 2020061500 Plugin installed \N 0 1609808496 +399 0 filter_activitynames \N 2020061500 Starting plugin installation \N 0 1609808496 +400 0 filter_activitynames 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +401 0 filter_activitynames 2020061500 2020061500 Plugin installed \N 0 1609808496 +402 0 filter_algebra \N 2020061500 Starting plugin installation \N 0 1609808496 +403 0 filter_algebra 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +404 0 filter_algebra 2020061500 2020061500 Plugin installed \N 0 1609808496 +405 0 filter_censor \N 2020061500 Starting plugin installation \N 0 1609808496 +406 0 filter_censor 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +407 0 filter_censor 2020061500 2020061500 Plugin installed \N 0 1609808496 +408 0 filter_data \N 2020061500 Starting plugin installation \N 0 1609808496 +409 0 filter_data 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +410 0 filter_data 2020061500 2020061500 Plugin installed \N 0 1609808496 +411 0 filter_displayh5p \N 2020061500 Starting plugin installation \N 0 1609808496 +412 0 filter_displayh5p 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +413 0 filter_displayh5p 2020061500 2020061500 Plugin installed \N 0 1609808496 +414 0 filter_emailprotect \N 2020061500 Starting plugin installation \N 0 1609808496 +415 0 filter_emailprotect 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +416 0 filter_emailprotect 2020061500 2020061500 Plugin installed \N 0 1609808496 +417 0 filter_emoticon \N 2020061500 Starting plugin installation \N 0 1609808496 +418 0 filter_emoticon 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +419 0 filter_emoticon 2020061500 2020061500 Plugin installed \N 0 1609808496 +420 0 filter_glossary \N 2020061500 Starting plugin installation \N 0 1609808496 +421 0 filter_glossary 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +422 0 filter_glossary 2020061500 2020061500 Plugin installed \N 0 1609808496 +423 0 filter_mathjaxloader \N 2020061500 Starting plugin installation \N 0 1609808496 +424 0 filter_mathjaxloader 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +425 0 filter_mathjaxloader 2020061500 2020061500 Plugin installed \N 0 1609808496 +426 0 filter_mediaplugin \N 2020061500 Starting plugin installation \N 0 1609808496 +427 0 filter_mediaplugin 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +428 0 filter_mediaplugin 2020061500 2020061500 Plugin installed \N 0 1609808496 +429 0 filter_multilang \N 2020061500 Starting plugin installation \N 0 1609808496 +430 0 filter_multilang 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +431 0 filter_multilang 2020061500 2020061500 Plugin installed \N 0 1609808496 +432 0 filter_tex \N 2020061500 Starting plugin installation \N 0 1609808496 +433 0 filter_tex 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +434 0 filter_tex 2020061500 2020061500 Plugin installed \N 0 1609808496 +435 0 filter_tidy \N 2020061500 Starting plugin installation \N 0 1609808496 +436 0 filter_tidy 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +437 0 filter_tidy 2020061500 2020061500 Plugin installed \N 0 1609808496 +438 0 filter_urltolink \N 2020061500 Starting plugin installation \N 0 1609808496 +439 0 filter_urltolink 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +440 0 filter_urltolink 2020061500 2020061500 Plugin installed \N 0 1609808496 +441 0 editor_atto \N 2020061500 Starting plugin installation \N 0 1609808496 +442 0 editor_atto 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +443 0 editor_atto 2020061500 2020061500 Plugin installed \N 0 1609808496 +444 0 editor_textarea \N 2020061500 Starting plugin installation \N 0 1609808496 +445 0 editor_textarea 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +446 0 editor_textarea 2020061500 2020061500 Plugin installed \N 0 1609808496 +447 0 editor_tinymce \N 2020061500 Starting plugin installation \N 0 1609808496 +448 0 editor_tinymce 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +449 0 editor_tinymce 2020061500 2020061500 Plugin installed \N 0 1609808496 +450 0 format_singleactivity \N 2020061500 Starting plugin installation \N 0 1609808496 +451 0 format_singleactivity 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +452 0 format_singleactivity 2020061500 2020061500 Plugin installed \N 0 1609808496 +453 0 format_social \N 2020061500 Starting plugin installation \N 0 1609808496 +454 0 format_social 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +455 0 format_social 2020061500 2020061500 Plugin installed \N 0 1609808496 +456 0 format_topics \N 2020061500 Starting plugin installation \N 0 1609808496 +457 0 format_topics 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +458 0 format_topics 2020061500 2020061500 Plugin installed \N 0 1609808496 +459 0 format_weeks \N 2020061500 Starting plugin installation \N 0 1609808496 +460 0 format_weeks 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +461 0 format_weeks 2020061500 2020061500 Plugin installed \N 0 1609808496 +462 0 dataformat_csv \N 2020061500 Starting plugin installation \N 0 1609808496 +463 0 dataformat_csv 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +464 0 dataformat_csv 2020061500 2020061500 Plugin installed \N 0 1609808496 +465 0 dataformat_excel \N 2020061500 Starting plugin installation \N 0 1609808496 +466 0 dataformat_excel 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +467 0 dataformat_excel 2020061500 2020061500 Plugin installed \N 0 1609808496 +468 0 dataformat_html \N 2020061500 Starting plugin installation \N 0 1609808496 +469 0 dataformat_html 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +470 0 dataformat_html 2020061500 2020061500 Plugin installed \N 0 1609808496 +471 0 dataformat_json \N 2020061500 Starting plugin installation \N 0 1609808496 +472 0 dataformat_json 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +473 0 dataformat_json 2020061500 2020061500 Plugin installed \N 0 1609808496 +474 0 dataformat_ods \N 2020061500 Starting plugin installation \N 0 1609808496 +475 0 dataformat_ods 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 +476 0 dataformat_ods 2020061500 2020061500 Plugin installed \N 0 1609808497 +477 0 dataformat_pdf \N 2020061500 Starting plugin installation \N 0 1609808497 +478 0 dataformat_pdf 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 +479 0 dataformat_pdf 2020061500 2020061500 Plugin installed \N 0 1609808497 +480 0 profilefield_checkbox \N 2020061500 Starting plugin installation \N 0 1609808497 +481 0 profilefield_checkbox 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 +482 0 profilefield_checkbox 2020061500 2020061500 Plugin installed \N 0 1609808497 +483 0 profilefield_datetime \N 2020061500 Starting plugin installation \N 0 1609808497 +484 0 profilefield_datetime 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 +485 0 profilefield_datetime 2020061500 2020061500 Plugin installed \N 0 1609808497 +486 0 profilefield_menu \N 2020061500 Starting plugin installation \N 0 1609808497 +487 0 profilefield_menu 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 +488 0 profilefield_menu 2020061500 2020061500 Plugin installed \N 0 1609808497 +489 0 profilefield_text \N 2020061500 Starting plugin installation \N 0 1609808497 +490 0 profilefield_text 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 +491 0 profilefield_text 2020061500 2020061500 Plugin installed \N 0 1609808497 +492 0 profilefield_textarea \N 2020061500 Starting plugin installation \N 0 1609808497 +493 0 profilefield_textarea 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 +494 0 profilefield_textarea 2020061500 2020061500 Plugin installed \N 0 1609808497 +495 0 report_backups \N 2020061500 Starting plugin installation \N 0 1609808497 +496 0 report_backups 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 +497 0 report_backups 2020061500 2020061500 Plugin installed \N 0 1609808497 +498 0 report_competency \N 2020061500 Starting plugin installation \N 0 1609808497 +499 0 report_competency 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 +500 0 report_competency 2020061500 2020061500 Plugin installed \N 0 1609808497 +501 0 report_completion \N 2020061500 Starting plugin installation \N 0 1609808497 +502 0 report_completion 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 +503 0 report_completion 2020061500 2020061500 Plugin installed \N 0 1609808497 +504 0 report_configlog \N 2020061500 Starting plugin installation \N 0 1609808497 +505 0 report_configlog 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 +506 0 report_configlog 2020061500 2020061500 Plugin installed \N 0 1609808497 +507 0 report_courseoverview \N 2020061500 Starting plugin installation \N 0 1609808497 +508 0 report_courseoverview 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 +509 0 report_courseoverview 2020061500 2020061500 Plugin installed \N 0 1609808497 +510 0 report_eventlist \N 2020061500 Starting plugin installation \N 0 1609808497 +511 0 report_eventlist 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 +512 0 report_eventlist 2020061500 2020061500 Plugin installed \N 0 1609808497 +513 0 report_insights \N 2020061500 Starting plugin installation \N 0 1609808497 +514 0 report_insights 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 +515 0 report_insights 2020061500 2020061500 Plugin installed \N 0 1609808497 +516 0 report_log \N 2020061500 Starting plugin installation \N 0 1609808497 +517 0 report_log 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 +518 0 report_log 2020061500 2020061500 Plugin installed \N 0 1609808497 +519 0 report_loglive \N 2020061500 Starting plugin installation \N 0 1609808497 +520 0 report_loglive 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 +521 0 report_loglive 2020061500 2020061500 Plugin installed \N 0 1609808497 +522 0 report_outline \N 2020061500 Starting plugin installation \N 0 1609808497 +523 0 report_outline 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 +524 0 report_outline 2020061500 2020061500 Plugin installed \N 0 1609808497 +525 0 report_participation \N 2020061500 Starting plugin installation \N 0 1609808497 +526 0 report_participation 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 +527 0 report_participation 2020061500 2020061500 Plugin installed \N 0 1609808497 +528 0 report_performance \N 2020061500 Starting plugin installation \N 0 1609808497 +529 0 report_performance 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 +530 0 report_performance 2020061500 2020061500 Plugin installed \N 0 1609808497 +531 0 report_progress \N 2020061500 Starting plugin installation \N 0 1609808497 +532 0 report_progress 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 +533 0 report_progress 2020061500 2020061500 Plugin installed \N 0 1609808497 +534 0 report_questioninstances \N 2020061500 Starting plugin installation \N 0 1609808497 +535 0 report_questioninstances 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 +536 0 report_questioninstances 2020061500 2020061500 Plugin installed \N 0 1609808498 +537 0 report_security \N 2020061500 Starting plugin installation \N 0 1609808498 +538 0 report_security 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 +539 0 report_security 2020061500 2020061500 Plugin installed \N 0 1609808498 +540 0 report_stats \N 2020061500 Starting plugin installation \N 0 1609808498 +541 0 report_stats 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 +542 0 report_stats 2020061500 2020061500 Plugin installed \N 0 1609808498 +543 0 report_status \N 2020061500 Starting plugin installation \N 0 1609808498 +544 0 report_status 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 +545 0 report_status 2020061500 2020061500 Plugin installed \N 0 1609808498 +546 0 report_usersessions \N 2020061500 Starting plugin installation \N 0 1609808498 +547 0 report_usersessions 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 +548 0 report_usersessions 2020061500 2020061500 Plugin installed \N 0 1609808498 +549 0 gradeexport_ods \N 2020061500 Starting plugin installation \N 0 1609808498 +550 0 gradeexport_ods 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 +551 0 gradeexport_ods 2020061500 2020061500 Plugin installed \N 0 1609808498 +552 0 gradeexport_txt \N 2020061500 Starting plugin installation \N 0 1609808498 +553 0 gradeexport_txt 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 +554 0 gradeexport_txt 2020061500 2020061500 Plugin installed \N 0 1609808498 +555 0 gradeexport_xls \N 2020061500 Starting plugin installation \N 0 1609808498 +556 0 gradeexport_xls 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 +557 0 gradeexport_xls 2020061500 2020061500 Plugin installed \N 0 1609808498 +558 0 gradeexport_xml \N 2020061500 Starting plugin installation \N 0 1609808498 +559 0 gradeexport_xml 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 +560 0 gradeexport_xml 2020061500 2020061500 Plugin installed \N 0 1609808498 +561 0 gradeimport_csv \N 2020061500 Starting plugin installation \N 0 1609808498 +562 0 gradeimport_csv 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 +563 0 gradeimport_csv 2020061500 2020061500 Plugin installed \N 0 1609808498 +564 0 gradeimport_direct \N 2020061500 Starting plugin installation \N 0 1609808498 +565 0 gradeimport_direct 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 +566 0 gradeimport_direct 2020061500 2020061500 Plugin installed \N 0 1609808498 +567 0 gradeimport_xml \N 2020061500 Starting plugin installation \N 0 1609808498 +568 0 gradeimport_xml 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 +569 0 gradeimport_xml 2020061500 2020061500 Plugin installed \N 0 1609808498 +570 0 gradereport_grader \N 2020061500 Starting plugin installation \N 0 1609808498 +571 0 gradereport_grader 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 +572 0 gradereport_grader 2020061500 2020061500 Plugin installed \N 0 1609808498 +573 0 gradereport_history \N 2020061500 Starting plugin installation \N 0 1609808498 +574 0 gradereport_history 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 +575 0 gradereport_history 2020061500 2020061500 Plugin installed \N 0 1609808498 +576 0 gradereport_outcomes \N 2020061500 Starting plugin installation \N 0 1609808498 +577 0 gradereport_outcomes 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 +578 0 gradereport_outcomes 2020061500 2020061500 Plugin installed \N 0 1609808498 +579 0 gradereport_overview \N 2020061500 Starting plugin installation \N 0 1609808498 +580 0 gradereport_overview 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 +581 0 gradereport_overview 2020061500 2020061500 Plugin installed \N 0 1609808498 +582 0 gradereport_singleview \N 2020061500 Starting plugin installation \N 0 1609808498 +583 0 gradereport_singleview 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 +584 0 gradereport_singleview 2020061500 2020061500 Plugin installed \N 0 1609808499 +585 0 gradereport_user \N 2020061500 Starting plugin installation \N 0 1609808499 +586 0 gradereport_user 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 +587 0 gradereport_user 2020061500 2020061500 Plugin installed \N 0 1609808499 +588 0 gradingform_guide \N 2020061500 Starting plugin installation \N 0 1609808499 +589 0 gradingform_guide 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 +590 0 gradingform_guide 2020061500 2020061500 Plugin installed \N 0 1609808499 +591 0 gradingform_rubric \N 2020061500 Starting plugin installation \N 0 1609808499 +592 0 gradingform_rubric 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 +593 0 gradingform_rubric 2020061500 2020061500 Plugin installed \N 0 1609808499 +594 0 mlbackend_php \N 2020061500 Starting plugin installation \N 0 1609808499 +595 0 mlbackend_php 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 +596 0 mlbackend_php 2020061500 2020061500 Plugin installed \N 0 1609808499 +597 0 mlbackend_python \N 2020061500 Starting plugin installation \N 0 1609808499 +598 0 mlbackend_python 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 +599 0 mlbackend_python 2020061500 2020061500 Plugin installed \N 0 1609808499 +600 0 mnetservice_enrol \N 2020061500 Starting plugin installation \N 0 1609808499 +601 0 mnetservice_enrol 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 +602 0 mnetservice_enrol 2020061500 2020061500 Plugin installed \N 0 1609808499 +603 0 webservice_rest \N 2020061500 Starting plugin installation \N 0 1609808499 +604 0 webservice_rest 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 +605 0 webservice_rest 2020061500 2020061500 Plugin installed \N 0 1609808499 +606 0 webservice_soap \N 2020061500 Starting plugin installation \N 0 1609808499 +607 0 webservice_soap 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 +608 0 webservice_soap 2020061500 2020061500 Plugin installed \N 0 1609808499 +609 0 webservice_xmlrpc \N 2020061500 Starting plugin installation \N 0 1609808499 +610 0 webservice_xmlrpc 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 +611 0 webservice_xmlrpc 2020061500 2020061500 Plugin installed \N 0 1609808499 +612 0 repository_areafiles \N 2020061500 Starting plugin installation \N 0 1609808499 +613 0 repository_areafiles 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 +614 0 repository_areafiles 2020061500 2020061500 Plugin installed \N 0 1609808499 +615 0 repository_boxnet \N 2020061500 Starting plugin installation \N 0 1609808499 +616 0 repository_boxnet 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 +617 0 repository_boxnet 2020061500 2020061500 Plugin installed \N 0 1609808499 +618 0 repository_contentbank \N 2020061500 Starting plugin installation \N 0 1609808499 +619 0 repository_contentbank 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 +620 0 repository_contentbank 2020061500 2020061500 Plugin installed \N 0 1609808499 +621 0 repository_coursefiles \N 2020061500 Starting plugin installation \N 0 1609808499 +622 0 repository_coursefiles 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 +623 0 repository_coursefiles 2020061500 2020061500 Plugin installed \N 0 1609808499 +624 0 repository_dropbox \N 2020061500 Starting plugin installation \N 0 1609808499 +625 0 repository_dropbox 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 +626 0 repository_dropbox 2020061500 2020061500 Plugin installed \N 0 1609808499 +627 0 repository_equella \N 2020061500 Starting plugin installation \N 0 1609808499 +628 0 repository_equella 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 +629 0 repository_equella 2020061500 2020061500 Plugin installed \N 0 1609808499 +630 0 repository_filesystem \N 2020061500 Starting plugin installation \N 0 1609808499 +631 0 repository_filesystem 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 +632 0 repository_filesystem 2020061500 2020061500 Plugin installed \N 0 1609808500 +633 0 repository_flickr \N 2020061500 Starting plugin installation \N 0 1609808500 +634 0 repository_flickr 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 +635 0 repository_flickr 2020061500 2020061500 Plugin installed \N 0 1609808500 +636 0 repository_flickr_public \N 2020061500 Starting plugin installation \N 0 1609808500 +637 0 repository_flickr_public 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 +638 0 repository_flickr_public 2020061500 2020061500 Plugin installed \N 0 1609808500 +639 0 repository_googledocs \N 2020061500 Starting plugin installation \N 0 1609808500 +640 0 repository_googledocs 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 +641 0 repository_googledocs 2020061500 2020061500 Plugin installed \N 0 1609808500 +642 0 repository_local \N 2020061500 Starting plugin installation \N 0 1609808500 +643 0 repository_local 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 +644 0 repository_local 2020061500 2020061500 Plugin installed \N 0 1609808500 +645 0 repository_merlot \N 2020061500 Starting plugin installation \N 0 1609808500 +646 0 repository_merlot 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 +647 0 repository_merlot 2020061500 2020061500 Plugin installed \N 0 1609808500 +648 0 repository_nextcloud \N 2020061500 Starting plugin installation \N 0 1609808500 +649 0 repository_nextcloud 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 +650 0 repository_nextcloud 2020061500 2020061500 Plugin installed \N 0 1609808500 +651 0 repository_onedrive \N 2020061500 Starting plugin installation \N 0 1609808500 +652 0 repository_onedrive 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 +653 0 repository_onedrive 2020061500 2020061500 Plugin installed \N 0 1609808500 +654 0 repository_picasa \N 2020061500 Starting plugin installation \N 0 1609808500 +655 0 repository_picasa 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 +656 0 repository_picasa 2020061500 2020061500 Plugin installed \N 0 1609808500 +657 0 repository_recent \N 2020061500 Starting plugin installation \N 0 1609808500 +658 0 repository_recent 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 +659 0 repository_recent 2020061500 2020061500 Plugin installed \N 0 1609808500 +660 0 repository_s3 \N 2020061500 Starting plugin installation \N 0 1609808500 +661 0 repository_s3 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 +662 0 repository_s3 2020061500 2020061500 Plugin installed \N 0 1609808500 +663 0 repository_skydrive \N 2020061500 Starting plugin installation \N 0 1609808500 +664 0 repository_skydrive 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 +665 0 repository_skydrive 2020061500 2020061500 Plugin installed \N 0 1609808500 +666 0 repository_upload \N 2020061500 Starting plugin installation \N 0 1609808500 +667 0 repository_upload 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 +668 0 repository_upload 2020061500 2020061500 Plugin installed \N 0 1609808500 +669 0 repository_url \N 2020061500 Starting plugin installation \N 0 1609808500 +670 0 repository_url 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 +671 0 repository_url 2020061500 2020061500 Plugin installed \N 0 1609808500 +672 0 repository_user \N 2020061500 Starting plugin installation \N 0 1609808500 +673 0 repository_user 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 +674 0 repository_user 2020061500 2020061500 Plugin installed \N 0 1609808500 +675 0 repository_webdav \N 2020061500 Starting plugin installation \N 0 1609808500 +676 0 repository_webdav 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 +677 0 repository_webdav 2020061500 2020061500 Plugin installed \N 0 1609808500 +678 0 repository_wikimedia \N 2020061500 Starting plugin installation \N 0 1609808500 +679 0 repository_wikimedia 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 +680 0 repository_wikimedia 2020061500 2020061500 Plugin installed \N 0 1609808501 +681 0 repository_youtube \N 2020061500 Starting plugin installation \N 0 1609808501 +682 0 repository_youtube 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +683 0 repository_youtube 2020061500 2020061500 Plugin installed \N 0 1609808501 +684 0 portfolio_boxnet \N 2020061500 Starting plugin installation \N 0 1609808501 +685 0 portfolio_boxnet 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +686 0 portfolio_boxnet 2020061500 2020061500 Plugin installed \N 0 1609808501 +687 0 portfolio_download \N 2020061500 Starting plugin installation \N 0 1609808501 +688 0 portfolio_download 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +689 0 portfolio_download 2020061500 2020061500 Plugin installed \N 0 1609808501 +690 0 portfolio_flickr \N 2020061500 Starting plugin installation \N 0 1609808501 +691 0 portfolio_flickr 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +692 0 portfolio_flickr 2020061500 2020061500 Plugin installed \N 0 1609808501 +693 0 portfolio_googledocs \N 2020061500 Starting plugin installation \N 0 1609808501 +694 0 portfolio_googledocs 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +695 0 portfolio_googledocs 2020061500 2020061500 Plugin installed \N 0 1609808501 +696 0 portfolio_mahara \N 2020061500 Starting plugin installation \N 0 1609808501 +697 0 portfolio_mahara 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +698 0 portfolio_mahara 2020061500 2020061500 Plugin installed \N 0 1609808501 +699 0 portfolio_picasa \N 2020061500 Starting plugin installation \N 0 1609808501 +700 0 portfolio_picasa 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +701 0 portfolio_picasa 2020061500 2020061500 Plugin installed \N 0 1609808501 +702 0 search_simpledb \N 2020061500 Starting plugin installation \N 0 1609808501 +703 0 search_simpledb 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +704 0 search_simpledb 2020061500 2020061500 Plugin installed \N 0 1609808501 +705 0 search_solr \N 2020061500 Starting plugin installation \N 0 1609808501 +706 0 search_solr 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +707 0 search_solr 2020061500 2020061500 Plugin installed \N 0 1609808501 +708 0 qbehaviour_adaptive \N 2020061500 Starting plugin installation \N 0 1609808501 +709 0 qbehaviour_adaptive 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +710 0 qbehaviour_adaptive 2020061500 2020061500 Plugin installed \N 0 1609808501 +711 0 qbehaviour_adaptivenopenalty \N 2020061500 Starting plugin installation \N 0 1609808501 +712 0 qbehaviour_adaptivenopenalty 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +713 0 qbehaviour_adaptivenopenalty 2020061500 2020061500 Plugin installed \N 0 1609808501 +714 0 qbehaviour_deferredcbm \N 2020061500 Starting plugin installation \N 0 1609808501 +715 0 qbehaviour_deferredcbm 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +716 0 qbehaviour_deferredcbm 2020061500 2020061500 Plugin installed \N 0 1609808501 +717 0 qbehaviour_deferredfeedback \N 2020061500 Starting plugin installation \N 0 1609808501 +718 0 qbehaviour_deferredfeedback 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +719 0 qbehaviour_deferredfeedback 2020061500 2020061500 Plugin installed \N 0 1609808501 +720 0 qbehaviour_immediatecbm \N 2020061500 Starting plugin installation \N 0 1609808501 +721 0 qbehaviour_immediatecbm 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +722 0 qbehaviour_immediatecbm 2020061500 2020061500 Plugin installed \N 0 1609808501 +723 0 qbehaviour_immediatefeedback \N 2020061500 Starting plugin installation \N 0 1609808501 +724 0 qbehaviour_immediatefeedback 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +725 0 qbehaviour_immediatefeedback 2020061500 2020061500 Plugin installed \N 0 1609808501 +726 0 qbehaviour_informationitem \N 2020061500 Starting plugin installation \N 0 1609808501 +727 0 qbehaviour_informationitem 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +728 0 qbehaviour_informationitem 2020061500 2020061500 Plugin installed \N 0 1609808501 +729 0 qbehaviour_interactive \N 2020061500 Starting plugin installation \N 0 1609808501 +730 0 qbehaviour_interactive 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +731 0 qbehaviour_interactive 2020061500 2020061500 Plugin installed \N 0 1609808501 +732 0 qbehaviour_interactivecountback \N 2020061500 Starting plugin installation \N 0 1609808501 +733 0 qbehaviour_interactivecountback 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +734 0 qbehaviour_interactivecountback 2020061500 2020061500 Plugin installed \N 0 1609808501 +735 0 qbehaviour_manualgraded \N 2020061500 Starting plugin installation \N 0 1609808501 +736 0 qbehaviour_manualgraded 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +737 0 qbehaviour_manualgraded 2020061500 2020061500 Plugin installed \N 0 1609808501 +738 0 qbehaviour_missing \N 2020061500 Starting plugin installation \N 0 1609808501 +739 0 qbehaviour_missing 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +740 0 qbehaviour_missing 2020061500 2020061500 Plugin installed \N 0 1609808501 +741 0 qformat_aiken \N 2020061500 Starting plugin installation \N 0 1609808501 +742 0 qformat_aiken 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +743 0 qformat_aiken 2020061500 2020061500 Plugin installed \N 0 1609808501 +744 0 qformat_blackboard_six \N 2020061500 Starting plugin installation \N 0 1609808501 +745 0 qformat_blackboard_six 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +746 0 qformat_blackboard_six 2020061500 2020061500 Plugin installed \N 0 1609808501 +747 0 qformat_examview \N 2020061500 Starting plugin installation \N 0 1609808501 +748 0 qformat_examview 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +749 0 qformat_examview 2020061500 2020061500 Plugin installed \N 0 1609808501 +750 0 qformat_gift \N 2020061500 Starting plugin installation \N 0 1609808501 +751 0 qformat_gift 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +752 0 qformat_gift 2020061500 2020061500 Plugin installed \N 0 1609808501 +753 0 qformat_missingword \N 2020061500 Starting plugin installation \N 0 1609808501 +754 0 qformat_missingword 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +755 0 qformat_missingword 2020061500 2020061500 Plugin installed \N 0 1609808501 +756 0 qformat_multianswer \N 2020061500 Starting plugin installation \N 0 1609808501 +757 0 qformat_multianswer 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 +758 0 qformat_multianswer 2020061500 2020061500 Plugin installed \N 0 1609808502 +759 0 qformat_webct \N 2020061500 Starting plugin installation \N 0 1609808502 +760 0 qformat_webct 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 +761 0 qformat_webct 2020061500 2020061500 Plugin installed \N 0 1609808502 +762 0 qformat_xhtml \N 2020061500 Starting plugin installation \N 0 1609808502 +763 0 qformat_xhtml 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 +764 0 qformat_xhtml 2020061500 2020061500 Plugin installed \N 0 1609808502 +765 0 qformat_xml \N 2020061500 Starting plugin installation \N 0 1609808502 +766 0 qformat_xml 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 +767 0 qformat_xml 2020061500 2020061500 Plugin installed \N 0 1609808502 +768 0 tool_analytics \N 2020061500 Starting plugin installation \N 0 1609808502 +769 0 tool_analytics 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 +770 0 tool_analytics 2020061500 2020061500 Plugin installed \N 0 1609808502 +771 0 tool_availabilityconditions \N 2020061500 Starting plugin installation \N 0 1609808502 +772 0 tool_availabilityconditions 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 +773 0 tool_availabilityconditions 2020061500 2020061500 Plugin installed \N 0 1609808502 +774 0 tool_behat \N 2020061500 Starting plugin installation \N 0 1609808502 +775 0 tool_behat 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 +776 0 tool_behat 2020061500 2020061500 Plugin installed \N 0 1609808502 +777 0 tool_capability \N 2020061500 Starting plugin installation \N 0 1609808502 +778 0 tool_capability 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 +779 0 tool_capability 2020061500 2020061500 Plugin installed \N 0 1609808502 +780 0 tool_cohortroles \N 2020061500 Starting plugin installation \N 0 1609808502 +781 0 tool_cohortroles 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 +782 0 tool_cohortroles 2020061500 2020061500 Plugin installed \N 0 1609808502 +783 0 tool_customlang \N 2020061500 Starting plugin installation \N 0 1609808502 +784 0 tool_customlang 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 +785 0 tool_customlang 2020061500 2020061500 Plugin installed \N 0 1609808502 +786 0 tool_dataprivacy \N 2020061501 Starting plugin installation \N 0 1609808502 +787 0 tool_dataprivacy 2020061501 2020061501 Upgrade savepoint reached \N 0 1609808502 +788 0 tool_dataprivacy 2020061501 2020061501 Plugin installed \N 0 1609808502 +789 0 tool_dbtransfer \N 2020061500 Starting plugin installation \N 0 1609808502 +790 0 tool_dbtransfer 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 +791 0 tool_dbtransfer 2020061500 2020061500 Plugin installed \N 0 1609808502 +792 0 tool_filetypes \N 2020061500 Starting plugin installation \N 0 1609808502 +793 0 tool_filetypes 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 +794 0 tool_filetypes 2020061500 2020061500 Plugin installed \N 0 1609808502 +795 0 tool_generator \N 2020061500 Starting plugin installation \N 0 1609808502 +796 0 tool_generator 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 +797 0 tool_generator 2020061500 2020061500 Plugin installed \N 0 1609808502 +798 0 tool_health \N 2020061500 Starting plugin installation \N 0 1609808502 +799 0 tool_health 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 +800 0 tool_health 2020061500 2020061500 Plugin installed \N 0 1609808502 +801 0 tool_httpsreplace \N 2020061500 Starting plugin installation \N 0 1609808502 +802 0 tool_httpsreplace 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 +803 0 tool_httpsreplace 2020061500 2020061500 Plugin installed \N 0 1609808502 +804 0 tool_innodb \N 2020061500 Starting plugin installation \N 0 1609808502 +805 0 tool_innodb 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 +806 0 tool_innodb 2020061500 2020061500 Plugin installed \N 0 1609808502 +807 0 tool_installaddon \N 2020061500 Starting plugin installation \N 0 1609808502 +808 0 tool_installaddon 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 +809 0 tool_installaddon 2020061500 2020061500 Plugin installed \N 0 1609808502 +810 0 tool_langimport \N 2020061500 Starting plugin installation \N 0 1609808502 +811 0 tool_langimport 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 +812 0 tool_langimport 2020061500 2020061500 Plugin installed \N 0 1609808502 +813 0 tool_licensemanager \N 2020061500 Starting plugin installation \N 0 1609808502 +814 0 tool_licensemanager 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 +815 0 tool_licensemanager 2020061500 2020061500 Plugin installed \N 0 1609808502 +816 0 tool_log \N 2020061500 Starting plugin installation \N 0 1609808502 +817 0 tool_log 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 +818 0 tool_log 2020061500 2020061500 Plugin installed \N 0 1609808503 +819 0 tool_lp \N 2020061500 Starting plugin installation \N 0 1609808503 +820 0 tool_lp 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 +821 0 tool_lp 2020061500 2020061500 Plugin installed \N 0 1609808503 +822 0 tool_lpimportcsv \N 2020061500 Starting plugin installation \N 0 1609808503 +823 0 tool_lpimportcsv 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 +824 0 tool_lpimportcsv 2020061500 2020061500 Plugin installed \N 0 1609808503 +825 0 tool_lpmigrate \N 2020061500 Starting plugin installation \N 0 1609808503 +826 0 tool_lpmigrate 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 +827 0 tool_lpmigrate 2020061500 2020061500 Plugin installed \N 0 1609808503 +828 0 tool_messageinbound \N 2020061500 Starting plugin installation \N 0 1609808503 +829 0 tool_messageinbound 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 +830 0 tool_messageinbound 2020061500 2020061500 Plugin installed \N 0 1609808503 +831 0 tool_mobile \N 2020061500 Starting plugin installation \N 0 1609808503 +832 0 tool_mobile 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 +833 0 tool_mobile 2020061500 2020061500 Plugin installed \N 0 1609808503 +834 0 tool_monitor \N 2020061500 Starting plugin installation \N 0 1609808503 +835 0 tool_monitor 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 +836 0 tool_monitor 2020061500 2020061500 Plugin installed \N 0 1609808503 +837 0 tool_moodlenet \N 2020061503 Starting plugin installation \N 0 1609808503 +838 0 tool_moodlenet 2020061503 2020061503 Upgrade savepoint reached \N 0 1609808503 +839 0 tool_moodlenet 2020061503 2020061503 Plugin installed \N 0 1609808503 +840 0 tool_multilangupgrade \N 2020061500 Starting plugin installation \N 0 1609808503 +841 0 tool_multilangupgrade 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 +842 0 tool_multilangupgrade 2020061500 2020061500 Plugin installed \N 0 1609808503 +843 0 tool_oauth2 \N 2020061500 Starting plugin installation \N 0 1609808503 +844 0 tool_oauth2 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 +845 0 tool_oauth2 2020061500 2020061500 Plugin installed \N 0 1609808503 +846 0 tool_phpunit \N 2020061500 Starting plugin installation \N 0 1609808503 +847 0 tool_phpunit 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 +848 0 tool_phpunit 2020061500 2020061500 Plugin installed \N 0 1609808503 +849 0 tool_policy \N 2020061500 Starting plugin installation \N 0 1609808503 +850 0 tool_policy 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 +851 0 tool_policy 2020061500 2020061500 Plugin installed \N 0 1609808503 +852 0 tool_profiling \N 2020061500 Starting plugin installation \N 0 1609808503 +853 0 tool_profiling 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 +854 0 tool_profiling 2020061500 2020061500 Plugin installed \N 0 1609808503 +855 0 tool_recyclebin \N 2020061500 Starting plugin installation \N 0 1609808503 +856 0 tool_recyclebin 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 +857 0 tool_recyclebin 2020061500 2020061500 Plugin installed \N 0 1609808503 +858 0 tool_replace \N 2020061500 Starting plugin installation \N 0 1609808503 +859 0 tool_replace 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 +860 0 tool_replace 2020061500 2020061500 Plugin installed \N 0 1609808504 +861 0 tool_spamcleaner \N 2020061500 Starting plugin installation \N 0 1609808504 +862 0 tool_spamcleaner 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 +863 0 tool_spamcleaner 2020061500 2020061500 Plugin installed \N 0 1609808504 +864 0 tool_task \N 2020061500 Starting plugin installation \N 0 1609808504 +865 0 tool_task 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 +866 0 tool_task 2020061500 2020061500 Plugin installed \N 0 1609808504 +867 0 tool_templatelibrary \N 2020061500 Starting plugin installation \N 0 1609808504 +868 0 tool_templatelibrary 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 +869 0 tool_templatelibrary 2020061500 2020061500 Plugin installed \N 0 1609808504 +870 0 tool_unsuproles \N 2020061500 Starting plugin installation \N 0 1609808504 +871 0 tool_unsuproles 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 +872 0 tool_unsuproles 2020061500 2020061500 Plugin installed \N 0 1609808504 +873 0 tool_uploadcourse \N 2020061500 Starting plugin installation \N 0 1609808504 +874 0 tool_uploadcourse 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 +875 0 tool_uploadcourse 2020061500 2020061500 Plugin installed \N 0 1609808504 +876 0 tool_uploaduser \N 2020061500 Starting plugin installation \N 0 1609808504 +877 0 tool_uploaduser 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 +878 0 tool_uploaduser 2020061500 2020061500 Plugin installed \N 0 1609808504 +879 0 tool_usertours \N 2020061502 Starting plugin installation \N 0 1609808504 +880 0 tool_usertours 2020061502 2020061502 Upgrade savepoint reached \N 0 1609808504 +881 0 tool_usertours 2020061502 2020061502 Plugin installed \N 0 1609808504 +882 0 tool_xmldb \N 2020061500 Starting plugin installation \N 0 1609808504 +883 0 tool_xmldb 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 +884 0 tool_xmldb 2020061500 2020061500 Plugin installed \N 0 1609808504 +885 0 cachestore_apcu \N 2020061500 Starting plugin installation \N 0 1609808504 +886 0 cachestore_apcu 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 +887 0 cachestore_apcu 2020061500 2020061500 Plugin installed \N 0 1609808504 +888 0 cachestore_file \N 2020061500 Starting plugin installation \N 0 1609808504 +889 0 cachestore_file 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 +890 0 cachestore_file 2020061500 2020061500 Plugin installed \N 0 1609808504 +891 0 cachestore_memcached \N 2020061500 Starting plugin installation \N 0 1609808504 +892 0 cachestore_memcached 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 +893 0 cachestore_memcached 2020061500 2020061500 Plugin installed \N 0 1609808504 +894 0 cachestore_mongodb \N 2020061500 Starting plugin installation \N 0 1609808504 +895 0 cachestore_mongodb 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 +896 0 cachestore_mongodb 2020061500 2020061500 Plugin installed \N 0 1609808504 +897 0 cachestore_redis \N 2020061500 Starting plugin installation \N 0 1609808504 +898 0 cachestore_redis 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 +899 0 cachestore_redis 2020061500 2020061500 Plugin installed \N 0 1609808504 +900 0 cachestore_session \N 2020061500 Starting plugin installation \N 0 1609808504 +901 0 cachestore_session 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 +902 0 cachestore_session 2020061500 2020061500 Plugin installed \N 0 1609808504 +903 0 cachestore_static \N 2020061500 Starting plugin installation \N 0 1609808504 +904 0 cachestore_static 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 +905 0 cachestore_static 2020061500 2020061500 Plugin installed \N 0 1609808504 +906 0 cachelock_file \N 2020061500 Starting plugin installation \N 0 1609808504 +907 0 cachelock_file 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 +908 0 cachelock_file 2020061500 2020061500 Plugin installed \N 0 1609808504 +909 0 fileconverter_googledrive \N 2020061500 Starting plugin installation \N 0 1609808504 +910 0 fileconverter_googledrive 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 +911 0 fileconverter_googledrive 2020061500 2020061500 Plugin installed \N 0 1609808504 +912 0 fileconverter_unoconv \N 2020061500 Starting plugin installation \N 0 1609808504 +913 0 fileconverter_unoconv 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 +914 0 fileconverter_unoconv 2020061500 2020061500 Plugin installed \N 0 1609808504 +915 0 contenttype_h5p \N 2020061500 Starting plugin installation \N 0 1609808504 +916 0 contenttype_h5p 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 +917 0 contenttype_h5p 2020061500 2020061500 Plugin installed \N 0 1609808504 +918 0 theme_boost \N 2020061500 Starting plugin installation \N 0 1609808504 +919 0 theme_boost 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 +920 0 theme_boost 2020061500 2020061500 Plugin installed \N 0 1609808504 +921 0 theme_classic \N 2020061500 Starting plugin installation \N 0 1609808504 +922 0 theme_classic 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 +923 0 theme_classic 2020061500 2020061500 Plugin installed \N 0 1609808504 +924 0 h5plib_v124 \N 2020061500 Starting plugin installation \N 0 1609808504 +925 0 h5plib_v124 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 +926 0 h5plib_v124 2020061500 2020061500 Plugin installed \N 0 1609808504 +927 0 assignsubmission_comments \N 2020061500 Starting plugin installation \N 0 1609808504 +928 0 assignsubmission_comments 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 +929 0 assignsubmission_comments 2020061500 2020061500 Plugin installed \N 0 1609808505 +930 0 assignsubmission_file \N 2020061500 Starting plugin installation \N 0 1609808505 +931 0 assignsubmission_file 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 +932 0 assignsubmission_file 2020061500 2020061500 Plugin installed \N 0 1609808505 +933 0 assignsubmission_onlinetext \N 2020061500 Starting plugin installation \N 0 1609808505 +934 0 assignsubmission_onlinetext 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 +935 0 assignsubmission_onlinetext 2020061500 2020061500 Plugin installed \N 0 1609808505 +936 0 assignfeedback_comments \N 2020061500 Starting plugin installation \N 0 1609808505 +937 0 assignfeedback_comments 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 +938 0 assignfeedback_comments 2020061500 2020061500 Plugin installed \N 0 1609808505 +939 0 assignfeedback_editpdf \N 2020061500 Starting plugin installation \N 0 1609808505 +940 0 assignfeedback_editpdf 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 +941 0 assignfeedback_editpdf 2020061500 2020061500 Plugin installed \N 0 1609808505 +942 0 assignfeedback_file \N 2020061500 Starting plugin installation \N 0 1609808505 +943 0 assignfeedback_file 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 +944 0 assignfeedback_file 2020061500 2020061500 Plugin installed \N 0 1609808505 +945 0 assignfeedback_offline \N 2020061500 Starting plugin installation \N 0 1609808505 +946 0 assignfeedback_offline 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 +947 0 assignfeedback_offline 2020061500 2020061500 Plugin installed \N 0 1609808505 +948 0 assignment_offline \N 2020061500 Starting plugin installation \N 0 1609808505 +949 0 assignment_offline 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 +950 0 assignment_offline 2020061500 2020061500 Plugin installed \N 0 1609808505 +951 0 assignment_online \N 2020061500 Starting plugin installation \N 0 1609808505 +952 0 assignment_online 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 +953 0 assignment_online 2020061500 2020061500 Plugin installed \N 0 1609808505 +954 0 assignment_upload \N 2020061500 Starting plugin installation \N 0 1609808505 +955 0 assignment_upload 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 +956 0 assignment_upload 2020061500 2020061500 Plugin installed \N 0 1609808505 +957 0 assignment_uploadsingle \N 2020061500 Starting plugin installation \N 0 1609808505 +958 0 assignment_uploadsingle 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 +959 0 assignment_uploadsingle 2020061500 2020061500 Plugin installed \N 0 1609808505 +960 0 booktool_exportimscp \N 2020061500 Starting plugin installation \N 0 1609808505 +961 0 booktool_exportimscp 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 +962 0 booktool_exportimscp 2020061500 2020061500 Plugin installed \N 0 1609808505 +963 0 booktool_importhtml \N 2020061500 Starting plugin installation \N 0 1609808505 +964 0 booktool_importhtml 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 +965 0 booktool_importhtml 2020061500 2020061500 Plugin installed \N 0 1609808505 +966 0 booktool_print \N 2020061500 Starting plugin installation \N 0 1609808505 +967 0 booktool_print 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 +968 0 booktool_print 2020061500 2020061500 Plugin installed \N 0 1609808505 +969 0 datafield_checkbox \N 2020061500 Starting plugin installation \N 0 1609808505 +970 0 datafield_checkbox 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 +971 0 datafield_checkbox 2020061500 2020061500 Plugin installed \N 0 1609808505 +972 0 datafield_date \N 2020061500 Starting plugin installation \N 0 1609808505 +973 0 datafield_date 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 +974 0 datafield_date 2020061500 2020061500 Plugin installed \N 0 1609808505 +975 0 datafield_file \N 2020061500 Starting plugin installation \N 0 1609808505 +976 0 datafield_file 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 +977 0 datafield_file 2020061500 2020061500 Plugin installed \N 0 1609808505 +978 0 datafield_latlong \N 2020061500 Starting plugin installation \N 0 1609808505 +979 0 datafield_latlong 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 +980 0 datafield_latlong 2020061500 2020061500 Plugin installed \N 0 1609808506 +981 0 datafield_menu \N 2020061500 Starting plugin installation \N 0 1609808506 +982 0 datafield_menu 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 +983 0 datafield_menu 2020061500 2020061500 Plugin installed \N 0 1609808506 +984 0 datafield_multimenu \N 2020061500 Starting plugin installation \N 0 1609808506 +985 0 datafield_multimenu 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 +986 0 datafield_multimenu 2020061500 2020061500 Plugin installed \N 0 1609808506 +987 0 datafield_number \N 2020061500 Starting plugin installation \N 0 1609808506 +988 0 datafield_number 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 +989 0 datafield_number 2020061500 2020061500 Plugin installed \N 0 1609808506 +990 0 datafield_picture \N 2020061500 Starting plugin installation \N 0 1609808506 +991 0 datafield_picture 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 +992 0 datafield_picture 2020061500 2020061500 Plugin installed \N 0 1609808506 +993 0 datafield_radiobutton \N 2020061500 Starting plugin installation \N 0 1609808506 +994 0 datafield_radiobutton 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 +995 0 datafield_radiobutton 2020061500 2020061500 Plugin installed \N 0 1609808506 +996 0 datafield_text \N 2020061500 Starting plugin installation \N 0 1609808506 +997 0 datafield_text 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 +998 0 datafield_text 2020061500 2020061500 Plugin installed \N 0 1609808506 +999 0 datafield_textarea \N 2020061500 Starting plugin installation \N 0 1609808506 +1000 0 datafield_textarea 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 +1001 0 datafield_textarea 2020061500 2020061500 Plugin installed \N 0 1609808506 +1002 0 datafield_url \N 2020061500 Starting plugin installation \N 0 1609808506 +1003 0 datafield_url 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 +1004 0 datafield_url 2020061500 2020061500 Plugin installed \N 0 1609808506 +1005 0 datapreset_imagegallery \N 2020061500 Starting plugin installation \N 0 1609808506 +1006 0 datapreset_imagegallery 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 +1007 0 datapreset_imagegallery 2020061500 2020061500 Plugin installed \N 0 1609808506 +1008 0 forumreport_summary \N 2020061500 Starting plugin installation \N 0 1609808506 +1009 0 forumreport_summary 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 +1010 0 forumreport_summary 2020061500 2020061500 Plugin installed \N 0 1609808506 +1011 0 ltiservice_basicoutcomes \N 2020061500 Starting plugin installation \N 0 1609808506 +1012 0 ltiservice_basicoutcomes 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 +1013 0 ltiservice_basicoutcomes 2020061500 2020061500 Plugin installed \N 0 1609808506 +1014 0 ltiservice_gradebookservices \N 2020061500 Starting plugin installation \N 0 1609808506 +1015 0 ltiservice_gradebookservices 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 +1016 0 ltiservice_gradebookservices 2020061500 2020061500 Plugin installed \N 0 1609808506 +1017 0 ltiservice_memberships \N 2020061500 Starting plugin installation \N 0 1609808506 +1018 0 ltiservice_memberships 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 +1019 0 ltiservice_memberships 2020061500 2020061500 Plugin installed \N 0 1609808506 +1020 0 ltiservice_profile \N 2020061500 Starting plugin installation \N 0 1609808506 +1021 0 ltiservice_profile 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 +1022 0 ltiservice_profile 2020061500 2020061500 Plugin installed \N 0 1609808506 +1023 0 ltiservice_toolproxy \N 2020061500 Starting plugin installation \N 0 1609808506 +1024 0 ltiservice_toolproxy 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 +1025 0 ltiservice_toolproxy 2020061500 2020061500 Plugin installed \N 0 1609808506 +1026 0 ltiservice_toolsettings \N 2020061500 Starting plugin installation \N 0 1609808506 +1027 0 ltiservice_toolsettings 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 +1028 0 ltiservice_toolsettings 2020061500 2020061500 Plugin installed \N 0 1609808506 +1029 0 quiz_grading \N 2020061500 Starting plugin installation \N 0 1609808506 +1030 0 quiz_grading 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 +1031 0 quiz_grading 2020061500 2020061500 Plugin installed \N 0 1609808506 +1032 0 quiz_overview \N 2020061500 Starting plugin installation \N 0 1609808506 +1033 0 quiz_overview 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 +1034 0 quiz_overview 2020061500 2020061500 Plugin installed \N 0 1609808506 +1035 0 quiz_responses \N 2020061500 Starting plugin installation \N 0 1609808506 +1036 0 quiz_responses 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 +1037 0 quiz_responses 2020061500 2020061500 Plugin installed \N 0 1609808506 +1038 0 quiz_statistics \N 2020061500 Starting plugin installation \N 0 1609808506 +1039 0 quiz_statistics 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 +1040 0 quiz_statistics 2020061500 2020061500 Plugin installed \N 0 1609808506 +1041 0 quizaccess_delaybetweenattempts \N 2020061500 Starting plugin installation \N 0 1609808506 +1042 0 quizaccess_delaybetweenattempts 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 +1043 0 quizaccess_delaybetweenattempts 2020061500 2020061500 Plugin installed \N 0 1609808506 +1044 0 quizaccess_ipaddress \N 2020061500 Starting plugin installation \N 0 1609808507 +1045 0 quizaccess_ipaddress 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808507 +1046 0 quizaccess_ipaddress 2020061500 2020061500 Plugin installed \N 0 1609808507 +1047 0 quizaccess_numattempts \N 2020061500 Starting plugin installation \N 0 1609808507 +1048 0 quizaccess_numattempts 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808507 +1049 0 quizaccess_numattempts 2020061500 2020061500 Plugin installed \N 0 1609808507 +1050 0 quizaccess_offlineattempts \N 2020061500 Starting plugin installation \N 0 1609808507 +1051 0 quizaccess_offlineattempts 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808507 +1052 0 quizaccess_offlineattempts 2020061500 2020061500 Plugin installed \N 0 1609808507 +1053 0 quizaccess_openclosedate \N 2020061500 Starting plugin installation \N 0 1609808507 +1054 0 quizaccess_openclosedate 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808507 +1055 0 quizaccess_openclosedate 2020061500 2020061500 Plugin installed \N 0 1609808507 +1056 0 quizaccess_password \N 2020061500 Starting plugin installation \N 0 1609808507 +1057 0 quizaccess_password 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808507 +1058 0 quizaccess_password 2020061500 2020061500 Plugin installed \N 0 1609808507 +1059 0 quizaccess_seb \N 2020061500 Starting plugin installation \N 0 1609808507 +1060 0 quizaccess_seb 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808507 +1061 0 quizaccess_seb 2020061500 2020061500 Plugin installed \N 0 1609808507 +1062 0 quizaccess_securewindow \N 2020061500 Starting plugin installation \N 0 1609808507 +1063 0 quizaccess_securewindow 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808507 +1064 0 quizaccess_securewindow 2020061500 2020061500 Plugin installed \N 0 1609808507 +1065 0 quizaccess_timelimit \N 2020061500 Starting plugin installation \N 0 1609808507 +1066 0 quizaccess_timelimit 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808507 +1067 0 quizaccess_timelimit 2020061500 2020061500 Plugin installed \N 0 1609808507 +1068 0 scormreport_basic \N 2020061500 Starting plugin installation \N 0 1609808507 +1069 0 scormreport_basic 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808507 +1070 0 scormreport_basic 2020061500 2020061500 Plugin installed \N 0 1609808507 +1071 0 scormreport_graphs \N 2020061500 Starting plugin installation \N 0 1609808507 +1072 0 scormreport_graphs 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808507 +1073 0 scormreport_graphs 2020061500 2020061500 Plugin installed \N 0 1609808507 +1074 0 scormreport_interactions \N 2020061500 Starting plugin installation \N 0 1609808507 +1075 0 scormreport_interactions 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808507 +1076 0 scormreport_interactions 2020061500 2020061500 Plugin installed \N 0 1609808508 +1077 0 scormreport_objectives \N 2020061500 Starting plugin installation \N 0 1609808508 +1078 0 scormreport_objectives 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 +1079 0 scormreport_objectives 2020061500 2020061500 Plugin installed \N 0 1609808508 +1080 0 workshopform_accumulative \N 2020061500 Starting plugin installation \N 0 1609808508 +1081 0 workshopform_accumulative 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 +1082 0 workshopform_accumulative 2020061500 2020061500 Plugin installed \N 0 1609808508 +1083 0 workshopform_comments \N 2020061500 Starting plugin installation \N 0 1609808508 +1084 0 workshopform_comments 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 +1085 0 workshopform_comments 2020061500 2020061500 Plugin installed \N 0 1609808508 +1086 0 workshopform_numerrors \N 2020061500 Starting plugin installation \N 0 1609808508 +1087 0 workshopform_numerrors 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 +1088 0 workshopform_numerrors 2020061500 2020061500 Plugin installed \N 0 1609808508 +1089 0 workshopform_rubric \N 2020061500 Starting plugin installation \N 0 1609808508 +1090 0 workshopform_rubric 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 +1091 0 workshopform_rubric 2020061500 2020061500 Plugin installed \N 0 1609808508 +1092 0 workshopallocation_manual \N 2020061500 Starting plugin installation \N 0 1609808508 +1093 0 workshopallocation_manual 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 +1094 0 workshopallocation_manual 2020061500 2020061500 Plugin installed \N 0 1609808508 +1095 0 workshopallocation_random \N 2020061500 Starting plugin installation \N 0 1609808508 +1096 0 workshopallocation_random 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 +1097 0 workshopallocation_random 2020061500 2020061500 Plugin installed \N 0 1609808508 +1098 0 workshopallocation_scheduled \N 2020061500 Starting plugin installation \N 0 1609808508 +1099 0 workshopallocation_scheduled 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 +1100 0 workshopallocation_scheduled 2020061500 2020061500 Plugin installed \N 0 1609808508 +1101 0 workshopeval_best \N 2020061500 Starting plugin installation \N 0 1609808508 +1102 0 workshopeval_best 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 +1103 0 workshopeval_best 2020061500 2020061500 Plugin installed \N 0 1609808508 +1104 0 atto_accessibilitychecker \N 2020061500 Starting plugin installation \N 0 1609808508 +1105 0 atto_accessibilitychecker 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 +1106 0 atto_accessibilitychecker 2020061500 2020061500 Plugin installed \N 0 1609808508 +1107 0 atto_accessibilityhelper \N 2020061500 Starting plugin installation \N 0 1609808508 +1108 0 atto_accessibilityhelper 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 +1109 0 atto_accessibilityhelper 2020061500 2020061500 Plugin installed \N 0 1609808508 +1110 0 atto_align \N 2020061500 Starting plugin installation \N 0 1609808508 +1111 0 atto_align 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 +1112 0 atto_align 2020061500 2020061500 Plugin installed \N 0 1609808508 +1113 0 atto_backcolor \N 2020061500 Starting plugin installation \N 0 1609808508 +1114 0 atto_backcolor 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 +1115 0 atto_backcolor 2020061500 2020061500 Plugin installed \N 0 1609808508 +1116 0 atto_bold \N 2020061500 Starting plugin installation \N 0 1609808508 +1117 0 atto_bold 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 +1118 0 atto_bold 2020061500 2020061500 Plugin installed \N 0 1609808508 +1119 0 atto_charmap \N 2020061500 Starting plugin installation \N 0 1609808508 +1120 0 atto_charmap 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 +1121 0 atto_charmap 2020061500 2020061500 Plugin installed \N 0 1609808508 +1122 0 atto_clear \N 2020061500 Starting plugin installation \N 0 1609808508 +1123 0 atto_clear 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 +1124 0 atto_clear 2020061500 2020061500 Plugin installed \N 0 1609808508 +1125 0 atto_collapse \N 2020061500 Starting plugin installation \N 0 1609808508 +1126 0 atto_collapse 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 +1127 0 atto_collapse 2020061500 2020061500 Plugin installed \N 0 1609808508 +1128 0 atto_emojipicker \N 2020061500 Starting plugin installation \N 0 1609808508 +1129 0 atto_emojipicker 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 +1130 0 atto_emojipicker 2020061500 2020061500 Plugin installed \N 0 1609808508 +1131 0 atto_emoticon \N 2020061500 Starting plugin installation \N 0 1609808508 +1132 0 atto_emoticon 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 +1133 0 atto_emoticon 2020061500 2020061500 Plugin installed \N 0 1609808508 +1134 0 atto_equation \N 2020061500 Starting plugin installation \N 0 1609808508 +1135 0 atto_equation 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 +1136 0 atto_equation 2020061500 2020061500 Plugin installed \N 0 1609808508 +1137 0 atto_fontcolor \N 2020061500 Starting plugin installation \N 0 1609808508 +1138 0 atto_fontcolor 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 +1139 0 atto_fontcolor 2020061500 2020061500 Plugin installed \N 0 1609808508 +1140 0 atto_h5p \N 2020061500 Starting plugin installation \N 0 1609808508 +1141 0 atto_h5p 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 +1142 0 atto_h5p 2020061500 2020061500 Plugin installed \N 0 1609808508 +1143 0 atto_html \N 2020061500 Starting plugin installation \N 0 1609808508 +1144 0 atto_html 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 +1145 0 atto_html 2020061500 2020061500 Plugin installed \N 0 1609808509 +1146 0 atto_image \N 2020061500 Starting plugin installation \N 0 1609808509 +1147 0 atto_image 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1148 0 atto_image 2020061500 2020061500 Plugin installed \N 0 1609808509 +1149 0 atto_indent \N 2020061500 Starting plugin installation \N 0 1609808509 +1150 0 atto_indent 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1151 0 atto_indent 2020061500 2020061500 Plugin installed \N 0 1609808509 +1152 0 atto_italic \N 2020061500 Starting plugin installation \N 0 1609808509 +1153 0 atto_italic 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1154 0 atto_italic 2020061500 2020061500 Plugin installed \N 0 1609808509 +1155 0 atto_link \N 2020061500 Starting plugin installation \N 0 1609808509 +1156 0 atto_link 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1157 0 atto_link 2020061500 2020061500 Plugin installed \N 0 1609808509 +1158 0 atto_managefiles \N 2020061500 Starting plugin installation \N 0 1609808509 +1159 0 atto_managefiles 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1160 0 atto_managefiles 2020061500 2020061500 Plugin installed \N 0 1609808509 +1161 0 atto_media \N 2020061500 Starting plugin installation \N 0 1609808509 +1162 0 atto_media 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1163 0 atto_media 2020061500 2020061500 Plugin installed \N 0 1609808509 +1164 0 atto_noautolink \N 2020061500 Starting plugin installation \N 0 1609808509 +1165 0 atto_noautolink 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1166 0 atto_noautolink 2020061500 2020061500 Plugin installed \N 0 1609808509 +1167 0 atto_orderedlist \N 2020061500 Starting plugin installation \N 0 1609808509 +1168 0 atto_orderedlist 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1169 0 atto_orderedlist 2020061500 2020061500 Plugin installed \N 0 1609808509 +1170 0 atto_recordrtc \N 2020061500 Starting plugin installation \N 0 1609808509 +1171 0 atto_recordrtc 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1172 0 atto_recordrtc 2020061500 2020061500 Plugin installed \N 0 1609808509 +1173 0 atto_rtl \N 2020061500 Starting plugin installation \N 0 1609808509 +1174 0 atto_rtl 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1175 0 atto_rtl 2020061500 2020061500 Plugin installed \N 0 1609808509 +1176 0 atto_strike \N 2020061500 Starting plugin installation \N 0 1609808509 +1177 0 atto_strike 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1178 0 atto_strike 2020061500 2020061500 Plugin installed \N 0 1609808509 +1179 0 atto_subscript \N 2020061500 Starting plugin installation \N 0 1609808509 +1180 0 atto_subscript 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1181 0 atto_subscript 2020061500 2020061500 Plugin installed \N 0 1609808509 +1182 0 atto_superscript \N 2020061500 Starting plugin installation \N 0 1609808509 +1183 0 atto_superscript 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1184 0 atto_superscript 2020061500 2020061500 Plugin installed \N 0 1609808509 +1185 0 atto_table \N 2020061500 Starting plugin installation \N 0 1609808509 +1186 0 atto_table 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1187 0 atto_table 2020061500 2020061500 Plugin installed \N 0 1609808509 +1188 0 atto_title \N 2020061500 Starting plugin installation \N 0 1609808509 +1189 0 atto_title 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1190 0 atto_title 2020061500 2020061500 Plugin installed \N 0 1609808509 +1191 0 atto_underline \N 2020061500 Starting plugin installation \N 0 1609808509 +1192 0 atto_underline 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1193 0 atto_underline 2020061500 2020061500 Plugin installed \N 0 1609808509 +1194 0 atto_undo \N 2020061500 Starting plugin installation \N 0 1609808509 +1195 0 atto_undo 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1196 0 atto_undo 2020061500 2020061500 Plugin installed \N 0 1609808509 +1197 0 atto_unorderedlist \N 2020061500 Starting plugin installation \N 0 1609808509 +1198 0 atto_unorderedlist 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1199 0 atto_unorderedlist 2020061500 2020061500 Plugin installed \N 0 1609808509 +1200 0 tinymce_ctrlhelp \N 2020061500 Starting plugin installation \N 0 1609808509 +1201 0 tinymce_ctrlhelp 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1202 0 tinymce_ctrlhelp 2020061500 2020061500 Plugin installed \N 0 1609808509 +1203 0 tinymce_managefiles \N 2020061500 Starting plugin installation \N 0 1609808509 +1204 0 tinymce_managefiles 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1205 0 tinymce_managefiles 2020061500 2020061500 Plugin installed \N 0 1609808509 +1206 0 tinymce_moodleemoticon \N 2020061500 Starting plugin installation \N 0 1609808509 +1207 0 tinymce_moodleemoticon 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1208 0 tinymce_moodleemoticon 2020061500 2020061500 Plugin installed \N 0 1609808509 +1209 0 tinymce_moodleimage \N 2020061500 Starting plugin installation \N 0 1609808509 +1210 0 tinymce_moodleimage 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1211 0 tinymce_moodleimage 2020061500 2020061500 Plugin installed \N 0 1609808509 +1212 0 tinymce_moodlemedia \N 2020061500 Starting plugin installation \N 0 1609808509 +1213 0 tinymce_moodlemedia 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1214 0 tinymce_moodlemedia 2020061500 2020061500 Plugin installed \N 0 1609808509 +1215 0 tinymce_moodlenolink \N 2020061500 Starting plugin installation \N 0 1609808509 +1216 0 tinymce_moodlenolink 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1217 0 tinymce_moodlenolink 2020061500 2020061500 Plugin installed \N 0 1609808509 +1218 0 tinymce_pdw \N 2020061500 Starting plugin installation \N 0 1609808509 +1219 0 tinymce_pdw 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1220 0 tinymce_pdw 2020061500 2020061500 Plugin installed \N 0 1609808509 +1221 0 tinymce_spellchecker \N 2020061500 Starting plugin installation \N 0 1609808509 +1222 0 tinymce_spellchecker 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1223 0 tinymce_spellchecker 2020061500 2020061500 Plugin installed \N 0 1609808509 +1224 0 tinymce_wrap \N 2020061500 Starting plugin installation \N 0 1609808509 +1225 0 tinymce_wrap 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1226 0 tinymce_wrap 2020061500 2020061500 Plugin installed \N 0 1609808509 +1227 0 logstore_database \N 2020061500 Starting plugin installation \N 0 1609808509 +1228 0 logstore_database 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 +1229 0 logstore_database 2020061500 2020061500 Plugin installed \N 0 1609808510 +1230 0 logstore_legacy \N 2020061500 Starting plugin installation \N 0 1609808510 +1231 0 logstore_legacy 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808510 +1232 0 logstore_legacy 2020061500 2020061500 Plugin installed \N 0 1609808510 +1233 0 logstore_standard \N 2020061500 Starting plugin installation \N 0 1609808510 +1234 0 logstore_standard 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808510 +1235 0 logstore_standard 2020061500 2020061500 Plugin installed \N 0 1609808510 +\. + + +-- +-- TOC entry 11781 (class 0 OID 0) +-- Dependencies: 191 +-- Name: mdl_upgrade_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_upgrade_log_id_seq', 1235, true); + + +-- +-- TOC entry 10346 (class 0 OID 22071) +-- Dependencies: 861 +-- Data for Name: mdl_url; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_url (id, course, name, intro, introformat, externalurl, display, displayoptions, parameters, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11782 (class 0 OID 0) +-- Dependencies: 860 +-- Name: mdl_url_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_url_id_seq', 1, false); + + +-- +-- TOC entry 9747 (class 0 OID 17035) +-- Dependencies: 262 +-- Data for Name: mdl_user; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_user (id, auth, confirmed, policyagreed, deleted, suspended, mnethostid, username, password, idnumber, firstname, lastname, email, emailstop, icq, skype, yahoo, aim, msn, phone1, phone2, institution, department, address, city, country, lang, calendartype, theme, timezone, firstaccess, lastaccess, lastlogin, currentlogin, lastip, secret, picture, url, description, descriptionformat, mailformat, maildigest, maildisplay, autosubscribe, trackforums, timecreated, timemodified, trustbitmask, imagealt, lastnamephonetic, firstnamephonetic, middlename, alternatename, moodlenetprofile) FROM stdin; +1 manual 1 0 0 0 1 guest $2y$10$uqhnR2sWCxC8jN5iDUZh1uCs95LbjaXtf0rk/N7fufZ5BrTmUPUfq Guest user root@localhost 0 en gregorian 99 0 0 0 0 0 This user is a special user that allows read-only access to some courses. 1 1 0 2 1 0 0 1609808466 0 \N \N \N \N \N \N +2 manual 1 0 0 0 1 admin $2y$10$MeiIoov87/LrH6ToPR1Ahe4uMCOxI9Jh9JERzVsZP6n5Gx/JLFdI6 Admin User email@email.com 0 en gregorian America/Los_Angeles 1609808513 1609889130 1609808513 1609883714 67.182.30.218 0 1 1 0 1 1 0 0 1609884654 0 \N +\. + + +-- +-- TOC entry 10004 (class 0 OID 19142) +-- Dependencies: 519 +-- Data for Name: mdl_user_devices; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_user_devices (id, userid, appid, name, model, platform, version, pushid, uuid, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11783 (class 0 OID 0) +-- Dependencies: 518 +-- Name: mdl_user_devices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_user_devices_id_seq', 1, false); + + +-- +-- TOC entry 9693 (class 0 OID 16592) +-- Dependencies: 208 +-- Data for Name: mdl_user_enrolments; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_user_enrolments (id, status, enrolid, userid, timestart, timeend, modifierid, timecreated, timemodified) FROM stdin; +\. + + +-- +-- TOC entry 11784 (class 0 OID 0) +-- Dependencies: 207 +-- Name: mdl_user_enrolments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_user_enrolments_id_seq', 1, false); + + +-- +-- TOC entry 11785 (class 0 OID 0) +-- Dependencies: 261 +-- Name: mdl_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_user_id_seq', 2, true); + + +-- +-- TOC entry 9798 (class 0 OID 17511) +-- Dependencies: 313 +-- Data for Name: mdl_user_info_category; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_user_info_category (id, name, sortorder) FROM stdin; +\. + + +-- +-- TOC entry 11786 (class 0 OID 0) +-- Dependencies: 312 +-- Name: mdl_user_info_category_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_user_info_category_id_seq', 1, false); + + +-- +-- TOC entry 9800 (class 0 OID 17521) +-- Dependencies: 315 +-- Data for Name: mdl_user_info_data; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_user_info_data (id, userid, fieldid, data, dataformat) FROM stdin; +\. + + +-- +-- TOC entry 11787 (class 0 OID 0) +-- Dependencies: 314 +-- Name: mdl_user_info_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_user_info_data_id_seq', 1, false); + + +-- +-- TOC entry 9796 (class 0 OID 17489) +-- Dependencies: 311 +-- Data for Name: mdl_user_info_field; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_user_info_field (id, shortname, name, datatype, description, descriptionformat, categoryid, sortorder, required, locked, visible, forceunique, signup, defaultdata, defaultdataformat, param1, param2, param3, param4, param5) FROM stdin; +\. + + +-- +-- TOC entry 11788 (class 0 OID 0) +-- Dependencies: 310 +-- Name: mdl_user_info_field_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_user_info_field_id_seq', 1, false); + + +-- +-- TOC entry 9751 (class 0 OID 17122) +-- Dependencies: 266 +-- Data for Name: mdl_user_lastaccess; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_user_lastaccess (id, userid, courseid, timeaccess) FROM stdin; +\. + + +-- +-- TOC entry 11789 (class 0 OID 0) +-- Dependencies: 265 +-- Name: mdl_user_lastaccess_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_user_lastaccess_id_seq', 1, false); + + +-- +-- TOC entry 9753 (class 0 OID 17136) +-- Dependencies: 268 +-- Data for Name: mdl_user_password_history; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_user_password_history (id, userid, hash, timecreated) FROM stdin; +\. + + +-- +-- TOC entry 11790 (class 0 OID 0) +-- Dependencies: 267 +-- Name: mdl_user_password_history_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_user_password_history_id_seq', 1, false); + + +-- +-- TOC entry 10006 (class 0 OID 19164) +-- Dependencies: 521 +-- Data for Name: mdl_user_password_resets; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_user_password_resets (id, userid, timerequested, timererequested, token) FROM stdin; +\. + + +-- +-- TOC entry 11791 (class 0 OID 0) +-- Dependencies: 520 +-- Name: mdl_user_password_resets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_user_password_resets_id_seq', 1, false); + + +-- +-- TOC entry 9749 (class 0 OID 17107) +-- Dependencies: 264 +-- Data for Name: mdl_user_preferences; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_user_preferences (id, userid, name, value) FROM stdin; +1 2 core_message_migrate_data 1 +2 2 auth_manual_passwordupdatetime 1609884654 +3 2 email_bounce_count 1 +4 2 email_send_count 1 +\. + + +-- +-- TOC entry 11792 (class 0 OID 0) +-- Dependencies: 263 +-- Name: mdl_user_preferences_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_user_preferences_id_seq', 4, true); + + +-- +-- TOC entry 9896 (class 0 OID 18347) +-- Dependencies: 411 +-- Data for Name: mdl_user_private_key; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_user_private_key (id, script, value, userid, instance, iprestriction, validuntil, timecreated) FROM stdin; +\. + + +-- +-- TOC entry 11793 (class 0 OID 0) +-- Dependencies: 410 +-- Name: mdl_user_private_key_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_user_private_key_id_seq', 1, false); + + +-- +-- TOC entry 10348 (class 0 OID 22088) +-- Dependencies: 863 +-- Data for Name: mdl_wiki; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_wiki (id, course, name, intro, introformat, timecreated, timemodified, firstpagetitle, wikimode, defaultformat, forceformat, editbegin, editend) FROM stdin; +\. + + +-- +-- TOC entry 11794 (class 0 OID 0) +-- Dependencies: 862 +-- Name: mdl_wiki_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_wiki_id_seq', 1, false); + + +-- +-- TOC entry 10358 (class 0 OID 22174) +-- Dependencies: 873 +-- Data for Name: mdl_wiki_links; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_wiki_links (id, subwikiid, frompageid, topageid, tomissingpage) FROM stdin; +\. + + +-- +-- TOC entry 11795 (class 0 OID 0) +-- Dependencies: 872 +-- Name: mdl_wiki_links_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_wiki_links_id_seq', 1, false); + + +-- +-- TOC entry 10360 (class 0 OID 22187) +-- Dependencies: 875 +-- Data for Name: mdl_wiki_locks; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_wiki_locks (id, pageid, sectionname, userid, lockedat) FROM stdin; +\. + + +-- +-- TOC entry 11796 (class 0 OID 0) +-- Dependencies: 874 +-- Name: mdl_wiki_locks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_wiki_locks_id_seq', 1, false); + + +-- +-- TOC entry 10352 (class 0 OID 22124) +-- Dependencies: 867 +-- Data for Name: mdl_wiki_pages; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_wiki_pages (id, subwikiid, title, cachedcontent, timecreated, timemodified, timerendered, userid, pageviews, readonly) FROM stdin; +\. + + +-- +-- TOC entry 11797 (class 0 OID 0) +-- Dependencies: 866 +-- Name: mdl_wiki_pages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_wiki_pages_id_seq', 1, false); + + +-- +-- TOC entry 10350 (class 0 OID 22111) +-- Dependencies: 865 +-- Data for Name: mdl_wiki_subwikis; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_wiki_subwikis (id, wikiid, groupid, userid) FROM stdin; +\. + + +-- +-- TOC entry 11798 (class 0 OID 0) +-- Dependencies: 864 +-- Name: mdl_wiki_subwikis_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_wiki_subwikis_id_seq', 1, false); + + +-- +-- TOC entry 10356 (class 0 OID 22162) +-- Dependencies: 871 +-- Data for Name: mdl_wiki_synonyms; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_wiki_synonyms (id, subwikiid, pageid, pagesynonym) FROM stdin; +\. + + +-- +-- TOC entry 11799 (class 0 OID 0) +-- Dependencies: 870 +-- Name: mdl_wiki_synonyms_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_wiki_synonyms_id_seq', 1, false); + + +-- +-- TOC entry 10354 (class 0 OID 22145) +-- Dependencies: 869 +-- Data for Name: mdl_wiki_versions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_wiki_versions (id, pageid, content, contentformat, version, timecreated, userid) FROM stdin; +\. + + +-- +-- TOC entry 11800 (class 0 OID 0) +-- Dependencies: 868 +-- Name: mdl_wiki_versions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_wiki_versions_id_seq', 1, false); + + +-- +-- TOC entry 10362 (class 0 OID 22198) +-- Dependencies: 877 +-- Data for Name: mdl_workshop; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_workshop (id, course, name, intro, introformat, instructauthors, instructauthorsformat, instructreviewers, instructreviewersformat, timemodified, phase, useexamples, usepeerassessment, useselfassessment, grade, gradinggrade, strategy, evaluation, gradedecimals, submissiontypetext, submissiontypefile, nattachments, submissionfiletypes, latesubmissions, maxbytes, examplesmode, submissionstart, submissionend, assessmentstart, assessmentend, phaseswitchassessment, conclusion, conclusionformat, overallfeedbackmode, overallfeedbackfiles, overallfeedbackfiletypes, overallfeedbackmaxbytes) FROM stdin; +\. + + +-- +-- TOC entry 10370 (class 0 OID 22295) +-- Dependencies: 885 +-- Data for Name: mdl_workshop_aggregations; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_workshop_aggregations (id, workshopid, userid, gradinggrade, timegraded) FROM stdin; +\. + + +-- +-- TOC entry 11801 (class 0 OID 0) +-- Dependencies: 884 +-- Name: mdl_workshop_aggregations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_workshop_aggregations_id_seq', 1, false); + + +-- +-- TOC entry 10366 (class 0 OID 22260) +-- Dependencies: 881 +-- Data for Name: mdl_workshop_assessments; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_workshop_assessments (id, submissionid, reviewerid, weight, timecreated, timemodified, grade, gradinggrade, gradinggradeover, gradinggradeoverby, feedbackauthor, feedbackauthorformat, feedbackauthorattachment, feedbackreviewer, feedbackreviewerformat) FROM stdin; +\. + + +-- +-- TOC entry 11802 (class 0 OID 0) +-- Dependencies: 880 +-- Name: mdl_workshop_assessments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_workshop_assessments_id_seq', 1, false); + + +-- +-- TOC entry 10368 (class 0 OID 22280) +-- Dependencies: 883 +-- Data for Name: mdl_workshop_grades; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_workshop_grades (id, assessmentid, strategy, dimensionid, grade, peercomment, peercommentformat) FROM stdin; +\. + + +-- +-- TOC entry 11803 (class 0 OID 0) +-- Dependencies: 882 +-- Name: mdl_workshop_grades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_workshop_grades_id_seq', 1, false); + + +-- +-- TOC entry 11804 (class 0 OID 0) +-- Dependencies: 876 +-- Name: mdl_workshop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_workshop_id_seq', 1, false); + + +-- +-- TOC entry 10364 (class 0 OID 22238) +-- Dependencies: 879 +-- Data for Name: mdl_workshop_submissions; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_workshop_submissions (id, workshopid, example, authorid, timecreated, timemodified, title, content, contentformat, contenttrust, attachment, grade, gradeover, gradeoverby, feedbackauthor, feedbackauthorformat, timegraded, published, late) FROM stdin; +\. + + +-- +-- TOC entry 11805 (class 0 OID 0) +-- Dependencies: 878 +-- Name: mdl_workshop_submissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_workshop_submissions_id_seq', 1, false); + + +-- +-- TOC entry 10520 (class 0 OID 23352) +-- Dependencies: 1035 +-- Data for Name: mdl_workshopallocation_scheduled; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_workshopallocation_scheduled (id, workshopid, enabled, submissionend, timeallocated, settings, resultstatus, resultmessage, resultlog) FROM stdin; +\. + + +-- +-- TOC entry 11806 (class 0 OID 0) +-- Dependencies: 1034 +-- Name: mdl_workshopallocation_scheduled_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_workshopallocation_scheduled_id_seq', 1, false); + + +-- +-- TOC entry 10522 (class 0 OID 23365) +-- Dependencies: 1037 +-- Data for Name: mdl_workshopeval_best_settings; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_workshopeval_best_settings (id, workshopid, comparison) FROM stdin; +\. + + +-- +-- TOC entry 11807 (class 0 OID 0) +-- Dependencies: 1036 +-- Name: mdl_workshopeval_best_settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_workshopeval_best_settings_id_seq', 1, false); + + +-- +-- TOC entry 10506 (class 0 OID 23261) +-- Dependencies: 1021 +-- Data for Name: mdl_workshopform_accumulative; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_workshopform_accumulative (id, workshopid, sort, description, descriptionformat, grade, weight) FROM stdin; +\. + + +-- +-- TOC entry 11808 (class 0 OID 0) +-- Dependencies: 1020 +-- Name: mdl_workshopform_accumulative_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_workshopform_accumulative_id_seq', 1, false); + + +-- +-- TOC entry 10508 (class 0 OID 23276) +-- Dependencies: 1023 +-- Data for Name: mdl_workshopform_comments; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_workshopform_comments (id, workshopid, sort, description, descriptionformat) FROM stdin; +\. + + +-- +-- TOC entry 11809 (class 0 OID 0) +-- Dependencies: 1022 +-- Name: mdl_workshopform_comments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_workshopform_comments_id_seq', 1, false); + + +-- +-- TOC entry 10510 (class 0 OID 23290) +-- Dependencies: 1025 +-- Data for Name: mdl_workshopform_numerrors; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_workshopform_numerrors (id, workshopid, sort, description, descriptionformat, descriptiontrust, grade0, grade1, weight) FROM stdin; +\. + + +-- +-- TOC entry 11810 (class 0 OID 0) +-- Dependencies: 1024 +-- Name: mdl_workshopform_numerrors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_workshopform_numerrors_id_seq', 1, false); + + +-- +-- TOC entry 10512 (class 0 OID 23305) +-- Dependencies: 1027 +-- Data for Name: mdl_workshopform_numerrors_map; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_workshopform_numerrors_map (id, workshopid, nonegative, grade) FROM stdin; +\. + + +-- +-- TOC entry 11811 (class 0 OID 0) +-- Dependencies: 1026 +-- Name: mdl_workshopform_numerrors_map_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_workshopform_numerrors_map_id_seq', 1, false); + + +-- +-- TOC entry 10514 (class 0 OID 23315) +-- Dependencies: 1029 +-- Data for Name: mdl_workshopform_rubric; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_workshopform_rubric (id, workshopid, sort, description, descriptionformat) FROM stdin; +\. + + +-- +-- TOC entry 10518 (class 0 OID 23342) +-- Dependencies: 1033 +-- Data for Name: mdl_workshopform_rubric_config; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_workshopform_rubric_config (id, workshopid, layout) FROM stdin; +\. + + +-- +-- TOC entry 11812 (class 0 OID 0) +-- Dependencies: 1032 +-- Name: mdl_workshopform_rubric_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_workshopform_rubric_config_id_seq', 1, false); + + +-- +-- TOC entry 11813 (class 0 OID 0) +-- Dependencies: 1028 +-- Name: mdl_workshopform_rubric_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_workshopform_rubric_id_seq', 1, false); + + +-- +-- TOC entry 10516 (class 0 OID 23329) +-- Dependencies: 1031 +-- Data for Name: mdl_workshopform_rubric_levels; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_workshopform_rubric_levels (id, dimensionid, grade, definition, definitionformat) FROM stdin; +\. + + +-- +-- TOC entry 11814 (class 0 OID 0) +-- Dependencies: 1030 +-- Name: mdl_workshopform_rubric_levels_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_workshopform_rubric_levels_id_seq', 1, false); + + +-- +-- TOC entry 8675 (class 2606 OID 19646) +-- Name: mdl_analytics_indicator_calc mdl_analindicalc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_analytics_indicator_calc + ADD CONSTRAINT mdl_analindicalc_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8651 (class 2606 OID 19556) +-- Name: mdl_analytics_models mdl_analmode_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_analytics_models + ADD CONSTRAINT mdl_analmode_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8653 (class 2606 OID 19571) +-- Name: mdl_analytics_models_log mdl_analmodelog_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_analytics_models_log + ADD CONSTRAINT mdl_analmodelog_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8657 (class 2606 OID 19584) +-- Name: mdl_analytics_predictions mdl_analpred_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_analytics_predictions + ADD CONSTRAINT mdl_analpred_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8678 (class 2606 OID 19657) +-- Name: mdl_analytics_prediction_actions mdl_analpredacti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_analytics_prediction_actions + ADD CONSTRAINT mdl_analpredacti_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8665 (class 2606 OID 19616) +-- Name: mdl_analytics_predict_samples mdl_analpredsamp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_analytics_predict_samples + ADD CONSTRAINT mdl_analpredsamp_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8661 (class 2606 OID 19600) +-- Name: mdl_analytics_train_samples mdl_analtraisamp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_analytics_train_samples + ADD CONSTRAINT mdl_analtraisamp_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8687 (class 2606 OID 19681) +-- Name: mdl_analytics_used_analysables mdl_analusedanal_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_analytics_used_analysables + ADD CONSTRAINT mdl_analusedanal_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8670 (class 2606 OID 19630) +-- Name: mdl_analytics_used_files mdl_analusedfile_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_analytics_used_files + ADD CONSTRAINT mdl_analusedfile_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8855 (class 2606 OID 20399) +-- Name: mdl_assignment mdl_assi_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignment + ADD CONSTRAINT mdl_assi_id3_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8818 (class 2606 OID 20270) +-- Name: mdl_assign mdl_assi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assign + ADD CONSTRAINT mdl_assi_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9478 (class 2606 OID 23094) +-- Name: mdl_assignfeedback_comments mdl_assicomm_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignfeedback_comments + ADD CONSTRAINT mdl_assicomm_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9486 (class 2606 OID 23136) +-- Name: mdl_assignfeedback_editpdf_annot mdl_assieditanno_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_annot + ADD CONSTRAINT mdl_assieditanno_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9482 (class 2606 OID 23114) +-- Name: mdl_assignfeedback_editpdf_cmnt mdl_assieditcmnt_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_cmnt + ADD CONSTRAINT mdl_assieditcmnt_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9491 (class 2606 OID 23162) +-- Name: mdl_assignfeedback_editpdf_queue mdl_assieditqueu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_queue + ADD CONSTRAINT mdl_assieditqueu_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9488 (class 2606 OID 23152) +-- Name: mdl_assignfeedback_editpdf_quick mdl_assieditquic_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_quick + ADD CONSTRAINT mdl_assieditquic_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9496 (class 2606 OID 23178) +-- Name: mdl_assignfeedback_editpdf_rot mdl_assieditrot_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_rot + ADD CONSTRAINT mdl_assieditrot_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9500 (class 2606 OID 23191) +-- Name: mdl_assignfeedback_file mdl_assifile_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignfeedback_file + ADD CONSTRAINT mdl_assifile_id3_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9469 (class 2606 OID 23062) +-- Name: mdl_assignsubmission_file mdl_assifile_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignsubmission_file + ADD CONSTRAINT mdl_assifile_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8831 (class 2606 OID 20307) +-- Name: mdl_assign_grades mdl_assigrad_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assign_grades + ADD CONSTRAINT mdl_assigrad_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9473 (class 2606 OID 23078) +-- Name: mdl_assignsubmission_onlinetext mdl_assionli_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignsubmission_onlinetext + ADD CONSTRAINT mdl_assionli_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8851 (class 2606 OID 20368) +-- Name: mdl_assign_overrides mdl_assiover_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assign_overrides + ADD CONSTRAINT mdl_assiover_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8835 (class 2606 OID 20326) +-- Name: mdl_assign_plugin_config mdl_assiplugconf_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assign_plugin_config + ADD CONSTRAINT mdl_assiplugconf_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8858 (class 2606 OID 20421) +-- Name: mdl_assignment_submissions mdl_assisubm_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignment_submissions + ADD CONSTRAINT mdl_assisubm_id3_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8825 (class 2606 OID 20287) +-- Name: mdl_assign_submission mdl_assisubm_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assign_submission + ADD CONSTRAINT mdl_assisubm_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8863 (class 2606 OID 20438) +-- Name: mdl_assignment_upgrade mdl_assiupgr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assignment_upgrade + ADD CONSTRAINT mdl_assiupgr_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8845 (class 2606 OID 20356) +-- Name: mdl_assign_user_flags mdl_assiuserflag_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assign_user_flags + ADD CONSTRAINT mdl_assiuserflag_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8841 (class 2606 OID 20340) +-- Name: mdl_assign_user_mapping mdl_assiusermapp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_assign_user_mapping + ADD CONSTRAINT mdl_assiusermapp_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9260 (class 2606 OID 22316) +-- Name: mdl_auth_oauth2_linked_login mdl_authoautlinklogi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_auth_oauth2_linked_login + ADD CONSTRAINT mdl_authoautlinklogi_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8443 (class 2606 OID 18816) +-- Name: mdl_backup_controllers mdl_backcont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_backup_controllers + ADD CONSTRAINT mdl_backcont_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8388 (class 2606 OID 18601) +-- Name: mdl_backup_courses mdl_backcour_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_backup_courses + ADD CONSTRAINT mdl_backcour_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8450 (class 2606 OID 18832) +-- Name: mdl_backup_logs mdl_backlogs_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_backup_logs + ADD CONSTRAINT mdl_backlogs_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8476 (class 2606 OID 18946) +-- Name: mdl_badge mdl_badg_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge + ADD CONSTRAINT mdl_badg_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8526 (class 2606 OID 19108) +-- Name: mdl_badge_alignment mdl_badgalig_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_alignment + ADD CONSTRAINT mdl_badgalig_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8509 (class 2606 OID 19049) +-- Name: mdl_badge_backpack mdl_badgback_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_backpack + ADD CONSTRAINT mdl_badgback_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8513 (class 2606 OID 19065) +-- Name: mdl_badge_backpack_oauth2 mdl_badgbackoaut_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_backpack_oauth2 + ADD CONSTRAINT mdl_badgbackoaut_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8484 (class 2606 OID 18964) +-- Name: mdl_badge_criteria mdl_badgcrit_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_criteria + ADD CONSTRAINT mdl_badgcrit_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8495 (class 2606 OID 19006) +-- Name: mdl_badge_criteria_met mdl_badgcritmet_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_criteria_met + ADD CONSTRAINT mdl_badgcritmet_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8487 (class 2606 OID 18979) +-- Name: mdl_badge_criteria_param mdl_badgcritpara_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_criteria_param + ADD CONSTRAINT mdl_badgcritpara_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8500 (class 2606 OID 19025) +-- Name: mdl_badge_endorsement mdl_badgendo_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_endorsement + ADD CONSTRAINT mdl_badgendo_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8519 (class 2606 OID 19080) +-- Name: mdl_badge_external mdl_badgexte_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_external + ADD CONSTRAINT mdl_badgexte_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8535 (class 2606 OID 19136) +-- Name: mdl_badge_external_backpack mdl_badgexteback_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_external_backpack + ADD CONSTRAINT mdl_badgexteback_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8521 (class 2606 OID 19092) +-- Name: mdl_badge_external_identifier mdl_badgexteiden_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_external_identifier + ADD CONSTRAINT mdl_badgexteiden_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8491 (class 2606 OID 18995) +-- Name: mdl_badge_issued mdl_badgissu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_issued + ADD CONSTRAINT mdl_badgissu_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8503 (class 2606 OID 19034) +-- Name: mdl_badge_manual_award mdl_badgmanuawar_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_manual_award + ADD CONSTRAINT mdl_badgmanuawar_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8530 (class 2606 OID 19118) +-- Name: mdl_badge_related mdl_badgrela_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_badge_related + ADD CONSTRAINT mdl_badgrela_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8390 (class 2606 OID 18614) +-- Name: mdl_block mdl_bloc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_block + ADD CONSTRAINT mdl_bloc_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8393 (class 2606 OID 18630) +-- Name: mdl_block_instances mdl_blocinst_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_block_instances + ADD CONSTRAINT mdl_blocinst_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8401 (class 2606 OID 18644) +-- Name: mdl_block_positions mdl_blocposi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_block_positions + ADD CONSTRAINT mdl_blocposi_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9336 (class 2606 OID 22569) +-- Name: mdl_block_recentlyaccesseditems mdl_blocrece_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_block_recentlyaccesseditems + ADD CONSTRAINT mdl_blocrece_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9332 (class 2606 OID 22560) +-- Name: mdl_block_recent_activity mdl_blocreceacti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_block_recent_activity + ADD CONSTRAINT mdl_blocreceacti_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9340 (class 2606 OID 22590) +-- Name: mdl_block_rss_client mdl_blocrssclie_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_block_rss_client + ADD CONSTRAINT mdl_blocrssclie_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8428 (class 2606 OID 18738) +-- Name: mdl_blog_association mdl_blogasso_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_blog_association + ADD CONSTRAINT mdl_blogasso_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8430 (class 2606 OID 18754) +-- Name: mdl_blog_external mdl_blogexte_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_blog_external + ADD CONSTRAINT mdl_blogexte_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8867 (class 2606 OID 20460) +-- Name: mdl_book mdl_book_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_book + ADD CONSTRAINT mdl_book_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8869 (class 2606 OID 20480) +-- Name: mdl_book_chapters mdl_bookchap_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_book_chapters + ADD CONSTRAINT mdl_bookchap_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7892 (class 2606 OID 16783) +-- Name: mdl_cache_filters mdl_cachfilt_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_cache_filters + ADD CONSTRAINT mdl_cachfilt_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8334 (class 2606 OID 18383) +-- Name: mdl_cache_flags mdl_cachflag_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_cache_flags + ADD CONSTRAINT mdl_cachflag_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8063 (class 2606 OID 17371) +-- Name: mdl_capabilities mdl_capa_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_capabilities + ADD CONSTRAINT mdl_capa_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8872 (class 2606 OID 20499) +-- Name: mdl_chat mdl_chat_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_chat + ADD CONSTRAINT mdl_chat_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8876 (class 2606 OID 20516) +-- Name: mdl_chat_messages mdl_chatmess_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_chat_messages + ADD CONSTRAINT mdl_chatmess_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8882 (class 2606 OID 20536) +-- Name: mdl_chat_messages_current mdl_chatmesscurr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_chat_messages_current + ADD CONSTRAINT mdl_chatmesscurr_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8888 (class 2606 OID 20559) +-- Name: mdl_chat_users mdl_chatuser_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_chat_users + ADD CONSTRAINT mdl_chatuser_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8893 (class 2606 OID 20590) +-- Name: mdl_choice mdl_choi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_choice + ADD CONSTRAINT mdl_choi_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8899 (class 2606 OID 20618) +-- Name: mdl_choice_answers mdl_choiansw_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_choice_answers + ADD CONSTRAINT mdl_choiansw_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8896 (class 2606 OID 20605) +-- Name: mdl_choice_options mdl_choiopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_choice_options + ADD CONSTRAINT mdl_choiopti_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8319 (class 2606 OID 18329) +-- Name: mdl_cohort mdl_coho_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_cohort + ADD CONSTRAINT mdl_coho_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8323 (class 2606 OID 18341) +-- Name: mdl_cohort_members mdl_cohomemb_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_cohort_members + ADD CONSTRAINT mdl_cohomemb_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8404 (class 2606 OID 18660) +-- Name: mdl_comments mdl_comm_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_comments + ADD CONSTRAINT mdl_comm_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8573 (class 2606 OID 19288) +-- Name: mdl_competency mdl_comp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency + ADD CONSTRAINT mdl_comp_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8586 (class 2606 OID 19322) +-- Name: mdl_competency_coursecomp mdl_compcour_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_coursecomp + ADD CONSTRAINT mdl_compcour_id3_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8577 (class 2606 OID 19298) +-- Name: mdl_competency_coursecompsetting mdl_compcour_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_coursecompsetting + ADD CONSTRAINT mdl_compcour_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8617 (class 2606 OID 19435) +-- Name: mdl_competency_evidence mdl_compevid_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_evidence + ADD CONSTRAINT mdl_compevid_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8579 (class 2606 OID 19313) +-- Name: mdl_competency_framework mdl_compfram_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_framework + ADD CONSTRAINT mdl_compfram_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8631 (class 2606 OID 19467) +-- Name: mdl_competency_modulecomp mdl_compmodu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_modulecomp + ADD CONSTRAINT mdl_compmodu_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8614 (class 2606 OID 19421) +-- Name: mdl_competency_plancomp mdl_compplan_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_plancomp + ADD CONSTRAINT mdl_compplan_id3_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8588 (class 2606 OID 19341) +-- Name: mdl_competency_plan mdl_compplan_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_plan + ADD CONSTRAINT mdl_compplan_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8603 (class 2606 OID 19385) +-- Name: mdl_competency_relatedcomp mdl_comprela_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_relatedcomp + ADD CONSTRAINT mdl_comprela_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8596 (class 2606 OID 19365) +-- Name: mdl_competency_templatecomp mdl_comptemp_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_templatecomp + ADD CONSTRAINT mdl_comptemp_id3_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8599 (class 2606 OID 19375) +-- Name: mdl_competency_templatecohort mdl_comptemp_id5_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_templatecohort + ADD CONSTRAINT mdl_comptemp_id5_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8593 (class 2606 OID 19357) +-- Name: mdl_competency_template mdl_comptemp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_template + ADD CONSTRAINT mdl_comptemp_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8608 (class 2606 OID 19403) +-- Name: mdl_competency_usercompcourse mdl_compuser_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_usercompcourse + ADD CONSTRAINT mdl_compuser_id3_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8611 (class 2606 OID 19412) +-- Name: mdl_competency_usercompplan mdl_compuser_id5_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_usercompplan + ADD CONSTRAINT mdl_compuser_id5_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8620 (class 2606 OID 19448) +-- Name: mdl_competency_userevidence mdl_compuser_id7_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_userevidence + ADD CONSTRAINT mdl_compuser_id7_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8623 (class 2606 OID 19457) +-- Name: mdl_competency_userevidencecomp mdl_compuser_id9_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_userevidencecomp + ADD CONSTRAINT mdl_compuser_id9_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8605 (class 2606 OID 19394) +-- Name: mdl_competency_usercomp mdl_compuser_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_competency_usercomp + ADD CONSTRAINT mdl_compuser_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7792 (class 2606 OID 16396) +-- Name: mdl_config mdl_conf_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_config + ADD CONSTRAINT mdl_conf_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7798 (class 2606 OID 16423) +-- Name: mdl_config_log mdl_conflog_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_config_log + ADD CONSTRAINT mdl_conflog_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7795 (class 2606 OID 16410) +-- Name: mdl_config_plugins mdl_confplug_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_config_plugins + ADD CONSTRAINT mdl_confplug_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8056 (class 2606 OID 17347) +-- Name: mdl_context mdl_cont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_context + ADD CONSTRAINT mdl_cont_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8735 (class 2606 OID 19841) +-- Name: mdl_contentbank_content mdl_contcont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_contentbank_content + ADD CONSTRAINT mdl_contcont_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8061 (class 2606 OID 17358) +-- Name: mdl_context_temp mdl_conttemp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_context_temp + ADD CONSTRAINT mdl_conttemp_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7808 (class 2606 OID 16481) +-- Name: mdl_course mdl_cour_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course + ADD CONSTRAINT mdl_cour_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7813 (class 2606 OID 16506) +-- Name: mdl_course_categories mdl_courcate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_categories + ADD CONSTRAINT mdl_courcate_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7832 (class 2606 OID 16560) +-- Name: mdl_course_completions mdl_courcomp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_completions + ADD CONSTRAINT mdl_courcomp_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7819 (class 2606 OID 16517) +-- Name: mdl_course_completion_aggr_methd mdl_courcompaggrmeth_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_completion_aggr_methd + ADD CONSTRAINT mdl_courcompaggrmeth_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7822 (class 2606 OID 16530) +-- Name: mdl_course_completion_criteria mdl_courcompcrit_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_completion_criteria + ADD CONSTRAINT mdl_courcompcrit_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7826 (class 2606 OID 16542) +-- Name: mdl_course_completion_crit_compl mdl_courcompcritcomp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_completion_crit_compl + ADD CONSTRAINT mdl_courcompcritcomp_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8647 (class 2606 OID 19539) +-- Name: mdl_course_completion_defaults mdl_courcompdefa_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_completion_defaults + ADD CONSTRAINT mdl_courcompdefa_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7867 (class 2606 OID 16700) +-- Name: mdl_course_format_options mdl_courformopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_format_options + ADD CONSTRAINT mdl_courformopti_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7849 (class 2606 OID 16635) +-- Name: mdl_course_modules mdl_courmodu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_modules + ADD CONSTRAINT mdl_courmodu_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7856 (class 2606 OID 16649) +-- Name: mdl_course_modules_completion mdl_courmoducomp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_modules_completion + ADD CONSTRAINT mdl_courmoducomp_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8457 (class 2606 OID 18862) +-- Name: mdl_course_published mdl_courpubl_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_published + ADD CONSTRAINT mdl_courpubl_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7862 (class 2606 OID 16685) +-- Name: mdl_course_request mdl_courrequ_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_request + ADD CONSTRAINT mdl_courrequ_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7860 (class 2606 OID 16667) +-- Name: mdl_course_sections mdl_coursect_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_course_sections + ADD CONSTRAINT mdl_coursect_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8702 (class 2606 OID 19727) +-- Name: mdl_customfield_category mdl_custcate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_customfield_category + ADD CONSTRAINT mdl_custcate_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8713 (class 2606 OID 19756) +-- Name: mdl_customfield_data mdl_custdata_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_customfield_data + ADD CONSTRAINT mdl_custdata_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8706 (class 2606 OID 19743) +-- Name: mdl_customfield_field mdl_custfiel_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_customfield_field + ADD CONSTRAINT mdl_custfiel_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8904 (class 2606 OID 20656) +-- Name: mdl_data mdl_data_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_data + ADD CONSTRAINT mdl_data_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8914 (class 2606 OID 20702) +-- Name: mdl_data_content mdl_datacont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_data_content + ADD CONSTRAINT mdl_datacont_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8907 (class 2606 OID 20672) +-- Name: mdl_data_fields mdl_datafiel_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_data_fields + ADD CONSTRAINT mdl_datafiel_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8911 (class 2606 OID 20688) +-- Name: mdl_data_records mdl_datareco_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_data_records + ADD CONSTRAINT mdl_datareco_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9343 (class 2606 OID 22605) +-- Name: mdl_editor_atto_autosave mdl_editattoauto_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_editor_atto_autosave + ADD CONSTRAINT mdl_editattoauto_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7839 (class 2606 OID 16587) +-- Name: mdl_enrol mdl_enro_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol + ADD CONSTRAINT mdl_enro_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9268 (class 2606 OID 22333) +-- Name: mdl_enrol_flatfile mdl_enroflat_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_flatfile + ADD CONSTRAINT mdl_enroflat_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9281 (class 2606 OID 22387) +-- Name: mdl_enrol_lti_lti2_consumer mdl_enroltilti2cons_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_lti_lti2_consumer + ADD CONSTRAINT mdl_enroltilti2cons_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9288 (class 2606 OID 22414) +-- Name: mdl_enrol_lti_lti2_context mdl_enroltilti2cont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_lti_lti2_context + ADD CONSTRAINT mdl_enroltilti2cont_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9291 (class 2606 OID 22424) +-- Name: mdl_enrol_lti_lti2_nonce mdl_enroltilti2nonc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_lti_lti2_nonce + ADD CONSTRAINT mdl_enroltilti2nonc_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9295 (class 2606 OID 22437) +-- Name: mdl_enrol_lti_lti2_resource_link mdl_enroltilti2resolink_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_lti_lti2_resource_link + ADD CONSTRAINT mdl_enroltilti2resolink_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9298 (class 2606 OID 22449) +-- Name: mdl_enrol_lti_lti2_share_key mdl_enroltilti2sharkey_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_lti_lti2_share_key + ADD CONSTRAINT mdl_enroltilti2sharkey_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9284 (class 2606 OID 22400) +-- Name: mdl_enrol_lti_lti2_tool_proxy mdl_enroltilti2toolprox_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_lti_lti2_tool_proxy + ADD CONSTRAINT mdl_enroltilti2toolprox_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9302 (class 2606 OID 22464) +-- Name: mdl_enrol_lti_lti2_user_result mdl_enroltilti2userresu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_lti_lti2_user_result + ADD CONSTRAINT mdl_enroltilti2userresu_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9274 (class 2606 OID 22358) +-- Name: mdl_enrol_lti_tools mdl_enroltitool_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_lti_tools + ADD CONSTRAINT mdl_enroltitool_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9306 (class 2606 OID 22473) +-- Name: mdl_enrol_lti_tool_consumer_map mdl_enroltitoolconsmap_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_lti_tool_consumer_map + ADD CONSTRAINT mdl_enroltitoolconsmap_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9276 (class 2606 OID 22371) +-- Name: mdl_enrol_lti_users mdl_enroltiuser_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_lti_users + ADD CONSTRAINT mdl_enroltiuser_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9311 (class 2606 OID 22506) +-- Name: mdl_enrol_paypal mdl_enropayp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_enrol_paypal + ADD CONSTRAINT mdl_enropayp_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7882 (class 2606 OID 16756) +-- Name: mdl_event mdl_even_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_event + ADD CONSTRAINT mdl_even_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8196 (class 2606 OID 17904) +-- Name: mdl_events_handlers mdl_evenhand_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_events_handlers + ADD CONSTRAINT mdl_evenhand_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8192 (class 2606 OID 17887) +-- Name: mdl_events_queue mdl_evenqueu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_events_queue + ADD CONSTRAINT mdl_evenqueu_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8199 (class 2606 OID 17916) +-- Name: mdl_events_queue_handlers mdl_evenqueuhand_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_events_queue_handlers + ADD CONSTRAINT mdl_evenqueuhand_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8473 (class 2606 OID 18926) +-- Name: mdl_event_subscriptions mdl_evensubs_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_event_subscriptions + ADD CONSTRAINT mdl_evensubs_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8410 (class 2606 OID 18692) +-- Name: mdl_external_functions mdl_extefunc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_external_functions + ADD CONSTRAINT mdl_extefunc_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8407 (class 2606 OID 18676) +-- Name: mdl_external_services mdl_exteserv_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_external_services + ADD CONSTRAINT mdl_exteserv_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8414 (class 2606 OID 18702) +-- Name: mdl_external_services_functions mdl_exteservfunc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_external_services_functions + ADD CONSTRAINT mdl_exteservfunc_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8417 (class 2606 OID 18711) +-- Name: mdl_external_services_users mdl_exteservuser_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_external_services_users + ADD CONSTRAINT mdl_exteservuser_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8423 (class 2606 OID 18726) +-- Name: mdl_external_tokens mdl_extetoke_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_external_tokens + ADD CONSTRAINT mdl_extetoke_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8697 (class 2606 OID 19709) +-- Name: mdl_favourite mdl_favo_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_favourite + ADD CONSTRAINT mdl_favo_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8918 (class 2606 OID 20729) +-- Name: mdl_feedback mdl_feed_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_feedback + ADD CONSTRAINT mdl_feed_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8932 (class 2606 OID 20797) +-- Name: mdl_feedback_completedtmp mdl_feedcomp_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_feedback_completedtmp + ADD CONSTRAINT mdl_feedcomp_id3_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8928 (class 2606 OID 20780) +-- Name: mdl_feedback_completed mdl_feedcomp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_feedback_completed + ADD CONSTRAINT mdl_feedcomp_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8924 (class 2606 OID 20764) +-- Name: mdl_feedback_item mdl_feeditem_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_feedback_item + ADD CONSTRAINT mdl_feeditem_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8947 (class 2606 OID 20845) +-- Name: mdl_feedback_sitecourse_map mdl_feedsitemap_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_feedback_sitecourse_map + ADD CONSTRAINT mdl_feedsitemap_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8921 (class 2606 OID 20741) +-- Name: mdl_feedback_template mdl_feedtemp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_feedback_template + ADD CONSTRAINT mdl_feedtemp_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8942 (class 2606 OID 20832) +-- Name: mdl_feedback_valuetmp mdl_feedvalu_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_feedback_valuetmp + ADD CONSTRAINT mdl_feedvalu_id3_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8937 (class 2606 OID 20814) +-- Name: mdl_feedback_value mdl_feedvalu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_feedback_value + ADD CONSTRAINT mdl_feedvalu_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8367 (class 2606 OID 18515) +-- Name: mdl_files mdl_file_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_files + ADD CONSTRAINT mdl_file_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8378 (class 2606 OID 18549) +-- Name: mdl_file_conversion mdl_fileconv_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_file_conversion + ADD CONSTRAINT mdl_fileconv_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8373 (class 2606 OID 18534) +-- Name: mdl_files_reference mdl_filerefe_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_files_reference + ADD CONSTRAINT mdl_filerefe_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7871 (class 2606 OID 16712) +-- Name: mdl_filter_active mdl_filtacti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_filter_active + ADD CONSTRAINT mdl_filtacti_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7875 (class 2606 OID 16727) +-- Name: mdl_filter_config mdl_filtconf_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_filter_config + ADD CONSTRAINT mdl_filtconf_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8950 (class 2606 OID 20866) +-- Name: mdl_folder mdl_fold_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_folder + ADD CONSTRAINT mdl_fold_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8953 (class 2606 OID 20905) +-- Name: mdl_forum mdl_foru_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_forum + ADD CONSTRAINT mdl_foru_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8980 (class 2606 OID 20998) +-- Name: mdl_forum_digests mdl_forudige_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_forum_digests + ADD CONSTRAINT mdl_forudige_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8957 (class 2606 OID 20927) +-- Name: mdl_forum_discussions mdl_forudisc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_forum_discussions + ADD CONSTRAINT mdl_forudisc_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8993 (class 2606 OID 21038) +-- Name: mdl_forum_discussion_subs mdl_forudiscsubs_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_forum_discussion_subs + ADD CONSTRAINT mdl_forudiscsubs_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8999 (class 2606 OID 21050) +-- Name: mdl_forum_grades mdl_forugrad_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_forum_grades + ADD CONSTRAINT mdl_forugrad_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8962 (class 2606 OID 20955) +-- Name: mdl_forum_posts mdl_forupost_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_forum_posts + ADD CONSTRAINT mdl_forupost_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8969 (class 2606 OID 20973) +-- Name: mdl_forum_queue mdl_foruqueu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_forum_queue + ADD CONSTRAINT mdl_foruqueu_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8983 (class 2606 OID 21015) +-- Name: mdl_forum_read mdl_foruread_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_forum_read + ADD CONSTRAINT mdl_foruread_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8974 (class 2606 OID 20986) +-- Name: mdl_forum_subscriptions mdl_forusubs_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_forum_subscriptions + ADD CONSTRAINT mdl_forusubs_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8988 (class 2606 OID 21028) +-- Name: mdl_forum_track_prefs mdl_forutracpref_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_forum_track_prefs + ADD CONSTRAINT mdl_forutracpref_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9003 (class 2606 OID 21093) +-- Name: mdl_glossary mdl_glos_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_glossary + ADD CONSTRAINT mdl_glos_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9011 (class 2606 OID 21132) +-- Name: mdl_glossary_alias mdl_glosalia_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_glossary_alias + ADD CONSTRAINT mdl_glosalia_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9014 (class 2606 OID 21144) +-- Name: mdl_glossary_categories mdl_gloscate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_glossary_categories + ADD CONSTRAINT mdl_gloscate_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9007 (class 2606 OID 21119) +-- Name: mdl_glossary_entries mdl_glosentr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_glossary_entries + ADD CONSTRAINT mdl_glosentr_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9018 (class 2606 OID 21155) +-- Name: mdl_glossary_entries_categories mdl_glosentrcate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_glossary_entries_categories + ADD CONSTRAINT mdl_glosentrcate_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9020 (class 2606 OID 21173) +-- Name: mdl_glossary_formats mdl_glosform_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_glossary_formats + ADD CONSTRAINT mdl_glosform_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8461 (class 2606 OID 18872) +-- Name: mdl_grading_areas mdl_gradarea_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grading_areas + ADD CONSTRAINT mdl_gradarea_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8214 (class 2606 OID 17965) +-- Name: mdl_grade_categories mdl_gradcate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_categories + ADD CONSTRAINT mdl_gradcate_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8245 (class 2606 OID 18071) +-- Name: mdl_grade_categories_history mdl_gradcatehist_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_categories_history + ADD CONSTRAINT mdl_gradcatehist_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8465 (class 2606 OID 18889) +-- Name: mdl_grading_definitions mdl_graddefi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grading_definitions + ADD CONSTRAINT mdl_graddefi_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8227 (class 2606 OID 18024) +-- Name: mdl_grade_grades mdl_gradgrad_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_grades + ADD CONSTRAINT mdl_gradgrad_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8262 (class 2606 OID 18135) +-- Name: mdl_grade_grades_history mdl_gradgradhist_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_grades_history + ADD CONSTRAINT mdl_gradgradhist_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9354 (class 2606 OID 22644) +-- Name: mdl_gradingform_guide_comments mdl_gradguidcomm_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_gradingform_guide_comments + ADD CONSTRAINT mdl_gradguidcomm_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9346 (class 2606 OID 22618) +-- Name: mdl_gradingform_guide_criteria mdl_gradguidcrit_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_gradingform_guide_criteria + ADD CONSTRAINT mdl_gradguidcrit_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9349 (class 2606 OID 22630) +-- Name: mdl_gradingform_guide_fillings mdl_gradguidfill_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_gradingform_guide_fillings + ADD CONSTRAINT mdl_gradguidfill_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8272 (class 2606 OID 18153) +-- Name: mdl_grade_import_newitem mdl_gradimponewi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_import_newitem + ADD CONSTRAINT mdl_gradimponewi_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8275 (class 2606 OID 18166) +-- Name: mdl_grade_import_values mdl_gradimpovalu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_import_values + ADD CONSTRAINT mdl_gradimpovalu_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8470 (class 2606 OID 18905) +-- Name: mdl_grading_instances mdl_gradinst_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grading_instances + ADD CONSTRAINT mdl_gradinst_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8220 (class 2606 OID 17994) +-- Name: mdl_grade_items mdl_graditem_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_items + ADD CONSTRAINT mdl_graditem_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8254 (class 2606 OID 18105) +-- Name: mdl_grade_items_history mdl_graditemhist_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_items_history + ADD CONSTRAINT mdl_graditemhist_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8331 (class 2606 OID 18368) +-- Name: mdl_grade_letters mdl_gradlett_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_letters + ADD CONSTRAINT mdl_gradlett_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8204 (class 2606 OID 17931) +-- Name: mdl_grade_outcomes mdl_gradoutc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_outcomes + ADD CONSTRAINT mdl_gradoutc_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8210 (class 2606 OID 17943) +-- Name: mdl_grade_outcomes_courses mdl_gradoutccour_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_outcomes_courses + ADD CONSTRAINT mdl_gradoutccour_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8237 (class 2606 OID 18044) +-- Name: mdl_grade_outcomes_history mdl_gradoutchist_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_outcomes_history + ADD CONSTRAINT mdl_gradoutchist_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9357 (class 2606 OID 22656) +-- Name: mdl_gradingform_rubric_criteria mdl_gradrubrcrit_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_gradingform_rubric_criteria + ADD CONSTRAINT mdl_gradrubrcrit_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9363 (class 2606 OID 22680) +-- Name: mdl_gradingform_rubric_fillings mdl_gradrubrfill_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_gradingform_rubric_fillings + ADD CONSTRAINT mdl_gradrubrfill_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9360 (class 2606 OID 22668) +-- Name: mdl_gradingform_rubric_levels mdl_gradrubrleve_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_gradingform_rubric_levels + ADD CONSTRAINT mdl_gradrubrleve_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8339 (class 2606 OID 18397) +-- Name: mdl_grade_settings mdl_gradsett_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_grade_settings + ADD CONSTRAINT mdl_gradsett_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8306 (class 2606 OID 18284) +-- Name: mdl_groupings mdl_grou_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_groupings + ADD CONSTRAINT mdl_grou_id3_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8302 (class 2606 OID 18265) +-- Name: mdl_groups mdl_grou_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_groups + ADD CONSTRAINT mdl_grou_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8316 (class 2606 OID 18313) +-- Name: mdl_groupings_groups mdl_grougrou_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_groupings_groups + ADD CONSTRAINT mdl_grougrou_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8310 (class 2606 OID 18299) +-- Name: mdl_groups_members mdl_groumemb_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_groups_members + ADD CONSTRAINT mdl_groumemb_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8723 (class 2606 OID 19804) +-- Name: mdl_h5p mdl_h5p_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_h5p + ADD CONSTRAINT mdl_h5p_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9023 (class 2606 OID 21191) +-- Name: mdl_h5pactivity mdl_h5pa_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_h5pactivity + ADD CONSTRAINT mdl_h5pa_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9029 (class 2606 OID 21205) +-- Name: mdl_h5pactivity_attempts mdl_h5paatte_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_h5pactivity_attempts + ADD CONSTRAINT mdl_h5paatte_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9034 (class 2606 OID 21224) +-- Name: mdl_h5pactivity_attempts_results mdl_h5paatteresu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_h5pactivity_attempts_results + ADD CONSTRAINT mdl_h5paatteresu_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8727 (class 2606 OID 19814) +-- Name: mdl_h5p_contents_libraries mdl_h5pcontlibr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_h5p_contents_libraries + ADD CONSTRAINT mdl_h5pcontlibr_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8716 (class 2606 OID 19777) +-- Name: mdl_h5p_libraries mdl_h5plibr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_h5p_libraries + ADD CONSTRAINT mdl_h5plibr_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8730 (class 2606 OID 19825) +-- Name: mdl_h5p_libraries_cachedassets mdl_h5plibrcach_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_h5p_libraries_cachedassets + ADD CONSTRAINT mdl_h5plibrcach_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8719 (class 2606 OID 19787) +-- Name: mdl_h5p_library_dependencies mdl_h5plibrdepe_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_h5p_library_dependencies + ADD CONSTRAINT mdl_h5plibrdepe_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9037 (class 2606 OID 21243) +-- Name: mdl_imscp mdl_imsc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_imscp + ADD CONSTRAINT mdl_imsc_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9040 (class 2606 OID 21259) +-- Name: mdl_label mdl_labe_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_label + ADD CONSTRAINT mdl_labe_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9043 (class 2606 OID 21310) +-- Name: mdl_lesson mdl_less_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lesson + ADD CONSTRAINT mdl_less_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9048 (class 2606 OID 21355) +-- Name: mdl_lesson_answers mdl_lessansw_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lesson_answers + ADD CONSTRAINT mdl_lessansw_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9053 (class 2606 OID 21375) +-- Name: mdl_lesson_attempts mdl_lessatte_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lesson_attempts + ADD CONSTRAINT mdl_lessatte_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9066 (class 2606 OID 21425) +-- Name: mdl_lesson_branch mdl_lessbran_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lesson_branch + ADD CONSTRAINT mdl_lessbran_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9058 (class 2606 OID 21392) +-- Name: mdl_lesson_grades mdl_lessgrad_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lesson_grades + ADD CONSTRAINT mdl_lessgrad_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9072 (class 2606 OID 21437) +-- Name: mdl_lesson_overrides mdl_lessover_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lesson_overrides + ADD CONSTRAINT mdl_lessover_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9045 (class 2606 OID 21333) +-- Name: mdl_lesson_pages mdl_lesspage_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lesson_pages + ADD CONSTRAINT mdl_lesspage_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9062 (class 2606 OID 21408) +-- Name: mdl_lesson_timer mdl_lesstime_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lesson_timer + ADD CONSTRAINT mdl_lesstime_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8438 (class 2606 OID 18783) +-- Name: mdl_license mdl_lice_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_license + ADD CONSTRAINT mdl_lice_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8547 (class 2606 OID 19181) +-- Name: mdl_lock_db mdl_lockdb_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lock_db + ADD CONSTRAINT mdl_lockdb_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7897 (class 2606 OID 16801) +-- Name: mdl_log mdl_log_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_log + ADD CONSTRAINT mdl_log_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7903 (class 2606 OID 16831) +-- Name: mdl_log_display mdl_logdisp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_log_display + ADD CONSTRAINT mdl_logdisp_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7901 (class 2606 OID 16818) +-- Name: mdl_log_queries mdl_logquer_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_log_queries + ADD CONSTRAINT mdl_logquer_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9550 (class 2606 OID 23389) +-- Name: mdl_logstore_standard_log mdl_logsstanlog_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_logstore_standard_log + ADD CONSTRAINT mdl_logsstanlog_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9077 (class 2606 OID 21461) +-- Name: mdl_lti mdl_lti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lti + ADD CONSTRAINT mdl_lti_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9099 (class 2606 OID 21544) +-- Name: mdl_lti_access_tokens mdl_ltiaccetoke_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lti_access_tokens + ADD CONSTRAINT mdl_ltiaccetoke_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9503 (class 2606 OID 23204) +-- Name: mdl_ltiservice_gradebookservices mdl_ltisgrad_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_ltiservice_gradebookservices + ADD CONSTRAINT mdl_ltisgrad_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9096 (class 2606 OID 21531) +-- Name: mdl_lti_submission mdl_ltisubm_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lti_submission + ADD CONSTRAINT mdl_ltisubm_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9080 (class 2606 OID 21475) +-- Name: mdl_lti_tool_proxies mdl_ltitoolprox_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lti_tool_proxies + ADD CONSTRAINT mdl_ltitoolprox_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9092 (class 2606 OID 21519) +-- Name: mdl_lti_tool_settings mdl_ltitoolsett_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lti_tool_settings + ADD CONSTRAINT mdl_ltitoolsett_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9084 (class 2606 OID 21492) +-- Name: mdl_lti_types mdl_ltitype_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lti_types + ADD CONSTRAINT mdl_ltitype_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9087 (class 2606 OID 21507) +-- Name: mdl_lti_types_config mdl_ltitypeconf_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_lti_types_config + ADD CONSTRAINT mdl_ltitypeconf_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7919 (class 2606 OID 16889) +-- Name: mdl_messages mdl_mess_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_messages + ADD CONSTRAINT mdl_mess_id3_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7906 (class 2606 OID 16850) +-- Name: mdl_message mdl_mess_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message + ADD CONSTRAINT mdl_mess_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9316 (class 2606 OID 22520) +-- Name: mdl_message_airnotifier_devices mdl_messairndevi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_airnotifier_devices + ADD CONSTRAINT mdl_messairndevi_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7946 (class 2606 OID 16962) +-- Name: mdl_message_contacts mdl_messcont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_contacts + ADD CONSTRAINT mdl_messcont_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7950 (class 2606 OID 16973) +-- Name: mdl_message_contact_requests mdl_messcontrequ_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_contact_requests + ADD CONSTRAINT mdl_messcontrequ_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7925 (class 2606 OID 16905) +-- Name: mdl_message_conversations mdl_messconv_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_conversations + ADD CONSTRAINT mdl_messconv_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7933 (class 2606 OID 16927) +-- Name: mdl_message_conversation_actions mdl_messconvacti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_conversation_actions + ADD CONSTRAINT mdl_messconvacti_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7929 (class 2606 OID 16917) +-- Name: mdl_message_conversation_members mdl_messconvmemb_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_conversation_members + ADD CONSTRAINT mdl_messconvmemb_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8567 (class 2606 OID 19259) +-- Name: mdl_messageinbound_datakeys mdl_messdata_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_messageinbound_datakeys + ADD CONSTRAINT mdl_messdata_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9320 (class 2606 OID 22529) +-- Name: mdl_message_email_messages mdl_messemaimess_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_email_messages + ADD CONSTRAINT mdl_messemaimess_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8563 (class 2606 OID 19250) +-- Name: mdl_messageinbound_handlers mdl_messhand_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_messageinbound_handlers + ADD CONSTRAINT mdl_messhand_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8569 (class 2606 OID 19272) +-- Name: mdl_messageinbound_messagelist mdl_messmess_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_messageinbound_messagelist + ADD CONSTRAINT mdl_messmess_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9324 (class 2606 OID 22541) +-- Name: mdl_message_popup mdl_messpopu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_popup + ADD CONSTRAINT mdl_messpopu_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9328 (class 2606 OID 22551) +-- Name: mdl_message_popup_notifications mdl_messpopunoti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_popup_notifications + ADD CONSTRAINT mdl_messpopunoti_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8362 (class 2606 OID 18496) +-- Name: mdl_message_processors mdl_messproc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_processors + ADD CONSTRAINT mdl_messproc_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8360 (class 2606 OID 18485) +-- Name: mdl_message_providers mdl_messprov_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_providers + ADD CONSTRAINT mdl_messprov_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7911 (class 2606 OID 16872) +-- Name: mdl_message_read mdl_messread_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_read + ADD CONSTRAINT mdl_messread_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7936 (class 2606 OID 16937) +-- Name: mdl_message_user_actions mdl_messuseracti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_user_actions + ADD CONSTRAINT mdl_messuseracti_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7956 (class 2606 OID 16984) +-- Name: mdl_message_users_blocked mdl_messuserbloc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_message_users_blocked + ADD CONSTRAINT mdl_messuserbloc_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8162 (class 2606 OID 17722) +-- Name: mdl_mnet_application mdl_mnetappl_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnet_application + ADD CONSTRAINT mdl_mnetappl_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9369 (class 2606 OID 22702) +-- Name: mdl_mnetservice_enrol_courses mdl_mnetenrocour_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnetservice_enrol_courses + ADD CONSTRAINT mdl_mnetenrocour_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9372 (class 2606 OID 22714) +-- Name: mdl_mnetservice_enrol_enrolments mdl_mnetenroenro_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnetservice_enrol_enrolments + ADD CONSTRAINT mdl_mnetenroenro_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8168 (class 2606 OID 17758) +-- Name: mdl_mnet_host2service mdl_mnethost_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnet_host2service + ADD CONSTRAINT mdl_mnethost_id3_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8165 (class 2606 OID 17745) +-- Name: mdl_mnet_host mdl_mnethost_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnet_host + ADD CONSTRAINT mdl_mnethost_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8171 (class 2606 OID 17782) +-- Name: mdl_mnet_log mdl_mnetlog_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnet_log + ADD CONSTRAINT mdl_mnetlog_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8176 (class 2606 OID 17813) +-- Name: mdl_mnet_remote_rpc mdl_mnetremorpc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnet_remote_rpc + ADD CONSTRAINT mdl_mnetremorpc_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8183 (class 2606 OID 17846) +-- Name: mdl_mnet_remote_service2rpc mdl_mnetremoserv_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnet_remote_service2rpc + ADD CONSTRAINT mdl_mnetremoserv_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8174 (class 2606 OID 17800) +-- Name: mdl_mnet_rpc mdl_mnetrpc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnet_rpc + ADD CONSTRAINT mdl_mnetrpc_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8180 (class 2606 OID 17835) +-- Name: mdl_mnet_service2rpc mdl_mnetserv_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnet_service2rpc + ADD CONSTRAINT mdl_mnetserv_id3_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8178 (class 2606 OID 17825) +-- Name: mdl_mnet_service mdl_mnetserv_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnet_service + ADD CONSTRAINT mdl_mnetserv_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8186 (class 2606 OID 17863) +-- Name: mdl_mnet_session mdl_mnetsess_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnet_session + ADD CONSTRAINT mdl_mnetsess_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8189 (class 2606 OID 17875) +-- Name: mdl_mnet_sso_access_control mdl_mnetssoaccecont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_mnet_sso_access_control + ADD CONSTRAINT mdl_mnetssoaccecont_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7960 (class 2606 OID 17000) +-- Name: mdl_modules mdl_modu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_modules + ADD CONSTRAINT mdl_modu_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7963 (class 2606 OID 17013) +-- Name: mdl_my_pages mdl_mypage_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_my_pages + ADD CONSTRAINT mdl_mypage_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7941 (class 2606 OID 16952) +-- Name: mdl_notifications mdl_noti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_notifications + ADD CONSTRAINT mdl_noti_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8683 (class 2606 OID 19671) +-- Name: mdl_oauth2_access_token mdl_oautaccetoke_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_oauth2_access_token + ADD CONSTRAINT mdl_oautaccetoke_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8633 (class 2606 OID 19483) +-- Name: mdl_oauth2_endpoint mdl_oautendp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_oauth2_endpoint + ADD CONSTRAINT mdl_oautendp_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8636 (class 2606 OID 19500) +-- Name: mdl_oauth2_issuer mdl_oautissu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_oauth2_issuer + ADD CONSTRAINT mdl_oautissu_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8638 (class 2606 OID 19511) +-- Name: mdl_oauth2_system_account mdl_oautsystacco_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_oauth2_system_account + ADD CONSTRAINT mdl_oautsystacco_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8641 (class 2606 OID 19522) +-- Name: mdl_oauth2_user_field_mapping mdl_oautuserfielmapp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_oauth2_user_field_mapping + ADD CONSTRAINT mdl_oautuserfielmapp_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9104 (class 2606 OID 21565) +-- Name: mdl_page mdl_page_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_page + ADD CONSTRAINT mdl_page_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8341 (class 2606 OID 18410) +-- Name: mdl_portfolio_instance mdl_portinst_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_portfolio_instance + ADD CONSTRAINT mdl_portinst_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8343 (class 2606 OID 18422) +-- Name: mdl_portfolio_instance_config mdl_portinstconf_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_portfolio_instance_config + ADD CONSTRAINT mdl_portinstconf_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8347 (class 2606 OID 18436) +-- Name: mdl_portfolio_instance_user mdl_portinstuser_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_portfolio_instance_user + ADD CONSTRAINT mdl_portinstuser_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8351 (class 2606 OID 18455) +-- Name: mdl_portfolio_log mdl_portlog_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_portfolio_log + ADD CONSTRAINT mdl_portlog_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9378 (class 2606 OID 22739) +-- Name: mdl_portfolio_mahara_queue mdl_portmahaqueu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_portfolio_mahara_queue + ADD CONSTRAINT mdl_portmahaqueu_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8355 (class 2606 OID 18470) +-- Name: mdl_portfolio_tempdata mdl_porttemp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_portfolio_tempdata + ADD CONSTRAINT mdl_porttemp_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8044 (class 2606 OID 17313) +-- Name: mdl_post mdl_post_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_post + ADD CONSTRAINT mdl_post_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8452 (class 2606 OID 18849) +-- Name: mdl_profiling mdl_prof_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_profiling + ADD CONSTRAINT mdl_prof_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8758 (class 2606 OID 19942) +-- Name: mdl_qtype_ddimageortext mdl_qtypddim_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_ddimageortext + ADD CONSTRAINT mdl_qtypddim_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8764 (class 2606 OID 19975) +-- Name: mdl_qtype_ddimageortext_drags mdl_qtypddimdrag_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_ddimageortext_drags + ADD CONSTRAINT mdl_qtypddimdrag_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8761 (class 2606 OID 19959) +-- Name: mdl_qtype_ddimageortext_drops mdl_qtypddimdrop_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_ddimageortext_drops + ADD CONSTRAINT mdl_qtypddimdrop_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8767 (class 2606 OID 19994) +-- Name: mdl_qtype_ddmarker mdl_qtypddma_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_ddmarker + ADD CONSTRAINT mdl_qtypddma_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8773 (class 2606 OID 20025) +-- Name: mdl_qtype_ddmarker_drags mdl_qtypddmadrag_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_ddmarker_drags + ADD CONSTRAINT mdl_qtypddmadrag_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8770 (class 2606 OID 20009) +-- Name: mdl_qtype_ddmarker_drops mdl_qtypddmadrop_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_ddmarker_drops + ADD CONSTRAINT mdl_qtypddmadrop_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8779 (class 2606 OID 20062) +-- Name: mdl_qtype_essay_options mdl_qtypessaopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_essay_options + ADD CONSTRAINT mdl_qtypessaopti_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8785 (class 2606 OID 20098) +-- Name: mdl_qtype_match_options mdl_qtypmatcopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_match_options + ADD CONSTRAINT mdl_qtypmatcopti_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8788 (class 2606 OID 20113) +-- Name: mdl_qtype_match_subquestions mdl_qtypmatcsubq_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_match_subquestions + ADD CONSTRAINT mdl_qtypmatcsubq_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8794 (class 2606 OID 20148) +-- Name: mdl_qtype_multichoice_options mdl_qtypmultopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_multichoice_options + ADD CONSTRAINT mdl_qtypmultopti_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8808 (class 2606 OID 20207) +-- Name: mdl_qtype_randomsamatch_options mdl_qtyprandopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_randomsamatch_options + ADD CONSTRAINT mdl_qtyprandopti_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8811 (class 2606 OID 20218) +-- Name: mdl_qtype_shortanswer_options mdl_qtypshoropti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_qtype_shortanswer_options + ADD CONSTRAINT mdl_qtypshoropti_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8127 (class 2606 OID 17579) +-- Name: mdl_question mdl_ques_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question + ADD CONSTRAINT mdl_ques_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8132 (class 2606 OID 17600) +-- Name: mdl_question_answers mdl_quesansw_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_answers + ADD CONSTRAINT mdl_quesansw_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8142 (class 2606 OID 17640) +-- Name: mdl_question_attempts mdl_quesatte_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_attempts + ADD CONSTRAINT mdl_quesatte_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8147 (class 2606 OID 17653) +-- Name: mdl_question_attempt_steps mdl_quesattestep_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_attempt_steps + ADD CONSTRAINT mdl_quesattestep_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8153 (class 2606 OID 17668) +-- Name: mdl_question_attempt_step_data mdl_quesattestepdata_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_attempt_step_data + ADD CONSTRAINT mdl_quesattestepdata_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8741 (class 2606 OID 19860) +-- Name: mdl_question_calculated mdl_quescalc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_calculated + ADD CONSTRAINT mdl_quescalc_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8744 (class 2606 OID 19882) +-- Name: mdl_question_calculated_options mdl_quescalcopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_calculated_options + ADD CONSTRAINT mdl_quescalcopti_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8121 (class 2606 OID 17550) +-- Name: mdl_question_categories mdl_quescate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_categories + ADD CONSTRAINT mdl_quescate_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8754 (class 2606 OID 19922) +-- Name: mdl_question_datasets mdl_quesdata_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_datasets + ADD CONSTRAINT mdl_quesdata_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8748 (class 2606 OID 19899) +-- Name: mdl_question_dataset_definitions mdl_quesdatadefi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_dataset_definitions + ADD CONSTRAINT mdl_quesdatadefi_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8751 (class 2606 OID 19911) +-- Name: mdl_question_dataset_items mdl_quesdataitem_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_dataset_items + ADD CONSTRAINT mdl_quesdataitem_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8776 (class 2606 OID 20043) +-- Name: mdl_question_ddwtos mdl_quesddwt_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_ddwtos + ADD CONSTRAINT mdl_quesddwt_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8782 (class 2606 OID 20080) +-- Name: mdl_question_gapselect mdl_quesgaps_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_gapselect + ADD CONSTRAINT mdl_quesgaps_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8135 (class 2606 OID 17613) +-- Name: mdl_question_hints mdl_queshint_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_hints + ADD CONSTRAINT mdl_queshint_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8791 (class 2606 OID 20126) +-- Name: mdl_question_multianswer mdl_quesmult_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_multianswer + ADD CONSTRAINT mdl_quesmult_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8798 (class 2606 OID 20160) +-- Name: mdl_question_numerical mdl_quesnume_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_numerical + ADD CONSTRAINT mdl_quesnume_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8801 (class 2606 OID 20175) +-- Name: mdl_question_numerical_options mdl_quesnumeopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_numerical_options + ADD CONSTRAINT mdl_quesnumeopti_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8804 (class 2606 OID 20187) +-- Name: mdl_question_numerical_units mdl_quesnumeunit_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_numerical_units + ADD CONSTRAINT mdl_quesnumeunit_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8157 (class 2606 OID 17697) +-- Name: mdl_question_response_analysis mdl_quesrespanal_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_response_analysis + ADD CONSTRAINT mdl_quesrespanal_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8160 (class 2606 OID 17705) +-- Name: mdl_question_response_count mdl_quesrespcoun_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_response_count + ADD CONSTRAINT mdl_quesrespcoun_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8155 (class 2606 OID 17683) +-- Name: mdl_question_statistics mdl_quesstat_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_statistics + ADD CONSTRAINT mdl_quesstat_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8814 (class 2606 OID 20230) +-- Name: mdl_question_truefalse mdl_questrue_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_truefalse + ADD CONSTRAINT mdl_questrue_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8139 (class 2606 OID 17624) +-- Name: mdl_question_usages mdl_quesusag_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_question_usages + ADD CONSTRAINT mdl_quesusag_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9107 (class 2606 OID 21616) +-- Name: mdl_quiz mdl_quiz_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quiz + ADD CONSTRAINT mdl_quiz_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9127 (class 2606 OID 21698) +-- Name: mdl_quiz_attempts mdl_quizatte_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quiz_attempts + ADD CONSTRAINT mdl_quizatte_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9119 (class 2606 OID 21662) +-- Name: mdl_quiz_feedback mdl_quizfeed_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quiz_feedback + ADD CONSTRAINT mdl_quizfeed_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9134 (class 2606 OID 21715) +-- Name: mdl_quiz_grades mdl_quizgrad_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quiz_grades + ADD CONSTRAINT mdl_quizgrad_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9123 (class 2606 OID 21672) +-- Name: mdl_quiz_overrides mdl_quizover_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quiz_overrides + ADD CONSTRAINT mdl_quizover_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9506 (class 2606 OID 23214) +-- Name: mdl_quiz_overview_regrades mdl_quizoverregr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quiz_overview_regrades + ADD CONSTRAINT mdl_quizoverregr_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9138 (class 2606 OID 21728) +-- Name: mdl_quiz_reports mdl_quizrepo_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quiz_reports + ADD CONSTRAINT mdl_quizrepo_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9512 (class 2606 OID 23238) +-- Name: mdl_quizaccess_seb_quizsettings mdl_quizsebquiz_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quizaccess_seb_quizsettings + ADD CONSTRAINT mdl_quizsebquiz_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9517 (class 2606 OID 23257) +-- Name: mdl_quizaccess_seb_template mdl_quizsebtemp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quizaccess_seb_template + ADD CONSTRAINT mdl_quizsebtemp_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9115 (class 2606 OID 21645) +-- Name: mdl_quiz_sections mdl_quizsect_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quiz_sections + ADD CONSTRAINT mdl_quizsect_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9109 (class 2606 OID 21629) +-- Name: mdl_quiz_slots mdl_quizslot_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quiz_slots + ADD CONSTRAINT mdl_quizslot_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9141 (class 2606 OID 21737) +-- Name: mdl_quiz_slot_tags mdl_quizslottags_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quiz_slot_tags + ADD CONSTRAINT mdl_quizslottags_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9509 (class 2606 OID 23224) +-- Name: mdl_quiz_statistics mdl_quizstat_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_quiz_statistics + ADD CONSTRAINT mdl_quizstat_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8435 (class 2606 OID 18765) +-- Name: mdl_rating mdl_rati_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_rating + ADD CONSTRAINT mdl_rati_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8440 (class 2606 OID 18799) +-- Name: mdl_registration_hubs mdl_regihubs_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_registration_hubs + ADD CONSTRAINT mdl_regihubs_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8381 (class 2606 OID 18562) +-- Name: mdl_repository mdl_repo_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_repository + ADD CONSTRAINT mdl_repo_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8383 (class 2606 OID 18576) +-- Name: mdl_repository_instances mdl_repoinst_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_repository_instances + ADD CONSTRAINT mdl_repoinst_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8385 (class 2606 OID 18588) +-- Name: mdl_repository_instance_config mdl_repoinstconf_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_repository_instance_config + ADD CONSTRAINT mdl_repoinstconf_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9375 (class 2606 OID 22729) +-- Name: mdl_repository_onedrive_access mdl_repoonedacce_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_repository_onedrive_access + ADD CONSTRAINT mdl_repoonedacce_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9146 (class 2606 OID 21759) +-- Name: mdl_resource mdl_reso_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_resource + ADD CONSTRAINT mdl_reso_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9149 (class 2606 OID 21779) +-- Name: mdl_resource_old mdl_resoold_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_resource_old + ADD CONSTRAINT mdl_resoold_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8051 (class 2606 OID 17333) +-- Name: mdl_role mdl_role_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_role + ADD CONSTRAINT mdl_role_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8067 (class 2606 OID 17382) +-- Name: mdl_role_allow_assign mdl_rolealloassi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_role_allow_assign + ADD CONSTRAINT mdl_rolealloassi_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8072 (class 2606 OID 17395) +-- Name: mdl_role_allow_override mdl_rolealloover_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_role_allow_override + ADD CONSTRAINT mdl_rolealloover_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8077 (class 2606 OID 17406) +-- Name: mdl_role_allow_switch mdl_rolealloswit_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_role_allow_switch + ADD CONSTRAINT mdl_rolealloswit_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8082 (class 2606 OID 17417) +-- Name: mdl_role_allow_view mdl_rolealloview_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_role_allow_view + ADD CONSTRAINT mdl_rolealloview_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8088 (class 2606 OID 17436) +-- Name: mdl_role_assignments mdl_roleassi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_role_assignments + ADD CONSTRAINT mdl_roleassi_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8097 (class 2606 OID 17457) +-- Name: mdl_role_capabilities mdl_rolecapa_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_role_capabilities + ADD CONSTRAINT mdl_rolecapa_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8108 (class 2606 OID 17484) +-- Name: mdl_role_context_levels mdl_rolecontleve_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_role_context_levels + ADD CONSTRAINT mdl_rolecontleve_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8103 (class 2606 OID 17473) +-- Name: mdl_role_names mdl_rolename_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_role_names + ADD CONSTRAINT mdl_rolename_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8002 (class 2606 OID 17159) +-- Name: mdl_scale mdl_scal_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scale + ADD CONSTRAINT mdl_scal_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8006 (class 2606 OID 17175) +-- Name: mdl_scale_history mdl_scalhist_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scale_history + ADD CONSTRAINT mdl_scalhist_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9153 (class 2606 OID 21828) +-- Name: mdl_scorm mdl_scor_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scorm + ADD CONSTRAINT mdl_scor_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9194 (class 2606 OID 21996) +-- Name: mdl_scorm_aicc_session mdl_scoraiccsess_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scorm_aicc_session + ADD CONSTRAINT mdl_scoraiccsess_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9155 (class 2606 OID 21848) +-- Name: mdl_scorm_scoes mdl_scorscoe_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scorm_scoes + ADD CONSTRAINT mdl_scorscoe_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9158 (class 2606 OID 21862) +-- Name: mdl_scorm_scoes_data mdl_scorscoedata_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scorm_scoes_data + ADD CONSTRAINT mdl_scorscoedata_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9161 (class 2606 OID 21880) +-- Name: mdl_scorm_scoes_track mdl_scorscoetrac_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scorm_scoes_track + ADD CONSTRAINT mdl_scorscoetrac_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9171 (class 2606 OID 21914) +-- Name: mdl_scorm_seq_mapinfo mdl_scorseqmapi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scorm_seq_mapinfo + ADD CONSTRAINT mdl_scorseqmapi_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9167 (class 2606 OID 21897) +-- Name: mdl_scorm_seq_objective mdl_scorseqobje_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scorm_seq_objective + ADD CONSTRAINT mdl_scorseqobje_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9189 (class 2606 OID 21976) +-- Name: mdl_scorm_seq_rolluprulecond mdl_scorseqroll_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scorm_seq_rolluprulecond + ADD CONSTRAINT mdl_scorseqroll_id3_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9185 (class 2606 OID 21962) +-- Name: mdl_scorm_seq_rolluprule mdl_scorseqroll_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scorm_seq_rolluprule + ADD CONSTRAINT mdl_scorseqroll_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9180 (class 2606 OID 21945) +-- Name: mdl_scorm_seq_rulecond mdl_scorseqrule_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scorm_seq_rulecond + ADD CONSTRAINT mdl_scorseqrule_id3_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9176 (class 2606 OID 21929) +-- Name: mdl_scorm_seq_ruleconds mdl_scorseqrule_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_scorm_seq_ruleconds + ADD CONSTRAINT mdl_scorseqrule_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8692 (class 2606 OID 19697) +-- Name: mdl_search_index_requests mdl_searinderequ_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_search_index_requests + ADD CONSTRAINT mdl_searinderequ_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9387 (class 2606 OID 22754) +-- Name: mdl_search_simpledb_index mdl_searsimpinde_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_search_simpledb_index + ADD CONSTRAINT mdl_searsimpinde_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7966 (class 2606 OID 17027) +-- Name: mdl_sessions mdl_sess_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_sessions + ADD CONSTRAINT mdl_sess_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8012 (class 2606 OID 17194) +-- Name: mdl_stats_daily mdl_statdail_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_stats_daily + ADD CONSTRAINT mdl_statdail_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8022 (class 2606 OID 17228) +-- Name: mdl_stats_monthly mdl_statmont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_stats_monthly + ADD CONSTRAINT mdl_statmont_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8027 (class 2606 OID 17246) +-- Name: mdl_stats_user_daily mdl_statuserdail_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_stats_user_daily + ADD CONSTRAINT mdl_statuserdail_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8039 (class 2606 OID 17284) +-- Name: mdl_stats_user_monthly mdl_statusermont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_stats_user_monthly + ADD CONSTRAINT mdl_statusermont_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8033 (class 2606 OID 17265) +-- Name: mdl_stats_user_weekly mdl_statuserweek_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_stats_user_weekly + ADD CONSTRAINT mdl_statuserweek_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8017 (class 2606 OID 17211) +-- Name: mdl_stats_weekly mdl_statweek_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_stats_weekly + ADD CONSTRAINT mdl_statweek_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9199 (class 2606 OID 22018) +-- Name: mdl_survey mdl_surv_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_survey + ADD CONSTRAINT mdl_surv_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9208 (class 2606 OID 22066) +-- Name: mdl_survey_analysis mdl_survanal_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_survey_analysis + ADD CONSTRAINT mdl_survanal_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9203 (class 2606 OID 22050) +-- Name: mdl_survey_answers mdl_survansw_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_survey_answers + ADD CONSTRAINT mdl_survansw_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9201 (class 2606 OID 22035) +-- Name: mdl_survey_questions mdl_survques_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_survey_questions + ADD CONSTRAINT mdl_survques_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8286 (class 2606 OID 18214) +-- Name: mdl_tag mdl_tag_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tag + ADD CONSTRAINT mdl_tag_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8283 (class 2606 OID 18196) +-- Name: mdl_tag_area mdl_tagarea_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tag_area + ADD CONSTRAINT mdl_tagarea_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8280 (class 2606 OID 18183) +-- Name: mdl_tag_coll mdl_tagcoll_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tag_coll + ADD CONSTRAINT mdl_tagcoll_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8292 (class 2606 OID 18229) +-- Name: mdl_tag_correlation mdl_tagcorr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tag_correlation + ADD CONSTRAINT mdl_tagcorr_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8297 (class 2606 OID 18243) +-- Name: mdl_tag_instance mdl_taginst_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tag_instance + ADD CONSTRAINT mdl_taginst_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8554 (class 2606 OID 19220) +-- Name: mdl_task_adhoc mdl_taskadho_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_task_adhoc + ADD CONSTRAINT mdl_taskadho_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8559 (class 2606 OID 19235) +-- Name: mdl_task_log mdl_tasklog_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_task_log + ADD CONSTRAINT mdl_tasklog_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8552 (class 2606 OID 19205) +-- Name: mdl_task_scheduled mdl_tasksche_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_task_scheduled + ADD CONSTRAINT mdl_tasksche_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9391 (class 2606 OID 22768) +-- Name: mdl_tool_cohortroles mdl_toolcoho_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_cohortroles + ADD CONSTRAINT mdl_toolcoho_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9394 (class 2606 OID 22784) +-- Name: mdl_tool_customlang mdl_toolcust_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_customlang + ADD CONSTRAINT mdl_toolcust_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9397 (class 2606 OID 22798) +-- Name: mdl_tool_customlang_components mdl_toolcustcomp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_customlang_components + ADD CONSTRAINT mdl_toolcustcomp_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9407 (class 2606 OID 22850) +-- Name: mdl_tool_dataprivacy_category mdl_tooldatacate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_dataprivacy_category + ADD CONSTRAINT mdl_tooldatacate_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9420 (class 2606 OID 22884) +-- Name: mdl_tool_dataprivacy_ctxexpired mdl_tooldatactxe_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_dataprivacy_ctxexpired + ADD CONSTRAINT mdl_tooldatactxe_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9411 (class 2606 OID 22858) +-- Name: mdl_tool_dataprivacy_ctxinstance mdl_tooldatactxi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_dataprivacy_ctxinstance + ADD CONSTRAINT mdl_tooldatactxi_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9416 (class 2606 OID 22869) +-- Name: mdl_tool_dataprivacy_ctxlevel mdl_tooldatactxl_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_dataprivacy_ctxlevel + ADD CONSTRAINT mdl_tooldatactxl_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9422 (class 2606 OID 22897) +-- Name: mdl_tool_dataprivacy_purposerole mdl_tooldatapurp_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_dataprivacy_purposerole + ADD CONSTRAINT mdl_tooldatapurp_id3_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9405 (class 2606 OID 22838) +-- Name: mdl_tool_dataprivacy_purpose mdl_tooldatapurp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_dataprivacy_purpose + ADD CONSTRAINT mdl_tooldatapurp_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9400 (class 2606 OID 22821) +-- Name: mdl_tool_dataprivacy_request mdl_tooldatarequ_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_dataprivacy_request + ADD CONSTRAINT mdl_tooldatarequ_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9439 (class 2606 OID 22951) +-- Name: mdl_tool_monitor_events mdl_toolmonieven_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_monitor_events + ADD CONSTRAINT mdl_toolmonieven_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9435 (class 2606 OID 22936) +-- Name: mdl_tool_monitor_history mdl_toolmonihist_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_monitor_history + ADD CONSTRAINT mdl_toolmonihist_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9429 (class 2606 OID 22914) +-- Name: mdl_tool_monitor_rules mdl_toolmonirule_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_monitor_rules + ADD CONSTRAINT mdl_toolmonirule_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9432 (class 2606 OID 22926) +-- Name: mdl_tool_monitor_subscriptions mdl_toolmonisubs_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_monitor_subscriptions + ADD CONSTRAINT mdl_toolmonisubs_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9442 (class 2606 OID 22960) +-- Name: mdl_tool_policy mdl_toolpoli_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_policy + ADD CONSTRAINT mdl_toolpoli_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9448 (class 2606 OID 22993) +-- Name: mdl_tool_policy_acceptances mdl_toolpoliacce_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_policy_acceptances + ADD CONSTRAINT mdl_toolpoliacce_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9444 (class 2606 OID 22979) +-- Name: mdl_tool_policy_versions mdl_toolpolivers_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_policy_versions + ADD CONSTRAINT mdl_toolpolivers_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9459 (class 2606 OID 23021) +-- Name: mdl_tool_recyclebin_category mdl_toolrecycate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_recyclebin_category + ADD CONSTRAINT mdl_toolrecycate_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9455 (class 2606 OID 23006) +-- Name: mdl_tool_recyclebin_course mdl_toolrecycour_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_recyclebin_course + ADD CONSTRAINT mdl_toolrecycour_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9464 (class 2606 OID 23049) +-- Name: mdl_tool_usertours_steps mdl_tooluserstep_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_usertours_steps + ADD CONSTRAINT mdl_tooluserstep_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9462 (class 2606 OID 23037) +-- Name: mdl_tool_usertours_tours mdl_toolusertour_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_tool_usertours_tours + ADD CONSTRAINT mdl_toolusertour_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7802 (class 2606 OID 16437) +-- Name: mdl_upgrade_log mdl_upgrlog_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_upgrade_log + ADD CONSTRAINT mdl_upgrlog_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9213 (class 2606 OID 22084) +-- Name: mdl_url mdl_url_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_url + ADD CONSTRAINT mdl_url_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7982 (class 2606 OID 17089) +-- Name: mdl_user mdl_user_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_user + ADD CONSTRAINT mdl_user_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8538 (class 2606 OID 19158) +-- Name: mdl_user_devices mdl_userdevi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_user_devices + ADD CONSTRAINT mdl_userdevi_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7843 (class 2606 OID 16603) +-- Name: mdl_user_enrolments mdl_userenro_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_user_enrolments + ADD CONSTRAINT mdl_userenro_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8113 (class 2606 OID 17518) +-- Name: mdl_user_info_category mdl_userinfocate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_user_info_category + ADD CONSTRAINT mdl_userinfocate_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8115 (class 2606 OID 17532) +-- Name: mdl_user_info_data mdl_userinfodata_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_user_info_data + ADD CONSTRAINT mdl_userinfodata_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8111 (class 2606 OID 17508) +-- Name: mdl_user_info_field mdl_userinfofiel_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_user_info_field + ADD CONSTRAINT mdl_userinfofiel_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7994 (class 2606 OID 17130) +-- Name: mdl_user_lastaccess mdl_userlast_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_user_lastaccess + ADD CONSTRAINT mdl_userlast_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7998 (class 2606 OID 17142) +-- Name: mdl_user_password_history mdl_userpasshist_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_user_password_history + ADD CONSTRAINT mdl_userpasshist_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8543 (class 2606 OID 19171) +-- Name: mdl_user_password_resets mdl_userpassrese_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_user_password_resets + ADD CONSTRAINT mdl_userpassrese_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 7990 (class 2606 OID 17118) +-- Name: mdl_user_preferences mdl_userpref_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_user_preferences + ADD CONSTRAINT mdl_userpref_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8326 (class 2606 OID 18357) +-- Name: mdl_user_private_key mdl_userprivkey_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_user_private_key + ADD CONSTRAINT mdl_userprivkey_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9216 (class 2606 OID 22107) +-- Name: mdl_wiki mdl_wiki_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_wiki + ADD CONSTRAINT mdl_wiki_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9233 (class 2606 OID 22182) +-- Name: mdl_wiki_links mdl_wikilink_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_wiki_links + ADD CONSTRAINT mdl_wikilink_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9236 (class 2606 OID 22195) +-- Name: mdl_wiki_locks mdl_wikilock_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_wiki_locks + ADD CONSTRAINT mdl_wikilock_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9222 (class 2606 OID 22140) +-- Name: mdl_wiki_pages mdl_wikipage_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_wiki_pages + ADD CONSTRAINT mdl_wikipage_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9218 (class 2606 OID 22119) +-- Name: mdl_wiki_subwikis mdl_wikisubw_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_wiki_subwikis + ADD CONSTRAINT mdl_wikisubw_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9229 (class 2606 OID 22170) +-- Name: mdl_wiki_synonyms mdl_wikisyno_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_wiki_synonyms + ADD CONSTRAINT mdl_wikisyno_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9226 (class 2606 OID 22158) +-- Name: mdl_wiki_versions mdl_wikivers_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_wiki_versions + ADD CONSTRAINT mdl_wikivers_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9239 (class 2606 OID 22234) +-- Name: mdl_workshop mdl_work_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshop + ADD CONSTRAINT mdl_work_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9520 (class 2606 OID 23272) +-- Name: mdl_workshopform_accumulative mdl_workaccu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshopform_accumulative + ADD CONSTRAINT mdl_workaccu_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9255 (class 2606 OID 22300) +-- Name: mdl_workshop_aggregations mdl_workaggr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshop_aggregations + ADD CONSTRAINT mdl_workaggr_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9247 (class 2606 OID 22274) +-- Name: mdl_workshop_assessments mdl_workasse_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshop_assessments + ADD CONSTRAINT mdl_workasse_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9545 (class 2606 OID 23371) +-- Name: mdl_workshopeval_best_settings mdl_workbestsett_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshopeval_best_settings + ADD CONSTRAINT mdl_workbestsett_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9523 (class 2606 OID 23286) +-- Name: mdl_workshopform_comments mdl_workcomm_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshopform_comments + ADD CONSTRAINT mdl_workcomm_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9253 (class 2606 OID 22290) +-- Name: mdl_workshop_grades mdl_workgrad_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshop_grades + ADD CONSTRAINT mdl_workgrad_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9526 (class 2606 OID 23301) +-- Name: mdl_workshopform_numerrors mdl_worknume_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshopform_numerrors + ADD CONSTRAINT mdl_worknume_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9529 (class 2606 OID 23310) +-- Name: mdl_workshopform_numerrors_map mdl_worknumemap_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshopform_numerrors_map + ADD CONSTRAINT mdl_worknumemap_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9533 (class 2606 OID 23325) +-- Name: mdl_workshopform_rubric mdl_workrubr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshopform_rubric + ADD CONSTRAINT mdl_workrubr_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9539 (class 2606 OID 23348) +-- Name: mdl_workshopform_rubric_config mdl_workrubrconf_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshopform_rubric_config + ADD CONSTRAINT mdl_workrubrconf_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9537 (class 2606 OID 23338) +-- Name: mdl_workshopform_rubric_levels mdl_workrubrleve_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshopform_rubric_levels + ADD CONSTRAINT mdl_workrubrleve_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9542 (class 2606 OID 23361) +-- Name: mdl_workshopallocation_scheduled mdl_worksche_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshopallocation_scheduled + ADD CONSTRAINT mdl_worksche_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 9243 (class 2606 OID 22254) +-- Name: mdl_workshop_submissions mdl_worksubm_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_workshop_submissions + ADD CONSTRAINT mdl_worksubm_id_pk PRIMARY KEY (id); + + +-- +-- TOC entry 8673 (class 1259 OID 19648) +-- Name: mdl_analindicalc_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_analindicalc_con_ix ON public.mdl_analytics_indicator_calc USING btree (contextid); + + +-- +-- TOC entry 8676 (class 1259 OID 19647) +-- Name: mdl_analindicalc_staendcon_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_analindicalc_staendcon_ix ON public.mdl_analytics_indicator_calc USING btree (starttime, endtime, contextid); + + +-- +-- TOC entry 8649 (class 1259 OID 19557) +-- Name: mdl_analmode_enatra_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_analmode_enatra_ix ON public.mdl_analytics_models USING btree (enabled, trained); + + +-- +-- TOC entry 8654 (class 1259 OID 19572) +-- Name: mdl_analmodelog_mod_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_analmodelog_mod_ix ON public.mdl_analytics_models_log USING btree (modelid); + + +-- +-- TOC entry 8655 (class 1259 OID 19587) +-- Name: mdl_analpred_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_analpred_con_ix ON public.mdl_analytics_predictions USING btree (contextid); + + +-- +-- TOC entry 8658 (class 1259 OID 19586) +-- Name: mdl_analpred_mod_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_analpred_mod_ix ON public.mdl_analytics_predictions USING btree (modelid); + + +-- +-- TOC entry 8659 (class 1259 OID 19585) +-- Name: mdl_analpred_modcon_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_analpred_modcon_ix ON public.mdl_analytics_predictions USING btree (modelid, contextid); + + +-- +-- TOC entry 8679 (class 1259 OID 19659) +-- Name: mdl_analpredacti_pre_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_analpredacti_pre_ix ON public.mdl_analytics_prediction_actions USING btree (predictionid); + + +-- +-- TOC entry 8680 (class 1259 OID 19658) +-- Name: mdl_analpredacti_preuseact_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_analpredacti_preuseact_ix ON public.mdl_analytics_prediction_actions USING btree (predictionid, userid, actionname); + + +-- +-- TOC entry 8681 (class 1259 OID 19660) +-- Name: mdl_analpredacti_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_analpredacti_use_ix ON public.mdl_analytics_prediction_actions USING btree (userid); + + +-- +-- TOC entry 8666 (class 1259 OID 19618) +-- Name: mdl_analpredsamp_mod_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_analpredsamp_mod_ix ON public.mdl_analytics_predict_samples USING btree (modelid); + + +-- +-- TOC entry 8667 (class 1259 OID 19617) +-- Name: mdl_analpredsamp_modanatimr_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_analpredsamp_modanatimr_ix ON public.mdl_analytics_predict_samples USING btree (modelid, analysableid, timesplitting, rangeindex); + + +-- +-- TOC entry 8662 (class 1259 OID 19602) +-- Name: mdl_analtraisamp_mod_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_analtraisamp_mod_ix ON public.mdl_analytics_train_samples USING btree (modelid); + + +-- +-- TOC entry 8663 (class 1259 OID 19601) +-- Name: mdl_analtraisamp_modanatim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_analtraisamp_modanatim_ix ON public.mdl_analytics_train_samples USING btree (modelid, analysableid, timesplitting); + + +-- +-- TOC entry 8685 (class 1259 OID 19683) +-- Name: mdl_analusedanal_ana_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_analusedanal_ana_ix ON public.mdl_analytics_used_analysables USING btree (analysableid); + + +-- +-- TOC entry 8688 (class 1259 OID 19684) +-- Name: mdl_analusedanal_mod_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_analusedanal_mod_ix ON public.mdl_analytics_used_analysables USING btree (modelid); + + +-- +-- TOC entry 8689 (class 1259 OID 19682) +-- Name: mdl_analusedanal_modact_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_analusedanal_modact_ix ON public.mdl_analytics_used_analysables USING btree (modelid, action); + + +-- +-- TOC entry 8668 (class 1259 OID 19633) +-- Name: mdl_analusedfile_fil_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_analusedfile_fil_ix ON public.mdl_analytics_used_files USING btree (fileid); + + +-- +-- TOC entry 8671 (class 1259 OID 19632) +-- Name: mdl_analusedfile_mod_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_analusedfile_mod_ix ON public.mdl_analytics_used_files USING btree (modelid); + + +-- +-- TOC entry 8672 (class 1259 OID 19631) +-- Name: mdl_analusedfile_modactfil_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_analusedfile_modactfil_ix ON public.mdl_analytics_used_files USING btree (modelid, action, fileid); + + +-- +-- TOC entry 8853 (class 1259 OID 20400) +-- Name: mdl_assi_cou2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assi_cou2_ix ON public.mdl_assignment USING btree (course); + + +-- +-- TOC entry 8816 (class 1259 OID 20271) +-- Name: mdl_assi_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assi_cou_ix ON public.mdl_assign USING btree (course); + + +-- +-- TOC entry 8819 (class 1259 OID 20272) +-- Name: mdl_assi_tea_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assi_tea_ix ON public.mdl_assign USING btree (teamsubmissiongroupingid); + + +-- +-- TOC entry 9475 (class 1259 OID 23095) +-- Name: mdl_assicomm_ass_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assicomm_ass_ix ON public.mdl_assignfeedback_comments USING btree (assignment); + + +-- +-- TOC entry 9476 (class 1259 OID 23096) +-- Name: mdl_assicomm_gra_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assicomm_gra_ix ON public.mdl_assignfeedback_comments USING btree (grade); + + +-- +-- TOC entry 9483 (class 1259 OID 23138) +-- Name: mdl_assieditanno_gra_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assieditanno_gra_ix ON public.mdl_assignfeedback_editpdf_annot USING btree (gradeid); + + +-- +-- TOC entry 9484 (class 1259 OID 23137) +-- Name: mdl_assieditanno_grapag_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assieditanno_grapag_ix ON public.mdl_assignfeedback_editpdf_annot USING btree (gradeid, pageno); + + +-- +-- TOC entry 9479 (class 1259 OID 23116) +-- Name: mdl_assieditcmnt_gra_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assieditcmnt_gra_ix ON public.mdl_assignfeedback_editpdf_cmnt USING btree (gradeid); + + +-- +-- TOC entry 9480 (class 1259 OID 23115) +-- Name: mdl_assieditcmnt_grapag_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assieditcmnt_grapag_ix ON public.mdl_assignfeedback_editpdf_cmnt USING btree (gradeid, pageno); + + +-- +-- TOC entry 9492 (class 1259 OID 23163) +-- Name: mdl_assieditqueu_subsub_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_assieditqueu_subsub_uix ON public.mdl_assignfeedback_editpdf_queue USING btree (submissionid, submissionattempt); + + +-- +-- TOC entry 9489 (class 1259 OID 23153) +-- Name: mdl_assieditquic_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assieditquic_use_ix ON public.mdl_assignfeedback_editpdf_quick USING btree (userid); + + +-- +-- TOC entry 9493 (class 1259 OID 23180) +-- Name: mdl_assieditrot_gra_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assieditrot_gra_ix ON public.mdl_assignfeedback_editpdf_rot USING btree (gradeid); + + +-- +-- TOC entry 9494 (class 1259 OID 23179) +-- Name: mdl_assieditrot_grapag_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_assieditrot_grapag_uix ON public.mdl_assignfeedback_editpdf_rot USING btree (gradeid, pageno); + + +-- +-- TOC entry 9497 (class 1259 OID 23192) +-- Name: mdl_assifile_ass2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assifile_ass2_ix ON public.mdl_assignfeedback_file USING btree (assignment); + + +-- +-- TOC entry 9467 (class 1259 OID 23063) +-- Name: mdl_assifile_ass_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assifile_ass_ix ON public.mdl_assignsubmission_file USING btree (assignment); + + +-- +-- TOC entry 9498 (class 1259 OID 23193) +-- Name: mdl_assifile_gra_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assifile_gra_ix ON public.mdl_assignfeedback_file USING btree (grade); + + +-- +-- TOC entry 9470 (class 1259 OID 23064) +-- Name: mdl_assifile_sub_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assifile_sub_ix ON public.mdl_assignsubmission_file USING btree (submission); + + +-- +-- TOC entry 8827 (class 1259 OID 20311) +-- Name: mdl_assigrad_ass_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assigrad_ass_ix ON public.mdl_assign_grades USING btree (assignment); + + +-- +-- TOC entry 8828 (class 1259 OID 20310) +-- Name: mdl_assigrad_assuseatt_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_assigrad_assuseatt_uix ON public.mdl_assign_grades USING btree (assignment, userid, attemptnumber); + + +-- +-- TOC entry 8829 (class 1259 OID 20309) +-- Name: mdl_assigrad_att_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assigrad_att_ix ON public.mdl_assign_grades USING btree (attemptnumber); + + +-- +-- TOC entry 8832 (class 1259 OID 20308) +-- Name: mdl_assigrad_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assigrad_use_ix ON public.mdl_assign_grades USING btree (userid); + + +-- +-- TOC entry 9471 (class 1259 OID 23079) +-- Name: mdl_assionli_ass_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assionli_ass_ix ON public.mdl_assignsubmission_onlinetext USING btree (assignment); + + +-- +-- TOC entry 9474 (class 1259 OID 23080) +-- Name: mdl_assionli_sub_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assionli_sub_ix ON public.mdl_assignsubmission_onlinetext USING btree (submission); + + +-- +-- TOC entry 8848 (class 1259 OID 20369) +-- Name: mdl_assiover_ass_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assiover_ass_ix ON public.mdl_assign_overrides USING btree (assignid); + + +-- +-- TOC entry 8849 (class 1259 OID 20370) +-- Name: mdl_assiover_gro_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assiover_gro_ix ON public.mdl_assign_overrides USING btree (groupid); + + +-- +-- TOC entry 8852 (class 1259 OID 20371) +-- Name: mdl_assiover_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assiover_use_ix ON public.mdl_assign_overrides USING btree (userid); + + +-- +-- TOC entry 8833 (class 1259 OID 20330) +-- Name: mdl_assiplugconf_ass_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assiplugconf_ass_ix ON public.mdl_assign_plugin_config USING btree (assignment); + + +-- +-- TOC entry 8836 (class 1259 OID 20329) +-- Name: mdl_assiplugconf_nam_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assiplugconf_nam_ix ON public.mdl_assign_plugin_config USING btree (name); + + +-- +-- TOC entry 8837 (class 1259 OID 20327) +-- Name: mdl_assiplugconf_plu_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assiplugconf_plu_ix ON public.mdl_assign_plugin_config USING btree (plugin); + + +-- +-- TOC entry 8838 (class 1259 OID 20328) +-- Name: mdl_assiplugconf_sub_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assiplugconf_sub_ix ON public.mdl_assign_plugin_config USING btree (subtype); + + +-- +-- TOC entry 8856 (class 1259 OID 20425) +-- Name: mdl_assisubm_ass2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assisubm_ass2_ix ON public.mdl_assignment_submissions USING btree (assignment); + + +-- +-- TOC entry 8820 (class 1259 OID 20292) +-- Name: mdl_assisubm_ass_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assisubm_ass_ix ON public.mdl_assign_submission USING btree (assignment); + + +-- +-- TOC entry 8821 (class 1259 OID 20290) +-- Name: mdl_assisubm_assusegroatt_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_assisubm_assusegroatt_uix ON public.mdl_assign_submission USING btree (assignment, userid, groupid, attemptnumber); + + +-- +-- TOC entry 8822 (class 1259 OID 20291) +-- Name: mdl_assisubm_assusegrolat_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assisubm_assusegrolat_ix ON public.mdl_assign_submission USING btree (assignment, userid, groupid, latest); + + +-- +-- TOC entry 8823 (class 1259 OID 20289) +-- Name: mdl_assisubm_att_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assisubm_att_ix ON public.mdl_assign_submission USING btree (attemptnumber); + + +-- +-- TOC entry 8859 (class 1259 OID 20423) +-- Name: mdl_assisubm_mai_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assisubm_mai_ix ON public.mdl_assignment_submissions USING btree (mailed); + + +-- +-- TOC entry 8860 (class 1259 OID 20424) +-- Name: mdl_assisubm_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assisubm_tim_ix ON public.mdl_assignment_submissions USING btree (timemarked); + + +-- +-- TOC entry 8861 (class 1259 OID 20422) +-- Name: mdl_assisubm_use2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assisubm_use2_ix ON public.mdl_assignment_submissions USING btree (userid); + + +-- +-- TOC entry 8826 (class 1259 OID 20288) +-- Name: mdl_assisubm_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assisubm_use_ix ON public.mdl_assign_submission USING btree (userid); + + +-- +-- TOC entry 8864 (class 1259 OID 20440) +-- Name: mdl_assiupgr_old2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assiupgr_old2_ix ON public.mdl_assignment_upgrade USING btree (oldinstance); + + +-- +-- TOC entry 8865 (class 1259 OID 20439) +-- Name: mdl_assiupgr_old_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assiupgr_old_ix ON public.mdl_assignment_upgrade USING btree (oldcmid); + + +-- +-- TOC entry 8843 (class 1259 OID 20359) +-- Name: mdl_assiuserflag_ass_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assiuserflag_ass_ix ON public.mdl_assign_user_flags USING btree (assignment); + + +-- +-- TOC entry 8846 (class 1259 OID 20357) +-- Name: mdl_assiuserflag_mai_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assiuserflag_mai_ix ON public.mdl_assign_user_flags USING btree (mailed); + + +-- +-- TOC entry 8847 (class 1259 OID 20358) +-- Name: mdl_assiuserflag_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assiuserflag_use_ix ON public.mdl_assign_user_flags USING btree (userid); + + +-- +-- TOC entry 8839 (class 1259 OID 20341) +-- Name: mdl_assiusermapp_ass_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assiusermapp_ass_ix ON public.mdl_assign_user_mapping USING btree (assignment); + + +-- +-- TOC entry 8842 (class 1259 OID 20342) +-- Name: mdl_assiusermapp_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_assiusermapp_use_ix ON public.mdl_assign_user_mapping USING btree (userid); + + +-- +-- TOC entry 9261 (class 1259 OID 22320) +-- Name: mdl_authoautlinklogi_iss_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_authoautlinklogi_iss_ix ON public.mdl_auth_oauth2_linked_login USING btree (issuerid); + + +-- +-- TOC entry 9262 (class 1259 OID 22317) +-- Name: mdl_authoautlinklogi_issuse_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_authoautlinklogi_issuse_ix ON public.mdl_auth_oauth2_linked_login USING btree (issuerid, username); + + +-- +-- TOC entry 9263 (class 1259 OID 22319) +-- Name: mdl_authoautlinklogi_use2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_authoautlinklogi_use2_ix ON public.mdl_auth_oauth2_linked_login USING btree (userid); + + +-- +-- TOC entry 9264 (class 1259 OID 22318) +-- Name: mdl_authoautlinklogi_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_authoautlinklogi_use_ix ON public.mdl_auth_oauth2_linked_login USING btree (usermodified); + + +-- +-- TOC entry 9265 (class 1259 OID 22321) +-- Name: mdl_authoautlinklogi_useis_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_authoautlinklogi_useis_uix ON public.mdl_auth_oauth2_linked_login USING btree (userid, issuerid, username); + + +-- +-- TOC entry 8441 (class 1259 OID 18819) +-- Name: mdl_backcont_bac_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_backcont_bac_uix ON public.mdl_backup_controllers USING btree (backupid); + + +-- +-- TOC entry 8444 (class 1259 OID 18817) +-- Name: mdl_backcont_typite_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_backcont_typite_ix ON public.mdl_backup_controllers USING btree (type, itemid); + + +-- +-- TOC entry 8445 (class 1259 OID 18820) +-- Name: mdl_backcont_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_backcont_use_ix ON public.mdl_backup_controllers USING btree (userid); + + +-- +-- TOC entry 8446 (class 1259 OID 18818) +-- Name: mdl_backcont_useite_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_backcont_useite_ix ON public.mdl_backup_controllers USING btree (userid, itemid); + + +-- +-- TOC entry 8386 (class 1259 OID 18602) +-- Name: mdl_backcour_cou_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_backcour_cou_uix ON public.mdl_backup_courses USING btree (courseid); + + +-- +-- TOC entry 8447 (class 1259 OID 18834) +-- Name: mdl_backlogs_bac_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_backlogs_bac_ix ON public.mdl_backup_logs USING btree (backupid); + + +-- +-- TOC entry 8448 (class 1259 OID 18833) +-- Name: mdl_backlogs_bacid_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_backlogs_bacid_uix ON public.mdl_backup_logs USING btree (backupid, id); + + +-- +-- TOC entry 8474 (class 1259 OID 18948) +-- Name: mdl_badg_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badg_cou_ix ON public.mdl_badge USING btree (courseid); + + +-- +-- TOC entry 8477 (class 1259 OID 18947) +-- Name: mdl_badg_typ_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badg_typ_ix ON public.mdl_badge USING btree (type); + + +-- +-- TOC entry 8478 (class 1259 OID 18950) +-- Name: mdl_badg_use2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badg_use2_ix ON public.mdl_badge USING btree (usercreated); + + +-- +-- TOC entry 8479 (class 1259 OID 18949) +-- Name: mdl_badg_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badg_use_ix ON public.mdl_badge USING btree (usermodified); + + +-- +-- TOC entry 8524 (class 1259 OID 19109) +-- Name: mdl_badgalig_bad_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgalig_bad_ix ON public.mdl_badge_alignment USING btree (badgeid); + + +-- +-- TOC entry 8507 (class 1259 OID 19051) +-- Name: mdl_badgback_ext_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgback_ext_ix ON public.mdl_badge_backpack USING btree (externalbackpackid); + + +-- +-- TOC entry 8510 (class 1259 OID 19050) +-- Name: mdl_badgback_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgback_use_ix ON public.mdl_badge_backpack USING btree (userid); + + +-- +-- TOC entry 8511 (class 1259 OID 19069) +-- Name: mdl_badgbackoaut_ext_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgbackoaut_ext_ix ON public.mdl_badge_backpack_oauth2 USING btree (externalbackpackid); + + +-- +-- TOC entry 8514 (class 1259 OID 19068) +-- Name: mdl_badgbackoaut_iss_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgbackoaut_iss_ix ON public.mdl_badge_backpack_oauth2 USING btree (issuerid); + + +-- +-- TOC entry 8515 (class 1259 OID 19067) +-- Name: mdl_badgbackoaut_use2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgbackoaut_use2_ix ON public.mdl_badge_backpack_oauth2 USING btree (userid); + + +-- +-- TOC entry 8516 (class 1259 OID 19066) +-- Name: mdl_badgbackoaut_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgbackoaut_use_ix ON public.mdl_badge_backpack_oauth2 USING btree (usermodified); + + +-- +-- TOC entry 8480 (class 1259 OID 18967) +-- Name: mdl_badgcrit_bad_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgcrit_bad_ix ON public.mdl_badge_criteria USING btree (badgeid); + + +-- +-- TOC entry 8481 (class 1259 OID 18966) +-- Name: mdl_badgcrit_badcri_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_badgcrit_badcri_uix ON public.mdl_badge_criteria USING btree (badgeid, criteriatype); + + +-- +-- TOC entry 8482 (class 1259 OID 18965) +-- Name: mdl_badgcrit_cri_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgcrit_cri_ix ON public.mdl_badge_criteria USING btree (criteriatype); + + +-- +-- TOC entry 8493 (class 1259 OID 19007) +-- Name: mdl_badgcritmet_cri_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgcritmet_cri_ix ON public.mdl_badge_criteria_met USING btree (critid); + + +-- +-- TOC entry 8496 (class 1259 OID 19009) +-- Name: mdl_badgcritmet_iss_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgcritmet_iss_ix ON public.mdl_badge_criteria_met USING btree (issuedid); + + +-- +-- TOC entry 8497 (class 1259 OID 19008) +-- Name: mdl_badgcritmet_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgcritmet_use_ix ON public.mdl_badge_criteria_met USING btree (userid); + + +-- +-- TOC entry 8485 (class 1259 OID 18980) +-- Name: mdl_badgcritpara_cri_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgcritpara_cri_ix ON public.mdl_badge_criteria_param USING btree (critid); + + +-- +-- TOC entry 8498 (class 1259 OID 19026) +-- Name: mdl_badgendo_bad_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgendo_bad_ix ON public.mdl_badge_endorsement USING btree (badgeid); + + +-- +-- TOC entry 8517 (class 1259 OID 19081) +-- Name: mdl_badgexte_bac_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgexte_bac_ix ON public.mdl_badge_external USING btree (backpackid); + + +-- +-- TOC entry 8532 (class 1259 OID 19138) +-- Name: mdl_badgexteback_bac2_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_badgexteback_bac2_uix ON public.mdl_badge_external_backpack USING btree (backpackweburl); + + +-- +-- TOC entry 8533 (class 1259 OID 19137) +-- Name: mdl_badgexteback_bac_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_badgexteback_bac_uix ON public.mdl_badge_external_backpack USING btree (backpackapiurl); + + +-- +-- TOC entry 8536 (class 1259 OID 19139) +-- Name: mdl_badgexteback_oau_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgexteback_oau_ix ON public.mdl_badge_external_backpack USING btree (oauth2_issuerid); + + +-- +-- TOC entry 8522 (class 1259 OID 19093) +-- Name: mdl_badgexteiden_sit_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgexteiden_sit_ix ON public.mdl_badge_external_identifier USING btree (sitebackpackid); + + +-- +-- TOC entry 8523 (class 1259 OID 19094) +-- Name: mdl_badgexteiden_sitintext_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_badgexteiden_sitintext_uix ON public.mdl_badge_external_identifier USING btree (sitebackpackid, internalid, externalid, type); + + +-- +-- TOC entry 8488 (class 1259 OID 18997) +-- Name: mdl_badgissu_bad_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgissu_bad_ix ON public.mdl_badge_issued USING btree (badgeid); + + +-- +-- TOC entry 8489 (class 1259 OID 18996) +-- Name: mdl_badgissu_baduse_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_badgissu_baduse_uix ON public.mdl_badge_issued USING btree (badgeid, userid); + + +-- +-- TOC entry 8492 (class 1259 OID 18998) +-- Name: mdl_badgissu_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgissu_use_ix ON public.mdl_badge_issued USING btree (userid); + + +-- +-- TOC entry 8501 (class 1259 OID 19035) +-- Name: mdl_badgmanuawar_bad_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgmanuawar_bad_ix ON public.mdl_badge_manual_award USING btree (badgeid); + + +-- +-- TOC entry 8504 (class 1259 OID 19038) +-- Name: mdl_badgmanuawar_iss2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgmanuawar_iss2_ix ON public.mdl_badge_manual_award USING btree (issuerrole); + + +-- +-- TOC entry 8505 (class 1259 OID 19037) +-- Name: mdl_badgmanuawar_iss_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgmanuawar_iss_ix ON public.mdl_badge_manual_award USING btree (issuerid); + + +-- +-- TOC entry 8506 (class 1259 OID 19036) +-- Name: mdl_badgmanuawar_rec_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgmanuawar_rec_ix ON public.mdl_badge_manual_award USING btree (recipientid); + + +-- +-- TOC entry 8527 (class 1259 OID 19119) +-- Name: mdl_badgrela_bad_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgrela_bad_ix ON public.mdl_badge_related USING btree (badgeid); + + +-- +-- TOC entry 8528 (class 1259 OID 19121) +-- Name: mdl_badgrela_badrel_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_badgrela_badrel_uix ON public.mdl_badge_related USING btree (badgeid, relatedbadgeid); + + +-- +-- TOC entry 8531 (class 1259 OID 19120) +-- Name: mdl_badgrela_rel_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_badgrela_rel_ix ON public.mdl_badge_related USING btree (relatedbadgeid); + + +-- +-- TOC entry 8391 (class 1259 OID 18615) +-- Name: mdl_bloc_nam_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_bloc_nam_uix ON public.mdl_block USING btree (name); + + +-- +-- TOC entry 8394 (class 1259 OID 18633) +-- Name: mdl_blocinst_par_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_blocinst_par_ix ON public.mdl_block_instances USING btree (parentcontextid); + + +-- +-- TOC entry 8395 (class 1259 OID 18631) +-- Name: mdl_blocinst_parshopagsub_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_blocinst_parshopagsub_ix ON public.mdl_block_instances USING btree (parentcontextid, showinsubcontexts, pagetypepattern, subpagepattern); + + +-- +-- TOC entry 8396 (class 1259 OID 18632) +-- Name: mdl_blocinst_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_blocinst_tim_ix ON public.mdl_block_instances USING btree (timemodified); + + +-- +-- TOC entry 8397 (class 1259 OID 18646) +-- Name: mdl_blocposi_blo_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_blocposi_blo_ix ON public.mdl_block_positions USING btree (blockinstanceid); + + +-- +-- TOC entry 8398 (class 1259 OID 18645) +-- Name: mdl_blocposi_bloconpagsub_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_blocposi_bloconpagsub_uix ON public.mdl_block_positions USING btree (blockinstanceid, contextid, pagetype, subpage); + + +-- +-- TOC entry 8399 (class 1259 OID 18647) +-- Name: mdl_blocposi_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_blocposi_con_ix ON public.mdl_block_positions USING btree (contextid); + + +-- +-- TOC entry 9333 (class 1259 OID 22573) +-- Name: mdl_blocrece_cmi_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_blocrece_cmi_ix ON public.mdl_block_recentlyaccesseditems USING btree (cmid); + + +-- +-- TOC entry 9334 (class 1259 OID 22572) +-- Name: mdl_blocrece_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_blocrece_cou_ix ON public.mdl_block_recentlyaccesseditems USING btree (courseid); + + +-- +-- TOC entry 9337 (class 1259 OID 22571) +-- Name: mdl_blocrece_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_blocrece_use_ix ON public.mdl_block_recentlyaccesseditems USING btree (userid); + + +-- +-- TOC entry 9338 (class 1259 OID 22570) +-- Name: mdl_blocrece_usecoucmi_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_blocrece_usecoucmi_uix ON public.mdl_block_recentlyaccesseditems USING btree (userid, courseid, cmid); + + +-- +-- TOC entry 9330 (class 1259 OID 22561) +-- Name: mdl_blocreceacti_coutim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_blocreceacti_coutim_ix ON public.mdl_block_recent_activity USING btree (courseid, timecreated); + + +-- +-- TOC entry 8425 (class 1259 OID 18740) +-- Name: mdl_blogasso_blo_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_blogasso_blo_ix ON public.mdl_blog_association USING btree (blogid); + + +-- +-- TOC entry 8426 (class 1259 OID 18739) +-- Name: mdl_blogasso_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_blogasso_con_ix ON public.mdl_blog_association USING btree (contextid); + + +-- +-- TOC entry 8431 (class 1259 OID 18755) +-- Name: mdl_blogexte_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_blogexte_use_ix ON public.mdl_blog_external USING btree (userid); + + +-- +-- TOC entry 7890 (class 1259 OID 16784) +-- Name: mdl_cachfilt_filmd5_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_cachfilt_filmd5_ix ON public.mdl_cache_filters USING btree (filter, md5key); + + +-- +-- TOC entry 8332 (class 1259 OID 18384) +-- Name: mdl_cachflag_fla_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_cachflag_fla_ix ON public.mdl_cache_flags USING btree (flagtype); + + +-- +-- TOC entry 8335 (class 1259 OID 18385) +-- Name: mdl_cachflag_nam_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_cachflag_nam_ix ON public.mdl_cache_flags USING btree (name); + + +-- +-- TOC entry 8064 (class 1259 OID 17372) +-- Name: mdl_capa_nam_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_capa_nam_uix ON public.mdl_capabilities USING btree (name); + + +-- +-- TOC entry 8870 (class 1259 OID 20500) +-- Name: mdl_chat_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_chat_cou_ix ON public.mdl_chat USING btree (course); + + +-- +-- TOC entry 8873 (class 1259 OID 20520) +-- Name: mdl_chatmess_cha_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_chatmess_cha_ix ON public.mdl_chat_messages USING btree (chatid); + + +-- +-- TOC entry 8874 (class 1259 OID 20518) +-- Name: mdl_chatmess_gro_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_chatmess_gro_ix ON public.mdl_chat_messages USING btree (groupid); + + +-- +-- TOC entry 8877 (class 1259 OID 20519) +-- Name: mdl_chatmess_timcha_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_chatmess_timcha_ix ON public.mdl_chat_messages USING btree ("timestamp", chatid); + + +-- +-- TOC entry 8878 (class 1259 OID 20517) +-- Name: mdl_chatmess_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_chatmess_use_ix ON public.mdl_chat_messages USING btree (userid); + + +-- +-- TOC entry 8879 (class 1259 OID 20540) +-- Name: mdl_chatmesscurr_cha_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_chatmesscurr_cha_ix ON public.mdl_chat_messages_current USING btree (chatid); + + +-- +-- TOC entry 8880 (class 1259 OID 20538) +-- Name: mdl_chatmesscurr_gro_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_chatmesscurr_gro_ix ON public.mdl_chat_messages_current USING btree (groupid); + + +-- +-- TOC entry 8883 (class 1259 OID 20539) +-- Name: mdl_chatmesscurr_timcha_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_chatmesscurr_timcha_ix ON public.mdl_chat_messages_current USING btree ("timestamp", chatid); + + +-- +-- TOC entry 8884 (class 1259 OID 20537) +-- Name: mdl_chatmesscurr_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_chatmesscurr_use_ix ON public.mdl_chat_messages_current USING btree (userid); + + +-- +-- TOC entry 8885 (class 1259 OID 20563) +-- Name: mdl_chatuser_cha_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_chatuser_cha_ix ON public.mdl_chat_users USING btree (chatid); + + +-- +-- TOC entry 8886 (class 1259 OID 20562) +-- Name: mdl_chatuser_gro_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_chatuser_gro_ix ON public.mdl_chat_users USING btree (groupid); + + +-- +-- TOC entry 8889 (class 1259 OID 20561) +-- Name: mdl_chatuser_las_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_chatuser_las_ix ON public.mdl_chat_users USING btree (lastping); + + +-- +-- TOC entry 8890 (class 1259 OID 20560) +-- Name: mdl_chatuser_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_chatuser_use_ix ON public.mdl_chat_users USING btree (userid); + + +-- +-- TOC entry 8891 (class 1259 OID 20591) +-- Name: mdl_choi_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_choi_cou_ix ON public.mdl_choice USING btree (course); + + +-- +-- TOC entry 8897 (class 1259 OID 20620) +-- Name: mdl_choiansw_cho_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_choiansw_cho_ix ON public.mdl_choice_answers USING btree (choiceid); + + +-- +-- TOC entry 8900 (class 1259 OID 20621) +-- Name: mdl_choiansw_opt_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_choiansw_opt_ix ON public.mdl_choice_answers USING btree (optionid); + + +-- +-- TOC entry 8901 (class 1259 OID 20619) +-- Name: mdl_choiansw_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_choiansw_use_ix ON public.mdl_choice_answers USING btree (userid); + + +-- +-- TOC entry 8894 (class 1259 OID 20606) +-- Name: mdl_choiopti_cho_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_choiopti_cho_ix ON public.mdl_choice_options USING btree (choiceid); + + +-- +-- TOC entry 8317 (class 1259 OID 18330) +-- Name: mdl_coho_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_coho_con_ix ON public.mdl_cohort USING btree (contextid); + + +-- +-- TOC entry 8320 (class 1259 OID 18343) +-- Name: mdl_cohomemb_coh_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_cohomemb_coh_ix ON public.mdl_cohort_members USING btree (cohortid); + + +-- +-- TOC entry 8321 (class 1259 OID 18342) +-- Name: mdl_cohomemb_cohuse_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_cohomemb_cohuse_uix ON public.mdl_cohort_members USING btree (cohortid, userid); + + +-- +-- TOC entry 8324 (class 1259 OID 18344) +-- Name: mdl_cohomemb_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_cohomemb_use_ix ON public.mdl_cohort_members USING btree (userid); + + +-- +-- TOC entry 8402 (class 1259 OID 18661) +-- Name: mdl_comm_concomite_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_comm_concomite_ix ON public.mdl_comments USING btree (contextid, commentarea, itemid); + + +-- +-- TOC entry 8405 (class 1259 OID 18662) +-- Name: mdl_comm_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_comm_use_ix ON public.mdl_comments USING btree (userid); + + +-- +-- TOC entry 8571 (class 1259 OID 19289) +-- Name: mdl_comp_comidn_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_comp_comidn_uix ON public.mdl_competency USING btree (competencyframeworkid, idnumber); + + +-- +-- TOC entry 8574 (class 1259 OID 19290) +-- Name: mdl_comp_rul_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_comp_rul_ix ON public.mdl_competency USING btree (ruleoutcome); + + +-- +-- TOC entry 8581 (class 1259 OID 19326) +-- Name: mdl_compcour_com_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_compcour_com_ix ON public.mdl_competency_coursecomp USING btree (competencyid); + + +-- +-- TOC entry 8582 (class 1259 OID 19325) +-- Name: mdl_compcour_cou2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_compcour_cou2_ix ON public.mdl_competency_coursecomp USING btree (courseid); + + +-- +-- TOC entry 8575 (class 1259 OID 19299) +-- Name: mdl_compcour_cou_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_compcour_cou_uix ON public.mdl_competency_coursecompsetting USING btree (courseid); + + +-- +-- TOC entry 8583 (class 1259 OID 19324) +-- Name: mdl_compcour_coucom_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_compcour_coucom_uix ON public.mdl_competency_coursecomp USING btree (courseid, competencyid); + + +-- +-- TOC entry 8584 (class 1259 OID 19323) +-- Name: mdl_compcour_courul_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_compcour_courul_ix ON public.mdl_competency_coursecomp USING btree (courseid, ruleoutcome); + + +-- +-- TOC entry 8618 (class 1259 OID 19436) +-- Name: mdl_compevid_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_compevid_use_ix ON public.mdl_competency_evidence USING btree (usercompetencyid); + + +-- +-- TOC entry 8580 (class 1259 OID 19314) +-- Name: mdl_compfram_idn_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_compfram_idn_uix ON public.mdl_competency_framework USING btree (idnumber); + + +-- +-- TOC entry 8626 (class 1259 OID 19470) +-- Name: mdl_compmodu_cmi_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_compmodu_cmi_ix ON public.mdl_competency_modulecomp USING btree (cmid); + + +-- +-- TOC entry 8627 (class 1259 OID 19469) +-- Name: mdl_compmodu_cmicom_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_compmodu_cmicom_uix ON public.mdl_competency_modulecomp USING btree (cmid, competencyid); + + +-- +-- TOC entry 8628 (class 1259 OID 19468) +-- Name: mdl_compmodu_cmirul_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_compmodu_cmirul_ix ON public.mdl_competency_modulecomp USING btree (cmid, ruleoutcome); + + +-- +-- TOC entry 8629 (class 1259 OID 19471) +-- Name: mdl_compmodu_com_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_compmodu_com_ix ON public.mdl_competency_modulecomp USING btree (competencyid); + + +-- +-- TOC entry 8615 (class 1259 OID 19422) +-- Name: mdl_compplan_placom_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_compplan_placom_uix ON public.mdl_competency_plancomp USING btree (planid, competencyid); + + +-- +-- TOC entry 8589 (class 1259 OID 19344) +-- Name: mdl_compplan_stadue_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_compplan_stadue_ix ON public.mdl_competency_plan USING btree (status, duedate); + + +-- +-- TOC entry 8590 (class 1259 OID 19343) +-- Name: mdl_compplan_tem_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_compplan_tem_ix ON public.mdl_competency_plan USING btree (templateid); + + +-- +-- TOC entry 8591 (class 1259 OID 19342) +-- Name: mdl_compplan_usesta_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_compplan_usesta_ix ON public.mdl_competency_plan USING btree (userid, status); + + +-- +-- TOC entry 8594 (class 1259 OID 19367) +-- Name: mdl_comptemp_com_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_comptemp_com_ix ON public.mdl_competency_templatecomp USING btree (competencyid); + + +-- +-- TOC entry 8600 (class 1259 OID 19376) +-- Name: mdl_comptemp_tem2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_comptemp_tem2_ix ON public.mdl_competency_templatecohort USING btree (templateid); + + +-- +-- TOC entry 8597 (class 1259 OID 19366) +-- Name: mdl_comptemp_tem_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_comptemp_tem_ix ON public.mdl_competency_templatecomp USING btree (templateid); + + +-- +-- TOC entry 8601 (class 1259 OID 19377) +-- Name: mdl_comptemp_temcoh_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_comptemp_temcoh_uix ON public.mdl_competency_templatecohort USING btree (templateid, cohortid); + + +-- +-- TOC entry 8624 (class 1259 OID 19458) +-- Name: mdl_compuser_use2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_compuser_use2_ix ON public.mdl_competency_userevidencecomp USING btree (userevidenceid); + + +-- +-- TOC entry 8621 (class 1259 OID 19449) +-- Name: mdl_compuser_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_compuser_use_ix ON public.mdl_competency_userevidence USING btree (userid); + + +-- +-- TOC entry 8625 (class 1259 OID 19459) +-- Name: mdl_compuser_usecom2_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_compuser_usecom2_uix ON public.mdl_competency_userevidencecomp USING btree (userevidenceid, competencyid); + + +-- +-- TOC entry 8606 (class 1259 OID 19395) +-- Name: mdl_compuser_usecom_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_compuser_usecom_uix ON public.mdl_competency_usercomp USING btree (userid, competencyid); + + +-- +-- TOC entry 8612 (class 1259 OID 19413) +-- Name: mdl_compuser_usecompla_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_compuser_usecompla_uix ON public.mdl_competency_usercompplan USING btree (userid, competencyid, planid); + + +-- +-- TOC entry 8609 (class 1259 OID 19404) +-- Name: mdl_compuser_usecoucom_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_compuser_usecoucom_uix ON public.mdl_competency_usercompcourse USING btree (userid, courseid, competencyid); + + +-- +-- TOC entry 7793 (class 1259 OID 16397) +-- Name: mdl_conf_nam_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_conf_nam_uix ON public.mdl_config USING btree (name); + + +-- +-- TOC entry 7799 (class 1259 OID 16424) +-- Name: mdl_conflog_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_conflog_tim_ix ON public.mdl_config_log USING btree (timemodified); + + +-- +-- TOC entry 7800 (class 1259 OID 16425) +-- Name: mdl_conflog_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_conflog_use_ix ON public.mdl_config_log USING btree (userid); + + +-- +-- TOC entry 7796 (class 1259 OID 16411) +-- Name: mdl_confplug_plunam_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_confplug_plunam_uix ON public.mdl_config_plugins USING btree (plugin, name); + + +-- +-- TOC entry 8054 (class 1259 OID 17348) +-- Name: mdl_cont_conins_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_cont_conins_uix ON public.mdl_context USING btree (contextlevel, instanceid); + + +-- +-- TOC entry 8057 (class 1259 OID 17349) +-- Name: mdl_cont_ins_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_cont_ins_ix ON public.mdl_context USING btree (instanceid); + + +-- +-- TOC entry 8058 (class 1259 OID 17350) +-- Name: mdl_cont_pat_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_cont_pat_ix ON public.mdl_context USING btree (path); + + +-- +-- TOC entry 8059 (class 1259 OID 17351) +-- Name: mdl_cont_pat_ix_pattern; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_cont_pat_ix_pattern ON public.mdl_context USING btree (path varchar_pattern_ops); + + +-- +-- TOC entry 8732 (class 1259 OID 19844) +-- Name: mdl_contcont_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_contcont_con_ix ON public.mdl_contentbank_content USING btree (contextid); + + +-- +-- TOC entry 8733 (class 1259 OID 19843) +-- Name: mdl_contcont_conconins_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_contcont_conconins_ix ON public.mdl_contentbank_content USING btree (contextid, contenttype, instanceid); + + +-- +-- TOC entry 8736 (class 1259 OID 19842) +-- Name: mdl_contcont_nam_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_contcont_nam_ix ON public.mdl_contentbank_content USING btree (name); + + +-- +-- TOC entry 8737 (class 1259 OID 19846) +-- Name: mdl_contcont_use2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_contcont_use2_ix ON public.mdl_contentbank_content USING btree (usercreated); + + +-- +-- TOC entry 8738 (class 1259 OID 19845) +-- Name: mdl_contcont_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_contcont_use_ix ON public.mdl_contentbank_content USING btree (usermodified); + + +-- +-- TOC entry 7806 (class 1259 OID 16482) +-- Name: mdl_cour_cat_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_cour_cat_ix ON public.mdl_course USING btree (category); + + +-- +-- TOC entry 7809 (class 1259 OID 16483) +-- Name: mdl_cour_idn_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_cour_idn_ix ON public.mdl_course USING btree (idnumber); + + +-- +-- TOC entry 7810 (class 1259 OID 16484) +-- Name: mdl_cour_sho_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_cour_sho_ix ON public.mdl_course USING btree (shortname); + + +-- +-- TOC entry 7811 (class 1259 OID 16485) +-- Name: mdl_cour_sor_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_cour_sor_ix ON public.mdl_course USING btree (sortorder); + + +-- +-- TOC entry 7814 (class 1259 OID 16507) +-- Name: mdl_courcate_par_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_courcate_par_ix ON public.mdl_course_categories USING btree (parent); + + +-- +-- TOC entry 7830 (class 1259 OID 16562) +-- Name: mdl_courcomp_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_courcomp_cou_ix ON public.mdl_course_completions USING btree (course); + + +-- +-- TOC entry 7833 (class 1259 OID 16563) +-- Name: mdl_courcomp_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_courcomp_tim_ix ON public.mdl_course_completions USING btree (timecompleted); + + +-- +-- TOC entry 7834 (class 1259 OID 16561) +-- Name: mdl_courcomp_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_courcomp_use_ix ON public.mdl_course_completions USING btree (userid); + + +-- +-- TOC entry 7835 (class 1259 OID 16564) +-- Name: mdl_courcomp_usecou_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_courcomp_usecou_uix ON public.mdl_course_completions USING btree (userid, course); + + +-- +-- TOC entry 7815 (class 1259 OID 16518) +-- Name: mdl_courcompaggrmeth_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_courcompaggrmeth_cou_ix ON public.mdl_course_completion_aggr_methd USING btree (course); + + +-- +-- TOC entry 7816 (class 1259 OID 16520) +-- Name: mdl_courcompaggrmeth_coucr_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_courcompaggrmeth_coucr_uix ON public.mdl_course_completion_aggr_methd USING btree (course, criteriatype); + + +-- +-- TOC entry 7817 (class 1259 OID 16519) +-- Name: mdl_courcompaggrmeth_cri_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_courcompaggrmeth_cri_ix ON public.mdl_course_completion_aggr_methd USING btree (criteriatype); + + +-- +-- TOC entry 7820 (class 1259 OID 16531) +-- Name: mdl_courcompcrit_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_courcompcrit_cou_ix ON public.mdl_course_completion_criteria USING btree (course); + + +-- +-- TOC entry 7823 (class 1259 OID 16544) +-- Name: mdl_courcompcritcomp_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_courcompcritcomp_cou_ix ON public.mdl_course_completion_crit_compl USING btree (course); + + +-- +-- TOC entry 7824 (class 1259 OID 16545) +-- Name: mdl_courcompcritcomp_cri_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_courcompcritcomp_cri_ix ON public.mdl_course_completion_crit_compl USING btree (criteriaid); + + +-- +-- TOC entry 7827 (class 1259 OID 16546) +-- Name: mdl_courcompcritcomp_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_courcompcritcomp_tim_ix ON public.mdl_course_completion_crit_compl USING btree (timecompleted); + + +-- +-- TOC entry 7828 (class 1259 OID 16543) +-- Name: mdl_courcompcritcomp_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_courcompcritcomp_use_ix ON public.mdl_course_completion_crit_compl USING btree (userid); + + +-- +-- TOC entry 7829 (class 1259 OID 16547) +-- Name: mdl_courcompcritcomp_useco_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_courcompcritcomp_useco_uix ON public.mdl_course_completion_crit_compl USING btree (userid, course, criteriaid); + + +-- +-- TOC entry 8644 (class 1259 OID 19542) +-- Name: mdl_courcompdefa_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_courcompdefa_cou_ix ON public.mdl_course_completion_defaults USING btree (course); + + +-- +-- TOC entry 8645 (class 1259 OID 19540) +-- Name: mdl_courcompdefa_coumod_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_courcompdefa_coumod_uix ON public.mdl_course_completion_defaults USING btree (course, module); + + +-- +-- TOC entry 8648 (class 1259 OID 19541) +-- Name: mdl_courcompdefa_mod_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_courcompdefa_mod_ix ON public.mdl_course_completion_defaults USING btree (module); + + +-- +-- TOC entry 7864 (class 1259 OID 16702) +-- Name: mdl_courformopti_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_courformopti_cou_ix ON public.mdl_course_format_options USING btree (courseid); + + +-- +-- TOC entry 7865 (class 1259 OID 16701) +-- Name: mdl_courformopti_couforsec_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_courformopti_couforsec_uix ON public.mdl_course_format_options USING btree (courseid, format, sectionid, name); + + +-- +-- TOC entry 7846 (class 1259 OID 16637) +-- Name: mdl_courmodu_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_courmodu_cou_ix ON public.mdl_course_modules USING btree (course); + + +-- +-- TOC entry 7847 (class 1259 OID 16641) +-- Name: mdl_courmodu_gro_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_courmodu_gro_ix ON public.mdl_course_modules USING btree (groupingid); + + +-- +-- TOC entry 7850 (class 1259 OID 16640) +-- Name: mdl_courmodu_idncou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_courmodu_idncou_ix ON public.mdl_course_modules USING btree (idnumber, course); + + +-- +-- TOC entry 7851 (class 1259 OID 16639) +-- Name: mdl_courmodu_ins_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_courmodu_ins_ix ON public.mdl_course_modules USING btree (instance); + + +-- +-- TOC entry 7852 (class 1259 OID 16638) +-- Name: mdl_courmodu_mod_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_courmodu_mod_ix ON public.mdl_course_modules USING btree (module); + + +-- +-- TOC entry 7853 (class 1259 OID 16636) +-- Name: mdl_courmodu_vis_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_courmodu_vis_ix ON public.mdl_course_modules USING btree (visible); + + +-- +-- TOC entry 7854 (class 1259 OID 16650) +-- Name: mdl_courmoducomp_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_courmoducomp_cou_ix ON public.mdl_course_modules_completion USING btree (coursemoduleid); + + +-- +-- TOC entry 7857 (class 1259 OID 16651) +-- Name: mdl_courmoducomp_usecou_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_courmoducomp_usecou_uix ON public.mdl_course_modules_completion USING btree (userid, coursemoduleid); + + +-- +-- TOC entry 7863 (class 1259 OID 16686) +-- Name: mdl_courrequ_sho_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_courrequ_sho_ix ON public.mdl_course_request USING btree (shortname); + + +-- +-- TOC entry 7858 (class 1259 OID 16668) +-- Name: mdl_coursect_cousec_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_coursect_cousec_uix ON public.mdl_course_sections USING btree (course, section); + + +-- +-- TOC entry 8699 (class 1259 OID 19728) +-- Name: mdl_custcate_comareitesor_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_custcate_comareitesor_ix ON public.mdl_customfield_category USING btree (component, area, itemid, sortorder); + + +-- +-- TOC entry 8700 (class 1259 OID 19729) +-- Name: mdl_custcate_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_custcate_con_ix ON public.mdl_customfield_category USING btree (contextid); + + +-- +-- TOC entry 8707 (class 1259 OID 19762) +-- Name: mdl_custdata_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_custdata_con_ix ON public.mdl_customfield_data USING btree (contextid); + + +-- +-- TOC entry 8708 (class 1259 OID 19761) +-- Name: mdl_custdata_fie_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_custdata_fie_ix ON public.mdl_customfield_data USING btree (fieldid); + + +-- +-- TOC entry 8709 (class 1259 OID 19760) +-- Name: mdl_custdata_fiedec_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_custdata_fiedec_ix ON public.mdl_customfield_data USING btree (fieldid, decvalue); + + +-- +-- TOC entry 8710 (class 1259 OID 19758) +-- Name: mdl_custdata_fieint_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_custdata_fieint_ix ON public.mdl_customfield_data USING btree (fieldid, intvalue); + + +-- +-- TOC entry 8711 (class 1259 OID 19759) +-- Name: mdl_custdata_fiesho_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_custdata_fiesho_ix ON public.mdl_customfield_data USING btree (fieldid, shortcharvalue); + + +-- +-- TOC entry 8714 (class 1259 OID 19757) +-- Name: mdl_custdata_insfie_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_custdata_insfie_uix ON public.mdl_customfield_data USING btree (instanceid, fieldid); + + +-- +-- TOC entry 8703 (class 1259 OID 19745) +-- Name: mdl_custfiel_cat_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_custfiel_cat_ix ON public.mdl_customfield_field USING btree (categoryid); + + +-- +-- TOC entry 8704 (class 1259 OID 19744) +-- Name: mdl_custfiel_catsor_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_custfiel_catsor_ix ON public.mdl_customfield_field USING btree (categoryid, sortorder); + + +-- +-- TOC entry 8902 (class 1259 OID 20657) +-- Name: mdl_data_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_data_cou_ix ON public.mdl_data USING btree (course); + + +-- +-- TOC entry 8912 (class 1259 OID 20704) +-- Name: mdl_datacont_fie_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_datacont_fie_ix ON public.mdl_data_content USING btree (fieldid); + + +-- +-- TOC entry 8915 (class 1259 OID 20703) +-- Name: mdl_datacont_rec_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_datacont_rec_ix ON public.mdl_data_content USING btree (recordid); + + +-- +-- TOC entry 8905 (class 1259 OID 20674) +-- Name: mdl_datafiel_dat_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_datafiel_dat_ix ON public.mdl_data_fields USING btree (dataid); + + +-- +-- TOC entry 8908 (class 1259 OID 20673) +-- Name: mdl_datafiel_typdat_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_datafiel_typdat_ix ON public.mdl_data_fields USING btree (type, dataid); + + +-- +-- TOC entry 8909 (class 1259 OID 20689) +-- Name: mdl_datareco_dat_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_datareco_dat_ix ON public.mdl_data_records USING btree (dataid); + + +-- +-- TOC entry 9341 (class 1259 OID 22606) +-- Name: mdl_editattoauto_eleconuse_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_editattoauto_eleconuse_uix ON public.mdl_editor_atto_autosave USING btree (elementid, contextid, userid, pagehash); + + +-- +-- TOC entry 7836 (class 1259 OID 16589) +-- Name: mdl_enro_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_enro_cou_ix ON public.mdl_enrol USING btree (courseid); + + +-- +-- TOC entry 7837 (class 1259 OID 16588) +-- Name: mdl_enro_enr_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_enro_enr_ix ON public.mdl_enrol USING btree (enrol); + + +-- +-- TOC entry 9266 (class 1259 OID 22334) +-- Name: mdl_enroflat_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_enroflat_cou_ix ON public.mdl_enrol_flatfile USING btree (courseid); + + +-- +-- TOC entry 9269 (class 1259 OID 22336) +-- Name: mdl_enroflat_rol_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_enroflat_rol_ix ON public.mdl_enrol_flatfile USING btree (roleid); + + +-- +-- TOC entry 9270 (class 1259 OID 22335) +-- Name: mdl_enroflat_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_enroflat_use_ix ON public.mdl_enrol_flatfile USING btree (userid); + + +-- +-- TOC entry 9279 (class 1259 OID 22388) +-- Name: mdl_enroltilti2cons_con_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_enroltilti2cons_con_uix ON public.mdl_enrol_lti_lti2_consumer USING btree (consumerkey256); + + +-- +-- TOC entry 9286 (class 1259 OID 22415) +-- Name: mdl_enroltilti2cont_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_enroltilti2cont_con_ix ON public.mdl_enrol_lti_lti2_context USING btree (consumerid); + + +-- +-- TOC entry 9289 (class 1259 OID 22425) +-- Name: mdl_enroltilti2nonc_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_enroltilti2nonc_con_ix ON public.mdl_enrol_lti_lti2_nonce USING btree (consumerid); + + +-- +-- TOC entry 9292 (class 1259 OID 22440) +-- Name: mdl_enroltilti2resolink_co2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_enroltilti2resolink_co2_ix ON public.mdl_enrol_lti_lti2_resource_link USING btree (consumerid); + + +-- +-- TOC entry 9293 (class 1259 OID 22438) +-- Name: mdl_enroltilti2resolink_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_enroltilti2resolink_con_ix ON public.mdl_enrol_lti_lti2_resource_link USING btree (contextid); + + +-- +-- TOC entry 9296 (class 1259 OID 22439) +-- Name: mdl_enroltilti2resolink_pri_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_enroltilti2resolink_pri_ix ON public.mdl_enrol_lti_lti2_resource_link USING btree (primaryresourcelinkid); + + +-- +-- TOC entry 9299 (class 1259 OID 22451) +-- Name: mdl_enroltilti2sharkey_res_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_enroltilti2sharkey_res_uix ON public.mdl_enrol_lti_lti2_share_key USING btree (resourcelinkid); + + +-- +-- TOC entry 9300 (class 1259 OID 22450) +-- Name: mdl_enroltilti2sharkey_sha_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_enroltilti2sharkey_sha_uix ON public.mdl_enrol_lti_lti2_share_key USING btree (sharekey); + + +-- +-- TOC entry 9282 (class 1259 OID 22402) +-- Name: mdl_enroltilti2toolprox_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_enroltilti2toolprox_con_ix ON public.mdl_enrol_lti_lti2_tool_proxy USING btree (consumerid); + + +-- +-- TOC entry 9285 (class 1259 OID 22401) +-- Name: mdl_enroltilti2toolprox_to_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_enroltilti2toolprox_to_uix ON public.mdl_enrol_lti_lti2_tool_proxy USING btree (toolproxykey); + + +-- +-- TOC entry 9303 (class 1259 OID 22465) +-- Name: mdl_enroltilti2userresu_res_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_enroltilti2userresu_res_ix ON public.mdl_enrol_lti_lti2_user_result USING btree (resourcelinkid); + + +-- +-- TOC entry 9271 (class 1259 OID 22360) +-- Name: mdl_enroltitool_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_enroltitool_con_ix ON public.mdl_enrol_lti_tools USING btree (contextid); + + +-- +-- TOC entry 9272 (class 1259 OID 22359) +-- Name: mdl_enroltitool_enr_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_enroltitool_enr_ix ON public.mdl_enrol_lti_tools USING btree (enrolid); + + +-- +-- TOC entry 9304 (class 1259 OID 22475) +-- Name: mdl_enroltitoolconsmap_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_enroltitoolconsmap_con_ix ON public.mdl_enrol_lti_tool_consumer_map USING btree (consumerid); + + +-- +-- TOC entry 9307 (class 1259 OID 22474) +-- Name: mdl_enroltitoolconsmap_too_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_enroltitoolconsmap_too_ix ON public.mdl_enrol_lti_tool_consumer_map USING btree (toolid); + + +-- +-- TOC entry 9277 (class 1259 OID 22373) +-- Name: mdl_enroltiuser_too_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_enroltiuser_too_ix ON public.mdl_enrol_lti_users USING btree (toolid); + + +-- +-- TOC entry 9278 (class 1259 OID 22372) +-- Name: mdl_enroltiuser_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_enroltiuser_use_ix ON public.mdl_enrol_lti_users USING btree (userid); + + +-- +-- TOC entry 9308 (class 1259 OID 22507) +-- Name: mdl_enropayp_bus_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_enropayp_bus_ix ON public.mdl_enrol_paypal USING btree (business); + + +-- +-- TOC entry 9309 (class 1259 OID 22509) +-- Name: mdl_enropayp_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_enropayp_cou_ix ON public.mdl_enrol_paypal USING btree (courseid); + + +-- +-- TOC entry 9312 (class 1259 OID 22511) +-- Name: mdl_enropayp_ins_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_enropayp_ins_ix ON public.mdl_enrol_paypal USING btree (instanceid); + + +-- +-- TOC entry 9313 (class 1259 OID 22508) +-- Name: mdl_enropayp_rec_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_enropayp_rec_ix ON public.mdl_enrol_paypal USING btree (receiver_email); + + +-- +-- TOC entry 9314 (class 1259 OID 22510) +-- Name: mdl_enropayp_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_enropayp_use_ix ON public.mdl_enrol_paypal USING btree (userid); + + +-- +-- TOC entry 7876 (class 1259 OID 16767) +-- Name: mdl_even_cat_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_even_cat_ix ON public.mdl_event USING btree (categoryid); + + +-- +-- TOC entry 7877 (class 1259 OID 16766) +-- Name: mdl_even_comeveins_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_even_comeveins_ix ON public.mdl_event USING btree (component, eventtype, instance); + + +-- +-- TOC entry 7878 (class 1259 OID 16757) +-- Name: mdl_even_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_even_cou_ix ON public.mdl_event USING btree (courseid); + + +-- +-- TOC entry 7879 (class 1259 OID 16764) +-- Name: mdl_even_eve_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_even_eve_ix ON public.mdl_event USING btree (eventtype); + + +-- +-- TOC entry 7880 (class 1259 OID 16763) +-- Name: mdl_even_grocoucatvisuse_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_even_grocoucatvisuse_ix ON public.mdl_event USING btree (groupid, courseid, categoryid, visible, userid); + + +-- +-- TOC entry 7883 (class 1259 OID 16765) +-- Name: mdl_even_modins_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_even_modins_ix ON public.mdl_event USING btree (modulename, instance); + + +-- +-- TOC entry 7884 (class 1259 OID 16768) +-- Name: mdl_even_sub_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_even_sub_ix ON public.mdl_event USING btree (subscriptionid); + + +-- +-- TOC entry 7885 (class 1259 OID 16760) +-- Name: mdl_even_tim2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_even_tim2_ix ON public.mdl_event USING btree (timeduration); + + +-- +-- TOC entry 7886 (class 1259 OID 16759) +-- Name: mdl_even_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_even_tim_ix ON public.mdl_event USING btree (timestart); + + +-- +-- TOC entry 7887 (class 1259 OID 16762) +-- Name: mdl_even_typtim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_even_typtim_ix ON public.mdl_event USING btree (type, timesort); + + +-- +-- TOC entry 7888 (class 1259 OID 16758) +-- Name: mdl_even_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_even_use_ix ON public.mdl_event USING btree (userid); + + +-- +-- TOC entry 7889 (class 1259 OID 16761) +-- Name: mdl_even_uui_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_even_uui_ix ON public.mdl_event USING btree (uuid); + + +-- +-- TOC entry 8194 (class 1259 OID 17905) +-- Name: mdl_evenhand_evecom_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_evenhand_evecom_uix ON public.mdl_events_handlers USING btree (eventname, component); + + +-- +-- TOC entry 8193 (class 1259 OID 17888) +-- Name: mdl_evenqueu_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_evenqueu_use_ix ON public.mdl_events_queue USING btree (userid); + + +-- +-- TOC entry 8197 (class 1259 OID 17918) +-- Name: mdl_evenqueuhand_han_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_evenqueuhand_han_ix ON public.mdl_events_queue_handlers USING btree (handlerid); + + +-- +-- TOC entry 8200 (class 1259 OID 17917) +-- Name: mdl_evenqueuhand_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_evenqueuhand_que_ix ON public.mdl_events_queue_handlers USING btree (queuedeventid); + + +-- +-- TOC entry 8411 (class 1259 OID 18693) +-- Name: mdl_extefunc_nam_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_extefunc_nam_uix ON public.mdl_external_functions USING btree (name); + + +-- +-- TOC entry 8408 (class 1259 OID 18677) +-- Name: mdl_exteserv_nam_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_exteserv_nam_uix ON public.mdl_external_services USING btree (name); + + +-- +-- TOC entry 8412 (class 1259 OID 18703) +-- Name: mdl_exteservfunc_ext_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_exteservfunc_ext_ix ON public.mdl_external_services_functions USING btree (externalserviceid); + + +-- +-- TOC entry 8415 (class 1259 OID 18712) +-- Name: mdl_exteservuser_ext_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_exteservuser_ext_ix ON public.mdl_external_services_users USING btree (externalserviceid); + + +-- +-- TOC entry 8418 (class 1259 OID 18713) +-- Name: mdl_exteservuser_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_exteservuser_use_ix ON public.mdl_external_services_users USING btree (userid); + + +-- +-- TOC entry 8419 (class 1259 OID 18729) +-- Name: mdl_extetoke_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_extetoke_con_ix ON public.mdl_external_tokens USING btree (contextid); + + +-- +-- TOC entry 8420 (class 1259 OID 18730) +-- Name: mdl_extetoke_cre_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_extetoke_cre_ix ON public.mdl_external_tokens USING btree (creatorid); + + +-- +-- TOC entry 8421 (class 1259 OID 18728) +-- Name: mdl_extetoke_ext_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_extetoke_ext_ix ON public.mdl_external_tokens USING btree (externalserviceid); + + +-- +-- TOC entry 8424 (class 1259 OID 18727) +-- Name: mdl_extetoke_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_extetoke_use_ix ON public.mdl_external_tokens USING btree (userid); + + +-- +-- TOC entry 8694 (class 1259 OID 19710) +-- Name: mdl_favo_comiteiteconuse_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_favo_comiteiteconuse_uix ON public.mdl_favourite USING btree (component, itemtype, itemid, contextid, userid); + + +-- +-- TOC entry 8695 (class 1259 OID 19711) +-- Name: mdl_favo_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_favo_con_ix ON public.mdl_favourite USING btree (contextid); + + +-- +-- TOC entry 8698 (class 1259 OID 19712) +-- Name: mdl_favo_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_favo_use_ix ON public.mdl_favourite USING btree (userid); + + +-- +-- TOC entry 8916 (class 1259 OID 20730) +-- Name: mdl_feed_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_feed_cou_ix ON public.mdl_feedback USING btree (course); + + +-- +-- TOC entry 8930 (class 1259 OID 20799) +-- Name: mdl_feedcomp_fee2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_feedcomp_fee2_ix ON public.mdl_feedback_completedtmp USING btree (feedback); + + +-- +-- TOC entry 8926 (class 1259 OID 20782) +-- Name: mdl_feedcomp_fee_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_feedcomp_fee_ix ON public.mdl_feedback_completed USING btree (feedback); + + +-- +-- TOC entry 8933 (class 1259 OID 20798) +-- Name: mdl_feedcomp_use2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_feedcomp_use2_ix ON public.mdl_feedback_completedtmp USING btree (userid); + + +-- +-- TOC entry 8929 (class 1259 OID 20781) +-- Name: mdl_feedcomp_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_feedcomp_use_ix ON public.mdl_feedback_completed USING btree (userid); + + +-- +-- TOC entry 8922 (class 1259 OID 20765) +-- Name: mdl_feeditem_fee_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_feeditem_fee_ix ON public.mdl_feedback_item USING btree (feedback); + + +-- +-- TOC entry 8925 (class 1259 OID 20766) +-- Name: mdl_feeditem_tem_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_feeditem_tem_ix ON public.mdl_feedback_item USING btree (template); + + +-- +-- TOC entry 8944 (class 1259 OID 20846) +-- Name: mdl_feedsitemap_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_feedsitemap_cou_ix ON public.mdl_feedback_sitecourse_map USING btree (courseid); + + +-- +-- TOC entry 8945 (class 1259 OID 20847) +-- Name: mdl_feedsitemap_fee_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_feedsitemap_fee_ix ON public.mdl_feedback_sitecourse_map USING btree (feedbackid); + + +-- +-- TOC entry 8919 (class 1259 OID 20742) +-- Name: mdl_feedtemp_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_feedtemp_cou_ix ON public.mdl_feedback_template USING btree (course); + + +-- +-- TOC entry 8939 (class 1259 OID 20834) +-- Name: mdl_feedvalu_comitecou2_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_feedvalu_comitecou2_uix ON public.mdl_feedback_valuetmp USING btree (completed, item, course_id); + + +-- +-- TOC entry 8934 (class 1259 OID 20816) +-- Name: mdl_feedvalu_comitecou_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_feedvalu_comitecou_uix ON public.mdl_feedback_value USING btree (completed, item, course_id); + + +-- +-- TOC entry 8940 (class 1259 OID 20833) +-- Name: mdl_feedvalu_cou2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_feedvalu_cou2_ix ON public.mdl_feedback_valuetmp USING btree (course_id); + + +-- +-- TOC entry 8935 (class 1259 OID 20815) +-- Name: mdl_feedvalu_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_feedvalu_cou_ix ON public.mdl_feedback_value USING btree (course_id); + + +-- +-- TOC entry 8943 (class 1259 OID 20835) +-- Name: mdl_feedvalu_ite2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_feedvalu_ite2_ix ON public.mdl_feedback_valuetmp USING btree (item); + + +-- +-- TOC entry 8938 (class 1259 OID 20817) +-- Name: mdl_feedvalu_ite_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_feedvalu_ite_ix ON public.mdl_feedback_value USING btree (item); + + +-- +-- TOC entry 8363 (class 1259 OID 18516) +-- Name: mdl_file_comfilconite_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_file_comfilconite_ix ON public.mdl_files USING btree (component, filearea, contextid, itemid); + + +-- +-- TOC entry 8364 (class 1259 OID 18520) +-- Name: mdl_file_con2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_file_con2_ix ON public.mdl_files USING btree (contextid); + + +-- +-- TOC entry 8365 (class 1259 OID 18517) +-- Name: mdl_file_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_file_con_ix ON public.mdl_files USING btree (contenthash); + + +-- +-- TOC entry 8368 (class 1259 OID 18519) +-- Name: mdl_file_lic_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_file_lic_ix ON public.mdl_files USING btree (license); + + +-- +-- TOC entry 8369 (class 1259 OID 18518) +-- Name: mdl_file_pat_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_file_pat_uix ON public.mdl_files USING btree (pathnamehash); + + +-- +-- TOC entry 8370 (class 1259 OID 18522) +-- Name: mdl_file_ref_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_file_ref_ix ON public.mdl_files USING btree (referencefileid); + + +-- +-- TOC entry 8371 (class 1259 OID 18521) +-- Name: mdl_file_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_file_use_ix ON public.mdl_files USING btree (userid); + + +-- +-- TOC entry 8376 (class 1259 OID 18551) +-- Name: mdl_fileconv_des_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_fileconv_des_ix ON public.mdl_file_conversion USING btree (destfileid); + + +-- +-- TOC entry 8379 (class 1259 OID 18550) +-- Name: mdl_fileconv_sou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_fileconv_sou_ix ON public.mdl_file_conversion USING btree (sourcefileid); + + +-- +-- TOC entry 8374 (class 1259 OID 18535) +-- Name: mdl_filerefe_refrep_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_filerefe_refrep_uix ON public.mdl_files_reference USING btree (referencehash, repositoryid); + + +-- +-- TOC entry 8375 (class 1259 OID 18536) +-- Name: mdl_filerefe_rep_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_filerefe_rep_ix ON public.mdl_files_reference USING btree (repositoryid); + + +-- +-- TOC entry 7868 (class 1259 OID 16714) +-- Name: mdl_filtacti_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_filtacti_con_ix ON public.mdl_filter_active USING btree (contextid); + + +-- +-- TOC entry 7869 (class 1259 OID 16713) +-- Name: mdl_filtacti_confil_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_filtacti_confil_uix ON public.mdl_filter_active USING btree (contextid, filter); + + +-- +-- TOC entry 7872 (class 1259 OID 16729) +-- Name: mdl_filtconf_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_filtconf_con_ix ON public.mdl_filter_config USING btree (contextid); + + +-- +-- TOC entry 7873 (class 1259 OID 16728) +-- Name: mdl_filtconf_confilnam_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_filtconf_confilnam_uix ON public.mdl_filter_config USING btree (contextid, filter, name); + + +-- +-- TOC entry 8948 (class 1259 OID 20867) +-- Name: mdl_fold_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_fold_cou_ix ON public.mdl_folder USING btree (course); + + +-- +-- TOC entry 8951 (class 1259 OID 20906) +-- Name: mdl_foru_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_foru_cou_ix ON public.mdl_forum USING btree (course); + + +-- +-- TOC entry 8977 (class 1259 OID 21000) +-- Name: mdl_forudige_for_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_forudige_for_ix ON public.mdl_forum_digests USING btree (forum); + + +-- +-- TOC entry 8978 (class 1259 OID 21001) +-- Name: mdl_forudige_forusemai_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_forudige_forusemai_uix ON public.mdl_forum_digests USING btree (forum, userid, maildigest); + + +-- +-- TOC entry 8981 (class 1259 OID 20999) +-- Name: mdl_forudige_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_forudige_use_ix ON public.mdl_forum_digests USING btree (userid); + + +-- +-- TOC entry 8954 (class 1259 OID 20929) +-- Name: mdl_forudisc_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_forudisc_cou_ix ON public.mdl_forum_discussions USING btree (course); + + +-- +-- TOC entry 8955 (class 1259 OID 20930) +-- Name: mdl_forudisc_for_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_forudisc_for_ix ON public.mdl_forum_discussions USING btree (forum); + + +-- +-- TOC entry 8958 (class 1259 OID 20928) +-- Name: mdl_forudisc_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_forudisc_use_ix ON public.mdl_forum_discussions USING btree (userid); + + +-- +-- TOC entry 8990 (class 1259 OID 21041) +-- Name: mdl_forudiscsubs_dis_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_forudiscsubs_dis_ix ON public.mdl_forum_discussion_subs USING btree (discussion); + + +-- +-- TOC entry 8991 (class 1259 OID 21039) +-- Name: mdl_forudiscsubs_for_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_forudiscsubs_for_ix ON public.mdl_forum_discussion_subs USING btree (forum); + + +-- +-- TOC entry 8994 (class 1259 OID 21040) +-- Name: mdl_forudiscsubs_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_forudiscsubs_use_ix ON public.mdl_forum_discussion_subs USING btree (userid); + + +-- +-- TOC entry 8995 (class 1259 OID 21042) +-- Name: mdl_forudiscsubs_usedis_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_forudiscsubs_usedis_uix ON public.mdl_forum_discussion_subs USING btree (userid, discussion); + + +-- +-- TOC entry 8996 (class 1259 OID 21053) +-- Name: mdl_forugrad_for_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_forugrad_for_ix ON public.mdl_forum_grades USING btree (forum); + + +-- +-- TOC entry 8997 (class 1259 OID 21052) +-- Name: mdl_forugrad_foriteuse_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_forugrad_foriteuse_uix ON public.mdl_forum_grades USING btree (forum, itemnumber, userid); + + +-- +-- TOC entry 9000 (class 1259 OID 21051) +-- Name: mdl_forugrad_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_forugrad_use_ix ON public.mdl_forum_grades USING btree (userid); + + +-- +-- TOC entry 8959 (class 1259 OID 20957) +-- Name: mdl_forupost_cre_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_forupost_cre_ix ON public.mdl_forum_posts USING btree (created); + + +-- +-- TOC entry 8960 (class 1259 OID 20960) +-- Name: mdl_forupost_dis_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_forupost_dis_ix ON public.mdl_forum_posts USING btree (discussion); + + +-- +-- TOC entry 8963 (class 1259 OID 20958) +-- Name: mdl_forupost_mai_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_forupost_mai_ix ON public.mdl_forum_posts USING btree (mailed); + + +-- +-- TOC entry 8964 (class 1259 OID 20961) +-- Name: mdl_forupost_par_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_forupost_par_ix ON public.mdl_forum_posts USING btree (parent); + + +-- +-- TOC entry 8965 (class 1259 OID 20959) +-- Name: mdl_forupost_pri_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_forupost_pri_ix ON public.mdl_forum_posts USING btree (privatereplyto); + + +-- +-- TOC entry 8966 (class 1259 OID 20956) +-- Name: mdl_forupost_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_forupost_use_ix ON public.mdl_forum_posts USING btree (userid); + + +-- +-- TOC entry 8967 (class 1259 OID 20975) +-- Name: mdl_foruqueu_dis_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_foruqueu_dis_ix ON public.mdl_forum_queue USING btree (discussionid); + + +-- +-- TOC entry 8970 (class 1259 OID 20976) +-- Name: mdl_foruqueu_pos_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_foruqueu_pos_ix ON public.mdl_forum_queue USING btree (postid); + + +-- +-- TOC entry 8971 (class 1259 OID 20974) +-- Name: mdl_foruqueu_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_foruqueu_use_ix ON public.mdl_forum_queue USING btree (userid); + + +-- +-- TOC entry 8984 (class 1259 OID 21018) +-- Name: mdl_foruread_posuse_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_foruread_posuse_ix ON public.mdl_forum_read USING btree (postid, userid); + + +-- +-- TOC entry 8985 (class 1259 OID 21017) +-- Name: mdl_foruread_usedis_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_foruread_usedis_ix ON public.mdl_forum_read USING btree (userid, discussionid); + + +-- +-- TOC entry 8986 (class 1259 OID 21016) +-- Name: mdl_foruread_usefor_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_foruread_usefor_ix ON public.mdl_forum_read USING btree (userid, forumid); + + +-- +-- TOC entry 8972 (class 1259 OID 20988) +-- Name: mdl_forusubs_for_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_forusubs_for_ix ON public.mdl_forum_subscriptions USING btree (forum); + + +-- +-- TOC entry 8975 (class 1259 OID 20987) +-- Name: mdl_forusubs_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_forusubs_use_ix ON public.mdl_forum_subscriptions USING btree (userid); + + +-- +-- TOC entry 8976 (class 1259 OID 20989) +-- Name: mdl_forusubs_usefor_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_forusubs_usefor_uix ON public.mdl_forum_subscriptions USING btree (userid, forum); + + +-- +-- TOC entry 8989 (class 1259 OID 21029) +-- Name: mdl_forutracpref_usefor_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_forutracpref_usefor_ix ON public.mdl_forum_track_prefs USING btree (userid, forumid); + + +-- +-- TOC entry 9001 (class 1259 OID 21094) +-- Name: mdl_glos_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_glos_cou_ix ON public.mdl_glossary USING btree (course); + + +-- +-- TOC entry 9009 (class 1259 OID 21133) +-- Name: mdl_glosalia_ent_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_glosalia_ent_ix ON public.mdl_glossary_alias USING btree (entryid); + + +-- +-- TOC entry 9012 (class 1259 OID 21145) +-- Name: mdl_gloscate_glo_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gloscate_glo_ix ON public.mdl_glossary_categories USING btree (glossaryid); + + +-- +-- TOC entry 9004 (class 1259 OID 21121) +-- Name: mdl_glosentr_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_glosentr_con_ix ON public.mdl_glossary_entries USING btree (concept); + + +-- +-- TOC entry 9005 (class 1259 OID 21122) +-- Name: mdl_glosentr_glo_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_glosentr_glo_ix ON public.mdl_glossary_entries USING btree (glossaryid); + + +-- +-- TOC entry 9008 (class 1259 OID 21120) +-- Name: mdl_glosentr_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_glosentr_use_ix ON public.mdl_glossary_entries USING btree (userid); + + +-- +-- TOC entry 9015 (class 1259 OID 21156) +-- Name: mdl_glosentrcate_cat_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_glosentrcate_cat_ix ON public.mdl_glossary_entries_categories USING btree (categoryid); + + +-- +-- TOC entry 9016 (class 1259 OID 21157) +-- Name: mdl_glosentrcate_ent_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_glosentrcate_ent_ix ON public.mdl_glossary_entries_categories USING btree (entryid); + + +-- +-- TOC entry 8458 (class 1259 OID 18874) +-- Name: mdl_gradarea_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradarea_con_ix ON public.mdl_grading_areas USING btree (contextid); + + +-- +-- TOC entry 8459 (class 1259 OID 18873) +-- Name: mdl_gradarea_concomare_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_gradarea_concomare_uix ON public.mdl_grading_areas USING btree (contextid, component, areaname); + + +-- +-- TOC entry 8212 (class 1259 OID 17966) +-- Name: mdl_gradcate_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradcate_cou_ix ON public.mdl_grade_categories USING btree (courseid); + + +-- +-- TOC entry 8215 (class 1259 OID 17967) +-- Name: mdl_gradcate_par_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradcate_par_ix ON public.mdl_grade_categories USING btree (parent); + + +-- +-- TOC entry 8242 (class 1259 OID 18072) +-- Name: mdl_gradcatehist_act_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradcatehist_act_ix ON public.mdl_grade_categories_history USING btree (action); + + +-- +-- TOC entry 8243 (class 1259 OID 18075) +-- Name: mdl_gradcatehist_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradcatehist_cou_ix ON public.mdl_grade_categories_history USING btree (courseid); + + +-- +-- TOC entry 8246 (class 1259 OID 18077) +-- Name: mdl_gradcatehist_log_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradcatehist_log_ix ON public.mdl_grade_categories_history USING btree (loggeduser); + + +-- +-- TOC entry 8247 (class 1259 OID 18074) +-- Name: mdl_gradcatehist_old_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradcatehist_old_ix ON public.mdl_grade_categories_history USING btree (oldid); + + +-- +-- TOC entry 8248 (class 1259 OID 18076) +-- Name: mdl_gradcatehist_par_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradcatehist_par_ix ON public.mdl_grade_categories_history USING btree (parent); + + +-- +-- TOC entry 8249 (class 1259 OID 18073) +-- Name: mdl_gradcatehist_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradcatehist_tim_ix ON public.mdl_grade_categories_history USING btree (timemodified); + + +-- +-- TOC entry 8462 (class 1259 OID 18890) +-- Name: mdl_graddefi_are_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_graddefi_are_ix ON public.mdl_grading_definitions USING btree (areaid); + + +-- +-- TOC entry 8463 (class 1259 OID 18892) +-- Name: mdl_graddefi_aremet_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_graddefi_aremet_uix ON public.mdl_grading_definitions USING btree (areaid, method); + + +-- +-- TOC entry 8466 (class 1259 OID 18893) +-- Name: mdl_graddefi_use2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_graddefi_use2_ix ON public.mdl_grading_definitions USING btree (usercreated); + + +-- +-- TOC entry 8467 (class 1259 OID 18891) +-- Name: mdl_graddefi_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_graddefi_use_ix ON public.mdl_grading_definitions USING btree (usermodified); + + +-- +-- TOC entry 8228 (class 1259 OID 18026) +-- Name: mdl_gradgrad_ite_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradgrad_ite_ix ON public.mdl_grade_grades USING btree (itemid); + + +-- +-- TOC entry 8229 (class 1259 OID 18025) +-- Name: mdl_gradgrad_locloc_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradgrad_locloc_ix ON public.mdl_grade_grades USING btree (locked, locktime); + + +-- +-- TOC entry 8230 (class 1259 OID 18028) +-- Name: mdl_gradgrad_raw_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradgrad_raw_ix ON public.mdl_grade_grades USING btree (rawscaleid); + + +-- +-- TOC entry 8231 (class 1259 OID 18029) +-- Name: mdl_gradgrad_use2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradgrad_use2_ix ON public.mdl_grade_grades USING btree (usermodified); + + +-- +-- TOC entry 8232 (class 1259 OID 18027) +-- Name: mdl_gradgrad_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradgrad_use_ix ON public.mdl_grade_grades USING btree (userid); + + +-- +-- TOC entry 8233 (class 1259 OID 18030) +-- Name: mdl_gradgrad_useite_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_gradgrad_useite_uix ON public.mdl_grade_grades USING btree (userid, itemid); + + +-- +-- TOC entry 8260 (class 1259 OID 18136) +-- Name: mdl_gradgradhist_act_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradgradhist_act_ix ON public.mdl_grade_grades_history USING btree (action); + + +-- +-- TOC entry 8263 (class 1259 OID 18140) +-- Name: mdl_gradgradhist_ite_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradgradhist_ite_ix ON public.mdl_grade_grades_history USING btree (itemid); + + +-- +-- TOC entry 8264 (class 1259 OID 18144) +-- Name: mdl_gradgradhist_log_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradgradhist_log_ix ON public.mdl_grade_grades_history USING btree (loggeduser); + + +-- +-- TOC entry 8265 (class 1259 OID 18139) +-- Name: mdl_gradgradhist_old_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradgradhist_old_ix ON public.mdl_grade_grades_history USING btree (oldid); + + +-- +-- TOC entry 8266 (class 1259 OID 18142) +-- Name: mdl_gradgradhist_raw_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradgradhist_raw_ix ON public.mdl_grade_grades_history USING btree (rawscaleid); + + +-- +-- TOC entry 8267 (class 1259 OID 18137) +-- Name: mdl_gradgradhist_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradgradhist_tim_ix ON public.mdl_grade_grades_history USING btree (timemodified); + + +-- +-- TOC entry 8268 (class 1259 OID 18143) +-- Name: mdl_gradgradhist_use2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradgradhist_use2_ix ON public.mdl_grade_grades_history USING btree (usermodified); + + +-- +-- TOC entry 8269 (class 1259 OID 18141) +-- Name: mdl_gradgradhist_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradgradhist_use_ix ON public.mdl_grade_grades_history USING btree (userid); + + +-- +-- TOC entry 8270 (class 1259 OID 18138) +-- Name: mdl_gradgradhist_useitetim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradgradhist_useitetim_ix ON public.mdl_grade_grades_history USING btree (userid, itemid, timemodified); + + +-- +-- TOC entry 9352 (class 1259 OID 22645) +-- Name: mdl_gradguidcomm_def_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradguidcomm_def_ix ON public.mdl_gradingform_guide_comments USING btree (definitionid); + + +-- +-- TOC entry 9344 (class 1259 OID 22619) +-- Name: mdl_gradguidcrit_def_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradguidcrit_def_ix ON public.mdl_gradingform_guide_criteria USING btree (definitionid); + + +-- +-- TOC entry 9347 (class 1259 OID 22632) +-- Name: mdl_gradguidfill_cri_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradguidfill_cri_ix ON public.mdl_gradingform_guide_fillings USING btree (criterionid); + + +-- +-- TOC entry 9350 (class 1259 OID 22631) +-- Name: mdl_gradguidfill_ins_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradguidfill_ins_ix ON public.mdl_gradingform_guide_fillings USING btree (instanceid); + + +-- +-- TOC entry 9351 (class 1259 OID 22633) +-- Name: mdl_gradguidfill_inscri_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_gradguidfill_inscri_uix ON public.mdl_gradingform_guide_fillings USING btree (instanceid, criterionid); + + +-- +-- TOC entry 8273 (class 1259 OID 18154) +-- Name: mdl_gradimponewi_imp_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradimponewi_imp_ix ON public.mdl_grade_import_newitem USING btree (importer); + + +-- +-- TOC entry 8276 (class 1259 OID 18169) +-- Name: mdl_gradimpovalu_imp_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradimpovalu_imp_ix ON public.mdl_grade_import_values USING btree (importer); + + +-- +-- TOC entry 8277 (class 1259 OID 18167) +-- Name: mdl_gradimpovalu_ite_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradimpovalu_ite_ix ON public.mdl_grade_import_values USING btree (itemid); + + +-- +-- TOC entry 8278 (class 1259 OID 18168) +-- Name: mdl_gradimpovalu_new_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradimpovalu_new_ix ON public.mdl_grade_import_values USING btree (newgradeitem); + + +-- +-- TOC entry 8468 (class 1259 OID 18906) +-- Name: mdl_gradinst_def_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradinst_def_ix ON public.mdl_grading_instances USING btree (definitionid); + + +-- +-- TOC entry 8471 (class 1259 OID 18907) +-- Name: mdl_gradinst_rat_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradinst_rat_ix ON public.mdl_grading_instances USING btree (raterid); + + +-- +-- TOC entry 8216 (class 1259 OID 18000) +-- Name: mdl_graditem_cat_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_graditem_cat_ix ON public.mdl_grade_items USING btree (categoryid); + + +-- +-- TOC entry 8217 (class 1259 OID 17999) +-- Name: mdl_graditem_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_graditem_cou_ix ON public.mdl_grade_items USING btree (courseid); + + +-- +-- TOC entry 8218 (class 1259 OID 17997) +-- Name: mdl_graditem_gra_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_graditem_gra_ix ON public.mdl_grade_items USING btree (gradetype); + + +-- +-- TOC entry 8221 (class 1259 OID 17998) +-- Name: mdl_graditem_idncou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_graditem_idncou_ix ON public.mdl_grade_items USING btree (idnumber, courseid); + + +-- +-- TOC entry 8222 (class 1259 OID 17996) +-- Name: mdl_graditem_itenee_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_graditem_itenee_ix ON public.mdl_grade_items USING btree (itemtype, needsupdate); + + +-- +-- TOC entry 8223 (class 1259 OID 17995) +-- Name: mdl_graditem_locloc_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_graditem_locloc_ix ON public.mdl_grade_items USING btree (locked, locktime); + + +-- +-- TOC entry 8224 (class 1259 OID 18002) +-- Name: mdl_graditem_out_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_graditem_out_ix ON public.mdl_grade_items USING btree (outcomeid); + + +-- +-- TOC entry 8225 (class 1259 OID 18001) +-- Name: mdl_graditem_sca_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_graditem_sca_ix ON public.mdl_grade_items USING btree (scaleid); + + +-- +-- TOC entry 8250 (class 1259 OID 18106) +-- Name: mdl_graditemhist_act_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_graditemhist_act_ix ON public.mdl_grade_items_history USING btree (action); + + +-- +-- TOC entry 8251 (class 1259 OID 18110) +-- Name: mdl_graditemhist_cat_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_graditemhist_cat_ix ON public.mdl_grade_items_history USING btree (categoryid); + + +-- +-- TOC entry 8252 (class 1259 OID 18109) +-- Name: mdl_graditemhist_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_graditemhist_cou_ix ON public.mdl_grade_items_history USING btree (courseid); + + +-- +-- TOC entry 8255 (class 1259 OID 18113) +-- Name: mdl_graditemhist_log_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_graditemhist_log_ix ON public.mdl_grade_items_history USING btree (loggeduser); + + +-- +-- TOC entry 8256 (class 1259 OID 18108) +-- Name: mdl_graditemhist_old_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_graditemhist_old_ix ON public.mdl_grade_items_history USING btree (oldid); + + +-- +-- TOC entry 8257 (class 1259 OID 18112) +-- Name: mdl_graditemhist_out_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_graditemhist_out_ix ON public.mdl_grade_items_history USING btree (outcomeid); + + +-- +-- TOC entry 8258 (class 1259 OID 18111) +-- Name: mdl_graditemhist_sca_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_graditemhist_sca_ix ON public.mdl_grade_items_history USING btree (scaleid); + + +-- +-- TOC entry 8259 (class 1259 OID 18107) +-- Name: mdl_graditemhist_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_graditemhist_tim_ix ON public.mdl_grade_items_history USING btree (timemodified); + + +-- +-- TOC entry 8329 (class 1259 OID 18369) +-- Name: mdl_gradlett_conlowlet_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_gradlett_conlowlet_uix ON public.mdl_grade_letters USING btree (contextid, lowerboundary, letter); + + +-- +-- TOC entry 8201 (class 1259 OID 17932) +-- Name: mdl_gradoutc_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradoutc_cou_ix ON public.mdl_grade_outcomes USING btree (courseid); + + +-- +-- TOC entry 8202 (class 1259 OID 17935) +-- Name: mdl_gradoutc_cousho_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_gradoutc_cousho_uix ON public.mdl_grade_outcomes USING btree (courseid, shortname); + + +-- +-- TOC entry 8205 (class 1259 OID 17933) +-- Name: mdl_gradoutc_sca_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradoutc_sca_ix ON public.mdl_grade_outcomes USING btree (scaleid); + + +-- +-- TOC entry 8206 (class 1259 OID 17934) +-- Name: mdl_gradoutc_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradoutc_use_ix ON public.mdl_grade_outcomes USING btree (usermodified); + + +-- +-- TOC entry 8207 (class 1259 OID 17944) +-- Name: mdl_gradoutccour_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradoutccour_cou_ix ON public.mdl_grade_outcomes_courses USING btree (courseid); + + +-- +-- TOC entry 8208 (class 1259 OID 17946) +-- Name: mdl_gradoutccour_couout_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_gradoutccour_couout_uix ON public.mdl_grade_outcomes_courses USING btree (courseid, outcomeid); + + +-- +-- TOC entry 8211 (class 1259 OID 17945) +-- Name: mdl_gradoutccour_out_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradoutccour_out_ix ON public.mdl_grade_outcomes_courses USING btree (outcomeid); + + +-- +-- TOC entry 8234 (class 1259 OID 18045) +-- Name: mdl_gradoutchist_act_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradoutchist_act_ix ON public.mdl_grade_outcomes_history USING btree (action); + + +-- +-- TOC entry 8235 (class 1259 OID 18048) +-- Name: mdl_gradoutchist_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradoutchist_cou_ix ON public.mdl_grade_outcomes_history USING btree (courseid); + + +-- +-- TOC entry 8238 (class 1259 OID 18050) +-- Name: mdl_gradoutchist_log_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradoutchist_log_ix ON public.mdl_grade_outcomes_history USING btree (loggeduser); + + +-- +-- TOC entry 8239 (class 1259 OID 18047) +-- Name: mdl_gradoutchist_old_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradoutchist_old_ix ON public.mdl_grade_outcomes_history USING btree (oldid); + + +-- +-- TOC entry 8240 (class 1259 OID 18049) +-- Name: mdl_gradoutchist_sca_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradoutchist_sca_ix ON public.mdl_grade_outcomes_history USING btree (scaleid); + + +-- +-- TOC entry 8241 (class 1259 OID 18046) +-- Name: mdl_gradoutchist_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradoutchist_tim_ix ON public.mdl_grade_outcomes_history USING btree (timemodified); + + +-- +-- TOC entry 9355 (class 1259 OID 22657) +-- Name: mdl_gradrubrcrit_def_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradrubrcrit_def_ix ON public.mdl_gradingform_rubric_criteria USING btree (definitionid); + + +-- +-- TOC entry 9361 (class 1259 OID 22683) +-- Name: mdl_gradrubrfill_cri_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradrubrfill_cri_ix ON public.mdl_gradingform_rubric_fillings USING btree (criterionid); + + +-- +-- TOC entry 9364 (class 1259 OID 22682) +-- Name: mdl_gradrubrfill_ins_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradrubrfill_ins_ix ON public.mdl_gradingform_rubric_fillings USING btree (instanceid); + + +-- +-- TOC entry 9365 (class 1259 OID 22684) +-- Name: mdl_gradrubrfill_inscri_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_gradrubrfill_inscri_uix ON public.mdl_gradingform_rubric_fillings USING btree (instanceid, criterionid); + + +-- +-- TOC entry 9366 (class 1259 OID 22681) +-- Name: mdl_gradrubrfill_lev_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradrubrfill_lev_ix ON public.mdl_gradingform_rubric_fillings USING btree (levelid); + + +-- +-- TOC entry 9358 (class 1259 OID 22669) +-- Name: mdl_gradrubrleve_cri_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradrubrleve_cri_ix ON public.mdl_gradingform_rubric_levels USING btree (criterionid); + + +-- +-- TOC entry 8336 (class 1259 OID 18399) +-- Name: mdl_gradsett_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_gradsett_cou_ix ON public.mdl_grade_settings USING btree (courseid); + + +-- +-- TOC entry 8337 (class 1259 OID 18398) +-- Name: mdl_gradsett_counam_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_gradsett_counam_uix ON public.mdl_grade_settings USING btree (courseid, name); + + +-- +-- TOC entry 8304 (class 1259 OID 18286) +-- Name: mdl_grou_cou2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_grou_cou2_ix ON public.mdl_groupings USING btree (courseid); + + +-- +-- TOC entry 8300 (class 1259 OID 18267) +-- Name: mdl_grou_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_grou_cou_ix ON public.mdl_groups USING btree (courseid); + + +-- +-- TOC entry 8307 (class 1259 OID 18285) +-- Name: mdl_grou_idn2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_grou_idn2_ix ON public.mdl_groupings USING btree (idnumber); + + +-- +-- TOC entry 8303 (class 1259 OID 18266) +-- Name: mdl_grou_idn_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_grou_idn_ix ON public.mdl_groups USING btree (idnumber); + + +-- +-- TOC entry 8313 (class 1259 OID 18315) +-- Name: mdl_grougrou_gro2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_grougrou_gro2_ix ON public.mdl_groupings_groups USING btree (groupid); + + +-- +-- TOC entry 8314 (class 1259 OID 18314) +-- Name: mdl_grougrou_gro_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_grougrou_gro_ix ON public.mdl_groupings_groups USING btree (groupingid); + + +-- +-- TOC entry 8308 (class 1259 OID 18300) +-- Name: mdl_groumemb_gro_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_groumemb_gro_ix ON public.mdl_groups_members USING btree (groupid); + + +-- +-- TOC entry 8311 (class 1259 OID 18301) +-- Name: mdl_groumemb_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_groumemb_use_ix ON public.mdl_groups_members USING btree (userid); + + +-- +-- TOC entry 8312 (class 1259 OID 18302) +-- Name: mdl_groumemb_usegro_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_groumemb_usegro_uix ON public.mdl_groups_members USING btree (userid, groupid); + + +-- +-- TOC entry 8724 (class 1259 OID 19805) +-- Name: mdl_h5p_mai_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_h5p_mai_ix ON public.mdl_h5p USING btree (mainlibraryid); + + +-- +-- TOC entry 9021 (class 1259 OID 21192) +-- Name: mdl_h5pa_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_h5pa_cou_ix ON public.mdl_h5pactivity USING btree (course); + + +-- +-- TOC entry 9024 (class 1259 OID 21209) +-- Name: mdl_h5paatte_h5p_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_h5paatte_h5p_ix ON public.mdl_h5pactivity_attempts USING btree (h5pactivityid); + + +-- +-- TOC entry 9025 (class 1259 OID 21207) +-- Name: mdl_h5paatte_h5ptim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_h5paatte_h5ptim_ix ON public.mdl_h5pactivity_attempts USING btree (h5pactivityid, timecreated); + + +-- +-- TOC entry 9026 (class 1259 OID 21208) +-- Name: mdl_h5paatte_h5puse_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_h5paatte_h5puse_ix ON public.mdl_h5pactivity_attempts USING btree (h5pactivityid, userid); + + +-- +-- TOC entry 9027 (class 1259 OID 21210) +-- Name: mdl_h5paatte_h5puseatt_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_h5paatte_h5puseatt_uix ON public.mdl_h5pactivity_attempts USING btree (h5pactivityid, userid, attempt); + + +-- +-- TOC entry 9030 (class 1259 OID 21206) +-- Name: mdl_h5paatte_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_h5paatte_tim_ix ON public.mdl_h5pactivity_attempts USING btree (timecreated); + + +-- +-- TOC entry 9031 (class 1259 OID 21226) +-- Name: mdl_h5paatteresu_att_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_h5paatteresu_att_ix ON public.mdl_h5pactivity_attempts_results USING btree (attemptid); + + +-- +-- TOC entry 9032 (class 1259 OID 21225) +-- Name: mdl_h5paatteresu_atttim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_h5paatteresu_atttim_ix ON public.mdl_h5pactivity_attempts_results USING btree (attemptid, timecreated); + + +-- +-- TOC entry 8725 (class 1259 OID 19815) +-- Name: mdl_h5pcontlibr_h5p_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_h5pcontlibr_h5p_ix ON public.mdl_h5p_contents_libraries USING btree (h5pid); + + +-- +-- TOC entry 8728 (class 1259 OID 19816) +-- Name: mdl_h5pcontlibr_lib_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_h5pcontlibr_lib_ix ON public.mdl_h5p_contents_libraries USING btree (libraryid); + + +-- +-- TOC entry 8717 (class 1259 OID 19778) +-- Name: mdl_h5plibr_macmajminpatrun_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_h5plibr_macmajminpatrun_ix ON public.mdl_h5p_libraries USING btree (machinename, majorversion, minorversion, patchversion, runnable); + + +-- +-- TOC entry 8731 (class 1259 OID 19826) +-- Name: mdl_h5plibrcach_lib_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_h5plibrcach_lib_ix ON public.mdl_h5p_libraries_cachedassets USING btree (libraryid); + + +-- +-- TOC entry 8720 (class 1259 OID 19788) +-- Name: mdl_h5plibrdepe_lib_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_h5plibrdepe_lib_ix ON public.mdl_h5p_library_dependencies USING btree (libraryid); + + +-- +-- TOC entry 8721 (class 1259 OID 19789) +-- Name: mdl_h5plibrdepe_req_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_h5plibrdepe_req_ix ON public.mdl_h5p_library_dependencies USING btree (requiredlibraryid); + + +-- +-- TOC entry 9035 (class 1259 OID 21244) +-- Name: mdl_imsc_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_imsc_cou_ix ON public.mdl_imscp USING btree (course); + + +-- +-- TOC entry 9038 (class 1259 OID 21260) +-- Name: mdl_labe_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_labe_cou_ix ON public.mdl_label USING btree (course); + + +-- +-- TOC entry 9041 (class 1259 OID 21311) +-- Name: mdl_less_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_less_cou_ix ON public.mdl_lesson USING btree (course); + + +-- +-- TOC entry 9049 (class 1259 OID 21356) +-- Name: mdl_lessansw_les_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_lessansw_les_ix ON public.mdl_lesson_answers USING btree (lessonid); + + +-- +-- TOC entry 9050 (class 1259 OID 21357) +-- Name: mdl_lessansw_pag_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_lessansw_pag_ix ON public.mdl_lesson_answers USING btree (pageid); + + +-- +-- TOC entry 9051 (class 1259 OID 21379) +-- Name: mdl_lessatte_ans_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_lessatte_ans_ix ON public.mdl_lesson_attempts USING btree (answerid); + + +-- +-- TOC entry 9054 (class 1259 OID 21377) +-- Name: mdl_lessatte_les_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_lessatte_les_ix ON public.mdl_lesson_attempts USING btree (lessonid); + + +-- +-- TOC entry 9055 (class 1259 OID 21378) +-- Name: mdl_lessatte_pag_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_lessatte_pag_ix ON public.mdl_lesson_attempts USING btree (pageid); + + +-- +-- TOC entry 9056 (class 1259 OID 21376) +-- Name: mdl_lessatte_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_lessatte_use_ix ON public.mdl_lesson_attempts USING btree (userid); + + +-- +-- TOC entry 9067 (class 1259 OID 21427) +-- Name: mdl_lessbran_les_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_lessbran_les_ix ON public.mdl_lesson_branch USING btree (lessonid); + + +-- +-- TOC entry 9068 (class 1259 OID 21428) +-- Name: mdl_lessbran_pag_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_lessbran_pag_ix ON public.mdl_lesson_branch USING btree (pageid); + + +-- +-- TOC entry 9069 (class 1259 OID 21426) +-- Name: mdl_lessbran_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_lessbran_use_ix ON public.mdl_lesson_branch USING btree (userid); + + +-- +-- TOC entry 9059 (class 1259 OID 21394) +-- Name: mdl_lessgrad_les_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_lessgrad_les_ix ON public.mdl_lesson_grades USING btree (lessonid); + + +-- +-- TOC entry 9060 (class 1259 OID 21393) +-- Name: mdl_lessgrad_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_lessgrad_use_ix ON public.mdl_lesson_grades USING btree (userid); + + +-- +-- TOC entry 9070 (class 1259 OID 21439) +-- Name: mdl_lessover_gro_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_lessover_gro_ix ON public.mdl_lesson_overrides USING btree (groupid); + + +-- +-- TOC entry 9073 (class 1259 OID 21438) +-- Name: mdl_lessover_les_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_lessover_les_ix ON public.mdl_lesson_overrides USING btree (lessonid); + + +-- +-- TOC entry 9074 (class 1259 OID 21440) +-- Name: mdl_lessover_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_lessover_use_ix ON public.mdl_lesson_overrides USING btree (userid); + + +-- +-- TOC entry 9046 (class 1259 OID 21334) +-- Name: mdl_lesspage_les_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_lesspage_les_ix ON public.mdl_lesson_pages USING btree (lessonid); + + +-- +-- TOC entry 9063 (class 1259 OID 21410) +-- Name: mdl_lesstime_les_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_lesstime_les_ix ON public.mdl_lesson_timer USING btree (lessonid); + + +-- +-- TOC entry 9064 (class 1259 OID 21409) +-- Name: mdl_lesstime_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_lesstime_use_ix ON public.mdl_lesson_timer USING btree (userid); + + +-- +-- TOC entry 8545 (class 1259 OID 19183) +-- Name: mdl_lockdb_exp_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_lockdb_exp_ix ON public.mdl_lock_db USING btree (expires); + + +-- +-- TOC entry 8548 (class 1259 OID 19184) +-- Name: mdl_lockdb_own_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_lockdb_own_ix ON public.mdl_lock_db USING btree (owner); + + +-- +-- TOC entry 8549 (class 1259 OID 19182) +-- Name: mdl_lockdb_res_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_lockdb_res_uix ON public.mdl_lock_db USING btree (resourcekey); + + +-- +-- TOC entry 7893 (class 1259 OID 16804) +-- Name: mdl_log_act_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_log_act_ix ON public.mdl_log USING btree (action); + + +-- +-- TOC entry 7894 (class 1259 OID 16806) +-- Name: mdl_log_cmi_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_log_cmi_ix ON public.mdl_log USING btree (cmid); + + +-- +-- TOC entry 7895 (class 1259 OID 16802) +-- Name: mdl_log_coumodact_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_log_coumodact_ix ON public.mdl_log USING btree (course, module, action); + + +-- +-- TOC entry 7898 (class 1259 OID 16803) +-- Name: mdl_log_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_log_tim_ix ON public.mdl_log USING btree ("time"); + + +-- +-- TOC entry 7899 (class 1259 OID 16805) +-- Name: mdl_log_usecou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_log_usecou_ix ON public.mdl_log USING btree (userid, course); + + +-- +-- TOC entry 7904 (class 1259 OID 16832) +-- Name: mdl_logdisp_modact_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_logdisp_modact_uix ON public.mdl_log_display USING btree (module, action); + + +-- +-- TOC entry 9547 (class 1259 OID 23393) +-- Name: mdl_logsstanlog_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_logsstanlog_con_ix ON public.mdl_logstore_standard_log USING btree (contextid); + + +-- +-- TOC entry 9548 (class 1259 OID 23391) +-- Name: mdl_logsstanlog_couanotim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_logsstanlog_couanotim_ix ON public.mdl_logstore_standard_log USING btree (courseid, anonymous, timecreated); + + +-- +-- TOC entry 9551 (class 1259 OID 23390) +-- Name: mdl_logsstanlog_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_logsstanlog_tim_ix ON public.mdl_logstore_standard_log USING btree (timecreated); + + +-- +-- TOC entry 9552 (class 1259 OID 23392) +-- Name: mdl_logsstanlog_useconconcr_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_logsstanlog_useconconcr_ix ON public.mdl_logstore_standard_log USING btree (userid, contextlevel, contextinstanceid, crud, edulevel, timecreated); + + +-- +-- TOC entry 9075 (class 1259 OID 21462) +-- Name: mdl_lti_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_lti_cou_ix ON public.mdl_lti USING btree (course); + + +-- +-- TOC entry 9100 (class 1259 OID 21545) +-- Name: mdl_ltiaccetoke_tok_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_ltiaccetoke_tok_uix ON public.mdl_lti_access_tokens USING btree (token); + + +-- +-- TOC entry 9101 (class 1259 OID 21546) +-- Name: mdl_ltiaccetoke_typ_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_ltiaccetoke_typ_ix ON public.mdl_lti_access_tokens USING btree (typeid); + + +-- +-- TOC entry 9501 (class 1259 OID 23206) +-- Name: mdl_ltisgrad_gracou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_ltisgrad_gracou_ix ON public.mdl_ltiservice_gradebookservices USING btree (gradeitemid, courseid); + + +-- +-- TOC entry 9504 (class 1259 OID 23205) +-- Name: mdl_ltisgrad_lti_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_ltisgrad_lti_ix ON public.mdl_ltiservice_gradebookservices USING btree (ltilinkid); + + +-- +-- TOC entry 9097 (class 1259 OID 21532) +-- Name: mdl_ltisubm_lti_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_ltisubm_lti_ix ON public.mdl_lti_submission USING btree (ltiid); + + +-- +-- TOC entry 9078 (class 1259 OID 21476) +-- Name: mdl_ltitoolprox_gui_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_ltitoolprox_gui_uix ON public.mdl_lti_tool_proxies USING btree (guid); + + +-- +-- TOC entry 9089 (class 1259 OID 21523) +-- Name: mdl_ltitoolsett_cou2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_ltitoolsett_cou2_ix ON public.mdl_lti_tool_settings USING btree (coursemoduleid); + + +-- +-- TOC entry 9090 (class 1259 OID 21522) +-- Name: mdl_ltitoolsett_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_ltitoolsett_cou_ix ON public.mdl_lti_tool_settings USING btree (course); + + +-- +-- TOC entry 9093 (class 1259 OID 21520) +-- Name: mdl_ltitoolsett_too_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_ltitoolsett_too_ix ON public.mdl_lti_tool_settings USING btree (toolproxyid); + + +-- +-- TOC entry 9094 (class 1259 OID 21521) +-- Name: mdl_ltitoolsett_typ_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_ltitoolsett_typ_ix ON public.mdl_lti_tool_settings USING btree (typeid); + + +-- +-- TOC entry 9081 (class 1259 OID 21495) +-- Name: mdl_ltitype_cli_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_ltitype_cli_uix ON public.mdl_lti_types USING btree (clientid); + + +-- +-- TOC entry 9082 (class 1259 OID 21493) +-- Name: mdl_ltitype_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_ltitype_cou_ix ON public.mdl_lti_types USING btree (course); + + +-- +-- TOC entry 9085 (class 1259 OID 21494) +-- Name: mdl_ltitype_too_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_ltitype_too_ix ON public.mdl_lti_types USING btree (tooldomain); + + +-- +-- TOC entry 9088 (class 1259 OID 21508) +-- Name: mdl_ltitypeconf_typ_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_ltitypeconf_typ_ix ON public.mdl_lti_types_config USING btree (typeid); + + +-- +-- TOC entry 7916 (class 1259 OID 16892) +-- Name: mdl_mess_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_mess_con_ix ON public.mdl_messages USING btree (conversationid); + + +-- +-- TOC entry 7917 (class 1259 OID 16890) +-- Name: mdl_mess_contim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_mess_contim_ix ON public.mdl_messages USING btree (conversationid, timecreated); + + +-- +-- TOC entry 7920 (class 1259 OID 16891) +-- Name: mdl_mess_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_mess_use_ix ON public.mdl_messages USING btree (useridfrom); + + +-- +-- TOC entry 7907 (class 1259 OID 16853) +-- Name: mdl_mess_usetimnot2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_mess_usetimnot2_ix ON public.mdl_message USING btree (useridto, timeusertodeleted, notification); + + +-- +-- TOC entry 7908 (class 1259 OID 16852) +-- Name: mdl_mess_usetimnot_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_mess_usetimnot_ix ON public.mdl_message USING btree (useridfrom, timeuserfromdeleted, notification); + + +-- +-- TOC entry 7909 (class 1259 OID 16851) +-- Name: mdl_mess_useusetimtim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_mess_useusetimtim_ix ON public.mdl_message USING btree (useridfrom, useridto, timeuserfromdeleted, timeusertodeleted); + + +-- +-- TOC entry 9317 (class 1259 OID 22521) +-- Name: mdl_messairndevi_use_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_messairndevi_use_uix ON public.mdl_message_airnotifier_devices USING btree (userdeviceid); + + +-- +-- TOC entry 7944 (class 1259 OID 16965) +-- Name: mdl_messcont_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messcont_con_ix ON public.mdl_message_contacts USING btree (contactid); + + +-- +-- TOC entry 7947 (class 1259 OID 16964) +-- Name: mdl_messcont_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messcont_use_ix ON public.mdl_message_contacts USING btree (userid); + + +-- +-- TOC entry 7948 (class 1259 OID 16963) +-- Name: mdl_messcont_usecon_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_messcont_usecon_uix ON public.mdl_message_contacts USING btree (userid, contactid); + + +-- +-- TOC entry 7951 (class 1259 OID 16976) +-- Name: mdl_messcontrequ_req_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messcontrequ_req_ix ON public.mdl_message_contact_requests USING btree (requesteduserid); + + +-- +-- TOC entry 7952 (class 1259 OID 16975) +-- Name: mdl_messcontrequ_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messcontrequ_use_ix ON public.mdl_message_contact_requests USING btree (userid); + + +-- +-- TOC entry 7953 (class 1259 OID 16974) +-- Name: mdl_messcontrequ_usereq_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_messcontrequ_usereq_uix ON public.mdl_message_contact_requests USING btree (userid, requesteduserid); + + +-- +-- TOC entry 7921 (class 1259 OID 16908) +-- Name: mdl_messconv_comiteitecon_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messconv_comiteitecon_ix ON public.mdl_message_conversations USING btree (component, itemtype, itemid, contextid); + + +-- +-- TOC entry 7922 (class 1259 OID 16909) +-- Name: mdl_messconv_con2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messconv_con2_ix ON public.mdl_message_conversations USING btree (contextid); + + +-- +-- TOC entry 7923 (class 1259 OID 16907) +-- Name: mdl_messconv_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messconv_con_ix ON public.mdl_message_conversations USING btree (convhash); + + +-- +-- TOC entry 7926 (class 1259 OID 16906) +-- Name: mdl_messconv_typ_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messconv_typ_ix ON public.mdl_message_conversations USING btree (type); + + +-- +-- TOC entry 7931 (class 1259 OID 16929) +-- Name: mdl_messconvacti_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messconvacti_con_ix ON public.mdl_message_conversation_actions USING btree (conversationid); + + +-- +-- TOC entry 7934 (class 1259 OID 16928) +-- Name: mdl_messconvacti_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messconvacti_use_ix ON public.mdl_message_conversation_actions USING btree (userid); + + +-- +-- TOC entry 7927 (class 1259 OID 16918) +-- Name: mdl_messconvmemb_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messconvmemb_con_ix ON public.mdl_message_conversation_members USING btree (conversationid); + + +-- +-- TOC entry 7930 (class 1259 OID 16919) +-- Name: mdl_messconvmemb_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messconvmemb_use_ix ON public.mdl_message_conversation_members USING btree (userid); + + +-- +-- TOC entry 8564 (class 1259 OID 19261) +-- Name: mdl_messdata_han_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messdata_han_ix ON public.mdl_messageinbound_datakeys USING btree (handler); + + +-- +-- TOC entry 8565 (class 1259 OID 19260) +-- Name: mdl_messdata_handat_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_messdata_handat_uix ON public.mdl_messageinbound_datakeys USING btree (handler, datavalue); + + +-- +-- TOC entry 9318 (class 1259 OID 22531) +-- Name: mdl_messemaimess_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messemaimess_con_ix ON public.mdl_message_email_messages USING btree (conversationid); + + +-- +-- TOC entry 9321 (class 1259 OID 22532) +-- Name: mdl_messemaimess_mes_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messemaimess_mes_ix ON public.mdl_message_email_messages USING btree (messageid); + + +-- +-- TOC entry 9322 (class 1259 OID 22530) +-- Name: mdl_messemaimess_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messemaimess_use_ix ON public.mdl_message_email_messages USING btree (useridto); + + +-- +-- TOC entry 8561 (class 1259 OID 19251) +-- Name: mdl_messhand_cla_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_messhand_cla_uix ON public.mdl_messageinbound_handlers USING btree (classname); + + +-- +-- TOC entry 8570 (class 1259 OID 19273) +-- Name: mdl_messmess_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messmess_use_ix ON public.mdl_messageinbound_messagelist USING btree (userid); + + +-- +-- TOC entry 9325 (class 1259 OID 22543) +-- Name: mdl_messpopu_isr_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messpopu_isr_ix ON public.mdl_message_popup USING btree (isread); + + +-- +-- TOC entry 9326 (class 1259 OID 22542) +-- Name: mdl_messpopu_mesisr_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_messpopu_mesisr_uix ON public.mdl_message_popup USING btree (messageid, isread); + + +-- +-- TOC entry 9329 (class 1259 OID 22552) +-- Name: mdl_messpopunoti_not_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messpopunoti_not_ix ON public.mdl_message_popup_notifications USING btree (notificationid); + + +-- +-- TOC entry 8358 (class 1259 OID 18486) +-- Name: mdl_messprov_comnam_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_messprov_comnam_uix ON public.mdl_message_providers USING btree (component, name); + + +-- +-- TOC entry 7912 (class 1259 OID 16874) +-- Name: mdl_messread_nottim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messread_nottim_ix ON public.mdl_message_read USING btree (notification, timeread); + + +-- +-- TOC entry 7913 (class 1259 OID 16876) +-- Name: mdl_messread_usetimnot2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messread_usetimnot2_ix ON public.mdl_message_read USING btree (useridto, timeusertodeleted, notification); + + +-- +-- TOC entry 7914 (class 1259 OID 16875) +-- Name: mdl_messread_usetimnot_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messread_usetimnot_ix ON public.mdl_message_read USING btree (useridfrom, timeuserfromdeleted, notification); + + +-- +-- TOC entry 7915 (class 1259 OID 16873) +-- Name: mdl_messread_useusetimtim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messread_useusetimtim_ix ON public.mdl_message_read USING btree (useridfrom, useridto, timeuserfromdeleted, timeusertodeleted); + + +-- +-- TOC entry 7937 (class 1259 OID 16940) +-- Name: mdl_messuseracti_mes_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messuseracti_mes_ix ON public.mdl_message_user_actions USING btree (messageid); + + +-- +-- TOC entry 7938 (class 1259 OID 16939) +-- Name: mdl_messuseracti_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messuseracti_use_ix ON public.mdl_message_user_actions USING btree (userid); + + +-- +-- TOC entry 7939 (class 1259 OID 16938) +-- Name: mdl_messuseracti_usemesact_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_messuseracti_usemesact_uix ON public.mdl_message_user_actions USING btree (userid, messageid, action); + + +-- +-- TOC entry 7954 (class 1259 OID 16987) +-- Name: mdl_messuserbloc_blo_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messuserbloc_blo_ix ON public.mdl_message_users_blocked USING btree (blockeduserid); + + +-- +-- TOC entry 7957 (class 1259 OID 16986) +-- Name: mdl_messuserbloc_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_messuserbloc_use_ix ON public.mdl_message_users_blocked USING btree (userid); + + +-- +-- TOC entry 7958 (class 1259 OID 16985) +-- Name: mdl_messuserbloc_useblo_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_messuserbloc_useblo_uix ON public.mdl_message_users_blocked USING btree (userid, blockeduserid); + + +-- +-- TOC entry 9367 (class 1259 OID 22703) +-- Name: mdl_mnetenrocour_hosrem_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_mnetenrocour_hosrem_uix ON public.mdl_mnetservice_enrol_courses USING btree (hostid, remoteid); + + +-- +-- TOC entry 9370 (class 1259 OID 22716) +-- Name: mdl_mnetenroenro_hos_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_mnetenroenro_hos_ix ON public.mdl_mnetservice_enrol_enrolments USING btree (hostid); + + +-- +-- TOC entry 9373 (class 1259 OID 22715) +-- Name: mdl_mnetenroenro_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_mnetenroenro_use_ix ON public.mdl_mnetservice_enrol_enrolments USING btree (userid); + + +-- +-- TOC entry 8163 (class 1259 OID 17746) +-- Name: mdl_mnethost_app_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_mnethost_app_ix ON public.mdl_mnet_host USING btree (applicationid); + + +-- +-- TOC entry 8166 (class 1259 OID 17759) +-- Name: mdl_mnethost_hosser_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_mnethost_hosser_uix ON public.mdl_mnet_host2service USING btree (hostid, serviceid); + + +-- +-- TOC entry 8169 (class 1259 OID 17783) +-- Name: mdl_mnetlog_hosusecou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_mnetlog_hosusecou_ix ON public.mdl_mnet_log USING btree (hostid, userid, course); + + +-- +-- TOC entry 8184 (class 1259 OID 17847) +-- Name: mdl_mnetremoserv_rpcser_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_mnetremoserv_rpcser_uix ON public.mdl_mnet_remote_service2rpc USING btree (rpcid, serviceid); + + +-- +-- TOC entry 8172 (class 1259 OID 17801) +-- Name: mdl_mnetrpc_enaxml_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_mnetrpc_enaxml_ix ON public.mdl_mnet_rpc USING btree (enabled, xmlrpcpath); + + +-- +-- TOC entry 8181 (class 1259 OID 17836) +-- Name: mdl_mnetserv_rpcser_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_mnetserv_rpcser_uix ON public.mdl_mnet_service2rpc USING btree (rpcid, serviceid); + + +-- +-- TOC entry 8187 (class 1259 OID 17864) +-- Name: mdl_mnetsess_tok_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_mnetsess_tok_uix ON public.mdl_mnet_session USING btree (token); + + +-- +-- TOC entry 8190 (class 1259 OID 17876) +-- Name: mdl_mnetssoaccecont_mneuse_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_mnetssoaccecont_mneuse_uix ON public.mdl_mnet_sso_access_control USING btree (mnet_host_id, username); + + +-- +-- TOC entry 7961 (class 1259 OID 17001) +-- Name: mdl_modu_nam_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_modu_nam_ix ON public.mdl_modules USING btree (name); + + +-- +-- TOC entry 7964 (class 1259 OID 17014) +-- Name: mdl_mypage_usepri_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_mypage_usepri_ix ON public.mdl_my_pages USING btree (userid, private); + + +-- +-- TOC entry 7942 (class 1259 OID 16954) +-- Name: mdl_noti_use2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_noti_use2_ix ON public.mdl_notifications USING btree (useridto); + + +-- +-- TOC entry 7943 (class 1259 OID 16953) +-- Name: mdl_noti_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_noti_use_ix ON public.mdl_notifications USING btree (useridfrom); + + +-- +-- TOC entry 8684 (class 1259 OID 19672) +-- Name: mdl_oautaccetoke_iss_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_oautaccetoke_iss_uix ON public.mdl_oauth2_access_token USING btree (issuerid); + + +-- +-- TOC entry 8634 (class 1259 OID 19484) +-- Name: mdl_oautendp_iss_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_oautendp_iss_ix ON public.mdl_oauth2_endpoint USING btree (issuerid); + + +-- +-- TOC entry 8639 (class 1259 OID 19512) +-- Name: mdl_oautsystacco_iss_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_oautsystacco_iss_uix ON public.mdl_oauth2_system_account USING btree (issuerid); + + +-- +-- TOC entry 8642 (class 1259 OID 19523) +-- Name: mdl_oautuserfielmapp_iss_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_oautuserfielmapp_iss_ix ON public.mdl_oauth2_user_field_mapping USING btree (issuerid); + + +-- +-- TOC entry 8643 (class 1259 OID 19524) +-- Name: mdl_oautuserfielmapp_issin_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_oautuserfielmapp_issin_uix ON public.mdl_oauth2_user_field_mapping USING btree (issuerid, internalfield); + + +-- +-- TOC entry 9102 (class 1259 OID 21566) +-- Name: mdl_page_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_page_cou_ix ON public.mdl_page USING btree (course); + + +-- +-- TOC entry 8344 (class 1259 OID 18424) +-- Name: mdl_portinstconf_ins_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_portinstconf_ins_ix ON public.mdl_portfolio_instance_config USING btree (instance); + + +-- +-- TOC entry 8345 (class 1259 OID 18423) +-- Name: mdl_portinstconf_nam_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_portinstconf_nam_ix ON public.mdl_portfolio_instance_config USING btree (name); + + +-- +-- TOC entry 8348 (class 1259 OID 18437) +-- Name: mdl_portinstuser_ins_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_portinstuser_ins_ix ON public.mdl_portfolio_instance_user USING btree (instance); + + +-- +-- TOC entry 8349 (class 1259 OID 18438) +-- Name: mdl_portinstuser_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_portinstuser_use_ix ON public.mdl_portfolio_instance_user USING btree (userid); + + +-- +-- TOC entry 8352 (class 1259 OID 18457) +-- Name: mdl_portlog_por_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_portlog_por_ix ON public.mdl_portfolio_log USING btree (portfolio); + + +-- +-- TOC entry 8353 (class 1259 OID 18456) +-- Name: mdl_portlog_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_portlog_use_ix ON public.mdl_portfolio_log USING btree (userid); + + +-- +-- TOC entry 9379 (class 1259 OID 22740) +-- Name: mdl_portmahaqueu_tok_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_portmahaqueu_tok_ix ON public.mdl_portfolio_mahara_queue USING btree (token); + + +-- +-- TOC entry 9380 (class 1259 OID 22741) +-- Name: mdl_portmahaqueu_tra_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_portmahaqueu_tra_ix ON public.mdl_portfolio_mahara_queue USING btree (transferid); + + +-- +-- TOC entry 8356 (class 1259 OID 18472) +-- Name: mdl_porttemp_ins_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_porttemp_ins_ix ON public.mdl_portfolio_tempdata USING btree (instance); + + +-- +-- TOC entry 8357 (class 1259 OID 18471) +-- Name: mdl_porttemp_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_porttemp_use_ix ON public.mdl_portfolio_tempdata USING btree (userid); + + +-- +-- TOC entry 8045 (class 1259 OID 17314) +-- Name: mdl_post_iduse_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_post_iduse_uix ON public.mdl_post USING btree (id, userid); + + +-- +-- TOC entry 8046 (class 1259 OID 17315) +-- Name: mdl_post_las_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_post_las_ix ON public.mdl_post USING btree (lastmodified); + + +-- +-- TOC entry 8047 (class 1259 OID 17316) +-- Name: mdl_post_mod_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_post_mod_ix ON public.mdl_post USING btree (module); + + +-- +-- TOC entry 8048 (class 1259 OID 17317) +-- Name: mdl_post_sub_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_post_sub_ix ON public.mdl_post USING btree (subject); + + +-- +-- TOC entry 8049 (class 1259 OID 17318) +-- Name: mdl_post_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_post_use_ix ON public.mdl_post USING btree (usermodified); + + +-- +-- TOC entry 8453 (class 1259 OID 18852) +-- Name: mdl_prof_run_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_prof_run_uix ON public.mdl_profiling USING btree (runid); + + +-- +-- TOC entry 8454 (class 1259 OID 18851) +-- Name: mdl_prof_timrun_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_prof_timrun_ix ON public.mdl_profiling USING btree (timecreated, runreference); + + +-- +-- TOC entry 8455 (class 1259 OID 18850) +-- Name: mdl_prof_urlrun_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_prof_urlrun_ix ON public.mdl_profiling USING btree (url, runreference); + + +-- +-- TOC entry 8759 (class 1259 OID 19943) +-- Name: mdl_qtypddim_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_qtypddim_que_ix ON public.mdl_qtype_ddimageortext USING btree (questionid); + + +-- +-- TOC entry 8765 (class 1259 OID 19976) +-- Name: mdl_qtypddimdrag_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_qtypddimdrag_que_ix ON public.mdl_qtype_ddimageortext_drags USING btree (questionid); + + +-- +-- TOC entry 8762 (class 1259 OID 19960) +-- Name: mdl_qtypddimdrop_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_qtypddimdrop_que_ix ON public.mdl_qtype_ddimageortext_drops USING btree (questionid); + + +-- +-- TOC entry 8768 (class 1259 OID 19995) +-- Name: mdl_qtypddma_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_qtypddma_que_ix ON public.mdl_qtype_ddmarker USING btree (questionid); + + +-- +-- TOC entry 8774 (class 1259 OID 20026) +-- Name: mdl_qtypddmadrag_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_qtypddmadrag_que_ix ON public.mdl_qtype_ddmarker_drags USING btree (questionid); + + +-- +-- TOC entry 8771 (class 1259 OID 20010) +-- Name: mdl_qtypddmadrop_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_qtypddmadrop_que_ix ON public.mdl_qtype_ddmarker_drops USING btree (questionid); + + +-- +-- TOC entry 8780 (class 1259 OID 20063) +-- Name: mdl_qtypessaopti_que_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_qtypessaopti_que_uix ON public.mdl_qtype_essay_options USING btree (questionid); + + +-- +-- TOC entry 8786 (class 1259 OID 20099) +-- Name: mdl_qtypmatcopti_que_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_qtypmatcopti_que_uix ON public.mdl_qtype_match_options USING btree (questionid); + + +-- +-- TOC entry 8789 (class 1259 OID 20114) +-- Name: mdl_qtypmatcsubq_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_qtypmatcsubq_que_ix ON public.mdl_qtype_match_subquestions USING btree (questionid); + + +-- +-- TOC entry 8795 (class 1259 OID 20149) +-- Name: mdl_qtypmultopti_que_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_qtypmultopti_que_uix ON public.mdl_qtype_multichoice_options USING btree (questionid); + + +-- +-- TOC entry 8809 (class 1259 OID 20208) +-- Name: mdl_qtyprandopti_que_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_qtyprandopti_que_uix ON public.mdl_qtype_randomsamatch_options USING btree (questionid); + + +-- +-- TOC entry 8812 (class 1259 OID 20219) +-- Name: mdl_qtypshoropti_que_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_qtypshoropti_que_uix ON public.mdl_qtype_shortanswer_options USING btree (questionid); + + +-- +-- TOC entry 8123 (class 1259 OID 17582) +-- Name: mdl_ques_cat_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_ques_cat_ix ON public.mdl_question USING btree (category); + + +-- +-- TOC entry 8124 (class 1259 OID 17581) +-- Name: mdl_ques_catidn_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_ques_catidn_uix ON public.mdl_question USING btree (category, idnumber); + + +-- +-- TOC entry 8125 (class 1259 OID 17584) +-- Name: mdl_ques_cre_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_ques_cre_ix ON public.mdl_question USING btree (createdby); + + +-- +-- TOC entry 8128 (class 1259 OID 17585) +-- Name: mdl_ques_mod_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_ques_mod_ix ON public.mdl_question USING btree (modifiedby); + + +-- +-- TOC entry 8129 (class 1259 OID 17583) +-- Name: mdl_ques_par_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_ques_par_ix ON public.mdl_question USING btree (parent); + + +-- +-- TOC entry 8130 (class 1259 OID 17580) +-- Name: mdl_ques_qty_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_ques_qty_ix ON public.mdl_question USING btree (qtype); + + +-- +-- TOC entry 8133 (class 1259 OID 17601) +-- Name: mdl_quesansw_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quesansw_que_ix ON public.mdl_question_answers USING btree (question); + + +-- +-- TOC entry 8140 (class 1259 OID 17642) +-- Name: mdl_quesatte_beh_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quesatte_beh_ix ON public.mdl_question_attempts USING btree (behaviour); + + +-- +-- TOC entry 8143 (class 1259 OID 17644) +-- Name: mdl_quesatte_que2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quesatte_que2_ix ON public.mdl_question_attempts USING btree (questionusageid); + + +-- +-- TOC entry 8144 (class 1259 OID 17643) +-- Name: mdl_quesatte_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quesatte_que_ix ON public.mdl_question_attempts USING btree (questionid); + + +-- +-- TOC entry 8145 (class 1259 OID 17641) +-- Name: mdl_quesatte_queslo_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_quesatte_queslo_uix ON public.mdl_question_attempts USING btree (questionusageid, slot); + + +-- +-- TOC entry 8148 (class 1259 OID 17655) +-- Name: mdl_quesattestep_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quesattestep_que_ix ON public.mdl_question_attempt_steps USING btree (questionattemptid); + + +-- +-- TOC entry 8149 (class 1259 OID 17654) +-- Name: mdl_quesattestep_queseq_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_quesattestep_queseq_uix ON public.mdl_question_attempt_steps USING btree (questionattemptid, sequencenumber); + + +-- +-- TOC entry 8150 (class 1259 OID 17656) +-- Name: mdl_quesattestep_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quesattestep_use_ix ON public.mdl_question_attempt_steps USING btree (userid); + + +-- +-- TOC entry 8151 (class 1259 OID 17669) +-- Name: mdl_quesattestepdata_att_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quesattestepdata_att_ix ON public.mdl_question_attempt_step_data USING btree (attemptstepid); + + +-- +-- TOC entry 8739 (class 1259 OID 19861) +-- Name: mdl_quescalc_ans_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quescalc_ans_ix ON public.mdl_question_calculated USING btree (answer); + + +-- +-- TOC entry 8742 (class 1259 OID 19862) +-- Name: mdl_quescalc_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quescalc_que_ix ON public.mdl_question_calculated USING btree (question); + + +-- +-- TOC entry 8745 (class 1259 OID 19883) +-- Name: mdl_quescalcopti_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quescalcopti_que_ix ON public.mdl_question_calculated_options USING btree (question); + + +-- +-- TOC entry 8117 (class 1259 OID 17551) +-- Name: mdl_quescate_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quescate_con_ix ON public.mdl_question_categories USING btree (contextid); + + +-- +-- TOC entry 8118 (class 1259 OID 17553) +-- Name: mdl_quescate_conidn_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_quescate_conidn_uix ON public.mdl_question_categories USING btree (contextid, idnumber); + + +-- +-- TOC entry 8119 (class 1259 OID 17552) +-- Name: mdl_quescate_consta_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_quescate_consta_uix ON public.mdl_question_categories USING btree (contextid, stamp); + + +-- +-- TOC entry 8122 (class 1259 OID 17554) +-- Name: mdl_quescate_par_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quescate_par_ix ON public.mdl_question_categories USING btree (parent); + + +-- +-- TOC entry 8752 (class 1259 OID 19925) +-- Name: mdl_quesdata_dat_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quesdata_dat_ix ON public.mdl_question_datasets USING btree (datasetdefinition); + + +-- +-- TOC entry 8755 (class 1259 OID 19924) +-- Name: mdl_quesdata_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quesdata_que_ix ON public.mdl_question_datasets USING btree (question); + + +-- +-- TOC entry 8756 (class 1259 OID 19923) +-- Name: mdl_quesdata_quedat_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quesdata_quedat_ix ON public.mdl_question_datasets USING btree (question, datasetdefinition); + + +-- +-- TOC entry 8746 (class 1259 OID 19900) +-- Name: mdl_quesdatadefi_cat_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quesdatadefi_cat_ix ON public.mdl_question_dataset_definitions USING btree (category); + + +-- +-- TOC entry 8749 (class 1259 OID 19912) +-- Name: mdl_quesdataitem_def_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quesdataitem_def_ix ON public.mdl_question_dataset_items USING btree (definition); + + +-- +-- TOC entry 8777 (class 1259 OID 20044) +-- Name: mdl_quesddwt_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quesddwt_que_ix ON public.mdl_question_ddwtos USING btree (questionid); + + +-- +-- TOC entry 8783 (class 1259 OID 20081) +-- Name: mdl_quesgaps_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quesgaps_que_ix ON public.mdl_question_gapselect USING btree (questionid); + + +-- +-- TOC entry 8136 (class 1259 OID 17614) +-- Name: mdl_queshint_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_queshint_que_ix ON public.mdl_question_hints USING btree (questionid); + + +-- +-- TOC entry 8792 (class 1259 OID 20127) +-- Name: mdl_quesmult_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quesmult_que_ix ON public.mdl_question_multianswer USING btree (question); + + +-- +-- TOC entry 8796 (class 1259 OID 20161) +-- Name: mdl_quesnume_ans_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quesnume_ans_ix ON public.mdl_question_numerical USING btree (answer); + + +-- +-- TOC entry 8799 (class 1259 OID 20162) +-- Name: mdl_quesnume_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quesnume_que_ix ON public.mdl_question_numerical USING btree (question); + + +-- +-- TOC entry 8802 (class 1259 OID 20176) +-- Name: mdl_quesnumeopti_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quesnumeopti_que_ix ON public.mdl_question_numerical_options USING btree (question); + + +-- +-- TOC entry 8805 (class 1259 OID 20189) +-- Name: mdl_quesnumeunit_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quesnumeunit_que_ix ON public.mdl_question_numerical_units USING btree (question); + + +-- +-- TOC entry 8806 (class 1259 OID 20188) +-- Name: mdl_quesnumeunit_queuni_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_quesnumeunit_queuni_uix ON public.mdl_question_numerical_units USING btree (question, unit); + + +-- +-- TOC entry 8158 (class 1259 OID 17706) +-- Name: mdl_quesrespcoun_ana_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quesrespcoun_ana_ix ON public.mdl_question_response_count USING btree (analysisid); + + +-- +-- TOC entry 8815 (class 1259 OID 20231) +-- Name: mdl_questrue_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_questrue_que_ix ON public.mdl_question_truefalse USING btree (question); + + +-- +-- TOC entry 8137 (class 1259 OID 17625) +-- Name: mdl_quesusag_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quesusag_con_ix ON public.mdl_question_usages USING btree (contextid); + + +-- +-- TOC entry 9105 (class 1259 OID 21617) +-- Name: mdl_quiz_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quiz_cou_ix ON public.mdl_quiz USING btree (course); + + +-- +-- TOC entry 9128 (class 1259 OID 21701) +-- Name: mdl_quizatte_qui_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quizatte_qui_ix ON public.mdl_quiz_attempts USING btree (quiz); + + +-- +-- TOC entry 9129 (class 1259 OID 21699) +-- Name: mdl_quizatte_quiuseatt_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_quizatte_quiuseatt_uix ON public.mdl_quiz_attempts USING btree (quiz, userid, attempt); + + +-- +-- TOC entry 9130 (class 1259 OID 21700) +-- Name: mdl_quizatte_statim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quizatte_statim_ix ON public.mdl_quiz_attempts USING btree (state, timecheckstate); + + +-- +-- TOC entry 9131 (class 1259 OID 21703) +-- Name: mdl_quizatte_uni_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_quizatte_uni_uix ON public.mdl_quiz_attempts USING btree (uniqueid); + + +-- +-- TOC entry 9132 (class 1259 OID 21702) +-- Name: mdl_quizatte_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quizatte_use_ix ON public.mdl_quiz_attempts USING btree (userid); + + +-- +-- TOC entry 9120 (class 1259 OID 21663) +-- Name: mdl_quizfeed_qui_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quizfeed_qui_ix ON public.mdl_quiz_feedback USING btree (quizid); + + +-- +-- TOC entry 9135 (class 1259 OID 21717) +-- Name: mdl_quizgrad_qui_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quizgrad_qui_ix ON public.mdl_quiz_grades USING btree (quiz); + + +-- +-- TOC entry 9136 (class 1259 OID 21716) +-- Name: mdl_quizgrad_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quizgrad_use_ix ON public.mdl_quiz_grades USING btree (userid); + + +-- +-- TOC entry 9121 (class 1259 OID 21674) +-- Name: mdl_quizover_gro_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quizover_gro_ix ON public.mdl_quiz_overrides USING btree (groupid); + + +-- +-- TOC entry 9124 (class 1259 OID 21673) +-- Name: mdl_quizover_qui_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quizover_qui_ix ON public.mdl_quiz_overrides USING btree (quiz); + + +-- +-- TOC entry 9125 (class 1259 OID 21675) +-- Name: mdl_quizover_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quizover_use_ix ON public.mdl_quiz_overrides USING btree (userid); + + +-- +-- TOC entry 9507 (class 1259 OID 23215) +-- Name: mdl_quizoverregr_queslo_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quizoverregr_queslo_ix ON public.mdl_quiz_overview_regrades USING btree (questionusageid, slot); + + +-- +-- TOC entry 9139 (class 1259 OID 21729) +-- Name: mdl_quizrepo_nam_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_quizrepo_nam_uix ON public.mdl_quiz_reports USING btree (name); + + +-- +-- TOC entry 9510 (class 1259 OID 23240) +-- Name: mdl_quizsebquiz_cmi_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_quizsebquiz_cmi_uix ON public.mdl_quizaccess_seb_quizsettings USING btree (cmid); + + +-- +-- TOC entry 9513 (class 1259 OID 23239) +-- Name: mdl_quizsebquiz_qui_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_quizsebquiz_qui_uix ON public.mdl_quizaccess_seb_quizsettings USING btree (quizid); + + +-- +-- TOC entry 9514 (class 1259 OID 23241) +-- Name: mdl_quizsebquiz_tem_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quizsebquiz_tem_ix ON public.mdl_quizaccess_seb_quizsettings USING btree (templateid); + + +-- +-- TOC entry 9515 (class 1259 OID 23242) +-- Name: mdl_quizsebquiz_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quizsebquiz_use_ix ON public.mdl_quizaccess_seb_quizsettings USING btree (usermodified); + + +-- +-- TOC entry 9518 (class 1259 OID 23258) +-- Name: mdl_quizsebtemp_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quizsebtemp_use_ix ON public.mdl_quizaccess_seb_template USING btree (usermodified); + + +-- +-- TOC entry 9116 (class 1259 OID 21647) +-- Name: mdl_quizsect_qui_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quizsect_qui_ix ON public.mdl_quiz_sections USING btree (quizid); + + +-- +-- TOC entry 9117 (class 1259 OID 21646) +-- Name: mdl_quizsect_quifir_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_quizsect_quifir_uix ON public.mdl_quiz_sections USING btree (quizid, firstslot); + + +-- +-- TOC entry 9110 (class 1259 OID 21633) +-- Name: mdl_quizslot_que2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quizslot_que2_ix ON public.mdl_quiz_slots USING btree (questioncategoryid); + + +-- +-- TOC entry 9111 (class 1259 OID 21632) +-- Name: mdl_quizslot_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quizslot_que_ix ON public.mdl_quiz_slots USING btree (questionid); + + +-- +-- TOC entry 9112 (class 1259 OID 21631) +-- Name: mdl_quizslot_qui_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quizslot_qui_ix ON public.mdl_quiz_slots USING btree (quizid); + + +-- +-- TOC entry 9113 (class 1259 OID 21630) +-- Name: mdl_quizslot_quislo_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_quizslot_quislo_uix ON public.mdl_quiz_slots USING btree (quizid, slot); + + +-- +-- TOC entry 9142 (class 1259 OID 21738) +-- Name: mdl_quizslottags_slo_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quizslottags_slo_ix ON public.mdl_quiz_slot_tags USING btree (slotid); + + +-- +-- TOC entry 9143 (class 1259 OID 21739) +-- Name: mdl_quizslottags_tag_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_quizslottags_tag_ix ON public.mdl_quiz_slot_tags USING btree (tagid); + + +-- +-- TOC entry 8432 (class 1259 OID 18766) +-- Name: mdl_rati_comratconite_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_rati_comratconite_ix ON public.mdl_rating USING btree (component, ratingarea, contextid, itemid); + + +-- +-- TOC entry 8433 (class 1259 OID 18767) +-- Name: mdl_rati_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_rati_con_ix ON public.mdl_rating USING btree (contextid); + + +-- +-- TOC entry 8436 (class 1259 OID 18768) +-- Name: mdl_rati_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_rati_use_ix ON public.mdl_rating USING btree (userid); + + +-- +-- TOC entry 9376 (class 1259 OID 22730) +-- Name: mdl_repoonedacce_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_repoonedacce_use_ix ON public.mdl_repository_onedrive_access USING btree (usermodified); + + +-- +-- TOC entry 9144 (class 1259 OID 21760) +-- Name: mdl_reso_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_reso_cou_ix ON public.mdl_resource USING btree (course); + + +-- +-- TOC entry 9147 (class 1259 OID 21781) +-- Name: mdl_resoold_cmi_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_resoold_cmi_ix ON public.mdl_resource_old USING btree (cmid); + + +-- +-- TOC entry 9150 (class 1259 OID 21780) +-- Name: mdl_resoold_old_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_resoold_old_uix ON public.mdl_resource_old USING btree (oldid); + + +-- +-- TOC entry 8052 (class 1259 OID 17335) +-- Name: mdl_role_sho_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_role_sho_uix ON public.mdl_role USING btree (shortname); + + +-- +-- TOC entry 8053 (class 1259 OID 17334) +-- Name: mdl_role_sor_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_role_sor_uix ON public.mdl_role USING btree (sortorder); + + +-- +-- TOC entry 8065 (class 1259 OID 17385) +-- Name: mdl_rolealloassi_all_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_rolealloassi_all_ix ON public.mdl_role_allow_assign USING btree (allowassign); + + +-- +-- TOC entry 8068 (class 1259 OID 17384) +-- Name: mdl_rolealloassi_rol_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_rolealloassi_rol_ix ON public.mdl_role_allow_assign USING btree (roleid); + + +-- +-- TOC entry 8069 (class 1259 OID 17383) +-- Name: mdl_rolealloassi_rolall_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_rolealloassi_rolall_uix ON public.mdl_role_allow_assign USING btree (roleid, allowassign); + + +-- +-- TOC entry 8070 (class 1259 OID 17398) +-- Name: mdl_rolealloover_all_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_rolealloover_all_ix ON public.mdl_role_allow_override USING btree (allowoverride); + + +-- +-- TOC entry 8073 (class 1259 OID 17397) +-- Name: mdl_rolealloover_rol_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_rolealloover_rol_ix ON public.mdl_role_allow_override USING btree (roleid); + + +-- +-- TOC entry 8074 (class 1259 OID 17396) +-- Name: mdl_rolealloover_rolall_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_rolealloover_rolall_uix ON public.mdl_role_allow_override USING btree (roleid, allowoverride); + + +-- +-- TOC entry 8075 (class 1259 OID 17409) +-- Name: mdl_rolealloswit_all_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_rolealloswit_all_ix ON public.mdl_role_allow_switch USING btree (allowswitch); + + +-- +-- TOC entry 8078 (class 1259 OID 17408) +-- Name: mdl_rolealloswit_rol_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_rolealloswit_rol_ix ON public.mdl_role_allow_switch USING btree (roleid); + + +-- +-- TOC entry 8079 (class 1259 OID 17407) +-- Name: mdl_rolealloswit_rolall_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_rolealloswit_rolall_uix ON public.mdl_role_allow_switch USING btree (roleid, allowswitch); + + +-- +-- TOC entry 8080 (class 1259 OID 17420) +-- Name: mdl_rolealloview_all_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_rolealloview_all_ix ON public.mdl_role_allow_view USING btree (allowview); + + +-- +-- TOC entry 8083 (class 1259 OID 17419) +-- Name: mdl_rolealloview_rol_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_rolealloview_rol_ix ON public.mdl_role_allow_view USING btree (roleid); + + +-- +-- TOC entry 8084 (class 1259 OID 17418) +-- Name: mdl_rolealloview_rolall_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_rolealloview_rolall_uix ON public.mdl_role_allow_view USING btree (roleid, allowview); + + +-- +-- TOC entry 8085 (class 1259 OID 17440) +-- Name: mdl_roleassi_comiteuse_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_roleassi_comiteuse_ix ON public.mdl_role_assignments USING btree (component, itemid, userid); + + +-- +-- TOC entry 8086 (class 1259 OID 17442) +-- Name: mdl_roleassi_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_roleassi_con_ix ON public.mdl_role_assignments USING btree (contextid); + + +-- +-- TOC entry 8089 (class 1259 OID 17441) +-- Name: mdl_roleassi_rol_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_roleassi_rol_ix ON public.mdl_role_assignments USING btree (roleid); + + +-- +-- TOC entry 8090 (class 1259 OID 17438) +-- Name: mdl_roleassi_rolcon_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_roleassi_rolcon_ix ON public.mdl_role_assignments USING btree (roleid, contextid); + + +-- +-- TOC entry 8091 (class 1259 OID 17437) +-- Name: mdl_roleassi_sor_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_roleassi_sor_ix ON public.mdl_role_assignments USING btree (sortorder); + + +-- +-- TOC entry 8092 (class 1259 OID 17443) +-- Name: mdl_roleassi_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_roleassi_use_ix ON public.mdl_role_assignments USING btree (userid); + + +-- +-- TOC entry 8093 (class 1259 OID 17439) +-- Name: mdl_roleassi_useconrol_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_roleassi_useconrol_ix ON public.mdl_role_assignments USING btree (userid, contextid, roleid); + + +-- +-- TOC entry 8094 (class 1259 OID 17462) +-- Name: mdl_rolecapa_cap_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_rolecapa_cap_ix ON public.mdl_role_capabilities USING btree (capability); + + +-- +-- TOC entry 8095 (class 1259 OID 17460) +-- Name: mdl_rolecapa_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_rolecapa_con_ix ON public.mdl_role_capabilities USING btree (contextid); + + +-- +-- TOC entry 8098 (class 1259 OID 17461) +-- Name: mdl_rolecapa_mod_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_rolecapa_mod_ix ON public.mdl_role_capabilities USING btree (modifierid); + + +-- +-- TOC entry 8099 (class 1259 OID 17459) +-- Name: mdl_rolecapa_rol_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_rolecapa_rol_ix ON public.mdl_role_capabilities USING btree (roleid); + + +-- +-- TOC entry 8100 (class 1259 OID 17458) +-- Name: mdl_rolecapa_rolconcap_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_rolecapa_rolconcap_uix ON public.mdl_role_capabilities USING btree (roleid, contextid, capability); + + +-- +-- TOC entry 8106 (class 1259 OID 17485) +-- Name: mdl_rolecontleve_conrol_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_rolecontleve_conrol_uix ON public.mdl_role_context_levels USING btree (contextlevel, roleid); + + +-- +-- TOC entry 8109 (class 1259 OID 17486) +-- Name: mdl_rolecontleve_rol_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_rolecontleve_rol_ix ON public.mdl_role_context_levels USING btree (roleid); + + +-- +-- TOC entry 8101 (class 1259 OID 17476) +-- Name: mdl_rolename_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_rolename_con_ix ON public.mdl_role_names USING btree (contextid); + + +-- +-- TOC entry 8104 (class 1259 OID 17475) +-- Name: mdl_rolename_rol_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_rolename_rol_ix ON public.mdl_role_names USING btree (roleid); + + +-- +-- TOC entry 8105 (class 1259 OID 17474) +-- Name: mdl_rolename_rolcon_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_rolename_rolcon_uix ON public.mdl_role_names USING btree (roleid, contextid); + + +-- +-- TOC entry 8000 (class 1259 OID 17160) +-- Name: mdl_scal_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_scal_cou_ix ON public.mdl_scale USING btree (courseid); + + +-- +-- TOC entry 8003 (class 1259 OID 17176) +-- Name: mdl_scalhist_act_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_scalhist_act_ix ON public.mdl_scale_history USING btree (action); + + +-- +-- TOC entry 8004 (class 1259 OID 17179) +-- Name: mdl_scalhist_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_scalhist_cou_ix ON public.mdl_scale_history USING btree (courseid); + + +-- +-- TOC entry 8007 (class 1259 OID 17180) +-- Name: mdl_scalhist_log_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_scalhist_log_ix ON public.mdl_scale_history USING btree (loggeduser); + + +-- +-- TOC entry 8008 (class 1259 OID 17178) +-- Name: mdl_scalhist_old_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_scalhist_old_ix ON public.mdl_scale_history USING btree (oldid); + + +-- +-- TOC entry 8009 (class 1259 OID 17177) +-- Name: mdl_scalhist_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_scalhist_tim_ix ON public.mdl_scale_history USING btree (timemodified); + + +-- +-- TOC entry 9151 (class 1259 OID 21829) +-- Name: mdl_scor_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_scor_cou_ix ON public.mdl_scorm USING btree (course); + + +-- +-- TOC entry 9195 (class 1259 OID 21997) +-- Name: mdl_scoraiccsess_sco_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_scoraiccsess_sco_ix ON public.mdl_scorm_aicc_session USING btree (scormid); + + +-- +-- TOC entry 9196 (class 1259 OID 21998) +-- Name: mdl_scoraiccsess_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_scoraiccsess_use_ix ON public.mdl_scorm_aicc_session USING btree (userid); + + +-- +-- TOC entry 9156 (class 1259 OID 21849) +-- Name: mdl_scorscoe_sco_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_scorscoe_sco_ix ON public.mdl_scorm_scoes USING btree (scorm); + + +-- +-- TOC entry 9159 (class 1259 OID 21863) +-- Name: mdl_scorscoedata_sco_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_scorscoedata_sco_ix ON public.mdl_scorm_scoes_data USING btree (scoid); + + +-- +-- TOC entry 9162 (class 1259 OID 21884) +-- Name: mdl_scorscoetrac_sco2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_scorscoetrac_sco2_ix ON public.mdl_scorm_scoes_track USING btree (scoid); + + +-- +-- TOC entry 9163 (class 1259 OID 21883) +-- Name: mdl_scorscoetrac_sco_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_scorscoetrac_sco_ix ON public.mdl_scorm_scoes_track USING btree (scormid); + + +-- +-- TOC entry 9164 (class 1259 OID 21882) +-- Name: mdl_scorscoetrac_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_scorscoetrac_use_ix ON public.mdl_scorm_scoes_track USING btree (userid); + + +-- +-- TOC entry 9165 (class 1259 OID 21881) +-- Name: mdl_scorscoetrac_usescosco_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_scorscoetrac_usescosco_uix ON public.mdl_scorm_scoes_track USING btree (userid, scormid, scoid, attempt, element); + + +-- +-- TOC entry 9172 (class 1259 OID 21917) +-- Name: mdl_scorseqmapi_obj_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_scorseqmapi_obj_ix ON public.mdl_scorm_seq_mapinfo USING btree (objectiveid); + + +-- +-- TOC entry 9173 (class 1259 OID 21916) +-- Name: mdl_scorseqmapi_sco_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_scorseqmapi_sco_ix ON public.mdl_scorm_seq_mapinfo USING btree (scoid); + + +-- +-- TOC entry 9174 (class 1259 OID 21915) +-- Name: mdl_scorseqmapi_scoidobj_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_scorseqmapi_scoidobj_uix ON public.mdl_scorm_seq_mapinfo USING btree (scoid, id, objectiveid); + + +-- +-- TOC entry 9168 (class 1259 OID 21899) +-- Name: mdl_scorseqobje_sco_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_scorseqobje_sco_ix ON public.mdl_scorm_seq_objective USING btree (scoid); + + +-- +-- TOC entry 9169 (class 1259 OID 21898) +-- Name: mdl_scorseqobje_scoid_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_scorseqobje_scoid_uix ON public.mdl_scorm_seq_objective USING btree (scoid, id); + + +-- +-- TOC entry 9190 (class 1259 OID 21979) +-- Name: mdl_scorseqroll_rol_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_scorseqroll_rol_ix ON public.mdl_scorm_seq_rolluprulecond USING btree (rollupruleid); + + +-- +-- TOC entry 9191 (class 1259 OID 21978) +-- Name: mdl_scorseqroll_sco2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_scorseqroll_sco2_ix ON public.mdl_scorm_seq_rolluprulecond USING btree (scoid); + + +-- +-- TOC entry 9186 (class 1259 OID 21964) +-- Name: mdl_scorseqroll_sco_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_scorseqroll_sco_ix ON public.mdl_scorm_seq_rolluprule USING btree (scoid); + + +-- +-- TOC entry 9187 (class 1259 OID 21963) +-- Name: mdl_scorseqroll_scoid_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_scorseqroll_scoid_uix ON public.mdl_scorm_seq_rolluprule USING btree (scoid, id); + + +-- +-- TOC entry 9192 (class 1259 OID 21977) +-- Name: mdl_scorseqroll_scorolid_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_scorseqroll_scorolid_uix ON public.mdl_scorm_seq_rolluprulecond USING btree (scoid, rollupruleid, id); + + +-- +-- TOC entry 9181 (class 1259 OID 21946) +-- Name: mdl_scorseqrule_idscorul_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_scorseqrule_idscorul_uix ON public.mdl_scorm_seq_rulecond USING btree (id, scoid, ruleconditionsid); + + +-- +-- TOC entry 9182 (class 1259 OID 21948) +-- Name: mdl_scorseqrule_rul_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_scorseqrule_rul_ix ON public.mdl_scorm_seq_rulecond USING btree (ruleconditionsid); + + +-- +-- TOC entry 9183 (class 1259 OID 21947) +-- Name: mdl_scorseqrule_sco2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_scorseqrule_sco2_ix ON public.mdl_scorm_seq_rulecond USING btree (scoid); + + +-- +-- TOC entry 9177 (class 1259 OID 21931) +-- Name: mdl_scorseqrule_sco_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_scorseqrule_sco_ix ON public.mdl_scorm_seq_ruleconds USING btree (scoid); + + +-- +-- TOC entry 9178 (class 1259 OID 21930) +-- Name: mdl_scorseqrule_scoid_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_scorseqrule_scoid_uix ON public.mdl_scorm_seq_ruleconds USING btree (scoid, id); + + +-- +-- TOC entry 9381 (class 1259 OID 22758) +-- Name: mdl_search_simpledb_content; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_search_simpledb_content ON public.mdl_search_simpledb_index USING gin (to_tsvector('simple'::regconfig, content)); + + +-- +-- TOC entry 9382 (class 1259 OID 22759) +-- Name: mdl_search_simpledb_description1; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_search_simpledb_description1 ON public.mdl_search_simpledb_index USING gin (to_tsvector('simple'::regconfig, description1)); + + +-- +-- TOC entry 9383 (class 1259 OID 22760) +-- Name: mdl_search_simpledb_description2; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_search_simpledb_description2 ON public.mdl_search_simpledb_index USING gin (to_tsvector('simple'::regconfig, description2)); + + +-- +-- TOC entry 9384 (class 1259 OID 22757) +-- Name: mdl_search_simpledb_title; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_search_simpledb_title ON public.mdl_search_simpledb_index USING gin (to_tsvector('simple'::regconfig, title)); + + +-- +-- TOC entry 8690 (class 1259 OID 19699) +-- Name: mdl_searinderequ_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_searinderequ_con_ix ON public.mdl_search_index_requests USING btree (contextid); + + +-- +-- TOC entry 8693 (class 1259 OID 19698) +-- Name: mdl_searinderequ_indtim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_searinderequ_indtim_ix ON public.mdl_search_index_requests USING btree (indexpriority, timerequested); + + +-- +-- TOC entry 9385 (class 1259 OID 22756) +-- Name: mdl_searsimpinde_doc_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_searsimpinde_doc_uix ON public.mdl_search_simpledb_index USING btree (docid); + + +-- +-- TOC entry 9388 (class 1259 OID 22755) +-- Name: mdl_searsimpinde_owncon_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_searsimpinde_owncon_ix ON public.mdl_search_simpledb_index USING btree (owneruserid, contextid); + + +-- +-- TOC entry 7967 (class 1259 OID 17029) +-- Name: mdl_sess_sid_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_sess_sid_uix ON public.mdl_sessions USING btree (sid); + + +-- +-- TOC entry 7968 (class 1259 OID 17028) +-- Name: mdl_sess_sta_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_sess_sta_ix ON public.mdl_sessions USING btree (state); + + +-- +-- TOC entry 7969 (class 1259 OID 17031) +-- Name: mdl_sess_tim2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_sess_tim2_ix ON public.mdl_sessions USING btree (timemodified); + + +-- +-- TOC entry 7970 (class 1259 OID 17030) +-- Name: mdl_sess_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_sess_tim_ix ON public.mdl_sessions USING btree (timecreated); + + +-- +-- TOC entry 7971 (class 1259 OID 17032) +-- Name: mdl_sess_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_sess_use_ix ON public.mdl_sessions USING btree (userid); + + +-- +-- TOC entry 8010 (class 1259 OID 17195) +-- Name: mdl_statdail_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_statdail_cou_ix ON public.mdl_stats_daily USING btree (courseid); + + +-- +-- TOC entry 8013 (class 1259 OID 17197) +-- Name: mdl_statdail_rol_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_statdail_rol_ix ON public.mdl_stats_daily USING btree (roleid); + + +-- +-- TOC entry 8014 (class 1259 OID 17196) +-- Name: mdl_statdail_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_statdail_tim_ix ON public.mdl_stats_daily USING btree (timeend); + + +-- +-- TOC entry 8020 (class 1259 OID 17229) +-- Name: mdl_statmont_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_statmont_cou_ix ON public.mdl_stats_monthly USING btree (courseid); + + +-- +-- TOC entry 8023 (class 1259 OID 17231) +-- Name: mdl_statmont_rol_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_statmont_rol_ix ON public.mdl_stats_monthly USING btree (roleid); + + +-- +-- TOC entry 8024 (class 1259 OID 17230) +-- Name: mdl_statmont_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_statmont_tim_ix ON public.mdl_stats_monthly USING btree (timeend); + + +-- +-- TOC entry 8025 (class 1259 OID 17247) +-- Name: mdl_statuserdail_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_statuserdail_cou_ix ON public.mdl_stats_user_daily USING btree (courseid); + + +-- +-- TOC entry 8028 (class 1259 OID 17249) +-- Name: mdl_statuserdail_rol_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_statuserdail_rol_ix ON public.mdl_stats_user_daily USING btree (roleid); + + +-- +-- TOC entry 8029 (class 1259 OID 17250) +-- Name: mdl_statuserdail_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_statuserdail_tim_ix ON public.mdl_stats_user_daily USING btree (timeend); + + +-- +-- TOC entry 8030 (class 1259 OID 17248) +-- Name: mdl_statuserdail_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_statuserdail_use_ix ON public.mdl_stats_user_daily USING btree (userid); + + +-- +-- TOC entry 8037 (class 1259 OID 17285) +-- Name: mdl_statusermont_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_statusermont_cou_ix ON public.mdl_stats_user_monthly USING btree (courseid); + + +-- +-- TOC entry 8040 (class 1259 OID 17287) +-- Name: mdl_statusermont_rol_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_statusermont_rol_ix ON public.mdl_stats_user_monthly USING btree (roleid); + + +-- +-- TOC entry 8041 (class 1259 OID 17288) +-- Name: mdl_statusermont_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_statusermont_tim_ix ON public.mdl_stats_user_monthly USING btree (timeend); + + +-- +-- TOC entry 8042 (class 1259 OID 17286) +-- Name: mdl_statusermont_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_statusermont_use_ix ON public.mdl_stats_user_monthly USING btree (userid); + + +-- +-- TOC entry 8031 (class 1259 OID 17266) +-- Name: mdl_statuserweek_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_statuserweek_cou_ix ON public.mdl_stats_user_weekly USING btree (courseid); + + +-- +-- TOC entry 8034 (class 1259 OID 17268) +-- Name: mdl_statuserweek_rol_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_statuserweek_rol_ix ON public.mdl_stats_user_weekly USING btree (roleid); + + +-- +-- TOC entry 8035 (class 1259 OID 17269) +-- Name: mdl_statuserweek_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_statuserweek_tim_ix ON public.mdl_stats_user_weekly USING btree (timeend); + + +-- +-- TOC entry 8036 (class 1259 OID 17267) +-- Name: mdl_statuserweek_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_statuserweek_use_ix ON public.mdl_stats_user_weekly USING btree (userid); + + +-- +-- TOC entry 8015 (class 1259 OID 17212) +-- Name: mdl_statweek_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_statweek_cou_ix ON public.mdl_stats_weekly USING btree (courseid); + + +-- +-- TOC entry 8018 (class 1259 OID 17214) +-- Name: mdl_statweek_rol_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_statweek_rol_ix ON public.mdl_stats_weekly USING btree (roleid); + + +-- +-- TOC entry 8019 (class 1259 OID 17213) +-- Name: mdl_statweek_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_statweek_tim_ix ON public.mdl_stats_weekly USING btree (timeend); + + +-- +-- TOC entry 9197 (class 1259 OID 22019) +-- Name: mdl_surv_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_surv_cou_ix ON public.mdl_survey USING btree (course); + + +-- +-- TOC entry 9209 (class 1259 OID 22068) +-- Name: mdl_survanal_sur_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_survanal_sur_ix ON public.mdl_survey_analysis USING btree (survey); + + +-- +-- TOC entry 9210 (class 1259 OID 22067) +-- Name: mdl_survanal_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_survanal_use_ix ON public.mdl_survey_analysis USING btree (userid); + + +-- +-- TOC entry 9204 (class 1259 OID 22053) +-- Name: mdl_survansw_que_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_survansw_que_ix ON public.mdl_survey_answers USING btree (question); + + +-- +-- TOC entry 9205 (class 1259 OID 22052) +-- Name: mdl_survansw_sur_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_survansw_sur_ix ON public.mdl_survey_answers USING btree (survey); + + +-- +-- TOC entry 9206 (class 1259 OID 22051) +-- Name: mdl_survansw_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_survansw_use_ix ON public.mdl_survey_answers USING btree (userid); + + +-- +-- TOC entry 8287 (class 1259 OID 18218) +-- Name: mdl_tag_tag_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_tag_tag_ix ON public.mdl_tag USING btree (tagcollid); + + +-- +-- TOC entry 8288 (class 1259 OID 18216) +-- Name: mdl_tag_tagiss_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_tag_tagiss_ix ON public.mdl_tag USING btree (tagcollid, isstandard); + + +-- +-- TOC entry 8289 (class 1259 OID 18215) +-- Name: mdl_tag_tagnam_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_tag_tagnam_uix ON public.mdl_tag USING btree (tagcollid, name); + + +-- +-- TOC entry 8290 (class 1259 OID 18217) +-- Name: mdl_tag_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_tag_use_ix ON public.mdl_tag USING btree (userid); + + +-- +-- TOC entry 8281 (class 1259 OID 18197) +-- Name: mdl_tagarea_comite_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_tagarea_comite_uix ON public.mdl_tag_area USING btree (component, itemtype); + + +-- +-- TOC entry 8284 (class 1259 OID 18198) +-- Name: mdl_tagarea_tag_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_tagarea_tag_ix ON public.mdl_tag_area USING btree (tagcollid); + + +-- +-- TOC entry 8293 (class 1259 OID 18230) +-- Name: mdl_tagcorr_tag_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_tagcorr_tag_ix ON public.mdl_tag_correlation USING btree (tagid); + + +-- +-- TOC entry 8294 (class 1259 OID 18244) +-- Name: mdl_taginst_comiteiteconti_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_taginst_comiteiteconti_uix ON public.mdl_tag_instance USING btree (component, itemtype, itemid, contextid, tiuserid, tagid); + + +-- +-- TOC entry 8295 (class 1259 OID 18247) +-- Name: mdl_taginst_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_taginst_con_ix ON public.mdl_tag_instance USING btree (contextid); + + +-- +-- TOC entry 8298 (class 1259 OID 18245) +-- Name: mdl_taginst_itecomtagcon_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_taginst_itecomtagcon_ix ON public.mdl_tag_instance USING btree (itemtype, component, tagid, contextid); + + +-- +-- TOC entry 8299 (class 1259 OID 18246) +-- Name: mdl_taginst_tag_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_taginst_tag_ix ON public.mdl_tag_instance USING btree (tagid); + + +-- +-- TOC entry 8555 (class 1259 OID 19221) +-- Name: mdl_taskadho_nex_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_taskadho_nex_ix ON public.mdl_task_adhoc USING btree (nextruntime); + + +-- +-- TOC entry 8556 (class 1259 OID 19222) +-- Name: mdl_taskadho_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_taskadho_use_ix ON public.mdl_task_adhoc USING btree (userid); + + +-- +-- TOC entry 8557 (class 1259 OID 19236) +-- Name: mdl_tasklog_cla_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_tasklog_cla_ix ON public.mdl_task_log USING btree (classname); + + +-- +-- TOC entry 8560 (class 1259 OID 19237) +-- Name: mdl_tasklog_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_tasklog_tim_ix ON public.mdl_task_log USING btree (timestart); + + +-- +-- TOC entry 8550 (class 1259 OID 19206) +-- Name: mdl_tasksche_cla_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_tasksche_cla_uix ON public.mdl_task_scheduled USING btree (classname); + + +-- +-- TOC entry 9389 (class 1259 OID 22769) +-- Name: mdl_toolcoho_cohroluse_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_toolcoho_cohroluse_uix ON public.mdl_tool_cohortroles USING btree (cohortid, roleid, userid); + + +-- +-- TOC entry 9392 (class 1259 OID 22786) +-- Name: mdl_toolcust_com_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_toolcust_com_ix ON public.mdl_tool_customlang USING btree (componentid); + + +-- +-- TOC entry 9395 (class 1259 OID 22785) +-- Name: mdl_toolcust_lancomstr_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_toolcust_lancomstr_uix ON public.mdl_tool_customlang USING btree (lang, componentid, stringid); + + +-- +-- TOC entry 9418 (class 1259 OID 22885) +-- Name: mdl_tooldatactxe_con_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_tooldatactxe_con_uix ON public.mdl_tool_dataprivacy_ctxexpired USING btree (contextid); + + +-- +-- TOC entry 9408 (class 1259 OID 22861) +-- Name: mdl_tooldatactxi_cat_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_tooldatactxi_cat_ix ON public.mdl_tool_dataprivacy_ctxinstance USING btree (categoryid); + + +-- +-- TOC entry 9409 (class 1259 OID 22859) +-- Name: mdl_tooldatactxi_con_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_tooldatactxi_con_uix ON public.mdl_tool_dataprivacy_ctxinstance USING btree (contextid); + + +-- +-- TOC entry 9412 (class 1259 OID 22860) +-- Name: mdl_tooldatactxi_pur_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_tooldatactxi_pur_ix ON public.mdl_tool_dataprivacy_ctxinstance USING btree (purposeid); + + +-- +-- TOC entry 9413 (class 1259 OID 22871) +-- Name: mdl_tooldatactxl_cat_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_tooldatactxl_cat_ix ON public.mdl_tool_dataprivacy_ctxlevel USING btree (categoryid); + + +-- +-- TOC entry 9414 (class 1259 OID 22870) +-- Name: mdl_tooldatactxl_con_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_tooldatactxl_con_uix ON public.mdl_tool_dataprivacy_ctxlevel USING btree (contextlevel); + + +-- +-- TOC entry 9417 (class 1259 OID 22872) +-- Name: mdl_tooldatactxl_pur_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_tooldatactxl_pur_ix ON public.mdl_tool_dataprivacy_ctxlevel USING btree (purposeid); + + +-- +-- TOC entry 9423 (class 1259 OID 22899) +-- Name: mdl_tooldatapurp_pur_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_tooldatapurp_pur_ix ON public.mdl_tool_dataprivacy_purposerole USING btree (purposeid); + + +-- +-- TOC entry 9424 (class 1259 OID 22898) +-- Name: mdl_tooldatapurp_purrol_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_tooldatapurp_purrol_uix ON public.mdl_tool_dataprivacy_purposerole USING btree (purposeid, roleid); + + +-- +-- TOC entry 9425 (class 1259 OID 22900) +-- Name: mdl_tooldatapurp_rol_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_tooldatapurp_rol_ix ON public.mdl_tool_dataprivacy_purposerole USING btree (roleid); + + +-- +-- TOC entry 9398 (class 1259 OID 22824) +-- Name: mdl_tooldatarequ_dpo_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_tooldatarequ_dpo_ix ON public.mdl_tool_dataprivacy_request USING btree (dpo); + + +-- +-- TOC entry 9401 (class 1259 OID 22823) +-- Name: mdl_tooldatarequ_req_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_tooldatarequ_req_ix ON public.mdl_tool_dataprivacy_request USING btree (requestedby); + + +-- +-- TOC entry 9402 (class 1259 OID 22825) +-- Name: mdl_tooldatarequ_use2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_tooldatarequ_use2_ix ON public.mdl_tool_dataprivacy_request USING btree (usermodified); + + +-- +-- TOC entry 9403 (class 1259 OID 22822) +-- Name: mdl_tooldatarequ_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_tooldatarequ_use_ix ON public.mdl_tool_dataprivacy_request USING btree (userid); + + +-- +-- TOC entry 9436 (class 1259 OID 22938) +-- Name: mdl_toolmonihist_sid_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_toolmonihist_sid_ix ON public.mdl_tool_monitor_history USING btree (sid); + + +-- +-- TOC entry 9437 (class 1259 OID 22937) +-- Name: mdl_toolmonihist_sidusetim_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_toolmonihist_sidusetim_uix ON public.mdl_tool_monitor_history USING btree (sid, userid, timesent); + + +-- +-- TOC entry 9426 (class 1259 OID 22915) +-- Name: mdl_toolmonirule_couuse_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_toolmonirule_couuse_ix ON public.mdl_tool_monitor_rules USING btree (courseid, userid); + + +-- +-- TOC entry 9427 (class 1259 OID 22916) +-- Name: mdl_toolmonirule_eve_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_toolmonirule_eve_ix ON public.mdl_tool_monitor_rules USING btree (eventname); + + +-- +-- TOC entry 9430 (class 1259 OID 22927) +-- Name: mdl_toolmonisubs_couuse_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_toolmonisubs_couuse_ix ON public.mdl_tool_monitor_subscriptions USING btree (courseid, userid); + + +-- +-- TOC entry 9433 (class 1259 OID 22928) +-- Name: mdl_toolmonisubs_rul_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_toolmonisubs_rul_ix ON public.mdl_tool_monitor_subscriptions USING btree (ruleid); + + +-- +-- TOC entry 9440 (class 1259 OID 22961) +-- Name: mdl_toolpoli_cur_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_toolpoli_cur_ix ON public.mdl_tool_policy USING btree (currentversionid); + + +-- +-- TOC entry 9449 (class 1259 OID 22994) +-- Name: mdl_toolpoliacce_pol_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_toolpoliacce_pol_ix ON public.mdl_tool_policy_acceptances USING btree (policyversionid); + + +-- +-- TOC entry 9450 (class 1259 OID 22997) +-- Name: mdl_toolpoliacce_poluse_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_toolpoliacce_poluse_uix ON public.mdl_tool_policy_acceptances USING btree (policyversionid, userid); + + +-- +-- TOC entry 9451 (class 1259 OID 22996) +-- Name: mdl_toolpoliacce_use2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_toolpoliacce_use2_ix ON public.mdl_tool_policy_acceptances USING btree (usermodified); + + +-- +-- TOC entry 9452 (class 1259 OID 22995) +-- Name: mdl_toolpoliacce_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_toolpoliacce_use_ix ON public.mdl_tool_policy_acceptances USING btree (userid); + + +-- +-- TOC entry 9445 (class 1259 OID 22981) +-- Name: mdl_toolpolivers_pol_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_toolpolivers_pol_ix ON public.mdl_tool_policy_versions USING btree (policyid); + + +-- +-- TOC entry 9446 (class 1259 OID 22980) +-- Name: mdl_toolpolivers_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_toolpolivers_use_ix ON public.mdl_tool_policy_versions USING btree (usermodified); + + +-- +-- TOC entry 9457 (class 1259 OID 23023) +-- Name: mdl_toolrecycate_cat_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_toolrecycate_cat_ix ON public.mdl_tool_recyclebin_category USING btree (categoryid); + + +-- +-- TOC entry 9460 (class 1259 OID 23022) +-- Name: mdl_toolrecycate_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_toolrecycate_tim_ix ON public.mdl_tool_recyclebin_category USING btree (timecreated); + + +-- +-- TOC entry 9453 (class 1259 OID 23008) +-- Name: mdl_toolrecycour_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_toolrecycour_cou_ix ON public.mdl_tool_recyclebin_course USING btree (courseid); + + +-- +-- TOC entry 9456 (class 1259 OID 23007) +-- Name: mdl_toolrecycour_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_toolrecycour_tim_ix ON public.mdl_tool_recyclebin_course USING btree (timecreated); + + +-- +-- TOC entry 9465 (class 1259 OID 23051) +-- Name: mdl_tooluserstep_tou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_tooluserstep_tou_ix ON public.mdl_tool_usertours_steps USING btree (tourid); + + +-- +-- TOC entry 9466 (class 1259 OID 23050) +-- Name: mdl_tooluserstep_tousor_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_tooluserstep_tousor_ix ON public.mdl_tool_usertours_steps USING btree (tourid, sortorder); + + +-- +-- TOC entry 7803 (class 1259 OID 16438) +-- Name: mdl_upgrlog_tim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_upgrlog_tim_ix ON public.mdl_upgrade_log USING btree (timemodified); + + +-- +-- TOC entry 7804 (class 1259 OID 16439) +-- Name: mdl_upgrlog_typtim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_upgrlog_typtim_ix ON public.mdl_upgrade_log USING btree (type, timemodified); + + +-- +-- TOC entry 7805 (class 1259 OID 16440) +-- Name: mdl_upgrlog_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_upgrlog_use_ix ON public.mdl_upgrade_log USING btree (userid); + + +-- +-- TOC entry 9211 (class 1259 OID 22085) +-- Name: mdl_url_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_url_cou_ix ON public.mdl_url USING btree (course); + + +-- +-- TOC entry 7972 (class 1259 OID 17104) +-- Name: mdl_user_alt_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_user_alt_ix ON public.mdl_user USING btree (alternatename); + + +-- +-- TOC entry 7973 (class 1259 OID 17099) +-- Name: mdl_user_aut_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_user_aut_ix ON public.mdl_user USING btree (auth); + + +-- +-- TOC entry 7974 (class 1259 OID 17095) +-- Name: mdl_user_cit_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_user_cit_ix ON public.mdl_user USING btree (city); + + +-- +-- TOC entry 7975 (class 1259 OID 17092) +-- Name: mdl_user_con_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_user_con_ix ON public.mdl_user USING btree (confirmed); + + +-- +-- TOC entry 7976 (class 1259 OID 17096) +-- Name: mdl_user_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_user_cou_ix ON public.mdl_user USING btree (country); + + +-- +-- TOC entry 7977 (class 1259 OID 17091) +-- Name: mdl_user_del_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_user_del_ix ON public.mdl_user USING btree (deleted); + + +-- +-- TOC entry 7978 (class 1259 OID 17098) +-- Name: mdl_user_ema_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_user_ema_ix ON public.mdl_user USING btree (email); + + +-- +-- TOC entry 7979 (class 1259 OID 17101) +-- Name: mdl_user_fir2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_user_fir2_ix ON public.mdl_user USING btree (firstnamephonetic); + + +-- +-- TOC entry 7980 (class 1259 OID 17093) +-- Name: mdl_user_fir_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_user_fir_ix ON public.mdl_user USING btree (firstname); + + +-- +-- TOC entry 7983 (class 1259 OID 17100) +-- Name: mdl_user_idn_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_user_idn_ix ON public.mdl_user USING btree (idnumber); + + +-- +-- TOC entry 7984 (class 1259 OID 17097) +-- Name: mdl_user_las2_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_user_las2_ix ON public.mdl_user USING btree (lastaccess); + + +-- +-- TOC entry 7985 (class 1259 OID 17102) +-- Name: mdl_user_las3_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_user_las3_ix ON public.mdl_user USING btree (lastnamephonetic); + + +-- +-- TOC entry 7986 (class 1259 OID 17094) +-- Name: mdl_user_las_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_user_las_ix ON public.mdl_user USING btree (lastname); + + +-- +-- TOC entry 7987 (class 1259 OID 17103) +-- Name: mdl_user_mid_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_user_mid_ix ON public.mdl_user USING btree (middlename); + + +-- +-- TOC entry 7988 (class 1259 OID 17090) +-- Name: mdl_user_mneuse_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_user_mneuse_uix ON public.mdl_user USING btree (mnethostid, username); + + +-- +-- TOC entry 8539 (class 1259 OID 19160) +-- Name: mdl_userdevi_pususe_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_userdevi_pususe_uix ON public.mdl_user_devices USING btree (pushid, userid); + + +-- +-- TOC entry 8540 (class 1259 OID 19161) +-- Name: mdl_userdevi_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_userdevi_use_ix ON public.mdl_user_devices USING btree (userid); + + +-- +-- TOC entry 8541 (class 1259 OID 19159) +-- Name: mdl_userdevi_uuiuse_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_userdevi_uuiuse_ix ON public.mdl_user_devices USING btree (uuid, userid); + + +-- +-- TOC entry 7840 (class 1259 OID 16605) +-- Name: mdl_userenro_enr_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_userenro_enr_ix ON public.mdl_user_enrolments USING btree (enrolid); + + +-- +-- TOC entry 7841 (class 1259 OID 16604) +-- Name: mdl_userenro_enruse_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_userenro_enruse_uix ON public.mdl_user_enrolments USING btree (enrolid, userid); + + +-- +-- TOC entry 7844 (class 1259 OID 16607) +-- Name: mdl_userenro_mod_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_userenro_mod_ix ON public.mdl_user_enrolments USING btree (modifierid); + + +-- +-- TOC entry 7845 (class 1259 OID 16606) +-- Name: mdl_userenro_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_userenro_use_ix ON public.mdl_user_enrolments USING btree (userid); + + +-- +-- TOC entry 8116 (class 1259 OID 17533) +-- Name: mdl_userinfodata_usefie_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_userinfodata_usefie_uix ON public.mdl_user_info_data USING btree (userid, fieldid); + + +-- +-- TOC entry 7992 (class 1259 OID 17133) +-- Name: mdl_userlast_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_userlast_cou_ix ON public.mdl_user_lastaccess USING btree (courseid); + + +-- +-- TOC entry 7995 (class 1259 OID 17132) +-- Name: mdl_userlast_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_userlast_use_ix ON public.mdl_user_lastaccess USING btree (userid); + + +-- +-- TOC entry 7996 (class 1259 OID 17131) +-- Name: mdl_userlast_usecou_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_userlast_usecou_uix ON public.mdl_user_lastaccess USING btree (userid, courseid); + + +-- +-- TOC entry 7999 (class 1259 OID 17143) +-- Name: mdl_userpasshist_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_userpasshist_use_ix ON public.mdl_user_password_history USING btree (userid); + + +-- +-- TOC entry 8544 (class 1259 OID 19172) +-- Name: mdl_userpassrese_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_userpassrese_use_ix ON public.mdl_user_password_resets USING btree (userid); + + +-- +-- TOC entry 7991 (class 1259 OID 17119) +-- Name: mdl_userpref_usenam_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_userpref_usenam_uix ON public.mdl_user_preferences USING btree (userid, name); + + +-- +-- TOC entry 8327 (class 1259 OID 18358) +-- Name: mdl_userprivkey_scrval_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_userprivkey_scrval_ix ON public.mdl_user_private_key USING btree (script, value); + + +-- +-- TOC entry 8328 (class 1259 OID 18359) +-- Name: mdl_userprivkey_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_userprivkey_use_ix ON public.mdl_user_private_key USING btree (userid); + + +-- +-- TOC entry 9214 (class 1259 OID 22108) +-- Name: mdl_wiki_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_wiki_cou_ix ON public.mdl_wiki USING btree (course); + + +-- +-- TOC entry 9231 (class 1259 OID 22183) +-- Name: mdl_wikilink_fro_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_wikilink_fro_ix ON public.mdl_wiki_links USING btree (frompageid); + + +-- +-- TOC entry 9234 (class 1259 OID 22184) +-- Name: mdl_wikilink_sub_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_wikilink_sub_ix ON public.mdl_wiki_links USING btree (subwikiid); + + +-- +-- TOC entry 9223 (class 1259 OID 22142) +-- Name: mdl_wikipage_sub_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_wikipage_sub_ix ON public.mdl_wiki_pages USING btree (subwikiid); + + +-- +-- TOC entry 9224 (class 1259 OID 22141) +-- Name: mdl_wikipage_subtituse_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_wikipage_subtituse_uix ON public.mdl_wiki_pages USING btree (subwikiid, title, userid); + + +-- +-- TOC entry 9219 (class 1259 OID 22120) +-- Name: mdl_wikisubw_wik_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_wikisubw_wik_ix ON public.mdl_wiki_subwikis USING btree (wikiid); + + +-- +-- TOC entry 9220 (class 1259 OID 22121) +-- Name: mdl_wikisubw_wikgrouse_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_wikisubw_wikgrouse_uix ON public.mdl_wiki_subwikis USING btree (wikiid, groupid, userid); + + +-- +-- TOC entry 9230 (class 1259 OID 22171) +-- Name: mdl_wikisyno_pagpag_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_wikisyno_pagpag_uix ON public.mdl_wiki_synonyms USING btree (pageid, pagesynonym); + + +-- +-- TOC entry 9227 (class 1259 OID 22159) +-- Name: mdl_wikivers_pag_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_wikivers_pag_ix ON public.mdl_wiki_versions USING btree (pageid); + + +-- +-- TOC entry 9237 (class 1259 OID 22235) +-- Name: mdl_work_cou_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_work_cou_ix ON public.mdl_workshop USING btree (course); + + +-- +-- TOC entry 9521 (class 1259 OID 23273) +-- Name: mdl_workaccu_wor_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_workaccu_wor_ix ON public.mdl_workshopform_accumulative USING btree (workshopid); + + +-- +-- TOC entry 9256 (class 1259 OID 22302) +-- Name: mdl_workaggr_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_workaggr_use_ix ON public.mdl_workshop_aggregations USING btree (userid); + + +-- +-- TOC entry 9257 (class 1259 OID 22301) +-- Name: mdl_workaggr_wor_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_workaggr_wor_ix ON public.mdl_workshop_aggregations USING btree (workshopid); + + +-- +-- TOC entry 9258 (class 1259 OID 22303) +-- Name: mdl_workaggr_woruse_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_workaggr_woruse_uix ON public.mdl_workshop_aggregations USING btree (workshopid, userid); + + +-- +-- TOC entry 9245 (class 1259 OID 22276) +-- Name: mdl_workasse_gra_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_workasse_gra_ix ON public.mdl_workshop_assessments USING btree (gradinggradeoverby); + + +-- +-- TOC entry 9248 (class 1259 OID 22277) +-- Name: mdl_workasse_rev_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_workasse_rev_ix ON public.mdl_workshop_assessments USING btree (reviewerid); + + +-- +-- TOC entry 9249 (class 1259 OID 22275) +-- Name: mdl_workasse_sub_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_workasse_sub_ix ON public.mdl_workshop_assessments USING btree (submissionid); + + +-- +-- TOC entry 9546 (class 1259 OID 23372) +-- Name: mdl_workbestsett_wor_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_workbestsett_wor_uix ON public.mdl_workshopeval_best_settings USING btree (workshopid); + + +-- +-- TOC entry 9524 (class 1259 OID 23287) +-- Name: mdl_workcomm_wor_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_workcomm_wor_ix ON public.mdl_workshopform_comments USING btree (workshopid); + + +-- +-- TOC entry 9250 (class 1259 OID 22291) +-- Name: mdl_workgrad_ass_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_workgrad_ass_ix ON public.mdl_workshop_grades USING btree (assessmentid); + + +-- +-- TOC entry 9251 (class 1259 OID 22292) +-- Name: mdl_workgrad_assstrdim_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_workgrad_assstrdim_uix ON public.mdl_workshop_grades USING btree (assessmentid, strategy, dimensionid); + + +-- +-- TOC entry 9527 (class 1259 OID 23302) +-- Name: mdl_worknume_wor_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_worknume_wor_ix ON public.mdl_workshopform_numerrors USING btree (workshopid); + + +-- +-- TOC entry 9530 (class 1259 OID 23311) +-- Name: mdl_worknumemap_wor_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_worknumemap_wor_ix ON public.mdl_workshopform_numerrors_map USING btree (workshopid); + + +-- +-- TOC entry 9531 (class 1259 OID 23312) +-- Name: mdl_worknumemap_wornon_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_worknumemap_wornon_uix ON public.mdl_workshopform_numerrors_map USING btree (workshopid, nonegative); + + +-- +-- TOC entry 9534 (class 1259 OID 23326) +-- Name: mdl_workrubr_wor_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_workrubr_wor_ix ON public.mdl_workshopform_rubric USING btree (workshopid); + + +-- +-- TOC entry 9540 (class 1259 OID 23349) +-- Name: mdl_workrubrconf_wor_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_workrubrconf_wor_uix ON public.mdl_workshopform_rubric_config USING btree (workshopid); + + +-- +-- TOC entry 9535 (class 1259 OID 23339) +-- Name: mdl_workrubrleve_dim_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_workrubrleve_dim_ix ON public.mdl_workshopform_rubric_levels USING btree (dimensionid); + + +-- +-- TOC entry 9543 (class 1259 OID 23362) +-- Name: mdl_worksche_wor_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_worksche_wor_uix ON public.mdl_workshopallocation_scheduled USING btree (workshopid); + + +-- +-- TOC entry 9240 (class 1259 OID 22257) +-- Name: mdl_worksubm_aut_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_worksubm_aut_ix ON public.mdl_workshop_submissions USING btree (authorid); + + +-- +-- TOC entry 9241 (class 1259 OID 22256) +-- Name: mdl_worksubm_gra_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_worksubm_gra_ix ON public.mdl_workshop_submissions USING btree (gradeoverby); + + +-- +-- TOC entry 9244 (class 1259 OID 22255) +-- Name: mdl_worksubm_wor_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_worksubm_wor_ix ON public.mdl_workshop_submissions USING btree (workshopid); + + +-- Completed on 2021-01-05 23:30:09 UTC + +-- +-- PostgreSQL database dump complete +-- + From 986d0daa42264aa91efc0a6a38099c2d69f6cd12 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 6 Jan 2021 07:39:39 -0800 Subject: [PATCH 018/129] Re-imaged the database --- .../templates/moodle_database_template.dump | 9541 +++++++++-------- 1 file changed, 4773 insertions(+), 4768 deletions(-) diff --git a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump index 8b06c84a..fe6c89b7 100644 --- a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump +++ b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump @@ -5,7 +5,7 @@ -- Dumped from database version 9.6.20 -- Dumped by pg_dump version 9.6.20 --- Started on 2021-01-05 23:30:08 UTC +-- Started on 2021-01-06 00:24:07 UTC SET statement_timeout = 0; SET lock_timeout = 0; @@ -40,7 +40,7 @@ SET default_tablespace = ''; SET default_with_oids = false; -- --- TOC entry 593 (class 1259 OID 19636) +-- TOC entry 185 (class 1259 OID 58912) -- Name: mdl_analytics_indicator_calc; Type: TABLE; Schema: public; Owner: postgres -- @@ -61,7 +61,7 @@ ALTER TABLE public.mdl_analytics_indicator_calc OWNER TO postgres; -- -- TOC entry 10533 (class 0 OID 0) --- Dependencies: 593 +-- Dependencies: 185 -- Name: TABLE mdl_analytics_indicator_calc; Type: COMMENT; Schema: public; Owner: postgres -- @@ -69,7 +69,7 @@ COMMENT ON TABLE public.mdl_analytics_indicator_calc IS 'Stored indicator calcul -- --- TOC entry 592 (class 1259 OID 19634) +-- TOC entry 186 (class 1259 OID 58920) -- Name: mdl_analytics_indicator_calc_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -85,7 +85,7 @@ ALTER TABLE public.mdl_analytics_indicator_calc_id_seq OWNER TO postgres; -- -- TOC entry 10534 (class 0 OID 0) --- Dependencies: 592 +-- Dependencies: 186 -- Name: mdl_analytics_indicator_calc_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -93,7 +93,7 @@ ALTER SEQUENCE public.mdl_analytics_indicator_calc_id_seq OWNED BY public.mdl_an -- --- TOC entry 581 (class 1259 OID 19545) +-- TOC entry 187 (class 1259 OID 58922) -- Name: mdl_analytics_models; Type: TABLE; Schema: public; Owner: postgres -- @@ -118,7 +118,7 @@ ALTER TABLE public.mdl_analytics_models OWNER TO postgres; -- -- TOC entry 10535 (class 0 OID 0) --- Dependencies: 581 +-- Dependencies: 187 -- Name: TABLE mdl_analytics_models; Type: COMMENT; Schema: public; Owner: postgres -- @@ -126,7 +126,7 @@ COMMENT ON TABLE public.mdl_analytics_models IS 'Analytic models.'; -- --- TOC entry 580 (class 1259 OID 19543) +-- TOC entry 188 (class 1259 OID 58931) -- Name: mdl_analytics_models_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -142,7 +142,7 @@ ALTER TABLE public.mdl_analytics_models_id_seq OWNER TO postgres; -- -- TOC entry 10536 (class 0 OID 0) --- Dependencies: 580 +-- Dependencies: 188 -- Name: mdl_analytics_models_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -150,7 +150,7 @@ ALTER SEQUENCE public.mdl_analytics_models_id_seq OWNED BY public.mdl_analytics_ -- --- TOC entry 583 (class 1259 OID 19560) +-- TOC entry 189 (class 1259 OID 58933) -- Name: mdl_analytics_models_log; Type: TABLE; Schema: public; Owner: postgres -- @@ -174,7 +174,7 @@ ALTER TABLE public.mdl_analytics_models_log OWNER TO postgres; -- -- TOC entry 10537 (class 0 OID 0) --- Dependencies: 583 +-- Dependencies: 189 -- Name: TABLE mdl_analytics_models_log; Type: COMMENT; Schema: public; Owner: postgres -- @@ -182,7 +182,7 @@ COMMENT ON TABLE public.mdl_analytics_models_log IS 'Analytic models changes dur -- --- TOC entry 582 (class 1259 OID 19558) +-- TOC entry 190 (class 1259 OID 58942) -- Name: mdl_analytics_models_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -198,7 +198,7 @@ ALTER TABLE public.mdl_analytics_models_log_id_seq OWNER TO postgres; -- -- TOC entry 10538 (class 0 OID 0) --- Dependencies: 582 +-- Dependencies: 190 -- Name: mdl_analytics_models_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -206,7 +206,7 @@ ALTER SEQUENCE public.mdl_analytics_models_log_id_seq OWNED BY public.mdl_analyt -- --- TOC entry 589 (class 1259 OID 19605) +-- TOC entry 191 (class 1259 OID 58944) -- Name: mdl_analytics_predict_samples; Type: TABLE; Schema: public; Owner: postgres -- @@ -226,7 +226,7 @@ ALTER TABLE public.mdl_analytics_predict_samples OWNER TO postgres; -- -- TOC entry 10539 (class 0 OID 0) --- Dependencies: 589 +-- Dependencies: 191 -- Name: TABLE mdl_analytics_predict_samples; Type: COMMENT; Schema: public; Owner: postgres -- @@ -234,7 +234,7 @@ COMMENT ON TABLE public.mdl_analytics_predict_samples IS 'Samples already used f -- --- TOC entry 588 (class 1259 OID 19603) +-- TOC entry 192 (class 1259 OID 58953) -- Name: mdl_analytics_predict_samples_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -250,7 +250,7 @@ ALTER TABLE public.mdl_analytics_predict_samples_id_seq OWNER TO postgres; -- -- TOC entry 10540 (class 0 OID 0) --- Dependencies: 588 +-- Dependencies: 192 -- Name: mdl_analytics_predict_samples_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -258,7 +258,7 @@ ALTER SEQUENCE public.mdl_analytics_predict_samples_id_seq OWNED BY public.mdl_a -- --- TOC entry 595 (class 1259 OID 19651) +-- TOC entry 193 (class 1259 OID 58955) -- Name: mdl_analytics_prediction_actions; Type: TABLE; Schema: public; Owner: postgres -- @@ -275,7 +275,7 @@ ALTER TABLE public.mdl_analytics_prediction_actions OWNER TO postgres; -- -- TOC entry 10541 (class 0 OID 0) --- Dependencies: 595 +-- Dependencies: 193 -- Name: TABLE mdl_analytics_prediction_actions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -283,7 +283,7 @@ COMMENT ON TABLE public.mdl_analytics_prediction_actions IS 'Register of user ac -- --- TOC entry 594 (class 1259 OID 19649) +-- TOC entry 194 (class 1259 OID 58959) -- Name: mdl_analytics_prediction_actions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -299,7 +299,7 @@ ALTER TABLE public.mdl_analytics_prediction_actions_id_seq OWNER TO postgres; -- -- TOC entry 10542 (class 0 OID 0) --- Dependencies: 594 +-- Dependencies: 194 -- Name: mdl_analytics_prediction_actions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -307,7 +307,7 @@ ALTER SEQUENCE public.mdl_analytics_prediction_actions_id_seq OWNED BY public.md -- --- TOC entry 585 (class 1259 OID 19575) +-- TOC entry 195 (class 1259 OID 58961) -- Name: mdl_analytics_predictions; Type: TABLE; Schema: public; Owner: postgres -- @@ -330,7 +330,7 @@ ALTER TABLE public.mdl_analytics_predictions OWNER TO postgres; -- -- TOC entry 10543 (class 0 OID 0) --- Dependencies: 585 +-- Dependencies: 195 -- Name: TABLE mdl_analytics_predictions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -338,7 +338,7 @@ COMMENT ON TABLE public.mdl_analytics_predictions IS 'Predictions'; -- --- TOC entry 584 (class 1259 OID 19573) +-- TOC entry 196 (class 1259 OID 58968) -- Name: mdl_analytics_predictions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -354,7 +354,7 @@ ALTER TABLE public.mdl_analytics_predictions_id_seq OWNER TO postgres; -- -- TOC entry 10544 (class 0 OID 0) --- Dependencies: 584 +-- Dependencies: 196 -- Name: mdl_analytics_predictions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -362,7 +362,7 @@ ALTER SEQUENCE public.mdl_analytics_predictions_id_seq OWNED BY public.mdl_analy -- --- TOC entry 587 (class 1259 OID 19590) +-- TOC entry 197 (class 1259 OID 58970) -- Name: mdl_analytics_train_samples; Type: TABLE; Schema: public; Owner: postgres -- @@ -380,7 +380,7 @@ ALTER TABLE public.mdl_analytics_train_samples OWNER TO postgres; -- -- TOC entry 10545 (class 0 OID 0) --- Dependencies: 587 +-- Dependencies: 197 -- Name: TABLE mdl_analytics_train_samples; Type: COMMENT; Schema: public; Owner: postgres -- @@ -388,7 +388,7 @@ COMMENT ON TABLE public.mdl_analytics_train_samples IS 'Samples used for trainin -- --- TOC entry 586 (class 1259 OID 19588) +-- TOC entry 198 (class 1259 OID 58978) -- Name: mdl_analytics_train_samples_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -404,7 +404,7 @@ ALTER TABLE public.mdl_analytics_train_samples_id_seq OWNER TO postgres; -- -- TOC entry 10546 (class 0 OID 0) --- Dependencies: 586 +-- Dependencies: 198 -- Name: mdl_analytics_train_samples_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -412,7 +412,7 @@ ALTER SEQUENCE public.mdl_analytics_train_samples_id_seq OWNED BY public.mdl_ana -- --- TOC entry 599 (class 1259 OID 19675) +-- TOC entry 199 (class 1259 OID 58980) -- Name: mdl_analytics_used_analysables; Type: TABLE; Schema: public; Owner: postgres -- @@ -430,7 +430,7 @@ ALTER TABLE public.mdl_analytics_used_analysables OWNER TO postgres; -- -- TOC entry 10547 (class 0 OID 0) --- Dependencies: 599 +-- Dependencies: 199 -- Name: TABLE mdl_analytics_used_analysables; Type: COMMENT; Schema: public; Owner: postgres -- @@ -438,7 +438,7 @@ COMMENT ON TABLE public.mdl_analytics_used_analysables IS 'List of analysables u -- --- TOC entry 598 (class 1259 OID 19673) +-- TOC entry 200 (class 1259 OID 58984) -- Name: mdl_analytics_used_analysables_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -454,7 +454,7 @@ ALTER TABLE public.mdl_analytics_used_analysables_id_seq OWNER TO postgres; -- -- TOC entry 10548 (class 0 OID 0) --- Dependencies: 598 +-- Dependencies: 200 -- Name: mdl_analytics_used_analysables_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -462,7 +462,7 @@ ALTER SEQUENCE public.mdl_analytics_used_analysables_id_seq OWNED BY public.mdl_ -- --- TOC entry 591 (class 1259 OID 19621) +-- TOC entry 201 (class 1259 OID 58986) -- Name: mdl_analytics_used_files; Type: TABLE; Schema: public; Owner: postgres -- @@ -479,7 +479,7 @@ ALTER TABLE public.mdl_analytics_used_files OWNER TO postgres; -- -- TOC entry 10549 (class 0 OID 0) --- Dependencies: 591 +-- Dependencies: 201 -- Name: TABLE mdl_analytics_used_files; Type: COMMENT; Schema: public; Owner: postgres -- @@ -487,7 +487,7 @@ COMMENT ON TABLE public.mdl_analytics_used_files IS 'Files that have already bee -- --- TOC entry 590 (class 1259 OID 19619) +-- TOC entry 202 (class 1259 OID 58993) -- Name: mdl_analytics_used_files_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -503,7 +503,7 @@ ALTER TABLE public.mdl_analytics_used_files_id_seq OWNER TO postgres; -- -- TOC entry 10550 (class 0 OID 0) --- Dependencies: 590 +-- Dependencies: 202 -- Name: mdl_analytics_used_files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -511,7 +511,7 @@ ALTER SEQUENCE public.mdl_analytics_used_files_id_seq OWNED BY public.mdl_analyt -- --- TOC entry 671 (class 1259 OID 20234) +-- TOC entry 203 (class 1259 OID 58995) -- Name: mdl_assign; Type: TABLE; Schema: public; Owner: postgres -- @@ -553,7 +553,7 @@ ALTER TABLE public.mdl_assign OWNER TO postgres; -- -- TOC entry 10551 (class 0 OID 0) --- Dependencies: 671 +-- Dependencies: 203 -- Name: TABLE mdl_assign; Type: COMMENT; Schema: public; Owner: postgres -- @@ -561,7 +561,7 @@ COMMENT ON TABLE public.mdl_assign IS 'This table saves information about an ins -- --- TOC entry 675 (class 1259 OID 20295) +-- TOC entry 204 (class 1259 OID 59029) -- Name: mdl_assign_grades; Type: TABLE; Schema: public; Owner: postgres -- @@ -581,7 +581,7 @@ ALTER TABLE public.mdl_assign_grades OWNER TO postgres; -- -- TOC entry 10552 (class 0 OID 0) --- Dependencies: 675 +-- Dependencies: 204 -- Name: TABLE mdl_assign_grades; Type: COMMENT; Schema: public; Owner: postgres -- @@ -589,7 +589,7 @@ COMMENT ON TABLE public.mdl_assign_grades IS 'Grading information about a single -- --- TOC entry 674 (class 1259 OID 20293) +-- TOC entry 205 (class 1259 OID 59039) -- Name: mdl_assign_grades_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -605,7 +605,7 @@ ALTER TABLE public.mdl_assign_grades_id_seq OWNER TO postgres; -- -- TOC entry 10553 (class 0 OID 0) --- Dependencies: 674 +-- Dependencies: 205 -- Name: mdl_assign_grades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -613,7 +613,7 @@ ALTER SEQUENCE public.mdl_assign_grades_id_seq OWNED BY public.mdl_assign_grades -- --- TOC entry 670 (class 1259 OID 20232) +-- TOC entry 206 (class 1259 OID 59041) -- Name: mdl_assign_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -629,7 +629,7 @@ ALTER TABLE public.mdl_assign_id_seq OWNER TO postgres; -- -- TOC entry 10554 (class 0 OID 0) --- Dependencies: 670 +-- Dependencies: 206 -- Name: mdl_assign_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -637,7 +637,7 @@ ALTER SEQUENCE public.mdl_assign_id_seq OWNED BY public.mdl_assign.id; -- --- TOC entry 683 (class 1259 OID 20362) +-- TOC entry 207 (class 1259 OID 59043) -- Name: mdl_assign_overrides; Type: TABLE; Schema: public; Owner: postgres -- @@ -657,7 +657,7 @@ ALTER TABLE public.mdl_assign_overrides OWNER TO postgres; -- -- TOC entry 10555 (class 0 OID 0) --- Dependencies: 683 +-- Dependencies: 207 -- Name: TABLE mdl_assign_overrides; Type: COMMENT; Schema: public; Owner: postgres -- @@ -665,7 +665,7 @@ COMMENT ON TABLE public.mdl_assign_overrides IS 'The overrides to assign setting -- --- TOC entry 682 (class 1259 OID 20360) +-- TOC entry 208 (class 1259 OID 59047) -- Name: mdl_assign_overrides_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -681,7 +681,7 @@ ALTER TABLE public.mdl_assign_overrides_id_seq OWNER TO postgres; -- -- TOC entry 10556 (class 0 OID 0) --- Dependencies: 682 +-- Dependencies: 208 -- Name: mdl_assign_overrides_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -689,7 +689,7 @@ ALTER SEQUENCE public.mdl_assign_overrides_id_seq OWNED BY public.mdl_assign_ove -- --- TOC entry 677 (class 1259 OID 20314) +-- TOC entry 209 (class 1259 OID 59049) -- Name: mdl_assign_plugin_config; Type: TABLE; Schema: public; Owner: postgres -- @@ -707,7 +707,7 @@ ALTER TABLE public.mdl_assign_plugin_config OWNER TO postgres; -- -- TOC entry 10557 (class 0 OID 0) --- Dependencies: 677 +-- Dependencies: 209 -- Name: TABLE mdl_assign_plugin_config; Type: COMMENT; Schema: public; Owner: postgres -- @@ -715,7 +715,7 @@ COMMENT ON TABLE public.mdl_assign_plugin_config IS 'Config data for an instance -- --- TOC entry 676 (class 1259 OID 20312) +-- TOC entry 210 (class 1259 OID 59059) -- Name: mdl_assign_plugin_config_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -731,7 +731,7 @@ ALTER TABLE public.mdl_assign_plugin_config_id_seq OWNER TO postgres; -- -- TOC entry 10558 (class 0 OID 0) --- Dependencies: 676 +-- Dependencies: 210 -- Name: mdl_assign_plugin_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -739,7 +739,7 @@ ALTER SEQUENCE public.mdl_assign_plugin_config_id_seq OWNED BY public.mdl_assign -- --- TOC entry 673 (class 1259 OID 20275) +-- TOC entry 211 (class 1259 OID 59061) -- Name: mdl_assign_submission; Type: TABLE; Schema: public; Owner: postgres -- @@ -760,7 +760,7 @@ ALTER TABLE public.mdl_assign_submission OWNER TO postgres; -- -- TOC entry 10559 (class 0 OID 0) --- Dependencies: 673 +-- Dependencies: 211 -- Name: TABLE mdl_assign_submission; Type: COMMENT; Schema: public; Owner: postgres -- @@ -768,7 +768,7 @@ COMMENT ON TABLE public.mdl_assign_submission IS 'This table keeps information a -- --- TOC entry 672 (class 1259 OID 20273) +-- TOC entry 212 (class 1259 OID 59071) -- Name: mdl_assign_submission_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -784,7 +784,7 @@ ALTER TABLE public.mdl_assign_submission_id_seq OWNER TO postgres; -- -- TOC entry 10560 (class 0 OID 0) --- Dependencies: 672 +-- Dependencies: 212 -- Name: mdl_assign_submission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -792,7 +792,7 @@ ALTER SEQUENCE public.mdl_assign_submission_id_seq OWNED BY public.mdl_assign_su -- --- TOC entry 681 (class 1259 OID 20345) +-- TOC entry 213 (class 1259 OID 59073) -- Name: mdl_assign_user_flags; Type: TABLE; Schema: public; Owner: postgres -- @@ -812,7 +812,7 @@ ALTER TABLE public.mdl_assign_user_flags OWNER TO postgres; -- -- TOC entry 10561 (class 0 OID 0) --- Dependencies: 681 +-- Dependencies: 213 -- Name: TABLE mdl_assign_user_flags; Type: COMMENT; Schema: public; Owner: postgres -- @@ -820,7 +820,7 @@ COMMENT ON TABLE public.mdl_assign_user_flags IS 'List of flags that can be set -- --- TOC entry 680 (class 1259 OID 20343) +-- TOC entry 214 (class 1259 OID 59082) -- Name: mdl_assign_user_flags_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -836,7 +836,7 @@ ALTER TABLE public.mdl_assign_user_flags_id_seq OWNER TO postgres; -- -- TOC entry 10562 (class 0 OID 0) --- Dependencies: 680 +-- Dependencies: 214 -- Name: mdl_assign_user_flags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -844,7 +844,7 @@ ALTER SEQUENCE public.mdl_assign_user_flags_id_seq OWNED BY public.mdl_assign_us -- --- TOC entry 679 (class 1259 OID 20333) +-- TOC entry 215 (class 1259 OID 59084) -- Name: mdl_assign_user_mapping; Type: TABLE; Schema: public; Owner: postgres -- @@ -859,7 +859,7 @@ ALTER TABLE public.mdl_assign_user_mapping OWNER TO postgres; -- -- TOC entry 10563 (class 0 OID 0) --- Dependencies: 679 +-- Dependencies: 215 -- Name: TABLE mdl_assign_user_mapping; Type: COMMENT; Schema: public; Owner: postgres -- @@ -867,7 +867,7 @@ COMMENT ON TABLE public.mdl_assign_user_mapping IS 'Map an assignment specific i -- --- TOC entry 678 (class 1259 OID 20331) +-- TOC entry 216 (class 1259 OID 59089) -- Name: mdl_assign_user_mapping_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -883,7 +883,7 @@ ALTER TABLE public.mdl_assign_user_mapping_id_seq OWNER TO postgres; -- -- TOC entry 10564 (class 0 OID 0) --- Dependencies: 678 +-- Dependencies: 216 -- Name: mdl_assign_user_mapping_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -891,7 +891,7 @@ ALTER SEQUENCE public.mdl_assign_user_mapping_id_seq OWNED BY public.mdl_assign_ -- --- TOC entry 997 (class 1259 OID 23083) +-- TOC entry 217 (class 1259 OID 59091) -- Name: mdl_assignfeedback_comments; Type: TABLE; Schema: public; Owner: postgres -- @@ -908,7 +908,7 @@ ALTER TABLE public.mdl_assignfeedback_comments OWNER TO postgres; -- -- TOC entry 10565 (class 0 OID 0) --- Dependencies: 997 +-- Dependencies: 217 -- Name: TABLE mdl_assignfeedback_comments; Type: COMMENT; Schema: public; Owner: postgres -- @@ -916,7 +916,7 @@ COMMENT ON TABLE public.mdl_assignfeedback_comments IS 'Text feedback for submit -- --- TOC entry 996 (class 1259 OID 23081) +-- TOC entry 218 (class 1259 OID 59100) -- Name: mdl_assignfeedback_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -932,7 +932,7 @@ ALTER TABLE public.mdl_assignfeedback_comments_id_seq OWNER TO postgres; -- -- TOC entry 10566 (class 0 OID 0) --- Dependencies: 996 +-- Dependencies: 218 -- Name: mdl_assignfeedback_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -940,7 +940,7 @@ ALTER SEQUENCE public.mdl_assignfeedback_comments_id_seq OWNED BY public.mdl_ass -- --- TOC entry 1001 (class 1259 OID 23119) +-- TOC entry 219 (class 1259 OID 59102) -- Name: mdl_assignfeedback_editpdf_annot; Type: TABLE; Schema: public; Owner: postgres -- @@ -963,7 +963,7 @@ ALTER TABLE public.mdl_assignfeedback_editpdf_annot OWNER TO postgres; -- -- TOC entry 10567 (class 0 OID 0) --- Dependencies: 1001 +-- Dependencies: 219 -- Name: TABLE mdl_assignfeedback_editpdf_annot; Type: COMMENT; Schema: public; Owner: postgres -- @@ -971,7 +971,7 @@ COMMENT ON TABLE public.mdl_assignfeedback_editpdf_annot IS 'stores annotations -- --- TOC entry 1000 (class 1259 OID 23117) +-- TOC entry 220 (class 1259 OID 59117) -- Name: mdl_assignfeedback_editpdf_annot_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -987,7 +987,7 @@ ALTER TABLE public.mdl_assignfeedback_editpdf_annot_id_seq OWNER TO postgres; -- -- TOC entry 10568 (class 0 OID 0) --- Dependencies: 1000 +-- Dependencies: 220 -- Name: mdl_assignfeedback_editpdf_annot_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -995,7 +995,7 @@ ALTER SEQUENCE public.mdl_assignfeedback_editpdf_annot_id_seq OWNED BY public.md -- --- TOC entry 999 (class 1259 OID 23099) +-- TOC entry 221 (class 1259 OID 59119) -- Name: mdl_assignfeedback_editpdf_cmnt; Type: TABLE; Schema: public; Owner: postgres -- @@ -1016,7 +1016,7 @@ ALTER TABLE public.mdl_assignfeedback_editpdf_cmnt OWNER TO postgres; -- -- TOC entry 10569 (class 0 OID 0) --- Dependencies: 999 +-- Dependencies: 221 -- Name: TABLE mdl_assignfeedback_editpdf_cmnt; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1024,7 +1024,7 @@ COMMENT ON TABLE public.mdl_assignfeedback_editpdf_cmnt IS 'Stores comments adde -- --- TOC entry 998 (class 1259 OID 23097) +-- TOC entry 222 (class 1259 OID 59132) -- Name: mdl_assignfeedback_editpdf_cmnt_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1040,7 +1040,7 @@ ALTER TABLE public.mdl_assignfeedback_editpdf_cmnt_id_seq OWNER TO postgres; -- -- TOC entry 10570 (class 0 OID 0) --- Dependencies: 998 +-- Dependencies: 222 -- Name: mdl_assignfeedback_editpdf_cmnt_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1048,7 +1048,7 @@ ALTER SEQUENCE public.mdl_assignfeedback_editpdf_cmnt_id_seq OWNED BY public.mdl -- --- TOC entry 1005 (class 1259 OID 23156) +-- TOC entry 223 (class 1259 OID 59134) -- Name: mdl_assignfeedback_editpdf_queue; Type: TABLE; Schema: public; Owner: postgres -- @@ -1064,7 +1064,7 @@ ALTER TABLE public.mdl_assignfeedback_editpdf_queue OWNER TO postgres; -- -- TOC entry 10571 (class 0 OID 0) --- Dependencies: 1005 +-- Dependencies: 223 -- Name: TABLE mdl_assignfeedback_editpdf_queue; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1072,7 +1072,7 @@ COMMENT ON TABLE public.mdl_assignfeedback_editpdf_queue IS 'Queue for processin -- --- TOC entry 1004 (class 1259 OID 23154) +-- TOC entry 224 (class 1259 OID 59138) -- Name: mdl_assignfeedback_editpdf_queue_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1088,7 +1088,7 @@ ALTER TABLE public.mdl_assignfeedback_editpdf_queue_id_seq OWNER TO postgres; -- -- TOC entry 10572 (class 0 OID 0) --- Dependencies: 1004 +-- Dependencies: 224 -- Name: mdl_assignfeedback_editpdf_queue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1096,7 +1096,7 @@ ALTER SEQUENCE public.mdl_assignfeedback_editpdf_queue_id_seq OWNED BY public.md -- --- TOC entry 1003 (class 1259 OID 23141) +-- TOC entry 225 (class 1259 OID 59140) -- Name: mdl_assignfeedback_editpdf_quick; Type: TABLE; Schema: public; Owner: postgres -- @@ -1113,7 +1113,7 @@ ALTER TABLE public.mdl_assignfeedback_editpdf_quick OWNER TO postgres; -- -- TOC entry 10573 (class 0 OID 0) --- Dependencies: 1003 +-- Dependencies: 225 -- Name: TABLE mdl_assignfeedback_editpdf_quick; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1121,7 +1121,7 @@ COMMENT ON TABLE public.mdl_assignfeedback_editpdf_quick IS 'Stores teacher spec -- --- TOC entry 1002 (class 1259 OID 23139) +-- TOC entry 226 (class 1259 OID 59149) -- Name: mdl_assignfeedback_editpdf_quick_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1137,7 +1137,7 @@ ALTER TABLE public.mdl_assignfeedback_editpdf_quick_id_seq OWNER TO postgres; -- -- TOC entry 10574 (class 0 OID 0) --- Dependencies: 1002 +-- Dependencies: 226 -- Name: mdl_assignfeedback_editpdf_quick_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1145,7 +1145,7 @@ ALTER SEQUENCE public.mdl_assignfeedback_editpdf_quick_id_seq OWNED BY public.md -- --- TOC entry 1007 (class 1259 OID 23166) +-- TOC entry 227 (class 1259 OID 59151) -- Name: mdl_assignfeedback_editpdf_rot; Type: TABLE; Schema: public; Owner: postgres -- @@ -1163,7 +1163,7 @@ ALTER TABLE public.mdl_assignfeedback_editpdf_rot OWNER TO postgres; -- -- TOC entry 10575 (class 0 OID 0) --- Dependencies: 1007 +-- Dependencies: 227 -- Name: TABLE mdl_assignfeedback_editpdf_rot; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1171,7 +1171,7 @@ COMMENT ON TABLE public.mdl_assignfeedback_editpdf_rot IS 'Stores rotation infor -- --- TOC entry 1006 (class 1259 OID 23164) +-- TOC entry 228 (class 1259 OID 59161) -- Name: mdl_assignfeedback_editpdf_rot_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1187,7 +1187,7 @@ ALTER TABLE public.mdl_assignfeedback_editpdf_rot_id_seq OWNER TO postgres; -- -- TOC entry 10576 (class 0 OID 0) --- Dependencies: 1006 +-- Dependencies: 228 -- Name: mdl_assignfeedback_editpdf_rot_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1195,7 +1195,7 @@ ALTER SEQUENCE public.mdl_assignfeedback_editpdf_rot_id_seq OWNED BY public.mdl_ -- --- TOC entry 1009 (class 1259 OID 23183) +-- TOC entry 229 (class 1259 OID 59163) -- Name: mdl_assignfeedback_file; Type: TABLE; Schema: public; Owner: postgres -- @@ -1211,7 +1211,7 @@ ALTER TABLE public.mdl_assignfeedback_file OWNER TO postgres; -- -- TOC entry 10577 (class 0 OID 0) --- Dependencies: 1009 +-- Dependencies: 229 -- Name: TABLE mdl_assignfeedback_file; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1219,7 +1219,7 @@ COMMENT ON TABLE public.mdl_assignfeedback_file IS 'Stores info about the number -- --- TOC entry 1008 (class 1259 OID 23181) +-- TOC entry 230 (class 1259 OID 59169) -- Name: mdl_assignfeedback_file_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1235,7 +1235,7 @@ ALTER TABLE public.mdl_assignfeedback_file_id_seq OWNER TO postgres; -- -- TOC entry 10578 (class 0 OID 0) --- Dependencies: 1008 +-- Dependencies: 230 -- Name: mdl_assignfeedback_file_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1243,7 +1243,7 @@ ALTER SEQUENCE public.mdl_assignfeedback_file_id_seq OWNED BY public.mdl_assignf -- --- TOC entry 685 (class 1259 OID 20374) +-- TOC entry 231 (class 1259 OID 59171) -- Name: mdl_assignment; Type: TABLE; Schema: public; Owner: postgres -- @@ -1274,7 +1274,7 @@ ALTER TABLE public.mdl_assignment OWNER TO postgres; -- -- TOC entry 10579 (class 0 OID 0) --- Dependencies: 685 +-- Dependencies: 231 -- Name: TABLE mdl_assignment; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1282,7 +1282,7 @@ COMMENT ON TABLE public.mdl_assignment IS 'Defines assignments'; -- --- TOC entry 684 (class 1259 OID 20372) +-- TOC entry 232 (class 1259 OID 59194) -- Name: mdl_assignment_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1298,7 +1298,7 @@ ALTER TABLE public.mdl_assignment_id_seq OWNER TO postgres; -- -- TOC entry 10580 (class 0 OID 0) --- Dependencies: 684 +-- Dependencies: 232 -- Name: mdl_assignment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1306,7 +1306,7 @@ ALTER SEQUENCE public.mdl_assignment_id_seq OWNED BY public.mdl_assignment.id; -- --- TOC entry 687 (class 1259 OID 20403) +-- TOC entry 233 (class 1259 OID 59196) -- Name: mdl_assignment_submissions; Type: TABLE; Schema: public; Owner: postgres -- @@ -1332,7 +1332,7 @@ ALTER TABLE public.mdl_assignment_submissions OWNER TO postgres; -- -- TOC entry 10581 (class 0 OID 0) --- Dependencies: 687 +-- Dependencies: 233 -- Name: TABLE mdl_assignment_submissions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1340,7 +1340,7 @@ COMMENT ON TABLE public.mdl_assignment_submissions IS 'Info about submitted assi -- --- TOC entry 686 (class 1259 OID 20401) +-- TOC entry 234 (class 1259 OID 59212) -- Name: mdl_assignment_submissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1356,7 +1356,7 @@ ALTER TABLE public.mdl_assignment_submissions_id_seq OWNER TO postgres; -- -- TOC entry 10582 (class 0 OID 0) --- Dependencies: 686 +-- Dependencies: 234 -- Name: mdl_assignment_submissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1364,7 +1364,7 @@ ALTER SEQUENCE public.mdl_assignment_submissions_id_seq OWNED BY public.mdl_assi -- --- TOC entry 689 (class 1259 OID 20428) +-- TOC entry 235 (class 1259 OID 59214) -- Name: mdl_assignment_upgrade; Type: TABLE; Schema: public; Owner: postgres -- @@ -1382,7 +1382,7 @@ ALTER TABLE public.mdl_assignment_upgrade OWNER TO postgres; -- -- TOC entry 10583 (class 0 OID 0) --- Dependencies: 689 +-- Dependencies: 235 -- Name: TABLE mdl_assignment_upgrade; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1390,7 +1390,7 @@ COMMENT ON TABLE public.mdl_assignment_upgrade IS 'Info about upgraded assignmen -- --- TOC entry 688 (class 1259 OID 20426) +-- TOC entry 236 (class 1259 OID 59222) -- Name: mdl_assignment_upgrade_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1406,7 +1406,7 @@ ALTER TABLE public.mdl_assignment_upgrade_id_seq OWNER TO postgres; -- -- TOC entry 10584 (class 0 OID 0) --- Dependencies: 688 +-- Dependencies: 236 -- Name: mdl_assignment_upgrade_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1414,7 +1414,7 @@ ALTER SEQUENCE public.mdl_assignment_upgrade_id_seq OWNED BY public.mdl_assignme -- --- TOC entry 993 (class 1259 OID 23054) +-- TOC entry 237 (class 1259 OID 59224) -- Name: mdl_assignsubmission_file; Type: TABLE; Schema: public; Owner: postgres -- @@ -1430,7 +1430,7 @@ ALTER TABLE public.mdl_assignsubmission_file OWNER TO postgres; -- -- TOC entry 10585 (class 0 OID 0) --- Dependencies: 993 +-- Dependencies: 237 -- Name: TABLE mdl_assignsubmission_file; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1438,7 +1438,7 @@ COMMENT ON TABLE public.mdl_assignsubmission_file IS 'Info about file submission -- --- TOC entry 992 (class 1259 OID 23052) +-- TOC entry 238 (class 1259 OID 59230) -- Name: mdl_assignsubmission_file_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1454,7 +1454,7 @@ ALTER TABLE public.mdl_assignsubmission_file_id_seq OWNER TO postgres; -- -- TOC entry 10586 (class 0 OID 0) --- Dependencies: 992 +-- Dependencies: 238 -- Name: mdl_assignsubmission_file_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1462,7 +1462,7 @@ ALTER SEQUENCE public.mdl_assignsubmission_file_id_seq OWNED BY public.mdl_assig -- --- TOC entry 995 (class 1259 OID 23067) +-- TOC entry 239 (class 1259 OID 59232) -- Name: mdl_assignsubmission_onlinetext; Type: TABLE; Schema: public; Owner: postgres -- @@ -1479,7 +1479,7 @@ ALTER TABLE public.mdl_assignsubmission_onlinetext OWNER TO postgres; -- -- TOC entry 10587 (class 0 OID 0) --- Dependencies: 995 +-- Dependencies: 239 -- Name: TABLE mdl_assignsubmission_onlinetext; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1487,7 +1487,7 @@ COMMENT ON TABLE public.mdl_assignsubmission_onlinetext IS 'Info about onlinetex -- --- TOC entry 994 (class 1259 OID 23065) +-- TOC entry 240 (class 1259 OID 59241) -- Name: mdl_assignsubmission_onlinetext_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1503,7 +1503,7 @@ ALTER TABLE public.mdl_assignsubmission_onlinetext_id_seq OWNER TO postgres; -- -- TOC entry 10588 (class 0 OID 0) --- Dependencies: 994 +-- Dependencies: 240 -- Name: mdl_assignsubmission_onlinetext_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1511,7 +1511,7 @@ ALTER SEQUENCE public.mdl_assignsubmission_onlinetext_id_seq OWNED BY public.mdl -- --- TOC entry 887 (class 1259 OID 22306) +-- TOC entry 241 (class 1259 OID 59243) -- Name: mdl_auth_oauth2_linked_login; Type: TABLE; Schema: public; Owner: postgres -- @@ -1533,7 +1533,7 @@ ALTER TABLE public.mdl_auth_oauth2_linked_login OWNER TO postgres; -- -- TOC entry 10589 (class 0 OID 0) --- Dependencies: 887 +-- Dependencies: 241 -- Name: TABLE mdl_auth_oauth2_linked_login; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1541,7 +1541,7 @@ COMMENT ON TABLE public.mdl_auth_oauth2_linked_login IS 'Accounts linked to a us -- --- TOC entry 886 (class 1259 OID 22304) +-- TOC entry 242 (class 1259 OID 59251) -- Name: mdl_auth_oauth2_linked_login_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1557,7 +1557,7 @@ ALTER TABLE public.mdl_auth_oauth2_linked_login_id_seq OWNER TO postgres; -- -- TOC entry 10590 (class 0 OID 0) --- Dependencies: 886 +-- Dependencies: 242 -- Name: mdl_auth_oauth2_linked_login_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1565,7 +1565,7 @@ ALTER SEQUENCE public.mdl_auth_oauth2_linked_login_id_seq OWNED BY public.mdl_au -- --- TOC entry 475 (class 1259 OID 18802) +-- TOC entry 243 (class 1259 OID 59253) -- Name: mdl_backup_controllers; Type: TABLE; Schema: public; Owner: postgres -- @@ -1594,7 +1594,7 @@ ALTER TABLE public.mdl_backup_controllers OWNER TO postgres; -- -- TOC entry 10591 (class 0 OID 0) --- Dependencies: 475 +-- Dependencies: 243 -- Name: TABLE mdl_backup_controllers; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1602,7 +1602,7 @@ COMMENT ON TABLE public.mdl_backup_controllers IS 'To store the backup_controlle -- --- TOC entry 474 (class 1259 OID 18800) +-- TOC entry 244 (class 1259 OID 59265) -- Name: mdl_backup_controllers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1618,7 +1618,7 @@ ALTER TABLE public.mdl_backup_controllers_id_seq OWNER TO postgres; -- -- TOC entry 10592 (class 0 OID 0) --- Dependencies: 474 +-- Dependencies: 244 -- Name: mdl_backup_controllers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1626,7 +1626,7 @@ ALTER SEQUENCE public.mdl_backup_controllers_id_seq OWNED BY public.mdl_backup_c -- --- TOC entry 445 (class 1259 OID 18591) +-- TOC entry 245 (class 1259 OID 59267) -- Name: mdl_backup_courses; Type: TABLE; Schema: public; Owner: postgres -- @@ -1644,7 +1644,7 @@ ALTER TABLE public.mdl_backup_courses OWNER TO postgres; -- -- TOC entry 10593 (class 0 OID 0) --- Dependencies: 445 +-- Dependencies: 245 -- Name: TABLE mdl_backup_courses; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1652,7 +1652,7 @@ COMMENT ON TABLE public.mdl_backup_courses IS 'To store every course backup stat -- --- TOC entry 444 (class 1259 OID 18589) +-- TOC entry 246 (class 1259 OID 59275) -- Name: mdl_backup_courses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1668,7 +1668,7 @@ ALTER TABLE public.mdl_backup_courses_id_seq OWNER TO postgres; -- -- TOC entry 10594 (class 0 OID 0) --- Dependencies: 444 +-- Dependencies: 246 -- Name: mdl_backup_courses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1676,7 +1676,7 @@ ALTER SEQUENCE public.mdl_backup_courses_id_seq OWNED BY public.mdl_backup_cours -- --- TOC entry 477 (class 1259 OID 18823) +-- TOC entry 247 (class 1259 OID 59277) -- Name: mdl_backup_logs; Type: TABLE; Schema: public; Owner: postgres -- @@ -1693,7 +1693,7 @@ ALTER TABLE public.mdl_backup_logs OWNER TO postgres; -- -- TOC entry 10595 (class 0 OID 0) --- Dependencies: 477 +-- Dependencies: 247 -- Name: TABLE mdl_backup_logs; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1701,7 +1701,7 @@ COMMENT ON TABLE public.mdl_backup_logs IS 'To store all the logs from backup an -- --- TOC entry 476 (class 1259 OID 18821) +-- TOC entry 248 (class 1259 OID 59284) -- Name: mdl_backup_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1717,7 +1717,7 @@ ALTER TABLE public.mdl_backup_logs_id_seq OWNER TO postgres; -- -- TOC entry 10596 (class 0 OID 0) --- Dependencies: 476 +-- Dependencies: 248 -- Name: mdl_backup_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1725,7 +1725,7 @@ ALTER SEQUENCE public.mdl_backup_logs_id_seq OWNED BY public.mdl_backup_logs.id; -- --- TOC entry 491 (class 1259 OID 18929) +-- TOC entry 249 (class 1259 OID 59286) -- Name: mdl_badge; Type: TABLE; Schema: public; Owner: postgres -- @@ -1763,7 +1763,7 @@ ALTER TABLE public.mdl_badge OWNER TO postgres; -- -- TOC entry 10597 (class 0 OID 0) --- Dependencies: 491 +-- Dependencies: 249 -- Name: TABLE mdl_badge; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1771,7 +1771,7 @@ COMMENT ON TABLE public.mdl_badge IS 'Defines badge'; -- --- TOC entry 513 (class 1259 OID 19097) +-- TOC entry 250 (class 1259 OID 59301) -- Name: mdl_badge_alignment; Type: TABLE; Schema: public; Owner: postgres -- @@ -1790,7 +1790,7 @@ ALTER TABLE public.mdl_badge_alignment OWNER TO postgres; -- -- TOC entry 10598 (class 0 OID 0) --- Dependencies: 513 +-- Dependencies: 250 -- Name: TABLE mdl_badge_alignment; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1798,7 +1798,7 @@ COMMENT ON TABLE public.mdl_badge_alignment IS 'Defines alignment for badges'; -- --- TOC entry 512 (class 1259 OID 19095) +-- TOC entry 251 (class 1259 OID 59310) -- Name: mdl_badge_alignment_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1814,7 +1814,7 @@ ALTER TABLE public.mdl_badge_alignment_id_seq OWNER TO postgres; -- -- TOC entry 10599 (class 0 OID 0) --- Dependencies: 512 +-- Dependencies: 251 -- Name: mdl_badge_alignment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1822,7 +1822,7 @@ ALTER SEQUENCE public.mdl_badge_alignment_id_seq OWNED BY public.mdl_badge_align -- --- TOC entry 505 (class 1259 OID 19041) +-- TOC entry 252 (class 1259 OID 59312) -- Name: mdl_badge_backpack; Type: TABLE; Schema: public; Owner: postgres -- @@ -1841,7 +1841,7 @@ ALTER TABLE public.mdl_badge_backpack OWNER TO postgres; -- -- TOC entry 10600 (class 0 OID 0) --- Dependencies: 505 +-- Dependencies: 252 -- Name: TABLE mdl_badge_backpack; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1849,7 +1849,7 @@ COMMENT ON TABLE public.mdl_badge_backpack IS 'Defines settings for connecting e -- --- TOC entry 504 (class 1259 OID 19039) +-- TOC entry 253 (class 1259 OID 59318) -- Name: mdl_badge_backpack_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1865,7 +1865,7 @@ ALTER TABLE public.mdl_badge_backpack_id_seq OWNER TO postgres; -- -- TOC entry 10601 (class 0 OID 0) --- Dependencies: 504 +-- Dependencies: 253 -- Name: mdl_badge_backpack_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1873,7 +1873,7 @@ ALTER SEQUENCE public.mdl_badge_backpack_id_seq OWNED BY public.mdl_badge_backpa -- --- TOC entry 507 (class 1259 OID 19054) +-- TOC entry 254 (class 1259 OID 59320) -- Name: mdl_badge_backpack_oauth2; Type: TABLE; Schema: public; Owner: postgres -- @@ -1896,7 +1896,7 @@ ALTER TABLE public.mdl_badge_backpack_oauth2 OWNER TO postgres; -- -- TOC entry 10602 (class 0 OID 0) --- Dependencies: 507 +-- Dependencies: 254 -- Name: TABLE mdl_badge_backpack_oauth2; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1904,7 +1904,7 @@ COMMENT ON TABLE public.mdl_badge_backpack_oauth2 IS 'Default comment for the ta -- --- TOC entry 506 (class 1259 OID 19052) +-- TOC entry 255 (class 1259 OID 59329) -- Name: mdl_badge_backpack_oauth2_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1920,7 +1920,7 @@ ALTER TABLE public.mdl_badge_backpack_oauth2_id_seq OWNER TO postgres; -- -- TOC entry 10603 (class 0 OID 0) --- Dependencies: 506 +-- Dependencies: 255 -- Name: mdl_badge_backpack_oauth2_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1928,7 +1928,7 @@ ALTER SEQUENCE public.mdl_badge_backpack_oauth2_id_seq OWNED BY public.mdl_badge -- --- TOC entry 493 (class 1259 OID 18953) +-- TOC entry 256 (class 1259 OID 59331) -- Name: mdl_badge_criteria; Type: TABLE; Schema: public; Owner: postgres -- @@ -1946,7 +1946,7 @@ ALTER TABLE public.mdl_badge_criteria OWNER TO postgres; -- -- TOC entry 10604 (class 0 OID 0) --- Dependencies: 493 +-- Dependencies: 256 -- Name: TABLE mdl_badge_criteria; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1954,7 +1954,7 @@ COMMENT ON TABLE public.mdl_badge_criteria IS 'Defines criteria for issuing badg -- --- TOC entry 492 (class 1259 OID 18951) +-- TOC entry 257 (class 1259 OID 59340) -- Name: mdl_badge_criteria_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1970,7 +1970,7 @@ ALTER TABLE public.mdl_badge_criteria_id_seq OWNER TO postgres; -- -- TOC entry 10605 (class 0 OID 0) --- Dependencies: 492 +-- Dependencies: 257 -- Name: mdl_badge_criteria_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1978,7 +1978,7 @@ ALTER SEQUENCE public.mdl_badge_criteria_id_seq OWNED BY public.mdl_badge_criter -- --- TOC entry 499 (class 1259 OID 19001) +-- TOC entry 258 (class 1259 OID 59342) -- Name: mdl_badge_criteria_met; Type: TABLE; Schema: public; Owner: postgres -- @@ -1995,7 +1995,7 @@ ALTER TABLE public.mdl_badge_criteria_met OWNER TO postgres; -- -- TOC entry 10606 (class 0 OID 0) --- Dependencies: 499 +-- Dependencies: 258 -- Name: TABLE mdl_badge_criteria_met; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2003,7 +2003,7 @@ COMMENT ON TABLE public.mdl_badge_criteria_met IS 'Defines criteria that were me -- --- TOC entry 498 (class 1259 OID 18999) +-- TOC entry 259 (class 1259 OID 59345) -- Name: mdl_badge_criteria_met_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2019,7 +2019,7 @@ ALTER TABLE public.mdl_badge_criteria_met_id_seq OWNER TO postgres; -- -- TOC entry 10607 (class 0 OID 0) --- Dependencies: 498 +-- Dependencies: 259 -- Name: mdl_badge_criteria_met_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2027,7 +2027,7 @@ ALTER SEQUENCE public.mdl_badge_criteria_met_id_seq OWNED BY public.mdl_badge_cr -- --- TOC entry 495 (class 1259 OID 18970) +-- TOC entry 260 (class 1259 OID 59347) -- Name: mdl_badge_criteria_param; Type: TABLE; Schema: public; Owner: postgres -- @@ -2043,7 +2043,7 @@ ALTER TABLE public.mdl_badge_criteria_param OWNER TO postgres; -- -- TOC entry 10608 (class 0 OID 0) --- Dependencies: 495 +-- Dependencies: 260 -- Name: TABLE mdl_badge_criteria_param; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2051,7 +2051,7 @@ COMMENT ON TABLE public.mdl_badge_criteria_param IS 'Defines parameters for badg -- --- TOC entry 494 (class 1259 OID 18968) +-- TOC entry 261 (class 1259 OID 59354) -- Name: mdl_badge_criteria_param_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2067,7 +2067,7 @@ ALTER TABLE public.mdl_badge_criteria_param_id_seq OWNER TO postgres; -- -- TOC entry 10609 (class 0 OID 0) --- Dependencies: 494 +-- Dependencies: 261 -- Name: mdl_badge_criteria_param_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2075,7 +2075,7 @@ ALTER SEQUENCE public.mdl_badge_criteria_param_id_seq OWNED BY public.mdl_badge_ -- --- TOC entry 501 (class 1259 OID 19012) +-- TOC entry 262 (class 1259 OID 59356) -- Name: mdl_badge_endorsement; Type: TABLE; Schema: public; Owner: postgres -- @@ -2095,7 +2095,7 @@ ALTER TABLE public.mdl_badge_endorsement OWNER TO postgres; -- -- TOC entry 10610 (class 0 OID 0) --- Dependencies: 501 +-- Dependencies: 262 -- Name: TABLE mdl_badge_endorsement; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2103,7 +2103,7 @@ COMMENT ON TABLE public.mdl_badge_endorsement IS 'Defines endorsement for badge' -- --- TOC entry 500 (class 1259 OID 19010) +-- TOC entry 263 (class 1259 OID 59367) -- Name: mdl_badge_endorsement_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2119,7 +2119,7 @@ ALTER TABLE public.mdl_badge_endorsement_id_seq OWNER TO postgres; -- -- TOC entry 10611 (class 0 OID 0) --- Dependencies: 500 +-- Dependencies: 263 -- Name: mdl_badge_endorsement_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2127,7 +2127,7 @@ ALTER SEQUENCE public.mdl_badge_endorsement_id_seq OWNED BY public.mdl_badge_end -- --- TOC entry 509 (class 1259 OID 19072) +-- TOC entry 264 (class 1259 OID 59369) -- Name: mdl_badge_external; Type: TABLE; Schema: public; Owner: postgres -- @@ -2144,7 +2144,7 @@ ALTER TABLE public.mdl_badge_external OWNER TO postgres; -- -- TOC entry 10612 (class 0 OID 0) --- Dependencies: 509 +-- Dependencies: 264 -- Name: TABLE mdl_badge_external; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2152,7 +2152,7 @@ COMMENT ON TABLE public.mdl_badge_external IS 'Setting for external badges displ -- --- TOC entry 517 (class 1259 OID 19124) +-- TOC entry 265 (class 1259 OID 59375) -- Name: mdl_badge_external_backpack; Type: TABLE; Schema: public; Owner: postgres -- @@ -2171,7 +2171,7 @@ ALTER TABLE public.mdl_badge_external_backpack OWNER TO postgres; -- -- TOC entry 10613 (class 0 OID 0) --- Dependencies: 517 +-- Dependencies: 265 -- Name: TABLE mdl_badge_external_backpack; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2179,7 +2179,7 @@ COMMENT ON TABLE public.mdl_badge_external_backpack IS 'Defines settings for sit -- --- TOC entry 516 (class 1259 OID 19122) +-- TOC entry 266 (class 1259 OID 59385) -- Name: mdl_badge_external_backpack_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2195,7 +2195,7 @@ ALTER TABLE public.mdl_badge_external_backpack_id_seq OWNER TO postgres; -- -- TOC entry 10614 (class 0 OID 0) --- Dependencies: 516 +-- Dependencies: 266 -- Name: mdl_badge_external_backpack_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2203,7 +2203,7 @@ ALTER SEQUENCE public.mdl_badge_external_backpack_id_seq OWNED BY public.mdl_bad -- --- TOC entry 508 (class 1259 OID 19070) +-- TOC entry 267 (class 1259 OID 59387) -- Name: mdl_badge_external_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2219,7 +2219,7 @@ ALTER TABLE public.mdl_badge_external_id_seq OWNER TO postgres; -- -- TOC entry 10615 (class 0 OID 0) --- Dependencies: 508 +-- Dependencies: 267 -- Name: mdl_badge_external_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2227,7 +2227,7 @@ ALTER SEQUENCE public.mdl_badge_external_id_seq OWNED BY public.mdl_badge_extern -- --- TOC entry 511 (class 1259 OID 19084) +-- TOC entry 268 (class 1259 OID 59389) -- Name: mdl_badge_external_identifier; Type: TABLE; Schema: public; Owner: postgres -- @@ -2244,7 +2244,7 @@ ALTER TABLE public.mdl_badge_external_identifier OWNER TO postgres; -- -- TOC entry 10616 (class 0 OID 0) --- Dependencies: 511 +-- Dependencies: 268 -- Name: TABLE mdl_badge_external_identifier; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2252,7 +2252,7 @@ COMMENT ON TABLE public.mdl_badge_external_identifier IS 'Setting for external b -- --- TOC entry 510 (class 1259 OID 19082) +-- TOC entry 269 (class 1259 OID 59395) -- Name: mdl_badge_external_identifier_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2268,7 +2268,7 @@ ALTER TABLE public.mdl_badge_external_identifier_id_seq OWNER TO postgres; -- -- TOC entry 10617 (class 0 OID 0) --- Dependencies: 510 +-- Dependencies: 269 -- Name: mdl_badge_external_identifier_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2276,7 +2276,7 @@ ALTER SEQUENCE public.mdl_badge_external_identifier_id_seq OWNED BY public.mdl_b -- --- TOC entry 490 (class 1259 OID 18927) +-- TOC entry 270 (class 1259 OID 59397) -- Name: mdl_badge_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2292,7 +2292,7 @@ ALTER TABLE public.mdl_badge_id_seq OWNER TO postgres; -- -- TOC entry 10618 (class 0 OID 0) --- Dependencies: 490 +-- Dependencies: 270 -- Name: mdl_badge_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2300,7 +2300,7 @@ ALTER SEQUENCE public.mdl_badge_id_seq OWNED BY public.mdl_badge.id; -- --- TOC entry 497 (class 1259 OID 18983) +-- TOC entry 271 (class 1259 OID 59399) -- Name: mdl_badge_issued; Type: TABLE; Schema: public; Owner: postgres -- @@ -2320,7 +2320,7 @@ ALTER TABLE public.mdl_badge_issued OWNER TO postgres; -- -- TOC entry 10619 (class 0 OID 0) --- Dependencies: 497 +-- Dependencies: 271 -- Name: TABLE mdl_badge_issued; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2328,7 +2328,7 @@ COMMENT ON TABLE public.mdl_badge_issued IS 'Defines issued badges'; -- --- TOC entry 496 (class 1259 OID 18981) +-- TOC entry 272 (class 1259 OID 59409) -- Name: mdl_badge_issued_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2344,7 +2344,7 @@ ALTER TABLE public.mdl_badge_issued_id_seq OWNER TO postgres; -- -- TOC entry 10620 (class 0 OID 0) --- Dependencies: 496 +-- Dependencies: 272 -- Name: mdl_badge_issued_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2352,7 +2352,7 @@ ALTER SEQUENCE public.mdl_badge_issued_id_seq OWNED BY public.mdl_badge_issued.i -- --- TOC entry 503 (class 1259 OID 19029) +-- TOC entry 273 (class 1259 OID 59411) -- Name: mdl_badge_manual_award; Type: TABLE; Schema: public; Owner: postgres -- @@ -2370,7 +2370,7 @@ ALTER TABLE public.mdl_badge_manual_award OWNER TO postgres; -- -- TOC entry 10621 (class 0 OID 0) --- Dependencies: 503 +-- Dependencies: 273 -- Name: TABLE mdl_badge_manual_award; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2378,7 +2378,7 @@ COMMENT ON TABLE public.mdl_badge_manual_award IS 'Track manual award criteria f -- --- TOC entry 502 (class 1259 OID 19027) +-- TOC entry 274 (class 1259 OID 59414) -- Name: mdl_badge_manual_award_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2394,7 +2394,7 @@ ALTER TABLE public.mdl_badge_manual_award_id_seq OWNER TO postgres; -- -- TOC entry 10622 (class 0 OID 0) --- Dependencies: 502 +-- Dependencies: 274 -- Name: mdl_badge_manual_award_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2402,7 +2402,7 @@ ALTER SEQUENCE public.mdl_badge_manual_award_id_seq OWNED BY public.mdl_badge_ma -- --- TOC entry 515 (class 1259 OID 19112) +-- TOC entry 275 (class 1259 OID 59416) -- Name: mdl_badge_related; Type: TABLE; Schema: public; Owner: postgres -- @@ -2417,7 +2417,7 @@ ALTER TABLE public.mdl_badge_related OWNER TO postgres; -- -- TOC entry 10623 (class 0 OID 0) --- Dependencies: 515 +-- Dependencies: 275 -- Name: TABLE mdl_badge_related; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2425,7 +2425,7 @@ COMMENT ON TABLE public.mdl_badge_related IS 'Defines badge related for badges'; -- --- TOC entry 514 (class 1259 OID 19110) +-- TOC entry 276 (class 1259 OID 59420) -- Name: mdl_badge_related_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2441,7 +2441,7 @@ ALTER TABLE public.mdl_badge_related_id_seq OWNER TO postgres; -- -- TOC entry 10624 (class 0 OID 0) --- Dependencies: 514 +-- Dependencies: 276 -- Name: mdl_badge_related_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2449,7 +2449,7 @@ ALTER SEQUENCE public.mdl_badge_related_id_seq OWNED BY public.mdl_badge_related -- --- TOC entry 447 (class 1259 OID 18605) +-- TOC entry 277 (class 1259 OID 59422) -- Name: mdl_block; Type: TABLE; Schema: public; Owner: postgres -- @@ -2466,7 +2466,7 @@ ALTER TABLE public.mdl_block OWNER TO postgres; -- -- TOC entry 10625 (class 0 OID 0) --- Dependencies: 447 +-- Dependencies: 277 -- Name: TABLE mdl_block; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2474,7 +2474,7 @@ COMMENT ON TABLE public.mdl_block IS 'contains all installed blocks'; -- --- TOC entry 446 (class 1259 OID 18603) +-- TOC entry 278 (class 1259 OID 59429) -- Name: mdl_block_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2490,7 +2490,7 @@ ALTER TABLE public.mdl_block_id_seq OWNER TO postgres; -- -- TOC entry 10626 (class 0 OID 0) --- Dependencies: 446 +-- Dependencies: 278 -- Name: mdl_block_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2498,7 +2498,7 @@ ALTER SEQUENCE public.mdl_block_id_seq OWNED BY public.mdl_block.id; -- --- TOC entry 449 (class 1259 OID 18618) +-- TOC entry 279 (class 1259 OID 59431) -- Name: mdl_block_instances; Type: TABLE; Schema: public; Owner: postgres -- @@ -2522,7 +2522,7 @@ ALTER TABLE public.mdl_block_instances OWNER TO postgres; -- -- TOC entry 10627 (class 0 OID 0) --- Dependencies: 449 +-- Dependencies: 279 -- Name: TABLE mdl_block_instances; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2530,7 +2530,7 @@ COMMENT ON TABLE public.mdl_block_instances IS 'This table stores block instance -- --- TOC entry 448 (class 1259 OID 18616) +-- TOC entry 280 (class 1259 OID 59441) -- Name: mdl_block_instances_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2546,7 +2546,7 @@ ALTER TABLE public.mdl_block_instances_id_seq OWNER TO postgres; -- -- TOC entry 10628 (class 0 OID 0) --- Dependencies: 448 +-- Dependencies: 280 -- Name: mdl_block_instances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2554,7 +2554,7 @@ ALTER SEQUENCE public.mdl_block_instances_id_seq OWNED BY public.mdl_block_insta -- --- TOC entry 451 (class 1259 OID 18636) +-- TOC entry 281 (class 1259 OID 59443) -- Name: mdl_block_positions; Type: TABLE; Schema: public; Owner: postgres -- @@ -2574,7 +2574,7 @@ ALTER TABLE public.mdl_block_positions OWNER TO postgres; -- -- TOC entry 10629 (class 0 OID 0) --- Dependencies: 451 +-- Dependencies: 281 -- Name: TABLE mdl_block_positions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2582,7 +2582,7 @@ COMMENT ON TABLE public.mdl_block_positions IS 'Stores the position of a sticky -- --- TOC entry 450 (class 1259 OID 18634) +-- TOC entry 282 (class 1259 OID 59449) -- Name: mdl_block_positions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2598,7 +2598,7 @@ ALTER TABLE public.mdl_block_positions_id_seq OWNER TO postgres; -- -- TOC entry 10630 (class 0 OID 0) --- Dependencies: 450 +-- Dependencies: 282 -- Name: mdl_block_positions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2606,7 +2606,7 @@ ALTER SEQUENCE public.mdl_block_positions_id_seq OWNED BY public.mdl_block_posit -- --- TOC entry 921 (class 1259 OID 22555) +-- TOC entry 283 (class 1259 OID 59451) -- Name: mdl_block_recent_activity; Type: TABLE; Schema: public; Owner: postgres -- @@ -2625,7 +2625,7 @@ ALTER TABLE public.mdl_block_recent_activity OWNER TO postgres; -- -- TOC entry 10631 (class 0 OID 0) --- Dependencies: 921 +-- Dependencies: 283 -- Name: TABLE mdl_block_recent_activity; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2633,7 +2633,7 @@ COMMENT ON TABLE public.mdl_block_recent_activity IS 'Recent activity block'; -- --- TOC entry 920 (class 1259 OID 22553) +-- TOC entry 284 (class 1259 OID 59454) -- Name: mdl_block_recent_activity_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2649,7 +2649,7 @@ ALTER TABLE public.mdl_block_recent_activity_id_seq OWNER TO postgres; -- -- TOC entry 10632 (class 0 OID 0) --- Dependencies: 920 +-- Dependencies: 284 -- Name: mdl_block_recent_activity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2657,7 +2657,7 @@ ALTER SEQUENCE public.mdl_block_recent_activity_id_seq OWNED BY public.mdl_block -- --- TOC entry 923 (class 1259 OID 22564) +-- TOC entry 285 (class 1259 OID 59456) -- Name: mdl_block_recentlyaccesseditems; Type: TABLE; Schema: public; Owner: postgres -- @@ -2674,7 +2674,7 @@ ALTER TABLE public.mdl_block_recentlyaccesseditems OWNER TO postgres; -- -- TOC entry 10633 (class 0 OID 0) --- Dependencies: 923 +-- Dependencies: 285 -- Name: TABLE mdl_block_recentlyaccesseditems; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2682,7 +2682,7 @@ COMMENT ON TABLE public.mdl_block_recentlyaccesseditems IS 'Most recently access -- --- TOC entry 922 (class 1259 OID 22562) +-- TOC entry 286 (class 1259 OID 59459) -- Name: mdl_block_recentlyaccesseditems_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2698,7 +2698,7 @@ ALTER TABLE public.mdl_block_recentlyaccesseditems_id_seq OWNER TO postgres; -- -- TOC entry 10634 (class 0 OID 0) --- Dependencies: 922 +-- Dependencies: 286 -- Name: mdl_block_recentlyaccesseditems_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2706,7 +2706,7 @@ ALTER SEQUENCE public.mdl_block_recentlyaccesseditems_id_seq OWNED BY public.mdl -- --- TOC entry 925 (class 1259 OID 22576) +-- TOC entry 287 (class 1259 OID 59461) -- Name: mdl_block_rss_client; Type: TABLE; Schema: public; Owner: postgres -- @@ -2727,7 +2727,7 @@ ALTER TABLE public.mdl_block_rss_client OWNER TO postgres; -- -- TOC entry 10635 (class 0 OID 0) --- Dependencies: 925 +-- Dependencies: 287 -- Name: TABLE mdl_block_rss_client; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2735,7 +2735,7 @@ COMMENT ON TABLE public.mdl_block_rss_client IS 'Remote news feed information. C -- --- TOC entry 924 (class 1259 OID 22574) +-- TOC entry 288 (class 1259 OID 59473) -- Name: mdl_block_rss_client_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2751,7 +2751,7 @@ ALTER TABLE public.mdl_block_rss_client_id_seq OWNER TO postgres; -- -- TOC entry 10636 (class 0 OID 0) --- Dependencies: 924 +-- Dependencies: 288 -- Name: mdl_block_rss_client_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2759,7 +2759,7 @@ ALTER SEQUENCE public.mdl_block_rss_client_id_seq OWNED BY public.mdl_block_rss_ -- --- TOC entry 465 (class 1259 OID 18733) +-- TOC entry 289 (class 1259 OID 59475) -- Name: mdl_blog_association; Type: TABLE; Schema: public; Owner: postgres -- @@ -2774,7 +2774,7 @@ ALTER TABLE public.mdl_blog_association OWNER TO postgres; -- -- TOC entry 10637 (class 0 OID 0) --- Dependencies: 465 +-- Dependencies: 289 -- Name: TABLE mdl_blog_association; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2782,7 +2782,7 @@ COMMENT ON TABLE public.mdl_blog_association IS 'Associations of blog entries wi -- --- TOC entry 464 (class 1259 OID 18731) +-- TOC entry 290 (class 1259 OID 59478) -- Name: mdl_blog_association_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2798,7 +2798,7 @@ ALTER TABLE public.mdl_blog_association_id_seq OWNER TO postgres; -- -- TOC entry 10638 (class 0 OID 0) --- Dependencies: 464 +-- Dependencies: 290 -- Name: mdl_blog_association_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2806,7 +2806,7 @@ ALTER SEQUENCE public.mdl_blog_association_id_seq OWNED BY public.mdl_blog_assoc -- --- TOC entry 467 (class 1259 OID 18743) +-- TOC entry 291 (class 1259 OID 59480) -- Name: mdl_blog_external; Type: TABLE; Schema: public; Owner: postgres -- @@ -2827,7 +2827,7 @@ ALTER TABLE public.mdl_blog_external OWNER TO postgres; -- -- TOC entry 10639 (class 0 OID 0) --- Dependencies: 467 +-- Dependencies: 291 -- Name: TABLE mdl_blog_external; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2835,7 +2835,7 @@ COMMENT ON TABLE public.mdl_blog_external IS 'External blog links used for RSS c -- --- TOC entry 466 (class 1259 OID 18741) +-- TOC entry 292 (class 1259 OID 59489) -- Name: mdl_blog_external_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2851,7 +2851,7 @@ ALTER TABLE public.mdl_blog_external_id_seq OWNER TO postgres; -- -- TOC entry 10640 (class 0 OID 0) --- Dependencies: 466 +-- Dependencies: 292 -- Name: mdl_blog_external_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2859,7 +2859,7 @@ ALTER SEQUENCE public.mdl_blog_external_id_seq OWNED BY public.mdl_blog_external -- --- TOC entry 691 (class 1259 OID 20443) +-- TOC entry 293 (class 1259 OID 59491) -- Name: mdl_book; Type: TABLE; Schema: public; Owner: postgres -- @@ -2882,7 +2882,7 @@ ALTER TABLE public.mdl_book OWNER TO postgres; -- -- TOC entry 10641 (class 0 OID 0) --- Dependencies: 691 +-- Dependencies: 293 -- Name: TABLE mdl_book; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2890,7 +2890,7 @@ COMMENT ON TABLE public.mdl_book IS 'Defines book'; -- --- TOC entry 693 (class 1259 OID 20463) +-- TOC entry 294 (class 1259 OID 59506) -- Name: mdl_book_chapters; Type: TABLE; Schema: public; Owner: postgres -- @@ -2913,7 +2913,7 @@ ALTER TABLE public.mdl_book_chapters OWNER TO postgres; -- -- TOC entry 10642 (class 0 OID 0) --- Dependencies: 693 +-- Dependencies: 294 -- Name: TABLE mdl_book_chapters; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2921,7 +2921,7 @@ COMMENT ON TABLE public.mdl_book_chapters IS 'Defines book_chapters'; -- --- TOC entry 692 (class 1259 OID 20461) +-- TOC entry 295 (class 1259 OID 59521) -- Name: mdl_book_chapters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2937,7 +2937,7 @@ ALTER TABLE public.mdl_book_chapters_id_seq OWNER TO postgres; -- -- TOC entry 10643 (class 0 OID 0) --- Dependencies: 692 +-- Dependencies: 295 -- Name: mdl_book_chapters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2945,7 +2945,7 @@ ALTER SEQUENCE public.mdl_book_chapters_id_seq OWNED BY public.mdl_book_chapters -- --- TOC entry 690 (class 1259 OID 20441) +-- TOC entry 296 (class 1259 OID 59523) -- Name: mdl_book_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2961,7 +2961,7 @@ ALTER TABLE public.mdl_book_id_seq OWNER TO postgres; -- -- TOC entry 10644 (class 0 OID 0) --- Dependencies: 690 +-- Dependencies: 296 -- Name: mdl_book_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2969,7 +2969,7 @@ ALTER SEQUENCE public.mdl_book_id_seq OWNED BY public.mdl_book.id; -- --- TOC entry 226 (class 1259 OID 16771) +-- TOC entry 297 (class 1259 OID 59525) -- Name: mdl_cache_filters; Type: TABLE; Schema: public; Owner: postgres -- @@ -2987,7 +2987,7 @@ ALTER TABLE public.mdl_cache_filters OWNER TO postgres; -- -- TOC entry 10645 (class 0 OID 0) --- Dependencies: 226 +-- Dependencies: 297 -- Name: TABLE mdl_cache_filters; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2995,7 +2995,7 @@ COMMENT ON TABLE public.mdl_cache_filters IS 'For keeping information about cach -- --- TOC entry 225 (class 1259 OID 16769) +-- TOC entry 298 (class 1259 OID 59535) -- Name: mdl_cache_filters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3011,7 +3011,7 @@ ALTER TABLE public.mdl_cache_filters_id_seq OWNER TO postgres; -- -- TOC entry 10646 (class 0 OID 0) --- Dependencies: 225 +-- Dependencies: 298 -- Name: mdl_cache_filters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3019,7 +3019,7 @@ ALTER SEQUENCE public.mdl_cache_filters_id_seq OWNED BY public.mdl_cache_filters -- --- TOC entry 415 (class 1259 OID 18372) +-- TOC entry 299 (class 1259 OID 59537) -- Name: mdl_cache_flags; Type: TABLE; Schema: public; Owner: postgres -- @@ -3037,7 +3037,7 @@ ALTER TABLE public.mdl_cache_flags OWNER TO postgres; -- -- TOC entry 10647 (class 0 OID 0) --- Dependencies: 415 +-- Dependencies: 299 -- Name: TABLE mdl_cache_flags; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3045,7 +3045,7 @@ COMMENT ON TABLE public.mdl_cache_flags IS 'Cache of time-sensitive flags'; -- --- TOC entry 414 (class 1259 OID 18370) +-- TOC entry 300 (class 1259 OID 59546) -- Name: mdl_cache_flags_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3061,7 +3061,7 @@ ALTER TABLE public.mdl_cache_flags_id_seq OWNER TO postgres; -- -- TOC entry 10648 (class 0 OID 0) --- Dependencies: 414 +-- Dependencies: 300 -- Name: mdl_cache_flags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3069,7 +3069,7 @@ ALTER SEQUENCE public.mdl_cache_flags_id_seq OWNED BY public.mdl_cache_flags.id; -- --- TOC entry 293 (class 1259 OID 17361) +-- TOC entry 301 (class 1259 OID 59548) -- Name: mdl_capabilities; Type: TABLE; Schema: public; Owner: postgres -- @@ -3087,7 +3087,7 @@ ALTER TABLE public.mdl_capabilities OWNER TO postgres; -- -- TOC entry 10649 (class 0 OID 0) --- Dependencies: 293 +-- Dependencies: 301 -- Name: TABLE mdl_capabilities; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3095,7 +3095,7 @@ COMMENT ON TABLE public.mdl_capabilities IS 'this defines all capabilities'; -- --- TOC entry 292 (class 1259 OID 17359) +-- TOC entry 302 (class 1259 OID 59556) -- Name: mdl_capabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3111,7 +3111,7 @@ ALTER TABLE public.mdl_capabilities_id_seq OWNER TO postgres; -- -- TOC entry 10650 (class 0 OID 0) --- Dependencies: 292 +-- Dependencies: 302 -- Name: mdl_capabilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3119,7 +3119,7 @@ ALTER SEQUENCE public.mdl_capabilities_id_seq OWNED BY public.mdl_capabilities.i -- --- TOC entry 695 (class 1259 OID 20483) +-- TOC entry 303 (class 1259 OID 59558) -- Name: mdl_chat; Type: TABLE; Schema: public; Owner: postgres -- @@ -3141,7 +3141,7 @@ ALTER TABLE public.mdl_chat OWNER TO postgres; -- -- TOC entry 10651 (class 0 OID 0) --- Dependencies: 695 +-- Dependencies: 303 -- Name: TABLE mdl_chat; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3149,7 +3149,7 @@ COMMENT ON TABLE public.mdl_chat IS 'Each of these is a chat room'; -- --- TOC entry 694 (class 1259 OID 20481) +-- TOC entry 304 (class 1259 OID 59572) -- Name: mdl_chat_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3165,7 +3165,7 @@ ALTER TABLE public.mdl_chat_id_seq OWNER TO postgres; -- -- TOC entry 10652 (class 0 OID 0) --- Dependencies: 694 +-- Dependencies: 304 -- Name: mdl_chat_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3173,7 +3173,7 @@ ALTER SEQUENCE public.mdl_chat_id_seq OWNED BY public.mdl_chat.id; -- --- TOC entry 697 (class 1259 OID 20503) +-- TOC entry 305 (class 1259 OID 59574) -- Name: mdl_chat_messages; Type: TABLE; Schema: public; Owner: postgres -- @@ -3192,7 +3192,7 @@ ALTER TABLE public.mdl_chat_messages OWNER TO postgres; -- -- TOC entry 10653 (class 0 OID 0) --- Dependencies: 697 +-- Dependencies: 305 -- Name: TABLE mdl_chat_messages; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3200,7 +3200,7 @@ COMMENT ON TABLE public.mdl_chat_messages IS 'Stores all the actual chat message -- --- TOC entry 699 (class 1259 OID 20523) +-- TOC entry 306 (class 1259 OID 59585) -- Name: mdl_chat_messages_current; Type: TABLE; Schema: public; Owner: postgres -- @@ -3219,7 +3219,7 @@ ALTER TABLE public.mdl_chat_messages_current OWNER TO postgres; -- -- TOC entry 10654 (class 0 OID 0) --- Dependencies: 699 +-- Dependencies: 306 -- Name: TABLE mdl_chat_messages_current; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3227,7 +3227,7 @@ COMMENT ON TABLE public.mdl_chat_messages_current IS 'Stores current session'; -- --- TOC entry 698 (class 1259 OID 20521) +-- TOC entry 307 (class 1259 OID 59596) -- Name: mdl_chat_messages_current_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3243,7 +3243,7 @@ ALTER TABLE public.mdl_chat_messages_current_id_seq OWNER TO postgres; -- -- TOC entry 10655 (class 0 OID 0) --- Dependencies: 698 +-- Dependencies: 307 -- Name: mdl_chat_messages_current_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3251,7 +3251,7 @@ ALTER SEQUENCE public.mdl_chat_messages_current_id_seq OWNED BY public.mdl_chat_ -- --- TOC entry 696 (class 1259 OID 20501) +-- TOC entry 308 (class 1259 OID 59598) -- Name: mdl_chat_messages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3267,7 +3267,7 @@ ALTER TABLE public.mdl_chat_messages_id_seq OWNER TO postgres; -- -- TOC entry 10656 (class 0 OID 0) --- Dependencies: 696 +-- Dependencies: 308 -- Name: mdl_chat_messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3275,7 +3275,7 @@ ALTER SEQUENCE public.mdl_chat_messages_id_seq OWNED BY public.mdl_chat_messages -- --- TOC entry 701 (class 1259 OID 20543) +-- TOC entry 309 (class 1259 OID 59600) -- Name: mdl_chat_users; Type: TABLE; Schema: public; Owner: postgres -- @@ -3299,7 +3299,7 @@ ALTER TABLE public.mdl_chat_users OWNER TO postgres; -- -- TOC entry 10657 (class 0 OID 0) --- Dependencies: 701 +-- Dependencies: 309 -- Name: TABLE mdl_chat_users; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3307,7 +3307,7 @@ COMMENT ON TABLE public.mdl_chat_users IS 'Keeps track of which users are in whi -- --- TOC entry 700 (class 1259 OID 20541) +-- TOC entry 310 (class 1259 OID 59614) -- Name: mdl_chat_users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3323,7 +3323,7 @@ ALTER TABLE public.mdl_chat_users_id_seq OWNER TO postgres; -- -- TOC entry 10658 (class 0 OID 0) --- Dependencies: 700 +-- Dependencies: 310 -- Name: mdl_chat_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3331,7 +3331,7 @@ ALTER SEQUENCE public.mdl_chat_users_id_seq OWNED BY public.mdl_chat_users.id; -- --- TOC entry 703 (class 1259 OID 20566) +-- TOC entry 311 (class 1259 OID 59616) -- Name: mdl_choice; Type: TABLE; Schema: public; Owner: postgres -- @@ -3361,7 +3361,7 @@ ALTER TABLE public.mdl_choice OWNER TO postgres; -- -- TOC entry 10659 (class 0 OID 0) --- Dependencies: 703 +-- Dependencies: 311 -- Name: TABLE mdl_choice; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3369,7 +3369,7 @@ COMMENT ON TABLE public.mdl_choice IS 'Available choices are stored here'; -- --- TOC entry 707 (class 1259 OID 20609) +-- TOC entry 312 (class 1259 OID 59638) -- Name: mdl_choice_answers; Type: TABLE; Schema: public; Owner: postgres -- @@ -3386,7 +3386,7 @@ ALTER TABLE public.mdl_choice_answers OWNER TO postgres; -- -- TOC entry 10660 (class 0 OID 0) --- Dependencies: 707 +-- Dependencies: 312 -- Name: TABLE mdl_choice_answers; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3394,7 +3394,7 @@ COMMENT ON TABLE public.mdl_choice_answers IS 'choices performed by users'; -- --- TOC entry 706 (class 1259 OID 20607) +-- TOC entry 313 (class 1259 OID 59645) -- Name: mdl_choice_answers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3410,7 +3410,7 @@ ALTER TABLE public.mdl_choice_answers_id_seq OWNER TO postgres; -- -- TOC entry 10661 (class 0 OID 0) --- Dependencies: 706 +-- Dependencies: 313 -- Name: mdl_choice_answers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3418,7 +3418,7 @@ ALTER SEQUENCE public.mdl_choice_answers_id_seq OWNED BY public.mdl_choice_answe -- --- TOC entry 702 (class 1259 OID 20564) +-- TOC entry 314 (class 1259 OID 59647) -- Name: mdl_choice_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3434,7 +3434,7 @@ ALTER TABLE public.mdl_choice_id_seq OWNER TO postgres; -- -- TOC entry 10662 (class 0 OID 0) --- Dependencies: 702 +-- Dependencies: 314 -- Name: mdl_choice_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3442,7 +3442,7 @@ ALTER SEQUENCE public.mdl_choice_id_seq OWNED BY public.mdl_choice.id; -- --- TOC entry 705 (class 1259 OID 20594) +-- TOC entry 315 (class 1259 OID 59649) -- Name: mdl_choice_options; Type: TABLE; Schema: public; Owner: postgres -- @@ -3459,7 +3459,7 @@ ALTER TABLE public.mdl_choice_options OWNER TO postgres; -- -- TOC entry 10663 (class 0 OID 0) --- Dependencies: 705 +-- Dependencies: 315 -- Name: TABLE mdl_choice_options; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3467,7 +3467,7 @@ COMMENT ON TABLE public.mdl_choice_options IS 'available options to choice'; -- --- TOC entry 704 (class 1259 OID 20592) +-- TOC entry 316 (class 1259 OID 59658) -- Name: mdl_choice_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3483,7 +3483,7 @@ ALTER TABLE public.mdl_choice_options_id_seq OWNER TO postgres; -- -- TOC entry 10664 (class 0 OID 0) --- Dependencies: 704 +-- Dependencies: 316 -- Name: mdl_choice_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3491,7 +3491,7 @@ ALTER SEQUENCE public.mdl_choice_options_id_seq OWNED BY public.mdl_choice_optio -- --- TOC entry 407 (class 1259 OID 18318) +-- TOC entry 317 (class 1259 OID 59660) -- Name: mdl_cohort; Type: TABLE; Schema: public; Owner: postgres -- @@ -3514,7 +3514,7 @@ ALTER TABLE public.mdl_cohort OWNER TO postgres; -- -- TOC entry 10665 (class 0 OID 0) --- Dependencies: 407 +-- Dependencies: 317 -- Name: TABLE mdl_cohort; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3522,7 +3522,7 @@ COMMENT ON TABLE public.mdl_cohort IS 'Each record represents one cohort (aka si -- --- TOC entry 406 (class 1259 OID 18316) +-- TOC entry 318 (class 1259 OID 59669) -- Name: mdl_cohort_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3538,7 +3538,7 @@ ALTER TABLE public.mdl_cohort_id_seq OWNER TO postgres; -- -- TOC entry 10666 (class 0 OID 0) --- Dependencies: 406 +-- Dependencies: 318 -- Name: mdl_cohort_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3546,7 +3546,7 @@ ALTER SEQUENCE public.mdl_cohort_id_seq OWNED BY public.mdl_cohort.id; -- --- TOC entry 409 (class 1259 OID 18333) +-- TOC entry 319 (class 1259 OID 59671) -- Name: mdl_cohort_members; Type: TABLE; Schema: public; Owner: postgres -- @@ -3562,7 +3562,7 @@ ALTER TABLE public.mdl_cohort_members OWNER TO postgres; -- -- TOC entry 10667 (class 0 OID 0) --- Dependencies: 409 +-- Dependencies: 319 -- Name: TABLE mdl_cohort_members; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3570,7 +3570,7 @@ COMMENT ON TABLE public.mdl_cohort_members IS 'Link a user to a cohort.'; -- --- TOC entry 408 (class 1259 OID 18331) +-- TOC entry 320 (class 1259 OID 59677) -- Name: mdl_cohort_members_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3586,7 +3586,7 @@ ALTER TABLE public.mdl_cohort_members_id_seq OWNER TO postgres; -- -- TOC entry 10668 (class 0 OID 0) --- Dependencies: 408 +-- Dependencies: 320 -- Name: mdl_cohort_members_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3594,7 +3594,7 @@ ALTER SEQUENCE public.mdl_cohort_members_id_seq OWNED BY public.mdl_cohort_membe -- --- TOC entry 453 (class 1259 OID 18650) +-- TOC entry 321 (class 1259 OID 59679) -- Name: mdl_comments; Type: TABLE; Schema: public; Owner: postgres -- @@ -3615,7 +3615,7 @@ ALTER TABLE public.mdl_comments OWNER TO postgres; -- -- TOC entry 10669 (class 0 OID 0) --- Dependencies: 453 +-- Dependencies: 321 -- Name: TABLE mdl_comments; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3623,7 +3623,7 @@ COMMENT ON TABLE public.mdl_comments IS 'moodle comments module'; -- --- TOC entry 452 (class 1259 OID 18648) +-- TOC entry 322 (class 1259 OID 59687) -- Name: mdl_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3639,7 +3639,7 @@ ALTER TABLE public.mdl_comments_id_seq OWNER TO postgres; -- -- TOC entry 10670 (class 0 OID 0) --- Dependencies: 452 +-- Dependencies: 322 -- Name: mdl_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3647,7 +3647,7 @@ ALTER SEQUENCE public.mdl_comments_id_seq OWNED BY public.mdl_comments.id; -- --- TOC entry 537 (class 1259 OID 19276) +-- TOC entry 323 (class 1259 OID 59689) -- Name: mdl_competency; Type: TABLE; Schema: public; Owner: postgres -- @@ -3676,7 +3676,7 @@ ALTER TABLE public.mdl_competency OWNER TO postgres; -- -- TOC entry 10671 (class 0 OID 0) --- Dependencies: 537 +-- Dependencies: 323 -- Name: TABLE mdl_competency; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3684,7 +3684,7 @@ COMMENT ON TABLE public.mdl_competency IS 'This table contains the master record -- --- TOC entry 543 (class 1259 OID 19317) +-- TOC entry 324 (class 1259 OID 59699) -- Name: mdl_competency_coursecomp; Type: TABLE; Schema: public; Owner: postgres -- @@ -3704,7 +3704,7 @@ ALTER TABLE public.mdl_competency_coursecomp OWNER TO postgres; -- -- TOC entry 10672 (class 0 OID 0) --- Dependencies: 543 +-- Dependencies: 324 -- Name: TABLE mdl_competency_coursecomp; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3712,7 +3712,7 @@ COMMENT ON TABLE public.mdl_competency_coursecomp IS 'Link a competency to a cou -- --- TOC entry 542 (class 1259 OID 19315) +-- TOC entry 325 (class 1259 OID 59702) -- Name: mdl_competency_coursecomp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3728,7 +3728,7 @@ ALTER TABLE public.mdl_competency_coursecomp_id_seq OWNER TO postgres; -- -- TOC entry 10673 (class 0 OID 0) --- Dependencies: 542 +-- Dependencies: 325 -- Name: mdl_competency_coursecomp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3736,7 +3736,7 @@ ALTER SEQUENCE public.mdl_competency_coursecomp_id_seq OWNED BY public.mdl_compe -- --- TOC entry 539 (class 1259 OID 19293) +-- TOC entry 326 (class 1259 OID 59704) -- Name: mdl_competency_coursecompsetting; Type: TABLE; Schema: public; Owner: postgres -- @@ -3754,7 +3754,7 @@ ALTER TABLE public.mdl_competency_coursecompsetting OWNER TO postgres; -- -- TOC entry 10674 (class 0 OID 0) --- Dependencies: 539 +-- Dependencies: 326 -- Name: TABLE mdl_competency_coursecompsetting; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3762,7 +3762,7 @@ COMMENT ON TABLE public.mdl_competency_coursecompsetting IS 'This table contains -- --- TOC entry 538 (class 1259 OID 19291) +-- TOC entry 327 (class 1259 OID 59707) -- Name: mdl_competency_coursecompsetting_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3778,7 +3778,7 @@ ALTER TABLE public.mdl_competency_coursecompsetting_id_seq OWNER TO postgres; -- -- TOC entry 10675 (class 0 OID 0) --- Dependencies: 538 +-- Dependencies: 327 -- Name: mdl_competency_coursecompsetting_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3786,7 +3786,7 @@ ALTER SEQUENCE public.mdl_competency_coursecompsetting_id_seq OWNED BY public.md -- --- TOC entry 563 (class 1259 OID 19425) +-- TOC entry 328 (class 1259 OID 59709) -- Name: mdl_competency_evidence; Type: TABLE; Schema: public; Owner: postgres -- @@ -3812,7 +3812,7 @@ ALTER TABLE public.mdl_competency_evidence OWNER TO postgres; -- -- TOC entry 10676 (class 0 OID 0) --- Dependencies: 563 +-- Dependencies: 328 -- Name: TABLE mdl_competency_evidence; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3820,7 +3820,7 @@ COMMENT ON TABLE public.mdl_competency_evidence IS 'The evidence linked to a use -- --- TOC entry 562 (class 1259 OID 19423) +-- TOC entry 329 (class 1259 OID 59717) -- Name: mdl_competency_evidence_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3836,7 +3836,7 @@ ALTER TABLE public.mdl_competency_evidence_id_seq OWNER TO postgres; -- -- TOC entry 10677 (class 0 OID 0) --- Dependencies: 562 +-- Dependencies: 329 -- Name: mdl_competency_evidence_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3844,7 +3844,7 @@ ALTER SEQUENCE public.mdl_competency_evidence_id_seq OWNED BY public.mdl_compete -- --- TOC entry 541 (class 1259 OID 19302) +-- TOC entry 330 (class 1259 OID 59719) -- Name: mdl_competency_framework; Type: TABLE; Schema: public; Owner: postgres -- @@ -3869,7 +3869,7 @@ ALTER TABLE public.mdl_competency_framework OWNER TO postgres; -- -- TOC entry 10678 (class 0 OID 0) --- Dependencies: 541 +-- Dependencies: 330 -- Name: TABLE mdl_competency_framework; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3877,7 +3877,7 @@ COMMENT ON TABLE public.mdl_competency_framework IS 'List of competency framewor -- --- TOC entry 540 (class 1259 OID 19300) +-- TOC entry 331 (class 1259 OID 59728) -- Name: mdl_competency_framework_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3893,7 +3893,7 @@ ALTER TABLE public.mdl_competency_framework_id_seq OWNER TO postgres; -- -- TOC entry 10679 (class 0 OID 0) --- Dependencies: 540 +-- Dependencies: 331 -- Name: mdl_competency_framework_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3901,7 +3901,7 @@ ALTER SEQUENCE public.mdl_competency_framework_id_seq OWNED BY public.mdl_compet -- --- TOC entry 536 (class 1259 OID 19274) +-- TOC entry 332 (class 1259 OID 59730) -- Name: mdl_competency_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3917,7 +3917,7 @@ ALTER TABLE public.mdl_competency_id_seq OWNER TO postgres; -- -- TOC entry 10680 (class 0 OID 0) --- Dependencies: 536 +-- Dependencies: 332 -- Name: mdl_competency_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3925,7 +3925,7 @@ ALTER SEQUENCE public.mdl_competency_id_seq OWNED BY public.mdl_competency.id; -- --- TOC entry 569 (class 1259 OID 19462) +-- TOC entry 333 (class 1259 OID 59732) -- Name: mdl_competency_modulecomp; Type: TABLE; Schema: public; Owner: postgres -- @@ -3945,7 +3945,7 @@ ALTER TABLE public.mdl_competency_modulecomp OWNER TO postgres; -- -- TOC entry 10681 (class 0 OID 0) --- Dependencies: 569 +-- Dependencies: 333 -- Name: TABLE mdl_competency_modulecomp; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3953,7 +3953,7 @@ COMMENT ON TABLE public.mdl_competency_modulecomp IS 'Link a competency to a mod -- --- TOC entry 568 (class 1259 OID 19460) +-- TOC entry 334 (class 1259 OID 59735) -- Name: mdl_competency_modulecomp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3969,7 +3969,7 @@ ALTER TABLE public.mdl_competency_modulecomp_id_seq OWNER TO postgres; -- -- TOC entry 10682 (class 0 OID 0) --- Dependencies: 568 +-- Dependencies: 334 -- Name: mdl_competency_modulecomp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3977,7 +3977,7 @@ ALTER SEQUENCE public.mdl_competency_modulecomp_id_seq OWNED BY public.mdl_compe -- --- TOC entry 545 (class 1259 OID 19329) +-- TOC entry 335 (class 1259 OID 59737) -- Name: mdl_competency_plan; Type: TABLE; Schema: public; Owner: postgres -- @@ -4002,7 +4002,7 @@ ALTER TABLE public.mdl_competency_plan OWNER TO postgres; -- -- TOC entry 10683 (class 0 OID 0) --- Dependencies: 545 +-- Dependencies: 335 -- Name: TABLE mdl_competency_plan; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4010,7 +4010,7 @@ COMMENT ON TABLE public.mdl_competency_plan IS 'Learning plans'; -- --- TOC entry 544 (class 1259 OID 19327) +-- TOC entry 336 (class 1259 OID 59747) -- Name: mdl_competency_plan_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4026,7 +4026,7 @@ ALTER TABLE public.mdl_competency_plan_id_seq OWNER TO postgres; -- -- TOC entry 10684 (class 0 OID 0) --- Dependencies: 544 +-- Dependencies: 336 -- Name: mdl_competency_plan_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4034,7 +4034,7 @@ ALTER SEQUENCE public.mdl_competency_plan_id_seq OWNED BY public.mdl_competency_ -- --- TOC entry 561 (class 1259 OID 19416) +-- TOC entry 337 (class 1259 OID 59749) -- Name: mdl_competency_plancomp; Type: TABLE; Schema: public; Owner: postgres -- @@ -4053,7 +4053,7 @@ ALTER TABLE public.mdl_competency_plancomp OWNER TO postgres; -- -- TOC entry 10685 (class 0 OID 0) --- Dependencies: 561 +-- Dependencies: 337 -- Name: TABLE mdl_competency_plancomp; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4061,7 +4061,7 @@ COMMENT ON TABLE public.mdl_competency_plancomp IS 'Plan competencies'; -- --- TOC entry 560 (class 1259 OID 19414) +-- TOC entry 338 (class 1259 OID 59752) -- Name: mdl_competency_plancomp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4077,7 +4077,7 @@ ALTER TABLE public.mdl_competency_plancomp_id_seq OWNER TO postgres; -- -- TOC entry 10686 (class 0 OID 0) --- Dependencies: 560 +-- Dependencies: 338 -- Name: mdl_competency_plancomp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4085,7 +4085,7 @@ ALTER SEQUENCE public.mdl_competency_plancomp_id_seq OWNED BY public.mdl_compete -- --- TOC entry 553 (class 1259 OID 19380) +-- TOC entry 339 (class 1259 OID 59754) -- Name: mdl_competency_relatedcomp; Type: TABLE; Schema: public; Owner: postgres -- @@ -4103,7 +4103,7 @@ ALTER TABLE public.mdl_competency_relatedcomp OWNER TO postgres; -- -- TOC entry 10687 (class 0 OID 0) --- Dependencies: 553 +-- Dependencies: 339 -- Name: TABLE mdl_competency_relatedcomp; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4111,7 +4111,7 @@ COMMENT ON TABLE public.mdl_competency_relatedcomp IS 'Related competencies'; -- --- TOC entry 552 (class 1259 OID 19378) +-- TOC entry 340 (class 1259 OID 59757) -- Name: mdl_competency_relatedcomp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4127,7 +4127,7 @@ ALTER TABLE public.mdl_competency_relatedcomp_id_seq OWNER TO postgres; -- -- TOC entry 10688 (class 0 OID 0) --- Dependencies: 552 +-- Dependencies: 340 -- Name: mdl_competency_relatedcomp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4135,7 +4135,7 @@ ALTER SEQUENCE public.mdl_competency_relatedcomp_id_seq OWNED BY public.mdl_comp -- --- TOC entry 547 (class 1259 OID 19347) +-- TOC entry 341 (class 1259 OID 59759) -- Name: mdl_competency_template; Type: TABLE; Schema: public; Owner: postgres -- @@ -4157,7 +4157,7 @@ ALTER TABLE public.mdl_competency_template OWNER TO postgres; -- -- TOC entry 10689 (class 0 OID 0) --- Dependencies: 547 +-- Dependencies: 341 -- Name: TABLE mdl_competency_template; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4165,7 +4165,7 @@ COMMENT ON TABLE public.mdl_competency_template IS 'Learning plan templates.'; -- --- TOC entry 546 (class 1259 OID 19345) +-- TOC entry 342 (class 1259 OID 59767) -- Name: mdl_competency_template_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4181,7 +4181,7 @@ ALTER TABLE public.mdl_competency_template_id_seq OWNER TO postgres; -- -- TOC entry 10690 (class 0 OID 0) --- Dependencies: 546 +-- Dependencies: 342 -- Name: mdl_competency_template_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4189,7 +4189,7 @@ ALTER SEQUENCE public.mdl_competency_template_id_seq OWNED BY public.mdl_compete -- --- TOC entry 551 (class 1259 OID 19370) +-- TOC entry 343 (class 1259 OID 59769) -- Name: mdl_competency_templatecohort; Type: TABLE; Schema: public; Owner: postgres -- @@ -4207,7 +4207,7 @@ ALTER TABLE public.mdl_competency_templatecohort OWNER TO postgres; -- -- TOC entry 10691 (class 0 OID 0) --- Dependencies: 551 +-- Dependencies: 343 -- Name: TABLE mdl_competency_templatecohort; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4215,7 +4215,7 @@ COMMENT ON TABLE public.mdl_competency_templatecohort IS 'Default comment for th -- --- TOC entry 550 (class 1259 OID 19368) +-- TOC entry 344 (class 1259 OID 59772) -- Name: mdl_competency_templatecohort_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4231,7 +4231,7 @@ ALTER TABLE public.mdl_competency_templatecohort_id_seq OWNER TO postgres; -- -- TOC entry 10692 (class 0 OID 0) --- Dependencies: 550 +-- Dependencies: 344 -- Name: mdl_competency_templatecohort_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4239,7 +4239,7 @@ ALTER SEQUENCE public.mdl_competency_templatecohort_id_seq OWNED BY public.mdl_c -- --- TOC entry 549 (class 1259 OID 19360) +-- TOC entry 345 (class 1259 OID 59774) -- Name: mdl_competency_templatecomp; Type: TABLE; Schema: public; Owner: postgres -- @@ -4258,7 +4258,7 @@ ALTER TABLE public.mdl_competency_templatecomp OWNER TO postgres; -- -- TOC entry 10693 (class 0 OID 0) --- Dependencies: 549 +-- Dependencies: 345 -- Name: TABLE mdl_competency_templatecomp; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4266,7 +4266,7 @@ COMMENT ON TABLE public.mdl_competency_templatecomp IS 'Link a competency to a l -- --- TOC entry 548 (class 1259 OID 19358) +-- TOC entry 346 (class 1259 OID 59777) -- Name: mdl_competency_templatecomp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4282,7 +4282,7 @@ ALTER TABLE public.mdl_competency_templatecomp_id_seq OWNER TO postgres; -- -- TOC entry 10694 (class 0 OID 0) --- Dependencies: 548 +-- Dependencies: 346 -- Name: mdl_competency_templatecomp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4290,7 +4290,7 @@ ALTER SEQUENCE public.mdl_competency_templatecomp_id_seq OWNED BY public.mdl_com -- --- TOC entry 555 (class 1259 OID 19388) +-- TOC entry 347 (class 1259 OID 59779) -- Name: mdl_competency_usercomp; Type: TABLE; Schema: public; Owner: postgres -- @@ -4312,7 +4312,7 @@ ALTER TABLE public.mdl_competency_usercomp OWNER TO postgres; -- -- TOC entry 10695 (class 0 OID 0) --- Dependencies: 555 +-- Dependencies: 347 -- Name: TABLE mdl_competency_usercomp; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4320,7 +4320,7 @@ COMMENT ON TABLE public.mdl_competency_usercomp IS 'User competencies'; -- --- TOC entry 554 (class 1259 OID 19386) +-- TOC entry 348 (class 1259 OID 59783) -- Name: mdl_competency_usercomp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4336,7 +4336,7 @@ ALTER TABLE public.mdl_competency_usercomp_id_seq OWNER TO postgres; -- -- TOC entry 10696 (class 0 OID 0) --- Dependencies: 554 +-- Dependencies: 348 -- Name: mdl_competency_usercomp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4344,7 +4344,7 @@ ALTER SEQUENCE public.mdl_competency_usercomp_id_seq OWNED BY public.mdl_compete -- --- TOC entry 557 (class 1259 OID 19398) +-- TOC entry 349 (class 1259 OID 59785) -- Name: mdl_competency_usercompcourse; Type: TABLE; Schema: public; Owner: postgres -- @@ -4365,7 +4365,7 @@ ALTER TABLE public.mdl_competency_usercompcourse OWNER TO postgres; -- -- TOC entry 10697 (class 0 OID 0) --- Dependencies: 557 +-- Dependencies: 349 -- Name: TABLE mdl_competency_usercompcourse; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4373,7 +4373,7 @@ COMMENT ON TABLE public.mdl_competency_usercompcourse IS 'User competencies in a -- --- TOC entry 556 (class 1259 OID 19396) +-- TOC entry 350 (class 1259 OID 59788) -- Name: mdl_competency_usercompcourse_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4389,7 +4389,7 @@ ALTER TABLE public.mdl_competency_usercompcourse_id_seq OWNER TO postgres; -- -- TOC entry 10698 (class 0 OID 0) --- Dependencies: 556 +-- Dependencies: 350 -- Name: mdl_competency_usercompcourse_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4397,7 +4397,7 @@ ALTER SEQUENCE public.mdl_competency_usercompcourse_id_seq OWNED BY public.mdl_c -- --- TOC entry 559 (class 1259 OID 19407) +-- TOC entry 351 (class 1259 OID 59790) -- Name: mdl_competency_usercompplan; Type: TABLE; Schema: public; Owner: postgres -- @@ -4419,7 +4419,7 @@ ALTER TABLE public.mdl_competency_usercompplan OWNER TO postgres; -- -- TOC entry 10699 (class 0 OID 0) --- Dependencies: 559 +-- Dependencies: 351 -- Name: TABLE mdl_competency_usercompplan; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4427,7 +4427,7 @@ COMMENT ON TABLE public.mdl_competency_usercompplan IS 'User competencies plans' -- --- TOC entry 558 (class 1259 OID 19405) +-- TOC entry 352 (class 1259 OID 59793) -- Name: mdl_competency_usercompplan_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4443,7 +4443,7 @@ ALTER TABLE public.mdl_competency_usercompplan_id_seq OWNER TO postgres; -- -- TOC entry 10700 (class 0 OID 0) --- Dependencies: 558 +-- Dependencies: 352 -- Name: mdl_competency_usercompplan_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4451,7 +4451,7 @@ ALTER SEQUENCE public.mdl_competency_usercompplan_id_seq OWNED BY public.mdl_com -- --- TOC entry 565 (class 1259 OID 19439) +-- TOC entry 353 (class 1259 OID 59795) -- Name: mdl_competency_userevidence; Type: TABLE; Schema: public; Owner: postgres -- @@ -4472,7 +4472,7 @@ ALTER TABLE public.mdl_competency_userevidence OWNER TO postgres; -- -- TOC entry 10701 (class 0 OID 0) --- Dependencies: 565 +-- Dependencies: 353 -- Name: TABLE mdl_competency_userevidence; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4480,7 +4480,7 @@ COMMENT ON TABLE public.mdl_competency_userevidence IS 'The evidence of prior le -- --- TOC entry 564 (class 1259 OID 19437) +-- TOC entry 354 (class 1259 OID 59802) -- Name: mdl_competency_userevidence_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4496,7 +4496,7 @@ ALTER TABLE public.mdl_competency_userevidence_id_seq OWNER TO postgres; -- -- TOC entry 10702 (class 0 OID 0) --- Dependencies: 564 +-- Dependencies: 354 -- Name: mdl_competency_userevidence_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4504,7 +4504,7 @@ ALTER SEQUENCE public.mdl_competency_userevidence_id_seq OWNED BY public.mdl_com -- --- TOC entry 567 (class 1259 OID 19452) +-- TOC entry 355 (class 1259 OID 59804) -- Name: mdl_competency_userevidencecomp; Type: TABLE; Schema: public; Owner: postgres -- @@ -4522,7 +4522,7 @@ ALTER TABLE public.mdl_competency_userevidencecomp OWNER TO postgres; -- -- TOC entry 10703 (class 0 OID 0) --- Dependencies: 567 +-- Dependencies: 355 -- Name: TABLE mdl_competency_userevidencecomp; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4530,7 +4530,7 @@ COMMENT ON TABLE public.mdl_competency_userevidencecomp IS 'Relationship between -- --- TOC entry 566 (class 1259 OID 19450) +-- TOC entry 356 (class 1259 OID 59807) -- Name: mdl_competency_userevidencecomp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4546,7 +4546,7 @@ ALTER TABLE public.mdl_competency_userevidencecomp_id_seq OWNER TO postgres; -- -- TOC entry 10704 (class 0 OID 0) --- Dependencies: 566 +-- Dependencies: 356 -- Name: mdl_competency_userevidencecomp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4554,7 +4554,7 @@ ALTER SEQUENCE public.mdl_competency_userevidencecomp_id_seq OWNED BY public.mdl -- --- TOC entry 186 (class 1259 OID 16387) +-- TOC entry 357 (class 1259 OID 59809) -- Name: mdl_config; Type: TABLE; Schema: public; Owner: postgres -- @@ -4569,7 +4569,7 @@ ALTER TABLE public.mdl_config OWNER TO postgres; -- -- TOC entry 10705 (class 0 OID 0) --- Dependencies: 186 +-- Dependencies: 357 -- Name: TABLE mdl_config; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4577,7 +4577,7 @@ COMMENT ON TABLE public.mdl_config IS 'Moodle configuration variables'; -- --- TOC entry 185 (class 1259 OID 16385) +-- TOC entry 358 (class 1259 OID 59816) -- Name: mdl_config_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4593,7 +4593,7 @@ ALTER TABLE public.mdl_config_id_seq OWNER TO postgres; -- -- TOC entry 10706 (class 0 OID 0) --- Dependencies: 185 +-- Dependencies: 358 -- Name: mdl_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4601,7 +4601,7 @@ ALTER SEQUENCE public.mdl_config_id_seq OWNED BY public.mdl_config.id; -- --- TOC entry 190 (class 1259 OID 16414) +-- TOC entry 359 (class 1259 OID 59818) -- Name: mdl_config_log; Type: TABLE; Schema: public; Owner: postgres -- @@ -4620,7 +4620,7 @@ ALTER TABLE public.mdl_config_log OWNER TO postgres; -- -- TOC entry 10707 (class 0 OID 0) --- Dependencies: 190 +-- Dependencies: 359 -- Name: TABLE mdl_config_log; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4628,7 +4628,7 @@ COMMENT ON TABLE public.mdl_config_log IS 'Changes done in server configuration -- --- TOC entry 189 (class 1259 OID 16412) +-- TOC entry 360 (class 1259 OID 59825) -- Name: mdl_config_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4644,7 +4644,7 @@ ALTER TABLE public.mdl_config_log_id_seq OWNER TO postgres; -- -- TOC entry 10708 (class 0 OID 0) --- Dependencies: 189 +-- Dependencies: 360 -- Name: mdl_config_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4652,7 +4652,7 @@ ALTER SEQUENCE public.mdl_config_log_id_seq OWNED BY public.mdl_config_log.id; -- --- TOC entry 188 (class 1259 OID 16400) +-- TOC entry 361 (class 1259 OID 59827) -- Name: mdl_config_plugins; Type: TABLE; Schema: public; Owner: postgres -- @@ -4668,7 +4668,7 @@ ALTER TABLE public.mdl_config_plugins OWNER TO postgres; -- -- TOC entry 10709 (class 0 OID 0) --- Dependencies: 188 +-- Dependencies: 361 -- Name: TABLE mdl_config_plugins; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4676,7 +4676,7 @@ COMMENT ON TABLE public.mdl_config_plugins IS 'Moodle modules and plugins config -- --- TOC entry 187 (class 1259 OID 16398) +-- TOC entry 362 (class 1259 OID 59835) -- Name: mdl_config_plugins_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4692,7 +4692,7 @@ ALTER TABLE public.mdl_config_plugins_id_seq OWNER TO postgres; -- -- TOC entry 10710 (class 0 OID 0) --- Dependencies: 187 +-- Dependencies: 362 -- Name: mdl_config_plugins_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4700,7 +4700,7 @@ ALTER SEQUENCE public.mdl_config_plugins_id_seq OWNED BY public.mdl_config_plugi -- --- TOC entry 621 (class 1259 OID 19829) +-- TOC entry 363 (class 1259 OID 59837) -- Name: mdl_contentbank_content; Type: TABLE; Schema: public; Owner: postgres -- @@ -4722,7 +4722,7 @@ ALTER TABLE public.mdl_contentbank_content OWNER TO postgres; -- -- TOC entry 10711 (class 0 OID 0) --- Dependencies: 621 +-- Dependencies: 363 -- Name: TABLE mdl_contentbank_content; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4730,7 +4730,7 @@ COMMENT ON TABLE public.mdl_contentbank_content IS 'This table stores content da -- --- TOC entry 620 (class 1259 OID 19827) +-- TOC entry 364 (class 1259 OID 59847) -- Name: mdl_contentbank_content_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4746,7 +4746,7 @@ ALTER TABLE public.mdl_contentbank_content_id_seq OWNER TO postgres; -- -- TOC entry 10712 (class 0 OID 0) --- Dependencies: 620 +-- Dependencies: 364 -- Name: mdl_contentbank_content_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4754,7 +4754,7 @@ ALTER SEQUENCE public.mdl_contentbank_content_id_seq OWNED BY public.mdl_content -- --- TOC entry 290 (class 1259 OID 17338) +-- TOC entry 365 (class 1259 OID 59849) -- Name: mdl_context; Type: TABLE; Schema: public; Owner: postgres -- @@ -4772,7 +4772,7 @@ ALTER TABLE public.mdl_context OWNER TO postgres; -- -- TOC entry 10713 (class 0 OID 0) --- Dependencies: 290 +-- Dependencies: 365 -- Name: TABLE mdl_context; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4780,7 +4780,7 @@ COMMENT ON TABLE public.mdl_context IS 'one of these must be set'; -- --- TOC entry 289 (class 1259 OID 17336) +-- TOC entry 366 (class 1259 OID 59856) -- Name: mdl_context_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4796,7 +4796,7 @@ ALTER TABLE public.mdl_context_id_seq OWNER TO postgres; -- -- TOC entry 10714 (class 0 OID 0) --- Dependencies: 289 +-- Dependencies: 366 -- Name: mdl_context_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4804,7 +4804,7 @@ ALTER SEQUENCE public.mdl_context_id_seq OWNED BY public.mdl_context.id; -- --- TOC entry 291 (class 1259 OID 17352) +-- TOC entry 367 (class 1259 OID 59858) -- Name: mdl_context_temp; Type: TABLE; Schema: public; Owner: postgres -- @@ -4820,7 +4820,7 @@ ALTER TABLE public.mdl_context_temp OWNER TO postgres; -- -- TOC entry 10715 (class 0 OID 0) --- Dependencies: 291 +-- Dependencies: 367 -- Name: TABLE mdl_context_temp; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4828,7 +4828,7 @@ COMMENT ON TABLE public.mdl_context_temp IS 'Used by build_context_path() in upg -- --- TOC entry 194 (class 1259 OID 16443) +-- TOC entry 368 (class 1259 OID 59863) -- Name: mdl_course; Type: TABLE; Schema: public; Owner: postgres -- @@ -4872,7 +4872,7 @@ ALTER TABLE public.mdl_course OWNER TO postgres; -- -- TOC entry 10716 (class 0 OID 0) --- Dependencies: 194 +-- Dependencies: 368 -- Name: TABLE mdl_course; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4880,7 +4880,7 @@ COMMENT ON TABLE public.mdl_course IS 'Central course table'; -- --- TOC entry 196 (class 1259 OID 16488) +-- TOC entry 369 (class 1259 OID 59899) -- Name: mdl_course_categories; Type: TABLE; Schema: public; Owner: postgres -- @@ -4906,7 +4906,7 @@ ALTER TABLE public.mdl_course_categories OWNER TO postgres; -- -- TOC entry 10717 (class 0 OID 0) --- Dependencies: 196 +-- Dependencies: 369 -- Name: TABLE mdl_course_categories; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4914,7 +4914,7 @@ COMMENT ON TABLE public.mdl_course_categories IS 'Course categories'; -- --- TOC entry 195 (class 1259 OID 16486) +-- TOC entry 370 (class 1259 OID 59915) -- Name: mdl_course_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4930,7 +4930,7 @@ ALTER TABLE public.mdl_course_categories_id_seq OWNER TO postgres; -- -- TOC entry 10718 (class 0 OID 0) --- Dependencies: 195 +-- Dependencies: 370 -- Name: mdl_course_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4938,7 +4938,7 @@ ALTER SEQUENCE public.mdl_course_categories_id_seq OWNED BY public.mdl_course_ca -- --- TOC entry 198 (class 1259 OID 16510) +-- TOC entry 371 (class 1259 OID 59917) -- Name: mdl_course_completion_aggr_methd; Type: TABLE; Schema: public; Owner: postgres -- @@ -4955,7 +4955,7 @@ ALTER TABLE public.mdl_course_completion_aggr_methd OWNER TO postgres; -- -- TOC entry 10719 (class 0 OID 0) --- Dependencies: 198 +-- Dependencies: 371 -- Name: TABLE mdl_course_completion_aggr_methd; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4963,7 +4963,7 @@ COMMENT ON TABLE public.mdl_course_completion_aggr_methd IS 'Course completion a -- --- TOC entry 197 (class 1259 OID 16508) +-- TOC entry 372 (class 1259 OID 59922) -- Name: mdl_course_completion_aggr_methd_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4979,7 +4979,7 @@ ALTER TABLE public.mdl_course_completion_aggr_methd_id_seq OWNER TO postgres; -- -- TOC entry 10720 (class 0 OID 0) --- Dependencies: 197 +-- Dependencies: 372 -- Name: mdl_course_completion_aggr_methd_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4987,7 +4987,7 @@ ALTER SEQUENCE public.mdl_course_completion_aggr_methd_id_seq OWNED BY public.md -- --- TOC entry 202 (class 1259 OID 16534) +-- TOC entry 373 (class 1259 OID 59924) -- Name: mdl_course_completion_crit_compl; Type: TABLE; Schema: public; Owner: postgres -- @@ -5006,7 +5006,7 @@ ALTER TABLE public.mdl_course_completion_crit_compl OWNER TO postgres; -- -- TOC entry 10721 (class 0 OID 0) --- Dependencies: 202 +-- Dependencies: 373 -- Name: TABLE mdl_course_completion_crit_compl; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5014,7 +5014,7 @@ COMMENT ON TABLE public.mdl_course_completion_crit_compl IS 'Course completion u -- --- TOC entry 201 (class 1259 OID 16532) +-- TOC entry 374 (class 1259 OID 59930) -- Name: mdl_course_completion_crit_compl_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5030,7 +5030,7 @@ ALTER TABLE public.mdl_course_completion_crit_compl_id_seq OWNER TO postgres; -- -- TOC entry 10722 (class 0 OID 0) --- Dependencies: 201 +-- Dependencies: 374 -- Name: mdl_course_completion_crit_compl_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5038,7 +5038,7 @@ ALTER SEQUENCE public.mdl_course_completion_crit_compl_id_seq OWNED BY public.md -- --- TOC entry 200 (class 1259 OID 16523) +-- TOC entry 375 (class 1259 OID 59932) -- Name: mdl_course_completion_criteria; Type: TABLE; Schema: public; Owner: postgres -- @@ -5060,7 +5060,7 @@ ALTER TABLE public.mdl_course_completion_criteria OWNER TO postgres; -- -- TOC entry 10723 (class 0 OID 0) --- Dependencies: 200 +-- Dependencies: 375 -- Name: TABLE mdl_course_completion_criteria; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5068,7 +5068,7 @@ COMMENT ON TABLE public.mdl_course_completion_criteria IS 'Course completion cri -- --- TOC entry 199 (class 1259 OID 16521) +-- TOC entry 376 (class 1259 OID 59937) -- Name: mdl_course_completion_criteria_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5084,7 +5084,7 @@ ALTER TABLE public.mdl_course_completion_criteria_id_seq OWNER TO postgres; -- -- TOC entry 10724 (class 0 OID 0) --- Dependencies: 199 +-- Dependencies: 376 -- Name: mdl_course_completion_criteria_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5092,7 +5092,7 @@ ALTER SEQUENCE public.mdl_course_completion_criteria_id_seq OWNED BY public.mdl_ -- --- TOC entry 579 (class 1259 OID 19527) +-- TOC entry 377 (class 1259 OID 59939) -- Name: mdl_course_completion_defaults; Type: TABLE; Schema: public; Owner: postgres -- @@ -5112,7 +5112,7 @@ ALTER TABLE public.mdl_course_completion_defaults OWNER TO postgres; -- -- TOC entry 10725 (class 0 OID 0) --- Dependencies: 579 +-- Dependencies: 377 -- Name: TABLE mdl_course_completion_defaults; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5120,7 +5120,7 @@ COMMENT ON TABLE public.mdl_course_completion_defaults IS 'Default settings for -- --- TOC entry 578 (class 1259 OID 19525) +-- TOC entry 378 (class 1259 OID 59949) -- Name: mdl_course_completion_defaults_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5136,7 +5136,7 @@ ALTER TABLE public.mdl_course_completion_defaults_id_seq OWNER TO postgres; -- -- TOC entry 10726 (class 0 OID 0) --- Dependencies: 578 +-- Dependencies: 378 -- Name: mdl_course_completion_defaults_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5144,7 +5144,7 @@ ALTER SEQUENCE public.mdl_course_completion_defaults_id_seq OWNED BY public.mdl_ -- --- TOC entry 204 (class 1259 OID 16550) +-- TOC entry 379 (class 1259 OID 59951) -- Name: mdl_course_completions; Type: TABLE; Schema: public; Owner: postgres -- @@ -5163,7 +5163,7 @@ ALTER TABLE public.mdl_course_completions OWNER TO postgres; -- -- TOC entry 10727 (class 0 OID 0) --- Dependencies: 204 +-- Dependencies: 379 -- Name: TABLE mdl_course_completions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5171,7 +5171,7 @@ COMMENT ON TABLE public.mdl_course_completions IS 'Course completion records'; -- --- TOC entry 203 (class 1259 OID 16548) +-- TOC entry 380 (class 1259 OID 59959) -- Name: mdl_course_completions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5187,7 +5187,7 @@ ALTER TABLE public.mdl_course_completions_id_seq OWNER TO postgres; -- -- TOC entry 10728 (class 0 OID 0) --- Dependencies: 203 +-- Dependencies: 380 -- Name: mdl_course_completions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5195,7 +5195,7 @@ ALTER SEQUENCE public.mdl_course_completions_id_seq OWNED BY public.mdl_course_c -- --- TOC entry 218 (class 1259 OID 16689) +-- TOC entry 381 (class 1259 OID 59961) -- Name: mdl_course_format_options; Type: TABLE; Schema: public; Owner: postgres -- @@ -5213,7 +5213,7 @@ ALTER TABLE public.mdl_course_format_options OWNER TO postgres; -- -- TOC entry 10729 (class 0 OID 0) --- Dependencies: 218 +-- Dependencies: 381 -- Name: TABLE mdl_course_format_options; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5221,7 +5221,7 @@ COMMENT ON TABLE public.mdl_course_format_options IS 'Stores format-specific opt -- --- TOC entry 217 (class 1259 OID 16687) +-- TOC entry 382 (class 1259 OID 59970) -- Name: mdl_course_format_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5237,7 +5237,7 @@ ALTER TABLE public.mdl_course_format_options_id_seq OWNER TO postgres; -- -- TOC entry 10730 (class 0 OID 0) --- Dependencies: 217 +-- Dependencies: 382 -- Name: mdl_course_format_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5245,7 +5245,7 @@ ALTER SEQUENCE public.mdl_course_format_options_id_seq OWNED BY public.mdl_cours -- --- TOC entry 193 (class 1259 OID 16441) +-- TOC entry 383 (class 1259 OID 59972) -- Name: mdl_course_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5261,7 +5261,7 @@ ALTER TABLE public.mdl_course_id_seq OWNER TO postgres; -- -- TOC entry 10731 (class 0 OID 0) --- Dependencies: 193 +-- Dependencies: 383 -- Name: mdl_course_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5269,7 +5269,7 @@ ALTER SEQUENCE public.mdl_course_id_seq OWNED BY public.mdl_course.id; -- --- TOC entry 210 (class 1259 OID 16610) +-- TOC entry 384 (class 1259 OID 59974) -- Name: mdl_course_modules; Type: TABLE; Schema: public; Owner: postgres -- @@ -5302,7 +5302,7 @@ ALTER TABLE public.mdl_course_modules OWNER TO postgres; -- -- TOC entry 10732 (class 0 OID 0) --- Dependencies: 210 +-- Dependencies: 384 -- Name: TABLE mdl_course_modules; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5310,7 +5310,7 @@ COMMENT ON TABLE public.mdl_course_modules IS 'course_modules table retrofitted -- --- TOC entry 212 (class 1259 OID 16644) +-- TOC entry 385 (class 1259 OID 59997) -- Name: mdl_course_modules_completion; Type: TABLE; Schema: public; Owner: postgres -- @@ -5329,7 +5329,7 @@ ALTER TABLE public.mdl_course_modules_completion OWNER TO postgres; -- -- TOC entry 10733 (class 0 OID 0) --- Dependencies: 212 +-- Dependencies: 385 -- Name: TABLE mdl_course_modules_completion; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5337,7 +5337,7 @@ COMMENT ON TABLE public.mdl_course_modules_completion IS 'Stores the completion -- --- TOC entry 211 (class 1259 OID 16642) +-- TOC entry 386 (class 1259 OID 60000) -- Name: mdl_course_modules_completion_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5353,7 +5353,7 @@ ALTER TABLE public.mdl_course_modules_completion_id_seq OWNER TO postgres; -- -- TOC entry 10734 (class 0 OID 0) --- Dependencies: 211 +-- Dependencies: 386 -- Name: mdl_course_modules_completion_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5361,7 +5361,7 @@ ALTER SEQUENCE public.mdl_course_modules_completion_id_seq OWNED BY public.mdl_c -- --- TOC entry 209 (class 1259 OID 16608) +-- TOC entry 387 (class 1259 OID 60002) -- Name: mdl_course_modules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5377,7 +5377,7 @@ ALTER TABLE public.mdl_course_modules_id_seq OWNER TO postgres; -- -- TOC entry 10735 (class 0 OID 0) --- Dependencies: 209 +-- Dependencies: 387 -- Name: mdl_course_modules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5385,7 +5385,7 @@ ALTER SEQUENCE public.mdl_course_modules_id_seq OWNED BY public.mdl_course_modul -- --- TOC entry 481 (class 1259 OID 18855) +-- TOC entry 388 (class 1259 OID 60004) -- Name: mdl_course_published; Type: TABLE; Schema: public; Owner: postgres -- @@ -5405,7 +5405,7 @@ ALTER TABLE public.mdl_course_published OWNER TO postgres; -- -- TOC entry 10736 (class 0 OID 0) --- Dependencies: 481 +-- Dependencies: 388 -- Name: TABLE mdl_course_published; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5413,7 +5413,7 @@ COMMENT ON TABLE public.mdl_course_published IS 'Information about how and when -- --- TOC entry 480 (class 1259 OID 18853) +-- TOC entry 389 (class 1259 OID 60009) -- Name: mdl_course_published_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5429,7 +5429,7 @@ ALTER TABLE public.mdl_course_published_id_seq OWNER TO postgres; -- -- TOC entry 10737 (class 0 OID 0) --- Dependencies: 480 +-- Dependencies: 389 -- Name: mdl_course_published_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5437,7 +5437,7 @@ ALTER SEQUENCE public.mdl_course_published_id_seq OWNED BY public.mdl_course_pub -- --- TOC entry 216 (class 1259 OID 16671) +-- TOC entry 390 (class 1259 OID 60011) -- Name: mdl_course_request; Type: TABLE; Schema: public; Owner: postgres -- @@ -5458,7 +5458,7 @@ ALTER TABLE public.mdl_course_request OWNER TO postgres; -- -- TOC entry 10738 (class 0 OID 0) --- Dependencies: 216 +-- Dependencies: 390 -- Name: TABLE mdl_course_request; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5466,7 +5466,7 @@ COMMENT ON TABLE public.mdl_course_request IS 'course requests'; -- --- TOC entry 215 (class 1259 OID 16669) +-- TOC entry 391 (class 1259 OID 60023) -- Name: mdl_course_request_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5482,7 +5482,7 @@ ALTER TABLE public.mdl_course_request_id_seq OWNER TO postgres; -- -- TOC entry 10739 (class 0 OID 0) --- Dependencies: 215 +-- Dependencies: 391 -- Name: mdl_course_request_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5490,7 +5490,7 @@ ALTER SEQUENCE public.mdl_course_request_id_seq OWNED BY public.mdl_course_reque -- --- TOC entry 214 (class 1259 OID 16654) +-- TOC entry 392 (class 1259 OID 60025) -- Name: mdl_course_sections; Type: TABLE; Schema: public; Owner: postgres -- @@ -5512,7 +5512,7 @@ ALTER TABLE public.mdl_course_sections OWNER TO postgres; -- -- TOC entry 10740 (class 0 OID 0) --- Dependencies: 214 +-- Dependencies: 392 -- Name: TABLE mdl_course_sections; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5520,7 +5520,7 @@ COMMENT ON TABLE public.mdl_course_sections IS 'to define the sections for each -- --- TOC entry 213 (class 1259 OID 16652) +-- TOC entry 393 (class 1259 OID 60036) -- Name: mdl_course_sections_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5536,7 +5536,7 @@ ALTER TABLE public.mdl_course_sections_id_seq OWNER TO postgres; -- -- TOC entry 10741 (class 0 OID 0) --- Dependencies: 213 +-- Dependencies: 393 -- Name: mdl_course_sections_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5544,7 +5544,7 @@ ALTER SEQUENCE public.mdl_course_sections_id_seq OWNED BY public.mdl_course_sect -- --- TOC entry 605 (class 1259 OID 19715) +-- TOC entry 394 (class 1259 OID 60038) -- Name: mdl_customfield_category; Type: TABLE; Schema: public; Owner: postgres -- @@ -5567,7 +5567,7 @@ ALTER TABLE public.mdl_customfield_category OWNER TO postgres; -- -- TOC entry 10742 (class 0 OID 0) --- Dependencies: 605 +-- Dependencies: 394 -- Name: TABLE mdl_customfield_category; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5575,7 +5575,7 @@ COMMENT ON TABLE public.mdl_customfield_category IS 'core_customfield category t -- --- TOC entry 604 (class 1259 OID 19713) +-- TOC entry 395 (class 1259 OID 60048) -- Name: mdl_customfield_category_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5591,7 +5591,7 @@ ALTER TABLE public.mdl_customfield_category_id_seq OWNER TO postgres; -- -- TOC entry 10743 (class 0 OID 0) --- Dependencies: 604 +-- Dependencies: 395 -- Name: mdl_customfield_category_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5599,7 +5599,7 @@ ALTER SEQUENCE public.mdl_customfield_category_id_seq OWNED BY public.mdl_custom -- --- TOC entry 609 (class 1259 OID 19748) +-- TOC entry 396 (class 1259 OID 60050) -- Name: mdl_customfield_data; Type: TABLE; Schema: public; Owner: postgres -- @@ -5623,7 +5623,7 @@ ALTER TABLE public.mdl_customfield_data OWNER TO postgres; -- -- TOC entry 10744 (class 0 OID 0) --- Dependencies: 609 +-- Dependencies: 396 -- Name: TABLE mdl_customfield_data; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5631,7 +5631,7 @@ COMMENT ON TABLE public.mdl_customfield_data IS 'core_customfield data table'; -- --- TOC entry 608 (class 1259 OID 19746) +-- TOC entry 397 (class 1259 OID 60056) -- Name: mdl_customfield_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5647,7 +5647,7 @@ ALTER TABLE public.mdl_customfield_data_id_seq OWNER TO postgres; -- -- TOC entry 10745 (class 0 OID 0) --- Dependencies: 608 +-- Dependencies: 397 -- Name: mdl_customfield_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5655,7 +5655,7 @@ ALTER SEQUENCE public.mdl_customfield_data_id_seq OWNED BY public.mdl_customfiel -- --- TOC entry 607 (class 1259 OID 19732) +-- TOC entry 398 (class 1259 OID 60058) -- Name: mdl_customfield_field; Type: TABLE; Schema: public; Owner: postgres -- @@ -5678,7 +5678,7 @@ ALTER TABLE public.mdl_customfield_field OWNER TO postgres; -- -- TOC entry 10746 (class 0 OID 0) --- Dependencies: 607 +-- Dependencies: 398 -- Name: TABLE mdl_customfield_field; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5686,7 +5686,7 @@ COMMENT ON TABLE public.mdl_customfield_field IS 'core_customfield field table'; -- --- TOC entry 606 (class 1259 OID 19730) +-- TOC entry 399 (class 1259 OID 60067) -- Name: mdl_customfield_field_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5702,7 +5702,7 @@ ALTER TABLE public.mdl_customfield_field_id_seq OWNER TO postgres; -- -- TOC entry 10747 (class 0 OID 0) --- Dependencies: 606 +-- Dependencies: 399 -- Name: mdl_customfield_field_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5710,7 +5710,7 @@ ALTER SEQUENCE public.mdl_customfield_field_id_seq OWNED BY public.mdl_customfie -- --- TOC entry 709 (class 1259 OID 20624) +-- TOC entry 400 (class 1259 OID 60069) -- Name: mdl_data; Type: TABLE; Schema: public; Owner: postgres -- @@ -5759,7 +5759,7 @@ ALTER TABLE public.mdl_data OWNER TO postgres; -- -- TOC entry 10748 (class 0 OID 0) --- Dependencies: 709 +-- Dependencies: 400 -- Name: TABLE mdl_data; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5767,7 +5767,7 @@ COMMENT ON TABLE public.mdl_data IS 'all database activities'; -- --- TOC entry 715 (class 1259 OID 20692) +-- TOC entry 401 (class 1259 OID 60099) -- Name: mdl_data_content; Type: TABLE; Schema: public; Owner: postgres -- @@ -5787,7 +5787,7 @@ ALTER TABLE public.mdl_data_content OWNER TO postgres; -- -- TOC entry 10749 (class 0 OID 0) --- Dependencies: 715 +-- Dependencies: 401 -- Name: TABLE mdl_data_content; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5795,7 +5795,7 @@ COMMENT ON TABLE public.mdl_data_content IS 'the content introduced in each reco -- --- TOC entry 714 (class 1259 OID 20690) +-- TOC entry 402 (class 1259 OID 60107) -- Name: mdl_data_content_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5811,7 +5811,7 @@ ALTER TABLE public.mdl_data_content_id_seq OWNER TO postgres; -- -- TOC entry 10750 (class 0 OID 0) --- Dependencies: 714 +-- Dependencies: 402 -- Name: mdl_data_content_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5819,7 +5819,7 @@ ALTER SEQUENCE public.mdl_data_content_id_seq OWNED BY public.mdl_data_content.i -- --- TOC entry 711 (class 1259 OID 20660) +-- TOC entry 403 (class 1259 OID 60109) -- Name: mdl_data_fields; Type: TABLE; Schema: public; Owner: postgres -- @@ -5847,7 +5847,7 @@ ALTER TABLE public.mdl_data_fields OWNER TO postgres; -- -- TOC entry 10751 (class 0 OID 0) --- Dependencies: 711 +-- Dependencies: 403 -- Name: TABLE mdl_data_fields; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5855,7 +5855,7 @@ COMMENT ON TABLE public.mdl_data_fields IS 'every field available'; -- --- TOC entry 710 (class 1259 OID 20658) +-- TOC entry 404 (class 1259 OID 60119) -- Name: mdl_data_fields_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5871,7 +5871,7 @@ ALTER TABLE public.mdl_data_fields_id_seq OWNER TO postgres; -- -- TOC entry 10752 (class 0 OID 0) --- Dependencies: 710 +-- Dependencies: 404 -- Name: mdl_data_fields_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5879,7 +5879,7 @@ ALTER SEQUENCE public.mdl_data_fields_id_seq OWNED BY public.mdl_data_fields.id; -- --- TOC entry 708 (class 1259 OID 20622) +-- TOC entry 405 (class 1259 OID 60121) -- Name: mdl_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5895,7 +5895,7 @@ ALTER TABLE public.mdl_data_id_seq OWNER TO postgres; -- -- TOC entry 10753 (class 0 OID 0) --- Dependencies: 708 +-- Dependencies: 405 -- Name: mdl_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5903,7 +5903,7 @@ ALTER SEQUENCE public.mdl_data_id_seq OWNED BY public.mdl_data.id; -- --- TOC entry 713 (class 1259 OID 20677) +-- TOC entry 406 (class 1259 OID 60123) -- Name: mdl_data_records; Type: TABLE; Schema: public; Owner: postgres -- @@ -5922,7 +5922,7 @@ ALTER TABLE public.mdl_data_records OWNER TO postgres; -- -- TOC entry 10754 (class 0 OID 0) --- Dependencies: 713 +-- Dependencies: 406 -- Name: TABLE mdl_data_records; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5930,7 +5930,7 @@ COMMENT ON TABLE public.mdl_data_records IS 'every record introduced'; -- --- TOC entry 712 (class 1259 OID 20675) +-- TOC entry 407 (class 1259 OID 60132) -- Name: mdl_data_records_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5946,7 +5946,7 @@ ALTER TABLE public.mdl_data_records_id_seq OWNER TO postgres; -- -- TOC entry 10755 (class 0 OID 0) --- Dependencies: 712 +-- Dependencies: 407 -- Name: mdl_data_records_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5954,7 +5954,7 @@ ALTER SEQUENCE public.mdl_data_records_id_seq OWNED BY public.mdl_data_records.i -- --- TOC entry 927 (class 1259 OID 22593) +-- TOC entry 408 (class 1259 OID 60134) -- Name: mdl_editor_atto_autosave; Type: TABLE; Schema: public; Owner: postgres -- @@ -5975,7 +5975,7 @@ ALTER TABLE public.mdl_editor_atto_autosave OWNER TO postgres; -- -- TOC entry 10756 (class 0 OID 0) --- Dependencies: 927 +-- Dependencies: 408 -- Name: TABLE mdl_editor_atto_autosave; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5983,7 +5983,7 @@ COMMENT ON TABLE public.mdl_editor_atto_autosave IS 'Draft text that is auto-sav -- --- TOC entry 926 (class 1259 OID 22591) +-- TOC entry 409 (class 1259 OID 60144) -- Name: mdl_editor_atto_autosave_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5999,7 +5999,7 @@ ALTER TABLE public.mdl_editor_atto_autosave_id_seq OWNER TO postgres; -- -- TOC entry 10757 (class 0 OID 0) --- Dependencies: 926 +-- Dependencies: 409 -- Name: mdl_editor_atto_autosave_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6007,7 +6007,7 @@ ALTER SEQUENCE public.mdl_editor_atto_autosave_id_seq OWNED BY public.mdl_editor -- --- TOC entry 206 (class 1259 OID 16567) +-- TOC entry 410 (class 1259 OID 60146) -- Name: mdl_enrol; Type: TABLE; Schema: public; Owner: postgres -- @@ -6054,7 +6054,7 @@ ALTER TABLE public.mdl_enrol OWNER TO postgres; -- -- TOC entry 10758 (class 0 OID 0) --- Dependencies: 206 +-- Dependencies: 410 -- Name: TABLE mdl_enrol; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6062,7 +6062,7 @@ COMMENT ON TABLE public.mdl_enrol IS 'Instances of enrolment plugins used in cou -- --- TOC entry 889 (class 1259 OID 22324) +-- TOC entry 411 (class 1259 OID 60164) -- Name: mdl_enrol_flatfile; Type: TABLE; Schema: public; Owner: postgres -- @@ -6082,7 +6082,7 @@ ALTER TABLE public.mdl_enrol_flatfile OWNER TO postgres; -- -- TOC entry 10759 (class 0 OID 0) --- Dependencies: 889 +-- Dependencies: 411 -- Name: TABLE mdl_enrol_flatfile; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6090,7 +6090,7 @@ COMMENT ON TABLE public.mdl_enrol_flatfile IS 'enrol_flatfile table retrofitted -- --- TOC entry 888 (class 1259 OID 22322) +-- TOC entry 412 (class 1259 OID 60171) -- Name: mdl_enrol_flatfile_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6106,7 +6106,7 @@ ALTER TABLE public.mdl_enrol_flatfile_id_seq OWNER TO postgres; -- -- TOC entry 10760 (class 0 OID 0) --- Dependencies: 888 +-- Dependencies: 412 -- Name: mdl_enrol_flatfile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6114,7 +6114,7 @@ ALTER SEQUENCE public.mdl_enrol_flatfile_id_seq OWNED BY public.mdl_enrol_flatfi -- --- TOC entry 205 (class 1259 OID 16565) +-- TOC entry 413 (class 1259 OID 60173) -- Name: mdl_enrol_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6130,7 +6130,7 @@ ALTER TABLE public.mdl_enrol_id_seq OWNER TO postgres; -- -- TOC entry 10761 (class 0 OID 0) --- Dependencies: 205 +-- Dependencies: 413 -- Name: mdl_enrol_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6138,7 +6138,7 @@ ALTER SEQUENCE public.mdl_enrol_id_seq OWNED BY public.mdl_enrol.id; -- --- TOC entry 895 (class 1259 OID 22376) +-- TOC entry 414 (class 1259 OID 60175) -- Name: mdl_enrol_lti_lti2_consumer; Type: TABLE; Schema: public; Owner: postgres -- @@ -6169,7 +6169,7 @@ ALTER TABLE public.mdl_enrol_lti_lti2_consumer OWNER TO postgres; -- -- TOC entry 10762 (class 0 OID 0) --- Dependencies: 895 +-- Dependencies: 414 -- Name: TABLE mdl_enrol_lti_lti2_consumer; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6177,7 +6177,7 @@ COMMENT ON TABLE public.mdl_enrol_lti_lti2_consumer IS 'LTI consumers interactin -- --- TOC entry 894 (class 1259 OID 22374) +-- TOC entry 415 (class 1259 OID 60184) -- Name: mdl_enrol_lti_lti2_consumer_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6193,7 +6193,7 @@ ALTER TABLE public.mdl_enrol_lti_lti2_consumer_id_seq OWNER TO postgres; -- -- TOC entry 10763 (class 0 OID 0) --- Dependencies: 894 +-- Dependencies: 415 -- Name: mdl_enrol_lti_lti2_consumer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6201,7 +6201,7 @@ ALTER SEQUENCE public.mdl_enrol_lti_lti2_consumer_id_seq OWNED BY public.mdl_enr -- --- TOC entry 899 (class 1259 OID 22405) +-- TOC entry 416 (class 1259 OID 60186) -- Name: mdl_enrol_lti_lti2_context; Type: TABLE; Schema: public; Owner: postgres -- @@ -6220,7 +6220,7 @@ ALTER TABLE public.mdl_enrol_lti_lti2_context OWNER TO postgres; -- -- TOC entry 10764 (class 0 OID 0) --- Dependencies: 899 +-- Dependencies: 416 -- Name: TABLE mdl_enrol_lti_lti2_context; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6228,7 +6228,7 @@ COMMENT ON TABLE public.mdl_enrol_lti_lti2_context IS 'Information about a speci -- --- TOC entry 898 (class 1259 OID 22403) +-- TOC entry 417 (class 1259 OID 60193) -- Name: mdl_enrol_lti_lti2_context_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6244,7 +6244,7 @@ ALTER TABLE public.mdl_enrol_lti_lti2_context_id_seq OWNER TO postgres; -- -- TOC entry 10765 (class 0 OID 0) --- Dependencies: 898 +-- Dependencies: 417 -- Name: mdl_enrol_lti_lti2_context_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6252,7 +6252,7 @@ ALTER SEQUENCE public.mdl_enrol_lti_lti2_context_id_seq OWNED BY public.mdl_enro -- --- TOC entry 901 (class 1259 OID 22418) +-- TOC entry 418 (class 1259 OID 60195) -- Name: mdl_enrol_lti_lti2_nonce; Type: TABLE; Schema: public; Owner: postgres -- @@ -6268,7 +6268,7 @@ ALTER TABLE public.mdl_enrol_lti_lti2_nonce OWNER TO postgres; -- -- TOC entry 10766 (class 0 OID 0) --- Dependencies: 901 +-- Dependencies: 418 -- Name: TABLE mdl_enrol_lti_lti2_nonce; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6276,7 +6276,7 @@ COMMENT ON TABLE public.mdl_enrol_lti_lti2_nonce IS 'Nonce used for authenticati -- --- TOC entry 900 (class 1259 OID 22416) +-- TOC entry 419 (class 1259 OID 60199) -- Name: mdl_enrol_lti_lti2_nonce_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6292,7 +6292,7 @@ ALTER TABLE public.mdl_enrol_lti_lti2_nonce_id_seq OWNER TO postgres; -- -- TOC entry 10767 (class 0 OID 0) --- Dependencies: 900 +-- Dependencies: 419 -- Name: mdl_enrol_lti_lti2_nonce_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6300,7 +6300,7 @@ ALTER SEQUENCE public.mdl_enrol_lti_lti2_nonce_id_seq OWNED BY public.mdl_enrol_ -- --- TOC entry 903 (class 1259 OID 22428) +-- TOC entry 420 (class 1259 OID 60201) -- Name: mdl_enrol_lti_lti2_resource_link; Type: TABLE; Schema: public; Owner: postgres -- @@ -6321,7 +6321,7 @@ ALTER TABLE public.mdl_enrol_lti_lti2_resource_link OWNER TO postgres; -- -- TOC entry 10768 (class 0 OID 0) --- Dependencies: 903 +-- Dependencies: 420 -- Name: TABLE mdl_enrol_lti_lti2_resource_link; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6329,7 +6329,7 @@ COMMENT ON TABLE public.mdl_enrol_lti_lti2_resource_link IS 'Link from the consu -- --- TOC entry 902 (class 1259 OID 22426) +-- TOC entry 421 (class 1259 OID 60208) -- Name: mdl_enrol_lti_lti2_resource_link_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6345,7 +6345,7 @@ ALTER TABLE public.mdl_enrol_lti_lti2_resource_link_id_seq OWNER TO postgres; -- -- TOC entry 10769 (class 0 OID 0) --- Dependencies: 902 +-- Dependencies: 421 -- Name: mdl_enrol_lti_lti2_resource_link_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6353,7 +6353,7 @@ ALTER SEQUENCE public.mdl_enrol_lti_lti2_resource_link_id_seq OWNED BY public.md -- --- TOC entry 905 (class 1259 OID 22443) +-- TOC entry 422 (class 1259 OID 60210) -- Name: mdl_enrol_lti_lti2_share_key; Type: TABLE; Schema: public; Owner: postgres -- @@ -6370,7 +6370,7 @@ ALTER TABLE public.mdl_enrol_lti_lti2_share_key OWNER TO postgres; -- -- TOC entry 10770 (class 0 OID 0) --- Dependencies: 905 +-- Dependencies: 422 -- Name: TABLE mdl_enrol_lti_lti2_share_key; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6378,7 +6378,7 @@ COMMENT ON TABLE public.mdl_enrol_lti_lti2_share_key IS 'Resource link share key -- --- TOC entry 904 (class 1259 OID 22441) +-- TOC entry 423 (class 1259 OID 60214) -- Name: mdl_enrol_lti_lti2_share_key_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6394,7 +6394,7 @@ ALTER TABLE public.mdl_enrol_lti_lti2_share_key_id_seq OWNER TO postgres; -- -- TOC entry 10771 (class 0 OID 0) --- Dependencies: 904 +-- Dependencies: 423 -- Name: mdl_enrol_lti_lti2_share_key_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6402,7 +6402,7 @@ ALTER SEQUENCE public.mdl_enrol_lti_lti2_share_key_id_seq OWNED BY public.mdl_en -- --- TOC entry 897 (class 1259 OID 22391) +-- TOC entry 424 (class 1259 OID 60216) -- Name: mdl_enrol_lti_lti2_tool_proxy; Type: TABLE; Schema: public; Owner: postgres -- @@ -6420,7 +6420,7 @@ ALTER TABLE public.mdl_enrol_lti_lti2_tool_proxy OWNER TO postgres; -- -- TOC entry 10772 (class 0 OID 0) --- Dependencies: 897 +-- Dependencies: 424 -- Name: TABLE mdl_enrol_lti_lti2_tool_proxy; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6428,7 +6428,7 @@ COMMENT ON TABLE public.mdl_enrol_lti_lti2_tool_proxy IS 'A tool proxy between m -- --- TOC entry 896 (class 1259 OID 22389) +-- TOC entry 425 (class 1259 OID 60223) -- Name: mdl_enrol_lti_lti2_tool_proxy_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6444,7 +6444,7 @@ ALTER TABLE public.mdl_enrol_lti_lti2_tool_proxy_id_seq OWNER TO postgres; -- -- TOC entry 10773 (class 0 OID 0) --- Dependencies: 896 +-- Dependencies: 425 -- Name: mdl_enrol_lti_lti2_tool_proxy_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6452,7 +6452,7 @@ ALTER SEQUENCE public.mdl_enrol_lti_lti2_tool_proxy_id_seq OWNED BY public.mdl_e -- --- TOC entry 907 (class 1259 OID 22454) +-- TOC entry 426 (class 1259 OID 60225) -- Name: mdl_enrol_lti_lti2_user_result; Type: TABLE; Schema: public; Owner: postgres -- @@ -6470,7 +6470,7 @@ ALTER TABLE public.mdl_enrol_lti_lti2_user_result OWNER TO postgres; -- -- TOC entry 10774 (class 0 OID 0) --- Dependencies: 907 +-- Dependencies: 426 -- Name: TABLE mdl_enrol_lti_lti2_user_result; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6478,7 +6478,7 @@ COMMENT ON TABLE public.mdl_enrol_lti_lti2_user_result IS 'Results for each user -- --- TOC entry 906 (class 1259 OID 22452) +-- TOC entry 427 (class 1259 OID 60233) -- Name: mdl_enrol_lti_lti2_user_result_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6494,7 +6494,7 @@ ALTER TABLE public.mdl_enrol_lti_lti2_user_result_id_seq OWNER TO postgres; -- -- TOC entry 10775 (class 0 OID 0) --- Dependencies: 906 +-- Dependencies: 427 -- Name: mdl_enrol_lti_lti2_user_result_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6502,7 +6502,7 @@ ALTER SEQUENCE public.mdl_enrol_lti_lti2_user_result_id_seq OWNED BY public.mdl_ -- --- TOC entry 909 (class 1259 OID 22468) +-- TOC entry 428 (class 1259 OID 60235) -- Name: mdl_enrol_lti_tool_consumer_map; Type: TABLE; Schema: public; Owner: postgres -- @@ -6517,7 +6517,7 @@ ALTER TABLE public.mdl_enrol_lti_tool_consumer_map OWNER TO postgres; -- -- TOC entry 10776 (class 0 OID 0) --- Dependencies: 909 +-- Dependencies: 428 -- Name: TABLE mdl_enrol_lti_tool_consumer_map; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6525,7 +6525,7 @@ COMMENT ON TABLE public.mdl_enrol_lti_tool_consumer_map IS 'Table that maps the -- --- TOC entry 908 (class 1259 OID 22466) +-- TOC entry 429 (class 1259 OID 60238) -- Name: mdl_enrol_lti_tool_consumer_map_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6541,7 +6541,7 @@ ALTER TABLE public.mdl_enrol_lti_tool_consumer_map_id_seq OWNER TO postgres; -- -- TOC entry 10777 (class 0 OID 0) --- Dependencies: 908 +-- Dependencies: 429 -- Name: mdl_enrol_lti_tool_consumer_map_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6549,7 +6549,7 @@ ALTER SEQUENCE public.mdl_enrol_lti_tool_consumer_map_id_seq OWNED BY public.mdl -- --- TOC entry 891 (class 1259 OID 22339) +-- TOC entry 430 (class 1259 OID 60240) -- Name: mdl_enrol_lti_tools; Type: TABLE; Schema: public; Owner: postgres -- @@ -6580,7 +6580,7 @@ ALTER TABLE public.mdl_enrol_lti_tools OWNER TO postgres; -- -- TOC entry 10778 (class 0 OID 0) --- Dependencies: 891 +-- Dependencies: 430 -- Name: TABLE mdl_enrol_lti_tools; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6588,7 +6588,7 @@ COMMENT ON TABLE public.mdl_enrol_lti_tools IS 'List of tools provided to the re -- --- TOC entry 890 (class 1259 OID 22337) +-- TOC entry 431 (class 1259 OID 60257) -- Name: mdl_enrol_lti_tools_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6604,7 +6604,7 @@ ALTER TABLE public.mdl_enrol_lti_tools_id_seq OWNER TO postgres; -- -- TOC entry 10779 (class 0 OID 0) --- Dependencies: 890 +-- Dependencies: 431 -- Name: mdl_enrol_lti_tools_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6612,7 +6612,7 @@ ALTER SEQUENCE public.mdl_enrol_lti_tools_id_seq OWNED BY public.mdl_enrol_lti_t -- --- TOC entry 893 (class 1259 OID 22363) +-- TOC entry 432 (class 1259 OID 60259) -- Name: mdl_enrol_lti_users; Type: TABLE; Schema: public; Owner: postgres -- @@ -6636,7 +6636,7 @@ ALTER TABLE public.mdl_enrol_lti_users OWNER TO postgres; -- -- TOC entry 10780 (class 0 OID 0) --- Dependencies: 893 +-- Dependencies: 432 -- Name: TABLE mdl_enrol_lti_users; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6644,7 +6644,7 @@ COMMENT ON TABLE public.mdl_enrol_lti_users IS 'User access log and gradeback da -- --- TOC entry 892 (class 1259 OID 22361) +-- TOC entry 433 (class 1259 OID 60265) -- Name: mdl_enrol_lti_users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6660,7 +6660,7 @@ ALTER TABLE public.mdl_enrol_lti_users_id_seq OWNER TO postgres; -- -- TOC entry 10781 (class 0 OID 0) --- Dependencies: 892 +-- Dependencies: 433 -- Name: mdl_enrol_lti_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6668,7 +6668,7 @@ ALTER SEQUENCE public.mdl_enrol_lti_users_id_seq OWNED BY public.mdl_enrol_lti_u -- --- TOC entry 911 (class 1259 OID 22478) +-- TOC entry 434 (class 1259 OID 60267) -- Name: mdl_enrol_paypal; Type: TABLE; Schema: public; Owner: postgres -- @@ -6701,7 +6701,7 @@ ALTER TABLE public.mdl_enrol_paypal OWNER TO postgres; -- -- TOC entry 10782 (class 0 OID 0) --- Dependencies: 911 +-- Dependencies: 434 -- Name: TABLE mdl_enrol_paypal; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6709,7 +6709,7 @@ COMMENT ON TABLE public.mdl_enrol_paypal IS 'Holds all known information about P -- --- TOC entry 910 (class 1259 OID 22476) +-- TOC entry 435 (class 1259 OID 60293) -- Name: mdl_enrol_paypal_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6725,7 +6725,7 @@ ALTER TABLE public.mdl_enrol_paypal_id_seq OWNER TO postgres; -- -- TOC entry 10783 (class 0 OID 0) --- Dependencies: 910 +-- Dependencies: 435 -- Name: mdl_enrol_paypal_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6733,7 +6733,7 @@ ALTER SEQUENCE public.mdl_enrol_paypal_id_seq OWNED BY public.mdl_enrol_paypal.i -- --- TOC entry 224 (class 1259 OID 16732) +-- TOC entry 436 (class 1259 OID 60295) -- Name: mdl_event; Type: TABLE; Schema: public; Owner: postgres -- @@ -6769,7 +6769,7 @@ ALTER TABLE public.mdl_event OWNER TO postgres; -- -- TOC entry 10784 (class 0 OID 0) --- Dependencies: 224 +-- Dependencies: 436 -- Name: TABLE mdl_event; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6777,7 +6777,7 @@ COMMENT ON TABLE public.mdl_event IS 'For everything with a time associated to i -- --- TOC entry 223 (class 1259 OID 16730) +-- TOC entry 437 (class 1259 OID 60317) -- Name: mdl_event_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6793,7 +6793,7 @@ ALTER TABLE public.mdl_event_id_seq OWNER TO postgres; -- -- TOC entry 10785 (class 0 OID 0) --- Dependencies: 223 +-- Dependencies: 437 -- Name: mdl_event_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6801,7 +6801,7 @@ ALTER SEQUENCE public.mdl_event_id_seq OWNED BY public.mdl_event.id; -- --- TOC entry 489 (class 1259 OID 18910) +-- TOC entry 438 (class 1259 OID 60319) -- Name: mdl_event_subscriptions; Type: TABLE; Schema: public; Owner: postgres -- @@ -6823,7 +6823,7 @@ ALTER TABLE public.mdl_event_subscriptions OWNER TO postgres; -- -- TOC entry 10786 (class 0 OID 0) --- Dependencies: 489 +-- Dependencies: 438 -- Name: TABLE mdl_event_subscriptions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6831,7 +6831,7 @@ COMMENT ON TABLE public.mdl_event_subscriptions IS 'Tracks subscriptions to remo -- --- TOC entry 488 (class 1259 OID 18908) +-- TOC entry 439 (class 1259 OID 60333) -- Name: mdl_event_subscriptions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6847,7 +6847,7 @@ ALTER TABLE public.mdl_event_subscriptions_id_seq OWNER TO postgres; -- -- TOC entry 10787 (class 0 OID 0) --- Dependencies: 488 +-- Dependencies: 439 -- Name: mdl_event_subscriptions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6855,7 +6855,7 @@ ALTER SEQUENCE public.mdl_event_subscriptions_id_seq OWNED BY public.mdl_event_s -- --- TOC entry 363 (class 1259 OID 17891) +-- TOC entry 440 (class 1259 OID 60335) -- Name: mdl_events_handlers; Type: TABLE; Schema: public; Owner: postgres -- @@ -6875,7 +6875,7 @@ ALTER TABLE public.mdl_events_handlers OWNER TO postgres; -- -- TOC entry 10788 (class 0 OID 0) --- Dependencies: 363 +-- Dependencies: 440 -- Name: TABLE mdl_events_handlers; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6883,7 +6883,7 @@ COMMENT ON TABLE public.mdl_events_handlers IS 'This table is for storing which -- --- TOC entry 362 (class 1259 OID 17889) +-- TOC entry 441 (class 1259 OID 60346) -- Name: mdl_events_handlers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6899,7 +6899,7 @@ ALTER TABLE public.mdl_events_handlers_id_seq OWNER TO postgres; -- -- TOC entry 10789 (class 0 OID 0) --- Dependencies: 362 +-- Dependencies: 441 -- Name: mdl_events_handlers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6907,7 +6907,7 @@ ALTER SEQUENCE public.mdl_events_handlers_id_seq OWNED BY public.mdl_events_hand -- --- TOC entry 361 (class 1259 OID 17879) +-- TOC entry 442 (class 1259 OID 60348) -- Name: mdl_events_queue; Type: TABLE; Schema: public; Owner: postgres -- @@ -6924,7 +6924,7 @@ ALTER TABLE public.mdl_events_queue OWNER TO postgres; -- -- TOC entry 10790 (class 0 OID 0) --- Dependencies: 361 +-- Dependencies: 442 -- Name: TABLE mdl_events_queue; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6932,7 +6932,7 @@ COMMENT ON TABLE public.mdl_events_queue IS 'This table is for storing queued ev -- --- TOC entry 365 (class 1259 OID 17908) +-- TOC entry 443 (class 1259 OID 60354) -- Name: mdl_events_queue_handlers; Type: TABLE; Schema: public; Owner: postgres -- @@ -6950,7 +6950,7 @@ ALTER TABLE public.mdl_events_queue_handlers OWNER TO postgres; -- -- TOC entry 10791 (class 0 OID 0) --- Dependencies: 365 +-- Dependencies: 443 -- Name: TABLE mdl_events_queue_handlers; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6958,7 +6958,7 @@ COMMENT ON TABLE public.mdl_events_queue_handlers IS 'This is the list of queued -- --- TOC entry 364 (class 1259 OID 17906) +-- TOC entry 444 (class 1259 OID 60360) -- Name: mdl_events_queue_handlers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6974,7 +6974,7 @@ ALTER TABLE public.mdl_events_queue_handlers_id_seq OWNER TO postgres; -- -- TOC entry 10792 (class 0 OID 0) --- Dependencies: 364 +-- Dependencies: 444 -- Name: mdl_events_queue_handlers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6982,7 +6982,7 @@ ALTER SEQUENCE public.mdl_events_queue_handlers_id_seq OWNED BY public.mdl_event -- --- TOC entry 360 (class 1259 OID 17877) +-- TOC entry 445 (class 1259 OID 60362) -- Name: mdl_events_queue_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6998,7 +6998,7 @@ ALTER TABLE public.mdl_events_queue_id_seq OWNER TO postgres; -- -- TOC entry 10793 (class 0 OID 0) --- Dependencies: 360 +-- Dependencies: 445 -- Name: mdl_events_queue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7006,7 +7006,7 @@ ALTER SEQUENCE public.mdl_events_queue_id_seq OWNED BY public.mdl_events_queue.i -- --- TOC entry 457 (class 1259 OID 18680) +-- TOC entry 446 (class 1259 OID 60364) -- Name: mdl_external_functions; Type: TABLE; Schema: public; Owner: postgres -- @@ -7026,7 +7026,7 @@ ALTER TABLE public.mdl_external_functions OWNER TO postgres; -- -- TOC entry 10794 (class 0 OID 0) --- Dependencies: 457 +-- Dependencies: 446 -- Name: TABLE mdl_external_functions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7034,7 +7034,7 @@ COMMENT ON TABLE public.mdl_external_functions IS 'list of all external function -- --- TOC entry 456 (class 1259 OID 18678) +-- TOC entry 447 (class 1259 OID 60374) -- Name: mdl_external_functions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7050,7 +7050,7 @@ ALTER TABLE public.mdl_external_functions_id_seq OWNER TO postgres; -- -- TOC entry 10795 (class 0 OID 0) --- Dependencies: 456 +-- Dependencies: 447 -- Name: mdl_external_functions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7058,7 +7058,7 @@ ALTER SEQUENCE public.mdl_external_functions_id_seq OWNED BY public.mdl_external -- --- TOC entry 455 (class 1259 OID 18665) +-- TOC entry 448 (class 1259 OID 60376) -- Name: mdl_external_services; Type: TABLE; Schema: public; Owner: postgres -- @@ -7081,7 +7081,7 @@ ALTER TABLE public.mdl_external_services OWNER TO postgres; -- -- TOC entry 10796 (class 0 OID 0) --- Dependencies: 455 +-- Dependencies: 448 -- Name: TABLE mdl_external_services; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7089,7 +7089,7 @@ COMMENT ON TABLE public.mdl_external_services IS 'built in and custom external s -- --- TOC entry 459 (class 1259 OID 18696) +-- TOC entry 449 (class 1259 OID 60385) -- Name: mdl_external_services_functions; Type: TABLE; Schema: public; Owner: postgres -- @@ -7104,7 +7104,7 @@ ALTER TABLE public.mdl_external_services_functions OWNER TO postgres; -- -- TOC entry 10797 (class 0 OID 0) --- Dependencies: 459 +-- Dependencies: 449 -- Name: TABLE mdl_external_services_functions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7112,7 +7112,7 @@ COMMENT ON TABLE public.mdl_external_services_functions IS 'lists functions avai -- --- TOC entry 458 (class 1259 OID 18694) +-- TOC entry 450 (class 1259 OID 60389) -- Name: mdl_external_services_functions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7128,7 +7128,7 @@ ALTER TABLE public.mdl_external_services_functions_id_seq OWNER TO postgres; -- -- TOC entry 10798 (class 0 OID 0) --- Dependencies: 458 +-- Dependencies: 450 -- Name: mdl_external_services_functions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7136,7 +7136,7 @@ ALTER SEQUENCE public.mdl_external_services_functions_id_seq OWNED BY public.mdl -- --- TOC entry 454 (class 1259 OID 18663) +-- TOC entry 451 (class 1259 OID 60391) -- Name: mdl_external_services_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7152,7 +7152,7 @@ ALTER TABLE public.mdl_external_services_id_seq OWNER TO postgres; -- -- TOC entry 10799 (class 0 OID 0) --- Dependencies: 454 +-- Dependencies: 451 -- Name: mdl_external_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7160,7 +7160,7 @@ ALTER SEQUENCE public.mdl_external_services_id_seq OWNED BY public.mdl_external_ -- --- TOC entry 461 (class 1259 OID 18706) +-- TOC entry 452 (class 1259 OID 60393) -- Name: mdl_external_services_users; Type: TABLE; Schema: public; Owner: postgres -- @@ -7178,7 +7178,7 @@ ALTER TABLE public.mdl_external_services_users OWNER TO postgres; -- -- TOC entry 10800 (class 0 OID 0) --- Dependencies: 461 +-- Dependencies: 452 -- Name: TABLE mdl_external_services_users; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7186,7 +7186,7 @@ COMMENT ON TABLE public.mdl_external_services_users IS 'users allowed to use ser -- --- TOC entry 460 (class 1259 OID 18704) +-- TOC entry 453 (class 1259 OID 60396) -- Name: mdl_external_services_users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7202,7 +7202,7 @@ ALTER TABLE public.mdl_external_services_users_id_seq OWNER TO postgres; -- -- TOC entry 10801 (class 0 OID 0) --- Dependencies: 460 +-- Dependencies: 453 -- Name: mdl_external_services_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7210,7 +7210,7 @@ ALTER SEQUENCE public.mdl_external_services_users_id_seq OWNED BY public.mdl_ext -- --- TOC entry 463 (class 1259 OID 18716) +-- TOC entry 454 (class 1259 OID 60398) -- Name: mdl_external_tokens; Type: TABLE; Schema: public; Owner: postgres -- @@ -7235,7 +7235,7 @@ ALTER TABLE public.mdl_external_tokens OWNER TO postgres; -- -- TOC entry 10802 (class 0 OID 0) --- Dependencies: 463 +-- Dependencies: 454 -- Name: TABLE mdl_external_tokens; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7243,7 +7243,7 @@ COMMENT ON TABLE public.mdl_external_tokens IS 'Security tokens for accessing of -- --- TOC entry 462 (class 1259 OID 18714) +-- TOC entry 455 (class 1259 OID 60406) -- Name: mdl_external_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7259,7 +7259,7 @@ ALTER TABLE public.mdl_external_tokens_id_seq OWNER TO postgres; -- -- TOC entry 10803 (class 0 OID 0) --- Dependencies: 462 +-- Dependencies: 455 -- Name: mdl_external_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7267,7 +7267,7 @@ ALTER SEQUENCE public.mdl_external_tokens_id_seq OWNED BY public.mdl_external_to -- --- TOC entry 603 (class 1259 OID 19702) +-- TOC entry 456 (class 1259 OID 60408) -- Name: mdl_favourite; Type: TABLE; Schema: public; Owner: postgres -- @@ -7288,7 +7288,7 @@ ALTER TABLE public.mdl_favourite OWNER TO postgres; -- -- TOC entry 10804 (class 0 OID 0) --- Dependencies: 603 +-- Dependencies: 456 -- Name: TABLE mdl_favourite; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7296,7 +7296,7 @@ COMMENT ON TABLE public.mdl_favourite IS 'Stores the relationship between an arb -- --- TOC entry 602 (class 1259 OID 19700) +-- TOC entry 457 (class 1259 OID 60413) -- Name: mdl_favourite_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7312,7 +7312,7 @@ ALTER TABLE public.mdl_favourite_id_seq OWNER TO postgres; -- -- TOC entry 10805 (class 0 OID 0) --- Dependencies: 602 +-- Dependencies: 457 -- Name: mdl_favourite_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7320,7 +7320,7 @@ ALTER SEQUENCE public.mdl_favourite_id_seq OWNED BY public.mdl_favourite.id; -- --- TOC entry 717 (class 1259 OID 20707) +-- TOC entry 458 (class 1259 OID 60415) -- Name: mdl_feedback; Type: TABLE; Schema: public; Owner: postgres -- @@ -7349,7 +7349,7 @@ ALTER TABLE public.mdl_feedback OWNER TO postgres; -- -- TOC entry 10806 (class 0 OID 0) --- Dependencies: 717 +-- Dependencies: 458 -- Name: TABLE mdl_feedback; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7357,7 +7357,7 @@ COMMENT ON TABLE public.mdl_feedback IS 'all feedbacks'; -- --- TOC entry 723 (class 1259 OID 20769) +-- TOC entry 459 (class 1259 OID 60435) -- Name: mdl_feedback_completed; Type: TABLE; Schema: public; Owner: postgres -- @@ -7376,7 +7376,7 @@ ALTER TABLE public.mdl_feedback_completed OWNER TO postgres; -- -- TOC entry 10807 (class 0 OID 0) --- Dependencies: 723 +-- Dependencies: 459 -- Name: TABLE mdl_feedback_completed; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7384,7 +7384,7 @@ COMMENT ON TABLE public.mdl_feedback_completed IS 'filled out feedback'; -- --- TOC entry 722 (class 1259 OID 20767) +-- TOC entry 460 (class 1259 OID 60444) -- Name: mdl_feedback_completed_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7400,7 +7400,7 @@ ALTER TABLE public.mdl_feedback_completed_id_seq OWNER TO postgres; -- -- TOC entry 10808 (class 0 OID 0) --- Dependencies: 722 +-- Dependencies: 460 -- Name: mdl_feedback_completed_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7408,7 +7408,7 @@ ALTER SEQUENCE public.mdl_feedback_completed_id_seq OWNED BY public.mdl_feedback -- --- TOC entry 725 (class 1259 OID 20785) +-- TOC entry 461 (class 1259 OID 60446) -- Name: mdl_feedback_completedtmp; Type: TABLE; Schema: public; Owner: postgres -- @@ -7428,7 +7428,7 @@ ALTER TABLE public.mdl_feedback_completedtmp OWNER TO postgres; -- -- TOC entry 10809 (class 0 OID 0) --- Dependencies: 725 +-- Dependencies: 461 -- Name: TABLE mdl_feedback_completedtmp; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7436,7 +7436,7 @@ COMMENT ON TABLE public.mdl_feedback_completedtmp IS 'filled out feedback'; -- --- TOC entry 724 (class 1259 OID 20783) +-- TOC entry 462 (class 1259 OID 60456) -- Name: mdl_feedback_completedtmp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7452,7 +7452,7 @@ ALTER TABLE public.mdl_feedback_completedtmp_id_seq OWNER TO postgres; -- -- TOC entry 10810 (class 0 OID 0) --- Dependencies: 724 +-- Dependencies: 462 -- Name: mdl_feedback_completedtmp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7460,7 +7460,7 @@ ALTER SEQUENCE public.mdl_feedback_completedtmp_id_seq OWNED BY public.mdl_feedb -- --- TOC entry 716 (class 1259 OID 20705) +-- TOC entry 463 (class 1259 OID 60458) -- Name: mdl_feedback_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7476,7 +7476,7 @@ ALTER TABLE public.mdl_feedback_id_seq OWNER TO postgres; -- -- TOC entry 10811 (class 0 OID 0) --- Dependencies: 716 +-- Dependencies: 463 -- Name: mdl_feedback_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7484,7 +7484,7 @@ ALTER SEQUENCE public.mdl_feedback_id_seq OWNED BY public.mdl_feedback.id; -- --- TOC entry 721 (class 1259 OID 20745) +-- TOC entry 464 (class 1259 OID 60460) -- Name: mdl_feedback_item; Type: TABLE; Schema: public; Owner: postgres -- @@ -7509,7 +7509,7 @@ ALTER TABLE public.mdl_feedback_item OWNER TO postgres; -- -- TOC entry 10812 (class 0 OID 0) --- Dependencies: 721 +-- Dependencies: 464 -- Name: TABLE mdl_feedback_item; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7517,7 +7517,7 @@ COMMENT ON TABLE public.mdl_feedback_item IS 'feedback_items'; -- --- TOC entry 720 (class 1259 OID 20743) +-- TOC entry 465 (class 1259 OID 60477) -- Name: mdl_feedback_item_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7533,7 +7533,7 @@ ALTER TABLE public.mdl_feedback_item_id_seq OWNER TO postgres; -- -- TOC entry 10813 (class 0 OID 0) --- Dependencies: 720 +-- Dependencies: 465 -- Name: mdl_feedback_item_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7541,7 +7541,7 @@ ALTER SEQUENCE public.mdl_feedback_item_id_seq OWNED BY public.mdl_feedback_item -- --- TOC entry 731 (class 1259 OID 20838) +-- TOC entry 466 (class 1259 OID 60479) -- Name: mdl_feedback_sitecourse_map; Type: TABLE; Schema: public; Owner: postgres -- @@ -7556,7 +7556,7 @@ ALTER TABLE public.mdl_feedback_sitecourse_map OWNER TO postgres; -- -- TOC entry 10814 (class 0 OID 0) --- Dependencies: 731 +-- Dependencies: 466 -- Name: TABLE mdl_feedback_sitecourse_map; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7564,7 +7564,7 @@ COMMENT ON TABLE public.mdl_feedback_sitecourse_map IS 'feedback sitecourse map' -- --- TOC entry 730 (class 1259 OID 20836) +-- TOC entry 467 (class 1259 OID 60484) -- Name: mdl_feedback_sitecourse_map_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7580,7 +7580,7 @@ ALTER TABLE public.mdl_feedback_sitecourse_map_id_seq OWNER TO postgres; -- -- TOC entry 10815 (class 0 OID 0) --- Dependencies: 730 +-- Dependencies: 467 -- Name: mdl_feedback_sitecourse_map_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7588,7 +7588,7 @@ ALTER SEQUENCE public.mdl_feedback_sitecourse_map_id_seq OWNED BY public.mdl_fee -- --- TOC entry 719 (class 1259 OID 20733) +-- TOC entry 468 (class 1259 OID 60486) -- Name: mdl_feedback_template; Type: TABLE; Schema: public; Owner: postgres -- @@ -7604,7 +7604,7 @@ ALTER TABLE public.mdl_feedback_template OWNER TO postgres; -- -- TOC entry 10816 (class 0 OID 0) --- Dependencies: 719 +-- Dependencies: 468 -- Name: TABLE mdl_feedback_template; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7612,7 +7612,7 @@ COMMENT ON TABLE public.mdl_feedback_template IS 'templates of feedbackstructure -- --- TOC entry 718 (class 1259 OID 20731) +-- TOC entry 469 (class 1259 OID 60492) -- Name: mdl_feedback_template_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7628,7 +7628,7 @@ ALTER TABLE public.mdl_feedback_template_id_seq OWNER TO postgres; -- -- TOC entry 10817 (class 0 OID 0) --- Dependencies: 718 +-- Dependencies: 469 -- Name: mdl_feedback_template_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7636,7 +7636,7 @@ ALTER SEQUENCE public.mdl_feedback_template_id_seq OWNED BY public.mdl_feedback_ -- --- TOC entry 727 (class 1259 OID 20802) +-- TOC entry 470 (class 1259 OID 60494) -- Name: mdl_feedback_value; Type: TABLE; Schema: public; Owner: postgres -- @@ -7654,7 +7654,7 @@ ALTER TABLE public.mdl_feedback_value OWNER TO postgres; -- -- TOC entry 10818 (class 0 OID 0) --- Dependencies: 727 +-- Dependencies: 470 -- Name: TABLE mdl_feedback_value; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7662,7 +7662,7 @@ COMMENT ON TABLE public.mdl_feedback_value IS 'values of the completeds'; -- --- TOC entry 726 (class 1259 OID 20800) +-- TOC entry 471 (class 1259 OID 60504) -- Name: mdl_feedback_value_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7678,7 +7678,7 @@ ALTER TABLE public.mdl_feedback_value_id_seq OWNER TO postgres; -- -- TOC entry 10819 (class 0 OID 0) --- Dependencies: 726 +-- Dependencies: 471 -- Name: mdl_feedback_value_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7686,7 +7686,7 @@ ALTER SEQUENCE public.mdl_feedback_value_id_seq OWNED BY public.mdl_feedback_val -- --- TOC entry 729 (class 1259 OID 20820) +-- TOC entry 472 (class 1259 OID 60506) -- Name: mdl_feedback_valuetmp; Type: TABLE; Schema: public; Owner: postgres -- @@ -7704,7 +7704,7 @@ ALTER TABLE public.mdl_feedback_valuetmp OWNER TO postgres; -- -- TOC entry 10820 (class 0 OID 0) --- Dependencies: 729 +-- Dependencies: 472 -- Name: TABLE mdl_feedback_valuetmp; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7712,7 +7712,7 @@ COMMENT ON TABLE public.mdl_feedback_valuetmp IS 'values of the completedstmp'; -- --- TOC entry 728 (class 1259 OID 20818) +-- TOC entry 473 (class 1259 OID 60516) -- Name: mdl_feedback_valuetmp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7728,7 +7728,7 @@ ALTER TABLE public.mdl_feedback_valuetmp_id_seq OWNER TO postgres; -- -- TOC entry 10821 (class 0 OID 0) --- Dependencies: 728 +-- Dependencies: 473 -- Name: mdl_feedback_valuetmp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7736,7 +7736,7 @@ ALTER SEQUENCE public.mdl_feedback_valuetmp_id_seq OWNED BY public.mdl_feedback_ -- --- TOC entry 437 (class 1259 OID 18539) +-- TOC entry 474 (class 1259 OID 60518) -- Name: mdl_file_conversion; Type: TABLE; Schema: public; Owner: postgres -- @@ -7759,7 +7759,7 @@ ALTER TABLE public.mdl_file_conversion OWNER TO postgres; -- -- TOC entry 10822 (class 0 OID 0) --- Dependencies: 437 +-- Dependencies: 474 -- Name: TABLE mdl_file_conversion; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7767,7 +7767,7 @@ COMMENT ON TABLE public.mdl_file_conversion IS 'Table to track file conversions. -- --- TOC entry 436 (class 1259 OID 18537) +-- TOC entry 475 (class 1259 OID 60526) -- Name: mdl_file_conversion_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7783,7 +7783,7 @@ ALTER TABLE public.mdl_file_conversion_id_seq OWNER TO postgres; -- -- TOC entry 10823 (class 0 OID 0) --- Dependencies: 436 +-- Dependencies: 475 -- Name: mdl_file_conversion_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7791,7 +7791,7 @@ ALTER SEQUENCE public.mdl_file_conversion_id_seq OWNED BY public.mdl_file_conver -- --- TOC entry 433 (class 1259 OID 18499) +-- TOC entry 476 (class 1259 OID 60528) -- Name: mdl_files; Type: TABLE; Schema: public; Owner: postgres -- @@ -7823,7 +7823,7 @@ ALTER TABLE public.mdl_files OWNER TO postgres; -- -- TOC entry 10824 (class 0 OID 0) --- Dependencies: 433 +-- Dependencies: 476 -- Name: TABLE mdl_files; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7831,7 +7831,7 @@ COMMENT ON TABLE public.mdl_files IS 'description of files, content is stored in -- --- TOC entry 432 (class 1259 OID 18497) +-- TOC entry 477 (class 1259 OID 60542) -- Name: mdl_files_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7847,7 +7847,7 @@ ALTER TABLE public.mdl_files_id_seq OWNER TO postgres; -- -- TOC entry 10825 (class 0 OID 0) --- Dependencies: 432 +-- Dependencies: 477 -- Name: mdl_files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7855,7 +7855,7 @@ ALTER SEQUENCE public.mdl_files_id_seq OWNED BY public.mdl_files.id; -- --- TOC entry 435 (class 1259 OID 18525) +-- TOC entry 478 (class 1259 OID 60544) -- Name: mdl_files_reference; Type: TABLE; Schema: public; Owner: postgres -- @@ -7872,7 +7872,7 @@ ALTER TABLE public.mdl_files_reference OWNER TO postgres; -- -- TOC entry 10826 (class 0 OID 0) --- Dependencies: 435 +-- Dependencies: 478 -- Name: TABLE mdl_files_reference; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7880,7 +7880,7 @@ COMMENT ON TABLE public.mdl_files_reference IS 'Store files references'; -- --- TOC entry 434 (class 1259 OID 18523) +-- TOC entry 479 (class 1259 OID 60551) -- Name: mdl_files_reference_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7896,7 +7896,7 @@ ALTER TABLE public.mdl_files_reference_id_seq OWNER TO postgres; -- -- TOC entry 10827 (class 0 OID 0) --- Dependencies: 434 +-- Dependencies: 479 -- Name: mdl_files_reference_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7904,7 +7904,7 @@ ALTER SEQUENCE public.mdl_files_reference_id_seq OWNED BY public.mdl_files_refer -- --- TOC entry 220 (class 1259 OID 16705) +-- TOC entry 480 (class 1259 OID 60553) -- Name: mdl_filter_active; Type: TABLE; Schema: public; Owner: postgres -- @@ -7921,7 +7921,7 @@ ALTER TABLE public.mdl_filter_active OWNER TO postgres; -- -- TOC entry 10828 (class 0 OID 0) --- Dependencies: 220 +-- Dependencies: 480 -- Name: TABLE mdl_filter_active; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7929,7 +7929,7 @@ COMMENT ON TABLE public.mdl_filter_active IS 'Stores information about which fil -- --- TOC entry 219 (class 1259 OID 16703) +-- TOC entry 481 (class 1259 OID 60558) -- Name: mdl_filter_active_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7945,7 +7945,7 @@ ALTER TABLE public.mdl_filter_active_id_seq OWNER TO postgres; -- -- TOC entry 10829 (class 0 OID 0) --- Dependencies: 219 +-- Dependencies: 481 -- Name: mdl_filter_active_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7953,7 +7953,7 @@ ALTER SEQUENCE public.mdl_filter_active_id_seq OWNED BY public.mdl_filter_active -- --- TOC entry 222 (class 1259 OID 16717) +-- TOC entry 482 (class 1259 OID 60560) -- Name: mdl_filter_config; Type: TABLE; Schema: public; Owner: postgres -- @@ -7970,7 +7970,7 @@ ALTER TABLE public.mdl_filter_config OWNER TO postgres; -- -- TOC entry 10830 (class 0 OID 0) --- Dependencies: 222 +-- Dependencies: 482 -- Name: TABLE mdl_filter_config; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7978,7 +7978,7 @@ COMMENT ON TABLE public.mdl_filter_config IS 'Stores per-context configuration s -- --- TOC entry 221 (class 1259 OID 16715) +-- TOC entry 483 (class 1259 OID 60568) -- Name: mdl_filter_config_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7994,7 +7994,7 @@ ALTER TABLE public.mdl_filter_config_id_seq OWNER TO postgres; -- -- TOC entry 10831 (class 0 OID 0) --- Dependencies: 221 +-- Dependencies: 483 -- Name: mdl_filter_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8002,7 +8002,7 @@ ALTER SEQUENCE public.mdl_filter_config_id_seq OWNED BY public.mdl_filter_config -- --- TOC entry 733 (class 1259 OID 20850) +-- TOC entry 484 (class 1259 OID 60570) -- Name: mdl_folder; Type: TABLE; Schema: public; Owner: postgres -- @@ -8024,7 +8024,7 @@ ALTER TABLE public.mdl_folder OWNER TO postgres; -- -- TOC entry 10832 (class 0 OID 0) --- Dependencies: 733 +-- Dependencies: 484 -- Name: TABLE mdl_folder; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8032,7 +8032,7 @@ COMMENT ON TABLE public.mdl_folder IS 'each record is one folder resource'; -- --- TOC entry 732 (class 1259 OID 20848) +-- TOC entry 485 (class 1259 OID 60584) -- Name: mdl_folder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8048,7 +8048,7 @@ ALTER TABLE public.mdl_folder_id_seq OWNER TO postgres; -- -- TOC entry 10833 (class 0 OID 0) --- Dependencies: 732 +-- Dependencies: 485 -- Name: mdl_folder_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8056,7 +8056,7 @@ ALTER SEQUENCE public.mdl_folder_id_seq OWNED BY public.mdl_folder.id; -- --- TOC entry 735 (class 1259 OID 20870) +-- TOC entry 486 (class 1259 OID 60586) -- Name: mdl_forum; Type: TABLE; Schema: public; Owner: postgres -- @@ -8097,7 +8097,7 @@ ALTER TABLE public.mdl_forum OWNER TO postgres; -- -- TOC entry 10834 (class 0 OID 0) --- Dependencies: 735 +-- Dependencies: 486 -- Name: TABLE mdl_forum; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8105,7 +8105,7 @@ COMMENT ON TABLE public.mdl_forum IS 'Forums contain and structure discussion'; -- --- TOC entry 745 (class 1259 OID 20992) +-- TOC entry 487 (class 1259 OID 60619) -- Name: mdl_forum_digests; Type: TABLE; Schema: public; Owner: postgres -- @@ -8121,7 +8121,7 @@ ALTER TABLE public.mdl_forum_digests OWNER TO postgres; -- -- TOC entry 10835 (class 0 OID 0) --- Dependencies: 745 +-- Dependencies: 487 -- Name: TABLE mdl_forum_digests; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8129,7 +8129,7 @@ COMMENT ON TABLE public.mdl_forum_digests IS 'Keeps track of user mail delivery -- --- TOC entry 744 (class 1259 OID 20990) +-- TOC entry 488 (class 1259 OID 60623) -- Name: mdl_forum_digests_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8145,7 +8145,7 @@ ALTER TABLE public.mdl_forum_digests_id_seq OWNER TO postgres; -- -- TOC entry 10836 (class 0 OID 0) --- Dependencies: 744 +-- Dependencies: 488 -- Name: mdl_forum_digests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8153,7 +8153,7 @@ ALTER SEQUENCE public.mdl_forum_digests_id_seq OWNED BY public.mdl_forum_digests -- --- TOC entry 751 (class 1259 OID 21032) +-- TOC entry 489 (class 1259 OID 60625) -- Name: mdl_forum_discussion_subs; Type: TABLE; Schema: public; Owner: postgres -- @@ -8170,7 +8170,7 @@ ALTER TABLE public.mdl_forum_discussion_subs OWNER TO postgres; -- -- TOC entry 10837 (class 0 OID 0) --- Dependencies: 751 +-- Dependencies: 489 -- Name: TABLE mdl_forum_discussion_subs; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8178,7 +8178,7 @@ COMMENT ON TABLE public.mdl_forum_discussion_subs IS 'Users may choose to subscr -- --- TOC entry 750 (class 1259 OID 21030) +-- TOC entry 490 (class 1259 OID 60629) -- Name: mdl_forum_discussion_subs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8194,7 +8194,7 @@ ALTER TABLE public.mdl_forum_discussion_subs_id_seq OWNER TO postgres; -- -- TOC entry 10838 (class 0 OID 0) --- Dependencies: 750 +-- Dependencies: 490 -- Name: mdl_forum_discussion_subs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8202,7 +8202,7 @@ ALTER SEQUENCE public.mdl_forum_discussion_subs_id_seq OWNED BY public.mdl_forum -- --- TOC entry 737 (class 1259 OID 20909) +-- TOC entry 491 (class 1259 OID 60631) -- Name: mdl_forum_discussions; Type: TABLE; Schema: public; Owner: postgres -- @@ -8228,7 +8228,7 @@ ALTER TABLE public.mdl_forum_discussions OWNER TO postgres; -- -- TOC entry 10839 (class 0 OID 0) --- Dependencies: 737 +-- Dependencies: 491 -- Name: TABLE mdl_forum_discussions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8236,7 +8236,7 @@ COMMENT ON TABLE public.mdl_forum_discussions IS 'Forums are composed of discuss -- --- TOC entry 736 (class 1259 OID 20907) +-- TOC entry 492 (class 1259 OID 60647) -- Name: mdl_forum_discussions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8252,7 +8252,7 @@ ALTER TABLE public.mdl_forum_discussions_id_seq OWNER TO postgres; -- -- TOC entry 10840 (class 0 OID 0) --- Dependencies: 736 +-- Dependencies: 492 -- Name: mdl_forum_discussions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8260,7 +8260,7 @@ ALTER SEQUENCE public.mdl_forum_discussions_id_seq OWNED BY public.mdl_forum_dis -- --- TOC entry 753 (class 1259 OID 21045) +-- TOC entry 493 (class 1259 OID 60649) -- Name: mdl_forum_grades; Type: TABLE; Schema: public; Owner: postgres -- @@ -8279,7 +8279,7 @@ ALTER TABLE public.mdl_forum_grades OWNER TO postgres; -- -- TOC entry 10841 (class 0 OID 0) --- Dependencies: 753 +-- Dependencies: 493 -- Name: TABLE mdl_forum_grades; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8287,7 +8287,7 @@ COMMENT ON TABLE public.mdl_forum_grades IS 'Grading data for forum instances'; -- --- TOC entry 752 (class 1259 OID 21043) +-- TOC entry 494 (class 1259 OID 60652) -- Name: mdl_forum_grades_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8303,7 +8303,7 @@ ALTER TABLE public.mdl_forum_grades_id_seq OWNER TO postgres; -- -- TOC entry 10842 (class 0 OID 0) --- Dependencies: 752 +-- Dependencies: 494 -- Name: mdl_forum_grades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8311,7 +8311,7 @@ ALTER SEQUENCE public.mdl_forum_grades_id_seq OWNED BY public.mdl_forum_grades.i -- --- TOC entry 734 (class 1259 OID 20868) +-- TOC entry 495 (class 1259 OID 60654) -- Name: mdl_forum_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8327,7 +8327,7 @@ ALTER TABLE public.mdl_forum_id_seq OWNER TO postgres; -- -- TOC entry 10843 (class 0 OID 0) --- Dependencies: 734 +-- Dependencies: 495 -- Name: mdl_forum_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8335,7 +8335,7 @@ ALTER SEQUENCE public.mdl_forum_id_seq OWNED BY public.mdl_forum.id; -- --- TOC entry 739 (class 1259 OID 20933) +-- TOC entry 496 (class 1259 OID 60656) -- Name: mdl_forum_posts; Type: TABLE; Schema: public; Owner: postgres -- @@ -8365,7 +8365,7 @@ ALTER TABLE public.mdl_forum_posts OWNER TO postgres; -- -- TOC entry 10844 (class 0 OID 0) --- Dependencies: 739 +-- Dependencies: 496 -- Name: TABLE mdl_forum_posts; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8373,7 +8373,7 @@ COMMENT ON TABLE public.mdl_forum_posts IS 'All posts are stored in this table'; -- --- TOC entry 738 (class 1259 OID 20931) +-- TOC entry 497 (class 1259 OID 60676) -- Name: mdl_forum_posts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8389,7 +8389,7 @@ ALTER TABLE public.mdl_forum_posts_id_seq OWNER TO postgres; -- -- TOC entry 10845 (class 0 OID 0) --- Dependencies: 738 +-- Dependencies: 497 -- Name: mdl_forum_posts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8397,7 +8397,7 @@ ALTER SEQUENCE public.mdl_forum_posts_id_seq OWNED BY public.mdl_forum_posts.id; -- --- TOC entry 741 (class 1259 OID 20964) +-- TOC entry 498 (class 1259 OID 60678) -- Name: mdl_forum_queue; Type: TABLE; Schema: public; Owner: postgres -- @@ -8414,7 +8414,7 @@ ALTER TABLE public.mdl_forum_queue OWNER TO postgres; -- -- TOC entry 10846 (class 0 OID 0) --- Dependencies: 741 +-- Dependencies: 498 -- Name: TABLE mdl_forum_queue; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8422,7 +8422,7 @@ COMMENT ON TABLE public.mdl_forum_queue IS 'For keeping track of posts that will -- --- TOC entry 740 (class 1259 OID 20962) +-- TOC entry 499 (class 1259 OID 60685) -- Name: mdl_forum_queue_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8438,7 +8438,7 @@ ALTER TABLE public.mdl_forum_queue_id_seq OWNER TO postgres; -- -- TOC entry 10847 (class 0 OID 0) --- Dependencies: 740 +-- Dependencies: 499 -- Name: mdl_forum_queue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8446,7 +8446,7 @@ ALTER SEQUENCE public.mdl_forum_queue_id_seq OWNED BY public.mdl_forum_queue.id; -- --- TOC entry 747 (class 1259 OID 21004) +-- TOC entry 500 (class 1259 OID 60687) -- Name: mdl_forum_read; Type: TABLE; Schema: public; Owner: postgres -- @@ -8465,7 +8465,7 @@ ALTER TABLE public.mdl_forum_read OWNER TO postgres; -- -- TOC entry 10848 (class 0 OID 0) --- Dependencies: 747 +-- Dependencies: 500 -- Name: TABLE mdl_forum_read; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8473,7 +8473,7 @@ COMMENT ON TABLE public.mdl_forum_read IS 'Tracks each users read posts'; -- --- TOC entry 746 (class 1259 OID 21002) +-- TOC entry 501 (class 1259 OID 60696) -- Name: mdl_forum_read_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8489,7 +8489,7 @@ ALTER TABLE public.mdl_forum_read_id_seq OWNER TO postgres; -- -- TOC entry 10849 (class 0 OID 0) --- Dependencies: 746 +-- Dependencies: 501 -- Name: mdl_forum_read_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8497,7 +8497,7 @@ ALTER SEQUENCE public.mdl_forum_read_id_seq OWNED BY public.mdl_forum_read.id; -- --- TOC entry 743 (class 1259 OID 20979) +-- TOC entry 502 (class 1259 OID 60698) -- Name: mdl_forum_subscriptions; Type: TABLE; Schema: public; Owner: postgres -- @@ -8512,7 +8512,7 @@ ALTER TABLE public.mdl_forum_subscriptions OWNER TO postgres; -- -- TOC entry 10850 (class 0 OID 0) --- Dependencies: 743 +-- Dependencies: 502 -- Name: TABLE mdl_forum_subscriptions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8520,7 +8520,7 @@ COMMENT ON TABLE public.mdl_forum_subscriptions IS 'Keeps track of who is subscr -- --- TOC entry 742 (class 1259 OID 20977) +-- TOC entry 503 (class 1259 OID 60703) -- Name: mdl_forum_subscriptions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8536,7 +8536,7 @@ ALTER TABLE public.mdl_forum_subscriptions_id_seq OWNER TO postgres; -- -- TOC entry 10851 (class 0 OID 0) --- Dependencies: 742 +-- Dependencies: 503 -- Name: mdl_forum_subscriptions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8544,7 +8544,7 @@ ALTER SEQUENCE public.mdl_forum_subscriptions_id_seq OWNED BY public.mdl_forum_s -- --- TOC entry 749 (class 1259 OID 21021) +-- TOC entry 504 (class 1259 OID 60705) -- Name: mdl_forum_track_prefs; Type: TABLE; Schema: public; Owner: postgres -- @@ -8559,7 +8559,7 @@ ALTER TABLE public.mdl_forum_track_prefs OWNER TO postgres; -- -- TOC entry 10852 (class 0 OID 0) --- Dependencies: 749 +-- Dependencies: 504 -- Name: TABLE mdl_forum_track_prefs; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8567,7 +8567,7 @@ COMMENT ON TABLE public.mdl_forum_track_prefs IS 'Tracks each users untracked fo -- --- TOC entry 748 (class 1259 OID 21019) +-- TOC entry 505 (class 1259 OID 60710) -- Name: mdl_forum_track_prefs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8583,7 +8583,7 @@ ALTER TABLE public.mdl_forum_track_prefs_id_seq OWNER TO postgres; -- -- TOC entry 10853 (class 0 OID 0) --- Dependencies: 748 +-- Dependencies: 505 -- Name: mdl_forum_track_prefs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8591,7 +8591,7 @@ ALTER SEQUENCE public.mdl_forum_track_prefs_id_seq OWNED BY public.mdl_forum_tra -- --- TOC entry 755 (class 1259 OID 21059) +-- TOC entry 506 (class 1259 OID 60712) -- Name: mdl_glossary; Type: TABLE; Schema: public; Owner: postgres -- @@ -8631,7 +8631,7 @@ ALTER TABLE public.mdl_glossary OWNER TO postgres; -- -- TOC entry 10854 (class 0 OID 0) --- Dependencies: 755 +-- Dependencies: 506 -- Name: TABLE mdl_glossary; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8639,7 +8639,7 @@ COMMENT ON TABLE public.mdl_glossary IS 'all glossaries'; -- --- TOC entry 759 (class 1259 OID 21125) +-- TOC entry 507 (class 1259 OID 60744) -- Name: mdl_glossary_alias; Type: TABLE; Schema: public; Owner: postgres -- @@ -8654,7 +8654,7 @@ ALTER TABLE public.mdl_glossary_alias OWNER TO postgres; -- -- TOC entry 10855 (class 0 OID 0) --- Dependencies: 759 +-- Dependencies: 507 -- Name: TABLE mdl_glossary_alias; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8662,7 +8662,7 @@ COMMENT ON TABLE public.mdl_glossary_alias IS 'entries alias'; -- --- TOC entry 758 (class 1259 OID 21123) +-- TOC entry 508 (class 1259 OID 60749) -- Name: mdl_glossary_alias_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8678,7 +8678,7 @@ ALTER TABLE public.mdl_glossary_alias_id_seq OWNER TO postgres; -- -- TOC entry 10856 (class 0 OID 0) --- Dependencies: 758 +-- Dependencies: 508 -- Name: mdl_glossary_alias_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8686,7 +8686,7 @@ ALTER SEQUENCE public.mdl_glossary_alias_id_seq OWNED BY public.mdl_glossary_ali -- --- TOC entry 761 (class 1259 OID 21136) +-- TOC entry 509 (class 1259 OID 60751) -- Name: mdl_glossary_categories; Type: TABLE; Schema: public; Owner: postgres -- @@ -8702,7 +8702,7 @@ ALTER TABLE public.mdl_glossary_categories OWNER TO postgres; -- -- TOC entry 10857 (class 0 OID 0) --- Dependencies: 761 +-- Dependencies: 509 -- Name: TABLE mdl_glossary_categories; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8710,7 +8710,7 @@ COMMENT ON TABLE public.mdl_glossary_categories IS 'all categories for glossary -- --- TOC entry 760 (class 1259 OID 21134) +-- TOC entry 510 (class 1259 OID 60757) -- Name: mdl_glossary_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8726,7 +8726,7 @@ ALTER TABLE public.mdl_glossary_categories_id_seq OWNER TO postgres; -- -- TOC entry 10858 (class 0 OID 0) --- Dependencies: 760 +-- Dependencies: 510 -- Name: mdl_glossary_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8734,7 +8734,7 @@ ALTER SEQUENCE public.mdl_glossary_categories_id_seq OWNED BY public.mdl_glossar -- --- TOC entry 757 (class 1259 OID 21097) +-- TOC entry 511 (class 1259 OID 60759) -- Name: mdl_glossary_entries; Type: TABLE; Schema: public; Owner: postgres -- @@ -8762,7 +8762,7 @@ ALTER TABLE public.mdl_glossary_entries OWNER TO postgres; -- -- TOC entry 10859 (class 0 OID 0) --- Dependencies: 757 +-- Dependencies: 511 -- Name: TABLE mdl_glossary_entries; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8770,7 +8770,7 @@ COMMENT ON TABLE public.mdl_glossary_entries IS 'all glossary entries'; -- --- TOC entry 763 (class 1259 OID 21148) +-- TOC entry 512 (class 1259 OID 60779) -- Name: mdl_glossary_entries_categories; Type: TABLE; Schema: public; Owner: postgres -- @@ -8785,7 +8785,7 @@ ALTER TABLE public.mdl_glossary_entries_categories OWNER TO postgres; -- -- TOC entry 10860 (class 0 OID 0) --- Dependencies: 763 +-- Dependencies: 512 -- Name: TABLE mdl_glossary_entries_categories; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8793,7 +8793,7 @@ COMMENT ON TABLE public.mdl_glossary_entries_categories IS 'categories of each g -- --- TOC entry 762 (class 1259 OID 21146) +-- TOC entry 513 (class 1259 OID 60784) -- Name: mdl_glossary_entries_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8809,7 +8809,7 @@ ALTER TABLE public.mdl_glossary_entries_categories_id_seq OWNER TO postgres; -- -- TOC entry 10861 (class 0 OID 0) --- Dependencies: 762 +-- Dependencies: 513 -- Name: mdl_glossary_entries_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8817,7 +8817,7 @@ ALTER SEQUENCE public.mdl_glossary_entries_categories_id_seq OWNED BY public.mdl -- --- TOC entry 756 (class 1259 OID 21095) +-- TOC entry 514 (class 1259 OID 60786) -- Name: mdl_glossary_entries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8833,7 +8833,7 @@ ALTER TABLE public.mdl_glossary_entries_id_seq OWNER TO postgres; -- -- TOC entry 10862 (class 0 OID 0) --- Dependencies: 756 +-- Dependencies: 514 -- Name: mdl_glossary_entries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8841,7 +8841,7 @@ ALTER SEQUENCE public.mdl_glossary_entries_id_seq OWNED BY public.mdl_glossary_e -- --- TOC entry 765 (class 1259 OID 21160) +-- TOC entry 515 (class 1259 OID 60788) -- Name: mdl_glossary_formats; Type: TABLE; Schema: public; Owner: postgres -- @@ -8863,7 +8863,7 @@ ALTER TABLE public.mdl_glossary_formats OWNER TO postgres; -- -- TOC entry 10863 (class 0 OID 0) --- Dependencies: 765 +-- Dependencies: 515 -- Name: TABLE mdl_glossary_formats; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8871,7 +8871,7 @@ COMMENT ON TABLE public.mdl_glossary_formats IS 'Setting of the display formats' -- --- TOC entry 764 (class 1259 OID 21158) +-- TOC entry 516 (class 1259 OID 60799) -- Name: mdl_glossary_formats_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8887,7 +8887,7 @@ ALTER TABLE public.mdl_glossary_formats_id_seq OWNER TO postgres; -- -- TOC entry 10864 (class 0 OID 0) --- Dependencies: 764 +-- Dependencies: 516 -- Name: mdl_glossary_formats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8895,7 +8895,7 @@ ALTER SEQUENCE public.mdl_glossary_formats_id_seq OWNED BY public.mdl_glossary_f -- --- TOC entry 754 (class 1259 OID 21057) +-- TOC entry 517 (class 1259 OID 60801) -- Name: mdl_glossary_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8911,7 +8911,7 @@ ALTER TABLE public.mdl_glossary_id_seq OWNER TO postgres; -- -- TOC entry 10865 (class 0 OID 0) --- Dependencies: 754 +-- Dependencies: 517 -- Name: mdl_glossary_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8919,7 +8919,7 @@ ALTER SEQUENCE public.mdl_glossary_id_seq OWNED BY public.mdl_glossary.id; -- --- TOC entry 371 (class 1259 OID 17949) +-- TOC entry 518 (class 1259 OID 60803) -- Name: mdl_grade_categories; Type: TABLE; Schema: public; Owner: postgres -- @@ -8945,7 +8945,7 @@ ALTER TABLE public.mdl_grade_categories OWNER TO postgres; -- -- TOC entry 10866 (class 0 OID 0) --- Dependencies: 371 +-- Dependencies: 518 -- Name: TABLE mdl_grade_categories; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8953,7 +8953,7 @@ COMMENT ON TABLE public.mdl_grade_categories IS 'This table keeps information ab -- --- TOC entry 379 (class 1259 OID 18053) +-- TOC entry 519 (class 1259 OID 60817) -- Name: mdl_grade_categories_history; Type: TABLE; Schema: public; Owner: postgres -- @@ -8983,7 +8983,7 @@ ALTER TABLE public.mdl_grade_categories_history OWNER TO postgres; -- -- TOC entry 10867 (class 0 OID 0) --- Dependencies: 379 +-- Dependencies: 519 -- Name: TABLE mdl_grade_categories_history; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8991,7 +8991,7 @@ COMMENT ON TABLE public.mdl_grade_categories_history IS 'History of grade_catego -- --- TOC entry 378 (class 1259 OID 18051) +-- TOC entry 520 (class 1259 OID 60833) -- Name: mdl_grade_categories_history_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9007,7 +9007,7 @@ ALTER TABLE public.mdl_grade_categories_history_id_seq OWNER TO postgres; -- -- TOC entry 10868 (class 0 OID 0) --- Dependencies: 378 +-- Dependencies: 520 -- Name: mdl_grade_categories_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9015,7 +9015,7 @@ ALTER SEQUENCE public.mdl_grade_categories_history_id_seq OWNED BY public.mdl_gr -- --- TOC entry 370 (class 1259 OID 17947) +-- TOC entry 521 (class 1259 OID 60835) -- Name: mdl_grade_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9031,7 +9031,7 @@ ALTER TABLE public.mdl_grade_categories_id_seq OWNER TO postgres; -- -- TOC entry 10869 (class 0 OID 0) --- Dependencies: 370 +-- Dependencies: 521 -- Name: mdl_grade_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9039,7 +9039,7 @@ ALTER SEQUENCE public.mdl_grade_categories_id_seq OWNED BY public.mdl_grade_cate -- --- TOC entry 375 (class 1259 OID 18005) +-- TOC entry 522 (class 1259 OID 60837) -- Name: mdl_grade_grades; Type: TABLE; Schema: public; Owner: postgres -- @@ -9074,7 +9074,7 @@ ALTER TABLE public.mdl_grade_grades OWNER TO postgres; -- -- TOC entry 10870 (class 0 OID 0) --- Dependencies: 375 +-- Dependencies: 522 -- Name: TABLE mdl_grade_grades; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9082,7 +9082,7 @@ COMMENT ON TABLE public.mdl_grade_grades IS 'grade_grades This table keeps indi -- --- TOC entry 383 (class 1259 OID 18116) +-- TOC entry 523 (class 1259 OID 60854) -- Name: mdl_grade_grades_history; Type: TABLE; Schema: public; Owner: postgres -- @@ -9118,7 +9118,7 @@ ALTER TABLE public.mdl_grade_grades_history OWNER TO postgres; -- -- TOC entry 10871 (class 0 OID 0) --- Dependencies: 383 +-- Dependencies: 523 -- Name: TABLE mdl_grade_grades_history; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9126,7 +9126,7 @@ COMMENT ON TABLE public.mdl_grade_grades_history IS 'History table'; -- --- TOC entry 382 (class 1259 OID 18114) +-- TOC entry 524 (class 1259 OID 60871) -- Name: mdl_grade_grades_history_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9142,7 +9142,7 @@ ALTER TABLE public.mdl_grade_grades_history_id_seq OWNER TO postgres; -- -- TOC entry 10872 (class 0 OID 0) --- Dependencies: 382 +-- Dependencies: 524 -- Name: mdl_grade_grades_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9150,7 +9150,7 @@ ALTER SEQUENCE public.mdl_grade_grades_history_id_seq OWNED BY public.mdl_grade_ -- --- TOC entry 374 (class 1259 OID 18003) +-- TOC entry 525 (class 1259 OID 60873) -- Name: mdl_grade_grades_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9166,7 +9166,7 @@ ALTER TABLE public.mdl_grade_grades_id_seq OWNER TO postgres; -- -- TOC entry 10873 (class 0 OID 0) --- Dependencies: 374 +-- Dependencies: 525 -- Name: mdl_grade_grades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9174,7 +9174,7 @@ ALTER SEQUENCE public.mdl_grade_grades_id_seq OWNED BY public.mdl_grade_grades.i -- --- TOC entry 385 (class 1259 OID 18147) +-- TOC entry 526 (class 1259 OID 60875) -- Name: mdl_grade_import_newitem; Type: TABLE; Schema: public; Owner: postgres -- @@ -9190,7 +9190,7 @@ ALTER TABLE public.mdl_grade_import_newitem OWNER TO postgres; -- -- TOC entry 10874 (class 0 OID 0) --- Dependencies: 385 +-- Dependencies: 526 -- Name: TABLE mdl_grade_import_newitem; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9198,7 +9198,7 @@ COMMENT ON TABLE public.mdl_grade_import_newitem IS 'temporary table for storing -- --- TOC entry 384 (class 1259 OID 18145) +-- TOC entry 527 (class 1259 OID 60879) -- Name: mdl_grade_import_newitem_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9214,7 +9214,7 @@ ALTER TABLE public.mdl_grade_import_newitem_id_seq OWNER TO postgres; -- -- TOC entry 10875 (class 0 OID 0) --- Dependencies: 384 +-- Dependencies: 527 -- Name: mdl_grade_import_newitem_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9222,7 +9222,7 @@ ALTER SEQUENCE public.mdl_grade_import_newitem_id_seq OWNED BY public.mdl_grade_ -- --- TOC entry 387 (class 1259 OID 18157) +-- TOC entry 528 (class 1259 OID 60881) -- Name: mdl_grade_import_values; Type: TABLE; Schema: public; Owner: postgres -- @@ -9243,7 +9243,7 @@ ALTER TABLE public.mdl_grade_import_values OWNER TO postgres; -- -- TOC entry 10876 (class 0 OID 0) --- Dependencies: 387 +-- Dependencies: 528 -- Name: TABLE mdl_grade_import_values; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9251,7 +9251,7 @@ COMMENT ON TABLE public.mdl_grade_import_values IS 'Temporary table for importin -- --- TOC entry 386 (class 1259 OID 18155) +-- TOC entry 529 (class 1259 OID 60888) -- Name: mdl_grade_import_values_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9267,7 +9267,7 @@ ALTER TABLE public.mdl_grade_import_values_id_seq OWNER TO postgres; -- -- TOC entry 10877 (class 0 OID 0) --- Dependencies: 386 +-- Dependencies: 529 -- Name: mdl_grade_import_values_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9275,7 +9275,7 @@ ALTER SEQUENCE public.mdl_grade_import_values_id_seq OWNED BY public.mdl_grade_i -- --- TOC entry 373 (class 1259 OID 17970) +-- TOC entry 530 (class 1259 OID 60890) -- Name: mdl_grade_items; Type: TABLE; Schema: public; Owner: postgres -- @@ -9318,7 +9318,7 @@ ALTER TABLE public.mdl_grade_items OWNER TO postgres; -- -- TOC entry 10878 (class 0 OID 0) --- Dependencies: 373 +-- Dependencies: 530 -- Name: TABLE mdl_grade_items; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9326,7 +9326,7 @@ COMMENT ON TABLE public.mdl_grade_items IS 'This table keeps information about g -- --- TOC entry 381 (class 1259 OID 18080) +-- TOC entry 531 (class 1259 OID 60912) -- Name: mdl_grade_items_history; Type: TABLE; Schema: public; Owner: postgres -- @@ -9372,7 +9372,7 @@ ALTER TABLE public.mdl_grade_items_history OWNER TO postgres; -- -- TOC entry 10879 (class 0 OID 0) --- Dependencies: 381 +-- Dependencies: 531 -- Name: TABLE mdl_grade_items_history; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9380,7 +9380,7 @@ COMMENT ON TABLE public.mdl_grade_items_history IS 'History of grade_items'; -- --- TOC entry 380 (class 1259 OID 18078) +-- TOC entry 532 (class 1259 OID 60935) -- Name: mdl_grade_items_history_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9396,7 +9396,7 @@ ALTER TABLE public.mdl_grade_items_history_id_seq OWNER TO postgres; -- -- TOC entry 10880 (class 0 OID 0) --- Dependencies: 380 +-- Dependencies: 532 -- Name: mdl_grade_items_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9404,7 +9404,7 @@ ALTER SEQUENCE public.mdl_grade_items_history_id_seq OWNED BY public.mdl_grade_i -- --- TOC entry 372 (class 1259 OID 17968) +-- TOC entry 533 (class 1259 OID 60937) -- Name: mdl_grade_items_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9420,7 +9420,7 @@ ALTER TABLE public.mdl_grade_items_id_seq OWNER TO postgres; -- -- TOC entry 10881 (class 0 OID 0) --- Dependencies: 372 +-- Dependencies: 533 -- Name: mdl_grade_items_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9428,7 +9428,7 @@ ALTER SEQUENCE public.mdl_grade_items_id_seq OWNED BY public.mdl_grade_items.id; -- --- TOC entry 413 (class 1259 OID 18362) +-- TOC entry 534 (class 1259 OID 60939) -- Name: mdl_grade_letters; Type: TABLE; Schema: public; Owner: postgres -- @@ -9444,7 +9444,7 @@ ALTER TABLE public.mdl_grade_letters OWNER TO postgres; -- -- TOC entry 10882 (class 0 OID 0) --- Dependencies: 413 +-- Dependencies: 534 -- Name: TABLE mdl_grade_letters; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9452,7 +9452,7 @@ COMMENT ON TABLE public.mdl_grade_letters IS 'Repository for grade letters, for -- --- TOC entry 412 (class 1259 OID 18360) +-- TOC entry 535 (class 1259 OID 60943) -- Name: mdl_grade_letters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9468,7 +9468,7 @@ ALTER TABLE public.mdl_grade_letters_id_seq OWNER TO postgres; -- -- TOC entry 10883 (class 0 OID 0) --- Dependencies: 412 +-- Dependencies: 535 -- Name: mdl_grade_letters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9476,7 +9476,7 @@ ALTER SEQUENCE public.mdl_grade_letters_id_seq OWNED BY public.mdl_grade_letters -- --- TOC entry 367 (class 1259 OID 17921) +-- TOC entry 536 (class 1259 OID 60945) -- Name: mdl_grade_outcomes; Type: TABLE; Schema: public; Owner: postgres -- @@ -9498,7 +9498,7 @@ ALTER TABLE public.mdl_grade_outcomes OWNER TO postgres; -- -- TOC entry 10884 (class 0 OID 0) --- Dependencies: 367 +-- Dependencies: 536 -- Name: TABLE mdl_grade_outcomes; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9506,7 +9506,7 @@ COMMENT ON TABLE public.mdl_grade_outcomes IS 'This table describes the outcomes -- --- TOC entry 369 (class 1259 OID 17938) +-- TOC entry 537 (class 1259 OID 60953) -- Name: mdl_grade_outcomes_courses; Type: TABLE; Schema: public; Owner: postgres -- @@ -9521,7 +9521,7 @@ ALTER TABLE public.mdl_grade_outcomes_courses OWNER TO postgres; -- -- TOC entry 10885 (class 0 OID 0) --- Dependencies: 369 +-- Dependencies: 537 -- Name: TABLE mdl_grade_outcomes_courses; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9529,7 +9529,7 @@ COMMENT ON TABLE public.mdl_grade_outcomes_courses IS 'stores what outcomes are -- --- TOC entry 368 (class 1259 OID 17936) +-- TOC entry 538 (class 1259 OID 60956) -- Name: mdl_grade_outcomes_courses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9545,7 +9545,7 @@ ALTER TABLE public.mdl_grade_outcomes_courses_id_seq OWNER TO postgres; -- -- TOC entry 10886 (class 0 OID 0) --- Dependencies: 368 +-- Dependencies: 538 -- Name: mdl_grade_outcomes_courses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9553,7 +9553,7 @@ ALTER SEQUENCE public.mdl_grade_outcomes_courses_id_seq OWNED BY public.mdl_grad -- --- TOC entry 377 (class 1259 OID 18033) +-- TOC entry 539 (class 1259 OID 60958) -- Name: mdl_grade_outcomes_history; Type: TABLE; Schema: public; Owner: postgres -- @@ -9577,7 +9577,7 @@ ALTER TABLE public.mdl_grade_outcomes_history OWNER TO postgres; -- -- TOC entry 10887 (class 0 OID 0) --- Dependencies: 377 +-- Dependencies: 539 -- Name: TABLE mdl_grade_outcomes_history; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9585,7 +9585,7 @@ COMMENT ON TABLE public.mdl_grade_outcomes_history IS 'History table'; -- --- TOC entry 376 (class 1259 OID 18031) +-- TOC entry 540 (class 1259 OID 60967) -- Name: mdl_grade_outcomes_history_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9601,7 +9601,7 @@ ALTER TABLE public.mdl_grade_outcomes_history_id_seq OWNER TO postgres; -- -- TOC entry 10888 (class 0 OID 0) --- Dependencies: 376 +-- Dependencies: 540 -- Name: mdl_grade_outcomes_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9609,7 +9609,7 @@ ALTER SEQUENCE public.mdl_grade_outcomes_history_id_seq OWNED BY public.mdl_grad -- --- TOC entry 366 (class 1259 OID 17919) +-- TOC entry 541 (class 1259 OID 60969) -- Name: mdl_grade_outcomes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9625,7 +9625,7 @@ ALTER TABLE public.mdl_grade_outcomes_id_seq OWNER TO postgres; -- -- TOC entry 10889 (class 0 OID 0) --- Dependencies: 366 +-- Dependencies: 541 -- Name: mdl_grade_outcomes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9633,7 +9633,7 @@ ALTER SEQUENCE public.mdl_grade_outcomes_id_seq OWNED BY public.mdl_grade_outcom -- --- TOC entry 417 (class 1259 OID 18388) +-- TOC entry 542 (class 1259 OID 60971) -- Name: mdl_grade_settings; Type: TABLE; Schema: public; Owner: postgres -- @@ -9649,7 +9649,7 @@ ALTER TABLE public.mdl_grade_settings OWNER TO postgres; -- -- TOC entry 10890 (class 0 OID 0) --- Dependencies: 417 +-- Dependencies: 542 -- Name: TABLE mdl_grade_settings; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9657,7 +9657,7 @@ COMMENT ON TABLE public.mdl_grade_settings IS 'gradebook settings'; -- --- TOC entry 416 (class 1259 OID 18386) +-- TOC entry 543 (class 1259 OID 60978) -- Name: mdl_grade_settings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9673,7 +9673,7 @@ ALTER TABLE public.mdl_grade_settings_id_seq OWNER TO postgres; -- -- TOC entry 10891 (class 0 OID 0) --- Dependencies: 416 +-- Dependencies: 543 -- Name: mdl_grade_settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9681,7 +9681,7 @@ ALTER SEQUENCE public.mdl_grade_settings_id_seq OWNED BY public.mdl_grade_settin -- --- TOC entry 483 (class 1259 OID 18865) +-- TOC entry 544 (class 1259 OID 60980) -- Name: mdl_grading_areas; Type: TABLE; Schema: public; Owner: postgres -- @@ -9698,7 +9698,7 @@ ALTER TABLE public.mdl_grading_areas OWNER TO postgres; -- -- TOC entry 10892 (class 0 OID 0) --- Dependencies: 483 +-- Dependencies: 544 -- Name: TABLE mdl_grading_areas; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9706,7 +9706,7 @@ COMMENT ON TABLE public.mdl_grading_areas IS 'Identifies gradable areas where ad -- --- TOC entry 482 (class 1259 OID 18863) +-- TOC entry 545 (class 1259 OID 60985) -- Name: mdl_grading_areas_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9722,7 +9722,7 @@ ALTER TABLE public.mdl_grading_areas_id_seq OWNER TO postgres; -- -- TOC entry 10893 (class 0 OID 0) --- Dependencies: 482 +-- Dependencies: 545 -- Name: mdl_grading_areas_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9730,7 +9730,7 @@ ALTER SEQUENCE public.mdl_grading_areas_id_seq OWNED BY public.mdl_grading_areas -- --- TOC entry 485 (class 1259 OID 18877) +-- TOC entry 546 (class 1259 OID 60987) -- Name: mdl_grading_definitions; Type: TABLE; Schema: public; Owner: postgres -- @@ -9756,7 +9756,7 @@ ALTER TABLE public.mdl_grading_definitions OWNER TO postgres; -- -- TOC entry 10894 (class 0 OID 0) --- Dependencies: 485 +-- Dependencies: 546 -- Name: TABLE mdl_grading_definitions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9764,7 +9764,7 @@ COMMENT ON TABLE public.mdl_grading_definitions IS 'Contains the basic informati -- --- TOC entry 484 (class 1259 OID 18875) +-- TOC entry 547 (class 1259 OID 60997) -- Name: mdl_grading_definitions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9780,7 +9780,7 @@ ALTER TABLE public.mdl_grading_definitions_id_seq OWNER TO postgres; -- -- TOC entry 10895 (class 0 OID 0) --- Dependencies: 484 +-- Dependencies: 547 -- Name: mdl_grading_definitions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9788,7 +9788,7 @@ ALTER SEQUENCE public.mdl_grading_definitions_id_seq OWNED BY public.mdl_grading -- --- TOC entry 487 (class 1259 OID 18896) +-- TOC entry 548 (class 1259 OID 60999) -- Name: mdl_grading_instances; Type: TABLE; Schema: public; Owner: postgres -- @@ -9809,7 +9809,7 @@ ALTER TABLE public.mdl_grading_instances OWNER TO postgres; -- -- TOC entry 10896 (class 0 OID 0) --- Dependencies: 487 +-- Dependencies: 548 -- Name: TABLE mdl_grading_instances; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9817,7 +9817,7 @@ COMMENT ON TABLE public.mdl_grading_instances IS 'Grading form instance is an as -- --- TOC entry 486 (class 1259 OID 18894) +-- TOC entry 549 (class 1259 OID 61006) -- Name: mdl_grading_instances_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9833,7 +9833,7 @@ ALTER TABLE public.mdl_grading_instances_id_seq OWNER TO postgres; -- -- TOC entry 10897 (class 0 OID 0) --- Dependencies: 486 +-- Dependencies: 549 -- Name: mdl_grading_instances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9841,7 +9841,7 @@ ALTER SEQUENCE public.mdl_grading_instances_id_seq OWNED BY public.mdl_grading_i -- --- TOC entry 933 (class 1259 OID 22636) +-- TOC entry 550 (class 1259 OID 61008) -- Name: mdl_gradingform_guide_comments; Type: TABLE; Schema: public; Owner: postgres -- @@ -9858,7 +9858,7 @@ ALTER TABLE public.mdl_gradingform_guide_comments OWNER TO postgres; -- -- TOC entry 10898 (class 0 OID 0) --- Dependencies: 933 +-- Dependencies: 550 -- Name: TABLE mdl_gradingform_guide_comments; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9866,7 +9866,7 @@ COMMENT ON TABLE public.mdl_gradingform_guide_comments IS 'frequently used comme -- --- TOC entry 932 (class 1259 OID 22634) +-- TOC entry 551 (class 1259 OID 61014) -- Name: mdl_gradingform_guide_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9882,7 +9882,7 @@ ALTER TABLE public.mdl_gradingform_guide_comments_id_seq OWNER TO postgres; -- -- TOC entry 10899 (class 0 OID 0) --- Dependencies: 932 +-- Dependencies: 551 -- Name: mdl_gradingform_guide_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9890,7 +9890,7 @@ ALTER SEQUENCE public.mdl_gradingform_guide_comments_id_seq OWNED BY public.mdl_ -- --- TOC entry 929 (class 1259 OID 22609) +-- TOC entry 552 (class 1259 OID 61016) -- Name: mdl_gradingform_guide_criteria; Type: TABLE; Schema: public; Owner: postgres -- @@ -9911,7 +9911,7 @@ ALTER TABLE public.mdl_gradingform_guide_criteria OWNER TO postgres; -- -- TOC entry 10900 (class 0 OID 0) --- Dependencies: 929 +-- Dependencies: 552 -- Name: TABLE mdl_gradingform_guide_criteria; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9919,7 +9919,7 @@ COMMENT ON TABLE public.mdl_gradingform_guide_criteria IS 'Stores the rows of th -- --- TOC entry 928 (class 1259 OID 22607) +-- TOC entry 553 (class 1259 OID 61023) -- Name: mdl_gradingform_guide_criteria_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9935,7 +9935,7 @@ ALTER TABLE public.mdl_gradingform_guide_criteria_id_seq OWNER TO postgres; -- -- TOC entry 10901 (class 0 OID 0) --- Dependencies: 928 +-- Dependencies: 553 -- Name: mdl_gradingform_guide_criteria_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9943,7 +9943,7 @@ ALTER SEQUENCE public.mdl_gradingform_guide_criteria_id_seq OWNED BY public.mdl_ -- --- TOC entry 931 (class 1259 OID 22622) +-- TOC entry 554 (class 1259 OID 61025) -- Name: mdl_gradingform_guide_fillings; Type: TABLE; Schema: public; Owner: postgres -- @@ -9961,7 +9961,7 @@ ALTER TABLE public.mdl_gradingform_guide_fillings OWNER TO postgres; -- -- TOC entry 10902 (class 0 OID 0) --- Dependencies: 931 +-- Dependencies: 554 -- Name: TABLE mdl_gradingform_guide_fillings; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9969,7 +9969,7 @@ COMMENT ON TABLE public.mdl_gradingform_guide_fillings IS 'Stores the data of ho -- --- TOC entry 930 (class 1259 OID 22620) +-- TOC entry 555 (class 1259 OID 61031) -- Name: mdl_gradingform_guide_fillings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9985,7 +9985,7 @@ ALTER TABLE public.mdl_gradingform_guide_fillings_id_seq OWNER TO postgres; -- -- TOC entry 10903 (class 0 OID 0) --- Dependencies: 930 +-- Dependencies: 555 -- Name: mdl_gradingform_guide_fillings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9993,7 +9993,7 @@ ALTER SEQUENCE public.mdl_gradingform_guide_fillings_id_seq OWNED BY public.mdl_ -- --- TOC entry 935 (class 1259 OID 22648) +-- TOC entry 556 (class 1259 OID 61033) -- Name: mdl_gradingform_rubric_criteria; Type: TABLE; Schema: public; Owner: postgres -- @@ -10010,7 +10010,7 @@ ALTER TABLE public.mdl_gradingform_rubric_criteria OWNER TO postgres; -- -- TOC entry 10904 (class 0 OID 0) --- Dependencies: 935 +-- Dependencies: 556 -- Name: TABLE mdl_gradingform_rubric_criteria; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10018,7 +10018,7 @@ COMMENT ON TABLE public.mdl_gradingform_rubric_criteria IS 'Stores the rows of t -- --- TOC entry 934 (class 1259 OID 22646) +-- TOC entry 557 (class 1259 OID 61039) -- Name: mdl_gradingform_rubric_criteria_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10034,7 +10034,7 @@ ALTER TABLE public.mdl_gradingform_rubric_criteria_id_seq OWNER TO postgres; -- -- TOC entry 10905 (class 0 OID 0) --- Dependencies: 934 +-- Dependencies: 557 -- Name: mdl_gradingform_rubric_criteria_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10042,7 +10042,7 @@ ALTER SEQUENCE public.mdl_gradingform_rubric_criteria_id_seq OWNED BY public.mdl -- --- TOC entry 939 (class 1259 OID 22672) +-- TOC entry 558 (class 1259 OID 61041) -- Name: mdl_gradingform_rubric_fillings; Type: TABLE; Schema: public; Owner: postgres -- @@ -10060,7 +10060,7 @@ ALTER TABLE public.mdl_gradingform_rubric_fillings OWNER TO postgres; -- -- TOC entry 10906 (class 0 OID 0) --- Dependencies: 939 +-- Dependencies: 558 -- Name: TABLE mdl_gradingform_rubric_fillings; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10068,7 +10068,7 @@ COMMENT ON TABLE public.mdl_gradingform_rubric_fillings IS 'Stores the data of h -- --- TOC entry 938 (class 1259 OID 22670) +-- TOC entry 559 (class 1259 OID 61047) -- Name: mdl_gradingform_rubric_fillings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10084,7 +10084,7 @@ ALTER TABLE public.mdl_gradingform_rubric_fillings_id_seq OWNER TO postgres; -- -- TOC entry 10907 (class 0 OID 0) --- Dependencies: 938 +-- Dependencies: 559 -- Name: mdl_gradingform_rubric_fillings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10092,7 +10092,7 @@ ALTER SEQUENCE public.mdl_gradingform_rubric_fillings_id_seq OWNED BY public.mdl -- --- TOC entry 937 (class 1259 OID 22660) +-- TOC entry 560 (class 1259 OID 61049) -- Name: mdl_gradingform_rubric_levels; Type: TABLE; Schema: public; Owner: postgres -- @@ -10109,7 +10109,7 @@ ALTER TABLE public.mdl_gradingform_rubric_levels OWNER TO postgres; -- -- TOC entry 10908 (class 0 OID 0) --- Dependencies: 937 +-- Dependencies: 560 -- Name: TABLE mdl_gradingform_rubric_levels; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10117,7 +10117,7 @@ COMMENT ON TABLE public.mdl_gradingform_rubric_levels IS 'Stores the columns of -- --- TOC entry 936 (class 1259 OID 22658) +-- TOC entry 561 (class 1259 OID 61055) -- Name: mdl_gradingform_rubric_levels_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10133,7 +10133,7 @@ ALTER TABLE public.mdl_gradingform_rubric_levels_id_seq OWNER TO postgres; -- -- TOC entry 10909 (class 0 OID 0) --- Dependencies: 936 +-- Dependencies: 561 -- Name: mdl_gradingform_rubric_levels_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10141,7 +10141,7 @@ ALTER SEQUENCE public.mdl_gradingform_rubric_levels_id_seq OWNED BY public.mdl_g -- --- TOC entry 401 (class 1259 OID 18270) +-- TOC entry 562 (class 1259 OID 61057) -- Name: mdl_groupings; Type: TABLE; Schema: public; Owner: postgres -- @@ -10162,7 +10162,7 @@ ALTER TABLE public.mdl_groupings OWNER TO postgres; -- -- TOC entry 10910 (class 0 OID 0) --- Dependencies: 401 +-- Dependencies: 562 -- Name: TABLE mdl_groupings; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10170,7 +10170,7 @@ COMMENT ON TABLE public.mdl_groupings IS 'A grouping is a collection of groups. -- --- TOC entry 405 (class 1259 OID 18305) +-- TOC entry 563 (class 1259 OID 61069) -- Name: mdl_groupings_groups; Type: TABLE; Schema: public; Owner: postgres -- @@ -10186,7 +10186,7 @@ ALTER TABLE public.mdl_groupings_groups OWNER TO postgres; -- -- TOC entry 10911 (class 0 OID 0) --- Dependencies: 405 +-- Dependencies: 563 -- Name: TABLE mdl_groupings_groups; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10194,7 +10194,7 @@ COMMENT ON TABLE public.mdl_groupings_groups IS 'Link a grouping to a group (not -- --- TOC entry 404 (class 1259 OID 18303) +-- TOC entry 564 (class 1259 OID 61075) -- Name: mdl_groupings_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10210,7 +10210,7 @@ ALTER TABLE public.mdl_groupings_groups_id_seq OWNER TO postgres; -- -- TOC entry 10912 (class 0 OID 0) --- Dependencies: 404 +-- Dependencies: 564 -- Name: mdl_groupings_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10218,7 +10218,7 @@ ALTER SEQUENCE public.mdl_groupings_groups_id_seq OWNED BY public.mdl_groupings_ -- --- TOC entry 400 (class 1259 OID 18268) +-- TOC entry 565 (class 1259 OID 61077) -- Name: mdl_groupings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10234,7 +10234,7 @@ ALTER TABLE public.mdl_groupings_id_seq OWNER TO postgres; -- -- TOC entry 10913 (class 0 OID 0) --- Dependencies: 400 +-- Dependencies: 565 -- Name: mdl_groupings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10242,7 +10242,7 @@ ALTER SEQUENCE public.mdl_groupings_id_seq OWNED BY public.mdl_groupings.id; -- --- TOC entry 399 (class 1259 OID 18250) +-- TOC entry 566 (class 1259 OID 61079) -- Name: mdl_groups; Type: TABLE; Schema: public; Owner: postgres -- @@ -10265,7 +10265,7 @@ ALTER TABLE public.mdl_groups OWNER TO postgres; -- -- TOC entry 10914 (class 0 OID 0) --- Dependencies: 399 +-- Dependencies: 566 -- Name: TABLE mdl_groups; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10273,7 +10273,7 @@ COMMENT ON TABLE public.mdl_groups IS 'Each record represents a group.'; -- --- TOC entry 398 (class 1259 OID 18248) +-- TOC entry 567 (class 1259 OID 61092) -- Name: mdl_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10289,7 +10289,7 @@ ALTER TABLE public.mdl_groups_id_seq OWNER TO postgres; -- -- TOC entry 10915 (class 0 OID 0) --- Dependencies: 398 +-- Dependencies: 567 -- Name: mdl_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10297,7 +10297,7 @@ ALTER SEQUENCE public.mdl_groups_id_seq OWNED BY public.mdl_groups.id; -- --- TOC entry 403 (class 1259 OID 18289) +-- TOC entry 568 (class 1259 OID 61094) -- Name: mdl_groups_members; Type: TABLE; Schema: public; Owner: postgres -- @@ -10315,7 +10315,7 @@ ALTER TABLE public.mdl_groups_members OWNER TO postgres; -- -- TOC entry 10916 (class 0 OID 0) --- Dependencies: 403 +-- Dependencies: 568 -- Name: TABLE mdl_groups_members; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10323,7 +10323,7 @@ COMMENT ON TABLE public.mdl_groups_members IS 'Link a user to a group.'; -- --- TOC entry 402 (class 1259 OID 18287) +-- TOC entry 569 (class 1259 OID 61102) -- Name: mdl_groups_members_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10339,7 +10339,7 @@ ALTER TABLE public.mdl_groups_members_id_seq OWNER TO postgres; -- -- TOC entry 10917 (class 0 OID 0) --- Dependencies: 402 +-- Dependencies: 569 -- Name: mdl_groups_members_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10347,7 +10347,7 @@ ALTER SEQUENCE public.mdl_groups_members_id_seq OWNED BY public.mdl_groups_membe -- --- TOC entry 615 (class 1259 OID 19792) +-- TOC entry 570 (class 1259 OID 61104) -- Name: mdl_h5p; Type: TABLE; Schema: public; Owner: postgres -- @@ -10368,7 +10368,7 @@ ALTER TABLE public.mdl_h5p OWNER TO postgres; -- -- TOC entry 10918 (class 0 OID 0) --- Dependencies: 615 +-- Dependencies: 570 -- Name: TABLE mdl_h5p; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10376,7 +10376,7 @@ COMMENT ON TABLE public.mdl_h5p IS 'Stores H5P content information'; -- --- TOC entry 617 (class 1259 OID 19808) +-- TOC entry 571 (class 1259 OID 61114) -- Name: mdl_h5p_contents_libraries; Type: TABLE; Schema: public; Owner: postgres -- @@ -10394,7 +10394,7 @@ ALTER TABLE public.mdl_h5p_contents_libraries OWNER TO postgres; -- -- TOC entry 10919 (class 0 OID 0) --- Dependencies: 617 +-- Dependencies: 571 -- Name: TABLE mdl_h5p_contents_libraries; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10402,7 +10402,7 @@ COMMENT ON TABLE public.mdl_h5p_contents_libraries IS 'Store which library is us -- --- TOC entry 616 (class 1259 OID 19806) +-- TOC entry 572 (class 1259 OID 61118) -- Name: mdl_h5p_contents_libraries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10418,7 +10418,7 @@ ALTER TABLE public.mdl_h5p_contents_libraries_id_seq OWNER TO postgres; -- -- TOC entry 10920 (class 0 OID 0) --- Dependencies: 616 +-- Dependencies: 572 -- Name: mdl_h5p_contents_libraries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10426,7 +10426,7 @@ ALTER SEQUENCE public.mdl_h5p_contents_libraries_id_seq OWNED BY public.mdl_h5p_ -- --- TOC entry 614 (class 1259 OID 19790) +-- TOC entry 573 (class 1259 OID 61120) -- Name: mdl_h5p_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10442,7 +10442,7 @@ ALTER TABLE public.mdl_h5p_id_seq OWNER TO postgres; -- -- TOC entry 10921 (class 0 OID 0) --- Dependencies: 614 +-- Dependencies: 573 -- Name: mdl_h5p_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10450,7 +10450,7 @@ ALTER SEQUENCE public.mdl_h5p_id_seq OWNED BY public.mdl_h5p.id; -- --- TOC entry 611 (class 1259 OID 19765) +-- TOC entry 574 (class 1259 OID 61122) -- Name: mdl_h5p_libraries; Type: TABLE; Schema: public; Owner: postgres -- @@ -10479,7 +10479,7 @@ ALTER TABLE public.mdl_h5p_libraries OWNER TO postgres; -- -- TOC entry 10922 (class 0 OID 0) --- Dependencies: 611 +-- Dependencies: 574 -- Name: TABLE mdl_h5p_libraries; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10487,7 +10487,7 @@ COMMENT ON TABLE public.mdl_h5p_libraries IS 'Stores information about libraries -- --- TOC entry 619 (class 1259 OID 19819) +-- TOC entry 575 (class 1259 OID 61132) -- Name: mdl_h5p_libraries_cachedassets; Type: TABLE; Schema: public; Owner: postgres -- @@ -10502,7 +10502,7 @@ ALTER TABLE public.mdl_h5p_libraries_cachedassets OWNER TO postgres; -- -- TOC entry 10923 (class 0 OID 0) --- Dependencies: 619 +-- Dependencies: 575 -- Name: TABLE mdl_h5p_libraries_cachedassets; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10510,7 +10510,7 @@ COMMENT ON TABLE public.mdl_h5p_libraries_cachedassets IS 'H5P cached library as -- --- TOC entry 618 (class 1259 OID 19817) +-- TOC entry 576 (class 1259 OID 61136) -- Name: mdl_h5p_libraries_cachedassets_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10526,7 +10526,7 @@ ALTER TABLE public.mdl_h5p_libraries_cachedassets_id_seq OWNER TO postgres; -- -- TOC entry 10924 (class 0 OID 0) --- Dependencies: 618 +-- Dependencies: 576 -- Name: mdl_h5p_libraries_cachedassets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10534,7 +10534,7 @@ ALTER SEQUENCE public.mdl_h5p_libraries_cachedassets_id_seq OWNED BY public.mdl_ -- --- TOC entry 610 (class 1259 OID 19763) +-- TOC entry 577 (class 1259 OID 61138) -- Name: mdl_h5p_libraries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10550,7 +10550,7 @@ ALTER TABLE public.mdl_h5p_libraries_id_seq OWNER TO postgres; -- -- TOC entry 10925 (class 0 OID 0) --- Dependencies: 610 +-- Dependencies: 577 -- Name: mdl_h5p_libraries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10558,7 +10558,7 @@ ALTER SEQUENCE public.mdl_h5p_libraries_id_seq OWNED BY public.mdl_h5p_libraries -- --- TOC entry 613 (class 1259 OID 19781) +-- TOC entry 578 (class 1259 OID 61140) -- Name: mdl_h5p_library_dependencies; Type: TABLE; Schema: public; Owner: postgres -- @@ -10574,7 +10574,7 @@ ALTER TABLE public.mdl_h5p_library_dependencies OWNER TO postgres; -- -- TOC entry 10926 (class 0 OID 0) --- Dependencies: 613 +-- Dependencies: 578 -- Name: TABLE mdl_h5p_library_dependencies; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10582,7 +10582,7 @@ COMMENT ON TABLE public.mdl_h5p_library_dependencies IS 'Stores H5P library depe -- --- TOC entry 612 (class 1259 OID 19779) +-- TOC entry 579 (class 1259 OID 61144) -- Name: mdl_h5p_library_dependencies_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10598,7 +10598,7 @@ ALTER TABLE public.mdl_h5p_library_dependencies_id_seq OWNER TO postgres; -- -- TOC entry 10927 (class 0 OID 0) --- Dependencies: 612 +-- Dependencies: 579 -- Name: mdl_h5p_library_dependencies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10606,7 +10606,7 @@ ALTER SEQUENCE public.mdl_h5p_library_dependencies_id_seq OWNED BY public.mdl_h5 -- --- TOC entry 767 (class 1259 OID 21176) +-- TOC entry 580 (class 1259 OID 61146) -- Name: mdl_h5pactivity; Type: TABLE; Schema: public; Owner: postgres -- @@ -10630,7 +10630,7 @@ ALTER TABLE public.mdl_h5pactivity OWNER TO postgres; -- -- TOC entry 10928 (class 0 OID 0) --- Dependencies: 767 +-- Dependencies: 580 -- Name: TABLE mdl_h5pactivity; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10638,7 +10638,7 @@ COMMENT ON TABLE public.mdl_h5pactivity IS 'Stores the h5pactivity activity modu -- --- TOC entry 769 (class 1259 OID 21195) +-- TOC entry 581 (class 1259 OID 61159) -- Name: mdl_h5pactivity_attempts; Type: TABLE; Schema: public; Owner: postgres -- @@ -10662,7 +10662,7 @@ ALTER TABLE public.mdl_h5pactivity_attempts OWNER TO postgres; -- -- TOC entry 10929 (class 0 OID 0) --- Dependencies: 769 +-- Dependencies: 581 -- Name: TABLE mdl_h5pactivity_attempts; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10670,7 +10670,7 @@ COMMENT ON TABLE public.mdl_h5pactivity_attempts IS 'Users attempts inside H5P a -- --- TOC entry 768 (class 1259 OID 21193) +-- TOC entry 582 (class 1259 OID 61167) -- Name: mdl_h5pactivity_attempts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10686,7 +10686,7 @@ ALTER TABLE public.mdl_h5pactivity_attempts_id_seq OWNER TO postgres; -- -- TOC entry 10930 (class 0 OID 0) --- Dependencies: 768 +-- Dependencies: 582 -- Name: mdl_h5pactivity_attempts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10694,7 +10694,7 @@ ALTER SEQUENCE public.mdl_h5pactivity_attempts_id_seq OWNED BY public.mdl_h5pact -- --- TOC entry 771 (class 1259 OID 21213) +-- TOC entry 583 (class 1259 OID 61169) -- Name: mdl_h5pactivity_attempts_results; Type: TABLE; Schema: public; Owner: postgres -- @@ -10720,7 +10720,7 @@ ALTER TABLE public.mdl_h5pactivity_attempts_results OWNER TO postgres; -- -- TOC entry 10931 (class 0 OID 0) --- Dependencies: 771 +-- Dependencies: 583 -- Name: TABLE mdl_h5pactivity_attempts_results; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10728,7 +10728,7 @@ COMMENT ON TABLE public.mdl_h5pactivity_attempts_results IS 'H5Pactivities_attem -- --- TOC entry 770 (class 1259 OID 21211) +-- TOC entry 584 (class 1259 OID 61178) -- Name: mdl_h5pactivity_attempts_results_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10744,7 +10744,7 @@ ALTER TABLE public.mdl_h5pactivity_attempts_results_id_seq OWNER TO postgres; -- -- TOC entry 10932 (class 0 OID 0) --- Dependencies: 770 +-- Dependencies: 584 -- Name: mdl_h5pactivity_attempts_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10752,7 +10752,7 @@ ALTER SEQUENCE public.mdl_h5pactivity_attempts_results_id_seq OWNED BY public.md -- --- TOC entry 766 (class 1259 OID 21174) +-- TOC entry 585 (class 1259 OID 61180) -- Name: mdl_h5pactivity_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10768,7 +10768,7 @@ ALTER TABLE public.mdl_h5pactivity_id_seq OWNER TO postgres; -- -- TOC entry 10933 (class 0 OID 0) --- Dependencies: 766 +-- Dependencies: 585 -- Name: mdl_h5pactivity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10776,7 +10776,7 @@ ALTER SEQUENCE public.mdl_h5pactivity_id_seq OWNED BY public.mdl_h5pactivity.id; -- --- TOC entry 773 (class 1259 OID 21229) +-- TOC entry 586 (class 1259 OID 61182) -- Name: mdl_imscp; Type: TABLE; Schema: public; Owner: postgres -- @@ -10797,7 +10797,7 @@ ALTER TABLE public.mdl_imscp OWNER TO postgres; -- -- TOC entry 10934 (class 0 OID 0) --- Dependencies: 773 +-- Dependencies: 586 -- Name: TABLE mdl_imscp; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10805,7 +10805,7 @@ COMMENT ON TABLE public.mdl_imscp IS 'each record is one imscp resource'; -- --- TOC entry 772 (class 1259 OID 21227) +-- TOC entry 587 (class 1259 OID 61194) -- Name: mdl_imscp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10821,7 +10821,7 @@ ALTER TABLE public.mdl_imscp_id_seq OWNER TO postgres; -- -- TOC entry 10935 (class 0 OID 0) --- Dependencies: 772 +-- Dependencies: 587 -- Name: mdl_imscp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10829,7 +10829,7 @@ ALTER SEQUENCE public.mdl_imscp_id_seq OWNED BY public.mdl_imscp.id; -- --- TOC entry 775 (class 1259 OID 21247) +-- TOC entry 588 (class 1259 OID 61196) -- Name: mdl_label; Type: TABLE; Schema: public; Owner: postgres -- @@ -10847,7 +10847,7 @@ ALTER TABLE public.mdl_label OWNER TO postgres; -- -- TOC entry 10936 (class 0 OID 0) --- Dependencies: 775 +-- Dependencies: 588 -- Name: TABLE mdl_label; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10855,7 +10855,7 @@ COMMENT ON TABLE public.mdl_label IS 'Defines labels'; -- --- TOC entry 774 (class 1259 OID 21245) +-- TOC entry 589 (class 1259 OID 61206) -- Name: mdl_label_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10871,7 +10871,7 @@ ALTER TABLE public.mdl_label_id_seq OWNER TO postgres; -- -- TOC entry 10937 (class 0 OID 0) --- Dependencies: 774 +-- Dependencies: 589 -- Name: mdl_label_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10879,7 +10879,7 @@ ALTER SEQUENCE public.mdl_label_id_seq OWNED BY public.mdl_label.id; -- --- TOC entry 777 (class 1259 OID 21263) +-- TOC entry 590 (class 1259 OID 61208) -- Name: mdl_lesson; Type: TABLE; Schema: public; Owner: postgres -- @@ -10933,7 +10933,7 @@ ALTER TABLE public.mdl_lesson OWNER TO postgres; -- -- TOC entry 10938 (class 0 OID 0) --- Dependencies: 777 +-- Dependencies: 590 -- Name: TABLE mdl_lesson; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10941,7 +10941,7 @@ COMMENT ON TABLE public.mdl_lesson IS 'Defines lesson'; -- --- TOC entry 781 (class 1259 OID 21337) +-- TOC entry 591 (class 1259 OID 61253) -- Name: mdl_lesson_answers; Type: TABLE; Schema: public; Owner: postgres -- @@ -10966,7 +10966,7 @@ ALTER TABLE public.mdl_lesson_answers OWNER TO postgres; -- -- TOC entry 10939 (class 0 OID 0) --- Dependencies: 781 +-- Dependencies: 591 -- Name: TABLE mdl_lesson_answers; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10974,7 +10974,7 @@ COMMENT ON TABLE public.mdl_lesson_answers IS 'Defines lesson_answers'; -- --- TOC entry 780 (class 1259 OID 21335) +-- TOC entry 592 (class 1259 OID 61269) -- Name: mdl_lesson_answers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10990,7 +10990,7 @@ ALTER TABLE public.mdl_lesson_answers_id_seq OWNER TO postgres; -- -- TOC entry 10940 (class 0 OID 0) --- Dependencies: 780 +-- Dependencies: 592 -- Name: mdl_lesson_answers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10998,7 +10998,7 @@ ALTER SEQUENCE public.mdl_lesson_answers_id_seq OWNED BY public.mdl_lesson_answe -- --- TOC entry 783 (class 1259 OID 21360) +-- TOC entry 593 (class 1259 OID 61271) -- Name: mdl_lesson_attempts; Type: TABLE; Schema: public; Owner: postgres -- @@ -11019,7 +11019,7 @@ ALTER TABLE public.mdl_lesson_attempts OWNER TO postgres; -- -- TOC entry 10941 (class 0 OID 0) --- Dependencies: 783 +-- Dependencies: 593 -- Name: TABLE mdl_lesson_attempts; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11027,7 +11027,7 @@ COMMENT ON TABLE public.mdl_lesson_attempts IS 'Defines lesson_attempts'; -- --- TOC entry 782 (class 1259 OID 21358) +-- TOC entry 594 (class 1259 OID 61284) -- Name: mdl_lesson_attempts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11043,7 +11043,7 @@ ALTER TABLE public.mdl_lesson_attempts_id_seq OWNER TO postgres; -- -- TOC entry 10942 (class 0 OID 0) --- Dependencies: 782 +-- Dependencies: 594 -- Name: mdl_lesson_attempts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11051,7 +11051,7 @@ ALTER SEQUENCE public.mdl_lesson_attempts_id_seq OWNED BY public.mdl_lesson_atte -- --- TOC entry 789 (class 1259 OID 21413) +-- TOC entry 595 (class 1259 OID 61286) -- Name: mdl_lesson_branch; Type: TABLE; Schema: public; Owner: postgres -- @@ -11071,7 +11071,7 @@ ALTER TABLE public.mdl_lesson_branch OWNER TO postgres; -- -- TOC entry 10943 (class 0 OID 0) --- Dependencies: 789 +-- Dependencies: 595 -- Name: TABLE mdl_lesson_branch; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11079,7 +11079,7 @@ COMMENT ON TABLE public.mdl_lesson_branch IS 'branches for each lesson/user'; -- --- TOC entry 788 (class 1259 OID 21411) +-- TOC entry 596 (class 1259 OID 61296) -- Name: mdl_lesson_branch_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11095,7 +11095,7 @@ ALTER TABLE public.mdl_lesson_branch_id_seq OWNER TO postgres; -- -- TOC entry 10944 (class 0 OID 0) --- Dependencies: 788 +-- Dependencies: 596 -- Name: mdl_lesson_branch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11103,7 +11103,7 @@ ALTER SEQUENCE public.mdl_lesson_branch_id_seq OWNED BY public.mdl_lesson_branch -- --- TOC entry 785 (class 1259 OID 21382) +-- TOC entry 597 (class 1259 OID 61298) -- Name: mdl_lesson_grades; Type: TABLE; Schema: public; Owner: postgres -- @@ -11121,7 +11121,7 @@ ALTER TABLE public.mdl_lesson_grades OWNER TO postgres; -- -- TOC entry 10945 (class 0 OID 0) --- Dependencies: 785 +-- Dependencies: 597 -- Name: TABLE mdl_lesson_grades; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11129,7 +11129,7 @@ COMMENT ON TABLE public.mdl_lesson_grades IS 'Defines lesson_grades'; -- --- TOC entry 784 (class 1259 OID 21380) +-- TOC entry 598 (class 1259 OID 61306) -- Name: mdl_lesson_grades_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11145,7 +11145,7 @@ ALTER TABLE public.mdl_lesson_grades_id_seq OWNER TO postgres; -- -- TOC entry 10946 (class 0 OID 0) --- Dependencies: 784 +-- Dependencies: 598 -- Name: mdl_lesson_grades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11153,7 +11153,7 @@ ALTER SEQUENCE public.mdl_lesson_grades_id_seq OWNED BY public.mdl_lesson_grades -- --- TOC entry 776 (class 1259 OID 21261) +-- TOC entry 599 (class 1259 OID 61308) -- Name: mdl_lesson_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11169,7 +11169,7 @@ ALTER TABLE public.mdl_lesson_id_seq OWNER TO postgres; -- -- TOC entry 10947 (class 0 OID 0) --- Dependencies: 776 +-- Dependencies: 599 -- Name: mdl_lesson_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11177,7 +11177,7 @@ ALTER SEQUENCE public.mdl_lesson_id_seq OWNED BY public.mdl_lesson.id; -- --- TOC entry 791 (class 1259 OID 21431) +-- TOC entry 600 (class 1259 OID 61310) -- Name: mdl_lesson_overrides; Type: TABLE; Schema: public; Owner: postgres -- @@ -11200,7 +11200,7 @@ ALTER TABLE public.mdl_lesson_overrides OWNER TO postgres; -- -- TOC entry 10948 (class 0 OID 0) --- Dependencies: 791 +-- Dependencies: 600 -- Name: TABLE mdl_lesson_overrides; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11208,7 +11208,7 @@ COMMENT ON TABLE public.mdl_lesson_overrides IS 'The overrides to lesson setting -- --- TOC entry 790 (class 1259 OID 21429) +-- TOC entry 601 (class 1259 OID 61314) -- Name: mdl_lesson_overrides_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11224,7 +11224,7 @@ ALTER TABLE public.mdl_lesson_overrides_id_seq OWNER TO postgres; -- -- TOC entry 10949 (class 0 OID 0) --- Dependencies: 790 +-- Dependencies: 601 -- Name: mdl_lesson_overrides_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11232,7 +11232,7 @@ ALTER SEQUENCE public.mdl_lesson_overrides_id_seq OWNED BY public.mdl_lesson_ove -- --- TOC entry 779 (class 1259 OID 21314) +-- TOC entry 602 (class 1259 OID 61316) -- Name: mdl_lesson_pages; Type: TABLE; Schema: public; Owner: postgres -- @@ -11257,7 +11257,7 @@ ALTER TABLE public.mdl_lesson_pages OWNER TO postgres; -- -- TOC entry 10950 (class 0 OID 0) --- Dependencies: 779 +-- Dependencies: 602 -- Name: TABLE mdl_lesson_pages; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11265,7 +11265,7 @@ COMMENT ON TABLE public.mdl_lesson_pages IS 'Defines lesson_pages'; -- --- TOC entry 778 (class 1259 OID 21312) +-- TOC entry 603 (class 1259 OID 61333) -- Name: mdl_lesson_pages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11281,7 +11281,7 @@ ALTER TABLE public.mdl_lesson_pages_id_seq OWNER TO postgres; -- -- TOC entry 10951 (class 0 OID 0) --- Dependencies: 778 +-- Dependencies: 603 -- Name: mdl_lesson_pages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11289,7 +11289,7 @@ ALTER SEQUENCE public.mdl_lesson_pages_id_seq OWNED BY public.mdl_lesson_pages.i -- --- TOC entry 787 (class 1259 OID 21397) +-- TOC entry 604 (class 1259 OID 61335) -- Name: mdl_lesson_timer; Type: TABLE; Schema: public; Owner: postgres -- @@ -11308,7 +11308,7 @@ ALTER TABLE public.mdl_lesson_timer OWNER TO postgres; -- -- TOC entry 10952 (class 0 OID 0) --- Dependencies: 787 +-- Dependencies: 604 -- Name: TABLE mdl_lesson_timer; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11316,7 +11316,7 @@ COMMENT ON TABLE public.mdl_lesson_timer IS 'lesson timer for each lesson'; -- --- TOC entry 786 (class 1259 OID 21395) +-- TOC entry 605 (class 1259 OID 61344) -- Name: mdl_lesson_timer_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11332,7 +11332,7 @@ ALTER TABLE public.mdl_lesson_timer_id_seq OWNER TO postgres; -- -- TOC entry 10953 (class 0 OID 0) --- Dependencies: 786 +-- Dependencies: 605 -- Name: mdl_lesson_timer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11340,7 +11340,7 @@ ALTER SEQUENCE public.mdl_lesson_timer_id_seq OWNED BY public.mdl_lesson_timer.i -- --- TOC entry 471 (class 1259 OID 18771) +-- TOC entry 606 (class 1259 OID 61346) -- Name: mdl_license; Type: TABLE; Schema: public; Owner: postgres -- @@ -11360,7 +11360,7 @@ ALTER TABLE public.mdl_license OWNER TO postgres; -- -- TOC entry 10954 (class 0 OID 0) --- Dependencies: 471 +-- Dependencies: 606 -- Name: TABLE mdl_license; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11368,7 +11368,7 @@ COMMENT ON TABLE public.mdl_license IS 'store licenses used by moodle'; -- --- TOC entry 470 (class 1259 OID 18769) +-- TOC entry 607 (class 1259 OID 61356) -- Name: mdl_license_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11384,7 +11384,7 @@ ALTER TABLE public.mdl_license_id_seq OWNER TO postgres; -- -- TOC entry 10955 (class 0 OID 0) --- Dependencies: 470 +-- Dependencies: 607 -- Name: mdl_license_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11392,7 +11392,7 @@ ALTER SEQUENCE public.mdl_license_id_seq OWNED BY public.mdl_license.id; -- --- TOC entry 523 (class 1259 OID 19175) +-- TOC entry 608 (class 1259 OID 61358) -- Name: mdl_lock_db; Type: TABLE; Schema: public; Owner: postgres -- @@ -11408,7 +11408,7 @@ ALTER TABLE public.mdl_lock_db OWNER TO postgres; -- -- TOC entry 10956 (class 0 OID 0) --- Dependencies: 523 +-- Dependencies: 608 -- Name: TABLE mdl_lock_db; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11416,7 +11416,7 @@ COMMENT ON TABLE public.mdl_lock_db IS 'Stores active and inactive lock types fo -- --- TOC entry 522 (class 1259 OID 19173) +-- TOC entry 609 (class 1259 OID 61362) -- Name: mdl_lock_db_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11432,7 +11432,7 @@ ALTER TABLE public.mdl_lock_db_id_seq OWNER TO postgres; -- -- TOC entry 10957 (class 0 OID 0) --- Dependencies: 522 +-- Dependencies: 609 -- Name: mdl_lock_db_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11440,7 +11440,7 @@ ALTER SEQUENCE public.mdl_lock_db_id_seq OWNED BY public.mdl_lock_db.id; -- --- TOC entry 228 (class 1259 OID 16787) +-- TOC entry 610 (class 1259 OID 61364) -- Name: mdl_log; Type: TABLE; Schema: public; Owner: postgres -- @@ -11462,7 +11462,7 @@ ALTER TABLE public.mdl_log OWNER TO postgres; -- -- TOC entry 10958 (class 0 OID 0) --- Dependencies: 228 +-- Dependencies: 610 -- Name: TABLE mdl_log; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11470,7 +11470,7 @@ COMMENT ON TABLE public.mdl_log IS 'Every action is logged as far as possible'; -- --- TOC entry 232 (class 1259 OID 16821) +-- TOC entry 611 (class 1259 OID 61376) -- Name: mdl_log_display; Type: TABLE; Schema: public; Owner: postgres -- @@ -11488,7 +11488,7 @@ ALTER TABLE public.mdl_log_display OWNER TO postgres; -- -- TOC entry 10959 (class 0 OID 0) --- Dependencies: 232 +-- Dependencies: 611 -- Name: TABLE mdl_log_display; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11496,7 +11496,7 @@ COMMENT ON TABLE public.mdl_log_display IS 'For a particular module/action, spec -- --- TOC entry 231 (class 1259 OID 16819) +-- TOC entry 612 (class 1259 OID 61384) -- Name: mdl_log_display_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11512,7 +11512,7 @@ ALTER TABLE public.mdl_log_display_id_seq OWNER TO postgres; -- -- TOC entry 10960 (class 0 OID 0) --- Dependencies: 231 +-- Dependencies: 612 -- Name: mdl_log_display_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11520,7 +11520,7 @@ ALTER SEQUENCE public.mdl_log_display_id_seq OWNED BY public.mdl_log_display.id; -- --- TOC entry 227 (class 1259 OID 16785) +-- TOC entry 613 (class 1259 OID 61386) -- Name: mdl_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11536,7 +11536,7 @@ ALTER TABLE public.mdl_log_id_seq OWNER TO postgres; -- -- TOC entry 10961 (class 0 OID 0) --- Dependencies: 227 +-- Dependencies: 613 -- Name: mdl_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11544,7 +11544,7 @@ ALTER SEQUENCE public.mdl_log_id_seq OWNED BY public.mdl_log.id; -- --- TOC entry 230 (class 1259 OID 16809) +-- TOC entry 614 (class 1259 OID 61388) -- Name: mdl_log_queries; Type: TABLE; Schema: public; Owner: postgres -- @@ -11565,7 +11565,7 @@ ALTER TABLE public.mdl_log_queries OWNER TO postgres; -- -- TOC entry 10962 (class 0 OID 0) --- Dependencies: 230 +-- Dependencies: 614 -- Name: TABLE mdl_log_queries; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11573,7 +11573,7 @@ COMMENT ON TABLE public.mdl_log_queries IS 'Logged database queries.'; -- --- TOC entry 229 (class 1259 OID 16807) +-- TOC entry 615 (class 1259 OID 61395) -- Name: mdl_log_queries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11589,7 +11589,7 @@ ALTER TABLE public.mdl_log_queries_id_seq OWNER TO postgres; -- -- TOC entry 10963 (class 0 OID 0) --- Dependencies: 229 +-- Dependencies: 615 -- Name: mdl_log_queries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11597,7 +11597,7 @@ ALTER SEQUENCE public.mdl_log_queries_id_seq OWNED BY public.mdl_log_queries.id; -- --- TOC entry 1039 (class 1259 OID 23375) +-- TOC entry 616 (class 1259 OID 61397) -- Name: mdl_logstore_standard_log; Type: TABLE; Schema: public; Owner: postgres -- @@ -11630,7 +11630,7 @@ ALTER TABLE public.mdl_logstore_standard_log OWNER TO postgres; -- -- TOC entry 10964 (class 0 OID 0) --- Dependencies: 1039 +-- Dependencies: 616 -- Name: TABLE mdl_logstore_standard_log; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11638,7 +11638,7 @@ COMMENT ON TABLE public.mdl_logstore_standard_log IS 'Standard log table'; -- --- TOC entry 1038 (class 1259 OID 23373) +-- TOC entry 617 (class 1259 OID 61409) -- Name: mdl_logstore_standard_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11654,7 +11654,7 @@ ALTER TABLE public.mdl_logstore_standard_log_id_seq OWNER TO postgres; -- -- TOC entry 10965 (class 0 OID 0) --- Dependencies: 1038 +-- Dependencies: 617 -- Name: mdl_logstore_standard_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11662,7 +11662,7 @@ ALTER SEQUENCE public.mdl_logstore_standard_log_id_seq OWNED BY public.mdl_logst -- --- TOC entry 793 (class 1259 OID 21443) +-- TOC entry 618 (class 1259 OID 61411) -- Name: mdl_lti; Type: TABLE; Schema: public; Owner: postgres -- @@ -11700,7 +11700,7 @@ ALTER TABLE public.mdl_lti OWNER TO postgres; -- -- TOC entry 10966 (class 0 OID 0) --- Dependencies: 793 +-- Dependencies: 618 -- Name: TABLE mdl_lti; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11708,7 +11708,7 @@ COMMENT ON TABLE public.mdl_lti IS 'This table contains Basic LTI activities ins -- --- TOC entry 805 (class 1259 OID 21535) +-- TOC entry 619 (class 1259 OID 61427) -- Name: mdl_lti_access_tokens; Type: TABLE; Schema: public; Owner: postgres -- @@ -11727,7 +11727,7 @@ ALTER TABLE public.mdl_lti_access_tokens OWNER TO postgres; -- -- TOC entry 10967 (class 0 OID 0) --- Dependencies: 805 +-- Dependencies: 619 -- Name: TABLE mdl_lti_access_tokens; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11735,7 +11735,7 @@ COMMENT ON TABLE public.mdl_lti_access_tokens IS 'Security tokens for accessing -- --- TOC entry 804 (class 1259 OID 21533) +-- TOC entry 620 (class 1259 OID 61434) -- Name: mdl_lti_access_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11751,7 +11751,7 @@ ALTER TABLE public.mdl_lti_access_tokens_id_seq OWNER TO postgres; -- -- TOC entry 10968 (class 0 OID 0) --- Dependencies: 804 +-- Dependencies: 620 -- Name: mdl_lti_access_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11759,7 +11759,7 @@ ALTER SEQUENCE public.mdl_lti_access_tokens_id_seq OWNED BY public.mdl_lti_acces -- --- TOC entry 792 (class 1259 OID 21441) +-- TOC entry 621 (class 1259 OID 61436) -- Name: mdl_lti_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11775,7 +11775,7 @@ ALTER TABLE public.mdl_lti_id_seq OWNER TO postgres; -- -- TOC entry 10969 (class 0 OID 0) --- Dependencies: 792 +-- Dependencies: 621 -- Name: mdl_lti_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11783,7 +11783,7 @@ ALTER SEQUENCE public.mdl_lti_id_seq OWNED BY public.mdl_lti.id; -- --- TOC entry 803 (class 1259 OID 21526) +-- TOC entry 622 (class 1259 OID 61438) -- Name: mdl_lti_submission; Type: TABLE; Schema: public; Owner: postgres -- @@ -11804,7 +11804,7 @@ ALTER TABLE public.mdl_lti_submission OWNER TO postgres; -- -- TOC entry 10970 (class 0 OID 0) --- Dependencies: 803 +-- Dependencies: 622 -- Name: TABLE mdl_lti_submission; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11812,7 +11812,7 @@ COMMENT ON TABLE public.mdl_lti_submission IS 'Keeps track of individual submiss -- --- TOC entry 802 (class 1259 OID 21524) +-- TOC entry 623 (class 1259 OID 61441) -- Name: mdl_lti_submission_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11828,7 +11828,7 @@ ALTER TABLE public.mdl_lti_submission_id_seq OWNER TO postgres; -- -- TOC entry 10971 (class 0 OID 0) --- Dependencies: 802 +-- Dependencies: 623 -- Name: mdl_lti_submission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11836,7 +11836,7 @@ ALTER SEQUENCE public.mdl_lti_submission_id_seq OWNED BY public.mdl_lti_submissi -- --- TOC entry 795 (class 1259 OID 21465) +-- TOC entry 624 (class 1259 OID 61443) -- Name: mdl_lti_tool_proxies; Type: TABLE; Schema: public; Owner: postgres -- @@ -11861,7 +11861,7 @@ ALTER TABLE public.mdl_lti_tool_proxies OWNER TO postgres; -- -- TOC entry 10972 (class 0 OID 0) --- Dependencies: 795 +-- Dependencies: 624 -- Name: TABLE mdl_lti_tool_proxies; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11869,7 +11869,7 @@ COMMENT ON TABLE public.mdl_lti_tool_proxies IS 'LTI tool proxy registrations'; -- --- TOC entry 794 (class 1259 OID 21463) +-- TOC entry 625 (class 1259 OID 61451) -- Name: mdl_lti_tool_proxies_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11885,7 +11885,7 @@ ALTER TABLE public.mdl_lti_tool_proxies_id_seq OWNER TO postgres; -- -- TOC entry 10973 (class 0 OID 0) --- Dependencies: 794 +-- Dependencies: 625 -- Name: mdl_lti_tool_proxies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11893,7 +11893,7 @@ ALTER SEQUENCE public.mdl_lti_tool_proxies_id_seq OWNED BY public.mdl_lti_tool_p -- --- TOC entry 801 (class 1259 OID 21511) +-- TOC entry 626 (class 1259 OID 61453) -- Name: mdl_lti_tool_settings; Type: TABLE; Schema: public; Owner: postgres -- @@ -11913,7 +11913,7 @@ ALTER TABLE public.mdl_lti_tool_settings OWNER TO postgres; -- -- TOC entry 10974 (class 0 OID 0) --- Dependencies: 801 +-- Dependencies: 626 -- Name: TABLE mdl_lti_tool_settings; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11921,7 +11921,7 @@ COMMENT ON TABLE public.mdl_lti_tool_settings IS 'LTI tool setting values'; -- --- TOC entry 800 (class 1259 OID 21509) +-- TOC entry 627 (class 1259 OID 61459) -- Name: mdl_lti_tool_settings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11937,7 +11937,7 @@ ALTER TABLE public.mdl_lti_tool_settings_id_seq OWNER TO postgres; -- -- TOC entry 10975 (class 0 OID 0) --- Dependencies: 800 +-- Dependencies: 627 -- Name: mdl_lti_tool_settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11945,7 +11945,7 @@ ALTER SEQUENCE public.mdl_lti_tool_settings_id_seq OWNED BY public.mdl_lti_tool_ -- --- TOC entry 797 (class 1259 OID 21479) +-- TOC entry 628 (class 1259 OID 61461) -- Name: mdl_lti_types; Type: TABLE; Schema: public; Owner: postgres -- @@ -11975,7 +11975,7 @@ ALTER TABLE public.mdl_lti_types OWNER TO postgres; -- -- TOC entry 10976 (class 0 OID 0) --- Dependencies: 797 +-- Dependencies: 628 -- Name: TABLE mdl_lti_types; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11983,7 +11983,7 @@ COMMENT ON TABLE public.mdl_lti_types IS 'Basic LTI pre-configured activities'; -- --- TOC entry 799 (class 1259 OID 21498) +-- TOC entry 629 (class 1259 OID 61472) -- Name: mdl_lti_types_config; Type: TABLE; Schema: public; Owner: postgres -- @@ -11999,7 +11999,7 @@ ALTER TABLE public.mdl_lti_types_config OWNER TO postgres; -- -- TOC entry 10977 (class 0 OID 0) --- Dependencies: 799 +-- Dependencies: 629 -- Name: TABLE mdl_lti_types_config; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12007,7 +12007,7 @@ COMMENT ON TABLE public.mdl_lti_types_config IS 'Basic LTI types configuration'; -- --- TOC entry 798 (class 1259 OID 21496) +-- TOC entry 630 (class 1259 OID 61479) -- Name: mdl_lti_types_config_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12023,7 +12023,7 @@ ALTER TABLE public.mdl_lti_types_config_id_seq OWNER TO postgres; -- -- TOC entry 10978 (class 0 OID 0) --- Dependencies: 798 +-- Dependencies: 630 -- Name: mdl_lti_types_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12031,7 +12031,7 @@ ALTER SEQUENCE public.mdl_lti_types_config_id_seq OWNED BY public.mdl_lti_types_ -- --- TOC entry 796 (class 1259 OID 21477) +-- TOC entry 631 (class 1259 OID 61481) -- Name: mdl_lti_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12047,7 +12047,7 @@ ALTER TABLE public.mdl_lti_types_id_seq OWNER TO postgres; -- -- TOC entry 10979 (class 0 OID 0) --- Dependencies: 796 +-- Dependencies: 631 -- Name: mdl_lti_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12055,7 +12055,7 @@ ALTER SEQUENCE public.mdl_lti_types_id_seq OWNED BY public.mdl_lti_types.id; -- --- TOC entry 1011 (class 1259 OID 23196) +-- TOC entry 632 (class 1259 OID 61483) -- Name: mdl_ltiservice_gradebookservices; Type: TABLE; Schema: public; Owner: postgres -- @@ -12076,7 +12076,7 @@ ALTER TABLE public.mdl_ltiservice_gradebookservices OWNER TO postgres; -- -- TOC entry 10980 (class 0 OID 0) --- Dependencies: 1011 +-- Dependencies: 632 -- Name: TABLE mdl_ltiservice_gradebookservices; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12084,7 +12084,7 @@ COMMENT ON TABLE public.mdl_ltiservice_gradebookservices IS 'This file records t -- --- TOC entry 1010 (class 1259 OID 23194) +-- TOC entry 633 (class 1259 OID 61489) -- Name: mdl_ltiservice_gradebookservices_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12100,7 +12100,7 @@ ALTER TABLE public.mdl_ltiservice_gradebookservices_id_seq OWNER TO postgres; -- -- TOC entry 10981 (class 0 OID 0) --- Dependencies: 1010 +-- Dependencies: 633 -- Name: mdl_ltiservice_gradebookservices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12108,7 +12108,7 @@ ALTER SEQUENCE public.mdl_ltiservice_gradebookservices_id_seq OWNED BY public.md -- --- TOC entry 234 (class 1259 OID 16835) +-- TOC entry 634 (class 1259 OID 61491) -- Name: mdl_message; Type: TABLE; Schema: public; Owner: postgres -- @@ -12137,7 +12137,7 @@ ALTER TABLE public.mdl_message OWNER TO postgres; -- -- TOC entry 10982 (class 0 OID 0) --- Dependencies: 234 +-- Dependencies: 634 -- Name: TABLE mdl_message; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12145,7 +12145,7 @@ COMMENT ON TABLE public.mdl_message IS 'Stores all unread messages'; -- --- TOC entry 913 (class 1259 OID 22514) +-- TOC entry 635 (class 1259 OID 61504) -- Name: mdl_message_airnotifier_devices; Type: TABLE; Schema: public; Owner: postgres -- @@ -12160,7 +12160,7 @@ ALTER TABLE public.mdl_message_airnotifier_devices OWNER TO postgres; -- -- TOC entry 10983 (class 0 OID 0) --- Dependencies: 913 +-- Dependencies: 635 -- Name: TABLE mdl_message_airnotifier_devices; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12168,7 +12168,7 @@ COMMENT ON TABLE public.mdl_message_airnotifier_devices IS 'Store information ab -- --- TOC entry 912 (class 1259 OID 22512) +-- TOC entry 636 (class 1259 OID 61508) -- Name: mdl_message_airnotifier_devices_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12184,7 +12184,7 @@ ALTER TABLE public.mdl_message_airnotifier_devices_id_seq OWNER TO postgres; -- -- TOC entry 10984 (class 0 OID 0) --- Dependencies: 912 +-- Dependencies: 636 -- Name: mdl_message_airnotifier_devices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12192,7 +12192,7 @@ ALTER SEQUENCE public.mdl_message_airnotifier_devices_id_seq OWNED BY public.mdl -- --- TOC entry 252 (class 1259 OID 16968) +-- TOC entry 637 (class 1259 OID 61510) -- Name: mdl_message_contact_requests; Type: TABLE; Schema: public; Owner: postgres -- @@ -12208,7 +12208,7 @@ ALTER TABLE public.mdl_message_contact_requests OWNER TO postgres; -- -- TOC entry 10985 (class 0 OID 0) --- Dependencies: 252 +-- Dependencies: 637 -- Name: TABLE mdl_message_contact_requests; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12216,7 +12216,7 @@ COMMENT ON TABLE public.mdl_message_contact_requests IS 'Maintains list of conta -- --- TOC entry 251 (class 1259 OID 16966) +-- TOC entry 638 (class 1259 OID 61513) -- Name: mdl_message_contact_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12232,7 +12232,7 @@ ALTER TABLE public.mdl_message_contact_requests_id_seq OWNER TO postgres; -- -- TOC entry 10986 (class 0 OID 0) --- Dependencies: 251 +-- Dependencies: 638 -- Name: mdl_message_contact_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12240,7 +12240,7 @@ ALTER SEQUENCE public.mdl_message_contact_requests_id_seq OWNED BY public.mdl_me -- --- TOC entry 250 (class 1259 OID 16957) +-- TOC entry 639 (class 1259 OID 61515) -- Name: mdl_message_contacts; Type: TABLE; Schema: public; Owner: postgres -- @@ -12256,7 +12256,7 @@ ALTER TABLE public.mdl_message_contacts OWNER TO postgres; -- -- TOC entry 10987 (class 0 OID 0) --- Dependencies: 250 +-- Dependencies: 639 -- Name: TABLE mdl_message_contacts; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12264,7 +12264,7 @@ COMMENT ON TABLE public.mdl_message_contacts IS 'Maintains lists of contacts bet -- --- TOC entry 249 (class 1259 OID 16955) +-- TOC entry 640 (class 1259 OID 61518) -- Name: mdl_message_contacts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12280,7 +12280,7 @@ ALTER TABLE public.mdl_message_contacts_id_seq OWNER TO postgres; -- -- TOC entry 10988 (class 0 OID 0) --- Dependencies: 249 +-- Dependencies: 640 -- Name: mdl_message_contacts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12288,7 +12288,7 @@ ALTER SEQUENCE public.mdl_message_contacts_id_seq OWNED BY public.mdl_message_co -- --- TOC entry 244 (class 1259 OID 16922) +-- TOC entry 641 (class 1259 OID 61520) -- Name: mdl_message_conversation_actions; Type: TABLE; Schema: public; Owner: postgres -- @@ -12305,7 +12305,7 @@ ALTER TABLE public.mdl_message_conversation_actions OWNER TO postgres; -- -- TOC entry 10989 (class 0 OID 0) --- Dependencies: 244 +-- Dependencies: 641 -- Name: TABLE mdl_message_conversation_actions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12313,7 +12313,7 @@ COMMENT ON TABLE public.mdl_message_conversation_actions IS 'Stores all per-user -- --- TOC entry 243 (class 1259 OID 16920) +-- TOC entry 642 (class 1259 OID 61523) -- Name: mdl_message_conversation_actions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12329,7 +12329,7 @@ ALTER TABLE public.mdl_message_conversation_actions_id_seq OWNER TO postgres; -- -- TOC entry 10990 (class 0 OID 0) --- Dependencies: 243 +-- Dependencies: 642 -- Name: mdl_message_conversation_actions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12337,7 +12337,7 @@ ALTER SEQUENCE public.mdl_message_conversation_actions_id_seq OWNED BY public.md -- --- TOC entry 242 (class 1259 OID 16912) +-- TOC entry 643 (class 1259 OID 61525) -- Name: mdl_message_conversation_members; Type: TABLE; Schema: public; Owner: postgres -- @@ -12353,7 +12353,7 @@ ALTER TABLE public.mdl_message_conversation_members OWNER TO postgres; -- -- TOC entry 10991 (class 0 OID 0) --- Dependencies: 242 +-- Dependencies: 643 -- Name: TABLE mdl_message_conversation_members; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12361,7 +12361,7 @@ COMMENT ON TABLE public.mdl_message_conversation_members IS 'Stores all members -- --- TOC entry 241 (class 1259 OID 16910) +-- TOC entry 644 (class 1259 OID 61528) -- Name: mdl_message_conversation_members_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12377,7 +12377,7 @@ ALTER TABLE public.mdl_message_conversation_members_id_seq OWNER TO postgres; -- -- TOC entry 10992 (class 0 OID 0) --- Dependencies: 241 +-- Dependencies: 644 -- Name: mdl_message_conversation_members_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12385,7 +12385,7 @@ ALTER SEQUENCE public.mdl_message_conversation_members_id_seq OWNED BY public.md -- --- TOC entry 240 (class 1259 OID 16895) +-- TOC entry 645 (class 1259 OID 61530) -- Name: mdl_message_conversations; Type: TABLE; Schema: public; Owner: postgres -- @@ -12408,7 +12408,7 @@ ALTER TABLE public.mdl_message_conversations OWNER TO postgres; -- -- TOC entry 10993 (class 0 OID 0) --- Dependencies: 240 +-- Dependencies: 645 -- Name: TABLE mdl_message_conversations; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12416,7 +12416,7 @@ COMMENT ON TABLE public.mdl_message_conversations IS 'Stores all message convers -- --- TOC entry 239 (class 1259 OID 16893) +-- TOC entry 646 (class 1259 OID 61538) -- Name: mdl_message_conversations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12432,7 +12432,7 @@ ALTER TABLE public.mdl_message_conversations_id_seq OWNER TO postgres; -- -- TOC entry 10994 (class 0 OID 0) --- Dependencies: 239 +-- Dependencies: 646 -- Name: mdl_message_conversations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12440,7 +12440,7 @@ ALTER SEQUENCE public.mdl_message_conversations_id_seq OWNED BY public.mdl_messa -- --- TOC entry 915 (class 1259 OID 22524) +-- TOC entry 647 (class 1259 OID 61540) -- Name: mdl_message_email_messages; Type: TABLE; Schema: public; Owner: postgres -- @@ -12456,7 +12456,7 @@ ALTER TABLE public.mdl_message_email_messages OWNER TO postgres; -- -- TOC entry 10995 (class 0 OID 0) --- Dependencies: 915 +-- Dependencies: 647 -- Name: TABLE mdl_message_email_messages; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12464,7 +12464,7 @@ COMMENT ON TABLE public.mdl_message_email_messages IS 'Keeps track of what email -- --- TOC entry 914 (class 1259 OID 22522) +-- TOC entry 648 (class 1259 OID 61543) -- Name: mdl_message_email_messages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12480,7 +12480,7 @@ ALTER TABLE public.mdl_message_email_messages_id_seq OWNER TO postgres; -- -- TOC entry 10996 (class 0 OID 0) --- Dependencies: 914 +-- Dependencies: 648 -- Name: mdl_message_email_messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12488,7 +12488,7 @@ ALTER SEQUENCE public.mdl_message_email_messages_id_seq OWNED BY public.mdl_mess -- --- TOC entry 233 (class 1259 OID 16833) +-- TOC entry 649 (class 1259 OID 61545) -- Name: mdl_message_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12504,7 +12504,7 @@ ALTER TABLE public.mdl_message_id_seq OWNER TO postgres; -- -- TOC entry 10997 (class 0 OID 0) --- Dependencies: 233 +-- Dependencies: 649 -- Name: mdl_message_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12512,7 +12512,7 @@ ALTER SEQUENCE public.mdl_message_id_seq OWNED BY public.mdl_message.id; -- --- TOC entry 917 (class 1259 OID 22535) +-- TOC entry 650 (class 1259 OID 61547) -- Name: mdl_message_popup; Type: TABLE; Schema: public; Owner: postgres -- @@ -12527,7 +12527,7 @@ ALTER TABLE public.mdl_message_popup OWNER TO postgres; -- -- TOC entry 10998 (class 0 OID 0) --- Dependencies: 917 +-- Dependencies: 650 -- Name: TABLE mdl_message_popup; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12535,7 +12535,7 @@ COMMENT ON TABLE public.mdl_message_popup IS 'Keep state of notifications for th -- --- TOC entry 916 (class 1259 OID 22533) +-- TOC entry 651 (class 1259 OID 61551) -- Name: mdl_message_popup_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12551,7 +12551,7 @@ ALTER TABLE public.mdl_message_popup_id_seq OWNER TO postgres; -- -- TOC entry 10999 (class 0 OID 0) --- Dependencies: 916 +-- Dependencies: 651 -- Name: mdl_message_popup_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12559,7 +12559,7 @@ ALTER SEQUENCE public.mdl_message_popup_id_seq OWNED BY public.mdl_message_popup -- --- TOC entry 919 (class 1259 OID 22546) +-- TOC entry 652 (class 1259 OID 61553) -- Name: mdl_message_popup_notifications; Type: TABLE; Schema: public; Owner: postgres -- @@ -12573,7 +12573,7 @@ ALTER TABLE public.mdl_message_popup_notifications OWNER TO postgres; -- -- TOC entry 11000 (class 0 OID 0) --- Dependencies: 919 +-- Dependencies: 652 -- Name: TABLE mdl_message_popup_notifications; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12581,7 +12581,7 @@ COMMENT ON TABLE public.mdl_message_popup_notifications IS 'List of notification -- --- TOC entry 918 (class 1259 OID 22544) +-- TOC entry 653 (class 1259 OID 61556) -- Name: mdl_message_popup_notifications_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12597,7 +12597,7 @@ ALTER TABLE public.mdl_message_popup_notifications_id_seq OWNER TO postgres; -- -- TOC entry 11001 (class 0 OID 0) --- Dependencies: 918 +-- Dependencies: 653 -- Name: mdl_message_popup_notifications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12605,7 +12605,7 @@ ALTER SEQUENCE public.mdl_message_popup_notifications_id_seq OWNED BY public.mdl -- --- TOC entry 431 (class 1259 OID 18489) +-- TOC entry 654 (class 1259 OID 61558) -- Name: mdl_message_processors; Type: TABLE; Schema: public; Owner: postgres -- @@ -12620,7 +12620,7 @@ ALTER TABLE public.mdl_message_processors OWNER TO postgres; -- -- TOC entry 11002 (class 0 OID 0) --- Dependencies: 431 +-- Dependencies: 654 -- Name: TABLE mdl_message_processors; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12628,7 +12628,7 @@ COMMENT ON TABLE public.mdl_message_processors IS 'List of message output plugin -- --- TOC entry 430 (class 1259 OID 18487) +-- TOC entry 655 (class 1259 OID 61563) -- Name: mdl_message_processors_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12644,7 +12644,7 @@ ALTER TABLE public.mdl_message_processors_id_seq OWNER TO postgres; -- -- TOC entry 11003 (class 0 OID 0) --- Dependencies: 430 +-- Dependencies: 655 -- Name: mdl_message_processors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12652,7 +12652,7 @@ ALTER SEQUENCE public.mdl_message_processors_id_seq OWNED BY public.mdl_message_ -- --- TOC entry 429 (class 1259 OID 18475) +-- TOC entry 656 (class 1259 OID 61565) -- Name: mdl_message_providers; Type: TABLE; Schema: public; Owner: postgres -- @@ -12668,7 +12668,7 @@ ALTER TABLE public.mdl_message_providers OWNER TO postgres; -- -- TOC entry 11004 (class 0 OID 0) --- Dependencies: 429 +-- Dependencies: 656 -- Name: TABLE mdl_message_providers; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12676,7 +12676,7 @@ COMMENT ON TABLE public.mdl_message_providers IS 'This table stores the message -- --- TOC entry 428 (class 1259 OID 18473) +-- TOC entry 657 (class 1259 OID 61573) -- Name: mdl_message_providers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12692,7 +12692,7 @@ ALTER TABLE public.mdl_message_providers_id_seq OWNER TO postgres; -- -- TOC entry 11005 (class 0 OID 0) --- Dependencies: 428 +-- Dependencies: 657 -- Name: mdl_message_providers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12700,7 +12700,7 @@ ALTER SEQUENCE public.mdl_message_providers_id_seq OWNED BY public.mdl_message_p -- --- TOC entry 236 (class 1259 OID 16856) +-- TOC entry 658 (class 1259 OID 61575) -- Name: mdl_message_read; Type: TABLE; Schema: public; Owner: postgres -- @@ -12729,7 +12729,7 @@ ALTER TABLE public.mdl_message_read OWNER TO postgres; -- -- TOC entry 11006 (class 0 OID 0) --- Dependencies: 236 +-- Dependencies: 658 -- Name: TABLE mdl_message_read; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12737,7 +12737,7 @@ COMMENT ON TABLE public.mdl_message_read IS 'Stores all messages that have been -- --- TOC entry 235 (class 1259 OID 16854) +-- TOC entry 659 (class 1259 OID 61589) -- Name: mdl_message_read_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12753,7 +12753,7 @@ ALTER TABLE public.mdl_message_read_id_seq OWNER TO postgres; -- -- TOC entry 11007 (class 0 OID 0) --- Dependencies: 235 +-- Dependencies: 659 -- Name: mdl_message_read_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12761,7 +12761,7 @@ ALTER SEQUENCE public.mdl_message_read_id_seq OWNED BY public.mdl_message_read.i -- --- TOC entry 246 (class 1259 OID 16932) +-- TOC entry 660 (class 1259 OID 61591) -- Name: mdl_message_user_actions; Type: TABLE; Schema: public; Owner: postgres -- @@ -12778,7 +12778,7 @@ ALTER TABLE public.mdl_message_user_actions OWNER TO postgres; -- -- TOC entry 11008 (class 0 OID 0) --- Dependencies: 246 +-- Dependencies: 660 -- Name: TABLE mdl_message_user_actions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12786,7 +12786,7 @@ COMMENT ON TABLE public.mdl_message_user_actions IS 'Stores all per-user actions -- --- TOC entry 245 (class 1259 OID 16930) +-- TOC entry 661 (class 1259 OID 61594) -- Name: mdl_message_user_actions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12802,7 +12802,7 @@ ALTER TABLE public.mdl_message_user_actions_id_seq OWNER TO postgres; -- -- TOC entry 11009 (class 0 OID 0) --- Dependencies: 245 +-- Dependencies: 661 -- Name: mdl_message_user_actions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12810,7 +12810,7 @@ ALTER SEQUENCE public.mdl_message_user_actions_id_seq OWNED BY public.mdl_messag -- --- TOC entry 254 (class 1259 OID 16979) +-- TOC entry 662 (class 1259 OID 61596) -- Name: mdl_message_users_blocked; Type: TABLE; Schema: public; Owner: postgres -- @@ -12826,7 +12826,7 @@ ALTER TABLE public.mdl_message_users_blocked OWNER TO postgres; -- -- TOC entry 11010 (class 0 OID 0) --- Dependencies: 254 +-- Dependencies: 662 -- Name: TABLE mdl_message_users_blocked; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12834,7 +12834,7 @@ COMMENT ON TABLE public.mdl_message_users_blocked IS 'Maintains lists of blocked -- --- TOC entry 253 (class 1259 OID 16977) +-- TOC entry 663 (class 1259 OID 61599) -- Name: mdl_message_users_blocked_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12850,7 +12850,7 @@ ALTER TABLE public.mdl_message_users_blocked_id_seq OWNER TO postgres; -- -- TOC entry 11011 (class 0 OID 0) --- Dependencies: 253 +-- Dependencies: 663 -- Name: mdl_message_users_blocked_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12858,7 +12858,7 @@ ALTER SEQUENCE public.mdl_message_users_blocked_id_seq OWNED BY public.mdl_messa -- --- TOC entry 533 (class 1259 OID 19254) +-- TOC entry 664 (class 1259 OID 61601) -- Name: mdl_messageinbound_datakeys; Type: TABLE; Schema: public; Owner: postgres -- @@ -12876,7 +12876,7 @@ ALTER TABLE public.mdl_messageinbound_datakeys OWNER TO postgres; -- -- TOC entry 11012 (class 0 OID 0) --- Dependencies: 533 +-- Dependencies: 664 -- Name: TABLE mdl_messageinbound_datakeys; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12884,7 +12884,7 @@ COMMENT ON TABLE public.mdl_messageinbound_datakeys IS 'Inbound Message data ite -- --- TOC entry 532 (class 1259 OID 19252) +-- TOC entry 665 (class 1259 OID 61604) -- Name: mdl_messageinbound_datakeys_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12900,7 +12900,7 @@ ALTER TABLE public.mdl_messageinbound_datakeys_id_seq OWNER TO postgres; -- -- TOC entry 11013 (class 0 OID 0) --- Dependencies: 532 +-- Dependencies: 665 -- Name: mdl_messageinbound_datakeys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12908,7 +12908,7 @@ ALTER SEQUENCE public.mdl_messageinbound_datakeys_id_seq OWNED BY public.mdl_mes -- --- TOC entry 531 (class 1259 OID 19240) +-- TOC entry 666 (class 1259 OID 61606) -- Name: mdl_messageinbound_handlers; Type: TABLE; Schema: public; Owner: postgres -- @@ -12926,7 +12926,7 @@ ALTER TABLE public.mdl_messageinbound_handlers OWNER TO postgres; -- -- TOC entry 11014 (class 0 OID 0) --- Dependencies: 531 +-- Dependencies: 666 -- Name: TABLE mdl_messageinbound_handlers; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12934,7 +12934,7 @@ COMMENT ON TABLE public.mdl_messageinbound_handlers IS 'Inbound Message Handler -- --- TOC entry 530 (class 1259 OID 19238) +-- TOC entry 667 (class 1259 OID 61614) -- Name: mdl_messageinbound_handlers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12950,7 +12950,7 @@ ALTER TABLE public.mdl_messageinbound_handlers_id_seq OWNER TO postgres; -- -- TOC entry 11015 (class 0 OID 0) --- Dependencies: 530 +-- Dependencies: 667 -- Name: mdl_messageinbound_handlers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12958,7 +12958,7 @@ ALTER SEQUENCE public.mdl_messageinbound_handlers_id_seq OWNED BY public.mdl_mes -- --- TOC entry 535 (class 1259 OID 19264) +-- TOC entry 668 (class 1259 OID 61616) -- Name: mdl_messageinbound_messagelist; Type: TABLE; Schema: public; Owner: postgres -- @@ -12975,7 +12975,7 @@ ALTER TABLE public.mdl_messageinbound_messagelist OWNER TO postgres; -- -- TOC entry 11016 (class 0 OID 0) --- Dependencies: 535 +-- Dependencies: 668 -- Name: TABLE mdl_messageinbound_messagelist; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12983,7 +12983,7 @@ COMMENT ON TABLE public.mdl_messageinbound_messagelist IS 'A list of message IDs -- --- TOC entry 534 (class 1259 OID 19262) +-- TOC entry 669 (class 1259 OID 61622) -- Name: mdl_messageinbound_messagelist_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12999,7 +12999,7 @@ ALTER TABLE public.mdl_messageinbound_messagelist_id_seq OWNER TO postgres; -- -- TOC entry 11017 (class 0 OID 0) --- Dependencies: 534 +-- Dependencies: 669 -- Name: mdl_messageinbound_messagelist_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13007,7 +13007,7 @@ ALTER SEQUENCE public.mdl_messageinbound_messagelist_id_seq OWNED BY public.mdl_ -- --- TOC entry 238 (class 1259 OID 16879) +-- TOC entry 670 (class 1259 OID 61624) -- Name: mdl_messages; Type: TABLE; Schema: public; Owner: postgres -- @@ -13030,7 +13030,7 @@ ALTER TABLE public.mdl_messages OWNER TO postgres; -- -- TOC entry 11018 (class 0 OID 0) --- Dependencies: 238 +-- Dependencies: 670 -- Name: TABLE mdl_messages; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13038,7 +13038,7 @@ COMMENT ON TABLE public.mdl_messages IS 'Stores all messages'; -- --- TOC entry 237 (class 1259 OID 16877) +-- TOC entry 671 (class 1259 OID 61632) -- Name: mdl_messages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13054,7 +13054,7 @@ ALTER TABLE public.mdl_messages_id_seq OWNER TO postgres; -- -- TOC entry 11019 (class 0 OID 0) --- Dependencies: 237 +-- Dependencies: 671 -- Name: mdl_messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13062,7 +13062,7 @@ ALTER SEQUENCE public.mdl_messages_id_seq OWNED BY public.mdl_messages.id; -- --- TOC entry 339 (class 1259 OID 17709) +-- TOC entry 672 (class 1259 OID 61634) -- Name: mdl_mnet_application; Type: TABLE; Schema: public; Owner: postgres -- @@ -13080,7 +13080,7 @@ ALTER TABLE public.mdl_mnet_application OWNER TO postgres; -- -- TOC entry 11020 (class 0 OID 0) --- Dependencies: 339 +-- Dependencies: 672 -- Name: TABLE mdl_mnet_application; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13088,7 +13088,7 @@ COMMENT ON TABLE public.mdl_mnet_application IS 'Information about applications -- --- TOC entry 338 (class 1259 OID 17707) +-- TOC entry 673 (class 1259 OID 61645) -- Name: mdl_mnet_application_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13104,7 +13104,7 @@ ALTER TABLE public.mdl_mnet_application_id_seq OWNER TO postgres; -- -- TOC entry 11021 (class 0 OID 0) --- Dependencies: 338 +-- Dependencies: 673 -- Name: mdl_mnet_application_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13112,7 +13112,7 @@ ALTER SEQUENCE public.mdl_mnet_application_id_seq OWNED BY public.mdl_mnet_appli -- --- TOC entry 341 (class 1259 OID 17725) +-- TOC entry 674 (class 1259 OID 61647) -- Name: mdl_mnet_host; Type: TABLE; Schema: public; Owner: postgres -- @@ -13139,7 +13139,7 @@ ALTER TABLE public.mdl_mnet_host OWNER TO postgres; -- -- TOC entry 11022 (class 0 OID 0) --- Dependencies: 341 +-- Dependencies: 674 -- Name: TABLE mdl_mnet_host; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13147,7 +13147,7 @@ COMMENT ON TABLE public.mdl_mnet_host IS 'Information about the local and remote -- --- TOC entry 343 (class 1259 OID 17749) +-- TOC entry 675 (class 1259 OID 61665) -- Name: mdl_mnet_host2service; Type: TABLE; Schema: public; Owner: postgres -- @@ -13164,7 +13164,7 @@ ALTER TABLE public.mdl_mnet_host2service OWNER TO postgres; -- -- TOC entry 11023 (class 0 OID 0) --- Dependencies: 343 +-- Dependencies: 675 -- Name: TABLE mdl_mnet_host2service; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13172,7 +13172,7 @@ COMMENT ON TABLE public.mdl_mnet_host2service IS 'Information about the services -- --- TOC entry 342 (class 1259 OID 17747) +-- TOC entry 676 (class 1259 OID 61672) -- Name: mdl_mnet_host2service_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13188,7 +13188,7 @@ ALTER TABLE public.mdl_mnet_host2service_id_seq OWNER TO postgres; -- -- TOC entry 11024 (class 0 OID 0) --- Dependencies: 342 +-- Dependencies: 676 -- Name: mdl_mnet_host2service_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13196,7 +13196,7 @@ ALTER SEQUENCE public.mdl_mnet_host2service_id_seq OWNED BY public.mdl_mnet_host -- --- TOC entry 340 (class 1259 OID 17723) +-- TOC entry 677 (class 1259 OID 61674) -- Name: mdl_mnet_host_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13212,7 +13212,7 @@ ALTER TABLE public.mdl_mnet_host_id_seq OWNER TO postgres; -- -- TOC entry 11025 (class 0 OID 0) --- Dependencies: 340 +-- Dependencies: 677 -- Name: mdl_mnet_host_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13220,7 +13220,7 @@ ALTER SEQUENCE public.mdl_mnet_host_id_seq OWNED BY public.mdl_mnet_host.id; -- --- TOC entry 345 (class 1259 OID 17762) +-- TOC entry 678 (class 1259 OID 61676) -- Name: mdl_mnet_log; Type: TABLE; Schema: public; Owner: postgres -- @@ -13245,7 +13245,7 @@ ALTER TABLE public.mdl_mnet_log OWNER TO postgres; -- -- TOC entry 11026 (class 0 OID 0) --- Dependencies: 345 +-- Dependencies: 678 -- Name: TABLE mdl_mnet_log; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13253,7 +13253,7 @@ COMMENT ON TABLE public.mdl_mnet_log IS 'Store session data from users migrating -- --- TOC entry 344 (class 1259 OID 17760) +-- TOC entry 679 (class 1259 OID 61694) -- Name: mdl_mnet_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13269,7 +13269,7 @@ ALTER TABLE public.mdl_mnet_log_id_seq OWNER TO postgres; -- -- TOC entry 11027 (class 0 OID 0) --- Dependencies: 344 +-- Dependencies: 679 -- Name: mdl_mnet_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13277,7 +13277,7 @@ ALTER SEQUENCE public.mdl_mnet_log_id_seq OWNED BY public.mdl_mnet_log.id; -- --- TOC entry 349 (class 1259 OID 17804) +-- TOC entry 680 (class 1259 OID 61696) -- Name: mdl_mnet_remote_rpc; Type: TABLE; Schema: public; Owner: postgres -- @@ -13295,7 +13295,7 @@ ALTER TABLE public.mdl_mnet_remote_rpc OWNER TO postgres; -- -- TOC entry 11028 (class 0 OID 0) --- Dependencies: 349 +-- Dependencies: 680 -- Name: TABLE mdl_mnet_remote_rpc; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13303,7 +13303,7 @@ COMMENT ON TABLE public.mdl_mnet_remote_rpc IS 'This table describes functions t -- --- TOC entry 348 (class 1259 OID 17802) +-- TOC entry 681 (class 1259 OID 61703) -- Name: mdl_mnet_remote_rpc_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13319,7 +13319,7 @@ ALTER TABLE public.mdl_mnet_remote_rpc_id_seq OWNER TO postgres; -- -- TOC entry 11029 (class 0 OID 0) --- Dependencies: 348 +-- Dependencies: 681 -- Name: mdl_mnet_remote_rpc_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13327,7 +13327,7 @@ ALTER SEQUENCE public.mdl_mnet_remote_rpc_id_seq OWNED BY public.mdl_mnet_remote -- --- TOC entry 355 (class 1259 OID 17839) +-- TOC entry 682 (class 1259 OID 61705) -- Name: mdl_mnet_remote_service2rpc; Type: TABLE; Schema: public; Owner: postgres -- @@ -13342,7 +13342,7 @@ ALTER TABLE public.mdl_mnet_remote_service2rpc OWNER TO postgres; -- -- TOC entry 11030 (class 0 OID 0) --- Dependencies: 355 +-- Dependencies: 682 -- Name: TABLE mdl_mnet_remote_service2rpc; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13350,7 +13350,7 @@ COMMENT ON TABLE public.mdl_mnet_remote_service2rpc IS 'Group functions or metho -- --- TOC entry 354 (class 1259 OID 17837) +-- TOC entry 683 (class 1259 OID 61710) -- Name: mdl_mnet_remote_service2rpc_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13366,7 +13366,7 @@ ALTER TABLE public.mdl_mnet_remote_service2rpc_id_seq OWNER TO postgres; -- -- TOC entry 11031 (class 0 OID 0) --- Dependencies: 354 +-- Dependencies: 683 -- Name: mdl_mnet_remote_service2rpc_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13374,7 +13374,7 @@ ALTER SEQUENCE public.mdl_mnet_remote_service2rpc_id_seq OWNED BY public.mdl_mne -- --- TOC entry 347 (class 1259 OID 17786) +-- TOC entry 684 (class 1259 OID 61712) -- Name: mdl_mnet_rpc; Type: TABLE; Schema: public; Owner: postgres -- @@ -13397,7 +13397,7 @@ ALTER TABLE public.mdl_mnet_rpc OWNER TO postgres; -- -- TOC entry 11032 (class 0 OID 0) --- Dependencies: 347 +-- Dependencies: 684 -- Name: TABLE mdl_mnet_rpc; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13405,7 +13405,7 @@ COMMENT ON TABLE public.mdl_mnet_rpc IS 'Functions or methods that we may publis -- --- TOC entry 346 (class 1259 OID 17784) +-- TOC entry 685 (class 1259 OID 61724) -- Name: mdl_mnet_rpc_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13421,7 +13421,7 @@ ALTER TABLE public.mdl_mnet_rpc_id_seq OWNER TO postgres; -- -- TOC entry 11033 (class 0 OID 0) --- Dependencies: 346 +-- Dependencies: 685 -- Name: mdl_mnet_rpc_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13429,7 +13429,7 @@ ALTER SEQUENCE public.mdl_mnet_rpc_id_seq OWNED BY public.mdl_mnet_rpc.id; -- --- TOC entry 351 (class 1259 OID 17816) +-- TOC entry 686 (class 1259 OID 61726) -- Name: mdl_mnet_service; Type: TABLE; Schema: public; Owner: postgres -- @@ -13446,7 +13446,7 @@ ALTER TABLE public.mdl_mnet_service OWNER TO postgres; -- -- TOC entry 11034 (class 0 OID 0) --- Dependencies: 351 +-- Dependencies: 686 -- Name: TABLE mdl_mnet_service; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13454,7 +13454,7 @@ COMMENT ON TABLE public.mdl_mnet_service IS 'A service is a group of functions'; -- --- TOC entry 353 (class 1259 OID 17828) +-- TOC entry 687 (class 1259 OID 61733) -- Name: mdl_mnet_service2rpc; Type: TABLE; Schema: public; Owner: postgres -- @@ -13469,7 +13469,7 @@ ALTER TABLE public.mdl_mnet_service2rpc OWNER TO postgres; -- -- TOC entry 11035 (class 0 OID 0) --- Dependencies: 353 +-- Dependencies: 687 -- Name: TABLE mdl_mnet_service2rpc; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13477,7 +13477,7 @@ COMMENT ON TABLE public.mdl_mnet_service2rpc IS 'Group functions or methods unde -- --- TOC entry 352 (class 1259 OID 17826) +-- TOC entry 688 (class 1259 OID 61738) -- Name: mdl_mnet_service2rpc_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13493,7 +13493,7 @@ ALTER TABLE public.mdl_mnet_service2rpc_id_seq OWNER TO postgres; -- -- TOC entry 11036 (class 0 OID 0) --- Dependencies: 352 +-- Dependencies: 688 -- Name: mdl_mnet_service2rpc_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13501,7 +13501,7 @@ ALTER SEQUENCE public.mdl_mnet_service2rpc_id_seq OWNED BY public.mdl_mnet_servi -- --- TOC entry 350 (class 1259 OID 17814) +-- TOC entry 689 (class 1259 OID 61740) -- Name: mdl_mnet_service_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13517,7 +13517,7 @@ ALTER TABLE public.mdl_mnet_service_id_seq OWNER TO postgres; -- -- TOC entry 11037 (class 0 OID 0) --- Dependencies: 350 +-- Dependencies: 689 -- Name: mdl_mnet_service_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13525,7 +13525,7 @@ ALTER SEQUENCE public.mdl_mnet_service_id_seq OWNED BY public.mdl_mnet_service.i -- --- TOC entry 357 (class 1259 OID 17850) +-- TOC entry 690 (class 1259 OID 61742) -- Name: mdl_mnet_session; Type: TABLE; Schema: public; Owner: postgres -- @@ -13546,7 +13546,7 @@ ALTER TABLE public.mdl_mnet_session OWNER TO postgres; -- -- TOC entry 11038 (class 0 OID 0) --- Dependencies: 357 +-- Dependencies: 690 -- Name: TABLE mdl_mnet_session; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13554,7 +13554,7 @@ COMMENT ON TABLE public.mdl_mnet_session IS 'Store session data from users migra -- --- TOC entry 356 (class 1259 OID 17848) +-- TOC entry 691 (class 1259 OID 61753) -- Name: mdl_mnet_session_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13570,7 +13570,7 @@ ALTER TABLE public.mdl_mnet_session_id_seq OWNER TO postgres; -- -- TOC entry 11039 (class 0 OID 0) --- Dependencies: 356 +-- Dependencies: 691 -- Name: mdl_mnet_session_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13578,7 +13578,7 @@ ALTER SEQUENCE public.mdl_mnet_session_id_seq OWNED BY public.mdl_mnet_session.i -- --- TOC entry 359 (class 1259 OID 17867) +-- TOC entry 692 (class 1259 OID 61755) -- Name: mdl_mnet_sso_access_control; Type: TABLE; Schema: public; Owner: postgres -- @@ -13594,7 +13594,7 @@ ALTER TABLE public.mdl_mnet_sso_access_control OWNER TO postgres; -- -- TOC entry 11040 (class 0 OID 0) --- Dependencies: 359 +-- Dependencies: 692 -- Name: TABLE mdl_mnet_sso_access_control; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13602,7 +13602,7 @@ COMMENT ON TABLE public.mdl_mnet_sso_access_control IS 'Users by host permitted -- --- TOC entry 358 (class 1259 OID 17865) +-- TOC entry 693 (class 1259 OID 61761) -- Name: mdl_mnet_sso_access_control_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13618,7 +13618,7 @@ ALTER TABLE public.mdl_mnet_sso_access_control_id_seq OWNER TO postgres; -- -- TOC entry 11041 (class 0 OID 0) --- Dependencies: 358 +-- Dependencies: 693 -- Name: mdl_mnet_sso_access_control_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13626,7 +13626,7 @@ ALTER SEQUENCE public.mdl_mnet_sso_access_control_id_seq OWNED BY public.mdl_mne -- --- TOC entry 941 (class 1259 OID 22687) +-- TOC entry 694 (class 1259 OID 61763) -- Name: mdl_mnetservice_enrol_courses; Type: TABLE; Schema: public; Owner: postgres -- @@ -13652,7 +13652,7 @@ ALTER TABLE public.mdl_mnetservice_enrol_courses OWNER TO postgres; -- -- TOC entry 11042 (class 0 OID 0) --- Dependencies: 941 +-- Dependencies: 694 -- Name: TABLE mdl_mnetservice_enrol_courses; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13660,7 +13660,7 @@ COMMENT ON TABLE public.mdl_mnetservice_enrol_courses IS 'Caches the information -- --- TOC entry 940 (class 1259 OID 22685) +-- TOC entry 695 (class 1259 OID 61776) -- Name: mdl_mnetservice_enrol_courses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13676,7 +13676,7 @@ ALTER TABLE public.mdl_mnetservice_enrol_courses_id_seq OWNER TO postgres; -- -- TOC entry 11043 (class 0 OID 0) --- Dependencies: 940 +-- Dependencies: 695 -- Name: mdl_mnetservice_enrol_courses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13684,7 +13684,7 @@ ALTER SEQUENCE public.mdl_mnetservice_enrol_courses_id_seq OWNED BY public.mdl_m -- --- TOC entry 943 (class 1259 OID 22706) +-- TOC entry 696 (class 1259 OID 61778) -- Name: mdl_mnetservice_enrol_enrolments; Type: TABLE; Schema: public; Owner: postgres -- @@ -13703,7 +13703,7 @@ ALTER TABLE public.mdl_mnetservice_enrol_enrolments OWNER TO postgres; -- -- TOC entry 11044 (class 0 OID 0) --- Dependencies: 943 +-- Dependencies: 696 -- Name: TABLE mdl_mnetservice_enrol_enrolments; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13711,7 +13711,7 @@ COMMENT ON TABLE public.mdl_mnetservice_enrol_enrolments IS 'Caches the informat -- --- TOC entry 942 (class 1259 OID 22704) +-- TOC entry 697 (class 1259 OID 61784) -- Name: mdl_mnetservice_enrol_enrolments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13727,7 +13727,7 @@ ALTER TABLE public.mdl_mnetservice_enrol_enrolments_id_seq OWNER TO postgres; -- -- TOC entry 11045 (class 0 OID 0) --- Dependencies: 942 +-- Dependencies: 697 -- Name: mdl_mnetservice_enrol_enrolments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13735,7 +13735,7 @@ ALTER SEQUENCE public.mdl_mnetservice_enrol_enrolments_id_seq OWNED BY public.md -- --- TOC entry 256 (class 1259 OID 16990) +-- TOC entry 698 (class 1259 OID 61786) -- Name: mdl_modules; Type: TABLE; Schema: public; Owner: postgres -- @@ -13753,7 +13753,7 @@ ALTER TABLE public.mdl_modules OWNER TO postgres; -- -- TOC entry 11046 (class 0 OID 0) --- Dependencies: 256 +-- Dependencies: 698 -- Name: TABLE mdl_modules; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13761,7 +13761,7 @@ COMMENT ON TABLE public.mdl_modules IS 'modules available in the site'; -- --- TOC entry 255 (class 1259 OID 16988) +-- TOC entry 699 (class 1259 OID 61794) -- Name: mdl_modules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13777,7 +13777,7 @@ ALTER TABLE public.mdl_modules_id_seq OWNER TO postgres; -- -- TOC entry 11047 (class 0 OID 0) --- Dependencies: 255 +-- Dependencies: 699 -- Name: mdl_modules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13785,7 +13785,7 @@ ALTER SEQUENCE public.mdl_modules_id_seq OWNED BY public.mdl_modules.id; -- --- TOC entry 258 (class 1259 OID 17004) +-- TOC entry 700 (class 1259 OID 61796) -- Name: mdl_my_pages; Type: TABLE; Schema: public; Owner: postgres -- @@ -13802,7 +13802,7 @@ ALTER TABLE public.mdl_my_pages OWNER TO postgres; -- -- TOC entry 11048 (class 0 OID 0) --- Dependencies: 258 +-- Dependencies: 700 -- Name: TABLE mdl_my_pages; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13810,7 +13810,7 @@ COMMENT ON TABLE public.mdl_my_pages IS 'Extra user pages for the My Moodle syst -- --- TOC entry 257 (class 1259 OID 17002) +-- TOC entry 701 (class 1259 OID 61803) -- Name: mdl_my_pages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13826,7 +13826,7 @@ ALTER TABLE public.mdl_my_pages_id_seq OWNER TO postgres; -- -- TOC entry 11049 (class 0 OID 0) --- Dependencies: 257 +-- Dependencies: 701 -- Name: mdl_my_pages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13834,7 +13834,7 @@ ALTER SEQUENCE public.mdl_my_pages_id_seq OWNED BY public.mdl_my_pages.id; -- --- TOC entry 248 (class 1259 OID 16943) +-- TOC entry 702 (class 1259 OID 61805) -- Name: mdl_notifications; Type: TABLE; Schema: public; Owner: postgres -- @@ -13861,7 +13861,7 @@ ALTER TABLE public.mdl_notifications OWNER TO postgres; -- -- TOC entry 11050 (class 0 OID 0) --- Dependencies: 248 +-- Dependencies: 702 -- Name: TABLE mdl_notifications; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13869,7 +13869,7 @@ COMMENT ON TABLE public.mdl_notifications IS 'Stores all notifications'; -- --- TOC entry 247 (class 1259 OID 16941) +-- TOC entry 703 (class 1259 OID 61812) -- Name: mdl_notifications_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13885,7 +13885,7 @@ ALTER TABLE public.mdl_notifications_id_seq OWNER TO postgres; -- -- TOC entry 11051 (class 0 OID 0) --- Dependencies: 247 +-- Dependencies: 703 -- Name: mdl_notifications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13893,7 +13893,7 @@ ALTER SEQUENCE public.mdl_notifications_id_seq OWNED BY public.mdl_notifications -- --- TOC entry 597 (class 1259 OID 19663) +-- TOC entry 704 (class 1259 OID 61814) -- Name: mdl_oauth2_access_token; Type: TABLE; Schema: public; Owner: postgres -- @@ -13913,7 +13913,7 @@ ALTER TABLE public.mdl_oauth2_access_token OWNER TO postgres; -- -- TOC entry 11052 (class 0 OID 0) --- Dependencies: 597 +-- Dependencies: 704 -- Name: TABLE mdl_oauth2_access_token; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13921,7 +13921,7 @@ COMMENT ON TABLE public.mdl_oauth2_access_token IS 'Stores access tokens for sys -- --- TOC entry 596 (class 1259 OID 19661) +-- TOC entry 705 (class 1259 OID 61820) -- Name: mdl_oauth2_access_token_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13937,7 +13937,7 @@ ALTER TABLE public.mdl_oauth2_access_token_id_seq OWNER TO postgres; -- -- TOC entry 11053 (class 0 OID 0) --- Dependencies: 596 +-- Dependencies: 705 -- Name: mdl_oauth2_access_token_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13945,7 +13945,7 @@ ALTER SEQUENCE public.mdl_oauth2_access_token_id_seq OWNED BY public.mdl_oauth2_ -- --- TOC entry 571 (class 1259 OID 19474) +-- TOC entry 706 (class 1259 OID 61822) -- Name: mdl_oauth2_endpoint; Type: TABLE; Schema: public; Owner: postgres -- @@ -13964,7 +13964,7 @@ ALTER TABLE public.mdl_oauth2_endpoint OWNER TO postgres; -- -- TOC entry 11054 (class 0 OID 0) --- Dependencies: 571 +-- Dependencies: 706 -- Name: TABLE mdl_oauth2_endpoint; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13972,7 +13972,7 @@ COMMENT ON TABLE public.mdl_oauth2_endpoint IS 'Describes the named endpoint for -- --- TOC entry 570 (class 1259 OID 19472) +-- TOC entry 707 (class 1259 OID 61829) -- Name: mdl_oauth2_endpoint_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13988,7 +13988,7 @@ ALTER TABLE public.mdl_oauth2_endpoint_id_seq OWNER TO postgres; -- -- TOC entry 11055 (class 0 OID 0) --- Dependencies: 570 +-- Dependencies: 707 -- Name: mdl_oauth2_endpoint_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13996,7 +13996,7 @@ ALTER SEQUENCE public.mdl_oauth2_endpoint_id_seq OWNED BY public.mdl_oauth2_endp -- --- TOC entry 573 (class 1259 OID 19487) +-- TOC entry 708 (class 1259 OID 61831) -- Name: mdl_oauth2_issuer; Type: TABLE; Schema: public; Owner: postgres -- @@ -14028,7 +14028,7 @@ ALTER TABLE public.mdl_oauth2_issuer OWNER TO postgres; -- -- TOC entry 11056 (class 0 OID 0) --- Dependencies: 573 +-- Dependencies: 708 -- Name: TABLE mdl_oauth2_issuer; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14036,7 +14036,7 @@ COMMENT ON TABLE public.mdl_oauth2_issuer IS 'Details for an oauth 2 connect ide -- --- TOC entry 572 (class 1259 OID 19485) +-- TOC entry 709 (class 1259 OID 61842) -- Name: mdl_oauth2_issuer_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14052,7 +14052,7 @@ ALTER TABLE public.mdl_oauth2_issuer_id_seq OWNER TO postgres; -- -- TOC entry 11057 (class 0 OID 0) --- Dependencies: 572 +-- Dependencies: 709 -- Name: mdl_oauth2_issuer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14060,7 +14060,7 @@ ALTER SEQUENCE public.mdl_oauth2_issuer_id_seq OWNED BY public.mdl_oauth2_issuer -- --- TOC entry 575 (class 1259 OID 19503) +-- TOC entry 710 (class 1259 OID 61844) -- Name: mdl_oauth2_system_account; Type: TABLE; Schema: public; Owner: postgres -- @@ -14081,7 +14081,7 @@ ALTER TABLE public.mdl_oauth2_system_account OWNER TO postgres; -- -- TOC entry 11058 (class 0 OID 0) --- Dependencies: 575 +-- Dependencies: 710 -- Name: TABLE mdl_oauth2_system_account; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14089,7 +14089,7 @@ COMMENT ON TABLE public.mdl_oauth2_system_account IS 'Stored details used to get -- --- TOC entry 574 (class 1259 OID 19501) +-- TOC entry 711 (class 1259 OID 61850) -- Name: mdl_oauth2_system_account_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14105,7 +14105,7 @@ ALTER TABLE public.mdl_oauth2_system_account_id_seq OWNER TO postgres; -- -- TOC entry 11059 (class 0 OID 0) --- Dependencies: 574 +-- Dependencies: 711 -- Name: mdl_oauth2_system_account_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14113,7 +14113,7 @@ ALTER SEQUENCE public.mdl_oauth2_system_account_id_seq OWNED BY public.mdl_oauth -- --- TOC entry 577 (class 1259 OID 19515) +-- TOC entry 712 (class 1259 OID 61852) -- Name: mdl_oauth2_user_field_mapping; Type: TABLE; Schema: public; Owner: postgres -- @@ -14132,7 +14132,7 @@ ALTER TABLE public.mdl_oauth2_user_field_mapping OWNER TO postgres; -- -- TOC entry 11060 (class 0 OID 0) --- Dependencies: 577 +-- Dependencies: 712 -- Name: TABLE mdl_oauth2_user_field_mapping; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14140,7 +14140,7 @@ COMMENT ON TABLE public.mdl_oauth2_user_field_mapping IS 'Mapping of oauth user -- --- TOC entry 576 (class 1259 OID 19513) +-- TOC entry 713 (class 1259 OID 61857) -- Name: mdl_oauth2_user_field_mapping_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14156,7 +14156,7 @@ ALTER TABLE public.mdl_oauth2_user_field_mapping_id_seq OWNER TO postgres; -- -- TOC entry 11061 (class 0 OID 0) --- Dependencies: 576 +-- Dependencies: 713 -- Name: mdl_oauth2_user_field_mapping_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14164,7 +14164,7 @@ ALTER SEQUENCE public.mdl_oauth2_user_field_mapping_id_seq OWNED BY public.mdl_o -- --- TOC entry 807 (class 1259 OID 21549) +-- TOC entry 714 (class 1259 OID 61859) -- Name: mdl_page; Type: TABLE; Schema: public; Owner: postgres -- @@ -14189,7 +14189,7 @@ ALTER TABLE public.mdl_page OWNER TO postgres; -- -- TOC entry 11062 (class 0 OID 0) --- Dependencies: 807 +-- Dependencies: 714 -- Name: TABLE mdl_page; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14197,7 +14197,7 @@ COMMENT ON TABLE public.mdl_page IS 'Each record is one page and its config data -- --- TOC entry 806 (class 1259 OID 21547) +-- TOC entry 715 (class 1259 OID 61873) -- Name: mdl_page_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14213,7 +14213,7 @@ ALTER TABLE public.mdl_page_id_seq OWNER TO postgres; -- -- TOC entry 11063 (class 0 OID 0) --- Dependencies: 806 +-- Dependencies: 715 -- Name: mdl_page_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14221,7 +14221,7 @@ ALTER SEQUENCE public.mdl_page_id_seq OWNED BY public.mdl_page.id; -- --- TOC entry 419 (class 1259 OID 18402) +-- TOC entry 716 (class 1259 OID 61875) -- Name: mdl_portfolio_instance; Type: TABLE; Schema: public; Owner: postgres -- @@ -14237,7 +14237,7 @@ ALTER TABLE public.mdl_portfolio_instance OWNER TO postgres; -- -- TOC entry 11064 (class 0 OID 0) --- Dependencies: 419 +-- Dependencies: 716 -- Name: TABLE mdl_portfolio_instance; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14245,7 +14245,7 @@ COMMENT ON TABLE public.mdl_portfolio_instance IS 'base table (not including con -- --- TOC entry 421 (class 1259 OID 18413) +-- TOC entry 717 (class 1259 OID 61881) -- Name: mdl_portfolio_instance_config; Type: TABLE; Schema: public; Owner: postgres -- @@ -14261,7 +14261,7 @@ ALTER TABLE public.mdl_portfolio_instance_config OWNER TO postgres; -- -- TOC entry 11065 (class 0 OID 0) --- Dependencies: 421 +-- Dependencies: 717 -- Name: TABLE mdl_portfolio_instance_config; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14269,7 +14269,7 @@ COMMENT ON TABLE public.mdl_portfolio_instance_config IS 'config for portfolio p -- --- TOC entry 420 (class 1259 OID 18411) +-- TOC entry 718 (class 1259 OID 61888) -- Name: mdl_portfolio_instance_config_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14285,7 +14285,7 @@ ALTER TABLE public.mdl_portfolio_instance_config_id_seq OWNER TO postgres; -- -- TOC entry 11066 (class 0 OID 0) --- Dependencies: 420 +-- Dependencies: 718 -- Name: mdl_portfolio_instance_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14293,7 +14293,7 @@ ALTER SEQUENCE public.mdl_portfolio_instance_config_id_seq OWNED BY public.mdl_p -- --- TOC entry 418 (class 1259 OID 18400) +-- TOC entry 719 (class 1259 OID 61890) -- Name: mdl_portfolio_instance_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14309,7 +14309,7 @@ ALTER TABLE public.mdl_portfolio_instance_id_seq OWNER TO postgres; -- -- TOC entry 11067 (class 0 OID 0) --- Dependencies: 418 +-- Dependencies: 719 -- Name: mdl_portfolio_instance_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14317,7 +14317,7 @@ ALTER SEQUENCE public.mdl_portfolio_instance_id_seq OWNED BY public.mdl_portfoli -- --- TOC entry 423 (class 1259 OID 18427) +-- TOC entry 720 (class 1259 OID 61892) -- Name: mdl_portfolio_instance_user; Type: TABLE; Schema: public; Owner: postgres -- @@ -14334,7 +14334,7 @@ ALTER TABLE public.mdl_portfolio_instance_user OWNER TO postgres; -- -- TOC entry 11068 (class 0 OID 0) --- Dependencies: 423 +-- Dependencies: 720 -- Name: TABLE mdl_portfolio_instance_user; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14342,7 +14342,7 @@ COMMENT ON TABLE public.mdl_portfolio_instance_user IS 'user data for portfolio -- --- TOC entry 422 (class 1259 OID 18425) +-- TOC entry 721 (class 1259 OID 61899) -- Name: mdl_portfolio_instance_user_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14358,7 +14358,7 @@ ALTER TABLE public.mdl_portfolio_instance_user_id_seq OWNER TO postgres; -- -- TOC entry 11069 (class 0 OID 0) --- Dependencies: 422 +-- Dependencies: 721 -- Name: mdl_portfolio_instance_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14366,7 +14366,7 @@ ALTER SEQUENCE public.mdl_portfolio_instance_user_id_seq OWNED BY public.mdl_por -- --- TOC entry 425 (class 1259 OID 18441) +-- TOC entry 722 (class 1259 OID 61901) -- Name: mdl_portfolio_log; Type: TABLE; Schema: public; Owner: postgres -- @@ -14389,7 +14389,7 @@ ALTER TABLE public.mdl_portfolio_log OWNER TO postgres; -- -- TOC entry 11070 (class 0 OID 0) --- Dependencies: 425 +-- Dependencies: 722 -- Name: TABLE mdl_portfolio_log; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14397,7 +14397,7 @@ COMMENT ON TABLE public.mdl_portfolio_log IS 'log of portfolio transfers (used t -- --- TOC entry 424 (class 1259 OID 18439) +-- TOC entry 723 (class 1259 OID 61913) -- Name: mdl_portfolio_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14413,7 +14413,7 @@ ALTER TABLE public.mdl_portfolio_log_id_seq OWNER TO postgres; -- -- TOC entry 11071 (class 0 OID 0) --- Dependencies: 424 +-- Dependencies: 723 -- Name: mdl_portfolio_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14421,7 +14421,7 @@ ALTER SEQUENCE public.mdl_portfolio_log_id_seq OWNED BY public.mdl_portfolio_log -- --- TOC entry 947 (class 1259 OID 22733) +-- TOC entry 724 (class 1259 OID 61915) -- Name: mdl_portfolio_mahara_queue; Type: TABLE; Schema: public; Owner: postgres -- @@ -14436,7 +14436,7 @@ ALTER TABLE public.mdl_portfolio_mahara_queue OWNER TO postgres; -- -- TOC entry 11072 (class 0 OID 0) --- Dependencies: 947 +-- Dependencies: 724 -- Name: TABLE mdl_portfolio_mahara_queue; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14444,7 +14444,7 @@ COMMENT ON TABLE public.mdl_portfolio_mahara_queue IS 'maps mahara tokens to tra -- --- TOC entry 946 (class 1259 OID 22731) +-- TOC entry 725 (class 1259 OID 61919) -- Name: mdl_portfolio_mahara_queue_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14460,7 +14460,7 @@ ALTER TABLE public.mdl_portfolio_mahara_queue_id_seq OWNER TO postgres; -- -- TOC entry 11073 (class 0 OID 0) --- Dependencies: 946 +-- Dependencies: 725 -- Name: mdl_portfolio_mahara_queue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14468,7 +14468,7 @@ ALTER SEQUENCE public.mdl_portfolio_mahara_queue_id_seq OWNED BY public.mdl_port -- --- TOC entry 427 (class 1259 OID 18460) +-- TOC entry 726 (class 1259 OID 61921) -- Name: mdl_portfolio_tempdata; Type: TABLE; Schema: public; Owner: postgres -- @@ -14486,7 +14486,7 @@ ALTER TABLE public.mdl_portfolio_tempdata OWNER TO postgres; -- -- TOC entry 11074 (class 0 OID 0) --- Dependencies: 427 +-- Dependencies: 726 -- Name: TABLE mdl_portfolio_tempdata; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14494,7 +14494,7 @@ COMMENT ON TABLE public.mdl_portfolio_tempdata IS 'stores temporary data for por -- --- TOC entry 426 (class 1259 OID 18458) +-- TOC entry 727 (class 1259 OID 61929) -- Name: mdl_portfolio_tempdata_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14510,7 +14510,7 @@ ALTER TABLE public.mdl_portfolio_tempdata_id_seq OWNER TO postgres; -- -- TOC entry 11075 (class 0 OID 0) --- Dependencies: 426 +-- Dependencies: 727 -- Name: mdl_portfolio_tempdata_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14518,7 +14518,7 @@ ALTER SEQUENCE public.mdl_portfolio_tempdata_id_seq OWNED BY public.mdl_portfoli -- --- TOC entry 286 (class 1259 OID 17291) +-- TOC entry 728 (class 1259 OID 61931) -- Name: mdl_post; Type: TABLE; Schema: public; Owner: postgres -- @@ -14549,7 +14549,7 @@ ALTER TABLE public.mdl_post OWNER TO postgres; -- -- TOC entry 11076 (class 0 OID 0) --- Dependencies: 286 +-- Dependencies: 728 -- Name: TABLE mdl_post; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14557,7 +14557,7 @@ COMMENT ON TABLE public.mdl_post IS 'Generic post table to hold data blog entrie -- --- TOC entry 285 (class 1259 OID 17289) +-- TOC entry 729 (class 1259 OID 61951) -- Name: mdl_post_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14573,7 +14573,7 @@ ALTER TABLE public.mdl_post_id_seq OWNER TO postgres; -- -- TOC entry 11077 (class 0 OID 0) --- Dependencies: 285 +-- Dependencies: 729 -- Name: mdl_post_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14581,7 +14581,7 @@ ALTER SEQUENCE public.mdl_post_id_seq OWNED BY public.mdl_post.id; -- --- TOC entry 479 (class 1259 OID 18837) +-- TOC entry 730 (class 1259 OID 61953) -- Name: mdl_profiling; Type: TABLE; Schema: public; Owner: postgres -- @@ -14604,7 +14604,7 @@ ALTER TABLE public.mdl_profiling OWNER TO postgres; -- -- TOC entry 11078 (class 0 OID 0) --- Dependencies: 479 +-- Dependencies: 730 -- Name: TABLE mdl_profiling; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14612,7 +14612,7 @@ COMMENT ON TABLE public.mdl_profiling IS 'Stores the results of all the profilin -- --- TOC entry 478 (class 1259 OID 18835) +-- TOC entry 731 (class 1259 OID 61963) -- Name: mdl_profiling_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14628,7 +14628,7 @@ ALTER TABLE public.mdl_profiling_id_seq OWNER TO postgres; -- -- TOC entry 11079 (class 0 OID 0) --- Dependencies: 478 +-- Dependencies: 731 -- Name: mdl_profiling_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14636,7 +14636,7 @@ ALTER SEQUENCE public.mdl_profiling_id_seq OWNED BY public.mdl_profiling.id; -- --- TOC entry 633 (class 1259 OID 19928) +-- TOC entry 732 (class 1259 OID 61965) -- Name: mdl_qtype_ddimageortext; Type: TABLE; Schema: public; Owner: postgres -- @@ -14658,7 +14658,7 @@ ALTER TABLE public.mdl_qtype_ddimageortext OWNER TO postgres; -- -- TOC entry 11080 (class 0 OID 0) --- Dependencies: 633 +-- Dependencies: 732 -- Name: TABLE mdl_qtype_ddimageortext; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14666,7 +14666,7 @@ COMMENT ON TABLE public.mdl_qtype_ddimageortext IS 'Defines drag and drop (text -- --- TOC entry 637 (class 1259 OID 19963) +-- TOC entry 733 (class 1259 OID 61977) -- Name: mdl_qtype_ddimageortext_drags; Type: TABLE; Schema: public; Owner: postgres -- @@ -14684,7 +14684,7 @@ ALTER TABLE public.mdl_qtype_ddimageortext_drags OWNER TO postgres; -- -- TOC entry 11081 (class 0 OID 0) --- Dependencies: 637 +-- Dependencies: 733 -- Name: TABLE mdl_qtype_ddimageortext_drags; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14692,7 +14692,7 @@ COMMENT ON TABLE public.mdl_qtype_ddimageortext_drags IS 'Images to drag. Actual -- --- TOC entry 636 (class 1259 OID 19961) +-- TOC entry 734 (class 1259 OID 61987) -- Name: mdl_qtype_ddimageortext_drags_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14708,7 +14708,7 @@ ALTER TABLE public.mdl_qtype_ddimageortext_drags_id_seq OWNER TO postgres; -- -- TOC entry 11082 (class 0 OID 0) --- Dependencies: 636 +-- Dependencies: 734 -- Name: mdl_qtype_ddimageortext_drags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14716,7 +14716,7 @@ ALTER SEQUENCE public.mdl_qtype_ddimageortext_drags_id_seq OWNED BY public.mdl_q -- --- TOC entry 635 (class 1259 OID 19946) +-- TOC entry 735 (class 1259 OID 61989) -- Name: mdl_qtype_ddimageortext_drops; Type: TABLE; Schema: public; Owner: postgres -- @@ -14735,7 +14735,7 @@ ALTER TABLE public.mdl_qtype_ddimageortext_drops OWNER TO postgres; -- -- TOC entry 11083 (class 0 OID 0) --- Dependencies: 635 +-- Dependencies: 735 -- Name: TABLE mdl_qtype_ddimageortext_drops; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14743,7 +14743,7 @@ COMMENT ON TABLE public.mdl_qtype_ddimageortext_drops IS 'Drop boxes'; -- --- TOC entry 634 (class 1259 OID 19944) +-- TOC entry 736 (class 1259 OID 62000) -- Name: mdl_qtype_ddimageortext_drops_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14759,7 +14759,7 @@ ALTER TABLE public.mdl_qtype_ddimageortext_drops_id_seq OWNER TO postgres; -- -- TOC entry 11084 (class 0 OID 0) --- Dependencies: 634 +-- Dependencies: 736 -- Name: mdl_qtype_ddimageortext_drops_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14767,7 +14767,7 @@ ALTER SEQUENCE public.mdl_qtype_ddimageortext_drops_id_seq OWNED BY public.mdl_q -- --- TOC entry 632 (class 1259 OID 19926) +-- TOC entry 737 (class 1259 OID 62002) -- Name: mdl_qtype_ddimageortext_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14783,7 +14783,7 @@ ALTER TABLE public.mdl_qtype_ddimageortext_id_seq OWNER TO postgres; -- -- TOC entry 11085 (class 0 OID 0) --- Dependencies: 632 +-- Dependencies: 737 -- Name: mdl_qtype_ddimageortext_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14791,7 +14791,7 @@ ALTER SEQUENCE public.mdl_qtype_ddimageortext_id_seq OWNED BY public.mdl_qtype_d -- --- TOC entry 639 (class 1259 OID 19979) +-- TOC entry 738 (class 1259 OID 62004) -- Name: mdl_qtype_ddmarker; Type: TABLE; Schema: public; Owner: postgres -- @@ -14814,7 +14814,7 @@ ALTER TABLE public.mdl_qtype_ddmarker OWNER TO postgres; -- -- TOC entry 11086 (class 0 OID 0) --- Dependencies: 639 +-- Dependencies: 738 -- Name: TABLE mdl_qtype_ddmarker; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14822,7 +14822,7 @@ COMMENT ON TABLE public.mdl_qtype_ddmarker IS 'Defines drag and drop (text or im -- --- TOC entry 643 (class 1259 OID 20013) +-- TOC entry 739 (class 1259 OID 62017) -- Name: mdl_qtype_ddmarker_drags; Type: TABLE; Schema: public; Owner: postgres -- @@ -14840,7 +14840,7 @@ ALTER TABLE public.mdl_qtype_ddmarker_drags OWNER TO postgres; -- -- TOC entry 11087 (class 0 OID 0) --- Dependencies: 643 +-- Dependencies: 739 -- Name: TABLE mdl_qtype_ddmarker_drags; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14848,7 +14848,7 @@ COMMENT ON TABLE public.mdl_qtype_ddmarker_drags IS 'Labels for markers to drag. -- --- TOC entry 642 (class 1259 OID 20011) +-- TOC entry 740 (class 1259 OID 62027) -- Name: mdl_qtype_ddmarker_drags_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14864,7 +14864,7 @@ ALTER TABLE public.mdl_qtype_ddmarker_drags_id_seq OWNER TO postgres; -- -- TOC entry 11088 (class 0 OID 0) --- Dependencies: 642 +-- Dependencies: 740 -- Name: mdl_qtype_ddmarker_drags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14872,7 +14872,7 @@ ALTER SEQUENCE public.mdl_qtype_ddmarker_drags_id_seq OWNED BY public.mdl_qtype_ -- --- TOC entry 641 (class 1259 OID 19998) +-- TOC entry 741 (class 1259 OID 62029) -- Name: mdl_qtype_ddmarker_drops; Type: TABLE; Schema: public; Owner: postgres -- @@ -14890,7 +14890,7 @@ ALTER TABLE public.mdl_qtype_ddmarker_drops OWNER TO postgres; -- -- TOC entry 11089 (class 0 OID 0) --- Dependencies: 641 +-- Dependencies: 741 -- Name: TABLE mdl_qtype_ddmarker_drops; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14898,7 +14898,7 @@ COMMENT ON TABLE public.mdl_qtype_ddmarker_drops IS 'drop regions'; -- --- TOC entry 640 (class 1259 OID 19996) +-- TOC entry 742 (class 1259 OID 62038) -- Name: mdl_qtype_ddmarker_drops_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14914,7 +14914,7 @@ ALTER TABLE public.mdl_qtype_ddmarker_drops_id_seq OWNER TO postgres; -- -- TOC entry 11090 (class 0 OID 0) --- Dependencies: 640 +-- Dependencies: 742 -- Name: mdl_qtype_ddmarker_drops_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14922,7 +14922,7 @@ ALTER SEQUENCE public.mdl_qtype_ddmarker_drops_id_seq OWNED BY public.mdl_qtype_ -- --- TOC entry 638 (class 1259 OID 19977) +-- TOC entry 743 (class 1259 OID 62040) -- Name: mdl_qtype_ddmarker_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14938,7 +14938,7 @@ ALTER TABLE public.mdl_qtype_ddmarker_id_seq OWNER TO postgres; -- -- TOC entry 11091 (class 0 OID 0) --- Dependencies: 638 +-- Dependencies: 743 -- Name: mdl_qtype_ddmarker_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14946,7 +14946,7 @@ ALTER SEQUENCE public.mdl_qtype_ddmarker_id_seq OWNED BY public.mdl_qtype_ddmark -- --- TOC entry 647 (class 1259 OID 20047) +-- TOC entry 744 (class 1259 OID 62042) -- Name: mdl_qtype_essay_options; Type: TABLE; Schema: public; Owner: postgres -- @@ -14970,7 +14970,7 @@ ALTER TABLE public.mdl_qtype_essay_options OWNER TO postgres; -- -- TOC entry 11092 (class 0 OID 0) --- Dependencies: 647 +-- Dependencies: 744 -- Name: TABLE mdl_qtype_essay_options; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14978,7 +14978,7 @@ COMMENT ON TABLE public.mdl_qtype_essay_options IS 'Extra options for essay ques -- --- TOC entry 646 (class 1259 OID 20045) +-- TOC entry 745 (class 1259 OID 62055) -- Name: mdl_qtype_essay_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14994,7 +14994,7 @@ ALTER TABLE public.mdl_qtype_essay_options_id_seq OWNER TO postgres; -- -- TOC entry 11093 (class 0 OID 0) --- Dependencies: 646 +-- Dependencies: 745 -- Name: mdl_qtype_essay_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15002,7 +15002,7 @@ ALTER SEQUENCE public.mdl_qtype_essay_options_id_seq OWNED BY public.mdl_qtype_e -- --- TOC entry 651 (class 1259 OID 20084) +-- TOC entry 746 (class 1259 OID 62057) -- Name: mdl_qtype_match_options; Type: TABLE; Schema: public; Owner: postgres -- @@ -15024,7 +15024,7 @@ ALTER TABLE public.mdl_qtype_match_options OWNER TO postgres; -- -- TOC entry 11094 (class 0 OID 0) --- Dependencies: 651 +-- Dependencies: 746 -- Name: TABLE mdl_qtype_match_options; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15032,7 +15032,7 @@ COMMENT ON TABLE public.mdl_qtype_match_options IS 'Defines the question-type sp -- --- TOC entry 650 (class 1259 OID 20082) +-- TOC entry 747 (class 1259 OID 62069) -- Name: mdl_qtype_match_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15048,7 +15048,7 @@ ALTER TABLE public.mdl_qtype_match_options_id_seq OWNER TO postgres; -- -- TOC entry 11095 (class 0 OID 0) --- Dependencies: 650 +-- Dependencies: 747 -- Name: mdl_qtype_match_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15056,7 +15056,7 @@ ALTER SEQUENCE public.mdl_qtype_match_options_id_seq OWNED BY public.mdl_qtype_m -- --- TOC entry 653 (class 1259 OID 20102) +-- TOC entry 748 (class 1259 OID 62071) -- Name: mdl_qtype_match_subquestions; Type: TABLE; Schema: public; Owner: postgres -- @@ -15073,7 +15073,7 @@ ALTER TABLE public.mdl_qtype_match_subquestions OWNER TO postgres; -- -- TOC entry 11096 (class 0 OID 0) --- Dependencies: 653 +-- Dependencies: 748 -- Name: TABLE mdl_qtype_match_subquestions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15081,7 +15081,7 @@ COMMENT ON TABLE public.mdl_qtype_match_subquestions IS 'The subquestions that m -- --- TOC entry 652 (class 1259 OID 20100) +-- TOC entry 749 (class 1259 OID 62080) -- Name: mdl_qtype_match_subquestions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15097,7 +15097,7 @@ ALTER TABLE public.mdl_qtype_match_subquestions_id_seq OWNER TO postgres; -- -- TOC entry 11097 (class 0 OID 0) --- Dependencies: 652 +-- Dependencies: 749 -- Name: mdl_qtype_match_subquestions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15105,7 +15105,7 @@ ALTER SEQUENCE public.mdl_qtype_match_subquestions_id_seq OWNED BY public.mdl_qt -- --- TOC entry 657 (class 1259 OID 20130) +-- TOC entry 750 (class 1259 OID 62082) -- Name: mdl_qtype_multichoice_options; Type: TABLE; Schema: public; Owner: postgres -- @@ -15131,7 +15131,7 @@ ALTER TABLE public.mdl_qtype_multichoice_options OWNER TO postgres; -- -- TOC entry 11098 (class 0 OID 0) --- Dependencies: 657 +-- Dependencies: 750 -- Name: TABLE mdl_qtype_multichoice_options; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15139,7 +15139,7 @@ COMMENT ON TABLE public.mdl_qtype_multichoice_options IS 'Options for multiple c -- --- TOC entry 656 (class 1259 OID 20128) +-- TOC entry 751 (class 1259 OID 62098) -- Name: mdl_qtype_multichoice_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15155,7 +15155,7 @@ ALTER TABLE public.mdl_qtype_multichoice_options_id_seq OWNER TO postgres; -- -- TOC entry 11099 (class 0 OID 0) --- Dependencies: 656 +-- Dependencies: 751 -- Name: mdl_qtype_multichoice_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15163,7 +15163,7 @@ ALTER SEQUENCE public.mdl_qtype_multichoice_options_id_seq OWNED BY public.mdl_q -- --- TOC entry 665 (class 1259 OID 20192) +-- TOC entry 752 (class 1259 OID 62100) -- Name: mdl_qtype_randomsamatch_options; Type: TABLE; Schema: public; Owner: postgres -- @@ -15186,7 +15186,7 @@ ALTER TABLE public.mdl_qtype_randomsamatch_options OWNER TO postgres; -- -- TOC entry 11100 (class 0 OID 0) --- Dependencies: 665 +-- Dependencies: 752 -- Name: TABLE mdl_qtype_randomsamatch_options; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15194,7 +15194,7 @@ COMMENT ON TABLE public.mdl_qtype_randomsamatch_options IS 'Info about a random -- --- TOC entry 664 (class 1259 OID 20190) +-- TOC entry 753 (class 1259 OID 62113) -- Name: mdl_qtype_randomsamatch_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15210,7 +15210,7 @@ ALTER TABLE public.mdl_qtype_randomsamatch_options_id_seq OWNER TO postgres; -- -- TOC entry 11101 (class 0 OID 0) --- Dependencies: 664 +-- Dependencies: 753 -- Name: mdl_qtype_randomsamatch_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15218,7 +15218,7 @@ ALTER SEQUENCE public.mdl_qtype_randomsamatch_options_id_seq OWNED BY public.mdl -- --- TOC entry 667 (class 1259 OID 20211) +-- TOC entry 754 (class 1259 OID 62115) -- Name: mdl_qtype_shortanswer_options; Type: TABLE; Schema: public; Owner: postgres -- @@ -15233,7 +15233,7 @@ ALTER TABLE public.mdl_qtype_shortanswer_options OWNER TO postgres; -- -- TOC entry 11102 (class 0 OID 0) --- Dependencies: 667 +-- Dependencies: 754 -- Name: TABLE mdl_qtype_shortanswer_options; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15241,7 +15241,7 @@ COMMENT ON TABLE public.mdl_qtype_shortanswer_options IS 'Options for short answ -- --- TOC entry 666 (class 1259 OID 20209) +-- TOC entry 755 (class 1259 OID 62120) -- Name: mdl_qtype_shortanswer_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15257,7 +15257,7 @@ ALTER TABLE public.mdl_qtype_shortanswer_options_id_seq OWNER TO postgres; -- -- TOC entry 11103 (class 0 OID 0) --- Dependencies: 666 +-- Dependencies: 755 -- Name: mdl_qtype_shortanswer_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15265,7 +15265,7 @@ ALTER SEQUENCE public.mdl_qtype_shortanswer_options_id_seq OWNED BY public.mdl_q -- --- TOC entry 319 (class 1259 OID 17557) +-- TOC entry 756 (class 1259 OID 62122) -- Name: mdl_question; Type: TABLE; Schema: public; Owner: postgres -- @@ -15297,7 +15297,7 @@ ALTER TABLE public.mdl_question OWNER TO postgres; -- -- TOC entry 11104 (class 0 OID 0) --- Dependencies: 319 +-- Dependencies: 756 -- Name: TABLE mdl_question; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15305,7 +15305,7 @@ COMMENT ON TABLE public.mdl_question IS 'The questions themselves'; -- --- TOC entry 321 (class 1259 OID 17588) +-- TOC entry 757 (class 1259 OID 62142) -- Name: mdl_question_answers; Type: TABLE; Schema: public; Owner: postgres -- @@ -15324,7 +15324,7 @@ ALTER TABLE public.mdl_question_answers OWNER TO postgres; -- -- TOC entry 11105 (class 0 OID 0) --- Dependencies: 321 +-- Dependencies: 757 -- Name: TABLE mdl_question_answers; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15332,7 +15332,7 @@ COMMENT ON TABLE public.mdl_question_answers IS 'Answers, with a fractional grad -- --- TOC entry 320 (class 1259 OID 17586) +-- TOC entry 758 (class 1259 OID 62152) -- Name: mdl_question_answers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15348,7 +15348,7 @@ ALTER TABLE public.mdl_question_answers_id_seq OWNER TO postgres; -- -- TOC entry 11106 (class 0 OID 0) --- Dependencies: 320 +-- Dependencies: 758 -- Name: mdl_question_answers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15356,7 +15356,7 @@ ALTER SEQUENCE public.mdl_question_answers_id_seq OWNED BY public.mdl_question_a -- --- TOC entry 331 (class 1259 OID 17659) +-- TOC entry 759 (class 1259 OID 62154) -- Name: mdl_question_attempt_step_data; Type: TABLE; Schema: public; Owner: postgres -- @@ -15372,7 +15372,7 @@ ALTER TABLE public.mdl_question_attempt_step_data OWNER TO postgres; -- -- TOC entry 11107 (class 0 OID 0) --- Dependencies: 331 +-- Dependencies: 759 -- Name: TABLE mdl_question_attempt_step_data; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15380,7 +15380,7 @@ COMMENT ON TABLE public.mdl_question_attempt_step_data IS 'Each question_attempt -- --- TOC entry 330 (class 1259 OID 17657) +-- TOC entry 760 (class 1259 OID 62161) -- Name: mdl_question_attempt_step_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15396,7 +15396,7 @@ ALTER TABLE public.mdl_question_attempt_step_data_id_seq OWNER TO postgres; -- -- TOC entry 11108 (class 0 OID 0) --- Dependencies: 330 +-- Dependencies: 760 -- Name: mdl_question_attempt_step_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15404,7 +15404,7 @@ ALTER SEQUENCE public.mdl_question_attempt_step_data_id_seq OWNED BY public.mdl_ -- --- TOC entry 329 (class 1259 OID 17647) +-- TOC entry 761 (class 1259 OID 62163) -- Name: mdl_question_attempt_steps; Type: TABLE; Schema: public; Owner: postgres -- @@ -15423,7 +15423,7 @@ ALTER TABLE public.mdl_question_attempt_steps OWNER TO postgres; -- -- TOC entry 11109 (class 0 OID 0) --- Dependencies: 329 +-- Dependencies: 761 -- Name: TABLE mdl_question_attempt_steps; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15431,7 +15431,7 @@ COMMENT ON TABLE public.mdl_question_attempt_steps IS 'Stores one step in in a q -- --- TOC entry 328 (class 1259 OID 17645) +-- TOC entry 762 (class 1259 OID 62167) -- Name: mdl_question_attempt_steps_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15447,7 +15447,7 @@ ALTER TABLE public.mdl_question_attempt_steps_id_seq OWNER TO postgres; -- -- TOC entry 11110 (class 0 OID 0) --- Dependencies: 328 +-- Dependencies: 762 -- Name: mdl_question_attempt_steps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15455,7 +15455,7 @@ ALTER SEQUENCE public.mdl_question_attempt_steps_id_seq OWNED BY public.mdl_ques -- --- TOC entry 327 (class 1259 OID 17628) +-- TOC entry 763 (class 1259 OID 62169) -- Name: mdl_question_attempts; Type: TABLE; Schema: public; Owner: postgres -- @@ -15481,7 +15481,7 @@ ALTER TABLE public.mdl_question_attempts OWNER TO postgres; -- -- TOC entry 11111 (class 0 OID 0) --- Dependencies: 327 +-- Dependencies: 763 -- Name: TABLE mdl_question_attempts; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15489,7 +15489,7 @@ COMMENT ON TABLE public.mdl_question_attempts IS 'Each row here corresponds to a -- --- TOC entry 326 (class 1259 OID 17626) +-- TOC entry 764 (class 1259 OID 62179) -- Name: mdl_question_attempts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15505,7 +15505,7 @@ ALTER TABLE public.mdl_question_attempts_id_seq OWNER TO postgres; -- -- TOC entry 11112 (class 0 OID 0) --- Dependencies: 326 +-- Dependencies: 764 -- Name: mdl_question_attempts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15513,7 +15513,7 @@ ALTER SEQUENCE public.mdl_question_attempts_id_seq OWNED BY public.mdl_question_ -- --- TOC entry 623 (class 1259 OID 19849) +-- TOC entry 765 (class 1259 OID 62181) -- Name: mdl_question_calculated; Type: TABLE; Schema: public; Owner: postgres -- @@ -15532,7 +15532,7 @@ ALTER TABLE public.mdl_question_calculated OWNER TO postgres; -- -- TOC entry 11113 (class 0 OID 0) --- Dependencies: 623 +-- Dependencies: 765 -- Name: TABLE mdl_question_calculated; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15540,7 +15540,7 @@ COMMENT ON TABLE public.mdl_question_calculated IS 'Options for questions of typ -- --- TOC entry 622 (class 1259 OID 19847) +-- TOC entry 766 (class 1259 OID 62190) -- Name: mdl_question_calculated_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15556,7 +15556,7 @@ ALTER TABLE public.mdl_question_calculated_id_seq OWNER TO postgres; -- -- TOC entry 11114 (class 0 OID 0) --- Dependencies: 622 +-- Dependencies: 766 -- Name: mdl_question_calculated_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15564,7 +15564,7 @@ ALTER SEQUENCE public.mdl_question_calculated_id_seq OWNED BY public.mdl_questio -- --- TOC entry 625 (class 1259 OID 19865) +-- TOC entry 767 (class 1259 OID 62192) -- Name: mdl_question_calculated_options; Type: TABLE; Schema: public; Owner: postgres -- @@ -15589,7 +15589,7 @@ ALTER TABLE public.mdl_question_calculated_options OWNER TO postgres; -- -- TOC entry 11115 (class 0 OID 0) --- Dependencies: 625 +-- Dependencies: 767 -- Name: TABLE mdl_question_calculated_options; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15597,7 +15597,7 @@ COMMENT ON TABLE public.mdl_question_calculated_options IS 'Options for question -- --- TOC entry 624 (class 1259 OID 19863) +-- TOC entry 768 (class 1259 OID 62207) -- Name: mdl_question_calculated_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15613,7 +15613,7 @@ ALTER TABLE public.mdl_question_calculated_options_id_seq OWNER TO postgres; -- -- TOC entry 11116 (class 0 OID 0) --- Dependencies: 624 +-- Dependencies: 768 -- Name: mdl_question_calculated_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15621,7 +15621,7 @@ ALTER SEQUENCE public.mdl_question_calculated_options_id_seq OWNED BY public.mdl -- --- TOC entry 317 (class 1259 OID 17536) +-- TOC entry 769 (class 1259 OID 62209) -- Name: mdl_question_categories; Type: TABLE; Schema: public; Owner: postgres -- @@ -15642,7 +15642,7 @@ ALTER TABLE public.mdl_question_categories OWNER TO postgres; -- -- TOC entry 11117 (class 0 OID 0) --- Dependencies: 317 +-- Dependencies: 769 -- Name: TABLE mdl_question_categories; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15650,7 +15650,7 @@ COMMENT ON TABLE public.mdl_question_categories IS 'Categories are for grouping -- --- TOC entry 316 (class 1259 OID 17534) +-- TOC entry 770 (class 1259 OID 62221) -- Name: mdl_question_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15666,7 +15666,7 @@ ALTER TABLE public.mdl_question_categories_id_seq OWNER TO postgres; -- -- TOC entry 11118 (class 0 OID 0) --- Dependencies: 316 +-- Dependencies: 770 -- Name: mdl_question_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15674,7 +15674,7 @@ ALTER SEQUENCE public.mdl_question_categories_id_seq OWNED BY public.mdl_questio -- --- TOC entry 627 (class 1259 OID 19886) +-- TOC entry 771 (class 1259 OID 62223) -- Name: mdl_question_dataset_definitions; Type: TABLE; Schema: public; Owner: postgres -- @@ -15692,7 +15692,7 @@ ALTER TABLE public.mdl_question_dataset_definitions OWNER TO postgres; -- -- TOC entry 11119 (class 0 OID 0) --- Dependencies: 627 +-- Dependencies: 771 -- Name: TABLE mdl_question_dataset_definitions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15700,7 +15700,7 @@ COMMENT ON TABLE public.mdl_question_dataset_definitions IS 'Organises and store -- --- TOC entry 626 (class 1259 OID 19884) +-- TOC entry 772 (class 1259 OID 62234) -- Name: mdl_question_dataset_definitions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15716,7 +15716,7 @@ ALTER TABLE public.mdl_question_dataset_definitions_id_seq OWNER TO postgres; -- -- TOC entry 11120 (class 0 OID 0) --- Dependencies: 626 +-- Dependencies: 772 -- Name: mdl_question_dataset_definitions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15724,7 +15724,7 @@ ALTER SEQUENCE public.mdl_question_dataset_definitions_id_seq OWNED BY public.md -- --- TOC entry 629 (class 1259 OID 19903) +-- TOC entry 773 (class 1259 OID 62236) -- Name: mdl_question_dataset_items; Type: TABLE; Schema: public; Owner: postgres -- @@ -15740,7 +15740,7 @@ ALTER TABLE public.mdl_question_dataset_items OWNER TO postgres; -- -- TOC entry 11121 (class 0 OID 0) --- Dependencies: 629 +-- Dependencies: 773 -- Name: TABLE mdl_question_dataset_items; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15748,7 +15748,7 @@ COMMENT ON TABLE public.mdl_question_dataset_items IS 'Individual dataset items' -- --- TOC entry 628 (class 1259 OID 19901) +-- TOC entry 774 (class 1259 OID 62242) -- Name: mdl_question_dataset_items_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15764,7 +15764,7 @@ ALTER TABLE public.mdl_question_dataset_items_id_seq OWNER TO postgres; -- -- TOC entry 11122 (class 0 OID 0) --- Dependencies: 628 +-- Dependencies: 774 -- Name: mdl_question_dataset_items_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15772,7 +15772,7 @@ ALTER SEQUENCE public.mdl_question_dataset_items_id_seq OWNED BY public.mdl_ques -- --- TOC entry 631 (class 1259 OID 19915) +-- TOC entry 775 (class 1259 OID 62244) -- Name: mdl_question_datasets; Type: TABLE; Schema: public; Owner: postgres -- @@ -15787,7 +15787,7 @@ ALTER TABLE public.mdl_question_datasets OWNER TO postgres; -- -- TOC entry 11123 (class 0 OID 0) --- Dependencies: 631 +-- Dependencies: 775 -- Name: TABLE mdl_question_datasets; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15795,7 +15795,7 @@ COMMENT ON TABLE public.mdl_question_datasets IS 'Many-many relation between que -- --- TOC entry 630 (class 1259 OID 19913) +-- TOC entry 776 (class 1259 OID 62249) -- Name: mdl_question_datasets_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15811,7 +15811,7 @@ ALTER TABLE public.mdl_question_datasets_id_seq OWNER TO postgres; -- -- TOC entry 11124 (class 0 OID 0) --- Dependencies: 630 +-- Dependencies: 776 -- Name: mdl_question_datasets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15819,7 +15819,7 @@ ALTER SEQUENCE public.mdl_question_datasets_id_seq OWNED BY public.mdl_question_ -- --- TOC entry 645 (class 1259 OID 20029) +-- TOC entry 777 (class 1259 OID 62251) -- Name: mdl_question_ddwtos; Type: TABLE; Schema: public; Owner: postgres -- @@ -15841,7 +15841,7 @@ ALTER TABLE public.mdl_question_ddwtos OWNER TO postgres; -- -- TOC entry 11125 (class 0 OID 0) --- Dependencies: 645 +-- Dependencies: 777 -- Name: TABLE mdl_question_ddwtos; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15849,7 +15849,7 @@ COMMENT ON TABLE public.mdl_question_ddwtos IS 'Defines drag and drop (words int -- --- TOC entry 644 (class 1259 OID 20027) +-- TOC entry 778 (class 1259 OID 62263) -- Name: mdl_question_ddwtos_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15865,7 +15865,7 @@ ALTER TABLE public.mdl_question_ddwtos_id_seq OWNER TO postgres; -- -- TOC entry 11126 (class 0 OID 0) --- Dependencies: 644 +-- Dependencies: 778 -- Name: mdl_question_ddwtos_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15873,7 +15873,7 @@ ALTER SEQUENCE public.mdl_question_ddwtos_id_seq OWNED BY public.mdl_question_dd -- --- TOC entry 649 (class 1259 OID 20066) +-- TOC entry 779 (class 1259 OID 62265) -- Name: mdl_question_gapselect; Type: TABLE; Schema: public; Owner: postgres -- @@ -15895,7 +15895,7 @@ ALTER TABLE public.mdl_question_gapselect OWNER TO postgres; -- -- TOC entry 11127 (class 0 OID 0) --- Dependencies: 649 +-- Dependencies: 779 -- Name: TABLE mdl_question_gapselect; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15903,7 +15903,7 @@ COMMENT ON TABLE public.mdl_question_gapselect IS 'Defines select missing words -- --- TOC entry 648 (class 1259 OID 20064) +-- TOC entry 780 (class 1259 OID 62277) -- Name: mdl_question_gapselect_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15919,7 +15919,7 @@ ALTER TABLE public.mdl_question_gapselect_id_seq OWNER TO postgres; -- -- TOC entry 11128 (class 0 OID 0) --- Dependencies: 648 +-- Dependencies: 780 -- Name: mdl_question_gapselect_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15927,7 +15927,7 @@ ALTER SEQUENCE public.mdl_question_gapselect_id_seq OWNED BY public.mdl_question -- --- TOC entry 323 (class 1259 OID 17604) +-- TOC entry 781 (class 1259 OID 62279) -- Name: mdl_question_hints; Type: TABLE; Schema: public; Owner: postgres -- @@ -15946,7 +15946,7 @@ ALTER TABLE public.mdl_question_hints OWNER TO postgres; -- -- TOC entry 11129 (class 0 OID 0) --- Dependencies: 323 +-- Dependencies: 781 -- Name: TABLE mdl_question_hints; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15954,7 +15954,7 @@ COMMENT ON TABLE public.mdl_question_hints IS 'Stores the the part of the questi -- --- TOC entry 322 (class 1259 OID 17602) +-- TOC entry 782 (class 1259 OID 62286) -- Name: mdl_question_hints_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15970,7 +15970,7 @@ ALTER TABLE public.mdl_question_hints_id_seq OWNER TO postgres; -- -- TOC entry 11130 (class 0 OID 0) --- Dependencies: 322 +-- Dependencies: 782 -- Name: mdl_question_hints_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15978,7 +15978,7 @@ ALTER SEQUENCE public.mdl_question_hints_id_seq OWNED BY public.mdl_question_hin -- --- TOC entry 318 (class 1259 OID 17555) +-- TOC entry 783 (class 1259 OID 62288) -- Name: mdl_question_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15994,7 +15994,7 @@ ALTER TABLE public.mdl_question_id_seq OWNER TO postgres; -- -- TOC entry 11131 (class 0 OID 0) --- Dependencies: 318 +-- Dependencies: 783 -- Name: mdl_question_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16002,7 +16002,7 @@ ALTER SEQUENCE public.mdl_question_id_seq OWNED BY public.mdl_question.id; -- --- TOC entry 655 (class 1259 OID 20117) +-- TOC entry 784 (class 1259 OID 62290) -- Name: mdl_question_multianswer; Type: TABLE; Schema: public; Owner: postgres -- @@ -16017,7 +16017,7 @@ ALTER TABLE public.mdl_question_multianswer OWNER TO postgres; -- -- TOC entry 11132 (class 0 OID 0) --- Dependencies: 655 +-- Dependencies: 784 -- Name: TABLE mdl_question_multianswer; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16025,7 +16025,7 @@ COMMENT ON TABLE public.mdl_question_multianswer IS 'Options for multianswer que -- --- TOC entry 654 (class 1259 OID 20115) +-- TOC entry 785 (class 1259 OID 62297) -- Name: mdl_question_multianswer_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16041,7 +16041,7 @@ ALTER TABLE public.mdl_question_multianswer_id_seq OWNER TO postgres; -- -- TOC entry 11133 (class 0 OID 0) --- Dependencies: 654 +-- Dependencies: 785 -- Name: mdl_question_multianswer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16049,7 +16049,7 @@ ALTER SEQUENCE public.mdl_question_multianswer_id_seq OWNED BY public.mdl_questi -- --- TOC entry 659 (class 1259 OID 20152) +-- TOC entry 786 (class 1259 OID 62299) -- Name: mdl_question_numerical; Type: TABLE; Schema: public; Owner: postgres -- @@ -16065,7 +16065,7 @@ ALTER TABLE public.mdl_question_numerical OWNER TO postgres; -- -- TOC entry 11134 (class 0 OID 0) --- Dependencies: 659 +-- Dependencies: 786 -- Name: TABLE mdl_question_numerical; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16073,7 +16073,7 @@ COMMENT ON TABLE public.mdl_question_numerical IS 'Options for numerical questio -- --- TOC entry 658 (class 1259 OID 20150) +-- TOC entry 787 (class 1259 OID 62305) -- Name: mdl_question_numerical_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16089,7 +16089,7 @@ ALTER TABLE public.mdl_question_numerical_id_seq OWNER TO postgres; -- -- TOC entry 11135 (class 0 OID 0) --- Dependencies: 658 +-- Dependencies: 787 -- Name: mdl_question_numerical_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16097,7 +16097,7 @@ ALTER SEQUENCE public.mdl_question_numerical_id_seq OWNED BY public.mdl_question -- --- TOC entry 661 (class 1259 OID 20165) +-- TOC entry 788 (class 1259 OID 62307) -- Name: mdl_question_numerical_options; Type: TABLE; Schema: public; Owner: postgres -- @@ -16115,7 +16115,7 @@ ALTER TABLE public.mdl_question_numerical_options OWNER TO postgres; -- -- TOC entry 11136 (class 0 OID 0) --- Dependencies: 661 +-- Dependencies: 788 -- Name: TABLE mdl_question_numerical_options; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16123,7 +16123,7 @@ COMMENT ON TABLE public.mdl_question_numerical_options IS 'Options for questions -- --- TOC entry 660 (class 1259 OID 20163) +-- TOC entry 789 (class 1259 OID 62315) -- Name: mdl_question_numerical_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16139,7 +16139,7 @@ ALTER TABLE public.mdl_question_numerical_options_id_seq OWNER TO postgres; -- -- TOC entry 11137 (class 0 OID 0) --- Dependencies: 660 +-- Dependencies: 789 -- Name: mdl_question_numerical_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16147,7 +16147,7 @@ ALTER SEQUENCE public.mdl_question_numerical_options_id_seq OWNED BY public.mdl_ -- --- TOC entry 663 (class 1259 OID 20179) +-- TOC entry 790 (class 1259 OID 62317) -- Name: mdl_question_numerical_units; Type: TABLE; Schema: public; Owner: postgres -- @@ -16163,7 +16163,7 @@ ALTER TABLE public.mdl_question_numerical_units OWNER TO postgres; -- -- TOC entry 11138 (class 0 OID 0) --- Dependencies: 663 +-- Dependencies: 790 -- Name: TABLE mdl_question_numerical_units; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16171,7 +16171,7 @@ COMMENT ON TABLE public.mdl_question_numerical_units IS 'Optional unit options f -- --- TOC entry 662 (class 1259 OID 20177) +-- TOC entry 791 (class 1259 OID 62323) -- Name: mdl_question_numerical_units_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16187,7 +16187,7 @@ ALTER TABLE public.mdl_question_numerical_units_id_seq OWNER TO postgres; -- -- TOC entry 11139 (class 0 OID 0) --- Dependencies: 662 +-- Dependencies: 791 -- Name: mdl_question_numerical_units_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16195,7 +16195,7 @@ ALTER SEQUENCE public.mdl_question_numerical_units_id_seq OWNED BY public.mdl_qu -- --- TOC entry 335 (class 1259 OID 17686) +-- TOC entry 792 (class 1259 OID 62325) -- Name: mdl_question_response_analysis; Type: TABLE; Schema: public; Owner: postgres -- @@ -16217,7 +16217,7 @@ ALTER TABLE public.mdl_question_response_analysis OWNER TO postgres; -- -- TOC entry 11140 (class 0 OID 0) --- Dependencies: 335 +-- Dependencies: 792 -- Name: TABLE mdl_question_response_analysis; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16225,7 +16225,7 @@ COMMENT ON TABLE public.mdl_question_response_analysis IS 'Analysis of student r -- --- TOC entry 334 (class 1259 OID 17684) +-- TOC entry 793 (class 1259 OID 62334) -- Name: mdl_question_response_analysis_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16241,7 +16241,7 @@ ALTER TABLE public.mdl_question_response_analysis_id_seq OWNER TO postgres; -- -- TOC entry 11141 (class 0 OID 0) --- Dependencies: 334 +-- Dependencies: 793 -- Name: mdl_question_response_analysis_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16249,7 +16249,7 @@ ALTER SEQUENCE public.mdl_question_response_analysis_id_seq OWNED BY public.mdl_ -- --- TOC entry 337 (class 1259 OID 17700) +-- TOC entry 794 (class 1259 OID 62336) -- Name: mdl_question_response_count; Type: TABLE; Schema: public; Owner: postgres -- @@ -16265,7 +16265,7 @@ ALTER TABLE public.mdl_question_response_count OWNER TO postgres; -- -- TOC entry 11142 (class 0 OID 0) --- Dependencies: 337 +-- Dependencies: 794 -- Name: TABLE mdl_question_response_count; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16273,7 +16273,7 @@ COMMENT ON TABLE public.mdl_question_response_count IS 'Count for each responses -- --- TOC entry 336 (class 1259 OID 17698) +-- TOC entry 795 (class 1259 OID 62339) -- Name: mdl_question_response_count_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16289,7 +16289,7 @@ ALTER TABLE public.mdl_question_response_count_id_seq OWNER TO postgres; -- -- TOC entry 11143 (class 0 OID 0) --- Dependencies: 336 +-- Dependencies: 795 -- Name: mdl_question_response_count_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16297,7 +16297,7 @@ ALTER SEQUENCE public.mdl_question_response_count_id_seq OWNED BY public.mdl_que -- --- TOC entry 333 (class 1259 OID 17672) +-- TOC entry 796 (class 1259 OID 62341) -- Name: mdl_question_statistics; Type: TABLE; Schema: public; Owner: postgres -- @@ -16327,7 +16327,7 @@ ALTER TABLE public.mdl_question_statistics OWNER TO postgres; -- -- TOC entry 11144 (class 0 OID 0) --- Dependencies: 333 +-- Dependencies: 796 -- Name: TABLE mdl_question_statistics; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16335,7 +16335,7 @@ COMMENT ON TABLE public.mdl_question_statistics IS 'Statistics for individual qu -- --- TOC entry 332 (class 1259 OID 17670) +-- TOC entry 797 (class 1259 OID 62350) -- Name: mdl_question_statistics_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16351,7 +16351,7 @@ ALTER TABLE public.mdl_question_statistics_id_seq OWNER TO postgres; -- -- TOC entry 11145 (class 0 OID 0) --- Dependencies: 332 +-- Dependencies: 797 -- Name: mdl_question_statistics_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16359,7 +16359,7 @@ ALTER SEQUENCE public.mdl_question_statistics_id_seq OWNED BY public.mdl_questio -- --- TOC entry 669 (class 1259 OID 20222) +-- TOC entry 798 (class 1259 OID 62352) -- Name: mdl_question_truefalse; Type: TABLE; Schema: public; Owner: postgres -- @@ -16375,7 +16375,7 @@ ALTER TABLE public.mdl_question_truefalse OWNER TO postgres; -- -- TOC entry 11146 (class 0 OID 0) --- Dependencies: 669 +-- Dependencies: 798 -- Name: TABLE mdl_question_truefalse; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16383,7 +16383,7 @@ COMMENT ON TABLE public.mdl_question_truefalse IS 'Options for True-False questi -- --- TOC entry 668 (class 1259 OID 20220) +-- TOC entry 799 (class 1259 OID 62358) -- Name: mdl_question_truefalse_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16399,7 +16399,7 @@ ALTER TABLE public.mdl_question_truefalse_id_seq OWNER TO postgres; -- -- TOC entry 11147 (class 0 OID 0) --- Dependencies: 668 +-- Dependencies: 799 -- Name: mdl_question_truefalse_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16407,7 +16407,7 @@ ALTER SEQUENCE public.mdl_question_truefalse_id_seq OWNED BY public.mdl_question -- --- TOC entry 325 (class 1259 OID 17617) +-- TOC entry 800 (class 1259 OID 62360) -- Name: mdl_question_usages; Type: TABLE; Schema: public; Owner: postgres -- @@ -16423,7 +16423,7 @@ ALTER TABLE public.mdl_question_usages OWNER TO postgres; -- -- TOC entry 11148 (class 0 OID 0) --- Dependencies: 325 +-- Dependencies: 800 -- Name: TABLE mdl_question_usages; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16431,7 +16431,7 @@ COMMENT ON TABLE public.mdl_question_usages IS 'This table''s main purpose it to -- --- TOC entry 324 (class 1259 OID 17615) +-- TOC entry 801 (class 1259 OID 62365) -- Name: mdl_question_usages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16447,7 +16447,7 @@ ALTER TABLE public.mdl_question_usages_id_seq OWNER TO postgres; -- -- TOC entry 11149 (class 0 OID 0) --- Dependencies: 324 +-- Dependencies: 801 -- Name: mdl_question_usages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16455,7 +16455,7 @@ ALTER SEQUENCE public.mdl_question_usages_id_seq OWNED BY public.mdl_question_us -- --- TOC entry 809 (class 1259 OID 21569) +-- TOC entry 802 (class 1259 OID 62367) -- Name: mdl_quiz; Type: TABLE; Schema: public; Owner: postgres -- @@ -16508,7 +16508,7 @@ ALTER TABLE public.mdl_quiz OWNER TO postgres; -- -- TOC entry 11150 (class 0 OID 0) --- Dependencies: 809 +-- Dependencies: 802 -- Name: TABLE mdl_quiz; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16516,7 +16516,7 @@ COMMENT ON TABLE public.mdl_quiz IS 'The settings for each quiz.'; -- --- TOC entry 819 (class 1259 OID 21678) +-- TOC entry 803 (class 1259 OID 62412) -- Name: mdl_quiz_attempts; Type: TABLE; Schema: public; Owner: postgres -- @@ -16543,7 +16543,7 @@ ALTER TABLE public.mdl_quiz_attempts OWNER TO postgres; -- -- TOC entry 11151 (class 0 OID 0) --- Dependencies: 819 +-- Dependencies: 803 -- Name: TABLE mdl_quiz_attempts; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16551,7 +16551,7 @@ COMMENT ON TABLE public.mdl_quiz_attempts IS 'Stores users attempts at quizzes.' -- --- TOC entry 818 (class 1259 OID 21676) +-- TOC entry 804 (class 1259 OID 62430) -- Name: mdl_quiz_attempts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16567,7 +16567,7 @@ ALTER TABLE public.mdl_quiz_attempts_id_seq OWNER TO postgres; -- -- TOC entry 11152 (class 0 OID 0) --- Dependencies: 818 +-- Dependencies: 804 -- Name: mdl_quiz_attempts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16575,7 +16575,7 @@ ALTER SEQUENCE public.mdl_quiz_attempts_id_seq OWNED BY public.mdl_quiz_attempts -- --- TOC entry 815 (class 1259 OID 21650) +-- TOC entry 805 (class 1259 OID 62432) -- Name: mdl_quiz_feedback; Type: TABLE; Schema: public; Owner: postgres -- @@ -16593,7 +16593,7 @@ ALTER TABLE public.mdl_quiz_feedback OWNER TO postgres; -- -- TOC entry 11153 (class 0 OID 0) --- Dependencies: 815 +-- Dependencies: 805 -- Name: TABLE mdl_quiz_feedback; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16601,7 +16601,7 @@ COMMENT ON TABLE public.mdl_quiz_feedback IS 'Feedback given to students based o -- --- TOC entry 814 (class 1259 OID 21648) +-- TOC entry 806 (class 1259 OID 62442) -- Name: mdl_quiz_feedback_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16617,7 +16617,7 @@ ALTER TABLE public.mdl_quiz_feedback_id_seq OWNER TO postgres; -- -- TOC entry 11154 (class 0 OID 0) --- Dependencies: 814 +-- Dependencies: 806 -- Name: mdl_quiz_feedback_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16625,7 +16625,7 @@ ALTER SEQUENCE public.mdl_quiz_feedback_id_seq OWNED BY public.mdl_quiz_feedback -- --- TOC entry 821 (class 1259 OID 21706) +-- TOC entry 807 (class 1259 OID 62444) -- Name: mdl_quiz_grades; Type: TABLE; Schema: public; Owner: postgres -- @@ -16642,7 +16642,7 @@ ALTER TABLE public.mdl_quiz_grades OWNER TO postgres; -- -- TOC entry 11155 (class 0 OID 0) --- Dependencies: 821 +-- Dependencies: 807 -- Name: TABLE mdl_quiz_grades; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16650,7 +16650,7 @@ COMMENT ON TABLE public.mdl_quiz_grades IS 'Stores the overall grade for each us -- --- TOC entry 820 (class 1259 OID 21704) +-- TOC entry 808 (class 1259 OID 62451) -- Name: mdl_quiz_grades_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16666,7 +16666,7 @@ ALTER TABLE public.mdl_quiz_grades_id_seq OWNER TO postgres; -- -- TOC entry 11156 (class 0 OID 0) --- Dependencies: 820 +-- Dependencies: 808 -- Name: mdl_quiz_grades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16674,7 +16674,7 @@ ALTER SEQUENCE public.mdl_quiz_grades_id_seq OWNED BY public.mdl_quiz_grades.id; -- --- TOC entry 808 (class 1259 OID 21567) +-- TOC entry 809 (class 1259 OID 62453) -- Name: mdl_quiz_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16690,7 +16690,7 @@ ALTER TABLE public.mdl_quiz_id_seq OWNER TO postgres; -- -- TOC entry 11157 (class 0 OID 0) --- Dependencies: 808 +-- Dependencies: 809 -- Name: mdl_quiz_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16698,7 +16698,7 @@ ALTER SEQUENCE public.mdl_quiz_id_seq OWNED BY public.mdl_quiz.id; -- --- TOC entry 817 (class 1259 OID 21666) +-- TOC entry 810 (class 1259 OID 62455) -- Name: mdl_quiz_overrides; Type: TABLE; Schema: public; Owner: postgres -- @@ -16719,7 +16719,7 @@ ALTER TABLE public.mdl_quiz_overrides OWNER TO postgres; -- -- TOC entry 11158 (class 0 OID 0) --- Dependencies: 817 +-- Dependencies: 810 -- Name: TABLE mdl_quiz_overrides; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16727,7 +16727,7 @@ COMMENT ON TABLE public.mdl_quiz_overrides IS 'The overrides to quiz settings on -- --- TOC entry 816 (class 1259 OID 21664) +-- TOC entry 811 (class 1259 OID 62459) -- Name: mdl_quiz_overrides_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16743,7 +16743,7 @@ ALTER TABLE public.mdl_quiz_overrides_id_seq OWNER TO postgres; -- -- TOC entry 11159 (class 0 OID 0) --- Dependencies: 816 +-- Dependencies: 811 -- Name: mdl_quiz_overrides_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16751,7 +16751,7 @@ ALTER SEQUENCE public.mdl_quiz_overrides_id_seq OWNED BY public.mdl_quiz_overrid -- --- TOC entry 1013 (class 1259 OID 23209) +-- TOC entry 812 (class 1259 OID 62461) -- Name: mdl_quiz_overview_regrades; Type: TABLE; Schema: public; Owner: postgres -- @@ -16770,7 +16770,7 @@ ALTER TABLE public.mdl_quiz_overview_regrades OWNER TO postgres; -- -- TOC entry 11160 (class 0 OID 0) --- Dependencies: 1013 +-- Dependencies: 812 -- Name: TABLE mdl_quiz_overview_regrades; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16778,7 +16778,7 @@ COMMENT ON TABLE public.mdl_quiz_overview_regrades IS 'This table records which -- --- TOC entry 1012 (class 1259 OID 23207) +-- TOC entry 813 (class 1259 OID 62464) -- Name: mdl_quiz_overview_regrades_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16794,7 +16794,7 @@ ALTER TABLE public.mdl_quiz_overview_regrades_id_seq OWNER TO postgres; -- -- TOC entry 11161 (class 0 OID 0) --- Dependencies: 1012 +-- Dependencies: 813 -- Name: mdl_quiz_overview_regrades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16802,7 +16802,7 @@ ALTER SEQUENCE public.mdl_quiz_overview_regrades_id_seq OWNED BY public.mdl_quiz -- --- TOC entry 823 (class 1259 OID 21720) +-- TOC entry 814 (class 1259 OID 62466) -- Name: mdl_quiz_reports; Type: TABLE; Schema: public; Owner: postgres -- @@ -16818,7 +16818,7 @@ ALTER TABLE public.mdl_quiz_reports OWNER TO postgres; -- -- TOC entry 11162 (class 0 OID 0) --- Dependencies: 823 +-- Dependencies: 814 -- Name: TABLE mdl_quiz_reports; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16826,7 +16826,7 @@ COMMENT ON TABLE public.mdl_quiz_reports IS 'Lists all the installed quiz report -- --- TOC entry 822 (class 1259 OID 21718) +-- TOC entry 815 (class 1259 OID 62472) -- Name: mdl_quiz_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16842,7 +16842,7 @@ ALTER TABLE public.mdl_quiz_reports_id_seq OWNER TO postgres; -- -- TOC entry 11163 (class 0 OID 0) --- Dependencies: 822 +-- Dependencies: 815 -- Name: mdl_quiz_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16850,7 +16850,7 @@ ALTER SEQUENCE public.mdl_quiz_reports_id_seq OWNED BY public.mdl_quiz_reports.i -- --- TOC entry 813 (class 1259 OID 21636) +-- TOC entry 816 (class 1259 OID 62474) -- Name: mdl_quiz_sections; Type: TABLE; Schema: public; Owner: postgres -- @@ -16867,7 +16867,7 @@ ALTER TABLE public.mdl_quiz_sections OWNER TO postgres; -- -- TOC entry 11164 (class 0 OID 0) --- Dependencies: 813 +-- Dependencies: 816 -- Name: TABLE mdl_quiz_sections; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16875,7 +16875,7 @@ COMMENT ON TABLE public.mdl_quiz_sections IS 'Stores sections of a quiz with sec -- --- TOC entry 812 (class 1259 OID 21634) +-- TOC entry 817 (class 1259 OID 62481) -- Name: mdl_quiz_sections_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16891,7 +16891,7 @@ ALTER TABLE public.mdl_quiz_sections_id_seq OWNER TO postgres; -- -- TOC entry 11165 (class 0 OID 0) --- Dependencies: 812 +-- Dependencies: 817 -- Name: mdl_quiz_sections_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16899,7 +16899,7 @@ ALTER SEQUENCE public.mdl_quiz_sections_id_seq OWNED BY public.mdl_quiz_sections -- --- TOC entry 825 (class 1259 OID 21732) +-- TOC entry 818 (class 1259 OID 62483) -- Name: mdl_quiz_slot_tags; Type: TABLE; Schema: public; Owner: postgres -- @@ -16915,7 +16915,7 @@ ALTER TABLE public.mdl_quiz_slot_tags OWNER TO postgres; -- -- TOC entry 11166 (class 0 OID 0) --- Dependencies: 825 +-- Dependencies: 818 -- Name: TABLE mdl_quiz_slot_tags; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16923,7 +16923,7 @@ COMMENT ON TABLE public.mdl_quiz_slot_tags IS 'Stores data about the tags that a -- --- TOC entry 824 (class 1259 OID 21730) +-- TOC entry 819 (class 1259 OID 62486) -- Name: mdl_quiz_slot_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16939,7 +16939,7 @@ ALTER TABLE public.mdl_quiz_slot_tags_id_seq OWNER TO postgres; -- -- TOC entry 11167 (class 0 OID 0) --- Dependencies: 824 +-- Dependencies: 819 -- Name: mdl_quiz_slot_tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16947,7 +16947,7 @@ ALTER SEQUENCE public.mdl_quiz_slot_tags_id_seq OWNED BY public.mdl_quiz_slot_ta -- --- TOC entry 811 (class 1259 OID 21620) +-- TOC entry 820 (class 1259 OID 62488) -- Name: mdl_quiz_slots; Type: TABLE; Schema: public; Owner: postgres -- @@ -16968,7 +16968,7 @@ ALTER TABLE public.mdl_quiz_slots OWNER TO postgres; -- -- TOC entry 11168 (class 0 OID 0) --- Dependencies: 811 +-- Dependencies: 820 -- Name: TABLE mdl_quiz_slots; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16976,7 +16976,7 @@ COMMENT ON TABLE public.mdl_quiz_slots IS 'Stores the question used in a quiz, w -- --- TOC entry 810 (class 1259 OID 21618) +-- TOC entry 821 (class 1259 OID 62495) -- Name: mdl_quiz_slots_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16992,7 +16992,7 @@ ALTER TABLE public.mdl_quiz_slots_id_seq OWNER TO postgres; -- -- TOC entry 11169 (class 0 OID 0) --- Dependencies: 810 +-- Dependencies: 821 -- Name: mdl_quiz_slots_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17000,7 +17000,7 @@ ALTER SEQUENCE public.mdl_quiz_slots_id_seq OWNED BY public.mdl_quiz_slots.id; -- --- TOC entry 1015 (class 1259 OID 23218) +-- TOC entry 822 (class 1259 OID 62497) -- Name: mdl_quiz_statistics; Type: TABLE; Schema: public; Owner: postgres -- @@ -17031,7 +17031,7 @@ ALTER TABLE public.mdl_quiz_statistics OWNER TO postgres; -- -- TOC entry 11170 (class 0 OID 0) --- Dependencies: 1015 +-- Dependencies: 822 -- Name: TABLE mdl_quiz_statistics; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17039,7 +17039,7 @@ COMMENT ON TABLE public.mdl_quiz_statistics IS 'table to cache results from anal -- --- TOC entry 1014 (class 1259 OID 23216) +-- TOC entry 823 (class 1259 OID 62501) -- Name: mdl_quiz_statistics_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17055,7 +17055,7 @@ ALTER TABLE public.mdl_quiz_statistics_id_seq OWNER TO postgres; -- -- TOC entry 11171 (class 0 OID 0) --- Dependencies: 1014 +-- Dependencies: 823 -- Name: mdl_quiz_statistics_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17063,7 +17063,7 @@ ALTER SEQUENCE public.mdl_quiz_statistics_id_seq OWNED BY public.mdl_quiz_statis -- --- TOC entry 1017 (class 1259 OID 23227) +-- TOC entry 824 (class 1259 OID 62503) -- Name: mdl_quizaccess_seb_quizsettings; Type: TABLE; Schema: public; Owner: postgres -- @@ -17104,7 +17104,7 @@ ALTER TABLE public.mdl_quizaccess_seb_quizsettings OWNER TO postgres; -- -- TOC entry 11172 (class 0 OID 0) --- Dependencies: 1017 +-- Dependencies: 824 -- Name: TABLE mdl_quizaccess_seb_quizsettings; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17112,7 +17112,7 @@ COMMENT ON TABLE public.mdl_quizaccess_seb_quizsettings IS 'Stores the quiz leve -- --- TOC entry 1016 (class 1259 OID 23225) +-- TOC entry 825 (class 1259 OID 62512) -- Name: mdl_quizaccess_seb_quizsettings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17128,7 +17128,7 @@ ALTER TABLE public.mdl_quizaccess_seb_quizsettings_id_seq OWNER TO postgres; -- -- TOC entry 11173 (class 0 OID 0) --- Dependencies: 1016 +-- Dependencies: 825 -- Name: mdl_quizaccess_seb_quizsettings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17136,7 +17136,7 @@ ALTER SEQUENCE public.mdl_quizaccess_seb_quizsettings_id_seq OWNED BY public.mdl -- --- TOC entry 1019 (class 1259 OID 23245) +-- TOC entry 826 (class 1259 OID 62514) -- Name: mdl_quizaccess_seb_template; Type: TABLE; Schema: public; Owner: postgres -- @@ -17157,7 +17157,7 @@ ALTER TABLE public.mdl_quizaccess_seb_template OWNER TO postgres; -- -- TOC entry 11174 (class 0 OID 0) --- Dependencies: 1019 +-- Dependencies: 826 -- Name: TABLE mdl_quizaccess_seb_template; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17165,7 +17165,7 @@ COMMENT ON TABLE public.mdl_quizaccess_seb_template IS 'Templates for Safe Exam -- --- TOC entry 1018 (class 1259 OID 23243) +-- TOC entry 827 (class 1259 OID 62524) -- Name: mdl_quizaccess_seb_template_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17181,7 +17181,7 @@ ALTER TABLE public.mdl_quizaccess_seb_template_id_seq OWNER TO postgres; -- -- TOC entry 11175 (class 0 OID 0) --- Dependencies: 1018 +-- Dependencies: 827 -- Name: mdl_quizaccess_seb_template_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17189,7 +17189,7 @@ ALTER SEQUENCE public.mdl_quizaccess_seb_template_id_seq OWNED BY public.mdl_qui -- --- TOC entry 469 (class 1259 OID 18758) +-- TOC entry 828 (class 1259 OID 62526) -- Name: mdl_rating; Type: TABLE; Schema: public; Owner: postgres -- @@ -17211,7 +17211,7 @@ ALTER TABLE public.mdl_rating OWNER TO postgres; -- -- TOC entry 11176 (class 0 OID 0) --- Dependencies: 469 +-- Dependencies: 828 -- Name: TABLE mdl_rating; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17219,7 +17219,7 @@ COMMENT ON TABLE public.mdl_rating IS 'moodle ratings'; -- --- TOC entry 468 (class 1259 OID 18756) +-- TOC entry 829 (class 1259 OID 62531) -- Name: mdl_rating_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17235,7 +17235,7 @@ ALTER TABLE public.mdl_rating_id_seq OWNER TO postgres; -- -- TOC entry 11177 (class 0 OID 0) --- Dependencies: 468 +-- Dependencies: 829 -- Name: mdl_rating_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17243,7 +17243,7 @@ ALTER SEQUENCE public.mdl_rating_id_seq OWNED BY public.mdl_rating.id; -- --- TOC entry 473 (class 1259 OID 18786) +-- TOC entry 830 (class 1259 OID 62533) -- Name: mdl_registration_hubs; Type: TABLE; Schema: public; Owner: postgres -- @@ -17262,7 +17262,7 @@ ALTER TABLE public.mdl_registration_hubs OWNER TO postgres; -- -- TOC entry 11178 (class 0 OID 0) --- Dependencies: 473 +-- Dependencies: 830 -- Name: TABLE mdl_registration_hubs; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17270,7 +17270,7 @@ COMMENT ON TABLE public.mdl_registration_hubs IS 'hub where the site is register -- --- TOC entry 472 (class 1259 OID 18784) +-- TOC entry 831 (class 1259 OID 62544) -- Name: mdl_registration_hubs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17286,7 +17286,7 @@ ALTER TABLE public.mdl_registration_hubs_id_seq OWNER TO postgres; -- -- TOC entry 11179 (class 0 OID 0) --- Dependencies: 472 +-- Dependencies: 831 -- Name: mdl_registration_hubs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17294,7 +17294,7 @@ ALTER SEQUENCE public.mdl_registration_hubs_id_seq OWNED BY public.mdl_registrat -- --- TOC entry 439 (class 1259 OID 18554) +-- TOC entry 832 (class 1259 OID 62546) -- Name: mdl_repository; Type: TABLE; Schema: public; Owner: postgres -- @@ -17310,7 +17310,7 @@ ALTER TABLE public.mdl_repository OWNER TO postgres; -- -- TOC entry 11180 (class 0 OID 0) --- Dependencies: 439 +-- Dependencies: 832 -- Name: TABLE mdl_repository; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17318,7 +17318,7 @@ COMMENT ON TABLE public.mdl_repository IS 'This table contains one entry for eve -- --- TOC entry 438 (class 1259 OID 18552) +-- TOC entry 833 (class 1259 OID 62552) -- Name: mdl_repository_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17334,7 +17334,7 @@ ALTER TABLE public.mdl_repository_id_seq OWNER TO postgres; -- -- TOC entry 11181 (class 0 OID 0) --- Dependencies: 438 +-- Dependencies: 833 -- Name: mdl_repository_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17342,7 +17342,7 @@ ALTER SEQUENCE public.mdl_repository_id_seq OWNED BY public.mdl_repository.id; -- --- TOC entry 443 (class 1259 OID 18579) +-- TOC entry 834 (class 1259 OID 62554) -- Name: mdl_repository_instance_config; Type: TABLE; Schema: public; Owner: postgres -- @@ -17358,7 +17358,7 @@ ALTER TABLE public.mdl_repository_instance_config OWNER TO postgres; -- -- TOC entry 11182 (class 0 OID 0) --- Dependencies: 443 +-- Dependencies: 834 -- Name: TABLE mdl_repository_instance_config; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17366,7 +17366,7 @@ COMMENT ON TABLE public.mdl_repository_instance_config IS 'The config for intanc -- --- TOC entry 442 (class 1259 OID 18577) +-- TOC entry 835 (class 1259 OID 62561) -- Name: mdl_repository_instance_config_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17382,7 +17382,7 @@ ALTER TABLE public.mdl_repository_instance_config_id_seq OWNER TO postgres; -- -- TOC entry 11183 (class 0 OID 0) --- Dependencies: 442 +-- Dependencies: 835 -- Name: mdl_repository_instance_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17390,7 +17390,7 @@ ALTER SEQUENCE public.mdl_repository_instance_config_id_seq OWNED BY public.mdl_ -- --- TOC entry 441 (class 1259 OID 18565) +-- TOC entry 836 (class 1259 OID 62563) -- Name: mdl_repository_instances; Type: TABLE; Schema: public; Owner: postgres -- @@ -17412,7 +17412,7 @@ ALTER TABLE public.mdl_repository_instances OWNER TO postgres; -- -- TOC entry 11184 (class 0 OID 0) --- Dependencies: 441 +-- Dependencies: 836 -- Name: TABLE mdl_repository_instances; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17420,7 +17420,7 @@ COMMENT ON TABLE public.mdl_repository_instances IS 'This table contains one ent -- --- TOC entry 440 (class 1259 OID 18563) +-- TOC entry 837 (class 1259 OID 62572) -- Name: mdl_repository_instances_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17436,7 +17436,7 @@ ALTER TABLE public.mdl_repository_instances_id_seq OWNER TO postgres; -- -- TOC entry 11185 (class 0 OID 0) --- Dependencies: 440 +-- Dependencies: 837 -- Name: mdl_repository_instances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17444,7 +17444,7 @@ ALTER SEQUENCE public.mdl_repository_instances_id_seq OWNED BY public.mdl_reposi -- --- TOC entry 945 (class 1259 OID 22719) +-- TOC entry 838 (class 1259 OID 62574) -- Name: mdl_repository_onedrive_access; Type: TABLE; Schema: public; Owner: postgres -- @@ -17462,7 +17462,7 @@ ALTER TABLE public.mdl_repository_onedrive_access OWNER TO postgres; -- -- TOC entry 11186 (class 0 OID 0) --- Dependencies: 945 +-- Dependencies: 838 -- Name: TABLE mdl_repository_onedrive_access; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17470,7 +17470,7 @@ COMMENT ON TABLE public.mdl_repository_onedrive_access IS 'List of temporary acc -- --- TOC entry 944 (class 1259 OID 22717) +-- TOC entry 839 (class 1259 OID 62582) -- Name: mdl_repository_onedrive_access_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17486,7 +17486,7 @@ ALTER TABLE public.mdl_repository_onedrive_access_id_seq OWNER TO postgres; -- -- TOC entry 11187 (class 0 OID 0) --- Dependencies: 944 +-- Dependencies: 839 -- Name: mdl_repository_onedrive_access_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17494,7 +17494,7 @@ ALTER SEQUENCE public.mdl_repository_onedrive_access_id_seq OWNED BY public.mdl_ -- --- TOC entry 827 (class 1259 OID 21742) +-- TOC entry 840 (class 1259 OID 62584) -- Name: mdl_resource; Type: TABLE; Schema: public; Owner: postgres -- @@ -17519,7 +17519,7 @@ ALTER TABLE public.mdl_resource OWNER TO postgres; -- -- TOC entry 11188 (class 0 OID 0) --- Dependencies: 827 +-- Dependencies: 840 -- Name: TABLE mdl_resource; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17527,7 +17527,7 @@ COMMENT ON TABLE public.mdl_resource IS 'Each record is one resource and its con -- --- TOC entry 826 (class 1259 OID 21740) +-- TOC entry 841 (class 1259 OID 62599) -- Name: mdl_resource_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17543,7 +17543,7 @@ ALTER TABLE public.mdl_resource_id_seq OWNER TO postgres; -- -- TOC entry 11189 (class 0 OID 0) --- Dependencies: 826 +-- Dependencies: 841 -- Name: mdl_resource_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17551,7 +17551,7 @@ ALTER SEQUENCE public.mdl_resource_id_seq OWNED BY public.mdl_resource.id; -- --- TOC entry 829 (class 1259 OID 21763) +-- TOC entry 842 (class 1259 OID 62601) -- Name: mdl_resource_old; Type: TABLE; Schema: public; Owner: postgres -- @@ -17579,7 +17579,7 @@ ALTER TABLE public.mdl_resource_old OWNER TO postgres; -- -- TOC entry 11190 (class 0 OID 0) --- Dependencies: 829 +-- Dependencies: 842 -- Name: TABLE mdl_resource_old; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17587,7 +17587,7 @@ COMMENT ON TABLE public.mdl_resource_old IS 'backup of all old resource instance -- --- TOC entry 828 (class 1259 OID 21761) +-- TOC entry 843 (class 1259 OID 62615) -- Name: mdl_resource_old_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17603,7 +17603,7 @@ ALTER TABLE public.mdl_resource_old_id_seq OWNER TO postgres; -- -- TOC entry 11191 (class 0 OID 0) --- Dependencies: 828 +-- Dependencies: 843 -- Name: mdl_resource_old_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17611,7 +17611,7 @@ ALTER SEQUENCE public.mdl_resource_old_id_seq OWNED BY public.mdl_resource_old.i -- --- TOC entry 288 (class 1259 OID 17321) +-- TOC entry 844 (class 1259 OID 62617) -- Name: mdl_role; Type: TABLE; Schema: public; Owner: postgres -- @@ -17629,7 +17629,7 @@ ALTER TABLE public.mdl_role OWNER TO postgres; -- -- TOC entry 11192 (class 0 OID 0) --- Dependencies: 288 +-- Dependencies: 844 -- Name: TABLE mdl_role; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17637,7 +17637,7 @@ COMMENT ON TABLE public.mdl_role IS 'moodle roles'; -- --- TOC entry 295 (class 1259 OID 17375) +-- TOC entry 845 (class 1259 OID 62627) -- Name: mdl_role_allow_assign; Type: TABLE; Schema: public; Owner: postgres -- @@ -17652,7 +17652,7 @@ ALTER TABLE public.mdl_role_allow_assign OWNER TO postgres; -- -- TOC entry 11193 (class 0 OID 0) --- Dependencies: 295 +-- Dependencies: 845 -- Name: TABLE mdl_role_allow_assign; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17660,7 +17660,7 @@ COMMENT ON TABLE public.mdl_role_allow_assign IS 'this defines what role can ass -- --- TOC entry 294 (class 1259 OID 17373) +-- TOC entry 846 (class 1259 OID 62632) -- Name: mdl_role_allow_assign_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17676,7 +17676,7 @@ ALTER TABLE public.mdl_role_allow_assign_id_seq OWNER TO postgres; -- -- TOC entry 11194 (class 0 OID 0) --- Dependencies: 294 +-- Dependencies: 846 -- Name: mdl_role_allow_assign_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17684,7 +17684,7 @@ ALTER SEQUENCE public.mdl_role_allow_assign_id_seq OWNED BY public.mdl_role_allo -- --- TOC entry 297 (class 1259 OID 17388) +-- TOC entry 847 (class 1259 OID 62634) -- Name: mdl_role_allow_override; Type: TABLE; Schema: public; Owner: postgres -- @@ -17699,7 +17699,7 @@ ALTER TABLE public.mdl_role_allow_override OWNER TO postgres; -- -- TOC entry 11195 (class 0 OID 0) --- Dependencies: 297 +-- Dependencies: 847 -- Name: TABLE mdl_role_allow_override; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17707,7 +17707,7 @@ COMMENT ON TABLE public.mdl_role_allow_override IS 'this defines what role can o -- --- TOC entry 296 (class 1259 OID 17386) +-- TOC entry 848 (class 1259 OID 62639) -- Name: mdl_role_allow_override_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17723,7 +17723,7 @@ ALTER TABLE public.mdl_role_allow_override_id_seq OWNER TO postgres; -- -- TOC entry 11196 (class 0 OID 0) --- Dependencies: 296 +-- Dependencies: 848 -- Name: mdl_role_allow_override_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17731,7 +17731,7 @@ ALTER SEQUENCE public.mdl_role_allow_override_id_seq OWNED BY public.mdl_role_al -- --- TOC entry 299 (class 1259 OID 17401) +-- TOC entry 849 (class 1259 OID 62641) -- Name: mdl_role_allow_switch; Type: TABLE; Schema: public; Owner: postgres -- @@ -17746,7 +17746,7 @@ ALTER TABLE public.mdl_role_allow_switch OWNER TO postgres; -- -- TOC entry 11197 (class 0 OID 0) --- Dependencies: 299 +-- Dependencies: 849 -- Name: TABLE mdl_role_allow_switch; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17754,7 +17754,7 @@ COMMENT ON TABLE public.mdl_role_allow_switch IS 'This table stores which which -- --- TOC entry 298 (class 1259 OID 17399) +-- TOC entry 850 (class 1259 OID 62644) -- Name: mdl_role_allow_switch_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17770,7 +17770,7 @@ ALTER TABLE public.mdl_role_allow_switch_id_seq OWNER TO postgres; -- -- TOC entry 11198 (class 0 OID 0) --- Dependencies: 298 +-- Dependencies: 850 -- Name: mdl_role_allow_switch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17778,7 +17778,7 @@ ALTER SEQUENCE public.mdl_role_allow_switch_id_seq OWNED BY public.mdl_role_allo -- --- TOC entry 301 (class 1259 OID 17412) +-- TOC entry 851 (class 1259 OID 62646) -- Name: mdl_role_allow_view; Type: TABLE; Schema: public; Owner: postgres -- @@ -17793,7 +17793,7 @@ ALTER TABLE public.mdl_role_allow_view OWNER TO postgres; -- -- TOC entry 11199 (class 0 OID 0) --- Dependencies: 301 +-- Dependencies: 851 -- Name: TABLE mdl_role_allow_view; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17801,7 +17801,7 @@ COMMENT ON TABLE public.mdl_role_allow_view IS 'This table stores which which ot -- --- TOC entry 300 (class 1259 OID 17410) +-- TOC entry 852 (class 1259 OID 62649) -- Name: mdl_role_allow_view_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17817,7 +17817,7 @@ ALTER TABLE public.mdl_role_allow_view_id_seq OWNER TO postgres; -- -- TOC entry 11200 (class 0 OID 0) --- Dependencies: 300 +-- Dependencies: 852 -- Name: mdl_role_allow_view_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17825,7 +17825,7 @@ ALTER SEQUENCE public.mdl_role_allow_view_id_seq OWNED BY public.mdl_role_allow_ -- --- TOC entry 303 (class 1259 OID 17423) +-- TOC entry 853 (class 1259 OID 62651) -- Name: mdl_role_assignments; Type: TABLE; Schema: public; Owner: postgres -- @@ -17846,7 +17846,7 @@ ALTER TABLE public.mdl_role_assignments OWNER TO postgres; -- -- TOC entry 11201 (class 0 OID 0) --- Dependencies: 303 +-- Dependencies: 853 -- Name: TABLE mdl_role_assignments; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17854,7 +17854,7 @@ COMMENT ON TABLE public.mdl_role_assignments IS 'assigning roles in different co -- --- TOC entry 302 (class 1259 OID 17421) +-- TOC entry 854 (class 1259 OID 62662) -- Name: mdl_role_assignments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17870,7 +17870,7 @@ ALTER TABLE public.mdl_role_assignments_id_seq OWNER TO postgres; -- -- TOC entry 11202 (class 0 OID 0) --- Dependencies: 302 +-- Dependencies: 854 -- Name: mdl_role_assignments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17878,7 +17878,7 @@ ALTER SEQUENCE public.mdl_role_assignments_id_seq OWNED BY public.mdl_role_assig -- --- TOC entry 305 (class 1259 OID 17446) +-- TOC entry 855 (class 1259 OID 62664) -- Name: mdl_role_capabilities; Type: TABLE; Schema: public; Owner: postgres -- @@ -17897,7 +17897,7 @@ ALTER TABLE public.mdl_role_capabilities OWNER TO postgres; -- -- TOC entry 11203 (class 0 OID 0) --- Dependencies: 305 +-- Dependencies: 855 -- Name: TABLE mdl_role_capabilities; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17905,7 +17905,7 @@ COMMENT ON TABLE public.mdl_role_capabilities IS 'permission has to be signed, o -- --- TOC entry 304 (class 1259 OID 17444) +-- TOC entry 856 (class 1259 OID 62673) -- Name: mdl_role_capabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17921,7 +17921,7 @@ ALTER TABLE public.mdl_role_capabilities_id_seq OWNER TO postgres; -- -- TOC entry 11204 (class 0 OID 0) --- Dependencies: 304 +-- Dependencies: 856 -- Name: mdl_role_capabilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17929,7 +17929,7 @@ ALTER SEQUENCE public.mdl_role_capabilities_id_seq OWNED BY public.mdl_role_capa -- --- TOC entry 309 (class 1259 OID 17479) +-- TOC entry 857 (class 1259 OID 62675) -- Name: mdl_role_context_levels; Type: TABLE; Schema: public; Owner: postgres -- @@ -17944,7 +17944,7 @@ ALTER TABLE public.mdl_role_context_levels OWNER TO postgres; -- -- TOC entry 11205 (class 0 OID 0) --- Dependencies: 309 +-- Dependencies: 857 -- Name: TABLE mdl_role_context_levels; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17952,7 +17952,7 @@ COMMENT ON TABLE public.mdl_role_context_levels IS 'Lists which roles can be ass -- --- TOC entry 308 (class 1259 OID 17477) +-- TOC entry 858 (class 1259 OID 62678) -- Name: mdl_role_context_levels_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17968,7 +17968,7 @@ ALTER TABLE public.mdl_role_context_levels_id_seq OWNER TO postgres; -- -- TOC entry 11206 (class 0 OID 0) --- Dependencies: 308 +-- Dependencies: 858 -- Name: mdl_role_context_levels_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17976,7 +17976,7 @@ ALTER SEQUENCE public.mdl_role_context_levels_id_seq OWNED BY public.mdl_role_co -- --- TOC entry 287 (class 1259 OID 17319) +-- TOC entry 859 (class 1259 OID 62680) -- Name: mdl_role_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17992,7 +17992,7 @@ ALTER TABLE public.mdl_role_id_seq OWNER TO postgres; -- -- TOC entry 11207 (class 0 OID 0) --- Dependencies: 287 +-- Dependencies: 859 -- Name: mdl_role_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18000,7 +18000,7 @@ ALTER SEQUENCE public.mdl_role_id_seq OWNED BY public.mdl_role.id; -- --- TOC entry 307 (class 1259 OID 17465) +-- TOC entry 860 (class 1259 OID 62682) -- Name: mdl_role_names; Type: TABLE; Schema: public; Owner: postgres -- @@ -18016,7 +18016,7 @@ ALTER TABLE public.mdl_role_names OWNER TO postgres; -- -- TOC entry 11208 (class 0 OID 0) --- Dependencies: 307 +-- Dependencies: 860 -- Name: TABLE mdl_role_names; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18024,7 +18024,7 @@ COMMENT ON TABLE public.mdl_role_names IS 'role names in native strings'; -- --- TOC entry 306 (class 1259 OID 17463) +-- TOC entry 861 (class 1259 OID 62688) -- Name: mdl_role_names_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18040,7 +18040,7 @@ ALTER TABLE public.mdl_role_names_id_seq OWNER TO postgres; -- -- TOC entry 11209 (class 0 OID 0) --- Dependencies: 306 +-- Dependencies: 861 -- Name: mdl_role_names_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18048,7 +18048,7 @@ ALTER SEQUENCE public.mdl_role_names_id_seq OWNED BY public.mdl_role_names.id; -- --- TOC entry 270 (class 1259 OID 17146) +-- TOC entry 862 (class 1259 OID 62690) -- Name: mdl_scale; Type: TABLE; Schema: public; Owner: postgres -- @@ -18068,7 +18068,7 @@ ALTER TABLE public.mdl_scale OWNER TO postgres; -- -- TOC entry 11210 (class 0 OID 0) --- Dependencies: 270 +-- Dependencies: 862 -- Name: TABLE mdl_scale; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18076,7 +18076,7 @@ COMMENT ON TABLE public.mdl_scale IS 'Defines grading scales'; -- --- TOC entry 272 (class 1259 OID 17163) +-- TOC entry 863 (class 1259 OID 62701) -- Name: mdl_scale_history; Type: TABLE; Schema: public; Owner: postgres -- @@ -18099,7 +18099,7 @@ ALTER TABLE public.mdl_scale_history OWNER TO postgres; -- -- TOC entry 11211 (class 0 OID 0) --- Dependencies: 272 +-- Dependencies: 863 -- Name: TABLE mdl_scale_history; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18107,7 +18107,7 @@ COMMENT ON TABLE public.mdl_scale_history IS 'History table'; -- --- TOC entry 271 (class 1259 OID 17161) +-- TOC entry 864 (class 1259 OID 62711) -- Name: mdl_scale_history_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18123,7 +18123,7 @@ ALTER TABLE public.mdl_scale_history_id_seq OWNER TO postgres; -- -- TOC entry 11212 (class 0 OID 0) --- Dependencies: 271 +-- Dependencies: 864 -- Name: mdl_scale_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18131,7 +18131,7 @@ ALTER SEQUENCE public.mdl_scale_history_id_seq OWNED BY public.mdl_scale_history -- --- TOC entry 269 (class 1259 OID 17144) +-- TOC entry 865 (class 1259 OID 62713) -- Name: mdl_scale_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18147,7 +18147,7 @@ ALTER TABLE public.mdl_scale_id_seq OWNER TO postgres; -- -- TOC entry 11213 (class 0 OID 0) --- Dependencies: 269 +-- Dependencies: 865 -- Name: mdl_scale_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18155,7 +18155,7 @@ ALTER SEQUENCE public.mdl_scale_id_seq OWNED BY public.mdl_scale.id; -- --- TOC entry 831 (class 1259 OID 21784) +-- TOC entry 866 (class 1259 OID 62715) -- Name: mdl_scorm; Type: TABLE; Schema: public; Owner: postgres -- @@ -18209,7 +18209,7 @@ ALTER TABLE public.mdl_scorm OWNER TO postgres; -- -- TOC entry 11214 (class 0 OID 0) --- Dependencies: 831 +-- Dependencies: 866 -- Name: TABLE mdl_scorm; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18217,7 +18217,7 @@ COMMENT ON TABLE public.mdl_scorm IS 'each table is one SCORM module and its con -- --- TOC entry 851 (class 1259 OID 21982) +-- TOC entry 867 (class 1259 OID 62757) -- Name: mdl_scorm_aicc_session; Type: TABLE; Schema: public; Owner: postgres -- @@ -18241,7 +18241,7 @@ ALTER TABLE public.mdl_scorm_aicc_session OWNER TO postgres; -- -- TOC entry 11215 (class 0 OID 0) --- Dependencies: 851 +-- Dependencies: 867 -- Name: TABLE mdl_scorm_aicc_session; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18249,7 +18249,7 @@ COMMENT ON TABLE public.mdl_scorm_aicc_session IS 'Used by AICC HACP to store se -- --- TOC entry 850 (class 1259 OID 21980) +-- TOC entry 868 (class 1259 OID 62769) -- Name: mdl_scorm_aicc_session_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18265,7 +18265,7 @@ ALTER TABLE public.mdl_scorm_aicc_session_id_seq OWNER TO postgres; -- -- TOC entry 11216 (class 0 OID 0) --- Dependencies: 850 +-- Dependencies: 868 -- Name: mdl_scorm_aicc_session_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18273,7 +18273,7 @@ ALTER SEQUENCE public.mdl_scorm_aicc_session_id_seq OWNED BY public.mdl_scorm_ai -- --- TOC entry 830 (class 1259 OID 21782) +-- TOC entry 869 (class 1259 OID 62771) -- Name: mdl_scorm_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18289,7 +18289,7 @@ ALTER TABLE public.mdl_scorm_id_seq OWNER TO postgres; -- -- TOC entry 11217 (class 0 OID 0) --- Dependencies: 830 +-- Dependencies: 869 -- Name: mdl_scorm_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18297,7 +18297,7 @@ ALTER SEQUENCE public.mdl_scorm_id_seq OWNED BY public.mdl_scorm.id; -- --- TOC entry 833 (class 1259 OID 21832) +-- TOC entry 870 (class 1259 OID 62773) -- Name: mdl_scorm_scoes; Type: TABLE; Schema: public; Owner: postgres -- @@ -18319,7 +18319,7 @@ ALTER TABLE public.mdl_scorm_scoes OWNER TO postgres; -- -- TOC entry 11218 (class 0 OID 0) --- Dependencies: 833 +-- Dependencies: 870 -- Name: TABLE mdl_scorm_scoes; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18327,7 +18327,7 @@ COMMENT ON TABLE public.mdl_scorm_scoes IS 'each SCO part of the SCORM module'; -- --- TOC entry 835 (class 1259 OID 21852) +-- TOC entry 871 (class 1259 OID 62787) -- Name: mdl_scorm_scoes_data; Type: TABLE; Schema: public; Owner: postgres -- @@ -18343,7 +18343,7 @@ ALTER TABLE public.mdl_scorm_scoes_data OWNER TO postgres; -- -- TOC entry 11219 (class 0 OID 0) --- Dependencies: 835 +-- Dependencies: 871 -- Name: TABLE mdl_scorm_scoes_data; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18351,7 +18351,7 @@ COMMENT ON TABLE public.mdl_scorm_scoes_data IS 'Contains variable data get from -- --- TOC entry 834 (class 1259 OID 21850) +-- TOC entry 872 (class 1259 OID 62795) -- Name: mdl_scorm_scoes_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18367,7 +18367,7 @@ ALTER TABLE public.mdl_scorm_scoes_data_id_seq OWNER TO postgres; -- -- TOC entry 11220 (class 0 OID 0) --- Dependencies: 834 +-- Dependencies: 872 -- Name: mdl_scorm_scoes_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18375,7 +18375,7 @@ ALTER SEQUENCE public.mdl_scorm_scoes_data_id_seq OWNED BY public.mdl_scorm_scoe -- --- TOC entry 832 (class 1259 OID 21830) +-- TOC entry 873 (class 1259 OID 62797) -- Name: mdl_scorm_scoes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18391,7 +18391,7 @@ ALTER TABLE public.mdl_scorm_scoes_id_seq OWNER TO postgres; -- -- TOC entry 11221 (class 0 OID 0) --- Dependencies: 832 +-- Dependencies: 873 -- Name: mdl_scorm_scoes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18399,7 +18399,7 @@ ALTER SEQUENCE public.mdl_scorm_scoes_id_seq OWNED BY public.mdl_scorm_scoes.id; -- --- TOC entry 837 (class 1259 OID 21866) +-- TOC entry 874 (class 1259 OID 62799) -- Name: mdl_scorm_scoes_track; Type: TABLE; Schema: public; Owner: postgres -- @@ -18419,7 +18419,7 @@ ALTER TABLE public.mdl_scorm_scoes_track OWNER TO postgres; -- -- TOC entry 11222 (class 0 OID 0) --- Dependencies: 837 +-- Dependencies: 874 -- Name: TABLE mdl_scorm_scoes_track; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18427,7 +18427,7 @@ COMMENT ON TABLE public.mdl_scorm_scoes_track IS 'to track SCOes'; -- --- TOC entry 836 (class 1259 OID 21864) +-- TOC entry 875 (class 1259 OID 62811) -- Name: mdl_scorm_scoes_track_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18443,7 +18443,7 @@ ALTER TABLE public.mdl_scorm_scoes_track_id_seq OWNER TO postgres; -- -- TOC entry 11223 (class 0 OID 0) --- Dependencies: 836 +-- Dependencies: 875 -- Name: mdl_scorm_scoes_track_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18451,7 +18451,7 @@ ALTER SEQUENCE public.mdl_scorm_scoes_track_id_seq OWNED BY public.mdl_scorm_sco -- --- TOC entry 841 (class 1259 OID 21902) +-- TOC entry 876 (class 1259 OID 62813) -- Name: mdl_scorm_seq_mapinfo; Type: TABLE; Schema: public; Owner: postgres -- @@ -18471,7 +18471,7 @@ ALTER TABLE public.mdl_scorm_seq_mapinfo OWNER TO postgres; -- -- TOC entry 11224 (class 0 OID 0) --- Dependencies: 841 +-- Dependencies: 876 -- Name: TABLE mdl_scorm_seq_mapinfo; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18479,7 +18479,7 @@ COMMENT ON TABLE public.mdl_scorm_seq_mapinfo IS 'SCORM2004 objective mapinfo de -- --- TOC entry 840 (class 1259 OID 21900) +-- TOC entry 877 (class 1259 OID 62823) -- Name: mdl_scorm_seq_mapinfo_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18495,7 +18495,7 @@ ALTER TABLE public.mdl_scorm_seq_mapinfo_id_seq OWNER TO postgres; -- -- TOC entry 11225 (class 0 OID 0) --- Dependencies: 840 +-- Dependencies: 877 -- Name: mdl_scorm_seq_mapinfo_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18503,7 +18503,7 @@ ALTER SEQUENCE public.mdl_scorm_seq_mapinfo_id_seq OWNED BY public.mdl_scorm_seq -- --- TOC entry 839 (class 1259 OID 21887) +-- TOC entry 878 (class 1259 OID 62825) -- Name: mdl_scorm_seq_objective; Type: TABLE; Schema: public; Owner: postgres -- @@ -18521,7 +18521,7 @@ ALTER TABLE public.mdl_scorm_seq_objective OWNER TO postgres; -- -- TOC entry 11226 (class 0 OID 0) --- Dependencies: 839 +-- Dependencies: 878 -- Name: TABLE mdl_scorm_seq_objective; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18529,7 +18529,7 @@ COMMENT ON TABLE public.mdl_scorm_seq_objective IS 'SCORM2004 objective descript -- --- TOC entry 838 (class 1259 OID 21885) +-- TOC entry 879 (class 1259 OID 62833) -- Name: mdl_scorm_seq_objective_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18545,7 +18545,7 @@ ALTER TABLE public.mdl_scorm_seq_objective_id_seq OWNER TO postgres; -- -- TOC entry 11227 (class 0 OID 0) --- Dependencies: 838 +-- Dependencies: 879 -- Name: mdl_scorm_seq_objective_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18553,7 +18553,7 @@ ALTER SEQUENCE public.mdl_scorm_seq_objective_id_seq OWNED BY public.mdl_scorm_s -- --- TOC entry 847 (class 1259 OID 21951) +-- TOC entry 880 (class 1259 OID 62835) -- Name: mdl_scorm_seq_rolluprule; Type: TABLE; Schema: public; Owner: postgres -- @@ -18572,7 +18572,7 @@ ALTER TABLE public.mdl_scorm_seq_rolluprule OWNER TO postgres; -- -- TOC entry 11228 (class 0 OID 0) --- Dependencies: 847 +-- Dependencies: 880 -- Name: TABLE mdl_scorm_seq_rolluprule; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18580,7 +18580,7 @@ COMMENT ON TABLE public.mdl_scorm_seq_rolluprule IS 'SCORM2004 sequencing rule'; -- --- TOC entry 846 (class 1259 OID 21949) +-- TOC entry 881 (class 1259 OID 62844) -- Name: mdl_scorm_seq_rolluprule_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18596,7 +18596,7 @@ ALTER TABLE public.mdl_scorm_seq_rolluprule_id_seq OWNER TO postgres; -- -- TOC entry 11229 (class 0 OID 0) --- Dependencies: 846 +-- Dependencies: 881 -- Name: mdl_scorm_seq_rolluprule_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18604,7 +18604,7 @@ ALTER SEQUENCE public.mdl_scorm_seq_rolluprule_id_seq OWNED BY public.mdl_scorm_ -- --- TOC entry 849 (class 1259 OID 21967) +-- TOC entry 882 (class 1259 OID 62846) -- Name: mdl_scorm_seq_rolluprulecond; Type: TABLE; Schema: public; Owner: postgres -- @@ -18621,7 +18621,7 @@ ALTER TABLE public.mdl_scorm_seq_rolluprulecond OWNER TO postgres; -- -- TOC entry 11230 (class 0 OID 0) --- Dependencies: 849 +-- Dependencies: 882 -- Name: TABLE mdl_scorm_seq_rolluprulecond; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18629,7 +18629,7 @@ COMMENT ON TABLE public.mdl_scorm_seq_rolluprulecond IS 'SCORM2004 sequencing ru -- --- TOC entry 848 (class 1259 OID 21965) +-- TOC entry 883 (class 1259 OID 62853) -- Name: mdl_scorm_seq_rolluprulecond_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18645,7 +18645,7 @@ ALTER TABLE public.mdl_scorm_seq_rolluprulecond_id_seq OWNER TO postgres; -- -- TOC entry 11231 (class 0 OID 0) --- Dependencies: 848 +-- Dependencies: 883 -- Name: mdl_scorm_seq_rolluprulecond_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18653,7 +18653,7 @@ ALTER SEQUENCE public.mdl_scorm_seq_rolluprulecond_id_seq OWNED BY public.mdl_sc -- --- TOC entry 845 (class 1259 OID 21934) +-- TOC entry 884 (class 1259 OID 62855) -- Name: mdl_scorm_seq_rulecond; Type: TABLE; Schema: public; Owner: postgres -- @@ -18672,7 +18672,7 @@ ALTER TABLE public.mdl_scorm_seq_rulecond OWNER TO postgres; -- -- TOC entry 11232 (class 0 OID 0) --- Dependencies: 845 +-- Dependencies: 884 -- Name: TABLE mdl_scorm_seq_rulecond; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18680,7 +18680,7 @@ COMMENT ON TABLE public.mdl_scorm_seq_rulecond IS 'SCORM2004 rule condition'; -- --- TOC entry 844 (class 1259 OID 21932) +-- TOC entry 885 (class 1259 OID 62864) -- Name: mdl_scorm_seq_rulecond_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18696,7 +18696,7 @@ ALTER TABLE public.mdl_scorm_seq_rulecond_id_seq OWNER TO postgres; -- -- TOC entry 11233 (class 0 OID 0) --- Dependencies: 844 +-- Dependencies: 885 -- Name: mdl_scorm_seq_rulecond_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18704,7 +18704,7 @@ ALTER SEQUENCE public.mdl_scorm_seq_rulecond_id_seq OWNED BY public.mdl_scorm_se -- --- TOC entry 843 (class 1259 OID 21920) +-- TOC entry 886 (class 1259 OID 62866) -- Name: mdl_scorm_seq_ruleconds; Type: TABLE; Schema: public; Owner: postgres -- @@ -18721,7 +18721,7 @@ ALTER TABLE public.mdl_scorm_seq_ruleconds OWNER TO postgres; -- -- TOC entry 11234 (class 0 OID 0) --- Dependencies: 843 +-- Dependencies: 886 -- Name: TABLE mdl_scorm_seq_ruleconds; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18729,7 +18729,7 @@ COMMENT ON TABLE public.mdl_scorm_seq_ruleconds IS 'SCORM2004 rule conditions'; -- --- TOC entry 842 (class 1259 OID 21918) +-- TOC entry 887 (class 1259 OID 62873) -- Name: mdl_scorm_seq_ruleconds_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18745,7 +18745,7 @@ ALTER TABLE public.mdl_scorm_seq_ruleconds_id_seq OWNER TO postgres; -- -- TOC entry 11235 (class 0 OID 0) --- Dependencies: 842 +-- Dependencies: 887 -- Name: mdl_scorm_seq_ruleconds_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18753,7 +18753,7 @@ ALTER SEQUENCE public.mdl_scorm_seq_ruleconds_id_seq OWNED BY public.mdl_scorm_s -- --- TOC entry 601 (class 1259 OID 19687) +-- TOC entry 888 (class 1259 OID 62875) -- Name: mdl_search_index_requests; Type: TABLE; Schema: public; Owner: postgres -- @@ -18772,7 +18772,7 @@ ALTER TABLE public.mdl_search_index_requests OWNER TO postgres; -- -- TOC entry 11236 (class 0 OID 0) --- Dependencies: 601 +-- Dependencies: 888 -- Name: TABLE mdl_search_index_requests; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18780,7 +18780,7 @@ COMMENT ON TABLE public.mdl_search_index_requests IS 'Records requests for (re)i -- --- TOC entry 600 (class 1259 OID 19685) +-- TOC entry 889 (class 1259 OID 62883) -- Name: mdl_search_index_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18796,7 +18796,7 @@ ALTER TABLE public.mdl_search_index_requests_id_seq OWNER TO postgres; -- -- TOC entry 11237 (class 0 OID 0) --- Dependencies: 600 +-- Dependencies: 889 -- Name: mdl_search_index_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18804,7 +18804,7 @@ ALTER SEQUENCE public.mdl_search_index_requests_id_seq OWNED BY public.mdl_searc -- --- TOC entry 949 (class 1259 OID 22744) +-- TOC entry 890 (class 1259 OID 62885) -- Name: mdl_search_simpledb_index; Type: TABLE; Schema: public; Owner: postgres -- @@ -18830,7 +18830,7 @@ ALTER TABLE public.mdl_search_simpledb_index OWNER TO postgres; -- -- TOC entry 11238 (class 0 OID 0) --- Dependencies: 949 +-- Dependencies: 890 -- Name: TABLE mdl_search_simpledb_index; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18838,7 +18838,7 @@ COMMENT ON TABLE public.mdl_search_simpledb_index IS 'search_simpledb table cont -- --- TOC entry 948 (class 1259 OID 22742) +-- TOC entry 891 (class 1259 OID 62893) -- Name: mdl_search_simpledb_index_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18854,7 +18854,7 @@ ALTER TABLE public.mdl_search_simpledb_index_id_seq OWNER TO postgres; -- -- TOC entry 11239 (class 0 OID 0) --- Dependencies: 948 +-- Dependencies: 891 -- Name: mdl_search_simpledb_index_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18862,7 +18862,7 @@ ALTER SEQUENCE public.mdl_search_simpledb_index_id_seq OWNED BY public.mdl_searc -- --- TOC entry 260 (class 1259 OID 17017) +-- TOC entry 892 (class 1259 OID 62895) -- Name: mdl_sessions; Type: TABLE; Schema: public; Owner: postgres -- @@ -18883,7 +18883,7 @@ ALTER TABLE public.mdl_sessions OWNER TO postgres; -- -- TOC entry 11240 (class 0 OID 0) --- Dependencies: 260 +-- Dependencies: 892 -- Name: TABLE mdl_sessions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18891,7 +18891,7 @@ COMMENT ON TABLE public.mdl_sessions IS 'Database based session storage - now re -- --- TOC entry 259 (class 1259 OID 17015) +-- TOC entry 893 (class 1259 OID 62903) -- Name: mdl_sessions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18907,7 +18907,7 @@ ALTER TABLE public.mdl_sessions_id_seq OWNER TO postgres; -- -- TOC entry 11241 (class 0 OID 0) --- Dependencies: 259 +-- Dependencies: 893 -- Name: mdl_sessions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18915,7 +18915,7 @@ ALTER SEQUENCE public.mdl_sessions_id_seq OWNED BY public.mdl_sessions.id; -- --- TOC entry 274 (class 1259 OID 17183) +-- TOC entry 894 (class 1259 OID 62905) -- Name: mdl_stats_daily; Type: TABLE; Schema: public; Owner: postgres -- @@ -18934,7 +18934,7 @@ ALTER TABLE public.mdl_stats_daily OWNER TO postgres; -- -- TOC entry 11242 (class 0 OID 0) --- Dependencies: 274 +-- Dependencies: 894 -- Name: TABLE mdl_stats_daily; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18942,7 +18942,7 @@ COMMENT ON TABLE public.mdl_stats_daily IS 'to accumulate daily stats'; -- --- TOC entry 273 (class 1259 OID 17181) +-- TOC entry 895 (class 1259 OID 62914) -- Name: mdl_stats_daily_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18958,7 +18958,7 @@ ALTER TABLE public.mdl_stats_daily_id_seq OWNER TO postgres; -- -- TOC entry 11243 (class 0 OID 0) --- Dependencies: 273 +-- Dependencies: 895 -- Name: mdl_stats_daily_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18966,7 +18966,7 @@ ALTER SEQUENCE public.mdl_stats_daily_id_seq OWNED BY public.mdl_stats_daily.id; -- --- TOC entry 278 (class 1259 OID 17217) +-- TOC entry 896 (class 1259 OID 62916) -- Name: mdl_stats_monthly; Type: TABLE; Schema: public; Owner: postgres -- @@ -18985,7 +18985,7 @@ ALTER TABLE public.mdl_stats_monthly OWNER TO postgres; -- -- TOC entry 11244 (class 0 OID 0) --- Dependencies: 278 +-- Dependencies: 896 -- Name: TABLE mdl_stats_monthly; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18993,7 +18993,7 @@ COMMENT ON TABLE public.mdl_stats_monthly IS 'To accumulate monthly stats'; -- --- TOC entry 277 (class 1259 OID 17215) +-- TOC entry 897 (class 1259 OID 62925) -- Name: mdl_stats_monthly_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19009,7 +19009,7 @@ ALTER TABLE public.mdl_stats_monthly_id_seq OWNER TO postgres; -- -- TOC entry 11245 (class 0 OID 0) --- Dependencies: 277 +-- Dependencies: 897 -- Name: mdl_stats_monthly_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19017,7 +19017,7 @@ ALTER SEQUENCE public.mdl_stats_monthly_id_seq OWNED BY public.mdl_stats_monthly -- --- TOC entry 280 (class 1259 OID 17234) +-- TOC entry 898 (class 1259 OID 62927) -- Name: mdl_stats_user_daily; Type: TABLE; Schema: public; Owner: postgres -- @@ -19037,7 +19037,7 @@ ALTER TABLE public.mdl_stats_user_daily OWNER TO postgres; -- -- TOC entry 11246 (class 0 OID 0) --- Dependencies: 280 +-- Dependencies: 898 -- Name: TABLE mdl_stats_user_daily; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19045,7 +19045,7 @@ COMMENT ON TABLE public.mdl_stats_user_daily IS 'To accumulate daily stats per c -- --- TOC entry 279 (class 1259 OID 17232) +-- TOC entry 899 (class 1259 OID 62937) -- Name: mdl_stats_user_daily_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19061,7 +19061,7 @@ ALTER TABLE public.mdl_stats_user_daily_id_seq OWNER TO postgres; -- -- TOC entry 11247 (class 0 OID 0) --- Dependencies: 279 +-- Dependencies: 899 -- Name: mdl_stats_user_daily_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19069,7 +19069,7 @@ ALTER SEQUENCE public.mdl_stats_user_daily_id_seq OWNED BY public.mdl_stats_user -- --- TOC entry 284 (class 1259 OID 17272) +-- TOC entry 900 (class 1259 OID 62939) -- Name: mdl_stats_user_monthly; Type: TABLE; Schema: public; Owner: postgres -- @@ -19089,7 +19089,7 @@ ALTER TABLE public.mdl_stats_user_monthly OWNER TO postgres; -- -- TOC entry 11248 (class 0 OID 0) --- Dependencies: 284 +-- Dependencies: 900 -- Name: TABLE mdl_stats_user_monthly; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19097,7 +19097,7 @@ COMMENT ON TABLE public.mdl_stats_user_monthly IS 'To accumulate monthly stats p -- --- TOC entry 283 (class 1259 OID 17270) +-- TOC entry 901 (class 1259 OID 62949) -- Name: mdl_stats_user_monthly_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19113,7 +19113,7 @@ ALTER TABLE public.mdl_stats_user_monthly_id_seq OWNER TO postgres; -- -- TOC entry 11249 (class 0 OID 0) --- Dependencies: 283 +-- Dependencies: 901 -- Name: mdl_stats_user_monthly_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19121,7 +19121,7 @@ ALTER SEQUENCE public.mdl_stats_user_monthly_id_seq OWNED BY public.mdl_stats_us -- --- TOC entry 282 (class 1259 OID 17253) +-- TOC entry 902 (class 1259 OID 62951) -- Name: mdl_stats_user_weekly; Type: TABLE; Schema: public; Owner: postgres -- @@ -19141,7 +19141,7 @@ ALTER TABLE public.mdl_stats_user_weekly OWNER TO postgres; -- -- TOC entry 11250 (class 0 OID 0) --- Dependencies: 282 +-- Dependencies: 902 -- Name: TABLE mdl_stats_user_weekly; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19149,7 +19149,7 @@ COMMENT ON TABLE public.mdl_stats_user_weekly IS 'To accumulate weekly stats per -- --- TOC entry 281 (class 1259 OID 17251) +-- TOC entry 903 (class 1259 OID 62961) -- Name: mdl_stats_user_weekly_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19165,7 +19165,7 @@ ALTER TABLE public.mdl_stats_user_weekly_id_seq OWNER TO postgres; -- -- TOC entry 11251 (class 0 OID 0) --- Dependencies: 281 +-- Dependencies: 903 -- Name: mdl_stats_user_weekly_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19173,7 +19173,7 @@ ALTER SEQUENCE public.mdl_stats_user_weekly_id_seq OWNED BY public.mdl_stats_use -- --- TOC entry 276 (class 1259 OID 17200) +-- TOC entry 904 (class 1259 OID 62963) -- Name: mdl_stats_weekly; Type: TABLE; Schema: public; Owner: postgres -- @@ -19192,7 +19192,7 @@ ALTER TABLE public.mdl_stats_weekly OWNER TO postgres; -- -- TOC entry 11252 (class 0 OID 0) --- Dependencies: 276 +-- Dependencies: 904 -- Name: TABLE mdl_stats_weekly; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19200,7 +19200,7 @@ COMMENT ON TABLE public.mdl_stats_weekly IS 'To accumulate weekly stats'; -- --- TOC entry 275 (class 1259 OID 17198) +-- TOC entry 905 (class 1259 OID 62972) -- Name: mdl_stats_weekly_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19216,7 +19216,7 @@ ALTER TABLE public.mdl_stats_weekly_id_seq OWNER TO postgres; -- -- TOC entry 11253 (class 0 OID 0) --- Dependencies: 275 +-- Dependencies: 905 -- Name: mdl_stats_weekly_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19224,7 +19224,7 @@ ALTER SEQUENCE public.mdl_stats_weekly_id_seq OWNED BY public.mdl_stats_weekly.i -- --- TOC entry 853 (class 1259 OID 22001) +-- TOC entry 906 (class 1259 OID 62974) -- Name: mdl_survey; Type: TABLE; Schema: public; Owner: postgres -- @@ -19247,7 +19247,7 @@ ALTER TABLE public.mdl_survey OWNER TO postgres; -- -- TOC entry 11254 (class 0 OID 0) --- Dependencies: 853 +-- Dependencies: 906 -- Name: TABLE mdl_survey; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19255,7 +19255,7 @@ COMMENT ON TABLE public.mdl_survey IS 'Each record is one SURVEY module with its -- --- TOC entry 859 (class 1259 OID 22056) +-- TOC entry 907 (class 1259 OID 62989) -- Name: mdl_survey_analysis; Type: TABLE; Schema: public; Owner: postgres -- @@ -19271,7 +19271,7 @@ ALTER TABLE public.mdl_survey_analysis OWNER TO postgres; -- -- TOC entry 11255 (class 0 OID 0) --- Dependencies: 859 +-- Dependencies: 907 -- Name: TABLE mdl_survey_analysis; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19279,7 +19279,7 @@ COMMENT ON TABLE public.mdl_survey_analysis IS 'text about each survey submissio -- --- TOC entry 858 (class 1259 OID 22054) +-- TOC entry 908 (class 1259 OID 62997) -- Name: mdl_survey_analysis_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19295,7 +19295,7 @@ ALTER TABLE public.mdl_survey_analysis_id_seq OWNER TO postgres; -- -- TOC entry 11256 (class 0 OID 0) --- Dependencies: 858 +-- Dependencies: 908 -- Name: mdl_survey_analysis_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19303,7 +19303,7 @@ ALTER SEQUENCE public.mdl_survey_analysis_id_seq OWNED BY public.mdl_survey_anal -- --- TOC entry 857 (class 1259 OID 22038) +-- TOC entry 909 (class 1259 OID 62999) -- Name: mdl_survey_answers; Type: TABLE; Schema: public; Owner: postgres -- @@ -19322,7 +19322,7 @@ ALTER TABLE public.mdl_survey_answers OWNER TO postgres; -- -- TOC entry 11257 (class 0 OID 0) --- Dependencies: 857 +-- Dependencies: 909 -- Name: TABLE mdl_survey_answers; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19330,7 +19330,7 @@ COMMENT ON TABLE public.mdl_survey_answers IS 'the answers to each questions fil -- --- TOC entry 856 (class 1259 OID 22036) +-- TOC entry 910 (class 1259 OID 63009) -- Name: mdl_survey_answers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19346,7 +19346,7 @@ ALTER TABLE public.mdl_survey_answers_id_seq OWNER TO postgres; -- -- TOC entry 11258 (class 0 OID 0) --- Dependencies: 856 +-- Dependencies: 910 -- Name: mdl_survey_answers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19354,7 +19354,7 @@ ALTER SEQUENCE public.mdl_survey_answers_id_seq OWNED BY public.mdl_survey_answe -- --- TOC entry 852 (class 1259 OID 21999) +-- TOC entry 911 (class 1259 OID 63011) -- Name: mdl_survey_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19370,7 +19370,7 @@ ALTER TABLE public.mdl_survey_id_seq OWNER TO postgres; -- -- TOC entry 11259 (class 0 OID 0) --- Dependencies: 852 +-- Dependencies: 911 -- Name: mdl_survey_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19378,7 +19378,7 @@ ALTER SEQUENCE public.mdl_survey_id_seq OWNED BY public.mdl_survey.id; -- --- TOC entry 855 (class 1259 OID 22022) +-- TOC entry 912 (class 1259 OID 63013) -- Name: mdl_survey_questions; Type: TABLE; Schema: public; Owner: postgres -- @@ -19397,7 +19397,7 @@ ALTER TABLE public.mdl_survey_questions OWNER TO postgres; -- -- TOC entry 11260 (class 0 OID 0) --- Dependencies: 855 +-- Dependencies: 912 -- Name: TABLE mdl_survey_questions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19405,7 +19405,7 @@ COMMENT ON TABLE public.mdl_survey_questions IS 'the questions conforming one su -- --- TOC entry 854 (class 1259 OID 22020) +-- TOC entry 913 (class 1259 OID 63024) -- Name: mdl_survey_questions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19421,7 +19421,7 @@ ALTER TABLE public.mdl_survey_questions_id_seq OWNER TO postgres; -- -- TOC entry 11261 (class 0 OID 0) --- Dependencies: 854 +-- Dependencies: 913 -- Name: mdl_survey_questions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19429,7 +19429,7 @@ ALTER SEQUENCE public.mdl_survey_questions_id_seq OWNED BY public.mdl_survey_que -- --- TOC entry 393 (class 1259 OID 18201) +-- TOC entry 914 (class 1259 OID 63026) -- Name: mdl_tag; Type: TABLE; Schema: public; Owner: postgres -- @@ -19451,7 +19451,7 @@ ALTER TABLE public.mdl_tag OWNER TO postgres; -- -- TOC entry 11262 (class 0 OID 0) --- Dependencies: 393 +-- Dependencies: 914 -- Name: TABLE mdl_tag; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19459,7 +19459,7 @@ COMMENT ON TABLE public.mdl_tag IS 'Tag table - this generic table will replace -- --- TOC entry 391 (class 1259 OID 18186) +-- TOC entry 915 (class 1259 OID 63037) -- Name: mdl_tag_area; Type: TABLE; Schema: public; Owner: postgres -- @@ -19480,7 +19480,7 @@ ALTER TABLE public.mdl_tag_area OWNER TO postgres; -- -- TOC entry 11263 (class 0 OID 0) --- Dependencies: 391 +-- Dependencies: 915 -- Name: TABLE mdl_tag_area; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19488,7 +19488,7 @@ COMMENT ON TABLE public.mdl_tag_area IS 'Defines various tag areas, one area is -- --- TOC entry 390 (class 1259 OID 18184) +-- TOC entry 916 (class 1259 OID 63045) -- Name: mdl_tag_area_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19504,7 +19504,7 @@ ALTER TABLE public.mdl_tag_area_id_seq OWNER TO postgres; -- -- TOC entry 11264 (class 0 OID 0) --- Dependencies: 390 +-- Dependencies: 916 -- Name: mdl_tag_area_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19512,7 +19512,7 @@ ALTER SEQUENCE public.mdl_tag_area_id_seq OWNED BY public.mdl_tag_area.id; -- --- TOC entry 389 (class 1259 OID 18172) +-- TOC entry 917 (class 1259 OID 63047) -- Name: mdl_tag_coll; Type: TABLE; Schema: public; Owner: postgres -- @@ -19531,7 +19531,7 @@ ALTER TABLE public.mdl_tag_coll OWNER TO postgres; -- -- TOC entry 11265 (class 0 OID 0) --- Dependencies: 389 +-- Dependencies: 917 -- Name: TABLE mdl_tag_coll; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19539,7 +19539,7 @@ COMMENT ON TABLE public.mdl_tag_coll IS 'Defines different set of tags'; -- --- TOC entry 388 (class 1259 OID 18170) +-- TOC entry 918 (class 1259 OID 63056) -- Name: mdl_tag_coll_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19555,7 +19555,7 @@ ALTER TABLE public.mdl_tag_coll_id_seq OWNER TO postgres; -- -- TOC entry 11266 (class 0 OID 0) --- Dependencies: 388 +-- Dependencies: 918 -- Name: mdl_tag_coll_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19563,7 +19563,7 @@ ALTER SEQUENCE public.mdl_tag_coll_id_seq OWNED BY public.mdl_tag_coll.id; -- --- TOC entry 395 (class 1259 OID 18221) +-- TOC entry 919 (class 1259 OID 63058) -- Name: mdl_tag_correlation; Type: TABLE; Schema: public; Owner: postgres -- @@ -19578,7 +19578,7 @@ ALTER TABLE public.mdl_tag_correlation OWNER TO postgres; -- -- TOC entry 11267 (class 0 OID 0) --- Dependencies: 395 +-- Dependencies: 919 -- Name: TABLE mdl_tag_correlation; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19586,7 +19586,7 @@ COMMENT ON TABLE public.mdl_tag_correlation IS 'The rationale for the ''tag_corr -- --- TOC entry 394 (class 1259 OID 18219) +-- TOC entry 920 (class 1259 OID 63064) -- Name: mdl_tag_correlation_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19602,7 +19602,7 @@ ALTER TABLE public.mdl_tag_correlation_id_seq OWNER TO postgres; -- -- TOC entry 11268 (class 0 OID 0) --- Dependencies: 394 +-- Dependencies: 920 -- Name: mdl_tag_correlation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19610,7 +19610,7 @@ ALTER SEQUENCE public.mdl_tag_correlation_id_seq OWNED BY public.mdl_tag_correla -- --- TOC entry 392 (class 1259 OID 18199) +-- TOC entry 921 (class 1259 OID 63066) -- Name: mdl_tag_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19626,7 +19626,7 @@ ALTER TABLE public.mdl_tag_id_seq OWNER TO postgres; -- -- TOC entry 11269 (class 0 OID 0) --- Dependencies: 392 +-- Dependencies: 921 -- Name: mdl_tag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19634,7 +19634,7 @@ ALTER SEQUENCE public.mdl_tag_id_seq OWNED BY public.mdl_tag.id; -- --- TOC entry 397 (class 1259 OID 18233) +-- TOC entry 922 (class 1259 OID 63068) -- Name: mdl_tag_instance; Type: TABLE; Schema: public; Owner: postgres -- @@ -19656,7 +19656,7 @@ ALTER TABLE public.mdl_tag_instance OWNER TO postgres; -- -- TOC entry 11270 (class 0 OID 0) --- Dependencies: 397 +-- Dependencies: 922 -- Name: TABLE mdl_tag_instance; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19664,7 +19664,7 @@ COMMENT ON TABLE public.mdl_tag_instance IS 'tag_instance table holds the inform -- --- TOC entry 396 (class 1259 OID 18231) +-- TOC entry 923 (class 1259 OID 63076) -- Name: mdl_tag_instance_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19680,7 +19680,7 @@ ALTER TABLE public.mdl_tag_instance_id_seq OWNER TO postgres; -- -- TOC entry 11271 (class 0 OID 0) --- Dependencies: 396 +-- Dependencies: 923 -- Name: mdl_tag_instance_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19688,7 +19688,7 @@ ALTER SEQUENCE public.mdl_tag_instance_id_seq OWNED BY public.mdl_tag_instance.i -- --- TOC entry 527 (class 1259 OID 19209) +-- TOC entry 924 (class 1259 OID 63078) -- Name: mdl_task_adhoc; Type: TABLE; Schema: public; Owner: postgres -- @@ -19708,7 +19708,7 @@ ALTER TABLE public.mdl_task_adhoc OWNER TO postgres; -- -- TOC entry 11272 (class 0 OID 0) --- Dependencies: 527 +-- Dependencies: 924 -- Name: TABLE mdl_task_adhoc; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19716,7 +19716,7 @@ COMMENT ON TABLE public.mdl_task_adhoc IS 'List of adhoc tasks waiting to run.'; -- --- TOC entry 526 (class 1259 OID 19207) +-- TOC entry 925 (class 1259 OID 63087) -- Name: mdl_task_adhoc_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19732,7 +19732,7 @@ ALTER TABLE public.mdl_task_adhoc_id_seq OWNER TO postgres; -- -- TOC entry 11273 (class 0 OID 0) --- Dependencies: 526 +-- Dependencies: 925 -- Name: mdl_task_adhoc_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19740,7 +19740,7 @@ ALTER SEQUENCE public.mdl_task_adhoc_id_seq OWNED BY public.mdl_task_adhoc.id; -- --- TOC entry 529 (class 1259 OID 19225) +-- TOC entry 926 (class 1259 OID 63089) -- Name: mdl_task_log; Type: TABLE; Schema: public; Owner: postgres -- @@ -19763,7 +19763,7 @@ ALTER TABLE public.mdl_task_log OWNER TO postgres; -- -- TOC entry 11274 (class 0 OID 0) --- Dependencies: 529 +-- Dependencies: 926 -- Name: TABLE mdl_task_log; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19771,7 +19771,7 @@ COMMENT ON TABLE public.mdl_task_log IS 'The log table for all tasks'; -- --- TOC entry 528 (class 1259 OID 19223) +-- TOC entry 927 (class 1259 OID 63097) -- Name: mdl_task_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19787,7 +19787,7 @@ ALTER TABLE public.mdl_task_log_id_seq OWNER TO postgres; -- -- TOC entry 11275 (class 0 OID 0) --- Dependencies: 528 +-- Dependencies: 927 -- Name: mdl_task_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19795,7 +19795,7 @@ ALTER SEQUENCE public.mdl_task_log_id_seq OWNED BY public.mdl_task_log.id; -- --- TOC entry 525 (class 1259 OID 19187) +-- TOC entry 928 (class 1259 OID 63099) -- Name: mdl_task_scheduled; Type: TABLE; Schema: public; Owner: postgres -- @@ -19821,7 +19821,7 @@ ALTER TABLE public.mdl_task_scheduled OWNER TO postgres; -- -- TOC entry 11276 (class 0 OID 0) --- Dependencies: 525 +-- Dependencies: 928 -- Name: TABLE mdl_task_scheduled; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19829,7 +19829,7 @@ COMMENT ON TABLE public.mdl_task_scheduled IS 'List of scheduled tasks to be run -- --- TOC entry 524 (class 1259 OID 19185) +-- TOC entry 929 (class 1259 OID 63115) -- Name: mdl_task_scheduled_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19845,7 +19845,7 @@ ALTER TABLE public.mdl_task_scheduled_id_seq OWNER TO postgres; -- -- TOC entry 11277 (class 0 OID 0) --- Dependencies: 524 +-- Dependencies: 929 -- Name: mdl_task_scheduled_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19853,7 +19853,7 @@ ALTER SEQUENCE public.mdl_task_scheduled_id_seq OWNED BY public.mdl_task_schedul -- --- TOC entry 951 (class 1259 OID 22763) +-- TOC entry 930 (class 1259 OID 63117) -- Name: mdl_tool_cohortroles; Type: TABLE; Schema: public; Owner: postgres -- @@ -19872,7 +19872,7 @@ ALTER TABLE public.mdl_tool_cohortroles OWNER TO postgres; -- -- TOC entry 11278 (class 0 OID 0) --- Dependencies: 951 +-- Dependencies: 930 -- Name: TABLE mdl_tool_cohortroles; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19880,7 +19880,7 @@ COMMENT ON TABLE public.mdl_tool_cohortroles IS 'Mapping of users to cohort role -- --- TOC entry 950 (class 1259 OID 22761) +-- TOC entry 931 (class 1259 OID 63120) -- Name: mdl_tool_cohortroles_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19896,7 +19896,7 @@ ALTER TABLE public.mdl_tool_cohortroles_id_seq OWNER TO postgres; -- -- TOC entry 11279 (class 0 OID 0) --- Dependencies: 950 +-- Dependencies: 931 -- Name: mdl_tool_cohortroles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19904,7 +19904,7 @@ ALTER SEQUENCE public.mdl_tool_cohortroles_id_seq OWNED BY public.mdl_tool_cohor -- --- TOC entry 953 (class 1259 OID 22772) +-- TOC entry 932 (class 1259 OID 63122) -- Name: mdl_tool_customlang; Type: TABLE; Schema: public; Owner: postgres -- @@ -19927,7 +19927,7 @@ ALTER TABLE public.mdl_tool_customlang OWNER TO postgres; -- -- TOC entry 11280 (class 0 OID 0) --- Dependencies: 953 +-- Dependencies: 932 -- Name: TABLE mdl_tool_customlang; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19935,7 +19935,7 @@ COMMENT ON TABLE public.mdl_tool_customlang IS 'Contains the working checkout of -- --- TOC entry 955 (class 1259 OID 22789) +-- TOC entry 933 (class 1259 OID 63132) -- Name: mdl_tool_customlang_components; Type: TABLE; Schema: public; Owner: postgres -- @@ -19950,7 +19950,7 @@ ALTER TABLE public.mdl_tool_customlang_components OWNER TO postgres; -- -- TOC entry 11281 (class 0 OID 0) --- Dependencies: 955 +-- Dependencies: 933 -- Name: TABLE mdl_tool_customlang_components; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19958,7 +19958,7 @@ COMMENT ON TABLE public.mdl_tool_customlang_components IS 'Contains the list of -- --- TOC entry 954 (class 1259 OID 22787) +-- TOC entry 934 (class 1259 OID 63139) -- Name: mdl_tool_customlang_components_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19974,7 +19974,7 @@ ALTER TABLE public.mdl_tool_customlang_components_id_seq OWNER TO postgres; -- -- TOC entry 11282 (class 0 OID 0) --- Dependencies: 954 +-- Dependencies: 934 -- Name: mdl_tool_customlang_components_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19982,7 +19982,7 @@ ALTER SEQUENCE public.mdl_tool_customlang_components_id_seq OWNED BY public.mdl_ -- --- TOC entry 952 (class 1259 OID 22770) +-- TOC entry 935 (class 1259 OID 63141) -- Name: mdl_tool_customlang_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19998,7 +19998,7 @@ ALTER TABLE public.mdl_tool_customlang_id_seq OWNER TO postgres; -- -- TOC entry 11283 (class 0 OID 0) --- Dependencies: 952 +-- Dependencies: 935 -- Name: mdl_tool_customlang_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20006,7 +20006,7 @@ ALTER SEQUENCE public.mdl_tool_customlang_id_seq OWNED BY public.mdl_tool_custom -- --- TOC entry 961 (class 1259 OID 22841) +-- TOC entry 936 (class 1259 OID 63143) -- Name: mdl_tool_dataprivacy_category; Type: TABLE; Schema: public; Owner: postgres -- @@ -20025,7 +20025,7 @@ ALTER TABLE public.mdl_tool_dataprivacy_category OWNER TO postgres; -- -- TOC entry 11284 (class 0 OID 0) --- Dependencies: 961 +-- Dependencies: 936 -- Name: TABLE mdl_tool_dataprivacy_category; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20033,7 +20033,7 @@ COMMENT ON TABLE public.mdl_tool_dataprivacy_category IS 'Data categories'; -- --- TOC entry 960 (class 1259 OID 22839) +-- TOC entry 937 (class 1259 OID 63150) -- Name: mdl_tool_dataprivacy_category_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20049,7 +20049,7 @@ ALTER TABLE public.mdl_tool_dataprivacy_category_id_seq OWNER TO postgres; -- -- TOC entry 11285 (class 0 OID 0) --- Dependencies: 960 +-- Dependencies: 937 -- Name: mdl_tool_dataprivacy_category_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20057,7 +20057,7 @@ ALTER SEQUENCE public.mdl_tool_dataprivacy_category_id_seq OWNED BY public.mdl_t -- --- TOC entry 967 (class 1259 OID 22875) +-- TOC entry 938 (class 1259 OID 63152) -- Name: mdl_tool_dataprivacy_ctxexpired; Type: TABLE; Schema: public; Owner: postgres -- @@ -20078,7 +20078,7 @@ ALTER TABLE public.mdl_tool_dataprivacy_ctxexpired OWNER TO postgres; -- -- TOC entry 11286 (class 0 OID 0) --- Dependencies: 967 +-- Dependencies: 938 -- Name: TABLE mdl_tool_dataprivacy_ctxexpired; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20086,7 +20086,7 @@ COMMENT ON TABLE public.mdl_tool_dataprivacy_ctxexpired IS 'Default comment for -- --- TOC entry 966 (class 1259 OID 22873) +-- TOC entry 939 (class 1259 OID 63159) -- Name: mdl_tool_dataprivacy_ctxexpired_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20102,7 +20102,7 @@ ALTER TABLE public.mdl_tool_dataprivacy_ctxexpired_id_seq OWNER TO postgres; -- -- TOC entry 11287 (class 0 OID 0) --- Dependencies: 966 +-- Dependencies: 939 -- Name: mdl_tool_dataprivacy_ctxexpired_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20110,7 +20110,7 @@ ALTER SEQUENCE public.mdl_tool_dataprivacy_ctxexpired_id_seq OWNED BY public.mdl -- --- TOC entry 963 (class 1259 OID 22853) +-- TOC entry 940 (class 1259 OID 63161) -- Name: mdl_tool_dataprivacy_ctxinstance; Type: TABLE; Schema: public; Owner: postgres -- @@ -20129,7 +20129,7 @@ ALTER TABLE public.mdl_tool_dataprivacy_ctxinstance OWNER TO postgres; -- -- TOC entry 11288 (class 0 OID 0) --- Dependencies: 963 +-- Dependencies: 940 -- Name: TABLE mdl_tool_dataprivacy_ctxinstance; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20137,7 +20137,7 @@ COMMENT ON TABLE public.mdl_tool_dataprivacy_ctxinstance IS 'Default comment for -- --- TOC entry 962 (class 1259 OID 22851) +-- TOC entry 941 (class 1259 OID 63164) -- Name: mdl_tool_dataprivacy_ctxinstance_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20153,7 +20153,7 @@ ALTER TABLE public.mdl_tool_dataprivacy_ctxinstance_id_seq OWNER TO postgres; -- -- TOC entry 11289 (class 0 OID 0) --- Dependencies: 962 +-- Dependencies: 941 -- Name: mdl_tool_dataprivacy_ctxinstance_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20161,7 +20161,7 @@ ALTER SEQUENCE public.mdl_tool_dataprivacy_ctxinstance_id_seq OWNED BY public.md -- --- TOC entry 965 (class 1259 OID 22864) +-- TOC entry 942 (class 1259 OID 63166) -- Name: mdl_tool_dataprivacy_ctxlevel; Type: TABLE; Schema: public; Owner: postgres -- @@ -20180,7 +20180,7 @@ ALTER TABLE public.mdl_tool_dataprivacy_ctxlevel OWNER TO postgres; -- -- TOC entry 11290 (class 0 OID 0) --- Dependencies: 965 +-- Dependencies: 942 -- Name: TABLE mdl_tool_dataprivacy_ctxlevel; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20188,7 +20188,7 @@ COMMENT ON TABLE public.mdl_tool_dataprivacy_ctxlevel IS 'Default comment for th -- --- TOC entry 964 (class 1259 OID 22862) +-- TOC entry 943 (class 1259 OID 63169) -- Name: mdl_tool_dataprivacy_ctxlevel_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20204,7 +20204,7 @@ ALTER TABLE public.mdl_tool_dataprivacy_ctxlevel_id_seq OWNER TO postgres; -- -- TOC entry 11291 (class 0 OID 0) --- Dependencies: 964 +-- Dependencies: 943 -- Name: mdl_tool_dataprivacy_ctxlevel_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20212,7 +20212,7 @@ ALTER SEQUENCE public.mdl_tool_dataprivacy_ctxlevel_id_seq OWNED BY public.mdl_t -- --- TOC entry 959 (class 1259 OID 22828) +-- TOC entry 944 (class 1259 OID 63171) -- Name: mdl_tool_dataprivacy_purpose; Type: TABLE; Schema: public; Owner: postgres -- @@ -20235,7 +20235,7 @@ ALTER TABLE public.mdl_tool_dataprivacy_purpose OWNER TO postgres; -- -- TOC entry 11292 (class 0 OID 0) --- Dependencies: 959 +-- Dependencies: 944 -- Name: TABLE mdl_tool_dataprivacy_purpose; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20243,7 +20243,7 @@ COMMENT ON TABLE public.mdl_tool_dataprivacy_purpose IS 'Data purposes'; -- --- TOC entry 958 (class 1259 OID 22826) +-- TOC entry 945 (class 1259 OID 63179) -- Name: mdl_tool_dataprivacy_purpose_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20259,7 +20259,7 @@ ALTER TABLE public.mdl_tool_dataprivacy_purpose_id_seq OWNER TO postgres; -- -- TOC entry 11293 (class 0 OID 0) --- Dependencies: 958 +-- Dependencies: 945 -- Name: mdl_tool_dataprivacy_purpose_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20267,7 +20267,7 @@ ALTER SEQUENCE public.mdl_tool_dataprivacy_purpose_id_seq OWNED BY public.mdl_to -- --- TOC entry 969 (class 1259 OID 22888) +-- TOC entry 946 (class 1259 OID 63181) -- Name: mdl_tool_dataprivacy_purposerole; Type: TABLE; Schema: public; Owner: postgres -- @@ -20289,7 +20289,7 @@ ALTER TABLE public.mdl_tool_dataprivacy_purposerole OWNER TO postgres; -- -- TOC entry 11294 (class 0 OID 0) --- Dependencies: 969 +-- Dependencies: 946 -- Name: TABLE mdl_tool_dataprivacy_purposerole; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20297,7 +20297,7 @@ COMMENT ON TABLE public.mdl_tool_dataprivacy_purposerole IS 'Data purpose overri -- --- TOC entry 968 (class 1259 OID 22886) +-- TOC entry 947 (class 1259 OID 63188) -- Name: mdl_tool_dataprivacy_purposerole_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20313,7 +20313,7 @@ ALTER TABLE public.mdl_tool_dataprivacy_purposerole_id_seq OWNER TO postgres; -- -- TOC entry 11295 (class 0 OID 0) --- Dependencies: 968 +-- Dependencies: 947 -- Name: mdl_tool_dataprivacy_purposerole_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20321,7 +20321,7 @@ ALTER SEQUENCE public.mdl_tool_dataprivacy_purposerole_id_seq OWNED BY public.md -- --- TOC entry 957 (class 1259 OID 22801) +-- TOC entry 948 (class 1259 OID 63190) -- Name: mdl_tool_dataprivacy_request; Type: TABLE; Schema: public; Owner: postgres -- @@ -20348,7 +20348,7 @@ ALTER TABLE public.mdl_tool_dataprivacy_request OWNER TO postgres; -- -- TOC entry 11296 (class 0 OID 0) --- Dependencies: 957 +-- Dependencies: 948 -- Name: TABLE mdl_tool_dataprivacy_request; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20356,7 +20356,7 @@ COMMENT ON TABLE public.mdl_tool_dataprivacy_request IS 'Table for data requests -- --- TOC entry 956 (class 1259 OID 22799) +-- TOC entry 949 (class 1259 OID 63208) -- Name: mdl_tool_dataprivacy_request_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20372,7 +20372,7 @@ ALTER TABLE public.mdl_tool_dataprivacy_request_id_seq OWNER TO postgres; -- -- TOC entry 11297 (class 0 OID 0) --- Dependencies: 956 +-- Dependencies: 949 -- Name: mdl_tool_dataprivacy_request_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20380,7 +20380,7 @@ ALTER SEQUENCE public.mdl_tool_dataprivacy_request_id_seq OWNED BY public.mdl_to -- --- TOC entry 977 (class 1259 OID 22941) +-- TOC entry 950 (class 1259 OID 63210) -- Name: mdl_tool_monitor_events; Type: TABLE; Schema: public; Owner: postgres -- @@ -20400,7 +20400,7 @@ ALTER TABLE public.mdl_tool_monitor_events OWNER TO postgres; -- -- TOC entry 11298 (class 0 OID 0) --- Dependencies: 977 +-- Dependencies: 950 -- Name: TABLE mdl_tool_monitor_events; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20408,7 +20408,7 @@ COMMENT ON TABLE public.mdl_tool_monitor_events IS 'A table that keeps a log of -- --- TOC entry 976 (class 1259 OID 22939) +-- TOC entry 951 (class 1259 OID 63218) -- Name: mdl_tool_monitor_events_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20424,7 +20424,7 @@ ALTER TABLE public.mdl_tool_monitor_events_id_seq OWNER TO postgres; -- -- TOC entry 11299 (class 0 OID 0) --- Dependencies: 976 +-- Dependencies: 951 -- Name: mdl_tool_monitor_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20432,7 +20432,7 @@ ALTER SEQUENCE public.mdl_tool_monitor_events_id_seq OWNED BY public.mdl_tool_mo -- --- TOC entry 975 (class 1259 OID 22931) +-- TOC entry 952 (class 1259 OID 63220) -- Name: mdl_tool_monitor_history; Type: TABLE; Schema: public; Owner: postgres -- @@ -20448,7 +20448,7 @@ ALTER TABLE public.mdl_tool_monitor_history OWNER TO postgres; -- -- TOC entry 11300 (class 0 OID 0) --- Dependencies: 975 +-- Dependencies: 952 -- Name: TABLE mdl_tool_monitor_history; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20456,7 +20456,7 @@ COMMENT ON TABLE public.mdl_tool_monitor_history IS 'Table to store history of m -- --- TOC entry 974 (class 1259 OID 22929) +-- TOC entry 953 (class 1259 OID 63223) -- Name: mdl_tool_monitor_history_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20472,7 +20472,7 @@ ALTER TABLE public.mdl_tool_monitor_history_id_seq OWNER TO postgres; -- -- TOC entry 11301 (class 0 OID 0) --- Dependencies: 974 +-- Dependencies: 953 -- Name: mdl_tool_monitor_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20480,7 +20480,7 @@ ALTER SEQUENCE public.mdl_tool_monitor_history_id_seq OWNED BY public.mdl_tool_m -- --- TOC entry 971 (class 1259 OID 22903) +-- TOC entry 954 (class 1259 OID 63225) -- Name: mdl_tool_monitor_rules; Type: TABLE; Schema: public; Owner: postgres -- @@ -20506,7 +20506,7 @@ ALTER TABLE public.mdl_tool_monitor_rules OWNER TO postgres; -- -- TOC entry 11302 (class 0 OID 0) --- Dependencies: 971 +-- Dependencies: 954 -- Name: TABLE mdl_tool_monitor_rules; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20514,7 +20514,7 @@ COMMENT ON TABLE public.mdl_tool_monitor_rules IS 'Table to store rules'; -- --- TOC entry 970 (class 1259 OID 22901) +-- TOC entry 955 (class 1259 OID 63234) -- Name: mdl_tool_monitor_rules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20530,7 +20530,7 @@ ALTER TABLE public.mdl_tool_monitor_rules_id_seq OWNER TO postgres; -- -- TOC entry 11303 (class 0 OID 0) --- Dependencies: 970 +-- Dependencies: 955 -- Name: mdl_tool_monitor_rules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20538,7 +20538,7 @@ ALTER SEQUENCE public.mdl_tool_monitor_rules_id_seq OWNED BY public.mdl_tool_mon -- --- TOC entry 973 (class 1259 OID 22919) +-- TOC entry 956 (class 1259 OID 63236) -- Name: mdl_tool_monitor_subscriptions; Type: TABLE; Schema: public; Owner: postgres -- @@ -20558,7 +20558,7 @@ ALTER TABLE public.mdl_tool_monitor_subscriptions OWNER TO postgres; -- -- TOC entry 11304 (class 0 OID 0) --- Dependencies: 973 +-- Dependencies: 956 -- Name: TABLE mdl_tool_monitor_subscriptions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20566,7 +20566,7 @@ COMMENT ON TABLE public.mdl_tool_monitor_subscriptions IS 'Table to store user s -- --- TOC entry 972 (class 1259 OID 22917) +-- TOC entry 957 (class 1259 OID 63241) -- Name: mdl_tool_monitor_subscriptions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20582,7 +20582,7 @@ ALTER TABLE public.mdl_tool_monitor_subscriptions_id_seq OWNER TO postgres; -- -- TOC entry 11305 (class 0 OID 0) --- Dependencies: 972 +-- Dependencies: 957 -- Name: mdl_tool_monitor_subscriptions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20590,7 +20590,7 @@ ALTER SEQUENCE public.mdl_tool_monitor_subscriptions_id_seq OWNED BY public.mdl_ -- --- TOC entry 979 (class 1259 OID 22954) +-- TOC entry 958 (class 1259 OID 63243) -- Name: mdl_tool_policy; Type: TABLE; Schema: public; Owner: postgres -- @@ -20605,7 +20605,7 @@ ALTER TABLE public.mdl_tool_policy OWNER TO postgres; -- -- TOC entry 11306 (class 0 OID 0) --- Dependencies: 979 +-- Dependencies: 958 -- Name: TABLE mdl_tool_policy; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20613,7 +20613,7 @@ COMMENT ON TABLE public.mdl_tool_policy IS 'Contains the list of policy document -- --- TOC entry 983 (class 1259 OID 22984) +-- TOC entry 959 (class 1259 OID 63247) -- Name: mdl_tool_policy_acceptances; Type: TABLE; Schema: public; Owner: postgres -- @@ -20634,7 +20634,7 @@ ALTER TABLE public.mdl_tool_policy_acceptances OWNER TO postgres; -- -- TOC entry 11307 (class 0 OID 0) --- Dependencies: 983 +-- Dependencies: 959 -- Name: TABLE mdl_tool_policy_acceptances; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20642,7 +20642,7 @@ COMMENT ON TABLE public.mdl_tool_policy_acceptances IS 'Tracks users accepting t -- --- TOC entry 982 (class 1259 OID 22982) +-- TOC entry 960 (class 1259 OID 63254) -- Name: mdl_tool_policy_acceptances_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20658,7 +20658,7 @@ ALTER TABLE public.mdl_tool_policy_acceptances_id_seq OWNER TO postgres; -- -- TOC entry 11308 (class 0 OID 0) --- Dependencies: 982 +-- Dependencies: 960 -- Name: mdl_tool_policy_acceptances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20666,7 +20666,7 @@ ALTER SEQUENCE public.mdl_tool_policy_acceptances_id_seq OWNED BY public.mdl_too -- --- TOC entry 978 (class 1259 OID 22952) +-- TOC entry 961 (class 1259 OID 63256) -- Name: mdl_tool_policy_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20682,7 +20682,7 @@ ALTER TABLE public.mdl_tool_policy_id_seq OWNER TO postgres; -- -- TOC entry 11309 (class 0 OID 0) --- Dependencies: 978 +-- Dependencies: 961 -- Name: mdl_tool_policy_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20690,7 +20690,7 @@ ALTER SEQUENCE public.mdl_tool_policy_id_seq OWNED BY public.mdl_tool_policy.id; -- --- TOC entry 981 (class 1259 OID 22964) +-- TOC entry 962 (class 1259 OID 63258) -- Name: mdl_tool_policy_versions; Type: TABLE; Schema: public; Owner: postgres -- @@ -20718,7 +20718,7 @@ ALTER TABLE public.mdl_tool_policy_versions OWNER TO postgres; -- -- TOC entry 11310 (class 0 OID 0) --- Dependencies: 981 +-- Dependencies: 962 -- Name: TABLE mdl_tool_policy_versions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20726,7 +20726,7 @@ COMMENT ON TABLE public.mdl_tool_policy_versions IS 'Holds versions of the polic -- --- TOC entry 980 (class 1259 OID 22962) +-- TOC entry 963 (class 1259 OID 63271) -- Name: mdl_tool_policy_versions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20742,7 +20742,7 @@ ALTER TABLE public.mdl_tool_policy_versions_id_seq OWNER TO postgres; -- -- TOC entry 11311 (class 0 OID 0) --- Dependencies: 980 +-- Dependencies: 963 -- Name: mdl_tool_policy_versions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20750,7 +20750,7 @@ ALTER SEQUENCE public.mdl_tool_policy_versions_id_seq OWNED BY public.mdl_tool_p -- --- TOC entry 987 (class 1259 OID 23011) +-- TOC entry 964 (class 1259 OID 63273) -- Name: mdl_tool_recyclebin_category; Type: TABLE; Schema: public; Owner: postgres -- @@ -20767,7 +20767,7 @@ ALTER TABLE public.mdl_tool_recyclebin_category OWNER TO postgres; -- -- TOC entry 11312 (class 0 OID 0) --- Dependencies: 987 +-- Dependencies: 964 -- Name: TABLE mdl_tool_recyclebin_category; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20775,7 +20775,7 @@ COMMENT ON TABLE public.mdl_tool_recyclebin_category IS 'A list of items in the -- --- TOC entry 986 (class 1259 OID 23009) +-- TOC entry 965 (class 1259 OID 63281) -- Name: mdl_tool_recyclebin_category_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20791,7 +20791,7 @@ ALTER TABLE public.mdl_tool_recyclebin_category_id_seq OWNER TO postgres; -- -- TOC entry 11313 (class 0 OID 0) --- Dependencies: 986 +-- Dependencies: 965 -- Name: mdl_tool_recyclebin_category_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20799,7 +20799,7 @@ ALTER SEQUENCE public.mdl_tool_recyclebin_category_id_seq OWNED BY public.mdl_to -- --- TOC entry 985 (class 1259 OID 23000) +-- TOC entry 966 (class 1259 OID 63283) -- Name: mdl_tool_recyclebin_course; Type: TABLE; Schema: public; Owner: postgres -- @@ -20817,7 +20817,7 @@ ALTER TABLE public.mdl_tool_recyclebin_course OWNER TO postgres; -- -- TOC entry 11314 (class 0 OID 0) --- Dependencies: 985 +-- Dependencies: 966 -- Name: TABLE mdl_tool_recyclebin_course; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20825,7 +20825,7 @@ COMMENT ON TABLE public.mdl_tool_recyclebin_course IS 'A list of items in the co -- --- TOC entry 984 (class 1259 OID 22998) +-- TOC entry 967 (class 1259 OID 63287) -- Name: mdl_tool_recyclebin_course_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20841,7 +20841,7 @@ ALTER TABLE public.mdl_tool_recyclebin_course_id_seq OWNER TO postgres; -- -- TOC entry 11315 (class 0 OID 0) --- Dependencies: 984 +-- Dependencies: 967 -- Name: mdl_tool_recyclebin_course_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20849,7 +20849,7 @@ ALTER SEQUENCE public.mdl_tool_recyclebin_course_id_seq OWNED BY public.mdl_tool -- --- TOC entry 991 (class 1259 OID 23040) +-- TOC entry 968 (class 1259 OID 63289) -- Name: mdl_tool_usertours_steps; Type: TABLE; Schema: public; Owner: postgres -- @@ -20869,7 +20869,7 @@ ALTER TABLE public.mdl_tool_usertours_steps OWNER TO postgres; -- -- TOC entry 11316 (class 0 OID 0) --- Dependencies: 991 +-- Dependencies: 968 -- Name: TABLE mdl_tool_usertours_steps; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20877,7 +20877,7 @@ COMMENT ON TABLE public.mdl_tool_usertours_steps IS 'Steps in an tour'; -- --- TOC entry 990 (class 1259 OID 23038) +-- TOC entry 969 (class 1259 OID 63296) -- Name: mdl_tool_usertours_steps_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20893,7 +20893,7 @@ ALTER TABLE public.mdl_tool_usertours_steps_id_seq OWNER TO postgres; -- -- TOC entry 11317 (class 0 OID 0) --- Dependencies: 990 +-- Dependencies: 969 -- Name: mdl_tool_usertours_steps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20901,7 +20901,7 @@ ALTER SEQUENCE public.mdl_tool_usertours_steps_id_seq OWNED BY public.mdl_tool_u -- --- TOC entry 989 (class 1259 OID 23026) +-- TOC entry 970 (class 1259 OID 63298) -- Name: mdl_tool_usertours_tours; Type: TABLE; Schema: public; Owner: postgres -- @@ -20920,7 +20920,7 @@ ALTER TABLE public.mdl_tool_usertours_tours OWNER TO postgres; -- -- TOC entry 11318 (class 0 OID 0) --- Dependencies: 989 +-- Dependencies: 970 -- Name: TABLE mdl_tool_usertours_tours; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20928,7 +20928,7 @@ COMMENT ON TABLE public.mdl_tool_usertours_tours IS 'List of tours'; -- --- TOC entry 988 (class 1259 OID 23024) +-- TOC entry 971 (class 1259 OID 63307) -- Name: mdl_tool_usertours_tours_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20944,7 +20944,7 @@ ALTER TABLE public.mdl_tool_usertours_tours_id_seq OWNER TO postgres; -- -- TOC entry 11319 (class 0 OID 0) --- Dependencies: 988 +-- Dependencies: 971 -- Name: mdl_tool_usertours_tours_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20952,7 +20952,7 @@ ALTER SEQUENCE public.mdl_tool_usertours_tours_id_seq OWNED BY public.mdl_tool_u -- --- TOC entry 192 (class 1259 OID 16428) +-- TOC entry 972 (class 1259 OID 63309) -- Name: mdl_upgrade_log; Type: TABLE; Schema: public; Owner: postgres -- @@ -20974,7 +20974,7 @@ ALTER TABLE public.mdl_upgrade_log OWNER TO postgres; -- -- TOC entry 11320 (class 0 OID 0) --- Dependencies: 192 +-- Dependencies: 972 -- Name: TABLE mdl_upgrade_log; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20982,7 +20982,7 @@ COMMENT ON TABLE public.mdl_upgrade_log IS 'Upgrade logging'; -- --- TOC entry 191 (class 1259 OID 16426) +-- TOC entry 973 (class 1259 OID 63316) -- Name: mdl_upgrade_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20998,7 +20998,7 @@ ALTER TABLE public.mdl_upgrade_log_id_seq OWNER TO postgres; -- -- TOC entry 11321 (class 0 OID 0) --- Dependencies: 191 +-- Dependencies: 973 -- Name: mdl_upgrade_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21006,7 +21006,7 @@ ALTER SEQUENCE public.mdl_upgrade_log_id_seq OWNED BY public.mdl_upgrade_log.id; -- --- TOC entry 861 (class 1259 OID 22071) +-- TOC entry 974 (class 1259 OID 63318) -- Name: mdl_url; Type: TABLE; Schema: public; Owner: postgres -- @@ -21028,7 +21028,7 @@ ALTER TABLE public.mdl_url OWNER TO postgres; -- -- TOC entry 11322 (class 0 OID 0) --- Dependencies: 861 +-- Dependencies: 974 -- Name: TABLE mdl_url; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21036,7 +21036,7 @@ COMMENT ON TABLE public.mdl_url IS 'each record is one url resource'; -- --- TOC entry 860 (class 1259 OID 22069) +-- TOC entry 975 (class 1259 OID 63329) -- Name: mdl_url_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21052,7 +21052,7 @@ ALTER TABLE public.mdl_url_id_seq OWNER TO postgres; -- -- TOC entry 11323 (class 0 OID 0) --- Dependencies: 860 +-- Dependencies: 975 -- Name: mdl_url_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21060,7 +21060,7 @@ ALTER SEQUENCE public.mdl_url_id_seq OWNED BY public.mdl_url.id; -- --- TOC entry 262 (class 1259 OID 17035) +-- TOC entry 976 (class 1259 OID 63331) -- Name: mdl_user; Type: TABLE; Schema: public; Owner: postgres -- @@ -21126,7 +21126,7 @@ ALTER TABLE public.mdl_user OWNER TO postgres; -- -- TOC entry 11324 (class 0 OID 0) --- Dependencies: 262 +-- Dependencies: 976 -- Name: TABLE mdl_user; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21134,7 +21134,7 @@ COMMENT ON TABLE public.mdl_user IS 'One record for each person'; -- --- TOC entry 519 (class 1259 OID 19142) +-- TOC entry 977 (class 1259 OID 63383) -- Name: mdl_user_devices; Type: TABLE; Schema: public; Owner: postgres -- @@ -21157,7 +21157,7 @@ ALTER TABLE public.mdl_user_devices OWNER TO postgres; -- -- TOC entry 11325 (class 0 OID 0) --- Dependencies: 519 +-- Dependencies: 977 -- Name: TABLE mdl_user_devices; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21165,7 +21165,7 @@ COMMENT ON TABLE public.mdl_user_devices IS 'This table stores user''s mobile de -- --- TOC entry 518 (class 1259 OID 19140) +-- TOC entry 978 (class 1259 OID 63397) -- Name: mdl_user_devices_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21181,7 +21181,7 @@ ALTER TABLE public.mdl_user_devices_id_seq OWNER TO postgres; -- -- TOC entry 11326 (class 0 OID 0) --- Dependencies: 518 +-- Dependencies: 978 -- Name: mdl_user_devices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21189,7 +21189,7 @@ ALTER SEQUENCE public.mdl_user_devices_id_seq OWNED BY public.mdl_user_devices.i -- --- TOC entry 208 (class 1259 OID 16592) +-- TOC entry 979 (class 1259 OID 63399) -- Name: mdl_user_enrolments; Type: TABLE; Schema: public; Owner: postgres -- @@ -21210,7 +21210,7 @@ ALTER TABLE public.mdl_user_enrolments OWNER TO postgres; -- -- TOC entry 11327 (class 0 OID 0) --- Dependencies: 208 +-- Dependencies: 979 -- Name: TABLE mdl_user_enrolments; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21218,7 +21218,7 @@ COMMENT ON TABLE public.mdl_user_enrolments IS 'Users participating in courses ( -- --- TOC entry 207 (class 1259 OID 16590) +-- TOC entry 980 (class 1259 OID 63408) -- Name: mdl_user_enrolments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21234,7 +21234,7 @@ ALTER TABLE public.mdl_user_enrolments_id_seq OWNER TO postgres; -- -- TOC entry 11328 (class 0 OID 0) --- Dependencies: 207 +-- Dependencies: 980 -- Name: mdl_user_enrolments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21242,7 +21242,7 @@ ALTER SEQUENCE public.mdl_user_enrolments_id_seq OWNED BY public.mdl_user_enrolm -- --- TOC entry 261 (class 1259 OID 17033) +-- TOC entry 981 (class 1259 OID 63410) -- Name: mdl_user_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21258,7 +21258,7 @@ ALTER TABLE public.mdl_user_id_seq OWNER TO postgres; -- -- TOC entry 11329 (class 0 OID 0) --- Dependencies: 261 +-- Dependencies: 981 -- Name: mdl_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21266,7 +21266,7 @@ ALTER SEQUENCE public.mdl_user_id_seq OWNED BY public.mdl_user.id; -- --- TOC entry 313 (class 1259 OID 17511) +-- TOC entry 982 (class 1259 OID 63412) -- Name: mdl_user_info_category; Type: TABLE; Schema: public; Owner: postgres -- @@ -21281,7 +21281,7 @@ ALTER TABLE public.mdl_user_info_category OWNER TO postgres; -- -- TOC entry 11330 (class 0 OID 0) --- Dependencies: 313 +-- Dependencies: 982 -- Name: TABLE mdl_user_info_category; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21289,7 +21289,7 @@ COMMENT ON TABLE public.mdl_user_info_category IS 'Customisable fields categorie -- --- TOC entry 312 (class 1259 OID 17509) +-- TOC entry 983 (class 1259 OID 63417) -- Name: mdl_user_info_category_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21305,7 +21305,7 @@ ALTER TABLE public.mdl_user_info_category_id_seq OWNER TO postgres; -- -- TOC entry 11331 (class 0 OID 0) --- Dependencies: 312 +-- Dependencies: 983 -- Name: mdl_user_info_category_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21313,7 +21313,7 @@ ALTER SEQUENCE public.mdl_user_info_category_id_seq OWNED BY public.mdl_user_inf -- --- TOC entry 315 (class 1259 OID 17521) +-- TOC entry 984 (class 1259 OID 63419) -- Name: mdl_user_info_data; Type: TABLE; Schema: public; Owner: postgres -- @@ -21330,7 +21330,7 @@ ALTER TABLE public.mdl_user_info_data OWNER TO postgres; -- -- TOC entry 11332 (class 0 OID 0) --- Dependencies: 315 +-- Dependencies: 984 -- Name: TABLE mdl_user_info_data; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21338,7 +21338,7 @@ COMMENT ON TABLE public.mdl_user_info_data IS 'Data for the customisable user fi -- --- TOC entry 314 (class 1259 OID 17519) +-- TOC entry 985 (class 1259 OID 63428) -- Name: mdl_user_info_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21354,7 +21354,7 @@ ALTER TABLE public.mdl_user_info_data_id_seq OWNER TO postgres; -- -- TOC entry 11333 (class 0 OID 0) --- Dependencies: 314 +-- Dependencies: 985 -- Name: mdl_user_info_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21362,7 +21362,7 @@ ALTER SEQUENCE public.mdl_user_info_data_id_seq OWNED BY public.mdl_user_info_da -- --- TOC entry 311 (class 1259 OID 17489) +-- TOC entry 986 (class 1259 OID 63430) -- Name: mdl_user_info_field; Type: TABLE; Schema: public; Owner: postgres -- @@ -21394,7 +21394,7 @@ ALTER TABLE public.mdl_user_info_field OWNER TO postgres; -- -- TOC entry 11334 (class 0 OID 0) --- Dependencies: 311 +-- Dependencies: 986 -- Name: TABLE mdl_user_info_field; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21402,7 +21402,7 @@ COMMENT ON TABLE public.mdl_user_info_field IS 'Customisable user profile fields -- --- TOC entry 310 (class 1259 OID 17487) +-- TOC entry 987 (class 1259 OID 63447) -- Name: mdl_user_info_field_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21418,7 +21418,7 @@ ALTER TABLE public.mdl_user_info_field_id_seq OWNER TO postgres; -- -- TOC entry 11335 (class 0 OID 0) --- Dependencies: 310 +-- Dependencies: 987 -- Name: mdl_user_info_field_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21426,7 +21426,7 @@ ALTER SEQUENCE public.mdl_user_info_field_id_seq OWNED BY public.mdl_user_info_f -- --- TOC entry 266 (class 1259 OID 17122) +-- TOC entry 988 (class 1259 OID 63449) -- Name: mdl_user_lastaccess; Type: TABLE; Schema: public; Owner: postgres -- @@ -21442,7 +21442,7 @@ ALTER TABLE public.mdl_user_lastaccess OWNER TO postgres; -- -- TOC entry 11336 (class 0 OID 0) --- Dependencies: 266 +-- Dependencies: 988 -- Name: TABLE mdl_user_lastaccess; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21450,7 +21450,7 @@ COMMENT ON TABLE public.mdl_user_lastaccess IS 'To keep track of course page acc -- --- TOC entry 265 (class 1259 OID 17120) +-- TOC entry 989 (class 1259 OID 63455) -- Name: mdl_user_lastaccess_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21466,7 +21466,7 @@ ALTER TABLE public.mdl_user_lastaccess_id_seq OWNER TO postgres; -- -- TOC entry 11337 (class 0 OID 0) --- Dependencies: 265 +-- Dependencies: 989 -- Name: mdl_user_lastaccess_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21474,7 +21474,7 @@ ALTER SEQUENCE public.mdl_user_lastaccess_id_seq OWNED BY public.mdl_user_lastac -- --- TOC entry 268 (class 1259 OID 17136) +-- TOC entry 990 (class 1259 OID 63457) -- Name: mdl_user_password_history; Type: TABLE; Schema: public; Owner: postgres -- @@ -21490,7 +21490,7 @@ ALTER TABLE public.mdl_user_password_history OWNER TO postgres; -- -- TOC entry 11338 (class 0 OID 0) --- Dependencies: 268 +-- Dependencies: 990 -- Name: TABLE mdl_user_password_history; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21498,7 +21498,7 @@ COMMENT ON TABLE public.mdl_user_password_history IS 'A rotating log of hashes o -- --- TOC entry 267 (class 1259 OID 17134) +-- TOC entry 991 (class 1259 OID 63461) -- Name: mdl_user_password_history_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21514,7 +21514,7 @@ ALTER TABLE public.mdl_user_password_history_id_seq OWNER TO postgres; -- -- TOC entry 11339 (class 0 OID 0) --- Dependencies: 267 +-- Dependencies: 991 -- Name: mdl_user_password_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21522,7 +21522,7 @@ ALTER SEQUENCE public.mdl_user_password_history_id_seq OWNED BY public.mdl_user_ -- --- TOC entry 521 (class 1259 OID 19164) +-- TOC entry 992 (class 1259 OID 63463) -- Name: mdl_user_password_resets; Type: TABLE; Schema: public; Owner: postgres -- @@ -21539,7 +21539,7 @@ ALTER TABLE public.mdl_user_password_resets OWNER TO postgres; -- -- TOC entry 11340 (class 0 OID 0) --- Dependencies: 521 +-- Dependencies: 992 -- Name: TABLE mdl_user_password_resets; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21547,7 +21547,7 @@ COMMENT ON TABLE public.mdl_user_password_resets IS 'table tracking password res -- --- TOC entry 520 (class 1259 OID 19162) +-- TOC entry 993 (class 1259 OID 63468) -- Name: mdl_user_password_resets_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21563,7 +21563,7 @@ ALTER TABLE public.mdl_user_password_resets_id_seq OWNER TO postgres; -- -- TOC entry 11341 (class 0 OID 0) --- Dependencies: 520 +-- Dependencies: 993 -- Name: mdl_user_password_resets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21571,7 +21571,7 @@ ALTER SEQUENCE public.mdl_user_password_resets_id_seq OWNED BY public.mdl_user_p -- --- TOC entry 264 (class 1259 OID 17107) +-- TOC entry 994 (class 1259 OID 63470) -- Name: mdl_user_preferences; Type: TABLE; Schema: public; Owner: postgres -- @@ -21587,7 +21587,7 @@ ALTER TABLE public.mdl_user_preferences OWNER TO postgres; -- -- TOC entry 11342 (class 0 OID 0) --- Dependencies: 264 +-- Dependencies: 994 -- Name: TABLE mdl_user_preferences; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21595,7 +21595,7 @@ COMMENT ON TABLE public.mdl_user_preferences IS 'Allows modules to store arbitra -- --- TOC entry 263 (class 1259 OID 17105) +-- TOC entry 995 (class 1259 OID 63479) -- Name: mdl_user_preferences_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21611,7 +21611,7 @@ ALTER TABLE public.mdl_user_preferences_id_seq OWNER TO postgres; -- -- TOC entry 11343 (class 0 OID 0) --- Dependencies: 263 +-- Dependencies: 995 -- Name: mdl_user_preferences_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21619,7 +21619,7 @@ ALTER SEQUENCE public.mdl_user_preferences_id_seq OWNED BY public.mdl_user_prefe -- --- TOC entry 411 (class 1259 OID 18347) +-- TOC entry 996 (class 1259 OID 63481) -- Name: mdl_user_private_key; Type: TABLE; Schema: public; Owner: postgres -- @@ -21639,7 +21639,7 @@ ALTER TABLE public.mdl_user_private_key OWNER TO postgres; -- -- TOC entry 11344 (class 0 OID 0) --- Dependencies: 411 +-- Dependencies: 996 -- Name: TABLE mdl_user_private_key; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21647,7 +21647,7 @@ COMMENT ON TABLE public.mdl_user_private_key IS 'access keys used in cookieless -- --- TOC entry 410 (class 1259 OID 18345) +-- TOC entry 997 (class 1259 OID 63489) -- Name: mdl_user_private_key_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21663,7 +21663,7 @@ ALTER TABLE public.mdl_user_private_key_id_seq OWNER TO postgres; -- -- TOC entry 11345 (class 0 OID 0) --- Dependencies: 410 +-- Dependencies: 997 -- Name: mdl_user_private_key_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21671,7 +21671,7 @@ ALTER SEQUENCE public.mdl_user_private_key_id_seq OWNED BY public.mdl_user_priva -- --- TOC entry 863 (class 1259 OID 22088) +-- TOC entry 998 (class 1259 OID 63491) -- Name: mdl_wiki; Type: TABLE; Schema: public; Owner: postgres -- @@ -21696,7 +21696,7 @@ ALTER TABLE public.mdl_wiki OWNER TO postgres; -- -- TOC entry 11346 (class 0 OID 0) --- Dependencies: 863 +-- Dependencies: 998 -- Name: TABLE mdl_wiki; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21704,7 +21704,7 @@ COMMENT ON TABLE public.mdl_wiki IS 'Stores Wiki activity configuration'; -- --- TOC entry 862 (class 1259 OID 22086) +-- TOC entry 999 (class 1259 OID 63508) -- Name: mdl_wiki_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21720,7 +21720,7 @@ ALTER TABLE public.mdl_wiki_id_seq OWNER TO postgres; -- -- TOC entry 11347 (class 0 OID 0) --- Dependencies: 862 +-- Dependencies: 999 -- Name: mdl_wiki_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21728,7 +21728,7 @@ ALTER SEQUENCE public.mdl_wiki_id_seq OWNED BY public.mdl_wiki.id; -- --- TOC entry 873 (class 1259 OID 22174) +-- TOC entry 1000 (class 1259 OID 63510) -- Name: mdl_wiki_links; Type: TABLE; Schema: public; Owner: postgres -- @@ -21745,7 +21745,7 @@ ALTER TABLE public.mdl_wiki_links OWNER TO postgres; -- -- TOC entry 11348 (class 0 OID 0) --- Dependencies: 873 +-- Dependencies: 1000 -- Name: TABLE mdl_wiki_links; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21753,7 +21753,7 @@ COMMENT ON TABLE public.mdl_wiki_links IS 'Page wiki links'; -- --- TOC entry 872 (class 1259 OID 22172) +-- TOC entry 1001 (class 1259 OID 63516) -- Name: mdl_wiki_links_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21769,7 +21769,7 @@ ALTER TABLE public.mdl_wiki_links_id_seq OWNER TO postgres; -- -- TOC entry 11349 (class 0 OID 0) --- Dependencies: 872 +-- Dependencies: 1001 -- Name: mdl_wiki_links_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21777,7 +21777,7 @@ ALTER SEQUENCE public.mdl_wiki_links_id_seq OWNED BY public.mdl_wiki_links.id; -- --- TOC entry 875 (class 1259 OID 22187) +-- TOC entry 1002 (class 1259 OID 63518) -- Name: mdl_wiki_locks; Type: TABLE; Schema: public; Owner: postgres -- @@ -21794,7 +21794,7 @@ ALTER TABLE public.mdl_wiki_locks OWNER TO postgres; -- -- TOC entry 11350 (class 0 OID 0) --- Dependencies: 875 +-- Dependencies: 1002 -- Name: TABLE mdl_wiki_locks; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21802,7 +21802,7 @@ COMMENT ON TABLE public.mdl_wiki_locks IS 'Manages page locks'; -- --- TOC entry 874 (class 1259 OID 22185) +-- TOC entry 1003 (class 1259 OID 63524) -- Name: mdl_wiki_locks_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21818,7 +21818,7 @@ ALTER TABLE public.mdl_wiki_locks_id_seq OWNER TO postgres; -- -- TOC entry 11351 (class 0 OID 0) --- Dependencies: 874 +-- Dependencies: 1003 -- Name: mdl_wiki_locks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21826,7 +21826,7 @@ ALTER SEQUENCE public.mdl_wiki_locks_id_seq OWNED BY public.mdl_wiki_locks.id; -- --- TOC entry 867 (class 1259 OID 22124) +-- TOC entry 1004 (class 1259 OID 63526) -- Name: mdl_wiki_pages; Type: TABLE; Schema: public; Owner: postgres -- @@ -21848,7 +21848,7 @@ ALTER TABLE public.mdl_wiki_pages OWNER TO postgres; -- -- TOC entry 11352 (class 0 OID 0) --- Dependencies: 867 +-- Dependencies: 1004 -- Name: TABLE mdl_wiki_pages; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21856,7 +21856,7 @@ COMMENT ON TABLE public.mdl_wiki_pages IS 'Stores wiki pages'; -- --- TOC entry 866 (class 1259 OID 22122) +-- TOC entry 1005 (class 1259 OID 63540) -- Name: mdl_wiki_pages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21872,7 +21872,7 @@ ALTER TABLE public.mdl_wiki_pages_id_seq OWNER TO postgres; -- -- TOC entry 11353 (class 0 OID 0) --- Dependencies: 866 +-- Dependencies: 1005 -- Name: mdl_wiki_pages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21880,7 +21880,7 @@ ALTER SEQUENCE public.mdl_wiki_pages_id_seq OWNED BY public.mdl_wiki_pages.id; -- --- TOC entry 865 (class 1259 OID 22111) +-- TOC entry 1006 (class 1259 OID 63542) -- Name: mdl_wiki_subwikis; Type: TABLE; Schema: public; Owner: postgres -- @@ -21896,7 +21896,7 @@ ALTER TABLE public.mdl_wiki_subwikis OWNER TO postgres; -- -- TOC entry 11354 (class 0 OID 0) --- Dependencies: 865 +-- Dependencies: 1006 -- Name: TABLE mdl_wiki_subwikis; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21904,7 +21904,7 @@ COMMENT ON TABLE public.mdl_wiki_subwikis IS 'Stores subwiki instances'; -- --- TOC entry 864 (class 1259 OID 22109) +-- TOC entry 1007 (class 1259 OID 63548) -- Name: mdl_wiki_subwikis_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21920,7 +21920,7 @@ ALTER TABLE public.mdl_wiki_subwikis_id_seq OWNER TO postgres; -- -- TOC entry 11355 (class 0 OID 0) --- Dependencies: 864 +-- Dependencies: 1007 -- Name: mdl_wiki_subwikis_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21928,7 +21928,7 @@ ALTER SEQUENCE public.mdl_wiki_subwikis_id_seq OWNED BY public.mdl_wiki_subwikis -- --- TOC entry 871 (class 1259 OID 22162) +-- TOC entry 1008 (class 1259 OID 63550) -- Name: mdl_wiki_synonyms; Type: TABLE; Schema: public; Owner: postgres -- @@ -21944,7 +21944,7 @@ ALTER TABLE public.mdl_wiki_synonyms OWNER TO postgres; -- -- TOC entry 11356 (class 0 OID 0) --- Dependencies: 871 +-- Dependencies: 1008 -- Name: TABLE mdl_wiki_synonyms; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21952,7 +21952,7 @@ COMMENT ON TABLE public.mdl_wiki_synonyms IS 'Stores wiki pages synonyms'; -- --- TOC entry 870 (class 1259 OID 22160) +-- TOC entry 1009 (class 1259 OID 63556) -- Name: mdl_wiki_synonyms_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21968,7 +21968,7 @@ ALTER TABLE public.mdl_wiki_synonyms_id_seq OWNER TO postgres; -- -- TOC entry 11357 (class 0 OID 0) --- Dependencies: 870 +-- Dependencies: 1009 -- Name: mdl_wiki_synonyms_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21976,7 +21976,7 @@ ALTER SEQUENCE public.mdl_wiki_synonyms_id_seq OWNED BY public.mdl_wiki_synonyms -- --- TOC entry 869 (class 1259 OID 22145) +-- TOC entry 1010 (class 1259 OID 63558) -- Name: mdl_wiki_versions; Type: TABLE; Schema: public; Owner: postgres -- @@ -21995,7 +21995,7 @@ ALTER TABLE public.mdl_wiki_versions OWNER TO postgres; -- -- TOC entry 11358 (class 0 OID 0) --- Dependencies: 869 +-- Dependencies: 1010 -- Name: TABLE mdl_wiki_versions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22003,7 +22003,7 @@ COMMENT ON TABLE public.mdl_wiki_versions IS 'Stores wiki page history'; -- --- TOC entry 868 (class 1259 OID 22143) +-- TOC entry 1011 (class 1259 OID 63569) -- Name: mdl_wiki_versions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22019,7 +22019,7 @@ ALTER TABLE public.mdl_wiki_versions_id_seq OWNER TO postgres; -- -- TOC entry 11359 (class 0 OID 0) --- Dependencies: 868 +-- Dependencies: 1011 -- Name: mdl_wiki_versions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22027,7 +22027,7 @@ ALTER SEQUENCE public.mdl_wiki_versions_id_seq OWNED BY public.mdl_wiki_versions -- --- TOC entry 877 (class 1259 OID 22198) +-- TOC entry 1012 (class 1259 OID 63571) -- Name: mdl_workshop; Type: TABLE; Schema: public; Owner: postgres -- @@ -22076,7 +22076,7 @@ ALTER TABLE public.mdl_workshop OWNER TO postgres; -- -- TOC entry 11360 (class 0 OID 0) --- Dependencies: 877 +-- Dependencies: 1012 -- Name: TABLE mdl_workshop; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22084,7 +22084,7 @@ COMMENT ON TABLE public.mdl_workshop IS 'This table keeps information about the -- --- TOC entry 885 (class 1259 OID 22295) +-- TOC entry 1013 (class 1259 OID 63605) -- Name: mdl_workshop_aggregations; Type: TABLE; Schema: public; Owner: postgres -- @@ -22101,7 +22101,7 @@ ALTER TABLE public.mdl_workshop_aggregations OWNER TO postgres; -- -- TOC entry 11361 (class 0 OID 0) --- Dependencies: 885 +-- Dependencies: 1013 -- Name: TABLE mdl_workshop_aggregations; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22109,7 +22109,7 @@ COMMENT ON TABLE public.mdl_workshop_aggregations IS 'Aggregated grades for asse -- --- TOC entry 884 (class 1259 OID 22293) +-- TOC entry 1014 (class 1259 OID 63608) -- Name: mdl_workshop_aggregations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22125,7 +22125,7 @@ ALTER TABLE public.mdl_workshop_aggregations_id_seq OWNER TO postgres; -- -- TOC entry 11362 (class 0 OID 0) --- Dependencies: 884 +-- Dependencies: 1014 -- Name: mdl_workshop_aggregations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22133,7 +22133,7 @@ ALTER SEQUENCE public.mdl_workshop_aggregations_id_seq OWNED BY public.mdl_works -- --- TOC entry 881 (class 1259 OID 22260) +-- TOC entry 1015 (class 1259 OID 63610) -- Name: mdl_workshop_assessments; Type: TABLE; Schema: public; Owner: postgres -- @@ -22160,7 +22160,7 @@ ALTER TABLE public.mdl_workshop_assessments OWNER TO postgres; -- -- TOC entry 11363 (class 0 OID 0) --- Dependencies: 881 +-- Dependencies: 1015 -- Name: TABLE mdl_workshop_assessments; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22168,7 +22168,7 @@ COMMENT ON TABLE public.mdl_workshop_assessments IS 'Info about the made assessm -- --- TOC entry 880 (class 1259 OID 22258) +-- TOC entry 1016 (class 1259 OID 63622) -- Name: mdl_workshop_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22184,7 +22184,7 @@ ALTER TABLE public.mdl_workshop_assessments_id_seq OWNER TO postgres; -- -- TOC entry 11364 (class 0 OID 0) --- Dependencies: 880 +-- Dependencies: 1016 -- Name: mdl_workshop_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22192,7 +22192,7 @@ ALTER SEQUENCE public.mdl_workshop_assessments_id_seq OWNED BY public.mdl_worksh -- --- TOC entry 883 (class 1259 OID 22280) +-- TOC entry 1017 (class 1259 OID 63624) -- Name: mdl_workshop_grades; Type: TABLE; Schema: public; Owner: postgres -- @@ -22211,7 +22211,7 @@ ALTER TABLE public.mdl_workshop_grades OWNER TO postgres; -- -- TOC entry 11365 (class 0 OID 0) --- Dependencies: 883 +-- Dependencies: 1017 -- Name: TABLE mdl_workshop_grades; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22219,7 +22219,7 @@ COMMENT ON TABLE public.mdl_workshop_grades IS 'How the reviewers filled-up the -- --- TOC entry 882 (class 1259 OID 22278) +-- TOC entry 1018 (class 1259 OID 63632) -- Name: mdl_workshop_grades_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22235,7 +22235,7 @@ ALTER TABLE public.mdl_workshop_grades_id_seq OWNER TO postgres; -- -- TOC entry 11366 (class 0 OID 0) --- Dependencies: 882 +-- Dependencies: 1018 -- Name: mdl_workshop_grades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22243,7 +22243,7 @@ ALTER SEQUENCE public.mdl_workshop_grades_id_seq OWNED BY public.mdl_workshop_gr -- --- TOC entry 876 (class 1259 OID 22196) +-- TOC entry 1019 (class 1259 OID 63634) -- Name: mdl_workshop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22259,7 +22259,7 @@ ALTER TABLE public.mdl_workshop_id_seq OWNER TO postgres; -- -- TOC entry 11367 (class 0 OID 0) --- Dependencies: 876 +-- Dependencies: 1019 -- Name: mdl_workshop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22267,7 +22267,7 @@ ALTER SEQUENCE public.mdl_workshop_id_seq OWNED BY public.mdl_workshop.id; -- --- TOC entry 879 (class 1259 OID 22238) +-- TOC entry 1020 (class 1259 OID 63636) -- Name: mdl_workshop_submissions; Type: TABLE; Schema: public; Owner: postgres -- @@ -22298,7 +22298,7 @@ ALTER TABLE public.mdl_workshop_submissions OWNER TO postgres; -- -- TOC entry 11368 (class 0 OID 0) --- Dependencies: 879 +-- Dependencies: 1020 -- Name: TABLE mdl_workshop_submissions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22306,7 +22306,7 @@ COMMENT ON TABLE public.mdl_workshop_submissions IS 'Info about the submission a -- --- TOC entry 878 (class 1259 OID 22236) +-- TOC entry 1021 (class 1259 OID 63650) -- Name: mdl_workshop_submissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22322,7 +22322,7 @@ ALTER TABLE public.mdl_workshop_submissions_id_seq OWNER TO postgres; -- -- TOC entry 11369 (class 0 OID 0) --- Dependencies: 878 +-- Dependencies: 1021 -- Name: mdl_workshop_submissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22330,7 +22330,7 @@ ALTER SEQUENCE public.mdl_workshop_submissions_id_seq OWNED BY public.mdl_worksh -- --- TOC entry 1035 (class 1259 OID 23352) +-- TOC entry 1022 (class 1259 OID 63652) -- Name: mdl_workshopallocation_scheduled; Type: TABLE; Schema: public; Owner: postgres -- @@ -22351,7 +22351,7 @@ ALTER TABLE public.mdl_workshopallocation_scheduled OWNER TO postgres; -- -- TOC entry 11370 (class 0 OID 0) --- Dependencies: 1035 +-- Dependencies: 1022 -- Name: TABLE mdl_workshopallocation_scheduled; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22359,7 +22359,7 @@ COMMENT ON TABLE public.mdl_workshopallocation_scheduled IS 'Stores the allocati -- --- TOC entry 1034 (class 1259 OID 23350) +-- TOC entry 1023 (class 1259 OID 63659) -- Name: mdl_workshopallocation_scheduled_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22375,7 +22375,7 @@ ALTER TABLE public.mdl_workshopallocation_scheduled_id_seq OWNER TO postgres; -- -- TOC entry 11371 (class 0 OID 0) --- Dependencies: 1034 +-- Dependencies: 1023 -- Name: mdl_workshopallocation_scheduled_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22383,7 +22383,7 @@ ALTER SEQUENCE public.mdl_workshopallocation_scheduled_id_seq OWNED BY public.md -- --- TOC entry 1037 (class 1259 OID 23365) +-- TOC entry 1024 (class 1259 OID 63661) -- Name: mdl_workshopeval_best_settings; Type: TABLE; Schema: public; Owner: postgres -- @@ -22398,7 +22398,7 @@ ALTER TABLE public.mdl_workshopeval_best_settings OWNER TO postgres; -- -- TOC entry 11372 (class 0 OID 0) --- Dependencies: 1037 +-- Dependencies: 1024 -- Name: TABLE mdl_workshopeval_best_settings; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22406,7 +22406,7 @@ COMMENT ON TABLE public.mdl_workshopeval_best_settings IS 'Settings for the grad -- --- TOC entry 1036 (class 1259 OID 23363) +-- TOC entry 1025 (class 1259 OID 63665) -- Name: mdl_workshopeval_best_settings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22422,7 +22422,7 @@ ALTER TABLE public.mdl_workshopeval_best_settings_id_seq OWNER TO postgres; -- -- TOC entry 11373 (class 0 OID 0) --- Dependencies: 1036 +-- Dependencies: 1025 -- Name: mdl_workshopeval_best_settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22430,7 +22430,7 @@ ALTER SEQUENCE public.mdl_workshopeval_best_settings_id_seq OWNED BY public.mdl_ -- --- TOC entry 1021 (class 1259 OID 23261) +-- TOC entry 1026 (class 1259 OID 63667) -- Name: mdl_workshopform_accumulative; Type: TABLE; Schema: public; Owner: postgres -- @@ -22449,7 +22449,7 @@ ALTER TABLE public.mdl_workshopform_accumulative OWNER TO postgres; -- -- TOC entry 11374 (class 0 OID 0) --- Dependencies: 1021 +-- Dependencies: 1026 -- Name: TABLE mdl_workshopform_accumulative; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22457,7 +22457,7 @@ COMMENT ON TABLE public.mdl_workshopform_accumulative IS 'The assessment dimensi -- --- TOC entry 1020 (class 1259 OID 23259) +-- TOC entry 1027 (class 1259 OID 63676) -- Name: mdl_workshopform_accumulative_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22473,7 +22473,7 @@ ALTER TABLE public.mdl_workshopform_accumulative_id_seq OWNER TO postgres; -- -- TOC entry 11375 (class 0 OID 0) --- Dependencies: 1020 +-- Dependencies: 1027 -- Name: mdl_workshopform_accumulative_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22481,7 +22481,7 @@ ALTER SEQUENCE public.mdl_workshopform_accumulative_id_seq OWNED BY public.mdl_w -- --- TOC entry 1023 (class 1259 OID 23276) +-- TOC entry 1028 (class 1259 OID 63678) -- Name: mdl_workshopform_comments; Type: TABLE; Schema: public; Owner: postgres -- @@ -22498,7 +22498,7 @@ ALTER TABLE public.mdl_workshopform_comments OWNER TO postgres; -- -- TOC entry 11376 (class 0 OID 0) --- Dependencies: 1023 +-- Dependencies: 1028 -- Name: TABLE mdl_workshopform_comments; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22506,7 +22506,7 @@ COMMENT ON TABLE public.mdl_workshopform_comments IS 'The assessment dimensions -- --- TOC entry 1022 (class 1259 OID 23274) +-- TOC entry 1029 (class 1259 OID 63686) -- Name: mdl_workshopform_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22522,7 +22522,7 @@ ALTER TABLE public.mdl_workshopform_comments_id_seq OWNER TO postgres; -- -- TOC entry 11377 (class 0 OID 0) --- Dependencies: 1022 +-- Dependencies: 1029 -- Name: mdl_workshopform_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22530,7 +22530,7 @@ ALTER SEQUENCE public.mdl_workshopform_comments_id_seq OWNED BY public.mdl_works -- --- TOC entry 1025 (class 1259 OID 23290) +-- TOC entry 1030 (class 1259 OID 63688) -- Name: mdl_workshopform_numerrors; Type: TABLE; Schema: public; Owner: postgres -- @@ -22551,7 +22551,7 @@ ALTER TABLE public.mdl_workshopform_numerrors OWNER TO postgres; -- -- TOC entry 11378 (class 0 OID 0) --- Dependencies: 1025 +-- Dependencies: 1030 -- Name: TABLE mdl_workshopform_numerrors; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22559,7 +22559,7 @@ COMMENT ON TABLE public.mdl_workshopform_numerrors IS 'The assessment dimensions -- --- TOC entry 1024 (class 1259 OID 23288) +-- TOC entry 1031 (class 1259 OID 63697) -- Name: mdl_workshopform_numerrors_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22575,7 +22575,7 @@ ALTER TABLE public.mdl_workshopform_numerrors_id_seq OWNER TO postgres; -- -- TOC entry 11379 (class 0 OID 0) --- Dependencies: 1024 +-- Dependencies: 1031 -- Name: mdl_workshopform_numerrors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22583,7 +22583,7 @@ ALTER SEQUENCE public.mdl_workshopform_numerrors_id_seq OWNED BY public.mdl_work -- --- TOC entry 1027 (class 1259 OID 23305) +-- TOC entry 1032 (class 1259 OID 63699) -- Name: mdl_workshopform_numerrors_map; Type: TABLE; Schema: public; Owner: postgres -- @@ -22599,7 +22599,7 @@ ALTER TABLE public.mdl_workshopform_numerrors_map OWNER TO postgres; -- -- TOC entry 11380 (class 0 OID 0) --- Dependencies: 1027 +-- Dependencies: 1032 -- Name: TABLE mdl_workshopform_numerrors_map; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22607,7 +22607,7 @@ COMMENT ON TABLE public.mdl_workshopform_numerrors_map IS 'This maps the number -- --- TOC entry 1026 (class 1259 OID 23303) +-- TOC entry 1033 (class 1259 OID 63702) -- Name: mdl_workshopform_numerrors_map_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22623,7 +22623,7 @@ ALTER TABLE public.mdl_workshopform_numerrors_map_id_seq OWNER TO postgres; -- -- TOC entry 11381 (class 0 OID 0) --- Dependencies: 1026 +-- Dependencies: 1033 -- Name: mdl_workshopform_numerrors_map_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22631,7 +22631,7 @@ ALTER SEQUENCE public.mdl_workshopform_numerrors_map_id_seq OWNED BY public.mdl_ -- --- TOC entry 1029 (class 1259 OID 23315) +-- TOC entry 1034 (class 1259 OID 63704) -- Name: mdl_workshopform_rubric; Type: TABLE; Schema: public; Owner: postgres -- @@ -22648,7 +22648,7 @@ ALTER TABLE public.mdl_workshopform_rubric OWNER TO postgres; -- -- TOC entry 11382 (class 0 OID 0) --- Dependencies: 1029 +-- Dependencies: 1034 -- Name: TABLE mdl_workshopform_rubric; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22656,7 +22656,7 @@ COMMENT ON TABLE public.mdl_workshopform_rubric IS 'The assessment dimensions de -- --- TOC entry 1033 (class 1259 OID 23342) +-- TOC entry 1035 (class 1259 OID 63712) -- Name: mdl_workshopform_rubric_config; Type: TABLE; Schema: public; Owner: postgres -- @@ -22671,7 +22671,7 @@ ALTER TABLE public.mdl_workshopform_rubric_config OWNER TO postgres; -- -- TOC entry 11383 (class 0 OID 0) --- Dependencies: 1033 +-- Dependencies: 1035 -- Name: TABLE mdl_workshopform_rubric_config; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22679,7 +22679,7 @@ COMMENT ON TABLE public.mdl_workshopform_rubric_config IS 'Configuration table f -- --- TOC entry 1032 (class 1259 OID 23340) +-- TOC entry 1036 (class 1259 OID 63716) -- Name: mdl_workshopform_rubric_config_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22695,7 +22695,7 @@ ALTER TABLE public.mdl_workshopform_rubric_config_id_seq OWNER TO postgres; -- -- TOC entry 11384 (class 0 OID 0) --- Dependencies: 1032 +-- Dependencies: 1036 -- Name: mdl_workshopform_rubric_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22703,7 +22703,7 @@ ALTER SEQUENCE public.mdl_workshopform_rubric_config_id_seq OWNED BY public.mdl_ -- --- TOC entry 1028 (class 1259 OID 23313) +-- TOC entry 1037 (class 1259 OID 63718) -- Name: mdl_workshopform_rubric_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22719,7 +22719,7 @@ ALTER TABLE public.mdl_workshopform_rubric_id_seq OWNER TO postgres; -- -- TOC entry 11385 (class 0 OID 0) --- Dependencies: 1028 +-- Dependencies: 1037 -- Name: mdl_workshopform_rubric_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22727,7 +22727,7 @@ ALTER SEQUENCE public.mdl_workshopform_rubric_id_seq OWNED BY public.mdl_worksho -- --- TOC entry 1031 (class 1259 OID 23329) +-- TOC entry 1038 (class 1259 OID 63720) -- Name: mdl_workshopform_rubric_levels; Type: TABLE; Schema: public; Owner: postgres -- @@ -22744,7 +22744,7 @@ ALTER TABLE public.mdl_workshopform_rubric_levels OWNER TO postgres; -- -- TOC entry 11386 (class 0 OID 0) --- Dependencies: 1031 +-- Dependencies: 1038 -- Name: TABLE mdl_workshopform_rubric_levels; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22752,7 +22752,7 @@ COMMENT ON TABLE public.mdl_workshopform_rubric_levels IS 'The definition of rub -- --- TOC entry 1030 (class 1259 OID 23327) +-- TOC entry 1039 (class 1259 OID 63727) -- Name: mdl_workshopform_rubric_levels_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22768,7 +22768,7 @@ ALTER TABLE public.mdl_workshopform_rubric_levels_id_seq OWNER TO postgres; -- -- TOC entry 11387 (class 0 OID 0) --- Dependencies: 1030 +-- Dependencies: 1039 -- Name: mdl_workshopform_rubric_levels_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22776,7 +22776,7 @@ ALTER SEQUENCE public.mdl_workshopform_rubric_levels_id_seq OWNED BY public.mdl_ -- --- TOC entry 6445 (class 2604 OID 19639) +-- TOC entry 5441 (class 2604 OID 63729) -- Name: mdl_analytics_indicator_calc id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22784,7 +22784,7 @@ ALTER TABLE ONLY public.mdl_analytics_indicator_calc ALTER COLUMN id SET DEFAULT -- --- TOC entry 6423 (class 2604 OID 19548) +-- TOC entry 5444 (class 2604 OID 63730) -- Name: mdl_analytics_models id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22792,7 +22792,7 @@ ALTER TABLE ONLY public.mdl_analytics_models ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 6427 (class 2604 OID 19563) +-- TOC entry 5448 (class 2604 OID 63731) -- Name: mdl_analytics_models_log id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22800,7 +22800,7 @@ ALTER TABLE ONLY public.mdl_analytics_models_log ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 6436 (class 2604 OID 19608) +-- TOC entry 5452 (class 2604 OID 63732) -- Name: mdl_analytics_predict_samples id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22808,7 +22808,7 @@ ALTER TABLE ONLY public.mdl_analytics_predict_samples ALTER COLUMN id SET DEFAUL -- --- TOC entry 6448 (class 2604 OID 19654) +-- TOC entry 5456 (class 2604 OID 63733) -- Name: mdl_analytics_prediction_actions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22816,7 +22816,7 @@ ALTER TABLE ONLY public.mdl_analytics_prediction_actions ALTER COLUMN id SET DEF -- --- TOC entry 6431 (class 2604 OID 19578) +-- TOC entry 5458 (class 2604 OID 63734) -- Name: mdl_analytics_predictions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22824,7 +22824,7 @@ ALTER TABLE ONLY public.mdl_analytics_predictions ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 6433 (class 2604 OID 19593) +-- TOC entry 5460 (class 2604 OID 63735) -- Name: mdl_analytics_train_samples id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22832,7 +22832,7 @@ ALTER TABLE ONLY public.mdl_analytics_train_samples ALTER COLUMN id SET DEFAULT -- --- TOC entry 6451 (class 2604 OID 19678) +-- TOC entry 5463 (class 2604 OID 63736) -- Name: mdl_analytics_used_analysables id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22840,7 +22840,7 @@ ALTER TABLE ONLY public.mdl_analytics_used_analysables ALTER COLUMN id SET DEFAU -- --- TOC entry 6440 (class 2604 OID 19624) +-- TOC entry 5465 (class 2604 OID 63737) -- Name: mdl_analytics_used_files id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22848,7 +22848,7 @@ ALTER TABLE ONLY public.mdl_analytics_used_files ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 6630 (class 2604 OID 20237) +-- TOC entry 5498 (class 2604 OID 63738) -- Name: mdl_assign id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22856,7 +22856,7 @@ ALTER TABLE ONLY public.mdl_assign ALTER COLUMN id SET DEFAULT nextval('public.m -- --- TOC entry 6667 (class 2604 OID 20298) +-- TOC entry 5499 (class 2604 OID 63739) -- Name: mdl_assign_grades id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22864,7 +22864,7 @@ ALTER TABLE ONLY public.mdl_assign_grades ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6690 (class 2604 OID 20365) +-- TOC entry 5507 (class 2604 OID 63740) -- Name: mdl_assign_overrides id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22872,7 +22872,7 @@ ALTER TABLE ONLY public.mdl_assign_overrides ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 6675 (class 2604 OID 20317) +-- TOC entry 5509 (class 2604 OID 63741) -- Name: mdl_assign_plugin_config id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22880,7 +22880,7 @@ ALTER TABLE ONLY public.mdl_assign_plugin_config ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 6659 (class 2604 OID 20278) +-- TOC entry 5514 (class 2604 OID 63742) -- Name: mdl_assign_submission id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22888,7 +22888,7 @@ ALTER TABLE ONLY public.mdl_assign_submission ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 6683 (class 2604 OID 20348) +-- TOC entry 5522 (class 2604 OID 63743) -- Name: mdl_assign_user_flags id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22896,7 +22896,7 @@ ALTER TABLE ONLY public.mdl_assign_user_flags ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 6680 (class 2604 OID 20336) +-- TOC entry 5529 (class 2604 OID 63744) -- Name: mdl_assign_user_mapping id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22904,7 +22904,7 @@ ALTER TABLE ONLY public.mdl_assign_user_mapping ALTER COLUMN id SET DEFAULT next -- --- TOC entry 7711 (class 2604 OID 23086) +-- TOC entry 5532 (class 2604 OID 63745) -- Name: mdl_assignfeedback_comments id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22912,7 +22912,7 @@ ALTER TABLE ONLY public.mdl_assignfeedback_comments ALTER COLUMN id SET DEFAULT -- --- TOC entry 7723 (class 2604 OID 23122) +-- TOC entry 5536 (class 2604 OID 63746) -- Name: mdl_assignfeedback_editpdf_annot id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22920,7 +22920,7 @@ ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_annot ALTER COLUMN id SET DEF -- --- TOC entry 7715 (class 2604 OID 23102) +-- TOC entry 5546 (class 2604 OID 63747) -- Name: mdl_assignfeedback_editpdf_cmnt id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22928,7 +22928,7 @@ ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_cmnt ALTER COLUMN id SET DEFA -- --- TOC entry 7737 (class 2604 OID 23159) +-- TOC entry 5554 (class 2604 OID 63748) -- Name: mdl_assignfeedback_editpdf_queue id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22936,7 +22936,7 @@ ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_queue ALTER COLUMN id SET DEF -- --- TOC entry 7733 (class 2604 OID 23144) +-- TOC entry 5556 (class 2604 OID 63749) -- Name: mdl_assignfeedback_editpdf_quick id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22944,7 +22944,7 @@ ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_quick ALTER COLUMN id SET DEF -- --- TOC entry 7739 (class 2604 OID 23169) +-- TOC entry 5560 (class 2604 OID 63750) -- Name: mdl_assignfeedback_editpdf_rot id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22952,7 +22952,7 @@ ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_rot ALTER COLUMN id SET DEFAU -- --- TOC entry 7744 (class 2604 OID 23186) +-- TOC entry 5565 (class 2604 OID 63751) -- Name: mdl_assignfeedback_file id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22960,7 +22960,7 @@ ALTER TABLE ONLY public.mdl_assignfeedback_file ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6692 (class 2604 OID 20377) +-- TOC entry 5586 (class 2604 OID 63752) -- Name: mdl_assignment id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22968,7 +22968,7 @@ ALTER TABLE ONLY public.mdl_assignment ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 6710 (class 2604 OID 20406) +-- TOC entry 5587 (class 2604 OID 63753) -- Name: mdl_assignment_submissions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22976,7 +22976,7 @@ ALTER TABLE ONLY public.mdl_assignment_submissions ALTER COLUMN id SET DEFAULT n -- --- TOC entry 6721 (class 2604 OID 20431) +-- TOC entry 5598 (class 2604 OID 63754) -- Name: mdl_assignment_upgrade id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22984,7 +22984,7 @@ ALTER TABLE ONLY public.mdl_assignment_upgrade ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 7703 (class 2604 OID 23057) +-- TOC entry 5604 (class 2604 OID 63755) -- Name: mdl_assignsubmission_file id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22992,7 +22992,7 @@ ALTER TABLE ONLY public.mdl_assignsubmission_file ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 7707 (class 2604 OID 23070) +-- TOC entry 5608 (class 2604 OID 63756) -- Name: mdl_assignsubmission_onlinetext id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23000,7 +23000,7 @@ ALTER TABLE ONLY public.mdl_assignsubmission_onlinetext ALTER COLUMN id SET DEFA -- --- TOC entry 7530 (class 2604 OID 22309) +-- TOC entry 5612 (class 2604 OID 63757) -- Name: mdl_auth_oauth2_linked_login id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23008,7 +23008,7 @@ ALTER TABLE ONLY public.mdl_auth_oauth2_linked_login ALTER COLUMN id SET DEFAULT -- --- TOC entry 6243 (class 2604 OID 18805) +-- TOC entry 5615 (class 2604 OID 63758) -- Name: mdl_backup_controllers id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23016,7 +23016,7 @@ ALTER TABLE ONLY public.mdl_backup_controllers ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 6186 (class 2604 OID 18594) +-- TOC entry 5622 (class 2604 OID 63759) -- Name: mdl_backup_courses id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23024,7 +23024,7 @@ ALTER TABLE ONLY public.mdl_backup_courses ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 6250 (class 2604 OID 18826) +-- TOC entry 5628 (class 2604 OID 63760) -- Name: mdl_backup_logs id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23032,7 +23032,7 @@ ALTER TABLE ONLY public.mdl_backup_logs ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 6279 (class 2604 OID 18932) +-- TOC entry 5630 (class 2604 OID 63761) -- Name: mdl_badge id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23040,7 +23040,7 @@ ALTER TABLE ONLY public.mdl_badge ALTER COLUMN id SET DEFAULT nextval('public.md -- --- TOC entry 6321 (class 2604 OID 19100) +-- TOC entry 5640 (class 2604 OID 63762) -- Name: mdl_badge_alignment id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23048,7 +23048,7 @@ ALTER TABLE ONLY public.mdl_badge_alignment ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 6308 (class 2604 OID 19044) +-- TOC entry 5644 (class 2604 OID 63763) -- Name: mdl_badge_backpack id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23056,7 +23056,7 @@ ALTER TABLE ONLY public.mdl_badge_backpack ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 6312 (class 2604 OID 19057) +-- TOC entry 5648 (class 2604 OID 63764) -- Name: mdl_badge_backpack_oauth2 id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23064,7 +23064,7 @@ ALTER TABLE ONLY public.mdl_badge_backpack_oauth2 ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 6289 (class 2604 OID 18956) +-- TOC entry 5652 (class 2604 OID 63765) -- Name: mdl_badge_criteria id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23072,7 +23072,7 @@ ALTER TABLE ONLY public.mdl_badge_criteria ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 6300 (class 2604 OID 19004) +-- TOC entry 5656 (class 2604 OID 63766) -- Name: mdl_badge_criteria_met id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23080,7 +23080,7 @@ ALTER TABLE ONLY public.mdl_badge_criteria_met ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 6293 (class 2604 OID 18973) +-- TOC entry 5657 (class 2604 OID 63767) -- Name: mdl_badge_criteria_param id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23088,7 +23088,7 @@ ALTER TABLE ONLY public.mdl_badge_criteria_param ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 6301 (class 2604 OID 19015) +-- TOC entry 5659 (class 2604 OID 63768) -- Name: mdl_badge_endorsement id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23096,7 +23096,7 @@ ALTER TABLE ONLY public.mdl_badge_endorsement ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 6316 (class 2604 OID 19075) +-- TOC entry 5665 (class 2604 OID 63769) -- Name: mdl_badge_external id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23104,7 +23104,7 @@ ALTER TABLE ONLY public.mdl_badge_external ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 6327 (class 2604 OID 19127) +-- TOC entry 5666 (class 2604 OID 63770) -- Name: mdl_badge_external_backpack id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23112,7 +23112,7 @@ ALTER TABLE ONLY public.mdl_badge_external_backpack ALTER COLUMN id SET DEFAULT -- --- TOC entry 6317 (class 2604 OID 19087) +-- TOC entry 5671 (class 2604 OID 63771) -- Name: mdl_badge_external_identifier id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23120,7 +23120,7 @@ ALTER TABLE ONLY public.mdl_badge_external_identifier ALTER COLUMN id SET DEFAUL -- --- TOC entry 6295 (class 2604 OID 18986) +-- TOC entry 5675 (class 2604 OID 63772) -- Name: mdl_badge_issued id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23128,7 +23128,7 @@ ALTER TABLE ONLY public.mdl_badge_issued ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 6307 (class 2604 OID 19032) +-- TOC entry 5680 (class 2604 OID 63773) -- Name: mdl_badge_manual_award id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23136,7 +23136,7 @@ ALTER TABLE ONLY public.mdl_badge_manual_award ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 6325 (class 2604 OID 19115) +-- TOC entry 5681 (class 2604 OID 63774) -- Name: mdl_badge_related id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23144,7 +23144,7 @@ ALTER TABLE ONLY public.mdl_badge_related ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6192 (class 2604 OID 18608) +-- TOC entry 5683 (class 2604 OID 63775) -- Name: mdl_block id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23152,7 +23152,7 @@ ALTER TABLE ONLY public.mdl_block ALTER COLUMN id SET DEFAULT nextval('public.md -- --- TOC entry 6197 (class 2604 OID 18621) +-- TOC entry 5688 (class 2604 OID 63776) -- Name: mdl_block_instances id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23160,7 +23160,7 @@ ALTER TABLE ONLY public.mdl_block_instances ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 6202 (class 2604 OID 18639) +-- TOC entry 5693 (class 2604 OID 63777) -- Name: mdl_block_positions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23168,7 +23168,7 @@ ALTER TABLE ONLY public.mdl_block_positions ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 7596 (class 2604 OID 22558) +-- TOC entry 5697 (class 2604 OID 63778) -- Name: mdl_block_recent_activity id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23176,7 +23176,7 @@ ALTER TABLE ONLY public.mdl_block_recent_activity ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 7597 (class 2604 OID 22567) +-- TOC entry 5698 (class 2604 OID 63779) -- Name: mdl_block_recentlyaccesseditems id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23184,7 +23184,7 @@ ALTER TABLE ONLY public.mdl_block_recentlyaccesseditems ALTER COLUMN id SET DEFA -- --- TOC entry 7598 (class 2604 OID 22579) +-- TOC entry 5699 (class 2604 OID 63780) -- Name: mdl_block_rss_client id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23192,7 +23192,7 @@ ALTER TABLE ONLY public.mdl_block_rss_client ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 6224 (class 2604 OID 18736) +-- TOC entry 5706 (class 2604 OID 63781) -- Name: mdl_blog_association id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23200,7 +23200,7 @@ ALTER TABLE ONLY public.mdl_blog_association ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 6225 (class 2604 OID 18746) +-- TOC entry 5707 (class 2604 OID 63782) -- Name: mdl_blog_external id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23208,7 +23208,7 @@ ALTER TABLE ONLY public.mdl_blog_external ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6727 (class 2604 OID 20446) +-- TOC entry 5711 (class 2604 OID 63783) -- Name: mdl_book id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23216,7 +23216,7 @@ ALTER TABLE ONLY public.mdl_book ALTER COLUMN id SET DEFAULT nextval('public.mdl -- --- TOC entry 6737 (class 2604 OID 20466) +-- TOC entry 5721 (class 2604 OID 63784) -- Name: mdl_book_chapters id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23224,7 +23224,7 @@ ALTER TABLE ONLY public.mdl_book_chapters ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 5587 (class 2604 OID 16774) +-- TOC entry 5731 (class 2604 OID 63785) -- Name: mdl_cache_filters id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23232,7 +23232,7 @@ ALTER TABLE ONLY public.mdl_cache_filters ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6132 (class 2604 OID 18375) +-- TOC entry 5736 (class 2604 OID 63786) -- Name: mdl_cache_flags id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23240,7 +23240,7 @@ ALTER TABLE ONLY public.mdl_cache_flags ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 5795 (class 2604 OID 17364) +-- TOC entry 5740 (class 2604 OID 63787) -- Name: mdl_capabilities id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23248,7 +23248,7 @@ ALTER TABLE ONLY public.mdl_capabilities ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 6747 (class 2604 OID 20486) +-- TOC entry 5746 (class 2604 OID 63788) -- Name: mdl_chat id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23256,7 +23256,7 @@ ALTER TABLE ONLY public.mdl_chat ALTER COLUMN id SET DEFAULT nextval('public.mdl -- --- TOC entry 6756 (class 2604 OID 20506) +-- TOC entry 5755 (class 2604 OID 63789) -- Name: mdl_chat_messages id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23264,7 +23264,7 @@ ALTER TABLE ONLY public.mdl_chat_messages ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6762 (class 2604 OID 20526) +-- TOC entry 5761 (class 2604 OID 63790) -- Name: mdl_chat_messages_current id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23272,7 +23272,7 @@ ALTER TABLE ONLY public.mdl_chat_messages_current ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 6768 (class 2604 OID 20546) +-- TOC entry 5767 (class 2604 OID 63791) -- Name: mdl_chat_users id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23280,7 +23280,7 @@ ALTER TABLE ONLY public.mdl_chat_users ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 6780 (class 2604 OID 20569) +-- TOC entry 5779 (class 2604 OID 63792) -- Name: mdl_choice id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23288,7 +23288,7 @@ ALTER TABLE ONLY public.mdl_choice ALTER COLUMN id SET DEFAULT nextval('public.m -- --- TOC entry 6801 (class 2604 OID 20612) +-- TOC entry 5796 (class 2604 OID 63793) -- Name: mdl_choice_answers id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23296,7 +23296,7 @@ ALTER TABLE ONLY public.mdl_choice_answers ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 6797 (class 2604 OID 20597) +-- TOC entry 5801 (class 2604 OID 63794) -- Name: mdl_choice_options id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23304,7 +23304,7 @@ ALTER TABLE ONLY public.mdl_choice_options ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 6119 (class 2604 OID 18321) +-- TOC entry 5805 (class 2604 OID 63795) -- Name: mdl_cohort id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23312,7 +23312,7 @@ ALTER TABLE ONLY public.mdl_cohort ALTER COLUMN id SET DEFAULT nextval('public.m -- --- TOC entry 6123 (class 2604 OID 18336) +-- TOC entry 5809 (class 2604 OID 63796) -- Name: mdl_cohort_members id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23320,7 +23320,7 @@ ALTER TABLE ONLY public.mdl_cohort_members ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 6206 (class 2604 OID 18653) +-- TOC entry 5813 (class 2604 OID 63797) -- Name: mdl_comments id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23328,7 +23328,7 @@ ALTER TABLE ONLY public.mdl_comments ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 6372 (class 2604 OID 19279) +-- TOC entry 5816 (class 2604 OID 63798) -- Name: mdl_competency id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23336,7 +23336,7 @@ ALTER TABLE ONLY public.mdl_competency ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 6382 (class 2604 OID 19320) +-- TOC entry 5821 (class 2604 OID 63799) -- Name: mdl_competency_coursecomp id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23344,7 +23344,7 @@ ALTER TABLE ONLY public.mdl_competency_coursecomp ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 6377 (class 2604 OID 19296) +-- TOC entry 5822 (class 2604 OID 63800) -- Name: mdl_competency_coursecompsetting id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23352,7 +23352,7 @@ ALTER TABLE ONLY public.mdl_competency_coursecompsetting ALTER COLUMN id SET DEF -- --- TOC entry 6399 (class 2604 OID 19428) +-- TOC entry 5823 (class 2604 OID 63801) -- Name: mdl_competency_evidence id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23360,7 +23360,7 @@ ALTER TABLE ONLY public.mdl_competency_evidence ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6378 (class 2604 OID 19305) +-- TOC entry 5826 (class 2604 OID 63802) -- Name: mdl_competency_framework id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23368,7 +23368,7 @@ ALTER TABLE ONLY public.mdl_competency_framework ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 6405 (class 2604 OID 19465) +-- TOC entry 5830 (class 2604 OID 63803) -- Name: mdl_competency_modulecomp id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23376,7 +23376,7 @@ ALTER TABLE ONLY public.mdl_competency_modulecomp ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 6383 (class 2604 OID 19332) +-- TOC entry 5831 (class 2604 OID 63804) -- Name: mdl_competency_plan id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23384,7 +23384,7 @@ ALTER TABLE ONLY public.mdl_competency_plan ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 6398 (class 2604 OID 19419) +-- TOC entry 5836 (class 2604 OID 63805) -- Name: mdl_competency_plancomp id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23392,7 +23392,7 @@ ALTER TABLE ONLY public.mdl_competency_plancomp ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6393 (class 2604 OID 19383) +-- TOC entry 5837 (class 2604 OID 63806) -- Name: mdl_competency_relatedcomp id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23400,7 +23400,7 @@ ALTER TABLE ONLY public.mdl_competency_relatedcomp ALTER COLUMN id SET DEFAULT n -- --- TOC entry 6388 (class 2604 OID 19350) +-- TOC entry 5838 (class 2604 OID 63807) -- Name: mdl_competency_template id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23408,7 +23408,7 @@ ALTER TABLE ONLY public.mdl_competency_template ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6392 (class 2604 OID 19373) +-- TOC entry 5841 (class 2604 OID 63808) -- Name: mdl_competency_templatecohort id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23416,7 +23416,7 @@ ALTER TABLE ONLY public.mdl_competency_templatecohort ALTER COLUMN id SET DEFAUL -- --- TOC entry 6391 (class 2604 OID 19363) +-- TOC entry 5842 (class 2604 OID 63809) -- Name: mdl_competency_templatecomp id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23424,7 +23424,7 @@ ALTER TABLE ONLY public.mdl_competency_templatecomp ALTER COLUMN id SET DEFAULT -- --- TOC entry 6394 (class 2604 OID 19391) +-- TOC entry 5843 (class 2604 OID 63810) -- Name: mdl_competency_usercomp id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23432,7 +23432,7 @@ ALTER TABLE ONLY public.mdl_competency_usercomp ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6396 (class 2604 OID 19401) +-- TOC entry 5845 (class 2604 OID 63811) -- Name: mdl_competency_usercompcourse id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23440,7 +23440,7 @@ ALTER TABLE ONLY public.mdl_competency_usercompcourse ALTER COLUMN id SET DEFAUL -- --- TOC entry 6397 (class 2604 OID 19410) +-- TOC entry 5846 (class 2604 OID 63812) -- Name: mdl_competency_usercompplan id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23448,7 +23448,7 @@ ALTER TABLE ONLY public.mdl_competency_usercompplan ALTER COLUMN id SET DEFAULT -- --- TOC entry 6402 (class 2604 OID 19442) +-- TOC entry 5847 (class 2604 OID 63813) -- Name: mdl_competency_userevidence id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23456,7 +23456,7 @@ ALTER TABLE ONLY public.mdl_competency_userevidence ALTER COLUMN id SET DEFAULT -- --- TOC entry 6404 (class 2604 OID 19455) +-- TOC entry 5849 (class 2604 OID 63814) -- Name: mdl_competency_userevidencecomp id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23464,7 +23464,7 @@ ALTER TABLE ONLY public.mdl_competency_userevidencecomp ALTER COLUMN id SET DEFA -- --- TOC entry 5441 (class 2604 OID 16390) +-- TOC entry 5850 (class 2604 OID 63815) -- Name: mdl_config id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23472,7 +23472,7 @@ ALTER TABLE ONLY public.mdl_config ALTER COLUMN id SET DEFAULT nextval('public.m -- --- TOC entry 5446 (class 2604 OID 16417) +-- TOC entry 5852 (class 2604 OID 63816) -- Name: mdl_config_log id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23480,7 +23480,7 @@ ALTER TABLE ONLY public.mdl_config_log ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 5443 (class 2604 OID 16403) +-- TOC entry 5854 (class 2604 OID 63817) -- Name: mdl_config_plugins id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23488,7 +23488,7 @@ ALTER TABLE ONLY public.mdl_config_plugins ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 6485 (class 2604 OID 19832) +-- TOC entry 5857 (class 2604 OID 63818) -- Name: mdl_contentbank_content id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23496,7 +23496,7 @@ ALTER TABLE ONLY public.mdl_contentbank_content ALTER COLUMN id SET DEFAULT next -- --- TOC entry 5788 (class 2604 OID 17341) +-- TOC entry 5862 (class 2604 OID 63819) -- Name: mdl_context id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23504,7 +23504,7 @@ ALTER TABLE ONLY public.mdl_context ALTER COLUMN id SET DEFAULT nextval('public. -- --- TOC entry 5450 (class 2604 OID 16446) +-- TOC entry 5899 (class 2604 OID 63820) -- Name: mdl_course id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23512,7 +23512,7 @@ ALTER TABLE ONLY public.mdl_course ALTER COLUMN id SET DEFAULT nextval('public.m -- --- TOC entry 5481 (class 2604 OID 16491) +-- TOC entry 5900 (class 2604 OID 63821) -- Name: mdl_course_categories id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23520,7 +23520,7 @@ ALTER TABLE ONLY public.mdl_course_categories ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 5492 (class 2604 OID 16513) +-- TOC entry 5911 (class 2604 OID 63822) -- Name: mdl_course_completion_aggr_methd id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23528,7 +23528,7 @@ ALTER TABLE ONLY public.mdl_course_completion_aggr_methd ALTER COLUMN id SET DEF -- --- TOC entry 5498 (class 2604 OID 16537) +-- TOC entry 5914 (class 2604 OID 63823) -- Name: mdl_course_completion_crit_compl id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23536,7 +23536,7 @@ ALTER TABLE ONLY public.mdl_course_completion_crit_compl ALTER COLUMN id SET DEF -- --- TOC entry 5495 (class 2604 OID 16526) +-- TOC entry 5918 (class 2604 OID 63824) -- Name: mdl_course_completion_criteria id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23544,7 +23544,7 @@ ALTER TABLE ONLY public.mdl_course_completion_criteria ALTER COLUMN id SET DEFAU -- --- TOC entry 6418 (class 2604 OID 19530) +-- TOC entry 5921 (class 2604 OID 63825) -- Name: mdl_course_completion_defaults id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23552,7 +23552,7 @@ ALTER TABLE ONLY public.mdl_course_completion_defaults ALTER COLUMN id SET DEFAU -- --- TOC entry 5502 (class 2604 OID 16553) +-- TOC entry 5926 (class 2604 OID 63826) -- Name: mdl_course_completions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23560,7 +23560,7 @@ ALTER TABLE ONLY public.mdl_course_completions ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 5560 (class 2604 OID 16692) +-- TOC entry 5932 (class 2604 OID 63827) -- Name: mdl_course_format_options id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23568,7 +23568,7 @@ ALTER TABLE ONLY public.mdl_course_format_options ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 5528 (class 2604 OID 16613) +-- TOC entry 5953 (class 2604 OID 63828) -- Name: mdl_course_modules id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23576,7 +23576,7 @@ ALTER TABLE ONLY public.mdl_course_modules ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 5546 (class 2604 OID 16647) +-- TOC entry 5954 (class 2604 OID 63829) -- Name: mdl_course_modules_completion id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23584,7 +23584,7 @@ ALTER TABLE ONLY public.mdl_course_modules_completion ALTER COLUMN id SET DEFAUL -- --- TOC entry 6257 (class 2604 OID 18858) +-- TOC entry 5955 (class 2604 OID 63830) -- Name: mdl_course_published id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23592,7 +23592,7 @@ ALTER TABLE ONLY public.mdl_course_published ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 5553 (class 2604 OID 16674) +-- TOC entry 5958 (class 2604 OID 63831) -- Name: mdl_course_request id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23600,7 +23600,7 @@ ALTER TABLE ONLY public.mdl_course_request ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 5547 (class 2604 OID 16657) +-- TOC entry 5965 (class 2604 OID 63832) -- Name: mdl_course_sections id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23608,7 +23608,7 @@ ALTER TABLE ONLY public.mdl_course_sections ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 6459 (class 2604 OID 19718) +-- TOC entry 5971 (class 2604 OID 63833) -- Name: mdl_customfield_category id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23616,7 +23616,7 @@ ALTER TABLE ONLY public.mdl_customfield_category ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 6468 (class 2604 OID 19751) +-- TOC entry 5976 (class 2604 OID 63834) -- Name: mdl_customfield_data id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23624,7 +23624,7 @@ ALTER TABLE ONLY public.mdl_customfield_data ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 6464 (class 2604 OID 19735) +-- TOC entry 5977 (class 2604 OID 63835) -- Name: mdl_customfield_field id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23632,7 +23632,7 @@ ALTER TABLE ONLY public.mdl_customfield_field ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 6806 (class 2604 OID 20627) +-- TOC entry 6005 (class 2604 OID 63836) -- Name: mdl_data id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23640,7 +23640,7 @@ ALTER TABLE ONLY public.mdl_data ALTER COLUMN id SET DEFAULT nextval('public.mdl -- --- TOC entry 6843 (class 2604 OID 20695) +-- TOC entry 6006 (class 2604 OID 63837) -- Name: mdl_data_content id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23648,7 +23648,7 @@ ALTER TABLE ONLY public.mdl_data_content ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 6831 (class 2604 OID 20663) +-- TOC entry 6009 (class 2604 OID 63838) -- Name: mdl_data_fields id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23656,7 +23656,7 @@ ALTER TABLE ONLY public.mdl_data_fields ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 6836 (class 2604 OID 20680) +-- TOC entry 6014 (class 2604 OID 63839) -- Name: mdl_data_records id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23664,7 +23664,7 @@ ALTER TABLE ONLY public.mdl_data_records ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 7605 (class 2604 OID 22596) +-- TOC entry 6021 (class 2604 OID 63840) -- Name: mdl_editor_atto_autosave id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23672,7 +23672,7 @@ ALTER TABLE ONLY public.mdl_editor_atto_autosave ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 5508 (class 2604 OID 16570) +-- TOC entry 6026 (class 2604 OID 63841) -- Name: mdl_enrol id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23680,7 +23680,7 @@ ALTER TABLE ONLY public.mdl_enrol ALTER COLUMN id SET DEFAULT nextval('public.md -- --- TOC entry 7533 (class 2604 OID 22327) +-- TOC entry 6039 (class 2604 OID 63842) -- Name: mdl_enrol_flatfile id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23688,7 +23688,7 @@ ALTER TABLE ONLY public.mdl_enrol_flatfile ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 7551 (class 2604 OID 22379) +-- TOC entry 6044 (class 2604 OID 63843) -- Name: mdl_enrol_lti_lti2_consumer id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23696,7 +23696,7 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_consumer ALTER COLUMN id SET DEFAULT -- --- TOC entry 7557 (class 2604 OID 22408) +-- TOC entry 6048 (class 2604 OID 63844) -- Name: mdl_enrol_lti_lti2_context id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23704,7 +23704,7 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_context ALTER COLUMN id SET DEFAULT n -- --- TOC entry 7559 (class 2604 OID 22421) +-- TOC entry 6050 (class 2604 OID 63845) -- Name: mdl_enrol_lti_lti2_nonce id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23712,7 +23712,7 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_nonce ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 7561 (class 2604 OID 22431) +-- TOC entry 6052 (class 2604 OID 63846) -- Name: mdl_enrol_lti_lti2_resource_link id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23720,7 +23720,7 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_resource_link ALTER COLUMN id SET DEF -- --- TOC entry 7563 (class 2604 OID 22446) +-- TOC entry 6054 (class 2604 OID 63847) -- Name: mdl_enrol_lti_lti2_share_key id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23728,7 +23728,7 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_share_key ALTER COLUMN id SET DEFAULT -- --- TOC entry 7555 (class 2604 OID 22394) +-- TOC entry 6056 (class 2604 OID 63848) -- Name: mdl_enrol_lti_lti2_tool_proxy id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23736,7 +23736,7 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_tool_proxy ALTER COLUMN id SET DEFAUL -- --- TOC entry 7565 (class 2604 OID 22457) +-- TOC entry 6058 (class 2604 OID 63849) -- Name: mdl_enrol_lti_lti2_user_result id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23744,7 +23744,7 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_user_result ALTER COLUMN id SET DEFAU -- --- TOC entry 7568 (class 2604 OID 22471) +-- TOC entry 6061 (class 2604 OID 63850) -- Name: mdl_enrol_lti_tool_consumer_map id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23752,7 +23752,7 @@ ALTER TABLE ONLY public.mdl_enrol_lti_tool_consumer_map ALTER COLUMN id SET DEFA -- --- TOC entry 7538 (class 2604 OID 22342) +-- TOC entry 6062 (class 2604 OID 63851) -- Name: mdl_enrol_lti_tools id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23760,7 +23760,7 @@ ALTER TABLE ONLY public.mdl_enrol_lti_tools ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 7550 (class 2604 OID 22366) +-- TOC entry 6074 (class 2604 OID 63852) -- Name: mdl_enrol_lti_users id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23768,7 +23768,7 @@ ALTER TABLE ONLY public.mdl_enrol_lti_users ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 7569 (class 2604 OID 22481) +-- TOC entry 6095 (class 2604 OID 63853) -- Name: mdl_enrol_paypal id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23776,7 +23776,7 @@ ALTER TABLE ONLY public.mdl_enrol_paypal ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 5570 (class 2604 OID 16735) +-- TOC entry 6096 (class 2604 OID 63854) -- Name: mdl_event id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23784,7 +23784,7 @@ ALTER TABLE ONLY public.mdl_event ALTER COLUMN id SET DEFAULT nextval('public.md -- --- TOC entry 6270 (class 2604 OID 18913) +-- TOC entry 6113 (class 2604 OID 63855) -- Name: mdl_event_subscriptions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23792,7 +23792,7 @@ ALTER TABLE ONLY public.mdl_event_subscriptions ALTER COLUMN id SET DEFAULT next -- --- TOC entry 5973 (class 2604 OID 17894) +-- TOC entry 6122 (class 2604 OID 63856) -- Name: mdl_events_handlers id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23800,7 +23800,7 @@ ALTER TABLE ONLY public.mdl_events_handlers ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 5972 (class 2604 OID 17882) +-- TOC entry 6128 (class 2604 OID 63857) -- Name: mdl_events_queue id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23808,7 +23808,7 @@ ALTER TABLE ONLY public.mdl_events_queue ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 5979 (class 2604 OID 17911) +-- TOC entry 6129 (class 2604 OID 63858) -- Name: mdl_events_queue_handlers id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23816,7 +23816,7 @@ ALTER TABLE ONLY public.mdl_events_queue_handlers ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 6213 (class 2604 OID 18683) +-- TOC entry 6130 (class 2604 OID 63859) -- Name: mdl_external_functions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23824,7 +23824,7 @@ ALTER TABLE ONLY public.mdl_external_functions ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 6209 (class 2604 OID 18668) +-- TOC entry 6135 (class 2604 OID 63860) -- Name: mdl_external_services id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23832,7 +23832,7 @@ ALTER TABLE ONLY public.mdl_external_services ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 6218 (class 2604 OID 18699) +-- TOC entry 6139 (class 2604 OID 63861) -- Name: mdl_external_services_functions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23840,7 +23840,7 @@ ALTER TABLE ONLY public.mdl_external_services_functions ALTER COLUMN id SET DEFA -- --- TOC entry 6220 (class 2604 OID 18709) +-- TOC entry 6141 (class 2604 OID 63862) -- Name: mdl_external_services_users id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23848,7 +23848,7 @@ ALTER TABLE ONLY public.mdl_external_services_users ALTER COLUMN id SET DEFAULT -- --- TOC entry 6221 (class 2604 OID 18719) +-- TOC entry 6142 (class 2604 OID 63863) -- Name: mdl_external_tokens id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23856,7 +23856,7 @@ ALTER TABLE ONLY public.mdl_external_tokens ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 6456 (class 2604 OID 19705) +-- TOC entry 6145 (class 2604 OID 63864) -- Name: mdl_favourite id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23864,7 +23864,7 @@ ALTER TABLE ONLY public.mdl_favourite ALTER COLUMN id SET DEFAULT nextval('publi -- --- TOC entry 6846 (class 2604 OID 20710) +-- TOC entry 6148 (class 2604 OID 63865) -- Name: mdl_feedback id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23872,7 +23872,7 @@ ALTER TABLE ONLY public.mdl_feedback ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 6877 (class 2604 OID 20772) +-- TOC entry 6163 (class 2604 OID 63866) -- Name: mdl_feedback_completed id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23880,7 +23880,7 @@ ALTER TABLE ONLY public.mdl_feedback_completed ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 6884 (class 2604 OID 20788) +-- TOC entry 6170 (class 2604 OID 63867) -- Name: mdl_feedback_completedtmp id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23888,7 +23888,7 @@ ALTER TABLE ONLY public.mdl_feedback_completedtmp ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 6865 (class 2604 OID 20748) +-- TOC entry 6178 (class 2604 OID 63868) -- Name: mdl_feedback_item id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23896,7 +23896,7 @@ ALTER TABLE ONLY public.mdl_feedback_item ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6902 (class 2604 OID 20841) +-- TOC entry 6190 (class 2604 OID 63869) -- Name: mdl_feedback_sitecourse_map id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23904,7 +23904,7 @@ ALTER TABLE ONLY public.mdl_feedback_sitecourse_map ALTER COLUMN id SET DEFAULT -- --- TOC entry 6861 (class 2604 OID 20736) +-- TOC entry 6193 (class 2604 OID 63870) -- Name: mdl_feedback_template id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23912,7 +23912,7 @@ ALTER TABLE ONLY public.mdl_feedback_template ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 6892 (class 2604 OID 20805) +-- TOC entry 6197 (class 2604 OID 63871) -- Name: mdl_feedback_value id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23920,7 +23920,7 @@ ALTER TABLE ONLY public.mdl_feedback_value ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 6897 (class 2604 OID 20823) +-- TOC entry 6202 (class 2604 OID 63872) -- Name: mdl_feedback_valuetmp id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23928,7 +23928,7 @@ ALTER TABLE ONLY public.mdl_feedback_valuetmp ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 6173 (class 2604 OID 18542) +-- TOC entry 6207 (class 2604 OID 63873) -- Name: mdl_file_conversion id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23936,7 +23936,7 @@ ALTER TABLE ONLY public.mdl_file_conversion ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 6162 (class 2604 OID 18502) +-- TOC entry 6210 (class 2604 OID 63874) -- Name: mdl_files id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23944,7 +23944,7 @@ ALTER TABLE ONLY public.mdl_files ALTER COLUMN id SET DEFAULT nextval('public.md -- --- TOC entry 6171 (class 2604 OID 18528) +-- TOC entry 6219 (class 2604 OID 63875) -- Name: mdl_files_reference id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23952,7 +23952,7 @@ ALTER TABLE ONLY public.mdl_files_reference ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 5564 (class 2604 OID 16708) +-- TOC entry 6221 (class 2604 OID 63876) -- Name: mdl_filter_active id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23960,7 +23960,7 @@ ALTER TABLE ONLY public.mdl_filter_active ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 5567 (class 2604 OID 16720) +-- TOC entry 6224 (class 2604 OID 63877) -- Name: mdl_filter_config id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23968,7 +23968,7 @@ ALTER TABLE ONLY public.mdl_filter_config ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6905 (class 2604 OID 20853) +-- TOC entry 6227 (class 2604 OID 63878) -- Name: mdl_folder id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23976,7 +23976,7 @@ ALTER TABLE ONLY public.mdl_folder ALTER COLUMN id SET DEFAULT nextval('public.m -- --- TOC entry 6914 (class 2604 OID 20873) +-- TOC entry 6263 (class 2604 OID 63879) -- Name: mdl_forum id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23984,7 +23984,7 @@ ALTER TABLE ONLY public.mdl_forum ALTER COLUMN id SET DEFAULT nextval('public.md -- --- TOC entry 6979 (class 2604 OID 20995) +-- TOC entry 6264 (class 2604 OID 63880) -- Name: mdl_forum_digests id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23992,7 +23992,7 @@ ALTER TABLE ONLY public.mdl_forum_digests ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6991 (class 2604 OID 21035) +-- TOC entry 6266 (class 2604 OID 63881) -- Name: mdl_forum_discussion_subs id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24000,7 +24000,7 @@ ALTER TABLE ONLY public.mdl_forum_discussion_subs ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 6942 (class 2604 OID 20912) +-- TOC entry 6268 (class 2604 OID 63882) -- Name: mdl_forum_discussions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24008,7 +24008,7 @@ ALTER TABLE ONLY public.mdl_forum_discussions ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 6993 (class 2604 OID 21048) +-- TOC entry 6282 (class 2604 OID 63883) -- Name: mdl_forum_grades id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24016,7 +24016,7 @@ ALTER TABLE ONLY public.mdl_forum_grades ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 6956 (class 2604 OID 20936) +-- TOC entry 6283 (class 2604 OID 63884) -- Name: mdl_forum_posts id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24024,7 +24024,7 @@ ALTER TABLE ONLY public.mdl_forum_posts ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 6971 (class 2604 OID 20967) +-- TOC entry 6298 (class 2604 OID 63885) -- Name: mdl_forum_queue id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24032,7 +24032,7 @@ ALTER TABLE ONLY public.mdl_forum_queue ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 6981 (class 2604 OID 21007) +-- TOC entry 6303 (class 2604 OID 63886) -- Name: mdl_forum_read id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24040,7 +24040,7 @@ ALTER TABLE ONLY public.mdl_forum_read ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 6976 (class 2604 OID 20982) +-- TOC entry 6310 (class 2604 OID 63887) -- Name: mdl_forum_subscriptions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24048,7 +24048,7 @@ ALTER TABLE ONLY public.mdl_forum_subscriptions ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6988 (class 2604 OID 21024) +-- TOC entry 6313 (class 2604 OID 63888) -- Name: mdl_forum_track_prefs id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24056,7 +24056,7 @@ ALTER TABLE ONLY public.mdl_forum_track_prefs ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 6994 (class 2604 OID 21062) +-- TOC entry 6342 (class 2604 OID 63889) -- Name: mdl_glossary id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24064,7 +24064,7 @@ ALTER TABLE ONLY public.mdl_glossary ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 7036 (class 2604 OID 21128) +-- TOC entry 6343 (class 2604 OID 63890) -- Name: mdl_glossary_alias id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24072,7 +24072,7 @@ ALTER TABLE ONLY public.mdl_glossary_alias ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 7039 (class 2604 OID 21139) +-- TOC entry 6346 (class 2604 OID 63891) -- Name: mdl_glossary_categories id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24080,7 +24080,7 @@ ALTER TABLE ONLY public.mdl_glossary_categories ALTER COLUMN id SET DEFAULT next -- --- TOC entry 7021 (class 2604 OID 21100) +-- TOC entry 6350 (class 2604 OID 63892) -- Name: mdl_glossary_entries id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24088,7 +24088,7 @@ ALTER TABLE ONLY public.mdl_glossary_entries ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 7043 (class 2604 OID 21151) +-- TOC entry 6365 (class 2604 OID 63893) -- Name: mdl_glossary_entries_categories id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24096,7 +24096,7 @@ ALTER TABLE ONLY public.mdl_glossary_entries_categories ALTER COLUMN id SET DEFA -- --- TOC entry 7046 (class 2604 OID 21163) +-- TOC entry 6368 (class 2604 OID 63894) -- Name: mdl_glossary_formats id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24104,7 +24104,7 @@ ALTER TABLE ONLY public.mdl_glossary_formats ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 5984 (class 2604 OID 17952) +-- TOC entry 6377 (class 2604 OID 63895) -- Name: mdl_grade_categories id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24112,7 +24112,7 @@ ALTER TABLE ONLY public.mdl_grade_categories ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 6026 (class 2604 OID 18056) +-- TOC entry 6386 (class 2604 OID 63896) -- Name: mdl_grade_categories_history id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24120,7 +24120,7 @@ ALTER TABLE ONLY public.mdl_grade_categories_history ALTER COLUMN id SET DEFAULT -- --- TOC entry 6010 (class 2604 OID 18008) +-- TOC entry 6397 (class 2604 OID 63897) -- Name: mdl_grade_grades id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24128,7 +24128,7 @@ ALTER TABLE ONLY public.mdl_grade_grades ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 6055 (class 2604 OID 18119) +-- TOC entry 6409 (class 2604 OID 63898) -- Name: mdl_grade_grades_history id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24136,7 +24136,7 @@ ALTER TABLE ONLY public.mdl_grade_grades_history ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 6067 (class 2604 OID 18150) +-- TOC entry 6421 (class 2604 OID 63899) -- Name: mdl_grade_import_newitem id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24144,7 +24144,7 @@ ALTER TABLE ONLY public.mdl_grade_import_newitem ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 6069 (class 2604 OID 18160) +-- TOC entry 6423 (class 2604 OID 63900) -- Name: mdl_grade_import_values id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24152,7 +24152,7 @@ ALTER TABLE ONLY public.mdl_grade_import_values ALTER COLUMN id SET DEFAULT next -- --- TOC entry 5993 (class 2604 OID 17973) +-- TOC entry 6425 (class 2604 OID 63901) -- Name: mdl_grade_items id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24160,7 +24160,7 @@ ALTER TABLE ONLY public.mdl_grade_items ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 6037 (class 2604 OID 18083) +-- TOC entry 6459 (class 2604 OID 63902) -- Name: mdl_grade_items_history id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24168,7 +24168,7 @@ ALTER TABLE ONLY public.mdl_grade_items_history ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6130 (class 2604 OID 18365) +-- TOC entry 6460 (class 2604 OID 63903) -- Name: mdl_grade_letters id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24176,7 +24176,7 @@ ALTER TABLE ONLY public.mdl_grade_letters ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 5980 (class 2604 OID 17924) +-- TOC entry 6462 (class 2604 OID 63904) -- Name: mdl_grade_outcomes id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24184,7 +24184,7 @@ ALTER TABLE ONLY public.mdl_grade_outcomes ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 5983 (class 2604 OID 17941) +-- TOC entry 6465 (class 2604 OID 63905) -- Name: mdl_grade_outcomes_courses id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24192,7 +24192,7 @@ ALTER TABLE ONLY public.mdl_grade_outcomes_courses ALTER COLUMN id SET DEFAULT n -- --- TOC entry 6022 (class 2604 OID 18036) +-- TOC entry 6466 (class 2604 OID 63906) -- Name: mdl_grade_outcomes_history id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24200,7 +24200,7 @@ ALTER TABLE ONLY public.mdl_grade_outcomes_history ALTER COLUMN id SET DEFAULT n -- --- TOC entry 6136 (class 2604 OID 18391) +-- TOC entry 6470 (class 2604 OID 63907) -- Name: mdl_grade_settings id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24208,7 +24208,7 @@ ALTER TABLE ONLY public.mdl_grade_settings ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 6260 (class 2604 OID 18868) +-- TOC entry 6472 (class 2604 OID 63908) -- Name: mdl_grading_areas id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24216,7 +24216,7 @@ ALTER TABLE ONLY public.mdl_grading_areas ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6263 (class 2604 OID 18880) +-- TOC entry 6475 (class 2604 OID 63909) -- Name: mdl_grading_definitions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24224,7 +24224,7 @@ ALTER TABLE ONLY public.mdl_grading_definitions ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6268 (class 2604 OID 18899) +-- TOC entry 6480 (class 2604 OID 63910) -- Name: mdl_grading_instances id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24232,7 +24232,7 @@ ALTER TABLE ONLY public.mdl_grading_instances ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 7613 (class 2604 OID 22639) +-- TOC entry 6482 (class 2604 OID 63911) -- Name: mdl_gradingform_guide_comments id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24240,7 +24240,7 @@ ALTER TABLE ONLY public.mdl_gradingform_guide_comments ALTER COLUMN id SET DEFAU -- --- TOC entry 7610 (class 2604 OID 22612) +-- TOC entry 6483 (class 2604 OID 63912) -- Name: mdl_gradingform_guide_criteria id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24248,7 +24248,7 @@ ALTER TABLE ONLY public.mdl_gradingform_guide_criteria ALTER COLUMN id SET DEFAU -- --- TOC entry 7612 (class 2604 OID 22625) +-- TOC entry 6485 (class 2604 OID 63913) -- Name: mdl_gradingform_guide_fillings id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24256,7 +24256,7 @@ ALTER TABLE ONLY public.mdl_gradingform_guide_fillings ALTER COLUMN id SET DEFAU -- --- TOC entry 7614 (class 2604 OID 22651) +-- TOC entry 6486 (class 2604 OID 63914) -- Name: mdl_gradingform_rubric_criteria id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24264,7 +24264,7 @@ ALTER TABLE ONLY public.mdl_gradingform_rubric_criteria ALTER COLUMN id SET DEFA -- --- TOC entry 7616 (class 2604 OID 22675) +-- TOC entry 6487 (class 2604 OID 63915) -- Name: mdl_gradingform_rubric_fillings id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24272,7 +24272,7 @@ ALTER TABLE ONLY public.mdl_gradingform_rubric_fillings ALTER COLUMN id SET DEFA -- --- TOC entry 7615 (class 2604 OID 22663) +-- TOC entry 6488 (class 2604 OID 63916) -- Name: mdl_gradingform_rubric_levels id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24280,7 +24280,7 @@ ALTER TABLE ONLY public.mdl_gradingform_rubric_levels ALTER COLUMN id SET DEFAUL -- --- TOC entry 6102 (class 2604 OID 18273) +-- TOC entry 6489 (class 2604 OID 63917) -- Name: mdl_groupings id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24288,7 +24288,7 @@ ALTER TABLE ONLY public.mdl_groupings ALTER COLUMN id SET DEFAULT nextval('publi -- --- TOC entry 6115 (class 2604 OID 18308) +-- TOC entry 6496 (class 2604 OID 63918) -- Name: mdl_groupings_groups id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24296,7 +24296,7 @@ ALTER TABLE ONLY public.mdl_groupings_groups ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 6094 (class 2604 OID 18253) +-- TOC entry 6500 (class 2604 OID 63919) -- Name: mdl_groups id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24304,7 +24304,7 @@ ALTER TABLE ONLY public.mdl_groups ALTER COLUMN id SET DEFAULT nextval('public.m -- --- TOC entry 6109 (class 2604 OID 18292) +-- TOC entry 6508 (class 2604 OID 63920) -- Name: mdl_groups_members id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24312,7 +24312,7 @@ ALTER TABLE ONLY public.mdl_groups_members ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 6476 (class 2604 OID 19795) +-- TOC entry 6514 (class 2604 OID 63921) -- Name: mdl_h5p id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24320,7 +24320,7 @@ ALTER TABLE ONLY public.mdl_h5p ALTER COLUMN id SET DEFAULT nextval('public.mdl_ -- --- TOC entry 6481 (class 2604 OID 19811) +-- TOC entry 6519 (class 2604 OID 63922) -- Name: mdl_h5p_contents_libraries id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24328,7 +24328,7 @@ ALTER TABLE ONLY public.mdl_h5p_contents_libraries ALTER COLUMN id SET DEFAULT n -- --- TOC entry 6469 (class 2604 OID 19768) +-- TOC entry 6521 (class 2604 OID 63923) -- Name: mdl_h5p_libraries id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24336,7 +24336,7 @@ ALTER TABLE ONLY public.mdl_h5p_libraries ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6483 (class 2604 OID 19822) +-- TOC entry 6526 (class 2604 OID 63924) -- Name: mdl_h5p_libraries_cachedassets id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24344,7 +24344,7 @@ ALTER TABLE ONLY public.mdl_h5p_libraries_cachedassets ALTER COLUMN id SET DEFAU -- --- TOC entry 6474 (class 2604 OID 19784) +-- TOC entry 6528 (class 2604 OID 63925) -- Name: mdl_h5p_library_dependencies id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24352,7 +24352,7 @@ ALTER TABLE ONLY public.mdl_h5p_library_dependencies ALTER COLUMN id SET DEFAULT -- --- TOC entry 7055 (class 2604 OID 21179) +-- TOC entry 6530 (class 2604 OID 63926) -- Name: mdl_h5pactivity id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24360,7 +24360,7 @@ ALTER TABLE ONLY public.mdl_h5pactivity ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 7063 (class 2604 OID 21198) +-- TOC entry 6538 (class 2604 OID 63927) -- Name: mdl_h5pactivity_attempts id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24368,7 +24368,7 @@ ALTER TABLE ONLY public.mdl_h5pactivity_attempts ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 7069 (class 2604 OID 21216) +-- TOC entry 6544 (class 2604 OID 63928) -- Name: mdl_h5pactivity_attempts_results id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24376,7 +24376,7 @@ ALTER TABLE ONLY public.mdl_h5pactivity_attempts_results ALTER COLUMN id SET DEF -- --- TOC entry 7073 (class 2604 OID 21232) +-- TOC entry 6548 (class 2604 OID 63929) -- Name: mdl_imscp id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24384,7 +24384,7 @@ ALTER TABLE ONLY public.mdl_imscp ALTER COLUMN id SET DEFAULT nextval('public.md -- --- TOC entry 7080 (class 2604 OID 21250) +-- TOC entry 6555 (class 2604 OID 63930) -- Name: mdl_label id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24392,7 +24392,7 @@ ALTER TABLE ONLY public.mdl_label ALTER COLUMN id SET DEFAULT nextval('public.md -- --- TOC entry 7085 (class 2604 OID 21266) +-- TOC entry 6599 (class 2604 OID 63931) -- Name: mdl_lesson id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24400,7 +24400,7 @@ ALTER TABLE ONLY public.mdl_lesson ALTER COLUMN id SET DEFAULT nextval('public.m -- --- TOC entry 7137 (class 2604 OID 21340) +-- TOC entry 6600 (class 2604 OID 63932) -- Name: mdl_lesson_answers id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24408,7 +24408,7 @@ ALTER TABLE ONLY public.mdl_lesson_answers ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 7148 (class 2604 OID 21363) +-- TOC entry 6611 (class 2604 OID 63933) -- Name: mdl_lesson_attempts id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24416,7 +24416,7 @@ ALTER TABLE ONLY public.mdl_lesson_attempts ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 7169 (class 2604 OID 21416) +-- TOC entry 6619 (class 2604 OID 63934) -- Name: mdl_lesson_branch id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24424,7 +24424,7 @@ ALTER TABLE ONLY public.mdl_lesson_branch ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 7156 (class 2604 OID 21385) +-- TOC entry 6627 (class 2604 OID 63935) -- Name: mdl_lesson_grades id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24432,7 +24432,7 @@ ALTER TABLE ONLY public.mdl_lesson_grades ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 7177 (class 2604 OID 21434) +-- TOC entry 6633 (class 2604 OID 63936) -- Name: mdl_lesson_overrides id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24440,7 +24440,7 @@ ALTER TABLE ONLY public.mdl_lesson_overrides ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 7125 (class 2604 OID 21317) +-- TOC entry 6635 (class 2604 OID 63937) -- Name: mdl_lesson_pages id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24448,7 +24448,7 @@ ALTER TABLE ONLY public.mdl_lesson_pages ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 7162 (class 2604 OID 21400) +-- TOC entry 6647 (class 2604 OID 63938) -- Name: mdl_lesson_timer id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24456,7 +24456,7 @@ ALTER TABLE ONLY public.mdl_lesson_timer ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 6232 (class 2604 OID 18774) +-- TOC entry 6654 (class 2604 OID 63939) -- Name: mdl_license id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24464,7 +24464,7 @@ ALTER TABLE ONLY public.mdl_license ALTER COLUMN id SET DEFAULT nextval('public. -- --- TOC entry 6344 (class 2604 OID 19178) +-- TOC entry 6659 (class 2604 OID 63940) -- Name: mdl_lock_db id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24472,7 +24472,7 @@ ALTER TABLE ONLY public.mdl_lock_db ALTER COLUMN id SET DEFAULT nextval('public. -- --- TOC entry 5592 (class 2604 OID 16790) +-- TOC entry 6661 (class 2604 OID 63941) -- Name: mdl_log id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24480,7 +24480,7 @@ ALTER TABLE ONLY public.mdl_log ALTER COLUMN id SET DEFAULT nextval('public.mdl_ -- --- TOC entry 5604 (class 2604 OID 16824) +-- TOC entry 6671 (class 2604 OID 63942) -- Name: mdl_log_display id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24488,7 +24488,7 @@ ALTER TABLE ONLY public.mdl_log_display ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 5602 (class 2604 OID 16812) +-- TOC entry 6677 (class 2604 OID 63943) -- Name: mdl_log_queries id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24496,7 +24496,7 @@ ALTER TABLE ONLY public.mdl_log_queries ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 7784 (class 2604 OID 23378) +-- TOC entry 6679 (class 2604 OID 63944) -- Name: mdl_logstore_standard_log id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24504,7 +24504,7 @@ ALTER TABLE ONLY public.mdl_logstore_standard_log ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 7179 (class 2604 OID 21446) +-- TOC entry 6686 (class 2604 OID 63945) -- Name: mdl_lti id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24512,7 +24512,7 @@ ALTER TABLE ONLY public.mdl_lti ALTER COLUMN id SET DEFAULT nextval('public.mdl_ -- --- TOC entry 7203 (class 2604 OID 21538) +-- TOC entry 6697 (class 2604 OID 63946) -- Name: mdl_lti_access_tokens id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24520,7 +24520,7 @@ ALTER TABLE ONLY public.mdl_lti_access_tokens ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 7202 (class 2604 OID 21529) +-- TOC entry 6699 (class 2604 OID 63947) -- Name: mdl_lti_submission id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24528,7 +24528,7 @@ ALTER TABLE ONLY public.mdl_lti_submission ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 7190 (class 2604 OID 21468) +-- TOC entry 6700 (class 2604 OID 63948) -- Name: mdl_lti_tool_proxies id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24536,7 +24536,7 @@ ALTER TABLE ONLY public.mdl_lti_tool_proxies ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 7201 (class 2604 OID 21514) +-- TOC entry 6703 (class 2604 OID 63949) -- Name: mdl_lti_tool_settings id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24544,7 +24544,7 @@ ALTER TABLE ONLY public.mdl_lti_tool_settings ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 7193 (class 2604 OID 21482) +-- TOC entry 6704 (class 2604 OID 63950) -- Name: mdl_lti_types id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24552,7 +24552,7 @@ ALTER TABLE ONLY public.mdl_lti_types ALTER COLUMN id SET DEFAULT nextval('publi -- --- TOC entry 7199 (class 2604 OID 21501) +-- TOC entry 6710 (class 2604 OID 63951) -- Name: mdl_lti_types_config id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24560,7 +24560,7 @@ ALTER TABLE ONLY public.mdl_lti_types_config ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 7748 (class 2604 OID 23199) +-- TOC entry 6712 (class 2604 OID 63952) -- Name: mdl_ltiservice_gradebookservices id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24568,7 +24568,7 @@ ALTER TABLE ONLY public.mdl_ltiservice_gradebookservices ALTER COLUMN id SET DEF -- --- TOC entry 5610 (class 2604 OID 16838) +-- TOC entry 6713 (class 2604 OID 63953) -- Name: mdl_message id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24576,7 +24576,7 @@ ALTER TABLE ONLY public.mdl_message ALTER COLUMN id SET DEFAULT nextval('public. -- --- TOC entry 7590 (class 2604 OID 22517) +-- TOC entry 6721 (class 2604 OID 63954) -- Name: mdl_message_airnotifier_devices id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24584,7 +24584,7 @@ ALTER TABLE ONLY public.mdl_message_airnotifier_devices ALTER COLUMN id SET DEFA -- --- TOC entry 5639 (class 2604 OID 16971) +-- TOC entry 6723 (class 2604 OID 63955) -- Name: mdl_message_contact_requests id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24592,7 +24592,7 @@ ALTER TABLE ONLY public.mdl_message_contact_requests ALTER COLUMN id SET DEFAULT -- --- TOC entry 5638 (class 2604 OID 16960) +-- TOC entry 6724 (class 2604 OID 63956) -- Name: mdl_message_contacts id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24600,7 +24600,7 @@ ALTER TABLE ONLY public.mdl_message_contacts ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 5634 (class 2604 OID 16925) +-- TOC entry 6725 (class 2604 OID 63957) -- Name: mdl_message_conversation_actions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24608,7 +24608,7 @@ ALTER TABLE ONLY public.mdl_message_conversation_actions ALTER COLUMN id SET DEF -- --- TOC entry 5633 (class 2604 OID 16915) +-- TOC entry 6726 (class 2604 OID 63958) -- Name: mdl_message_conversation_members id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24616,7 +24616,7 @@ ALTER TABLE ONLY public.mdl_message_conversation_members ALTER COLUMN id SET DEF -- --- TOC entry 5630 (class 2604 OID 16898) +-- TOC entry 6727 (class 2604 OID 63959) -- Name: mdl_message_conversations id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24624,7 +24624,7 @@ ALTER TABLE ONLY public.mdl_message_conversations ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 7592 (class 2604 OID 22527) +-- TOC entry 6730 (class 2604 OID 63960) -- Name: mdl_message_email_messages id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24632,7 +24632,7 @@ ALTER TABLE ONLY public.mdl_message_email_messages ALTER COLUMN id SET DEFAULT n -- --- TOC entry 7593 (class 2604 OID 22538) +-- TOC entry 6731 (class 2604 OID 63961) -- Name: mdl_message_popup id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24640,7 +24640,7 @@ ALTER TABLE ONLY public.mdl_message_popup ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 7595 (class 2604 OID 22549) +-- TOC entry 6733 (class 2604 OID 63962) -- Name: mdl_message_popup_notifications id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24648,7 +24648,7 @@ ALTER TABLE ONLY public.mdl_message_popup_notifications ALTER COLUMN id SET DEFA -- --- TOC entry 6159 (class 2604 OID 18492) +-- TOC entry 6734 (class 2604 OID 63963) -- Name: mdl_message_processors id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24656,7 +24656,7 @@ ALTER TABLE ONLY public.mdl_message_processors ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 6156 (class 2604 OID 18478) +-- TOC entry 6737 (class 2604 OID 63964) -- Name: mdl_message_providers id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24664,7 +24664,7 @@ ALTER TABLE ONLY public.mdl_message_providers ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 5618 (class 2604 OID 16859) +-- TOC entry 6740 (class 2604 OID 63965) -- Name: mdl_message_read id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24672,7 +24672,7 @@ ALTER TABLE ONLY public.mdl_message_read ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 5635 (class 2604 OID 16935) +-- TOC entry 6749 (class 2604 OID 63966) -- Name: mdl_message_user_actions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24680,7 +24680,7 @@ ALTER TABLE ONLY public.mdl_message_user_actions ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 5640 (class 2604 OID 16982) +-- TOC entry 6750 (class 2604 OID 63967) -- Name: mdl_message_users_blocked id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24688,7 +24688,7 @@ ALTER TABLE ONLY public.mdl_message_users_blocked ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 6370 (class 2604 OID 19257) +-- TOC entry 6751 (class 2604 OID 63968) -- Name: mdl_messageinbound_datakeys id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24696,7 +24696,7 @@ ALTER TABLE ONLY public.mdl_messageinbound_datakeys ALTER COLUMN id SET DEFAULT -- --- TOC entry 6364 (class 2604 OID 19243) +-- TOC entry 6752 (class 2604 OID 63969) -- Name: mdl_messageinbound_handlers id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24704,7 +24704,7 @@ ALTER TABLE ONLY public.mdl_messageinbound_handlers ALTER COLUMN id SET DEFAULT -- --- TOC entry 6371 (class 2604 OID 19267) +-- TOC entry 6758 (class 2604 OID 63970) -- Name: mdl_messageinbound_messagelist id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24712,7 +24712,7 @@ ALTER TABLE ONLY public.mdl_messageinbound_messagelist ALTER COLUMN id SET DEFAU -- --- TOC entry 5627 (class 2604 OID 16882) +-- TOC entry 6759 (class 2604 OID 63971) -- Name: mdl_messages id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24720,7 +24720,7 @@ ALTER TABLE ONLY public.mdl_messages ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 5899 (class 2604 OID 17712) +-- TOC entry 6762 (class 2604 OID 63972) -- Name: mdl_mnet_application id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24728,7 +24728,7 @@ ALTER TABLE ONLY public.mdl_mnet_application ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 5905 (class 2604 OID 17728) +-- TOC entry 6768 (class 2604 OID 63973) -- Name: mdl_mnet_host id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24736,7 +24736,7 @@ ALTER TABLE ONLY public.mdl_mnet_host ALTER COLUMN id SET DEFAULT nextval('publi -- --- TOC entry 5918 (class 2604 OID 17752) +-- TOC entry 6781 (class 2604 OID 63974) -- Name: mdl_mnet_host2service id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24744,7 +24744,7 @@ ALTER TABLE ONLY public.mdl_mnet_host2service ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 5923 (class 2604 OID 17765) +-- TOC entry 6786 (class 2604 OID 63975) -- Name: mdl_mnet_log id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24752,7 +24752,7 @@ ALTER TABLE ONLY public.mdl_mnet_log ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 5943 (class 2604 OID 17807) +-- TOC entry 6799 (class 2604 OID 63976) -- Name: mdl_mnet_remote_rpc id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24760,7 +24760,7 @@ ALTER TABLE ONLY public.mdl_mnet_remote_rpc ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 5956 (class 2604 OID 17842) +-- TOC entry 6804 (class 2604 OID 63977) -- Name: mdl_mnet_remote_service2rpc id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24768,7 +24768,7 @@ ALTER TABLE ONLY public.mdl_mnet_remote_service2rpc ALTER COLUMN id SET DEFAULT -- --- TOC entry 5936 (class 2604 OID 17789) +-- TOC entry 6807 (class 2604 OID 63978) -- Name: mdl_mnet_rpc id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24776,7 +24776,7 @@ ALTER TABLE ONLY public.mdl_mnet_rpc ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 5948 (class 2604 OID 17819) +-- TOC entry 6814 (class 2604 OID 63979) -- Name: mdl_mnet_service id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24784,7 +24784,7 @@ ALTER TABLE ONLY public.mdl_mnet_service ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 5953 (class 2604 OID 17831) +-- TOC entry 6819 (class 2604 OID 63980) -- Name: mdl_mnet_service2rpc id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24792,7 +24792,7 @@ ALTER TABLE ONLY public.mdl_mnet_service2rpc ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 5959 (class 2604 OID 17853) +-- TOC entry 6822 (class 2604 OID 63981) -- Name: mdl_mnet_session id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24800,7 +24800,7 @@ ALTER TABLE ONLY public.mdl_mnet_session ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 5968 (class 2604 OID 17870) +-- TOC entry 6831 (class 2604 OID 63982) -- Name: mdl_mnet_sso_access_control id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24808,7 +24808,7 @@ ALTER TABLE ONLY public.mdl_mnet_sso_access_control ALTER COLUMN id SET DEFAULT -- --- TOC entry 7617 (class 2604 OID 22690) +-- TOC entry 6835 (class 2604 OID 63983) -- Name: mdl_mnetservice_enrol_courses id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24816,7 +24816,7 @@ ALTER TABLE ONLY public.mdl_mnetservice_enrol_courses ALTER COLUMN id SET DEFAUL -- --- TOC entry 7625 (class 2604 OID 22709) +-- TOC entry 6843 (class 2604 OID 63984) -- Name: mdl_mnetservice_enrol_enrolments id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24824,7 +24824,7 @@ ALTER TABLE ONLY public.mdl_mnetservice_enrol_enrolments ALTER COLUMN id SET DEF -- --- TOC entry 5641 (class 2604 OID 16993) +-- TOC entry 6847 (class 2604 OID 63985) -- Name: mdl_modules id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24832,7 +24832,7 @@ ALTER TABLE ONLY public.mdl_modules ALTER COLUMN id SET DEFAULT nextval('public. -- --- TOC entry 5647 (class 2604 OID 17007) +-- TOC entry 6853 (class 2604 OID 63986) -- Name: mdl_my_pages id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24840,7 +24840,7 @@ ALTER TABLE ONLY public.mdl_my_pages ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 5636 (class 2604 OID 16946) +-- TOC entry 6858 (class 2604 OID 63987) -- Name: mdl_notifications id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24848,7 +24848,7 @@ ALTER TABLE ONLY public.mdl_notifications ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6450 (class 2604 OID 19666) +-- TOC entry 6860 (class 2604 OID 63988) -- Name: mdl_oauth2_access_token id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24856,7 +24856,7 @@ ALTER TABLE ONLY public.mdl_oauth2_access_token ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6406 (class 2604 OID 19477) +-- TOC entry 6861 (class 2604 OID 63989) -- Name: mdl_oauth2_endpoint id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24864,7 +24864,7 @@ ALTER TABLE ONLY public.mdl_oauth2_endpoint ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 6408 (class 2604 OID 19490) +-- TOC entry 6863 (class 2604 OID 63990) -- Name: mdl_oauth2_issuer id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24872,7 +24872,7 @@ ALTER TABLE ONLY public.mdl_oauth2_issuer ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6414 (class 2604 OID 19506) +-- TOC entry 6869 (class 2604 OID 63991) -- Name: mdl_oauth2_system_account id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24880,7 +24880,7 @@ ALTER TABLE ONLY public.mdl_oauth2_system_account ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 6415 (class 2604 OID 19518) +-- TOC entry 6870 (class 2604 OID 63992) -- Name: mdl_oauth2_user_field_mapping id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24888,7 +24888,7 @@ ALTER TABLE ONLY public.mdl_oauth2_user_field_mapping ALTER COLUMN id SET DEFAUL -- --- TOC entry 7205 (class 2604 OID 21552) +-- TOC entry 6873 (class 2604 OID 63993) -- Name: mdl_page id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24896,7 +24896,7 @@ ALTER TABLE ONLY public.mdl_page ALTER COLUMN id SET DEFAULT nextval('public.mdl -- --- TOC entry 6138 (class 2604 OID 18405) +-- TOC entry 6882 (class 2604 OID 63994) -- Name: mdl_portfolio_instance id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24904,7 +24904,7 @@ ALTER TABLE ONLY public.mdl_portfolio_instance ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 6142 (class 2604 OID 18416) +-- TOC entry 6886 (class 2604 OID 63995) -- Name: mdl_portfolio_instance_config id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24912,7 +24912,7 @@ ALTER TABLE ONLY public.mdl_portfolio_instance_config ALTER COLUMN id SET DEFAUL -- --- TOC entry 6144 (class 2604 OID 18430) +-- TOC entry 6888 (class 2604 OID 63996) -- Name: mdl_portfolio_instance_user id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24920,7 +24920,7 @@ ALTER TABLE ONLY public.mdl_portfolio_instance_user ALTER COLUMN id SET DEFAULT -- --- TOC entry 6146 (class 2604 OID 18444) +-- TOC entry 6890 (class 2604 OID 63997) -- Name: mdl_portfolio_log id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24928,7 +24928,7 @@ ALTER TABLE ONLY public.mdl_portfolio_log ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 7632 (class 2604 OID 22736) +-- TOC entry 6897 (class 2604 OID 63998) -- Name: mdl_portfolio_mahara_queue id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24936,7 +24936,7 @@ ALTER TABLE ONLY public.mdl_portfolio_mahara_queue ALTER COLUMN id SET DEFAULT n -- --- TOC entry 6153 (class 2604 OID 18463) +-- TOC entry 6899 (class 2604 OID 63999) -- Name: mdl_portfolio_tempdata id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24944,7 +24944,7 @@ ALTER TABLE ONLY public.mdl_portfolio_tempdata ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 5768 (class 2604 OID 17294) +-- TOC entry 6902 (class 2604 OID 64000) -- Name: mdl_post id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24952,7 +24952,7 @@ ALTER TABLE ONLY public.mdl_post ALTER COLUMN id SET DEFAULT nextval('public.mdl -- --- TOC entry 6252 (class 2604 OID 18840) +-- TOC entry 6917 (class 2604 OID 64001) -- Name: mdl_profiling id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24960,7 +24960,7 @@ ALTER TABLE ONLY public.mdl_profiling ALTER COLUMN id SET DEFAULT nextval('publi -- --- TOC entry 6520 (class 2604 OID 19931) +-- TOC entry 6922 (class 2604 OID 64002) -- Name: mdl_qtype_ddimageortext id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24968,7 +24968,7 @@ ALTER TABLE ONLY public.mdl_qtype_ddimageortext ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6533 (class 2604 OID 19966) +-- TOC entry 6929 (class 2604 OID 64003) -- Name: mdl_qtype_ddimageortext_drags id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24976,7 +24976,7 @@ ALTER TABLE ONLY public.mdl_qtype_ddimageortext_drags ALTER COLUMN id SET DEFAUL -- --- TOC entry 6527 (class 2604 OID 19949) +-- TOC entry 6934 (class 2604 OID 64004) -- Name: mdl_qtype_ddimageortext_drops id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24984,7 +24984,7 @@ ALTER TABLE ONLY public.mdl_qtype_ddimageortext_drops ALTER COLUMN id SET DEFAUL -- --- TOC entry 6538 (class 2604 OID 19982) +-- TOC entry 6940 (class 2604 OID 64005) -- Name: mdl_qtype_ddmarker id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24992,7 +24992,7 @@ ALTER TABLE ONLY public.mdl_qtype_ddmarker ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 6550 (class 2604 OID 20016) +-- TOC entry 6948 (class 2604 OID 64006) -- Name: mdl_qtype_ddmarker_drags id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25000,7 +25000,7 @@ ALTER TABLE ONLY public.mdl_qtype_ddmarker_drags ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 6546 (class 2604 OID 20001) +-- TOC entry 6953 (class 2604 OID 64007) -- Name: mdl_qtype_ddmarker_drops id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25008,7 +25008,7 @@ ALTER TABLE ONLY public.mdl_qtype_ddmarker_drops ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 6562 (class 2604 OID 20050) +-- TOC entry 6957 (class 2604 OID 64008) -- Name: mdl_qtype_essay_options id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25016,7 +25016,7 @@ ALTER TABLE ONLY public.mdl_qtype_essay_options ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6577 (class 2604 OID 20087) +-- TOC entry 6965 (class 2604 OID 64009) -- Name: mdl_qtype_match_options id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25024,7 +25024,7 @@ ALTER TABLE ONLY public.mdl_qtype_match_options ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6584 (class 2604 OID 20105) +-- TOC entry 6972 (class 2604 OID 64010) -- Name: mdl_qtype_match_subquestions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25032,7 +25032,7 @@ ALTER TABLE ONLY public.mdl_qtype_match_subquestions ALTER COLUMN id SET DEFAULT -- --- TOC entry 6590 (class 2604 OID 20133) +-- TOC entry 6976 (class 2604 OID 64011) -- Name: mdl_qtype_multichoice_options id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25040,7 +25040,7 @@ ALTER TABLE ONLY public.mdl_qtype_multichoice_options ALTER COLUMN id SET DEFAUL -- --- TOC entry 6615 (class 2604 OID 20195) +-- TOC entry 6987 (class 2604 OID 64012) -- Name: mdl_qtype_randomsamatch_options id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25048,7 +25048,7 @@ ALTER TABLE ONLY public.mdl_qtype_randomsamatch_options ALTER COLUMN id SET DEFA -- --- TOC entry 6623 (class 2604 OID 20214) +-- TOC entry 6995 (class 2604 OID 64013) -- Name: mdl_qtype_shortanswer_options id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25056,7 +25056,7 @@ ALTER TABLE ONLY public.mdl_qtype_shortanswer_options ALTER COLUMN id SET DEFAUL -- --- TOC entry 5856 (class 2604 OID 17560) +-- TOC entry 6998 (class 2604 OID 64014) -- Name: mdl_question id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25064,7 +25064,7 @@ ALTER TABLE ONLY public.mdl_question ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 5871 (class 2604 OID 17591) +-- TOC entry 7013 (class 2604 OID 64015) -- Name: mdl_question_answers id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25072,7 +25072,7 @@ ALTER TABLE ONLY public.mdl_question_answers ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 5888 (class 2604 OID 17662) +-- TOC entry 7018 (class 2604 OID 64016) -- Name: mdl_question_attempt_step_data id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25080,7 +25080,7 @@ ALTER TABLE ONLY public.mdl_question_attempt_step_data ALTER COLUMN id SET DEFAU -- --- TOC entry 5886 (class 2604 OID 17650) +-- TOC entry 7020 (class 2604 OID 64017) -- Name: mdl_question_attempt_steps id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25088,7 +25088,7 @@ ALTER TABLE ONLY public.mdl_question_attempt_steps ALTER COLUMN id SET DEFAULT n -- --- TOC entry 5881 (class 2604 OID 17631) +-- TOC entry 7022 (class 2604 OID 64018) -- Name: mdl_question_attempts id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25096,7 +25096,7 @@ ALTER TABLE ONLY public.mdl_question_attempts ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 6490 (class 2604 OID 19852) +-- TOC entry 7027 (class 2604 OID 64019) -- Name: mdl_question_calculated id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25104,7 +25104,7 @@ ALTER TABLE ONLY public.mdl_question_calculated ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6497 (class 2604 OID 19868) +-- TOC entry 7034 (class 2604 OID 64020) -- Name: mdl_question_calculated_options id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25112,7 +25112,7 @@ ALTER TABLE ONLY public.mdl_question_calculated_options ALTER COLUMN id SET DEFA -- --- TOC entry 5849 (class 2604 OID 17539) +-- TOC entry 7044 (class 2604 OID 64021) -- Name: mdl_question_categories id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25120,7 +25120,7 @@ ALTER TABLE ONLY public.mdl_question_categories ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6507 (class 2604 OID 19889) +-- TOC entry 7051 (class 2604 OID 64022) -- Name: mdl_question_dataset_definitions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25128,7 +25128,7 @@ ALTER TABLE ONLY public.mdl_question_dataset_definitions ALTER COLUMN id SET DEF -- --- TOC entry 6513 (class 2604 OID 19906) +-- TOC entry 7057 (class 2604 OID 64023) -- Name: mdl_question_dataset_items id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25136,7 +25136,7 @@ ALTER TABLE ONLY public.mdl_question_dataset_items ALTER COLUMN id SET DEFAULT n -- --- TOC entry 6517 (class 2604 OID 19918) +-- TOC entry 7061 (class 2604 OID 64024) -- Name: mdl_question_datasets id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25144,7 +25144,7 @@ ALTER TABLE ONLY public.mdl_question_datasets ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 6555 (class 2604 OID 20032) +-- TOC entry 7064 (class 2604 OID 64025) -- Name: mdl_question_ddwtos id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25152,7 +25152,7 @@ ALTER TABLE ONLY public.mdl_question_ddwtos ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 6570 (class 2604 OID 20069) +-- TOC entry 7071 (class 2604 OID 64026) -- Name: mdl_question_gapselect id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25160,7 +25160,7 @@ ALTER TABLE ONLY public.mdl_question_gapselect ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 5876 (class 2604 OID 17607) +-- TOC entry 7078 (class 2604 OID 64027) -- Name: mdl_question_hints id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25168,7 +25168,7 @@ ALTER TABLE ONLY public.mdl_question_hints ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 6588 (class 2604 OID 20120) +-- TOC entry 7080 (class 2604 OID 64028) -- Name: mdl_question_multianswer id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25176,7 +25176,7 @@ ALTER TABLE ONLY public.mdl_question_multianswer ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 6601 (class 2604 OID 20155) +-- TOC entry 7082 (class 2604 OID 64029) -- Name: mdl_question_numerical id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25184,7 +25184,7 @@ ALTER TABLE ONLY public.mdl_question_numerical ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 6605 (class 2604 OID 20168) +-- TOC entry 7086 (class 2604 OID 64030) -- Name: mdl_question_numerical_options id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25192,7 +25192,7 @@ ALTER TABLE ONLY public.mdl_question_numerical_options ALTER COLUMN id SET DEFAU -- --- TOC entry 6611 (class 2604 OID 20182) +-- TOC entry 7092 (class 2604 OID 64031) -- Name: mdl_question_numerical_units id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25200,7 +25200,7 @@ ALTER TABLE ONLY public.mdl_question_numerical_units ALTER COLUMN id SET DEFAULT -- --- TOC entry 5894 (class 2604 OID 17689) +-- TOC entry 7096 (class 2604 OID 64032) -- Name: mdl_question_response_analysis id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25208,7 +25208,7 @@ ALTER TABLE ONLY public.mdl_question_response_analysis ALTER COLUMN id SET DEFAU -- --- TOC entry 5898 (class 2604 OID 17703) +-- TOC entry 7100 (class 2604 OID 64033) -- Name: mdl_question_response_count id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25216,7 +25216,7 @@ ALTER TABLE ONLY public.mdl_question_response_count ALTER COLUMN id SET DEFAULT -- --- TOC entry 5890 (class 2604 OID 17675) +-- TOC entry 7101 (class 2604 OID 64034) -- Name: mdl_question_statistics id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25224,7 +25224,7 @@ ALTER TABLE ONLY public.mdl_question_statistics ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6626 (class 2604 OID 20225) +-- TOC entry 7105 (class 2604 OID 64035) -- Name: mdl_question_truefalse id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25232,7 +25232,7 @@ ALTER TABLE ONLY public.mdl_question_truefalse ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 5878 (class 2604 OID 17620) +-- TOC entry 7109 (class 2604 OID 64036) -- Name: mdl_question_usages id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25240,7 +25240,7 @@ ALTER TABLE ONLY public.mdl_question_usages ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 7214 (class 2604 OID 21572) +-- TOC entry 7151 (class 2604 OID 64037) -- Name: mdl_quiz id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25248,7 +25248,7 @@ ALTER TABLE ONLY public.mdl_quiz ALTER COLUMN id SET DEFAULT nextval('public.mdl -- --- TOC entry 7268 (class 2604 OID 21681) +-- TOC entry 7152 (class 2604 OID 64038) -- Name: mdl_quiz_attempts id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25256,7 +25256,7 @@ ALTER TABLE ONLY public.mdl_quiz_attempts ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 7261 (class 2604 OID 21653) +-- TOC entry 7165 (class 2604 OID 64039) -- Name: mdl_quiz_feedback id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25264,7 +25264,7 @@ ALTER TABLE ONLY public.mdl_quiz_feedback ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 7281 (class 2604 OID 21709) +-- TOC entry 7170 (class 2604 OID 64040) -- Name: mdl_quiz_grades id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25272,7 +25272,7 @@ ALTER TABLE ONLY public.mdl_quiz_grades ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 7266 (class 2604 OID 21669) +-- TOC entry 7175 (class 2604 OID 64041) -- Name: mdl_quiz_overrides id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25280,7 +25280,7 @@ ALTER TABLE ONLY public.mdl_quiz_overrides ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 7749 (class 2604 OID 23212) +-- TOC entry 7177 (class 2604 OID 64042) -- Name: mdl_quiz_overview_regrades id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25288,7 +25288,7 @@ ALTER TABLE ONLY public.mdl_quiz_overview_regrades ALTER COLUMN id SET DEFAULT n -- --- TOC entry 7286 (class 2604 OID 21723) +-- TOC entry 7178 (class 2604 OID 64043) -- Name: mdl_quiz_reports id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25296,7 +25296,7 @@ ALTER TABLE ONLY public.mdl_quiz_reports ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 7259 (class 2604 OID 21639) +-- TOC entry 7179 (class 2604 OID 64044) -- Name: mdl_quiz_sections id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25304,7 +25304,7 @@ ALTER TABLE ONLY public.mdl_quiz_sections ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 7287 (class 2604 OID 21735) +-- TOC entry 7181 (class 2604 OID 64045) -- Name: mdl_quiz_slot_tags id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25312,7 +25312,7 @@ ALTER TABLE ONLY public.mdl_quiz_slot_tags ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 7254 (class 2604 OID 21623) +-- TOC entry 7182 (class 2604 OID 64046) -- Name: mdl_quiz_slots id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25320,7 +25320,7 @@ ALTER TABLE ONLY public.mdl_quiz_slots ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 7750 (class 2604 OID 23221) +-- TOC entry 7187 (class 2604 OID 64047) -- Name: mdl_quiz_statistics id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25328,7 +25328,7 @@ ALTER TABLE ONLY public.mdl_quiz_statistics ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 7752 (class 2604 OID 23230) +-- TOC entry 7189 (class 2604 OID 64048) -- Name: mdl_quizaccess_seb_quizsettings id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25336,7 +25336,7 @@ ALTER TABLE ONLY public.mdl_quizaccess_seb_quizsettings ALTER COLUMN id SET DEFA -- --- TOC entry 7756 (class 2604 OID 23248) +-- TOC entry 7193 (class 2604 OID 64049) -- Name: mdl_quizaccess_seb_template id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25344,7 +25344,7 @@ ALTER TABLE ONLY public.mdl_quizaccess_seb_template ALTER COLUMN id SET DEFAULT -- --- TOC entry 6229 (class 2604 OID 18761) +-- TOC entry 7198 (class 2604 OID 64050) -- Name: mdl_rating id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25352,7 +25352,7 @@ ALTER TABLE ONLY public.mdl_rating ALTER COLUMN id SET DEFAULT nextval('public.m -- --- TOC entry 6237 (class 2604 OID 18789) +-- TOC entry 7201 (class 2604 OID 64051) -- Name: mdl_registration_hubs id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25360,7 +25360,7 @@ ALTER TABLE ONLY public.mdl_registration_hubs ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 6176 (class 2604 OID 18557) +-- TOC entry 7207 (class 2604 OID 64052) -- Name: mdl_repository id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25368,7 +25368,7 @@ ALTER TABLE ONLY public.mdl_repository ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 6184 (class 2604 OID 18582) +-- TOC entry 7211 (class 2604 OID 64053) -- Name: mdl_repository_instance_config id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25376,7 +25376,7 @@ ALTER TABLE ONLY public.mdl_repository_instance_config ALTER COLUMN id SET DEFAU -- --- TOC entry 6180 (class 2604 OID 18568) +-- TOC entry 7213 (class 2604 OID 64054) -- Name: mdl_repository_instances id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25384,7 +25384,7 @@ ALTER TABLE ONLY public.mdl_repository_instances ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 7629 (class 2604 OID 22722) +-- TOC entry 7217 (class 2604 OID 64055) -- Name: mdl_repository_onedrive_access id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25392,7 +25392,7 @@ ALTER TABLE ONLY public.mdl_repository_onedrive_access ALTER COLUMN id SET DEFAU -- --- TOC entry 7288 (class 2604 OID 21745) +-- TOC entry 7220 (class 2604 OID 64056) -- Name: mdl_resource id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25400,7 +25400,7 @@ ALTER TABLE ONLY public.mdl_resource ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 7298 (class 2604 OID 21766) +-- TOC entry 7230 (class 2604 OID 64057) -- Name: mdl_resource_old id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25408,7 +25408,7 @@ ALTER TABLE ONLY public.mdl_resource_old ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 5783 (class 2604 OID 17324) +-- TOC entry 7239 (class 2604 OID 64058) -- Name: mdl_role id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25416,7 +25416,7 @@ ALTER TABLE ONLY public.mdl_role ALTER COLUMN id SET DEFAULT nextval('public.mdl -- --- TOC entry 5801 (class 2604 OID 17378) +-- TOC entry 7244 (class 2604 OID 64059) -- Name: mdl_role_allow_assign id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25424,7 +25424,7 @@ ALTER TABLE ONLY public.mdl_role_allow_assign ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 5804 (class 2604 OID 17391) +-- TOC entry 7247 (class 2604 OID 64060) -- Name: mdl_role_allow_override id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25432,7 +25432,7 @@ ALTER TABLE ONLY public.mdl_role_allow_override ALTER COLUMN id SET DEFAULT next -- --- TOC entry 5807 (class 2604 OID 17404) +-- TOC entry 7250 (class 2604 OID 64061) -- Name: mdl_role_allow_switch id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25440,7 +25440,7 @@ ALTER TABLE ONLY public.mdl_role_allow_switch ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 5808 (class 2604 OID 17415) +-- TOC entry 7251 (class 2604 OID 64062) -- Name: mdl_role_allow_view id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25448,7 +25448,7 @@ ALTER TABLE ONLY public.mdl_role_allow_view ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 5809 (class 2604 OID 17426) +-- TOC entry 7252 (class 2604 OID 64063) -- Name: mdl_role_assignments id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25456,7 +25456,7 @@ ALTER TABLE ONLY public.mdl_role_assignments ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 5818 (class 2604 OID 17449) +-- TOC entry 7261 (class 2604 OID 64064) -- Name: mdl_role_capabilities id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25464,7 +25464,7 @@ ALTER TABLE ONLY public.mdl_role_capabilities ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 5829 (class 2604 OID 17482) +-- TOC entry 7268 (class 2604 OID 64065) -- Name: mdl_role_context_levels id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25472,7 +25472,7 @@ ALTER TABLE ONLY public.mdl_role_context_levels ALTER COLUMN id SET DEFAULT next -- --- TOC entry 5825 (class 2604 OID 17468) +-- TOC entry 7269 (class 2604 OID 64066) -- Name: mdl_role_names id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25480,7 +25480,7 @@ ALTER TABLE ONLY public.mdl_role_names ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 5712 (class 2604 OID 17149) +-- TOC entry 7273 (class 2604 OID 64067) -- Name: mdl_scale id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25488,7 +25488,7 @@ ALTER TABLE ONLY public.mdl_scale ALTER COLUMN id SET DEFAULT nextval('public.md -- --- TOC entry 5718 (class 2604 OID 17166) +-- TOC entry 7279 (class 2604 OID 64068) -- Name: mdl_scale_history id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25496,7 +25496,7 @@ ALTER TABLE ONLY public.mdl_scale_history ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 7307 (class 2604 OID 21787) +-- TOC entry 7320 (class 2604 OID 64069) -- Name: mdl_scorm id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25504,7 +25504,7 @@ ALTER TABLE ONLY public.mdl_scorm ALTER COLUMN id SET DEFAULT nextval('public.md -- --- TOC entry 7401 (class 2604 OID 21985) +-- TOC entry 7321 (class 2604 OID 64070) -- Name: mdl_scorm_aicc_session id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25512,7 +25512,7 @@ ALTER TABLE ONLY public.mdl_scorm_aicc_session ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 7344 (class 2604 OID 21835) +-- TOC entry 7328 (class 2604 OID 64071) -- Name: mdl_scorm_scoes id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25520,7 +25520,7 @@ ALTER TABLE ONLY public.mdl_scorm_scoes ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 7353 (class 2604 OID 21855) +-- TOC entry 7337 (class 2604 OID 64072) -- Name: mdl_scorm_scoes_data id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25528,7 +25528,7 @@ ALTER TABLE ONLY public.mdl_scorm_scoes_data ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 7356 (class 2604 OID 21869) +-- TOC entry 7340 (class 2604 OID 64073) -- Name: mdl_scorm_scoes_track id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25536,7 +25536,7 @@ ALTER TABLE ONLY public.mdl_scorm_scoes_track ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 7369 (class 2604 OID 21905) +-- TOC entry 7347 (class 2604 OID 64074) -- Name: mdl_scorm_seq_mapinfo id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25544,7 +25544,7 @@ ALTER TABLE ONLY public.mdl_scorm_seq_mapinfo ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 7363 (class 2604 OID 21890) +-- TOC entry 7355 (class 2604 OID 64075) -- Name: mdl_scorm_seq_objective id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25552,7 +25552,7 @@ ALTER TABLE ONLY public.mdl_scorm_seq_objective ALTER COLUMN id SET DEFAULT next -- --- TOC entry 7389 (class 2604 OID 21954) +-- TOC entry 7361 (class 2604 OID 64076) -- Name: mdl_scorm_seq_rolluprule id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25560,7 +25560,7 @@ ALTER TABLE ONLY public.mdl_scorm_seq_rolluprule ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 7396 (class 2604 OID 21970) +-- TOC entry 7368 (class 2604 OID 64077) -- Name: mdl_scorm_seq_rolluprulecond id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25568,7 +25568,7 @@ ALTER TABLE ONLY public.mdl_scorm_seq_rolluprulecond ALTER COLUMN id SET DEFAULT -- --- TOC entry 7382 (class 2604 OID 21937) +-- TOC entry 7373 (class 2604 OID 64078) -- Name: mdl_scorm_seq_rulecond id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25576,7 +25576,7 @@ ALTER TABLE ONLY public.mdl_scorm_seq_rulecond ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 7377 (class 2604 OID 21923) +-- TOC entry 7380 (class 2604 OID 64079) -- Name: mdl_scorm_seq_ruleconds id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25584,7 +25584,7 @@ ALTER TABLE ONLY public.mdl_scorm_seq_ruleconds ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6453 (class 2604 OID 19690) +-- TOC entry 7385 (class 2604 OID 64080) -- Name: mdl_search_index_requests id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25592,7 +25592,7 @@ ALTER TABLE ONLY public.mdl_search_index_requests ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 7634 (class 2604 OID 22747) +-- TOC entry 7388 (class 2604 OID 64081) -- Name: mdl_search_simpledb_index id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25600,7 +25600,7 @@ ALTER TABLE ONLY public.mdl_search_simpledb_index ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 5652 (class 2604 OID 17020) +-- TOC entry 7391 (class 2604 OID 64082) -- Name: mdl_sessions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25608,7 +25608,7 @@ ALTER TABLE ONLY public.mdl_sessions ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 5723 (class 2604 OID 17186) +-- TOC entry 7394 (class 2604 OID 64083) -- Name: mdl_stats_daily id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25616,7 +25616,7 @@ ALTER TABLE ONLY public.mdl_stats_daily ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 5737 (class 2604 OID 17220) +-- TOC entry 7401 (class 2604 OID 64084) -- Name: mdl_stats_monthly id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25624,7 +25624,7 @@ ALTER TABLE ONLY public.mdl_stats_monthly ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 5744 (class 2604 OID 17237) +-- TOC entry 7408 (class 2604 OID 64085) -- Name: mdl_stats_user_daily id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25632,7 +25632,7 @@ ALTER TABLE ONLY public.mdl_stats_user_daily ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 5760 (class 2604 OID 17275) +-- TOC entry 7416 (class 2604 OID 64086) -- Name: mdl_stats_user_monthly id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25640,7 +25640,7 @@ ALTER TABLE ONLY public.mdl_stats_user_monthly ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 5752 (class 2604 OID 17256) +-- TOC entry 7424 (class 2604 OID 64087) -- Name: mdl_stats_user_weekly id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25648,7 +25648,7 @@ ALTER TABLE ONLY public.mdl_stats_user_weekly ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 5730 (class 2604 OID 17203) +-- TOC entry 7432 (class 2604 OID 64088) -- Name: mdl_stats_weekly id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25656,7 +25656,7 @@ ALTER TABLE ONLY public.mdl_stats_weekly ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 7408 (class 2604 OID 22004) +-- TOC entry 7439 (class 2604 OID 64089) -- Name: mdl_survey id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25664,7 +25664,7 @@ ALTER TABLE ONLY public.mdl_survey ALTER COLUMN id SET DEFAULT nextval('public.m -- --- TOC entry 7429 (class 2604 OID 22059) +-- TOC entry 7449 (class 2604 OID 64090) -- Name: mdl_survey_analysis id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25672,7 +25672,7 @@ ALTER TABLE ONLY public.mdl_survey_analysis ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 7424 (class 2604 OID 22041) +-- TOC entry 7452 (class 2604 OID 64091) -- Name: mdl_survey_answers id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25680,7 +25680,7 @@ ALTER TABLE ONLY public.mdl_survey_answers ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 7418 (class 2604 OID 22025) +-- TOC entry 7457 (class 2604 OID 64092) -- Name: mdl_survey_questions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25688,7 +25688,7 @@ ALTER TABLE ONLY public.mdl_survey_questions ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 6081 (class 2604 OID 18204) +-- TOC entry 7463 (class 2604 OID 64093) -- Name: mdl_tag id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25696,7 +25696,7 @@ ALTER TABLE ONLY public.mdl_tag ALTER COLUMN id SET DEFAULT nextval('public.mdl_ -- --- TOC entry 6075 (class 2604 OID 18189) +-- TOC entry 7469 (class 2604 OID 64094) -- Name: mdl_tag_area id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25704,7 +25704,7 @@ ALTER TABLE ONLY public.mdl_tag_area ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 6071 (class 2604 OID 18175) +-- TOC entry 7475 (class 2604 OID 64095) -- Name: mdl_tag_coll id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25712,7 +25712,7 @@ ALTER TABLE ONLY public.mdl_tag_coll ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 6087 (class 2604 OID 18224) +-- TOC entry 7479 (class 2604 OID 64096) -- Name: mdl_tag_correlation id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25720,7 +25720,7 @@ ALTER TABLE ONLY public.mdl_tag_correlation ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 6088 (class 2604 OID 18236) +-- TOC entry 7480 (class 2604 OID 64097) -- Name: mdl_tag_instance id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25728,7 +25728,7 @@ ALTER TABLE ONLY public.mdl_tag_instance ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 6357 (class 2604 OID 19212) +-- TOC entry 7486 (class 2604 OID 64098) -- Name: mdl_task_adhoc id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25736,7 +25736,7 @@ ALTER TABLE ONLY public.mdl_task_adhoc ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 6361 (class 2604 OID 19228) +-- TOC entry 7490 (class 2604 OID 64099) -- Name: mdl_task_log id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25744,7 +25744,7 @@ ALTER TABLE ONLY public.mdl_task_log ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 6346 (class 2604 OID 19190) +-- TOC entry 7493 (class 2604 OID 64100) -- Name: mdl_task_scheduled id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25752,7 +25752,7 @@ ALTER TABLE ONLY public.mdl_task_scheduled ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 7637 (class 2604 OID 22766) +-- TOC entry 7504 (class 2604 OID 64101) -- Name: mdl_tool_cohortroles id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25760,7 +25760,7 @@ ALTER TABLE ONLY public.mdl_tool_cohortroles ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 7638 (class 2604 OID 22775) +-- TOC entry 7505 (class 2604 OID 64102) -- Name: mdl_tool_customlang id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25768,7 +25768,7 @@ ALTER TABLE ONLY public.mdl_tool_customlang ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 7643 (class 2604 OID 22792) +-- TOC entry 7510 (class 2604 OID 64103) -- Name: mdl_tool_customlang_components id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25776,7 +25776,7 @@ ALTER TABLE ONLY public.mdl_tool_customlang_components ALTER COLUMN id SET DEFAU -- --- TOC entry 7661 (class 2604 OID 22844) +-- TOC entry 7512 (class 2604 OID 64104) -- Name: mdl_tool_dataprivacy_category id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25784,7 +25784,7 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_category ALTER COLUMN id SET DEFAUL -- --- TOC entry 7665 (class 2604 OID 22878) +-- TOC entry 7514 (class 2604 OID 64105) -- Name: mdl_tool_dataprivacy_ctxexpired id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25792,7 +25792,7 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_ctxexpired ALTER COLUMN id SET DEFA -- --- TOC entry 7663 (class 2604 OID 22856) +-- TOC entry 7516 (class 2604 OID 64106) -- Name: mdl_tool_dataprivacy_ctxinstance id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25800,7 +25800,7 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_ctxinstance ALTER COLUMN id SET DEF -- --- TOC entry 7664 (class 2604 OID 22867) +-- TOC entry 7517 (class 2604 OID 64107) -- Name: mdl_tool_dataprivacy_ctxlevel id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25808,7 +25808,7 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_ctxlevel ALTER COLUMN id SET DEFAUL -- --- TOC entry 7658 (class 2604 OID 22831) +-- TOC entry 7518 (class 2604 OID 64108) -- Name: mdl_tool_dataprivacy_purpose id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25816,7 +25816,7 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_purpose ALTER COLUMN id SET DEFAULT -- --- TOC entry 7667 (class 2604 OID 22891) +-- TOC entry 7521 (class 2604 OID 64109) -- Name: mdl_tool_dataprivacy_purposerole id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25824,7 +25824,7 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_purposerole ALTER COLUMN id SET DEF -- --- TOC entry 7645 (class 2604 OID 22804) +-- TOC entry 7523 (class 2604 OID 64110) -- Name: mdl_tool_dataprivacy_request id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25832,7 +25832,7 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_request ALTER COLUMN id SET DEFAULT -- --- TOC entry 7677 (class 2604 OID 22944) +-- TOC entry 7536 (class 2604 OID 64111) -- Name: mdl_tool_monitor_events id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25840,7 +25840,7 @@ ALTER TABLE ONLY public.mdl_tool_monitor_events ALTER COLUMN id SET DEFAULT next -- --- TOC entry 7676 (class 2604 OID 22934) +-- TOC entry 7539 (class 2604 OID 64112) -- Name: mdl_tool_monitor_history id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25848,7 +25848,7 @@ ALTER TABLE ONLY public.mdl_tool_monitor_history ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 7669 (class 2604 OID 22906) +-- TOC entry 7540 (class 2604 OID 64113) -- Name: mdl_tool_monitor_rules id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25856,7 +25856,7 @@ ALTER TABLE ONLY public.mdl_tool_monitor_rules ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 7673 (class 2604 OID 22922) +-- TOC entry 7544 (class 2604 OID 64114) -- Name: mdl_tool_monitor_subscriptions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25864,7 +25864,7 @@ ALTER TABLE ONLY public.mdl_tool_monitor_subscriptions ALTER COLUMN id SET DEFAU -- --- TOC entry 7680 (class 2604 OID 22957) +-- TOC entry 7547 (class 2604 OID 64115) -- Name: mdl_tool_policy id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25872,7 +25872,7 @@ ALTER TABLE ONLY public.mdl_tool_policy ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 7690 (class 2604 OID 22987) +-- TOC entry 7549 (class 2604 OID 64116) -- Name: mdl_tool_policy_acceptances id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25880,7 +25880,7 @@ ALTER TABLE ONLY public.mdl_tool_policy_acceptances ALTER COLUMN id SET DEFAULT -- --- TOC entry 7682 (class 2604 OID 22967) +-- TOC entry 7551 (class 2604 OID 64117) -- Name: mdl_tool_policy_versions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25888,7 +25888,7 @@ ALTER TABLE ONLY public.mdl_tool_policy_versions ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 7694 (class 2604 OID 23014) +-- TOC entry 7559 (class 2604 OID 64118) -- Name: mdl_tool_recyclebin_category id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25896,7 +25896,7 @@ ALTER TABLE ONLY public.mdl_tool_recyclebin_category ALTER COLUMN id SET DEFAULT -- --- TOC entry 7692 (class 2604 OID 23003) +-- TOC entry 7562 (class 2604 OID 64119) -- Name: mdl_tool_recyclebin_course id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25904,7 +25904,7 @@ ALTER TABLE ONLY public.mdl_tool_recyclebin_course ALTER COLUMN id SET DEFAULT n -- --- TOC entry 7701 (class 2604 OID 23043) +-- TOC entry 7564 (class 2604 OID 64120) -- Name: mdl_tool_usertours_steps id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25912,7 +25912,7 @@ ALTER TABLE ONLY public.mdl_tool_usertours_steps ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 7697 (class 2604 OID 23029) +-- TOC entry 7566 (class 2604 OID 64121) -- Name: mdl_tool_usertours_tours id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25920,7 +25920,7 @@ ALTER TABLE ONLY public.mdl_tool_usertours_tours ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 5448 (class 2604 OID 16431) +-- TOC entry 7570 (class 2604 OID 64122) -- Name: mdl_upgrade_log id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25928,7 +25928,7 @@ ALTER TABLE ONLY public.mdl_upgrade_log ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 7432 (class 2604 OID 22074) +-- TOC entry 7572 (class 2604 OID 64123) -- Name: mdl_url id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25936,7 +25936,7 @@ ALTER TABLE ONLY public.mdl_url ALTER COLUMN id SET DEFAULT nextval('public.mdl_ -- --- TOC entry 5655 (class 2604 OID 17038) +-- TOC entry 7624 (class 2604 OID 64124) -- Name: mdl_user id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25944,7 +25944,7 @@ ALTER TABLE ONLY public.mdl_user ALTER COLUMN id SET DEFAULT nextval('public.mdl -- --- TOC entry 6332 (class 2604 OID 19145) +-- TOC entry 7625 (class 2604 OID 64125) -- Name: mdl_user_devices id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25952,7 +25952,7 @@ ALTER TABLE ONLY public.mdl_user_devices ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 5521 (class 2604 OID 16595) +-- TOC entry 7634 (class 2604 OID 64126) -- Name: mdl_user_enrolments id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25960,7 +25960,7 @@ ALTER TABLE ONLY public.mdl_user_enrolments ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 5842 (class 2604 OID 17514) +-- TOC entry 7641 (class 2604 OID 64127) -- Name: mdl_user_info_category id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25968,7 +25968,7 @@ ALTER TABLE ONLY public.mdl_user_info_category ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 5845 (class 2604 OID 17524) +-- TOC entry 7644 (class 2604 OID 64128) -- Name: mdl_user_info_data id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25976,7 +25976,7 @@ ALTER TABLE ONLY public.mdl_user_info_data ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 5830 (class 2604 OID 17492) +-- TOC entry 7648 (class 2604 OID 64129) -- Name: mdl_user_info_field id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25984,7 +25984,7 @@ ALTER TABLE ONLY public.mdl_user_info_field ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 5706 (class 2604 OID 17125) +-- TOC entry 7660 (class 2604 OID 64130) -- Name: mdl_user_lastaccess id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25992,7 +25992,7 @@ ALTER TABLE ONLY public.mdl_user_lastaccess ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 5710 (class 2604 OID 17139) +-- TOC entry 7664 (class 2604 OID 64131) -- Name: mdl_user_password_history id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26000,7 +26000,7 @@ ALTER TABLE ONLY public.mdl_user_password_history ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 6341 (class 2604 OID 19167) +-- TOC entry 7666 (class 2604 OID 64132) -- Name: mdl_user_password_resets id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26008,7 +26008,7 @@ ALTER TABLE ONLY public.mdl_user_password_resets ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 5702 (class 2604 OID 17110) +-- TOC entry 7669 (class 2604 OID 64133) -- Name: mdl_user_preferences id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26016,7 +26016,7 @@ ALTER TABLE ONLY public.mdl_user_preferences ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 6127 (class 2604 OID 18350) +-- TOC entry 7673 (class 2604 OID 64134) -- Name: mdl_user_private_key id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26024,7 +26024,7 @@ ALTER TABLE ONLY public.mdl_user_private_key ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 7438 (class 2604 OID 22091) +-- TOC entry 7676 (class 2604 OID 64135) -- Name: mdl_wiki id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26032,7 +26032,7 @@ ALTER TABLE ONLY public.mdl_wiki ALTER COLUMN id SET DEFAULT nextval('public.mdl -- --- TOC entry 7473 (class 2604 OID 22177) +-- TOC entry 7688 (class 2604 OID 64136) -- Name: mdl_wiki_links id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26040,7 +26040,7 @@ ALTER TABLE ONLY public.mdl_wiki_links ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 7477 (class 2604 OID 22190) +-- TOC entry 7692 (class 2604 OID 64137) -- Name: mdl_wiki_locks id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26048,7 +26048,7 @@ ALTER TABLE ONLY public.mdl_wiki_locks ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 7454 (class 2604 OID 22127) +-- TOC entry 7696 (class 2604 OID 64138) -- Name: mdl_wiki_pages id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26056,7 +26056,7 @@ ALTER TABLE ONLY public.mdl_wiki_pages ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 7450 (class 2604 OID 22114) +-- TOC entry 7705 (class 2604 OID 64139) -- Name: mdl_wiki_subwikis id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26064,7 +26064,7 @@ ALTER TABLE ONLY public.mdl_wiki_subwikis ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 7469 (class 2604 OID 22165) +-- TOC entry 7709 (class 2604 OID 64140) -- Name: mdl_wiki_synonyms id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26072,7 +26072,7 @@ ALTER TABLE ONLY public.mdl_wiki_synonyms ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 7463 (class 2604 OID 22148) +-- TOC entry 7713 (class 2604 OID 64141) -- Name: mdl_wiki_versions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26080,7 +26080,7 @@ ALTER TABLE ONLY public.mdl_wiki_versions ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 7481 (class 2604 OID 22201) +-- TOC entry 7747 (class 2604 OID 64142) -- Name: mdl_workshop id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26088,7 +26088,7 @@ ALTER TABLE ONLY public.mdl_workshop ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 7529 (class 2604 OID 22298) +-- TOC entry 7748 (class 2604 OID 64143) -- Name: mdl_workshop_aggregations id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26096,7 +26096,7 @@ ALTER TABLE ONLY public.mdl_workshop_aggregations ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 7519 (class 2604 OID 22263) +-- TOC entry 7749 (class 2604 OID 64144) -- Name: mdl_workshop_assessments id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26104,7 +26104,7 @@ ALTER TABLE ONLY public.mdl_workshop_assessments ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 7526 (class 2604 OID 22283) +-- TOC entry 7756 (class 2604 OID 64145) -- Name: mdl_workshop_grades id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26112,7 +26112,7 @@ ALTER TABLE ONLY public.mdl_workshop_grades ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 7510 (class 2604 OID 22241) +-- TOC entry 7759 (class 2604 OID 64146) -- Name: mdl_workshop_submissions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26120,7 +26120,7 @@ ALTER TABLE ONLY public.mdl_workshop_submissions ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 7780 (class 2604 OID 23355) +-- TOC entry 7768 (class 2604 OID 64147) -- Name: mdl_workshopallocation_scheduled id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26128,7 +26128,7 @@ ALTER TABLE ONLY public.mdl_workshopallocation_scheduled ALTER COLUMN id SET DEF -- --- TOC entry 7782 (class 2604 OID 23368) +-- TOC entry 7770 (class 2604 OID 64148) -- Name: mdl_workshopeval_best_settings id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26136,7 +26136,7 @@ ALTER TABLE ONLY public.mdl_workshopeval_best_settings ALTER COLUMN id SET DEFAU -- --- TOC entry 7761 (class 2604 OID 23264) +-- TOC entry 7772 (class 2604 OID 64149) -- Name: mdl_workshopform_accumulative id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26144,7 +26144,7 @@ ALTER TABLE ONLY public.mdl_workshopform_accumulative ALTER COLUMN id SET DEFAUL -- --- TOC entry 7765 (class 2604 OID 23279) +-- TOC entry 7776 (class 2604 OID 64150) -- Name: mdl_workshopform_comments id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26152,7 +26152,7 @@ ALTER TABLE ONLY public.mdl_workshopform_comments ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 7768 (class 2604 OID 23293) +-- TOC entry 7779 (class 2604 OID 64151) -- Name: mdl_workshopform_numerrors id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26160,7 +26160,7 @@ ALTER TABLE ONLY public.mdl_workshopform_numerrors ALTER COLUMN id SET DEFAULT n -- --- TOC entry 7772 (class 2604 OID 23308) +-- TOC entry 7783 (class 2604 OID 64152) -- Name: mdl_workshopform_numerrors_map id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26168,7 +26168,7 @@ ALTER TABLE ONLY public.mdl_workshopform_numerrors_map ALTER COLUMN id SET DEFAU -- --- TOC entry 7773 (class 2604 OID 23318) +-- TOC entry 7784 (class 2604 OID 64153) -- Name: mdl_workshopform_rubric id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26176,7 +26176,7 @@ ALTER TABLE ONLY public.mdl_workshopform_rubric ALTER COLUMN id SET DEFAULT next -- --- TOC entry 7778 (class 2604 OID 23345) +-- TOC entry 7787 (class 2604 OID 64154) -- Name: mdl_workshopform_rubric_config id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26184,7 +26184,7 @@ ALTER TABLE ONLY public.mdl_workshopform_rubric_config ALTER COLUMN id SET DEFAU -- --- TOC entry 7776 (class 2604 OID 23332) +-- TOC entry 7789 (class 2604 OID 64155) -- Name: mdl_workshopform_rubric_levels id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26192,8 +26192,8 @@ ALTER TABLE ONLY public.mdl_workshopform_rubric_levels ALTER COLUMN id SET DEFAU -- --- TOC entry 10078 (class 0 OID 19636) --- Dependencies: 593 +-- TOC entry 9670 (class 0 OID 58912) +-- Dependencies: 185 -- Data for Name: mdl_analytics_indicator_calc; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26203,7 +26203,7 @@ COPY public.mdl_analytics_indicator_calc (id, starttime, endtime, contextid, sam -- -- TOC entry 11388 (class 0 OID 0) --- Dependencies: 592 +-- Dependencies: 186 -- Name: mdl_analytics_indicator_calc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26211,8 +26211,8 @@ SELECT pg_catalog.setval('public.mdl_analytics_indicator_calc_id_seq', 1, false) -- --- TOC entry 10066 (class 0 OID 19545) --- Dependencies: 581 +-- TOC entry 9672 (class 0 OID 58922) +-- Dependencies: 187 -- Data for Name: mdl_analytics_models; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26227,7 +26227,7 @@ COPY public.mdl_analytics_models (id, enabled, trained, name, target, indicators -- -- TOC entry 11389 (class 0 OID 0) --- Dependencies: 580 +-- Dependencies: 188 -- Name: mdl_analytics_models_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26235,8 +26235,8 @@ SELECT pg_catalog.setval('public.mdl_analytics_models_id_seq', 5, true); -- --- TOC entry 10068 (class 0 OID 19560) --- Dependencies: 583 +-- TOC entry 9674 (class 0 OID 58933) +-- Dependencies: 189 -- Data for Name: mdl_analytics_models_log; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26246,7 +26246,7 @@ COPY public.mdl_analytics_models_log (id, modelid, version, evaluationmode, targ -- -- TOC entry 11390 (class 0 OID 0) --- Dependencies: 582 +-- Dependencies: 190 -- Name: mdl_analytics_models_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26254,8 +26254,8 @@ SELECT pg_catalog.setval('public.mdl_analytics_models_log_id_seq', 1, false); -- --- TOC entry 10074 (class 0 OID 19605) --- Dependencies: 589 +-- TOC entry 9676 (class 0 OID 58944) +-- Dependencies: 191 -- Data for Name: mdl_analytics_predict_samples; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26265,7 +26265,7 @@ COPY public.mdl_analytics_predict_samples (id, modelid, analysableid, timesplitt -- -- TOC entry 11391 (class 0 OID 0) --- Dependencies: 588 +-- Dependencies: 192 -- Name: mdl_analytics_predict_samples_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26273,8 +26273,8 @@ SELECT pg_catalog.setval('public.mdl_analytics_predict_samples_id_seq', 1, false -- --- TOC entry 10080 (class 0 OID 19651) --- Dependencies: 595 +-- TOC entry 9678 (class 0 OID 58955) +-- Dependencies: 193 -- Data for Name: mdl_analytics_prediction_actions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26284,7 +26284,7 @@ COPY public.mdl_analytics_prediction_actions (id, predictionid, userid, actionna -- -- TOC entry 11392 (class 0 OID 0) --- Dependencies: 594 +-- Dependencies: 194 -- Name: mdl_analytics_prediction_actions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26292,8 +26292,8 @@ SELECT pg_catalog.setval('public.mdl_analytics_prediction_actions_id_seq', 1, fa -- --- TOC entry 10070 (class 0 OID 19575) --- Dependencies: 585 +-- TOC entry 9680 (class 0 OID 58961) +-- Dependencies: 195 -- Data for Name: mdl_analytics_predictions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26303,7 +26303,7 @@ COPY public.mdl_analytics_predictions (id, modelid, contextid, sampleid, rangein -- -- TOC entry 11393 (class 0 OID 0) --- Dependencies: 584 +-- Dependencies: 196 -- Name: mdl_analytics_predictions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26311,8 +26311,8 @@ SELECT pg_catalog.setval('public.mdl_analytics_predictions_id_seq', 1, false); -- --- TOC entry 10072 (class 0 OID 19590) --- Dependencies: 587 +-- TOC entry 9682 (class 0 OID 58970) +-- Dependencies: 197 -- Data for Name: mdl_analytics_train_samples; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26322,7 +26322,7 @@ COPY public.mdl_analytics_train_samples (id, modelid, analysableid, timesplittin -- -- TOC entry 11394 (class 0 OID 0) --- Dependencies: 586 +-- Dependencies: 198 -- Name: mdl_analytics_train_samples_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26330,8 +26330,8 @@ SELECT pg_catalog.setval('public.mdl_analytics_train_samples_id_seq', 1, false); -- --- TOC entry 10084 (class 0 OID 19675) --- Dependencies: 599 +-- TOC entry 9684 (class 0 OID 58980) +-- Dependencies: 199 -- Data for Name: mdl_analytics_used_analysables; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26341,7 +26341,7 @@ COPY public.mdl_analytics_used_analysables (id, modelid, action, analysableid, f -- -- TOC entry 11395 (class 0 OID 0) --- Dependencies: 598 +-- Dependencies: 200 -- Name: mdl_analytics_used_analysables_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26349,8 +26349,8 @@ SELECT pg_catalog.setval('public.mdl_analytics_used_analysables_id_seq', 1, fals -- --- TOC entry 10076 (class 0 OID 19621) --- Dependencies: 591 +-- TOC entry 9686 (class 0 OID 58986) +-- Dependencies: 201 -- Data for Name: mdl_analytics_used_files; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26360,7 +26360,7 @@ COPY public.mdl_analytics_used_files (id, modelid, fileid, action, "time") FROM -- -- TOC entry 11396 (class 0 OID 0) --- Dependencies: 590 +-- Dependencies: 202 -- Name: mdl_analytics_used_files_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26368,8 +26368,8 @@ SELECT pg_catalog.setval('public.mdl_analytics_used_files_id_seq', 1, false); -- --- TOC entry 10156 (class 0 OID 20234) --- Dependencies: 671 +-- TOC entry 9688 (class 0 OID 58995) +-- Dependencies: 203 -- Data for Name: mdl_assign; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26378,8 +26378,8 @@ COPY public.mdl_assign (id, course, name, intro, introformat, alwaysshowdescript -- --- TOC entry 10160 (class 0 OID 20295) --- Dependencies: 675 +-- TOC entry 9689 (class 0 OID 59029) +-- Dependencies: 204 -- Data for Name: mdl_assign_grades; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26389,7 +26389,7 @@ COPY public.mdl_assign_grades (id, assignment, userid, timecreated, timemodified -- -- TOC entry 11397 (class 0 OID 0) --- Dependencies: 674 +-- Dependencies: 205 -- Name: mdl_assign_grades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26398,7 +26398,7 @@ SELECT pg_catalog.setval('public.mdl_assign_grades_id_seq', 1, false); -- -- TOC entry 11398 (class 0 OID 0) --- Dependencies: 670 +-- Dependencies: 206 -- Name: mdl_assign_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26406,8 +26406,8 @@ SELECT pg_catalog.setval('public.mdl_assign_id_seq', 1, false); -- --- TOC entry 10168 (class 0 OID 20362) --- Dependencies: 683 +-- TOC entry 9692 (class 0 OID 59043) +-- Dependencies: 207 -- Data for Name: mdl_assign_overrides; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26417,7 +26417,7 @@ COPY public.mdl_assign_overrides (id, assignid, groupid, userid, sortorder, allo -- -- TOC entry 11399 (class 0 OID 0) --- Dependencies: 682 +-- Dependencies: 208 -- Name: mdl_assign_overrides_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26425,8 +26425,8 @@ SELECT pg_catalog.setval('public.mdl_assign_overrides_id_seq', 1, false); -- --- TOC entry 10162 (class 0 OID 20314) --- Dependencies: 677 +-- TOC entry 9694 (class 0 OID 59049) +-- Dependencies: 209 -- Data for Name: mdl_assign_plugin_config; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26436,7 +26436,7 @@ COPY public.mdl_assign_plugin_config (id, assignment, plugin, subtype, name, val -- -- TOC entry 11400 (class 0 OID 0) --- Dependencies: 676 +-- Dependencies: 210 -- Name: mdl_assign_plugin_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26444,8 +26444,8 @@ SELECT pg_catalog.setval('public.mdl_assign_plugin_config_id_seq', 1, false); -- --- TOC entry 10158 (class 0 OID 20275) --- Dependencies: 673 +-- TOC entry 9696 (class 0 OID 59061) +-- Dependencies: 211 -- Data for Name: mdl_assign_submission; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26455,7 +26455,7 @@ COPY public.mdl_assign_submission (id, assignment, userid, timecreated, timemodi -- -- TOC entry 11401 (class 0 OID 0) --- Dependencies: 672 +-- Dependencies: 212 -- Name: mdl_assign_submission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26463,8 +26463,8 @@ SELECT pg_catalog.setval('public.mdl_assign_submission_id_seq', 1, false); -- --- TOC entry 10166 (class 0 OID 20345) --- Dependencies: 681 +-- TOC entry 9698 (class 0 OID 59073) +-- Dependencies: 213 -- Data for Name: mdl_assign_user_flags; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26474,7 +26474,7 @@ COPY public.mdl_assign_user_flags (id, userid, assignment, locked, mailed, exten -- -- TOC entry 11402 (class 0 OID 0) --- Dependencies: 680 +-- Dependencies: 214 -- Name: mdl_assign_user_flags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26482,8 +26482,8 @@ SELECT pg_catalog.setval('public.mdl_assign_user_flags_id_seq', 1, false); -- --- TOC entry 10164 (class 0 OID 20333) --- Dependencies: 679 +-- TOC entry 9700 (class 0 OID 59084) +-- Dependencies: 215 -- Data for Name: mdl_assign_user_mapping; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26493,7 +26493,7 @@ COPY public.mdl_assign_user_mapping (id, assignment, userid) FROM stdin; -- -- TOC entry 11403 (class 0 OID 0) --- Dependencies: 678 +-- Dependencies: 216 -- Name: mdl_assign_user_mapping_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26501,8 +26501,8 @@ SELECT pg_catalog.setval('public.mdl_assign_user_mapping_id_seq', 1, false); -- --- TOC entry 10482 (class 0 OID 23083) --- Dependencies: 997 +-- TOC entry 9702 (class 0 OID 59091) +-- Dependencies: 217 -- Data for Name: mdl_assignfeedback_comments; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26512,7 +26512,7 @@ COPY public.mdl_assignfeedback_comments (id, assignment, grade, commenttext, com -- -- TOC entry 11404 (class 0 OID 0) --- Dependencies: 996 +-- Dependencies: 218 -- Name: mdl_assignfeedback_comments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26520,8 +26520,8 @@ SELECT pg_catalog.setval('public.mdl_assignfeedback_comments_id_seq', 1, false); -- --- TOC entry 10486 (class 0 OID 23119) --- Dependencies: 1001 +-- TOC entry 9704 (class 0 OID 59102) +-- Dependencies: 219 -- Data for Name: mdl_assignfeedback_editpdf_annot; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26531,7 +26531,7 @@ COPY public.mdl_assignfeedback_editpdf_annot (id, gradeid, pageno, x, y, endx, e -- -- TOC entry 11405 (class 0 OID 0) --- Dependencies: 1000 +-- Dependencies: 220 -- Name: mdl_assignfeedback_editpdf_annot_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26539,8 +26539,8 @@ SELECT pg_catalog.setval('public.mdl_assignfeedback_editpdf_annot_id_seq', 1, fa -- --- TOC entry 10484 (class 0 OID 23099) --- Dependencies: 999 +-- TOC entry 9706 (class 0 OID 59119) +-- Dependencies: 221 -- Data for Name: mdl_assignfeedback_editpdf_cmnt; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26550,7 +26550,7 @@ COPY public.mdl_assignfeedback_editpdf_cmnt (id, gradeid, x, y, width, rawtext, -- -- TOC entry 11406 (class 0 OID 0) --- Dependencies: 998 +-- Dependencies: 222 -- Name: mdl_assignfeedback_editpdf_cmnt_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26558,8 +26558,8 @@ SELECT pg_catalog.setval('public.mdl_assignfeedback_editpdf_cmnt_id_seq', 1, fal -- --- TOC entry 10490 (class 0 OID 23156) --- Dependencies: 1005 +-- TOC entry 9708 (class 0 OID 59134) +-- Dependencies: 223 -- Data for Name: mdl_assignfeedback_editpdf_queue; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26569,7 +26569,7 @@ COPY public.mdl_assignfeedback_editpdf_queue (id, submissionid, submissionattemp -- -- TOC entry 11407 (class 0 OID 0) --- Dependencies: 1004 +-- Dependencies: 224 -- Name: mdl_assignfeedback_editpdf_queue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26577,8 +26577,8 @@ SELECT pg_catalog.setval('public.mdl_assignfeedback_editpdf_queue_id_seq', 1, fa -- --- TOC entry 10488 (class 0 OID 23141) --- Dependencies: 1003 +-- TOC entry 9710 (class 0 OID 59140) +-- Dependencies: 225 -- Data for Name: mdl_assignfeedback_editpdf_quick; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26588,7 +26588,7 @@ COPY public.mdl_assignfeedback_editpdf_quick (id, userid, rawtext, width, colour -- -- TOC entry 11408 (class 0 OID 0) --- Dependencies: 1002 +-- Dependencies: 226 -- Name: mdl_assignfeedback_editpdf_quick_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26596,8 +26596,8 @@ SELECT pg_catalog.setval('public.mdl_assignfeedback_editpdf_quick_id_seq', 1, fa -- --- TOC entry 10492 (class 0 OID 23166) --- Dependencies: 1007 +-- TOC entry 9712 (class 0 OID 59151) +-- Dependencies: 227 -- Data for Name: mdl_assignfeedback_editpdf_rot; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26607,7 +26607,7 @@ COPY public.mdl_assignfeedback_editpdf_rot (id, gradeid, pageno, pathnamehash, i -- -- TOC entry 11409 (class 0 OID 0) --- Dependencies: 1006 +-- Dependencies: 228 -- Name: mdl_assignfeedback_editpdf_rot_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26615,8 +26615,8 @@ SELECT pg_catalog.setval('public.mdl_assignfeedback_editpdf_rot_id_seq', 1, fals -- --- TOC entry 10494 (class 0 OID 23183) --- Dependencies: 1009 +-- TOC entry 9714 (class 0 OID 59163) +-- Dependencies: 229 -- Data for Name: mdl_assignfeedback_file; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26626,7 +26626,7 @@ COPY public.mdl_assignfeedback_file (id, assignment, grade, numfiles) FROM stdin -- -- TOC entry 11410 (class 0 OID 0) --- Dependencies: 1008 +-- Dependencies: 230 -- Name: mdl_assignfeedback_file_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26634,8 +26634,8 @@ SELECT pg_catalog.setval('public.mdl_assignfeedback_file_id_seq', 1, false); -- --- TOC entry 10170 (class 0 OID 20374) --- Dependencies: 685 +-- TOC entry 9716 (class 0 OID 59171) +-- Dependencies: 231 -- Data for Name: mdl_assignment; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26645,7 +26645,7 @@ COPY public.mdl_assignment (id, course, name, intro, introformat, assignmenttype -- -- TOC entry 11411 (class 0 OID 0) --- Dependencies: 684 +-- Dependencies: 232 -- Name: mdl_assignment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26653,8 +26653,8 @@ SELECT pg_catalog.setval('public.mdl_assignment_id_seq', 1, false); -- --- TOC entry 10172 (class 0 OID 20403) --- Dependencies: 687 +-- TOC entry 9718 (class 0 OID 59196) +-- Dependencies: 233 -- Data for Name: mdl_assignment_submissions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26664,7 +26664,7 @@ COPY public.mdl_assignment_submissions (id, assignment, userid, timecreated, tim -- -- TOC entry 11412 (class 0 OID 0) --- Dependencies: 686 +-- Dependencies: 234 -- Name: mdl_assignment_submissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26672,8 +26672,8 @@ SELECT pg_catalog.setval('public.mdl_assignment_submissions_id_seq', 1, false); -- --- TOC entry 10174 (class 0 OID 20428) --- Dependencies: 689 +-- TOC entry 9720 (class 0 OID 59214) +-- Dependencies: 235 -- Data for Name: mdl_assignment_upgrade; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26683,7 +26683,7 @@ COPY public.mdl_assignment_upgrade (id, oldcmid, oldinstance, newcmid, newinstan -- -- TOC entry 11413 (class 0 OID 0) --- Dependencies: 688 +-- Dependencies: 236 -- Name: mdl_assignment_upgrade_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26691,8 +26691,8 @@ SELECT pg_catalog.setval('public.mdl_assignment_upgrade_id_seq', 1, false); -- --- TOC entry 10478 (class 0 OID 23054) --- Dependencies: 993 +-- TOC entry 9722 (class 0 OID 59224) +-- Dependencies: 237 -- Data for Name: mdl_assignsubmission_file; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26702,7 +26702,7 @@ COPY public.mdl_assignsubmission_file (id, assignment, submission, numfiles) FRO -- -- TOC entry 11414 (class 0 OID 0) --- Dependencies: 992 +-- Dependencies: 238 -- Name: mdl_assignsubmission_file_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26710,8 +26710,8 @@ SELECT pg_catalog.setval('public.mdl_assignsubmission_file_id_seq', 1, false); -- --- TOC entry 10480 (class 0 OID 23067) --- Dependencies: 995 +-- TOC entry 9724 (class 0 OID 59232) +-- Dependencies: 239 -- Data for Name: mdl_assignsubmission_onlinetext; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26721,7 +26721,7 @@ COPY public.mdl_assignsubmission_onlinetext (id, assignment, submission, onlinet -- -- TOC entry 11415 (class 0 OID 0) --- Dependencies: 994 +-- Dependencies: 240 -- Name: mdl_assignsubmission_onlinetext_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26729,8 +26729,8 @@ SELECT pg_catalog.setval('public.mdl_assignsubmission_onlinetext_id_seq', 1, fal -- --- TOC entry 10372 (class 0 OID 22306) --- Dependencies: 887 +-- TOC entry 9726 (class 0 OID 59243) +-- Dependencies: 241 -- Data for Name: mdl_auth_oauth2_linked_login; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26740,7 +26740,7 @@ COPY public.mdl_auth_oauth2_linked_login (id, timecreated, timemodified, usermod -- -- TOC entry 11416 (class 0 OID 0) --- Dependencies: 886 +-- Dependencies: 242 -- Name: mdl_auth_oauth2_linked_login_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26748,8 +26748,8 @@ SELECT pg_catalog.setval('public.mdl_auth_oauth2_linked_login_id_seq', 1, false) -- --- TOC entry 9960 (class 0 OID 18802) --- Dependencies: 475 +-- TOC entry 9728 (class 0 OID 59253) +-- Dependencies: 243 -- Data for Name: mdl_backup_controllers; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26759,7 +26759,7 @@ COPY public.mdl_backup_controllers (id, backupid, operation, type, itemid, forma -- -- TOC entry 11417 (class 0 OID 0) --- Dependencies: 474 +-- Dependencies: 244 -- Name: mdl_backup_controllers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26767,8 +26767,8 @@ SELECT pg_catalog.setval('public.mdl_backup_controllers_id_seq', 1, false); -- --- TOC entry 9930 (class 0 OID 18591) --- Dependencies: 445 +-- TOC entry 9730 (class 0 OID 59267) +-- Dependencies: 245 -- Data for Name: mdl_backup_courses; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26778,7 +26778,7 @@ COPY public.mdl_backup_courses (id, courseid, laststarttime, lastendtime, lastst -- -- TOC entry 11418 (class 0 OID 0) --- Dependencies: 444 +-- Dependencies: 246 -- Name: mdl_backup_courses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26786,8 +26786,8 @@ SELECT pg_catalog.setval('public.mdl_backup_courses_id_seq', 1, false); -- --- TOC entry 9962 (class 0 OID 18823) --- Dependencies: 477 +-- TOC entry 9732 (class 0 OID 59277) +-- Dependencies: 247 -- Data for Name: mdl_backup_logs; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26797,7 +26797,7 @@ COPY public.mdl_backup_logs (id, backupid, loglevel, message, timecreated) FROM -- -- TOC entry 11419 (class 0 OID 0) --- Dependencies: 476 +-- Dependencies: 248 -- Name: mdl_backup_logs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26805,8 +26805,8 @@ SELECT pg_catalog.setval('public.mdl_backup_logs_id_seq', 1, false); -- --- TOC entry 9976 (class 0 OID 18929) --- Dependencies: 491 +-- TOC entry 9734 (class 0 OID 59286) +-- Dependencies: 249 -- Data for Name: mdl_badge; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26815,8 +26815,8 @@ COPY public.mdl_badge (id, name, description, timecreated, timemodified, usercre -- --- TOC entry 9998 (class 0 OID 19097) --- Dependencies: 513 +-- TOC entry 9735 (class 0 OID 59301) +-- Dependencies: 250 -- Data for Name: mdl_badge_alignment; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26826,7 +26826,7 @@ COPY public.mdl_badge_alignment (id, badgeid, targetname, targeturl, targetdescr -- -- TOC entry 11420 (class 0 OID 0) --- Dependencies: 512 +-- Dependencies: 251 -- Name: mdl_badge_alignment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26834,8 +26834,8 @@ SELECT pg_catalog.setval('public.mdl_badge_alignment_id_seq', 1, false); -- --- TOC entry 9990 (class 0 OID 19041) --- Dependencies: 505 +-- TOC entry 9737 (class 0 OID 59312) +-- Dependencies: 252 -- Data for Name: mdl_badge_backpack; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26845,7 +26845,7 @@ COPY public.mdl_badge_backpack (id, userid, email, backpackuid, autosync, passwo -- -- TOC entry 11421 (class 0 OID 0) --- Dependencies: 504 +-- Dependencies: 253 -- Name: mdl_badge_backpack_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26853,8 +26853,8 @@ SELECT pg_catalog.setval('public.mdl_badge_backpack_id_seq', 1, false); -- --- TOC entry 9992 (class 0 OID 19054) --- Dependencies: 507 +-- TOC entry 9739 (class 0 OID 59320) +-- Dependencies: 254 -- Data for Name: mdl_badge_backpack_oauth2; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26864,7 +26864,7 @@ COPY public.mdl_badge_backpack_oauth2 (id, usermodified, timecreated, timemodifi -- -- TOC entry 11422 (class 0 OID 0) --- Dependencies: 506 +-- Dependencies: 255 -- Name: mdl_badge_backpack_oauth2_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26872,8 +26872,8 @@ SELECT pg_catalog.setval('public.mdl_badge_backpack_oauth2_id_seq', 1, false); -- --- TOC entry 9978 (class 0 OID 18953) --- Dependencies: 493 +-- TOC entry 9741 (class 0 OID 59331) +-- Dependencies: 256 -- Data for Name: mdl_badge_criteria; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26883,7 +26883,7 @@ COPY public.mdl_badge_criteria (id, badgeid, criteriatype, method, description, -- -- TOC entry 11423 (class 0 OID 0) --- Dependencies: 492 +-- Dependencies: 257 -- Name: mdl_badge_criteria_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26891,8 +26891,8 @@ SELECT pg_catalog.setval('public.mdl_badge_criteria_id_seq', 1, false); -- --- TOC entry 9984 (class 0 OID 19001) --- Dependencies: 499 +-- TOC entry 9743 (class 0 OID 59342) +-- Dependencies: 258 -- Data for Name: mdl_badge_criteria_met; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26902,7 +26902,7 @@ COPY public.mdl_badge_criteria_met (id, issuedid, critid, userid, datemet) FROM -- -- TOC entry 11424 (class 0 OID 0) --- Dependencies: 498 +-- Dependencies: 259 -- Name: mdl_badge_criteria_met_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26910,8 +26910,8 @@ SELECT pg_catalog.setval('public.mdl_badge_criteria_met_id_seq', 1, false); -- --- TOC entry 9980 (class 0 OID 18970) --- Dependencies: 495 +-- TOC entry 9745 (class 0 OID 59347) +-- Dependencies: 260 -- Data for Name: mdl_badge_criteria_param; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26921,7 +26921,7 @@ COPY public.mdl_badge_criteria_param (id, critid, name, value) FROM stdin; -- -- TOC entry 11425 (class 0 OID 0) --- Dependencies: 494 +-- Dependencies: 261 -- Name: mdl_badge_criteria_param_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26929,8 +26929,8 @@ SELECT pg_catalog.setval('public.mdl_badge_criteria_param_id_seq', 1, false); -- --- TOC entry 9986 (class 0 OID 19012) --- Dependencies: 501 +-- TOC entry 9747 (class 0 OID 59356) +-- Dependencies: 262 -- Data for Name: mdl_badge_endorsement; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26940,7 +26940,7 @@ COPY public.mdl_badge_endorsement (id, badgeid, issuername, issuerurl, issuerema -- -- TOC entry 11426 (class 0 OID 0) --- Dependencies: 500 +-- Dependencies: 263 -- Name: mdl_badge_endorsement_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26948,8 +26948,8 @@ SELECT pg_catalog.setval('public.mdl_badge_endorsement_id_seq', 1, false); -- --- TOC entry 9994 (class 0 OID 19072) --- Dependencies: 509 +-- TOC entry 9749 (class 0 OID 59369) +-- Dependencies: 264 -- Data for Name: mdl_badge_external; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26958,8 +26958,8 @@ COPY public.mdl_badge_external (id, backpackid, collectionid, entityid, assertio -- --- TOC entry 10002 (class 0 OID 19124) --- Dependencies: 517 +-- TOC entry 9750 (class 0 OID 59375) +-- Dependencies: 265 -- Data for Name: mdl_badge_external_backpack; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26970,7 +26970,7 @@ COPY public.mdl_badge_external_backpack (id, backpackapiurl, backpackweburl, api -- -- TOC entry 11427 (class 0 OID 0) --- Dependencies: 516 +-- Dependencies: 266 -- Name: mdl_badge_external_backpack_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26979,7 +26979,7 @@ SELECT pg_catalog.setval('public.mdl_badge_external_backpack_id_seq', 1, true); -- -- TOC entry 11428 (class 0 OID 0) --- Dependencies: 508 +-- Dependencies: 267 -- Name: mdl_badge_external_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26987,8 +26987,8 @@ SELECT pg_catalog.setval('public.mdl_badge_external_id_seq', 1, false); -- --- TOC entry 9996 (class 0 OID 19084) --- Dependencies: 511 +-- TOC entry 9753 (class 0 OID 59389) +-- Dependencies: 268 -- Data for Name: mdl_badge_external_identifier; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26998,7 +26998,7 @@ COPY public.mdl_badge_external_identifier (id, sitebackpackid, internalid, exter -- -- TOC entry 11429 (class 0 OID 0) --- Dependencies: 510 +-- Dependencies: 269 -- Name: mdl_badge_external_identifier_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27007,7 +27007,7 @@ SELECT pg_catalog.setval('public.mdl_badge_external_identifier_id_seq', 1, false -- -- TOC entry 11430 (class 0 OID 0) --- Dependencies: 490 +-- Dependencies: 270 -- Name: mdl_badge_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27015,8 +27015,8 @@ SELECT pg_catalog.setval('public.mdl_badge_id_seq', 1, false); -- --- TOC entry 9982 (class 0 OID 18983) --- Dependencies: 497 +-- TOC entry 9756 (class 0 OID 59399) +-- Dependencies: 271 -- Data for Name: mdl_badge_issued; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27026,7 +27026,7 @@ COPY public.mdl_badge_issued (id, badgeid, userid, uniquehash, dateissued, datee -- -- TOC entry 11431 (class 0 OID 0) --- Dependencies: 496 +-- Dependencies: 272 -- Name: mdl_badge_issued_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27034,8 +27034,8 @@ SELECT pg_catalog.setval('public.mdl_badge_issued_id_seq', 1, false); -- --- TOC entry 9988 (class 0 OID 19029) --- Dependencies: 503 +-- TOC entry 9758 (class 0 OID 59411) +-- Dependencies: 273 -- Data for Name: mdl_badge_manual_award; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27045,7 +27045,7 @@ COPY public.mdl_badge_manual_award (id, badgeid, recipientid, issuerid, issuerro -- -- TOC entry 11432 (class 0 OID 0) --- Dependencies: 502 +-- Dependencies: 274 -- Name: mdl_badge_manual_award_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27053,8 +27053,8 @@ SELECT pg_catalog.setval('public.mdl_badge_manual_award_id_seq', 1, false); -- --- TOC entry 10000 (class 0 OID 19112) --- Dependencies: 515 +-- TOC entry 9760 (class 0 OID 59416) +-- Dependencies: 275 -- Data for Name: mdl_badge_related; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27064,7 +27064,7 @@ COPY public.mdl_badge_related (id, badgeid, relatedbadgeid) FROM stdin; -- -- TOC entry 11433 (class 0 OID 0) --- Dependencies: 514 +-- Dependencies: 276 -- Name: mdl_badge_related_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27072,8 +27072,8 @@ SELECT pg_catalog.setval('public.mdl_badge_related_id_seq', 1, false); -- --- TOC entry 9932 (class 0 OID 18605) --- Dependencies: 447 +-- TOC entry 9762 (class 0 OID 59422) +-- Dependencies: 277 -- Data for Name: mdl_block; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27126,7 +27126,7 @@ COPY public.mdl_block (id, name, cron, lastcron, visible) FROM stdin; -- -- TOC entry 11434 (class 0 OID 0) --- Dependencies: 446 +-- Dependencies: 278 -- Name: mdl_block_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27134,8 +27134,8 @@ SELECT pg_catalog.setval('public.mdl_block_id_seq', 43, true); -- --- TOC entry 9934 (class 0 OID 18618) --- Dependencies: 449 +-- TOC entry 9764 (class 0 OID 59431) +-- Dependencies: 279 -- Data for Name: mdl_block_instances; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27164,7 +27164,7 @@ COPY public.mdl_block_instances (id, blockname, parentcontextid, showinsubcontex -- -- TOC entry 11435 (class 0 OID 0) --- Dependencies: 448 +-- Dependencies: 280 -- Name: mdl_block_instances_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27172,8 +27172,8 @@ SELECT pg_catalog.setval('public.mdl_block_instances_id_seq', 19, true); -- --- TOC entry 9936 (class 0 OID 18636) --- Dependencies: 451 +-- TOC entry 9766 (class 0 OID 59443) +-- Dependencies: 281 -- Data for Name: mdl_block_positions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27183,7 +27183,7 @@ COPY public.mdl_block_positions (id, blockinstanceid, contextid, pagetype, subpa -- -- TOC entry 11436 (class 0 OID 0) --- Dependencies: 450 +-- Dependencies: 282 -- Name: mdl_block_positions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27191,8 +27191,8 @@ SELECT pg_catalog.setval('public.mdl_block_positions_id_seq', 1, false); -- --- TOC entry 10406 (class 0 OID 22555) --- Dependencies: 921 +-- TOC entry 9768 (class 0 OID 59451) +-- Dependencies: 283 -- Data for Name: mdl_block_recent_activity; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27202,7 +27202,7 @@ COPY public.mdl_block_recent_activity (id, courseid, cmid, timecreated, userid, -- -- TOC entry 11437 (class 0 OID 0) --- Dependencies: 920 +-- Dependencies: 284 -- Name: mdl_block_recent_activity_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27210,8 +27210,8 @@ SELECT pg_catalog.setval('public.mdl_block_recent_activity_id_seq', 1, false); -- --- TOC entry 10408 (class 0 OID 22564) --- Dependencies: 923 +-- TOC entry 9770 (class 0 OID 59456) +-- Dependencies: 285 -- Data for Name: mdl_block_recentlyaccesseditems; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27221,7 +27221,7 @@ COPY public.mdl_block_recentlyaccesseditems (id, courseid, cmid, userid, timeacc -- -- TOC entry 11438 (class 0 OID 0) --- Dependencies: 922 +-- Dependencies: 286 -- Name: mdl_block_recentlyaccesseditems_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27229,8 +27229,8 @@ SELECT pg_catalog.setval('public.mdl_block_recentlyaccesseditems_id_seq', 1, fal -- --- TOC entry 10410 (class 0 OID 22576) --- Dependencies: 925 +-- TOC entry 9772 (class 0 OID 59461) +-- Dependencies: 287 -- Data for Name: mdl_block_rss_client; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27240,7 +27240,7 @@ COPY public.mdl_block_rss_client (id, userid, title, preferredtitle, description -- -- TOC entry 11439 (class 0 OID 0) --- Dependencies: 924 +-- Dependencies: 288 -- Name: mdl_block_rss_client_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27248,8 +27248,8 @@ SELECT pg_catalog.setval('public.mdl_block_rss_client_id_seq', 1, false); -- --- TOC entry 9950 (class 0 OID 18733) --- Dependencies: 465 +-- TOC entry 9774 (class 0 OID 59475) +-- Dependencies: 289 -- Data for Name: mdl_blog_association; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27259,7 +27259,7 @@ COPY public.mdl_blog_association (id, contextid, blogid) FROM stdin; -- -- TOC entry 11440 (class 0 OID 0) --- Dependencies: 464 +-- Dependencies: 290 -- Name: mdl_blog_association_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27267,8 +27267,8 @@ SELECT pg_catalog.setval('public.mdl_blog_association_id_seq', 1, false); -- --- TOC entry 9952 (class 0 OID 18743) --- Dependencies: 467 +-- TOC entry 9776 (class 0 OID 59480) +-- Dependencies: 291 -- Data for Name: mdl_blog_external; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27278,7 +27278,7 @@ COPY public.mdl_blog_external (id, userid, name, description, url, filtertags, f -- -- TOC entry 11441 (class 0 OID 0) --- Dependencies: 466 +-- Dependencies: 292 -- Name: mdl_blog_external_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27286,8 +27286,8 @@ SELECT pg_catalog.setval('public.mdl_blog_external_id_seq', 1, false); -- --- TOC entry 10176 (class 0 OID 20443) --- Dependencies: 691 +-- TOC entry 9778 (class 0 OID 59491) +-- Dependencies: 293 -- Data for Name: mdl_book; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27296,8 +27296,8 @@ COPY public.mdl_book (id, course, name, intro, introformat, numbering, navstyle, -- --- TOC entry 10178 (class 0 OID 20463) --- Dependencies: 693 +-- TOC entry 9779 (class 0 OID 59506) +-- Dependencies: 294 -- Data for Name: mdl_book_chapters; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27307,7 +27307,7 @@ COPY public.mdl_book_chapters (id, bookid, pagenum, subchapter, title, content, -- -- TOC entry 11442 (class 0 OID 0) --- Dependencies: 692 +-- Dependencies: 295 -- Name: mdl_book_chapters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27316,7 +27316,7 @@ SELECT pg_catalog.setval('public.mdl_book_chapters_id_seq', 1, false); -- -- TOC entry 11443 (class 0 OID 0) --- Dependencies: 690 +-- Dependencies: 296 -- Name: mdl_book_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27324,8 +27324,8 @@ SELECT pg_catalog.setval('public.mdl_book_id_seq', 1, false); -- --- TOC entry 9711 (class 0 OID 16771) --- Dependencies: 226 +-- TOC entry 9782 (class 0 OID 59525) +-- Dependencies: 297 -- Data for Name: mdl_cache_filters; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27335,7 +27335,7 @@ COPY public.mdl_cache_filters (id, filter, version, md5key, rawtext, timemodifie -- -- TOC entry 11444 (class 0 OID 0) --- Dependencies: 225 +-- Dependencies: 298 -- Name: mdl_cache_filters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27343,8 +27343,8 @@ SELECT pg_catalog.setval('public.mdl_cache_filters_id_seq', 1, false); -- --- TOC entry 9900 (class 0 OID 18372) --- Dependencies: 415 +-- TOC entry 9784 (class 0 OID 59537) +-- Dependencies: 299 -- Data for Name: mdl_cache_flags; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27355,7 +27355,7 @@ COPY public.mdl_cache_flags (id, flagtype, name, timemodified, value, expiry) FR -- -- TOC entry 11445 (class 0 OID 0) --- Dependencies: 414 +-- Dependencies: 300 -- Name: mdl_cache_flags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27363,8 +27363,8 @@ SELECT pg_catalog.setval('public.mdl_cache_flags_id_seq', 1, true); -- --- TOC entry 9778 (class 0 OID 17361) --- Dependencies: 293 +-- TOC entry 9786 (class 0 OID 59548) +-- Dependencies: 301 -- Data for Name: mdl_capabilities; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28047,7 +28047,7 @@ COPY public.mdl_capabilities (id, name, captype, contextlevel, component, riskbi -- -- TOC entry 11446 (class 0 OID 0) --- Dependencies: 292 +-- Dependencies: 302 -- Name: mdl_capabilities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28055,8 +28055,8 @@ SELECT pg_catalog.setval('public.mdl_capabilities_id_seq', 673, true); -- --- TOC entry 10180 (class 0 OID 20483) --- Dependencies: 695 +-- TOC entry 9788 (class 0 OID 59558) +-- Dependencies: 303 -- Data for Name: mdl_chat; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28066,7 +28066,7 @@ COPY public.mdl_chat (id, course, name, intro, introformat, keepdays, studentlog -- -- TOC entry 11447 (class 0 OID 0) --- Dependencies: 694 +-- Dependencies: 304 -- Name: mdl_chat_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28074,8 +28074,8 @@ SELECT pg_catalog.setval('public.mdl_chat_id_seq', 1, false); -- --- TOC entry 10182 (class 0 OID 20503) --- Dependencies: 697 +-- TOC entry 9790 (class 0 OID 59574) +-- Dependencies: 305 -- Data for Name: mdl_chat_messages; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28084,8 +28084,8 @@ COPY public.mdl_chat_messages (id, chatid, userid, groupid, issystem, message, " -- --- TOC entry 10184 (class 0 OID 20523) --- Dependencies: 699 +-- TOC entry 9791 (class 0 OID 59585) +-- Dependencies: 306 -- Data for Name: mdl_chat_messages_current; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28095,7 +28095,7 @@ COPY public.mdl_chat_messages_current (id, chatid, userid, groupid, issystem, me -- -- TOC entry 11448 (class 0 OID 0) --- Dependencies: 698 +-- Dependencies: 307 -- Name: mdl_chat_messages_current_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28104,7 +28104,7 @@ SELECT pg_catalog.setval('public.mdl_chat_messages_current_id_seq', 1, false); -- -- TOC entry 11449 (class 0 OID 0) --- Dependencies: 696 +-- Dependencies: 308 -- Name: mdl_chat_messages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28112,8 +28112,8 @@ SELECT pg_catalog.setval('public.mdl_chat_messages_id_seq', 1, false); -- --- TOC entry 10186 (class 0 OID 20543) --- Dependencies: 701 +-- TOC entry 9794 (class 0 OID 59600) +-- Dependencies: 309 -- Data for Name: mdl_chat_users; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28123,7 +28123,7 @@ COPY public.mdl_chat_users (id, chatid, userid, groupid, version, ip, firstping, -- -- TOC entry 11450 (class 0 OID 0) --- Dependencies: 700 +-- Dependencies: 310 -- Name: mdl_chat_users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28131,8 +28131,8 @@ SELECT pg_catalog.setval('public.mdl_chat_users_id_seq', 1, false); -- --- TOC entry 10188 (class 0 OID 20566) --- Dependencies: 703 +-- TOC entry 9796 (class 0 OID 59616) +-- Dependencies: 311 -- Data for Name: mdl_choice; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28141,8 +28141,8 @@ COPY public.mdl_choice (id, course, name, intro, introformat, publish, showresul -- --- TOC entry 10192 (class 0 OID 20609) --- Dependencies: 707 +-- TOC entry 9797 (class 0 OID 59638) +-- Dependencies: 312 -- Data for Name: mdl_choice_answers; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28152,7 +28152,7 @@ COPY public.mdl_choice_answers (id, choiceid, userid, optionid, timemodified) FR -- -- TOC entry 11451 (class 0 OID 0) --- Dependencies: 706 +-- Dependencies: 313 -- Name: mdl_choice_answers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28161,7 +28161,7 @@ SELECT pg_catalog.setval('public.mdl_choice_answers_id_seq', 1, false); -- -- TOC entry 11452 (class 0 OID 0) --- Dependencies: 702 +-- Dependencies: 314 -- Name: mdl_choice_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28169,8 +28169,8 @@ SELECT pg_catalog.setval('public.mdl_choice_id_seq', 1, false); -- --- TOC entry 10190 (class 0 OID 20594) --- Dependencies: 705 +-- TOC entry 9800 (class 0 OID 59649) +-- Dependencies: 315 -- Data for Name: mdl_choice_options; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28180,7 +28180,7 @@ COPY public.mdl_choice_options (id, choiceid, text, maxanswers, timemodified) FR -- -- TOC entry 11453 (class 0 OID 0) --- Dependencies: 704 +-- Dependencies: 316 -- Name: mdl_choice_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28188,8 +28188,8 @@ SELECT pg_catalog.setval('public.mdl_choice_options_id_seq', 1, false); -- --- TOC entry 9892 (class 0 OID 18318) --- Dependencies: 407 +-- TOC entry 9802 (class 0 OID 59660) +-- Dependencies: 317 -- Data for Name: mdl_cohort; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28199,7 +28199,7 @@ COPY public.mdl_cohort (id, contextid, name, idnumber, description, descriptionf -- -- TOC entry 11454 (class 0 OID 0) --- Dependencies: 406 +-- Dependencies: 318 -- Name: mdl_cohort_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28207,8 +28207,8 @@ SELECT pg_catalog.setval('public.mdl_cohort_id_seq', 1, false); -- --- TOC entry 9894 (class 0 OID 18333) --- Dependencies: 409 +-- TOC entry 9804 (class 0 OID 59671) +-- Dependencies: 319 -- Data for Name: mdl_cohort_members; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28218,7 +28218,7 @@ COPY public.mdl_cohort_members (id, cohortid, userid, timeadded) FROM stdin; -- -- TOC entry 11455 (class 0 OID 0) --- Dependencies: 408 +-- Dependencies: 320 -- Name: mdl_cohort_members_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28226,8 +28226,8 @@ SELECT pg_catalog.setval('public.mdl_cohort_members_id_seq', 1, false); -- --- TOC entry 9938 (class 0 OID 18650) --- Dependencies: 453 +-- TOC entry 9806 (class 0 OID 59679) +-- Dependencies: 321 -- Data for Name: mdl_comments; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28237,7 +28237,7 @@ COPY public.mdl_comments (id, contextid, component, commentarea, itemid, content -- -- TOC entry 11456 (class 0 OID 0) --- Dependencies: 452 +-- Dependencies: 322 -- Name: mdl_comments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28245,8 +28245,8 @@ SELECT pg_catalog.setval('public.mdl_comments_id_seq', 1, false); -- --- TOC entry 10022 (class 0 OID 19276) --- Dependencies: 537 +-- TOC entry 9808 (class 0 OID 59689) +-- Dependencies: 323 -- Data for Name: mdl_competency; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28255,8 +28255,8 @@ COPY public.mdl_competency (id, shortname, description, descriptionformat, idnum -- --- TOC entry 10028 (class 0 OID 19317) --- Dependencies: 543 +-- TOC entry 9809 (class 0 OID 59699) +-- Dependencies: 324 -- Data for Name: mdl_competency_coursecomp; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28266,7 +28266,7 @@ COPY public.mdl_competency_coursecomp (id, courseid, competencyid, ruleoutcome, -- -- TOC entry 11457 (class 0 OID 0) --- Dependencies: 542 +-- Dependencies: 325 -- Name: mdl_competency_coursecomp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28274,8 +28274,8 @@ SELECT pg_catalog.setval('public.mdl_competency_coursecomp_id_seq', 1, false); -- --- TOC entry 10024 (class 0 OID 19293) --- Dependencies: 539 +-- TOC entry 9811 (class 0 OID 59704) +-- Dependencies: 326 -- Data for Name: mdl_competency_coursecompsetting; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28285,7 +28285,7 @@ COPY public.mdl_competency_coursecompsetting (id, courseid, pushratingstouserpla -- -- TOC entry 11458 (class 0 OID 0) --- Dependencies: 538 +-- Dependencies: 327 -- Name: mdl_competency_coursecompsetting_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28293,8 +28293,8 @@ SELECT pg_catalog.setval('public.mdl_competency_coursecompsetting_id_seq', 1, fa -- --- TOC entry 10048 (class 0 OID 19425) --- Dependencies: 563 +-- TOC entry 9813 (class 0 OID 59709) +-- Dependencies: 328 -- Data for Name: mdl_competency_evidence; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28304,7 +28304,7 @@ COPY public.mdl_competency_evidence (id, usercompetencyid, contextid, action, ac -- -- TOC entry 11459 (class 0 OID 0) --- Dependencies: 562 +-- Dependencies: 329 -- Name: mdl_competency_evidence_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28312,8 +28312,8 @@ SELECT pg_catalog.setval('public.mdl_competency_evidence_id_seq', 1, false); -- --- TOC entry 10026 (class 0 OID 19302) --- Dependencies: 541 +-- TOC entry 9815 (class 0 OID 59719) +-- Dependencies: 330 -- Data for Name: mdl_competency_framework; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28323,7 +28323,7 @@ COPY public.mdl_competency_framework (id, shortname, contextid, idnumber, descri -- -- TOC entry 11460 (class 0 OID 0) --- Dependencies: 540 +-- Dependencies: 331 -- Name: mdl_competency_framework_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28332,7 +28332,7 @@ SELECT pg_catalog.setval('public.mdl_competency_framework_id_seq', 1, false); -- -- TOC entry 11461 (class 0 OID 0) --- Dependencies: 536 +-- Dependencies: 332 -- Name: mdl_competency_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28340,8 +28340,8 @@ SELECT pg_catalog.setval('public.mdl_competency_id_seq', 1, false); -- --- TOC entry 10054 (class 0 OID 19462) --- Dependencies: 569 +-- TOC entry 9818 (class 0 OID 59732) +-- Dependencies: 333 -- Data for Name: mdl_competency_modulecomp; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28351,7 +28351,7 @@ COPY public.mdl_competency_modulecomp (id, cmid, timecreated, timemodified, user -- -- TOC entry 11462 (class 0 OID 0) --- Dependencies: 568 +-- Dependencies: 334 -- Name: mdl_competency_modulecomp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28359,8 +28359,8 @@ SELECT pg_catalog.setval('public.mdl_competency_modulecomp_id_seq', 1, false); -- --- TOC entry 10030 (class 0 OID 19329) --- Dependencies: 545 +-- TOC entry 9820 (class 0 OID 59737) +-- Dependencies: 335 -- Data for Name: mdl_competency_plan; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28370,7 +28370,7 @@ COPY public.mdl_competency_plan (id, name, description, descriptionformat, useri -- -- TOC entry 11463 (class 0 OID 0) --- Dependencies: 544 +-- Dependencies: 336 -- Name: mdl_competency_plan_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28378,8 +28378,8 @@ SELECT pg_catalog.setval('public.mdl_competency_plan_id_seq', 1, false); -- --- TOC entry 10046 (class 0 OID 19416) --- Dependencies: 561 +-- TOC entry 9822 (class 0 OID 59749) +-- Dependencies: 337 -- Data for Name: mdl_competency_plancomp; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28389,7 +28389,7 @@ COPY public.mdl_competency_plancomp (id, planid, competencyid, sortorder, timecr -- -- TOC entry 11464 (class 0 OID 0) --- Dependencies: 560 +-- Dependencies: 338 -- Name: mdl_competency_plancomp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28397,8 +28397,8 @@ SELECT pg_catalog.setval('public.mdl_competency_plancomp_id_seq', 1, false); -- --- TOC entry 10038 (class 0 OID 19380) --- Dependencies: 553 +-- TOC entry 9824 (class 0 OID 59754) +-- Dependencies: 339 -- Data for Name: mdl_competency_relatedcomp; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28408,7 +28408,7 @@ COPY public.mdl_competency_relatedcomp (id, competencyid, relatedcompetencyid, t -- -- TOC entry 11465 (class 0 OID 0) --- Dependencies: 552 +-- Dependencies: 340 -- Name: mdl_competency_relatedcomp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28416,8 +28416,8 @@ SELECT pg_catalog.setval('public.mdl_competency_relatedcomp_id_seq', 1, false); -- --- TOC entry 10032 (class 0 OID 19347) --- Dependencies: 547 +-- TOC entry 9826 (class 0 OID 59759) +-- Dependencies: 341 -- Data for Name: mdl_competency_template; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28427,7 +28427,7 @@ COPY public.mdl_competency_template (id, shortname, contextid, description, desc -- -- TOC entry 11466 (class 0 OID 0) --- Dependencies: 546 +-- Dependencies: 342 -- Name: mdl_competency_template_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28435,8 +28435,8 @@ SELECT pg_catalog.setval('public.mdl_competency_template_id_seq', 1, false); -- --- TOC entry 10036 (class 0 OID 19370) --- Dependencies: 551 +-- TOC entry 9828 (class 0 OID 59769) +-- Dependencies: 343 -- Data for Name: mdl_competency_templatecohort; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28446,7 +28446,7 @@ COPY public.mdl_competency_templatecohort (id, templateid, cohortid, timecreated -- -- TOC entry 11467 (class 0 OID 0) --- Dependencies: 550 +-- Dependencies: 344 -- Name: mdl_competency_templatecohort_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28454,8 +28454,8 @@ SELECT pg_catalog.setval('public.mdl_competency_templatecohort_id_seq', 1, false -- --- TOC entry 10034 (class 0 OID 19360) --- Dependencies: 549 +-- TOC entry 9830 (class 0 OID 59774) +-- Dependencies: 345 -- Data for Name: mdl_competency_templatecomp; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28465,7 +28465,7 @@ COPY public.mdl_competency_templatecomp (id, templateid, competencyid, timecreat -- -- TOC entry 11468 (class 0 OID 0) --- Dependencies: 548 +-- Dependencies: 346 -- Name: mdl_competency_templatecomp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28473,8 +28473,8 @@ SELECT pg_catalog.setval('public.mdl_competency_templatecomp_id_seq', 1, false); -- --- TOC entry 10040 (class 0 OID 19388) --- Dependencies: 555 +-- TOC entry 9832 (class 0 OID 59779) +-- Dependencies: 347 -- Data for Name: mdl_competency_usercomp; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28484,7 +28484,7 @@ COPY public.mdl_competency_usercomp (id, userid, competencyid, status, revieweri -- -- TOC entry 11469 (class 0 OID 0) --- Dependencies: 554 +-- Dependencies: 348 -- Name: mdl_competency_usercomp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28492,8 +28492,8 @@ SELECT pg_catalog.setval('public.mdl_competency_usercomp_id_seq', 1, false); -- --- TOC entry 10042 (class 0 OID 19398) --- Dependencies: 557 +-- TOC entry 9834 (class 0 OID 59785) +-- Dependencies: 349 -- Data for Name: mdl_competency_usercompcourse; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28503,7 +28503,7 @@ COPY public.mdl_competency_usercompcourse (id, userid, courseid, competencyid, p -- -- TOC entry 11470 (class 0 OID 0) --- Dependencies: 556 +-- Dependencies: 350 -- Name: mdl_competency_usercompcourse_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28511,8 +28511,8 @@ SELECT pg_catalog.setval('public.mdl_competency_usercompcourse_id_seq', 1, false -- --- TOC entry 10044 (class 0 OID 19407) --- Dependencies: 559 +-- TOC entry 9836 (class 0 OID 59790) +-- Dependencies: 351 -- Data for Name: mdl_competency_usercompplan; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28522,7 +28522,7 @@ COPY public.mdl_competency_usercompplan (id, userid, competencyid, planid, profi -- -- TOC entry 11471 (class 0 OID 0) --- Dependencies: 558 +-- Dependencies: 352 -- Name: mdl_competency_usercompplan_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28530,8 +28530,8 @@ SELECT pg_catalog.setval('public.mdl_competency_usercompplan_id_seq', 1, false); -- --- TOC entry 10050 (class 0 OID 19439) --- Dependencies: 565 +-- TOC entry 9838 (class 0 OID 59795) +-- Dependencies: 353 -- Data for Name: mdl_competency_userevidence; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28541,7 +28541,7 @@ COPY public.mdl_competency_userevidence (id, userid, name, description, descript -- -- TOC entry 11472 (class 0 OID 0) --- Dependencies: 564 +-- Dependencies: 354 -- Name: mdl_competency_userevidence_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28549,8 +28549,8 @@ SELECT pg_catalog.setval('public.mdl_competency_userevidence_id_seq', 1, false); -- --- TOC entry 10052 (class 0 OID 19452) --- Dependencies: 567 +-- TOC entry 9840 (class 0 OID 59804) +-- Dependencies: 355 -- Data for Name: mdl_competency_userevidencecomp; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28560,7 +28560,7 @@ COPY public.mdl_competency_userevidencecomp (id, userevidenceid, competencyid, t -- -- TOC entry 11473 (class 0 OID 0) --- Dependencies: 566 +-- Dependencies: 356 -- Name: mdl_competency_userevidencecomp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28568,8 +28568,8 @@ SELECT pg_catalog.setval('public.mdl_competency_userevidencecomp_id_seq', 1, fal -- --- TOC entry 9671 (class 0 OID 16387) --- Dependencies: 186 +-- TOC entry 9842 (class 0 OID 59809) +-- Dependencies: 357 -- Data for Name: mdl_config; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28694,7 +28694,6 @@ COPY public.mdl_config (id, name, value) FROM stdin; 13 filterall 0 24 themerev 1609808510 2 rolesactive 1 -40 enablewebservices 0 124 grade_report_showanalysisicon 1 125 grade_report_showuserimage 1 126 grade_report_showactivityicons 1 @@ -29073,26 +29072,28 @@ COPY public.mdl_config (id, name, value) FROM stdin; 501 messageinbound_hostssl ssl 502 messageinbound_hostuser 503 messageinbound_hostpass -504 enablemobilewebservice 0 505 mobilecssurl 506 timezone America/Los_Angeles 507 registerauth 508 noreplyaddress noreply@email.com +40 enablewebservices 1 +509 webserviceprotocols rest +504 enablemobilewebservice 1 \. -- -- TOC entry 11474 (class 0 OID 0) --- Dependencies: 185 +-- Dependencies: 358 -- Name: mdl_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_config_id_seq', 508, true); +SELECT pg_catalog.setval('public.mdl_config_id_seq', 509, true); -- --- TOC entry 9675 (class 0 OID 16414) --- Dependencies: 190 +-- TOC entry 9844 (class 0 OID 59818) +-- Dependencies: 359 -- Data for Name: mdl_config_log; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -30697,21 +30698,22 @@ COPY public.mdl_config_log (id, userid, timemodified, plugin, name, value, oldva 1598 2 1609884709 \N timezone America/Los_Angeles \N 1599 2 1609884709 \N registerauth \N 1600 2 1609884719 \N noreplyaddress noreply@email.com \N +1601 2 1609892624 \N enablemobilewebservice 1 0 \. -- -- TOC entry 11475 (class 0 OID 0) --- Dependencies: 189 +-- Dependencies: 360 -- Name: mdl_config_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_config_log_id_seq', 1600, true); +SELECT pg_catalog.setval('public.mdl_config_log_id_seq', 1601, true); -- --- TOC entry 9673 (class 0 OID 16400) --- Dependencies: 188 +-- TOC entry 9846 (class 0 OID 59827) +-- Dependencies: 361 -- Data for Name: mdl_config_plugins; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -31017,6 +31019,7 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 322 message airnotifier_provider_mod_forum_posts_permitted permitted 325 message airnotifier_provider_mod_forum_digests_permitted permitted 326 message airnotifier_provider_mod_quiz_submission_permitted permitted +1140 quiz shuffleanswers_adv 327 message airnotifier_provider_mod_quiz_confirmation_permitted permitted 330 message airnotifier_provider_mod_quiz_attempt_overdue_permitted permitted 333 message airnotifier_provider_mod_feedback_submission_permitted permitted @@ -31167,6 +31170,7 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 472 message jabber_provider_moodle_asyncbackupnotification_permitted permitted 473 message jabber_provider_moodle_gradenotifications_permitted permitted 474 message jabber_provider_mod_assign_assign_notification_permitted permitted +1578 auth_shibboleth logout_handler 475 message jabber_provider_enrol_flatfile_flatfile_enrolment_permitted permitted 476 message_popup version 2020061500 478 message popup_provider_enrol_manual_expiry_notification_permitted permitted @@ -31256,6 +31260,7 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 570 filter_data version 2020061500 572 filter_displayh5p version 2020061500 574 filter_emailprotect version 2020061500 +1676 enrol_database dbtype 575 filter_emoticon version 2020061500 577 filter_glossary version 2020061500 579 filter_mathjaxloader version 2020061500 @@ -31777,7 +31782,6 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 1137 quiz navmethod free 1138 quiz navmethod_adv 1 1139 quiz shuffleanswers 1 -1140 quiz shuffleanswers_adv 1141 quiz preferredbehaviour deferredfeedback 1142 quiz canredoquestions 0 1143 quiz canredoquestions_adv 1 @@ -32216,7 +32220,6 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 1575 auth_shibboleth convert_data 1576 auth_shibboleth alt_login off 1577 auth_shibboleth organization_selection urn:mace:organization1:providerID, Example Organization 1\n https://another.idp-id.com/shibboleth, Other Example Organization, /Shibboleth.sso/DS/SWITCHaai\n urn:mace:organization2:providerID, Example Organization 2, /Shibboleth.sso/WAYF/SWITCHaai -1578 auth_shibboleth logout_handler 1579 auth_shibboleth logout_return_url 1580 auth_shibboleth login_name Shibboleth Login 1581 auth_shibboleth auth_logo @@ -32314,7 +32317,6 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 1673 enrol_meta syncall 1 1674 enrol_meta unenrolaction 3 1675 enrol_meta coursesort sortorder -1676 enrol_database dbtype 1677 enrol_database dbhost localhost 1678 enrol_database dbuser 1679 enrol_database dbpass @@ -32524,7 +32526,7 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; -- -- TOC entry 11476 (class 0 OID 0) --- Dependencies: 187 +-- Dependencies: 362 -- Name: mdl_config_plugins_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32532,8 +32534,8 @@ SELECT pg_catalog.setval('public.mdl_config_plugins_id_seq', 1881, true); -- --- TOC entry 10106 (class 0 OID 19829) --- Dependencies: 621 +-- TOC entry 9848 (class 0 OID 59837) +-- Dependencies: 363 -- Data for Name: mdl_contentbank_content; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32543,7 +32545,7 @@ COPY public.mdl_contentbank_content (id, name, contenttype, contextid, instancei -- -- TOC entry 11477 (class 0 OID 0) --- Dependencies: 620 +-- Dependencies: 364 -- Name: mdl_contentbank_content_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32551,8 +32553,8 @@ SELECT pg_catalog.setval('public.mdl_contentbank_content_id_seq', 1, false); -- --- TOC entry 9775 (class 0 OID 17338) --- Dependencies: 290 +-- TOC entry 9850 (class 0 OID 59849) +-- Dependencies: 365 -- Data for Name: mdl_context; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32586,7 +32588,7 @@ COPY public.mdl_context (id, contextlevel, instanceid, path, depth, locked) FROM -- -- TOC entry 11478 (class 0 OID 0) --- Dependencies: 289 +-- Dependencies: 366 -- Name: mdl_context_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32594,8 +32596,8 @@ SELECT pg_catalog.setval('public.mdl_context_id_seq', 24, true); -- --- TOC entry 9776 (class 0 OID 17352) --- Dependencies: 291 +-- TOC entry 9852 (class 0 OID 59858) +-- Dependencies: 367 -- Data for Name: mdl_context_temp; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32604,8 +32606,8 @@ COPY public.mdl_context_temp (id, path, depth, locked) FROM stdin; -- --- TOC entry 9679 (class 0 OID 16443) --- Dependencies: 194 +-- TOC entry 9853 (class 0 OID 59863) +-- Dependencies: 368 -- Data for Name: mdl_course; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32615,8 +32617,8 @@ COPY public.mdl_course (id, category, sortorder, fullname, shortname, idnumber, -- --- TOC entry 9681 (class 0 OID 16488) --- Dependencies: 196 +-- TOC entry 9854 (class 0 OID 59899) +-- Dependencies: 369 -- Data for Name: mdl_course_categories; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32627,7 +32629,7 @@ COPY public.mdl_course_categories (id, name, idnumber, description, descriptionf -- -- TOC entry 11479 (class 0 OID 0) --- Dependencies: 195 +-- Dependencies: 370 -- Name: mdl_course_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32635,8 +32637,8 @@ SELECT pg_catalog.setval('public.mdl_course_categories_id_seq', 1, true); -- --- TOC entry 9683 (class 0 OID 16510) --- Dependencies: 198 +-- TOC entry 9856 (class 0 OID 59917) +-- Dependencies: 371 -- Data for Name: mdl_course_completion_aggr_methd; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32646,7 +32648,7 @@ COPY public.mdl_course_completion_aggr_methd (id, course, criteriatype, method, -- -- TOC entry 11480 (class 0 OID 0) --- Dependencies: 197 +-- Dependencies: 372 -- Name: mdl_course_completion_aggr_methd_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32654,8 +32656,8 @@ SELECT pg_catalog.setval('public.mdl_course_completion_aggr_methd_id_seq', 1, fa -- --- TOC entry 9687 (class 0 OID 16534) --- Dependencies: 202 +-- TOC entry 9858 (class 0 OID 59924) +-- Dependencies: 373 -- Data for Name: mdl_course_completion_crit_compl; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32665,7 +32667,7 @@ COPY public.mdl_course_completion_crit_compl (id, userid, course, criteriaid, gr -- -- TOC entry 11481 (class 0 OID 0) --- Dependencies: 201 +-- Dependencies: 374 -- Name: mdl_course_completion_crit_compl_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32673,8 +32675,8 @@ SELECT pg_catalog.setval('public.mdl_course_completion_crit_compl_id_seq', 1, fa -- --- TOC entry 9685 (class 0 OID 16523) --- Dependencies: 200 +-- TOC entry 9860 (class 0 OID 59932) +-- Dependencies: 375 -- Data for Name: mdl_course_completion_criteria; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32684,7 +32686,7 @@ COPY public.mdl_course_completion_criteria (id, course, criteriatype, module, mo -- -- TOC entry 11482 (class 0 OID 0) --- Dependencies: 199 +-- Dependencies: 376 -- Name: mdl_course_completion_criteria_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32692,8 +32694,8 @@ SELECT pg_catalog.setval('public.mdl_course_completion_criteria_id_seq', 1, fals -- --- TOC entry 10064 (class 0 OID 19527) --- Dependencies: 579 +-- TOC entry 9862 (class 0 OID 59939) +-- Dependencies: 377 -- Data for Name: mdl_course_completion_defaults; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32703,7 +32705,7 @@ COPY public.mdl_course_completion_defaults (id, course, module, completion, comp -- -- TOC entry 11483 (class 0 OID 0) --- Dependencies: 578 +-- Dependencies: 378 -- Name: mdl_course_completion_defaults_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32711,8 +32713,8 @@ SELECT pg_catalog.setval('public.mdl_course_completion_defaults_id_seq', 1, fals -- --- TOC entry 9689 (class 0 OID 16550) --- Dependencies: 204 +-- TOC entry 9864 (class 0 OID 59951) +-- Dependencies: 379 -- Data for Name: mdl_course_completions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32722,7 +32724,7 @@ COPY public.mdl_course_completions (id, userid, course, timeenrolled, timestarte -- -- TOC entry 11484 (class 0 OID 0) --- Dependencies: 203 +-- Dependencies: 380 -- Name: mdl_course_completions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32730,8 +32732,8 @@ SELECT pg_catalog.setval('public.mdl_course_completions_id_seq', 1, false); -- --- TOC entry 9703 (class 0 OID 16689) --- Dependencies: 218 +-- TOC entry 9866 (class 0 OID 59961) +-- Dependencies: 381 -- Data for Name: mdl_course_format_options; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32742,7 +32744,7 @@ COPY public.mdl_course_format_options (id, courseid, format, sectionid, name, va -- -- TOC entry 11485 (class 0 OID 0) --- Dependencies: 217 +-- Dependencies: 382 -- Name: mdl_course_format_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32751,7 +32753,7 @@ SELECT pg_catalog.setval('public.mdl_course_format_options_id_seq', 1, true); -- -- TOC entry 11486 (class 0 OID 0) --- Dependencies: 193 +-- Dependencies: 383 -- Name: mdl_course_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32759,8 +32761,8 @@ SELECT pg_catalog.setval('public.mdl_course_id_seq', 2, false); -- --- TOC entry 9695 (class 0 OID 16610) --- Dependencies: 210 +-- TOC entry 9869 (class 0 OID 59974) +-- Dependencies: 384 -- Data for Name: mdl_course_modules; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32769,8 +32771,8 @@ COPY public.mdl_course_modules (id, course, module, instance, section, idnumber, -- --- TOC entry 9697 (class 0 OID 16644) --- Dependencies: 212 +-- TOC entry 9870 (class 0 OID 59997) +-- Dependencies: 385 -- Data for Name: mdl_course_modules_completion; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32780,7 +32782,7 @@ COPY public.mdl_course_modules_completion (id, coursemoduleid, userid, completio -- -- TOC entry 11487 (class 0 OID 0) --- Dependencies: 211 +-- Dependencies: 386 -- Name: mdl_course_modules_completion_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32789,7 +32791,7 @@ SELECT pg_catalog.setval('public.mdl_course_modules_completion_id_seq', 1, false -- -- TOC entry 11488 (class 0 OID 0) --- Dependencies: 209 +-- Dependencies: 387 -- Name: mdl_course_modules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32797,8 +32799,8 @@ SELECT pg_catalog.setval('public.mdl_course_modules_id_seq', 1, false); -- --- TOC entry 9966 (class 0 OID 18855) --- Dependencies: 481 +-- TOC entry 9873 (class 0 OID 60004) +-- Dependencies: 388 -- Data for Name: mdl_course_published; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32808,7 +32810,7 @@ COPY public.mdl_course_published (id, huburl, courseid, timepublished, enrollabl -- -- TOC entry 11489 (class 0 OID 0) --- Dependencies: 480 +-- Dependencies: 389 -- Name: mdl_course_published_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32816,8 +32818,8 @@ SELECT pg_catalog.setval('public.mdl_course_published_id_seq', 1, false); -- --- TOC entry 9701 (class 0 OID 16671) --- Dependencies: 216 +-- TOC entry 9875 (class 0 OID 60011) +-- Dependencies: 390 -- Data for Name: mdl_course_request; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32827,7 +32829,7 @@ COPY public.mdl_course_request (id, fullname, shortname, summary, summaryformat, -- -- TOC entry 11490 (class 0 OID 0) --- Dependencies: 215 +-- Dependencies: 391 -- Name: mdl_course_request_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32835,8 +32837,8 @@ SELECT pg_catalog.setval('public.mdl_course_request_id_seq', 1, false); -- --- TOC entry 9699 (class 0 OID 16654) --- Dependencies: 214 +-- TOC entry 9877 (class 0 OID 60025) +-- Dependencies: 392 -- Data for Name: mdl_course_sections; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32846,7 +32848,7 @@ COPY public.mdl_course_sections (id, course, section, name, summary, summaryform -- -- TOC entry 11491 (class 0 OID 0) --- Dependencies: 213 +-- Dependencies: 393 -- Name: mdl_course_sections_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32854,8 +32856,8 @@ SELECT pg_catalog.setval('public.mdl_course_sections_id_seq', 1, false); -- --- TOC entry 10090 (class 0 OID 19715) --- Dependencies: 605 +-- TOC entry 9879 (class 0 OID 60038) +-- Dependencies: 394 -- Data for Name: mdl_customfield_category; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32865,7 +32867,7 @@ COPY public.mdl_customfield_category (id, name, description, descriptionformat, -- -- TOC entry 11492 (class 0 OID 0) --- Dependencies: 604 +-- Dependencies: 395 -- Name: mdl_customfield_category_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32873,8 +32875,8 @@ SELECT pg_catalog.setval('public.mdl_customfield_category_id_seq', 1, false); -- --- TOC entry 10094 (class 0 OID 19748) --- Dependencies: 609 +-- TOC entry 9881 (class 0 OID 60050) +-- Dependencies: 396 -- Data for Name: mdl_customfield_data; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32884,7 +32886,7 @@ COPY public.mdl_customfield_data (id, fieldid, instanceid, intvalue, decvalue, s -- -- TOC entry 11493 (class 0 OID 0) --- Dependencies: 608 +-- Dependencies: 397 -- Name: mdl_customfield_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32892,8 +32894,8 @@ SELECT pg_catalog.setval('public.mdl_customfield_data_id_seq', 1, false); -- --- TOC entry 10092 (class 0 OID 19732) --- Dependencies: 607 +-- TOC entry 9883 (class 0 OID 60058) +-- Dependencies: 398 -- Data for Name: mdl_customfield_field; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32903,7 +32905,7 @@ COPY public.mdl_customfield_field (id, shortname, name, type, description, descr -- -- TOC entry 11494 (class 0 OID 0) --- Dependencies: 606 +-- Dependencies: 399 -- Name: mdl_customfield_field_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32911,8 +32913,8 @@ SELECT pg_catalog.setval('public.mdl_customfield_field_id_seq', 1, false); -- --- TOC entry 10194 (class 0 OID 20624) --- Dependencies: 709 +-- TOC entry 9885 (class 0 OID 60069) +-- Dependencies: 400 -- Data for Name: mdl_data; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32921,8 +32923,8 @@ COPY public.mdl_data (id, course, name, intro, introformat, comments, timeavaila -- --- TOC entry 10200 (class 0 OID 20692) --- Dependencies: 715 +-- TOC entry 9886 (class 0 OID 60099) +-- Dependencies: 401 -- Data for Name: mdl_data_content; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32932,7 +32934,7 @@ COPY public.mdl_data_content (id, fieldid, recordid, content, content1, content2 -- -- TOC entry 11495 (class 0 OID 0) --- Dependencies: 714 +-- Dependencies: 402 -- Name: mdl_data_content_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32940,8 +32942,8 @@ SELECT pg_catalog.setval('public.mdl_data_content_id_seq', 1, false); -- --- TOC entry 10196 (class 0 OID 20660) --- Dependencies: 711 +-- TOC entry 9888 (class 0 OID 60109) +-- Dependencies: 403 -- Data for Name: mdl_data_fields; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32951,7 +32953,7 @@ COPY public.mdl_data_fields (id, dataid, type, name, description, required, para -- -- TOC entry 11496 (class 0 OID 0) --- Dependencies: 710 +-- Dependencies: 404 -- Name: mdl_data_fields_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32960,7 +32962,7 @@ SELECT pg_catalog.setval('public.mdl_data_fields_id_seq', 1, false); -- -- TOC entry 11497 (class 0 OID 0) --- Dependencies: 708 +-- Dependencies: 405 -- Name: mdl_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32968,8 +32970,8 @@ SELECT pg_catalog.setval('public.mdl_data_id_seq', 1, false); -- --- TOC entry 10198 (class 0 OID 20677) --- Dependencies: 713 +-- TOC entry 9891 (class 0 OID 60123) +-- Dependencies: 406 -- Data for Name: mdl_data_records; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32979,7 +32981,7 @@ COPY public.mdl_data_records (id, userid, groupid, dataid, timecreated, timemodi -- -- TOC entry 11498 (class 0 OID 0) --- Dependencies: 712 +-- Dependencies: 407 -- Name: mdl_data_records_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32987,8 +32989,8 @@ SELECT pg_catalog.setval('public.mdl_data_records_id_seq', 1, false); -- --- TOC entry 10412 (class 0 OID 22593) --- Dependencies: 927 +-- TOC entry 9893 (class 0 OID 60134) +-- Dependencies: 408 -- Data for Name: mdl_editor_atto_autosave; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32998,7 +33000,7 @@ COPY public.mdl_editor_atto_autosave (id, elementid, contextid, pagehash, userid -- -- TOC entry 11499 (class 0 OID 0) --- Dependencies: 926 +-- Dependencies: 409 -- Name: mdl_editor_atto_autosave_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33006,8 +33008,8 @@ SELECT pg_catalog.setval('public.mdl_editor_atto_autosave_id_seq', 1, true); -- --- TOC entry 9691 (class 0 OID 16567) --- Dependencies: 206 +-- TOC entry 9895 (class 0 OID 60146) +-- Dependencies: 410 -- Data for Name: mdl_enrol; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33016,8 +33018,8 @@ COPY public.mdl_enrol (id, enrol, status, courseid, sortorder, name, enrolperiod -- --- TOC entry 10374 (class 0 OID 22324) --- Dependencies: 889 +-- TOC entry 9896 (class 0 OID 60164) +-- Dependencies: 411 -- Data for Name: mdl_enrol_flatfile; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33027,7 +33029,7 @@ COPY public.mdl_enrol_flatfile (id, action, roleid, userid, courseid, timestart, -- -- TOC entry 11500 (class 0 OID 0) --- Dependencies: 888 +-- Dependencies: 412 -- Name: mdl_enrol_flatfile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33036,7 +33038,7 @@ SELECT pg_catalog.setval('public.mdl_enrol_flatfile_id_seq', 1, false); -- -- TOC entry 11501 (class 0 OID 0) --- Dependencies: 205 +-- Dependencies: 413 -- Name: mdl_enrol_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33044,8 +33046,8 @@ SELECT pg_catalog.setval('public.mdl_enrol_id_seq', 1, false); -- --- TOC entry 10380 (class 0 OID 22376) --- Dependencies: 895 +-- TOC entry 9899 (class 0 OID 60175) +-- Dependencies: 414 -- Data for Name: mdl_enrol_lti_lti2_consumer; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33055,7 +33057,7 @@ COPY public.mdl_enrol_lti_lti2_consumer (id, name, consumerkey256, consumerkey, -- -- TOC entry 11502 (class 0 OID 0) --- Dependencies: 894 +-- Dependencies: 415 -- Name: mdl_enrol_lti_lti2_consumer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33063,8 +33065,8 @@ SELECT pg_catalog.setval('public.mdl_enrol_lti_lti2_consumer_id_seq', 1, false); -- --- TOC entry 10384 (class 0 OID 22405) --- Dependencies: 899 +-- TOC entry 9901 (class 0 OID 60186) +-- Dependencies: 416 -- Data for Name: mdl_enrol_lti_lti2_context; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33074,7 +33076,7 @@ COPY public.mdl_enrol_lti_lti2_context (id, consumerid, lticontextkey, type, set -- -- TOC entry 11503 (class 0 OID 0) --- Dependencies: 898 +-- Dependencies: 417 -- Name: mdl_enrol_lti_lti2_context_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33082,8 +33084,8 @@ SELECT pg_catalog.setval('public.mdl_enrol_lti_lti2_context_id_seq', 1, false); -- --- TOC entry 10386 (class 0 OID 22418) --- Dependencies: 901 +-- TOC entry 9903 (class 0 OID 60195) +-- Dependencies: 418 -- Data for Name: mdl_enrol_lti_lti2_nonce; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33093,7 +33095,7 @@ COPY public.mdl_enrol_lti_lti2_nonce (id, consumerid, value, expires) FROM stdin -- -- TOC entry 11504 (class 0 OID 0) --- Dependencies: 900 +-- Dependencies: 419 -- Name: mdl_enrol_lti_lti2_nonce_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33101,8 +33103,8 @@ SELECT pg_catalog.setval('public.mdl_enrol_lti_lti2_nonce_id_seq', 1, false); -- --- TOC entry 10388 (class 0 OID 22428) --- Dependencies: 903 +-- TOC entry 9905 (class 0 OID 60201) +-- Dependencies: 420 -- Data for Name: mdl_enrol_lti_lti2_resource_link; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33112,7 +33114,7 @@ COPY public.mdl_enrol_lti_lti2_resource_link (id, contextid, consumerid, ltireso -- -- TOC entry 11505 (class 0 OID 0) --- Dependencies: 902 +-- Dependencies: 421 -- Name: mdl_enrol_lti_lti2_resource_link_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33120,8 +33122,8 @@ SELECT pg_catalog.setval('public.mdl_enrol_lti_lti2_resource_link_id_seq', 1, fa -- --- TOC entry 10390 (class 0 OID 22443) --- Dependencies: 905 +-- TOC entry 9907 (class 0 OID 60210) +-- Dependencies: 422 -- Data for Name: mdl_enrol_lti_lti2_share_key; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33131,7 +33133,7 @@ COPY public.mdl_enrol_lti_lti2_share_key (id, sharekey, resourcelinkid, autoappr -- -- TOC entry 11506 (class 0 OID 0) --- Dependencies: 904 +-- Dependencies: 423 -- Name: mdl_enrol_lti_lti2_share_key_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33139,8 +33141,8 @@ SELECT pg_catalog.setval('public.mdl_enrol_lti_lti2_share_key_id_seq', 1, false) -- --- TOC entry 10382 (class 0 OID 22391) --- Dependencies: 897 +-- TOC entry 9909 (class 0 OID 60216) +-- Dependencies: 424 -- Data for Name: mdl_enrol_lti_lti2_tool_proxy; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33150,7 +33152,7 @@ COPY public.mdl_enrol_lti_lti2_tool_proxy (id, toolproxykey, consumerid, toolpro -- -- TOC entry 11507 (class 0 OID 0) --- Dependencies: 896 +-- Dependencies: 425 -- Name: mdl_enrol_lti_lti2_tool_proxy_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33158,8 +33160,8 @@ SELECT pg_catalog.setval('public.mdl_enrol_lti_lti2_tool_proxy_id_seq', 1, false -- --- TOC entry 10392 (class 0 OID 22454) --- Dependencies: 907 +-- TOC entry 9911 (class 0 OID 60225) +-- Dependencies: 426 -- Data for Name: mdl_enrol_lti_lti2_user_result; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33169,7 +33171,7 @@ COPY public.mdl_enrol_lti_lti2_user_result (id, resourcelinkid, ltiuserkey, ltir -- -- TOC entry 11508 (class 0 OID 0) --- Dependencies: 906 +-- Dependencies: 427 -- Name: mdl_enrol_lti_lti2_user_result_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33177,8 +33179,8 @@ SELECT pg_catalog.setval('public.mdl_enrol_lti_lti2_user_result_id_seq', 1, fals -- --- TOC entry 10394 (class 0 OID 22468) --- Dependencies: 909 +-- TOC entry 9913 (class 0 OID 60235) +-- Dependencies: 428 -- Data for Name: mdl_enrol_lti_tool_consumer_map; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33188,7 +33190,7 @@ COPY public.mdl_enrol_lti_tool_consumer_map (id, toolid, consumerid) FROM stdin; -- -- TOC entry 11509 (class 0 OID 0) --- Dependencies: 908 +-- Dependencies: 429 -- Name: mdl_enrol_lti_tool_consumer_map_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33196,8 +33198,8 @@ SELECT pg_catalog.setval('public.mdl_enrol_lti_tool_consumer_map_id_seq', 1, fal -- --- TOC entry 10376 (class 0 OID 22339) --- Dependencies: 891 +-- TOC entry 9915 (class 0 OID 60240) +-- Dependencies: 430 -- Data for Name: mdl_enrol_lti_tools; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33207,7 +33209,7 @@ COPY public.mdl_enrol_lti_tools (id, enrolid, contextid, institution, lang, time -- -- TOC entry 11510 (class 0 OID 0) --- Dependencies: 890 +-- Dependencies: 431 -- Name: mdl_enrol_lti_tools_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33215,8 +33217,8 @@ SELECT pg_catalog.setval('public.mdl_enrol_lti_tools_id_seq', 1, false); -- --- TOC entry 10378 (class 0 OID 22363) --- Dependencies: 893 +-- TOC entry 9917 (class 0 OID 60259) +-- Dependencies: 432 -- Data for Name: mdl_enrol_lti_users; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33226,7 +33228,7 @@ COPY public.mdl_enrol_lti_users (id, userid, toolid, serviceurl, sourceid, consu -- -- TOC entry 11511 (class 0 OID 0) --- Dependencies: 892 +-- Dependencies: 433 -- Name: mdl_enrol_lti_users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33234,8 +33236,8 @@ SELECT pg_catalog.setval('public.mdl_enrol_lti_users_id_seq', 1, false); -- --- TOC entry 10396 (class 0 OID 22478) --- Dependencies: 911 +-- TOC entry 9919 (class 0 OID 60267) +-- Dependencies: 434 -- Data for Name: mdl_enrol_paypal; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33245,7 +33247,7 @@ COPY public.mdl_enrol_paypal (id, business, receiver_email, receiver_id, item_na -- -- TOC entry 11512 (class 0 OID 0) --- Dependencies: 910 +-- Dependencies: 435 -- Name: mdl_enrol_paypal_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33253,8 +33255,8 @@ SELECT pg_catalog.setval('public.mdl_enrol_paypal_id_seq', 1, false); -- --- TOC entry 9709 (class 0 OID 16732) --- Dependencies: 224 +-- TOC entry 9921 (class 0 OID 60295) +-- Dependencies: 436 -- Data for Name: mdl_event; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33264,7 +33266,7 @@ COPY public.mdl_event (id, name, description, format, categoryid, courseid, grou -- -- TOC entry 11513 (class 0 OID 0) --- Dependencies: 223 +-- Dependencies: 437 -- Name: mdl_event_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33272,8 +33274,8 @@ SELECT pg_catalog.setval('public.mdl_event_id_seq', 1, false); -- --- TOC entry 9974 (class 0 OID 18910) --- Dependencies: 489 +-- TOC entry 9923 (class 0 OID 60319) +-- Dependencies: 438 -- Data for Name: mdl_event_subscriptions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33283,7 +33285,7 @@ COPY public.mdl_event_subscriptions (id, url, categoryid, courseid, groupid, use -- -- TOC entry 11514 (class 0 OID 0) --- Dependencies: 488 +-- Dependencies: 439 -- Name: mdl_event_subscriptions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33291,8 +33293,8 @@ SELECT pg_catalog.setval('public.mdl_event_subscriptions_id_seq', 1, false); -- --- TOC entry 9848 (class 0 OID 17891) --- Dependencies: 363 +-- TOC entry 9925 (class 0 OID 60335) +-- Dependencies: 440 -- Data for Name: mdl_events_handlers; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33302,7 +33304,7 @@ COPY public.mdl_events_handlers (id, eventname, component, handlerfile, handlerf -- -- TOC entry 11515 (class 0 OID 0) --- Dependencies: 362 +-- Dependencies: 441 -- Name: mdl_events_handlers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33310,8 +33312,8 @@ SELECT pg_catalog.setval('public.mdl_events_handlers_id_seq', 1, false); -- --- TOC entry 9846 (class 0 OID 17879) --- Dependencies: 361 +-- TOC entry 9927 (class 0 OID 60348) +-- Dependencies: 442 -- Data for Name: mdl_events_queue; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33320,8 +33322,8 @@ COPY public.mdl_events_queue (id, eventdata, stackdump, userid, timecreated) FRO -- --- TOC entry 9850 (class 0 OID 17908) --- Dependencies: 365 +-- TOC entry 9928 (class 0 OID 60354) +-- Dependencies: 443 -- Data for Name: mdl_events_queue_handlers; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33331,7 +33333,7 @@ COPY public.mdl_events_queue_handlers (id, queuedeventid, handlerid, status, err -- -- TOC entry 11516 (class 0 OID 0) --- Dependencies: 364 +-- Dependencies: 444 -- Name: mdl_events_queue_handlers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33340,7 +33342,7 @@ SELECT pg_catalog.setval('public.mdl_events_queue_handlers_id_seq', 1, false); -- -- TOC entry 11517 (class 0 OID 0) --- Dependencies: 360 +-- Dependencies: 445 -- Name: mdl_events_queue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33348,8 +33350,8 @@ SELECT pg_catalog.setval('public.mdl_events_queue_id_seq', 1, false); -- --- TOC entry 9942 (class 0 OID 18680) --- Dependencies: 457 +-- TOC entry 9931 (class 0 OID 60364) +-- Dependencies: 446 -- Data for Name: mdl_external_functions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33969,7 +33971,7 @@ COPY public.mdl_external_functions (id, name, classname, methodname, classpath, -- -- TOC entry 11518 (class 0 OID 0) --- Dependencies: 456 +-- Dependencies: 447 -- Name: mdl_external_functions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33977,19 +33979,19 @@ SELECT pg_catalog.setval('public.mdl_external_functions_id_seq', 610, true); -- --- TOC entry 9940 (class 0 OID 18665) --- Dependencies: 455 +-- TOC entry 9933 (class 0 OID 60376) +-- Dependencies: 448 -- Data for Name: mdl_external_services; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.mdl_external_services (id, name, enabled, requiredcapability, restrictedusers, component, timecreated, timemodified, shortname, downloadfiles, uploadfiles) FROM stdin; -1 Moodle mobile web service 1 \N 0 moodle 1609808471 1609884657 moodle_mobile_app 1 1 +1 Moodle mobile web service 1 \N 0 moodle 1609808471 1609892624 moodle_mobile_app 1 1 \. -- --- TOC entry 9944 (class 0 OID 18696) --- Dependencies: 459 +-- TOC entry 9934 (class 0 OID 60385) +-- Dependencies: 449 -- Data for Name: mdl_external_services_functions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34374,7 +34376,7 @@ COPY public.mdl_external_services_functions (id, externalserviceid, functionname -- -- TOC entry 11519 (class 0 OID 0) --- Dependencies: 458 +-- Dependencies: 450 -- Name: mdl_external_services_functions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34383,7 +34385,7 @@ SELECT pg_catalog.setval('public.mdl_external_services_functions_id_seq', 375, t -- -- TOC entry 11520 (class 0 OID 0) --- Dependencies: 454 +-- Dependencies: 451 -- Name: mdl_external_services_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34391,8 +34393,8 @@ SELECT pg_catalog.setval('public.mdl_external_services_id_seq', 1, true); -- --- TOC entry 9946 (class 0 OID 18706) --- Dependencies: 461 +-- TOC entry 9937 (class 0 OID 60393) +-- Dependencies: 452 -- Data for Name: mdl_external_services_users; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34402,7 +34404,7 @@ COPY public.mdl_external_services_users (id, externalserviceid, userid, iprestri -- -- TOC entry 11521 (class 0 OID 0) --- Dependencies: 460 +-- Dependencies: 453 -- Name: mdl_external_services_users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34410,8 +34412,8 @@ SELECT pg_catalog.setval('public.mdl_external_services_users_id_seq', 1, false); -- --- TOC entry 9948 (class 0 OID 18716) --- Dependencies: 463 +-- TOC entry 9939 (class 0 OID 60398) +-- Dependencies: 454 -- Data for Name: mdl_external_tokens; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34421,7 +34423,7 @@ COPY public.mdl_external_tokens (id, token, privatetoken, tokentype, userid, ext -- -- TOC entry 11522 (class 0 OID 0) --- Dependencies: 462 +-- Dependencies: 455 -- Name: mdl_external_tokens_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34429,8 +34431,8 @@ SELECT pg_catalog.setval('public.mdl_external_tokens_id_seq', 1, false); -- --- TOC entry 10088 (class 0 OID 19702) --- Dependencies: 603 +-- TOC entry 9941 (class 0 OID 60408) +-- Dependencies: 456 -- Data for Name: mdl_favourite; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34440,7 +34442,7 @@ COPY public.mdl_favourite (id, component, itemtype, itemid, contextid, userid, o -- -- TOC entry 11523 (class 0 OID 0) --- Dependencies: 602 +-- Dependencies: 457 -- Name: mdl_favourite_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34448,8 +34450,8 @@ SELECT pg_catalog.setval('public.mdl_favourite_id_seq', 1, false); -- --- TOC entry 10202 (class 0 OID 20707) --- Dependencies: 717 +-- TOC entry 9943 (class 0 OID 60415) +-- Dependencies: 458 -- Data for Name: mdl_feedback; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34458,8 +34460,8 @@ COPY public.mdl_feedback (id, course, name, intro, introformat, anonymous, email -- --- TOC entry 10208 (class 0 OID 20769) --- Dependencies: 723 +-- TOC entry 9944 (class 0 OID 60435) +-- Dependencies: 459 -- Data for Name: mdl_feedback_completed; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34469,7 +34471,7 @@ COPY public.mdl_feedback_completed (id, feedback, userid, timemodified, random_r -- -- TOC entry 11524 (class 0 OID 0) --- Dependencies: 722 +-- Dependencies: 460 -- Name: mdl_feedback_completed_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34477,8 +34479,8 @@ SELECT pg_catalog.setval('public.mdl_feedback_completed_id_seq', 1, false); -- --- TOC entry 10210 (class 0 OID 20785) --- Dependencies: 725 +-- TOC entry 9946 (class 0 OID 60446) +-- Dependencies: 461 -- Data for Name: mdl_feedback_completedtmp; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34488,7 +34490,7 @@ COPY public.mdl_feedback_completedtmp (id, feedback, userid, guestid, timemodifi -- -- TOC entry 11525 (class 0 OID 0) --- Dependencies: 724 +-- Dependencies: 462 -- Name: mdl_feedback_completedtmp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34497,7 +34499,7 @@ SELECT pg_catalog.setval('public.mdl_feedback_completedtmp_id_seq', 1, false); -- -- TOC entry 11526 (class 0 OID 0) --- Dependencies: 716 +-- Dependencies: 463 -- Name: mdl_feedback_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34505,8 +34507,8 @@ SELECT pg_catalog.setval('public.mdl_feedback_id_seq', 1, false); -- --- TOC entry 10206 (class 0 OID 20745) --- Dependencies: 721 +-- TOC entry 9949 (class 0 OID 60460) +-- Dependencies: 464 -- Data for Name: mdl_feedback_item; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34516,7 +34518,7 @@ COPY public.mdl_feedback_item (id, feedback, template, name, label, presentation -- -- TOC entry 11527 (class 0 OID 0) --- Dependencies: 720 +-- Dependencies: 465 -- Name: mdl_feedback_item_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34524,8 +34526,8 @@ SELECT pg_catalog.setval('public.mdl_feedback_item_id_seq', 1, false); -- --- TOC entry 10216 (class 0 OID 20838) --- Dependencies: 731 +-- TOC entry 9951 (class 0 OID 60479) +-- Dependencies: 466 -- Data for Name: mdl_feedback_sitecourse_map; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34535,7 +34537,7 @@ COPY public.mdl_feedback_sitecourse_map (id, feedbackid, courseid) FROM stdin; -- -- TOC entry 11528 (class 0 OID 0) --- Dependencies: 730 +-- Dependencies: 467 -- Name: mdl_feedback_sitecourse_map_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34543,8 +34545,8 @@ SELECT pg_catalog.setval('public.mdl_feedback_sitecourse_map_id_seq', 1, false); -- --- TOC entry 10204 (class 0 OID 20733) --- Dependencies: 719 +-- TOC entry 9953 (class 0 OID 60486) +-- Dependencies: 468 -- Data for Name: mdl_feedback_template; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34554,7 +34556,7 @@ COPY public.mdl_feedback_template (id, course, ispublic, name) FROM stdin; -- -- TOC entry 11529 (class 0 OID 0) --- Dependencies: 718 +-- Dependencies: 469 -- Name: mdl_feedback_template_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34562,8 +34564,8 @@ SELECT pg_catalog.setval('public.mdl_feedback_template_id_seq', 1, false); -- --- TOC entry 10212 (class 0 OID 20802) --- Dependencies: 727 +-- TOC entry 9955 (class 0 OID 60494) +-- Dependencies: 470 -- Data for Name: mdl_feedback_value; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34573,7 +34575,7 @@ COPY public.mdl_feedback_value (id, course_id, item, completed, tmp_completed, v -- -- TOC entry 11530 (class 0 OID 0) --- Dependencies: 726 +-- Dependencies: 471 -- Name: mdl_feedback_value_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34581,8 +34583,8 @@ SELECT pg_catalog.setval('public.mdl_feedback_value_id_seq', 1, false); -- --- TOC entry 10214 (class 0 OID 20820) --- Dependencies: 729 +-- TOC entry 9957 (class 0 OID 60506) +-- Dependencies: 472 -- Data for Name: mdl_feedback_valuetmp; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34592,7 +34594,7 @@ COPY public.mdl_feedback_valuetmp (id, course_id, item, completed, tmp_completed -- -- TOC entry 11531 (class 0 OID 0) --- Dependencies: 728 +-- Dependencies: 473 -- Name: mdl_feedback_valuetmp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34600,8 +34602,8 @@ SELECT pg_catalog.setval('public.mdl_feedback_valuetmp_id_seq', 1, false); -- --- TOC entry 9922 (class 0 OID 18539) --- Dependencies: 437 +-- TOC entry 9959 (class 0 OID 60518) +-- Dependencies: 474 -- Data for Name: mdl_file_conversion; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34611,7 +34613,7 @@ COPY public.mdl_file_conversion (id, usermodified, timecreated, timemodified, so -- -- TOC entry 11532 (class 0 OID 0) --- Dependencies: 436 +-- Dependencies: 475 -- Name: mdl_file_conversion_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34619,8 +34621,8 @@ SELECT pg_catalog.setval('public.mdl_file_conversion_id_seq', 1, false); -- --- TOC entry 9918 (class 0 OID 18499) --- Dependencies: 433 +-- TOC entry 9961 (class 0 OID 60528) +-- Dependencies: 476 -- Data for Name: mdl_files; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34635,7 +34637,7 @@ COPY public.mdl_files (id, contenthash, pathnamehash, contextid, component, file -- -- TOC entry 11533 (class 0 OID 0) --- Dependencies: 432 +-- Dependencies: 477 -- Name: mdl_files_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34643,8 +34645,8 @@ SELECT pg_catalog.setval('public.mdl_files_id_seq', 5, true); -- --- TOC entry 9920 (class 0 OID 18525) --- Dependencies: 435 +-- TOC entry 9963 (class 0 OID 60544) +-- Dependencies: 478 -- Data for Name: mdl_files_reference; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34654,7 +34656,7 @@ COPY public.mdl_files_reference (id, repositoryid, lastsync, reference, referenc -- -- TOC entry 11534 (class 0 OID 0) --- Dependencies: 434 +-- Dependencies: 479 -- Name: mdl_files_reference_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34662,8 +34664,8 @@ SELECT pg_catalog.setval('public.mdl_files_reference_id_seq', 1, false); -- --- TOC entry 9705 (class 0 OID 16705) --- Dependencies: 220 +-- TOC entry 9965 (class 0 OID 60553) +-- Dependencies: 480 -- Data for Name: mdl_filter_active; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34679,7 +34681,7 @@ COPY public.mdl_filter_active (id, filter, contextid, active, sortorder) FROM st -- -- TOC entry 11535 (class 0 OID 0) --- Dependencies: 219 +-- Dependencies: 481 -- Name: mdl_filter_active_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34687,8 +34689,8 @@ SELECT pg_catalog.setval('public.mdl_filter_active_id_seq', 6, true); -- --- TOC entry 9707 (class 0 OID 16717) --- Dependencies: 222 +-- TOC entry 9967 (class 0 OID 60560) +-- Dependencies: 482 -- Data for Name: mdl_filter_config; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34698,7 +34700,7 @@ COPY public.mdl_filter_config (id, filter, contextid, name, value) FROM stdin; -- -- TOC entry 11536 (class 0 OID 0) --- Dependencies: 221 +-- Dependencies: 483 -- Name: mdl_filter_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34706,8 +34708,8 @@ SELECT pg_catalog.setval('public.mdl_filter_config_id_seq', 1, false); -- --- TOC entry 10218 (class 0 OID 20850) --- Dependencies: 733 +-- TOC entry 9969 (class 0 OID 60570) +-- Dependencies: 484 -- Data for Name: mdl_folder; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34717,7 +34719,7 @@ COPY public.mdl_folder (id, course, name, intro, introformat, revision, timemodi -- -- TOC entry 11537 (class 0 OID 0) --- Dependencies: 732 +-- Dependencies: 485 -- Name: mdl_folder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34725,8 +34727,8 @@ SELECT pg_catalog.setval('public.mdl_folder_id_seq', 1, false); -- --- TOC entry 10220 (class 0 OID 20870) --- Dependencies: 735 +-- TOC entry 9971 (class 0 OID 60586) +-- Dependencies: 486 -- Data for Name: mdl_forum; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34735,8 +34737,8 @@ COPY public.mdl_forum (id, course, type, name, intro, introformat, duedate, cuto -- --- TOC entry 10230 (class 0 OID 20992) --- Dependencies: 745 +-- TOC entry 9972 (class 0 OID 60619) +-- Dependencies: 487 -- Data for Name: mdl_forum_digests; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34746,7 +34748,7 @@ COPY public.mdl_forum_digests (id, userid, forum, maildigest) FROM stdin; -- -- TOC entry 11538 (class 0 OID 0) --- Dependencies: 744 +-- Dependencies: 488 -- Name: mdl_forum_digests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34754,8 +34756,8 @@ SELECT pg_catalog.setval('public.mdl_forum_digests_id_seq', 1, false); -- --- TOC entry 10236 (class 0 OID 21032) --- Dependencies: 751 +-- TOC entry 9974 (class 0 OID 60625) +-- Dependencies: 489 -- Data for Name: mdl_forum_discussion_subs; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34765,7 +34767,7 @@ COPY public.mdl_forum_discussion_subs (id, forum, userid, discussion, preference -- -- TOC entry 11539 (class 0 OID 0) --- Dependencies: 750 +-- Dependencies: 490 -- Name: mdl_forum_discussion_subs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34773,8 +34775,8 @@ SELECT pg_catalog.setval('public.mdl_forum_discussion_subs_id_seq', 1, false); -- --- TOC entry 10222 (class 0 OID 20909) --- Dependencies: 737 +-- TOC entry 9976 (class 0 OID 60631) +-- Dependencies: 491 -- Data for Name: mdl_forum_discussions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34784,7 +34786,7 @@ COPY public.mdl_forum_discussions (id, course, forum, name, firstpost, userid, g -- -- TOC entry 11540 (class 0 OID 0) --- Dependencies: 736 +-- Dependencies: 492 -- Name: mdl_forum_discussions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34792,8 +34794,8 @@ SELECT pg_catalog.setval('public.mdl_forum_discussions_id_seq', 1, false); -- --- TOC entry 10238 (class 0 OID 21045) --- Dependencies: 753 +-- TOC entry 9978 (class 0 OID 60649) +-- Dependencies: 493 -- Data for Name: mdl_forum_grades; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34803,7 +34805,7 @@ COPY public.mdl_forum_grades (id, forum, itemnumber, userid, grade, timecreated, -- -- TOC entry 11541 (class 0 OID 0) --- Dependencies: 752 +-- Dependencies: 494 -- Name: mdl_forum_grades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34812,7 +34814,7 @@ SELECT pg_catalog.setval('public.mdl_forum_grades_id_seq', 1, false); -- -- TOC entry 11542 (class 0 OID 0) --- Dependencies: 734 +-- Dependencies: 495 -- Name: mdl_forum_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34820,8 +34822,8 @@ SELECT pg_catalog.setval('public.mdl_forum_id_seq', 1, false); -- --- TOC entry 10224 (class 0 OID 20933) --- Dependencies: 739 +-- TOC entry 9981 (class 0 OID 60656) +-- Dependencies: 496 -- Data for Name: mdl_forum_posts; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34831,7 +34833,7 @@ COPY public.mdl_forum_posts (id, discussion, parent, userid, created, modified, -- -- TOC entry 11543 (class 0 OID 0) --- Dependencies: 738 +-- Dependencies: 497 -- Name: mdl_forum_posts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34839,8 +34841,8 @@ SELECT pg_catalog.setval('public.mdl_forum_posts_id_seq', 1, false); -- --- TOC entry 10226 (class 0 OID 20964) --- Dependencies: 741 +-- TOC entry 9983 (class 0 OID 60678) +-- Dependencies: 498 -- Data for Name: mdl_forum_queue; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34850,7 +34852,7 @@ COPY public.mdl_forum_queue (id, userid, discussionid, postid, timemodified) FRO -- -- TOC entry 11544 (class 0 OID 0) --- Dependencies: 740 +-- Dependencies: 499 -- Name: mdl_forum_queue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34858,8 +34860,8 @@ SELECT pg_catalog.setval('public.mdl_forum_queue_id_seq', 1, false); -- --- TOC entry 10232 (class 0 OID 21004) --- Dependencies: 747 +-- TOC entry 9985 (class 0 OID 60687) +-- Dependencies: 500 -- Data for Name: mdl_forum_read; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34869,7 +34871,7 @@ COPY public.mdl_forum_read (id, userid, forumid, discussionid, postid, firstread -- -- TOC entry 11545 (class 0 OID 0) --- Dependencies: 746 +-- Dependencies: 501 -- Name: mdl_forum_read_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34877,8 +34879,8 @@ SELECT pg_catalog.setval('public.mdl_forum_read_id_seq', 1, false); -- --- TOC entry 10228 (class 0 OID 20979) --- Dependencies: 743 +-- TOC entry 9987 (class 0 OID 60698) +-- Dependencies: 502 -- Data for Name: mdl_forum_subscriptions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34888,7 +34890,7 @@ COPY public.mdl_forum_subscriptions (id, userid, forum) FROM stdin; -- -- TOC entry 11546 (class 0 OID 0) --- Dependencies: 742 +-- Dependencies: 503 -- Name: mdl_forum_subscriptions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34896,8 +34898,8 @@ SELECT pg_catalog.setval('public.mdl_forum_subscriptions_id_seq', 1, false); -- --- TOC entry 10234 (class 0 OID 21021) --- Dependencies: 749 +-- TOC entry 9989 (class 0 OID 60705) +-- Dependencies: 504 -- Data for Name: mdl_forum_track_prefs; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34907,7 +34909,7 @@ COPY public.mdl_forum_track_prefs (id, userid, forumid) FROM stdin; -- -- TOC entry 11547 (class 0 OID 0) --- Dependencies: 748 +-- Dependencies: 505 -- Name: mdl_forum_track_prefs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34915,8 +34917,8 @@ SELECT pg_catalog.setval('public.mdl_forum_track_prefs_id_seq', 1, false); -- --- TOC entry 10240 (class 0 OID 21059) --- Dependencies: 755 +-- TOC entry 9991 (class 0 OID 60712) +-- Dependencies: 506 -- Data for Name: mdl_glossary; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34925,8 +34927,8 @@ COPY public.mdl_glossary (id, course, name, intro, introformat, allowduplicatede -- --- TOC entry 10244 (class 0 OID 21125) --- Dependencies: 759 +-- TOC entry 9992 (class 0 OID 60744) +-- Dependencies: 507 -- Data for Name: mdl_glossary_alias; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34936,7 +34938,7 @@ COPY public.mdl_glossary_alias (id, entryid, alias) FROM stdin; -- -- TOC entry 11548 (class 0 OID 0) --- Dependencies: 758 +-- Dependencies: 508 -- Name: mdl_glossary_alias_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34944,8 +34946,8 @@ SELECT pg_catalog.setval('public.mdl_glossary_alias_id_seq', 1, false); -- --- TOC entry 10246 (class 0 OID 21136) --- Dependencies: 761 +-- TOC entry 9994 (class 0 OID 60751) +-- Dependencies: 509 -- Data for Name: mdl_glossary_categories; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34955,7 +34957,7 @@ COPY public.mdl_glossary_categories (id, glossaryid, name, usedynalink) FROM std -- -- TOC entry 11549 (class 0 OID 0) --- Dependencies: 760 +-- Dependencies: 510 -- Name: mdl_glossary_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34963,8 +34965,8 @@ SELECT pg_catalog.setval('public.mdl_glossary_categories_id_seq', 1, false); -- --- TOC entry 10242 (class 0 OID 21097) --- Dependencies: 757 +-- TOC entry 9996 (class 0 OID 60759) +-- Dependencies: 511 -- Data for Name: mdl_glossary_entries; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34973,8 +34975,8 @@ COPY public.mdl_glossary_entries (id, glossaryid, userid, concept, definition, d -- --- TOC entry 10248 (class 0 OID 21148) --- Dependencies: 763 +-- TOC entry 9997 (class 0 OID 60779) +-- Dependencies: 512 -- Data for Name: mdl_glossary_entries_categories; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34984,7 +34986,7 @@ COPY public.mdl_glossary_entries_categories (id, categoryid, entryid) FROM stdin -- -- TOC entry 11550 (class 0 OID 0) --- Dependencies: 762 +-- Dependencies: 513 -- Name: mdl_glossary_entries_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34993,7 +34995,7 @@ SELECT pg_catalog.setval('public.mdl_glossary_entries_categories_id_seq', 1, fal -- -- TOC entry 11551 (class 0 OID 0) --- Dependencies: 756 +-- Dependencies: 514 -- Name: mdl_glossary_entries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35001,8 +35003,8 @@ SELECT pg_catalog.setval('public.mdl_glossary_entries_id_seq', 1, false); -- --- TOC entry 10250 (class 0 OID 21160) --- Dependencies: 765 +-- TOC entry 10000 (class 0 OID 60788) +-- Dependencies: 515 -- Data for Name: mdl_glossary_formats; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35019,7 +35021,7 @@ COPY public.mdl_glossary_formats (id, name, popupformatname, visible, showgroup, -- -- TOC entry 11552 (class 0 OID 0) --- Dependencies: 764 +-- Dependencies: 516 -- Name: mdl_glossary_formats_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35028,7 +35030,7 @@ SELECT pg_catalog.setval('public.mdl_glossary_formats_id_seq', 7, true); -- -- TOC entry 11553 (class 0 OID 0) --- Dependencies: 754 +-- Dependencies: 517 -- Name: mdl_glossary_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35036,8 +35038,8 @@ SELECT pg_catalog.setval('public.mdl_glossary_id_seq', 1, false); -- --- TOC entry 9856 (class 0 OID 17949) --- Dependencies: 371 +-- TOC entry 10003 (class 0 OID 60803) +-- Dependencies: 518 -- Data for Name: mdl_grade_categories; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35046,8 +35048,8 @@ COPY public.mdl_grade_categories (id, courseid, parent, depth, path, fullname, a -- --- TOC entry 9864 (class 0 OID 18053) --- Dependencies: 379 +-- TOC entry 10004 (class 0 OID 60817) +-- Dependencies: 519 -- Data for Name: mdl_grade_categories_history; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35057,7 +35059,7 @@ COPY public.mdl_grade_categories_history (id, action, oldid, source, timemodifie -- -- TOC entry 11554 (class 0 OID 0) --- Dependencies: 378 +-- Dependencies: 520 -- Name: mdl_grade_categories_history_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35066,7 +35068,7 @@ SELECT pg_catalog.setval('public.mdl_grade_categories_history_id_seq', 1, false) -- -- TOC entry 11555 (class 0 OID 0) --- Dependencies: 370 +-- Dependencies: 521 -- Name: mdl_grade_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35074,8 +35076,8 @@ SELECT pg_catalog.setval('public.mdl_grade_categories_id_seq', 1, false); -- --- TOC entry 9860 (class 0 OID 18005) --- Dependencies: 375 +-- TOC entry 10007 (class 0 OID 60837) +-- Dependencies: 522 -- Data for Name: mdl_grade_grades; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35084,8 +35086,8 @@ COPY public.mdl_grade_grades (id, itemid, userid, rawgrade, rawgrademax, rawgrad -- --- TOC entry 9868 (class 0 OID 18116) --- Dependencies: 383 +-- TOC entry 10008 (class 0 OID 60854) +-- Dependencies: 523 -- Data for Name: mdl_grade_grades_history; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35095,7 +35097,7 @@ COPY public.mdl_grade_grades_history (id, action, oldid, source, timemodified, l -- -- TOC entry 11556 (class 0 OID 0) --- Dependencies: 382 +-- Dependencies: 524 -- Name: mdl_grade_grades_history_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35104,7 +35106,7 @@ SELECT pg_catalog.setval('public.mdl_grade_grades_history_id_seq', 1, false); -- -- TOC entry 11557 (class 0 OID 0) --- Dependencies: 374 +-- Dependencies: 525 -- Name: mdl_grade_grades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35112,8 +35114,8 @@ SELECT pg_catalog.setval('public.mdl_grade_grades_id_seq', 1, false); -- --- TOC entry 9870 (class 0 OID 18147) --- Dependencies: 385 +-- TOC entry 10011 (class 0 OID 60875) +-- Dependencies: 526 -- Data for Name: mdl_grade_import_newitem; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35123,7 +35125,7 @@ COPY public.mdl_grade_import_newitem (id, itemname, importcode, importer) FROM s -- -- TOC entry 11558 (class 0 OID 0) --- Dependencies: 384 +-- Dependencies: 527 -- Name: mdl_grade_import_newitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35131,8 +35133,8 @@ SELECT pg_catalog.setval('public.mdl_grade_import_newitem_id_seq', 1, false); -- --- TOC entry 9872 (class 0 OID 18157) --- Dependencies: 387 +-- TOC entry 10013 (class 0 OID 60881) +-- Dependencies: 528 -- Data for Name: mdl_grade_import_values; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35142,7 +35144,7 @@ COPY public.mdl_grade_import_values (id, itemid, newgradeitem, userid, finalgrad -- -- TOC entry 11559 (class 0 OID 0) --- Dependencies: 386 +-- Dependencies: 529 -- Name: mdl_grade_import_values_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35150,8 +35152,8 @@ SELECT pg_catalog.setval('public.mdl_grade_import_values_id_seq', 1, false); -- --- TOC entry 9858 (class 0 OID 17970) --- Dependencies: 373 +-- TOC entry 10015 (class 0 OID 60890) +-- Dependencies: 530 -- Data for Name: mdl_grade_items; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35160,8 +35162,8 @@ COPY public.mdl_grade_items (id, courseid, categoryid, itemname, itemtype, itemm -- --- TOC entry 9866 (class 0 OID 18080) --- Dependencies: 381 +-- TOC entry 10016 (class 0 OID 60912) +-- Dependencies: 531 -- Data for Name: mdl_grade_items_history; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35171,7 +35173,7 @@ COPY public.mdl_grade_items_history (id, action, oldid, source, timemodified, lo -- -- TOC entry 11560 (class 0 OID 0) --- Dependencies: 380 +-- Dependencies: 532 -- Name: mdl_grade_items_history_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35180,7 +35182,7 @@ SELECT pg_catalog.setval('public.mdl_grade_items_history_id_seq', 1, false); -- -- TOC entry 11561 (class 0 OID 0) --- Dependencies: 372 +-- Dependencies: 533 -- Name: mdl_grade_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35188,8 +35190,8 @@ SELECT pg_catalog.setval('public.mdl_grade_items_id_seq', 1, false); -- --- TOC entry 9898 (class 0 OID 18362) --- Dependencies: 413 +-- TOC entry 10019 (class 0 OID 60939) +-- Dependencies: 534 -- Data for Name: mdl_grade_letters; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35199,7 +35201,7 @@ COPY public.mdl_grade_letters (id, contextid, lowerboundary, letter) FROM stdin; -- -- TOC entry 11562 (class 0 OID 0) --- Dependencies: 412 +-- Dependencies: 535 -- Name: mdl_grade_letters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35207,8 +35209,8 @@ SELECT pg_catalog.setval('public.mdl_grade_letters_id_seq', 1, false); -- --- TOC entry 9852 (class 0 OID 17921) --- Dependencies: 367 +-- TOC entry 10021 (class 0 OID 60945) +-- Dependencies: 536 -- Data for Name: mdl_grade_outcomes; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35217,8 +35219,8 @@ COPY public.mdl_grade_outcomes (id, courseid, shortname, fullname, scaleid, desc -- --- TOC entry 9854 (class 0 OID 17938) --- Dependencies: 369 +-- TOC entry 10022 (class 0 OID 60953) +-- Dependencies: 537 -- Data for Name: mdl_grade_outcomes_courses; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35228,7 +35230,7 @@ COPY public.mdl_grade_outcomes_courses (id, courseid, outcomeid) FROM stdin; -- -- TOC entry 11563 (class 0 OID 0) --- Dependencies: 368 +-- Dependencies: 538 -- Name: mdl_grade_outcomes_courses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35236,8 +35238,8 @@ SELECT pg_catalog.setval('public.mdl_grade_outcomes_courses_id_seq', 1, false); -- --- TOC entry 9862 (class 0 OID 18033) --- Dependencies: 377 +-- TOC entry 10024 (class 0 OID 60958) +-- Dependencies: 539 -- Data for Name: mdl_grade_outcomes_history; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35247,7 +35249,7 @@ COPY public.mdl_grade_outcomes_history (id, action, oldid, source, timemodified, -- -- TOC entry 11564 (class 0 OID 0) --- Dependencies: 376 +-- Dependencies: 540 -- Name: mdl_grade_outcomes_history_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35256,7 +35258,7 @@ SELECT pg_catalog.setval('public.mdl_grade_outcomes_history_id_seq', 1, false); -- -- TOC entry 11565 (class 0 OID 0) --- Dependencies: 366 +-- Dependencies: 541 -- Name: mdl_grade_outcomes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35264,8 +35266,8 @@ SELECT pg_catalog.setval('public.mdl_grade_outcomes_id_seq', 1, false); -- --- TOC entry 9902 (class 0 OID 18388) --- Dependencies: 417 +-- TOC entry 10027 (class 0 OID 60971) +-- Dependencies: 542 -- Data for Name: mdl_grade_settings; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35275,7 +35277,7 @@ COPY public.mdl_grade_settings (id, courseid, name, value) FROM stdin; -- -- TOC entry 11566 (class 0 OID 0) --- Dependencies: 416 +-- Dependencies: 543 -- Name: mdl_grade_settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35283,8 +35285,8 @@ SELECT pg_catalog.setval('public.mdl_grade_settings_id_seq', 1, false); -- --- TOC entry 9968 (class 0 OID 18865) --- Dependencies: 483 +-- TOC entry 10029 (class 0 OID 60980) +-- Dependencies: 544 -- Data for Name: mdl_grading_areas; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35294,7 +35296,7 @@ COPY public.mdl_grading_areas (id, contextid, component, areaname, activemethod) -- -- TOC entry 11567 (class 0 OID 0) --- Dependencies: 482 +-- Dependencies: 545 -- Name: mdl_grading_areas_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35302,8 +35304,8 @@ SELECT pg_catalog.setval('public.mdl_grading_areas_id_seq', 1, false); -- --- TOC entry 9970 (class 0 OID 18877) --- Dependencies: 485 +-- TOC entry 10031 (class 0 OID 60987) +-- Dependencies: 546 -- Data for Name: mdl_grading_definitions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35313,7 +35315,7 @@ COPY public.mdl_grading_definitions (id, areaid, method, name, description, desc -- -- TOC entry 11568 (class 0 OID 0) --- Dependencies: 484 +-- Dependencies: 547 -- Name: mdl_grading_definitions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35321,8 +35323,8 @@ SELECT pg_catalog.setval('public.mdl_grading_definitions_id_seq', 1, false); -- --- TOC entry 9972 (class 0 OID 18896) --- Dependencies: 487 +-- TOC entry 10033 (class 0 OID 60999) +-- Dependencies: 548 -- Data for Name: mdl_grading_instances; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35332,7 +35334,7 @@ COPY public.mdl_grading_instances (id, definitionid, raterid, itemid, rawgrade, -- -- TOC entry 11569 (class 0 OID 0) --- Dependencies: 486 +-- Dependencies: 549 -- Name: mdl_grading_instances_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35340,8 +35342,8 @@ SELECT pg_catalog.setval('public.mdl_grading_instances_id_seq', 1, false); -- --- TOC entry 10418 (class 0 OID 22636) --- Dependencies: 933 +-- TOC entry 10035 (class 0 OID 61008) +-- Dependencies: 550 -- Data for Name: mdl_gradingform_guide_comments; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35351,7 +35353,7 @@ COPY public.mdl_gradingform_guide_comments (id, definitionid, sortorder, descrip -- -- TOC entry 11570 (class 0 OID 0) --- Dependencies: 932 +-- Dependencies: 551 -- Name: mdl_gradingform_guide_comments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35359,8 +35361,8 @@ SELECT pg_catalog.setval('public.mdl_gradingform_guide_comments_id_seq', 1, fals -- --- TOC entry 10414 (class 0 OID 22609) --- Dependencies: 929 +-- TOC entry 10037 (class 0 OID 61016) +-- Dependencies: 552 -- Data for Name: mdl_gradingform_guide_criteria; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35370,7 +35372,7 @@ COPY public.mdl_gradingform_guide_criteria (id, definitionid, sortorder, shortna -- -- TOC entry 11571 (class 0 OID 0) --- Dependencies: 928 +-- Dependencies: 553 -- Name: mdl_gradingform_guide_criteria_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35378,8 +35380,8 @@ SELECT pg_catalog.setval('public.mdl_gradingform_guide_criteria_id_seq', 1, fals -- --- TOC entry 10416 (class 0 OID 22622) --- Dependencies: 931 +-- TOC entry 10039 (class 0 OID 61025) +-- Dependencies: 554 -- Data for Name: mdl_gradingform_guide_fillings; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35389,7 +35391,7 @@ COPY public.mdl_gradingform_guide_fillings (id, instanceid, criterionid, remark, -- -- TOC entry 11572 (class 0 OID 0) --- Dependencies: 930 +-- Dependencies: 555 -- Name: mdl_gradingform_guide_fillings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35397,8 +35399,8 @@ SELECT pg_catalog.setval('public.mdl_gradingform_guide_fillings_id_seq', 1, fals -- --- TOC entry 10420 (class 0 OID 22648) --- Dependencies: 935 +-- TOC entry 10041 (class 0 OID 61033) +-- Dependencies: 556 -- Data for Name: mdl_gradingform_rubric_criteria; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35408,7 +35410,7 @@ COPY public.mdl_gradingform_rubric_criteria (id, definitionid, sortorder, descri -- -- TOC entry 11573 (class 0 OID 0) --- Dependencies: 934 +-- Dependencies: 557 -- Name: mdl_gradingform_rubric_criteria_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35416,8 +35418,8 @@ SELECT pg_catalog.setval('public.mdl_gradingform_rubric_criteria_id_seq', 1, fal -- --- TOC entry 10424 (class 0 OID 22672) --- Dependencies: 939 +-- TOC entry 10043 (class 0 OID 61041) +-- Dependencies: 558 -- Data for Name: mdl_gradingform_rubric_fillings; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35427,7 +35429,7 @@ COPY public.mdl_gradingform_rubric_fillings (id, instanceid, criterionid, leveli -- -- TOC entry 11574 (class 0 OID 0) --- Dependencies: 938 +-- Dependencies: 559 -- Name: mdl_gradingform_rubric_fillings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35435,8 +35437,8 @@ SELECT pg_catalog.setval('public.mdl_gradingform_rubric_fillings_id_seq', 1, fal -- --- TOC entry 10422 (class 0 OID 22660) --- Dependencies: 937 +-- TOC entry 10045 (class 0 OID 61049) +-- Dependencies: 560 -- Data for Name: mdl_gradingform_rubric_levels; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35446,7 +35448,7 @@ COPY public.mdl_gradingform_rubric_levels (id, criterionid, score, definition, d -- -- TOC entry 11575 (class 0 OID 0) --- Dependencies: 936 +-- Dependencies: 561 -- Name: mdl_gradingform_rubric_levels_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35454,8 +35456,8 @@ SELECT pg_catalog.setval('public.mdl_gradingform_rubric_levels_id_seq', 1, false -- --- TOC entry 9886 (class 0 OID 18270) --- Dependencies: 401 +-- TOC entry 10047 (class 0 OID 61057) +-- Dependencies: 562 -- Data for Name: mdl_groupings; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35464,8 +35466,8 @@ COPY public.mdl_groupings (id, courseid, name, idnumber, description, descriptio -- --- TOC entry 9890 (class 0 OID 18305) --- Dependencies: 405 +-- TOC entry 10048 (class 0 OID 61069) +-- Dependencies: 563 -- Data for Name: mdl_groupings_groups; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35475,7 +35477,7 @@ COPY public.mdl_groupings_groups (id, groupingid, groupid, timeadded) FROM stdin -- -- TOC entry 11576 (class 0 OID 0) --- Dependencies: 404 +-- Dependencies: 564 -- Name: mdl_groupings_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35484,7 +35486,7 @@ SELECT pg_catalog.setval('public.mdl_groupings_groups_id_seq', 1, false); -- -- TOC entry 11577 (class 0 OID 0) --- Dependencies: 400 +-- Dependencies: 565 -- Name: mdl_groupings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35492,8 +35494,8 @@ SELECT pg_catalog.setval('public.mdl_groupings_id_seq', 1, false); -- --- TOC entry 9884 (class 0 OID 18250) --- Dependencies: 399 +-- TOC entry 10051 (class 0 OID 61079) +-- Dependencies: 566 -- Data for Name: mdl_groups; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35503,7 +35505,7 @@ COPY public.mdl_groups (id, courseid, idnumber, name, description, descriptionfo -- -- TOC entry 11578 (class 0 OID 0) --- Dependencies: 398 +-- Dependencies: 567 -- Name: mdl_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35511,8 +35513,8 @@ SELECT pg_catalog.setval('public.mdl_groups_id_seq', 1, false); -- --- TOC entry 9888 (class 0 OID 18289) --- Dependencies: 403 +-- TOC entry 10053 (class 0 OID 61094) +-- Dependencies: 568 -- Data for Name: mdl_groups_members; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35522,7 +35524,7 @@ COPY public.mdl_groups_members (id, groupid, userid, timeadded, component, itemi -- -- TOC entry 11579 (class 0 OID 0) --- Dependencies: 402 +-- Dependencies: 569 -- Name: mdl_groups_members_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35530,8 +35532,8 @@ SELECT pg_catalog.setval('public.mdl_groups_members_id_seq', 1, false); -- --- TOC entry 10100 (class 0 OID 19792) --- Dependencies: 615 +-- TOC entry 10055 (class 0 OID 61104) +-- Dependencies: 570 -- Data for Name: mdl_h5p; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35540,8 +35542,8 @@ COPY public.mdl_h5p (id, jsoncontent, mainlibraryid, displayoptions, pathnamehas -- --- TOC entry 10102 (class 0 OID 19808) --- Dependencies: 617 +-- TOC entry 10056 (class 0 OID 61114) +-- Dependencies: 571 -- Data for Name: mdl_h5p_contents_libraries; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35551,7 +35553,7 @@ COPY public.mdl_h5p_contents_libraries (id, h5pid, libraryid, dependencytype, dr -- -- TOC entry 11580 (class 0 OID 0) --- Dependencies: 616 +-- Dependencies: 572 -- Name: mdl_h5p_contents_libraries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35560,7 +35562,7 @@ SELECT pg_catalog.setval('public.mdl_h5p_contents_libraries_id_seq', 1, false); -- -- TOC entry 11581 (class 0 OID 0) --- Dependencies: 614 +-- Dependencies: 573 -- Name: mdl_h5p_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35568,8 +35570,8 @@ SELECT pg_catalog.setval('public.mdl_h5p_id_seq', 1, false); -- --- TOC entry 10096 (class 0 OID 19765) --- Dependencies: 611 +-- TOC entry 10059 (class 0 OID 61122) +-- Dependencies: 574 -- Data for Name: mdl_h5p_libraries; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35578,8 +35580,8 @@ COPY public.mdl_h5p_libraries (id, machinename, title, majorversion, minorversio -- --- TOC entry 10104 (class 0 OID 19819) --- Dependencies: 619 +-- TOC entry 10060 (class 0 OID 61132) +-- Dependencies: 575 -- Data for Name: mdl_h5p_libraries_cachedassets; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35589,7 +35591,7 @@ COPY public.mdl_h5p_libraries_cachedassets (id, libraryid, hash) FROM stdin; -- -- TOC entry 11582 (class 0 OID 0) --- Dependencies: 618 +-- Dependencies: 576 -- Name: mdl_h5p_libraries_cachedassets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35598,7 +35600,7 @@ SELECT pg_catalog.setval('public.mdl_h5p_libraries_cachedassets_id_seq', 1, fals -- -- TOC entry 11583 (class 0 OID 0) --- Dependencies: 610 +-- Dependencies: 577 -- Name: mdl_h5p_libraries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35606,8 +35608,8 @@ SELECT pg_catalog.setval('public.mdl_h5p_libraries_id_seq', 1, false); -- --- TOC entry 10098 (class 0 OID 19781) --- Dependencies: 613 +-- TOC entry 10063 (class 0 OID 61140) +-- Dependencies: 578 -- Data for Name: mdl_h5p_library_dependencies; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35617,7 +35619,7 @@ COPY public.mdl_h5p_library_dependencies (id, libraryid, requiredlibraryid, depe -- -- TOC entry 11584 (class 0 OID 0) --- Dependencies: 612 +-- Dependencies: 579 -- Name: mdl_h5p_library_dependencies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35625,8 +35627,8 @@ SELECT pg_catalog.setval('public.mdl_h5p_library_dependencies_id_seq', 1, false) -- --- TOC entry 10252 (class 0 OID 21176) --- Dependencies: 767 +-- TOC entry 10065 (class 0 OID 61146) +-- Dependencies: 580 -- Data for Name: mdl_h5pactivity; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35635,8 +35637,8 @@ COPY public.mdl_h5pactivity (id, course, name, timecreated, timemodified, intro, -- --- TOC entry 10254 (class 0 OID 21195) --- Dependencies: 769 +-- TOC entry 10066 (class 0 OID 61159) +-- Dependencies: 581 -- Data for Name: mdl_h5pactivity_attempts; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35646,7 +35648,7 @@ COPY public.mdl_h5pactivity_attempts (id, h5pactivityid, userid, timecreated, ti -- -- TOC entry 11585 (class 0 OID 0) --- Dependencies: 768 +-- Dependencies: 582 -- Name: mdl_h5pactivity_attempts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35654,8 +35656,8 @@ SELECT pg_catalog.setval('public.mdl_h5pactivity_attempts_id_seq', 1, false); -- --- TOC entry 10256 (class 0 OID 21213) --- Dependencies: 771 +-- TOC entry 10068 (class 0 OID 61169) +-- Dependencies: 583 -- Data for Name: mdl_h5pactivity_attempts_results; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35665,7 +35667,7 @@ COPY public.mdl_h5pactivity_attempts_results (id, attemptid, subcontent, timecre -- -- TOC entry 11586 (class 0 OID 0) --- Dependencies: 770 +-- Dependencies: 584 -- Name: mdl_h5pactivity_attempts_results_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35674,7 +35676,7 @@ SELECT pg_catalog.setval('public.mdl_h5pactivity_attempts_results_id_seq', 1, fa -- -- TOC entry 11587 (class 0 OID 0) --- Dependencies: 766 +-- Dependencies: 585 -- Name: mdl_h5pactivity_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35682,8 +35684,8 @@ SELECT pg_catalog.setval('public.mdl_h5pactivity_id_seq', 1, false); -- --- TOC entry 10258 (class 0 OID 21229) --- Dependencies: 773 +-- TOC entry 10071 (class 0 OID 61182) +-- Dependencies: 586 -- Data for Name: mdl_imscp; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35693,7 +35695,7 @@ COPY public.mdl_imscp (id, course, name, intro, introformat, revision, keepold, -- -- TOC entry 11588 (class 0 OID 0) --- Dependencies: 772 +-- Dependencies: 587 -- Name: mdl_imscp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35701,8 +35703,8 @@ SELECT pg_catalog.setval('public.mdl_imscp_id_seq', 1, false); -- --- TOC entry 10260 (class 0 OID 21247) --- Dependencies: 775 +-- TOC entry 10073 (class 0 OID 61196) +-- Dependencies: 588 -- Data for Name: mdl_label; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35712,7 +35714,7 @@ COPY public.mdl_label (id, course, name, intro, introformat, timemodified) FROM -- -- TOC entry 11589 (class 0 OID 0) --- Dependencies: 774 +-- Dependencies: 589 -- Name: mdl_label_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35720,8 +35722,8 @@ SELECT pg_catalog.setval('public.mdl_label_id_seq', 1, false); -- --- TOC entry 10262 (class 0 OID 21263) --- Dependencies: 777 +-- TOC entry 10075 (class 0 OID 61208) +-- Dependencies: 590 -- Data for Name: mdl_lesson; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35730,8 +35732,8 @@ COPY public.mdl_lesson (id, course, name, intro, introformat, practice, modattem -- --- TOC entry 10266 (class 0 OID 21337) --- Dependencies: 781 +-- TOC entry 10076 (class 0 OID 61253) +-- Dependencies: 591 -- Data for Name: mdl_lesson_answers; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35741,7 +35743,7 @@ COPY public.mdl_lesson_answers (id, lessonid, pageid, jumpto, grade, score, flag -- -- TOC entry 11590 (class 0 OID 0) --- Dependencies: 780 +-- Dependencies: 592 -- Name: mdl_lesson_answers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35749,8 +35751,8 @@ SELECT pg_catalog.setval('public.mdl_lesson_answers_id_seq', 1, false); -- --- TOC entry 10268 (class 0 OID 21360) --- Dependencies: 783 +-- TOC entry 10078 (class 0 OID 61271) +-- Dependencies: 593 -- Data for Name: mdl_lesson_attempts; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35760,7 +35762,7 @@ COPY public.mdl_lesson_attempts (id, lessonid, pageid, userid, answerid, retry, -- -- TOC entry 11591 (class 0 OID 0) --- Dependencies: 782 +-- Dependencies: 594 -- Name: mdl_lesson_attempts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35768,8 +35770,8 @@ SELECT pg_catalog.setval('public.mdl_lesson_attempts_id_seq', 1, false); -- --- TOC entry 10274 (class 0 OID 21413) --- Dependencies: 789 +-- TOC entry 10080 (class 0 OID 61286) +-- Dependencies: 595 -- Data for Name: mdl_lesson_branch; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35779,7 +35781,7 @@ COPY public.mdl_lesson_branch (id, lessonid, userid, pageid, retry, flag, timese -- -- TOC entry 11592 (class 0 OID 0) --- Dependencies: 788 +-- Dependencies: 596 -- Name: mdl_lesson_branch_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35787,8 +35789,8 @@ SELECT pg_catalog.setval('public.mdl_lesson_branch_id_seq', 1, false); -- --- TOC entry 10270 (class 0 OID 21382) --- Dependencies: 785 +-- TOC entry 10082 (class 0 OID 61298) +-- Dependencies: 597 -- Data for Name: mdl_lesson_grades; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35798,7 +35800,7 @@ COPY public.mdl_lesson_grades (id, lessonid, userid, grade, late, completed) FRO -- -- TOC entry 11593 (class 0 OID 0) --- Dependencies: 784 +-- Dependencies: 598 -- Name: mdl_lesson_grades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35807,7 +35809,7 @@ SELECT pg_catalog.setval('public.mdl_lesson_grades_id_seq', 1, false); -- -- TOC entry 11594 (class 0 OID 0) --- Dependencies: 776 +-- Dependencies: 599 -- Name: mdl_lesson_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35815,8 +35817,8 @@ SELECT pg_catalog.setval('public.mdl_lesson_id_seq', 1, false); -- --- TOC entry 10276 (class 0 OID 21431) --- Dependencies: 791 +-- TOC entry 10085 (class 0 OID 61310) +-- Dependencies: 600 -- Data for Name: mdl_lesson_overrides; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35826,7 +35828,7 @@ COPY public.mdl_lesson_overrides (id, lessonid, groupid, userid, available, dead -- -- TOC entry 11595 (class 0 OID 0) --- Dependencies: 790 +-- Dependencies: 601 -- Name: mdl_lesson_overrides_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35834,8 +35836,8 @@ SELECT pg_catalog.setval('public.mdl_lesson_overrides_id_seq', 1, false); -- --- TOC entry 10264 (class 0 OID 21314) --- Dependencies: 779 +-- TOC entry 10087 (class 0 OID 61316) +-- Dependencies: 602 -- Data for Name: mdl_lesson_pages; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35845,7 +35847,7 @@ COPY public.mdl_lesson_pages (id, lessonid, prevpageid, nextpageid, qtype, qopti -- -- TOC entry 11596 (class 0 OID 0) --- Dependencies: 778 +-- Dependencies: 603 -- Name: mdl_lesson_pages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35853,8 +35855,8 @@ SELECT pg_catalog.setval('public.mdl_lesson_pages_id_seq', 1, false); -- --- TOC entry 10272 (class 0 OID 21397) --- Dependencies: 787 +-- TOC entry 10089 (class 0 OID 61335) +-- Dependencies: 604 -- Data for Name: mdl_lesson_timer; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35864,7 +35866,7 @@ COPY public.mdl_lesson_timer (id, lessonid, userid, starttime, lessontime, compl -- -- TOC entry 11597 (class 0 OID 0) --- Dependencies: 786 +-- Dependencies: 605 -- Name: mdl_lesson_timer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35872,8 +35874,8 @@ SELECT pg_catalog.setval('public.mdl_lesson_timer_id_seq', 1, false); -- --- TOC entry 9956 (class 0 OID 18771) --- Dependencies: 471 +-- TOC entry 10091 (class 0 OID 61346) +-- Dependencies: 606 -- Data for Name: mdl_license; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35892,7 +35894,7 @@ COPY public.mdl_license (id, shortname, fullname, source, enabled, version, cust -- -- TOC entry 11598 (class 0 OID 0) --- Dependencies: 470 +-- Dependencies: 607 -- Name: mdl_license_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35900,8 +35902,8 @@ SELECT pg_catalog.setval('public.mdl_license_id_seq', 9, true); -- --- TOC entry 10008 (class 0 OID 19175) --- Dependencies: 523 +-- TOC entry 10093 (class 0 OID 61358) +-- Dependencies: 608 -- Data for Name: mdl_lock_db; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35911,7 +35913,7 @@ COPY public.mdl_lock_db (id, resourcekey, expires, owner) FROM stdin; -- -- TOC entry 11599 (class 0 OID 0) --- Dependencies: 522 +-- Dependencies: 609 -- Name: mdl_lock_db_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35919,8 +35921,8 @@ SELECT pg_catalog.setval('public.mdl_lock_db_id_seq', 1, false); -- --- TOC entry 9713 (class 0 OID 16787) --- Dependencies: 228 +-- TOC entry 10095 (class 0 OID 61364) +-- Dependencies: 610 -- Data for Name: mdl_log; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35929,8 +35931,8 @@ COPY public.mdl_log (id, "time", userid, ip, course, module, cmid, action, url, -- --- TOC entry 9717 (class 0 OID 16821) --- Dependencies: 232 +-- TOC entry 10096 (class 0 OID 61376) +-- Dependencies: 611 -- Data for Name: mdl_log_display; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -36129,7 +36131,7 @@ COPY public.mdl_log_display (id, module, action, mtable, field, component) FROM -- -- TOC entry 11600 (class 0 OID 0) --- Dependencies: 231 +-- Dependencies: 612 -- Name: mdl_log_display_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -36138,7 +36140,7 @@ SELECT pg_catalog.setval('public.mdl_log_display_id_seq', 189, true); -- -- TOC entry 11601 (class 0 OID 0) --- Dependencies: 227 +-- Dependencies: 613 -- Name: mdl_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -36146,8 +36148,8 @@ SELECT pg_catalog.setval('public.mdl_log_id_seq', 1, false); -- --- TOC entry 9715 (class 0 OID 16809) --- Dependencies: 230 +-- TOC entry 10099 (class 0 OID 61388) +-- Dependencies: 614 -- Data for Name: mdl_log_queries; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -36157,7 +36159,7 @@ COPY public.mdl_log_queries (id, qtype, sqltext, sqlparams, error, info, backtra -- -- TOC entry 11602 (class 0 OID 0) --- Dependencies: 229 +-- Dependencies: 615 -- Name: mdl_log_queries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -36165,8 +36167,8 @@ SELECT pg_catalog.setval('public.mdl_log_queries_id_seq', 1, false); -- --- TOC entry 10524 (class 0 OID 23375) --- Dependencies: 1039 +-- TOC entry 10101 (class 0 OID 61397) +-- Dependencies: 616 -- Data for Name: mdl_logstore_standard_log; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -36578,6 +36580,7 @@ COPY public.mdl_logstore_standard_log (id, eventname, component, action, target, 405 \\core\\event\\config_log_created core created config_log config_log 992 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_department";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N 406 \\core\\event\\config_log_created core created config_log config_log 993 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_department";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N 407 \\core\\event\\config_log_created core created config_log config_log 994 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_department";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N +1018 \\core\\event\\capability_assigned core assigned capability role_capabilities 7 u 0 1 10 0 2 0 \N 0 {"capability":"webservice\\/rest:use","oldpermission":0,"permission":1} 1609892624 web 67.182.30.218 \N 408 \\core\\event\\config_log_created core created config_log config_log 995 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N 409 \\core\\event\\config_log_created core created config_log config_log 996 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone1";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N 410 \\core\\event\\config_log_created core created config_log config_log 997 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N @@ -36942,6 +36945,7 @@ COPY public.mdl_logstore_standard_log (id, eventname, component, action, target, 769 \\core\\event\\config_log_created core created config_log config_log 1356 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"numsections1";s:8:"oldvalue";N;s:5:"value";s:2:"22";s:6:"plugin";s:19:"block_section_links";} 1609884657 web 67.182.30.218 \N 770 \\core\\event\\config_log_created core created config_log config_log 1357 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"incby1";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";s:19:"block_section_links";} 1609884657 web 67.182.30.218 \N 771 \\core\\event\\config_log_created core created config_log config_log 1358 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"numsections2";s:8:"oldvalue";N;s:5:"value";s:2:"40";s:6:"plugin";s:19:"block_section_links";} 1609884657 web 67.182.30.218 \N +1019 \\core\\event\\config_log_created core created config_log config_log 1601 c 0 1 10 0 2 0 \N 0 {"name":"enablemobilewebservice","oldvalue":"0","value":"1","plugin":null} 1609892624 web 67.182.30.218 \N 772 \\core\\event\\config_log_created core created config_log config_log 1359 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"incby2";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:19:"block_section_links";} 1609884657 web 67.182.30.218 \N 773 \\core\\event\\config_log_created core created config_log config_log 1360 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"displaycategories";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:20:"block_starredcourses";} 1609884657 web 67.182.30.218 \N 774 \\core\\event\\config_log_created core created config_log config_log 1361 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"apikey";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"block_tag_youtube";} 1609884657 web 67.182.30.218 \N @@ -37193,16 +37197,16 @@ COPY public.mdl_logstore_standard_log (id, eventname, component, action, target, -- -- TOC entry 11603 (class 0 OID 0) --- Dependencies: 1038 +-- Dependencies: 617 -- Name: mdl_logstore_standard_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_logstore_standard_log_id_seq', 1017, true); +SELECT pg_catalog.setval('public.mdl_logstore_standard_log_id_seq', 1019, true); -- --- TOC entry 10278 (class 0 OID 21443) --- Dependencies: 793 +-- TOC entry 10103 (class 0 OID 61411) +-- Dependencies: 618 -- Data for Name: mdl_lti; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37211,8 +37215,8 @@ COPY public.mdl_lti (id, course, name, intro, introformat, timecreated, timemodi -- --- TOC entry 10290 (class 0 OID 21535) --- Dependencies: 805 +-- TOC entry 10104 (class 0 OID 61427) +-- Dependencies: 619 -- Data for Name: mdl_lti_access_tokens; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37222,7 +37226,7 @@ COPY public.mdl_lti_access_tokens (id, typeid, scope, token, validuntil, timecre -- -- TOC entry 11604 (class 0 OID 0) --- Dependencies: 804 +-- Dependencies: 620 -- Name: mdl_lti_access_tokens_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37231,7 +37235,7 @@ SELECT pg_catalog.setval('public.mdl_lti_access_tokens_id_seq', 1, false); -- -- TOC entry 11605 (class 0 OID 0) --- Dependencies: 792 +-- Dependencies: 621 -- Name: mdl_lti_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37239,8 +37243,8 @@ SELECT pg_catalog.setval('public.mdl_lti_id_seq', 1, false); -- --- TOC entry 10288 (class 0 OID 21526) --- Dependencies: 803 +-- TOC entry 10107 (class 0 OID 61438) +-- Dependencies: 622 -- Data for Name: mdl_lti_submission; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37250,7 +37254,7 @@ COPY public.mdl_lti_submission (id, ltiid, userid, datesubmitted, dateupdated, g -- -- TOC entry 11606 (class 0 OID 0) --- Dependencies: 802 +-- Dependencies: 623 -- Name: mdl_lti_submission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37258,8 +37262,8 @@ SELECT pg_catalog.setval('public.mdl_lti_submission_id_seq', 1, false); -- --- TOC entry 10280 (class 0 OID 21465) --- Dependencies: 795 +-- TOC entry 10109 (class 0 OID 61443) +-- Dependencies: 624 -- Data for Name: mdl_lti_tool_proxies; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37269,7 +37273,7 @@ COPY public.mdl_lti_tool_proxies (id, name, regurl, state, guid, secret, vendorc -- -- TOC entry 11607 (class 0 OID 0) --- Dependencies: 794 +-- Dependencies: 625 -- Name: mdl_lti_tool_proxies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37277,8 +37281,8 @@ SELECT pg_catalog.setval('public.mdl_lti_tool_proxies_id_seq', 1, false); -- --- TOC entry 10286 (class 0 OID 21511) --- Dependencies: 801 +-- TOC entry 10111 (class 0 OID 61453) +-- Dependencies: 626 -- Data for Name: mdl_lti_tool_settings; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37288,7 +37292,7 @@ COPY public.mdl_lti_tool_settings (id, toolproxyid, typeid, course, coursemodule -- -- TOC entry 11608 (class 0 OID 0) --- Dependencies: 800 +-- Dependencies: 627 -- Name: mdl_lti_tool_settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37296,8 +37300,8 @@ SELECT pg_catalog.setval('public.mdl_lti_tool_settings_id_seq', 1, false); -- --- TOC entry 10282 (class 0 OID 21479) --- Dependencies: 797 +-- TOC entry 10113 (class 0 OID 61461) +-- Dependencies: 628 -- Data for Name: mdl_lti_types; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37306,8 +37310,8 @@ COPY public.mdl_lti_types (id, name, baseurl, tooldomain, state, course, coursev -- --- TOC entry 10284 (class 0 OID 21498) --- Dependencies: 799 +-- TOC entry 10114 (class 0 OID 61472) +-- Dependencies: 629 -- Data for Name: mdl_lti_types_config; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37317,7 +37321,7 @@ COPY public.mdl_lti_types_config (id, typeid, name, value) FROM stdin; -- -- TOC entry 11609 (class 0 OID 0) --- Dependencies: 798 +-- Dependencies: 630 -- Name: mdl_lti_types_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37326,7 +37330,7 @@ SELECT pg_catalog.setval('public.mdl_lti_types_config_id_seq', 1, false); -- -- TOC entry 11610 (class 0 OID 0) --- Dependencies: 796 +-- Dependencies: 631 -- Name: mdl_lti_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37334,8 +37338,8 @@ SELECT pg_catalog.setval('public.mdl_lti_types_id_seq', 1, false); -- --- TOC entry 10496 (class 0 OID 23196) --- Dependencies: 1011 +-- TOC entry 10117 (class 0 OID 61483) +-- Dependencies: 632 -- Data for Name: mdl_ltiservice_gradebookservices; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37345,7 +37349,7 @@ COPY public.mdl_ltiservice_gradebookservices (id, gradeitemid, courseid, toolpro -- -- TOC entry 11611 (class 0 OID 0) --- Dependencies: 1010 +-- Dependencies: 633 -- Name: mdl_ltiservice_gradebookservices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37353,8 +37357,8 @@ SELECT pg_catalog.setval('public.mdl_ltiservice_gradebookservices_id_seq', 1, fa -- --- TOC entry 9719 (class 0 OID 16835) --- Dependencies: 234 +-- TOC entry 10119 (class 0 OID 61491) +-- Dependencies: 634 -- Data for Name: mdl_message; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37363,8 +37367,8 @@ COPY public.mdl_message (id, useridfrom, useridto, subject, fullmessage, fullmes -- --- TOC entry 10398 (class 0 OID 22514) --- Dependencies: 913 +-- TOC entry 10120 (class 0 OID 61504) +-- Dependencies: 635 -- Data for Name: mdl_message_airnotifier_devices; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37374,7 +37378,7 @@ COPY public.mdl_message_airnotifier_devices (id, userdeviceid, enable) FROM stdi -- -- TOC entry 11612 (class 0 OID 0) --- Dependencies: 912 +-- Dependencies: 636 -- Name: mdl_message_airnotifier_devices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37382,8 +37386,8 @@ SELECT pg_catalog.setval('public.mdl_message_airnotifier_devices_id_seq', 1, fal -- --- TOC entry 9737 (class 0 OID 16968) --- Dependencies: 252 +-- TOC entry 10122 (class 0 OID 61510) +-- Dependencies: 637 -- Data for Name: mdl_message_contact_requests; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37393,7 +37397,7 @@ COPY public.mdl_message_contact_requests (id, userid, requesteduserid, timecreat -- -- TOC entry 11613 (class 0 OID 0) --- Dependencies: 251 +-- Dependencies: 638 -- Name: mdl_message_contact_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37401,8 +37405,8 @@ SELECT pg_catalog.setval('public.mdl_message_contact_requests_id_seq', 1, false) -- --- TOC entry 9735 (class 0 OID 16957) --- Dependencies: 250 +-- TOC entry 10124 (class 0 OID 61515) +-- Dependencies: 639 -- Data for Name: mdl_message_contacts; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37412,7 +37416,7 @@ COPY public.mdl_message_contacts (id, userid, contactid, timecreated) FROM stdin -- -- TOC entry 11614 (class 0 OID 0) --- Dependencies: 249 +-- Dependencies: 640 -- Name: mdl_message_contacts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37420,8 +37424,8 @@ SELECT pg_catalog.setval('public.mdl_message_contacts_id_seq', 1, false); -- --- TOC entry 9729 (class 0 OID 16922) --- Dependencies: 244 +-- TOC entry 10126 (class 0 OID 61520) +-- Dependencies: 641 -- Data for Name: mdl_message_conversation_actions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37431,7 +37435,7 @@ COPY public.mdl_message_conversation_actions (id, userid, conversationid, action -- -- TOC entry 11615 (class 0 OID 0) --- Dependencies: 243 +-- Dependencies: 642 -- Name: mdl_message_conversation_actions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37439,8 +37443,8 @@ SELECT pg_catalog.setval('public.mdl_message_conversation_actions_id_seq', 1, fa -- --- TOC entry 9727 (class 0 OID 16912) --- Dependencies: 242 +-- TOC entry 10128 (class 0 OID 61525) +-- Dependencies: 643 -- Data for Name: mdl_message_conversation_members; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37450,7 +37454,7 @@ COPY public.mdl_message_conversation_members (id, conversationid, userid, timecr -- -- TOC entry 11616 (class 0 OID 0) --- Dependencies: 241 +-- Dependencies: 644 -- Name: mdl_message_conversation_members_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37458,8 +37462,8 @@ SELECT pg_catalog.setval('public.mdl_message_conversation_members_id_seq', 1, fa -- --- TOC entry 9725 (class 0 OID 16895) --- Dependencies: 240 +-- TOC entry 10130 (class 0 OID 61530) +-- Dependencies: 645 -- Data for Name: mdl_message_conversations; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37469,7 +37473,7 @@ COPY public.mdl_message_conversations (id, type, name, convhash, component, item -- -- TOC entry 11617 (class 0 OID 0) --- Dependencies: 239 +-- Dependencies: 646 -- Name: mdl_message_conversations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37477,8 +37481,8 @@ SELECT pg_catalog.setval('public.mdl_message_conversations_id_seq', 1, false); -- --- TOC entry 10400 (class 0 OID 22524) --- Dependencies: 915 +-- TOC entry 10132 (class 0 OID 61540) +-- Dependencies: 647 -- Data for Name: mdl_message_email_messages; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37488,7 +37492,7 @@ COPY public.mdl_message_email_messages (id, useridto, conversationid, messageid) -- -- TOC entry 11618 (class 0 OID 0) --- Dependencies: 914 +-- Dependencies: 648 -- Name: mdl_message_email_messages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37497,7 +37501,7 @@ SELECT pg_catalog.setval('public.mdl_message_email_messages_id_seq', 1, false); -- -- TOC entry 11619 (class 0 OID 0) --- Dependencies: 233 +-- Dependencies: 649 -- Name: mdl_message_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37505,8 +37509,8 @@ SELECT pg_catalog.setval('public.mdl_message_id_seq', 1, false); -- --- TOC entry 10402 (class 0 OID 22535) --- Dependencies: 917 +-- TOC entry 10135 (class 0 OID 61547) +-- Dependencies: 650 -- Data for Name: mdl_message_popup; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37516,7 +37520,7 @@ COPY public.mdl_message_popup (id, messageid, isread) FROM stdin; -- -- TOC entry 11620 (class 0 OID 0) --- Dependencies: 916 +-- Dependencies: 651 -- Name: mdl_message_popup_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37524,8 +37528,8 @@ SELECT pg_catalog.setval('public.mdl_message_popup_id_seq', 1, false); -- --- TOC entry 10404 (class 0 OID 22546) --- Dependencies: 919 +-- TOC entry 10137 (class 0 OID 61553) +-- Dependencies: 652 -- Data for Name: mdl_message_popup_notifications; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37535,7 +37539,7 @@ COPY public.mdl_message_popup_notifications (id, notificationid) FROM stdin; -- -- TOC entry 11621 (class 0 OID 0) --- Dependencies: 918 +-- Dependencies: 653 -- Name: mdl_message_popup_notifications_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37543,8 +37547,8 @@ SELECT pg_catalog.setval('public.mdl_message_popup_notifications_id_seq', 1, fal -- --- TOC entry 9916 (class 0 OID 18489) --- Dependencies: 431 +-- TOC entry 10139 (class 0 OID 61558) +-- Dependencies: 654 -- Data for Name: mdl_message_processors; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37558,7 +37562,7 @@ COPY public.mdl_message_processors (id, name, enabled) FROM stdin; -- -- TOC entry 11622 (class 0 OID 0) --- Dependencies: 430 +-- Dependencies: 655 -- Name: mdl_message_processors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37566,8 +37570,8 @@ SELECT pg_catalog.setval('public.mdl_message_processors_id_seq', 4, true); -- --- TOC entry 9914 (class 0 OID 18475) --- Dependencies: 429 +-- TOC entry 10141 (class 0 OID 61565) +-- Dependencies: 656 -- Data for Name: mdl_message_providers; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37615,7 +37619,7 @@ COPY public.mdl_message_providers (id, name, component, capability) FROM stdin; -- -- TOC entry 11623 (class 0 OID 0) --- Dependencies: 428 +-- Dependencies: 657 -- Name: mdl_message_providers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37623,8 +37627,8 @@ SELECT pg_catalog.setval('public.mdl_message_providers_id_seq', 38, true); -- --- TOC entry 9721 (class 0 OID 16856) --- Dependencies: 236 +-- TOC entry 10143 (class 0 OID 61575) +-- Dependencies: 658 -- Data for Name: mdl_message_read; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37634,7 +37638,7 @@ COPY public.mdl_message_read (id, useridfrom, useridto, subject, fullmessage, fu -- -- TOC entry 11624 (class 0 OID 0) --- Dependencies: 235 +-- Dependencies: 659 -- Name: mdl_message_read_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37642,8 +37646,8 @@ SELECT pg_catalog.setval('public.mdl_message_read_id_seq', 1, false); -- --- TOC entry 9731 (class 0 OID 16932) --- Dependencies: 246 +-- TOC entry 10145 (class 0 OID 61591) +-- Dependencies: 660 -- Data for Name: mdl_message_user_actions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37653,7 +37657,7 @@ COPY public.mdl_message_user_actions (id, userid, messageid, action, timecreated -- -- TOC entry 11625 (class 0 OID 0) --- Dependencies: 245 +-- Dependencies: 661 -- Name: mdl_message_user_actions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37661,8 +37665,8 @@ SELECT pg_catalog.setval('public.mdl_message_user_actions_id_seq', 1, false); -- --- TOC entry 9739 (class 0 OID 16979) --- Dependencies: 254 +-- TOC entry 10147 (class 0 OID 61596) +-- Dependencies: 662 -- Data for Name: mdl_message_users_blocked; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37672,7 +37676,7 @@ COPY public.mdl_message_users_blocked (id, userid, blockeduserid, timecreated) F -- -- TOC entry 11626 (class 0 OID 0) --- Dependencies: 253 +-- Dependencies: 663 -- Name: mdl_message_users_blocked_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37680,8 +37684,8 @@ SELECT pg_catalog.setval('public.mdl_message_users_blocked_id_seq', 1, false); -- --- TOC entry 10018 (class 0 OID 19254) --- Dependencies: 533 +-- TOC entry 10149 (class 0 OID 61601) +-- Dependencies: 664 -- Data for Name: mdl_messageinbound_datakeys; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37691,7 +37695,7 @@ COPY public.mdl_messageinbound_datakeys (id, handler, datavalue, datakey, timecr -- -- TOC entry 11627 (class 0 OID 0) --- Dependencies: 532 +-- Dependencies: 665 -- Name: mdl_messageinbound_datakeys_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37699,8 +37703,8 @@ SELECT pg_catalog.setval('public.mdl_messageinbound_datakeys_id_seq', 1, false); -- --- TOC entry 10016 (class 0 OID 19240) --- Dependencies: 531 +-- TOC entry 10151 (class 0 OID 61606) +-- Dependencies: 666 -- Data for Name: mdl_messageinbound_handlers; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37713,7 +37717,7 @@ COPY public.mdl_messageinbound_handlers (id, component, classname, defaultexpira -- -- TOC entry 11628 (class 0 OID 0) --- Dependencies: 530 +-- Dependencies: 667 -- Name: mdl_messageinbound_handlers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37721,8 +37725,8 @@ SELECT pg_catalog.setval('public.mdl_messageinbound_handlers_id_seq', 3, true); -- --- TOC entry 10020 (class 0 OID 19264) --- Dependencies: 535 +-- TOC entry 10153 (class 0 OID 61616) +-- Dependencies: 668 -- Data for Name: mdl_messageinbound_messagelist; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37732,7 +37736,7 @@ COPY public.mdl_messageinbound_messagelist (id, messageid, userid, address, time -- -- TOC entry 11629 (class 0 OID 0) --- Dependencies: 534 +-- Dependencies: 669 -- Name: mdl_messageinbound_messagelist_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37740,8 +37744,8 @@ SELECT pg_catalog.setval('public.mdl_messageinbound_messagelist_id_seq', 1, fals -- --- TOC entry 9723 (class 0 OID 16879) --- Dependencies: 238 +-- TOC entry 10155 (class 0 OID 61624) +-- Dependencies: 670 -- Data for Name: mdl_messages; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37751,7 +37755,7 @@ COPY public.mdl_messages (id, useridfrom, conversationid, subject, fullmessage, -- -- TOC entry 11630 (class 0 OID 0) --- Dependencies: 237 +-- Dependencies: 671 -- Name: mdl_messages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37759,8 +37763,8 @@ SELECT pg_catalog.setval('public.mdl_messages_id_seq', 1, false); -- --- TOC entry 9824 (class 0 OID 17709) --- Dependencies: 339 +-- TOC entry 10157 (class 0 OID 61634) +-- Dependencies: 672 -- Data for Name: mdl_mnet_application; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37772,7 +37776,7 @@ COPY public.mdl_mnet_application (id, name, display_name, xmlrpc_server_url, sso -- -- TOC entry 11631 (class 0 OID 0) --- Dependencies: 338 +-- Dependencies: 673 -- Name: mdl_mnet_application_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37780,8 +37784,8 @@ SELECT pg_catalog.setval('public.mdl_mnet_application_id_seq', 2, true); -- --- TOC entry 9826 (class 0 OID 17725) --- Dependencies: 341 +-- TOC entry 10159 (class 0 OID 61647) +-- Dependencies: 674 -- Data for Name: mdl_mnet_host; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37792,8 +37796,8 @@ COPY public.mdl_mnet_host (id, deleted, wwwroot, ip_address, name, public_key, p -- --- TOC entry 9828 (class 0 OID 17749) --- Dependencies: 343 +-- TOC entry 10160 (class 0 OID 61665) +-- Dependencies: 675 -- Data for Name: mdl_mnet_host2service; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37803,7 +37807,7 @@ COPY public.mdl_mnet_host2service (id, hostid, serviceid, publish, subscribe) FR -- -- TOC entry 11632 (class 0 OID 0) --- Dependencies: 342 +-- Dependencies: 676 -- Name: mdl_mnet_host2service_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37812,7 +37816,7 @@ SELECT pg_catalog.setval('public.mdl_mnet_host2service_id_seq', 1, false); -- -- TOC entry 11633 (class 0 OID 0) --- Dependencies: 340 +-- Dependencies: 677 -- Name: mdl_mnet_host_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37820,8 +37824,8 @@ SELECT pg_catalog.setval('public.mdl_mnet_host_id_seq', 2, true); -- --- TOC entry 9830 (class 0 OID 17762) --- Dependencies: 345 +-- TOC entry 10163 (class 0 OID 61676) +-- Dependencies: 678 -- Data for Name: mdl_mnet_log; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37831,7 +37835,7 @@ COPY public.mdl_mnet_log (id, hostid, remoteid, "time", userid, ip, course, cour -- -- TOC entry 11634 (class 0 OID 0) --- Dependencies: 344 +-- Dependencies: 679 -- Name: mdl_mnet_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37839,8 +37843,8 @@ SELECT pg_catalog.setval('public.mdl_mnet_log_id_seq', 1, false); -- --- TOC entry 9834 (class 0 OID 17804) --- Dependencies: 349 +-- TOC entry 10165 (class 0 OID 61696) +-- Dependencies: 680 -- Data for Name: mdl_mnet_remote_rpc; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37866,7 +37870,7 @@ COPY public.mdl_mnet_remote_rpc (id, functionname, xmlrpcpath, plugintype, plugi -- -- TOC entry 11635 (class 0 OID 0) --- Dependencies: 348 +-- Dependencies: 681 -- Name: mdl_mnet_remote_rpc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37874,8 +37878,8 @@ SELECT pg_catalog.setval('public.mdl_mnet_remote_rpc_id_seq', 16, true); -- --- TOC entry 9840 (class 0 OID 17839) --- Dependencies: 355 +-- TOC entry 10167 (class 0 OID 61705) +-- Dependencies: 682 -- Data for Name: mdl_mnet_remote_service2rpc; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37901,7 +37905,7 @@ COPY public.mdl_mnet_remote_service2rpc (id, serviceid, rpcid) FROM stdin; -- -- TOC entry 11636 (class 0 OID 0) --- Dependencies: 354 +-- Dependencies: 683 -- Name: mdl_mnet_remote_service2rpc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37909,8 +37913,8 @@ SELECT pg_catalog.setval('public.mdl_mnet_remote_service2rpc_id_seq', 16, true); -- --- TOC entry 9832 (class 0 OID 17786) --- Dependencies: 347 +-- TOC entry 10169 (class 0 OID 61712) +-- Dependencies: 684 -- Data for Name: mdl_mnet_rpc; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37935,7 +37939,7 @@ COPY public.mdl_mnet_rpc (id, functionname, xmlrpcpath, plugintype, pluginname, -- -- TOC entry 11637 (class 0 OID 0) --- Dependencies: 346 +-- Dependencies: 685 -- Name: mdl_mnet_rpc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37943,8 +37947,8 @@ SELECT pg_catalog.setval('public.mdl_mnet_rpc_id_seq', 15, true); -- --- TOC entry 9836 (class 0 OID 17816) --- Dependencies: 351 +-- TOC entry 10171 (class 0 OID 61726) +-- Dependencies: 686 -- Data for Name: mdl_mnet_service; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37957,8 +37961,8 @@ COPY public.mdl_mnet_service (id, name, description, apiversion, offer) FROM std -- --- TOC entry 9838 (class 0 OID 17828) --- Dependencies: 353 +-- TOC entry 10172 (class 0 OID 61733) +-- Dependencies: 687 -- Data for Name: mdl_mnet_service2rpc; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37983,7 +37987,7 @@ COPY public.mdl_mnet_service2rpc (id, serviceid, rpcid) FROM stdin; -- -- TOC entry 11638 (class 0 OID 0) --- Dependencies: 352 +-- Dependencies: 688 -- Name: mdl_mnet_service2rpc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37992,7 +37996,7 @@ SELECT pg_catalog.setval('public.mdl_mnet_service2rpc_id_seq', 15, true); -- -- TOC entry 11639 (class 0 OID 0) --- Dependencies: 350 +-- Dependencies: 689 -- Name: mdl_mnet_service_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38000,8 +38004,8 @@ SELECT pg_catalog.setval('public.mdl_mnet_service_id_seq', 4, true); -- --- TOC entry 9842 (class 0 OID 17850) --- Dependencies: 357 +-- TOC entry 10175 (class 0 OID 61742) +-- Dependencies: 690 -- Data for Name: mdl_mnet_session; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38011,7 +38015,7 @@ COPY public.mdl_mnet_session (id, userid, username, token, mnethostid, useragent -- -- TOC entry 11640 (class 0 OID 0) --- Dependencies: 356 +-- Dependencies: 691 -- Name: mdl_mnet_session_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38019,8 +38023,8 @@ SELECT pg_catalog.setval('public.mdl_mnet_session_id_seq', 1, false); -- --- TOC entry 9844 (class 0 OID 17867) --- Dependencies: 359 +-- TOC entry 10177 (class 0 OID 61755) +-- Dependencies: 692 -- Data for Name: mdl_mnet_sso_access_control; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38030,7 +38034,7 @@ COPY public.mdl_mnet_sso_access_control (id, username, mnet_host_id, accessctrl) -- -- TOC entry 11641 (class 0 OID 0) --- Dependencies: 358 +-- Dependencies: 693 -- Name: mdl_mnet_sso_access_control_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38038,8 +38042,8 @@ SELECT pg_catalog.setval('public.mdl_mnet_sso_access_control_id_seq', 1, false); -- --- TOC entry 10426 (class 0 OID 22687) --- Dependencies: 941 +-- TOC entry 10179 (class 0 OID 61763) +-- Dependencies: 694 -- Data for Name: mdl_mnetservice_enrol_courses; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38049,7 +38053,7 @@ COPY public.mdl_mnetservice_enrol_courses (id, hostid, remoteid, categoryid, cat -- -- TOC entry 11642 (class 0 OID 0) --- Dependencies: 940 +-- Dependencies: 695 -- Name: mdl_mnetservice_enrol_courses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38057,8 +38061,8 @@ SELECT pg_catalog.setval('public.mdl_mnetservice_enrol_courses_id_seq', 1, false -- --- TOC entry 10428 (class 0 OID 22706) --- Dependencies: 943 +-- TOC entry 10181 (class 0 OID 61778) +-- Dependencies: 696 -- Data for Name: mdl_mnetservice_enrol_enrolments; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38068,7 +38072,7 @@ COPY public.mdl_mnetservice_enrol_enrolments (id, hostid, userid, remotecourseid -- -- TOC entry 11643 (class 0 OID 0) --- Dependencies: 942 +-- Dependencies: 697 -- Name: mdl_mnetservice_enrol_enrolments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38076,8 +38080,8 @@ SELECT pg_catalog.setval('public.mdl_mnetservice_enrol_enrolments_id_seq', 1, fa -- --- TOC entry 9741 (class 0 OID 16990) --- Dependencies: 256 +-- TOC entry 10183 (class 0 OID 61786) +-- Dependencies: 698 -- Data for Name: mdl_modules; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38110,7 +38114,7 @@ COPY public.mdl_modules (id, name, cron, lastcron, search, visible) FROM stdin; -- -- TOC entry 11644 (class 0 OID 0) --- Dependencies: 255 +-- Dependencies: 699 -- Name: mdl_modules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38118,8 +38122,8 @@ SELECT pg_catalog.setval('public.mdl_modules_id_seq', 23, true); -- --- TOC entry 9743 (class 0 OID 17004) --- Dependencies: 258 +-- TOC entry 10185 (class 0 OID 61796) +-- Dependencies: 700 -- Data for Name: mdl_my_pages; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38132,7 +38136,7 @@ COPY public.mdl_my_pages (id, userid, name, private, sortorder) FROM stdin; -- -- TOC entry 11645 (class 0 OID 0) --- Dependencies: 257 +-- Dependencies: 701 -- Name: mdl_my_pages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38140,8 +38144,8 @@ SELECT pg_catalog.setval('public.mdl_my_pages_id_seq', 3, true); -- --- TOC entry 9733 (class 0 OID 16943) --- Dependencies: 248 +-- TOC entry 10187 (class 0 OID 61805) +-- Dependencies: 702 -- Data for Name: mdl_notifications; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38151,7 +38155,7 @@ COPY public.mdl_notifications (id, useridfrom, useridto, subject, fullmessage, f -- -- TOC entry 11646 (class 0 OID 0) --- Dependencies: 247 +-- Dependencies: 703 -- Name: mdl_notifications_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38159,8 +38163,8 @@ SELECT pg_catalog.setval('public.mdl_notifications_id_seq', 1, false); -- --- TOC entry 10082 (class 0 OID 19663) --- Dependencies: 597 +-- TOC entry 10189 (class 0 OID 61814) +-- Dependencies: 704 -- Data for Name: mdl_oauth2_access_token; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38170,7 +38174,7 @@ COPY public.mdl_oauth2_access_token (id, timecreated, timemodified, usermodified -- -- TOC entry 11647 (class 0 OID 0) --- Dependencies: 596 +-- Dependencies: 705 -- Name: mdl_oauth2_access_token_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38178,8 +38182,8 @@ SELECT pg_catalog.setval('public.mdl_oauth2_access_token_id_seq', 1, false); -- --- TOC entry 10056 (class 0 OID 19474) --- Dependencies: 571 +-- TOC entry 10191 (class 0 OID 61822) +-- Dependencies: 706 -- Data for Name: mdl_oauth2_endpoint; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38189,7 +38193,7 @@ COPY public.mdl_oauth2_endpoint (id, timecreated, timemodified, usermodified, na -- -- TOC entry 11648 (class 0 OID 0) --- Dependencies: 570 +-- Dependencies: 707 -- Name: mdl_oauth2_endpoint_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38197,8 +38201,8 @@ SELECT pg_catalog.setval('public.mdl_oauth2_endpoint_id_seq', 1, false); -- --- TOC entry 10058 (class 0 OID 19487) --- Dependencies: 573 +-- TOC entry 10193 (class 0 OID 61831) +-- Dependencies: 708 -- Data for Name: mdl_oauth2_issuer; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38208,7 +38212,7 @@ COPY public.mdl_oauth2_issuer (id, timecreated, timemodified, usermodified, name -- -- TOC entry 11649 (class 0 OID 0) --- Dependencies: 572 +-- Dependencies: 709 -- Name: mdl_oauth2_issuer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38216,8 +38220,8 @@ SELECT pg_catalog.setval('public.mdl_oauth2_issuer_id_seq', 1, false); -- --- TOC entry 10060 (class 0 OID 19503) --- Dependencies: 575 +-- TOC entry 10195 (class 0 OID 61844) +-- Dependencies: 710 -- Data for Name: mdl_oauth2_system_account; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38227,7 +38231,7 @@ COPY public.mdl_oauth2_system_account (id, timecreated, timemodified, usermodifi -- -- TOC entry 11650 (class 0 OID 0) --- Dependencies: 574 +-- Dependencies: 711 -- Name: mdl_oauth2_system_account_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38235,8 +38239,8 @@ SELECT pg_catalog.setval('public.mdl_oauth2_system_account_id_seq', 1, false); -- --- TOC entry 10062 (class 0 OID 19515) --- Dependencies: 577 +-- TOC entry 10197 (class 0 OID 61852) +-- Dependencies: 712 -- Data for Name: mdl_oauth2_user_field_mapping; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38246,7 +38250,7 @@ COPY public.mdl_oauth2_user_field_mapping (id, timemodified, timecreated, usermo -- -- TOC entry 11651 (class 0 OID 0) --- Dependencies: 576 +-- Dependencies: 713 -- Name: mdl_oauth2_user_field_mapping_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38254,8 +38258,8 @@ SELECT pg_catalog.setval('public.mdl_oauth2_user_field_mapping_id_seq', 1, false -- --- TOC entry 10292 (class 0 OID 21549) --- Dependencies: 807 +-- TOC entry 10199 (class 0 OID 61859) +-- Dependencies: 714 -- Data for Name: mdl_page; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38265,7 +38269,7 @@ COPY public.mdl_page (id, course, name, intro, introformat, content, contentform -- -- TOC entry 11652 (class 0 OID 0) --- Dependencies: 806 +-- Dependencies: 715 -- Name: mdl_page_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38273,8 +38277,8 @@ SELECT pg_catalog.setval('public.mdl_page_id_seq', 1, false); -- --- TOC entry 9904 (class 0 OID 18402) --- Dependencies: 419 +-- TOC entry 10201 (class 0 OID 61875) +-- Dependencies: 716 -- Data for Name: mdl_portfolio_instance; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38283,8 +38287,8 @@ COPY public.mdl_portfolio_instance (id, plugin, name, visible) FROM stdin; -- --- TOC entry 9906 (class 0 OID 18413) --- Dependencies: 421 +-- TOC entry 10202 (class 0 OID 61881) +-- Dependencies: 717 -- Data for Name: mdl_portfolio_instance_config; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38294,7 +38298,7 @@ COPY public.mdl_portfolio_instance_config (id, instance, name, value) FROM stdin -- -- TOC entry 11653 (class 0 OID 0) --- Dependencies: 420 +-- Dependencies: 718 -- Name: mdl_portfolio_instance_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38303,7 +38307,7 @@ SELECT pg_catalog.setval('public.mdl_portfolio_instance_config_id_seq', 1, false -- -- TOC entry 11654 (class 0 OID 0) --- Dependencies: 418 +-- Dependencies: 719 -- Name: mdl_portfolio_instance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38311,8 +38315,8 @@ SELECT pg_catalog.setval('public.mdl_portfolio_instance_id_seq', 1, false); -- --- TOC entry 9908 (class 0 OID 18427) --- Dependencies: 423 +-- TOC entry 10205 (class 0 OID 61892) +-- Dependencies: 720 -- Data for Name: mdl_portfolio_instance_user; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38322,7 +38326,7 @@ COPY public.mdl_portfolio_instance_user (id, instance, userid, name, value) FROM -- -- TOC entry 11655 (class 0 OID 0) --- Dependencies: 422 +-- Dependencies: 721 -- Name: mdl_portfolio_instance_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38330,8 +38334,8 @@ SELECT pg_catalog.setval('public.mdl_portfolio_instance_user_id_seq', 1, false); -- --- TOC entry 9910 (class 0 OID 18441) --- Dependencies: 425 +-- TOC entry 10207 (class 0 OID 61901) +-- Dependencies: 722 -- Data for Name: mdl_portfolio_log; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38341,7 +38345,7 @@ COPY public.mdl_portfolio_log (id, userid, "time", portfolio, caller_class, call -- -- TOC entry 11656 (class 0 OID 0) --- Dependencies: 424 +-- Dependencies: 723 -- Name: mdl_portfolio_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38349,8 +38353,8 @@ SELECT pg_catalog.setval('public.mdl_portfolio_log_id_seq', 1, false); -- --- TOC entry 10432 (class 0 OID 22733) --- Dependencies: 947 +-- TOC entry 10209 (class 0 OID 61915) +-- Dependencies: 724 -- Data for Name: mdl_portfolio_mahara_queue; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38360,7 +38364,7 @@ COPY public.mdl_portfolio_mahara_queue (id, transferid, token) FROM stdin; -- -- TOC entry 11657 (class 0 OID 0) --- Dependencies: 946 +-- Dependencies: 725 -- Name: mdl_portfolio_mahara_queue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38368,8 +38372,8 @@ SELECT pg_catalog.setval('public.mdl_portfolio_mahara_queue_id_seq', 1, false); -- --- TOC entry 9912 (class 0 OID 18460) --- Dependencies: 427 +-- TOC entry 10211 (class 0 OID 61921) +-- Dependencies: 726 -- Data for Name: mdl_portfolio_tempdata; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38379,7 +38383,7 @@ COPY public.mdl_portfolio_tempdata (id, data, expirytime, userid, instance, queu -- -- TOC entry 11658 (class 0 OID 0) --- Dependencies: 426 +-- Dependencies: 727 -- Name: mdl_portfolio_tempdata_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38387,8 +38391,8 @@ SELECT pg_catalog.setval('public.mdl_portfolio_tempdata_id_seq', 1, false); -- --- TOC entry 9771 (class 0 OID 17291) --- Dependencies: 286 +-- TOC entry 10213 (class 0 OID 61931) +-- Dependencies: 728 -- Data for Name: mdl_post; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38398,7 +38402,7 @@ COPY public.mdl_post (id, module, userid, courseid, groupid, moduleid, coursemod -- -- TOC entry 11659 (class 0 OID 0) --- Dependencies: 285 +-- Dependencies: 729 -- Name: mdl_post_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38406,8 +38410,8 @@ SELECT pg_catalog.setval('public.mdl_post_id_seq', 1, false); -- --- TOC entry 9964 (class 0 OID 18837) --- Dependencies: 479 +-- TOC entry 10215 (class 0 OID 61953) +-- Dependencies: 730 -- Data for Name: mdl_profiling; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38417,7 +38421,7 @@ COPY public.mdl_profiling (id, runid, url, data, totalexecutiontime, totalcputim -- -- TOC entry 11660 (class 0 OID 0) --- Dependencies: 478 +-- Dependencies: 731 -- Name: mdl_profiling_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38425,8 +38429,8 @@ SELECT pg_catalog.setval('public.mdl_profiling_id_seq', 1, false); -- --- TOC entry 10118 (class 0 OID 19928) --- Dependencies: 633 +-- TOC entry 10217 (class 0 OID 61965) +-- Dependencies: 732 -- Data for Name: mdl_qtype_ddimageortext; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38435,8 +38439,8 @@ COPY public.mdl_qtype_ddimageortext (id, questionid, shuffleanswers, correctfeed -- --- TOC entry 10122 (class 0 OID 19963) --- Dependencies: 637 +-- TOC entry 10218 (class 0 OID 61977) +-- Dependencies: 733 -- Data for Name: mdl_qtype_ddimageortext_drags; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38446,7 +38450,7 @@ COPY public.mdl_qtype_ddimageortext_drags (id, questionid, no, draggroup, infini -- -- TOC entry 11661 (class 0 OID 0) --- Dependencies: 636 +-- Dependencies: 734 -- Name: mdl_qtype_ddimageortext_drags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38454,8 +38458,8 @@ SELECT pg_catalog.setval('public.mdl_qtype_ddimageortext_drags_id_seq', 1, false -- --- TOC entry 10120 (class 0 OID 19946) --- Dependencies: 635 +-- TOC entry 10220 (class 0 OID 61989) +-- Dependencies: 735 -- Data for Name: mdl_qtype_ddimageortext_drops; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38465,7 +38469,7 @@ COPY public.mdl_qtype_ddimageortext_drops (id, questionid, no, xleft, ytop, choi -- -- TOC entry 11662 (class 0 OID 0) --- Dependencies: 634 +-- Dependencies: 736 -- Name: mdl_qtype_ddimageortext_drops_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38474,7 +38478,7 @@ SELECT pg_catalog.setval('public.mdl_qtype_ddimageortext_drops_id_seq', 1, false -- -- TOC entry 11663 (class 0 OID 0) --- Dependencies: 632 +-- Dependencies: 737 -- Name: mdl_qtype_ddimageortext_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38482,8 +38486,8 @@ SELECT pg_catalog.setval('public.mdl_qtype_ddimageortext_id_seq', 1, false); -- --- TOC entry 10124 (class 0 OID 19979) --- Dependencies: 639 +-- TOC entry 10223 (class 0 OID 62004) +-- Dependencies: 738 -- Data for Name: mdl_qtype_ddmarker; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38492,8 +38496,8 @@ COPY public.mdl_qtype_ddmarker (id, questionid, shuffleanswers, correctfeedback, -- --- TOC entry 10128 (class 0 OID 20013) --- Dependencies: 643 +-- TOC entry 10224 (class 0 OID 62017) +-- Dependencies: 739 -- Data for Name: mdl_qtype_ddmarker_drags; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38503,7 +38507,7 @@ COPY public.mdl_qtype_ddmarker_drags (id, questionid, no, label, infinite, noofd -- -- TOC entry 11664 (class 0 OID 0) --- Dependencies: 642 +-- Dependencies: 740 -- Name: mdl_qtype_ddmarker_drags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38511,8 +38515,8 @@ SELECT pg_catalog.setval('public.mdl_qtype_ddmarker_drags_id_seq', 1, false); -- --- TOC entry 10126 (class 0 OID 19998) --- Dependencies: 641 +-- TOC entry 10226 (class 0 OID 62029) +-- Dependencies: 741 -- Data for Name: mdl_qtype_ddmarker_drops; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38522,7 +38526,7 @@ COPY public.mdl_qtype_ddmarker_drops (id, questionid, no, shape, coords, choice) -- -- TOC entry 11665 (class 0 OID 0) --- Dependencies: 640 +-- Dependencies: 742 -- Name: mdl_qtype_ddmarker_drops_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38531,7 +38535,7 @@ SELECT pg_catalog.setval('public.mdl_qtype_ddmarker_drops_id_seq', 1, false); -- -- TOC entry 11666 (class 0 OID 0) --- Dependencies: 638 +-- Dependencies: 743 -- Name: mdl_qtype_ddmarker_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38539,8 +38543,8 @@ SELECT pg_catalog.setval('public.mdl_qtype_ddmarker_id_seq', 1, false); -- --- TOC entry 10132 (class 0 OID 20047) --- Dependencies: 647 +-- TOC entry 10229 (class 0 OID 62042) +-- Dependencies: 744 -- Data for Name: mdl_qtype_essay_options; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38550,7 +38554,7 @@ COPY public.mdl_qtype_essay_options (id, questionid, responseformat, responsereq -- -- TOC entry 11667 (class 0 OID 0) --- Dependencies: 646 +-- Dependencies: 745 -- Name: mdl_qtype_essay_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38558,8 +38562,8 @@ SELECT pg_catalog.setval('public.mdl_qtype_essay_options_id_seq', 1, false); -- --- TOC entry 10136 (class 0 OID 20084) --- Dependencies: 651 +-- TOC entry 10231 (class 0 OID 62057) +-- Dependencies: 746 -- Data for Name: mdl_qtype_match_options; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38569,7 +38573,7 @@ COPY public.mdl_qtype_match_options (id, questionid, shuffleanswers, correctfeed -- -- TOC entry 11668 (class 0 OID 0) --- Dependencies: 650 +-- Dependencies: 747 -- Name: mdl_qtype_match_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38577,8 +38581,8 @@ SELECT pg_catalog.setval('public.mdl_qtype_match_options_id_seq', 1, false); -- --- TOC entry 10138 (class 0 OID 20102) --- Dependencies: 653 +-- TOC entry 10233 (class 0 OID 62071) +-- Dependencies: 748 -- Data for Name: mdl_qtype_match_subquestions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38588,7 +38592,7 @@ COPY public.mdl_qtype_match_subquestions (id, questionid, questiontext, question -- -- TOC entry 11669 (class 0 OID 0) --- Dependencies: 652 +-- Dependencies: 749 -- Name: mdl_qtype_match_subquestions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38596,8 +38600,8 @@ SELECT pg_catalog.setval('public.mdl_qtype_match_subquestions_id_seq', 1, false) -- --- TOC entry 10142 (class 0 OID 20130) --- Dependencies: 657 +-- TOC entry 10235 (class 0 OID 62082) +-- Dependencies: 750 -- Data for Name: mdl_qtype_multichoice_options; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38607,7 +38611,7 @@ COPY public.mdl_qtype_multichoice_options (id, questionid, layout, single, shuff -- -- TOC entry 11670 (class 0 OID 0) --- Dependencies: 656 +-- Dependencies: 751 -- Name: mdl_qtype_multichoice_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38615,8 +38619,8 @@ SELECT pg_catalog.setval('public.mdl_qtype_multichoice_options_id_seq', 1, false -- --- TOC entry 10150 (class 0 OID 20192) --- Dependencies: 665 +-- TOC entry 10237 (class 0 OID 62100) +-- Dependencies: 752 -- Data for Name: mdl_qtype_randomsamatch_options; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38626,7 +38630,7 @@ COPY public.mdl_qtype_randomsamatch_options (id, questionid, choose, subcats, co -- -- TOC entry 11671 (class 0 OID 0) --- Dependencies: 664 +-- Dependencies: 753 -- Name: mdl_qtype_randomsamatch_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38634,8 +38638,8 @@ SELECT pg_catalog.setval('public.mdl_qtype_randomsamatch_options_id_seq', 1, fal -- --- TOC entry 10152 (class 0 OID 20211) --- Dependencies: 667 +-- TOC entry 10239 (class 0 OID 62115) +-- Dependencies: 754 -- Data for Name: mdl_qtype_shortanswer_options; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38645,7 +38649,7 @@ COPY public.mdl_qtype_shortanswer_options (id, questionid, usecase) FROM stdin; -- -- TOC entry 11672 (class 0 OID 0) --- Dependencies: 666 +-- Dependencies: 755 -- Name: mdl_qtype_shortanswer_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38653,8 +38657,8 @@ SELECT pg_catalog.setval('public.mdl_qtype_shortanswer_options_id_seq', 1, false -- --- TOC entry 9804 (class 0 OID 17557) --- Dependencies: 319 +-- TOC entry 10241 (class 0 OID 62122) +-- Dependencies: 756 -- Data for Name: mdl_question; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38663,8 +38667,8 @@ COPY public.mdl_question (id, category, parent, name, questiontext, questiontext -- --- TOC entry 9806 (class 0 OID 17588) --- Dependencies: 321 +-- TOC entry 10242 (class 0 OID 62142) +-- Dependencies: 757 -- Data for Name: mdl_question_answers; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38674,7 +38678,7 @@ COPY public.mdl_question_answers (id, question, answer, answerformat, fraction, -- -- TOC entry 11673 (class 0 OID 0) --- Dependencies: 320 +-- Dependencies: 758 -- Name: mdl_question_answers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38682,8 +38686,8 @@ SELECT pg_catalog.setval('public.mdl_question_answers_id_seq', 1, false); -- --- TOC entry 9816 (class 0 OID 17659) --- Dependencies: 331 +-- TOC entry 10244 (class 0 OID 62154) +-- Dependencies: 759 -- Data for Name: mdl_question_attempt_step_data; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38693,7 +38697,7 @@ COPY public.mdl_question_attempt_step_data (id, attemptstepid, name, value) FROM -- -- TOC entry 11674 (class 0 OID 0) --- Dependencies: 330 +-- Dependencies: 760 -- Name: mdl_question_attempt_step_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38701,8 +38705,8 @@ SELECT pg_catalog.setval('public.mdl_question_attempt_step_data_id_seq', 1, fals -- --- TOC entry 9814 (class 0 OID 17647) --- Dependencies: 329 +-- TOC entry 10246 (class 0 OID 62163) +-- Dependencies: 761 -- Data for Name: mdl_question_attempt_steps; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38712,7 +38716,7 @@ COPY public.mdl_question_attempt_steps (id, questionattemptid, sequencenumber, s -- -- TOC entry 11675 (class 0 OID 0) --- Dependencies: 328 +-- Dependencies: 762 -- Name: mdl_question_attempt_steps_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38720,8 +38724,8 @@ SELECT pg_catalog.setval('public.mdl_question_attempt_steps_id_seq', 1, false); -- --- TOC entry 9812 (class 0 OID 17628) --- Dependencies: 327 +-- TOC entry 10248 (class 0 OID 62169) +-- Dependencies: 763 -- Data for Name: mdl_question_attempts; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38731,7 +38735,7 @@ COPY public.mdl_question_attempts (id, questionusageid, slot, behaviour, questio -- -- TOC entry 11676 (class 0 OID 0) --- Dependencies: 326 +-- Dependencies: 764 -- Name: mdl_question_attempts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38739,8 +38743,8 @@ SELECT pg_catalog.setval('public.mdl_question_attempts_id_seq', 1, false); -- --- TOC entry 10108 (class 0 OID 19849) --- Dependencies: 623 +-- TOC entry 10250 (class 0 OID 62181) +-- Dependencies: 765 -- Data for Name: mdl_question_calculated; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38750,7 +38754,7 @@ COPY public.mdl_question_calculated (id, question, answer, tolerance, tolerancet -- -- TOC entry 11677 (class 0 OID 0) --- Dependencies: 622 +-- Dependencies: 766 -- Name: mdl_question_calculated_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38758,8 +38762,8 @@ SELECT pg_catalog.setval('public.mdl_question_calculated_id_seq', 1, false); -- --- TOC entry 10110 (class 0 OID 19865) --- Dependencies: 625 +-- TOC entry 10252 (class 0 OID 62192) +-- Dependencies: 767 -- Data for Name: mdl_question_calculated_options; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38769,7 +38773,7 @@ COPY public.mdl_question_calculated_options (id, question, synchronize, single, -- -- TOC entry 11678 (class 0 OID 0) --- Dependencies: 624 +-- Dependencies: 768 -- Name: mdl_question_calculated_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38777,8 +38781,8 @@ SELECT pg_catalog.setval('public.mdl_question_calculated_options_id_seq', 1, fal -- --- TOC entry 9802 (class 0 OID 17536) --- Dependencies: 317 +-- TOC entry 10254 (class 0 OID 62209) +-- Dependencies: 769 -- Data for Name: mdl_question_categories; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38788,7 +38792,7 @@ COPY public.mdl_question_categories (id, name, contextid, info, infoformat, stam -- -- TOC entry 11679 (class 0 OID 0) --- Dependencies: 316 +-- Dependencies: 770 -- Name: mdl_question_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38796,8 +38800,8 @@ SELECT pg_catalog.setval('public.mdl_question_categories_id_seq', 1, false); -- --- TOC entry 10112 (class 0 OID 19886) --- Dependencies: 627 +-- TOC entry 10256 (class 0 OID 62223) +-- Dependencies: 771 -- Data for Name: mdl_question_dataset_definitions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38807,7 +38811,7 @@ COPY public.mdl_question_dataset_definitions (id, category, name, type, options, -- -- TOC entry 11680 (class 0 OID 0) --- Dependencies: 626 +-- Dependencies: 772 -- Name: mdl_question_dataset_definitions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38815,8 +38819,8 @@ SELECT pg_catalog.setval('public.mdl_question_dataset_definitions_id_seq', 1, fa -- --- TOC entry 10114 (class 0 OID 19903) --- Dependencies: 629 +-- TOC entry 10258 (class 0 OID 62236) +-- Dependencies: 773 -- Data for Name: mdl_question_dataset_items; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38826,7 +38830,7 @@ COPY public.mdl_question_dataset_items (id, definition, itemnumber, value) FROM -- -- TOC entry 11681 (class 0 OID 0) --- Dependencies: 628 +-- Dependencies: 774 -- Name: mdl_question_dataset_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38834,8 +38838,8 @@ SELECT pg_catalog.setval('public.mdl_question_dataset_items_id_seq', 1, false); -- --- TOC entry 10116 (class 0 OID 19915) --- Dependencies: 631 +-- TOC entry 10260 (class 0 OID 62244) +-- Dependencies: 775 -- Data for Name: mdl_question_datasets; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38845,7 +38849,7 @@ COPY public.mdl_question_datasets (id, question, datasetdefinition) FROM stdin; -- -- TOC entry 11682 (class 0 OID 0) --- Dependencies: 630 +-- Dependencies: 776 -- Name: mdl_question_datasets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38853,8 +38857,8 @@ SELECT pg_catalog.setval('public.mdl_question_datasets_id_seq', 1, false); -- --- TOC entry 10130 (class 0 OID 20029) --- Dependencies: 645 +-- TOC entry 10262 (class 0 OID 62251) +-- Dependencies: 777 -- Data for Name: mdl_question_ddwtos; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38864,7 +38868,7 @@ COPY public.mdl_question_ddwtos (id, questionid, shuffleanswers, correctfeedback -- -- TOC entry 11683 (class 0 OID 0) --- Dependencies: 644 +-- Dependencies: 778 -- Name: mdl_question_ddwtos_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38872,8 +38876,8 @@ SELECT pg_catalog.setval('public.mdl_question_ddwtos_id_seq', 1, false); -- --- TOC entry 10134 (class 0 OID 20066) --- Dependencies: 649 +-- TOC entry 10264 (class 0 OID 62265) +-- Dependencies: 779 -- Data for Name: mdl_question_gapselect; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38883,7 +38887,7 @@ COPY public.mdl_question_gapselect (id, questionid, shuffleanswers, correctfeedb -- -- TOC entry 11684 (class 0 OID 0) --- Dependencies: 648 +-- Dependencies: 780 -- Name: mdl_question_gapselect_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38891,8 +38895,8 @@ SELECT pg_catalog.setval('public.mdl_question_gapselect_id_seq', 1, false); -- --- TOC entry 9808 (class 0 OID 17604) --- Dependencies: 323 +-- TOC entry 10266 (class 0 OID 62279) +-- Dependencies: 781 -- Data for Name: mdl_question_hints; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38902,7 +38906,7 @@ COPY public.mdl_question_hints (id, questionid, hint, hintformat, shownumcorrect -- -- TOC entry 11685 (class 0 OID 0) --- Dependencies: 322 +-- Dependencies: 782 -- Name: mdl_question_hints_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38911,7 +38915,7 @@ SELECT pg_catalog.setval('public.mdl_question_hints_id_seq', 1, false); -- -- TOC entry 11686 (class 0 OID 0) --- Dependencies: 318 +-- Dependencies: 783 -- Name: mdl_question_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38919,8 +38923,8 @@ SELECT pg_catalog.setval('public.mdl_question_id_seq', 1, false); -- --- TOC entry 10140 (class 0 OID 20117) --- Dependencies: 655 +-- TOC entry 10269 (class 0 OID 62290) +-- Dependencies: 784 -- Data for Name: mdl_question_multianswer; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38930,7 +38934,7 @@ COPY public.mdl_question_multianswer (id, question, sequence) FROM stdin; -- -- TOC entry 11687 (class 0 OID 0) --- Dependencies: 654 +-- Dependencies: 785 -- Name: mdl_question_multianswer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38938,8 +38942,8 @@ SELECT pg_catalog.setval('public.mdl_question_multianswer_id_seq', 1, false); -- --- TOC entry 10144 (class 0 OID 20152) --- Dependencies: 659 +-- TOC entry 10271 (class 0 OID 62299) +-- Dependencies: 786 -- Data for Name: mdl_question_numerical; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38949,7 +38953,7 @@ COPY public.mdl_question_numerical (id, question, answer, tolerance) FROM stdin; -- -- TOC entry 11688 (class 0 OID 0) --- Dependencies: 658 +-- Dependencies: 787 -- Name: mdl_question_numerical_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38957,8 +38961,8 @@ SELECT pg_catalog.setval('public.mdl_question_numerical_id_seq', 1, false); -- --- TOC entry 10146 (class 0 OID 20165) --- Dependencies: 661 +-- TOC entry 10273 (class 0 OID 62307) +-- Dependencies: 788 -- Data for Name: mdl_question_numerical_options; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38968,7 +38972,7 @@ COPY public.mdl_question_numerical_options (id, question, showunits, unitsleft, -- -- TOC entry 11689 (class 0 OID 0) --- Dependencies: 660 +-- Dependencies: 789 -- Name: mdl_question_numerical_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38976,8 +38980,8 @@ SELECT pg_catalog.setval('public.mdl_question_numerical_options_id_seq', 1, fals -- --- TOC entry 10148 (class 0 OID 20179) --- Dependencies: 663 +-- TOC entry 10275 (class 0 OID 62317) +-- Dependencies: 790 -- Data for Name: mdl_question_numerical_units; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38987,7 +38991,7 @@ COPY public.mdl_question_numerical_units (id, question, multiplier, unit) FROM s -- -- TOC entry 11690 (class 0 OID 0) --- Dependencies: 662 +-- Dependencies: 791 -- Name: mdl_question_numerical_units_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38995,8 +38999,8 @@ SELECT pg_catalog.setval('public.mdl_question_numerical_units_id_seq', 1, false) -- --- TOC entry 9820 (class 0 OID 17686) --- Dependencies: 335 +-- TOC entry 10277 (class 0 OID 62325) +-- Dependencies: 792 -- Data for Name: mdl_question_response_analysis; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39006,7 +39010,7 @@ COPY public.mdl_question_response_analysis (id, hashcode, whichtries, timemodifi -- -- TOC entry 11691 (class 0 OID 0) --- Dependencies: 334 +-- Dependencies: 793 -- Name: mdl_question_response_analysis_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39014,8 +39018,8 @@ SELECT pg_catalog.setval('public.mdl_question_response_analysis_id_seq', 1, fals -- --- TOC entry 9822 (class 0 OID 17700) --- Dependencies: 337 +-- TOC entry 10279 (class 0 OID 62336) +-- Dependencies: 794 -- Data for Name: mdl_question_response_count; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39025,7 +39029,7 @@ COPY public.mdl_question_response_count (id, analysisid, try, rcount) FROM stdin -- -- TOC entry 11692 (class 0 OID 0) --- Dependencies: 336 +-- Dependencies: 795 -- Name: mdl_question_response_count_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39033,8 +39037,8 @@ SELECT pg_catalog.setval('public.mdl_question_response_count_id_seq', 1, false); -- --- TOC entry 9818 (class 0 OID 17672) --- Dependencies: 333 +-- TOC entry 10281 (class 0 OID 62341) +-- Dependencies: 796 -- Data for Name: mdl_question_statistics; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39044,7 +39048,7 @@ COPY public.mdl_question_statistics (id, hashcode, timemodified, questionid, slo -- -- TOC entry 11693 (class 0 OID 0) --- Dependencies: 332 +-- Dependencies: 797 -- Name: mdl_question_statistics_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39052,8 +39056,8 @@ SELECT pg_catalog.setval('public.mdl_question_statistics_id_seq', 1, false); -- --- TOC entry 10154 (class 0 OID 20222) --- Dependencies: 669 +-- TOC entry 10283 (class 0 OID 62352) +-- Dependencies: 798 -- Data for Name: mdl_question_truefalse; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39063,7 +39067,7 @@ COPY public.mdl_question_truefalse (id, question, trueanswer, falseanswer) FROM -- -- TOC entry 11694 (class 0 OID 0) --- Dependencies: 668 +-- Dependencies: 799 -- Name: mdl_question_truefalse_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39071,8 +39075,8 @@ SELECT pg_catalog.setval('public.mdl_question_truefalse_id_seq', 1, false); -- --- TOC entry 9810 (class 0 OID 17617) --- Dependencies: 325 +-- TOC entry 10285 (class 0 OID 62360) +-- Dependencies: 800 -- Data for Name: mdl_question_usages; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39082,7 +39086,7 @@ COPY public.mdl_question_usages (id, contextid, component, preferredbehaviour) F -- -- TOC entry 11695 (class 0 OID 0) --- Dependencies: 324 +-- Dependencies: 801 -- Name: mdl_question_usages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39090,8 +39094,8 @@ SELECT pg_catalog.setval('public.mdl_question_usages_id_seq', 1, false); -- --- TOC entry 10294 (class 0 OID 21569) --- Dependencies: 809 +-- TOC entry 10287 (class 0 OID 62367) +-- Dependencies: 802 -- Data for Name: mdl_quiz; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39100,8 +39104,8 @@ COPY public.mdl_quiz (id, course, name, intro, introformat, timeopen, timeclose, -- --- TOC entry 10304 (class 0 OID 21678) --- Dependencies: 819 +-- TOC entry 10288 (class 0 OID 62412) +-- Dependencies: 803 -- Data for Name: mdl_quiz_attempts; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39111,7 +39115,7 @@ COPY public.mdl_quiz_attempts (id, quiz, userid, attempt, uniqueid, layout, curr -- -- TOC entry 11696 (class 0 OID 0) --- Dependencies: 818 +-- Dependencies: 804 -- Name: mdl_quiz_attempts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39119,8 +39123,8 @@ SELECT pg_catalog.setval('public.mdl_quiz_attempts_id_seq', 1, false); -- --- TOC entry 10300 (class 0 OID 21650) --- Dependencies: 815 +-- TOC entry 10290 (class 0 OID 62432) +-- Dependencies: 805 -- Data for Name: mdl_quiz_feedback; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39130,7 +39134,7 @@ COPY public.mdl_quiz_feedback (id, quizid, feedbacktext, feedbacktextformat, min -- -- TOC entry 11697 (class 0 OID 0) --- Dependencies: 814 +-- Dependencies: 806 -- Name: mdl_quiz_feedback_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39138,8 +39142,8 @@ SELECT pg_catalog.setval('public.mdl_quiz_feedback_id_seq', 1, false); -- --- TOC entry 10306 (class 0 OID 21706) --- Dependencies: 821 +-- TOC entry 10292 (class 0 OID 62444) +-- Dependencies: 807 -- Data for Name: mdl_quiz_grades; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39149,7 +39153,7 @@ COPY public.mdl_quiz_grades (id, quiz, userid, grade, timemodified) FROM stdin; -- -- TOC entry 11698 (class 0 OID 0) --- Dependencies: 820 +-- Dependencies: 808 -- Name: mdl_quiz_grades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39158,7 +39162,7 @@ SELECT pg_catalog.setval('public.mdl_quiz_grades_id_seq', 1, false); -- -- TOC entry 11699 (class 0 OID 0) --- Dependencies: 808 +-- Dependencies: 809 -- Name: mdl_quiz_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39166,8 +39170,8 @@ SELECT pg_catalog.setval('public.mdl_quiz_id_seq', 1, false); -- --- TOC entry 10302 (class 0 OID 21666) --- Dependencies: 817 +-- TOC entry 10295 (class 0 OID 62455) +-- Dependencies: 810 -- Data for Name: mdl_quiz_overrides; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39177,7 +39181,7 @@ COPY public.mdl_quiz_overrides (id, quiz, groupid, userid, timeopen, timeclose, -- -- TOC entry 11700 (class 0 OID 0) --- Dependencies: 816 +-- Dependencies: 811 -- Name: mdl_quiz_overrides_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39185,8 +39189,8 @@ SELECT pg_catalog.setval('public.mdl_quiz_overrides_id_seq', 1, false); -- --- TOC entry 10498 (class 0 OID 23209) --- Dependencies: 1013 +-- TOC entry 10297 (class 0 OID 62461) +-- Dependencies: 812 -- Data for Name: mdl_quiz_overview_regrades; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39196,7 +39200,7 @@ COPY public.mdl_quiz_overview_regrades (id, questionusageid, slot, newfraction, -- -- TOC entry 11701 (class 0 OID 0) --- Dependencies: 1012 +-- Dependencies: 813 -- Name: mdl_quiz_overview_regrades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39204,8 +39208,8 @@ SELECT pg_catalog.setval('public.mdl_quiz_overview_regrades_id_seq', 1, false); -- --- TOC entry 10308 (class 0 OID 21720) --- Dependencies: 823 +-- TOC entry 10299 (class 0 OID 62466) +-- Dependencies: 814 -- Data for Name: mdl_quiz_reports; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39219,7 +39223,7 @@ COPY public.mdl_quiz_reports (id, name, displayorder, capability) FROM stdin; -- -- TOC entry 11702 (class 0 OID 0) --- Dependencies: 822 +-- Dependencies: 815 -- Name: mdl_quiz_reports_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39227,8 +39231,8 @@ SELECT pg_catalog.setval('public.mdl_quiz_reports_id_seq', 4, true); -- --- TOC entry 10298 (class 0 OID 21636) --- Dependencies: 813 +-- TOC entry 10301 (class 0 OID 62474) +-- Dependencies: 816 -- Data for Name: mdl_quiz_sections; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39238,7 +39242,7 @@ COPY public.mdl_quiz_sections (id, quizid, firstslot, heading, shufflequestions) -- -- TOC entry 11703 (class 0 OID 0) --- Dependencies: 812 +-- Dependencies: 817 -- Name: mdl_quiz_sections_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39246,8 +39250,8 @@ SELECT pg_catalog.setval('public.mdl_quiz_sections_id_seq', 1, false); -- --- TOC entry 10310 (class 0 OID 21732) --- Dependencies: 825 +-- TOC entry 10303 (class 0 OID 62483) +-- Dependencies: 818 -- Data for Name: mdl_quiz_slot_tags; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39257,7 +39261,7 @@ COPY public.mdl_quiz_slot_tags (id, slotid, tagid, tagname) FROM stdin; -- -- TOC entry 11704 (class 0 OID 0) --- Dependencies: 824 +-- Dependencies: 819 -- Name: mdl_quiz_slot_tags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39265,8 +39269,8 @@ SELECT pg_catalog.setval('public.mdl_quiz_slot_tags_id_seq', 1, false); -- --- TOC entry 10296 (class 0 OID 21620) --- Dependencies: 811 +-- TOC entry 10305 (class 0 OID 62488) +-- Dependencies: 820 -- Data for Name: mdl_quiz_slots; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39276,7 +39280,7 @@ COPY public.mdl_quiz_slots (id, slot, quizid, page, requireprevious, questionid, -- -- TOC entry 11705 (class 0 OID 0) --- Dependencies: 810 +-- Dependencies: 821 -- Name: mdl_quiz_slots_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39284,8 +39288,8 @@ SELECT pg_catalog.setval('public.mdl_quiz_slots_id_seq', 1, false); -- --- TOC entry 10500 (class 0 OID 23218) --- Dependencies: 1015 +-- TOC entry 10307 (class 0 OID 62497) +-- Dependencies: 822 -- Data for Name: mdl_quiz_statistics; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39295,7 +39299,7 @@ COPY public.mdl_quiz_statistics (id, hashcode, whichattempts, timemodified, firs -- -- TOC entry 11706 (class 0 OID 0) --- Dependencies: 1014 +-- Dependencies: 823 -- Name: mdl_quiz_statistics_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39303,8 +39307,8 @@ SELECT pg_catalog.setval('public.mdl_quiz_statistics_id_seq', 1, false); -- --- TOC entry 10502 (class 0 OID 23227) --- Dependencies: 1017 +-- TOC entry 10309 (class 0 OID 62503) +-- Dependencies: 824 -- Data for Name: mdl_quizaccess_seb_quizsettings; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39314,7 +39318,7 @@ COPY public.mdl_quizaccess_seb_quizsettings (id, quizid, cmid, templateid, requi -- -- TOC entry 11707 (class 0 OID 0) --- Dependencies: 1016 +-- Dependencies: 825 -- Name: mdl_quizaccess_seb_quizsettings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39322,8 +39326,8 @@ SELECT pg_catalog.setval('public.mdl_quizaccess_seb_quizsettings_id_seq', 1, fal -- --- TOC entry 10504 (class 0 OID 23245) --- Dependencies: 1019 +-- TOC entry 10311 (class 0 OID 62514) +-- Dependencies: 826 -- Data for Name: mdl_quizaccess_seb_template; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39333,7 +39337,7 @@ COPY public.mdl_quizaccess_seb_template (id, name, description, content, enabled -- -- TOC entry 11708 (class 0 OID 0) --- Dependencies: 1018 +-- Dependencies: 827 -- Name: mdl_quizaccess_seb_template_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39341,8 +39345,8 @@ SELECT pg_catalog.setval('public.mdl_quizaccess_seb_template_id_seq', 1, false); -- --- TOC entry 9954 (class 0 OID 18758) --- Dependencies: 469 +-- TOC entry 10313 (class 0 OID 62526) +-- Dependencies: 828 -- Data for Name: mdl_rating; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39352,7 +39356,7 @@ COPY public.mdl_rating (id, contextid, component, ratingarea, itemid, scaleid, r -- -- TOC entry 11709 (class 0 OID 0) --- Dependencies: 468 +-- Dependencies: 829 -- Name: mdl_rating_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39360,8 +39364,8 @@ SELECT pg_catalog.setval('public.mdl_rating_id_seq', 1, false); -- --- TOC entry 9958 (class 0 OID 18786) --- Dependencies: 473 +-- TOC entry 10315 (class 0 OID 62533) +-- Dependencies: 830 -- Data for Name: mdl_registration_hubs; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39371,7 +39375,7 @@ COPY public.mdl_registration_hubs (id, token, hubname, huburl, confirmed, secret -- -- TOC entry 11710 (class 0 OID 0) --- Dependencies: 472 +-- Dependencies: 831 -- Name: mdl_registration_hubs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39379,8 +39383,8 @@ SELECT pg_catalog.setval('public.mdl_registration_hubs_id_seq', 1, false); -- --- TOC entry 9924 (class 0 OID 18554) --- Dependencies: 439 +-- TOC entry 10317 (class 0 OID 62546) +-- Dependencies: 832 -- Data for Name: mdl_repository; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39398,7 +39402,7 @@ COPY public.mdl_repository (id, type, visible, sortorder) FROM stdin; -- -- TOC entry 11711 (class 0 OID 0) --- Dependencies: 438 +-- Dependencies: 833 -- Name: mdl_repository_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39406,8 +39410,8 @@ SELECT pg_catalog.setval('public.mdl_repository_id_seq', 8, true); -- --- TOC entry 9928 (class 0 OID 18579) --- Dependencies: 443 +-- TOC entry 10319 (class 0 OID 62554) +-- Dependencies: 834 -- Data for Name: mdl_repository_instance_config; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39417,7 +39421,7 @@ COPY public.mdl_repository_instance_config (id, instanceid, name, value) FROM st -- -- TOC entry 11712 (class 0 OID 0) --- Dependencies: 442 +-- Dependencies: 835 -- Name: mdl_repository_instance_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39425,8 +39429,8 @@ SELECT pg_catalog.setval('public.mdl_repository_instance_config_id_seq', 1, fals -- --- TOC entry 9926 (class 0 OID 18565) --- Dependencies: 441 +-- TOC entry 10321 (class 0 OID 62563) +-- Dependencies: 836 -- Data for Name: mdl_repository_instances; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39444,7 +39448,7 @@ COPY public.mdl_repository_instances (id, name, typeid, userid, contextid, usern -- -- TOC entry 11713 (class 0 OID 0) --- Dependencies: 440 +-- Dependencies: 837 -- Name: mdl_repository_instances_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39452,8 +39456,8 @@ SELECT pg_catalog.setval('public.mdl_repository_instances_id_seq', 8, true); -- --- TOC entry 10430 (class 0 OID 22719) --- Dependencies: 945 +-- TOC entry 10323 (class 0 OID 62574) +-- Dependencies: 838 -- Data for Name: mdl_repository_onedrive_access; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39463,7 +39467,7 @@ COPY public.mdl_repository_onedrive_access (id, timemodified, timecreated, userm -- -- TOC entry 11714 (class 0 OID 0) --- Dependencies: 944 +-- Dependencies: 839 -- Name: mdl_repository_onedrive_access_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39471,8 +39475,8 @@ SELECT pg_catalog.setval('public.mdl_repository_onedrive_access_id_seq', 1, fals -- --- TOC entry 10312 (class 0 OID 21742) --- Dependencies: 827 +-- TOC entry 10325 (class 0 OID 62584) +-- Dependencies: 840 -- Data for Name: mdl_resource; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39482,7 +39486,7 @@ COPY public.mdl_resource (id, course, name, intro, introformat, tobemigrated, le -- -- TOC entry 11715 (class 0 OID 0) --- Dependencies: 826 +-- Dependencies: 841 -- Name: mdl_resource_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39490,8 +39494,8 @@ SELECT pg_catalog.setval('public.mdl_resource_id_seq', 1, false); -- --- TOC entry 10314 (class 0 OID 21763) --- Dependencies: 829 +-- TOC entry 10327 (class 0 OID 62601) +-- Dependencies: 842 -- Data for Name: mdl_resource_old; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39501,7 +39505,7 @@ COPY public.mdl_resource_old (id, course, name, type, reference, intro, introfor -- -- TOC entry 11716 (class 0 OID 0) --- Dependencies: 828 +-- Dependencies: 843 -- Name: mdl_resource_old_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39509,8 +39513,8 @@ SELECT pg_catalog.setval('public.mdl_resource_old_id_seq', 1, false); -- --- TOC entry 9773 (class 0 OID 17321) --- Dependencies: 288 +-- TOC entry 10329 (class 0 OID 62617) +-- Dependencies: 844 -- Data for Name: mdl_role; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39527,8 +39531,8 @@ COPY public.mdl_role (id, name, shortname, description, sortorder, archetype) FR -- --- TOC entry 9780 (class 0 OID 17375) --- Dependencies: 295 +-- TOC entry 10330 (class 0 OID 62627) +-- Dependencies: 845 -- Data for Name: mdl_role_allow_assign; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39545,7 +39549,7 @@ COPY public.mdl_role_allow_assign (id, roleid, allowassign) FROM stdin; -- -- TOC entry 11717 (class 0 OID 0) --- Dependencies: 294 +-- Dependencies: 846 -- Name: mdl_role_allow_assign_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39553,8 +39557,8 @@ SELECT pg_catalog.setval('public.mdl_role_allow_assign_id_seq', 7, true); -- --- TOC entry 9782 (class 0 OID 17388) --- Dependencies: 297 +-- TOC entry 10332 (class 0 OID 62634) +-- Dependencies: 847 -- Data for Name: mdl_role_allow_override; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39575,7 +39579,7 @@ COPY public.mdl_role_allow_override (id, roleid, allowoverride) FROM stdin; -- -- TOC entry 11718 (class 0 OID 0) --- Dependencies: 296 +-- Dependencies: 848 -- Name: mdl_role_allow_override_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39583,8 +39587,8 @@ SELECT pg_catalog.setval('public.mdl_role_allow_override_id_seq', 11, true); -- --- TOC entry 9784 (class 0 OID 17401) --- Dependencies: 299 +-- TOC entry 10334 (class 0 OID 62641) +-- Dependencies: 849 -- Data for Name: mdl_role_allow_switch; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39603,7 +39607,7 @@ COPY public.mdl_role_allow_switch (id, roleid, allowswitch) FROM stdin; -- -- TOC entry 11719 (class 0 OID 0) --- Dependencies: 298 +-- Dependencies: 850 -- Name: mdl_role_allow_switch_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39611,8 +39615,8 @@ SELECT pg_catalog.setval('public.mdl_role_allow_switch_id_seq', 9, true); -- --- TOC entry 9786 (class 0 OID 17412) --- Dependencies: 301 +-- TOC entry 10336 (class 0 OID 62646) +-- Dependencies: 851 -- Data for Name: mdl_role_allow_view; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39646,7 +39650,7 @@ COPY public.mdl_role_allow_view (id, roleid, allowview) FROM stdin; -- -- TOC entry 11720 (class 0 OID 0) --- Dependencies: 300 +-- Dependencies: 852 -- Name: mdl_role_allow_view_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39654,8 +39658,8 @@ SELECT pg_catalog.setval('public.mdl_role_allow_view_id_seq', 24, true); -- --- TOC entry 9788 (class 0 OID 17423) --- Dependencies: 303 +-- TOC entry 10338 (class 0 OID 62651) +-- Dependencies: 853 -- Data for Name: mdl_role_assignments; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39665,7 +39669,7 @@ COPY public.mdl_role_assignments (id, roleid, contextid, userid, timemodified, m -- -- TOC entry 11721 (class 0 OID 0) --- Dependencies: 302 +-- Dependencies: 854 -- Name: mdl_role_assignments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39673,8 +39677,8 @@ SELECT pg_catalog.setval('public.mdl_role_assignments_id_seq', 1, false); -- --- TOC entry 9790 (class 0 OID 17446) --- Dependencies: 305 +-- TOC entry 10340 (class 0 OID 62664) +-- Dependencies: 855 -- Data for Name: mdl_role_capabilities; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41096,21 +41100,22 @@ COPY public.mdl_role_capabilities (id, contextid, roleid, capability, permission 1415 1 3 atto/h5p:addembed 1 1609808508 0 1416 1 7 atto/recordrtc:recordaudio 1 1609808509 0 1417 1 7 atto/recordrtc:recordvideo 1 1609808509 0 +1418 1 7 webservice/rest:use 1 1609892624 2 \. -- -- TOC entry 11722 (class 0 OID 0) --- Dependencies: 304 +-- Dependencies: 856 -- Name: mdl_role_capabilities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_role_capabilities_id_seq', 1417, true); +SELECT pg_catalog.setval('public.mdl_role_capabilities_id_seq', 1418, true); -- --- TOC entry 9794 (class 0 OID 17479) --- Dependencies: 309 +-- TOC entry 10342 (class 0 OID 62675) +-- Dependencies: 857 -- Data for Name: mdl_role_context_levels; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41131,7 +41136,7 @@ COPY public.mdl_role_context_levels (id, roleid, contextlevel) FROM stdin; -- -- TOC entry 11723 (class 0 OID 0) --- Dependencies: 308 +-- Dependencies: 858 -- Name: mdl_role_context_levels_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41140,7 +41145,7 @@ SELECT pg_catalog.setval('public.mdl_role_context_levels_id_seq', 11, true); -- -- TOC entry 11724 (class 0 OID 0) --- Dependencies: 287 +-- Dependencies: 859 -- Name: mdl_role_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41148,8 +41153,8 @@ SELECT pg_catalog.setval('public.mdl_role_id_seq', 8, true); -- --- TOC entry 9792 (class 0 OID 17465) --- Dependencies: 307 +-- TOC entry 10345 (class 0 OID 62682) +-- Dependencies: 860 -- Data for Name: mdl_role_names; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41159,7 +41164,7 @@ COPY public.mdl_role_names (id, roleid, contextid, name) FROM stdin; -- -- TOC entry 11725 (class 0 OID 0) --- Dependencies: 306 +-- Dependencies: 861 -- Name: mdl_role_names_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41167,8 +41172,8 @@ SELECT pg_catalog.setval('public.mdl_role_names_id_seq', 1, false); -- --- TOC entry 9755 (class 0 OID 17146) --- Dependencies: 270 +-- TOC entry 10347 (class 0 OID 62690) +-- Dependencies: 862 -- Data for Name: mdl_scale; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41179,8 +41184,8 @@ COPY public.mdl_scale (id, courseid, userid, name, scale, description, descripti -- --- TOC entry 9757 (class 0 OID 17163) --- Dependencies: 272 +-- TOC entry 10348 (class 0 OID 62701) +-- Dependencies: 863 -- Data for Name: mdl_scale_history; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41190,7 +41195,7 @@ COPY public.mdl_scale_history (id, action, oldid, source, timemodified, loggedus -- -- TOC entry 11726 (class 0 OID 0) --- Dependencies: 271 +-- Dependencies: 864 -- Name: mdl_scale_history_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41199,7 +41204,7 @@ SELECT pg_catalog.setval('public.mdl_scale_history_id_seq', 1, false); -- -- TOC entry 11727 (class 0 OID 0) --- Dependencies: 269 +-- Dependencies: 865 -- Name: mdl_scale_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41207,8 +41212,8 @@ SELECT pg_catalog.setval('public.mdl_scale_id_seq', 2, true); -- --- TOC entry 10316 (class 0 OID 21784) --- Dependencies: 831 +-- TOC entry 10351 (class 0 OID 62715) +-- Dependencies: 866 -- Data for Name: mdl_scorm; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41217,8 +41222,8 @@ COPY public.mdl_scorm (id, course, name, scormtype, reference, intro, introforma -- --- TOC entry 10336 (class 0 OID 21982) --- Dependencies: 851 +-- TOC entry 10352 (class 0 OID 62757) +-- Dependencies: 867 -- Data for Name: mdl_scorm_aicc_session; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41228,7 +41233,7 @@ COPY public.mdl_scorm_aicc_session (id, userid, scormid, hacpsession, scoid, sco -- -- TOC entry 11728 (class 0 OID 0) --- Dependencies: 850 +-- Dependencies: 868 -- Name: mdl_scorm_aicc_session_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41237,7 +41242,7 @@ SELECT pg_catalog.setval('public.mdl_scorm_aicc_session_id_seq', 1, false); -- -- TOC entry 11729 (class 0 OID 0) --- Dependencies: 830 +-- Dependencies: 869 -- Name: mdl_scorm_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41245,8 +41250,8 @@ SELECT pg_catalog.setval('public.mdl_scorm_id_seq', 1, false); -- --- TOC entry 10318 (class 0 OID 21832) --- Dependencies: 833 +-- TOC entry 10355 (class 0 OID 62773) +-- Dependencies: 870 -- Data for Name: mdl_scorm_scoes; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41255,8 +41260,8 @@ COPY public.mdl_scorm_scoes (id, scorm, manifest, organization, parent, identifi -- --- TOC entry 10320 (class 0 OID 21852) --- Dependencies: 835 +-- TOC entry 10356 (class 0 OID 62787) +-- Dependencies: 871 -- Data for Name: mdl_scorm_scoes_data; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41266,7 +41271,7 @@ COPY public.mdl_scorm_scoes_data (id, scoid, name, value) FROM stdin; -- -- TOC entry 11730 (class 0 OID 0) --- Dependencies: 834 +-- Dependencies: 872 -- Name: mdl_scorm_scoes_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41275,7 +41280,7 @@ SELECT pg_catalog.setval('public.mdl_scorm_scoes_data_id_seq', 1, false); -- -- TOC entry 11731 (class 0 OID 0) --- Dependencies: 832 +-- Dependencies: 873 -- Name: mdl_scorm_scoes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41283,8 +41288,8 @@ SELECT pg_catalog.setval('public.mdl_scorm_scoes_id_seq', 1, false); -- --- TOC entry 10322 (class 0 OID 21866) --- Dependencies: 837 +-- TOC entry 10359 (class 0 OID 62799) +-- Dependencies: 874 -- Data for Name: mdl_scorm_scoes_track; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41294,7 +41299,7 @@ COPY public.mdl_scorm_scoes_track (id, userid, scormid, scoid, attempt, element, -- -- TOC entry 11732 (class 0 OID 0) --- Dependencies: 836 +-- Dependencies: 875 -- Name: mdl_scorm_scoes_track_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41302,8 +41307,8 @@ SELECT pg_catalog.setval('public.mdl_scorm_scoes_track_id_seq', 1, false); -- --- TOC entry 10326 (class 0 OID 21902) --- Dependencies: 841 +-- TOC entry 10361 (class 0 OID 62813) +-- Dependencies: 876 -- Data for Name: mdl_scorm_seq_mapinfo; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41313,7 +41318,7 @@ COPY public.mdl_scorm_seq_mapinfo (id, scoid, objectiveid, targetobjectiveid, re -- -- TOC entry 11733 (class 0 OID 0) --- Dependencies: 840 +-- Dependencies: 877 -- Name: mdl_scorm_seq_mapinfo_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41321,8 +41326,8 @@ SELECT pg_catalog.setval('public.mdl_scorm_seq_mapinfo_id_seq', 1, false); -- --- TOC entry 10324 (class 0 OID 21887) --- Dependencies: 839 +-- TOC entry 10363 (class 0 OID 62825) +-- Dependencies: 878 -- Data for Name: mdl_scorm_seq_objective; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41332,7 +41337,7 @@ COPY public.mdl_scorm_seq_objective (id, scoid, primaryobj, objectiveid, satisfi -- -- TOC entry 11734 (class 0 OID 0) --- Dependencies: 838 +-- Dependencies: 879 -- Name: mdl_scorm_seq_objective_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41340,8 +41345,8 @@ SELECT pg_catalog.setval('public.mdl_scorm_seq_objective_id_seq', 1, false); -- --- TOC entry 10332 (class 0 OID 21951) --- Dependencies: 847 +-- TOC entry 10365 (class 0 OID 62835) +-- Dependencies: 880 -- Data for Name: mdl_scorm_seq_rolluprule; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41351,7 +41356,7 @@ COPY public.mdl_scorm_seq_rolluprule (id, scoid, childactivityset, minimumcount, -- -- TOC entry 11735 (class 0 OID 0) --- Dependencies: 846 +-- Dependencies: 881 -- Name: mdl_scorm_seq_rolluprule_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41359,8 +41364,8 @@ SELECT pg_catalog.setval('public.mdl_scorm_seq_rolluprule_id_seq', 1, false); -- --- TOC entry 10334 (class 0 OID 21967) --- Dependencies: 849 +-- TOC entry 10367 (class 0 OID 62846) +-- Dependencies: 882 -- Data for Name: mdl_scorm_seq_rolluprulecond; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41370,7 +41375,7 @@ COPY public.mdl_scorm_seq_rolluprulecond (id, scoid, rollupruleid, operator, con -- -- TOC entry 11736 (class 0 OID 0) --- Dependencies: 848 +-- Dependencies: 883 -- Name: mdl_scorm_seq_rolluprulecond_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41378,8 +41383,8 @@ SELECT pg_catalog.setval('public.mdl_scorm_seq_rolluprulecond_id_seq', 1, false) -- --- TOC entry 10330 (class 0 OID 21934) --- Dependencies: 845 +-- TOC entry 10369 (class 0 OID 62855) +-- Dependencies: 884 -- Data for Name: mdl_scorm_seq_rulecond; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41389,7 +41394,7 @@ COPY public.mdl_scorm_seq_rulecond (id, scoid, ruleconditionsid, refrencedobject -- -- TOC entry 11737 (class 0 OID 0) --- Dependencies: 844 +-- Dependencies: 885 -- Name: mdl_scorm_seq_rulecond_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41397,8 +41402,8 @@ SELECT pg_catalog.setval('public.mdl_scorm_seq_rulecond_id_seq', 1, false); -- --- TOC entry 10328 (class 0 OID 21920) --- Dependencies: 843 +-- TOC entry 10371 (class 0 OID 62866) +-- Dependencies: 886 -- Data for Name: mdl_scorm_seq_ruleconds; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41408,7 +41413,7 @@ COPY public.mdl_scorm_seq_ruleconds (id, scoid, conditioncombination, ruletype, -- -- TOC entry 11738 (class 0 OID 0) --- Dependencies: 842 +-- Dependencies: 887 -- Name: mdl_scorm_seq_ruleconds_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41416,8 +41421,8 @@ SELECT pg_catalog.setval('public.mdl_scorm_seq_ruleconds_id_seq', 1, false); -- --- TOC entry 10086 (class 0 OID 19687) --- Dependencies: 601 +-- TOC entry 10373 (class 0 OID 62875) +-- Dependencies: 888 -- Data for Name: mdl_search_index_requests; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41427,7 +41432,7 @@ COPY public.mdl_search_index_requests (id, contextid, searcharea, timerequested, -- -- TOC entry 11739 (class 0 OID 0) --- Dependencies: 600 +-- Dependencies: 889 -- Name: mdl_search_index_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41435,8 +41440,8 @@ SELECT pg_catalog.setval('public.mdl_search_index_requests_id_seq', 1, false); -- --- TOC entry 10434 (class 0 OID 22744) --- Dependencies: 949 +-- TOC entry 10375 (class 0 OID 62885) +-- Dependencies: 890 -- Data for Name: mdl_search_simpledb_index; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41446,7 +41451,7 @@ COPY public.mdl_search_simpledb_index (id, docid, itemid, title, content, contex -- -- TOC entry 11740 (class 0 OID 0) --- Dependencies: 948 +-- Dependencies: 891 -- Name: mdl_search_simpledb_index_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41454,8 +41459,8 @@ SELECT pg_catalog.setval('public.mdl_search_simpledb_index_id_seq', 1, false); -- --- TOC entry 9745 (class 0 OID 17017) --- Dependencies: 260 +-- TOC entry 10377 (class 0 OID 62895) +-- Dependencies: 892 -- Data for Name: mdl_sessions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41503,13 +41508,13 @@ COPY public.mdl_sessions (id, state, sid, userid, sessdata, timecreated, timemod 64 0 dsba0datl79pfg9jvvao8cou9c 0 \N 1609861812 1609861812 138.68.161.204 138.68.161.204 68 0 oqoesti3mraj246rqa994umq56 0 \N 1609863506 1609863507 107.0.200.61 107.0.200.61 72 0 9kq9sa57enerhq9dkqh9pq4nq4 0 \N 1609888714 1609888714 5.189.174.129 5.189.174.129 -71 0 sfv8r52dg34qrv0eon6bfhggon 2 \N 1609883714 1609889130 67.182.30.218 67.182.30.218 +71 0 sfv8r52dg34qrv0eon6bfhggon 2 \N 1609883714 1609892640 67.182.30.218 67.182.30.218 \. -- -- TOC entry 11741 (class 0 OID 0) --- Dependencies: 259 +-- Dependencies: 893 -- Name: mdl_sessions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41517,8 +41522,8 @@ SELECT pg_catalog.setval('public.mdl_sessions_id_seq', 72, true); -- --- TOC entry 9759 (class 0 OID 17183) --- Dependencies: 274 +-- TOC entry 10379 (class 0 OID 62905) +-- Dependencies: 894 -- Data for Name: mdl_stats_daily; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41528,7 +41533,7 @@ COPY public.mdl_stats_daily (id, courseid, timeend, roleid, stattype, stat1, sta -- -- TOC entry 11742 (class 0 OID 0) --- Dependencies: 273 +-- Dependencies: 895 -- Name: mdl_stats_daily_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41536,8 +41541,8 @@ SELECT pg_catalog.setval('public.mdl_stats_daily_id_seq', 1, false); -- --- TOC entry 9763 (class 0 OID 17217) --- Dependencies: 278 +-- TOC entry 10381 (class 0 OID 62916) +-- Dependencies: 896 -- Data for Name: mdl_stats_monthly; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41547,7 +41552,7 @@ COPY public.mdl_stats_monthly (id, courseid, timeend, roleid, stattype, stat1, s -- -- TOC entry 11743 (class 0 OID 0) --- Dependencies: 277 +-- Dependencies: 897 -- Name: mdl_stats_monthly_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41555,8 +41560,8 @@ SELECT pg_catalog.setval('public.mdl_stats_monthly_id_seq', 1, false); -- --- TOC entry 9765 (class 0 OID 17234) --- Dependencies: 280 +-- TOC entry 10383 (class 0 OID 62927) +-- Dependencies: 898 -- Data for Name: mdl_stats_user_daily; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41566,7 +41571,7 @@ COPY public.mdl_stats_user_daily (id, courseid, userid, roleid, timeend, statsre -- -- TOC entry 11744 (class 0 OID 0) --- Dependencies: 279 +-- Dependencies: 899 -- Name: mdl_stats_user_daily_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41574,8 +41579,8 @@ SELECT pg_catalog.setval('public.mdl_stats_user_daily_id_seq', 1, false); -- --- TOC entry 9769 (class 0 OID 17272) --- Dependencies: 284 +-- TOC entry 10385 (class 0 OID 62939) +-- Dependencies: 900 -- Data for Name: mdl_stats_user_monthly; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41585,7 +41590,7 @@ COPY public.mdl_stats_user_monthly (id, courseid, userid, roleid, timeend, stats -- -- TOC entry 11745 (class 0 OID 0) --- Dependencies: 283 +-- Dependencies: 901 -- Name: mdl_stats_user_monthly_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41593,8 +41598,8 @@ SELECT pg_catalog.setval('public.mdl_stats_user_monthly_id_seq', 1, false); -- --- TOC entry 9767 (class 0 OID 17253) --- Dependencies: 282 +-- TOC entry 10387 (class 0 OID 62951) +-- Dependencies: 902 -- Data for Name: mdl_stats_user_weekly; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41604,7 +41609,7 @@ COPY public.mdl_stats_user_weekly (id, courseid, userid, roleid, timeend, statsr -- -- TOC entry 11746 (class 0 OID 0) --- Dependencies: 281 +-- Dependencies: 903 -- Name: mdl_stats_user_weekly_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41612,8 +41617,8 @@ SELECT pg_catalog.setval('public.mdl_stats_user_weekly_id_seq', 1, false); -- --- TOC entry 9761 (class 0 OID 17200) --- Dependencies: 276 +-- TOC entry 10389 (class 0 OID 62963) +-- Dependencies: 904 -- Data for Name: mdl_stats_weekly; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41623,7 +41628,7 @@ COPY public.mdl_stats_weekly (id, courseid, timeend, roleid, stattype, stat1, st -- -- TOC entry 11747 (class 0 OID 0) --- Dependencies: 275 +-- Dependencies: 905 -- Name: mdl_stats_weekly_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41631,8 +41636,8 @@ SELECT pg_catalog.setval('public.mdl_stats_weekly_id_seq', 1, false); -- --- TOC entry 10338 (class 0 OID 22001) --- Dependencies: 853 +-- TOC entry 10391 (class 0 OID 62974) +-- Dependencies: 906 -- Data for Name: mdl_survey; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41646,8 +41651,8 @@ COPY public.mdl_survey (id, course, template, days, timecreated, timemodified, n -- --- TOC entry 10344 (class 0 OID 22056) --- Dependencies: 859 +-- TOC entry 10392 (class 0 OID 62989) +-- Dependencies: 907 -- Data for Name: mdl_survey_analysis; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41657,7 +41662,7 @@ COPY public.mdl_survey_analysis (id, survey, userid, notes) FROM stdin; -- -- TOC entry 11748 (class 0 OID 0) --- Dependencies: 858 +-- Dependencies: 908 -- Name: mdl_survey_analysis_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41665,8 +41670,8 @@ SELECT pg_catalog.setval('public.mdl_survey_analysis_id_seq', 1, false); -- --- TOC entry 10342 (class 0 OID 22038) --- Dependencies: 857 +-- TOC entry 10394 (class 0 OID 62999) +-- Dependencies: 909 -- Data for Name: mdl_survey_answers; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41676,7 +41681,7 @@ COPY public.mdl_survey_answers (id, userid, survey, question, "time", answer1, a -- -- TOC entry 11749 (class 0 OID 0) --- Dependencies: 856 +-- Dependencies: 910 -- Name: mdl_survey_answers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41685,7 +41690,7 @@ SELECT pg_catalog.setval('public.mdl_survey_answers_id_seq', 1, false); -- -- TOC entry 11750 (class 0 OID 0) --- Dependencies: 852 +-- Dependencies: 911 -- Name: mdl_survey_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41693,8 +41698,8 @@ SELECT pg_catalog.setval('public.mdl_survey_id_seq', 5, true); -- --- TOC entry 10340 (class 0 OID 22022) --- Dependencies: 855 +-- TOC entry 10397 (class 0 OID 63013) +-- Dependencies: 912 -- Data for Name: mdl_survey_questions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41777,7 +41782,7 @@ COPY public.mdl_survey_questions (id, text, shorttext, multi, intro, type, optio -- -- TOC entry 11751 (class 0 OID 0) --- Dependencies: 854 +-- Dependencies: 913 -- Name: mdl_survey_questions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41785,8 +41790,8 @@ SELECT pg_catalog.setval('public.mdl_survey_questions_id_seq', 73, true); -- --- TOC entry 9878 (class 0 OID 18201) --- Dependencies: 393 +-- TOC entry 10399 (class 0 OID 63026) +-- Dependencies: 914 -- Data for Name: mdl_tag; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41795,8 +41800,8 @@ COPY public.mdl_tag (id, userid, tagcollid, name, rawname, isstandard, descripti -- --- TOC entry 9876 (class 0 OID 18186) --- Dependencies: 391 +-- TOC entry 10400 (class 0 OID 63037) +-- Dependencies: 915 -- Data for Name: mdl_tag_area; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41817,7 +41822,7 @@ COPY public.mdl_tag_area (id, component, itemtype, enabled, tagcollid, callback, -- -- TOC entry 11752 (class 0 OID 0) --- Dependencies: 390 +-- Dependencies: 916 -- Name: mdl_tag_area_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41825,8 +41830,8 @@ SELECT pg_catalog.setval('public.mdl_tag_area_id_seq', 11, true); -- --- TOC entry 9874 (class 0 OID 18172) --- Dependencies: 389 +-- TOC entry 10402 (class 0 OID 63047) +-- Dependencies: 917 -- Data for Name: mdl_tag_coll; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41837,7 +41842,7 @@ COPY public.mdl_tag_coll (id, name, isdefault, component, sortorder, searchable, -- -- TOC entry 11753 (class 0 OID 0) --- Dependencies: 388 +-- Dependencies: 918 -- Name: mdl_tag_coll_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41845,8 +41850,8 @@ SELECT pg_catalog.setval('public.mdl_tag_coll_id_seq', 1, true); -- --- TOC entry 9880 (class 0 OID 18221) --- Dependencies: 395 +-- TOC entry 10404 (class 0 OID 63058) +-- Dependencies: 919 -- Data for Name: mdl_tag_correlation; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41856,7 +41861,7 @@ COPY public.mdl_tag_correlation (id, tagid, correlatedtags) FROM stdin; -- -- TOC entry 11754 (class 0 OID 0) --- Dependencies: 394 +-- Dependencies: 920 -- Name: mdl_tag_correlation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41865,7 +41870,7 @@ SELECT pg_catalog.setval('public.mdl_tag_correlation_id_seq', 1, false); -- -- TOC entry 11755 (class 0 OID 0) --- Dependencies: 392 +-- Dependencies: 921 -- Name: mdl_tag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41873,8 +41878,8 @@ SELECT pg_catalog.setval('public.mdl_tag_id_seq', 1, false); -- --- TOC entry 9882 (class 0 OID 18233) --- Dependencies: 397 +-- TOC entry 10407 (class 0 OID 63068) +-- Dependencies: 922 -- Data for Name: mdl_tag_instance; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41884,7 +41889,7 @@ COPY public.mdl_tag_instance (id, tagid, component, itemtype, itemid, contextid, -- -- TOC entry 11756 (class 0 OID 0) --- Dependencies: 396 +-- Dependencies: 923 -- Name: mdl_tag_instance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41892,8 +41897,8 @@ SELECT pg_catalog.setval('public.mdl_tag_instance_id_seq', 1, false); -- --- TOC entry 10012 (class 0 OID 19209) --- Dependencies: 527 +-- TOC entry 10409 (class 0 OID 63078) +-- Dependencies: 924 -- Data for Name: mdl_task_adhoc; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41903,7 +41908,7 @@ COPY public.mdl_task_adhoc (id, component, classname, nextruntime, faildelay, cu -- -- TOC entry 11757 (class 0 OID 0) --- Dependencies: 526 +-- Dependencies: 925 -- Name: mdl_task_adhoc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41911,8 +41916,8 @@ SELECT pg_catalog.setval('public.mdl_task_adhoc_id_seq', 1, false); -- --- TOC entry 10014 (class 0 OID 19225) --- Dependencies: 529 +-- TOC entry 10411 (class 0 OID 63089) +-- Dependencies: 926 -- Data for Name: mdl_task_log; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41922,7 +41927,7 @@ COPY public.mdl_task_log (id, type, component, classname, userid, timestart, tim -- -- TOC entry 11758 (class 0 OID 0) --- Dependencies: 528 +-- Dependencies: 927 -- Name: mdl_task_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41930,8 +41935,8 @@ SELECT pg_catalog.setval('public.mdl_task_log_id_seq', 1, false); -- --- TOC entry 10010 (class 0 OID 19187) --- Dependencies: 525 +-- TOC entry 10413 (class 0 OID 63099) +-- Dependencies: 928 -- Data for Name: mdl_task_scheduled; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42039,7 +42044,7 @@ COPY public.mdl_task_scheduled (id, component, classname, lastruntime, nextrunti -- -- TOC entry 11759 (class 0 OID 0) --- Dependencies: 524 +-- Dependencies: 929 -- Name: mdl_task_scheduled_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42047,8 +42052,8 @@ SELECT pg_catalog.setval('public.mdl_task_scheduled_id_seq', 98, true); -- --- TOC entry 10436 (class 0 OID 22763) --- Dependencies: 951 +-- TOC entry 10415 (class 0 OID 63117) +-- Dependencies: 930 -- Data for Name: mdl_tool_cohortroles; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42058,7 +42063,7 @@ COPY public.mdl_tool_cohortroles (id, cohortid, roleid, userid, timecreated, tim -- -- TOC entry 11760 (class 0 OID 0) --- Dependencies: 950 +-- Dependencies: 931 -- Name: mdl_tool_cohortroles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42066,8 +42071,8 @@ SELECT pg_catalog.setval('public.mdl_tool_cohortroles_id_seq', 1, false); -- --- TOC entry 10438 (class 0 OID 22772) --- Dependencies: 953 +-- TOC entry 10417 (class 0 OID 63122) +-- Dependencies: 932 -- Data for Name: mdl_tool_customlang; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42076,8 +42081,8 @@ COPY public.mdl_tool_customlang (id, lang, componentid, stringid, original, mast -- --- TOC entry 10440 (class 0 OID 22789) --- Dependencies: 955 +-- TOC entry 10418 (class 0 OID 63132) +-- Dependencies: 933 -- Data for Name: mdl_tool_customlang_components; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42087,7 +42092,7 @@ COPY public.mdl_tool_customlang_components (id, name, version) FROM stdin; -- -- TOC entry 11761 (class 0 OID 0) --- Dependencies: 954 +-- Dependencies: 934 -- Name: mdl_tool_customlang_components_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42096,7 +42101,7 @@ SELECT pg_catalog.setval('public.mdl_tool_customlang_components_id_seq', 1, fals -- -- TOC entry 11762 (class 0 OID 0) --- Dependencies: 952 +-- Dependencies: 935 -- Name: mdl_tool_customlang_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42104,8 +42109,8 @@ SELECT pg_catalog.setval('public.mdl_tool_customlang_id_seq', 1, false); -- --- TOC entry 10446 (class 0 OID 22841) --- Dependencies: 961 +-- TOC entry 10421 (class 0 OID 63143) +-- Dependencies: 936 -- Data for Name: mdl_tool_dataprivacy_category; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42115,7 +42120,7 @@ COPY public.mdl_tool_dataprivacy_category (id, name, description, descriptionfor -- -- TOC entry 11763 (class 0 OID 0) --- Dependencies: 960 +-- Dependencies: 937 -- Name: mdl_tool_dataprivacy_category_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42123,8 +42128,8 @@ SELECT pg_catalog.setval('public.mdl_tool_dataprivacy_category_id_seq', 1, false -- --- TOC entry 10452 (class 0 OID 22875) --- Dependencies: 967 +-- TOC entry 10423 (class 0 OID 63152) +-- Dependencies: 938 -- Data for Name: mdl_tool_dataprivacy_ctxexpired; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42134,7 +42139,7 @@ COPY public.mdl_tool_dataprivacy_ctxexpired (id, contextid, unexpiredroles, expi -- -- TOC entry 11764 (class 0 OID 0) --- Dependencies: 966 +-- Dependencies: 939 -- Name: mdl_tool_dataprivacy_ctxexpired_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42142,8 +42147,8 @@ SELECT pg_catalog.setval('public.mdl_tool_dataprivacy_ctxexpired_id_seq', 1, fal -- --- TOC entry 10448 (class 0 OID 22853) --- Dependencies: 963 +-- TOC entry 10425 (class 0 OID 63161) +-- Dependencies: 940 -- Data for Name: mdl_tool_dataprivacy_ctxinstance; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42153,7 +42158,7 @@ COPY public.mdl_tool_dataprivacy_ctxinstance (id, contextid, purposeid, category -- -- TOC entry 11765 (class 0 OID 0) --- Dependencies: 962 +-- Dependencies: 941 -- Name: mdl_tool_dataprivacy_ctxinstance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42161,8 +42166,8 @@ SELECT pg_catalog.setval('public.mdl_tool_dataprivacy_ctxinstance_id_seq', 1, fa -- --- TOC entry 10450 (class 0 OID 22864) --- Dependencies: 965 +-- TOC entry 10427 (class 0 OID 63166) +-- Dependencies: 942 -- Data for Name: mdl_tool_dataprivacy_ctxlevel; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42172,7 +42177,7 @@ COPY public.mdl_tool_dataprivacy_ctxlevel (id, contextlevel, purposeid, category -- -- TOC entry 11766 (class 0 OID 0) --- Dependencies: 964 +-- Dependencies: 943 -- Name: mdl_tool_dataprivacy_ctxlevel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42180,8 +42185,8 @@ SELECT pg_catalog.setval('public.mdl_tool_dataprivacy_ctxlevel_id_seq', 1, false -- --- TOC entry 10444 (class 0 OID 22828) --- Dependencies: 959 +-- TOC entry 10429 (class 0 OID 63171) +-- Dependencies: 944 -- Data for Name: mdl_tool_dataprivacy_purpose; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42191,7 +42196,7 @@ COPY public.mdl_tool_dataprivacy_purpose (id, name, description, descriptionform -- -- TOC entry 11767 (class 0 OID 0) --- Dependencies: 958 +-- Dependencies: 945 -- Name: mdl_tool_dataprivacy_purpose_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42199,8 +42204,8 @@ SELECT pg_catalog.setval('public.mdl_tool_dataprivacy_purpose_id_seq', 1, false) -- --- TOC entry 10454 (class 0 OID 22888) --- Dependencies: 969 +-- TOC entry 10431 (class 0 OID 63181) +-- Dependencies: 946 -- Data for Name: mdl_tool_dataprivacy_purposerole; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42210,7 +42215,7 @@ COPY public.mdl_tool_dataprivacy_purposerole (id, purposeid, roleid, lawfulbases -- -- TOC entry 11768 (class 0 OID 0) --- Dependencies: 968 +-- Dependencies: 947 -- Name: mdl_tool_dataprivacy_purposerole_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42218,8 +42223,8 @@ SELECT pg_catalog.setval('public.mdl_tool_dataprivacy_purposerole_id_seq', 1, fa -- --- TOC entry 10442 (class 0 OID 22801) --- Dependencies: 957 +-- TOC entry 10433 (class 0 OID 63190) +-- Dependencies: 948 -- Data for Name: mdl_tool_dataprivacy_request; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42229,7 +42234,7 @@ COPY public.mdl_tool_dataprivacy_request (id, type, comments, commentsformat, us -- -- TOC entry 11769 (class 0 OID 0) --- Dependencies: 956 +-- Dependencies: 949 -- Name: mdl_tool_dataprivacy_request_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42237,8 +42242,8 @@ SELECT pg_catalog.setval('public.mdl_tool_dataprivacy_request_id_seq', 1, false) -- --- TOC entry 10462 (class 0 OID 22941) --- Dependencies: 977 +-- TOC entry 10435 (class 0 OID 63210) +-- Dependencies: 950 -- Data for Name: mdl_tool_monitor_events; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42248,7 +42253,7 @@ COPY public.mdl_tool_monitor_events (id, eventname, contextid, contextlevel, con -- -- TOC entry 11770 (class 0 OID 0) --- Dependencies: 976 +-- Dependencies: 951 -- Name: mdl_tool_monitor_events_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42256,8 +42261,8 @@ SELECT pg_catalog.setval('public.mdl_tool_monitor_events_id_seq', 1, false); -- --- TOC entry 10460 (class 0 OID 22931) --- Dependencies: 975 +-- TOC entry 10437 (class 0 OID 63220) +-- Dependencies: 952 -- Data for Name: mdl_tool_monitor_history; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42267,7 +42272,7 @@ COPY public.mdl_tool_monitor_history (id, sid, userid, timesent) FROM stdin; -- -- TOC entry 11771 (class 0 OID 0) --- Dependencies: 974 +-- Dependencies: 953 -- Name: mdl_tool_monitor_history_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42275,8 +42280,8 @@ SELECT pg_catalog.setval('public.mdl_tool_monitor_history_id_seq', 1, false); -- --- TOC entry 10456 (class 0 OID 22903) --- Dependencies: 971 +-- TOC entry 10439 (class 0 OID 63225) +-- Dependencies: 954 -- Data for Name: mdl_tool_monitor_rules; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42286,7 +42291,7 @@ COPY public.mdl_tool_monitor_rules (id, description, descriptionformat, name, us -- -- TOC entry 11772 (class 0 OID 0) --- Dependencies: 970 +-- Dependencies: 955 -- Name: mdl_tool_monitor_rules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42294,8 +42299,8 @@ SELECT pg_catalog.setval('public.mdl_tool_monitor_rules_id_seq', 1, false); -- --- TOC entry 10458 (class 0 OID 22919) --- Dependencies: 973 +-- TOC entry 10441 (class 0 OID 63236) +-- Dependencies: 956 -- Data for Name: mdl_tool_monitor_subscriptions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42305,7 +42310,7 @@ COPY public.mdl_tool_monitor_subscriptions (id, courseid, ruleid, cmid, userid, -- -- TOC entry 11773 (class 0 OID 0) --- Dependencies: 972 +-- Dependencies: 957 -- Name: mdl_tool_monitor_subscriptions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42313,8 +42318,8 @@ SELECT pg_catalog.setval('public.mdl_tool_monitor_subscriptions_id_seq', 1, fals -- --- TOC entry 10464 (class 0 OID 22954) --- Dependencies: 979 +-- TOC entry 10443 (class 0 OID 63243) +-- Dependencies: 958 -- Data for Name: mdl_tool_policy; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42323,8 +42328,8 @@ COPY public.mdl_tool_policy (id, sortorder, currentversionid) FROM stdin; -- --- TOC entry 10468 (class 0 OID 22984) --- Dependencies: 983 +-- TOC entry 10444 (class 0 OID 63247) +-- Dependencies: 959 -- Data for Name: mdl_tool_policy_acceptances; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42334,7 +42339,7 @@ COPY public.mdl_tool_policy_acceptances (id, policyversionid, userid, status, la -- -- TOC entry 11774 (class 0 OID 0) --- Dependencies: 982 +-- Dependencies: 960 -- Name: mdl_tool_policy_acceptances_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42343,7 +42348,7 @@ SELECT pg_catalog.setval('public.mdl_tool_policy_acceptances_id_seq', 1, false); -- -- TOC entry 11775 (class 0 OID 0) --- Dependencies: 978 +-- Dependencies: 961 -- Name: mdl_tool_policy_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42351,8 +42356,8 @@ SELECT pg_catalog.setval('public.mdl_tool_policy_id_seq', 1, false); -- --- TOC entry 10466 (class 0 OID 22964) --- Dependencies: 981 +-- TOC entry 10447 (class 0 OID 63258) +-- Dependencies: 962 -- Data for Name: mdl_tool_policy_versions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42362,7 +42367,7 @@ COPY public.mdl_tool_policy_versions (id, name, type, audience, archived, usermo -- -- TOC entry 11776 (class 0 OID 0) --- Dependencies: 980 +-- Dependencies: 963 -- Name: mdl_tool_policy_versions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42370,8 +42375,8 @@ SELECT pg_catalog.setval('public.mdl_tool_policy_versions_id_seq', 1, false); -- --- TOC entry 10472 (class 0 OID 23011) --- Dependencies: 987 +-- TOC entry 10449 (class 0 OID 63273) +-- Dependencies: 964 -- Data for Name: mdl_tool_recyclebin_category; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42381,7 +42386,7 @@ COPY public.mdl_tool_recyclebin_category (id, categoryid, shortname, fullname, t -- -- TOC entry 11777 (class 0 OID 0) --- Dependencies: 986 +-- Dependencies: 965 -- Name: mdl_tool_recyclebin_category_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42389,8 +42394,8 @@ SELECT pg_catalog.setval('public.mdl_tool_recyclebin_category_id_seq', 1, false) -- --- TOC entry 10470 (class 0 OID 23000) --- Dependencies: 985 +-- TOC entry 10451 (class 0 OID 63283) +-- Dependencies: 966 -- Data for Name: mdl_tool_recyclebin_course; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42400,7 +42405,7 @@ COPY public.mdl_tool_recyclebin_course (id, courseid, section, module, name, tim -- -- TOC entry 11778 (class 0 OID 0) --- Dependencies: 984 +-- Dependencies: 967 -- Name: mdl_tool_recyclebin_course_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42408,8 +42413,8 @@ SELECT pg_catalog.setval('public.mdl_tool_recyclebin_course_id_seq', 1, false); -- --- TOC entry 10476 (class 0 OID 23040) --- Dependencies: 991 +-- TOC entry 10453 (class 0 OID 63289) +-- Dependencies: 968 -- Data for Name: mdl_tool_usertours_steps; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42419,7 +42424,7 @@ COPY public.mdl_tool_usertours_steps (id, tourid, title, content, targettype, ta -- -- TOC entry 11779 (class 0 OID 0) --- Dependencies: 990 +-- Dependencies: 969 -- Name: mdl_tool_usertours_steps_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42427,8 +42432,8 @@ SELECT pg_catalog.setval('public.mdl_tool_usertours_steps_id_seq', 1, false); -- --- TOC entry 10474 (class 0 OID 23026) --- Dependencies: 989 +-- TOC entry 10455 (class 0 OID 63298) +-- Dependencies: 970 -- Data for Name: mdl_tool_usertours_tours; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42438,7 +42443,7 @@ COPY public.mdl_tool_usertours_tours (id, name, description, pathmatch, enabled, -- -- TOC entry 11780 (class 0 OID 0) --- Dependencies: 988 +-- Dependencies: 971 -- Name: mdl_tool_usertours_tours_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42446,8 +42451,8 @@ SELECT pg_catalog.setval('public.mdl_tool_usertours_tours_id_seq', 1, false); -- --- TOC entry 9677 (class 0 OID 16428) --- Dependencies: 192 +-- TOC entry 10457 (class 0 OID 63309) +-- Dependencies: 972 -- Data for Name: mdl_upgrade_log; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43692,7 +43697,7 @@ COPY public.mdl_upgrade_log (id, type, plugin, version, targetversion, info, det -- -- TOC entry 11781 (class 0 OID 0) --- Dependencies: 191 +-- Dependencies: 973 -- Name: mdl_upgrade_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43700,8 +43705,8 @@ SELECT pg_catalog.setval('public.mdl_upgrade_log_id_seq', 1235, true); -- --- TOC entry 10346 (class 0 OID 22071) --- Dependencies: 861 +-- TOC entry 10459 (class 0 OID 63318) +-- Dependencies: 974 -- Data for Name: mdl_url; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43711,7 +43716,7 @@ COPY public.mdl_url (id, course, name, intro, introformat, externalurl, display, -- -- TOC entry 11782 (class 0 OID 0) --- Dependencies: 860 +-- Dependencies: 975 -- Name: mdl_url_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43719,20 +43724,20 @@ SELECT pg_catalog.setval('public.mdl_url_id_seq', 1, false); -- --- TOC entry 9747 (class 0 OID 17035) --- Dependencies: 262 +-- TOC entry 10461 (class 0 OID 63331) +-- Dependencies: 976 -- Data for Name: mdl_user; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.mdl_user (id, auth, confirmed, policyagreed, deleted, suspended, mnethostid, username, password, idnumber, firstname, lastname, email, emailstop, icq, skype, yahoo, aim, msn, phone1, phone2, institution, department, address, city, country, lang, calendartype, theme, timezone, firstaccess, lastaccess, lastlogin, currentlogin, lastip, secret, picture, url, description, descriptionformat, mailformat, maildigest, maildisplay, autosubscribe, trackforums, timecreated, timemodified, trustbitmask, imagealt, lastnamephonetic, firstnamephonetic, middlename, alternatename, moodlenetprofile) FROM stdin; 1 manual 1 0 0 0 1 guest $2y$10$uqhnR2sWCxC8jN5iDUZh1uCs95LbjaXtf0rk/N7fufZ5BrTmUPUfq Guest user root@localhost 0 en gregorian 99 0 0 0 0 0 This user is a special user that allows read-only access to some courses. 1 1 0 2 1 0 0 1609808466 0 \N \N \N \N \N \N -2 manual 1 0 0 0 1 admin $2y$10$MeiIoov87/LrH6ToPR1Ahe4uMCOxI9Jh9JERzVsZP6n5Gx/JLFdI6 Admin User email@email.com 0 en gregorian America/Los_Angeles 1609808513 1609889130 1609808513 1609883714 67.182.30.218 0 1 1 0 1 1 0 0 1609884654 0 \N +2 manual 1 0 0 0 1 admin $2y$10$MeiIoov87/LrH6ToPR1Ahe4uMCOxI9Jh9JERzVsZP6n5Gx/JLFdI6 Admin User email@email.com 0 en gregorian America/Los_Angeles 1609808513 1609892614 1609808513 1609883714 67.182.30.218 0 1 1 0 1 1 0 0 1609884654 0 \N \. -- --- TOC entry 10004 (class 0 OID 19142) --- Dependencies: 519 +-- TOC entry 10462 (class 0 OID 63383) +-- Dependencies: 977 -- Data for Name: mdl_user_devices; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43742,7 +43747,7 @@ COPY public.mdl_user_devices (id, userid, appid, name, model, platform, version, -- -- TOC entry 11783 (class 0 OID 0) --- Dependencies: 518 +-- Dependencies: 978 -- Name: mdl_user_devices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43750,8 +43755,8 @@ SELECT pg_catalog.setval('public.mdl_user_devices_id_seq', 1, false); -- --- TOC entry 9693 (class 0 OID 16592) --- Dependencies: 208 +-- TOC entry 10464 (class 0 OID 63399) +-- Dependencies: 979 -- Data for Name: mdl_user_enrolments; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43761,7 +43766,7 @@ COPY public.mdl_user_enrolments (id, status, enrolid, userid, timestart, timeend -- -- TOC entry 11784 (class 0 OID 0) --- Dependencies: 207 +-- Dependencies: 980 -- Name: mdl_user_enrolments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43770,7 +43775,7 @@ SELECT pg_catalog.setval('public.mdl_user_enrolments_id_seq', 1, false); -- -- TOC entry 11785 (class 0 OID 0) --- Dependencies: 261 +-- Dependencies: 981 -- Name: mdl_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43778,8 +43783,8 @@ SELECT pg_catalog.setval('public.mdl_user_id_seq', 2, true); -- --- TOC entry 9798 (class 0 OID 17511) --- Dependencies: 313 +-- TOC entry 10467 (class 0 OID 63412) +-- Dependencies: 982 -- Data for Name: mdl_user_info_category; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43789,7 +43794,7 @@ COPY public.mdl_user_info_category (id, name, sortorder) FROM stdin; -- -- TOC entry 11786 (class 0 OID 0) --- Dependencies: 312 +-- Dependencies: 983 -- Name: mdl_user_info_category_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43797,8 +43802,8 @@ SELECT pg_catalog.setval('public.mdl_user_info_category_id_seq', 1, false); -- --- TOC entry 9800 (class 0 OID 17521) --- Dependencies: 315 +-- TOC entry 10469 (class 0 OID 63419) +-- Dependencies: 984 -- Data for Name: mdl_user_info_data; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43808,7 +43813,7 @@ COPY public.mdl_user_info_data (id, userid, fieldid, data, dataformat) FROM stdi -- -- TOC entry 11787 (class 0 OID 0) --- Dependencies: 314 +-- Dependencies: 985 -- Name: mdl_user_info_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43816,8 +43821,8 @@ SELECT pg_catalog.setval('public.mdl_user_info_data_id_seq', 1, false); -- --- TOC entry 9796 (class 0 OID 17489) --- Dependencies: 311 +-- TOC entry 10471 (class 0 OID 63430) +-- Dependencies: 986 -- Data for Name: mdl_user_info_field; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43827,7 +43832,7 @@ COPY public.mdl_user_info_field (id, shortname, name, datatype, description, des -- -- TOC entry 11788 (class 0 OID 0) --- Dependencies: 310 +-- Dependencies: 987 -- Name: mdl_user_info_field_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43835,8 +43840,8 @@ SELECT pg_catalog.setval('public.mdl_user_info_field_id_seq', 1, false); -- --- TOC entry 9751 (class 0 OID 17122) --- Dependencies: 266 +-- TOC entry 10473 (class 0 OID 63449) +-- Dependencies: 988 -- Data for Name: mdl_user_lastaccess; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43846,7 +43851,7 @@ COPY public.mdl_user_lastaccess (id, userid, courseid, timeaccess) FROM stdin; -- -- TOC entry 11789 (class 0 OID 0) --- Dependencies: 265 +-- Dependencies: 989 -- Name: mdl_user_lastaccess_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43854,8 +43859,8 @@ SELECT pg_catalog.setval('public.mdl_user_lastaccess_id_seq', 1, false); -- --- TOC entry 9753 (class 0 OID 17136) --- Dependencies: 268 +-- TOC entry 10475 (class 0 OID 63457) +-- Dependencies: 990 -- Data for Name: mdl_user_password_history; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43865,7 +43870,7 @@ COPY public.mdl_user_password_history (id, userid, hash, timecreated) FROM stdin -- -- TOC entry 11790 (class 0 OID 0) --- Dependencies: 267 +-- Dependencies: 991 -- Name: mdl_user_password_history_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43873,8 +43878,8 @@ SELECT pg_catalog.setval('public.mdl_user_password_history_id_seq', 1, false); -- --- TOC entry 10006 (class 0 OID 19164) --- Dependencies: 521 +-- TOC entry 10477 (class 0 OID 63463) +-- Dependencies: 992 -- Data for Name: mdl_user_password_resets; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43884,7 +43889,7 @@ COPY public.mdl_user_password_resets (id, userid, timerequested, timererequested -- -- TOC entry 11791 (class 0 OID 0) --- Dependencies: 520 +-- Dependencies: 993 -- Name: mdl_user_password_resets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43892,8 +43897,8 @@ SELECT pg_catalog.setval('public.mdl_user_password_resets_id_seq', 1, false); -- --- TOC entry 9749 (class 0 OID 17107) --- Dependencies: 264 +-- TOC entry 10479 (class 0 OID 63470) +-- Dependencies: 994 -- Data for Name: mdl_user_preferences; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43907,7 +43912,7 @@ COPY public.mdl_user_preferences (id, userid, name, value) FROM stdin; -- -- TOC entry 11792 (class 0 OID 0) --- Dependencies: 263 +-- Dependencies: 995 -- Name: mdl_user_preferences_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43915,8 +43920,8 @@ SELECT pg_catalog.setval('public.mdl_user_preferences_id_seq', 4, true); -- --- TOC entry 9896 (class 0 OID 18347) --- Dependencies: 411 +-- TOC entry 10481 (class 0 OID 63481) +-- Dependencies: 996 -- Data for Name: mdl_user_private_key; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43926,7 +43931,7 @@ COPY public.mdl_user_private_key (id, script, value, userid, instance, iprestric -- -- TOC entry 11793 (class 0 OID 0) --- Dependencies: 410 +-- Dependencies: 997 -- Name: mdl_user_private_key_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43934,8 +43939,8 @@ SELECT pg_catalog.setval('public.mdl_user_private_key_id_seq', 1, false); -- --- TOC entry 10348 (class 0 OID 22088) --- Dependencies: 863 +-- TOC entry 10483 (class 0 OID 63491) +-- Dependencies: 998 -- Data for Name: mdl_wiki; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43945,7 +43950,7 @@ COPY public.mdl_wiki (id, course, name, intro, introformat, timecreated, timemod -- -- TOC entry 11794 (class 0 OID 0) --- Dependencies: 862 +-- Dependencies: 999 -- Name: mdl_wiki_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43953,8 +43958,8 @@ SELECT pg_catalog.setval('public.mdl_wiki_id_seq', 1, false); -- --- TOC entry 10358 (class 0 OID 22174) --- Dependencies: 873 +-- TOC entry 10485 (class 0 OID 63510) +-- Dependencies: 1000 -- Data for Name: mdl_wiki_links; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43964,7 +43969,7 @@ COPY public.mdl_wiki_links (id, subwikiid, frompageid, topageid, tomissingpage) -- -- TOC entry 11795 (class 0 OID 0) --- Dependencies: 872 +-- Dependencies: 1001 -- Name: mdl_wiki_links_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43972,8 +43977,8 @@ SELECT pg_catalog.setval('public.mdl_wiki_links_id_seq', 1, false); -- --- TOC entry 10360 (class 0 OID 22187) --- Dependencies: 875 +-- TOC entry 10487 (class 0 OID 63518) +-- Dependencies: 1002 -- Data for Name: mdl_wiki_locks; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43983,7 +43988,7 @@ COPY public.mdl_wiki_locks (id, pageid, sectionname, userid, lockedat) FROM stdi -- -- TOC entry 11796 (class 0 OID 0) --- Dependencies: 874 +-- Dependencies: 1003 -- Name: mdl_wiki_locks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43991,8 +43996,8 @@ SELECT pg_catalog.setval('public.mdl_wiki_locks_id_seq', 1, false); -- --- TOC entry 10352 (class 0 OID 22124) --- Dependencies: 867 +-- TOC entry 10489 (class 0 OID 63526) +-- Dependencies: 1004 -- Data for Name: mdl_wiki_pages; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44002,7 +44007,7 @@ COPY public.mdl_wiki_pages (id, subwikiid, title, cachedcontent, timecreated, ti -- -- TOC entry 11797 (class 0 OID 0) --- Dependencies: 866 +-- Dependencies: 1005 -- Name: mdl_wiki_pages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44010,8 +44015,8 @@ SELECT pg_catalog.setval('public.mdl_wiki_pages_id_seq', 1, false); -- --- TOC entry 10350 (class 0 OID 22111) --- Dependencies: 865 +-- TOC entry 10491 (class 0 OID 63542) +-- Dependencies: 1006 -- Data for Name: mdl_wiki_subwikis; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44021,7 +44026,7 @@ COPY public.mdl_wiki_subwikis (id, wikiid, groupid, userid) FROM stdin; -- -- TOC entry 11798 (class 0 OID 0) --- Dependencies: 864 +-- Dependencies: 1007 -- Name: mdl_wiki_subwikis_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44029,8 +44034,8 @@ SELECT pg_catalog.setval('public.mdl_wiki_subwikis_id_seq', 1, false); -- --- TOC entry 10356 (class 0 OID 22162) --- Dependencies: 871 +-- TOC entry 10493 (class 0 OID 63550) +-- Dependencies: 1008 -- Data for Name: mdl_wiki_synonyms; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44040,7 +44045,7 @@ COPY public.mdl_wiki_synonyms (id, subwikiid, pageid, pagesynonym) FROM stdin; -- -- TOC entry 11799 (class 0 OID 0) --- Dependencies: 870 +-- Dependencies: 1009 -- Name: mdl_wiki_synonyms_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44048,8 +44053,8 @@ SELECT pg_catalog.setval('public.mdl_wiki_synonyms_id_seq', 1, false); -- --- TOC entry 10354 (class 0 OID 22145) --- Dependencies: 869 +-- TOC entry 10495 (class 0 OID 63558) +-- Dependencies: 1010 -- Data for Name: mdl_wiki_versions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44059,7 +44064,7 @@ COPY public.mdl_wiki_versions (id, pageid, content, contentformat, version, time -- -- TOC entry 11800 (class 0 OID 0) --- Dependencies: 868 +-- Dependencies: 1011 -- Name: mdl_wiki_versions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44067,8 +44072,8 @@ SELECT pg_catalog.setval('public.mdl_wiki_versions_id_seq', 1, false); -- --- TOC entry 10362 (class 0 OID 22198) --- Dependencies: 877 +-- TOC entry 10497 (class 0 OID 63571) +-- Dependencies: 1012 -- Data for Name: mdl_workshop; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44077,8 +44082,8 @@ COPY public.mdl_workshop (id, course, name, intro, introformat, instructauthors, -- --- TOC entry 10370 (class 0 OID 22295) --- Dependencies: 885 +-- TOC entry 10498 (class 0 OID 63605) +-- Dependencies: 1013 -- Data for Name: mdl_workshop_aggregations; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44088,7 +44093,7 @@ COPY public.mdl_workshop_aggregations (id, workshopid, userid, gradinggrade, tim -- -- TOC entry 11801 (class 0 OID 0) --- Dependencies: 884 +-- Dependencies: 1014 -- Name: mdl_workshop_aggregations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44096,8 +44101,8 @@ SELECT pg_catalog.setval('public.mdl_workshop_aggregations_id_seq', 1, false); -- --- TOC entry 10366 (class 0 OID 22260) --- Dependencies: 881 +-- TOC entry 10500 (class 0 OID 63610) +-- Dependencies: 1015 -- Data for Name: mdl_workshop_assessments; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44107,7 +44112,7 @@ COPY public.mdl_workshop_assessments (id, submissionid, reviewerid, weight, time -- -- TOC entry 11802 (class 0 OID 0) --- Dependencies: 880 +-- Dependencies: 1016 -- Name: mdl_workshop_assessments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44115,8 +44120,8 @@ SELECT pg_catalog.setval('public.mdl_workshop_assessments_id_seq', 1, false); -- --- TOC entry 10368 (class 0 OID 22280) --- Dependencies: 883 +-- TOC entry 10502 (class 0 OID 63624) +-- Dependencies: 1017 -- Data for Name: mdl_workshop_grades; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44126,7 +44131,7 @@ COPY public.mdl_workshop_grades (id, assessmentid, strategy, dimensionid, grade, -- -- TOC entry 11803 (class 0 OID 0) --- Dependencies: 882 +-- Dependencies: 1018 -- Name: mdl_workshop_grades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44135,7 +44140,7 @@ SELECT pg_catalog.setval('public.mdl_workshop_grades_id_seq', 1, false); -- -- TOC entry 11804 (class 0 OID 0) --- Dependencies: 876 +-- Dependencies: 1019 -- Name: mdl_workshop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44143,8 +44148,8 @@ SELECT pg_catalog.setval('public.mdl_workshop_id_seq', 1, false); -- --- TOC entry 10364 (class 0 OID 22238) --- Dependencies: 879 +-- TOC entry 10505 (class 0 OID 63636) +-- Dependencies: 1020 -- Data for Name: mdl_workshop_submissions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44154,7 +44159,7 @@ COPY public.mdl_workshop_submissions (id, workshopid, example, authorid, timecre -- -- TOC entry 11805 (class 0 OID 0) --- Dependencies: 878 +-- Dependencies: 1021 -- Name: mdl_workshop_submissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44162,8 +44167,8 @@ SELECT pg_catalog.setval('public.mdl_workshop_submissions_id_seq', 1, false); -- --- TOC entry 10520 (class 0 OID 23352) --- Dependencies: 1035 +-- TOC entry 10507 (class 0 OID 63652) +-- Dependencies: 1022 -- Data for Name: mdl_workshopallocation_scheduled; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44173,7 +44178,7 @@ COPY public.mdl_workshopallocation_scheduled (id, workshopid, enabled, submissio -- -- TOC entry 11806 (class 0 OID 0) --- Dependencies: 1034 +-- Dependencies: 1023 -- Name: mdl_workshopallocation_scheduled_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44181,8 +44186,8 @@ SELECT pg_catalog.setval('public.mdl_workshopallocation_scheduled_id_seq', 1, fa -- --- TOC entry 10522 (class 0 OID 23365) --- Dependencies: 1037 +-- TOC entry 10509 (class 0 OID 63661) +-- Dependencies: 1024 -- Data for Name: mdl_workshopeval_best_settings; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44192,7 +44197,7 @@ COPY public.mdl_workshopeval_best_settings (id, workshopid, comparison) FROM std -- -- TOC entry 11807 (class 0 OID 0) --- Dependencies: 1036 +-- Dependencies: 1025 -- Name: mdl_workshopeval_best_settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44200,8 +44205,8 @@ SELECT pg_catalog.setval('public.mdl_workshopeval_best_settings_id_seq', 1, fals -- --- TOC entry 10506 (class 0 OID 23261) --- Dependencies: 1021 +-- TOC entry 10511 (class 0 OID 63667) +-- Dependencies: 1026 -- Data for Name: mdl_workshopform_accumulative; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44211,7 +44216,7 @@ COPY public.mdl_workshopform_accumulative (id, workshopid, sort, description, de -- -- TOC entry 11808 (class 0 OID 0) --- Dependencies: 1020 +-- Dependencies: 1027 -- Name: mdl_workshopform_accumulative_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44219,8 +44224,8 @@ SELECT pg_catalog.setval('public.mdl_workshopform_accumulative_id_seq', 1, false -- --- TOC entry 10508 (class 0 OID 23276) --- Dependencies: 1023 +-- TOC entry 10513 (class 0 OID 63678) +-- Dependencies: 1028 -- Data for Name: mdl_workshopform_comments; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44230,7 +44235,7 @@ COPY public.mdl_workshopform_comments (id, workshopid, sort, description, descri -- -- TOC entry 11809 (class 0 OID 0) --- Dependencies: 1022 +-- Dependencies: 1029 -- Name: mdl_workshopform_comments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44238,8 +44243,8 @@ SELECT pg_catalog.setval('public.mdl_workshopform_comments_id_seq', 1, false); -- --- TOC entry 10510 (class 0 OID 23290) --- Dependencies: 1025 +-- TOC entry 10515 (class 0 OID 63688) +-- Dependencies: 1030 -- Data for Name: mdl_workshopform_numerrors; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44249,7 +44254,7 @@ COPY public.mdl_workshopform_numerrors (id, workshopid, sort, description, descr -- -- TOC entry 11810 (class 0 OID 0) --- Dependencies: 1024 +-- Dependencies: 1031 -- Name: mdl_workshopform_numerrors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44257,8 +44262,8 @@ SELECT pg_catalog.setval('public.mdl_workshopform_numerrors_id_seq', 1, false); -- --- TOC entry 10512 (class 0 OID 23305) --- Dependencies: 1027 +-- TOC entry 10517 (class 0 OID 63699) +-- Dependencies: 1032 -- Data for Name: mdl_workshopform_numerrors_map; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44268,7 +44273,7 @@ COPY public.mdl_workshopform_numerrors_map (id, workshopid, nonegative, grade) F -- -- TOC entry 11811 (class 0 OID 0) --- Dependencies: 1026 +-- Dependencies: 1033 -- Name: mdl_workshopform_numerrors_map_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44276,8 +44281,8 @@ SELECT pg_catalog.setval('public.mdl_workshopform_numerrors_map_id_seq', 1, fals -- --- TOC entry 10514 (class 0 OID 23315) --- Dependencies: 1029 +-- TOC entry 10519 (class 0 OID 63704) +-- Dependencies: 1034 -- Data for Name: mdl_workshopform_rubric; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44286,8 +44291,8 @@ COPY public.mdl_workshopform_rubric (id, workshopid, sort, description, descript -- --- TOC entry 10518 (class 0 OID 23342) --- Dependencies: 1033 +-- TOC entry 10520 (class 0 OID 63712) +-- Dependencies: 1035 -- Data for Name: mdl_workshopform_rubric_config; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44297,7 +44302,7 @@ COPY public.mdl_workshopform_rubric_config (id, workshopid, layout) FROM stdin; -- -- TOC entry 11812 (class 0 OID 0) --- Dependencies: 1032 +-- Dependencies: 1036 -- Name: mdl_workshopform_rubric_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44306,7 +44311,7 @@ SELECT pg_catalog.setval('public.mdl_workshopform_rubric_config_id_seq', 1, fals -- -- TOC entry 11813 (class 0 OID 0) --- Dependencies: 1028 +-- Dependencies: 1037 -- Name: mdl_workshopform_rubric_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44314,8 +44319,8 @@ SELECT pg_catalog.setval('public.mdl_workshopform_rubric_id_seq', 1, false); -- --- TOC entry 10516 (class 0 OID 23329) --- Dependencies: 1031 +-- TOC entry 10523 (class 0 OID 63720) +-- Dependencies: 1038 -- Data for Name: mdl_workshopform_rubric_levels; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44325,7 +44330,7 @@ COPY public.mdl_workshopform_rubric_levels (id, dimensionid, grade, definition, -- -- TOC entry 11814 (class 0 OID 0) --- Dependencies: 1030 +-- Dependencies: 1039 -- Name: mdl_workshopform_rubric_levels_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44333,7 +44338,7 @@ SELECT pg_catalog.setval('public.mdl_workshopform_rubric_levels_id_seq', 1, fals -- --- TOC entry 8675 (class 2606 OID 19646) +-- TOC entry 7793 (class 2606 OID 64157) -- Name: mdl_analytics_indicator_calc mdl_analindicalc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44342,7 +44347,7 @@ ALTER TABLE ONLY public.mdl_analytics_indicator_calc -- --- TOC entry 8651 (class 2606 OID 19556) +-- TOC entry 7797 (class 2606 OID 64159) -- Name: mdl_analytics_models mdl_analmode_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44351,7 +44356,7 @@ ALTER TABLE ONLY public.mdl_analytics_models -- --- TOC entry 8653 (class 2606 OID 19571) +-- TOC entry 7799 (class 2606 OID 64161) -- Name: mdl_analytics_models_log mdl_analmodelog_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44360,7 +44365,7 @@ ALTER TABLE ONLY public.mdl_analytics_models_log -- --- TOC entry 8657 (class 2606 OID 19584) +-- TOC entry 7812 (class 2606 OID 64163) -- Name: mdl_analytics_predictions mdl_analpred_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44369,7 +44374,7 @@ ALTER TABLE ONLY public.mdl_analytics_predictions -- --- TOC entry 8678 (class 2606 OID 19657) +-- TOC entry 7806 (class 2606 OID 64165) -- Name: mdl_analytics_prediction_actions mdl_analpredacti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44378,7 +44383,7 @@ ALTER TABLE ONLY public.mdl_analytics_prediction_actions -- --- TOC entry 8665 (class 2606 OID 19616) +-- TOC entry 7802 (class 2606 OID 64167) -- Name: mdl_analytics_predict_samples mdl_analpredsamp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44387,7 +44392,7 @@ ALTER TABLE ONLY public.mdl_analytics_predict_samples -- --- TOC entry 8661 (class 2606 OID 19600) +-- TOC entry 7816 (class 2606 OID 64169) -- Name: mdl_analytics_train_samples mdl_analtraisamp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44396,7 +44401,7 @@ ALTER TABLE ONLY public.mdl_analytics_train_samples -- --- TOC entry 8687 (class 2606 OID 19681) +-- TOC entry 7821 (class 2606 OID 64171) -- Name: mdl_analytics_used_analysables mdl_analusedanal_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44405,7 +44410,7 @@ ALTER TABLE ONLY public.mdl_analytics_used_analysables -- --- TOC entry 8670 (class 2606 OID 19630) +-- TOC entry 7826 (class 2606 OID 64173) -- Name: mdl_analytics_used_files mdl_analusedfile_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44414,7 +44419,7 @@ ALTER TABLE ONLY public.mdl_analytics_used_files -- --- TOC entry 8855 (class 2606 OID 20399) +-- TOC entry 7894 (class 2606 OID 64175) -- Name: mdl_assignment mdl_assi_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44423,7 +44428,7 @@ ALTER TABLE ONLY public.mdl_assignment -- --- TOC entry 8818 (class 2606 OID 20270) +-- TOC entry 7831 (class 2606 OID 64177) -- Name: mdl_assign mdl_assi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44432,7 +44437,7 @@ ALTER TABLE ONLY public.mdl_assign -- --- TOC entry 9478 (class 2606 OID 23094) +-- TOC entry 7869 (class 2606 OID 64179) -- Name: mdl_assignfeedback_comments mdl_assicomm_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44441,7 +44446,7 @@ ALTER TABLE ONLY public.mdl_assignfeedback_comments -- --- TOC entry 9486 (class 2606 OID 23136) +-- TOC entry 7873 (class 2606 OID 64181) -- Name: mdl_assignfeedback_editpdf_annot mdl_assieditanno_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44450,7 +44455,7 @@ ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_annot -- --- TOC entry 9482 (class 2606 OID 23114) +-- TOC entry 7877 (class 2606 OID 64183) -- Name: mdl_assignfeedback_editpdf_cmnt mdl_assieditcmnt_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44459,7 +44464,7 @@ ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_cmnt -- --- TOC entry 9491 (class 2606 OID 23162) +-- TOC entry 7879 (class 2606 OID 64185) -- Name: mdl_assignfeedback_editpdf_queue mdl_assieditqueu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44468,7 +44473,7 @@ ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_queue -- --- TOC entry 9488 (class 2606 OID 23152) +-- TOC entry 7882 (class 2606 OID 64187) -- Name: mdl_assignfeedback_editpdf_quick mdl_assieditquic_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44477,7 +44482,7 @@ ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_quick -- --- TOC entry 9496 (class 2606 OID 23178) +-- TOC entry 7887 (class 2606 OID 64189) -- Name: mdl_assignfeedback_editpdf_rot mdl_assieditrot_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44486,7 +44491,7 @@ ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_rot -- --- TOC entry 9500 (class 2606 OID 23191) +-- TOC entry 7891 (class 2606 OID 64191) -- Name: mdl_assignfeedback_file mdl_assifile_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44495,7 +44500,7 @@ ALTER TABLE ONLY public.mdl_assignfeedback_file -- --- TOC entry 9469 (class 2606 OID 23062) +-- TOC entry 7907 (class 2606 OID 64193) -- Name: mdl_assignsubmission_file mdl_assifile_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44504,7 +44509,7 @@ ALTER TABLE ONLY public.mdl_assignsubmission_file -- --- TOC entry 8831 (class 2606 OID 20307) +-- TOC entry 7837 (class 2606 OID 64195) -- Name: mdl_assign_grades mdl_assigrad_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44513,7 +44518,7 @@ ALTER TABLE ONLY public.mdl_assign_grades -- --- TOC entry 9473 (class 2606 OID 23078) +-- TOC entry 7911 (class 2606 OID 64197) -- Name: mdl_assignsubmission_onlinetext mdl_assionli_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44522,7 +44527,7 @@ ALTER TABLE ONLY public.mdl_assignsubmission_onlinetext -- --- TOC entry 8851 (class 2606 OID 20368) +-- TOC entry 7842 (class 2606 OID 64199) -- Name: mdl_assign_overrides mdl_assiover_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44531,7 +44536,7 @@ ALTER TABLE ONLY public.mdl_assign_overrides -- --- TOC entry 8835 (class 2606 OID 20326) +-- TOC entry 7846 (class 2606 OID 64201) -- Name: mdl_assign_plugin_config mdl_assiplugconf_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44540,7 +44545,7 @@ ALTER TABLE ONLY public.mdl_assign_plugin_config -- --- TOC entry 8858 (class 2606 OID 20421) +-- TOC entry 7897 (class 2606 OID 64203) -- Name: mdl_assignment_submissions mdl_assisubm_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44549,7 +44554,7 @@ ALTER TABLE ONLY public.mdl_assignment_submissions -- --- TOC entry 8825 (class 2606 OID 20287) +-- TOC entry 7855 (class 2606 OID 64205) -- Name: mdl_assign_submission mdl_assisubm_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44558,7 +44563,7 @@ ALTER TABLE ONLY public.mdl_assign_submission -- --- TOC entry 8863 (class 2606 OID 20438) +-- TOC entry 7902 (class 2606 OID 64207) -- Name: mdl_assignment_upgrade mdl_assiupgr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44567,7 +44572,7 @@ ALTER TABLE ONLY public.mdl_assignment_upgrade -- --- TOC entry 8845 (class 2606 OID 20356) +-- TOC entry 7859 (class 2606 OID 64209) -- Name: mdl_assign_user_flags mdl_assiuserflag_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44576,7 +44581,7 @@ ALTER TABLE ONLY public.mdl_assign_user_flags -- --- TOC entry 8841 (class 2606 OID 20340) +-- TOC entry 7864 (class 2606 OID 64211) -- Name: mdl_assign_user_mapping mdl_assiusermapp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44585,7 +44590,7 @@ ALTER TABLE ONLY public.mdl_assign_user_mapping -- --- TOC entry 9260 (class 2606 OID 22316) +-- TOC entry 7914 (class 2606 OID 64213) -- Name: mdl_auth_oauth2_linked_login mdl_authoautlinklogi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44594,7 +44599,7 @@ ALTER TABLE ONLY public.mdl_auth_oauth2_linked_login -- --- TOC entry 8443 (class 2606 OID 18816) +-- TOC entry 7922 (class 2606 OID 64215) -- Name: mdl_backup_controllers mdl_backcont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44603,7 +44608,7 @@ ALTER TABLE ONLY public.mdl_backup_controllers -- --- TOC entry 8388 (class 2606 OID 18601) +-- TOC entry 7928 (class 2606 OID 64217) -- Name: mdl_backup_courses mdl_backcour_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44612,7 +44617,7 @@ ALTER TABLE ONLY public.mdl_backup_courses -- --- TOC entry 8450 (class 2606 OID 18832) +-- TOC entry 7932 (class 2606 OID 64219) -- Name: mdl_backup_logs mdl_backlogs_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44621,7 +44626,7 @@ ALTER TABLE ONLY public.mdl_backup_logs -- --- TOC entry 8476 (class 2606 OID 18946) +-- TOC entry 7935 (class 2606 OID 64221) -- Name: mdl_badge mdl_badg_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44630,7 +44635,7 @@ ALTER TABLE ONLY public.mdl_badge -- --- TOC entry 8526 (class 2606 OID 19108) +-- TOC entry 7941 (class 2606 OID 64223) -- Name: mdl_badge_alignment mdl_badgalig_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44639,7 +44644,7 @@ ALTER TABLE ONLY public.mdl_badge_alignment -- --- TOC entry 8509 (class 2606 OID 19049) +-- TOC entry 7944 (class 2606 OID 64225) -- Name: mdl_badge_backpack mdl_badgback_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44648,7 +44653,7 @@ ALTER TABLE ONLY public.mdl_badge_backpack -- --- TOC entry 8513 (class 2606 OID 19065) +-- TOC entry 7948 (class 2606 OID 64227) -- Name: mdl_badge_backpack_oauth2 mdl_badgbackoaut_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44657,7 +44662,7 @@ ALTER TABLE ONLY public.mdl_badge_backpack_oauth2 -- --- TOC entry 8484 (class 2606 OID 18964) +-- TOC entry 7956 (class 2606 OID 64229) -- Name: mdl_badge_criteria mdl_badgcrit_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44666,7 +44671,7 @@ ALTER TABLE ONLY public.mdl_badge_criteria -- --- TOC entry 8495 (class 2606 OID 19006) +-- TOC entry 7959 (class 2606 OID 64231) -- Name: mdl_badge_criteria_met mdl_badgcritmet_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44675,7 +44680,7 @@ ALTER TABLE ONLY public.mdl_badge_criteria_met -- --- TOC entry 8487 (class 2606 OID 18979) +-- TOC entry 7964 (class 2606 OID 64233) -- Name: mdl_badge_criteria_param mdl_badgcritpara_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44684,7 +44689,7 @@ ALTER TABLE ONLY public.mdl_badge_criteria_param -- --- TOC entry 8500 (class 2606 OID 19025) +-- TOC entry 7967 (class 2606 OID 64235) -- Name: mdl_badge_endorsement mdl_badgendo_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44693,7 +44698,7 @@ ALTER TABLE ONLY public.mdl_badge_endorsement -- --- TOC entry 8519 (class 2606 OID 19080) +-- TOC entry 7970 (class 2606 OID 64237) -- Name: mdl_badge_external mdl_badgexte_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44702,7 +44707,7 @@ ALTER TABLE ONLY public.mdl_badge_external -- --- TOC entry 8535 (class 2606 OID 19136) +-- TOC entry 7974 (class 2606 OID 64239) -- Name: mdl_badge_external_backpack mdl_badgexteback_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44711,7 +44716,7 @@ ALTER TABLE ONLY public.mdl_badge_external_backpack -- --- TOC entry 8521 (class 2606 OID 19092) +-- TOC entry 7977 (class 2606 OID 64241) -- Name: mdl_badge_external_identifier mdl_badgexteiden_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44720,7 +44725,7 @@ ALTER TABLE ONLY public.mdl_badge_external_identifier -- --- TOC entry 8491 (class 2606 OID 18995) +-- TOC entry 7983 (class 2606 OID 64243) -- Name: mdl_badge_issued mdl_badgissu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44729,7 +44734,7 @@ ALTER TABLE ONLY public.mdl_badge_issued -- --- TOC entry 8503 (class 2606 OID 19034) +-- TOC entry 7987 (class 2606 OID 64245) -- Name: mdl_badge_manual_award mdl_badgmanuawar_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44738,7 +44743,7 @@ ALTER TABLE ONLY public.mdl_badge_manual_award -- --- TOC entry 8530 (class 2606 OID 19118) +-- TOC entry 7994 (class 2606 OID 64247) -- Name: mdl_badge_related mdl_badgrela_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44747,7 +44752,7 @@ ALTER TABLE ONLY public.mdl_badge_related -- --- TOC entry 8390 (class 2606 OID 18614) +-- TOC entry 7997 (class 2606 OID 64249) -- Name: mdl_block mdl_bloc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44756,7 +44761,7 @@ ALTER TABLE ONLY public.mdl_block -- --- TOC entry 8393 (class 2606 OID 18630) +-- TOC entry 8000 (class 2606 OID 64251) -- Name: mdl_block_instances mdl_blocinst_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44765,7 +44770,7 @@ ALTER TABLE ONLY public.mdl_block_instances -- --- TOC entry 8401 (class 2606 OID 18644) +-- TOC entry 8008 (class 2606 OID 64253) -- Name: mdl_block_positions mdl_blocposi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44774,7 +44779,7 @@ ALTER TABLE ONLY public.mdl_block_positions -- --- TOC entry 9336 (class 2606 OID 22569) +-- TOC entry 8015 (class 2606 OID 64255) -- Name: mdl_block_recentlyaccesseditems mdl_blocrece_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44783,7 +44788,7 @@ ALTER TABLE ONLY public.mdl_block_recentlyaccesseditems -- --- TOC entry 9332 (class 2606 OID 22560) +-- TOC entry 8011 (class 2606 OID 64257) -- Name: mdl_block_recent_activity mdl_blocreceacti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44792,7 +44797,7 @@ ALTER TABLE ONLY public.mdl_block_recent_activity -- --- TOC entry 9340 (class 2606 OID 22590) +-- TOC entry 8019 (class 2606 OID 64259) -- Name: mdl_block_rss_client mdl_blocrssclie_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44801,7 +44806,7 @@ ALTER TABLE ONLY public.mdl_block_rss_client -- --- TOC entry 8428 (class 2606 OID 18738) +-- TOC entry 8023 (class 2606 OID 64261) -- Name: mdl_blog_association mdl_blogasso_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44810,7 +44815,7 @@ ALTER TABLE ONLY public.mdl_blog_association -- --- TOC entry 8430 (class 2606 OID 18754) +-- TOC entry 8025 (class 2606 OID 64263) -- Name: mdl_blog_external mdl_blogexte_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44819,7 +44824,7 @@ ALTER TABLE ONLY public.mdl_blog_external -- --- TOC entry 8867 (class 2606 OID 20460) +-- TOC entry 8028 (class 2606 OID 64265) -- Name: mdl_book mdl_book_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44828,7 +44833,7 @@ ALTER TABLE ONLY public.mdl_book -- --- TOC entry 8869 (class 2606 OID 20480) +-- TOC entry 8030 (class 2606 OID 64267) -- Name: mdl_book_chapters mdl_bookchap_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44837,7 +44842,7 @@ ALTER TABLE ONLY public.mdl_book_chapters -- --- TOC entry 7892 (class 2606 OID 16783) +-- TOC entry 8033 (class 2606 OID 64269) -- Name: mdl_cache_filters mdl_cachfilt_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44846,7 +44851,7 @@ ALTER TABLE ONLY public.mdl_cache_filters -- --- TOC entry 8334 (class 2606 OID 18383) +-- TOC entry 8036 (class 2606 OID 64271) -- Name: mdl_cache_flags mdl_cachflag_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44855,7 +44860,7 @@ ALTER TABLE ONLY public.mdl_cache_flags -- --- TOC entry 8063 (class 2606 OID 17371) +-- TOC entry 8039 (class 2606 OID 64273) -- Name: mdl_capabilities mdl_capa_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44864,7 +44869,7 @@ ALTER TABLE ONLY public.mdl_capabilities -- --- TOC entry 8872 (class 2606 OID 20499) +-- TOC entry 8043 (class 2606 OID 64275) -- Name: mdl_chat mdl_chat_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44873,7 +44878,7 @@ ALTER TABLE ONLY public.mdl_chat -- --- TOC entry 8876 (class 2606 OID 20516) +-- TOC entry 8047 (class 2606 OID 64277) -- Name: mdl_chat_messages mdl_chatmess_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44882,7 +44887,7 @@ ALTER TABLE ONLY public.mdl_chat_messages -- --- TOC entry 8882 (class 2606 OID 20536) +-- TOC entry 8053 (class 2606 OID 64279) -- Name: mdl_chat_messages_current mdl_chatmesscurr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44891,7 +44896,7 @@ ALTER TABLE ONLY public.mdl_chat_messages_current -- --- TOC entry 8888 (class 2606 OID 20559) +-- TOC entry 8059 (class 2606 OID 64281) -- Name: mdl_chat_users mdl_chatuser_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44900,7 +44905,7 @@ ALTER TABLE ONLY public.mdl_chat_users -- --- TOC entry 8893 (class 2606 OID 20590) +-- TOC entry 8064 (class 2606 OID 64283) -- Name: mdl_choice mdl_choi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44909,7 +44914,7 @@ ALTER TABLE ONLY public.mdl_choice -- --- TOC entry 8899 (class 2606 OID 20618) +-- TOC entry 8067 (class 2606 OID 64285) -- Name: mdl_choice_answers mdl_choiansw_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44918,7 +44923,7 @@ ALTER TABLE ONLY public.mdl_choice_answers -- --- TOC entry 8896 (class 2606 OID 20605) +-- TOC entry 8072 (class 2606 OID 64287) -- Name: mdl_choice_options mdl_choiopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44927,7 +44932,7 @@ ALTER TABLE ONLY public.mdl_choice_options -- --- TOC entry 8319 (class 2606 OID 18329) +-- TOC entry 8075 (class 2606 OID 64289) -- Name: mdl_cohort mdl_coho_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44936,7 +44941,7 @@ ALTER TABLE ONLY public.mdl_cohort -- --- TOC entry 8323 (class 2606 OID 18341) +-- TOC entry 8079 (class 2606 OID 64291) -- Name: mdl_cohort_members mdl_cohomemb_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44945,7 +44950,7 @@ ALTER TABLE ONLY public.mdl_cohort_members -- --- TOC entry 8404 (class 2606 OID 18660) +-- TOC entry 8083 (class 2606 OID 64293) -- Name: mdl_comments mdl_comm_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44954,7 +44959,7 @@ ALTER TABLE ONLY public.mdl_comments -- --- TOC entry 8573 (class 2606 OID 19288) +-- TOC entry 8087 (class 2606 OID 64295) -- Name: mdl_competency mdl_comp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44963,7 +44968,7 @@ ALTER TABLE ONLY public.mdl_competency -- --- TOC entry 8586 (class 2606 OID 19322) +-- TOC entry 8094 (class 2606 OID 64297) -- Name: mdl_competency_coursecomp mdl_compcour_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44972,7 +44977,7 @@ ALTER TABLE ONLY public.mdl_competency_coursecomp -- --- TOC entry 8577 (class 2606 OID 19298) +-- TOC entry 8097 (class 2606 OID 64299) -- Name: mdl_competency_coursecompsetting mdl_compcour_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44981,7 +44986,7 @@ ALTER TABLE ONLY public.mdl_competency_coursecompsetting -- --- TOC entry 8617 (class 2606 OID 19435) +-- TOC entry 8099 (class 2606 OID 64301) -- Name: mdl_competency_evidence mdl_compevid_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44990,7 +44995,7 @@ ALTER TABLE ONLY public.mdl_competency_evidence -- --- TOC entry 8579 (class 2606 OID 19313) +-- TOC entry 8102 (class 2606 OID 64303) -- Name: mdl_competency_framework mdl_compfram_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44999,7 +45004,7 @@ ALTER TABLE ONLY public.mdl_competency_framework -- --- TOC entry 8631 (class 2606 OID 19467) +-- TOC entry 8109 (class 2606 OID 64305) -- Name: mdl_competency_modulecomp mdl_compmodu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45008,7 +45013,7 @@ ALTER TABLE ONLY public.mdl_competency_modulecomp -- --- TOC entry 8614 (class 2606 OID 19421) +-- TOC entry 8116 (class 2606 OID 64307) -- Name: mdl_competency_plancomp mdl_compplan_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45017,7 +45022,7 @@ ALTER TABLE ONLY public.mdl_competency_plancomp -- --- TOC entry 8588 (class 2606 OID 19341) +-- TOC entry 8111 (class 2606 OID 64309) -- Name: mdl_competency_plan mdl_compplan_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45026,7 +45031,7 @@ ALTER TABLE ONLY public.mdl_competency_plan -- --- TOC entry 8603 (class 2606 OID 19385) +-- TOC entry 8119 (class 2606 OID 64311) -- Name: mdl_competency_relatedcomp mdl_comprela_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45035,7 +45040,7 @@ ALTER TABLE ONLY public.mdl_competency_relatedcomp -- --- TOC entry 8596 (class 2606 OID 19365) +-- TOC entry 8128 (class 2606 OID 64313) -- Name: mdl_competency_templatecomp mdl_comptemp_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45044,7 +45049,7 @@ ALTER TABLE ONLY public.mdl_competency_templatecomp -- --- TOC entry 8599 (class 2606 OID 19375) +-- TOC entry 8123 (class 2606 OID 64315) -- Name: mdl_competency_templatecohort mdl_comptemp_id5_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45053,7 +45058,7 @@ ALTER TABLE ONLY public.mdl_competency_templatecohort -- --- TOC entry 8593 (class 2606 OID 19357) +-- TOC entry 8121 (class 2606 OID 64317) -- Name: mdl_competency_template mdl_comptemp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45062,7 +45067,7 @@ ALTER TABLE ONLY public.mdl_competency_template -- --- TOC entry 8608 (class 2606 OID 19403) +-- TOC entry 8134 (class 2606 OID 64319) -- Name: mdl_competency_usercompcourse mdl_compuser_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45071,7 +45076,7 @@ ALTER TABLE ONLY public.mdl_competency_usercompcourse -- --- TOC entry 8611 (class 2606 OID 19412) +-- TOC entry 8137 (class 2606 OID 64321) -- Name: mdl_competency_usercompplan mdl_compuser_id5_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45080,7 +45085,7 @@ ALTER TABLE ONLY public.mdl_competency_usercompplan -- --- TOC entry 8620 (class 2606 OID 19448) +-- TOC entry 8140 (class 2606 OID 64323) -- Name: mdl_competency_userevidence mdl_compuser_id7_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45089,7 +45094,7 @@ ALTER TABLE ONLY public.mdl_competency_userevidence -- --- TOC entry 8623 (class 2606 OID 19457) +-- TOC entry 8143 (class 2606 OID 64325) -- Name: mdl_competency_userevidencecomp mdl_compuser_id9_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45098,7 +45103,7 @@ ALTER TABLE ONLY public.mdl_competency_userevidencecomp -- --- TOC entry 8605 (class 2606 OID 19394) +-- TOC entry 8131 (class 2606 OID 64327) -- Name: mdl_competency_usercomp mdl_compuser_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45107,7 +45112,7 @@ ALTER TABLE ONLY public.mdl_competency_usercomp -- --- TOC entry 7792 (class 2606 OID 16396) +-- TOC entry 8147 (class 2606 OID 64329) -- Name: mdl_config mdl_conf_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45116,7 +45121,7 @@ ALTER TABLE ONLY public.mdl_config -- --- TOC entry 7798 (class 2606 OID 16423) +-- TOC entry 8150 (class 2606 OID 64331) -- Name: mdl_config_log mdl_conflog_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45125,7 +45130,7 @@ ALTER TABLE ONLY public.mdl_config_log -- --- TOC entry 7795 (class 2606 OID 16410) +-- TOC entry 8154 (class 2606 OID 64333) -- Name: mdl_config_plugins mdl_confplug_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45134,7 +45139,7 @@ ALTER TABLE ONLY public.mdl_config_plugins -- --- TOC entry 8056 (class 2606 OID 17347) +-- TOC entry 8165 (class 2606 OID 64335) -- Name: mdl_context mdl_cont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45143,7 +45148,7 @@ ALTER TABLE ONLY public.mdl_context -- --- TOC entry 8735 (class 2606 OID 19841) +-- TOC entry 8159 (class 2606 OID 64337) -- Name: mdl_contentbank_content mdl_contcont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45152,7 +45157,7 @@ ALTER TABLE ONLY public.mdl_contentbank_content -- --- TOC entry 8061 (class 2606 OID 17358) +-- TOC entry 8170 (class 2606 OID 64339) -- Name: mdl_context_temp mdl_conttemp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45161,7 +45166,7 @@ ALTER TABLE ONLY public.mdl_context_temp -- --- TOC entry 7808 (class 2606 OID 16481) +-- TOC entry 8173 (class 2606 OID 64341) -- Name: mdl_course mdl_cour_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45170,7 +45175,7 @@ ALTER TABLE ONLY public.mdl_course -- --- TOC entry 7813 (class 2606 OID 16506) +-- TOC entry 8178 (class 2606 OID 64343) -- Name: mdl_course_categories mdl_courcate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45179,7 +45184,7 @@ ALTER TABLE ONLY public.mdl_course_categories -- --- TOC entry 7832 (class 2606 OID 16560) +-- TOC entry 8202 (class 2606 OID 64345) -- Name: mdl_course_completions mdl_courcomp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45188,7 +45193,7 @@ ALTER TABLE ONLY public.mdl_course_completions -- --- TOC entry 7819 (class 2606 OID 16517) +-- TOC entry 8184 (class 2606 OID 64347) -- Name: mdl_course_completion_aggr_methd mdl_courcompaggrmeth_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45197,7 +45202,7 @@ ALTER TABLE ONLY public.mdl_course_completion_aggr_methd -- --- TOC entry 7822 (class 2606 OID 16530) +-- TOC entry 8194 (class 2606 OID 64349) -- Name: mdl_course_completion_criteria mdl_courcompcrit_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45206,7 +45211,7 @@ ALTER TABLE ONLY public.mdl_course_completion_criteria -- --- TOC entry 7826 (class 2606 OID 16542) +-- TOC entry 8188 (class 2606 OID 64351) -- Name: mdl_course_completion_crit_compl mdl_courcompcritcomp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45215,7 +45220,7 @@ ALTER TABLE ONLY public.mdl_course_completion_crit_compl -- --- TOC entry 8647 (class 2606 OID 19539) +-- TOC entry 8198 (class 2606 OID 64353) -- Name: mdl_course_completion_defaults mdl_courcompdefa_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45224,7 +45229,7 @@ ALTER TABLE ONLY public.mdl_course_completion_defaults -- --- TOC entry 7867 (class 2606 OID 16700) +-- TOC entry 8209 (class 2606 OID 64355) -- Name: mdl_course_format_options mdl_courformopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45233,7 +45238,7 @@ ALTER TABLE ONLY public.mdl_course_format_options -- --- TOC entry 7849 (class 2606 OID 16635) +-- TOC entry 8213 (class 2606 OID 64357) -- Name: mdl_course_modules mdl_courmodu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45242,7 +45247,7 @@ ALTER TABLE ONLY public.mdl_course_modules -- --- TOC entry 7856 (class 2606 OID 16649) +-- TOC entry 8220 (class 2606 OID 64359) -- Name: mdl_course_modules_completion mdl_courmoducomp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45251,7 +45256,7 @@ ALTER TABLE ONLY public.mdl_course_modules_completion -- --- TOC entry 8457 (class 2606 OID 18862) +-- TOC entry 8223 (class 2606 OID 64361) -- Name: mdl_course_published mdl_courpubl_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45260,7 +45265,7 @@ ALTER TABLE ONLY public.mdl_course_published -- --- TOC entry 7862 (class 2606 OID 16685) +-- TOC entry 8225 (class 2606 OID 64363) -- Name: mdl_course_request mdl_courrequ_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45269,7 +45274,7 @@ ALTER TABLE ONLY public.mdl_course_request -- --- TOC entry 7860 (class 2606 OID 16667) +-- TOC entry 8229 (class 2606 OID 64365) -- Name: mdl_course_sections mdl_coursect_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45278,7 +45283,7 @@ ALTER TABLE ONLY public.mdl_course_sections -- --- TOC entry 8702 (class 2606 OID 19727) +-- TOC entry 8233 (class 2606 OID 64367) -- Name: mdl_customfield_category mdl_custcate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45287,7 +45292,7 @@ ALTER TABLE ONLY public.mdl_customfield_category -- --- TOC entry 8713 (class 2606 OID 19756) +-- TOC entry 8240 (class 2606 OID 64369) -- Name: mdl_customfield_data mdl_custdata_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45296,7 +45301,7 @@ ALTER TABLE ONLY public.mdl_customfield_data -- --- TOC entry 8706 (class 2606 OID 19743) +-- TOC entry 8245 (class 2606 OID 64371) -- Name: mdl_customfield_field mdl_custfiel_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45305,7 +45310,7 @@ ALTER TABLE ONLY public.mdl_customfield_field -- --- TOC entry 8904 (class 2606 OID 20656) +-- TOC entry 8248 (class 2606 OID 64373) -- Name: mdl_data mdl_data_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45314,7 +45319,7 @@ ALTER TABLE ONLY public.mdl_data -- --- TOC entry 8914 (class 2606 OID 20702) +-- TOC entry 8251 (class 2606 OID 64375) -- Name: mdl_data_content mdl_datacont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45323,7 +45328,7 @@ ALTER TABLE ONLY public.mdl_data_content -- --- TOC entry 8907 (class 2606 OID 20672) +-- TOC entry 8255 (class 2606 OID 64377) -- Name: mdl_data_fields mdl_datafiel_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45332,7 +45337,7 @@ ALTER TABLE ONLY public.mdl_data_fields -- --- TOC entry 8911 (class 2606 OID 20688) +-- TOC entry 8259 (class 2606 OID 64379) -- Name: mdl_data_records mdl_datareco_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45341,7 +45346,7 @@ ALTER TABLE ONLY public.mdl_data_records -- --- TOC entry 9343 (class 2606 OID 22605) +-- TOC entry 8262 (class 2606 OID 64381) -- Name: mdl_editor_atto_autosave mdl_editattoauto_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45350,7 +45355,7 @@ ALTER TABLE ONLY public.mdl_editor_atto_autosave -- --- TOC entry 7839 (class 2606 OID 16587) +-- TOC entry 8266 (class 2606 OID 64383) -- Name: mdl_enrol mdl_enro_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45359,7 +45364,7 @@ ALTER TABLE ONLY public.mdl_enrol -- --- TOC entry 9268 (class 2606 OID 22333) +-- TOC entry 8269 (class 2606 OID 64385) -- Name: mdl_enrol_flatfile mdl_enroflat_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45368,7 +45373,7 @@ ALTER TABLE ONLY public.mdl_enrol_flatfile -- --- TOC entry 9281 (class 2606 OID 22387) +-- TOC entry 8274 (class 2606 OID 64387) -- Name: mdl_enrol_lti_lti2_consumer mdl_enroltilti2cons_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45377,7 +45382,7 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_consumer -- --- TOC entry 9288 (class 2606 OID 22414) +-- TOC entry 8277 (class 2606 OID 64389) -- Name: mdl_enrol_lti_lti2_context mdl_enroltilti2cont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45386,7 +45391,7 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_context -- --- TOC entry 9291 (class 2606 OID 22424) +-- TOC entry 8280 (class 2606 OID 64391) -- Name: mdl_enrol_lti_lti2_nonce mdl_enroltilti2nonc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45395,7 +45400,7 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_nonce -- --- TOC entry 9295 (class 2606 OID 22437) +-- TOC entry 8284 (class 2606 OID 64393) -- Name: mdl_enrol_lti_lti2_resource_link mdl_enroltilti2resolink_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45404,7 +45409,7 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_resource_link -- --- TOC entry 9298 (class 2606 OID 22449) +-- TOC entry 8287 (class 2606 OID 64395) -- Name: mdl_enrol_lti_lti2_share_key mdl_enroltilti2sharkey_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45413,7 +45418,7 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_share_key -- --- TOC entry 9284 (class 2606 OID 22400) +-- TOC entry 8292 (class 2606 OID 64397) -- Name: mdl_enrol_lti_lti2_tool_proxy mdl_enroltilti2toolprox_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45422,7 +45427,7 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_tool_proxy -- --- TOC entry 9302 (class 2606 OID 22464) +-- TOC entry 8295 (class 2606 OID 64399) -- Name: mdl_enrol_lti_lti2_user_result mdl_enroltilti2userresu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45431,7 +45436,7 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_user_result -- --- TOC entry 9274 (class 2606 OID 22358) +-- TOC entry 8304 (class 2606 OID 64401) -- Name: mdl_enrol_lti_tools mdl_enroltitool_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45440,7 +45445,7 @@ ALTER TABLE ONLY public.mdl_enrol_lti_tools -- --- TOC entry 9306 (class 2606 OID 22473) +-- TOC entry 8299 (class 2606 OID 64403) -- Name: mdl_enrol_lti_tool_consumer_map mdl_enroltitoolconsmap_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45449,7 +45454,7 @@ ALTER TABLE ONLY public.mdl_enrol_lti_tool_consumer_map -- --- TOC entry 9276 (class 2606 OID 22371) +-- TOC entry 8306 (class 2606 OID 64405) -- Name: mdl_enrol_lti_users mdl_enroltiuser_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45458,7 +45463,7 @@ ALTER TABLE ONLY public.mdl_enrol_lti_users -- --- TOC entry 9311 (class 2606 OID 22506) +-- TOC entry 8312 (class 2606 OID 64407) -- Name: mdl_enrol_paypal mdl_enropayp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45467,7 +45472,7 @@ ALTER TABLE ONLY public.mdl_enrol_paypal -- --- TOC entry 7882 (class 2606 OID 16756) +-- TOC entry 8322 (class 2606 OID 64409) -- Name: mdl_event mdl_even_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45476,7 +45481,7 @@ ALTER TABLE ONLY public.mdl_event -- --- TOC entry 8196 (class 2606 OID 17904) +-- TOC entry 8334 (class 2606 OID 64411) -- Name: mdl_events_handlers mdl_evenhand_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45485,7 +45490,7 @@ ALTER TABLE ONLY public.mdl_events_handlers -- --- TOC entry 8192 (class 2606 OID 17887) +-- TOC entry 8336 (class 2606 OID 64413) -- Name: mdl_events_queue mdl_evenqueu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45494,7 +45499,7 @@ ALTER TABLE ONLY public.mdl_events_queue -- --- TOC entry 8199 (class 2606 OID 17916) +-- TOC entry 8340 (class 2606 OID 64415) -- Name: mdl_events_queue_handlers mdl_evenqueuhand_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45503,7 +45508,7 @@ ALTER TABLE ONLY public.mdl_events_queue_handlers -- --- TOC entry 8473 (class 2606 OID 18926) +-- TOC entry 8331 (class 2606 OID 64417) -- Name: mdl_event_subscriptions mdl_evensubs_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45512,7 +45517,7 @@ ALTER TABLE ONLY public.mdl_event_subscriptions -- --- TOC entry 8410 (class 2606 OID 18692) +-- TOC entry 8343 (class 2606 OID 64419) -- Name: mdl_external_functions mdl_extefunc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45521,7 +45526,7 @@ ALTER TABLE ONLY public.mdl_external_functions -- --- TOC entry 8407 (class 2606 OID 18676) +-- TOC entry 8346 (class 2606 OID 64421) -- Name: mdl_external_services mdl_exteserv_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45530,7 +45535,7 @@ ALTER TABLE ONLY public.mdl_external_services -- --- TOC entry 8414 (class 2606 OID 18702) +-- TOC entry 8350 (class 2606 OID 64423) -- Name: mdl_external_services_functions mdl_exteservfunc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45539,7 +45544,7 @@ ALTER TABLE ONLY public.mdl_external_services_functions -- --- TOC entry 8417 (class 2606 OID 18711) +-- TOC entry 8353 (class 2606 OID 64425) -- Name: mdl_external_services_users mdl_exteservuser_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45548,7 +45553,7 @@ ALTER TABLE ONLY public.mdl_external_services_users -- --- TOC entry 8423 (class 2606 OID 18726) +-- TOC entry 8359 (class 2606 OID 64427) -- Name: mdl_external_tokens mdl_extetoke_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45557,7 +45562,7 @@ ALTER TABLE ONLY public.mdl_external_tokens -- --- TOC entry 8697 (class 2606 OID 19709) +-- TOC entry 8364 (class 2606 OID 64429) -- Name: mdl_favourite mdl_favo_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45566,7 +45571,7 @@ ALTER TABLE ONLY public.mdl_favourite -- --- TOC entry 8918 (class 2606 OID 20729) +-- TOC entry 8368 (class 2606 OID 64431) -- Name: mdl_feedback mdl_feed_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45575,7 +45580,7 @@ ALTER TABLE ONLY public.mdl_feedback -- --- TOC entry 8932 (class 2606 OID 20797) +-- TOC entry 8375 (class 2606 OID 64433) -- Name: mdl_feedback_completedtmp mdl_feedcomp_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45584,7 +45589,7 @@ ALTER TABLE ONLY public.mdl_feedback_completedtmp -- --- TOC entry 8928 (class 2606 OID 20780) +-- TOC entry 8371 (class 2606 OID 64435) -- Name: mdl_feedback_completed mdl_feedcomp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45593,7 +45598,7 @@ ALTER TABLE ONLY public.mdl_feedback_completed -- --- TOC entry 8924 (class 2606 OID 20764) +-- TOC entry 8379 (class 2606 OID 64437) -- Name: mdl_feedback_item mdl_feeditem_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45602,7 +45607,7 @@ ALTER TABLE ONLY public.mdl_feedback_item -- --- TOC entry 8947 (class 2606 OID 20845) +-- TOC entry 8384 (class 2606 OID 64439) -- Name: mdl_feedback_sitecourse_map mdl_feedsitemap_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45611,7 +45616,7 @@ ALTER TABLE ONLY public.mdl_feedback_sitecourse_map -- --- TOC entry 8921 (class 2606 OID 20741) +-- TOC entry 8387 (class 2606 OID 64441) -- Name: mdl_feedback_template mdl_feedtemp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45620,7 +45625,7 @@ ALTER TABLE ONLY public.mdl_feedback_template -- --- TOC entry 8942 (class 2606 OID 20832) +-- TOC entry 8396 (class 2606 OID 64443) -- Name: mdl_feedback_valuetmp mdl_feedvalu_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45629,7 +45634,7 @@ ALTER TABLE ONLY public.mdl_feedback_valuetmp -- --- TOC entry 8937 (class 2606 OID 20814) +-- TOC entry 8391 (class 2606 OID 64445) -- Name: mdl_feedback_value mdl_feedvalu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45638,7 +45643,7 @@ ALTER TABLE ONLY public.mdl_feedback_value -- --- TOC entry 8367 (class 2606 OID 18515) +-- TOC entry 8406 (class 2606 OID 64447) -- Name: mdl_files mdl_file_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45647,7 +45652,7 @@ ALTER TABLE ONLY public.mdl_files -- --- TOC entry 8378 (class 2606 OID 18549) +-- TOC entry 8400 (class 2606 OID 64449) -- Name: mdl_file_conversion mdl_fileconv_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45656,7 +45661,7 @@ ALTER TABLE ONLY public.mdl_file_conversion -- --- TOC entry 8373 (class 2606 OID 18534) +-- TOC entry 8412 (class 2606 OID 64451) -- Name: mdl_files_reference mdl_filerefe_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45665,7 +45670,7 @@ ALTER TABLE ONLY public.mdl_files_reference -- --- TOC entry 7871 (class 2606 OID 16712) +-- TOC entry 8418 (class 2606 OID 64453) -- Name: mdl_filter_active mdl_filtacti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45674,7 +45679,7 @@ ALTER TABLE ONLY public.mdl_filter_active -- --- TOC entry 7875 (class 2606 OID 16727) +-- TOC entry 8422 (class 2606 OID 64455) -- Name: mdl_filter_config mdl_filtconf_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45683,7 +45688,7 @@ ALTER TABLE ONLY public.mdl_filter_config -- --- TOC entry 8950 (class 2606 OID 20866) +-- TOC entry 8425 (class 2606 OID 64457) -- Name: mdl_folder mdl_fold_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45692,7 +45697,7 @@ ALTER TABLE ONLY public.mdl_folder -- --- TOC entry 8953 (class 2606 OID 20905) +-- TOC entry 8428 (class 2606 OID 64459) -- Name: mdl_forum mdl_foru_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45701,7 +45706,7 @@ ALTER TABLE ONLY public.mdl_forum -- --- TOC entry 8980 (class 2606 OID 20998) +-- TOC entry 8432 (class 2606 OID 64461) -- Name: mdl_forum_digests mdl_forudige_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45710,7 +45715,7 @@ ALTER TABLE ONLY public.mdl_forum_digests -- --- TOC entry 8957 (class 2606 OID 20927) +-- TOC entry 8443 (class 2606 OID 64463) -- Name: mdl_forum_discussions mdl_forudisc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45719,7 +45724,7 @@ ALTER TABLE ONLY public.mdl_forum_discussions -- --- TOC entry 8993 (class 2606 OID 21038) +-- TOC entry 8437 (class 2606 OID 64465) -- Name: mdl_forum_discussion_subs mdl_forudiscsubs_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45728,7 +45733,7 @@ ALTER TABLE ONLY public.mdl_forum_discussion_subs -- --- TOC entry 8999 (class 2606 OID 21050) +-- TOC entry 8448 (class 2606 OID 64467) -- Name: mdl_forum_grades mdl_forugrad_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45737,7 +45742,7 @@ ALTER TABLE ONLY public.mdl_forum_grades -- --- TOC entry 8962 (class 2606 OID 20955) +-- TOC entry 8453 (class 2606 OID 64469) -- Name: mdl_forum_posts mdl_forupost_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45746,7 +45751,7 @@ ALTER TABLE ONLY public.mdl_forum_posts -- --- TOC entry 8969 (class 2606 OID 20973) +-- TOC entry 8460 (class 2606 OID 64471) -- Name: mdl_forum_queue mdl_foruqueu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45755,7 +45760,7 @@ ALTER TABLE ONLY public.mdl_forum_queue -- --- TOC entry 8983 (class 2606 OID 21015) +-- TOC entry 8464 (class 2606 OID 64473) -- Name: mdl_forum_read mdl_foruread_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45764,7 +45769,7 @@ ALTER TABLE ONLY public.mdl_forum_read -- --- TOC entry 8974 (class 2606 OID 20986) +-- TOC entry 8470 (class 2606 OID 64475) -- Name: mdl_forum_subscriptions mdl_forusubs_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45773,7 +45778,7 @@ ALTER TABLE ONLY public.mdl_forum_subscriptions -- --- TOC entry 8988 (class 2606 OID 21028) +-- TOC entry 8474 (class 2606 OID 64477) -- Name: mdl_forum_track_prefs mdl_forutracpref_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45782,7 +45787,7 @@ ALTER TABLE ONLY public.mdl_forum_track_prefs -- --- TOC entry 9003 (class 2606 OID 21093) +-- TOC entry 8478 (class 2606 OID 64479) -- Name: mdl_glossary mdl_glos_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45791,7 +45796,7 @@ ALTER TABLE ONLY public.mdl_glossary -- --- TOC entry 9011 (class 2606 OID 21132) +-- TOC entry 8481 (class 2606 OID 64481) -- Name: mdl_glossary_alias mdl_glosalia_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45800,7 +45805,7 @@ ALTER TABLE ONLY public.mdl_glossary_alias -- --- TOC entry 9014 (class 2606 OID 21144) +-- TOC entry 8484 (class 2606 OID 64483) -- Name: mdl_glossary_categories mdl_gloscate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45809,7 +45814,7 @@ ALTER TABLE ONLY public.mdl_glossary_categories -- --- TOC entry 9007 (class 2606 OID 21119) +-- TOC entry 8488 (class 2606 OID 64485) -- Name: mdl_glossary_entries mdl_glosentr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45818,7 +45823,7 @@ ALTER TABLE ONLY public.mdl_glossary_entries -- --- TOC entry 9018 (class 2606 OID 21155) +-- TOC entry 8493 (class 2606 OID 64487) -- Name: mdl_glossary_entries_categories mdl_glosentrcate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45827,7 +45832,7 @@ ALTER TABLE ONLY public.mdl_glossary_entries_categories -- --- TOC entry 9020 (class 2606 OID 21173) +-- TOC entry 8495 (class 2606 OID 64489) -- Name: mdl_glossary_formats mdl_glosform_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45836,7 +45841,7 @@ ALTER TABLE ONLY public.mdl_glossary_formats -- --- TOC entry 8461 (class 2606 OID 18872) +-- TOC entry 8584 (class 2606 OID 64491) -- Name: mdl_grading_areas mdl_gradarea_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45845,7 +45850,7 @@ ALTER TABLE ONLY public.mdl_grading_areas -- --- TOC entry 8214 (class 2606 OID 17965) +-- TOC entry 8498 (class 2606 OID 64493) -- Name: mdl_grade_categories mdl_gradcate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45854,7 +45859,7 @@ ALTER TABLE ONLY public.mdl_grade_categories -- --- TOC entry 8245 (class 2606 OID 18071) +-- TOC entry 8503 (class 2606 OID 64495) -- Name: mdl_grade_categories_history mdl_gradcatehist_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45863,7 +45868,7 @@ ALTER TABLE ONLY public.mdl_grade_categories_history -- --- TOC entry 8465 (class 2606 OID 18889) +-- TOC entry 8588 (class 2606 OID 64497) -- Name: mdl_grading_definitions mdl_graddefi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45872,7 +45877,7 @@ ALTER TABLE ONLY public.mdl_grading_definitions -- --- TOC entry 8227 (class 2606 OID 18024) +-- TOC entry 8509 (class 2606 OID 64499) -- Name: mdl_grade_grades mdl_gradgrad_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45881,7 +45886,7 @@ ALTER TABLE ONLY public.mdl_grade_grades -- --- TOC entry 8262 (class 2606 OID 18135) +-- TOC entry 8518 (class 2606 OID 64501) -- Name: mdl_grade_grades_history mdl_gradgradhist_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45890,7 +45895,7 @@ ALTER TABLE ONLY public.mdl_grade_grades_history -- --- TOC entry 9354 (class 2606 OID 22644) +-- TOC entry 8597 (class 2606 OID 64503) -- Name: mdl_gradingform_guide_comments mdl_gradguidcomm_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45899,7 +45904,7 @@ ALTER TABLE ONLY public.mdl_gradingform_guide_comments -- --- TOC entry 9346 (class 2606 OID 22618) +-- TOC entry 8600 (class 2606 OID 64505) -- Name: mdl_gradingform_guide_criteria mdl_gradguidcrit_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45908,7 +45913,7 @@ ALTER TABLE ONLY public.mdl_gradingform_guide_criteria -- --- TOC entry 9349 (class 2606 OID 22630) +-- TOC entry 8603 (class 2606 OID 64507) -- Name: mdl_gradingform_guide_fillings mdl_gradguidfill_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45917,7 +45922,7 @@ ALTER TABLE ONLY public.mdl_gradingform_guide_fillings -- --- TOC entry 8272 (class 2606 OID 18153) +-- TOC entry 8528 (class 2606 OID 64509) -- Name: mdl_grade_import_newitem mdl_gradimponewi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45926,7 +45931,7 @@ ALTER TABLE ONLY public.mdl_grade_import_newitem -- --- TOC entry 8275 (class 2606 OID 18166) +-- TOC entry 8531 (class 2606 OID 64511) -- Name: mdl_grade_import_values mdl_gradimpovalu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45935,7 +45940,7 @@ ALTER TABLE ONLY public.mdl_grade_import_values -- --- TOC entry 8470 (class 2606 OID 18905) +-- TOC entry 8593 (class 2606 OID 64513) -- Name: mdl_grading_instances mdl_gradinst_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45944,7 +45949,7 @@ ALTER TABLE ONLY public.mdl_grading_instances -- --- TOC entry 8220 (class 2606 OID 17994) +-- TOC entry 8539 (class 2606 OID 64515) -- Name: mdl_grade_items mdl_graditem_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45953,7 +45958,7 @@ ALTER TABLE ONLY public.mdl_grade_items -- --- TOC entry 8254 (class 2606 OID 18105) +-- TOC entry 8549 (class 2606 OID 64517) -- Name: mdl_grade_items_history mdl_graditemhist_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45962,7 +45967,7 @@ ALTER TABLE ONLY public.mdl_grade_items_history -- --- TOC entry 8331 (class 2606 OID 18368) +-- TOC entry 8557 (class 2606 OID 64519) -- Name: mdl_grade_letters mdl_gradlett_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45971,7 +45976,7 @@ ALTER TABLE ONLY public.mdl_grade_letters -- --- TOC entry 8204 (class 2606 OID 17931) +-- TOC entry 8561 (class 2606 OID 64521) -- Name: mdl_grade_outcomes mdl_gradoutc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45980,7 +45985,7 @@ ALTER TABLE ONLY public.mdl_grade_outcomes -- --- TOC entry 8210 (class 2606 OID 17943) +-- TOC entry 8567 (class 2606 OID 64523) -- Name: mdl_grade_outcomes_courses mdl_gradoutccour_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45989,7 +45994,7 @@ ALTER TABLE ONLY public.mdl_grade_outcomes_courses -- --- TOC entry 8237 (class 2606 OID 18044) +-- TOC entry 8572 (class 2606 OID 64525) -- Name: mdl_grade_outcomes_history mdl_gradoutchist_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45998,7 +46003,7 @@ ALTER TABLE ONLY public.mdl_grade_outcomes_history -- --- TOC entry 9357 (class 2606 OID 22656) +-- TOC entry 8608 (class 2606 OID 64527) -- Name: mdl_gradingform_rubric_criteria mdl_gradrubrcrit_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46007,7 +46012,7 @@ ALTER TABLE ONLY public.mdl_gradingform_rubric_criteria -- --- TOC entry 9363 (class 2606 OID 22680) +-- TOC entry 8611 (class 2606 OID 64529) -- Name: mdl_gradingform_rubric_fillings mdl_gradrubrfill_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46016,7 +46021,7 @@ ALTER TABLE ONLY public.mdl_gradingform_rubric_fillings -- --- TOC entry 9360 (class 2606 OID 22668) +-- TOC entry 8617 (class 2606 OID 64531) -- Name: mdl_gradingform_rubric_levels mdl_gradrubrleve_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46025,7 +46030,7 @@ ALTER TABLE ONLY public.mdl_gradingform_rubric_levels -- --- TOC entry 8339 (class 2606 OID 18397) +-- TOC entry 8580 (class 2606 OID 64533) -- Name: mdl_grade_settings mdl_gradsett_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46034,7 +46039,7 @@ ALTER TABLE ONLY public.mdl_grade_settings -- --- TOC entry 8306 (class 2606 OID 18284) +-- TOC entry 8620 (class 2606 OID 64535) -- Name: mdl_groupings mdl_grou_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46043,7 +46048,7 @@ ALTER TABLE ONLY public.mdl_groupings -- --- TOC entry 8302 (class 2606 OID 18265) +-- TOC entry 8628 (class 2606 OID 64537) -- Name: mdl_groups mdl_grou_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46052,7 +46057,7 @@ ALTER TABLE ONLY public.mdl_groups -- --- TOC entry 8316 (class 2606 OID 18313) +-- TOC entry 8625 (class 2606 OID 64539) -- Name: mdl_groupings_groups mdl_grougrou_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46061,7 +46066,7 @@ ALTER TABLE ONLY public.mdl_groupings_groups -- --- TOC entry 8310 (class 2606 OID 18299) +-- TOC entry 8632 (class 2606 OID 64541) -- Name: mdl_groups_members mdl_groumemb_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46070,7 +46075,7 @@ ALTER TABLE ONLY public.mdl_groups_members -- --- TOC entry 8723 (class 2606 OID 19804) +-- TOC entry 8636 (class 2606 OID 64543) -- Name: mdl_h5p mdl_h5p_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46079,7 +46084,7 @@ ALTER TABLE ONLY public.mdl_h5p -- --- TOC entry 9023 (class 2606 OID 21191) +-- TOC entry 8654 (class 2606 OID 64545) -- Name: mdl_h5pactivity mdl_h5pa_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46088,7 +46093,7 @@ ALTER TABLE ONLY public.mdl_h5pactivity -- --- TOC entry 9029 (class 2606 OID 21205) +-- TOC entry 8660 (class 2606 OID 64547) -- Name: mdl_h5pactivity_attempts mdl_h5paatte_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46097,7 +46102,7 @@ ALTER TABLE ONLY public.mdl_h5pactivity_attempts -- --- TOC entry 9034 (class 2606 OID 21224) +-- TOC entry 8665 (class 2606 OID 64549) -- Name: mdl_h5pactivity_attempts_results mdl_h5paatteresu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46106,7 +46111,7 @@ ALTER TABLE ONLY public.mdl_h5pactivity_attempts_results -- --- TOC entry 8727 (class 2606 OID 19814) +-- TOC entry 8640 (class 2606 OID 64551) -- Name: mdl_h5p_contents_libraries mdl_h5pcontlibr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46115,7 +46120,7 @@ ALTER TABLE ONLY public.mdl_h5p_contents_libraries -- --- TOC entry 8716 (class 2606 OID 19777) +-- TOC entry 8643 (class 2606 OID 64553) -- Name: mdl_h5p_libraries mdl_h5plibr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46124,7 +46129,7 @@ ALTER TABLE ONLY public.mdl_h5p_libraries -- --- TOC entry 8730 (class 2606 OID 19825) +-- TOC entry 8646 (class 2606 OID 64555) -- Name: mdl_h5p_libraries_cachedassets mdl_h5plibrcach_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46133,7 +46138,7 @@ ALTER TABLE ONLY public.mdl_h5p_libraries_cachedassets -- --- TOC entry 8719 (class 2606 OID 19787) +-- TOC entry 8649 (class 2606 OID 64557) -- Name: mdl_h5p_library_dependencies mdl_h5plibrdepe_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46142,7 +46147,7 @@ ALTER TABLE ONLY public.mdl_h5p_library_dependencies -- --- TOC entry 9037 (class 2606 OID 21243) +-- TOC entry 8668 (class 2606 OID 64559) -- Name: mdl_imscp mdl_imsc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46151,7 +46156,7 @@ ALTER TABLE ONLY public.mdl_imscp -- --- TOC entry 9040 (class 2606 OID 21259) +-- TOC entry 8671 (class 2606 OID 64561) -- Name: mdl_label mdl_labe_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46160,7 +46165,7 @@ ALTER TABLE ONLY public.mdl_label -- --- TOC entry 9043 (class 2606 OID 21310) +-- TOC entry 8674 (class 2606 OID 64563) -- Name: mdl_lesson mdl_less_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46169,7 +46174,7 @@ ALTER TABLE ONLY public.mdl_lesson -- --- TOC entry 9048 (class 2606 OID 21355) +-- TOC entry 8676 (class 2606 OID 64565) -- Name: mdl_lesson_answers mdl_lessansw_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46178,7 +46183,7 @@ ALTER TABLE ONLY public.mdl_lesson_answers -- --- TOC entry 9053 (class 2606 OID 21375) +-- TOC entry 8681 (class 2606 OID 64567) -- Name: mdl_lesson_attempts mdl_lessatte_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46187,7 +46192,7 @@ ALTER TABLE ONLY public.mdl_lesson_attempts -- --- TOC entry 9066 (class 2606 OID 21425) +-- TOC entry 8686 (class 2606 OID 64569) -- Name: mdl_lesson_branch mdl_lessbran_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46196,7 +46201,7 @@ ALTER TABLE ONLY public.mdl_lesson_branch -- --- TOC entry 9058 (class 2606 OID 21392) +-- TOC entry 8691 (class 2606 OID 64571) -- Name: mdl_lesson_grades mdl_lessgrad_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46205,7 +46210,7 @@ ALTER TABLE ONLY public.mdl_lesson_grades -- --- TOC entry 9072 (class 2606 OID 21437) +-- TOC entry 8696 (class 2606 OID 64573) -- Name: mdl_lesson_overrides mdl_lessover_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46214,7 +46219,7 @@ ALTER TABLE ONLY public.mdl_lesson_overrides -- --- TOC entry 9045 (class 2606 OID 21333) +-- TOC entry 8700 (class 2606 OID 64575) -- Name: mdl_lesson_pages mdl_lesspage_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46223,7 +46228,7 @@ ALTER TABLE ONLY public.mdl_lesson_pages -- --- TOC entry 9062 (class 2606 OID 21408) +-- TOC entry 8703 (class 2606 OID 64577) -- Name: mdl_lesson_timer mdl_lesstime_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46232,7 +46237,7 @@ ALTER TABLE ONLY public.mdl_lesson_timer -- --- TOC entry 8438 (class 2606 OID 18783) +-- TOC entry 8707 (class 2606 OID 64579) -- Name: mdl_license mdl_lice_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46241,7 +46246,7 @@ ALTER TABLE ONLY public.mdl_license -- --- TOC entry 8547 (class 2606 OID 19181) +-- TOC entry 8710 (class 2606 OID 64581) -- Name: mdl_lock_db mdl_lockdb_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46250,7 +46255,7 @@ ALTER TABLE ONLY public.mdl_lock_db -- --- TOC entry 7897 (class 2606 OID 16801) +-- TOC entry 8717 (class 2606 OID 64583) -- Name: mdl_log mdl_log_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46259,7 +46264,7 @@ ALTER TABLE ONLY public.mdl_log -- --- TOC entry 7903 (class 2606 OID 16831) +-- TOC entry 8721 (class 2606 OID 64585) -- Name: mdl_log_display mdl_logdisp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46268,7 +46273,7 @@ ALTER TABLE ONLY public.mdl_log_display -- --- TOC entry 7901 (class 2606 OID 16818) +-- TOC entry 8724 (class 2606 OID 64587) -- Name: mdl_log_queries mdl_logquer_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46277,7 +46282,7 @@ ALTER TABLE ONLY public.mdl_log_queries -- --- TOC entry 9550 (class 2606 OID 23389) +-- TOC entry 8728 (class 2606 OID 64589) -- Name: mdl_logstore_standard_log mdl_logsstanlog_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46286,7 +46291,7 @@ ALTER TABLE ONLY public.mdl_logstore_standard_log -- --- TOC entry 9077 (class 2606 OID 21461) +-- TOC entry 8733 (class 2606 OID 64591) -- Name: mdl_lti mdl_lti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46295,7 +46300,7 @@ ALTER TABLE ONLY public.mdl_lti -- --- TOC entry 9099 (class 2606 OID 21544) +-- TOC entry 8735 (class 2606 OID 64593) -- Name: mdl_lti_access_tokens mdl_ltiaccetoke_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46304,7 +46309,7 @@ ALTER TABLE ONLY public.mdl_lti_access_tokens -- --- TOC entry 9503 (class 2606 OID 23204) +-- TOC entry 8760 (class 2606 OID 64595) -- Name: mdl_ltiservice_gradebookservices mdl_ltisgrad_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46313,7 +46318,7 @@ ALTER TABLE ONLY public.mdl_ltiservice_gradebookservices -- --- TOC entry 9096 (class 2606 OID 21531) +-- TOC entry 8739 (class 2606 OID 64597) -- Name: mdl_lti_submission mdl_ltisubm_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46322,7 +46327,7 @@ ALTER TABLE ONLY public.mdl_lti_submission -- --- TOC entry 9080 (class 2606 OID 21475) +-- TOC entry 8743 (class 2606 OID 64599) -- Name: mdl_lti_tool_proxies mdl_ltitoolprox_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46331,7 +46336,7 @@ ALTER TABLE ONLY public.mdl_lti_tool_proxies -- --- TOC entry 9092 (class 2606 OID 21519) +-- TOC entry 8747 (class 2606 OID 64601) -- Name: mdl_lti_tool_settings mdl_ltitoolsett_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46340,7 +46345,7 @@ ALTER TABLE ONLY public.mdl_lti_tool_settings -- --- TOC entry 9084 (class 2606 OID 21492) +-- TOC entry 8753 (class 2606 OID 64603) -- Name: mdl_lti_types mdl_ltitype_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46349,7 +46354,7 @@ ALTER TABLE ONLY public.mdl_lti_types -- --- TOC entry 9087 (class 2606 OID 21507) +-- TOC entry 8756 (class 2606 OID 64605) -- Name: mdl_lti_types_config mdl_ltitypeconf_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46358,7 +46363,7 @@ ALTER TABLE ONLY public.mdl_lti_types_config -- --- TOC entry 7919 (class 2606 OID 16889) +-- TOC entry 8840 (class 2606 OID 64607) -- Name: mdl_messages mdl_mess_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46367,7 +46372,7 @@ ALTER TABLE ONLY public.mdl_messages -- --- TOC entry 7906 (class 2606 OID 16850) +-- TOC entry 8763 (class 2606 OID 64609) -- Name: mdl_message mdl_mess_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46376,7 +46381,7 @@ ALTER TABLE ONLY public.mdl_message -- --- TOC entry 9316 (class 2606 OID 22520) +-- TOC entry 8768 (class 2606 OID 64611) -- Name: mdl_message_airnotifier_devices mdl_messairndevi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46385,7 +46390,7 @@ ALTER TABLE ONLY public.mdl_message_airnotifier_devices -- --- TOC entry 7946 (class 2606 OID 16962) +-- TOC entry 8777 (class 2606 OID 64613) -- Name: mdl_message_contacts mdl_messcont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46394,7 +46399,7 @@ ALTER TABLE ONLY public.mdl_message_contacts -- --- TOC entry 7950 (class 2606 OID 16973) +-- TOC entry 8771 (class 2606 OID 64615) -- Name: mdl_message_contact_requests mdl_messcontrequ_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46403,7 +46408,7 @@ ALTER TABLE ONLY public.mdl_message_contact_requests -- --- TOC entry 7925 (class 2606 OID 16905) +-- TOC entry 8792 (class 2606 OID 64617) -- Name: mdl_message_conversations mdl_messconv_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46412,7 +46417,7 @@ ALTER TABLE ONLY public.mdl_message_conversations -- --- TOC entry 7933 (class 2606 OID 16927) +-- TOC entry 8782 (class 2606 OID 64619) -- Name: mdl_message_conversation_actions mdl_messconvacti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46421,7 +46426,7 @@ ALTER TABLE ONLY public.mdl_message_conversation_actions -- --- TOC entry 7929 (class 2606 OID 16917) +-- TOC entry 8786 (class 2606 OID 64621) -- Name: mdl_message_conversation_members mdl_messconvmemb_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46430,7 +46435,7 @@ ALTER TABLE ONLY public.mdl_message_conversation_members -- --- TOC entry 8567 (class 2606 OID 19259) +-- TOC entry 8830 (class 2606 OID 64623) -- Name: mdl_messageinbound_datakeys mdl_messdata_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46439,7 +46444,7 @@ ALTER TABLE ONLY public.mdl_messageinbound_datakeys -- --- TOC entry 9320 (class 2606 OID 22529) +-- TOC entry 8796 (class 2606 OID 64625) -- Name: mdl_message_email_messages mdl_messemaimess_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46448,7 +46453,7 @@ ALTER TABLE ONLY public.mdl_message_email_messages -- --- TOC entry 8563 (class 2606 OID 19250) +-- TOC entry 8833 (class 2606 OID 64627) -- Name: mdl_messageinbound_handlers mdl_messhand_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46457,7 +46462,7 @@ ALTER TABLE ONLY public.mdl_messageinbound_handlers -- --- TOC entry 8569 (class 2606 OID 19272) +-- TOC entry 8835 (class 2606 OID 64629) -- Name: mdl_messageinbound_messagelist mdl_messmess_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46466,7 +46471,7 @@ ALTER TABLE ONLY public.mdl_messageinbound_messagelist -- --- TOC entry 9324 (class 2606 OID 22541) +-- TOC entry 8800 (class 2606 OID 64631) -- Name: mdl_message_popup mdl_messpopu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46475,7 +46480,7 @@ ALTER TABLE ONLY public.mdl_message_popup -- --- TOC entry 9328 (class 2606 OID 22551) +-- TOC entry 8804 (class 2606 OID 64633) -- Name: mdl_message_popup_notifications mdl_messpopunoti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46484,7 +46489,7 @@ ALTER TABLE ONLY public.mdl_message_popup_notifications -- --- TOC entry 8362 (class 2606 OID 18496) +-- TOC entry 8807 (class 2606 OID 64635) -- Name: mdl_message_processors mdl_messproc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46493,7 +46498,7 @@ ALTER TABLE ONLY public.mdl_message_processors -- --- TOC entry 8360 (class 2606 OID 18485) +-- TOC entry 8810 (class 2606 OID 64637) -- Name: mdl_message_providers mdl_messprov_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46502,7 +46507,7 @@ ALTER TABLE ONLY public.mdl_message_providers -- --- TOC entry 7911 (class 2606 OID 16872) +-- TOC entry 8812 (class 2606 OID 64639) -- Name: mdl_message_read mdl_messread_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46511,7 +46516,7 @@ ALTER TABLE ONLY public.mdl_message_read -- --- TOC entry 7936 (class 2606 OID 16937) +-- TOC entry 8818 (class 2606 OID 64641) -- Name: mdl_message_user_actions mdl_messuseracti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46520,7 +46525,7 @@ ALTER TABLE ONLY public.mdl_message_user_actions -- --- TOC entry 7956 (class 2606 OID 16984) +-- TOC entry 8824 (class 2606 OID 64643) -- Name: mdl_message_users_blocked mdl_messuserbloc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46529,7 +46534,7 @@ ALTER TABLE ONLY public.mdl_message_users_blocked -- --- TOC entry 8162 (class 2606 OID 17722) +-- TOC entry 8843 (class 2606 OID 64645) -- Name: mdl_mnet_application mdl_mnetappl_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46538,7 +46543,7 @@ ALTER TABLE ONLY public.mdl_mnet_application -- --- TOC entry 9369 (class 2606 OID 22702) +-- TOC entry 8874 (class 2606 OID 64647) -- Name: mdl_mnetservice_enrol_courses mdl_mnetenrocour_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46547,7 +46552,7 @@ ALTER TABLE ONLY public.mdl_mnetservice_enrol_courses -- --- TOC entry 9372 (class 2606 OID 22714) +-- TOC entry 8877 (class 2606 OID 64649) -- Name: mdl_mnetservice_enrol_enrolments mdl_mnetenroenro_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46556,7 +46561,7 @@ ALTER TABLE ONLY public.mdl_mnetservice_enrol_enrolments -- --- TOC entry 8168 (class 2606 OID 17758) +-- TOC entry 8849 (class 2606 OID 64651) -- Name: mdl_mnet_host2service mdl_mnethost_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46565,7 +46570,7 @@ ALTER TABLE ONLY public.mdl_mnet_host2service -- --- TOC entry 8165 (class 2606 OID 17745) +-- TOC entry 8846 (class 2606 OID 64653) -- Name: mdl_mnet_host mdl_mnethost_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46574,7 +46579,7 @@ ALTER TABLE ONLY public.mdl_mnet_host -- --- TOC entry 8171 (class 2606 OID 17782) +-- TOC entry 8852 (class 2606 OID 64655) -- Name: mdl_mnet_log mdl_mnetlog_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46583,7 +46588,7 @@ ALTER TABLE ONLY public.mdl_mnet_log -- --- TOC entry 8176 (class 2606 OID 17813) +-- TOC entry 8854 (class 2606 OID 64657) -- Name: mdl_mnet_remote_rpc mdl_mnetremorpc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46592,7 +46597,7 @@ ALTER TABLE ONLY public.mdl_mnet_remote_rpc -- --- TOC entry 8183 (class 2606 OID 17846) +-- TOC entry 8856 (class 2606 OID 64659) -- Name: mdl_mnet_remote_service2rpc mdl_mnetremoserv_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46601,7 +46606,7 @@ ALTER TABLE ONLY public.mdl_mnet_remote_service2rpc -- --- TOC entry 8174 (class 2606 OID 17800) +-- TOC entry 8860 (class 2606 OID 64661) -- Name: mdl_mnet_rpc mdl_mnetrpc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46610,7 +46615,7 @@ ALTER TABLE ONLY public.mdl_mnet_rpc -- --- TOC entry 8180 (class 2606 OID 17835) +-- TOC entry 8864 (class 2606 OID 64663) -- Name: mdl_mnet_service2rpc mdl_mnetserv_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46619,7 +46624,7 @@ ALTER TABLE ONLY public.mdl_mnet_service2rpc -- --- TOC entry 8178 (class 2606 OID 17825) +-- TOC entry 8862 (class 2606 OID 64665) -- Name: mdl_mnet_service mdl_mnetserv_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46628,7 +46633,7 @@ ALTER TABLE ONLY public.mdl_mnet_service -- --- TOC entry 8186 (class 2606 OID 17863) +-- TOC entry 8867 (class 2606 OID 64667) -- Name: mdl_mnet_session mdl_mnetsess_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46637,7 +46642,7 @@ ALTER TABLE ONLY public.mdl_mnet_session -- --- TOC entry 8189 (class 2606 OID 17875) +-- TOC entry 8870 (class 2606 OID 64669) -- Name: mdl_mnet_sso_access_control mdl_mnetssoaccecont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46646,7 +46651,7 @@ ALTER TABLE ONLY public.mdl_mnet_sso_access_control -- --- TOC entry 7960 (class 2606 OID 17000) +-- TOC entry 8880 (class 2606 OID 64671) -- Name: mdl_modules mdl_modu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46655,7 +46660,7 @@ ALTER TABLE ONLY public.mdl_modules -- --- TOC entry 7963 (class 2606 OID 17013) +-- TOC entry 8883 (class 2606 OID 64673) -- Name: mdl_my_pages mdl_mypage_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46664,7 +46669,7 @@ ALTER TABLE ONLY public.mdl_my_pages -- --- TOC entry 7941 (class 2606 OID 16952) +-- TOC entry 8886 (class 2606 OID 64675) -- Name: mdl_notifications mdl_noti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46673,7 +46678,7 @@ ALTER TABLE ONLY public.mdl_notifications -- --- TOC entry 8683 (class 2606 OID 19671) +-- TOC entry 8890 (class 2606 OID 64677) -- Name: mdl_oauth2_access_token mdl_oautaccetoke_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46682,7 +46687,7 @@ ALTER TABLE ONLY public.mdl_oauth2_access_token -- --- TOC entry 8633 (class 2606 OID 19483) +-- TOC entry 8893 (class 2606 OID 64679) -- Name: mdl_oauth2_endpoint mdl_oautendp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46691,7 +46696,7 @@ ALTER TABLE ONLY public.mdl_oauth2_endpoint -- --- TOC entry 8636 (class 2606 OID 19500) +-- TOC entry 8896 (class 2606 OID 64681) -- Name: mdl_oauth2_issuer mdl_oautissu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46700,7 +46705,7 @@ ALTER TABLE ONLY public.mdl_oauth2_issuer -- --- TOC entry 8638 (class 2606 OID 19511) +-- TOC entry 8898 (class 2606 OID 64683) -- Name: mdl_oauth2_system_account mdl_oautsystacco_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46709,7 +46714,7 @@ ALTER TABLE ONLY public.mdl_oauth2_system_account -- --- TOC entry 8641 (class 2606 OID 19522) +-- TOC entry 8901 (class 2606 OID 64685) -- Name: mdl_oauth2_user_field_mapping mdl_oautuserfielmapp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46718,7 +46723,7 @@ ALTER TABLE ONLY public.mdl_oauth2_user_field_mapping -- --- TOC entry 9104 (class 2606 OID 21565) +-- TOC entry 8906 (class 2606 OID 64687) -- Name: mdl_page mdl_page_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46727,7 +46732,7 @@ ALTER TABLE ONLY public.mdl_page -- --- TOC entry 8341 (class 2606 OID 18410) +-- TOC entry 8908 (class 2606 OID 64689) -- Name: mdl_portfolio_instance mdl_portinst_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46736,7 +46741,7 @@ ALTER TABLE ONLY public.mdl_portfolio_instance -- --- TOC entry 8343 (class 2606 OID 18422) +-- TOC entry 8910 (class 2606 OID 64691) -- Name: mdl_portfolio_instance_config mdl_portinstconf_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46745,7 +46750,7 @@ ALTER TABLE ONLY public.mdl_portfolio_instance_config -- --- TOC entry 8347 (class 2606 OID 18436) +-- TOC entry 8914 (class 2606 OID 64693) -- Name: mdl_portfolio_instance_user mdl_portinstuser_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46754,7 +46759,7 @@ ALTER TABLE ONLY public.mdl_portfolio_instance_user -- --- TOC entry 8351 (class 2606 OID 18455) +-- TOC entry 8918 (class 2606 OID 64695) -- Name: mdl_portfolio_log mdl_portlog_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46763,7 +46768,7 @@ ALTER TABLE ONLY public.mdl_portfolio_log -- --- TOC entry 9378 (class 2606 OID 22739) +-- TOC entry 8922 (class 2606 OID 64697) -- Name: mdl_portfolio_mahara_queue mdl_portmahaqueu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46772,7 +46777,7 @@ ALTER TABLE ONLY public.mdl_portfolio_mahara_queue -- --- TOC entry 8355 (class 2606 OID 18470) +-- TOC entry 8926 (class 2606 OID 64699) -- Name: mdl_portfolio_tempdata mdl_porttemp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46781,7 +46786,7 @@ ALTER TABLE ONLY public.mdl_portfolio_tempdata -- --- TOC entry 8044 (class 2606 OID 17313) +-- TOC entry 8930 (class 2606 OID 64701) -- Name: mdl_post mdl_post_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46790,7 +46795,7 @@ ALTER TABLE ONLY public.mdl_post -- --- TOC entry 8452 (class 2606 OID 18849) +-- TOC entry 8937 (class 2606 OID 64703) -- Name: mdl_profiling mdl_prof_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46799,7 +46804,7 @@ ALTER TABLE ONLY public.mdl_profiling -- --- TOC entry 8758 (class 2606 OID 19942) +-- TOC entry 8942 (class 2606 OID 64705) -- Name: mdl_qtype_ddimageortext mdl_qtypddim_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46808,7 +46813,7 @@ ALTER TABLE ONLY public.mdl_qtype_ddimageortext -- --- TOC entry 8764 (class 2606 OID 19975) +-- TOC entry 8945 (class 2606 OID 64707) -- Name: mdl_qtype_ddimageortext_drags mdl_qtypddimdrag_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46817,7 +46822,7 @@ ALTER TABLE ONLY public.mdl_qtype_ddimageortext_drags -- --- TOC entry 8761 (class 2606 OID 19959) +-- TOC entry 8948 (class 2606 OID 64709) -- Name: mdl_qtype_ddimageortext_drops mdl_qtypddimdrop_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46826,7 +46831,7 @@ ALTER TABLE ONLY public.mdl_qtype_ddimageortext_drops -- --- TOC entry 8767 (class 2606 OID 19994) +-- TOC entry 8951 (class 2606 OID 64711) -- Name: mdl_qtype_ddmarker mdl_qtypddma_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46835,7 +46840,7 @@ ALTER TABLE ONLY public.mdl_qtype_ddmarker -- --- TOC entry 8773 (class 2606 OID 20025) +-- TOC entry 8954 (class 2606 OID 64713) -- Name: mdl_qtype_ddmarker_drags mdl_qtypddmadrag_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46844,7 +46849,7 @@ ALTER TABLE ONLY public.mdl_qtype_ddmarker_drags -- --- TOC entry 8770 (class 2606 OID 20009) +-- TOC entry 8957 (class 2606 OID 64715) -- Name: mdl_qtype_ddmarker_drops mdl_qtypddmadrop_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46853,7 +46858,7 @@ ALTER TABLE ONLY public.mdl_qtype_ddmarker_drops -- --- TOC entry 8779 (class 2606 OID 20062) +-- TOC entry 8960 (class 2606 OID 64717) -- Name: mdl_qtype_essay_options mdl_qtypessaopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46862,7 +46867,7 @@ ALTER TABLE ONLY public.mdl_qtype_essay_options -- --- TOC entry 8785 (class 2606 OID 20098) +-- TOC entry 8963 (class 2606 OID 64719) -- Name: mdl_qtype_match_options mdl_qtypmatcopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46871,7 +46876,7 @@ ALTER TABLE ONLY public.mdl_qtype_match_options -- --- TOC entry 8788 (class 2606 OID 20113) +-- TOC entry 8966 (class 2606 OID 64721) -- Name: mdl_qtype_match_subquestions mdl_qtypmatcsubq_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46880,7 +46885,7 @@ ALTER TABLE ONLY public.mdl_qtype_match_subquestions -- --- TOC entry 8794 (class 2606 OID 20148) +-- TOC entry 8969 (class 2606 OID 64723) -- Name: mdl_qtype_multichoice_options mdl_qtypmultopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46889,7 +46894,7 @@ ALTER TABLE ONLY public.mdl_qtype_multichoice_options -- --- TOC entry 8808 (class 2606 OID 20207) +-- TOC entry 8972 (class 2606 OID 64725) -- Name: mdl_qtype_randomsamatch_options mdl_qtyprandopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46898,7 +46903,7 @@ ALTER TABLE ONLY public.mdl_qtype_randomsamatch_options -- --- TOC entry 8811 (class 2606 OID 20218) +-- TOC entry 8975 (class 2606 OID 64727) -- Name: mdl_qtype_shortanswer_options mdl_qtypshoropti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46907,7 +46912,7 @@ ALTER TABLE ONLY public.mdl_qtype_shortanswer_options -- --- TOC entry 8127 (class 2606 OID 17579) +-- TOC entry 8981 (class 2606 OID 64729) -- Name: mdl_question mdl_ques_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46916,7 +46921,7 @@ ALTER TABLE ONLY public.mdl_question -- --- TOC entry 8132 (class 2606 OID 17600) +-- TOC entry 8986 (class 2606 OID 64731) -- Name: mdl_question_answers mdl_quesansw_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46925,7 +46930,7 @@ ALTER TABLE ONLY public.mdl_question_answers -- --- TOC entry 8142 (class 2606 OID 17640) +-- TOC entry 8998 (class 2606 OID 64733) -- Name: mdl_question_attempts mdl_quesatte_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46934,7 +46939,7 @@ ALTER TABLE ONLY public.mdl_question_attempts -- --- TOC entry 8147 (class 2606 OID 17653) +-- TOC entry 8992 (class 2606 OID 64735) -- Name: mdl_question_attempt_steps mdl_quesattestep_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46943,7 +46948,7 @@ ALTER TABLE ONLY public.mdl_question_attempt_steps -- --- TOC entry 8153 (class 2606 OID 17668) +-- TOC entry 8990 (class 2606 OID 64737) -- Name: mdl_question_attempt_step_data mdl_quesattestepdata_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46952,7 +46957,7 @@ ALTER TABLE ONLY public.mdl_question_attempt_step_data -- --- TOC entry 8741 (class 2606 OID 19860) +-- TOC entry 9004 (class 2606 OID 64739) -- Name: mdl_question_calculated mdl_quescalc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46961,7 +46966,7 @@ ALTER TABLE ONLY public.mdl_question_calculated -- --- TOC entry 8744 (class 2606 OID 19882) +-- TOC entry 9007 (class 2606 OID 64741) -- Name: mdl_question_calculated_options mdl_quescalcopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46970,7 +46975,7 @@ ALTER TABLE ONLY public.mdl_question_calculated_options -- --- TOC entry 8121 (class 2606 OID 17550) +-- TOC entry 9013 (class 2606 OID 64743) -- Name: mdl_question_categories mdl_quescate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46979,7 +46984,7 @@ ALTER TABLE ONLY public.mdl_question_categories -- --- TOC entry 8754 (class 2606 OID 19922) +-- TOC entry 9023 (class 2606 OID 64745) -- Name: mdl_question_datasets mdl_quesdata_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46988,7 +46993,7 @@ ALTER TABLE ONLY public.mdl_question_datasets -- --- TOC entry 8748 (class 2606 OID 19899) +-- TOC entry 9017 (class 2606 OID 64747) -- Name: mdl_question_dataset_definitions mdl_quesdatadefi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46997,7 +47002,7 @@ ALTER TABLE ONLY public.mdl_question_dataset_definitions -- --- TOC entry 8751 (class 2606 OID 19911) +-- TOC entry 9020 (class 2606 OID 64749) -- Name: mdl_question_dataset_items mdl_quesdataitem_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47006,7 +47011,7 @@ ALTER TABLE ONLY public.mdl_question_dataset_items -- --- TOC entry 8776 (class 2606 OID 20043) +-- TOC entry 9027 (class 2606 OID 64751) -- Name: mdl_question_ddwtos mdl_quesddwt_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47015,7 +47020,7 @@ ALTER TABLE ONLY public.mdl_question_ddwtos -- --- TOC entry 8782 (class 2606 OID 20080) +-- TOC entry 9030 (class 2606 OID 64753) -- Name: mdl_question_gapselect mdl_quesgaps_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47024,7 +47029,7 @@ ALTER TABLE ONLY public.mdl_question_gapselect -- --- TOC entry 8135 (class 2606 OID 17613) +-- TOC entry 9033 (class 2606 OID 64755) -- Name: mdl_question_hints mdl_queshint_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47033,7 +47038,7 @@ ALTER TABLE ONLY public.mdl_question_hints -- --- TOC entry 8791 (class 2606 OID 20126) +-- TOC entry 9036 (class 2606 OID 64757) -- Name: mdl_question_multianswer mdl_quesmult_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47042,7 +47047,7 @@ ALTER TABLE ONLY public.mdl_question_multianswer -- --- TOC entry 8798 (class 2606 OID 20160) +-- TOC entry 9040 (class 2606 OID 64759) -- Name: mdl_question_numerical mdl_quesnume_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47051,7 +47056,7 @@ ALTER TABLE ONLY public.mdl_question_numerical -- --- TOC entry 8801 (class 2606 OID 20175) +-- TOC entry 9043 (class 2606 OID 64761) -- Name: mdl_question_numerical_options mdl_quesnumeopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47060,7 +47065,7 @@ ALTER TABLE ONLY public.mdl_question_numerical_options -- --- TOC entry 8804 (class 2606 OID 20187) +-- TOC entry 9046 (class 2606 OID 64763) -- Name: mdl_question_numerical_units mdl_quesnumeunit_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47069,7 +47074,7 @@ ALTER TABLE ONLY public.mdl_question_numerical_units -- --- TOC entry 8157 (class 2606 OID 17697) +-- TOC entry 9050 (class 2606 OID 64765) -- Name: mdl_question_response_analysis mdl_quesrespanal_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47078,7 +47083,7 @@ ALTER TABLE ONLY public.mdl_question_response_analysis -- --- TOC entry 8160 (class 2606 OID 17705) +-- TOC entry 9053 (class 2606 OID 64767) -- Name: mdl_question_response_count mdl_quesrespcoun_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47087,7 +47092,7 @@ ALTER TABLE ONLY public.mdl_question_response_count -- --- TOC entry 8155 (class 2606 OID 17683) +-- TOC entry 9055 (class 2606 OID 64769) -- Name: mdl_question_statistics mdl_quesstat_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47096,7 +47101,7 @@ ALTER TABLE ONLY public.mdl_question_statistics -- --- TOC entry 8814 (class 2606 OID 20230) +-- TOC entry 9057 (class 2606 OID 64771) -- Name: mdl_question_truefalse mdl_questrue_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47105,7 +47110,7 @@ ALTER TABLE ONLY public.mdl_question_truefalse -- --- TOC entry 8139 (class 2606 OID 17624) +-- TOC entry 9061 (class 2606 OID 64773) -- Name: mdl_question_usages mdl_quesusag_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47114,7 +47119,7 @@ ALTER TABLE ONLY public.mdl_question_usages -- --- TOC entry 9107 (class 2606 OID 21616) +-- TOC entry 9064 (class 2606 OID 64775) -- Name: mdl_quiz mdl_quiz_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47123,7 +47128,7 @@ ALTER TABLE ONLY public.mdl_quiz -- --- TOC entry 9127 (class 2606 OID 21698) +-- TOC entry 9066 (class 2606 OID 64777) -- Name: mdl_quiz_attempts mdl_quizatte_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47132,7 +47137,7 @@ ALTER TABLE ONLY public.mdl_quiz_attempts -- --- TOC entry 9119 (class 2606 OID 21662) +-- TOC entry 9073 (class 2606 OID 64779) -- Name: mdl_quiz_feedback mdl_quizfeed_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47141,7 +47146,7 @@ ALTER TABLE ONLY public.mdl_quiz_feedback -- --- TOC entry 9134 (class 2606 OID 21715) +-- TOC entry 9076 (class 2606 OID 64781) -- Name: mdl_quiz_grades mdl_quizgrad_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47150,7 +47155,7 @@ ALTER TABLE ONLY public.mdl_quiz_grades -- --- TOC entry 9123 (class 2606 OID 21672) +-- TOC entry 9081 (class 2606 OID 64783) -- Name: mdl_quiz_overrides mdl_quizover_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47159,7 +47164,7 @@ ALTER TABLE ONLY public.mdl_quiz_overrides -- --- TOC entry 9506 (class 2606 OID 23214) +-- TOC entry 9085 (class 2606 OID 64785) -- Name: mdl_quiz_overview_regrades mdl_quizoverregr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47168,7 +47173,7 @@ ALTER TABLE ONLY public.mdl_quiz_overview_regrades -- --- TOC entry 9138 (class 2606 OID 21728) +-- TOC entry 9088 (class 2606 OID 64787) -- Name: mdl_quiz_reports mdl_quizrepo_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47177,7 +47182,7 @@ ALTER TABLE ONLY public.mdl_quiz_reports -- --- TOC entry 9512 (class 2606 OID 23238) +-- TOC entry 9108 (class 2606 OID 64789) -- Name: mdl_quizaccess_seb_quizsettings mdl_quizsebquiz_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47186,7 +47191,7 @@ ALTER TABLE ONLY public.mdl_quizaccess_seb_quizsettings -- --- TOC entry 9517 (class 2606 OID 23257) +-- TOC entry 9113 (class 2606 OID 64791) -- Name: mdl_quizaccess_seb_template mdl_quizsebtemp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47195,7 +47200,7 @@ ALTER TABLE ONLY public.mdl_quizaccess_seb_template -- --- TOC entry 9115 (class 2606 OID 21645) +-- TOC entry 9091 (class 2606 OID 64793) -- Name: mdl_quiz_sections mdl_quizsect_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47204,7 +47209,7 @@ ALTER TABLE ONLY public.mdl_quiz_sections -- --- TOC entry 9109 (class 2606 OID 21629) +-- TOC entry 9099 (class 2606 OID 64795) -- Name: mdl_quiz_slots mdl_quizslot_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47213,7 +47218,7 @@ ALTER TABLE ONLY public.mdl_quiz_slots -- --- TOC entry 9141 (class 2606 OID 21737) +-- TOC entry 9095 (class 2606 OID 64797) -- Name: mdl_quiz_slot_tags mdl_quizslottags_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47222,7 +47227,7 @@ ALTER TABLE ONLY public.mdl_quiz_slot_tags -- --- TOC entry 9509 (class 2606 OID 23224) +-- TOC entry 9105 (class 2606 OID 64799) -- Name: mdl_quiz_statistics mdl_quizstat_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47231,7 +47236,7 @@ ALTER TABLE ONLY public.mdl_quiz_statistics -- --- TOC entry 8435 (class 2606 OID 18765) +-- TOC entry 9118 (class 2606 OID 64801) -- Name: mdl_rating mdl_rati_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47240,7 +47245,7 @@ ALTER TABLE ONLY public.mdl_rating -- --- TOC entry 8440 (class 2606 OID 18799) +-- TOC entry 9121 (class 2606 OID 64803) -- Name: mdl_registration_hubs mdl_regihubs_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47249,7 +47254,7 @@ ALTER TABLE ONLY public.mdl_registration_hubs -- --- TOC entry 8381 (class 2606 OID 18562) +-- TOC entry 9123 (class 2606 OID 64805) -- Name: mdl_repository mdl_repo_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47258,7 +47263,7 @@ ALTER TABLE ONLY public.mdl_repository -- --- TOC entry 8383 (class 2606 OID 18576) +-- TOC entry 9127 (class 2606 OID 64807) -- Name: mdl_repository_instances mdl_repoinst_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47267,7 +47272,7 @@ ALTER TABLE ONLY public.mdl_repository_instances -- --- TOC entry 8385 (class 2606 OID 18588) +-- TOC entry 9125 (class 2606 OID 64809) -- Name: mdl_repository_instance_config mdl_repoinstconf_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47276,7 +47281,7 @@ ALTER TABLE ONLY public.mdl_repository_instance_config -- --- TOC entry 9375 (class 2606 OID 22729) +-- TOC entry 9129 (class 2606 OID 64811) -- Name: mdl_repository_onedrive_access mdl_repoonedacce_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47285,7 +47290,7 @@ ALTER TABLE ONLY public.mdl_repository_onedrive_access -- --- TOC entry 9146 (class 2606 OID 21759) +-- TOC entry 9133 (class 2606 OID 64813) -- Name: mdl_resource mdl_reso_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47294,7 +47299,7 @@ ALTER TABLE ONLY public.mdl_resource -- --- TOC entry 9149 (class 2606 OID 21779) +-- TOC entry 9136 (class 2606 OID 64815) -- Name: mdl_resource_old mdl_resoold_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47303,7 +47308,7 @@ ALTER TABLE ONLY public.mdl_resource_old -- --- TOC entry 8051 (class 2606 OID 17333) +-- TOC entry 9139 (class 2606 OID 64817) -- Name: mdl_role mdl_role_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47312,7 +47317,7 @@ ALTER TABLE ONLY public.mdl_role -- --- TOC entry 8067 (class 2606 OID 17382) +-- TOC entry 9144 (class 2606 OID 64819) -- Name: mdl_role_allow_assign mdl_rolealloassi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47321,7 +47326,7 @@ ALTER TABLE ONLY public.mdl_role_allow_assign -- --- TOC entry 8072 (class 2606 OID 17395) +-- TOC entry 9149 (class 2606 OID 64821) -- Name: mdl_role_allow_override mdl_rolealloover_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47330,7 +47335,7 @@ ALTER TABLE ONLY public.mdl_role_allow_override -- --- TOC entry 8077 (class 2606 OID 17406) +-- TOC entry 9154 (class 2606 OID 64823) -- Name: mdl_role_allow_switch mdl_rolealloswit_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47339,7 +47344,7 @@ ALTER TABLE ONLY public.mdl_role_allow_switch -- --- TOC entry 8082 (class 2606 OID 17417) +-- TOC entry 9159 (class 2606 OID 64825) -- Name: mdl_role_allow_view mdl_rolealloview_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47348,7 +47353,7 @@ ALTER TABLE ONLY public.mdl_role_allow_view -- --- TOC entry 8088 (class 2606 OID 17436) +-- TOC entry 9165 (class 2606 OID 64827) -- Name: mdl_role_assignments mdl_roleassi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47357,7 +47362,7 @@ ALTER TABLE ONLY public.mdl_role_assignments -- --- TOC entry 8097 (class 2606 OID 17457) +-- TOC entry 9174 (class 2606 OID 64829) -- Name: mdl_role_capabilities mdl_rolecapa_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47366,7 +47371,7 @@ ALTER TABLE ONLY public.mdl_role_capabilities -- --- TOC entry 8108 (class 2606 OID 17484) +-- TOC entry 9180 (class 2606 OID 64831) -- Name: mdl_role_context_levels mdl_rolecontleve_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47375,7 +47380,7 @@ ALTER TABLE ONLY public.mdl_role_context_levels -- --- TOC entry 8103 (class 2606 OID 17473) +-- TOC entry 9184 (class 2606 OID 64833) -- Name: mdl_role_names mdl_rolename_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47384,7 +47389,7 @@ ALTER TABLE ONLY public.mdl_role_names -- --- TOC entry 8002 (class 2606 OID 17159) +-- TOC entry 9189 (class 2606 OID 64835) -- Name: mdl_scale mdl_scal_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47393,7 +47398,7 @@ ALTER TABLE ONLY public.mdl_scale -- --- TOC entry 8006 (class 2606 OID 17175) +-- TOC entry 9193 (class 2606 OID 64837) -- Name: mdl_scale_history mdl_scalhist_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47402,7 +47407,7 @@ ALTER TABLE ONLY public.mdl_scale_history -- --- TOC entry 9153 (class 2606 OID 21828) +-- TOC entry 9199 (class 2606 OID 64839) -- Name: mdl_scorm mdl_scor_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47411,7 +47416,7 @@ ALTER TABLE ONLY public.mdl_scorm -- --- TOC entry 9194 (class 2606 OID 21996) +-- TOC entry 9201 (class 2606 OID 64841) -- Name: mdl_scorm_aicc_session mdl_scoraiccsess_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47420,7 +47425,7 @@ ALTER TABLE ONLY public.mdl_scorm_aicc_session -- --- TOC entry 9155 (class 2606 OID 21848) +-- TOC entry 9205 (class 2606 OID 64843) -- Name: mdl_scorm_scoes mdl_scorscoe_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47429,7 +47434,7 @@ ALTER TABLE ONLY public.mdl_scorm_scoes -- --- TOC entry 9158 (class 2606 OID 21862) +-- TOC entry 9208 (class 2606 OID 64845) -- Name: mdl_scorm_scoes_data mdl_scorscoedata_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47438,7 +47443,7 @@ ALTER TABLE ONLY public.mdl_scorm_scoes_data -- --- TOC entry 9161 (class 2606 OID 21880) +-- TOC entry 9211 (class 2606 OID 64847) -- Name: mdl_scorm_scoes_track mdl_scorscoetrac_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47447,7 +47452,7 @@ ALTER TABLE ONLY public.mdl_scorm_scoes_track -- --- TOC entry 9171 (class 2606 OID 21914) +-- TOC entry 9217 (class 2606 OID 64849) -- Name: mdl_scorm_seq_mapinfo mdl_scorseqmapi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47456,7 +47461,7 @@ ALTER TABLE ONLY public.mdl_scorm_seq_mapinfo -- --- TOC entry 9167 (class 2606 OID 21897) +-- TOC entry 9222 (class 2606 OID 64851) -- Name: mdl_scorm_seq_objective mdl_scorseqobje_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47465,7 +47470,7 @@ ALTER TABLE ONLY public.mdl_scorm_seq_objective -- --- TOC entry 9189 (class 2606 OID 21976) +-- TOC entry 9230 (class 2606 OID 64853) -- Name: mdl_scorm_seq_rolluprulecond mdl_scorseqroll_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47474,7 +47479,7 @@ ALTER TABLE ONLY public.mdl_scorm_seq_rolluprulecond -- --- TOC entry 9185 (class 2606 OID 21962) +-- TOC entry 9226 (class 2606 OID 64855) -- Name: mdl_scorm_seq_rolluprule mdl_scorseqroll_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47483,7 +47488,7 @@ ALTER TABLE ONLY public.mdl_scorm_seq_rolluprule -- --- TOC entry 9180 (class 2606 OID 21945) +-- TOC entry 9235 (class 2606 OID 64857) -- Name: mdl_scorm_seq_rulecond mdl_scorseqrule_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47492,7 +47497,7 @@ ALTER TABLE ONLY public.mdl_scorm_seq_rulecond -- --- TOC entry 9176 (class 2606 OID 21929) +-- TOC entry 9240 (class 2606 OID 64859) -- Name: mdl_scorm_seq_ruleconds mdl_scorseqrule_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47501,7 +47506,7 @@ ALTER TABLE ONLY public.mdl_scorm_seq_ruleconds -- --- TOC entry 8692 (class 2606 OID 19697) +-- TOC entry 9245 (class 2606 OID 64861) -- Name: mdl_search_index_requests mdl_searinderequ_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47510,7 +47515,7 @@ ALTER TABLE ONLY public.mdl_search_index_requests -- --- TOC entry 9387 (class 2606 OID 22754) +-- TOC entry 9253 (class 2606 OID 64863) -- Name: mdl_search_simpledb_index mdl_searsimpinde_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47519,7 +47524,7 @@ ALTER TABLE ONLY public.mdl_search_simpledb_index -- --- TOC entry 7966 (class 2606 OID 17027) +-- TOC entry 9256 (class 2606 OID 64865) -- Name: mdl_sessions mdl_sess_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47528,7 +47533,7 @@ ALTER TABLE ONLY public.mdl_sessions -- --- TOC entry 8012 (class 2606 OID 17194) +-- TOC entry 9264 (class 2606 OID 64867) -- Name: mdl_stats_daily mdl_statdail_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47537,7 +47542,7 @@ ALTER TABLE ONLY public.mdl_stats_daily -- --- TOC entry 8022 (class 2606 OID 17228) +-- TOC entry 9269 (class 2606 OID 64869) -- Name: mdl_stats_monthly mdl_statmont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47546,7 +47551,7 @@ ALTER TABLE ONLY public.mdl_stats_monthly -- --- TOC entry 8027 (class 2606 OID 17246) +-- TOC entry 9274 (class 2606 OID 64871) -- Name: mdl_stats_user_daily mdl_statuserdail_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47555,7 +47560,7 @@ ALTER TABLE ONLY public.mdl_stats_user_daily -- --- TOC entry 8039 (class 2606 OID 17284) +-- TOC entry 9280 (class 2606 OID 64873) -- Name: mdl_stats_user_monthly mdl_statusermont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47564,7 +47569,7 @@ ALTER TABLE ONLY public.mdl_stats_user_monthly -- --- TOC entry 8033 (class 2606 OID 17265) +-- TOC entry 9286 (class 2606 OID 64875) -- Name: mdl_stats_user_weekly mdl_statuserweek_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47573,7 +47578,7 @@ ALTER TABLE ONLY public.mdl_stats_user_weekly -- --- TOC entry 8017 (class 2606 OID 17211) +-- TOC entry 9292 (class 2606 OID 64877) -- Name: mdl_stats_weekly mdl_statweek_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47582,7 +47587,7 @@ ALTER TABLE ONLY public.mdl_stats_weekly -- --- TOC entry 9199 (class 2606 OID 22018) +-- TOC entry 9297 (class 2606 OID 64879) -- Name: mdl_survey mdl_surv_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47591,7 +47596,7 @@ ALTER TABLE ONLY public.mdl_survey -- --- TOC entry 9208 (class 2606 OID 22066) +-- TOC entry 9299 (class 2606 OID 64881) -- Name: mdl_survey_analysis mdl_survanal_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47600,7 +47605,7 @@ ALTER TABLE ONLY public.mdl_survey_analysis -- --- TOC entry 9203 (class 2606 OID 22050) +-- TOC entry 9303 (class 2606 OID 64883) -- Name: mdl_survey_answers mdl_survansw_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47609,7 +47614,7 @@ ALTER TABLE ONLY public.mdl_survey_answers -- --- TOC entry 9201 (class 2606 OID 22035) +-- TOC entry 9308 (class 2606 OID 64885) -- Name: mdl_survey_questions mdl_survques_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47618,7 +47623,7 @@ ALTER TABLE ONLY public.mdl_survey_questions -- --- TOC entry 8286 (class 2606 OID 18214) +-- TOC entry 9310 (class 2606 OID 64887) -- Name: mdl_tag mdl_tag_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47627,7 +47632,7 @@ ALTER TABLE ONLY public.mdl_tag -- --- TOC entry 8283 (class 2606 OID 18196) +-- TOC entry 9317 (class 2606 OID 64889) -- Name: mdl_tag_area mdl_tagarea_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47636,7 +47641,7 @@ ALTER TABLE ONLY public.mdl_tag_area -- --- TOC entry 8280 (class 2606 OID 18183) +-- TOC entry 9320 (class 2606 OID 64891) -- Name: mdl_tag_coll mdl_tagcoll_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47645,7 +47650,7 @@ ALTER TABLE ONLY public.mdl_tag_coll -- --- TOC entry 8292 (class 2606 OID 18229) +-- TOC entry 9322 (class 2606 OID 64893) -- Name: mdl_tag_correlation mdl_tagcorr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47654,7 +47659,7 @@ ALTER TABLE ONLY public.mdl_tag_correlation -- --- TOC entry 8297 (class 2606 OID 18243) +-- TOC entry 9327 (class 2606 OID 64895) -- Name: mdl_tag_instance mdl_taginst_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47663,7 +47668,7 @@ ALTER TABLE ONLY public.mdl_tag_instance -- --- TOC entry 8554 (class 2606 OID 19220) +-- TOC entry 9331 (class 2606 OID 64897) -- Name: mdl_task_adhoc mdl_taskadho_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47672,7 +47677,7 @@ ALTER TABLE ONLY public.mdl_task_adhoc -- --- TOC entry 8559 (class 2606 OID 19235) +-- TOC entry 9336 (class 2606 OID 64899) -- Name: mdl_task_log mdl_tasklog_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47681,7 +47686,7 @@ ALTER TABLE ONLY public.mdl_task_log -- --- TOC entry 8552 (class 2606 OID 19205) +-- TOC entry 9340 (class 2606 OID 64901) -- Name: mdl_task_scheduled mdl_tasksche_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47690,7 +47695,7 @@ ALTER TABLE ONLY public.mdl_task_scheduled -- --- TOC entry 9391 (class 2606 OID 22768) +-- TOC entry 9343 (class 2606 OID 64903) -- Name: mdl_tool_cohortroles mdl_toolcoho_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47699,7 +47704,7 @@ ALTER TABLE ONLY public.mdl_tool_cohortroles -- --- TOC entry 9394 (class 2606 OID 22784) +-- TOC entry 9346 (class 2606 OID 64905) -- Name: mdl_tool_customlang mdl_toolcust_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47708,7 +47713,7 @@ ALTER TABLE ONLY public.mdl_tool_customlang -- --- TOC entry 9397 (class 2606 OID 22798) +-- TOC entry 9349 (class 2606 OID 64907) -- Name: mdl_tool_customlang_components mdl_toolcustcomp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47717,7 +47722,7 @@ ALTER TABLE ONLY public.mdl_tool_customlang_components -- --- TOC entry 9407 (class 2606 OID 22850) +-- TOC entry 9351 (class 2606 OID 64909) -- Name: mdl_tool_dataprivacy_category mdl_tooldatacate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47726,7 +47731,7 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_category -- --- TOC entry 9420 (class 2606 OID 22884) +-- TOC entry 9354 (class 2606 OID 64911) -- Name: mdl_tool_dataprivacy_ctxexpired mdl_tooldatactxe_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47735,7 +47740,7 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_ctxexpired -- --- TOC entry 9411 (class 2606 OID 22858) +-- TOC entry 9358 (class 2606 OID 64913) -- Name: mdl_tool_dataprivacy_ctxinstance mdl_tooldatactxi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47744,7 +47749,7 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_ctxinstance -- --- TOC entry 9416 (class 2606 OID 22869) +-- TOC entry 9363 (class 2606 OID 64915) -- Name: mdl_tool_dataprivacy_ctxlevel mdl_tooldatactxl_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47753,7 +47758,7 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_ctxlevel -- --- TOC entry 9422 (class 2606 OID 22897) +-- TOC entry 9368 (class 2606 OID 64917) -- Name: mdl_tool_dataprivacy_purposerole mdl_tooldatapurp_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47762,7 +47767,7 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_purposerole -- --- TOC entry 9405 (class 2606 OID 22838) +-- TOC entry 9366 (class 2606 OID 64919) -- Name: mdl_tool_dataprivacy_purpose mdl_tooldatapurp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47771,7 +47776,7 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_purpose -- --- TOC entry 9400 (class 2606 OID 22821) +-- TOC entry 9374 (class 2606 OID 64921) -- Name: mdl_tool_dataprivacy_request mdl_tooldatarequ_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47780,7 +47785,7 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_request -- --- TOC entry 9439 (class 2606 OID 22951) +-- TOC entry 9379 (class 2606 OID 64923) -- Name: mdl_tool_monitor_events mdl_toolmonieven_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47789,7 +47794,7 @@ ALTER TABLE ONLY public.mdl_tool_monitor_events -- --- TOC entry 9435 (class 2606 OID 22936) +-- TOC entry 9381 (class 2606 OID 64925) -- Name: mdl_tool_monitor_history mdl_toolmonihist_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47798,7 +47803,7 @@ ALTER TABLE ONLY public.mdl_tool_monitor_history -- --- TOC entry 9429 (class 2606 OID 22914) +-- TOC entry 9387 (class 2606 OID 64927) -- Name: mdl_tool_monitor_rules mdl_toolmonirule_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47807,7 +47812,7 @@ ALTER TABLE ONLY public.mdl_tool_monitor_rules -- --- TOC entry 9432 (class 2606 OID 22926) +-- TOC entry 9390 (class 2606 OID 64929) -- Name: mdl_tool_monitor_subscriptions mdl_toolmonisubs_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47816,7 +47821,7 @@ ALTER TABLE ONLY public.mdl_tool_monitor_subscriptions -- --- TOC entry 9442 (class 2606 OID 22960) +-- TOC entry 9394 (class 2606 OID 64931) -- Name: mdl_tool_policy mdl_toolpoli_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47825,7 +47830,7 @@ ALTER TABLE ONLY public.mdl_tool_policy -- --- TOC entry 9448 (class 2606 OID 22993) +-- TOC entry 9396 (class 2606 OID 64933) -- Name: mdl_tool_policy_acceptances mdl_toolpoliacce_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47834,7 +47839,7 @@ ALTER TABLE ONLY public.mdl_tool_policy_acceptances -- --- TOC entry 9444 (class 2606 OID 22979) +-- TOC entry 9402 (class 2606 OID 64935) -- Name: mdl_tool_policy_versions mdl_toolpolivers_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47843,7 +47848,7 @@ ALTER TABLE ONLY public.mdl_tool_policy_versions -- --- TOC entry 9459 (class 2606 OID 23021) +-- TOC entry 9407 (class 2606 OID 64937) -- Name: mdl_tool_recyclebin_category mdl_toolrecycate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47852,7 +47857,7 @@ ALTER TABLE ONLY public.mdl_tool_recyclebin_category -- --- TOC entry 9455 (class 2606 OID 23006) +-- TOC entry 9411 (class 2606 OID 64939) -- Name: mdl_tool_recyclebin_course mdl_toolrecycour_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47861,7 +47866,7 @@ ALTER TABLE ONLY public.mdl_tool_recyclebin_course -- --- TOC entry 9464 (class 2606 OID 23049) +-- TOC entry 9414 (class 2606 OID 64941) -- Name: mdl_tool_usertours_steps mdl_tooluserstep_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47870,7 +47875,7 @@ ALTER TABLE ONLY public.mdl_tool_usertours_steps -- --- TOC entry 9462 (class 2606 OID 23037) +-- TOC entry 9418 (class 2606 OID 64943) -- Name: mdl_tool_usertours_tours mdl_toolusertour_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47879,7 +47884,7 @@ ALTER TABLE ONLY public.mdl_tool_usertours_tours -- --- TOC entry 7802 (class 2606 OID 16437) +-- TOC entry 9420 (class 2606 OID 64945) -- Name: mdl_upgrade_log mdl_upgrlog_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47888,7 +47893,7 @@ ALTER TABLE ONLY public.mdl_upgrade_log -- --- TOC entry 9213 (class 2606 OID 22084) +-- TOC entry 9426 (class 2606 OID 64947) -- Name: mdl_url mdl_url_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47897,7 +47902,7 @@ ALTER TABLE ONLY public.mdl_url -- --- TOC entry 7982 (class 2606 OID 17089) +-- TOC entry 9437 (class 2606 OID 64949) -- Name: mdl_user mdl_user_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47906,7 +47911,7 @@ ALTER TABLE ONLY public.mdl_user -- --- TOC entry 8538 (class 2606 OID 19158) +-- TOC entry 9445 (class 2606 OID 64951) -- Name: mdl_user_devices mdl_userdevi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47915,7 +47920,7 @@ ALTER TABLE ONLY public.mdl_user_devices -- --- TOC entry 7843 (class 2606 OID 16603) +-- TOC entry 9452 (class 2606 OID 64953) -- Name: mdl_user_enrolments mdl_userenro_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47924,7 +47929,7 @@ ALTER TABLE ONLY public.mdl_user_enrolments -- --- TOC entry 8113 (class 2606 OID 17518) +-- TOC entry 9456 (class 2606 OID 64955) -- Name: mdl_user_info_category mdl_userinfocate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47933,7 +47938,7 @@ ALTER TABLE ONLY public.mdl_user_info_category -- --- TOC entry 8115 (class 2606 OID 17532) +-- TOC entry 9458 (class 2606 OID 64957) -- Name: mdl_user_info_data mdl_userinfodata_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47942,7 +47947,7 @@ ALTER TABLE ONLY public.mdl_user_info_data -- --- TOC entry 8111 (class 2606 OID 17508) +-- TOC entry 9461 (class 2606 OID 64959) -- Name: mdl_user_info_field mdl_userinfofiel_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47951,7 +47956,7 @@ ALTER TABLE ONLY public.mdl_user_info_field -- --- TOC entry 7994 (class 2606 OID 17130) +-- TOC entry 9464 (class 2606 OID 64961) -- Name: mdl_user_lastaccess mdl_userlast_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47960,7 +47965,7 @@ ALTER TABLE ONLY public.mdl_user_lastaccess -- --- TOC entry 7998 (class 2606 OID 17142) +-- TOC entry 9468 (class 2606 OID 64963) -- Name: mdl_user_password_history mdl_userpasshist_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47969,7 +47974,7 @@ ALTER TABLE ONLY public.mdl_user_password_history -- --- TOC entry 8543 (class 2606 OID 19171) +-- TOC entry 9471 (class 2606 OID 64965) -- Name: mdl_user_password_resets mdl_userpassrese_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47978,7 +47983,7 @@ ALTER TABLE ONLY public.mdl_user_password_resets -- --- TOC entry 7990 (class 2606 OID 17118) +-- TOC entry 9474 (class 2606 OID 64967) -- Name: mdl_user_preferences mdl_userpref_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47987,7 +47992,7 @@ ALTER TABLE ONLY public.mdl_user_preferences -- --- TOC entry 8326 (class 2606 OID 18357) +-- TOC entry 9477 (class 2606 OID 64969) -- Name: mdl_user_private_key mdl_userprivkey_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47996,7 +48001,7 @@ ALTER TABLE ONLY public.mdl_user_private_key -- --- TOC entry 9216 (class 2606 OID 22107) +-- TOC entry 9482 (class 2606 OID 64971) -- Name: mdl_wiki mdl_wiki_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48005,7 +48010,7 @@ ALTER TABLE ONLY public.mdl_wiki -- --- TOC entry 9233 (class 2606 OID 22182) +-- TOC entry 9485 (class 2606 OID 64973) -- Name: mdl_wiki_links mdl_wikilink_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48014,7 +48019,7 @@ ALTER TABLE ONLY public.mdl_wiki_links -- --- TOC entry 9236 (class 2606 OID 22195) +-- TOC entry 9488 (class 2606 OID 64975) -- Name: mdl_wiki_locks mdl_wikilock_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48023,7 +48028,7 @@ ALTER TABLE ONLY public.mdl_wiki_locks -- --- TOC entry 9222 (class 2606 OID 22140) +-- TOC entry 9490 (class 2606 OID 64977) -- Name: mdl_wiki_pages mdl_wikipage_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48032,7 +48037,7 @@ ALTER TABLE ONLY public.mdl_wiki_pages -- --- TOC entry 9218 (class 2606 OID 22119) +-- TOC entry 9494 (class 2606 OID 64979) -- Name: mdl_wiki_subwikis mdl_wikisubw_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48041,7 +48046,7 @@ ALTER TABLE ONLY public.mdl_wiki_subwikis -- --- TOC entry 9229 (class 2606 OID 22170) +-- TOC entry 9498 (class 2606 OID 64981) -- Name: mdl_wiki_synonyms mdl_wikisyno_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48050,7 +48055,7 @@ ALTER TABLE ONLY public.mdl_wiki_synonyms -- --- TOC entry 9226 (class 2606 OID 22158) +-- TOC entry 9501 (class 2606 OID 64983) -- Name: mdl_wiki_versions mdl_wikivers_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48059,7 +48064,7 @@ ALTER TABLE ONLY public.mdl_wiki_versions -- --- TOC entry 9239 (class 2606 OID 22234) +-- TOC entry 9505 (class 2606 OID 64985) -- Name: mdl_workshop mdl_work_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48068,7 +48073,7 @@ ALTER TABLE ONLY public.mdl_workshop -- --- TOC entry 9520 (class 2606 OID 23272) +-- TOC entry 9532 (class 2606 OID 64987) -- Name: mdl_workshopform_accumulative mdl_workaccu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48077,7 +48082,7 @@ ALTER TABLE ONLY public.mdl_workshopform_accumulative -- --- TOC entry 9255 (class 2606 OID 22300) +-- TOC entry 9507 (class 2606 OID 64989) -- Name: mdl_workshop_aggregations mdl_workaggr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48086,7 +48091,7 @@ ALTER TABLE ONLY public.mdl_workshop_aggregations -- --- TOC entry 9247 (class 2606 OID 22274) +-- TOC entry 9513 (class 2606 OID 64991) -- Name: mdl_workshop_assessments mdl_workasse_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48095,7 +48100,7 @@ ALTER TABLE ONLY public.mdl_workshop_assessments -- --- TOC entry 9545 (class 2606 OID 23371) +-- TOC entry 9529 (class 2606 OID 64993) -- Name: mdl_workshopeval_best_settings mdl_workbestsett_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48104,7 +48109,7 @@ ALTER TABLE ONLY public.mdl_workshopeval_best_settings -- --- TOC entry 9523 (class 2606 OID 23286) +-- TOC entry 9535 (class 2606 OID 64995) -- Name: mdl_workshopform_comments mdl_workcomm_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48113,7 +48118,7 @@ ALTER TABLE ONLY public.mdl_workshopform_comments -- --- TOC entry 9253 (class 2606 OID 22290) +-- TOC entry 9519 (class 2606 OID 64997) -- Name: mdl_workshop_grades mdl_workgrad_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48122,7 +48127,7 @@ ALTER TABLE ONLY public.mdl_workshop_grades -- --- TOC entry 9526 (class 2606 OID 23301) +-- TOC entry 9538 (class 2606 OID 64999) -- Name: mdl_workshopform_numerrors mdl_worknume_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48131,7 +48136,7 @@ ALTER TABLE ONLY public.mdl_workshopform_numerrors -- --- TOC entry 9529 (class 2606 OID 23310) +-- TOC entry 9541 (class 2606 OID 65001) -- Name: mdl_workshopform_numerrors_map mdl_worknumemap_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48140,7 +48145,7 @@ ALTER TABLE ONLY public.mdl_workshopform_numerrors_map -- --- TOC entry 9533 (class 2606 OID 23325) +-- TOC entry 9545 (class 2606 OID 65003) -- Name: mdl_workshopform_rubric mdl_workrubr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48149,7 +48154,7 @@ ALTER TABLE ONLY public.mdl_workshopform_rubric -- --- TOC entry 9539 (class 2606 OID 23348) +-- TOC entry 9548 (class 2606 OID 65005) -- Name: mdl_workshopform_rubric_config mdl_workrubrconf_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48158,7 +48163,7 @@ ALTER TABLE ONLY public.mdl_workshopform_rubric_config -- --- TOC entry 9537 (class 2606 OID 23338) +-- TOC entry 9552 (class 2606 OID 65007) -- Name: mdl_workshopform_rubric_levels mdl_workrubrleve_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48167,7 +48172,7 @@ ALTER TABLE ONLY public.mdl_workshopform_rubric_levels -- --- TOC entry 9542 (class 2606 OID 23361) +-- TOC entry 9526 (class 2606 OID 65009) -- Name: mdl_workshopallocation_scheduled mdl_worksche_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48176,7 +48181,7 @@ ALTER TABLE ONLY public.mdl_workshopallocation_scheduled -- --- TOC entry 9243 (class 2606 OID 22254) +-- TOC entry 9523 (class 2606 OID 65011) -- Name: mdl_workshop_submissions mdl_worksubm_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48185,7 +48190,7 @@ ALTER TABLE ONLY public.mdl_workshop_submissions -- --- TOC entry 8673 (class 1259 OID 19648) +-- TOC entry 7791 (class 1259 OID 65012) -- Name: mdl_analindicalc_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48193,7 +48198,7 @@ CREATE INDEX mdl_analindicalc_con_ix ON public.mdl_analytics_indicator_calc USIN -- --- TOC entry 8676 (class 1259 OID 19647) +-- TOC entry 7794 (class 1259 OID 65013) -- Name: mdl_analindicalc_staendcon_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48201,7 +48206,7 @@ CREATE INDEX mdl_analindicalc_staendcon_ix ON public.mdl_analytics_indicator_cal -- --- TOC entry 8649 (class 1259 OID 19557) +-- TOC entry 7795 (class 1259 OID 65014) -- Name: mdl_analmode_enatra_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48209,7 +48214,7 @@ CREATE INDEX mdl_analmode_enatra_ix ON public.mdl_analytics_models USING btree ( -- --- TOC entry 8654 (class 1259 OID 19572) +-- TOC entry 7800 (class 1259 OID 65015) -- Name: mdl_analmodelog_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48217,7 +48222,7 @@ CREATE INDEX mdl_analmodelog_mod_ix ON public.mdl_analytics_models_log USING btr -- --- TOC entry 8655 (class 1259 OID 19587) +-- TOC entry 7810 (class 1259 OID 65016) -- Name: mdl_analpred_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48225,7 +48230,7 @@ CREATE INDEX mdl_analpred_con_ix ON public.mdl_analytics_predictions USING btree -- --- TOC entry 8658 (class 1259 OID 19586) +-- TOC entry 7813 (class 1259 OID 65017) -- Name: mdl_analpred_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48233,7 +48238,7 @@ CREATE INDEX mdl_analpred_mod_ix ON public.mdl_analytics_predictions USING btree -- --- TOC entry 8659 (class 1259 OID 19585) +-- TOC entry 7814 (class 1259 OID 65018) -- Name: mdl_analpred_modcon_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48241,7 +48246,7 @@ CREATE INDEX mdl_analpred_modcon_ix ON public.mdl_analytics_predictions USING bt -- --- TOC entry 8679 (class 1259 OID 19659) +-- TOC entry 7807 (class 1259 OID 65019) -- Name: mdl_analpredacti_pre_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48249,7 +48254,7 @@ CREATE INDEX mdl_analpredacti_pre_ix ON public.mdl_analytics_prediction_actions -- --- TOC entry 8680 (class 1259 OID 19658) +-- TOC entry 7808 (class 1259 OID 65020) -- Name: mdl_analpredacti_preuseact_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48257,7 +48262,7 @@ CREATE INDEX mdl_analpredacti_preuseact_ix ON public.mdl_analytics_prediction_ac -- --- TOC entry 8681 (class 1259 OID 19660) +-- TOC entry 7809 (class 1259 OID 65021) -- Name: mdl_analpredacti_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48265,7 +48270,7 @@ CREATE INDEX mdl_analpredacti_use_ix ON public.mdl_analytics_prediction_actions -- --- TOC entry 8666 (class 1259 OID 19618) +-- TOC entry 7803 (class 1259 OID 65022) -- Name: mdl_analpredsamp_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48273,7 +48278,7 @@ CREATE INDEX mdl_analpredsamp_mod_ix ON public.mdl_analytics_predict_samples USI -- --- TOC entry 8667 (class 1259 OID 19617) +-- TOC entry 7804 (class 1259 OID 65023) -- Name: mdl_analpredsamp_modanatimr_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48281,7 +48286,7 @@ CREATE INDEX mdl_analpredsamp_modanatimr_ix ON public.mdl_analytics_predict_samp -- --- TOC entry 8662 (class 1259 OID 19602) +-- TOC entry 7817 (class 1259 OID 65024) -- Name: mdl_analtraisamp_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48289,7 +48294,7 @@ CREATE INDEX mdl_analtraisamp_mod_ix ON public.mdl_analytics_train_samples USING -- --- TOC entry 8663 (class 1259 OID 19601) +-- TOC entry 7818 (class 1259 OID 65025) -- Name: mdl_analtraisamp_modanatim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48297,7 +48302,7 @@ CREATE INDEX mdl_analtraisamp_modanatim_ix ON public.mdl_analytics_train_samples -- --- TOC entry 8685 (class 1259 OID 19683) +-- TOC entry 7819 (class 1259 OID 65026) -- Name: mdl_analusedanal_ana_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48305,7 +48310,7 @@ CREATE INDEX mdl_analusedanal_ana_ix ON public.mdl_analytics_used_analysables US -- --- TOC entry 8688 (class 1259 OID 19684) +-- TOC entry 7822 (class 1259 OID 65027) -- Name: mdl_analusedanal_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48313,7 +48318,7 @@ CREATE INDEX mdl_analusedanal_mod_ix ON public.mdl_analytics_used_analysables US -- --- TOC entry 8689 (class 1259 OID 19682) +-- TOC entry 7823 (class 1259 OID 65028) -- Name: mdl_analusedanal_modact_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48321,7 +48326,7 @@ CREATE INDEX mdl_analusedanal_modact_ix ON public.mdl_analytics_used_analysables -- --- TOC entry 8668 (class 1259 OID 19633) +-- TOC entry 7824 (class 1259 OID 65029) -- Name: mdl_analusedfile_fil_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48329,7 +48334,7 @@ CREATE INDEX mdl_analusedfile_fil_ix ON public.mdl_analytics_used_files USING bt -- --- TOC entry 8671 (class 1259 OID 19632) +-- TOC entry 7827 (class 1259 OID 65030) -- Name: mdl_analusedfile_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48337,7 +48342,7 @@ CREATE INDEX mdl_analusedfile_mod_ix ON public.mdl_analytics_used_files USING bt -- --- TOC entry 8672 (class 1259 OID 19631) +-- TOC entry 7828 (class 1259 OID 65031) -- Name: mdl_analusedfile_modactfil_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48345,7 +48350,7 @@ CREATE INDEX mdl_analusedfile_modactfil_ix ON public.mdl_analytics_used_files US -- --- TOC entry 8853 (class 1259 OID 20400) +-- TOC entry 7892 (class 1259 OID 65032) -- Name: mdl_assi_cou2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48353,7 +48358,7 @@ CREATE INDEX mdl_assi_cou2_ix ON public.mdl_assignment USING btree (course); -- --- TOC entry 8816 (class 1259 OID 20271) +-- TOC entry 7829 (class 1259 OID 65033) -- Name: mdl_assi_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48361,7 +48366,7 @@ CREATE INDEX mdl_assi_cou_ix ON public.mdl_assign USING btree (course); -- --- TOC entry 8819 (class 1259 OID 20272) +-- TOC entry 7832 (class 1259 OID 65034) -- Name: mdl_assi_tea_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48369,7 +48374,7 @@ CREATE INDEX mdl_assi_tea_ix ON public.mdl_assign USING btree (teamsubmissiongro -- --- TOC entry 9475 (class 1259 OID 23095) +-- TOC entry 7866 (class 1259 OID 65035) -- Name: mdl_assicomm_ass_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48377,7 +48382,7 @@ CREATE INDEX mdl_assicomm_ass_ix ON public.mdl_assignfeedback_comments USING btr -- --- TOC entry 9476 (class 1259 OID 23096) +-- TOC entry 7867 (class 1259 OID 65036) -- Name: mdl_assicomm_gra_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48385,7 +48390,7 @@ CREATE INDEX mdl_assicomm_gra_ix ON public.mdl_assignfeedback_comments USING btr -- --- TOC entry 9483 (class 1259 OID 23138) +-- TOC entry 7870 (class 1259 OID 65037) -- Name: mdl_assieditanno_gra_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48393,7 +48398,7 @@ CREATE INDEX mdl_assieditanno_gra_ix ON public.mdl_assignfeedback_editpdf_annot -- --- TOC entry 9484 (class 1259 OID 23137) +-- TOC entry 7871 (class 1259 OID 65038) -- Name: mdl_assieditanno_grapag_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48401,7 +48406,7 @@ CREATE INDEX mdl_assieditanno_grapag_ix ON public.mdl_assignfeedback_editpdf_ann -- --- TOC entry 9479 (class 1259 OID 23116) +-- TOC entry 7874 (class 1259 OID 65039) -- Name: mdl_assieditcmnt_gra_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48409,7 +48414,7 @@ CREATE INDEX mdl_assieditcmnt_gra_ix ON public.mdl_assignfeedback_editpdf_cmnt U -- --- TOC entry 9480 (class 1259 OID 23115) +-- TOC entry 7875 (class 1259 OID 65040) -- Name: mdl_assieditcmnt_grapag_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48417,7 +48422,7 @@ CREATE INDEX mdl_assieditcmnt_grapag_ix ON public.mdl_assignfeedback_editpdf_cmn -- --- TOC entry 9492 (class 1259 OID 23163) +-- TOC entry 7880 (class 1259 OID 65041) -- Name: mdl_assieditqueu_subsub_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48425,7 +48430,7 @@ CREATE UNIQUE INDEX mdl_assieditqueu_subsub_uix ON public.mdl_assignfeedback_edi -- --- TOC entry 9489 (class 1259 OID 23153) +-- TOC entry 7883 (class 1259 OID 65042) -- Name: mdl_assieditquic_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48433,7 +48438,7 @@ CREATE INDEX mdl_assieditquic_use_ix ON public.mdl_assignfeedback_editpdf_quick -- --- TOC entry 9493 (class 1259 OID 23180) +-- TOC entry 7884 (class 1259 OID 65043) -- Name: mdl_assieditrot_gra_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48441,7 +48446,7 @@ CREATE INDEX mdl_assieditrot_gra_ix ON public.mdl_assignfeedback_editpdf_rot USI -- --- TOC entry 9494 (class 1259 OID 23179) +-- TOC entry 7885 (class 1259 OID 65044) -- Name: mdl_assieditrot_grapag_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48449,7 +48454,7 @@ CREATE UNIQUE INDEX mdl_assieditrot_grapag_uix ON public.mdl_assignfeedback_edit -- --- TOC entry 9497 (class 1259 OID 23192) +-- TOC entry 7888 (class 1259 OID 65045) -- Name: mdl_assifile_ass2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48457,7 +48462,7 @@ CREATE INDEX mdl_assifile_ass2_ix ON public.mdl_assignfeedback_file USING btree -- --- TOC entry 9467 (class 1259 OID 23063) +-- TOC entry 7905 (class 1259 OID 65046) -- Name: mdl_assifile_ass_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48465,7 +48470,7 @@ CREATE INDEX mdl_assifile_ass_ix ON public.mdl_assignsubmission_file USING btree -- --- TOC entry 9498 (class 1259 OID 23193) +-- TOC entry 7889 (class 1259 OID 65047) -- Name: mdl_assifile_gra_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48473,7 +48478,7 @@ CREATE INDEX mdl_assifile_gra_ix ON public.mdl_assignfeedback_file USING btree ( -- --- TOC entry 9470 (class 1259 OID 23064) +-- TOC entry 7908 (class 1259 OID 65048) -- Name: mdl_assifile_sub_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48481,7 +48486,7 @@ CREATE INDEX mdl_assifile_sub_ix ON public.mdl_assignsubmission_file USING btree -- --- TOC entry 8827 (class 1259 OID 20311) +-- TOC entry 7833 (class 1259 OID 65049) -- Name: mdl_assigrad_ass_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48489,7 +48494,7 @@ CREATE INDEX mdl_assigrad_ass_ix ON public.mdl_assign_grades USING btree (assign -- --- TOC entry 8828 (class 1259 OID 20310) +-- TOC entry 7834 (class 1259 OID 65050) -- Name: mdl_assigrad_assuseatt_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48497,7 +48502,7 @@ CREATE UNIQUE INDEX mdl_assigrad_assuseatt_uix ON public.mdl_assign_grades USING -- --- TOC entry 8829 (class 1259 OID 20309) +-- TOC entry 7835 (class 1259 OID 65051) -- Name: mdl_assigrad_att_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48505,7 +48510,7 @@ CREATE INDEX mdl_assigrad_att_ix ON public.mdl_assign_grades USING btree (attemp -- --- TOC entry 8832 (class 1259 OID 20308) +-- TOC entry 7838 (class 1259 OID 65052) -- Name: mdl_assigrad_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48513,7 +48518,7 @@ CREATE INDEX mdl_assigrad_use_ix ON public.mdl_assign_grades USING btree (userid -- --- TOC entry 9471 (class 1259 OID 23079) +-- TOC entry 7909 (class 1259 OID 65053) -- Name: mdl_assionli_ass_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48521,7 +48526,7 @@ CREATE INDEX mdl_assionli_ass_ix ON public.mdl_assignsubmission_onlinetext USING -- --- TOC entry 9474 (class 1259 OID 23080) +-- TOC entry 7912 (class 1259 OID 65054) -- Name: mdl_assionli_sub_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48529,7 +48534,7 @@ CREATE INDEX mdl_assionli_sub_ix ON public.mdl_assignsubmission_onlinetext USING -- --- TOC entry 8848 (class 1259 OID 20369) +-- TOC entry 7839 (class 1259 OID 65055) -- Name: mdl_assiover_ass_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48537,7 +48542,7 @@ CREATE INDEX mdl_assiover_ass_ix ON public.mdl_assign_overrides USING btree (ass -- --- TOC entry 8849 (class 1259 OID 20370) +-- TOC entry 7840 (class 1259 OID 65056) -- Name: mdl_assiover_gro_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48545,7 +48550,7 @@ CREATE INDEX mdl_assiover_gro_ix ON public.mdl_assign_overrides USING btree (gro -- --- TOC entry 8852 (class 1259 OID 20371) +-- TOC entry 7843 (class 1259 OID 65057) -- Name: mdl_assiover_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48553,7 +48558,7 @@ CREATE INDEX mdl_assiover_use_ix ON public.mdl_assign_overrides USING btree (use -- --- TOC entry 8833 (class 1259 OID 20330) +-- TOC entry 7844 (class 1259 OID 65058) -- Name: mdl_assiplugconf_ass_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48561,7 +48566,7 @@ CREATE INDEX mdl_assiplugconf_ass_ix ON public.mdl_assign_plugin_config USING bt -- --- TOC entry 8836 (class 1259 OID 20329) +-- TOC entry 7847 (class 1259 OID 65059) -- Name: mdl_assiplugconf_nam_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48569,7 +48574,7 @@ CREATE INDEX mdl_assiplugconf_nam_ix ON public.mdl_assign_plugin_config USING bt -- --- TOC entry 8837 (class 1259 OID 20327) +-- TOC entry 7848 (class 1259 OID 65060) -- Name: mdl_assiplugconf_plu_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48577,7 +48582,7 @@ CREATE INDEX mdl_assiplugconf_plu_ix ON public.mdl_assign_plugin_config USING bt -- --- TOC entry 8838 (class 1259 OID 20328) +-- TOC entry 7849 (class 1259 OID 65061) -- Name: mdl_assiplugconf_sub_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48585,7 +48590,7 @@ CREATE INDEX mdl_assiplugconf_sub_ix ON public.mdl_assign_plugin_config USING bt -- --- TOC entry 8856 (class 1259 OID 20425) +-- TOC entry 7895 (class 1259 OID 65062) -- Name: mdl_assisubm_ass2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48593,7 +48598,7 @@ CREATE INDEX mdl_assisubm_ass2_ix ON public.mdl_assignment_submissions USING btr -- --- TOC entry 8820 (class 1259 OID 20292) +-- TOC entry 7850 (class 1259 OID 65063) -- Name: mdl_assisubm_ass_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48601,7 +48606,7 @@ CREATE INDEX mdl_assisubm_ass_ix ON public.mdl_assign_submission USING btree (as -- --- TOC entry 8821 (class 1259 OID 20290) +-- TOC entry 7851 (class 1259 OID 65064) -- Name: mdl_assisubm_assusegroatt_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48609,7 +48614,7 @@ CREATE UNIQUE INDEX mdl_assisubm_assusegroatt_uix ON public.mdl_assign_submissio -- --- TOC entry 8822 (class 1259 OID 20291) +-- TOC entry 7852 (class 1259 OID 65065) -- Name: mdl_assisubm_assusegrolat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48617,7 +48622,7 @@ CREATE INDEX mdl_assisubm_assusegrolat_ix ON public.mdl_assign_submission USING -- --- TOC entry 8823 (class 1259 OID 20289) +-- TOC entry 7853 (class 1259 OID 65066) -- Name: mdl_assisubm_att_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48625,7 +48630,7 @@ CREATE INDEX mdl_assisubm_att_ix ON public.mdl_assign_submission USING btree (at -- --- TOC entry 8859 (class 1259 OID 20423) +-- TOC entry 7898 (class 1259 OID 65067) -- Name: mdl_assisubm_mai_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48633,7 +48638,7 @@ CREATE INDEX mdl_assisubm_mai_ix ON public.mdl_assignment_submissions USING btre -- --- TOC entry 8860 (class 1259 OID 20424) +-- TOC entry 7899 (class 1259 OID 65068) -- Name: mdl_assisubm_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48641,7 +48646,7 @@ CREATE INDEX mdl_assisubm_tim_ix ON public.mdl_assignment_submissions USING btre -- --- TOC entry 8861 (class 1259 OID 20422) +-- TOC entry 7900 (class 1259 OID 65069) -- Name: mdl_assisubm_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48649,7 +48654,7 @@ CREATE INDEX mdl_assisubm_use2_ix ON public.mdl_assignment_submissions USING btr -- --- TOC entry 8826 (class 1259 OID 20288) +-- TOC entry 7856 (class 1259 OID 65070) -- Name: mdl_assisubm_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48657,7 +48662,7 @@ CREATE INDEX mdl_assisubm_use_ix ON public.mdl_assign_submission USING btree (us -- --- TOC entry 8864 (class 1259 OID 20440) +-- TOC entry 7903 (class 1259 OID 65071) -- Name: mdl_assiupgr_old2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48665,7 +48670,7 @@ CREATE INDEX mdl_assiupgr_old2_ix ON public.mdl_assignment_upgrade USING btree ( -- --- TOC entry 8865 (class 1259 OID 20439) +-- TOC entry 7904 (class 1259 OID 65072) -- Name: mdl_assiupgr_old_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48673,7 +48678,7 @@ CREATE INDEX mdl_assiupgr_old_ix ON public.mdl_assignment_upgrade USING btree (o -- --- TOC entry 8843 (class 1259 OID 20359) +-- TOC entry 7857 (class 1259 OID 65073) -- Name: mdl_assiuserflag_ass_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48681,7 +48686,7 @@ CREATE INDEX mdl_assiuserflag_ass_ix ON public.mdl_assign_user_flags USING btree -- --- TOC entry 8846 (class 1259 OID 20357) +-- TOC entry 7860 (class 1259 OID 65074) -- Name: mdl_assiuserflag_mai_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48689,7 +48694,7 @@ CREATE INDEX mdl_assiuserflag_mai_ix ON public.mdl_assign_user_flags USING btree -- --- TOC entry 8847 (class 1259 OID 20358) +-- TOC entry 7861 (class 1259 OID 65075) -- Name: mdl_assiuserflag_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48697,7 +48702,7 @@ CREATE INDEX mdl_assiuserflag_use_ix ON public.mdl_assign_user_flags USING btree -- --- TOC entry 8839 (class 1259 OID 20341) +-- TOC entry 7862 (class 1259 OID 65076) -- Name: mdl_assiusermapp_ass_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48705,7 +48710,7 @@ CREATE INDEX mdl_assiusermapp_ass_ix ON public.mdl_assign_user_mapping USING btr -- --- TOC entry 8842 (class 1259 OID 20342) +-- TOC entry 7865 (class 1259 OID 65077) -- Name: mdl_assiusermapp_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48713,7 +48718,7 @@ CREATE INDEX mdl_assiusermapp_use_ix ON public.mdl_assign_user_mapping USING btr -- --- TOC entry 9261 (class 1259 OID 22320) +-- TOC entry 7915 (class 1259 OID 65078) -- Name: mdl_authoautlinklogi_iss_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48721,7 +48726,7 @@ CREATE INDEX mdl_authoautlinklogi_iss_ix ON public.mdl_auth_oauth2_linked_login -- --- TOC entry 9262 (class 1259 OID 22317) +-- TOC entry 7916 (class 1259 OID 65079) -- Name: mdl_authoautlinklogi_issuse_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48729,7 +48734,7 @@ CREATE INDEX mdl_authoautlinklogi_issuse_ix ON public.mdl_auth_oauth2_linked_log -- --- TOC entry 9263 (class 1259 OID 22319) +-- TOC entry 7917 (class 1259 OID 65080) -- Name: mdl_authoautlinklogi_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48737,7 +48742,7 @@ CREATE INDEX mdl_authoautlinklogi_use2_ix ON public.mdl_auth_oauth2_linked_login -- --- TOC entry 9264 (class 1259 OID 22318) +-- TOC entry 7918 (class 1259 OID 65081) -- Name: mdl_authoautlinklogi_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48745,7 +48750,7 @@ CREATE INDEX mdl_authoautlinklogi_use_ix ON public.mdl_auth_oauth2_linked_login -- --- TOC entry 9265 (class 1259 OID 22321) +-- TOC entry 7919 (class 1259 OID 65082) -- Name: mdl_authoautlinklogi_useis_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48753,7 +48758,7 @@ CREATE UNIQUE INDEX mdl_authoautlinklogi_useis_uix ON public.mdl_auth_oauth2_lin -- --- TOC entry 8441 (class 1259 OID 18819) +-- TOC entry 7920 (class 1259 OID 65083) -- Name: mdl_backcont_bac_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48761,7 +48766,7 @@ CREATE UNIQUE INDEX mdl_backcont_bac_uix ON public.mdl_backup_controllers USING -- --- TOC entry 8444 (class 1259 OID 18817) +-- TOC entry 7923 (class 1259 OID 65084) -- Name: mdl_backcont_typite_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48769,7 +48774,7 @@ CREATE INDEX mdl_backcont_typite_ix ON public.mdl_backup_controllers USING btree -- --- TOC entry 8445 (class 1259 OID 18820) +-- TOC entry 7924 (class 1259 OID 65085) -- Name: mdl_backcont_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48777,7 +48782,7 @@ CREATE INDEX mdl_backcont_use_ix ON public.mdl_backup_controllers USING btree (u -- --- TOC entry 8446 (class 1259 OID 18818) +-- TOC entry 7925 (class 1259 OID 65086) -- Name: mdl_backcont_useite_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48785,7 +48790,7 @@ CREATE INDEX mdl_backcont_useite_ix ON public.mdl_backup_controllers USING btree -- --- TOC entry 8386 (class 1259 OID 18602) +-- TOC entry 7926 (class 1259 OID 65087) -- Name: mdl_backcour_cou_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48793,7 +48798,7 @@ CREATE UNIQUE INDEX mdl_backcour_cou_uix ON public.mdl_backup_courses USING btre -- --- TOC entry 8447 (class 1259 OID 18834) +-- TOC entry 7929 (class 1259 OID 65088) -- Name: mdl_backlogs_bac_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48801,7 +48806,7 @@ CREATE INDEX mdl_backlogs_bac_ix ON public.mdl_backup_logs USING btree (backupid -- --- TOC entry 8448 (class 1259 OID 18833) +-- TOC entry 7930 (class 1259 OID 65089) -- Name: mdl_backlogs_bacid_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48809,7 +48814,7 @@ CREATE UNIQUE INDEX mdl_backlogs_bacid_uix ON public.mdl_backup_logs USING btree -- --- TOC entry 8474 (class 1259 OID 18948) +-- TOC entry 7933 (class 1259 OID 65090) -- Name: mdl_badg_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48817,7 +48822,7 @@ CREATE INDEX mdl_badg_cou_ix ON public.mdl_badge USING btree (courseid); -- --- TOC entry 8477 (class 1259 OID 18947) +-- TOC entry 7936 (class 1259 OID 65091) -- Name: mdl_badg_typ_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48825,7 +48830,7 @@ CREATE INDEX mdl_badg_typ_ix ON public.mdl_badge USING btree (type); -- --- TOC entry 8478 (class 1259 OID 18950) +-- TOC entry 7937 (class 1259 OID 65092) -- Name: mdl_badg_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48833,7 +48838,7 @@ CREATE INDEX mdl_badg_use2_ix ON public.mdl_badge USING btree (usercreated); -- --- TOC entry 8479 (class 1259 OID 18949) +-- TOC entry 7938 (class 1259 OID 65093) -- Name: mdl_badg_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48841,7 +48846,7 @@ CREATE INDEX mdl_badg_use_ix ON public.mdl_badge USING btree (usermodified); -- --- TOC entry 8524 (class 1259 OID 19109) +-- TOC entry 7939 (class 1259 OID 65094) -- Name: mdl_badgalig_bad_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48849,7 +48854,7 @@ CREATE INDEX mdl_badgalig_bad_ix ON public.mdl_badge_alignment USING btree (badg -- --- TOC entry 8507 (class 1259 OID 19051) +-- TOC entry 7942 (class 1259 OID 65095) -- Name: mdl_badgback_ext_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48857,7 +48862,7 @@ CREATE INDEX mdl_badgback_ext_ix ON public.mdl_badge_backpack USING btree (exter -- --- TOC entry 8510 (class 1259 OID 19050) +-- TOC entry 7945 (class 1259 OID 65096) -- Name: mdl_badgback_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48865,7 +48870,7 @@ CREATE INDEX mdl_badgback_use_ix ON public.mdl_badge_backpack USING btree (useri -- --- TOC entry 8511 (class 1259 OID 19069) +-- TOC entry 7946 (class 1259 OID 65097) -- Name: mdl_badgbackoaut_ext_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48873,7 +48878,7 @@ CREATE INDEX mdl_badgbackoaut_ext_ix ON public.mdl_badge_backpack_oauth2 USING b -- --- TOC entry 8514 (class 1259 OID 19068) +-- TOC entry 7949 (class 1259 OID 65098) -- Name: mdl_badgbackoaut_iss_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48881,7 +48886,7 @@ CREATE INDEX mdl_badgbackoaut_iss_ix ON public.mdl_badge_backpack_oauth2 USING b -- --- TOC entry 8515 (class 1259 OID 19067) +-- TOC entry 7950 (class 1259 OID 65099) -- Name: mdl_badgbackoaut_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48889,7 +48894,7 @@ CREATE INDEX mdl_badgbackoaut_use2_ix ON public.mdl_badge_backpack_oauth2 USING -- --- TOC entry 8516 (class 1259 OID 19066) +-- TOC entry 7951 (class 1259 OID 65100) -- Name: mdl_badgbackoaut_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48897,7 +48902,7 @@ CREATE INDEX mdl_badgbackoaut_use_ix ON public.mdl_badge_backpack_oauth2 USING b -- --- TOC entry 8480 (class 1259 OID 18967) +-- TOC entry 7952 (class 1259 OID 65101) -- Name: mdl_badgcrit_bad_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48905,7 +48910,7 @@ CREATE INDEX mdl_badgcrit_bad_ix ON public.mdl_badge_criteria USING btree (badge -- --- TOC entry 8481 (class 1259 OID 18966) +-- TOC entry 7953 (class 1259 OID 65102) -- Name: mdl_badgcrit_badcri_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48913,7 +48918,7 @@ CREATE UNIQUE INDEX mdl_badgcrit_badcri_uix ON public.mdl_badge_criteria USING b -- --- TOC entry 8482 (class 1259 OID 18965) +-- TOC entry 7954 (class 1259 OID 65103) -- Name: mdl_badgcrit_cri_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48921,7 +48926,7 @@ CREATE INDEX mdl_badgcrit_cri_ix ON public.mdl_badge_criteria USING btree (crite -- --- TOC entry 8493 (class 1259 OID 19007) +-- TOC entry 7957 (class 1259 OID 65104) -- Name: mdl_badgcritmet_cri_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48929,7 +48934,7 @@ CREATE INDEX mdl_badgcritmet_cri_ix ON public.mdl_badge_criteria_met USING btree -- --- TOC entry 8496 (class 1259 OID 19009) +-- TOC entry 7960 (class 1259 OID 65105) -- Name: mdl_badgcritmet_iss_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48937,7 +48942,7 @@ CREATE INDEX mdl_badgcritmet_iss_ix ON public.mdl_badge_criteria_met USING btree -- --- TOC entry 8497 (class 1259 OID 19008) +-- TOC entry 7961 (class 1259 OID 65106) -- Name: mdl_badgcritmet_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48945,7 +48950,7 @@ CREATE INDEX mdl_badgcritmet_use_ix ON public.mdl_badge_criteria_met USING btree -- --- TOC entry 8485 (class 1259 OID 18980) +-- TOC entry 7962 (class 1259 OID 65107) -- Name: mdl_badgcritpara_cri_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48953,7 +48958,7 @@ CREATE INDEX mdl_badgcritpara_cri_ix ON public.mdl_badge_criteria_param USING bt -- --- TOC entry 8498 (class 1259 OID 19026) +-- TOC entry 7965 (class 1259 OID 65108) -- Name: mdl_badgendo_bad_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48961,7 +48966,7 @@ CREATE INDEX mdl_badgendo_bad_ix ON public.mdl_badge_endorsement USING btree (ba -- --- TOC entry 8517 (class 1259 OID 19081) +-- TOC entry 7968 (class 1259 OID 65109) -- Name: mdl_badgexte_bac_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48969,7 +48974,7 @@ CREATE INDEX mdl_badgexte_bac_ix ON public.mdl_badge_external USING btree (backp -- --- TOC entry 8532 (class 1259 OID 19138) +-- TOC entry 7971 (class 1259 OID 65110) -- Name: mdl_badgexteback_bac2_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48977,7 +48982,7 @@ CREATE UNIQUE INDEX mdl_badgexteback_bac2_uix ON public.mdl_badge_external_backp -- --- TOC entry 8533 (class 1259 OID 19137) +-- TOC entry 7972 (class 1259 OID 65111) -- Name: mdl_badgexteback_bac_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48985,7 +48990,7 @@ CREATE UNIQUE INDEX mdl_badgexteback_bac_uix ON public.mdl_badge_external_backpa -- --- TOC entry 8536 (class 1259 OID 19139) +-- TOC entry 7975 (class 1259 OID 65112) -- Name: mdl_badgexteback_oau_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48993,7 +48998,7 @@ CREATE INDEX mdl_badgexteback_oau_ix ON public.mdl_badge_external_backpack USING -- --- TOC entry 8522 (class 1259 OID 19093) +-- TOC entry 7978 (class 1259 OID 65113) -- Name: mdl_badgexteiden_sit_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49001,7 +49006,7 @@ CREATE INDEX mdl_badgexteiden_sit_ix ON public.mdl_badge_external_identifier USI -- --- TOC entry 8523 (class 1259 OID 19094) +-- TOC entry 7979 (class 1259 OID 65114) -- Name: mdl_badgexteiden_sitintext_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49009,7 +49014,7 @@ CREATE UNIQUE INDEX mdl_badgexteiden_sitintext_uix ON public.mdl_badge_external_ -- --- TOC entry 8488 (class 1259 OID 18997) +-- TOC entry 7980 (class 1259 OID 65115) -- Name: mdl_badgissu_bad_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49017,7 +49022,7 @@ CREATE INDEX mdl_badgissu_bad_ix ON public.mdl_badge_issued USING btree (badgeid -- --- TOC entry 8489 (class 1259 OID 18996) +-- TOC entry 7981 (class 1259 OID 65116) -- Name: mdl_badgissu_baduse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49025,7 +49030,7 @@ CREATE UNIQUE INDEX mdl_badgissu_baduse_uix ON public.mdl_badge_issued USING btr -- --- TOC entry 8492 (class 1259 OID 18998) +-- TOC entry 7984 (class 1259 OID 65117) -- Name: mdl_badgissu_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49033,7 +49038,7 @@ CREATE INDEX mdl_badgissu_use_ix ON public.mdl_badge_issued USING btree (userid) -- --- TOC entry 8501 (class 1259 OID 19035) +-- TOC entry 7985 (class 1259 OID 65118) -- Name: mdl_badgmanuawar_bad_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49041,7 +49046,7 @@ CREATE INDEX mdl_badgmanuawar_bad_ix ON public.mdl_badge_manual_award USING btre -- --- TOC entry 8504 (class 1259 OID 19038) +-- TOC entry 7988 (class 1259 OID 65119) -- Name: mdl_badgmanuawar_iss2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49049,7 +49054,7 @@ CREATE INDEX mdl_badgmanuawar_iss2_ix ON public.mdl_badge_manual_award USING btr -- --- TOC entry 8505 (class 1259 OID 19037) +-- TOC entry 7989 (class 1259 OID 65120) -- Name: mdl_badgmanuawar_iss_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49057,7 +49062,7 @@ CREATE INDEX mdl_badgmanuawar_iss_ix ON public.mdl_badge_manual_award USING btre -- --- TOC entry 8506 (class 1259 OID 19036) +-- TOC entry 7990 (class 1259 OID 65121) -- Name: mdl_badgmanuawar_rec_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49065,7 +49070,7 @@ CREATE INDEX mdl_badgmanuawar_rec_ix ON public.mdl_badge_manual_award USING btre -- --- TOC entry 8527 (class 1259 OID 19119) +-- TOC entry 7991 (class 1259 OID 65122) -- Name: mdl_badgrela_bad_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49073,7 +49078,7 @@ CREATE INDEX mdl_badgrela_bad_ix ON public.mdl_badge_related USING btree (badgei -- --- TOC entry 8528 (class 1259 OID 19121) +-- TOC entry 7992 (class 1259 OID 65123) -- Name: mdl_badgrela_badrel_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49081,7 +49086,7 @@ CREATE UNIQUE INDEX mdl_badgrela_badrel_uix ON public.mdl_badge_related USING bt -- --- TOC entry 8531 (class 1259 OID 19120) +-- TOC entry 7995 (class 1259 OID 65124) -- Name: mdl_badgrela_rel_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49089,7 +49094,7 @@ CREATE INDEX mdl_badgrela_rel_ix ON public.mdl_badge_related USING btree (relate -- --- TOC entry 8391 (class 1259 OID 18615) +-- TOC entry 7998 (class 1259 OID 65125) -- Name: mdl_bloc_nam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49097,7 +49102,7 @@ CREATE UNIQUE INDEX mdl_bloc_nam_uix ON public.mdl_block USING btree (name); -- --- TOC entry 8394 (class 1259 OID 18633) +-- TOC entry 8001 (class 1259 OID 65126) -- Name: mdl_blocinst_par_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49105,7 +49110,7 @@ CREATE INDEX mdl_blocinst_par_ix ON public.mdl_block_instances USING btree (pare -- --- TOC entry 8395 (class 1259 OID 18631) +-- TOC entry 8002 (class 1259 OID 65127) -- Name: mdl_blocinst_parshopagsub_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49113,7 +49118,7 @@ CREATE INDEX mdl_blocinst_parshopagsub_ix ON public.mdl_block_instances USING bt -- --- TOC entry 8396 (class 1259 OID 18632) +-- TOC entry 8003 (class 1259 OID 65128) -- Name: mdl_blocinst_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49121,7 +49126,7 @@ CREATE INDEX mdl_blocinst_tim_ix ON public.mdl_block_instances USING btree (time -- --- TOC entry 8397 (class 1259 OID 18646) +-- TOC entry 8004 (class 1259 OID 65129) -- Name: mdl_blocposi_blo_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49129,7 +49134,7 @@ CREATE INDEX mdl_blocposi_blo_ix ON public.mdl_block_positions USING btree (bloc -- --- TOC entry 8398 (class 1259 OID 18645) +-- TOC entry 8005 (class 1259 OID 65130) -- Name: mdl_blocposi_bloconpagsub_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49137,7 +49142,7 @@ CREATE UNIQUE INDEX mdl_blocposi_bloconpagsub_uix ON public.mdl_block_positions -- --- TOC entry 8399 (class 1259 OID 18647) +-- TOC entry 8006 (class 1259 OID 65131) -- Name: mdl_blocposi_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49145,7 +49150,7 @@ CREATE INDEX mdl_blocposi_con_ix ON public.mdl_block_positions USING btree (cont -- --- TOC entry 9333 (class 1259 OID 22573) +-- TOC entry 8012 (class 1259 OID 65132) -- Name: mdl_blocrece_cmi_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49153,7 +49158,7 @@ CREATE INDEX mdl_blocrece_cmi_ix ON public.mdl_block_recentlyaccesseditems USING -- --- TOC entry 9334 (class 1259 OID 22572) +-- TOC entry 8013 (class 1259 OID 65133) -- Name: mdl_blocrece_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49161,7 +49166,7 @@ CREATE INDEX mdl_blocrece_cou_ix ON public.mdl_block_recentlyaccesseditems USING -- --- TOC entry 9337 (class 1259 OID 22571) +-- TOC entry 8016 (class 1259 OID 65134) -- Name: mdl_blocrece_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49169,7 +49174,7 @@ CREATE INDEX mdl_blocrece_use_ix ON public.mdl_block_recentlyaccesseditems USING -- --- TOC entry 9338 (class 1259 OID 22570) +-- TOC entry 8017 (class 1259 OID 65135) -- Name: mdl_blocrece_usecoucmi_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49177,7 +49182,7 @@ CREATE UNIQUE INDEX mdl_blocrece_usecoucmi_uix ON public.mdl_block_recentlyacces -- --- TOC entry 9330 (class 1259 OID 22561) +-- TOC entry 8009 (class 1259 OID 65136) -- Name: mdl_blocreceacti_coutim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49185,7 +49190,7 @@ CREATE INDEX mdl_blocreceacti_coutim_ix ON public.mdl_block_recent_activity USIN -- --- TOC entry 8425 (class 1259 OID 18740) +-- TOC entry 8020 (class 1259 OID 65137) -- Name: mdl_blogasso_blo_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49193,7 +49198,7 @@ CREATE INDEX mdl_blogasso_blo_ix ON public.mdl_blog_association USING btree (blo -- --- TOC entry 8426 (class 1259 OID 18739) +-- TOC entry 8021 (class 1259 OID 65138) -- Name: mdl_blogasso_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49201,7 +49206,7 @@ CREATE INDEX mdl_blogasso_con_ix ON public.mdl_blog_association USING btree (con -- --- TOC entry 8431 (class 1259 OID 18755) +-- TOC entry 8026 (class 1259 OID 65139) -- Name: mdl_blogexte_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49209,7 +49214,7 @@ CREATE INDEX mdl_blogexte_use_ix ON public.mdl_blog_external USING btree (userid -- --- TOC entry 7890 (class 1259 OID 16784) +-- TOC entry 8031 (class 1259 OID 65140) -- Name: mdl_cachfilt_filmd5_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49217,7 +49222,7 @@ CREATE INDEX mdl_cachfilt_filmd5_ix ON public.mdl_cache_filters USING btree (fil -- --- TOC entry 8332 (class 1259 OID 18384) +-- TOC entry 8034 (class 1259 OID 65141) -- Name: mdl_cachflag_fla_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49225,7 +49230,7 @@ CREATE INDEX mdl_cachflag_fla_ix ON public.mdl_cache_flags USING btree (flagtype -- --- TOC entry 8335 (class 1259 OID 18385) +-- TOC entry 8037 (class 1259 OID 65142) -- Name: mdl_cachflag_nam_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49233,7 +49238,7 @@ CREATE INDEX mdl_cachflag_nam_ix ON public.mdl_cache_flags USING btree (name); -- --- TOC entry 8064 (class 1259 OID 17372) +-- TOC entry 8040 (class 1259 OID 65143) -- Name: mdl_capa_nam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49241,7 +49246,7 @@ CREATE UNIQUE INDEX mdl_capa_nam_uix ON public.mdl_capabilities USING btree (nam -- --- TOC entry 8870 (class 1259 OID 20500) +-- TOC entry 8041 (class 1259 OID 65144) -- Name: mdl_chat_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49249,7 +49254,7 @@ CREATE INDEX mdl_chat_cou_ix ON public.mdl_chat USING btree (course); -- --- TOC entry 8873 (class 1259 OID 20520) +-- TOC entry 8044 (class 1259 OID 65145) -- Name: mdl_chatmess_cha_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49257,7 +49262,7 @@ CREATE INDEX mdl_chatmess_cha_ix ON public.mdl_chat_messages USING btree (chatid -- --- TOC entry 8874 (class 1259 OID 20518) +-- TOC entry 8045 (class 1259 OID 65146) -- Name: mdl_chatmess_gro_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49265,7 +49270,7 @@ CREATE INDEX mdl_chatmess_gro_ix ON public.mdl_chat_messages USING btree (groupi -- --- TOC entry 8877 (class 1259 OID 20519) +-- TOC entry 8048 (class 1259 OID 65147) -- Name: mdl_chatmess_timcha_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49273,7 +49278,7 @@ CREATE INDEX mdl_chatmess_timcha_ix ON public.mdl_chat_messages USING btree ("ti -- --- TOC entry 8878 (class 1259 OID 20517) +-- TOC entry 8049 (class 1259 OID 65148) -- Name: mdl_chatmess_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49281,7 +49286,7 @@ CREATE INDEX mdl_chatmess_use_ix ON public.mdl_chat_messages USING btree (userid -- --- TOC entry 8879 (class 1259 OID 20540) +-- TOC entry 8050 (class 1259 OID 65149) -- Name: mdl_chatmesscurr_cha_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49289,7 +49294,7 @@ CREATE INDEX mdl_chatmesscurr_cha_ix ON public.mdl_chat_messages_current USING b -- --- TOC entry 8880 (class 1259 OID 20538) +-- TOC entry 8051 (class 1259 OID 65150) -- Name: mdl_chatmesscurr_gro_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49297,7 +49302,7 @@ CREATE INDEX mdl_chatmesscurr_gro_ix ON public.mdl_chat_messages_current USING b -- --- TOC entry 8883 (class 1259 OID 20539) +-- TOC entry 8054 (class 1259 OID 65151) -- Name: mdl_chatmesscurr_timcha_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49305,7 +49310,7 @@ CREATE INDEX mdl_chatmesscurr_timcha_ix ON public.mdl_chat_messages_current USIN -- --- TOC entry 8884 (class 1259 OID 20537) +-- TOC entry 8055 (class 1259 OID 65152) -- Name: mdl_chatmesscurr_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49313,7 +49318,7 @@ CREATE INDEX mdl_chatmesscurr_use_ix ON public.mdl_chat_messages_current USING b -- --- TOC entry 8885 (class 1259 OID 20563) +-- TOC entry 8056 (class 1259 OID 65153) -- Name: mdl_chatuser_cha_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49321,7 +49326,7 @@ CREATE INDEX mdl_chatuser_cha_ix ON public.mdl_chat_users USING btree (chatid); -- --- TOC entry 8886 (class 1259 OID 20562) +-- TOC entry 8057 (class 1259 OID 65154) -- Name: mdl_chatuser_gro_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49329,7 +49334,7 @@ CREATE INDEX mdl_chatuser_gro_ix ON public.mdl_chat_users USING btree (groupid); -- --- TOC entry 8889 (class 1259 OID 20561) +-- TOC entry 8060 (class 1259 OID 65155) -- Name: mdl_chatuser_las_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49337,7 +49342,7 @@ CREATE INDEX mdl_chatuser_las_ix ON public.mdl_chat_users USING btree (lastping) -- --- TOC entry 8890 (class 1259 OID 20560) +-- TOC entry 8061 (class 1259 OID 65156) -- Name: mdl_chatuser_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49345,7 +49350,7 @@ CREATE INDEX mdl_chatuser_use_ix ON public.mdl_chat_users USING btree (userid); -- --- TOC entry 8891 (class 1259 OID 20591) +-- TOC entry 8062 (class 1259 OID 65157) -- Name: mdl_choi_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49353,7 +49358,7 @@ CREATE INDEX mdl_choi_cou_ix ON public.mdl_choice USING btree (course); -- --- TOC entry 8897 (class 1259 OID 20620) +-- TOC entry 8065 (class 1259 OID 65158) -- Name: mdl_choiansw_cho_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49361,7 +49366,7 @@ CREATE INDEX mdl_choiansw_cho_ix ON public.mdl_choice_answers USING btree (choic -- --- TOC entry 8900 (class 1259 OID 20621) +-- TOC entry 8068 (class 1259 OID 65159) -- Name: mdl_choiansw_opt_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49369,7 +49374,7 @@ CREATE INDEX mdl_choiansw_opt_ix ON public.mdl_choice_answers USING btree (optio -- --- TOC entry 8901 (class 1259 OID 20619) +-- TOC entry 8069 (class 1259 OID 65160) -- Name: mdl_choiansw_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49377,7 +49382,7 @@ CREATE INDEX mdl_choiansw_use_ix ON public.mdl_choice_answers USING btree (useri -- --- TOC entry 8894 (class 1259 OID 20606) +-- TOC entry 8070 (class 1259 OID 65161) -- Name: mdl_choiopti_cho_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49385,7 +49390,7 @@ CREATE INDEX mdl_choiopti_cho_ix ON public.mdl_choice_options USING btree (choic -- --- TOC entry 8317 (class 1259 OID 18330) +-- TOC entry 8073 (class 1259 OID 65162) -- Name: mdl_coho_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49393,7 +49398,7 @@ CREATE INDEX mdl_coho_con_ix ON public.mdl_cohort USING btree (contextid); -- --- TOC entry 8320 (class 1259 OID 18343) +-- TOC entry 8076 (class 1259 OID 65163) -- Name: mdl_cohomemb_coh_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49401,7 +49406,7 @@ CREATE INDEX mdl_cohomemb_coh_ix ON public.mdl_cohort_members USING btree (cohor -- --- TOC entry 8321 (class 1259 OID 18342) +-- TOC entry 8077 (class 1259 OID 65164) -- Name: mdl_cohomemb_cohuse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49409,7 +49414,7 @@ CREATE UNIQUE INDEX mdl_cohomemb_cohuse_uix ON public.mdl_cohort_members USING b -- --- TOC entry 8324 (class 1259 OID 18344) +-- TOC entry 8080 (class 1259 OID 65165) -- Name: mdl_cohomemb_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49417,7 +49422,7 @@ CREATE INDEX mdl_cohomemb_use_ix ON public.mdl_cohort_members USING btree (useri -- --- TOC entry 8402 (class 1259 OID 18661) +-- TOC entry 8081 (class 1259 OID 65166) -- Name: mdl_comm_concomite_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49425,7 +49430,7 @@ CREATE INDEX mdl_comm_concomite_ix ON public.mdl_comments USING btree (contextid -- --- TOC entry 8405 (class 1259 OID 18662) +-- TOC entry 8084 (class 1259 OID 65167) -- Name: mdl_comm_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49433,7 +49438,7 @@ CREATE INDEX mdl_comm_use_ix ON public.mdl_comments USING btree (userid); -- --- TOC entry 8571 (class 1259 OID 19289) +-- TOC entry 8085 (class 1259 OID 65168) -- Name: mdl_comp_comidn_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49441,7 +49446,7 @@ CREATE UNIQUE INDEX mdl_comp_comidn_uix ON public.mdl_competency USING btree (co -- --- TOC entry 8574 (class 1259 OID 19290) +-- TOC entry 8088 (class 1259 OID 65169) -- Name: mdl_comp_rul_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49449,7 +49454,7 @@ CREATE INDEX mdl_comp_rul_ix ON public.mdl_competency USING btree (ruleoutcome); -- --- TOC entry 8581 (class 1259 OID 19326) +-- TOC entry 8089 (class 1259 OID 65170) -- Name: mdl_compcour_com_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49457,7 +49462,7 @@ CREATE INDEX mdl_compcour_com_ix ON public.mdl_competency_coursecomp USING btree -- --- TOC entry 8582 (class 1259 OID 19325) +-- TOC entry 8090 (class 1259 OID 65171) -- Name: mdl_compcour_cou2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49465,7 +49470,7 @@ CREATE INDEX mdl_compcour_cou2_ix ON public.mdl_competency_coursecomp USING btre -- --- TOC entry 8575 (class 1259 OID 19299) +-- TOC entry 8095 (class 1259 OID 65172) -- Name: mdl_compcour_cou_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49473,7 +49478,7 @@ CREATE UNIQUE INDEX mdl_compcour_cou_uix ON public.mdl_competency_coursecompsett -- --- TOC entry 8583 (class 1259 OID 19324) +-- TOC entry 8091 (class 1259 OID 65173) -- Name: mdl_compcour_coucom_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49481,7 +49486,7 @@ CREATE UNIQUE INDEX mdl_compcour_coucom_uix ON public.mdl_competency_coursecomp -- --- TOC entry 8584 (class 1259 OID 19323) +-- TOC entry 8092 (class 1259 OID 65174) -- Name: mdl_compcour_courul_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49489,7 +49494,7 @@ CREATE INDEX mdl_compcour_courul_ix ON public.mdl_competency_coursecomp USING bt -- --- TOC entry 8618 (class 1259 OID 19436) +-- TOC entry 8100 (class 1259 OID 65175) -- Name: mdl_compevid_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49497,7 +49502,7 @@ CREATE INDEX mdl_compevid_use_ix ON public.mdl_competency_evidence USING btree ( -- --- TOC entry 8580 (class 1259 OID 19314) +-- TOC entry 8103 (class 1259 OID 65176) -- Name: mdl_compfram_idn_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49505,7 +49510,7 @@ CREATE UNIQUE INDEX mdl_compfram_idn_uix ON public.mdl_competency_framework USIN -- --- TOC entry 8626 (class 1259 OID 19470) +-- TOC entry 8104 (class 1259 OID 65177) -- Name: mdl_compmodu_cmi_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49513,7 +49518,7 @@ CREATE INDEX mdl_compmodu_cmi_ix ON public.mdl_competency_modulecomp USING btree -- --- TOC entry 8627 (class 1259 OID 19469) +-- TOC entry 8105 (class 1259 OID 65178) -- Name: mdl_compmodu_cmicom_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49521,7 +49526,7 @@ CREATE UNIQUE INDEX mdl_compmodu_cmicom_uix ON public.mdl_competency_modulecomp -- --- TOC entry 8628 (class 1259 OID 19468) +-- TOC entry 8106 (class 1259 OID 65179) -- Name: mdl_compmodu_cmirul_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49529,7 +49534,7 @@ CREATE INDEX mdl_compmodu_cmirul_ix ON public.mdl_competency_modulecomp USING bt -- --- TOC entry 8629 (class 1259 OID 19471) +-- TOC entry 8107 (class 1259 OID 65180) -- Name: mdl_compmodu_com_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49537,7 +49542,7 @@ CREATE INDEX mdl_compmodu_com_ix ON public.mdl_competency_modulecomp USING btree -- --- TOC entry 8615 (class 1259 OID 19422) +-- TOC entry 8117 (class 1259 OID 65181) -- Name: mdl_compplan_placom_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49545,7 +49550,7 @@ CREATE UNIQUE INDEX mdl_compplan_placom_uix ON public.mdl_competency_plancomp US -- --- TOC entry 8589 (class 1259 OID 19344) +-- TOC entry 8112 (class 1259 OID 65182) -- Name: mdl_compplan_stadue_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49553,7 +49558,7 @@ CREATE INDEX mdl_compplan_stadue_ix ON public.mdl_competency_plan USING btree (s -- --- TOC entry 8590 (class 1259 OID 19343) +-- TOC entry 8113 (class 1259 OID 65183) -- Name: mdl_compplan_tem_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49561,7 +49566,7 @@ CREATE INDEX mdl_compplan_tem_ix ON public.mdl_competency_plan USING btree (temp -- --- TOC entry 8591 (class 1259 OID 19342) +-- TOC entry 8114 (class 1259 OID 65184) -- Name: mdl_compplan_usesta_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49569,7 +49574,7 @@ CREATE INDEX mdl_compplan_usesta_ix ON public.mdl_competency_plan USING btree (u -- --- TOC entry 8594 (class 1259 OID 19367) +-- TOC entry 8126 (class 1259 OID 65185) -- Name: mdl_comptemp_com_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49577,7 +49582,7 @@ CREATE INDEX mdl_comptemp_com_ix ON public.mdl_competency_templatecomp USING btr -- --- TOC entry 8600 (class 1259 OID 19376) +-- TOC entry 8124 (class 1259 OID 65186) -- Name: mdl_comptemp_tem2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49585,7 +49590,7 @@ CREATE INDEX mdl_comptemp_tem2_ix ON public.mdl_competency_templatecohort USING -- --- TOC entry 8597 (class 1259 OID 19366) +-- TOC entry 8129 (class 1259 OID 65187) -- Name: mdl_comptemp_tem_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49593,7 +49598,7 @@ CREATE INDEX mdl_comptemp_tem_ix ON public.mdl_competency_templatecomp USING btr -- --- TOC entry 8601 (class 1259 OID 19377) +-- TOC entry 8125 (class 1259 OID 65188) -- Name: mdl_comptemp_temcoh_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49601,7 +49606,7 @@ CREATE UNIQUE INDEX mdl_comptemp_temcoh_uix ON public.mdl_competency_templatecoh -- --- TOC entry 8624 (class 1259 OID 19458) +-- TOC entry 8144 (class 1259 OID 65189) -- Name: mdl_compuser_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49609,7 +49614,7 @@ CREATE INDEX mdl_compuser_use2_ix ON public.mdl_competency_userevidencecomp USIN -- --- TOC entry 8621 (class 1259 OID 19449) +-- TOC entry 8141 (class 1259 OID 65190) -- Name: mdl_compuser_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49617,7 +49622,7 @@ CREATE INDEX mdl_compuser_use_ix ON public.mdl_competency_userevidence USING btr -- --- TOC entry 8625 (class 1259 OID 19459) +-- TOC entry 8145 (class 1259 OID 65191) -- Name: mdl_compuser_usecom2_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49625,7 +49630,7 @@ CREATE UNIQUE INDEX mdl_compuser_usecom2_uix ON public.mdl_competency_usereviden -- --- TOC entry 8606 (class 1259 OID 19395) +-- TOC entry 8132 (class 1259 OID 65192) -- Name: mdl_compuser_usecom_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49633,7 +49638,7 @@ CREATE UNIQUE INDEX mdl_compuser_usecom_uix ON public.mdl_competency_usercomp US -- --- TOC entry 8612 (class 1259 OID 19413) +-- TOC entry 8138 (class 1259 OID 65193) -- Name: mdl_compuser_usecompla_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49641,7 +49646,7 @@ CREATE UNIQUE INDEX mdl_compuser_usecompla_uix ON public.mdl_competency_usercomp -- --- TOC entry 8609 (class 1259 OID 19404) +-- TOC entry 8135 (class 1259 OID 65194) -- Name: mdl_compuser_usecoucom_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49649,7 +49654,7 @@ CREATE UNIQUE INDEX mdl_compuser_usecoucom_uix ON public.mdl_competency_usercomp -- --- TOC entry 7793 (class 1259 OID 16397) +-- TOC entry 8148 (class 1259 OID 65195) -- Name: mdl_conf_nam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49657,7 +49662,7 @@ CREATE UNIQUE INDEX mdl_conf_nam_uix ON public.mdl_config USING btree (name); -- --- TOC entry 7799 (class 1259 OID 16424) +-- TOC entry 8151 (class 1259 OID 65196) -- Name: mdl_conflog_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49665,7 +49670,7 @@ CREATE INDEX mdl_conflog_tim_ix ON public.mdl_config_log USING btree (timemodifi -- --- TOC entry 7800 (class 1259 OID 16425) +-- TOC entry 8152 (class 1259 OID 65197) -- Name: mdl_conflog_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49673,7 +49678,7 @@ CREATE INDEX mdl_conflog_use_ix ON public.mdl_config_log USING btree (userid); -- --- TOC entry 7796 (class 1259 OID 16411) +-- TOC entry 8155 (class 1259 OID 65198) -- Name: mdl_confplug_plunam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49681,7 +49686,7 @@ CREATE UNIQUE INDEX mdl_confplug_plunam_uix ON public.mdl_config_plugins USING b -- --- TOC entry 8054 (class 1259 OID 17348) +-- TOC entry 8163 (class 1259 OID 65199) -- Name: mdl_cont_conins_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49689,7 +49694,7 @@ CREATE UNIQUE INDEX mdl_cont_conins_uix ON public.mdl_context USING btree (conte -- --- TOC entry 8057 (class 1259 OID 17349) +-- TOC entry 8166 (class 1259 OID 65200) -- Name: mdl_cont_ins_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49697,7 +49702,7 @@ CREATE INDEX mdl_cont_ins_ix ON public.mdl_context USING btree (instanceid); -- --- TOC entry 8058 (class 1259 OID 17350) +-- TOC entry 8167 (class 1259 OID 65201) -- Name: mdl_cont_pat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49705,7 +49710,7 @@ CREATE INDEX mdl_cont_pat_ix ON public.mdl_context USING btree (path); -- --- TOC entry 8059 (class 1259 OID 17351) +-- TOC entry 8168 (class 1259 OID 65202) -- Name: mdl_cont_pat_ix_pattern; Type: INDEX; Schema: public; Owner: postgres -- @@ -49713,7 +49718,7 @@ CREATE INDEX mdl_cont_pat_ix_pattern ON public.mdl_context USING btree (path var -- --- TOC entry 8732 (class 1259 OID 19844) +-- TOC entry 8156 (class 1259 OID 65203) -- Name: mdl_contcont_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49721,7 +49726,7 @@ CREATE INDEX mdl_contcont_con_ix ON public.mdl_contentbank_content USING btree ( -- --- TOC entry 8733 (class 1259 OID 19843) +-- TOC entry 8157 (class 1259 OID 65204) -- Name: mdl_contcont_conconins_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49729,7 +49734,7 @@ CREATE INDEX mdl_contcont_conconins_ix ON public.mdl_contentbank_content USING b -- --- TOC entry 8736 (class 1259 OID 19842) +-- TOC entry 8160 (class 1259 OID 65205) -- Name: mdl_contcont_nam_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49737,7 +49742,7 @@ CREATE INDEX mdl_contcont_nam_ix ON public.mdl_contentbank_content USING btree ( -- --- TOC entry 8737 (class 1259 OID 19846) +-- TOC entry 8161 (class 1259 OID 65206) -- Name: mdl_contcont_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49745,7 +49750,7 @@ CREATE INDEX mdl_contcont_use2_ix ON public.mdl_contentbank_content USING btree -- --- TOC entry 8738 (class 1259 OID 19845) +-- TOC entry 8162 (class 1259 OID 65207) -- Name: mdl_contcont_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49753,7 +49758,7 @@ CREATE INDEX mdl_contcont_use_ix ON public.mdl_contentbank_content USING btree ( -- --- TOC entry 7806 (class 1259 OID 16482) +-- TOC entry 8171 (class 1259 OID 65208) -- Name: mdl_cour_cat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49761,7 +49766,7 @@ CREATE INDEX mdl_cour_cat_ix ON public.mdl_course USING btree (category); -- --- TOC entry 7809 (class 1259 OID 16483) +-- TOC entry 8174 (class 1259 OID 65209) -- Name: mdl_cour_idn_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49769,7 +49774,7 @@ CREATE INDEX mdl_cour_idn_ix ON public.mdl_course USING btree (idnumber); -- --- TOC entry 7810 (class 1259 OID 16484) +-- TOC entry 8175 (class 1259 OID 65210) -- Name: mdl_cour_sho_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49777,7 +49782,7 @@ CREATE INDEX mdl_cour_sho_ix ON public.mdl_course USING btree (shortname); -- --- TOC entry 7811 (class 1259 OID 16485) +-- TOC entry 8176 (class 1259 OID 65211) -- Name: mdl_cour_sor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49785,7 +49790,7 @@ CREATE INDEX mdl_cour_sor_ix ON public.mdl_course USING btree (sortorder); -- --- TOC entry 7814 (class 1259 OID 16507) +-- TOC entry 8179 (class 1259 OID 65212) -- Name: mdl_courcate_par_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49793,7 +49798,7 @@ CREATE INDEX mdl_courcate_par_ix ON public.mdl_course_categories USING btree (pa -- --- TOC entry 7830 (class 1259 OID 16562) +-- TOC entry 8200 (class 1259 OID 65213) -- Name: mdl_courcomp_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49801,7 +49806,7 @@ CREATE INDEX mdl_courcomp_cou_ix ON public.mdl_course_completions USING btree (c -- --- TOC entry 7833 (class 1259 OID 16563) +-- TOC entry 8203 (class 1259 OID 65214) -- Name: mdl_courcomp_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49809,7 +49814,7 @@ CREATE INDEX mdl_courcomp_tim_ix ON public.mdl_course_completions USING btree (t -- --- TOC entry 7834 (class 1259 OID 16561) +-- TOC entry 8204 (class 1259 OID 65215) -- Name: mdl_courcomp_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49817,7 +49822,7 @@ CREATE INDEX mdl_courcomp_use_ix ON public.mdl_course_completions USING btree (u -- --- TOC entry 7835 (class 1259 OID 16564) +-- TOC entry 8205 (class 1259 OID 65216) -- Name: mdl_courcomp_usecou_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49825,7 +49830,7 @@ CREATE UNIQUE INDEX mdl_courcomp_usecou_uix ON public.mdl_course_completions USI -- --- TOC entry 7815 (class 1259 OID 16518) +-- TOC entry 8180 (class 1259 OID 65217) -- Name: mdl_courcompaggrmeth_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49833,7 +49838,7 @@ CREATE INDEX mdl_courcompaggrmeth_cou_ix ON public.mdl_course_completion_aggr_me -- --- TOC entry 7816 (class 1259 OID 16520) +-- TOC entry 8181 (class 1259 OID 65218) -- Name: mdl_courcompaggrmeth_coucr_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49841,7 +49846,7 @@ CREATE UNIQUE INDEX mdl_courcompaggrmeth_coucr_uix ON public.mdl_course_completi -- --- TOC entry 7817 (class 1259 OID 16519) +-- TOC entry 8182 (class 1259 OID 65219) -- Name: mdl_courcompaggrmeth_cri_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49849,7 +49854,7 @@ CREATE INDEX mdl_courcompaggrmeth_cri_ix ON public.mdl_course_completion_aggr_me -- --- TOC entry 7820 (class 1259 OID 16531) +-- TOC entry 8192 (class 1259 OID 65220) -- Name: mdl_courcompcrit_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49857,7 +49862,7 @@ CREATE INDEX mdl_courcompcrit_cou_ix ON public.mdl_course_completion_criteria US -- --- TOC entry 7823 (class 1259 OID 16544) +-- TOC entry 8185 (class 1259 OID 65221) -- Name: mdl_courcompcritcomp_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49865,7 +49870,7 @@ CREATE INDEX mdl_courcompcritcomp_cou_ix ON public.mdl_course_completion_crit_co -- --- TOC entry 7824 (class 1259 OID 16545) +-- TOC entry 8186 (class 1259 OID 65222) -- Name: mdl_courcompcritcomp_cri_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49873,7 +49878,7 @@ CREATE INDEX mdl_courcompcritcomp_cri_ix ON public.mdl_course_completion_crit_co -- --- TOC entry 7827 (class 1259 OID 16546) +-- TOC entry 8189 (class 1259 OID 65223) -- Name: mdl_courcompcritcomp_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49881,7 +49886,7 @@ CREATE INDEX mdl_courcompcritcomp_tim_ix ON public.mdl_course_completion_crit_co -- --- TOC entry 7828 (class 1259 OID 16543) +-- TOC entry 8190 (class 1259 OID 65224) -- Name: mdl_courcompcritcomp_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49889,7 +49894,7 @@ CREATE INDEX mdl_courcompcritcomp_use_ix ON public.mdl_course_completion_crit_co -- --- TOC entry 7829 (class 1259 OID 16547) +-- TOC entry 8191 (class 1259 OID 65225) -- Name: mdl_courcompcritcomp_useco_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49897,7 +49902,7 @@ CREATE UNIQUE INDEX mdl_courcompcritcomp_useco_uix ON public.mdl_course_completi -- --- TOC entry 8644 (class 1259 OID 19542) +-- TOC entry 8195 (class 1259 OID 65226) -- Name: mdl_courcompdefa_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49905,7 +49910,7 @@ CREATE INDEX mdl_courcompdefa_cou_ix ON public.mdl_course_completion_defaults US -- --- TOC entry 8645 (class 1259 OID 19540) +-- TOC entry 8196 (class 1259 OID 65227) -- Name: mdl_courcompdefa_coumod_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49913,7 +49918,7 @@ CREATE UNIQUE INDEX mdl_courcompdefa_coumod_uix ON public.mdl_course_completion_ -- --- TOC entry 8648 (class 1259 OID 19541) +-- TOC entry 8199 (class 1259 OID 65228) -- Name: mdl_courcompdefa_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49921,7 +49926,7 @@ CREATE INDEX mdl_courcompdefa_mod_ix ON public.mdl_course_completion_defaults US -- --- TOC entry 7864 (class 1259 OID 16702) +-- TOC entry 8206 (class 1259 OID 65229) -- Name: mdl_courformopti_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49929,7 +49934,7 @@ CREATE INDEX mdl_courformopti_cou_ix ON public.mdl_course_format_options USING b -- --- TOC entry 7865 (class 1259 OID 16701) +-- TOC entry 8207 (class 1259 OID 65230) -- Name: mdl_courformopti_couforsec_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49937,7 +49942,7 @@ CREATE UNIQUE INDEX mdl_courformopti_couforsec_uix ON public.mdl_course_format_o -- --- TOC entry 7846 (class 1259 OID 16637) +-- TOC entry 8210 (class 1259 OID 65231) -- Name: mdl_courmodu_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49945,7 +49950,7 @@ CREATE INDEX mdl_courmodu_cou_ix ON public.mdl_course_modules USING btree (cours -- --- TOC entry 7847 (class 1259 OID 16641) +-- TOC entry 8211 (class 1259 OID 65232) -- Name: mdl_courmodu_gro_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49953,7 +49958,7 @@ CREATE INDEX mdl_courmodu_gro_ix ON public.mdl_course_modules USING btree (group -- --- TOC entry 7850 (class 1259 OID 16640) +-- TOC entry 8214 (class 1259 OID 65233) -- Name: mdl_courmodu_idncou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49961,7 +49966,7 @@ CREATE INDEX mdl_courmodu_idncou_ix ON public.mdl_course_modules USING btree (id -- --- TOC entry 7851 (class 1259 OID 16639) +-- TOC entry 8215 (class 1259 OID 65234) -- Name: mdl_courmodu_ins_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49969,7 +49974,7 @@ CREATE INDEX mdl_courmodu_ins_ix ON public.mdl_course_modules USING btree (insta -- --- TOC entry 7852 (class 1259 OID 16638) +-- TOC entry 8216 (class 1259 OID 65235) -- Name: mdl_courmodu_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49977,7 +49982,7 @@ CREATE INDEX mdl_courmodu_mod_ix ON public.mdl_course_modules USING btree (modul -- --- TOC entry 7853 (class 1259 OID 16636) +-- TOC entry 8217 (class 1259 OID 65236) -- Name: mdl_courmodu_vis_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49985,7 +49990,7 @@ CREATE INDEX mdl_courmodu_vis_ix ON public.mdl_course_modules USING btree (visib -- --- TOC entry 7854 (class 1259 OID 16650) +-- TOC entry 8218 (class 1259 OID 65237) -- Name: mdl_courmoducomp_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49993,7 +49998,7 @@ CREATE INDEX mdl_courmoducomp_cou_ix ON public.mdl_course_modules_completion USI -- --- TOC entry 7857 (class 1259 OID 16651) +-- TOC entry 8221 (class 1259 OID 65238) -- Name: mdl_courmoducomp_usecou_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50001,7 +50006,7 @@ CREATE UNIQUE INDEX mdl_courmoducomp_usecou_uix ON public.mdl_course_modules_com -- --- TOC entry 7863 (class 1259 OID 16686) +-- TOC entry 8226 (class 1259 OID 65239) -- Name: mdl_courrequ_sho_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50009,7 +50014,7 @@ CREATE INDEX mdl_courrequ_sho_ix ON public.mdl_course_request USING btree (short -- --- TOC entry 7858 (class 1259 OID 16668) +-- TOC entry 8227 (class 1259 OID 65240) -- Name: mdl_coursect_cousec_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50017,7 +50022,7 @@ CREATE UNIQUE INDEX mdl_coursect_cousec_uix ON public.mdl_course_sections USING -- --- TOC entry 8699 (class 1259 OID 19728) +-- TOC entry 8230 (class 1259 OID 65241) -- Name: mdl_custcate_comareitesor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50025,7 +50030,7 @@ CREATE INDEX mdl_custcate_comareitesor_ix ON public.mdl_customfield_category USI -- --- TOC entry 8700 (class 1259 OID 19729) +-- TOC entry 8231 (class 1259 OID 65242) -- Name: mdl_custcate_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50033,7 +50038,7 @@ CREATE INDEX mdl_custcate_con_ix ON public.mdl_customfield_category USING btree -- --- TOC entry 8707 (class 1259 OID 19762) +-- TOC entry 8234 (class 1259 OID 65243) -- Name: mdl_custdata_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50041,7 +50046,7 @@ CREATE INDEX mdl_custdata_con_ix ON public.mdl_customfield_data USING btree (con -- --- TOC entry 8708 (class 1259 OID 19761) +-- TOC entry 8235 (class 1259 OID 65244) -- Name: mdl_custdata_fie_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50049,7 +50054,7 @@ CREATE INDEX mdl_custdata_fie_ix ON public.mdl_customfield_data USING btree (fie -- --- TOC entry 8709 (class 1259 OID 19760) +-- TOC entry 8236 (class 1259 OID 65245) -- Name: mdl_custdata_fiedec_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50057,7 +50062,7 @@ CREATE INDEX mdl_custdata_fiedec_ix ON public.mdl_customfield_data USING btree ( -- --- TOC entry 8710 (class 1259 OID 19758) +-- TOC entry 8237 (class 1259 OID 65246) -- Name: mdl_custdata_fieint_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50065,7 +50070,7 @@ CREATE INDEX mdl_custdata_fieint_ix ON public.mdl_customfield_data USING btree ( -- --- TOC entry 8711 (class 1259 OID 19759) +-- TOC entry 8238 (class 1259 OID 65247) -- Name: mdl_custdata_fiesho_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50073,7 +50078,7 @@ CREATE INDEX mdl_custdata_fiesho_ix ON public.mdl_customfield_data USING btree ( -- --- TOC entry 8714 (class 1259 OID 19757) +-- TOC entry 8241 (class 1259 OID 65248) -- Name: mdl_custdata_insfie_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50081,7 +50086,7 @@ CREATE UNIQUE INDEX mdl_custdata_insfie_uix ON public.mdl_customfield_data USING -- --- TOC entry 8703 (class 1259 OID 19745) +-- TOC entry 8242 (class 1259 OID 65249) -- Name: mdl_custfiel_cat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50089,7 +50094,7 @@ CREATE INDEX mdl_custfiel_cat_ix ON public.mdl_customfield_field USING btree (ca -- --- TOC entry 8704 (class 1259 OID 19744) +-- TOC entry 8243 (class 1259 OID 65250) -- Name: mdl_custfiel_catsor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50097,7 +50102,7 @@ CREATE INDEX mdl_custfiel_catsor_ix ON public.mdl_customfield_field USING btree -- --- TOC entry 8902 (class 1259 OID 20657) +-- TOC entry 8246 (class 1259 OID 65251) -- Name: mdl_data_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50105,7 +50110,7 @@ CREATE INDEX mdl_data_cou_ix ON public.mdl_data USING btree (course); -- --- TOC entry 8912 (class 1259 OID 20704) +-- TOC entry 8249 (class 1259 OID 65252) -- Name: mdl_datacont_fie_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50113,7 +50118,7 @@ CREATE INDEX mdl_datacont_fie_ix ON public.mdl_data_content USING btree (fieldid -- --- TOC entry 8915 (class 1259 OID 20703) +-- TOC entry 8252 (class 1259 OID 65253) -- Name: mdl_datacont_rec_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50121,7 +50126,7 @@ CREATE INDEX mdl_datacont_rec_ix ON public.mdl_data_content USING btree (recordi -- --- TOC entry 8905 (class 1259 OID 20674) +-- TOC entry 8253 (class 1259 OID 65254) -- Name: mdl_datafiel_dat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50129,7 +50134,7 @@ CREATE INDEX mdl_datafiel_dat_ix ON public.mdl_data_fields USING btree (dataid); -- --- TOC entry 8908 (class 1259 OID 20673) +-- TOC entry 8256 (class 1259 OID 65255) -- Name: mdl_datafiel_typdat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50137,7 +50142,7 @@ CREATE INDEX mdl_datafiel_typdat_ix ON public.mdl_data_fields USING btree (type, -- --- TOC entry 8909 (class 1259 OID 20689) +-- TOC entry 8257 (class 1259 OID 65256) -- Name: mdl_datareco_dat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50145,7 +50150,7 @@ CREATE INDEX mdl_datareco_dat_ix ON public.mdl_data_records USING btree (dataid) -- --- TOC entry 9341 (class 1259 OID 22606) +-- TOC entry 8260 (class 1259 OID 65257) -- Name: mdl_editattoauto_eleconuse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50153,7 +50158,7 @@ CREATE UNIQUE INDEX mdl_editattoauto_eleconuse_uix ON public.mdl_editor_atto_aut -- --- TOC entry 7836 (class 1259 OID 16589) +-- TOC entry 8263 (class 1259 OID 65258) -- Name: mdl_enro_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50161,7 +50166,7 @@ CREATE INDEX mdl_enro_cou_ix ON public.mdl_enrol USING btree (courseid); -- --- TOC entry 7837 (class 1259 OID 16588) +-- TOC entry 8264 (class 1259 OID 65259) -- Name: mdl_enro_enr_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50169,7 +50174,7 @@ CREATE INDEX mdl_enro_enr_ix ON public.mdl_enrol USING btree (enrol); -- --- TOC entry 9266 (class 1259 OID 22334) +-- TOC entry 8267 (class 1259 OID 65260) -- Name: mdl_enroflat_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50177,7 +50182,7 @@ CREATE INDEX mdl_enroflat_cou_ix ON public.mdl_enrol_flatfile USING btree (cours -- --- TOC entry 9269 (class 1259 OID 22336) +-- TOC entry 8270 (class 1259 OID 65261) -- Name: mdl_enroflat_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50185,7 +50190,7 @@ CREATE INDEX mdl_enroflat_rol_ix ON public.mdl_enrol_flatfile USING btree (rolei -- --- TOC entry 9270 (class 1259 OID 22335) +-- TOC entry 8271 (class 1259 OID 65262) -- Name: mdl_enroflat_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50193,7 +50198,7 @@ CREATE INDEX mdl_enroflat_use_ix ON public.mdl_enrol_flatfile USING btree (useri -- --- TOC entry 9279 (class 1259 OID 22388) +-- TOC entry 8272 (class 1259 OID 65263) -- Name: mdl_enroltilti2cons_con_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50201,7 +50206,7 @@ CREATE UNIQUE INDEX mdl_enroltilti2cons_con_uix ON public.mdl_enrol_lti_lti2_con -- --- TOC entry 9286 (class 1259 OID 22415) +-- TOC entry 8275 (class 1259 OID 65264) -- Name: mdl_enroltilti2cont_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50209,7 +50214,7 @@ CREATE INDEX mdl_enroltilti2cont_con_ix ON public.mdl_enrol_lti_lti2_context USI -- --- TOC entry 9289 (class 1259 OID 22425) +-- TOC entry 8278 (class 1259 OID 65265) -- Name: mdl_enroltilti2nonc_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50217,7 +50222,7 @@ CREATE INDEX mdl_enroltilti2nonc_con_ix ON public.mdl_enrol_lti_lti2_nonce USING -- --- TOC entry 9292 (class 1259 OID 22440) +-- TOC entry 8281 (class 1259 OID 65266) -- Name: mdl_enroltilti2resolink_co2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50225,7 +50230,7 @@ CREATE INDEX mdl_enroltilti2resolink_co2_ix ON public.mdl_enrol_lti_lti2_resourc -- --- TOC entry 9293 (class 1259 OID 22438) +-- TOC entry 8282 (class 1259 OID 65267) -- Name: mdl_enroltilti2resolink_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50233,7 +50238,7 @@ CREATE INDEX mdl_enroltilti2resolink_con_ix ON public.mdl_enrol_lti_lti2_resourc -- --- TOC entry 9296 (class 1259 OID 22439) +-- TOC entry 8285 (class 1259 OID 65268) -- Name: mdl_enroltilti2resolink_pri_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50241,7 +50246,7 @@ CREATE INDEX mdl_enroltilti2resolink_pri_ix ON public.mdl_enrol_lti_lti2_resourc -- --- TOC entry 9299 (class 1259 OID 22451) +-- TOC entry 8288 (class 1259 OID 65269) -- Name: mdl_enroltilti2sharkey_res_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50249,7 +50254,7 @@ CREATE UNIQUE INDEX mdl_enroltilti2sharkey_res_uix ON public.mdl_enrol_lti_lti2_ -- --- TOC entry 9300 (class 1259 OID 22450) +-- TOC entry 8289 (class 1259 OID 65270) -- Name: mdl_enroltilti2sharkey_sha_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50257,7 +50262,7 @@ CREATE UNIQUE INDEX mdl_enroltilti2sharkey_sha_uix ON public.mdl_enrol_lti_lti2_ -- --- TOC entry 9282 (class 1259 OID 22402) +-- TOC entry 8290 (class 1259 OID 65271) -- Name: mdl_enroltilti2toolprox_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50265,7 +50270,7 @@ CREATE INDEX mdl_enroltilti2toolprox_con_ix ON public.mdl_enrol_lti_lti2_tool_pr -- --- TOC entry 9285 (class 1259 OID 22401) +-- TOC entry 8293 (class 1259 OID 65272) -- Name: mdl_enroltilti2toolprox_to_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50273,7 +50278,7 @@ CREATE UNIQUE INDEX mdl_enroltilti2toolprox_to_uix ON public.mdl_enrol_lti_lti2_ -- --- TOC entry 9303 (class 1259 OID 22465) +-- TOC entry 8296 (class 1259 OID 65273) -- Name: mdl_enroltilti2userresu_res_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50281,7 +50286,7 @@ CREATE INDEX mdl_enroltilti2userresu_res_ix ON public.mdl_enrol_lti_lti2_user_re -- --- TOC entry 9271 (class 1259 OID 22360) +-- TOC entry 8301 (class 1259 OID 65274) -- Name: mdl_enroltitool_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50289,7 +50294,7 @@ CREATE INDEX mdl_enroltitool_con_ix ON public.mdl_enrol_lti_tools USING btree (c -- --- TOC entry 9272 (class 1259 OID 22359) +-- TOC entry 8302 (class 1259 OID 65275) -- Name: mdl_enroltitool_enr_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50297,7 +50302,7 @@ CREATE INDEX mdl_enroltitool_enr_ix ON public.mdl_enrol_lti_tools USING btree (e -- --- TOC entry 9304 (class 1259 OID 22475) +-- TOC entry 8297 (class 1259 OID 65276) -- Name: mdl_enroltitoolconsmap_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50305,7 +50310,7 @@ CREATE INDEX mdl_enroltitoolconsmap_con_ix ON public.mdl_enrol_lti_tool_consumer -- --- TOC entry 9307 (class 1259 OID 22474) +-- TOC entry 8300 (class 1259 OID 65277) -- Name: mdl_enroltitoolconsmap_too_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50313,7 +50318,7 @@ CREATE INDEX mdl_enroltitoolconsmap_too_ix ON public.mdl_enrol_lti_tool_consumer -- --- TOC entry 9277 (class 1259 OID 22373) +-- TOC entry 8307 (class 1259 OID 65278) -- Name: mdl_enroltiuser_too_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50321,7 +50326,7 @@ CREATE INDEX mdl_enroltiuser_too_ix ON public.mdl_enrol_lti_users USING btree (t -- --- TOC entry 9278 (class 1259 OID 22372) +-- TOC entry 8308 (class 1259 OID 65279) -- Name: mdl_enroltiuser_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50329,7 +50334,7 @@ CREATE INDEX mdl_enroltiuser_use_ix ON public.mdl_enrol_lti_users USING btree (u -- --- TOC entry 9308 (class 1259 OID 22507) +-- TOC entry 8309 (class 1259 OID 65280) -- Name: mdl_enropayp_bus_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50337,7 +50342,7 @@ CREATE INDEX mdl_enropayp_bus_ix ON public.mdl_enrol_paypal USING btree (busines -- --- TOC entry 9309 (class 1259 OID 22509) +-- TOC entry 8310 (class 1259 OID 65281) -- Name: mdl_enropayp_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50345,7 +50350,7 @@ CREATE INDEX mdl_enropayp_cou_ix ON public.mdl_enrol_paypal USING btree (coursei -- --- TOC entry 9312 (class 1259 OID 22511) +-- TOC entry 8313 (class 1259 OID 65282) -- Name: mdl_enropayp_ins_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50353,7 +50358,7 @@ CREATE INDEX mdl_enropayp_ins_ix ON public.mdl_enrol_paypal USING btree (instanc -- --- TOC entry 9313 (class 1259 OID 22508) +-- TOC entry 8314 (class 1259 OID 65283) -- Name: mdl_enropayp_rec_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50361,7 +50366,7 @@ CREATE INDEX mdl_enropayp_rec_ix ON public.mdl_enrol_paypal USING btree (receive -- --- TOC entry 9314 (class 1259 OID 22510) +-- TOC entry 8315 (class 1259 OID 65284) -- Name: mdl_enropayp_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50369,7 +50374,7 @@ CREATE INDEX mdl_enropayp_use_ix ON public.mdl_enrol_paypal USING btree (userid) -- --- TOC entry 7876 (class 1259 OID 16767) +-- TOC entry 8316 (class 1259 OID 65285) -- Name: mdl_even_cat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50377,7 +50382,7 @@ CREATE INDEX mdl_even_cat_ix ON public.mdl_event USING btree (categoryid); -- --- TOC entry 7877 (class 1259 OID 16766) +-- TOC entry 8317 (class 1259 OID 65286) -- Name: mdl_even_comeveins_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50385,7 +50390,7 @@ CREATE INDEX mdl_even_comeveins_ix ON public.mdl_event USING btree (component, e -- --- TOC entry 7878 (class 1259 OID 16757) +-- TOC entry 8318 (class 1259 OID 65287) -- Name: mdl_even_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50393,7 +50398,7 @@ CREATE INDEX mdl_even_cou_ix ON public.mdl_event USING btree (courseid); -- --- TOC entry 7879 (class 1259 OID 16764) +-- TOC entry 8319 (class 1259 OID 65288) -- Name: mdl_even_eve_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50401,7 +50406,7 @@ CREATE INDEX mdl_even_eve_ix ON public.mdl_event USING btree (eventtype); -- --- TOC entry 7880 (class 1259 OID 16763) +-- TOC entry 8320 (class 1259 OID 65289) -- Name: mdl_even_grocoucatvisuse_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50409,7 +50414,7 @@ CREATE INDEX mdl_even_grocoucatvisuse_ix ON public.mdl_event USING btree (groupi -- --- TOC entry 7883 (class 1259 OID 16765) +-- TOC entry 8323 (class 1259 OID 65290) -- Name: mdl_even_modins_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50417,7 +50422,7 @@ CREATE INDEX mdl_even_modins_ix ON public.mdl_event USING btree (modulename, ins -- --- TOC entry 7884 (class 1259 OID 16768) +-- TOC entry 8324 (class 1259 OID 65291) -- Name: mdl_even_sub_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50425,7 +50430,7 @@ CREATE INDEX mdl_even_sub_ix ON public.mdl_event USING btree (subscriptionid); -- --- TOC entry 7885 (class 1259 OID 16760) +-- TOC entry 8325 (class 1259 OID 65292) -- Name: mdl_even_tim2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50433,7 +50438,7 @@ CREATE INDEX mdl_even_tim2_ix ON public.mdl_event USING btree (timeduration); -- --- TOC entry 7886 (class 1259 OID 16759) +-- TOC entry 8326 (class 1259 OID 65293) -- Name: mdl_even_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50441,7 +50446,7 @@ CREATE INDEX mdl_even_tim_ix ON public.mdl_event USING btree (timestart); -- --- TOC entry 7887 (class 1259 OID 16762) +-- TOC entry 8327 (class 1259 OID 65294) -- Name: mdl_even_typtim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50449,7 +50454,7 @@ CREATE INDEX mdl_even_typtim_ix ON public.mdl_event USING btree (type, timesort) -- --- TOC entry 7888 (class 1259 OID 16758) +-- TOC entry 8328 (class 1259 OID 65295) -- Name: mdl_even_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50457,7 +50462,7 @@ CREATE INDEX mdl_even_use_ix ON public.mdl_event USING btree (userid); -- --- TOC entry 7889 (class 1259 OID 16761) +-- TOC entry 8329 (class 1259 OID 65296) -- Name: mdl_even_uui_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50465,7 +50470,7 @@ CREATE INDEX mdl_even_uui_ix ON public.mdl_event USING btree (uuid); -- --- TOC entry 8194 (class 1259 OID 17905) +-- TOC entry 8332 (class 1259 OID 65297) -- Name: mdl_evenhand_evecom_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50473,7 +50478,7 @@ CREATE UNIQUE INDEX mdl_evenhand_evecom_uix ON public.mdl_events_handlers USING -- --- TOC entry 8193 (class 1259 OID 17888) +-- TOC entry 8337 (class 1259 OID 65298) -- Name: mdl_evenqueu_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50481,7 +50486,7 @@ CREATE INDEX mdl_evenqueu_use_ix ON public.mdl_events_queue USING btree (userid) -- --- TOC entry 8197 (class 1259 OID 17918) +-- TOC entry 8338 (class 1259 OID 65299) -- Name: mdl_evenqueuhand_han_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50489,7 +50494,7 @@ CREATE INDEX mdl_evenqueuhand_han_ix ON public.mdl_events_queue_handlers USING b -- --- TOC entry 8200 (class 1259 OID 17917) +-- TOC entry 8341 (class 1259 OID 65300) -- Name: mdl_evenqueuhand_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50497,7 +50502,7 @@ CREATE INDEX mdl_evenqueuhand_que_ix ON public.mdl_events_queue_handlers USING b -- --- TOC entry 8411 (class 1259 OID 18693) +-- TOC entry 8344 (class 1259 OID 65301) -- Name: mdl_extefunc_nam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50505,7 +50510,7 @@ CREATE UNIQUE INDEX mdl_extefunc_nam_uix ON public.mdl_external_functions USING -- --- TOC entry 8408 (class 1259 OID 18677) +-- TOC entry 8347 (class 1259 OID 65302) -- Name: mdl_exteserv_nam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50513,7 +50518,7 @@ CREATE UNIQUE INDEX mdl_exteserv_nam_uix ON public.mdl_external_services USING b -- --- TOC entry 8412 (class 1259 OID 18703) +-- TOC entry 8348 (class 1259 OID 65303) -- Name: mdl_exteservfunc_ext_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50521,7 +50526,7 @@ CREATE INDEX mdl_exteservfunc_ext_ix ON public.mdl_external_services_functions U -- --- TOC entry 8415 (class 1259 OID 18712) +-- TOC entry 8351 (class 1259 OID 65304) -- Name: mdl_exteservuser_ext_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50529,7 +50534,7 @@ CREATE INDEX mdl_exteservuser_ext_ix ON public.mdl_external_services_users USING -- --- TOC entry 8418 (class 1259 OID 18713) +-- TOC entry 8354 (class 1259 OID 65305) -- Name: mdl_exteservuser_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50537,7 +50542,7 @@ CREATE INDEX mdl_exteservuser_use_ix ON public.mdl_external_services_users USING -- --- TOC entry 8419 (class 1259 OID 18729) +-- TOC entry 8355 (class 1259 OID 65306) -- Name: mdl_extetoke_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50545,7 +50550,7 @@ CREATE INDEX mdl_extetoke_con_ix ON public.mdl_external_tokens USING btree (cont -- --- TOC entry 8420 (class 1259 OID 18730) +-- TOC entry 8356 (class 1259 OID 65307) -- Name: mdl_extetoke_cre_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50553,7 +50558,7 @@ CREATE INDEX mdl_extetoke_cre_ix ON public.mdl_external_tokens USING btree (crea -- --- TOC entry 8421 (class 1259 OID 18728) +-- TOC entry 8357 (class 1259 OID 65308) -- Name: mdl_extetoke_ext_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50561,7 +50566,7 @@ CREATE INDEX mdl_extetoke_ext_ix ON public.mdl_external_tokens USING btree (exte -- --- TOC entry 8424 (class 1259 OID 18727) +-- TOC entry 8360 (class 1259 OID 65309) -- Name: mdl_extetoke_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50569,7 +50574,7 @@ CREATE INDEX mdl_extetoke_use_ix ON public.mdl_external_tokens USING btree (user -- --- TOC entry 8694 (class 1259 OID 19710) +-- TOC entry 8361 (class 1259 OID 65310) -- Name: mdl_favo_comiteiteconuse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50577,7 +50582,7 @@ CREATE UNIQUE INDEX mdl_favo_comiteiteconuse_uix ON public.mdl_favourite USING b -- --- TOC entry 8695 (class 1259 OID 19711) +-- TOC entry 8362 (class 1259 OID 65311) -- Name: mdl_favo_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50585,7 +50590,7 @@ CREATE INDEX mdl_favo_con_ix ON public.mdl_favourite USING btree (contextid); -- --- TOC entry 8698 (class 1259 OID 19712) +-- TOC entry 8365 (class 1259 OID 65312) -- Name: mdl_favo_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50593,7 +50598,7 @@ CREATE INDEX mdl_favo_use_ix ON public.mdl_favourite USING btree (userid); -- --- TOC entry 8916 (class 1259 OID 20730) +-- TOC entry 8366 (class 1259 OID 65313) -- Name: mdl_feed_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50601,7 +50606,7 @@ CREATE INDEX mdl_feed_cou_ix ON public.mdl_feedback USING btree (course); -- --- TOC entry 8930 (class 1259 OID 20799) +-- TOC entry 8373 (class 1259 OID 65314) -- Name: mdl_feedcomp_fee2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50609,7 +50614,7 @@ CREATE INDEX mdl_feedcomp_fee2_ix ON public.mdl_feedback_completedtmp USING btre -- --- TOC entry 8926 (class 1259 OID 20782) +-- TOC entry 8369 (class 1259 OID 65315) -- Name: mdl_feedcomp_fee_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50617,7 +50622,7 @@ CREATE INDEX mdl_feedcomp_fee_ix ON public.mdl_feedback_completed USING btree (f -- --- TOC entry 8933 (class 1259 OID 20798) +-- TOC entry 8376 (class 1259 OID 65316) -- Name: mdl_feedcomp_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50625,7 +50630,7 @@ CREATE INDEX mdl_feedcomp_use2_ix ON public.mdl_feedback_completedtmp USING btre -- --- TOC entry 8929 (class 1259 OID 20781) +-- TOC entry 8372 (class 1259 OID 65317) -- Name: mdl_feedcomp_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50633,7 +50638,7 @@ CREATE INDEX mdl_feedcomp_use_ix ON public.mdl_feedback_completed USING btree (u -- --- TOC entry 8922 (class 1259 OID 20765) +-- TOC entry 8377 (class 1259 OID 65318) -- Name: mdl_feeditem_fee_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50641,7 +50646,7 @@ CREATE INDEX mdl_feeditem_fee_ix ON public.mdl_feedback_item USING btree (feedba -- --- TOC entry 8925 (class 1259 OID 20766) +-- TOC entry 8380 (class 1259 OID 65319) -- Name: mdl_feeditem_tem_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50649,7 +50654,7 @@ CREATE INDEX mdl_feeditem_tem_ix ON public.mdl_feedback_item USING btree (templa -- --- TOC entry 8944 (class 1259 OID 20846) +-- TOC entry 8381 (class 1259 OID 65320) -- Name: mdl_feedsitemap_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50657,7 +50662,7 @@ CREATE INDEX mdl_feedsitemap_cou_ix ON public.mdl_feedback_sitecourse_map USING -- --- TOC entry 8945 (class 1259 OID 20847) +-- TOC entry 8382 (class 1259 OID 65321) -- Name: mdl_feedsitemap_fee_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50665,7 +50670,7 @@ CREATE INDEX mdl_feedsitemap_fee_ix ON public.mdl_feedback_sitecourse_map USING -- --- TOC entry 8919 (class 1259 OID 20742) +-- TOC entry 8385 (class 1259 OID 65322) -- Name: mdl_feedtemp_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50673,7 +50678,7 @@ CREATE INDEX mdl_feedtemp_cou_ix ON public.mdl_feedback_template USING btree (co -- --- TOC entry 8939 (class 1259 OID 20834) +-- TOC entry 8393 (class 1259 OID 65323) -- Name: mdl_feedvalu_comitecou2_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50681,7 +50686,7 @@ CREATE UNIQUE INDEX mdl_feedvalu_comitecou2_uix ON public.mdl_feedback_valuetmp -- --- TOC entry 8934 (class 1259 OID 20816) +-- TOC entry 8388 (class 1259 OID 65324) -- Name: mdl_feedvalu_comitecou_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50689,7 +50694,7 @@ CREATE UNIQUE INDEX mdl_feedvalu_comitecou_uix ON public.mdl_feedback_value USIN -- --- TOC entry 8940 (class 1259 OID 20833) +-- TOC entry 8394 (class 1259 OID 65325) -- Name: mdl_feedvalu_cou2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50697,7 +50702,7 @@ CREATE INDEX mdl_feedvalu_cou2_ix ON public.mdl_feedback_valuetmp USING btree (c -- --- TOC entry 8935 (class 1259 OID 20815) +-- TOC entry 8389 (class 1259 OID 65326) -- Name: mdl_feedvalu_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50705,7 +50710,7 @@ CREATE INDEX mdl_feedvalu_cou_ix ON public.mdl_feedback_value USING btree (cours -- --- TOC entry 8943 (class 1259 OID 20835) +-- TOC entry 8397 (class 1259 OID 65327) -- Name: mdl_feedvalu_ite2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50713,7 +50718,7 @@ CREATE INDEX mdl_feedvalu_ite2_ix ON public.mdl_feedback_valuetmp USING btree (i -- --- TOC entry 8938 (class 1259 OID 20817) +-- TOC entry 8392 (class 1259 OID 65328) -- Name: mdl_feedvalu_ite_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50721,7 +50726,7 @@ CREATE INDEX mdl_feedvalu_ite_ix ON public.mdl_feedback_value USING btree (item) -- --- TOC entry 8363 (class 1259 OID 18516) +-- TOC entry 8402 (class 1259 OID 65329) -- Name: mdl_file_comfilconite_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50729,7 +50734,7 @@ CREATE INDEX mdl_file_comfilconite_ix ON public.mdl_files USING btree (component -- --- TOC entry 8364 (class 1259 OID 18520) +-- TOC entry 8403 (class 1259 OID 65330) -- Name: mdl_file_con2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50737,7 +50742,7 @@ CREATE INDEX mdl_file_con2_ix ON public.mdl_files USING btree (contextid); -- --- TOC entry 8365 (class 1259 OID 18517) +-- TOC entry 8404 (class 1259 OID 65331) -- Name: mdl_file_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50745,7 +50750,7 @@ CREATE INDEX mdl_file_con_ix ON public.mdl_files USING btree (contenthash); -- --- TOC entry 8368 (class 1259 OID 18519) +-- TOC entry 8407 (class 1259 OID 65332) -- Name: mdl_file_lic_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50753,7 +50758,7 @@ CREATE INDEX mdl_file_lic_ix ON public.mdl_files USING btree (license); -- --- TOC entry 8369 (class 1259 OID 18518) +-- TOC entry 8408 (class 1259 OID 65333) -- Name: mdl_file_pat_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50761,7 +50766,7 @@ CREATE UNIQUE INDEX mdl_file_pat_uix ON public.mdl_files USING btree (pathnameha -- --- TOC entry 8370 (class 1259 OID 18522) +-- TOC entry 8409 (class 1259 OID 65334) -- Name: mdl_file_ref_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50769,7 +50774,7 @@ CREATE INDEX mdl_file_ref_ix ON public.mdl_files USING btree (referencefileid); -- --- TOC entry 8371 (class 1259 OID 18521) +-- TOC entry 8410 (class 1259 OID 65335) -- Name: mdl_file_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50777,7 +50782,7 @@ CREATE INDEX mdl_file_use_ix ON public.mdl_files USING btree (userid); -- --- TOC entry 8376 (class 1259 OID 18551) +-- TOC entry 8398 (class 1259 OID 65336) -- Name: mdl_fileconv_des_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50785,7 +50790,7 @@ CREATE INDEX mdl_fileconv_des_ix ON public.mdl_file_conversion USING btree (dest -- --- TOC entry 8379 (class 1259 OID 18550) +-- TOC entry 8401 (class 1259 OID 65337) -- Name: mdl_fileconv_sou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50793,7 +50798,7 @@ CREATE INDEX mdl_fileconv_sou_ix ON public.mdl_file_conversion USING btree (sour -- --- TOC entry 8374 (class 1259 OID 18535) +-- TOC entry 8413 (class 1259 OID 65338) -- Name: mdl_filerefe_refrep_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50801,7 +50806,7 @@ CREATE UNIQUE INDEX mdl_filerefe_refrep_uix ON public.mdl_files_reference USING -- --- TOC entry 8375 (class 1259 OID 18536) +-- TOC entry 8414 (class 1259 OID 65339) -- Name: mdl_filerefe_rep_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50809,7 +50814,7 @@ CREATE INDEX mdl_filerefe_rep_ix ON public.mdl_files_reference USING btree (repo -- --- TOC entry 7868 (class 1259 OID 16714) +-- TOC entry 8415 (class 1259 OID 65340) -- Name: mdl_filtacti_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50817,7 +50822,7 @@ CREATE INDEX mdl_filtacti_con_ix ON public.mdl_filter_active USING btree (contex -- --- TOC entry 7869 (class 1259 OID 16713) +-- TOC entry 8416 (class 1259 OID 65341) -- Name: mdl_filtacti_confil_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50825,7 +50830,7 @@ CREATE UNIQUE INDEX mdl_filtacti_confil_uix ON public.mdl_filter_active USING bt -- --- TOC entry 7872 (class 1259 OID 16729) +-- TOC entry 8419 (class 1259 OID 65342) -- Name: mdl_filtconf_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50833,7 +50838,7 @@ CREATE INDEX mdl_filtconf_con_ix ON public.mdl_filter_config USING btree (contex -- --- TOC entry 7873 (class 1259 OID 16728) +-- TOC entry 8420 (class 1259 OID 65343) -- Name: mdl_filtconf_confilnam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50841,7 +50846,7 @@ CREATE UNIQUE INDEX mdl_filtconf_confilnam_uix ON public.mdl_filter_config USING -- --- TOC entry 8948 (class 1259 OID 20867) +-- TOC entry 8423 (class 1259 OID 65344) -- Name: mdl_fold_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50849,7 +50854,7 @@ CREATE INDEX mdl_fold_cou_ix ON public.mdl_folder USING btree (course); -- --- TOC entry 8951 (class 1259 OID 20906) +-- TOC entry 8426 (class 1259 OID 65345) -- Name: mdl_foru_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50857,7 +50862,7 @@ CREATE INDEX mdl_foru_cou_ix ON public.mdl_forum USING btree (course); -- --- TOC entry 8977 (class 1259 OID 21000) +-- TOC entry 8429 (class 1259 OID 65346) -- Name: mdl_forudige_for_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50865,7 +50870,7 @@ CREATE INDEX mdl_forudige_for_ix ON public.mdl_forum_digests USING btree (forum) -- --- TOC entry 8978 (class 1259 OID 21001) +-- TOC entry 8430 (class 1259 OID 65347) -- Name: mdl_forudige_forusemai_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50873,7 +50878,7 @@ CREATE UNIQUE INDEX mdl_forudige_forusemai_uix ON public.mdl_forum_digests USING -- --- TOC entry 8981 (class 1259 OID 20999) +-- TOC entry 8433 (class 1259 OID 65348) -- Name: mdl_forudige_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50881,7 +50886,7 @@ CREATE INDEX mdl_forudige_use_ix ON public.mdl_forum_digests USING btree (userid -- --- TOC entry 8954 (class 1259 OID 20929) +-- TOC entry 8440 (class 1259 OID 65349) -- Name: mdl_forudisc_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50889,7 +50894,7 @@ CREATE INDEX mdl_forudisc_cou_ix ON public.mdl_forum_discussions USING btree (co -- --- TOC entry 8955 (class 1259 OID 20930) +-- TOC entry 8441 (class 1259 OID 65350) -- Name: mdl_forudisc_for_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50897,7 +50902,7 @@ CREATE INDEX mdl_forudisc_for_ix ON public.mdl_forum_discussions USING btree (fo -- --- TOC entry 8958 (class 1259 OID 20928) +-- TOC entry 8444 (class 1259 OID 65351) -- Name: mdl_forudisc_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50905,7 +50910,7 @@ CREATE INDEX mdl_forudisc_use_ix ON public.mdl_forum_discussions USING btree (us -- --- TOC entry 8990 (class 1259 OID 21041) +-- TOC entry 8434 (class 1259 OID 65352) -- Name: mdl_forudiscsubs_dis_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50913,7 +50918,7 @@ CREATE INDEX mdl_forudiscsubs_dis_ix ON public.mdl_forum_discussion_subs USING b -- --- TOC entry 8991 (class 1259 OID 21039) +-- TOC entry 8435 (class 1259 OID 65353) -- Name: mdl_forudiscsubs_for_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50921,7 +50926,7 @@ CREATE INDEX mdl_forudiscsubs_for_ix ON public.mdl_forum_discussion_subs USING b -- --- TOC entry 8994 (class 1259 OID 21040) +-- TOC entry 8438 (class 1259 OID 65354) -- Name: mdl_forudiscsubs_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50929,7 +50934,7 @@ CREATE INDEX mdl_forudiscsubs_use_ix ON public.mdl_forum_discussion_subs USING b -- --- TOC entry 8995 (class 1259 OID 21042) +-- TOC entry 8439 (class 1259 OID 65355) -- Name: mdl_forudiscsubs_usedis_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50937,7 +50942,7 @@ CREATE UNIQUE INDEX mdl_forudiscsubs_usedis_uix ON public.mdl_forum_discussion_s -- --- TOC entry 8996 (class 1259 OID 21053) +-- TOC entry 8445 (class 1259 OID 65356) -- Name: mdl_forugrad_for_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50945,7 +50950,7 @@ CREATE INDEX mdl_forugrad_for_ix ON public.mdl_forum_grades USING btree (forum); -- --- TOC entry 8997 (class 1259 OID 21052) +-- TOC entry 8446 (class 1259 OID 65357) -- Name: mdl_forugrad_foriteuse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50953,7 +50958,7 @@ CREATE UNIQUE INDEX mdl_forugrad_foriteuse_uix ON public.mdl_forum_grades USING -- --- TOC entry 9000 (class 1259 OID 21051) +-- TOC entry 8449 (class 1259 OID 65358) -- Name: mdl_forugrad_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50961,7 +50966,7 @@ CREATE INDEX mdl_forugrad_use_ix ON public.mdl_forum_grades USING btree (userid) -- --- TOC entry 8959 (class 1259 OID 20957) +-- TOC entry 8450 (class 1259 OID 65359) -- Name: mdl_forupost_cre_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50969,7 +50974,7 @@ CREATE INDEX mdl_forupost_cre_ix ON public.mdl_forum_posts USING btree (created) -- --- TOC entry 8960 (class 1259 OID 20960) +-- TOC entry 8451 (class 1259 OID 65360) -- Name: mdl_forupost_dis_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50977,7 +50982,7 @@ CREATE INDEX mdl_forupost_dis_ix ON public.mdl_forum_posts USING btree (discussi -- --- TOC entry 8963 (class 1259 OID 20958) +-- TOC entry 8454 (class 1259 OID 65361) -- Name: mdl_forupost_mai_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50985,7 +50990,7 @@ CREATE INDEX mdl_forupost_mai_ix ON public.mdl_forum_posts USING btree (mailed); -- --- TOC entry 8964 (class 1259 OID 20961) +-- TOC entry 8455 (class 1259 OID 65362) -- Name: mdl_forupost_par_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50993,7 +50998,7 @@ CREATE INDEX mdl_forupost_par_ix ON public.mdl_forum_posts USING btree (parent); -- --- TOC entry 8965 (class 1259 OID 20959) +-- TOC entry 8456 (class 1259 OID 65363) -- Name: mdl_forupost_pri_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51001,7 +51006,7 @@ CREATE INDEX mdl_forupost_pri_ix ON public.mdl_forum_posts USING btree (privater -- --- TOC entry 8966 (class 1259 OID 20956) +-- TOC entry 8457 (class 1259 OID 65364) -- Name: mdl_forupost_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51009,7 +51014,7 @@ CREATE INDEX mdl_forupost_use_ix ON public.mdl_forum_posts USING btree (userid); -- --- TOC entry 8967 (class 1259 OID 20975) +-- TOC entry 8458 (class 1259 OID 65365) -- Name: mdl_foruqueu_dis_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51017,7 +51022,7 @@ CREATE INDEX mdl_foruqueu_dis_ix ON public.mdl_forum_queue USING btree (discussi -- --- TOC entry 8970 (class 1259 OID 20976) +-- TOC entry 8461 (class 1259 OID 65366) -- Name: mdl_foruqueu_pos_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51025,7 +51030,7 @@ CREATE INDEX mdl_foruqueu_pos_ix ON public.mdl_forum_queue USING btree (postid); -- --- TOC entry 8971 (class 1259 OID 20974) +-- TOC entry 8462 (class 1259 OID 65367) -- Name: mdl_foruqueu_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51033,7 +51038,7 @@ CREATE INDEX mdl_foruqueu_use_ix ON public.mdl_forum_queue USING btree (userid); -- --- TOC entry 8984 (class 1259 OID 21018) +-- TOC entry 8465 (class 1259 OID 65368) -- Name: mdl_foruread_posuse_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51041,7 +51046,7 @@ CREATE INDEX mdl_foruread_posuse_ix ON public.mdl_forum_read USING btree (postid -- --- TOC entry 8985 (class 1259 OID 21017) +-- TOC entry 8466 (class 1259 OID 65369) -- Name: mdl_foruread_usedis_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51049,7 +51054,7 @@ CREATE INDEX mdl_foruread_usedis_ix ON public.mdl_forum_read USING btree (userid -- --- TOC entry 8986 (class 1259 OID 21016) +-- TOC entry 8467 (class 1259 OID 65370) -- Name: mdl_foruread_usefor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51057,7 +51062,7 @@ CREATE INDEX mdl_foruread_usefor_ix ON public.mdl_forum_read USING btree (userid -- --- TOC entry 8972 (class 1259 OID 20988) +-- TOC entry 8468 (class 1259 OID 65371) -- Name: mdl_forusubs_for_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51065,7 +51070,7 @@ CREATE INDEX mdl_forusubs_for_ix ON public.mdl_forum_subscriptions USING btree ( -- --- TOC entry 8975 (class 1259 OID 20987) +-- TOC entry 8471 (class 1259 OID 65372) -- Name: mdl_forusubs_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51073,7 +51078,7 @@ CREATE INDEX mdl_forusubs_use_ix ON public.mdl_forum_subscriptions USING btree ( -- --- TOC entry 8976 (class 1259 OID 20989) +-- TOC entry 8472 (class 1259 OID 65373) -- Name: mdl_forusubs_usefor_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51081,7 +51086,7 @@ CREATE UNIQUE INDEX mdl_forusubs_usefor_uix ON public.mdl_forum_subscriptions US -- --- TOC entry 8989 (class 1259 OID 21029) +-- TOC entry 8475 (class 1259 OID 65374) -- Name: mdl_forutracpref_usefor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51089,7 +51094,7 @@ CREATE INDEX mdl_forutracpref_usefor_ix ON public.mdl_forum_track_prefs USING bt -- --- TOC entry 9001 (class 1259 OID 21094) +-- TOC entry 8476 (class 1259 OID 65375) -- Name: mdl_glos_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51097,7 +51102,7 @@ CREATE INDEX mdl_glos_cou_ix ON public.mdl_glossary USING btree (course); -- --- TOC entry 9009 (class 1259 OID 21133) +-- TOC entry 8479 (class 1259 OID 65376) -- Name: mdl_glosalia_ent_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51105,7 +51110,7 @@ CREATE INDEX mdl_glosalia_ent_ix ON public.mdl_glossary_alias USING btree (entry -- --- TOC entry 9012 (class 1259 OID 21145) +-- TOC entry 8482 (class 1259 OID 65377) -- Name: mdl_gloscate_glo_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51113,7 +51118,7 @@ CREATE INDEX mdl_gloscate_glo_ix ON public.mdl_glossary_categories USING btree ( -- --- TOC entry 9004 (class 1259 OID 21121) +-- TOC entry 8485 (class 1259 OID 65378) -- Name: mdl_glosentr_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51121,7 +51126,7 @@ CREATE INDEX mdl_glosentr_con_ix ON public.mdl_glossary_entries USING btree (con -- --- TOC entry 9005 (class 1259 OID 21122) +-- TOC entry 8486 (class 1259 OID 65379) -- Name: mdl_glosentr_glo_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51129,7 +51134,7 @@ CREATE INDEX mdl_glosentr_glo_ix ON public.mdl_glossary_entries USING btree (glo -- --- TOC entry 9008 (class 1259 OID 21120) +-- TOC entry 8489 (class 1259 OID 65380) -- Name: mdl_glosentr_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51137,7 +51142,7 @@ CREATE INDEX mdl_glosentr_use_ix ON public.mdl_glossary_entries USING btree (use -- --- TOC entry 9015 (class 1259 OID 21156) +-- TOC entry 8490 (class 1259 OID 65381) -- Name: mdl_glosentrcate_cat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51145,7 +51150,7 @@ CREATE INDEX mdl_glosentrcate_cat_ix ON public.mdl_glossary_entries_categories U -- --- TOC entry 9016 (class 1259 OID 21157) +-- TOC entry 8491 (class 1259 OID 65382) -- Name: mdl_glosentrcate_ent_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51153,7 +51158,7 @@ CREATE INDEX mdl_glosentrcate_ent_ix ON public.mdl_glossary_entries_categories U -- --- TOC entry 8458 (class 1259 OID 18874) +-- TOC entry 8581 (class 1259 OID 65383) -- Name: mdl_gradarea_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51161,7 +51166,7 @@ CREATE INDEX mdl_gradarea_con_ix ON public.mdl_grading_areas USING btree (contex -- --- TOC entry 8459 (class 1259 OID 18873) +-- TOC entry 8582 (class 1259 OID 65384) -- Name: mdl_gradarea_concomare_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51169,7 +51174,7 @@ CREATE UNIQUE INDEX mdl_gradarea_concomare_uix ON public.mdl_grading_areas USING -- --- TOC entry 8212 (class 1259 OID 17966) +-- TOC entry 8496 (class 1259 OID 65385) -- Name: mdl_gradcate_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51177,7 +51182,7 @@ CREATE INDEX mdl_gradcate_cou_ix ON public.mdl_grade_categories USING btree (cou -- --- TOC entry 8215 (class 1259 OID 17967) +-- TOC entry 8499 (class 1259 OID 65386) -- Name: mdl_gradcate_par_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51185,7 +51190,7 @@ CREATE INDEX mdl_gradcate_par_ix ON public.mdl_grade_categories USING btree (par -- --- TOC entry 8242 (class 1259 OID 18072) +-- TOC entry 8500 (class 1259 OID 65387) -- Name: mdl_gradcatehist_act_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51193,7 +51198,7 @@ CREATE INDEX mdl_gradcatehist_act_ix ON public.mdl_grade_categories_history USIN -- --- TOC entry 8243 (class 1259 OID 18075) +-- TOC entry 8501 (class 1259 OID 65388) -- Name: mdl_gradcatehist_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51201,7 +51206,7 @@ CREATE INDEX mdl_gradcatehist_cou_ix ON public.mdl_grade_categories_history USIN -- --- TOC entry 8246 (class 1259 OID 18077) +-- TOC entry 8504 (class 1259 OID 65389) -- Name: mdl_gradcatehist_log_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51209,7 +51214,7 @@ CREATE INDEX mdl_gradcatehist_log_ix ON public.mdl_grade_categories_history USIN -- --- TOC entry 8247 (class 1259 OID 18074) +-- TOC entry 8505 (class 1259 OID 65390) -- Name: mdl_gradcatehist_old_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51217,7 +51222,7 @@ CREATE INDEX mdl_gradcatehist_old_ix ON public.mdl_grade_categories_history USIN -- --- TOC entry 8248 (class 1259 OID 18076) +-- TOC entry 8506 (class 1259 OID 65391) -- Name: mdl_gradcatehist_par_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51225,7 +51230,7 @@ CREATE INDEX mdl_gradcatehist_par_ix ON public.mdl_grade_categories_history USIN -- --- TOC entry 8249 (class 1259 OID 18073) +-- TOC entry 8507 (class 1259 OID 65392) -- Name: mdl_gradcatehist_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51233,7 +51238,7 @@ CREATE INDEX mdl_gradcatehist_tim_ix ON public.mdl_grade_categories_history USIN -- --- TOC entry 8462 (class 1259 OID 18890) +-- TOC entry 8585 (class 1259 OID 65393) -- Name: mdl_graddefi_are_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51241,7 +51246,7 @@ CREATE INDEX mdl_graddefi_are_ix ON public.mdl_grading_definitions USING btree ( -- --- TOC entry 8463 (class 1259 OID 18892) +-- TOC entry 8586 (class 1259 OID 65394) -- Name: mdl_graddefi_aremet_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51249,7 +51254,7 @@ CREATE UNIQUE INDEX mdl_graddefi_aremet_uix ON public.mdl_grading_definitions US -- --- TOC entry 8466 (class 1259 OID 18893) +-- TOC entry 8589 (class 1259 OID 65395) -- Name: mdl_graddefi_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51257,7 +51262,7 @@ CREATE INDEX mdl_graddefi_use2_ix ON public.mdl_grading_definitions USING btree -- --- TOC entry 8467 (class 1259 OID 18891) +-- TOC entry 8590 (class 1259 OID 65396) -- Name: mdl_graddefi_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51265,7 +51270,7 @@ CREATE INDEX mdl_graddefi_use_ix ON public.mdl_grading_definitions USING btree ( -- --- TOC entry 8228 (class 1259 OID 18026) +-- TOC entry 8510 (class 1259 OID 65397) -- Name: mdl_gradgrad_ite_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51273,7 +51278,7 @@ CREATE INDEX mdl_gradgrad_ite_ix ON public.mdl_grade_grades USING btree (itemid) -- --- TOC entry 8229 (class 1259 OID 18025) +-- TOC entry 8511 (class 1259 OID 65398) -- Name: mdl_gradgrad_locloc_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51281,7 +51286,7 @@ CREATE INDEX mdl_gradgrad_locloc_ix ON public.mdl_grade_grades USING btree (lock -- --- TOC entry 8230 (class 1259 OID 18028) +-- TOC entry 8512 (class 1259 OID 65399) -- Name: mdl_gradgrad_raw_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51289,7 +51294,7 @@ CREATE INDEX mdl_gradgrad_raw_ix ON public.mdl_grade_grades USING btree (rawscal -- --- TOC entry 8231 (class 1259 OID 18029) +-- TOC entry 8513 (class 1259 OID 65400) -- Name: mdl_gradgrad_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51297,7 +51302,7 @@ CREATE INDEX mdl_gradgrad_use2_ix ON public.mdl_grade_grades USING btree (usermo -- --- TOC entry 8232 (class 1259 OID 18027) +-- TOC entry 8514 (class 1259 OID 65401) -- Name: mdl_gradgrad_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51305,7 +51310,7 @@ CREATE INDEX mdl_gradgrad_use_ix ON public.mdl_grade_grades USING btree (userid) -- --- TOC entry 8233 (class 1259 OID 18030) +-- TOC entry 8515 (class 1259 OID 65402) -- Name: mdl_gradgrad_useite_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51313,7 +51318,7 @@ CREATE UNIQUE INDEX mdl_gradgrad_useite_uix ON public.mdl_grade_grades USING btr -- --- TOC entry 8260 (class 1259 OID 18136) +-- TOC entry 8516 (class 1259 OID 65403) -- Name: mdl_gradgradhist_act_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51321,7 +51326,7 @@ CREATE INDEX mdl_gradgradhist_act_ix ON public.mdl_grade_grades_history USING bt -- --- TOC entry 8263 (class 1259 OID 18140) +-- TOC entry 8519 (class 1259 OID 65404) -- Name: mdl_gradgradhist_ite_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51329,7 +51334,7 @@ CREATE INDEX mdl_gradgradhist_ite_ix ON public.mdl_grade_grades_history USING bt -- --- TOC entry 8264 (class 1259 OID 18144) +-- TOC entry 8520 (class 1259 OID 65405) -- Name: mdl_gradgradhist_log_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51337,7 +51342,7 @@ CREATE INDEX mdl_gradgradhist_log_ix ON public.mdl_grade_grades_history USING bt -- --- TOC entry 8265 (class 1259 OID 18139) +-- TOC entry 8521 (class 1259 OID 65406) -- Name: mdl_gradgradhist_old_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51345,7 +51350,7 @@ CREATE INDEX mdl_gradgradhist_old_ix ON public.mdl_grade_grades_history USING bt -- --- TOC entry 8266 (class 1259 OID 18142) +-- TOC entry 8522 (class 1259 OID 65407) -- Name: mdl_gradgradhist_raw_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51353,7 +51358,7 @@ CREATE INDEX mdl_gradgradhist_raw_ix ON public.mdl_grade_grades_history USING bt -- --- TOC entry 8267 (class 1259 OID 18137) +-- TOC entry 8523 (class 1259 OID 65408) -- Name: mdl_gradgradhist_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51361,7 +51366,7 @@ CREATE INDEX mdl_gradgradhist_tim_ix ON public.mdl_grade_grades_history USING bt -- --- TOC entry 8268 (class 1259 OID 18143) +-- TOC entry 8524 (class 1259 OID 65409) -- Name: mdl_gradgradhist_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51369,7 +51374,7 @@ CREATE INDEX mdl_gradgradhist_use2_ix ON public.mdl_grade_grades_history USING b -- --- TOC entry 8269 (class 1259 OID 18141) +-- TOC entry 8525 (class 1259 OID 65410) -- Name: mdl_gradgradhist_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51377,7 +51382,7 @@ CREATE INDEX mdl_gradgradhist_use_ix ON public.mdl_grade_grades_history USING bt -- --- TOC entry 8270 (class 1259 OID 18138) +-- TOC entry 8526 (class 1259 OID 65411) -- Name: mdl_gradgradhist_useitetim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51385,7 +51390,7 @@ CREATE INDEX mdl_gradgradhist_useitetim_ix ON public.mdl_grade_grades_history US -- --- TOC entry 9352 (class 1259 OID 22645) +-- TOC entry 8595 (class 1259 OID 65412) -- Name: mdl_gradguidcomm_def_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51393,7 +51398,7 @@ CREATE INDEX mdl_gradguidcomm_def_ix ON public.mdl_gradingform_guide_comments US -- --- TOC entry 9344 (class 1259 OID 22619) +-- TOC entry 8598 (class 1259 OID 65413) -- Name: mdl_gradguidcrit_def_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51401,7 +51406,7 @@ CREATE INDEX mdl_gradguidcrit_def_ix ON public.mdl_gradingform_guide_criteria US -- --- TOC entry 9347 (class 1259 OID 22632) +-- TOC entry 8601 (class 1259 OID 65414) -- Name: mdl_gradguidfill_cri_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51409,7 +51414,7 @@ CREATE INDEX mdl_gradguidfill_cri_ix ON public.mdl_gradingform_guide_fillings US -- --- TOC entry 9350 (class 1259 OID 22631) +-- TOC entry 8604 (class 1259 OID 65415) -- Name: mdl_gradguidfill_ins_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51417,7 +51422,7 @@ CREATE INDEX mdl_gradguidfill_ins_ix ON public.mdl_gradingform_guide_fillings US -- --- TOC entry 9351 (class 1259 OID 22633) +-- TOC entry 8605 (class 1259 OID 65416) -- Name: mdl_gradguidfill_inscri_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51425,7 +51430,7 @@ CREATE UNIQUE INDEX mdl_gradguidfill_inscri_uix ON public.mdl_gradingform_guide_ -- --- TOC entry 8273 (class 1259 OID 18154) +-- TOC entry 8529 (class 1259 OID 65417) -- Name: mdl_gradimponewi_imp_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51433,7 +51438,7 @@ CREATE INDEX mdl_gradimponewi_imp_ix ON public.mdl_grade_import_newitem USING bt -- --- TOC entry 8276 (class 1259 OID 18169) +-- TOC entry 8532 (class 1259 OID 65418) -- Name: mdl_gradimpovalu_imp_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51441,7 +51446,7 @@ CREATE INDEX mdl_gradimpovalu_imp_ix ON public.mdl_grade_import_values USING btr -- --- TOC entry 8277 (class 1259 OID 18167) +-- TOC entry 8533 (class 1259 OID 65419) -- Name: mdl_gradimpovalu_ite_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51449,7 +51454,7 @@ CREATE INDEX mdl_gradimpovalu_ite_ix ON public.mdl_grade_import_values USING btr -- --- TOC entry 8278 (class 1259 OID 18168) +-- TOC entry 8534 (class 1259 OID 65420) -- Name: mdl_gradimpovalu_new_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51457,7 +51462,7 @@ CREATE INDEX mdl_gradimpovalu_new_ix ON public.mdl_grade_import_values USING btr -- --- TOC entry 8468 (class 1259 OID 18906) +-- TOC entry 8591 (class 1259 OID 65421) -- Name: mdl_gradinst_def_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51465,7 +51470,7 @@ CREATE INDEX mdl_gradinst_def_ix ON public.mdl_grading_instances USING btree (de -- --- TOC entry 8471 (class 1259 OID 18907) +-- TOC entry 8594 (class 1259 OID 65422) -- Name: mdl_gradinst_rat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51473,7 +51478,7 @@ CREATE INDEX mdl_gradinst_rat_ix ON public.mdl_grading_instances USING btree (ra -- --- TOC entry 8216 (class 1259 OID 18000) +-- TOC entry 8535 (class 1259 OID 65423) -- Name: mdl_graditem_cat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51481,7 +51486,7 @@ CREATE INDEX mdl_graditem_cat_ix ON public.mdl_grade_items USING btree (category -- --- TOC entry 8217 (class 1259 OID 17999) +-- TOC entry 8536 (class 1259 OID 65424) -- Name: mdl_graditem_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51489,7 +51494,7 @@ CREATE INDEX mdl_graditem_cou_ix ON public.mdl_grade_items USING btree (courseid -- --- TOC entry 8218 (class 1259 OID 17997) +-- TOC entry 8537 (class 1259 OID 65425) -- Name: mdl_graditem_gra_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51497,7 +51502,7 @@ CREATE INDEX mdl_graditem_gra_ix ON public.mdl_grade_items USING btree (gradetyp -- --- TOC entry 8221 (class 1259 OID 17998) +-- TOC entry 8540 (class 1259 OID 65426) -- Name: mdl_graditem_idncou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51505,7 +51510,7 @@ CREATE INDEX mdl_graditem_idncou_ix ON public.mdl_grade_items USING btree (idnum -- --- TOC entry 8222 (class 1259 OID 17996) +-- TOC entry 8541 (class 1259 OID 65427) -- Name: mdl_graditem_itenee_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51513,7 +51518,7 @@ CREATE INDEX mdl_graditem_itenee_ix ON public.mdl_grade_items USING btree (itemt -- --- TOC entry 8223 (class 1259 OID 17995) +-- TOC entry 8542 (class 1259 OID 65428) -- Name: mdl_graditem_locloc_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51521,7 +51526,7 @@ CREATE INDEX mdl_graditem_locloc_ix ON public.mdl_grade_items USING btree (locke -- --- TOC entry 8224 (class 1259 OID 18002) +-- TOC entry 8543 (class 1259 OID 65429) -- Name: mdl_graditem_out_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51529,7 +51534,7 @@ CREATE INDEX mdl_graditem_out_ix ON public.mdl_grade_items USING btree (outcomei -- --- TOC entry 8225 (class 1259 OID 18001) +-- TOC entry 8544 (class 1259 OID 65430) -- Name: mdl_graditem_sca_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51537,7 +51542,7 @@ CREATE INDEX mdl_graditem_sca_ix ON public.mdl_grade_items USING btree (scaleid) -- --- TOC entry 8250 (class 1259 OID 18106) +-- TOC entry 8545 (class 1259 OID 65431) -- Name: mdl_graditemhist_act_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51545,7 +51550,7 @@ CREATE INDEX mdl_graditemhist_act_ix ON public.mdl_grade_items_history USING btr -- --- TOC entry 8251 (class 1259 OID 18110) +-- TOC entry 8546 (class 1259 OID 65432) -- Name: mdl_graditemhist_cat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51553,7 +51558,7 @@ CREATE INDEX mdl_graditemhist_cat_ix ON public.mdl_grade_items_history USING btr -- --- TOC entry 8252 (class 1259 OID 18109) +-- TOC entry 8547 (class 1259 OID 65433) -- Name: mdl_graditemhist_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51561,7 +51566,7 @@ CREATE INDEX mdl_graditemhist_cou_ix ON public.mdl_grade_items_history USING btr -- --- TOC entry 8255 (class 1259 OID 18113) +-- TOC entry 8550 (class 1259 OID 65434) -- Name: mdl_graditemhist_log_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51569,7 +51574,7 @@ CREATE INDEX mdl_graditemhist_log_ix ON public.mdl_grade_items_history USING btr -- --- TOC entry 8256 (class 1259 OID 18108) +-- TOC entry 8551 (class 1259 OID 65435) -- Name: mdl_graditemhist_old_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51577,7 +51582,7 @@ CREATE INDEX mdl_graditemhist_old_ix ON public.mdl_grade_items_history USING btr -- --- TOC entry 8257 (class 1259 OID 18112) +-- TOC entry 8552 (class 1259 OID 65436) -- Name: mdl_graditemhist_out_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51585,7 +51590,7 @@ CREATE INDEX mdl_graditemhist_out_ix ON public.mdl_grade_items_history USING btr -- --- TOC entry 8258 (class 1259 OID 18111) +-- TOC entry 8553 (class 1259 OID 65437) -- Name: mdl_graditemhist_sca_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51593,7 +51598,7 @@ CREATE INDEX mdl_graditemhist_sca_ix ON public.mdl_grade_items_history USING btr -- --- TOC entry 8259 (class 1259 OID 18107) +-- TOC entry 8554 (class 1259 OID 65438) -- Name: mdl_graditemhist_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51601,7 +51606,7 @@ CREATE INDEX mdl_graditemhist_tim_ix ON public.mdl_grade_items_history USING btr -- --- TOC entry 8329 (class 1259 OID 18369) +-- TOC entry 8555 (class 1259 OID 65439) -- Name: mdl_gradlett_conlowlet_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51609,7 +51614,7 @@ CREATE UNIQUE INDEX mdl_gradlett_conlowlet_uix ON public.mdl_grade_letters USING -- --- TOC entry 8201 (class 1259 OID 17932) +-- TOC entry 8558 (class 1259 OID 65440) -- Name: mdl_gradoutc_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51617,7 +51622,7 @@ CREATE INDEX mdl_gradoutc_cou_ix ON public.mdl_grade_outcomes USING btree (cours -- --- TOC entry 8202 (class 1259 OID 17935) +-- TOC entry 8559 (class 1259 OID 65441) -- Name: mdl_gradoutc_cousho_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51625,7 +51630,7 @@ CREATE UNIQUE INDEX mdl_gradoutc_cousho_uix ON public.mdl_grade_outcomes USING b -- --- TOC entry 8205 (class 1259 OID 17933) +-- TOC entry 8562 (class 1259 OID 65442) -- Name: mdl_gradoutc_sca_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51633,7 +51638,7 @@ CREATE INDEX mdl_gradoutc_sca_ix ON public.mdl_grade_outcomes USING btree (scale -- --- TOC entry 8206 (class 1259 OID 17934) +-- TOC entry 8563 (class 1259 OID 65443) -- Name: mdl_gradoutc_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51641,7 +51646,7 @@ CREATE INDEX mdl_gradoutc_use_ix ON public.mdl_grade_outcomes USING btree (userm -- --- TOC entry 8207 (class 1259 OID 17944) +-- TOC entry 8564 (class 1259 OID 65444) -- Name: mdl_gradoutccour_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51649,7 +51654,7 @@ CREATE INDEX mdl_gradoutccour_cou_ix ON public.mdl_grade_outcomes_courses USING -- --- TOC entry 8208 (class 1259 OID 17946) +-- TOC entry 8565 (class 1259 OID 65445) -- Name: mdl_gradoutccour_couout_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51657,7 +51662,7 @@ CREATE UNIQUE INDEX mdl_gradoutccour_couout_uix ON public.mdl_grade_outcomes_cou -- --- TOC entry 8211 (class 1259 OID 17945) +-- TOC entry 8568 (class 1259 OID 65446) -- Name: mdl_gradoutccour_out_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51665,7 +51670,7 @@ CREATE INDEX mdl_gradoutccour_out_ix ON public.mdl_grade_outcomes_courses USING -- --- TOC entry 8234 (class 1259 OID 18045) +-- TOC entry 8569 (class 1259 OID 65447) -- Name: mdl_gradoutchist_act_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51673,7 +51678,7 @@ CREATE INDEX mdl_gradoutchist_act_ix ON public.mdl_grade_outcomes_history USING -- --- TOC entry 8235 (class 1259 OID 18048) +-- TOC entry 8570 (class 1259 OID 65448) -- Name: mdl_gradoutchist_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51681,7 +51686,7 @@ CREATE INDEX mdl_gradoutchist_cou_ix ON public.mdl_grade_outcomes_history USING -- --- TOC entry 8238 (class 1259 OID 18050) +-- TOC entry 8573 (class 1259 OID 65449) -- Name: mdl_gradoutchist_log_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51689,7 +51694,7 @@ CREATE INDEX mdl_gradoutchist_log_ix ON public.mdl_grade_outcomes_history USING -- --- TOC entry 8239 (class 1259 OID 18047) +-- TOC entry 8574 (class 1259 OID 65450) -- Name: mdl_gradoutchist_old_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51697,7 +51702,7 @@ CREATE INDEX mdl_gradoutchist_old_ix ON public.mdl_grade_outcomes_history USING -- --- TOC entry 8240 (class 1259 OID 18049) +-- TOC entry 8575 (class 1259 OID 65451) -- Name: mdl_gradoutchist_sca_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51705,7 +51710,7 @@ CREATE INDEX mdl_gradoutchist_sca_ix ON public.mdl_grade_outcomes_history USING -- --- TOC entry 8241 (class 1259 OID 18046) +-- TOC entry 8576 (class 1259 OID 65452) -- Name: mdl_gradoutchist_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51713,7 +51718,7 @@ CREATE INDEX mdl_gradoutchist_tim_ix ON public.mdl_grade_outcomes_history USING -- --- TOC entry 9355 (class 1259 OID 22657) +-- TOC entry 8606 (class 1259 OID 65453) -- Name: mdl_gradrubrcrit_def_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51721,7 +51726,7 @@ CREATE INDEX mdl_gradrubrcrit_def_ix ON public.mdl_gradingform_rubric_criteria U -- --- TOC entry 9361 (class 1259 OID 22683) +-- TOC entry 8609 (class 1259 OID 65454) -- Name: mdl_gradrubrfill_cri_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51729,7 +51734,7 @@ CREATE INDEX mdl_gradrubrfill_cri_ix ON public.mdl_gradingform_rubric_fillings U -- --- TOC entry 9364 (class 1259 OID 22682) +-- TOC entry 8612 (class 1259 OID 65455) -- Name: mdl_gradrubrfill_ins_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51737,7 +51742,7 @@ CREATE INDEX mdl_gradrubrfill_ins_ix ON public.mdl_gradingform_rubric_fillings U -- --- TOC entry 9365 (class 1259 OID 22684) +-- TOC entry 8613 (class 1259 OID 65456) -- Name: mdl_gradrubrfill_inscri_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51745,7 +51750,7 @@ CREATE UNIQUE INDEX mdl_gradrubrfill_inscri_uix ON public.mdl_gradingform_rubric -- --- TOC entry 9366 (class 1259 OID 22681) +-- TOC entry 8614 (class 1259 OID 65457) -- Name: mdl_gradrubrfill_lev_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51753,7 +51758,7 @@ CREATE INDEX mdl_gradrubrfill_lev_ix ON public.mdl_gradingform_rubric_fillings U -- --- TOC entry 9358 (class 1259 OID 22669) +-- TOC entry 8615 (class 1259 OID 65458) -- Name: mdl_gradrubrleve_cri_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51761,7 +51766,7 @@ CREATE INDEX mdl_gradrubrleve_cri_ix ON public.mdl_gradingform_rubric_levels USI -- --- TOC entry 8336 (class 1259 OID 18399) +-- TOC entry 8577 (class 1259 OID 65459) -- Name: mdl_gradsett_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51769,7 +51774,7 @@ CREATE INDEX mdl_gradsett_cou_ix ON public.mdl_grade_settings USING btree (cours -- --- TOC entry 8337 (class 1259 OID 18398) +-- TOC entry 8578 (class 1259 OID 65460) -- Name: mdl_gradsett_counam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51777,7 +51782,7 @@ CREATE UNIQUE INDEX mdl_gradsett_counam_uix ON public.mdl_grade_settings USING b -- --- TOC entry 8304 (class 1259 OID 18286) +-- TOC entry 8618 (class 1259 OID 65461) -- Name: mdl_grou_cou2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51785,7 +51790,7 @@ CREATE INDEX mdl_grou_cou2_ix ON public.mdl_groupings USING btree (courseid); -- --- TOC entry 8300 (class 1259 OID 18267) +-- TOC entry 8626 (class 1259 OID 65462) -- Name: mdl_grou_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51793,7 +51798,7 @@ CREATE INDEX mdl_grou_cou_ix ON public.mdl_groups USING btree (courseid); -- --- TOC entry 8307 (class 1259 OID 18285) +-- TOC entry 8621 (class 1259 OID 65463) -- Name: mdl_grou_idn2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51801,7 +51806,7 @@ CREATE INDEX mdl_grou_idn2_ix ON public.mdl_groupings USING btree (idnumber); -- --- TOC entry 8303 (class 1259 OID 18266) +-- TOC entry 8629 (class 1259 OID 65464) -- Name: mdl_grou_idn_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51809,7 +51814,7 @@ CREATE INDEX mdl_grou_idn_ix ON public.mdl_groups USING btree (idnumber); -- --- TOC entry 8313 (class 1259 OID 18315) +-- TOC entry 8622 (class 1259 OID 65465) -- Name: mdl_grougrou_gro2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51817,7 +51822,7 @@ CREATE INDEX mdl_grougrou_gro2_ix ON public.mdl_groupings_groups USING btree (gr -- --- TOC entry 8314 (class 1259 OID 18314) +-- TOC entry 8623 (class 1259 OID 65466) -- Name: mdl_grougrou_gro_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51825,7 +51830,7 @@ CREATE INDEX mdl_grougrou_gro_ix ON public.mdl_groupings_groups USING btree (gro -- --- TOC entry 8308 (class 1259 OID 18300) +-- TOC entry 8630 (class 1259 OID 65467) -- Name: mdl_groumemb_gro_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51833,7 +51838,7 @@ CREATE INDEX mdl_groumemb_gro_ix ON public.mdl_groups_members USING btree (group -- --- TOC entry 8311 (class 1259 OID 18301) +-- TOC entry 8633 (class 1259 OID 65468) -- Name: mdl_groumemb_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51841,7 +51846,7 @@ CREATE INDEX mdl_groumemb_use_ix ON public.mdl_groups_members USING btree (useri -- --- TOC entry 8312 (class 1259 OID 18302) +-- TOC entry 8634 (class 1259 OID 65469) -- Name: mdl_groumemb_usegro_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51849,7 +51854,7 @@ CREATE UNIQUE INDEX mdl_groumemb_usegro_uix ON public.mdl_groups_members USING b -- --- TOC entry 8724 (class 1259 OID 19805) +-- TOC entry 8637 (class 1259 OID 65470) -- Name: mdl_h5p_mai_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51857,7 +51862,7 @@ CREATE INDEX mdl_h5p_mai_ix ON public.mdl_h5p USING btree (mainlibraryid); -- --- TOC entry 9021 (class 1259 OID 21192) +-- TOC entry 8652 (class 1259 OID 65471) -- Name: mdl_h5pa_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51865,7 +51870,7 @@ CREATE INDEX mdl_h5pa_cou_ix ON public.mdl_h5pactivity USING btree (course); -- --- TOC entry 9024 (class 1259 OID 21209) +-- TOC entry 8655 (class 1259 OID 65472) -- Name: mdl_h5paatte_h5p_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51873,7 +51878,7 @@ CREATE INDEX mdl_h5paatte_h5p_ix ON public.mdl_h5pactivity_attempts USING btree -- --- TOC entry 9025 (class 1259 OID 21207) +-- TOC entry 8656 (class 1259 OID 65473) -- Name: mdl_h5paatte_h5ptim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51881,7 +51886,7 @@ CREATE INDEX mdl_h5paatte_h5ptim_ix ON public.mdl_h5pactivity_attempts USING btr -- --- TOC entry 9026 (class 1259 OID 21208) +-- TOC entry 8657 (class 1259 OID 65474) -- Name: mdl_h5paatte_h5puse_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51889,7 +51894,7 @@ CREATE INDEX mdl_h5paatte_h5puse_ix ON public.mdl_h5pactivity_attempts USING btr -- --- TOC entry 9027 (class 1259 OID 21210) +-- TOC entry 8658 (class 1259 OID 65475) -- Name: mdl_h5paatte_h5puseatt_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51897,7 +51902,7 @@ CREATE UNIQUE INDEX mdl_h5paatte_h5puseatt_uix ON public.mdl_h5pactivity_attempt -- --- TOC entry 9030 (class 1259 OID 21206) +-- TOC entry 8661 (class 1259 OID 65476) -- Name: mdl_h5paatte_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51905,7 +51910,7 @@ CREATE INDEX mdl_h5paatte_tim_ix ON public.mdl_h5pactivity_attempts USING btree -- --- TOC entry 9031 (class 1259 OID 21226) +-- TOC entry 8662 (class 1259 OID 65477) -- Name: mdl_h5paatteresu_att_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51913,7 +51918,7 @@ CREATE INDEX mdl_h5paatteresu_att_ix ON public.mdl_h5pactivity_attempts_results -- --- TOC entry 9032 (class 1259 OID 21225) +-- TOC entry 8663 (class 1259 OID 65478) -- Name: mdl_h5paatteresu_atttim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51921,7 +51926,7 @@ CREATE INDEX mdl_h5paatteresu_atttim_ix ON public.mdl_h5pactivity_attempts_resul -- --- TOC entry 8725 (class 1259 OID 19815) +-- TOC entry 8638 (class 1259 OID 65479) -- Name: mdl_h5pcontlibr_h5p_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51929,7 +51934,7 @@ CREATE INDEX mdl_h5pcontlibr_h5p_ix ON public.mdl_h5p_contents_libraries USING b -- --- TOC entry 8728 (class 1259 OID 19816) +-- TOC entry 8641 (class 1259 OID 65480) -- Name: mdl_h5pcontlibr_lib_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51937,7 +51942,7 @@ CREATE INDEX mdl_h5pcontlibr_lib_ix ON public.mdl_h5p_contents_libraries USING b -- --- TOC entry 8717 (class 1259 OID 19778) +-- TOC entry 8644 (class 1259 OID 65481) -- Name: mdl_h5plibr_macmajminpatrun_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51945,7 +51950,7 @@ CREATE INDEX mdl_h5plibr_macmajminpatrun_ix ON public.mdl_h5p_libraries USING bt -- --- TOC entry 8731 (class 1259 OID 19826) +-- TOC entry 8647 (class 1259 OID 65482) -- Name: mdl_h5plibrcach_lib_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51953,7 +51958,7 @@ CREATE INDEX mdl_h5plibrcach_lib_ix ON public.mdl_h5p_libraries_cachedassets USI -- --- TOC entry 8720 (class 1259 OID 19788) +-- TOC entry 8650 (class 1259 OID 65483) -- Name: mdl_h5plibrdepe_lib_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51961,7 +51966,7 @@ CREATE INDEX mdl_h5plibrdepe_lib_ix ON public.mdl_h5p_library_dependencies USING -- --- TOC entry 8721 (class 1259 OID 19789) +-- TOC entry 8651 (class 1259 OID 65484) -- Name: mdl_h5plibrdepe_req_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51969,7 +51974,7 @@ CREATE INDEX mdl_h5plibrdepe_req_ix ON public.mdl_h5p_library_dependencies USING -- --- TOC entry 9035 (class 1259 OID 21244) +-- TOC entry 8666 (class 1259 OID 65485) -- Name: mdl_imsc_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51977,7 +51982,7 @@ CREATE INDEX mdl_imsc_cou_ix ON public.mdl_imscp USING btree (course); -- --- TOC entry 9038 (class 1259 OID 21260) +-- TOC entry 8669 (class 1259 OID 65486) -- Name: mdl_labe_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51985,7 +51990,7 @@ CREATE INDEX mdl_labe_cou_ix ON public.mdl_label USING btree (course); -- --- TOC entry 9041 (class 1259 OID 21311) +-- TOC entry 8672 (class 1259 OID 65487) -- Name: mdl_less_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51993,7 +51998,7 @@ CREATE INDEX mdl_less_cou_ix ON public.mdl_lesson USING btree (course); -- --- TOC entry 9049 (class 1259 OID 21356) +-- TOC entry 8677 (class 1259 OID 65488) -- Name: mdl_lessansw_les_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52001,7 +52006,7 @@ CREATE INDEX mdl_lessansw_les_ix ON public.mdl_lesson_answers USING btree (lesso -- --- TOC entry 9050 (class 1259 OID 21357) +-- TOC entry 8678 (class 1259 OID 65489) -- Name: mdl_lessansw_pag_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52009,7 +52014,7 @@ CREATE INDEX mdl_lessansw_pag_ix ON public.mdl_lesson_answers USING btree (pagei -- --- TOC entry 9051 (class 1259 OID 21379) +-- TOC entry 8679 (class 1259 OID 65490) -- Name: mdl_lessatte_ans_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52017,7 +52022,7 @@ CREATE INDEX mdl_lessatte_ans_ix ON public.mdl_lesson_attempts USING btree (answ -- --- TOC entry 9054 (class 1259 OID 21377) +-- TOC entry 8682 (class 1259 OID 65491) -- Name: mdl_lessatte_les_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52025,7 +52030,7 @@ CREATE INDEX mdl_lessatte_les_ix ON public.mdl_lesson_attempts USING btree (less -- --- TOC entry 9055 (class 1259 OID 21378) +-- TOC entry 8683 (class 1259 OID 65492) -- Name: mdl_lessatte_pag_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52033,7 +52038,7 @@ CREATE INDEX mdl_lessatte_pag_ix ON public.mdl_lesson_attempts USING btree (page -- --- TOC entry 9056 (class 1259 OID 21376) +-- TOC entry 8684 (class 1259 OID 65493) -- Name: mdl_lessatte_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52041,7 +52046,7 @@ CREATE INDEX mdl_lessatte_use_ix ON public.mdl_lesson_attempts USING btree (user -- --- TOC entry 9067 (class 1259 OID 21427) +-- TOC entry 8687 (class 1259 OID 65494) -- Name: mdl_lessbran_les_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52049,7 +52054,7 @@ CREATE INDEX mdl_lessbran_les_ix ON public.mdl_lesson_branch USING btree (lesson -- --- TOC entry 9068 (class 1259 OID 21428) +-- TOC entry 8688 (class 1259 OID 65495) -- Name: mdl_lessbran_pag_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52057,7 +52062,7 @@ CREATE INDEX mdl_lessbran_pag_ix ON public.mdl_lesson_branch USING btree (pageid -- --- TOC entry 9069 (class 1259 OID 21426) +-- TOC entry 8689 (class 1259 OID 65496) -- Name: mdl_lessbran_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52065,7 +52070,7 @@ CREATE INDEX mdl_lessbran_use_ix ON public.mdl_lesson_branch USING btree (userid -- --- TOC entry 9059 (class 1259 OID 21394) +-- TOC entry 8692 (class 1259 OID 65497) -- Name: mdl_lessgrad_les_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52073,7 +52078,7 @@ CREATE INDEX mdl_lessgrad_les_ix ON public.mdl_lesson_grades USING btree (lesson -- --- TOC entry 9060 (class 1259 OID 21393) +-- TOC entry 8693 (class 1259 OID 65498) -- Name: mdl_lessgrad_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52081,7 +52086,7 @@ CREATE INDEX mdl_lessgrad_use_ix ON public.mdl_lesson_grades USING btree (userid -- --- TOC entry 9070 (class 1259 OID 21439) +-- TOC entry 8694 (class 1259 OID 65499) -- Name: mdl_lessover_gro_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52089,7 +52094,7 @@ CREATE INDEX mdl_lessover_gro_ix ON public.mdl_lesson_overrides USING btree (gro -- --- TOC entry 9073 (class 1259 OID 21438) +-- TOC entry 8697 (class 1259 OID 65500) -- Name: mdl_lessover_les_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52097,7 +52102,7 @@ CREATE INDEX mdl_lessover_les_ix ON public.mdl_lesson_overrides USING btree (les -- --- TOC entry 9074 (class 1259 OID 21440) +-- TOC entry 8698 (class 1259 OID 65501) -- Name: mdl_lessover_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52105,7 +52110,7 @@ CREATE INDEX mdl_lessover_use_ix ON public.mdl_lesson_overrides USING btree (use -- --- TOC entry 9046 (class 1259 OID 21334) +-- TOC entry 8701 (class 1259 OID 65502) -- Name: mdl_lesspage_les_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52113,7 +52118,7 @@ CREATE INDEX mdl_lesspage_les_ix ON public.mdl_lesson_pages USING btree (lessoni -- --- TOC entry 9063 (class 1259 OID 21410) +-- TOC entry 8704 (class 1259 OID 65503) -- Name: mdl_lesstime_les_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52121,7 +52126,7 @@ CREATE INDEX mdl_lesstime_les_ix ON public.mdl_lesson_timer USING btree (lessoni -- --- TOC entry 9064 (class 1259 OID 21409) +-- TOC entry 8705 (class 1259 OID 65504) -- Name: mdl_lesstime_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52129,7 +52134,7 @@ CREATE INDEX mdl_lesstime_use_ix ON public.mdl_lesson_timer USING btree (userid) -- --- TOC entry 8545 (class 1259 OID 19183) +-- TOC entry 8708 (class 1259 OID 65505) -- Name: mdl_lockdb_exp_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52137,7 +52142,7 @@ CREATE INDEX mdl_lockdb_exp_ix ON public.mdl_lock_db USING btree (expires); -- --- TOC entry 8548 (class 1259 OID 19184) +-- TOC entry 8711 (class 1259 OID 65506) -- Name: mdl_lockdb_own_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52145,7 +52150,7 @@ CREATE INDEX mdl_lockdb_own_ix ON public.mdl_lock_db USING btree (owner); -- --- TOC entry 8549 (class 1259 OID 19182) +-- TOC entry 8712 (class 1259 OID 65507) -- Name: mdl_lockdb_res_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52153,7 +52158,7 @@ CREATE UNIQUE INDEX mdl_lockdb_res_uix ON public.mdl_lock_db USING btree (resour -- --- TOC entry 7893 (class 1259 OID 16804) +-- TOC entry 8713 (class 1259 OID 65508) -- Name: mdl_log_act_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52161,7 +52166,7 @@ CREATE INDEX mdl_log_act_ix ON public.mdl_log USING btree (action); -- --- TOC entry 7894 (class 1259 OID 16806) +-- TOC entry 8714 (class 1259 OID 65509) -- Name: mdl_log_cmi_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52169,7 +52174,7 @@ CREATE INDEX mdl_log_cmi_ix ON public.mdl_log USING btree (cmid); -- --- TOC entry 7895 (class 1259 OID 16802) +-- TOC entry 8715 (class 1259 OID 65510) -- Name: mdl_log_coumodact_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52177,7 +52182,7 @@ CREATE INDEX mdl_log_coumodact_ix ON public.mdl_log USING btree (course, module, -- --- TOC entry 7898 (class 1259 OID 16803) +-- TOC entry 8718 (class 1259 OID 65511) -- Name: mdl_log_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52185,7 +52190,7 @@ CREATE INDEX mdl_log_tim_ix ON public.mdl_log USING btree ("time"); -- --- TOC entry 7899 (class 1259 OID 16805) +-- TOC entry 8719 (class 1259 OID 65512) -- Name: mdl_log_usecou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52193,7 +52198,7 @@ CREATE INDEX mdl_log_usecou_ix ON public.mdl_log USING btree (userid, course); -- --- TOC entry 7904 (class 1259 OID 16832) +-- TOC entry 8722 (class 1259 OID 65513) -- Name: mdl_logdisp_modact_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52201,7 +52206,7 @@ CREATE UNIQUE INDEX mdl_logdisp_modact_uix ON public.mdl_log_display USING btree -- --- TOC entry 9547 (class 1259 OID 23393) +-- TOC entry 8725 (class 1259 OID 65514) -- Name: mdl_logsstanlog_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52209,7 +52214,7 @@ CREATE INDEX mdl_logsstanlog_con_ix ON public.mdl_logstore_standard_log USING bt -- --- TOC entry 9548 (class 1259 OID 23391) +-- TOC entry 8726 (class 1259 OID 65515) -- Name: mdl_logsstanlog_couanotim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52217,7 +52222,7 @@ CREATE INDEX mdl_logsstanlog_couanotim_ix ON public.mdl_logstore_standard_log US -- --- TOC entry 9551 (class 1259 OID 23390) +-- TOC entry 8729 (class 1259 OID 65516) -- Name: mdl_logsstanlog_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52225,7 +52230,7 @@ CREATE INDEX mdl_logsstanlog_tim_ix ON public.mdl_logstore_standard_log USING bt -- --- TOC entry 9552 (class 1259 OID 23392) +-- TOC entry 8730 (class 1259 OID 65517) -- Name: mdl_logsstanlog_useconconcr_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52233,7 +52238,7 @@ CREATE INDEX mdl_logsstanlog_useconconcr_ix ON public.mdl_logstore_standard_log -- --- TOC entry 9075 (class 1259 OID 21462) +-- TOC entry 8731 (class 1259 OID 65518) -- Name: mdl_lti_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52241,7 +52246,7 @@ CREATE INDEX mdl_lti_cou_ix ON public.mdl_lti USING btree (course); -- --- TOC entry 9100 (class 1259 OID 21545) +-- TOC entry 8736 (class 1259 OID 65519) -- Name: mdl_ltiaccetoke_tok_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52249,7 +52254,7 @@ CREATE UNIQUE INDEX mdl_ltiaccetoke_tok_uix ON public.mdl_lti_access_tokens USIN -- --- TOC entry 9101 (class 1259 OID 21546) +-- TOC entry 8737 (class 1259 OID 65520) -- Name: mdl_ltiaccetoke_typ_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52257,7 +52262,7 @@ CREATE INDEX mdl_ltiaccetoke_typ_ix ON public.mdl_lti_access_tokens USING btree -- --- TOC entry 9501 (class 1259 OID 23206) +-- TOC entry 8758 (class 1259 OID 65521) -- Name: mdl_ltisgrad_gracou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52265,7 +52270,7 @@ CREATE INDEX mdl_ltisgrad_gracou_ix ON public.mdl_ltiservice_gradebookservices U -- --- TOC entry 9504 (class 1259 OID 23205) +-- TOC entry 8761 (class 1259 OID 65522) -- Name: mdl_ltisgrad_lti_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52273,7 +52278,7 @@ CREATE INDEX mdl_ltisgrad_lti_ix ON public.mdl_ltiservice_gradebookservices USIN -- --- TOC entry 9097 (class 1259 OID 21532) +-- TOC entry 8740 (class 1259 OID 65523) -- Name: mdl_ltisubm_lti_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52281,7 +52286,7 @@ CREATE INDEX mdl_ltisubm_lti_ix ON public.mdl_lti_submission USING btree (ltiid) -- --- TOC entry 9078 (class 1259 OID 21476) +-- TOC entry 8741 (class 1259 OID 65524) -- Name: mdl_ltitoolprox_gui_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52289,7 +52294,7 @@ CREATE UNIQUE INDEX mdl_ltitoolprox_gui_uix ON public.mdl_lti_tool_proxies USING -- --- TOC entry 9089 (class 1259 OID 21523) +-- TOC entry 8744 (class 1259 OID 65525) -- Name: mdl_ltitoolsett_cou2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52297,7 +52302,7 @@ CREATE INDEX mdl_ltitoolsett_cou2_ix ON public.mdl_lti_tool_settings USING btree -- --- TOC entry 9090 (class 1259 OID 21522) +-- TOC entry 8745 (class 1259 OID 65526) -- Name: mdl_ltitoolsett_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52305,7 +52310,7 @@ CREATE INDEX mdl_ltitoolsett_cou_ix ON public.mdl_lti_tool_settings USING btree -- --- TOC entry 9093 (class 1259 OID 21520) +-- TOC entry 8748 (class 1259 OID 65527) -- Name: mdl_ltitoolsett_too_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52313,7 +52318,7 @@ CREATE INDEX mdl_ltitoolsett_too_ix ON public.mdl_lti_tool_settings USING btree -- --- TOC entry 9094 (class 1259 OID 21521) +-- TOC entry 8749 (class 1259 OID 65528) -- Name: mdl_ltitoolsett_typ_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52321,7 +52326,7 @@ CREATE INDEX mdl_ltitoolsett_typ_ix ON public.mdl_lti_tool_settings USING btree -- --- TOC entry 9081 (class 1259 OID 21495) +-- TOC entry 8750 (class 1259 OID 65529) -- Name: mdl_ltitype_cli_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52329,7 +52334,7 @@ CREATE UNIQUE INDEX mdl_ltitype_cli_uix ON public.mdl_lti_types USING btree (cli -- --- TOC entry 9082 (class 1259 OID 21493) +-- TOC entry 8751 (class 1259 OID 65530) -- Name: mdl_ltitype_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52337,7 +52342,7 @@ CREATE INDEX mdl_ltitype_cou_ix ON public.mdl_lti_types USING btree (course); -- --- TOC entry 9085 (class 1259 OID 21494) +-- TOC entry 8754 (class 1259 OID 65531) -- Name: mdl_ltitype_too_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52345,7 +52350,7 @@ CREATE INDEX mdl_ltitype_too_ix ON public.mdl_lti_types USING btree (tooldomain) -- --- TOC entry 9088 (class 1259 OID 21508) +-- TOC entry 8757 (class 1259 OID 65532) -- Name: mdl_ltitypeconf_typ_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52353,7 +52358,7 @@ CREATE INDEX mdl_ltitypeconf_typ_ix ON public.mdl_lti_types_config USING btree ( -- --- TOC entry 7916 (class 1259 OID 16892) +-- TOC entry 8837 (class 1259 OID 65533) -- Name: mdl_mess_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52361,7 +52366,7 @@ CREATE INDEX mdl_mess_con_ix ON public.mdl_messages USING btree (conversationid) -- --- TOC entry 7917 (class 1259 OID 16890) +-- TOC entry 8838 (class 1259 OID 65534) -- Name: mdl_mess_contim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52369,7 +52374,7 @@ CREATE INDEX mdl_mess_contim_ix ON public.mdl_messages USING btree (conversation -- --- TOC entry 7920 (class 1259 OID 16891) +-- TOC entry 8841 (class 1259 OID 65535) -- Name: mdl_mess_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52377,7 +52382,7 @@ CREATE INDEX mdl_mess_use_ix ON public.mdl_messages USING btree (useridfrom); -- --- TOC entry 7907 (class 1259 OID 16853) +-- TOC entry 8764 (class 1259 OID 65536) -- Name: mdl_mess_usetimnot2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52385,7 +52390,7 @@ CREATE INDEX mdl_mess_usetimnot2_ix ON public.mdl_message USING btree (useridto, -- --- TOC entry 7908 (class 1259 OID 16852) +-- TOC entry 8765 (class 1259 OID 65537) -- Name: mdl_mess_usetimnot_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52393,7 +52398,7 @@ CREATE INDEX mdl_mess_usetimnot_ix ON public.mdl_message USING btree (useridfrom -- --- TOC entry 7909 (class 1259 OID 16851) +-- TOC entry 8766 (class 1259 OID 65538) -- Name: mdl_mess_useusetimtim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52401,7 +52406,7 @@ CREATE INDEX mdl_mess_useusetimtim_ix ON public.mdl_message USING btree (useridf -- --- TOC entry 9317 (class 1259 OID 22521) +-- TOC entry 8769 (class 1259 OID 65539) -- Name: mdl_messairndevi_use_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52409,7 +52414,7 @@ CREATE UNIQUE INDEX mdl_messairndevi_use_uix ON public.mdl_message_airnotifier_d -- --- TOC entry 7944 (class 1259 OID 16965) +-- TOC entry 8775 (class 1259 OID 65540) -- Name: mdl_messcont_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52417,7 +52422,7 @@ CREATE INDEX mdl_messcont_con_ix ON public.mdl_message_contacts USING btree (con -- --- TOC entry 7947 (class 1259 OID 16964) +-- TOC entry 8778 (class 1259 OID 65541) -- Name: mdl_messcont_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52425,7 +52430,7 @@ CREATE INDEX mdl_messcont_use_ix ON public.mdl_message_contacts USING btree (use -- --- TOC entry 7948 (class 1259 OID 16963) +-- TOC entry 8779 (class 1259 OID 65542) -- Name: mdl_messcont_usecon_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52433,7 +52438,7 @@ CREATE UNIQUE INDEX mdl_messcont_usecon_uix ON public.mdl_message_contacts USING -- --- TOC entry 7951 (class 1259 OID 16976) +-- TOC entry 8772 (class 1259 OID 65543) -- Name: mdl_messcontrequ_req_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52441,7 +52446,7 @@ CREATE INDEX mdl_messcontrequ_req_ix ON public.mdl_message_contact_requests USIN -- --- TOC entry 7952 (class 1259 OID 16975) +-- TOC entry 8773 (class 1259 OID 65544) -- Name: mdl_messcontrequ_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52449,7 +52454,7 @@ CREATE INDEX mdl_messcontrequ_use_ix ON public.mdl_message_contact_requests USIN -- --- TOC entry 7953 (class 1259 OID 16974) +-- TOC entry 8774 (class 1259 OID 65545) -- Name: mdl_messcontrequ_usereq_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52457,7 +52462,7 @@ CREATE UNIQUE INDEX mdl_messcontrequ_usereq_uix ON public.mdl_message_contact_re -- --- TOC entry 7921 (class 1259 OID 16908) +-- TOC entry 8788 (class 1259 OID 65546) -- Name: mdl_messconv_comiteitecon_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52465,7 +52470,7 @@ CREATE INDEX mdl_messconv_comiteitecon_ix ON public.mdl_message_conversations US -- --- TOC entry 7922 (class 1259 OID 16909) +-- TOC entry 8789 (class 1259 OID 65547) -- Name: mdl_messconv_con2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52473,7 +52478,7 @@ CREATE INDEX mdl_messconv_con2_ix ON public.mdl_message_conversations USING btre -- --- TOC entry 7923 (class 1259 OID 16907) +-- TOC entry 8790 (class 1259 OID 65548) -- Name: mdl_messconv_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52481,7 +52486,7 @@ CREATE INDEX mdl_messconv_con_ix ON public.mdl_message_conversations USING btree -- --- TOC entry 7926 (class 1259 OID 16906) +-- TOC entry 8793 (class 1259 OID 65549) -- Name: mdl_messconv_typ_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52489,7 +52494,7 @@ CREATE INDEX mdl_messconv_typ_ix ON public.mdl_message_conversations USING btree -- --- TOC entry 7931 (class 1259 OID 16929) +-- TOC entry 8780 (class 1259 OID 65550) -- Name: mdl_messconvacti_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52497,7 +52502,7 @@ CREATE INDEX mdl_messconvacti_con_ix ON public.mdl_message_conversation_actions -- --- TOC entry 7934 (class 1259 OID 16928) +-- TOC entry 8783 (class 1259 OID 65551) -- Name: mdl_messconvacti_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52505,7 +52510,7 @@ CREATE INDEX mdl_messconvacti_use_ix ON public.mdl_message_conversation_actions -- --- TOC entry 7927 (class 1259 OID 16918) +-- TOC entry 8784 (class 1259 OID 65552) -- Name: mdl_messconvmemb_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52513,7 +52518,7 @@ CREATE INDEX mdl_messconvmemb_con_ix ON public.mdl_message_conversation_members -- --- TOC entry 7930 (class 1259 OID 16919) +-- TOC entry 8787 (class 1259 OID 65553) -- Name: mdl_messconvmemb_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52521,7 +52526,7 @@ CREATE INDEX mdl_messconvmemb_use_ix ON public.mdl_message_conversation_members -- --- TOC entry 8564 (class 1259 OID 19261) +-- TOC entry 8827 (class 1259 OID 65554) -- Name: mdl_messdata_han_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52529,7 +52534,7 @@ CREATE INDEX mdl_messdata_han_ix ON public.mdl_messageinbound_datakeys USING btr -- --- TOC entry 8565 (class 1259 OID 19260) +-- TOC entry 8828 (class 1259 OID 65555) -- Name: mdl_messdata_handat_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52537,7 +52542,7 @@ CREATE UNIQUE INDEX mdl_messdata_handat_uix ON public.mdl_messageinbound_datakey -- --- TOC entry 9318 (class 1259 OID 22531) +-- TOC entry 8794 (class 1259 OID 65556) -- Name: mdl_messemaimess_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52545,7 +52550,7 @@ CREATE INDEX mdl_messemaimess_con_ix ON public.mdl_message_email_messages USING -- --- TOC entry 9321 (class 1259 OID 22532) +-- TOC entry 8797 (class 1259 OID 65557) -- Name: mdl_messemaimess_mes_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52553,7 +52558,7 @@ CREATE INDEX mdl_messemaimess_mes_ix ON public.mdl_message_email_messages USING -- --- TOC entry 9322 (class 1259 OID 22530) +-- TOC entry 8798 (class 1259 OID 65558) -- Name: mdl_messemaimess_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52561,7 +52566,7 @@ CREATE INDEX mdl_messemaimess_use_ix ON public.mdl_message_email_messages USING -- --- TOC entry 8561 (class 1259 OID 19251) +-- TOC entry 8831 (class 1259 OID 65559) -- Name: mdl_messhand_cla_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52569,7 +52574,7 @@ CREATE UNIQUE INDEX mdl_messhand_cla_uix ON public.mdl_messageinbound_handlers U -- --- TOC entry 8570 (class 1259 OID 19273) +-- TOC entry 8836 (class 1259 OID 65560) -- Name: mdl_messmess_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52577,7 +52582,7 @@ CREATE INDEX mdl_messmess_use_ix ON public.mdl_messageinbound_messagelist USING -- --- TOC entry 9325 (class 1259 OID 22543) +-- TOC entry 8801 (class 1259 OID 65561) -- Name: mdl_messpopu_isr_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52585,7 +52590,7 @@ CREATE INDEX mdl_messpopu_isr_ix ON public.mdl_message_popup USING btree (isread -- --- TOC entry 9326 (class 1259 OID 22542) +-- TOC entry 8802 (class 1259 OID 65562) -- Name: mdl_messpopu_mesisr_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52593,7 +52598,7 @@ CREATE UNIQUE INDEX mdl_messpopu_mesisr_uix ON public.mdl_message_popup USING bt -- --- TOC entry 9329 (class 1259 OID 22552) +-- TOC entry 8805 (class 1259 OID 65563) -- Name: mdl_messpopunoti_not_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52601,7 +52606,7 @@ CREATE INDEX mdl_messpopunoti_not_ix ON public.mdl_message_popup_notifications U -- --- TOC entry 8358 (class 1259 OID 18486) +-- TOC entry 8808 (class 1259 OID 65564) -- Name: mdl_messprov_comnam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52609,7 +52614,7 @@ CREATE UNIQUE INDEX mdl_messprov_comnam_uix ON public.mdl_message_providers USIN -- --- TOC entry 7912 (class 1259 OID 16874) +-- TOC entry 8813 (class 1259 OID 65565) -- Name: mdl_messread_nottim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52617,7 +52622,7 @@ CREATE INDEX mdl_messread_nottim_ix ON public.mdl_message_read USING btree (noti -- --- TOC entry 7913 (class 1259 OID 16876) +-- TOC entry 8814 (class 1259 OID 65566) -- Name: mdl_messread_usetimnot2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52625,7 +52630,7 @@ CREATE INDEX mdl_messread_usetimnot2_ix ON public.mdl_message_read USING btree ( -- --- TOC entry 7914 (class 1259 OID 16875) +-- TOC entry 8815 (class 1259 OID 65567) -- Name: mdl_messread_usetimnot_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52633,7 +52638,7 @@ CREATE INDEX mdl_messread_usetimnot_ix ON public.mdl_message_read USING btree (u -- --- TOC entry 7915 (class 1259 OID 16873) +-- TOC entry 8816 (class 1259 OID 65568) -- Name: mdl_messread_useusetimtim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52641,7 +52646,7 @@ CREATE INDEX mdl_messread_useusetimtim_ix ON public.mdl_message_read USING btree -- --- TOC entry 7937 (class 1259 OID 16940) +-- TOC entry 8819 (class 1259 OID 65569) -- Name: mdl_messuseracti_mes_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52649,7 +52654,7 @@ CREATE INDEX mdl_messuseracti_mes_ix ON public.mdl_message_user_actions USING bt -- --- TOC entry 7938 (class 1259 OID 16939) +-- TOC entry 8820 (class 1259 OID 65570) -- Name: mdl_messuseracti_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52657,7 +52662,7 @@ CREATE INDEX mdl_messuseracti_use_ix ON public.mdl_message_user_actions USING bt -- --- TOC entry 7939 (class 1259 OID 16938) +-- TOC entry 8821 (class 1259 OID 65571) -- Name: mdl_messuseracti_usemesact_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52665,7 +52670,7 @@ CREATE UNIQUE INDEX mdl_messuseracti_usemesact_uix ON public.mdl_message_user_ac -- --- TOC entry 7954 (class 1259 OID 16987) +-- TOC entry 8822 (class 1259 OID 65572) -- Name: mdl_messuserbloc_blo_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52673,7 +52678,7 @@ CREATE INDEX mdl_messuserbloc_blo_ix ON public.mdl_message_users_blocked USING b -- --- TOC entry 7957 (class 1259 OID 16986) +-- TOC entry 8825 (class 1259 OID 65573) -- Name: mdl_messuserbloc_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52681,7 +52686,7 @@ CREATE INDEX mdl_messuserbloc_use_ix ON public.mdl_message_users_blocked USING b -- --- TOC entry 7958 (class 1259 OID 16985) +-- TOC entry 8826 (class 1259 OID 65574) -- Name: mdl_messuserbloc_useblo_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52689,7 +52694,7 @@ CREATE UNIQUE INDEX mdl_messuserbloc_useblo_uix ON public.mdl_message_users_bloc -- --- TOC entry 9367 (class 1259 OID 22703) +-- TOC entry 8872 (class 1259 OID 65575) -- Name: mdl_mnetenrocour_hosrem_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52697,7 +52702,7 @@ CREATE UNIQUE INDEX mdl_mnetenrocour_hosrem_uix ON public.mdl_mnetservice_enrol_ -- --- TOC entry 9370 (class 1259 OID 22716) +-- TOC entry 8875 (class 1259 OID 65576) -- Name: mdl_mnetenroenro_hos_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52705,7 +52710,7 @@ CREATE INDEX mdl_mnetenroenro_hos_ix ON public.mdl_mnetservice_enrol_enrolments -- --- TOC entry 9373 (class 1259 OID 22715) +-- TOC entry 8878 (class 1259 OID 65577) -- Name: mdl_mnetenroenro_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52713,7 +52718,7 @@ CREATE INDEX mdl_mnetenroenro_use_ix ON public.mdl_mnetservice_enrol_enrolments -- --- TOC entry 8163 (class 1259 OID 17746) +-- TOC entry 8844 (class 1259 OID 65578) -- Name: mdl_mnethost_app_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52721,7 +52726,7 @@ CREATE INDEX mdl_mnethost_app_ix ON public.mdl_mnet_host USING btree (applicatio -- --- TOC entry 8166 (class 1259 OID 17759) +-- TOC entry 8847 (class 1259 OID 65579) -- Name: mdl_mnethost_hosser_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52729,7 +52734,7 @@ CREATE UNIQUE INDEX mdl_mnethost_hosser_uix ON public.mdl_mnet_host2service USIN -- --- TOC entry 8169 (class 1259 OID 17783) +-- TOC entry 8850 (class 1259 OID 65580) -- Name: mdl_mnetlog_hosusecou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52737,7 +52742,7 @@ CREATE INDEX mdl_mnetlog_hosusecou_ix ON public.mdl_mnet_log USING btree (hostid -- --- TOC entry 8184 (class 1259 OID 17847) +-- TOC entry 8857 (class 1259 OID 65581) -- Name: mdl_mnetremoserv_rpcser_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52745,7 +52750,7 @@ CREATE UNIQUE INDEX mdl_mnetremoserv_rpcser_uix ON public.mdl_mnet_remote_servic -- --- TOC entry 8172 (class 1259 OID 17801) +-- TOC entry 8858 (class 1259 OID 65582) -- Name: mdl_mnetrpc_enaxml_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52753,7 +52758,7 @@ CREATE INDEX mdl_mnetrpc_enaxml_ix ON public.mdl_mnet_rpc USING btree (enabled, -- --- TOC entry 8181 (class 1259 OID 17836) +-- TOC entry 8865 (class 1259 OID 65583) -- Name: mdl_mnetserv_rpcser_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52761,7 +52766,7 @@ CREATE UNIQUE INDEX mdl_mnetserv_rpcser_uix ON public.mdl_mnet_service2rpc USING -- --- TOC entry 8187 (class 1259 OID 17864) +-- TOC entry 8868 (class 1259 OID 65584) -- Name: mdl_mnetsess_tok_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52769,7 +52774,7 @@ CREATE UNIQUE INDEX mdl_mnetsess_tok_uix ON public.mdl_mnet_session USING btree -- --- TOC entry 8190 (class 1259 OID 17876) +-- TOC entry 8871 (class 1259 OID 65585) -- Name: mdl_mnetssoaccecont_mneuse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52777,7 +52782,7 @@ CREATE UNIQUE INDEX mdl_mnetssoaccecont_mneuse_uix ON public.mdl_mnet_sso_access -- --- TOC entry 7961 (class 1259 OID 17001) +-- TOC entry 8881 (class 1259 OID 65586) -- Name: mdl_modu_nam_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52785,7 +52790,7 @@ CREATE INDEX mdl_modu_nam_ix ON public.mdl_modules USING btree (name); -- --- TOC entry 7964 (class 1259 OID 17014) +-- TOC entry 8884 (class 1259 OID 65587) -- Name: mdl_mypage_usepri_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52793,7 +52798,7 @@ CREATE INDEX mdl_mypage_usepri_ix ON public.mdl_my_pages USING btree (userid, pr -- --- TOC entry 7942 (class 1259 OID 16954) +-- TOC entry 8887 (class 1259 OID 65588) -- Name: mdl_noti_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52801,7 +52806,7 @@ CREATE INDEX mdl_noti_use2_ix ON public.mdl_notifications USING btree (useridto) -- --- TOC entry 7943 (class 1259 OID 16953) +-- TOC entry 8888 (class 1259 OID 65589) -- Name: mdl_noti_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52809,7 +52814,7 @@ CREATE INDEX mdl_noti_use_ix ON public.mdl_notifications USING btree (useridfrom -- --- TOC entry 8684 (class 1259 OID 19672) +-- TOC entry 8891 (class 1259 OID 65590) -- Name: mdl_oautaccetoke_iss_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52817,7 +52822,7 @@ CREATE UNIQUE INDEX mdl_oautaccetoke_iss_uix ON public.mdl_oauth2_access_token U -- --- TOC entry 8634 (class 1259 OID 19484) +-- TOC entry 8894 (class 1259 OID 65591) -- Name: mdl_oautendp_iss_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52825,7 +52830,7 @@ CREATE INDEX mdl_oautendp_iss_ix ON public.mdl_oauth2_endpoint USING btree (issu -- --- TOC entry 8639 (class 1259 OID 19512) +-- TOC entry 8899 (class 1259 OID 65592) -- Name: mdl_oautsystacco_iss_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52833,7 +52838,7 @@ CREATE UNIQUE INDEX mdl_oautsystacco_iss_uix ON public.mdl_oauth2_system_account -- --- TOC entry 8642 (class 1259 OID 19523) +-- TOC entry 8902 (class 1259 OID 65593) -- Name: mdl_oautuserfielmapp_iss_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52841,7 +52846,7 @@ CREATE INDEX mdl_oautuserfielmapp_iss_ix ON public.mdl_oauth2_user_field_mapping -- --- TOC entry 8643 (class 1259 OID 19524) +-- TOC entry 8903 (class 1259 OID 65594) -- Name: mdl_oautuserfielmapp_issin_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52849,7 +52854,7 @@ CREATE UNIQUE INDEX mdl_oautuserfielmapp_issin_uix ON public.mdl_oauth2_user_fie -- --- TOC entry 9102 (class 1259 OID 21566) +-- TOC entry 8904 (class 1259 OID 65595) -- Name: mdl_page_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52857,7 +52862,7 @@ CREATE INDEX mdl_page_cou_ix ON public.mdl_page USING btree (course); -- --- TOC entry 8344 (class 1259 OID 18424) +-- TOC entry 8911 (class 1259 OID 65596) -- Name: mdl_portinstconf_ins_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52865,7 +52870,7 @@ CREATE INDEX mdl_portinstconf_ins_ix ON public.mdl_portfolio_instance_config USI -- --- TOC entry 8345 (class 1259 OID 18423) +-- TOC entry 8912 (class 1259 OID 65597) -- Name: mdl_portinstconf_nam_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52873,7 +52878,7 @@ CREATE INDEX mdl_portinstconf_nam_ix ON public.mdl_portfolio_instance_config USI -- --- TOC entry 8348 (class 1259 OID 18437) +-- TOC entry 8915 (class 1259 OID 65598) -- Name: mdl_portinstuser_ins_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52881,7 +52886,7 @@ CREATE INDEX mdl_portinstuser_ins_ix ON public.mdl_portfolio_instance_user USING -- --- TOC entry 8349 (class 1259 OID 18438) +-- TOC entry 8916 (class 1259 OID 65599) -- Name: mdl_portinstuser_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52889,7 +52894,7 @@ CREATE INDEX mdl_portinstuser_use_ix ON public.mdl_portfolio_instance_user USING -- --- TOC entry 8352 (class 1259 OID 18457) +-- TOC entry 8919 (class 1259 OID 65600) -- Name: mdl_portlog_por_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52897,7 +52902,7 @@ CREATE INDEX mdl_portlog_por_ix ON public.mdl_portfolio_log USING btree (portfol -- --- TOC entry 8353 (class 1259 OID 18456) +-- TOC entry 8920 (class 1259 OID 65601) -- Name: mdl_portlog_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52905,7 +52910,7 @@ CREATE INDEX mdl_portlog_use_ix ON public.mdl_portfolio_log USING btree (userid) -- --- TOC entry 9379 (class 1259 OID 22740) +-- TOC entry 8923 (class 1259 OID 65602) -- Name: mdl_portmahaqueu_tok_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52913,7 +52918,7 @@ CREATE INDEX mdl_portmahaqueu_tok_ix ON public.mdl_portfolio_mahara_queue USING -- --- TOC entry 9380 (class 1259 OID 22741) +-- TOC entry 8924 (class 1259 OID 65603) -- Name: mdl_portmahaqueu_tra_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52921,7 +52926,7 @@ CREATE INDEX mdl_portmahaqueu_tra_ix ON public.mdl_portfolio_mahara_queue USING -- --- TOC entry 8356 (class 1259 OID 18472) +-- TOC entry 8927 (class 1259 OID 65604) -- Name: mdl_porttemp_ins_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52929,7 +52934,7 @@ CREATE INDEX mdl_porttemp_ins_ix ON public.mdl_portfolio_tempdata USING btree (i -- --- TOC entry 8357 (class 1259 OID 18471) +-- TOC entry 8928 (class 1259 OID 65605) -- Name: mdl_porttemp_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52937,7 +52942,7 @@ CREATE INDEX mdl_porttemp_use_ix ON public.mdl_portfolio_tempdata USING btree (u -- --- TOC entry 8045 (class 1259 OID 17314) +-- TOC entry 8931 (class 1259 OID 65606) -- Name: mdl_post_iduse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52945,7 +52950,7 @@ CREATE UNIQUE INDEX mdl_post_iduse_uix ON public.mdl_post USING btree (id, useri -- --- TOC entry 8046 (class 1259 OID 17315) +-- TOC entry 8932 (class 1259 OID 65607) -- Name: mdl_post_las_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52953,7 +52958,7 @@ CREATE INDEX mdl_post_las_ix ON public.mdl_post USING btree (lastmodified); -- --- TOC entry 8047 (class 1259 OID 17316) +-- TOC entry 8933 (class 1259 OID 65608) -- Name: mdl_post_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52961,7 +52966,7 @@ CREATE INDEX mdl_post_mod_ix ON public.mdl_post USING btree (module); -- --- TOC entry 8048 (class 1259 OID 17317) +-- TOC entry 8934 (class 1259 OID 65609) -- Name: mdl_post_sub_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52969,7 +52974,7 @@ CREATE INDEX mdl_post_sub_ix ON public.mdl_post USING btree (subject); -- --- TOC entry 8049 (class 1259 OID 17318) +-- TOC entry 8935 (class 1259 OID 65610) -- Name: mdl_post_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52977,7 +52982,7 @@ CREATE INDEX mdl_post_use_ix ON public.mdl_post USING btree (usermodified); -- --- TOC entry 8453 (class 1259 OID 18852) +-- TOC entry 8938 (class 1259 OID 65611) -- Name: mdl_prof_run_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52985,7 +52990,7 @@ CREATE UNIQUE INDEX mdl_prof_run_uix ON public.mdl_profiling USING btree (runid) -- --- TOC entry 8454 (class 1259 OID 18851) +-- TOC entry 8939 (class 1259 OID 65612) -- Name: mdl_prof_timrun_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52993,7 +52998,7 @@ CREATE INDEX mdl_prof_timrun_ix ON public.mdl_profiling USING btree (timecreated -- --- TOC entry 8455 (class 1259 OID 18850) +-- TOC entry 8940 (class 1259 OID 65613) -- Name: mdl_prof_urlrun_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53001,7 +53006,7 @@ CREATE INDEX mdl_prof_urlrun_ix ON public.mdl_profiling USING btree (url, runref -- --- TOC entry 8759 (class 1259 OID 19943) +-- TOC entry 8943 (class 1259 OID 65614) -- Name: mdl_qtypddim_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53009,7 +53014,7 @@ CREATE INDEX mdl_qtypddim_que_ix ON public.mdl_qtype_ddimageortext USING btree ( -- --- TOC entry 8765 (class 1259 OID 19976) +-- TOC entry 8946 (class 1259 OID 65615) -- Name: mdl_qtypddimdrag_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53017,7 +53022,7 @@ CREATE INDEX mdl_qtypddimdrag_que_ix ON public.mdl_qtype_ddimageortext_drags USI -- --- TOC entry 8762 (class 1259 OID 19960) +-- TOC entry 8949 (class 1259 OID 65616) -- Name: mdl_qtypddimdrop_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53025,7 +53030,7 @@ CREATE INDEX mdl_qtypddimdrop_que_ix ON public.mdl_qtype_ddimageortext_drops USI -- --- TOC entry 8768 (class 1259 OID 19995) +-- TOC entry 8952 (class 1259 OID 65617) -- Name: mdl_qtypddma_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53033,7 +53038,7 @@ CREATE INDEX mdl_qtypddma_que_ix ON public.mdl_qtype_ddmarker USING btree (quest -- --- TOC entry 8774 (class 1259 OID 20026) +-- TOC entry 8955 (class 1259 OID 65618) -- Name: mdl_qtypddmadrag_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53041,7 +53046,7 @@ CREATE INDEX mdl_qtypddmadrag_que_ix ON public.mdl_qtype_ddmarker_drags USING bt -- --- TOC entry 8771 (class 1259 OID 20010) +-- TOC entry 8958 (class 1259 OID 65619) -- Name: mdl_qtypddmadrop_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53049,7 +53054,7 @@ CREATE INDEX mdl_qtypddmadrop_que_ix ON public.mdl_qtype_ddmarker_drops USING bt -- --- TOC entry 8780 (class 1259 OID 20063) +-- TOC entry 8961 (class 1259 OID 65620) -- Name: mdl_qtypessaopti_que_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53057,7 +53062,7 @@ CREATE UNIQUE INDEX mdl_qtypessaopti_que_uix ON public.mdl_qtype_essay_options U -- --- TOC entry 8786 (class 1259 OID 20099) +-- TOC entry 8964 (class 1259 OID 65621) -- Name: mdl_qtypmatcopti_que_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53065,7 +53070,7 @@ CREATE UNIQUE INDEX mdl_qtypmatcopti_que_uix ON public.mdl_qtype_match_options U -- --- TOC entry 8789 (class 1259 OID 20114) +-- TOC entry 8967 (class 1259 OID 65622) -- Name: mdl_qtypmatcsubq_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53073,7 +53078,7 @@ CREATE INDEX mdl_qtypmatcsubq_que_ix ON public.mdl_qtype_match_subquestions USIN -- --- TOC entry 8795 (class 1259 OID 20149) +-- TOC entry 8970 (class 1259 OID 65623) -- Name: mdl_qtypmultopti_que_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53081,7 +53086,7 @@ CREATE UNIQUE INDEX mdl_qtypmultopti_que_uix ON public.mdl_qtype_multichoice_opt -- --- TOC entry 8809 (class 1259 OID 20208) +-- TOC entry 8973 (class 1259 OID 65624) -- Name: mdl_qtyprandopti_que_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53089,7 +53094,7 @@ CREATE UNIQUE INDEX mdl_qtyprandopti_que_uix ON public.mdl_qtype_randomsamatch_o -- --- TOC entry 8812 (class 1259 OID 20219) +-- TOC entry 8976 (class 1259 OID 65625) -- Name: mdl_qtypshoropti_que_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53097,7 +53102,7 @@ CREATE UNIQUE INDEX mdl_qtypshoropti_que_uix ON public.mdl_qtype_shortanswer_opt -- --- TOC entry 8123 (class 1259 OID 17582) +-- TOC entry 8977 (class 1259 OID 65626) -- Name: mdl_ques_cat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53105,7 +53110,7 @@ CREATE INDEX mdl_ques_cat_ix ON public.mdl_question USING btree (category); -- --- TOC entry 8124 (class 1259 OID 17581) +-- TOC entry 8978 (class 1259 OID 65627) -- Name: mdl_ques_catidn_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53113,7 +53118,7 @@ CREATE UNIQUE INDEX mdl_ques_catidn_uix ON public.mdl_question USING btree (cate -- --- TOC entry 8125 (class 1259 OID 17584) +-- TOC entry 8979 (class 1259 OID 65628) -- Name: mdl_ques_cre_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53121,7 +53126,7 @@ CREATE INDEX mdl_ques_cre_ix ON public.mdl_question USING btree (createdby); -- --- TOC entry 8128 (class 1259 OID 17585) +-- TOC entry 8982 (class 1259 OID 65629) -- Name: mdl_ques_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53129,7 +53134,7 @@ CREATE INDEX mdl_ques_mod_ix ON public.mdl_question USING btree (modifiedby); -- --- TOC entry 8129 (class 1259 OID 17583) +-- TOC entry 8983 (class 1259 OID 65630) -- Name: mdl_ques_par_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53137,7 +53142,7 @@ CREATE INDEX mdl_ques_par_ix ON public.mdl_question USING btree (parent); -- --- TOC entry 8130 (class 1259 OID 17580) +-- TOC entry 8984 (class 1259 OID 65631) -- Name: mdl_ques_qty_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53145,7 +53150,7 @@ CREATE INDEX mdl_ques_qty_ix ON public.mdl_question USING btree (qtype); -- --- TOC entry 8133 (class 1259 OID 17601) +-- TOC entry 8987 (class 1259 OID 65632) -- Name: mdl_quesansw_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53153,7 +53158,7 @@ CREATE INDEX mdl_quesansw_que_ix ON public.mdl_question_answers USING btree (que -- --- TOC entry 8140 (class 1259 OID 17642) +-- TOC entry 8996 (class 1259 OID 65633) -- Name: mdl_quesatte_beh_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53161,7 +53166,7 @@ CREATE INDEX mdl_quesatte_beh_ix ON public.mdl_question_attempts USING btree (be -- --- TOC entry 8143 (class 1259 OID 17644) +-- TOC entry 8999 (class 1259 OID 65634) -- Name: mdl_quesatte_que2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53169,7 +53174,7 @@ CREATE INDEX mdl_quesatte_que2_ix ON public.mdl_question_attempts USING btree (q -- --- TOC entry 8144 (class 1259 OID 17643) +-- TOC entry 9000 (class 1259 OID 65635) -- Name: mdl_quesatte_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53177,7 +53182,7 @@ CREATE INDEX mdl_quesatte_que_ix ON public.mdl_question_attempts USING btree (qu -- --- TOC entry 8145 (class 1259 OID 17641) +-- TOC entry 9001 (class 1259 OID 65636) -- Name: mdl_quesatte_queslo_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53185,7 +53190,7 @@ CREATE UNIQUE INDEX mdl_quesatte_queslo_uix ON public.mdl_question_attempts USIN -- --- TOC entry 8148 (class 1259 OID 17655) +-- TOC entry 8993 (class 1259 OID 65637) -- Name: mdl_quesattestep_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53193,7 +53198,7 @@ CREATE INDEX mdl_quesattestep_que_ix ON public.mdl_question_attempt_steps USING -- --- TOC entry 8149 (class 1259 OID 17654) +-- TOC entry 8994 (class 1259 OID 65638) -- Name: mdl_quesattestep_queseq_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53201,7 +53206,7 @@ CREATE UNIQUE INDEX mdl_quesattestep_queseq_uix ON public.mdl_question_attempt_s -- --- TOC entry 8150 (class 1259 OID 17656) +-- TOC entry 8995 (class 1259 OID 65639) -- Name: mdl_quesattestep_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53209,7 +53214,7 @@ CREATE INDEX mdl_quesattestep_use_ix ON public.mdl_question_attempt_steps USING -- --- TOC entry 8151 (class 1259 OID 17669) +-- TOC entry 8988 (class 1259 OID 65640) -- Name: mdl_quesattestepdata_att_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53217,7 +53222,7 @@ CREATE INDEX mdl_quesattestepdata_att_ix ON public.mdl_question_attempt_step_dat -- --- TOC entry 8739 (class 1259 OID 19861) +-- TOC entry 9002 (class 1259 OID 65641) -- Name: mdl_quescalc_ans_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53225,7 +53230,7 @@ CREATE INDEX mdl_quescalc_ans_ix ON public.mdl_question_calculated USING btree ( -- --- TOC entry 8742 (class 1259 OID 19862) +-- TOC entry 9005 (class 1259 OID 65642) -- Name: mdl_quescalc_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53233,7 +53238,7 @@ CREATE INDEX mdl_quescalc_que_ix ON public.mdl_question_calculated USING btree ( -- --- TOC entry 8745 (class 1259 OID 19883) +-- TOC entry 9008 (class 1259 OID 65643) -- Name: mdl_quescalcopti_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53241,7 +53246,7 @@ CREATE INDEX mdl_quescalcopti_que_ix ON public.mdl_question_calculated_options U -- --- TOC entry 8117 (class 1259 OID 17551) +-- TOC entry 9009 (class 1259 OID 65644) -- Name: mdl_quescate_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53249,7 +53254,7 @@ CREATE INDEX mdl_quescate_con_ix ON public.mdl_question_categories USING btree ( -- --- TOC entry 8118 (class 1259 OID 17553) +-- TOC entry 9010 (class 1259 OID 65645) -- Name: mdl_quescate_conidn_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53257,7 +53262,7 @@ CREATE UNIQUE INDEX mdl_quescate_conidn_uix ON public.mdl_question_categories US -- --- TOC entry 8119 (class 1259 OID 17552) +-- TOC entry 9011 (class 1259 OID 65646) -- Name: mdl_quescate_consta_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53265,7 +53270,7 @@ CREATE UNIQUE INDEX mdl_quescate_consta_uix ON public.mdl_question_categories US -- --- TOC entry 8122 (class 1259 OID 17554) +-- TOC entry 9014 (class 1259 OID 65647) -- Name: mdl_quescate_par_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53273,7 +53278,7 @@ CREATE INDEX mdl_quescate_par_ix ON public.mdl_question_categories USING btree ( -- --- TOC entry 8752 (class 1259 OID 19925) +-- TOC entry 9021 (class 1259 OID 65648) -- Name: mdl_quesdata_dat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53281,7 +53286,7 @@ CREATE INDEX mdl_quesdata_dat_ix ON public.mdl_question_datasets USING btree (da -- --- TOC entry 8755 (class 1259 OID 19924) +-- TOC entry 9024 (class 1259 OID 65649) -- Name: mdl_quesdata_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53289,7 +53294,7 @@ CREATE INDEX mdl_quesdata_que_ix ON public.mdl_question_datasets USING btree (qu -- --- TOC entry 8756 (class 1259 OID 19923) +-- TOC entry 9025 (class 1259 OID 65650) -- Name: mdl_quesdata_quedat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53297,7 +53302,7 @@ CREATE INDEX mdl_quesdata_quedat_ix ON public.mdl_question_datasets USING btree -- --- TOC entry 8746 (class 1259 OID 19900) +-- TOC entry 9015 (class 1259 OID 65651) -- Name: mdl_quesdatadefi_cat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53305,7 +53310,7 @@ CREATE INDEX mdl_quesdatadefi_cat_ix ON public.mdl_question_dataset_definitions -- --- TOC entry 8749 (class 1259 OID 19912) +-- TOC entry 9018 (class 1259 OID 65652) -- Name: mdl_quesdataitem_def_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53313,7 +53318,7 @@ CREATE INDEX mdl_quesdataitem_def_ix ON public.mdl_question_dataset_items USING -- --- TOC entry 8777 (class 1259 OID 20044) +-- TOC entry 9028 (class 1259 OID 65653) -- Name: mdl_quesddwt_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53321,7 +53326,7 @@ CREATE INDEX mdl_quesddwt_que_ix ON public.mdl_question_ddwtos USING btree (ques -- --- TOC entry 8783 (class 1259 OID 20081) +-- TOC entry 9031 (class 1259 OID 65654) -- Name: mdl_quesgaps_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53329,7 +53334,7 @@ CREATE INDEX mdl_quesgaps_que_ix ON public.mdl_question_gapselect USING btree (q -- --- TOC entry 8136 (class 1259 OID 17614) +-- TOC entry 9034 (class 1259 OID 65655) -- Name: mdl_queshint_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53337,7 +53342,7 @@ CREATE INDEX mdl_queshint_que_ix ON public.mdl_question_hints USING btree (quest -- --- TOC entry 8792 (class 1259 OID 20127) +-- TOC entry 9037 (class 1259 OID 65656) -- Name: mdl_quesmult_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53345,7 +53350,7 @@ CREATE INDEX mdl_quesmult_que_ix ON public.mdl_question_multianswer USING btree -- --- TOC entry 8796 (class 1259 OID 20161) +-- TOC entry 9038 (class 1259 OID 65657) -- Name: mdl_quesnume_ans_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53353,7 +53358,7 @@ CREATE INDEX mdl_quesnume_ans_ix ON public.mdl_question_numerical USING btree (a -- --- TOC entry 8799 (class 1259 OID 20162) +-- TOC entry 9041 (class 1259 OID 65658) -- Name: mdl_quesnume_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53361,7 +53366,7 @@ CREATE INDEX mdl_quesnume_que_ix ON public.mdl_question_numerical USING btree (q -- --- TOC entry 8802 (class 1259 OID 20176) +-- TOC entry 9044 (class 1259 OID 65659) -- Name: mdl_quesnumeopti_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53369,7 +53374,7 @@ CREATE INDEX mdl_quesnumeopti_que_ix ON public.mdl_question_numerical_options US -- --- TOC entry 8805 (class 1259 OID 20189) +-- TOC entry 9047 (class 1259 OID 65660) -- Name: mdl_quesnumeunit_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53377,7 +53382,7 @@ CREATE INDEX mdl_quesnumeunit_que_ix ON public.mdl_question_numerical_units USIN -- --- TOC entry 8806 (class 1259 OID 20188) +-- TOC entry 9048 (class 1259 OID 65661) -- Name: mdl_quesnumeunit_queuni_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53385,7 +53390,7 @@ CREATE UNIQUE INDEX mdl_quesnumeunit_queuni_uix ON public.mdl_question_numerical -- --- TOC entry 8158 (class 1259 OID 17706) +-- TOC entry 9051 (class 1259 OID 65662) -- Name: mdl_quesrespcoun_ana_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53393,7 +53398,7 @@ CREATE INDEX mdl_quesrespcoun_ana_ix ON public.mdl_question_response_count USING -- --- TOC entry 8815 (class 1259 OID 20231) +-- TOC entry 9058 (class 1259 OID 65663) -- Name: mdl_questrue_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53401,7 +53406,7 @@ CREATE INDEX mdl_questrue_que_ix ON public.mdl_question_truefalse USING btree (q -- --- TOC entry 8137 (class 1259 OID 17625) +-- TOC entry 9059 (class 1259 OID 65664) -- Name: mdl_quesusag_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53409,7 +53414,7 @@ CREATE INDEX mdl_quesusag_con_ix ON public.mdl_question_usages USING btree (cont -- --- TOC entry 9105 (class 1259 OID 21617) +-- TOC entry 9062 (class 1259 OID 65665) -- Name: mdl_quiz_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53417,7 +53422,7 @@ CREATE INDEX mdl_quiz_cou_ix ON public.mdl_quiz USING btree (course); -- --- TOC entry 9128 (class 1259 OID 21701) +-- TOC entry 9067 (class 1259 OID 65666) -- Name: mdl_quizatte_qui_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53425,7 +53430,7 @@ CREATE INDEX mdl_quizatte_qui_ix ON public.mdl_quiz_attempts USING btree (quiz); -- --- TOC entry 9129 (class 1259 OID 21699) +-- TOC entry 9068 (class 1259 OID 65667) -- Name: mdl_quizatte_quiuseatt_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53433,7 +53438,7 @@ CREATE UNIQUE INDEX mdl_quizatte_quiuseatt_uix ON public.mdl_quiz_attempts USING -- --- TOC entry 9130 (class 1259 OID 21700) +-- TOC entry 9069 (class 1259 OID 65668) -- Name: mdl_quizatte_statim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53441,7 +53446,7 @@ CREATE INDEX mdl_quizatte_statim_ix ON public.mdl_quiz_attempts USING btree (sta -- --- TOC entry 9131 (class 1259 OID 21703) +-- TOC entry 9070 (class 1259 OID 65669) -- Name: mdl_quizatte_uni_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53449,7 +53454,7 @@ CREATE UNIQUE INDEX mdl_quizatte_uni_uix ON public.mdl_quiz_attempts USING btree -- --- TOC entry 9132 (class 1259 OID 21702) +-- TOC entry 9071 (class 1259 OID 65670) -- Name: mdl_quizatte_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53457,7 +53462,7 @@ CREATE INDEX mdl_quizatte_use_ix ON public.mdl_quiz_attempts USING btree (userid -- --- TOC entry 9120 (class 1259 OID 21663) +-- TOC entry 9074 (class 1259 OID 65671) -- Name: mdl_quizfeed_qui_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53465,7 +53470,7 @@ CREATE INDEX mdl_quizfeed_qui_ix ON public.mdl_quiz_feedback USING btree (quizid -- --- TOC entry 9135 (class 1259 OID 21717) +-- TOC entry 9077 (class 1259 OID 65672) -- Name: mdl_quizgrad_qui_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53473,7 +53478,7 @@ CREATE INDEX mdl_quizgrad_qui_ix ON public.mdl_quiz_grades USING btree (quiz); -- --- TOC entry 9136 (class 1259 OID 21716) +-- TOC entry 9078 (class 1259 OID 65673) -- Name: mdl_quizgrad_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53481,7 +53486,7 @@ CREATE INDEX mdl_quizgrad_use_ix ON public.mdl_quiz_grades USING btree (userid); -- --- TOC entry 9121 (class 1259 OID 21674) +-- TOC entry 9079 (class 1259 OID 65674) -- Name: mdl_quizover_gro_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53489,7 +53494,7 @@ CREATE INDEX mdl_quizover_gro_ix ON public.mdl_quiz_overrides USING btree (group -- --- TOC entry 9124 (class 1259 OID 21673) +-- TOC entry 9082 (class 1259 OID 65675) -- Name: mdl_quizover_qui_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53497,7 +53502,7 @@ CREATE INDEX mdl_quizover_qui_ix ON public.mdl_quiz_overrides USING btree (quiz) -- --- TOC entry 9125 (class 1259 OID 21675) +-- TOC entry 9083 (class 1259 OID 65676) -- Name: mdl_quizover_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53505,7 +53510,7 @@ CREATE INDEX mdl_quizover_use_ix ON public.mdl_quiz_overrides USING btree (useri -- --- TOC entry 9507 (class 1259 OID 23215) +-- TOC entry 9086 (class 1259 OID 65677) -- Name: mdl_quizoverregr_queslo_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53513,7 +53518,7 @@ CREATE INDEX mdl_quizoverregr_queslo_ix ON public.mdl_quiz_overview_regrades USI -- --- TOC entry 9139 (class 1259 OID 21729) +-- TOC entry 9089 (class 1259 OID 65678) -- Name: mdl_quizrepo_nam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53521,7 +53526,7 @@ CREATE UNIQUE INDEX mdl_quizrepo_nam_uix ON public.mdl_quiz_reports USING btree -- --- TOC entry 9510 (class 1259 OID 23240) +-- TOC entry 9106 (class 1259 OID 65679) -- Name: mdl_quizsebquiz_cmi_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53529,7 +53534,7 @@ CREATE UNIQUE INDEX mdl_quizsebquiz_cmi_uix ON public.mdl_quizaccess_seb_quizset -- --- TOC entry 9513 (class 1259 OID 23239) +-- TOC entry 9109 (class 1259 OID 65680) -- Name: mdl_quizsebquiz_qui_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53537,7 +53542,7 @@ CREATE UNIQUE INDEX mdl_quizsebquiz_qui_uix ON public.mdl_quizaccess_seb_quizset -- --- TOC entry 9514 (class 1259 OID 23241) +-- TOC entry 9110 (class 1259 OID 65681) -- Name: mdl_quizsebquiz_tem_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53545,7 +53550,7 @@ CREATE INDEX mdl_quizsebquiz_tem_ix ON public.mdl_quizaccess_seb_quizsettings US -- --- TOC entry 9515 (class 1259 OID 23242) +-- TOC entry 9111 (class 1259 OID 65682) -- Name: mdl_quizsebquiz_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53553,7 +53558,7 @@ CREATE INDEX mdl_quizsebquiz_use_ix ON public.mdl_quizaccess_seb_quizsettings US -- --- TOC entry 9518 (class 1259 OID 23258) +-- TOC entry 9114 (class 1259 OID 65683) -- Name: mdl_quizsebtemp_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53561,7 +53566,7 @@ CREATE INDEX mdl_quizsebtemp_use_ix ON public.mdl_quizaccess_seb_template USING -- --- TOC entry 9116 (class 1259 OID 21647) +-- TOC entry 9092 (class 1259 OID 65684) -- Name: mdl_quizsect_qui_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53569,7 +53574,7 @@ CREATE INDEX mdl_quizsect_qui_ix ON public.mdl_quiz_sections USING btree (quizid -- --- TOC entry 9117 (class 1259 OID 21646) +-- TOC entry 9093 (class 1259 OID 65685) -- Name: mdl_quizsect_quifir_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53577,7 +53582,7 @@ CREATE UNIQUE INDEX mdl_quizsect_quifir_uix ON public.mdl_quiz_sections USING bt -- --- TOC entry 9110 (class 1259 OID 21633) +-- TOC entry 9100 (class 1259 OID 65686) -- Name: mdl_quizslot_que2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53585,7 +53590,7 @@ CREATE INDEX mdl_quizslot_que2_ix ON public.mdl_quiz_slots USING btree (question -- --- TOC entry 9111 (class 1259 OID 21632) +-- TOC entry 9101 (class 1259 OID 65687) -- Name: mdl_quizslot_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53593,7 +53598,7 @@ CREATE INDEX mdl_quizslot_que_ix ON public.mdl_quiz_slots USING btree (questioni -- --- TOC entry 9112 (class 1259 OID 21631) +-- TOC entry 9102 (class 1259 OID 65688) -- Name: mdl_quizslot_qui_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53601,7 +53606,7 @@ CREATE INDEX mdl_quizslot_qui_ix ON public.mdl_quiz_slots USING btree (quizid); -- --- TOC entry 9113 (class 1259 OID 21630) +-- TOC entry 9103 (class 1259 OID 65689) -- Name: mdl_quizslot_quislo_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53609,7 +53614,7 @@ CREATE UNIQUE INDEX mdl_quizslot_quislo_uix ON public.mdl_quiz_slots USING btree -- --- TOC entry 9142 (class 1259 OID 21738) +-- TOC entry 9096 (class 1259 OID 65690) -- Name: mdl_quizslottags_slo_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53617,7 +53622,7 @@ CREATE INDEX mdl_quizslottags_slo_ix ON public.mdl_quiz_slot_tags USING btree (s -- --- TOC entry 9143 (class 1259 OID 21739) +-- TOC entry 9097 (class 1259 OID 65691) -- Name: mdl_quizslottags_tag_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53625,7 +53630,7 @@ CREATE INDEX mdl_quizslottags_tag_ix ON public.mdl_quiz_slot_tags USING btree (t -- --- TOC entry 8432 (class 1259 OID 18766) +-- TOC entry 9115 (class 1259 OID 65692) -- Name: mdl_rati_comratconite_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53633,7 +53638,7 @@ CREATE INDEX mdl_rati_comratconite_ix ON public.mdl_rating USING btree (componen -- --- TOC entry 8433 (class 1259 OID 18767) +-- TOC entry 9116 (class 1259 OID 65693) -- Name: mdl_rati_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53641,7 +53646,7 @@ CREATE INDEX mdl_rati_con_ix ON public.mdl_rating USING btree (contextid); -- --- TOC entry 8436 (class 1259 OID 18768) +-- TOC entry 9119 (class 1259 OID 65694) -- Name: mdl_rati_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53649,7 +53654,7 @@ CREATE INDEX mdl_rati_use_ix ON public.mdl_rating USING btree (userid); -- --- TOC entry 9376 (class 1259 OID 22730) +-- TOC entry 9130 (class 1259 OID 65695) -- Name: mdl_repoonedacce_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53657,7 +53662,7 @@ CREATE INDEX mdl_repoonedacce_use_ix ON public.mdl_repository_onedrive_access US -- --- TOC entry 9144 (class 1259 OID 21760) +-- TOC entry 9131 (class 1259 OID 65696) -- Name: mdl_reso_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53665,7 +53670,7 @@ CREATE INDEX mdl_reso_cou_ix ON public.mdl_resource USING btree (course); -- --- TOC entry 9147 (class 1259 OID 21781) +-- TOC entry 9134 (class 1259 OID 65697) -- Name: mdl_resoold_cmi_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53673,7 +53678,7 @@ CREATE INDEX mdl_resoold_cmi_ix ON public.mdl_resource_old USING btree (cmid); -- --- TOC entry 9150 (class 1259 OID 21780) +-- TOC entry 9137 (class 1259 OID 65698) -- Name: mdl_resoold_old_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53681,7 +53686,7 @@ CREATE UNIQUE INDEX mdl_resoold_old_uix ON public.mdl_resource_old USING btree ( -- --- TOC entry 8052 (class 1259 OID 17335) +-- TOC entry 9140 (class 1259 OID 65699) -- Name: mdl_role_sho_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53689,7 +53694,7 @@ CREATE UNIQUE INDEX mdl_role_sho_uix ON public.mdl_role USING btree (shortname); -- --- TOC entry 8053 (class 1259 OID 17334) +-- TOC entry 9141 (class 1259 OID 65700) -- Name: mdl_role_sor_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53697,7 +53702,7 @@ CREATE UNIQUE INDEX mdl_role_sor_uix ON public.mdl_role USING btree (sortorder); -- --- TOC entry 8065 (class 1259 OID 17385) +-- TOC entry 9142 (class 1259 OID 65701) -- Name: mdl_rolealloassi_all_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53705,7 +53710,7 @@ CREATE INDEX mdl_rolealloassi_all_ix ON public.mdl_role_allow_assign USING btree -- --- TOC entry 8068 (class 1259 OID 17384) +-- TOC entry 9145 (class 1259 OID 65702) -- Name: mdl_rolealloassi_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53713,7 +53718,7 @@ CREATE INDEX mdl_rolealloassi_rol_ix ON public.mdl_role_allow_assign USING btree -- --- TOC entry 8069 (class 1259 OID 17383) +-- TOC entry 9146 (class 1259 OID 65703) -- Name: mdl_rolealloassi_rolall_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53721,7 +53726,7 @@ CREATE UNIQUE INDEX mdl_rolealloassi_rolall_uix ON public.mdl_role_allow_assign -- --- TOC entry 8070 (class 1259 OID 17398) +-- TOC entry 9147 (class 1259 OID 65704) -- Name: mdl_rolealloover_all_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53729,7 +53734,7 @@ CREATE INDEX mdl_rolealloover_all_ix ON public.mdl_role_allow_override USING btr -- --- TOC entry 8073 (class 1259 OID 17397) +-- TOC entry 9150 (class 1259 OID 65705) -- Name: mdl_rolealloover_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53737,7 +53742,7 @@ CREATE INDEX mdl_rolealloover_rol_ix ON public.mdl_role_allow_override USING btr -- --- TOC entry 8074 (class 1259 OID 17396) +-- TOC entry 9151 (class 1259 OID 65706) -- Name: mdl_rolealloover_rolall_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53745,7 +53750,7 @@ CREATE UNIQUE INDEX mdl_rolealloover_rolall_uix ON public.mdl_role_allow_overrid -- --- TOC entry 8075 (class 1259 OID 17409) +-- TOC entry 9152 (class 1259 OID 65707) -- Name: mdl_rolealloswit_all_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53753,7 +53758,7 @@ CREATE INDEX mdl_rolealloswit_all_ix ON public.mdl_role_allow_switch USING btree -- --- TOC entry 8078 (class 1259 OID 17408) +-- TOC entry 9155 (class 1259 OID 65708) -- Name: mdl_rolealloswit_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53761,7 +53766,7 @@ CREATE INDEX mdl_rolealloswit_rol_ix ON public.mdl_role_allow_switch USING btree -- --- TOC entry 8079 (class 1259 OID 17407) +-- TOC entry 9156 (class 1259 OID 65709) -- Name: mdl_rolealloswit_rolall_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53769,7 +53774,7 @@ CREATE UNIQUE INDEX mdl_rolealloswit_rolall_uix ON public.mdl_role_allow_switch -- --- TOC entry 8080 (class 1259 OID 17420) +-- TOC entry 9157 (class 1259 OID 65710) -- Name: mdl_rolealloview_all_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53777,7 +53782,7 @@ CREATE INDEX mdl_rolealloview_all_ix ON public.mdl_role_allow_view USING btree ( -- --- TOC entry 8083 (class 1259 OID 17419) +-- TOC entry 9160 (class 1259 OID 65711) -- Name: mdl_rolealloview_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53785,7 +53790,7 @@ CREATE INDEX mdl_rolealloview_rol_ix ON public.mdl_role_allow_view USING btree ( -- --- TOC entry 8084 (class 1259 OID 17418) +-- TOC entry 9161 (class 1259 OID 65712) -- Name: mdl_rolealloview_rolall_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53793,7 +53798,7 @@ CREATE UNIQUE INDEX mdl_rolealloview_rolall_uix ON public.mdl_role_allow_view US -- --- TOC entry 8085 (class 1259 OID 17440) +-- TOC entry 9162 (class 1259 OID 65713) -- Name: mdl_roleassi_comiteuse_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53801,7 +53806,7 @@ CREATE INDEX mdl_roleassi_comiteuse_ix ON public.mdl_role_assignments USING btre -- --- TOC entry 8086 (class 1259 OID 17442) +-- TOC entry 9163 (class 1259 OID 65714) -- Name: mdl_roleassi_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53809,7 +53814,7 @@ CREATE INDEX mdl_roleassi_con_ix ON public.mdl_role_assignments USING btree (con -- --- TOC entry 8089 (class 1259 OID 17441) +-- TOC entry 9166 (class 1259 OID 65715) -- Name: mdl_roleassi_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53817,7 +53822,7 @@ CREATE INDEX mdl_roleassi_rol_ix ON public.mdl_role_assignments USING btree (rol -- --- TOC entry 8090 (class 1259 OID 17438) +-- TOC entry 9167 (class 1259 OID 65716) -- Name: mdl_roleassi_rolcon_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53825,7 +53830,7 @@ CREATE INDEX mdl_roleassi_rolcon_ix ON public.mdl_role_assignments USING btree ( -- --- TOC entry 8091 (class 1259 OID 17437) +-- TOC entry 9168 (class 1259 OID 65717) -- Name: mdl_roleassi_sor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53833,7 +53838,7 @@ CREATE INDEX mdl_roleassi_sor_ix ON public.mdl_role_assignments USING btree (sor -- --- TOC entry 8092 (class 1259 OID 17443) +-- TOC entry 9169 (class 1259 OID 65718) -- Name: mdl_roleassi_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53841,7 +53846,7 @@ CREATE INDEX mdl_roleassi_use_ix ON public.mdl_role_assignments USING btree (use -- --- TOC entry 8093 (class 1259 OID 17439) +-- TOC entry 9170 (class 1259 OID 65719) -- Name: mdl_roleassi_useconrol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53849,7 +53854,7 @@ CREATE INDEX mdl_roleassi_useconrol_ix ON public.mdl_role_assignments USING btre -- --- TOC entry 8094 (class 1259 OID 17462) +-- TOC entry 9171 (class 1259 OID 65720) -- Name: mdl_rolecapa_cap_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53857,7 +53862,7 @@ CREATE INDEX mdl_rolecapa_cap_ix ON public.mdl_role_capabilities USING btree (ca -- --- TOC entry 8095 (class 1259 OID 17460) +-- TOC entry 9172 (class 1259 OID 65721) -- Name: mdl_rolecapa_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53865,7 +53870,7 @@ CREATE INDEX mdl_rolecapa_con_ix ON public.mdl_role_capabilities USING btree (co -- --- TOC entry 8098 (class 1259 OID 17461) +-- TOC entry 9175 (class 1259 OID 65722) -- Name: mdl_rolecapa_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53873,7 +53878,7 @@ CREATE INDEX mdl_rolecapa_mod_ix ON public.mdl_role_capabilities USING btree (mo -- --- TOC entry 8099 (class 1259 OID 17459) +-- TOC entry 9176 (class 1259 OID 65723) -- Name: mdl_rolecapa_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53881,7 +53886,7 @@ CREATE INDEX mdl_rolecapa_rol_ix ON public.mdl_role_capabilities USING btree (ro -- --- TOC entry 8100 (class 1259 OID 17458) +-- TOC entry 9177 (class 1259 OID 65724) -- Name: mdl_rolecapa_rolconcap_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53889,7 +53894,7 @@ CREATE UNIQUE INDEX mdl_rolecapa_rolconcap_uix ON public.mdl_role_capabilities U -- --- TOC entry 8106 (class 1259 OID 17485) +-- TOC entry 9178 (class 1259 OID 65725) -- Name: mdl_rolecontleve_conrol_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53897,7 +53902,7 @@ CREATE UNIQUE INDEX mdl_rolecontleve_conrol_uix ON public.mdl_role_context_level -- --- TOC entry 8109 (class 1259 OID 17486) +-- TOC entry 9181 (class 1259 OID 65726) -- Name: mdl_rolecontleve_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53905,7 +53910,7 @@ CREATE INDEX mdl_rolecontleve_rol_ix ON public.mdl_role_context_levels USING btr -- --- TOC entry 8101 (class 1259 OID 17476) +-- TOC entry 9182 (class 1259 OID 65727) -- Name: mdl_rolename_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53913,7 +53918,7 @@ CREATE INDEX mdl_rolename_con_ix ON public.mdl_role_names USING btree (contextid -- --- TOC entry 8104 (class 1259 OID 17475) +-- TOC entry 9185 (class 1259 OID 65728) -- Name: mdl_rolename_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53921,7 +53926,7 @@ CREATE INDEX mdl_rolename_rol_ix ON public.mdl_role_names USING btree (roleid); -- --- TOC entry 8105 (class 1259 OID 17474) +-- TOC entry 9186 (class 1259 OID 65729) -- Name: mdl_rolename_rolcon_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53929,7 +53934,7 @@ CREATE UNIQUE INDEX mdl_rolename_rolcon_uix ON public.mdl_role_names USING btree -- --- TOC entry 8000 (class 1259 OID 17160) +-- TOC entry 9187 (class 1259 OID 65730) -- Name: mdl_scal_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53937,7 +53942,7 @@ CREATE INDEX mdl_scal_cou_ix ON public.mdl_scale USING btree (courseid); -- --- TOC entry 8003 (class 1259 OID 17176) +-- TOC entry 9190 (class 1259 OID 65731) -- Name: mdl_scalhist_act_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53945,7 +53950,7 @@ CREATE INDEX mdl_scalhist_act_ix ON public.mdl_scale_history USING btree (action -- --- TOC entry 8004 (class 1259 OID 17179) +-- TOC entry 9191 (class 1259 OID 65732) -- Name: mdl_scalhist_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53953,7 +53958,7 @@ CREATE INDEX mdl_scalhist_cou_ix ON public.mdl_scale_history USING btree (course -- --- TOC entry 8007 (class 1259 OID 17180) +-- TOC entry 9194 (class 1259 OID 65733) -- Name: mdl_scalhist_log_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53961,7 +53966,7 @@ CREATE INDEX mdl_scalhist_log_ix ON public.mdl_scale_history USING btree (logged -- --- TOC entry 8008 (class 1259 OID 17178) +-- TOC entry 9195 (class 1259 OID 65734) -- Name: mdl_scalhist_old_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53969,7 +53974,7 @@ CREATE INDEX mdl_scalhist_old_ix ON public.mdl_scale_history USING btree (oldid) -- --- TOC entry 8009 (class 1259 OID 17177) +-- TOC entry 9196 (class 1259 OID 65735) -- Name: mdl_scalhist_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53977,7 +53982,7 @@ CREATE INDEX mdl_scalhist_tim_ix ON public.mdl_scale_history USING btree (timemo -- --- TOC entry 9151 (class 1259 OID 21829) +-- TOC entry 9197 (class 1259 OID 65736) -- Name: mdl_scor_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53985,7 +53990,7 @@ CREATE INDEX mdl_scor_cou_ix ON public.mdl_scorm USING btree (course); -- --- TOC entry 9195 (class 1259 OID 21997) +-- TOC entry 9202 (class 1259 OID 65737) -- Name: mdl_scoraiccsess_sco_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53993,7 +53998,7 @@ CREATE INDEX mdl_scoraiccsess_sco_ix ON public.mdl_scorm_aicc_session USING btre -- --- TOC entry 9196 (class 1259 OID 21998) +-- TOC entry 9203 (class 1259 OID 65738) -- Name: mdl_scoraiccsess_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54001,7 +54006,7 @@ CREATE INDEX mdl_scoraiccsess_use_ix ON public.mdl_scorm_aicc_session USING btre -- --- TOC entry 9156 (class 1259 OID 21849) +-- TOC entry 9206 (class 1259 OID 65739) -- Name: mdl_scorscoe_sco_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54009,7 +54014,7 @@ CREATE INDEX mdl_scorscoe_sco_ix ON public.mdl_scorm_scoes USING btree (scorm); -- --- TOC entry 9159 (class 1259 OID 21863) +-- TOC entry 9209 (class 1259 OID 65740) -- Name: mdl_scorscoedata_sco_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54017,7 +54022,7 @@ CREATE INDEX mdl_scorscoedata_sco_ix ON public.mdl_scorm_scoes_data USING btree -- --- TOC entry 9162 (class 1259 OID 21884) +-- TOC entry 9212 (class 1259 OID 65741) -- Name: mdl_scorscoetrac_sco2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54025,7 +54030,7 @@ CREATE INDEX mdl_scorscoetrac_sco2_ix ON public.mdl_scorm_scoes_track USING btre -- --- TOC entry 9163 (class 1259 OID 21883) +-- TOC entry 9213 (class 1259 OID 65742) -- Name: mdl_scorscoetrac_sco_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54033,7 +54038,7 @@ CREATE INDEX mdl_scorscoetrac_sco_ix ON public.mdl_scorm_scoes_track USING btree -- --- TOC entry 9164 (class 1259 OID 21882) +-- TOC entry 9214 (class 1259 OID 65743) -- Name: mdl_scorscoetrac_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54041,7 +54046,7 @@ CREATE INDEX mdl_scorscoetrac_use_ix ON public.mdl_scorm_scoes_track USING btree -- --- TOC entry 9165 (class 1259 OID 21881) +-- TOC entry 9215 (class 1259 OID 65744) -- Name: mdl_scorscoetrac_usescosco_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54049,7 +54054,7 @@ CREATE UNIQUE INDEX mdl_scorscoetrac_usescosco_uix ON public.mdl_scorm_scoes_tra -- --- TOC entry 9172 (class 1259 OID 21917) +-- TOC entry 9218 (class 1259 OID 65745) -- Name: mdl_scorseqmapi_obj_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54057,7 +54062,7 @@ CREATE INDEX mdl_scorseqmapi_obj_ix ON public.mdl_scorm_seq_mapinfo USING btree -- --- TOC entry 9173 (class 1259 OID 21916) +-- TOC entry 9219 (class 1259 OID 65746) -- Name: mdl_scorseqmapi_sco_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54065,7 +54070,7 @@ CREATE INDEX mdl_scorseqmapi_sco_ix ON public.mdl_scorm_seq_mapinfo USING btree -- --- TOC entry 9174 (class 1259 OID 21915) +-- TOC entry 9220 (class 1259 OID 65747) -- Name: mdl_scorseqmapi_scoidobj_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54073,7 +54078,7 @@ CREATE UNIQUE INDEX mdl_scorseqmapi_scoidobj_uix ON public.mdl_scorm_seq_mapinfo -- --- TOC entry 9168 (class 1259 OID 21899) +-- TOC entry 9223 (class 1259 OID 65748) -- Name: mdl_scorseqobje_sco_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54081,7 +54086,7 @@ CREATE INDEX mdl_scorseqobje_sco_ix ON public.mdl_scorm_seq_objective USING btre -- --- TOC entry 9169 (class 1259 OID 21898) +-- TOC entry 9224 (class 1259 OID 65749) -- Name: mdl_scorseqobje_scoid_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54089,7 +54094,7 @@ CREATE UNIQUE INDEX mdl_scorseqobje_scoid_uix ON public.mdl_scorm_seq_objective -- --- TOC entry 9190 (class 1259 OID 21979) +-- TOC entry 9231 (class 1259 OID 65750) -- Name: mdl_scorseqroll_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54097,7 +54102,7 @@ CREATE INDEX mdl_scorseqroll_rol_ix ON public.mdl_scorm_seq_rolluprulecond USING -- --- TOC entry 9191 (class 1259 OID 21978) +-- TOC entry 9232 (class 1259 OID 65751) -- Name: mdl_scorseqroll_sco2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54105,7 +54110,7 @@ CREATE INDEX mdl_scorseqroll_sco2_ix ON public.mdl_scorm_seq_rolluprulecond USIN -- --- TOC entry 9186 (class 1259 OID 21964) +-- TOC entry 9227 (class 1259 OID 65752) -- Name: mdl_scorseqroll_sco_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54113,7 +54118,7 @@ CREATE INDEX mdl_scorseqroll_sco_ix ON public.mdl_scorm_seq_rolluprule USING btr -- --- TOC entry 9187 (class 1259 OID 21963) +-- TOC entry 9228 (class 1259 OID 65753) -- Name: mdl_scorseqroll_scoid_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54121,7 +54126,7 @@ CREATE UNIQUE INDEX mdl_scorseqroll_scoid_uix ON public.mdl_scorm_seq_rolluprule -- --- TOC entry 9192 (class 1259 OID 21977) +-- TOC entry 9233 (class 1259 OID 65754) -- Name: mdl_scorseqroll_scorolid_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54129,7 +54134,7 @@ CREATE UNIQUE INDEX mdl_scorseqroll_scorolid_uix ON public.mdl_scorm_seq_rollupr -- --- TOC entry 9181 (class 1259 OID 21946) +-- TOC entry 9236 (class 1259 OID 65755) -- Name: mdl_scorseqrule_idscorul_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54137,7 +54142,7 @@ CREATE UNIQUE INDEX mdl_scorseqrule_idscorul_uix ON public.mdl_scorm_seq_rulecon -- --- TOC entry 9182 (class 1259 OID 21948) +-- TOC entry 9237 (class 1259 OID 65756) -- Name: mdl_scorseqrule_rul_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54145,7 +54150,7 @@ CREATE INDEX mdl_scorseqrule_rul_ix ON public.mdl_scorm_seq_rulecond USING btree -- --- TOC entry 9183 (class 1259 OID 21947) +-- TOC entry 9238 (class 1259 OID 65757) -- Name: mdl_scorseqrule_sco2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54153,7 +54158,7 @@ CREATE INDEX mdl_scorseqrule_sco2_ix ON public.mdl_scorm_seq_rulecond USING btre -- --- TOC entry 9177 (class 1259 OID 21931) +-- TOC entry 9241 (class 1259 OID 65758) -- Name: mdl_scorseqrule_sco_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54161,7 +54166,7 @@ CREATE INDEX mdl_scorseqrule_sco_ix ON public.mdl_scorm_seq_ruleconds USING btre -- --- TOC entry 9178 (class 1259 OID 21930) +-- TOC entry 9242 (class 1259 OID 65759) -- Name: mdl_scorseqrule_scoid_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54169,7 +54174,7 @@ CREATE UNIQUE INDEX mdl_scorseqrule_scoid_uix ON public.mdl_scorm_seq_ruleconds -- --- TOC entry 9381 (class 1259 OID 22758) +-- TOC entry 9247 (class 1259 OID 65760) -- Name: mdl_search_simpledb_content; Type: INDEX; Schema: public; Owner: postgres -- @@ -54177,7 +54182,7 @@ CREATE INDEX mdl_search_simpledb_content ON public.mdl_search_simpledb_index USI -- --- TOC entry 9382 (class 1259 OID 22759) +-- TOC entry 9248 (class 1259 OID 65761) -- Name: mdl_search_simpledb_description1; Type: INDEX; Schema: public; Owner: postgres -- @@ -54185,7 +54190,7 @@ CREATE INDEX mdl_search_simpledb_description1 ON public.mdl_search_simpledb_inde -- --- TOC entry 9383 (class 1259 OID 22760) +-- TOC entry 9249 (class 1259 OID 65762) -- Name: mdl_search_simpledb_description2; Type: INDEX; Schema: public; Owner: postgres -- @@ -54193,7 +54198,7 @@ CREATE INDEX mdl_search_simpledb_description2 ON public.mdl_search_simpledb_inde -- --- TOC entry 9384 (class 1259 OID 22757) +-- TOC entry 9250 (class 1259 OID 65763) -- Name: mdl_search_simpledb_title; Type: INDEX; Schema: public; Owner: postgres -- @@ -54201,7 +54206,7 @@ CREATE INDEX mdl_search_simpledb_title ON public.mdl_search_simpledb_index USING -- --- TOC entry 8690 (class 1259 OID 19699) +-- TOC entry 9243 (class 1259 OID 65764) -- Name: mdl_searinderequ_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54209,7 +54214,7 @@ CREATE INDEX mdl_searinderequ_con_ix ON public.mdl_search_index_requests USING b -- --- TOC entry 8693 (class 1259 OID 19698) +-- TOC entry 9246 (class 1259 OID 65765) -- Name: mdl_searinderequ_indtim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54217,7 +54222,7 @@ CREATE INDEX mdl_searinderequ_indtim_ix ON public.mdl_search_index_requests USIN -- --- TOC entry 9385 (class 1259 OID 22756) +-- TOC entry 9251 (class 1259 OID 65766) -- Name: mdl_searsimpinde_doc_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54225,7 +54230,7 @@ CREATE UNIQUE INDEX mdl_searsimpinde_doc_uix ON public.mdl_search_simpledb_index -- --- TOC entry 9388 (class 1259 OID 22755) +-- TOC entry 9254 (class 1259 OID 65767) -- Name: mdl_searsimpinde_owncon_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54233,7 +54238,7 @@ CREATE INDEX mdl_searsimpinde_owncon_ix ON public.mdl_search_simpledb_index USIN -- --- TOC entry 7967 (class 1259 OID 17029) +-- TOC entry 9257 (class 1259 OID 65768) -- Name: mdl_sess_sid_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54241,7 +54246,7 @@ CREATE UNIQUE INDEX mdl_sess_sid_uix ON public.mdl_sessions USING btree (sid); -- --- TOC entry 7968 (class 1259 OID 17028) +-- TOC entry 9258 (class 1259 OID 65769) -- Name: mdl_sess_sta_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54249,7 +54254,7 @@ CREATE INDEX mdl_sess_sta_ix ON public.mdl_sessions USING btree (state); -- --- TOC entry 7969 (class 1259 OID 17031) +-- TOC entry 9259 (class 1259 OID 65770) -- Name: mdl_sess_tim2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54257,7 +54262,7 @@ CREATE INDEX mdl_sess_tim2_ix ON public.mdl_sessions USING btree (timemodified); -- --- TOC entry 7970 (class 1259 OID 17030) +-- TOC entry 9260 (class 1259 OID 65771) -- Name: mdl_sess_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54265,7 +54270,7 @@ CREATE INDEX mdl_sess_tim_ix ON public.mdl_sessions USING btree (timecreated); -- --- TOC entry 7971 (class 1259 OID 17032) +-- TOC entry 9261 (class 1259 OID 65772) -- Name: mdl_sess_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54273,7 +54278,7 @@ CREATE INDEX mdl_sess_use_ix ON public.mdl_sessions USING btree (userid); -- --- TOC entry 8010 (class 1259 OID 17195) +-- TOC entry 9262 (class 1259 OID 65773) -- Name: mdl_statdail_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54281,7 +54286,7 @@ CREATE INDEX mdl_statdail_cou_ix ON public.mdl_stats_daily USING btree (courseid -- --- TOC entry 8013 (class 1259 OID 17197) +-- TOC entry 9265 (class 1259 OID 65774) -- Name: mdl_statdail_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54289,7 +54294,7 @@ CREATE INDEX mdl_statdail_rol_ix ON public.mdl_stats_daily USING btree (roleid); -- --- TOC entry 8014 (class 1259 OID 17196) +-- TOC entry 9266 (class 1259 OID 65775) -- Name: mdl_statdail_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54297,7 +54302,7 @@ CREATE INDEX mdl_statdail_tim_ix ON public.mdl_stats_daily USING btree (timeend) -- --- TOC entry 8020 (class 1259 OID 17229) +-- TOC entry 9267 (class 1259 OID 65776) -- Name: mdl_statmont_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54305,7 +54310,7 @@ CREATE INDEX mdl_statmont_cou_ix ON public.mdl_stats_monthly USING btree (course -- --- TOC entry 8023 (class 1259 OID 17231) +-- TOC entry 9270 (class 1259 OID 65777) -- Name: mdl_statmont_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54313,7 +54318,7 @@ CREATE INDEX mdl_statmont_rol_ix ON public.mdl_stats_monthly USING btree (roleid -- --- TOC entry 8024 (class 1259 OID 17230) +-- TOC entry 9271 (class 1259 OID 65778) -- Name: mdl_statmont_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54321,7 +54326,7 @@ CREATE INDEX mdl_statmont_tim_ix ON public.mdl_stats_monthly USING btree (timeen -- --- TOC entry 8025 (class 1259 OID 17247) +-- TOC entry 9272 (class 1259 OID 65779) -- Name: mdl_statuserdail_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54329,7 +54334,7 @@ CREATE INDEX mdl_statuserdail_cou_ix ON public.mdl_stats_user_daily USING btree -- --- TOC entry 8028 (class 1259 OID 17249) +-- TOC entry 9275 (class 1259 OID 65780) -- Name: mdl_statuserdail_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54337,7 +54342,7 @@ CREATE INDEX mdl_statuserdail_rol_ix ON public.mdl_stats_user_daily USING btree -- --- TOC entry 8029 (class 1259 OID 17250) +-- TOC entry 9276 (class 1259 OID 65781) -- Name: mdl_statuserdail_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54345,7 +54350,7 @@ CREATE INDEX mdl_statuserdail_tim_ix ON public.mdl_stats_user_daily USING btree -- --- TOC entry 8030 (class 1259 OID 17248) +-- TOC entry 9277 (class 1259 OID 65782) -- Name: mdl_statuserdail_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54353,7 +54358,7 @@ CREATE INDEX mdl_statuserdail_use_ix ON public.mdl_stats_user_daily USING btree -- --- TOC entry 8037 (class 1259 OID 17285) +-- TOC entry 9278 (class 1259 OID 65783) -- Name: mdl_statusermont_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54361,7 +54366,7 @@ CREATE INDEX mdl_statusermont_cou_ix ON public.mdl_stats_user_monthly USING btre -- --- TOC entry 8040 (class 1259 OID 17287) +-- TOC entry 9281 (class 1259 OID 65784) -- Name: mdl_statusermont_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54369,7 +54374,7 @@ CREATE INDEX mdl_statusermont_rol_ix ON public.mdl_stats_user_monthly USING btre -- --- TOC entry 8041 (class 1259 OID 17288) +-- TOC entry 9282 (class 1259 OID 65785) -- Name: mdl_statusermont_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54377,7 +54382,7 @@ CREATE INDEX mdl_statusermont_tim_ix ON public.mdl_stats_user_monthly USING btre -- --- TOC entry 8042 (class 1259 OID 17286) +-- TOC entry 9283 (class 1259 OID 65786) -- Name: mdl_statusermont_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54385,7 +54390,7 @@ CREATE INDEX mdl_statusermont_use_ix ON public.mdl_stats_user_monthly USING btre -- --- TOC entry 8031 (class 1259 OID 17266) +-- TOC entry 9284 (class 1259 OID 65787) -- Name: mdl_statuserweek_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54393,7 +54398,7 @@ CREATE INDEX mdl_statuserweek_cou_ix ON public.mdl_stats_user_weekly USING btree -- --- TOC entry 8034 (class 1259 OID 17268) +-- TOC entry 9287 (class 1259 OID 65788) -- Name: mdl_statuserweek_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54401,7 +54406,7 @@ CREATE INDEX mdl_statuserweek_rol_ix ON public.mdl_stats_user_weekly USING btree -- --- TOC entry 8035 (class 1259 OID 17269) +-- TOC entry 9288 (class 1259 OID 65789) -- Name: mdl_statuserweek_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54409,7 +54414,7 @@ CREATE INDEX mdl_statuserweek_tim_ix ON public.mdl_stats_user_weekly USING btree -- --- TOC entry 8036 (class 1259 OID 17267) +-- TOC entry 9289 (class 1259 OID 65790) -- Name: mdl_statuserweek_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54417,7 +54422,7 @@ CREATE INDEX mdl_statuserweek_use_ix ON public.mdl_stats_user_weekly USING btree -- --- TOC entry 8015 (class 1259 OID 17212) +-- TOC entry 9290 (class 1259 OID 65791) -- Name: mdl_statweek_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54425,7 +54430,7 @@ CREATE INDEX mdl_statweek_cou_ix ON public.mdl_stats_weekly USING btree (coursei -- --- TOC entry 8018 (class 1259 OID 17214) +-- TOC entry 9293 (class 1259 OID 65792) -- Name: mdl_statweek_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54433,7 +54438,7 @@ CREATE INDEX mdl_statweek_rol_ix ON public.mdl_stats_weekly USING btree (roleid) -- --- TOC entry 8019 (class 1259 OID 17213) +-- TOC entry 9294 (class 1259 OID 65793) -- Name: mdl_statweek_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54441,7 +54446,7 @@ CREATE INDEX mdl_statweek_tim_ix ON public.mdl_stats_weekly USING btree (timeend -- --- TOC entry 9197 (class 1259 OID 22019) +-- TOC entry 9295 (class 1259 OID 65794) -- Name: mdl_surv_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54449,7 +54454,7 @@ CREATE INDEX mdl_surv_cou_ix ON public.mdl_survey USING btree (course); -- --- TOC entry 9209 (class 1259 OID 22068) +-- TOC entry 9300 (class 1259 OID 65795) -- Name: mdl_survanal_sur_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54457,7 +54462,7 @@ CREATE INDEX mdl_survanal_sur_ix ON public.mdl_survey_analysis USING btree (surv -- --- TOC entry 9210 (class 1259 OID 22067) +-- TOC entry 9301 (class 1259 OID 65796) -- Name: mdl_survanal_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54465,7 +54470,7 @@ CREATE INDEX mdl_survanal_use_ix ON public.mdl_survey_analysis USING btree (user -- --- TOC entry 9204 (class 1259 OID 22053) +-- TOC entry 9304 (class 1259 OID 65797) -- Name: mdl_survansw_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54473,7 +54478,7 @@ CREATE INDEX mdl_survansw_que_ix ON public.mdl_survey_answers USING btree (quest -- --- TOC entry 9205 (class 1259 OID 22052) +-- TOC entry 9305 (class 1259 OID 65798) -- Name: mdl_survansw_sur_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54481,7 +54486,7 @@ CREATE INDEX mdl_survansw_sur_ix ON public.mdl_survey_answers USING btree (surve -- --- TOC entry 9206 (class 1259 OID 22051) +-- TOC entry 9306 (class 1259 OID 65799) -- Name: mdl_survansw_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54489,7 +54494,7 @@ CREATE INDEX mdl_survansw_use_ix ON public.mdl_survey_answers USING btree (useri -- --- TOC entry 8287 (class 1259 OID 18218) +-- TOC entry 9311 (class 1259 OID 65800) -- Name: mdl_tag_tag_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54497,7 +54502,7 @@ CREATE INDEX mdl_tag_tag_ix ON public.mdl_tag USING btree (tagcollid); -- --- TOC entry 8288 (class 1259 OID 18216) +-- TOC entry 9312 (class 1259 OID 65801) -- Name: mdl_tag_tagiss_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54505,7 +54510,7 @@ CREATE INDEX mdl_tag_tagiss_ix ON public.mdl_tag USING btree (tagcollid, isstand -- --- TOC entry 8289 (class 1259 OID 18215) +-- TOC entry 9313 (class 1259 OID 65802) -- Name: mdl_tag_tagnam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54513,7 +54518,7 @@ CREATE UNIQUE INDEX mdl_tag_tagnam_uix ON public.mdl_tag USING btree (tagcollid, -- --- TOC entry 8290 (class 1259 OID 18217) +-- TOC entry 9314 (class 1259 OID 65803) -- Name: mdl_tag_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54521,7 +54526,7 @@ CREATE INDEX mdl_tag_use_ix ON public.mdl_tag USING btree (userid); -- --- TOC entry 8281 (class 1259 OID 18197) +-- TOC entry 9315 (class 1259 OID 65804) -- Name: mdl_tagarea_comite_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54529,7 +54534,7 @@ CREATE UNIQUE INDEX mdl_tagarea_comite_uix ON public.mdl_tag_area USING btree (c -- --- TOC entry 8284 (class 1259 OID 18198) +-- TOC entry 9318 (class 1259 OID 65805) -- Name: mdl_tagarea_tag_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54537,7 +54542,7 @@ CREATE INDEX mdl_tagarea_tag_ix ON public.mdl_tag_area USING btree (tagcollid); -- --- TOC entry 8293 (class 1259 OID 18230) +-- TOC entry 9323 (class 1259 OID 65806) -- Name: mdl_tagcorr_tag_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54545,7 +54550,7 @@ CREATE INDEX mdl_tagcorr_tag_ix ON public.mdl_tag_correlation USING btree (tagid -- --- TOC entry 8294 (class 1259 OID 18244) +-- TOC entry 9324 (class 1259 OID 65807) -- Name: mdl_taginst_comiteiteconti_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54553,7 +54558,7 @@ CREATE UNIQUE INDEX mdl_taginst_comiteiteconti_uix ON public.mdl_tag_instance US -- --- TOC entry 8295 (class 1259 OID 18247) +-- TOC entry 9325 (class 1259 OID 65808) -- Name: mdl_taginst_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54561,7 +54566,7 @@ CREATE INDEX mdl_taginst_con_ix ON public.mdl_tag_instance USING btree (contexti -- --- TOC entry 8298 (class 1259 OID 18245) +-- TOC entry 9328 (class 1259 OID 65809) -- Name: mdl_taginst_itecomtagcon_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54569,7 +54574,7 @@ CREATE INDEX mdl_taginst_itecomtagcon_ix ON public.mdl_tag_instance USING btree -- --- TOC entry 8299 (class 1259 OID 18246) +-- TOC entry 9329 (class 1259 OID 65810) -- Name: mdl_taginst_tag_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54577,7 +54582,7 @@ CREATE INDEX mdl_taginst_tag_ix ON public.mdl_tag_instance USING btree (tagid); -- --- TOC entry 8555 (class 1259 OID 19221) +-- TOC entry 9332 (class 1259 OID 65811) -- Name: mdl_taskadho_nex_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54585,7 +54590,7 @@ CREATE INDEX mdl_taskadho_nex_ix ON public.mdl_task_adhoc USING btree (nextrunti -- --- TOC entry 8556 (class 1259 OID 19222) +-- TOC entry 9333 (class 1259 OID 65812) -- Name: mdl_taskadho_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54593,7 +54598,7 @@ CREATE INDEX mdl_taskadho_use_ix ON public.mdl_task_adhoc USING btree (userid); -- --- TOC entry 8557 (class 1259 OID 19236) +-- TOC entry 9334 (class 1259 OID 65813) -- Name: mdl_tasklog_cla_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54601,7 +54606,7 @@ CREATE INDEX mdl_tasklog_cla_ix ON public.mdl_task_log USING btree (classname); -- --- TOC entry 8560 (class 1259 OID 19237) +-- TOC entry 9337 (class 1259 OID 65814) -- Name: mdl_tasklog_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54609,7 +54614,7 @@ CREATE INDEX mdl_tasklog_tim_ix ON public.mdl_task_log USING btree (timestart); -- --- TOC entry 8550 (class 1259 OID 19206) +-- TOC entry 9338 (class 1259 OID 65815) -- Name: mdl_tasksche_cla_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54617,7 +54622,7 @@ CREATE UNIQUE INDEX mdl_tasksche_cla_uix ON public.mdl_task_scheduled USING btre -- --- TOC entry 9389 (class 1259 OID 22769) +-- TOC entry 9341 (class 1259 OID 65816) -- Name: mdl_toolcoho_cohroluse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54625,7 +54630,7 @@ CREATE UNIQUE INDEX mdl_toolcoho_cohroluse_uix ON public.mdl_tool_cohortroles US -- --- TOC entry 9392 (class 1259 OID 22786) +-- TOC entry 9344 (class 1259 OID 65817) -- Name: mdl_toolcust_com_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54633,7 +54638,7 @@ CREATE INDEX mdl_toolcust_com_ix ON public.mdl_tool_customlang USING btree (comp -- --- TOC entry 9395 (class 1259 OID 22785) +-- TOC entry 9347 (class 1259 OID 65818) -- Name: mdl_toolcust_lancomstr_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54641,7 +54646,7 @@ CREATE UNIQUE INDEX mdl_toolcust_lancomstr_uix ON public.mdl_tool_customlang USI -- --- TOC entry 9418 (class 1259 OID 22885) +-- TOC entry 9352 (class 1259 OID 65819) -- Name: mdl_tooldatactxe_con_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54649,7 +54654,7 @@ CREATE UNIQUE INDEX mdl_tooldatactxe_con_uix ON public.mdl_tool_dataprivacy_ctxe -- --- TOC entry 9408 (class 1259 OID 22861) +-- TOC entry 9355 (class 1259 OID 65820) -- Name: mdl_tooldatactxi_cat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54657,7 +54662,7 @@ CREATE INDEX mdl_tooldatactxi_cat_ix ON public.mdl_tool_dataprivacy_ctxinstance -- --- TOC entry 9409 (class 1259 OID 22859) +-- TOC entry 9356 (class 1259 OID 65821) -- Name: mdl_tooldatactxi_con_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54665,7 +54670,7 @@ CREATE UNIQUE INDEX mdl_tooldatactxi_con_uix ON public.mdl_tool_dataprivacy_ctxi -- --- TOC entry 9412 (class 1259 OID 22860) +-- TOC entry 9359 (class 1259 OID 65822) -- Name: mdl_tooldatactxi_pur_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54673,7 +54678,7 @@ CREATE INDEX mdl_tooldatactxi_pur_ix ON public.mdl_tool_dataprivacy_ctxinstance -- --- TOC entry 9413 (class 1259 OID 22871) +-- TOC entry 9360 (class 1259 OID 65823) -- Name: mdl_tooldatactxl_cat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54681,7 +54686,7 @@ CREATE INDEX mdl_tooldatactxl_cat_ix ON public.mdl_tool_dataprivacy_ctxlevel USI -- --- TOC entry 9414 (class 1259 OID 22870) +-- TOC entry 9361 (class 1259 OID 65824) -- Name: mdl_tooldatactxl_con_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54689,7 +54694,7 @@ CREATE UNIQUE INDEX mdl_tooldatactxl_con_uix ON public.mdl_tool_dataprivacy_ctxl -- --- TOC entry 9417 (class 1259 OID 22872) +-- TOC entry 9364 (class 1259 OID 65825) -- Name: mdl_tooldatactxl_pur_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54697,7 +54702,7 @@ CREATE INDEX mdl_tooldatactxl_pur_ix ON public.mdl_tool_dataprivacy_ctxlevel USI -- --- TOC entry 9423 (class 1259 OID 22899) +-- TOC entry 9369 (class 1259 OID 65826) -- Name: mdl_tooldatapurp_pur_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54705,7 +54710,7 @@ CREATE INDEX mdl_tooldatapurp_pur_ix ON public.mdl_tool_dataprivacy_purposerole -- --- TOC entry 9424 (class 1259 OID 22898) +-- TOC entry 9370 (class 1259 OID 65827) -- Name: mdl_tooldatapurp_purrol_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54713,7 +54718,7 @@ CREATE UNIQUE INDEX mdl_tooldatapurp_purrol_uix ON public.mdl_tool_dataprivacy_p -- --- TOC entry 9425 (class 1259 OID 22900) +-- TOC entry 9371 (class 1259 OID 65828) -- Name: mdl_tooldatapurp_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54721,7 +54726,7 @@ CREATE INDEX mdl_tooldatapurp_rol_ix ON public.mdl_tool_dataprivacy_purposerole -- --- TOC entry 9398 (class 1259 OID 22824) +-- TOC entry 9372 (class 1259 OID 65829) -- Name: mdl_tooldatarequ_dpo_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54729,7 +54734,7 @@ CREATE INDEX mdl_tooldatarequ_dpo_ix ON public.mdl_tool_dataprivacy_request USIN -- --- TOC entry 9401 (class 1259 OID 22823) +-- TOC entry 9375 (class 1259 OID 65830) -- Name: mdl_tooldatarequ_req_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54737,7 +54742,7 @@ CREATE INDEX mdl_tooldatarequ_req_ix ON public.mdl_tool_dataprivacy_request USIN -- --- TOC entry 9402 (class 1259 OID 22825) +-- TOC entry 9376 (class 1259 OID 65831) -- Name: mdl_tooldatarequ_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54745,7 +54750,7 @@ CREATE INDEX mdl_tooldatarequ_use2_ix ON public.mdl_tool_dataprivacy_request USI -- --- TOC entry 9403 (class 1259 OID 22822) +-- TOC entry 9377 (class 1259 OID 65832) -- Name: mdl_tooldatarequ_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54753,7 +54758,7 @@ CREATE INDEX mdl_tooldatarequ_use_ix ON public.mdl_tool_dataprivacy_request USIN -- --- TOC entry 9436 (class 1259 OID 22938) +-- TOC entry 9382 (class 1259 OID 65833) -- Name: mdl_toolmonihist_sid_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54761,7 +54766,7 @@ CREATE INDEX mdl_toolmonihist_sid_ix ON public.mdl_tool_monitor_history USING bt -- --- TOC entry 9437 (class 1259 OID 22937) +-- TOC entry 9383 (class 1259 OID 65834) -- Name: mdl_toolmonihist_sidusetim_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54769,7 +54774,7 @@ CREATE UNIQUE INDEX mdl_toolmonihist_sidusetim_uix ON public.mdl_tool_monitor_hi -- --- TOC entry 9426 (class 1259 OID 22915) +-- TOC entry 9384 (class 1259 OID 65835) -- Name: mdl_toolmonirule_couuse_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54777,7 +54782,7 @@ CREATE INDEX mdl_toolmonirule_couuse_ix ON public.mdl_tool_monitor_rules USING b -- --- TOC entry 9427 (class 1259 OID 22916) +-- TOC entry 9385 (class 1259 OID 65836) -- Name: mdl_toolmonirule_eve_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54785,7 +54790,7 @@ CREATE INDEX mdl_toolmonirule_eve_ix ON public.mdl_tool_monitor_rules USING btre -- --- TOC entry 9430 (class 1259 OID 22927) +-- TOC entry 9388 (class 1259 OID 65837) -- Name: mdl_toolmonisubs_couuse_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54793,7 +54798,7 @@ CREATE INDEX mdl_toolmonisubs_couuse_ix ON public.mdl_tool_monitor_subscriptions -- --- TOC entry 9433 (class 1259 OID 22928) +-- TOC entry 9391 (class 1259 OID 65838) -- Name: mdl_toolmonisubs_rul_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54801,7 +54806,7 @@ CREATE INDEX mdl_toolmonisubs_rul_ix ON public.mdl_tool_monitor_subscriptions US -- --- TOC entry 9440 (class 1259 OID 22961) +-- TOC entry 9392 (class 1259 OID 65839) -- Name: mdl_toolpoli_cur_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54809,7 +54814,7 @@ CREATE INDEX mdl_toolpoli_cur_ix ON public.mdl_tool_policy USING btree (currentv -- --- TOC entry 9449 (class 1259 OID 22994) +-- TOC entry 9397 (class 1259 OID 65840) -- Name: mdl_toolpoliacce_pol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54817,7 +54822,7 @@ CREATE INDEX mdl_toolpoliacce_pol_ix ON public.mdl_tool_policy_acceptances USING -- --- TOC entry 9450 (class 1259 OID 22997) +-- TOC entry 9398 (class 1259 OID 65841) -- Name: mdl_toolpoliacce_poluse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54825,7 +54830,7 @@ CREATE UNIQUE INDEX mdl_toolpoliacce_poluse_uix ON public.mdl_tool_policy_accept -- --- TOC entry 9451 (class 1259 OID 22996) +-- TOC entry 9399 (class 1259 OID 65842) -- Name: mdl_toolpoliacce_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54833,7 +54838,7 @@ CREATE INDEX mdl_toolpoliacce_use2_ix ON public.mdl_tool_policy_acceptances USIN -- --- TOC entry 9452 (class 1259 OID 22995) +-- TOC entry 9400 (class 1259 OID 65843) -- Name: mdl_toolpoliacce_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54841,7 +54846,7 @@ CREATE INDEX mdl_toolpoliacce_use_ix ON public.mdl_tool_policy_acceptances USING -- --- TOC entry 9445 (class 1259 OID 22981) +-- TOC entry 9403 (class 1259 OID 65844) -- Name: mdl_toolpolivers_pol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54849,7 +54854,7 @@ CREATE INDEX mdl_toolpolivers_pol_ix ON public.mdl_tool_policy_versions USING bt -- --- TOC entry 9446 (class 1259 OID 22980) +-- TOC entry 9404 (class 1259 OID 65845) -- Name: mdl_toolpolivers_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54857,7 +54862,7 @@ CREATE INDEX mdl_toolpolivers_use_ix ON public.mdl_tool_policy_versions USING bt -- --- TOC entry 9457 (class 1259 OID 23023) +-- TOC entry 9405 (class 1259 OID 65846) -- Name: mdl_toolrecycate_cat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54865,7 +54870,7 @@ CREATE INDEX mdl_toolrecycate_cat_ix ON public.mdl_tool_recyclebin_category USIN -- --- TOC entry 9460 (class 1259 OID 23022) +-- TOC entry 9408 (class 1259 OID 65847) -- Name: mdl_toolrecycate_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54873,7 +54878,7 @@ CREATE INDEX mdl_toolrecycate_tim_ix ON public.mdl_tool_recyclebin_category USIN -- --- TOC entry 9453 (class 1259 OID 23008) +-- TOC entry 9409 (class 1259 OID 65848) -- Name: mdl_toolrecycour_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54881,7 +54886,7 @@ CREATE INDEX mdl_toolrecycour_cou_ix ON public.mdl_tool_recyclebin_course USING -- --- TOC entry 9456 (class 1259 OID 23007) +-- TOC entry 9412 (class 1259 OID 65849) -- Name: mdl_toolrecycour_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54889,7 +54894,7 @@ CREATE INDEX mdl_toolrecycour_tim_ix ON public.mdl_tool_recyclebin_course USING -- --- TOC entry 9465 (class 1259 OID 23051) +-- TOC entry 9415 (class 1259 OID 65850) -- Name: mdl_tooluserstep_tou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54897,7 +54902,7 @@ CREATE INDEX mdl_tooluserstep_tou_ix ON public.mdl_tool_usertours_steps USING bt -- --- TOC entry 9466 (class 1259 OID 23050) +-- TOC entry 9416 (class 1259 OID 65851) -- Name: mdl_tooluserstep_tousor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54905,7 +54910,7 @@ CREATE INDEX mdl_tooluserstep_tousor_ix ON public.mdl_tool_usertours_steps USING -- --- TOC entry 7803 (class 1259 OID 16438) +-- TOC entry 9421 (class 1259 OID 65852) -- Name: mdl_upgrlog_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54913,7 +54918,7 @@ CREATE INDEX mdl_upgrlog_tim_ix ON public.mdl_upgrade_log USING btree (timemodif -- --- TOC entry 7804 (class 1259 OID 16439) +-- TOC entry 9422 (class 1259 OID 65853) -- Name: mdl_upgrlog_typtim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54921,7 +54926,7 @@ CREATE INDEX mdl_upgrlog_typtim_ix ON public.mdl_upgrade_log USING btree (type, -- --- TOC entry 7805 (class 1259 OID 16440) +-- TOC entry 9423 (class 1259 OID 65854) -- Name: mdl_upgrlog_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54929,7 +54934,7 @@ CREATE INDEX mdl_upgrlog_use_ix ON public.mdl_upgrade_log USING btree (userid); -- --- TOC entry 9211 (class 1259 OID 22085) +-- TOC entry 9424 (class 1259 OID 65855) -- Name: mdl_url_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54937,7 +54942,7 @@ CREATE INDEX mdl_url_cou_ix ON public.mdl_url USING btree (course); -- --- TOC entry 7972 (class 1259 OID 17104) +-- TOC entry 9427 (class 1259 OID 65856) -- Name: mdl_user_alt_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54945,7 +54950,7 @@ CREATE INDEX mdl_user_alt_ix ON public.mdl_user USING btree (alternatename); -- --- TOC entry 7973 (class 1259 OID 17099) +-- TOC entry 9428 (class 1259 OID 65857) -- Name: mdl_user_aut_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54953,7 +54958,7 @@ CREATE INDEX mdl_user_aut_ix ON public.mdl_user USING btree (auth); -- --- TOC entry 7974 (class 1259 OID 17095) +-- TOC entry 9429 (class 1259 OID 65858) -- Name: mdl_user_cit_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54961,7 +54966,7 @@ CREATE INDEX mdl_user_cit_ix ON public.mdl_user USING btree (city); -- --- TOC entry 7975 (class 1259 OID 17092) +-- TOC entry 9430 (class 1259 OID 65859) -- Name: mdl_user_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54969,7 +54974,7 @@ CREATE INDEX mdl_user_con_ix ON public.mdl_user USING btree (confirmed); -- --- TOC entry 7976 (class 1259 OID 17096) +-- TOC entry 9431 (class 1259 OID 65860) -- Name: mdl_user_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54977,7 +54982,7 @@ CREATE INDEX mdl_user_cou_ix ON public.mdl_user USING btree (country); -- --- TOC entry 7977 (class 1259 OID 17091) +-- TOC entry 9432 (class 1259 OID 65861) -- Name: mdl_user_del_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54985,7 +54990,7 @@ CREATE INDEX mdl_user_del_ix ON public.mdl_user USING btree (deleted); -- --- TOC entry 7978 (class 1259 OID 17098) +-- TOC entry 9433 (class 1259 OID 65862) -- Name: mdl_user_ema_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54993,7 +54998,7 @@ CREATE INDEX mdl_user_ema_ix ON public.mdl_user USING btree (email); -- --- TOC entry 7979 (class 1259 OID 17101) +-- TOC entry 9434 (class 1259 OID 65863) -- Name: mdl_user_fir2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55001,7 +55006,7 @@ CREATE INDEX mdl_user_fir2_ix ON public.mdl_user USING btree (firstnamephonetic) -- --- TOC entry 7980 (class 1259 OID 17093) +-- TOC entry 9435 (class 1259 OID 65864) -- Name: mdl_user_fir_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55009,7 +55014,7 @@ CREATE INDEX mdl_user_fir_ix ON public.mdl_user USING btree (firstname); -- --- TOC entry 7983 (class 1259 OID 17100) +-- TOC entry 9438 (class 1259 OID 65865) -- Name: mdl_user_idn_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55017,7 +55022,7 @@ CREATE INDEX mdl_user_idn_ix ON public.mdl_user USING btree (idnumber); -- --- TOC entry 7984 (class 1259 OID 17097) +-- TOC entry 9439 (class 1259 OID 65866) -- Name: mdl_user_las2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55025,7 +55030,7 @@ CREATE INDEX mdl_user_las2_ix ON public.mdl_user USING btree (lastaccess); -- --- TOC entry 7985 (class 1259 OID 17102) +-- TOC entry 9440 (class 1259 OID 65867) -- Name: mdl_user_las3_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55033,7 +55038,7 @@ CREATE INDEX mdl_user_las3_ix ON public.mdl_user USING btree (lastnamephonetic); -- --- TOC entry 7986 (class 1259 OID 17094) +-- TOC entry 9441 (class 1259 OID 65868) -- Name: mdl_user_las_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55041,7 +55046,7 @@ CREATE INDEX mdl_user_las_ix ON public.mdl_user USING btree (lastname); -- --- TOC entry 7987 (class 1259 OID 17103) +-- TOC entry 9442 (class 1259 OID 65869) -- Name: mdl_user_mid_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55049,7 +55054,7 @@ CREATE INDEX mdl_user_mid_ix ON public.mdl_user USING btree (middlename); -- --- TOC entry 7988 (class 1259 OID 17090) +-- TOC entry 9443 (class 1259 OID 65870) -- Name: mdl_user_mneuse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55057,7 +55062,7 @@ CREATE UNIQUE INDEX mdl_user_mneuse_uix ON public.mdl_user USING btree (mnethost -- --- TOC entry 8539 (class 1259 OID 19160) +-- TOC entry 9446 (class 1259 OID 65871) -- Name: mdl_userdevi_pususe_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55065,7 +55070,7 @@ CREATE UNIQUE INDEX mdl_userdevi_pususe_uix ON public.mdl_user_devices USING btr -- --- TOC entry 8540 (class 1259 OID 19161) +-- TOC entry 9447 (class 1259 OID 65872) -- Name: mdl_userdevi_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55073,7 +55078,7 @@ CREATE INDEX mdl_userdevi_use_ix ON public.mdl_user_devices USING btree (userid) -- --- TOC entry 8541 (class 1259 OID 19159) +-- TOC entry 9448 (class 1259 OID 65873) -- Name: mdl_userdevi_uuiuse_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55081,7 +55086,7 @@ CREATE INDEX mdl_userdevi_uuiuse_ix ON public.mdl_user_devices USING btree (uuid -- --- TOC entry 7840 (class 1259 OID 16605) +-- TOC entry 9449 (class 1259 OID 65874) -- Name: mdl_userenro_enr_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55089,7 +55094,7 @@ CREATE INDEX mdl_userenro_enr_ix ON public.mdl_user_enrolments USING btree (enro -- --- TOC entry 7841 (class 1259 OID 16604) +-- TOC entry 9450 (class 1259 OID 65875) -- Name: mdl_userenro_enruse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55097,7 +55102,7 @@ CREATE UNIQUE INDEX mdl_userenro_enruse_uix ON public.mdl_user_enrolments USING -- --- TOC entry 7844 (class 1259 OID 16607) +-- TOC entry 9453 (class 1259 OID 65876) -- Name: mdl_userenro_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55105,7 +55110,7 @@ CREATE INDEX mdl_userenro_mod_ix ON public.mdl_user_enrolments USING btree (modi -- --- TOC entry 7845 (class 1259 OID 16606) +-- TOC entry 9454 (class 1259 OID 65877) -- Name: mdl_userenro_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55113,7 +55118,7 @@ CREATE INDEX mdl_userenro_use_ix ON public.mdl_user_enrolments USING btree (user -- --- TOC entry 8116 (class 1259 OID 17533) +-- TOC entry 9459 (class 1259 OID 65878) -- Name: mdl_userinfodata_usefie_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55121,7 +55126,7 @@ CREATE UNIQUE INDEX mdl_userinfodata_usefie_uix ON public.mdl_user_info_data USI -- --- TOC entry 7992 (class 1259 OID 17133) +-- TOC entry 9462 (class 1259 OID 65879) -- Name: mdl_userlast_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55129,7 +55134,7 @@ CREATE INDEX mdl_userlast_cou_ix ON public.mdl_user_lastaccess USING btree (cour -- --- TOC entry 7995 (class 1259 OID 17132) +-- TOC entry 9465 (class 1259 OID 65880) -- Name: mdl_userlast_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55137,7 +55142,7 @@ CREATE INDEX mdl_userlast_use_ix ON public.mdl_user_lastaccess USING btree (user -- --- TOC entry 7996 (class 1259 OID 17131) +-- TOC entry 9466 (class 1259 OID 65881) -- Name: mdl_userlast_usecou_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55145,7 +55150,7 @@ CREATE UNIQUE INDEX mdl_userlast_usecou_uix ON public.mdl_user_lastaccess USING -- --- TOC entry 7999 (class 1259 OID 17143) +-- TOC entry 9469 (class 1259 OID 65882) -- Name: mdl_userpasshist_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55153,7 +55158,7 @@ CREATE INDEX mdl_userpasshist_use_ix ON public.mdl_user_password_history USING b -- --- TOC entry 8544 (class 1259 OID 19172) +-- TOC entry 9472 (class 1259 OID 65883) -- Name: mdl_userpassrese_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55161,7 +55166,7 @@ CREATE INDEX mdl_userpassrese_use_ix ON public.mdl_user_password_resets USING bt -- --- TOC entry 7991 (class 1259 OID 17119) +-- TOC entry 9475 (class 1259 OID 65884) -- Name: mdl_userpref_usenam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55169,7 +55174,7 @@ CREATE UNIQUE INDEX mdl_userpref_usenam_uix ON public.mdl_user_preferences USING -- --- TOC entry 8327 (class 1259 OID 18358) +-- TOC entry 9478 (class 1259 OID 65885) -- Name: mdl_userprivkey_scrval_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55177,7 +55182,7 @@ CREATE INDEX mdl_userprivkey_scrval_ix ON public.mdl_user_private_key USING btre -- --- TOC entry 8328 (class 1259 OID 18359) +-- TOC entry 9479 (class 1259 OID 65886) -- Name: mdl_userprivkey_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55185,7 +55190,7 @@ CREATE INDEX mdl_userprivkey_use_ix ON public.mdl_user_private_key USING btree ( -- --- TOC entry 9214 (class 1259 OID 22108) +-- TOC entry 9480 (class 1259 OID 65887) -- Name: mdl_wiki_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55193,7 +55198,7 @@ CREATE INDEX mdl_wiki_cou_ix ON public.mdl_wiki USING btree (course); -- --- TOC entry 9231 (class 1259 OID 22183) +-- TOC entry 9483 (class 1259 OID 65888) -- Name: mdl_wikilink_fro_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55201,7 +55206,7 @@ CREATE INDEX mdl_wikilink_fro_ix ON public.mdl_wiki_links USING btree (frompagei -- --- TOC entry 9234 (class 1259 OID 22184) +-- TOC entry 9486 (class 1259 OID 65889) -- Name: mdl_wikilink_sub_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55209,7 +55214,7 @@ CREATE INDEX mdl_wikilink_sub_ix ON public.mdl_wiki_links USING btree (subwikiid -- --- TOC entry 9223 (class 1259 OID 22142) +-- TOC entry 9491 (class 1259 OID 65890) -- Name: mdl_wikipage_sub_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55217,7 +55222,7 @@ CREATE INDEX mdl_wikipage_sub_ix ON public.mdl_wiki_pages USING btree (subwikiid -- --- TOC entry 9224 (class 1259 OID 22141) +-- TOC entry 9492 (class 1259 OID 65891) -- Name: mdl_wikipage_subtituse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55225,7 +55230,7 @@ CREATE UNIQUE INDEX mdl_wikipage_subtituse_uix ON public.mdl_wiki_pages USING bt -- --- TOC entry 9219 (class 1259 OID 22120) +-- TOC entry 9495 (class 1259 OID 65892) -- Name: mdl_wikisubw_wik_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55233,7 +55238,7 @@ CREATE INDEX mdl_wikisubw_wik_ix ON public.mdl_wiki_subwikis USING btree (wikiid -- --- TOC entry 9220 (class 1259 OID 22121) +-- TOC entry 9496 (class 1259 OID 65893) -- Name: mdl_wikisubw_wikgrouse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55241,7 +55246,7 @@ CREATE UNIQUE INDEX mdl_wikisubw_wikgrouse_uix ON public.mdl_wiki_subwikis USING -- --- TOC entry 9230 (class 1259 OID 22171) +-- TOC entry 9499 (class 1259 OID 65894) -- Name: mdl_wikisyno_pagpag_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55249,7 +55254,7 @@ CREATE UNIQUE INDEX mdl_wikisyno_pagpag_uix ON public.mdl_wiki_synonyms USING bt -- --- TOC entry 9227 (class 1259 OID 22159) +-- TOC entry 9502 (class 1259 OID 65895) -- Name: mdl_wikivers_pag_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55257,7 +55262,7 @@ CREATE INDEX mdl_wikivers_pag_ix ON public.mdl_wiki_versions USING btree (pageid -- --- TOC entry 9237 (class 1259 OID 22235) +-- TOC entry 9503 (class 1259 OID 65896) -- Name: mdl_work_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55265,7 +55270,7 @@ CREATE INDEX mdl_work_cou_ix ON public.mdl_workshop USING btree (course); -- --- TOC entry 9521 (class 1259 OID 23273) +-- TOC entry 9533 (class 1259 OID 65897) -- Name: mdl_workaccu_wor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55273,7 +55278,7 @@ CREATE INDEX mdl_workaccu_wor_ix ON public.mdl_workshopform_accumulative USING b -- --- TOC entry 9256 (class 1259 OID 22302) +-- TOC entry 9508 (class 1259 OID 65898) -- Name: mdl_workaggr_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55281,7 +55286,7 @@ CREATE INDEX mdl_workaggr_use_ix ON public.mdl_workshop_aggregations USING btree -- --- TOC entry 9257 (class 1259 OID 22301) +-- TOC entry 9509 (class 1259 OID 65899) -- Name: mdl_workaggr_wor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55289,7 +55294,7 @@ CREATE INDEX mdl_workaggr_wor_ix ON public.mdl_workshop_aggregations USING btree -- --- TOC entry 9258 (class 1259 OID 22303) +-- TOC entry 9510 (class 1259 OID 65900) -- Name: mdl_workaggr_woruse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55297,7 +55302,7 @@ CREATE UNIQUE INDEX mdl_workaggr_woruse_uix ON public.mdl_workshop_aggregations -- --- TOC entry 9245 (class 1259 OID 22276) +-- TOC entry 9511 (class 1259 OID 65901) -- Name: mdl_workasse_gra_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55305,7 +55310,7 @@ CREATE INDEX mdl_workasse_gra_ix ON public.mdl_workshop_assessments USING btree -- --- TOC entry 9248 (class 1259 OID 22277) +-- TOC entry 9514 (class 1259 OID 65902) -- Name: mdl_workasse_rev_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55313,7 +55318,7 @@ CREATE INDEX mdl_workasse_rev_ix ON public.mdl_workshop_assessments USING btree -- --- TOC entry 9249 (class 1259 OID 22275) +-- TOC entry 9515 (class 1259 OID 65903) -- Name: mdl_workasse_sub_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55321,7 +55326,7 @@ CREATE INDEX mdl_workasse_sub_ix ON public.mdl_workshop_assessments USING btree -- --- TOC entry 9546 (class 1259 OID 23372) +-- TOC entry 9530 (class 1259 OID 65904) -- Name: mdl_workbestsett_wor_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55329,7 +55334,7 @@ CREATE UNIQUE INDEX mdl_workbestsett_wor_uix ON public.mdl_workshopeval_best_set -- --- TOC entry 9524 (class 1259 OID 23287) +-- TOC entry 9536 (class 1259 OID 65905) -- Name: mdl_workcomm_wor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55337,7 +55342,7 @@ CREATE INDEX mdl_workcomm_wor_ix ON public.mdl_workshopform_comments USING btree -- --- TOC entry 9250 (class 1259 OID 22291) +-- TOC entry 9516 (class 1259 OID 65906) -- Name: mdl_workgrad_ass_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55345,7 +55350,7 @@ CREATE INDEX mdl_workgrad_ass_ix ON public.mdl_workshop_grades USING btree (asse -- --- TOC entry 9251 (class 1259 OID 22292) +-- TOC entry 9517 (class 1259 OID 65907) -- Name: mdl_workgrad_assstrdim_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55353,7 +55358,7 @@ CREATE UNIQUE INDEX mdl_workgrad_assstrdim_uix ON public.mdl_workshop_grades USI -- --- TOC entry 9527 (class 1259 OID 23302) +-- TOC entry 9539 (class 1259 OID 65908) -- Name: mdl_worknume_wor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55361,7 +55366,7 @@ CREATE INDEX mdl_worknume_wor_ix ON public.mdl_workshopform_numerrors USING btre -- --- TOC entry 9530 (class 1259 OID 23311) +-- TOC entry 9542 (class 1259 OID 65909) -- Name: mdl_worknumemap_wor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55369,7 +55374,7 @@ CREATE INDEX mdl_worknumemap_wor_ix ON public.mdl_workshopform_numerrors_map USI -- --- TOC entry 9531 (class 1259 OID 23312) +-- TOC entry 9543 (class 1259 OID 65910) -- Name: mdl_worknumemap_wornon_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55377,7 +55382,7 @@ CREATE UNIQUE INDEX mdl_worknumemap_wornon_uix ON public.mdl_workshopform_numerr -- --- TOC entry 9534 (class 1259 OID 23326) +-- TOC entry 9546 (class 1259 OID 65911) -- Name: mdl_workrubr_wor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55385,7 +55390,7 @@ CREATE INDEX mdl_workrubr_wor_ix ON public.mdl_workshopform_rubric USING btree ( -- --- TOC entry 9540 (class 1259 OID 23349) +-- TOC entry 9549 (class 1259 OID 65912) -- Name: mdl_workrubrconf_wor_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55393,7 +55398,7 @@ CREATE UNIQUE INDEX mdl_workrubrconf_wor_uix ON public.mdl_workshopform_rubric_c -- --- TOC entry 9535 (class 1259 OID 23339) +-- TOC entry 9550 (class 1259 OID 65913) -- Name: mdl_workrubrleve_dim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55401,7 +55406,7 @@ CREATE INDEX mdl_workrubrleve_dim_ix ON public.mdl_workshopform_rubric_levels US -- --- TOC entry 9543 (class 1259 OID 23362) +-- TOC entry 9527 (class 1259 OID 65914) -- Name: mdl_worksche_wor_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55409,7 +55414,7 @@ CREATE UNIQUE INDEX mdl_worksche_wor_uix ON public.mdl_workshopallocation_schedu -- --- TOC entry 9240 (class 1259 OID 22257) +-- TOC entry 9520 (class 1259 OID 65915) -- Name: mdl_worksubm_aut_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55417,7 +55422,7 @@ CREATE INDEX mdl_worksubm_aut_ix ON public.mdl_workshop_submissions USING btree -- --- TOC entry 9241 (class 1259 OID 22256) +-- TOC entry 9521 (class 1259 OID 65916) -- Name: mdl_worksubm_gra_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55425,14 +55430,14 @@ CREATE INDEX mdl_worksubm_gra_ix ON public.mdl_workshop_submissions USING btree -- --- TOC entry 9244 (class 1259 OID 22255) +-- TOC entry 9524 (class 1259 OID 65917) -- Name: mdl_worksubm_wor_ix; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX mdl_worksubm_wor_ix ON public.mdl_workshop_submissions USING btree (workshopid); --- Completed on 2021-01-05 23:30:09 UTC +-- Completed on 2021-01-06 00:24:08 UTC -- -- PostgreSQL database dump complete From 215b05ab4290ab2d38780f7ca2525a26fe3cd855 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 6 Jan 2021 11:39:06 -0800 Subject: [PATCH 019/129] Set default password for Moodle admin access --- .../ansible-postgresql/templates/moodle_database_template.dump | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump index fe6c89b7..e2850642 100644 --- a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump +++ b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump @@ -43731,7 +43731,7 @@ SELECT pg_catalog.setval('public.mdl_url_id_seq', 1, false); COPY public.mdl_user (id, auth, confirmed, policyagreed, deleted, suspended, mnethostid, username, password, idnumber, firstname, lastname, email, emailstop, icq, skype, yahoo, aim, msn, phone1, phone2, institution, department, address, city, country, lang, calendartype, theme, timezone, firstaccess, lastaccess, lastlogin, currentlogin, lastip, secret, picture, url, description, descriptionformat, mailformat, maildigest, maildisplay, autosubscribe, trackforums, timecreated, timemodified, trustbitmask, imagealt, lastnamephonetic, firstnamephonetic, middlename, alternatename, moodlenetprofile) FROM stdin; 1 manual 1 0 0 0 1 guest $2y$10$uqhnR2sWCxC8jN5iDUZh1uCs95LbjaXtf0rk/N7fufZ5BrTmUPUfq Guest user root@localhost 0 en gregorian 99 0 0 0 0 0 This user is a special user that allows read-only access to some courses. 1 1 0 2 1 0 0 1609808466 0 \N \N \N \N \N \N -2 manual 1 0 0 0 1 admin $2y$10$MeiIoov87/LrH6ToPR1Ahe4uMCOxI9Jh9JERzVsZP6n5Gx/JLFdI6 Admin User email@email.com 0 en gregorian America/Los_Angeles 1609808513 1609892614 1609808513 1609883714 67.182.30.218 0 1 1 0 1 1 0 0 1609884654 0 \N +2 manual 1 0 0 0 1 admin $2y$10$7e.nO1HCZAUwOjjcB9PALumA9hz4sUd4UvKgo7x1nqty7wbP1BBlq Admin User email@email.com 0 en gregorian America/Los_Angeles 1609808513 1609892614 1609808513 1609883714 67.182.30.218 0 1 1 0 1 1 0 0 1609884654 0 \N \. From 164f6c56cdb0fef8088fc12d4cc300a1dd45ef43 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 6 Jan 2021 11:39:44 -0800 Subject: [PATCH 020/129] Set default name of hostname to connectbox -- but if env variable for ansible can override --- ansible/roles/moodle/defaults/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ansible/roles/moodle/defaults/main.yml b/ansible/roles/moodle/defaults/main.yml index 40d7253d..3118d784 100644 --- a/ansible/roles/moodle/defaults/main.yml +++ b/ansible/roles/moodle/defaults/main.yml @@ -1,2 +1,3 @@ --- -moodle_base_directory: "/var/www/moodle" \ No newline at end of file +moodle_base_directory: "/var/www/moodle" +hostname: "connectbox" \ No newline at end of file From 413a34cc435c82547bb56e0eaa858d33fa326804 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 6 Jan 2021 11:40:10 -0800 Subject: [PATCH 021/129] Pull Moodle from new Relay Trust git repo for Moodle customization --- ansible/roles/moodle/tasks/main.yml | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml index 29336941..04a19113 100644 --- a/ansible/roles/moodle/tasks/main.yml +++ b/ansible/roles/moodle/tasks/main.yml @@ -1,13 +1,26 @@ --- +- name: Recursively remove existing Moodle directory + file: + path: /var/www/moodle/ + state: absent -- name: Install Moodle 3.9 to /var/www/ - unarchive: - src: https://download.moodle.org/download.php/direct/stable39/moodle-latest-39.zip - dest: /var/www/ - remote_src: yes +- name: Make Moodle directory + file: + state: directory + path: /var/www/moodle/ + owner: admin + group: admin + mode: 0775 +- name: Install Moodle 3.9 repo to /var/www/moodle + git: + repo: 'https://github.com/RT-coding-team/the-well-moodle.git' + dest: /var/www/moodle/ + clone: yes + update: yes + - name: Make moodledata directory file: state: directory From 3c1f85f5d77561fe677d289e33b402ea708e39d2 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 6 Jan 2021 11:40:24 -0800 Subject: [PATCH 022/129] Use default variable for hostname --- ansible/roles/moodle/templates/var_www_moodle_config_php.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/roles/moodle/templates/var_www_moodle_config_php.j2 b/ansible/roles/moodle/templates/var_www_moodle_config_php.j2 index 38c77e61..36a9e23e 100644 --- a/ansible/roles/moodle/templates/var_www_moodle_config_php.j2 +++ b/ansible/roles/moodle/templates/var_www_moodle_config_php.j2 @@ -17,7 +17,7 @@ $CFG->dboptions = array ( 'dbsocket' => '', ); -$CFG->wwwroot = 'http://connectbox'; +$CFG->wwwroot = 'http://{{hostname}}'; $CFG->dataroot = '/var/www/moodledata'; $CFG->admin = 'admin'; From 9c6ee93250cc70baf73c602951bb7237c9203e48 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 6 Jan 2021 12:07:00 -0800 Subject: [PATCH 023/129] Moved from PHP to Moodle because Moodle restore requires empty directory --- .../roles/{php => moodle}/templates/var_www_moodle_info_php.j2 | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename ansible/roles/{php => moodle}/templates/var_www_moodle_info_php.j2 (100%) diff --git a/ansible/roles/php/templates/var_www_moodle_info_php.j2 b/ansible/roles/moodle/templates/var_www_moodle_info_php.j2 similarity index 100% rename from ansible/roles/php/templates/var_www_moodle_info_php.j2 rename to ansible/roles/moodle/templates/var_www_moodle_info_php.j2 From 39d12c66c783c9674bc8af4567e5f92f267a256c Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 6 Jan 2021 12:08:29 -0800 Subject: [PATCH 024/129] Move info.php install into the Moodle tasks --- ansible/roles/moodle/tasks/main.yml | 11 ++++++++++- ansible/roles/php/tasks/main.yml | 6 ------ 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml index 04a19113..8531adbd 100644 --- a/ansible/roles/moodle/tasks/main.yml +++ b/ansible/roles/moodle/tasks/main.yml @@ -1,5 +1,6 @@ --- + - name: Recursively remove existing Moodle directory file: path: /var/www/moodle/ @@ -43,4 +44,12 @@ recurse: yes owner: www-data group: www-data - mode: 0775 \ No newline at end of file + mode: 0775 + + +# Install generic PHP test script into the moodle directory so we can know that this is ok. +- name: Copy PHP info.php + template: + src: var_www_moodle_info_php.j2 + dest: /var/www/moodle/info.php + diff --git a/ansible/roles/php/tasks/main.yml b/ansible/roles/php/tasks/main.yml index b27c302b..bfc5293a 100644 --- a/ansible/roles/php/tasks/main.yml +++ b/ansible/roles/php/tasks/main.yml @@ -44,9 +44,3 @@ - php7.4-fpm - php7.4-gd -- name: Copy PHP info.php - template: - src: var_www_moodle_info_php.j2 - dest: /var/www/moodle/info.php - -# TODO: Test info.php \ No newline at end of file From ac33ecf220db64fe5cd7cc7b0004a6bd60bf6254 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 6 Jan 2021 12:17:32 -0800 Subject: [PATCH 025/129] Comments regarding ansible installation --- .../roles/ansible-postgresql/tasks/main.yml | 30 +++++++++---------- ansible/roles/moodle/defaults/main.yml | 4 ++- ansible/roles/moodle/tasks/main.yml | 8 +++-- ansible/roles/nginx/tasks/main.yml | 1 + ansible/roles/php/tasks/main.yml | 6 ++++ 5 files changed, 29 insertions(+), 20 deletions(-) diff --git a/ansible/roles/ansible-postgresql/tasks/main.yml b/ansible/roles/ansible-postgresql/tasks/main.yml index ac540b7b..1bdbb1c4 100644 --- a/ansible/roles/ansible-postgresql/tasks/main.yml +++ b/ansible/roles/ansible-postgresql/tasks/main.yml @@ -1,5 +1,7 @@ --- +# Most of this playbook is from the Ansible Galaxy + # Convenient ordering - debian.yml sets postgresql_version if it is unset, # which is needed by the include_vars files. - include_tasks: debian.yml @@ -90,24 +92,25 @@ - include_tasks: backup.yml when: postgresql_backup_dir is defined -- name: Set Password +############################################## +# The following items are all added for The Well / Moodle +# We delete any existing Moodle Database and Create a new One From the Template + +- name: Set Default PSQL Password command: psql -c "ALTER USER postgres WITH PASSWORD '{{postgresql_user_password}}';" become: true become_user: postgres -# TODO: Make this not fail on already exists -#- name: Create empty moodle database -# command: psql -c "create database moodle;" -# become: true -# become_user: postgres -# failed_when: -# - '"No such" not in result.stdout' - - name: Delete Existing Moodle Database command: psql -c "DROP DATABASE IF EXISTS moodle;" become: true become_user: postgres - + +- name: Create empty Moodle Database + command: psql -c "create database moodle;" + become: true + become_user: postgres + - name: Copy Default Postgres Database Dump To /tmp template: src: "{{ item.src }}" @@ -117,12 +120,7 @@ group: postgres with_items: - { src: "moodle_database_template.dump", dest: "moodle_database_template.dump" } - -- name: Create empty Moodle Database - command: psql -c "create database moodle;" - become: true - become_user: postgres - + - name: Install Default Postgres Database for Moodle command: psql -f /tmp/moodle_database_template.dump moodle become: true diff --git a/ansible/roles/moodle/defaults/main.yml b/ansible/roles/moodle/defaults/main.yml index 3118d784..f308749a 100644 --- a/ansible/roles/moodle/defaults/main.yml +++ b/ansible/roles/moodle/defaults/main.yml @@ -1,3 +1,5 @@ --- moodle_base_directory: "/var/www/moodle" -hostname: "connectbox" \ No newline at end of file + +# This is the default hostname of the connectbox and Moodle will use it unless provided by env variable during Ansible install +hostname: "connectbox" \ No newline at end of file diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml index 8531adbd..4e96fd2b 100644 --- a/ansible/roles/moodle/tasks/main.yml +++ b/ansible/roles/moodle/tasks/main.yml @@ -1,4 +1,6 @@ --- +###################################################### +# Moodle installation presumes previously installed PHP and PostgreSQL as per the playbooks - name: Recursively remove existing Moodle directory @@ -14,7 +16,7 @@ group: admin mode: 0775 - +# This is from Relay Trust's Repo - name: Install Moodle 3.9 repo to /var/www/moodle git: repo: 'https://github.com/RT-coding-team/the-well-moodle.git' @@ -22,7 +24,7 @@ clone: yes update: yes -- name: Make moodledata directory +- name: Make moodledata directory that Moodle requires for all its functions file: state: directory path: /var/www/moodledata/ @@ -36,6 +38,7 @@ src: var_www_moodle_config_php.j2 dest: /var/www/moodle/config.php +# Everything in Moodle runs as web server user - name: Recursively change ownership /var/www/moodle become: true file: @@ -46,7 +49,6 @@ group: www-data mode: 0775 - # Install generic PHP test script into the moodle directory so we can know that this is ok. - name: Copy PHP info.php template: diff --git a/ansible/roles/nginx/tasks/main.yml b/ansible/roles/nginx/tasks/main.yml index 97cc9da1..5f2a38ed 100644 --- a/ansible/roles/nginx/tasks/main.yml +++ b/ansible/roles/nginx/tasks/main.yml @@ -40,6 +40,7 @@ # - { src: "{{ nginx_vhost_file_captive_portal }}.j2", dest: "{{ nginx_vhost_file_captive_portal }}" } # - { src: "{{ nginx_vhost_file_icon_only }}.j2", dest: "{{ nginx_vhost_file_icon_only }}" } # - { src: "{{ nginx_vhost_file_static_site }}.j2", dest: "{{ nginx_vhost_file_static_site }}" } +# TODO: Need to reactivate the captive portal and content serving - name: Create nginx active vhost symlink for captive portal vhost file: diff --git a/ansible/roles/php/tasks/main.yml b/ansible/roles/php/tasks/main.yml index bfc5293a..97243d4d 100644 --- a/ansible/roles/php/tasks/main.yml +++ b/ansible/roles/php/tasks/main.yml @@ -1,4 +1,8 @@ --- + +# PHP is required for Moodle software to run. Using 7.4 because that is most currently recommended version for Moodle 3.9.3 + + - name: Make moodle base directory file: path: "{{ moodle_base_directory }}" @@ -27,6 +31,8 @@ apt: update_cache: yes + +# These are all required by Moodle - name: Install PHP & Libraries apt: pkg: From 6fcf09eb419df4bb9d92339a5e4770e5676cc833 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 13 Jan 2021 11:23:10 -0800 Subject: [PATCH 026/129] Update all the vhosts --- ansible/roles/nginx/tasks/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible/roles/nginx/tasks/main.yml b/ansible/roles/nginx/tasks/main.yml index 5f2a38ed..d33633fb 100644 --- a/ansible/roles/nginx/tasks/main.yml +++ b/ansible/roles/nginx/tasks/main.yml @@ -37,9 +37,9 @@ notify: restart nginx with_items: - { src: "{{ nginx_vhost_file_moodle }}.j2", dest: "{{ nginx_vhost_file_moodle }}" } -# - { src: "{{ nginx_vhost_file_captive_portal }}.j2", dest: "{{ nginx_vhost_file_captive_portal }}" } -# - { src: "{{ nginx_vhost_file_icon_only }}.j2", dest: "{{ nginx_vhost_file_icon_only }}" } -# - { src: "{{ nginx_vhost_file_static_site }}.j2", dest: "{{ nginx_vhost_file_static_site }}" } + - { src: "{{ nginx_vhost_file_captive_portal }}.j2", dest: "{{ nginx_vhost_file_captive_portal }}" } + - { src: "{{ nginx_vhost_file_icon_only }}.j2", dest: "{{ nginx_vhost_file_icon_only }}" } + - { src: "{{ nginx_vhost_file_static_site }}.j2", dest: "{{ nginx_vhost_file_static_site }}" } # TODO: Need to reactivate the captive portal and content serving - name: Create nginx active vhost symlink for captive portal vhost From 31f8aa4f333b7b9aa9ad18667b35c53a50db41d6 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 13 Jan 2021 12:01:51 -0800 Subject: [PATCH 027/129] Update .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index eedf2c30..a0072332 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ ci/inventory ghostdriver.log ci/terraform.tfstate* ansible/inventory +makenewimage.sh From 8fb183765de28ae1c135dba5d9c49d814b86b376 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Thu, 14 Jan 2021 06:23:04 -0800 Subject: [PATCH 028/129] Fix the owner and group to be www-data for moodle --- ansible/roles/moodle/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml index 4e96fd2b..fd5a97d3 100644 --- a/ansible/roles/moodle/tasks/main.yml +++ b/ansible/roles/moodle/tasks/main.yml @@ -12,8 +12,8 @@ file: state: directory path: /var/www/moodle/ - owner: admin - group: admin + owner: www-data + group: www-data mode: 0775 # This is from Relay Trust's Repo From 60f0c3837891896cca86d97afccbfe57c02839eb Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Thu, 14 Jan 2021 08:37:30 -0800 Subject: [PATCH 029/129] Change to PHP 7.3 --- ansible/roles/nginx/templates/connectbox_moodle.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 b/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 index 3c00fb09..f3420c56 100644 --- a/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 +++ b/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 @@ -19,6 +19,6 @@ server { fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; - fastcgi_pass unix:/var/run/php/php7.4-fpm.sock; + fastcgi_pass unix:/var/run/php/php7.3-fpm.sock; } } From 8663fc0c24a321c324bdead6060afd42078ea398 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Thu, 14 Jan 2021 08:37:53 -0800 Subject: [PATCH 030/129] Change to PHP 7.3 --- ansible/roles/php/tasks/main.yml | 68 +++++++++++++++++--------------- 1 file changed, 37 insertions(+), 31 deletions(-) diff --git a/ansible/roles/php/tasks/main.yml b/ansible/roles/php/tasks/main.yml index 97243d4d..825b0b2c 100644 --- a/ansible/roles/php/tasks/main.yml +++ b/ansible/roles/php/tasks/main.yml @@ -12,41 +12,47 @@ command: apt install -y curl wget gnupg2 ca-certificates lsb-release apt-transport-https become: true -- name: Download GPG key - get_url: - url: https://packages.sury.org/php/apt.gpg - dest: /tmp/apt.gpg - mode: '0440' +#- name: Download GPG key +# get_url: +# url: https://packages.sury.org/php/apt.gpg +# dest: /tmp/apt.gpg +# mode: '0440' +# -- name: Add apt GPG key - command: apt-key add /tmp/apt.gpg - become: true - -- name: Update repository that contains PHP 7.4 - template: - src: etc_apt_sources_list_d_php_list.j2 - dest: /etc/apt/sources.list.d/php.list - -- name: Update Apt for Repos - apt: - update_cache: yes - +#- name: Copy GPG key to /tmp +# template: +# src: tmp_apt_gpg.j2 +# dest: /tmp/apt.gpg +# +#- name: Add apt GPG key +# command: apt-key add /tmp/apt.gpg +# become: true +# +#- name: Update repository that contains PHP 7.4 +# template: +# src: etc_apt_sources_list_d_php_list.j2 +# dest: /etc/apt/sources.list.d/php.list +# +#- name: Update Apt for Repos +# apt: +# update_cache: yes +# # These are all required by Moodle - name: Install PHP & Libraries apt: pkg: - - php7.4 - - php7.4-cli - - php7.4-common - - php7.4-curl - - php7.4-mbstring - - php7.4-pgsql - - php7.4-xml - - php7.4-zip - - php7.4-intl - - php7.4-xmlrpc - - php7.4-soap - - php7.4-fpm - - php7.4-gd + - php7.3 + - php7.3-cli + - php7.3-common + - php7.3-curl + - php7.3-mbstring + - php7.3-pgsql + - php7.3-xml + - php7.3-zip + - php7.3-intl + - php7.3-xmlrpc + - php7.3-soap + - php7.3-fpm + - php7.3-gd From ce47b593351b9c05a3b8396db0188e00a4e5527f Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Thu, 14 Jan 2021 08:38:28 -0800 Subject: [PATCH 031/129] In process of determining the correct config for Moodle plus CB web serving --- ansible/roles/nginx/tasks/main.yml | 30 ++++++++++++++++++++---------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/ansible/roles/nginx/tasks/main.yml b/ansible/roles/nginx/tasks/main.yml index d33633fb..98670da5 100644 --- a/ansible/roles/nginx/tasks/main.yml +++ b/ansible/roles/nginx/tasks/main.yml @@ -4,6 +4,16 @@ name: nginx-light state: present + +- name: Make nginx logs directory + file: + state: directory + path: "/var/log/connectbox/" + owner: www-data + group: www-data + recurse: yes + mode: 0755 + - name: Remove OS default nginx vhost file: path: "{{ nginx_enabled_vhosts_path }}/default" @@ -37,18 +47,18 @@ notify: restart nginx with_items: - { src: "{{ nginx_vhost_file_moodle }}.j2", dest: "{{ nginx_vhost_file_moodle }}" } - - { src: "{{ nginx_vhost_file_captive_portal }}.j2", dest: "{{ nginx_vhost_file_captive_portal }}" } - - { src: "{{ nginx_vhost_file_icon_only }}.j2", dest: "{{ nginx_vhost_file_icon_only }}" } - - { src: "{{ nginx_vhost_file_static_site }}.j2", dest: "{{ nginx_vhost_file_static_site }}" } +# - { src: "{{ nginx_vhost_file_captive_portal }}.j2", dest: "{{ nginx_vhost_file_captive_portal }}" } +# - { src: "{{ nginx_vhost_file_icon_only }}.j2", dest: "{{ nginx_vhost_file_icon_only }}" } +# - { src: "{{ nginx_vhost_file_static_site }}.j2", dest: "{{ nginx_vhost_file_static_site }}" } # TODO: Need to reactivate the captive portal and content serving -- name: Create nginx active vhost symlink for captive portal vhost - file: - src: "{{ nginx_available_vhosts_path }}/{{ nginx_vhost_file_captive_portal }}" - dest: "{{ nginx_enabled_vhosts_path }}/{{ nginx_vhost_file_captive_portal }}" - state: link - force: yes - notify: restart nginx +#- name: Create nginx active vhost symlink for captive portal vhost +# file: +# src: "{{ nginx_available_vhosts_path }}/{{ nginx_vhost_file_captive_portal }}" +# dest: "{{ nginx_enabled_vhosts_path }}/{{ nginx_vhost_file_captive_portal }}" +# state: link +# force: yes +# notify: restart nginx - name: Create nginx active vhost symlink for Moodle vhost file: From 2085377fb55540114765ffb2b3a35529a4cb8816 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 19 Jan 2021 05:21:26 -0800 Subject: [PATCH 032/129] This does work as expected --- ansible/roles/connectbox-pi/tasks/main.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/ansible/roles/connectbox-pi/tasks/main.yml b/ansible/roles/connectbox-pi/tasks/main.yml index 42823434..39904dc7 100644 --- a/ansible/roles/connectbox-pi/tasks/main.yml +++ b/ansible/roles/connectbox-pi/tasks/main.yml @@ -27,7 +27,6 @@ system: yes createhome: no -# TODO confirm this works as expected - name: Add www-data to _connectbox group user: name: www-data From 48f5c33c04ac4a571a7e09d88ecb17c8bae95142 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 19 Jan 2021 05:21:47 -0800 Subject: [PATCH 033/129] Use global configuration for hostname --- ansible/roles/moodle/defaults/main.yml | 2 +- ansible/roles/moodle/templates/var_www_moodle_config_php.j2 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/roles/moodle/defaults/main.yml b/ansible/roles/moodle/defaults/main.yml index f308749a..6020bf37 100644 --- a/ansible/roles/moodle/defaults/main.yml +++ b/ansible/roles/moodle/defaults/main.yml @@ -2,4 +2,4 @@ moodle_base_directory: "/var/www/moodle" # This is the default hostname of the connectbox and Moodle will use it unless provided by env variable during Ansible install -hostname: "connectbox" \ No newline at end of file +hostname: "{{ connectbox_default_hostname }}" \ No newline at end of file diff --git a/ansible/roles/moodle/templates/var_www_moodle_config_php.j2 b/ansible/roles/moodle/templates/var_www_moodle_config_php.j2 index 36a9e23e..ab68bec8 100644 --- a/ansible/roles/moodle/templates/var_www_moodle_config_php.j2 +++ b/ansible/roles/moodle/templates/var_www_moodle_config_php.j2 @@ -17,7 +17,7 @@ $CFG->dboptions = array ( 'dbsocket' => '', ); -$CFG->wwwroot = 'http://{{hostname}}'; +$CFG->wwwroot = 'http://{{connectbox_default_hostname}}'; $CFG->dataroot = '/var/www/moodledata'; $CFG->admin = 'admin'; From eeb4d60550036b4f37d60f9224bddf8c24a56e31 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 19 Jan 2021 05:26:29 -0800 Subject: [PATCH 034/129] Resolved this (read more) Pi has PHP 7.3 in apt already. Debian 9 (AWS and ConnectBox) does not. The Sury repo has PHP 7.3 but adding that repo fails on Pi so we are ingnoring the failure. With all these, if PHP doesn't load this will fail so I'm ok ignoring the repo failures if they occur. --- ansible/roles/php/tasks/main.yml | 37 +++++++++++--------------------- 1 file changed, 12 insertions(+), 25 deletions(-) diff --git a/ansible/roles/php/tasks/main.yml b/ansible/roles/php/tasks/main.yml index 825b0b2c..199a0b7e 100644 --- a/ansible/roles/php/tasks/main.yml +++ b/ansible/roles/php/tasks/main.yml @@ -12,31 +12,18 @@ command: apt install -y curl wget gnupg2 ca-certificates lsb-release apt-transport-https become: true -#- name: Download GPG key -# get_url: -# url: https://packages.sury.org/php/apt.gpg -# dest: /tmp/apt.gpg -# mode: '0440' -# - -#- name: Copy GPG key to /tmp -# template: -# src: tmp_apt_gpg.j2 -# dest: /tmp/apt.gpg -# -#- name: Add apt GPG key -# command: apt-key add /tmp/apt.gpg -# become: true -# -#- name: Update repository that contains PHP 7.4 -# template: -# src: etc_apt_sources_list_d_php_list.j2 -# dest: /etc/apt/sources.list.d/php.list -# -#- name: Update Apt for Repos -# apt: -# update_cache: yes -# +# Pi does not require this -- but other OS do so we are ignoring the error. The install will fail if PHP 7.3 is not found +- name: Add sury apt key -- This may fail on Pi but error ignored is ok as long as PHP install completes below + ansible.builtin.apt_key: + url: https://packages.sury.org/php/apt.gpg + state: present + ignore_errors: yes + +- name: Add sury repo into sources list -- This may fail on Pi but error ignored is ok as long as PHP install completes below + ansible.builtin.apt_repository: + repo: deb https://packages.sury.org/php/ stretch main + state: present + ignore_errors: yes # These are all required by Moodle - name: Install PHP & Libraries From 0c59e6470ad34b8e1a01f1653532d85cc97971bf Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 19 Jan 2021 05:26:37 -0800 Subject: [PATCH 035/129] Remove ipv6 --- ansible/roles/nginx/templates/connectbox_moodle.conf.j2 | 1 - 1 file changed, 1 deletion(-) diff --git a/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 b/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 index f3420c56..af3ac7be 100644 --- a/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 +++ b/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 @@ -1,7 +1,6 @@ server { listen 80; - listen [::]:80; root /var/www/moodle/; index index.php index.html index.htm; From 118ef423ac5f04b4fc4a6f27ad88ca5069403920 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Fri, 29 Jan 2021 13:09:10 -0800 Subject: [PATCH 036/129] Update README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 74d1c2f2..7faf2343 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,15 @@ [![Build Status](https://travis-ci.org/ConnectBox/connectbox-pi.svg?branch=master)](https://travis-ci.org/ConnectBox/connectbox-pi) +# The Well version of ConnectBox + +The Well is a variant of ConnectBox that adds Moodle Learning Management System (v. 3.9.3), PHP (v. 7.4) and PostgreSQL (vv 9.6) to bring training system and learning content to the ConnectBox platform. + +Summary Of Changes: +* ConnectBox Ansible roles are updated to build ConnectBox with Moodle, PHP and PostgreSQL +* Refer to Relay Trust Moodle Repo for Documentation Of Changes +* Default Moodle PostgreSQL database is located in this repo under ansible/roles/ansible-postgresql/templates/ +* (There will be more as this gets built out) + # ConnectBox ConnectBox is a media sharing device based on small form factor computers including the Raspberry Pi 3, Raspberry Pi Zero W, NanoPi NEO, Orange Pi Zero and Pine64. From af2f4bf7ccc2c8936960095d16eccb37109e139f Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 3 Feb 2021 07:09:09 -0800 Subject: [PATCH 037/129] Set default hostname, QR code for login, generic user account --- .../roles/ansible-postgresql/tasks/main.yml | 38 ++++++------------- .../ansible-postgresql/tasks/overwrite.yml | 32 ++++++++++++++++ .../templates/moodle_database_template.dump | 5 ++- ansible/roles/nginx/tasks/main.yml | 14 +++---- ansible/roles/wifi-ap/tasks/main.yml | 3 +- 5 files changed, 55 insertions(+), 37 deletions(-) create mode 100644 ansible/roles/ansible-postgresql/tasks/overwrite.yml diff --git a/ansible/roles/ansible-postgresql/tasks/main.yml b/ansible/roles/ansible-postgresql/tasks/main.yml index 1bdbb1c4..7bfdce3b 100644 --- a/ansible/roles/ansible-postgresql/tasks/main.yml +++ b/ansible/roles/ansible-postgresql/tasks/main.yml @@ -96,36 +96,20 @@ # The following items are all added for The Well / Moodle # We delete any existing Moodle Database and Create a new One From the Template -- name: Set Default PSQL Password - command: psql -c "ALTER USER postgres WITH PASSWORD '{{postgresql_user_password}}';" +- name: Check For Existing + command: psql moodle -c "select * from mdl_course;" become: true become_user: postgres + register: buildDatabase + ignore_errors: yes + +- debug: msg="Build Database? {{buildDatabase.rc}}" + +- include_tasks: overwrite.yml + when: buildDatabase.rc > 0 + + -- name: Delete Existing Moodle Database - command: psql -c "DROP DATABASE IF EXISTS moodle;" - become: true - become_user: postgres - -- name: Create empty Moodle Database - command: psql -c "create database moodle;" - become: true - become_user: postgres - -- name: Copy Default Postgres Database Dump To /tmp - template: - src: "{{ item.src }}" - dest: "/tmp/{{ item.dest }}" - mode: 0666 - owner: postgres - group: postgres - with_items: - - { src: "moodle_database_template.dump", dest: "moodle_database_template.dump" } - -- name: Install Default Postgres Database for Moodle - command: psql -f /tmp/moodle_database_template.dump moodle - become: true - become_user: postgres - - name: Ensure PostgreSQL is running service: name: "{{ postgresql_service_name }}" diff --git a/ansible/roles/ansible-postgresql/tasks/overwrite.yml b/ansible/roles/ansible-postgresql/tasks/overwrite.yml new file mode 100644 index 00000000..4305a0ec --- /dev/null +++ b/ansible/roles/ansible-postgresql/tasks/overwrite.yml @@ -0,0 +1,32 @@ +# These run if there is not moodle database existing + + +- name: Set Default PSQL Password + command: psql -c "ALTER USER postgres WITH PASSWORD '{{postgresql_user_password}}';" + become: true + become_user: postgres + +- name: Delete Existing Moodle Database + command: psql -c "DROP DATABASE IF EXISTS moodle;" + become: true + become_user: postgres + +- name: Create empty Moodle Database + command: psql -c "create database moodle;" + become: true + become_user: postgres + +- name: Copy Default Postgres Database Dump To /tmp + template: + src: "{{ item.src }}" + dest: "/tmp/{{ item.dest }}" + mode: 0666 + owner: postgres + group: postgres + with_items: + - { src: "moodle_database_template.dump", dest: "moodle_database_template.dump" } + +- name: Install Default Postgres Database for Moodle + command: psql -f /tmp/moodle_database_template.dump moodle + become: true + become_user: postgres diff --git a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump index e2850642..f2261166 100644 --- a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump +++ b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump @@ -32507,7 +32507,7 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 1865 tinymce_spellchecker spelllanguagelist +English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv 1866 tool_mobile apppolicy 1867 tool_mobile typeoflogin 1 -1868 tool_mobile qrcodetype 1 +1868 tool_mobile qrcodetype 2 1869 tool_mobile forcedurlscheme moodlemobile 1870 tool_mobile minimumversion 1871 tool_mobile enablesmartappbanners 0 @@ -37790,7 +37790,7 @@ SELECT pg_catalog.setval('public.mdl_mnet_application_id_seq', 2, true); -- COPY public.mdl_mnet_host (id, deleted, wwwroot, ip_address, name, public_key, public_key_expires, transport, portno, last_connect_time, last_log_id, force_theme, theme, applicationid, sslverification) FROM stdin; -1 0 http://18.237.39.129 172.30.2.144 0 0 0 0 0 0 \N 1 0 +1 0 http://{{ connectbox_default_hostname }} 172.30.2.144 0 0 0 0 0 0 \N 1 0 2 0 All Hosts 0 0 0 0 0 0 \N 1 0 \. @@ -43732,6 +43732,7 @@ SELECT pg_catalog.setval('public.mdl_url_id_seq', 1, false); COPY public.mdl_user (id, auth, confirmed, policyagreed, deleted, suspended, mnethostid, username, password, idnumber, firstname, lastname, email, emailstop, icq, skype, yahoo, aim, msn, phone1, phone2, institution, department, address, city, country, lang, calendartype, theme, timezone, firstaccess, lastaccess, lastlogin, currentlogin, lastip, secret, picture, url, description, descriptionformat, mailformat, maildigest, maildisplay, autosubscribe, trackforums, timecreated, timemodified, trustbitmask, imagealt, lastnamephonetic, firstnamephonetic, middlename, alternatename, moodlenetprofile) FROM stdin; 1 manual 1 0 0 0 1 guest $2y$10$uqhnR2sWCxC8jN5iDUZh1uCs95LbjaXtf0rk/N7fufZ5BrTmUPUfq Guest user root@localhost 0 en gregorian 99 0 0 0 0 0 This user is a special user that allows read-only access to some courses. 1 1 0 2 1 0 0 1609808466 0 \N \N \N \N \N \N 2 manual 1 0 0 0 1 admin $2y$10$7e.nO1HCZAUwOjjcB9PALumA9hz4sUd4UvKgo7x1nqty7wbP1BBlq Admin User email@email.com 0 en gregorian America/Los_Angeles 1609808513 1609892614 1609808513 1609883714 67.182.30.218 0 1 1 0 1 1 0 0 1609884654 0 \N +3 manual 1 0 0 0 1 user $2y$10$7e.nO1HCZAUwOjjcB9PALumA9hz4sUd4UvKgo7x1nqty7wbP1BBlq Default User email2@email.com 0 en gregorian America/Los_Angeles 1609808513 1609892614 1609808513 1609883714 67.182.30.218 0 1 1 0 1 1 0 0 1609884654 0 \N \. diff --git a/ansible/roles/nginx/tasks/main.yml b/ansible/roles/nginx/tasks/main.yml index 98670da5..5e6a7d4c 100644 --- a/ansible/roles/nginx/tasks/main.yml +++ b/ansible/roles/nginx/tasks/main.yml @@ -68,13 +68,13 @@ force: yes notify: restart nginx -- name: Create nginx active vhost symlink for selected interface - file: - src: "{{ nginx_available_vhosts_path }}/{{ interface_type_files[interface_type] }}" - dest: "{{ nginx_enabled_vhosts_path }}/connectbox_interface.conf" - state: link - force: yes - notify: restart nginx +#- name: Create nginx active vhost symlink for selected interface +# file: +# src: "{{ nginx_available_vhosts_path }}/{{ interface_type_files[interface_type] }}" +# dest: "{{ nginx_enabled_vhosts_path }}/connectbox_interface.conf" +# state: link +# force: yes +# notify: restart nginx - name: Ensure nginx is started and enabled to start at boot service: diff --git a/ansible/roles/wifi-ap/tasks/main.yml b/ansible/roles/wifi-ap/tasks/main.yml index 26b2c12b..e4386ff2 100644 --- a/ansible/roles/wifi-ap/tasks/main.yml +++ b/ansible/roles/wifi-ap/tasks/main.yml @@ -44,9 +44,10 @@ # Note: this is not a handler because wlan0/hostapd might be broken in later steps # before the handler would be executed. This ensures that wlan0 will be up and # hostapd properly running before exiting this role. -- name: Reload hostapd +- name: Reload hostapd -- Allow ignore errors for devices without WLAN shell: "ifdown wlan0; sleep 1; ifup wlan0" when: etc_hostapd_hostapd_conf.changed + ignore_errors: yes tags: # This task on change is intentionally not a handler; don't trigger ANSIBLE0016 - skip_ansible_lint From b72ffeab8e7bb03f62d86bd2944eecae2dd68415 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 3 Feb 2021 16:16:57 -0800 Subject: [PATCH 038/129] Increase upload size to 200M --- ansible/roles/nginx/templates/nginx.conf.j2 | 2 +- ansible/roles/php/tasks/main.yml | 30 +++++++++++++++++++++ 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/ansible/roles/nginx/templates/nginx.conf.j2 b/ansible/roles/nginx/templates/nginx.conf.j2 index cca48245..2b4c4439 100644 --- a/ansible/roles/nginx/templates/nginx.conf.j2 +++ b/ansible/roles/nginx/templates/nginx.conf.j2 @@ -18,7 +18,7 @@ http { server_names_hash_bucket_size 64; - client_max_body_size 64m; + client_max_body_size 100M; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' diff --git a/ansible/roles/php/tasks/main.yml b/ansible/roles/php/tasks/main.yml index 199a0b7e..fdfa80fc 100644 --- a/ansible/roles/php/tasks/main.yml +++ b/ansible/roles/php/tasks/main.yml @@ -43,3 +43,33 @@ - php7.3-fpm - php7.3-gd +# Set larger uploads configs for PHP + +- name: Update php.ini post_max_size + replace: + dest: /etc/php/7.3/fpm/php.ini + regexp: '^post_max_size.*$' + replace: 'post_max_size = 201M' + backup: yes + become: true + +- name: Update php.ini upload_max_filesize + replace: + dest: /etc/php/7.3/fpm/php.ini + regexp: '^upload_max_filesize.*$' + replace: 'upload_max_filesize = 201M' + backup: yes + become: true + + +- name: Update php.ini max_execution_time + replace: + dest: /etc/php/7.3/fpm/php.ini + regexp: '^max_execution_time.*$' + replace: 'max_execution_time = 601' + backup: yes + become: true + +- name: Restart PHP FPM + command: /etc/init.d/php7.3-fpm restart + become: true \ No newline at end of file From ca348861e22bcffe9490c1700771eda3dbf7bbdd Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 3 Feb 2021 16:17:23 -0800 Subject: [PATCH 039/129] overwrite_database=true in ansible will remove existing moodle database and replace with default --- ansible/roles/ansible-postgresql/tasks/main.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ansible/roles/ansible-postgresql/tasks/main.yml b/ansible/roles/ansible-postgresql/tasks/main.yml index 7bfdce3b..9d069562 100644 --- a/ansible/roles/ansible-postgresql/tasks/main.yml +++ b/ansible/roles/ansible-postgresql/tasks/main.yml @@ -106,9 +106,7 @@ - debug: msg="Build Database? {{buildDatabase.rc}}" - include_tasks: overwrite.yml - when: buildDatabase.rc > 0 - - + when: buildDatabase.rc > 0 or overwrite_database - name: Ensure PostgreSQL is running service: From 064f7ef8981480510e710297bf650091051a8564 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 8 Feb 2021 07:24:25 -0800 Subject: [PATCH 040/129] Rebaseline the database to 3.10 --- .../templates/moodle_database_template.dump | 6065 +---------------- 1 file changed, 15 insertions(+), 6050 deletions(-) diff --git a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump index f2261166..1adffa80 100644 --- a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump +++ b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump @@ -5,8 +5,6 @@ -- Dumped from database version 9.6.20 -- Dumped by pg_dump version 9.6.20 --- Started on 2021-01-06 00:24:07 UTC - SET statement_timeout = 0; SET lock_timeout = 0; SET idle_in_transaction_session_timeout = 0; @@ -19,7 +17,6 @@ SET client_min_messages = warning; SET row_security = off; -- --- TOC entry 1 (class 3079 OID 13017) -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: -- @@ -27,8 +24,6 @@ CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; -- --- TOC entry 10532 (class 0 OID 0) --- Dependencies: 1 -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: -- @@ -40,7 +35,6 @@ SET default_tablespace = ''; SET default_with_oids = false; -- --- TOC entry 185 (class 1259 OID 58912) -- Name: mdl_analytics_indicator_calc; Type: TABLE; Schema: public; Owner: postgres -- @@ -60,8 +54,6 @@ CREATE TABLE public.mdl_analytics_indicator_calc ( ALTER TABLE public.mdl_analytics_indicator_calc OWNER TO postgres; -- --- TOC entry 10533 (class 0 OID 0) --- Dependencies: 185 -- Name: TABLE mdl_analytics_indicator_calc; Type: COMMENT; Schema: public; Owner: postgres -- @@ -69,7 +61,6 @@ COMMENT ON TABLE public.mdl_analytics_indicator_calc IS 'Stored indicator calcul -- --- TOC entry 186 (class 1259 OID 58920) -- Name: mdl_analytics_indicator_calc_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -84,8 +75,6 @@ CREATE SEQUENCE public.mdl_analytics_indicator_calc_id_seq ALTER TABLE public.mdl_analytics_indicator_calc_id_seq OWNER TO postgres; -- --- TOC entry 10534 (class 0 OID 0) --- Dependencies: 186 -- Name: mdl_analytics_indicator_calc_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -93,7 +82,6 @@ ALTER SEQUENCE public.mdl_analytics_indicator_calc_id_seq OWNED BY public.mdl_an -- --- TOC entry 187 (class 1259 OID 58922) -- Name: mdl_analytics_models; Type: TABLE; Schema: public; Owner: postgres -- @@ -117,8 +105,6 @@ CREATE TABLE public.mdl_analytics_models ( ALTER TABLE public.mdl_analytics_models OWNER TO postgres; -- --- TOC entry 10535 (class 0 OID 0) --- Dependencies: 187 -- Name: TABLE mdl_analytics_models; Type: COMMENT; Schema: public; Owner: postgres -- @@ -126,7 +112,6 @@ COMMENT ON TABLE public.mdl_analytics_models IS 'Analytic models.'; -- --- TOC entry 188 (class 1259 OID 58931) -- Name: mdl_analytics_models_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -141,8 +126,6 @@ CREATE SEQUENCE public.mdl_analytics_models_id_seq ALTER TABLE public.mdl_analytics_models_id_seq OWNER TO postgres; -- --- TOC entry 10536 (class 0 OID 0) --- Dependencies: 188 -- Name: mdl_analytics_models_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -150,7 +133,6 @@ ALTER SEQUENCE public.mdl_analytics_models_id_seq OWNED BY public.mdl_analytics_ -- --- TOC entry 189 (class 1259 OID 58933) -- Name: mdl_analytics_models_log; Type: TABLE; Schema: public; Owner: postgres -- @@ -173,8 +155,6 @@ CREATE TABLE public.mdl_analytics_models_log ( ALTER TABLE public.mdl_analytics_models_log OWNER TO postgres; -- --- TOC entry 10537 (class 0 OID 0) --- Dependencies: 189 -- Name: TABLE mdl_analytics_models_log; Type: COMMENT; Schema: public; Owner: postgres -- @@ -182,7 +162,6 @@ COMMENT ON TABLE public.mdl_analytics_models_log IS 'Analytic models changes dur -- --- TOC entry 190 (class 1259 OID 58942) -- Name: mdl_analytics_models_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -197,8 +176,6 @@ CREATE SEQUENCE public.mdl_analytics_models_log_id_seq ALTER TABLE public.mdl_analytics_models_log_id_seq OWNER TO postgres; -- --- TOC entry 10538 (class 0 OID 0) --- Dependencies: 190 -- Name: mdl_analytics_models_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -206,7 +183,6 @@ ALTER SEQUENCE public.mdl_analytics_models_log_id_seq OWNED BY public.mdl_analyt -- --- TOC entry 191 (class 1259 OID 58944) -- Name: mdl_analytics_predict_samples; Type: TABLE; Schema: public; Owner: postgres -- @@ -225,8 +201,6 @@ CREATE TABLE public.mdl_analytics_predict_samples ( ALTER TABLE public.mdl_analytics_predict_samples OWNER TO postgres; -- --- TOC entry 10539 (class 0 OID 0) --- Dependencies: 191 -- Name: TABLE mdl_analytics_predict_samples; Type: COMMENT; Schema: public; Owner: postgres -- @@ -234,7 +208,6 @@ COMMENT ON TABLE public.mdl_analytics_predict_samples IS 'Samples already used f -- --- TOC entry 192 (class 1259 OID 58953) -- Name: mdl_analytics_predict_samples_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -249,8 +222,6 @@ CREATE SEQUENCE public.mdl_analytics_predict_samples_id_seq ALTER TABLE public.mdl_analytics_predict_samples_id_seq OWNER TO postgres; -- --- TOC entry 10540 (class 0 OID 0) --- Dependencies: 192 -- Name: mdl_analytics_predict_samples_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -258,7 +229,6 @@ ALTER SEQUENCE public.mdl_analytics_predict_samples_id_seq OWNED BY public.mdl_a -- --- TOC entry 193 (class 1259 OID 58955) -- Name: mdl_analytics_prediction_actions; Type: TABLE; Schema: public; Owner: postgres -- @@ -274,8 +244,6 @@ CREATE TABLE public.mdl_analytics_prediction_actions ( ALTER TABLE public.mdl_analytics_prediction_actions OWNER TO postgres; -- --- TOC entry 10541 (class 0 OID 0) --- Dependencies: 193 -- Name: TABLE mdl_analytics_prediction_actions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -283,7 +251,6 @@ COMMENT ON TABLE public.mdl_analytics_prediction_actions IS 'Register of user ac -- --- TOC entry 194 (class 1259 OID 58959) -- Name: mdl_analytics_prediction_actions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -298,8 +265,6 @@ CREATE SEQUENCE public.mdl_analytics_prediction_actions_id_seq ALTER TABLE public.mdl_analytics_prediction_actions_id_seq OWNER TO postgres; -- --- TOC entry 10542 (class 0 OID 0) --- Dependencies: 194 -- Name: mdl_analytics_prediction_actions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -307,7 +272,6 @@ ALTER SEQUENCE public.mdl_analytics_prediction_actions_id_seq OWNED BY public.md -- --- TOC entry 195 (class 1259 OID 58961) -- Name: mdl_analytics_predictions; Type: TABLE; Schema: public; Owner: postgres -- @@ -329,8 +293,6 @@ CREATE TABLE public.mdl_analytics_predictions ( ALTER TABLE public.mdl_analytics_predictions OWNER TO postgres; -- --- TOC entry 10543 (class 0 OID 0) --- Dependencies: 195 -- Name: TABLE mdl_analytics_predictions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -338,7 +300,6 @@ COMMENT ON TABLE public.mdl_analytics_predictions IS 'Predictions'; -- --- TOC entry 196 (class 1259 OID 58968) -- Name: mdl_analytics_predictions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -353,8 +314,6 @@ CREATE SEQUENCE public.mdl_analytics_predictions_id_seq ALTER TABLE public.mdl_analytics_predictions_id_seq OWNER TO postgres; -- --- TOC entry 10544 (class 0 OID 0) --- Dependencies: 196 -- Name: mdl_analytics_predictions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -362,7 +321,6 @@ ALTER SEQUENCE public.mdl_analytics_predictions_id_seq OWNED BY public.mdl_analy -- --- TOC entry 197 (class 1259 OID 58970) -- Name: mdl_analytics_train_samples; Type: TABLE; Schema: public; Owner: postgres -- @@ -379,8 +337,6 @@ CREATE TABLE public.mdl_analytics_train_samples ( ALTER TABLE public.mdl_analytics_train_samples OWNER TO postgres; -- --- TOC entry 10545 (class 0 OID 0) --- Dependencies: 197 -- Name: TABLE mdl_analytics_train_samples; Type: COMMENT; Schema: public; Owner: postgres -- @@ -388,7 +344,6 @@ COMMENT ON TABLE public.mdl_analytics_train_samples IS 'Samples used for trainin -- --- TOC entry 198 (class 1259 OID 58978) -- Name: mdl_analytics_train_samples_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -403,8 +358,6 @@ CREATE SEQUENCE public.mdl_analytics_train_samples_id_seq ALTER TABLE public.mdl_analytics_train_samples_id_seq OWNER TO postgres; -- --- TOC entry 10546 (class 0 OID 0) --- Dependencies: 198 -- Name: mdl_analytics_train_samples_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -412,7 +365,6 @@ ALTER SEQUENCE public.mdl_analytics_train_samples_id_seq OWNED BY public.mdl_ana -- --- TOC entry 199 (class 1259 OID 58980) -- Name: mdl_analytics_used_analysables; Type: TABLE; Schema: public; Owner: postgres -- @@ -429,8 +381,6 @@ CREATE TABLE public.mdl_analytics_used_analysables ( ALTER TABLE public.mdl_analytics_used_analysables OWNER TO postgres; -- --- TOC entry 10547 (class 0 OID 0) --- Dependencies: 199 -- Name: TABLE mdl_analytics_used_analysables; Type: COMMENT; Schema: public; Owner: postgres -- @@ -438,7 +388,6 @@ COMMENT ON TABLE public.mdl_analytics_used_analysables IS 'List of analysables u -- --- TOC entry 200 (class 1259 OID 58984) -- Name: mdl_analytics_used_analysables_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -453,8 +402,6 @@ CREATE SEQUENCE public.mdl_analytics_used_analysables_id_seq ALTER TABLE public.mdl_analytics_used_analysables_id_seq OWNER TO postgres; -- --- TOC entry 10548 (class 0 OID 0) --- Dependencies: 200 -- Name: mdl_analytics_used_analysables_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -462,7 +409,6 @@ ALTER SEQUENCE public.mdl_analytics_used_analysables_id_seq OWNED BY public.mdl_ -- --- TOC entry 201 (class 1259 OID 58986) -- Name: mdl_analytics_used_files; Type: TABLE; Schema: public; Owner: postgres -- @@ -478,8 +424,6 @@ CREATE TABLE public.mdl_analytics_used_files ( ALTER TABLE public.mdl_analytics_used_files OWNER TO postgres; -- --- TOC entry 10549 (class 0 OID 0) --- Dependencies: 201 -- Name: TABLE mdl_analytics_used_files; Type: COMMENT; Schema: public; Owner: postgres -- @@ -487,7 +431,6 @@ COMMENT ON TABLE public.mdl_analytics_used_files IS 'Files that have already bee -- --- TOC entry 202 (class 1259 OID 58993) -- Name: mdl_analytics_used_files_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -502,8 +445,6 @@ CREATE SEQUENCE public.mdl_analytics_used_files_id_seq ALTER TABLE public.mdl_analytics_used_files_id_seq OWNER TO postgres; -- --- TOC entry 10550 (class 0 OID 0) --- Dependencies: 202 -- Name: mdl_analytics_used_files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -511,7 +452,6 @@ ALTER SEQUENCE public.mdl_analytics_used_files_id_seq OWNED BY public.mdl_analyt -- --- TOC entry 203 (class 1259 OID 58995) -- Name: mdl_assign; Type: TABLE; Schema: public; Owner: postgres -- @@ -552,8 +492,6 @@ CREATE TABLE public.mdl_assign ( ALTER TABLE public.mdl_assign OWNER TO postgres; -- --- TOC entry 10551 (class 0 OID 0) --- Dependencies: 203 -- Name: TABLE mdl_assign; Type: COMMENT; Schema: public; Owner: postgres -- @@ -561,7 +499,6 @@ COMMENT ON TABLE public.mdl_assign IS 'This table saves information about an ins -- --- TOC entry 204 (class 1259 OID 59029) -- Name: mdl_assign_grades; Type: TABLE; Schema: public; Owner: postgres -- @@ -580,8 +517,6 @@ CREATE TABLE public.mdl_assign_grades ( ALTER TABLE public.mdl_assign_grades OWNER TO postgres; -- --- TOC entry 10552 (class 0 OID 0) --- Dependencies: 204 -- Name: TABLE mdl_assign_grades; Type: COMMENT; Schema: public; Owner: postgres -- @@ -589,7 +524,6 @@ COMMENT ON TABLE public.mdl_assign_grades IS 'Grading information about a single -- --- TOC entry 205 (class 1259 OID 59039) -- Name: mdl_assign_grades_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -604,8 +538,6 @@ CREATE SEQUENCE public.mdl_assign_grades_id_seq ALTER TABLE public.mdl_assign_grades_id_seq OWNER TO postgres; -- --- TOC entry 10553 (class 0 OID 0) --- Dependencies: 205 -- Name: mdl_assign_grades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -613,7 +545,6 @@ ALTER SEQUENCE public.mdl_assign_grades_id_seq OWNED BY public.mdl_assign_grades -- --- TOC entry 206 (class 1259 OID 59041) -- Name: mdl_assign_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -628,8 +559,6 @@ CREATE SEQUENCE public.mdl_assign_id_seq ALTER TABLE public.mdl_assign_id_seq OWNER TO postgres; -- --- TOC entry 10554 (class 0 OID 0) --- Dependencies: 206 -- Name: mdl_assign_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -637,7 +566,6 @@ ALTER SEQUENCE public.mdl_assign_id_seq OWNED BY public.mdl_assign.id; -- --- TOC entry 207 (class 1259 OID 59043) -- Name: mdl_assign_overrides; Type: TABLE; Schema: public; Owner: postgres -- @@ -656,8 +584,6 @@ CREATE TABLE public.mdl_assign_overrides ( ALTER TABLE public.mdl_assign_overrides OWNER TO postgres; -- --- TOC entry 10555 (class 0 OID 0) --- Dependencies: 207 -- Name: TABLE mdl_assign_overrides; Type: COMMENT; Schema: public; Owner: postgres -- @@ -665,7 +591,6 @@ COMMENT ON TABLE public.mdl_assign_overrides IS 'The overrides to assign setting -- --- TOC entry 208 (class 1259 OID 59047) -- Name: mdl_assign_overrides_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -680,8 +605,6 @@ CREATE SEQUENCE public.mdl_assign_overrides_id_seq ALTER TABLE public.mdl_assign_overrides_id_seq OWNER TO postgres; -- --- TOC entry 10556 (class 0 OID 0) --- Dependencies: 208 -- Name: mdl_assign_overrides_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -689,7 +612,6 @@ ALTER SEQUENCE public.mdl_assign_overrides_id_seq OWNED BY public.mdl_assign_ove -- --- TOC entry 209 (class 1259 OID 59049) -- Name: mdl_assign_plugin_config; Type: TABLE; Schema: public; Owner: postgres -- @@ -706,8 +628,6 @@ CREATE TABLE public.mdl_assign_plugin_config ( ALTER TABLE public.mdl_assign_plugin_config OWNER TO postgres; -- --- TOC entry 10557 (class 0 OID 0) --- Dependencies: 209 -- Name: TABLE mdl_assign_plugin_config; Type: COMMENT; Schema: public; Owner: postgres -- @@ -715,7 +635,6 @@ COMMENT ON TABLE public.mdl_assign_plugin_config IS 'Config data for an instance -- --- TOC entry 210 (class 1259 OID 59059) -- Name: mdl_assign_plugin_config_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -730,8 +649,6 @@ CREATE SEQUENCE public.mdl_assign_plugin_config_id_seq ALTER TABLE public.mdl_assign_plugin_config_id_seq OWNER TO postgres; -- --- TOC entry 10558 (class 0 OID 0) --- Dependencies: 210 -- Name: mdl_assign_plugin_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -739,7 +656,6 @@ ALTER SEQUENCE public.mdl_assign_plugin_config_id_seq OWNED BY public.mdl_assign -- --- TOC entry 211 (class 1259 OID 59061) -- Name: mdl_assign_submission; Type: TABLE; Schema: public; Owner: postgres -- @@ -759,8 +675,6 @@ CREATE TABLE public.mdl_assign_submission ( ALTER TABLE public.mdl_assign_submission OWNER TO postgres; -- --- TOC entry 10559 (class 0 OID 0) --- Dependencies: 211 -- Name: TABLE mdl_assign_submission; Type: COMMENT; Schema: public; Owner: postgres -- @@ -768,7 +682,6 @@ COMMENT ON TABLE public.mdl_assign_submission IS 'This table keeps information a -- --- TOC entry 212 (class 1259 OID 59071) -- Name: mdl_assign_submission_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -783,8 +696,6 @@ CREATE SEQUENCE public.mdl_assign_submission_id_seq ALTER TABLE public.mdl_assign_submission_id_seq OWNER TO postgres; -- --- TOC entry 10560 (class 0 OID 0) --- Dependencies: 212 -- Name: mdl_assign_submission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -792,7 +703,6 @@ ALTER SEQUENCE public.mdl_assign_submission_id_seq OWNED BY public.mdl_assign_su -- --- TOC entry 213 (class 1259 OID 59073) -- Name: mdl_assign_user_flags; Type: TABLE; Schema: public; Owner: postgres -- @@ -811,8 +721,6 @@ CREATE TABLE public.mdl_assign_user_flags ( ALTER TABLE public.mdl_assign_user_flags OWNER TO postgres; -- --- TOC entry 10561 (class 0 OID 0) --- Dependencies: 213 -- Name: TABLE mdl_assign_user_flags; Type: COMMENT; Schema: public; Owner: postgres -- @@ -820,7 +728,6 @@ COMMENT ON TABLE public.mdl_assign_user_flags IS 'List of flags that can be set -- --- TOC entry 214 (class 1259 OID 59082) -- Name: mdl_assign_user_flags_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -835,8 +742,6 @@ CREATE SEQUENCE public.mdl_assign_user_flags_id_seq ALTER TABLE public.mdl_assign_user_flags_id_seq OWNER TO postgres; -- --- TOC entry 10562 (class 0 OID 0) --- Dependencies: 214 -- Name: mdl_assign_user_flags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -844,7 +749,6 @@ ALTER SEQUENCE public.mdl_assign_user_flags_id_seq OWNED BY public.mdl_assign_us -- --- TOC entry 215 (class 1259 OID 59084) -- Name: mdl_assign_user_mapping; Type: TABLE; Schema: public; Owner: postgres -- @@ -858,8 +762,6 @@ CREATE TABLE public.mdl_assign_user_mapping ( ALTER TABLE public.mdl_assign_user_mapping OWNER TO postgres; -- --- TOC entry 10563 (class 0 OID 0) --- Dependencies: 215 -- Name: TABLE mdl_assign_user_mapping; Type: COMMENT; Schema: public; Owner: postgres -- @@ -867,7 +769,6 @@ COMMENT ON TABLE public.mdl_assign_user_mapping IS 'Map an assignment specific i -- --- TOC entry 216 (class 1259 OID 59089) -- Name: mdl_assign_user_mapping_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -882,8 +783,6 @@ CREATE SEQUENCE public.mdl_assign_user_mapping_id_seq ALTER TABLE public.mdl_assign_user_mapping_id_seq OWNER TO postgres; -- --- TOC entry 10564 (class 0 OID 0) --- Dependencies: 216 -- Name: mdl_assign_user_mapping_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -891,7 +790,6 @@ ALTER SEQUENCE public.mdl_assign_user_mapping_id_seq OWNED BY public.mdl_assign_ -- --- TOC entry 217 (class 1259 OID 59091) -- Name: mdl_assignfeedback_comments; Type: TABLE; Schema: public; Owner: postgres -- @@ -907,8 +805,6 @@ CREATE TABLE public.mdl_assignfeedback_comments ( ALTER TABLE public.mdl_assignfeedback_comments OWNER TO postgres; -- --- TOC entry 10565 (class 0 OID 0) --- Dependencies: 217 -- Name: TABLE mdl_assignfeedback_comments; Type: COMMENT; Schema: public; Owner: postgres -- @@ -916,7 +812,6 @@ COMMENT ON TABLE public.mdl_assignfeedback_comments IS 'Text feedback for submit -- --- TOC entry 218 (class 1259 OID 59100) -- Name: mdl_assignfeedback_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -931,8 +826,6 @@ CREATE SEQUENCE public.mdl_assignfeedback_comments_id_seq ALTER TABLE public.mdl_assignfeedback_comments_id_seq OWNER TO postgres; -- --- TOC entry 10566 (class 0 OID 0) --- Dependencies: 218 -- Name: mdl_assignfeedback_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -940,7 +833,6 @@ ALTER SEQUENCE public.mdl_assignfeedback_comments_id_seq OWNED BY public.mdl_ass -- --- TOC entry 219 (class 1259 OID 59102) -- Name: mdl_assignfeedback_editpdf_annot; Type: TABLE; Schema: public; Owner: postgres -- @@ -962,8 +854,6 @@ CREATE TABLE public.mdl_assignfeedback_editpdf_annot ( ALTER TABLE public.mdl_assignfeedback_editpdf_annot OWNER TO postgres; -- --- TOC entry 10567 (class 0 OID 0) --- Dependencies: 219 -- Name: TABLE mdl_assignfeedback_editpdf_annot; Type: COMMENT; Schema: public; Owner: postgres -- @@ -971,7 +861,6 @@ COMMENT ON TABLE public.mdl_assignfeedback_editpdf_annot IS 'stores annotations -- --- TOC entry 220 (class 1259 OID 59117) -- Name: mdl_assignfeedback_editpdf_annot_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -986,8 +875,6 @@ CREATE SEQUENCE public.mdl_assignfeedback_editpdf_annot_id_seq ALTER TABLE public.mdl_assignfeedback_editpdf_annot_id_seq OWNER TO postgres; -- --- TOC entry 10568 (class 0 OID 0) --- Dependencies: 220 -- Name: mdl_assignfeedback_editpdf_annot_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -995,7 +882,6 @@ ALTER SEQUENCE public.mdl_assignfeedback_editpdf_annot_id_seq OWNED BY public.md -- --- TOC entry 221 (class 1259 OID 59119) -- Name: mdl_assignfeedback_editpdf_cmnt; Type: TABLE; Schema: public; Owner: postgres -- @@ -1015,8 +901,6 @@ CREATE TABLE public.mdl_assignfeedback_editpdf_cmnt ( ALTER TABLE public.mdl_assignfeedback_editpdf_cmnt OWNER TO postgres; -- --- TOC entry 10569 (class 0 OID 0) --- Dependencies: 221 -- Name: TABLE mdl_assignfeedback_editpdf_cmnt; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1024,7 +908,6 @@ COMMENT ON TABLE public.mdl_assignfeedback_editpdf_cmnt IS 'Stores comments adde -- --- TOC entry 222 (class 1259 OID 59132) -- Name: mdl_assignfeedback_editpdf_cmnt_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1039,8 +922,6 @@ CREATE SEQUENCE public.mdl_assignfeedback_editpdf_cmnt_id_seq ALTER TABLE public.mdl_assignfeedback_editpdf_cmnt_id_seq OWNER TO postgres; -- --- TOC entry 10570 (class 0 OID 0) --- Dependencies: 222 -- Name: mdl_assignfeedback_editpdf_cmnt_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1048,7 +929,6 @@ ALTER SEQUENCE public.mdl_assignfeedback_editpdf_cmnt_id_seq OWNED BY public.mdl -- --- TOC entry 223 (class 1259 OID 59134) -- Name: mdl_assignfeedback_editpdf_queue; Type: TABLE; Schema: public; Owner: postgres -- @@ -1063,8 +943,6 @@ CREATE TABLE public.mdl_assignfeedback_editpdf_queue ( ALTER TABLE public.mdl_assignfeedback_editpdf_queue OWNER TO postgres; -- --- TOC entry 10571 (class 0 OID 0) --- Dependencies: 223 -- Name: TABLE mdl_assignfeedback_editpdf_queue; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1072,7 +950,6 @@ COMMENT ON TABLE public.mdl_assignfeedback_editpdf_queue IS 'Queue for processin -- --- TOC entry 224 (class 1259 OID 59138) -- Name: mdl_assignfeedback_editpdf_queue_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1087,8 +964,6 @@ CREATE SEQUENCE public.mdl_assignfeedback_editpdf_queue_id_seq ALTER TABLE public.mdl_assignfeedback_editpdf_queue_id_seq OWNER TO postgres; -- --- TOC entry 10572 (class 0 OID 0) --- Dependencies: 224 -- Name: mdl_assignfeedback_editpdf_queue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1096,7 +971,6 @@ ALTER SEQUENCE public.mdl_assignfeedback_editpdf_queue_id_seq OWNED BY public.md -- --- TOC entry 225 (class 1259 OID 59140) -- Name: mdl_assignfeedback_editpdf_quick; Type: TABLE; Schema: public; Owner: postgres -- @@ -1112,8 +986,6 @@ CREATE TABLE public.mdl_assignfeedback_editpdf_quick ( ALTER TABLE public.mdl_assignfeedback_editpdf_quick OWNER TO postgres; -- --- TOC entry 10573 (class 0 OID 0) --- Dependencies: 225 -- Name: TABLE mdl_assignfeedback_editpdf_quick; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1121,7 +993,6 @@ COMMENT ON TABLE public.mdl_assignfeedback_editpdf_quick IS 'Stores teacher spec -- --- TOC entry 226 (class 1259 OID 59149) -- Name: mdl_assignfeedback_editpdf_quick_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1136,8 +1007,6 @@ CREATE SEQUENCE public.mdl_assignfeedback_editpdf_quick_id_seq ALTER TABLE public.mdl_assignfeedback_editpdf_quick_id_seq OWNER TO postgres; -- --- TOC entry 10574 (class 0 OID 0) --- Dependencies: 226 -- Name: mdl_assignfeedback_editpdf_quick_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1145,7 +1014,6 @@ ALTER SEQUENCE public.mdl_assignfeedback_editpdf_quick_id_seq OWNED BY public.md -- --- TOC entry 227 (class 1259 OID 59151) -- Name: mdl_assignfeedback_editpdf_rot; Type: TABLE; Schema: public; Owner: postgres -- @@ -1162,8 +1030,6 @@ CREATE TABLE public.mdl_assignfeedback_editpdf_rot ( ALTER TABLE public.mdl_assignfeedback_editpdf_rot OWNER TO postgres; -- --- TOC entry 10575 (class 0 OID 0) --- Dependencies: 227 -- Name: TABLE mdl_assignfeedback_editpdf_rot; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1171,7 +1037,6 @@ COMMENT ON TABLE public.mdl_assignfeedback_editpdf_rot IS 'Stores rotation infor -- --- TOC entry 228 (class 1259 OID 59161) -- Name: mdl_assignfeedback_editpdf_rot_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1186,8 +1051,6 @@ CREATE SEQUENCE public.mdl_assignfeedback_editpdf_rot_id_seq ALTER TABLE public.mdl_assignfeedback_editpdf_rot_id_seq OWNER TO postgres; -- --- TOC entry 10576 (class 0 OID 0) --- Dependencies: 228 -- Name: mdl_assignfeedback_editpdf_rot_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1195,7 +1058,6 @@ ALTER SEQUENCE public.mdl_assignfeedback_editpdf_rot_id_seq OWNED BY public.mdl_ -- --- TOC entry 229 (class 1259 OID 59163) -- Name: mdl_assignfeedback_file; Type: TABLE; Schema: public; Owner: postgres -- @@ -1210,8 +1072,6 @@ CREATE TABLE public.mdl_assignfeedback_file ( ALTER TABLE public.mdl_assignfeedback_file OWNER TO postgres; -- --- TOC entry 10577 (class 0 OID 0) --- Dependencies: 229 -- Name: TABLE mdl_assignfeedback_file; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1219,7 +1079,6 @@ COMMENT ON TABLE public.mdl_assignfeedback_file IS 'Stores info about the number -- --- TOC entry 230 (class 1259 OID 59169) -- Name: mdl_assignfeedback_file_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1234,8 +1093,6 @@ CREATE SEQUENCE public.mdl_assignfeedback_file_id_seq ALTER TABLE public.mdl_assignfeedback_file_id_seq OWNER TO postgres; -- --- TOC entry 10578 (class 0 OID 0) --- Dependencies: 230 -- Name: mdl_assignfeedback_file_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1243,7 +1100,6 @@ ALTER SEQUENCE public.mdl_assignfeedback_file_id_seq OWNED BY public.mdl_assignf -- --- TOC entry 231 (class 1259 OID 59171) -- Name: mdl_assignment; Type: TABLE; Schema: public; Owner: postgres -- @@ -1273,8 +1129,6 @@ CREATE TABLE public.mdl_assignment ( ALTER TABLE public.mdl_assignment OWNER TO postgres; -- --- TOC entry 10579 (class 0 OID 0) --- Dependencies: 231 -- Name: TABLE mdl_assignment; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1282,7 +1136,6 @@ COMMENT ON TABLE public.mdl_assignment IS 'Defines assignments'; -- --- TOC entry 232 (class 1259 OID 59194) -- Name: mdl_assignment_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1297,8 +1150,6 @@ CREATE SEQUENCE public.mdl_assignment_id_seq ALTER TABLE public.mdl_assignment_id_seq OWNER TO postgres; -- --- TOC entry 10580 (class 0 OID 0) --- Dependencies: 232 -- Name: mdl_assignment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1306,7 +1157,6 @@ ALTER SEQUENCE public.mdl_assignment_id_seq OWNED BY public.mdl_assignment.id; -- --- TOC entry 233 (class 1259 OID 59196) -- Name: mdl_assignment_submissions; Type: TABLE; Schema: public; Owner: postgres -- @@ -1331,8 +1181,6 @@ CREATE TABLE public.mdl_assignment_submissions ( ALTER TABLE public.mdl_assignment_submissions OWNER TO postgres; -- --- TOC entry 10581 (class 0 OID 0) --- Dependencies: 233 -- Name: TABLE mdl_assignment_submissions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1340,7 +1188,6 @@ COMMENT ON TABLE public.mdl_assignment_submissions IS 'Info about submitted assi -- --- TOC entry 234 (class 1259 OID 59212) -- Name: mdl_assignment_submissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1355,8 +1202,6 @@ CREATE SEQUENCE public.mdl_assignment_submissions_id_seq ALTER TABLE public.mdl_assignment_submissions_id_seq OWNER TO postgres; -- --- TOC entry 10582 (class 0 OID 0) --- Dependencies: 234 -- Name: mdl_assignment_submissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1364,7 +1209,6 @@ ALTER SEQUENCE public.mdl_assignment_submissions_id_seq OWNED BY public.mdl_assi -- --- TOC entry 235 (class 1259 OID 59214) -- Name: mdl_assignment_upgrade; Type: TABLE; Schema: public; Owner: postgres -- @@ -1381,8 +1225,6 @@ CREATE TABLE public.mdl_assignment_upgrade ( ALTER TABLE public.mdl_assignment_upgrade OWNER TO postgres; -- --- TOC entry 10583 (class 0 OID 0) --- Dependencies: 235 -- Name: TABLE mdl_assignment_upgrade; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1390,7 +1232,6 @@ COMMENT ON TABLE public.mdl_assignment_upgrade IS 'Info about upgraded assignmen -- --- TOC entry 236 (class 1259 OID 59222) -- Name: mdl_assignment_upgrade_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1405,8 +1246,6 @@ CREATE SEQUENCE public.mdl_assignment_upgrade_id_seq ALTER TABLE public.mdl_assignment_upgrade_id_seq OWNER TO postgres; -- --- TOC entry 10584 (class 0 OID 0) --- Dependencies: 236 -- Name: mdl_assignment_upgrade_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1414,7 +1253,6 @@ ALTER SEQUENCE public.mdl_assignment_upgrade_id_seq OWNED BY public.mdl_assignme -- --- TOC entry 237 (class 1259 OID 59224) -- Name: mdl_assignsubmission_file; Type: TABLE; Schema: public; Owner: postgres -- @@ -1429,8 +1267,6 @@ CREATE TABLE public.mdl_assignsubmission_file ( ALTER TABLE public.mdl_assignsubmission_file OWNER TO postgres; -- --- TOC entry 10585 (class 0 OID 0) --- Dependencies: 237 -- Name: TABLE mdl_assignsubmission_file; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1438,7 +1274,6 @@ COMMENT ON TABLE public.mdl_assignsubmission_file IS 'Info about file submission -- --- TOC entry 238 (class 1259 OID 59230) -- Name: mdl_assignsubmission_file_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1453,8 +1288,6 @@ CREATE SEQUENCE public.mdl_assignsubmission_file_id_seq ALTER TABLE public.mdl_assignsubmission_file_id_seq OWNER TO postgres; -- --- TOC entry 10586 (class 0 OID 0) --- Dependencies: 238 -- Name: mdl_assignsubmission_file_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1462,7 +1295,6 @@ ALTER SEQUENCE public.mdl_assignsubmission_file_id_seq OWNED BY public.mdl_assig -- --- TOC entry 239 (class 1259 OID 59232) -- Name: mdl_assignsubmission_onlinetext; Type: TABLE; Schema: public; Owner: postgres -- @@ -1478,8 +1310,6 @@ CREATE TABLE public.mdl_assignsubmission_onlinetext ( ALTER TABLE public.mdl_assignsubmission_onlinetext OWNER TO postgres; -- --- TOC entry 10587 (class 0 OID 0) --- Dependencies: 239 -- Name: TABLE mdl_assignsubmission_onlinetext; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1487,7 +1317,6 @@ COMMENT ON TABLE public.mdl_assignsubmission_onlinetext IS 'Info about onlinetex -- --- TOC entry 240 (class 1259 OID 59241) -- Name: mdl_assignsubmission_onlinetext_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1502,8 +1331,6 @@ CREATE SEQUENCE public.mdl_assignsubmission_onlinetext_id_seq ALTER TABLE public.mdl_assignsubmission_onlinetext_id_seq OWNER TO postgres; -- --- TOC entry 10588 (class 0 OID 0) --- Dependencies: 240 -- Name: mdl_assignsubmission_onlinetext_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1511,7 +1338,6 @@ ALTER SEQUENCE public.mdl_assignsubmission_onlinetext_id_seq OWNED BY public.mdl -- --- TOC entry 241 (class 1259 OID 59243) -- Name: mdl_auth_oauth2_linked_login; Type: TABLE; Schema: public; Owner: postgres -- @@ -1532,8 +1358,6 @@ CREATE TABLE public.mdl_auth_oauth2_linked_login ( ALTER TABLE public.mdl_auth_oauth2_linked_login OWNER TO postgres; -- --- TOC entry 10589 (class 0 OID 0) --- Dependencies: 241 -- Name: TABLE mdl_auth_oauth2_linked_login; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1541,7 +1365,6 @@ COMMENT ON TABLE public.mdl_auth_oauth2_linked_login IS 'Accounts linked to a us -- --- TOC entry 242 (class 1259 OID 59251) -- Name: mdl_auth_oauth2_linked_login_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1556,8 +1379,6 @@ CREATE SEQUENCE public.mdl_auth_oauth2_linked_login_id_seq ALTER TABLE public.mdl_auth_oauth2_linked_login_id_seq OWNER TO postgres; -- --- TOC entry 10590 (class 0 OID 0) --- Dependencies: 242 -- Name: mdl_auth_oauth2_linked_login_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1565,7 +1386,6 @@ ALTER SEQUENCE public.mdl_auth_oauth2_linked_login_id_seq OWNED BY public.mdl_au -- --- TOC entry 243 (class 1259 OID 59253) -- Name: mdl_backup_controllers; Type: TABLE; Schema: public; Owner: postgres -- @@ -1593,8 +1413,6 @@ CREATE TABLE public.mdl_backup_controllers ( ALTER TABLE public.mdl_backup_controllers OWNER TO postgres; -- --- TOC entry 10591 (class 0 OID 0) --- Dependencies: 243 -- Name: TABLE mdl_backup_controllers; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1602,7 +1420,6 @@ COMMENT ON TABLE public.mdl_backup_controllers IS 'To store the backup_controlle -- --- TOC entry 244 (class 1259 OID 59265) -- Name: mdl_backup_controllers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1617,8 +1434,6 @@ CREATE SEQUENCE public.mdl_backup_controllers_id_seq ALTER TABLE public.mdl_backup_controllers_id_seq OWNER TO postgres; -- --- TOC entry 10592 (class 0 OID 0) --- Dependencies: 244 -- Name: mdl_backup_controllers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1626,7 +1441,6 @@ ALTER SEQUENCE public.mdl_backup_controllers_id_seq OWNED BY public.mdl_backup_c -- --- TOC entry 245 (class 1259 OID 59267) -- Name: mdl_backup_courses; Type: TABLE; Schema: public; Owner: postgres -- @@ -1643,8 +1457,6 @@ CREATE TABLE public.mdl_backup_courses ( ALTER TABLE public.mdl_backup_courses OWNER TO postgres; -- --- TOC entry 10593 (class 0 OID 0) --- Dependencies: 245 -- Name: TABLE mdl_backup_courses; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1652,7 +1464,6 @@ COMMENT ON TABLE public.mdl_backup_courses IS 'To store every course backup stat -- --- TOC entry 246 (class 1259 OID 59275) -- Name: mdl_backup_courses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1667,8 +1478,6 @@ CREATE SEQUENCE public.mdl_backup_courses_id_seq ALTER TABLE public.mdl_backup_courses_id_seq OWNER TO postgres; -- --- TOC entry 10594 (class 0 OID 0) --- Dependencies: 246 -- Name: mdl_backup_courses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1676,7 +1485,6 @@ ALTER SEQUENCE public.mdl_backup_courses_id_seq OWNED BY public.mdl_backup_cours -- --- TOC entry 247 (class 1259 OID 59277) -- Name: mdl_backup_logs; Type: TABLE; Schema: public; Owner: postgres -- @@ -1692,8 +1500,6 @@ CREATE TABLE public.mdl_backup_logs ( ALTER TABLE public.mdl_backup_logs OWNER TO postgres; -- --- TOC entry 10595 (class 0 OID 0) --- Dependencies: 247 -- Name: TABLE mdl_backup_logs; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1701,7 +1507,6 @@ COMMENT ON TABLE public.mdl_backup_logs IS 'To store all the logs from backup an -- --- TOC entry 248 (class 1259 OID 59284) -- Name: mdl_backup_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1716,8 +1521,6 @@ CREATE SEQUENCE public.mdl_backup_logs_id_seq ALTER TABLE public.mdl_backup_logs_id_seq OWNER TO postgres; -- --- TOC entry 10596 (class 0 OID 0) --- Dependencies: 248 -- Name: mdl_backup_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1725,7 +1528,6 @@ ALTER SEQUENCE public.mdl_backup_logs_id_seq OWNED BY public.mdl_backup_logs.id; -- --- TOC entry 249 (class 1259 OID 59286) -- Name: mdl_badge; Type: TABLE; Schema: public; Owner: postgres -- @@ -1762,8 +1564,6 @@ CREATE TABLE public.mdl_badge ( ALTER TABLE public.mdl_badge OWNER TO postgres; -- --- TOC entry 10597 (class 0 OID 0) --- Dependencies: 249 -- Name: TABLE mdl_badge; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1771,7 +1571,6 @@ COMMENT ON TABLE public.mdl_badge IS 'Defines badge'; -- --- TOC entry 250 (class 1259 OID 59301) -- Name: mdl_badge_alignment; Type: TABLE; Schema: public; Owner: postgres -- @@ -1789,8 +1588,6 @@ CREATE TABLE public.mdl_badge_alignment ( ALTER TABLE public.mdl_badge_alignment OWNER TO postgres; -- --- TOC entry 10598 (class 0 OID 0) --- Dependencies: 250 -- Name: TABLE mdl_badge_alignment; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1798,7 +1595,6 @@ COMMENT ON TABLE public.mdl_badge_alignment IS 'Defines alignment for badges'; -- --- TOC entry 251 (class 1259 OID 59310) -- Name: mdl_badge_alignment_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1813,8 +1609,6 @@ CREATE SEQUENCE public.mdl_badge_alignment_id_seq ALTER TABLE public.mdl_badge_alignment_id_seq OWNER TO postgres; -- --- TOC entry 10599 (class 0 OID 0) --- Dependencies: 251 -- Name: mdl_badge_alignment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1822,7 +1616,6 @@ ALTER SEQUENCE public.mdl_badge_alignment_id_seq OWNED BY public.mdl_badge_align -- --- TOC entry 252 (class 1259 OID 59312) -- Name: mdl_badge_backpack; Type: TABLE; Schema: public; Owner: postgres -- @@ -1840,8 +1633,6 @@ CREATE TABLE public.mdl_badge_backpack ( ALTER TABLE public.mdl_badge_backpack OWNER TO postgres; -- --- TOC entry 10600 (class 0 OID 0) --- Dependencies: 252 -- Name: TABLE mdl_badge_backpack; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1849,7 +1640,6 @@ COMMENT ON TABLE public.mdl_badge_backpack IS 'Defines settings for connecting e -- --- TOC entry 253 (class 1259 OID 59318) -- Name: mdl_badge_backpack_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1864,8 +1654,6 @@ CREATE SEQUENCE public.mdl_badge_backpack_id_seq ALTER TABLE public.mdl_badge_backpack_id_seq OWNER TO postgres; -- --- TOC entry 10601 (class 0 OID 0) --- Dependencies: 253 -- Name: mdl_badge_backpack_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1873,7 +1661,6 @@ ALTER SEQUENCE public.mdl_badge_backpack_id_seq OWNED BY public.mdl_badge_backpa -- --- TOC entry 254 (class 1259 OID 59320) -- Name: mdl_badge_backpack_oauth2; Type: TABLE; Schema: public; Owner: postgres -- @@ -1895,8 +1682,6 @@ CREATE TABLE public.mdl_badge_backpack_oauth2 ( ALTER TABLE public.mdl_badge_backpack_oauth2 OWNER TO postgres; -- --- TOC entry 10602 (class 0 OID 0) --- Dependencies: 254 -- Name: TABLE mdl_badge_backpack_oauth2; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1904,7 +1689,6 @@ COMMENT ON TABLE public.mdl_badge_backpack_oauth2 IS 'Default comment for the ta -- --- TOC entry 255 (class 1259 OID 59329) -- Name: mdl_badge_backpack_oauth2_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1919,8 +1703,6 @@ CREATE SEQUENCE public.mdl_badge_backpack_oauth2_id_seq ALTER TABLE public.mdl_badge_backpack_oauth2_id_seq OWNER TO postgres; -- --- TOC entry 10603 (class 0 OID 0) --- Dependencies: 255 -- Name: mdl_badge_backpack_oauth2_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1928,7 +1710,6 @@ ALTER SEQUENCE public.mdl_badge_backpack_oauth2_id_seq OWNED BY public.mdl_badge -- --- TOC entry 256 (class 1259 OID 59331) -- Name: mdl_badge_criteria; Type: TABLE; Schema: public; Owner: postgres -- @@ -1945,8 +1726,6 @@ CREATE TABLE public.mdl_badge_criteria ( ALTER TABLE public.mdl_badge_criteria OWNER TO postgres; -- --- TOC entry 10604 (class 0 OID 0) --- Dependencies: 256 -- Name: TABLE mdl_badge_criteria; Type: COMMENT; Schema: public; Owner: postgres -- @@ -1954,7 +1733,6 @@ COMMENT ON TABLE public.mdl_badge_criteria IS 'Defines criteria for issuing badg -- --- TOC entry 257 (class 1259 OID 59340) -- Name: mdl_badge_criteria_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -1969,8 +1747,6 @@ CREATE SEQUENCE public.mdl_badge_criteria_id_seq ALTER TABLE public.mdl_badge_criteria_id_seq OWNER TO postgres; -- --- TOC entry 10605 (class 0 OID 0) --- Dependencies: 257 -- Name: mdl_badge_criteria_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -1978,7 +1754,6 @@ ALTER SEQUENCE public.mdl_badge_criteria_id_seq OWNED BY public.mdl_badge_criter -- --- TOC entry 258 (class 1259 OID 59342) -- Name: mdl_badge_criteria_met; Type: TABLE; Schema: public; Owner: postgres -- @@ -1994,8 +1769,6 @@ CREATE TABLE public.mdl_badge_criteria_met ( ALTER TABLE public.mdl_badge_criteria_met OWNER TO postgres; -- --- TOC entry 10606 (class 0 OID 0) --- Dependencies: 258 -- Name: TABLE mdl_badge_criteria_met; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2003,7 +1776,6 @@ COMMENT ON TABLE public.mdl_badge_criteria_met IS 'Defines criteria that were me -- --- TOC entry 259 (class 1259 OID 59345) -- Name: mdl_badge_criteria_met_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2018,8 +1790,6 @@ CREATE SEQUENCE public.mdl_badge_criteria_met_id_seq ALTER TABLE public.mdl_badge_criteria_met_id_seq OWNER TO postgres; -- --- TOC entry 10607 (class 0 OID 0) --- Dependencies: 259 -- Name: mdl_badge_criteria_met_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2027,7 +1797,6 @@ ALTER SEQUENCE public.mdl_badge_criteria_met_id_seq OWNED BY public.mdl_badge_cr -- --- TOC entry 260 (class 1259 OID 59347) -- Name: mdl_badge_criteria_param; Type: TABLE; Schema: public; Owner: postgres -- @@ -2042,8 +1811,6 @@ CREATE TABLE public.mdl_badge_criteria_param ( ALTER TABLE public.mdl_badge_criteria_param OWNER TO postgres; -- --- TOC entry 10608 (class 0 OID 0) --- Dependencies: 260 -- Name: TABLE mdl_badge_criteria_param; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2051,7 +1818,6 @@ COMMENT ON TABLE public.mdl_badge_criteria_param IS 'Defines parameters for badg -- --- TOC entry 261 (class 1259 OID 59354) -- Name: mdl_badge_criteria_param_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2066,8 +1832,6 @@ CREATE SEQUENCE public.mdl_badge_criteria_param_id_seq ALTER TABLE public.mdl_badge_criteria_param_id_seq OWNER TO postgres; -- --- TOC entry 10609 (class 0 OID 0) --- Dependencies: 261 -- Name: mdl_badge_criteria_param_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2075,7 +1839,6 @@ ALTER SEQUENCE public.mdl_badge_criteria_param_id_seq OWNED BY public.mdl_badge_ -- --- TOC entry 262 (class 1259 OID 59356) -- Name: mdl_badge_endorsement; Type: TABLE; Schema: public; Owner: postgres -- @@ -2094,8 +1857,6 @@ CREATE TABLE public.mdl_badge_endorsement ( ALTER TABLE public.mdl_badge_endorsement OWNER TO postgres; -- --- TOC entry 10610 (class 0 OID 0) --- Dependencies: 262 -- Name: TABLE mdl_badge_endorsement; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2103,7 +1864,6 @@ COMMENT ON TABLE public.mdl_badge_endorsement IS 'Defines endorsement for badge' -- --- TOC entry 263 (class 1259 OID 59367) -- Name: mdl_badge_endorsement_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2118,8 +1878,6 @@ CREATE SEQUENCE public.mdl_badge_endorsement_id_seq ALTER TABLE public.mdl_badge_endorsement_id_seq OWNER TO postgres; -- --- TOC entry 10611 (class 0 OID 0) --- Dependencies: 263 -- Name: mdl_badge_endorsement_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2127,7 +1885,6 @@ ALTER SEQUENCE public.mdl_badge_endorsement_id_seq OWNED BY public.mdl_badge_end -- --- TOC entry 264 (class 1259 OID 59369) -- Name: mdl_badge_external; Type: TABLE; Schema: public; Owner: postgres -- @@ -2143,8 +1900,6 @@ CREATE TABLE public.mdl_badge_external ( ALTER TABLE public.mdl_badge_external OWNER TO postgres; -- --- TOC entry 10612 (class 0 OID 0) --- Dependencies: 264 -- Name: TABLE mdl_badge_external; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2152,7 +1907,6 @@ COMMENT ON TABLE public.mdl_badge_external IS 'Setting for external badges displ -- --- TOC entry 265 (class 1259 OID 59375) -- Name: mdl_badge_external_backpack; Type: TABLE; Schema: public; Owner: postgres -- @@ -2170,8 +1924,6 @@ CREATE TABLE public.mdl_badge_external_backpack ( ALTER TABLE public.mdl_badge_external_backpack OWNER TO postgres; -- --- TOC entry 10613 (class 0 OID 0) --- Dependencies: 265 -- Name: TABLE mdl_badge_external_backpack; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2179,7 +1931,6 @@ COMMENT ON TABLE public.mdl_badge_external_backpack IS 'Defines settings for sit -- --- TOC entry 266 (class 1259 OID 59385) -- Name: mdl_badge_external_backpack_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2194,8 +1945,6 @@ CREATE SEQUENCE public.mdl_badge_external_backpack_id_seq ALTER TABLE public.mdl_badge_external_backpack_id_seq OWNER TO postgres; -- --- TOC entry 10614 (class 0 OID 0) --- Dependencies: 266 -- Name: mdl_badge_external_backpack_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2203,7 +1952,6 @@ ALTER SEQUENCE public.mdl_badge_external_backpack_id_seq OWNED BY public.mdl_bad -- --- TOC entry 267 (class 1259 OID 59387) -- Name: mdl_badge_external_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2218,8 +1966,6 @@ CREATE SEQUENCE public.mdl_badge_external_id_seq ALTER TABLE public.mdl_badge_external_id_seq OWNER TO postgres; -- --- TOC entry 10615 (class 0 OID 0) --- Dependencies: 267 -- Name: mdl_badge_external_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2227,7 +1973,6 @@ ALTER SEQUENCE public.mdl_badge_external_id_seq OWNED BY public.mdl_badge_extern -- --- TOC entry 268 (class 1259 OID 59389) -- Name: mdl_badge_external_identifier; Type: TABLE; Schema: public; Owner: postgres -- @@ -2243,8 +1988,6 @@ CREATE TABLE public.mdl_badge_external_identifier ( ALTER TABLE public.mdl_badge_external_identifier OWNER TO postgres; -- --- TOC entry 10616 (class 0 OID 0) --- Dependencies: 268 -- Name: TABLE mdl_badge_external_identifier; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2252,7 +1995,6 @@ COMMENT ON TABLE public.mdl_badge_external_identifier IS 'Setting for external b -- --- TOC entry 269 (class 1259 OID 59395) -- Name: mdl_badge_external_identifier_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2267,8 +2009,6 @@ CREATE SEQUENCE public.mdl_badge_external_identifier_id_seq ALTER TABLE public.mdl_badge_external_identifier_id_seq OWNER TO postgres; -- --- TOC entry 10617 (class 0 OID 0) --- Dependencies: 269 -- Name: mdl_badge_external_identifier_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2276,7 +2016,6 @@ ALTER SEQUENCE public.mdl_badge_external_identifier_id_seq OWNED BY public.mdl_b -- --- TOC entry 270 (class 1259 OID 59397) -- Name: mdl_badge_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2291,8 +2030,6 @@ CREATE SEQUENCE public.mdl_badge_id_seq ALTER TABLE public.mdl_badge_id_seq OWNER TO postgres; -- --- TOC entry 10618 (class 0 OID 0) --- Dependencies: 270 -- Name: mdl_badge_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2300,7 +2037,6 @@ ALTER SEQUENCE public.mdl_badge_id_seq OWNED BY public.mdl_badge.id; -- --- TOC entry 271 (class 1259 OID 59399) -- Name: mdl_badge_issued; Type: TABLE; Schema: public; Owner: postgres -- @@ -2319,8 +2055,6 @@ CREATE TABLE public.mdl_badge_issued ( ALTER TABLE public.mdl_badge_issued OWNER TO postgres; -- --- TOC entry 10619 (class 0 OID 0) --- Dependencies: 271 -- Name: TABLE mdl_badge_issued; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2328,7 +2062,6 @@ COMMENT ON TABLE public.mdl_badge_issued IS 'Defines issued badges'; -- --- TOC entry 272 (class 1259 OID 59409) -- Name: mdl_badge_issued_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2343,8 +2076,6 @@ CREATE SEQUENCE public.mdl_badge_issued_id_seq ALTER TABLE public.mdl_badge_issued_id_seq OWNER TO postgres; -- --- TOC entry 10620 (class 0 OID 0) --- Dependencies: 272 -- Name: mdl_badge_issued_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2352,7 +2083,6 @@ ALTER SEQUENCE public.mdl_badge_issued_id_seq OWNED BY public.mdl_badge_issued.i -- --- TOC entry 273 (class 1259 OID 59411) -- Name: mdl_badge_manual_award; Type: TABLE; Schema: public; Owner: postgres -- @@ -2369,8 +2099,6 @@ CREATE TABLE public.mdl_badge_manual_award ( ALTER TABLE public.mdl_badge_manual_award OWNER TO postgres; -- --- TOC entry 10621 (class 0 OID 0) --- Dependencies: 273 -- Name: TABLE mdl_badge_manual_award; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2378,7 +2106,6 @@ COMMENT ON TABLE public.mdl_badge_manual_award IS 'Track manual award criteria f -- --- TOC entry 274 (class 1259 OID 59414) -- Name: mdl_badge_manual_award_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2393,8 +2120,6 @@ CREATE SEQUENCE public.mdl_badge_manual_award_id_seq ALTER TABLE public.mdl_badge_manual_award_id_seq OWNER TO postgres; -- --- TOC entry 10622 (class 0 OID 0) --- Dependencies: 274 -- Name: mdl_badge_manual_award_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2402,7 +2127,6 @@ ALTER SEQUENCE public.mdl_badge_manual_award_id_seq OWNED BY public.mdl_badge_ma -- --- TOC entry 275 (class 1259 OID 59416) -- Name: mdl_badge_related; Type: TABLE; Schema: public; Owner: postgres -- @@ -2416,8 +2140,6 @@ CREATE TABLE public.mdl_badge_related ( ALTER TABLE public.mdl_badge_related OWNER TO postgres; -- --- TOC entry 10623 (class 0 OID 0) --- Dependencies: 275 -- Name: TABLE mdl_badge_related; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2425,7 +2147,6 @@ COMMENT ON TABLE public.mdl_badge_related IS 'Defines badge related for badges'; -- --- TOC entry 276 (class 1259 OID 59420) -- Name: mdl_badge_related_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2440,8 +2161,6 @@ CREATE SEQUENCE public.mdl_badge_related_id_seq ALTER TABLE public.mdl_badge_related_id_seq OWNER TO postgres; -- --- TOC entry 10624 (class 0 OID 0) --- Dependencies: 276 -- Name: mdl_badge_related_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2449,7 +2168,6 @@ ALTER SEQUENCE public.mdl_badge_related_id_seq OWNED BY public.mdl_badge_related -- --- TOC entry 277 (class 1259 OID 59422) -- Name: mdl_block; Type: TABLE; Schema: public; Owner: postgres -- @@ -2465,8 +2183,6 @@ CREATE TABLE public.mdl_block ( ALTER TABLE public.mdl_block OWNER TO postgres; -- --- TOC entry 10625 (class 0 OID 0) --- Dependencies: 277 -- Name: TABLE mdl_block; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2474,7 +2190,6 @@ COMMENT ON TABLE public.mdl_block IS 'contains all installed blocks'; -- --- TOC entry 278 (class 1259 OID 59429) -- Name: mdl_block_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2489,8 +2204,6 @@ CREATE SEQUENCE public.mdl_block_id_seq ALTER TABLE public.mdl_block_id_seq OWNER TO postgres; -- --- TOC entry 10626 (class 0 OID 0) --- Dependencies: 278 -- Name: mdl_block_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2498,7 +2211,6 @@ ALTER SEQUENCE public.mdl_block_id_seq OWNED BY public.mdl_block.id; -- --- TOC entry 279 (class 1259 OID 59431) -- Name: mdl_block_instances; Type: TABLE; Schema: public; Owner: postgres -- @@ -2521,8 +2233,6 @@ CREATE TABLE public.mdl_block_instances ( ALTER TABLE public.mdl_block_instances OWNER TO postgres; -- --- TOC entry 10627 (class 0 OID 0) --- Dependencies: 279 -- Name: TABLE mdl_block_instances; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2530,7 +2240,6 @@ COMMENT ON TABLE public.mdl_block_instances IS 'This table stores block instance -- --- TOC entry 280 (class 1259 OID 59441) -- Name: mdl_block_instances_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2545,8 +2254,6 @@ CREATE SEQUENCE public.mdl_block_instances_id_seq ALTER TABLE public.mdl_block_instances_id_seq OWNER TO postgres; -- --- TOC entry 10628 (class 0 OID 0) --- Dependencies: 280 -- Name: mdl_block_instances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2554,7 +2261,6 @@ ALTER SEQUENCE public.mdl_block_instances_id_seq OWNED BY public.mdl_block_insta -- --- TOC entry 281 (class 1259 OID 59443) -- Name: mdl_block_positions; Type: TABLE; Schema: public; Owner: postgres -- @@ -2573,8 +2279,6 @@ CREATE TABLE public.mdl_block_positions ( ALTER TABLE public.mdl_block_positions OWNER TO postgres; -- --- TOC entry 10629 (class 0 OID 0) --- Dependencies: 281 -- Name: TABLE mdl_block_positions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2582,7 +2286,6 @@ COMMENT ON TABLE public.mdl_block_positions IS 'Stores the position of a sticky -- --- TOC entry 282 (class 1259 OID 59449) -- Name: mdl_block_positions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2597,8 +2300,6 @@ CREATE SEQUENCE public.mdl_block_positions_id_seq ALTER TABLE public.mdl_block_positions_id_seq OWNER TO postgres; -- --- TOC entry 10630 (class 0 OID 0) --- Dependencies: 282 -- Name: mdl_block_positions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2606,7 +2307,6 @@ ALTER SEQUENCE public.mdl_block_positions_id_seq OWNED BY public.mdl_block_posit -- --- TOC entry 283 (class 1259 OID 59451) -- Name: mdl_block_recent_activity; Type: TABLE; Schema: public; Owner: postgres -- @@ -2624,8 +2324,6 @@ CREATE TABLE public.mdl_block_recent_activity ( ALTER TABLE public.mdl_block_recent_activity OWNER TO postgres; -- --- TOC entry 10631 (class 0 OID 0) --- Dependencies: 283 -- Name: TABLE mdl_block_recent_activity; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2633,7 +2331,6 @@ COMMENT ON TABLE public.mdl_block_recent_activity IS 'Recent activity block'; -- --- TOC entry 284 (class 1259 OID 59454) -- Name: mdl_block_recent_activity_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2648,8 +2345,6 @@ CREATE SEQUENCE public.mdl_block_recent_activity_id_seq ALTER TABLE public.mdl_block_recent_activity_id_seq OWNER TO postgres; -- --- TOC entry 10632 (class 0 OID 0) --- Dependencies: 284 -- Name: mdl_block_recent_activity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2657,7 +2352,6 @@ ALTER SEQUENCE public.mdl_block_recent_activity_id_seq OWNED BY public.mdl_block -- --- TOC entry 285 (class 1259 OID 59456) -- Name: mdl_block_recentlyaccesseditems; Type: TABLE; Schema: public; Owner: postgres -- @@ -2673,8 +2367,6 @@ CREATE TABLE public.mdl_block_recentlyaccesseditems ( ALTER TABLE public.mdl_block_recentlyaccesseditems OWNER TO postgres; -- --- TOC entry 10633 (class 0 OID 0) --- Dependencies: 285 -- Name: TABLE mdl_block_recentlyaccesseditems; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2682,7 +2374,6 @@ COMMENT ON TABLE public.mdl_block_recentlyaccesseditems IS 'Most recently access -- --- TOC entry 286 (class 1259 OID 59459) -- Name: mdl_block_recentlyaccesseditems_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2697,8 +2388,6 @@ CREATE SEQUENCE public.mdl_block_recentlyaccesseditems_id_seq ALTER TABLE public.mdl_block_recentlyaccesseditems_id_seq OWNER TO postgres; -- --- TOC entry 10634 (class 0 OID 0) --- Dependencies: 286 -- Name: mdl_block_recentlyaccesseditems_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2706,7 +2395,6 @@ ALTER SEQUENCE public.mdl_block_recentlyaccesseditems_id_seq OWNED BY public.mdl -- --- TOC entry 287 (class 1259 OID 59461) -- Name: mdl_block_rss_client; Type: TABLE; Schema: public; Owner: postgres -- @@ -2726,8 +2414,6 @@ CREATE TABLE public.mdl_block_rss_client ( ALTER TABLE public.mdl_block_rss_client OWNER TO postgres; -- --- TOC entry 10635 (class 0 OID 0) --- Dependencies: 287 -- Name: TABLE mdl_block_rss_client; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2735,7 +2421,6 @@ COMMENT ON TABLE public.mdl_block_rss_client IS 'Remote news feed information. C -- --- TOC entry 288 (class 1259 OID 59473) -- Name: mdl_block_rss_client_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2750,8 +2435,6 @@ CREATE SEQUENCE public.mdl_block_rss_client_id_seq ALTER TABLE public.mdl_block_rss_client_id_seq OWNER TO postgres; -- --- TOC entry 10636 (class 0 OID 0) --- Dependencies: 288 -- Name: mdl_block_rss_client_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2759,7 +2442,6 @@ ALTER SEQUENCE public.mdl_block_rss_client_id_seq OWNED BY public.mdl_block_rss_ -- --- TOC entry 289 (class 1259 OID 59475) -- Name: mdl_blog_association; Type: TABLE; Schema: public; Owner: postgres -- @@ -2773,8 +2455,6 @@ CREATE TABLE public.mdl_blog_association ( ALTER TABLE public.mdl_blog_association OWNER TO postgres; -- --- TOC entry 10637 (class 0 OID 0) --- Dependencies: 289 -- Name: TABLE mdl_blog_association; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2782,7 +2462,6 @@ COMMENT ON TABLE public.mdl_blog_association IS 'Associations of blog entries wi -- --- TOC entry 290 (class 1259 OID 59478) -- Name: mdl_blog_association_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2797,8 +2476,6 @@ CREATE SEQUENCE public.mdl_blog_association_id_seq ALTER TABLE public.mdl_blog_association_id_seq OWNER TO postgres; -- --- TOC entry 10638 (class 0 OID 0) --- Dependencies: 290 -- Name: mdl_blog_association_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2806,7 +2483,6 @@ ALTER SEQUENCE public.mdl_blog_association_id_seq OWNED BY public.mdl_blog_assoc -- --- TOC entry 291 (class 1259 OID 59480) -- Name: mdl_blog_external; Type: TABLE; Schema: public; Owner: postgres -- @@ -2826,8 +2502,6 @@ CREATE TABLE public.mdl_blog_external ( ALTER TABLE public.mdl_blog_external OWNER TO postgres; -- --- TOC entry 10639 (class 0 OID 0) --- Dependencies: 291 -- Name: TABLE mdl_blog_external; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2835,7 +2509,6 @@ COMMENT ON TABLE public.mdl_blog_external IS 'External blog links used for RSS c -- --- TOC entry 292 (class 1259 OID 59489) -- Name: mdl_blog_external_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2850,8 +2523,6 @@ CREATE SEQUENCE public.mdl_blog_external_id_seq ALTER TABLE public.mdl_blog_external_id_seq OWNER TO postgres; -- --- TOC entry 10640 (class 0 OID 0) --- Dependencies: 292 -- Name: mdl_blog_external_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2859,7 +2530,6 @@ ALTER SEQUENCE public.mdl_blog_external_id_seq OWNED BY public.mdl_blog_external -- --- TOC entry 293 (class 1259 OID 59491) -- Name: mdl_book; Type: TABLE; Schema: public; Owner: postgres -- @@ -2881,8 +2551,6 @@ CREATE TABLE public.mdl_book ( ALTER TABLE public.mdl_book OWNER TO postgres; -- --- TOC entry 10641 (class 0 OID 0) --- Dependencies: 293 -- Name: TABLE mdl_book; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2890,7 +2558,6 @@ COMMENT ON TABLE public.mdl_book IS 'Defines book'; -- --- TOC entry 294 (class 1259 OID 59506) -- Name: mdl_book_chapters; Type: TABLE; Schema: public; Owner: postgres -- @@ -2912,8 +2579,6 @@ CREATE TABLE public.mdl_book_chapters ( ALTER TABLE public.mdl_book_chapters OWNER TO postgres; -- --- TOC entry 10642 (class 0 OID 0) --- Dependencies: 294 -- Name: TABLE mdl_book_chapters; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2921,7 +2586,6 @@ COMMENT ON TABLE public.mdl_book_chapters IS 'Defines book_chapters'; -- --- TOC entry 295 (class 1259 OID 59521) -- Name: mdl_book_chapters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2936,8 +2600,6 @@ CREATE SEQUENCE public.mdl_book_chapters_id_seq ALTER TABLE public.mdl_book_chapters_id_seq OWNER TO postgres; -- --- TOC entry 10643 (class 0 OID 0) --- Dependencies: 295 -- Name: mdl_book_chapters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2945,7 +2607,6 @@ ALTER SEQUENCE public.mdl_book_chapters_id_seq OWNED BY public.mdl_book_chapters -- --- TOC entry 296 (class 1259 OID 59523) -- Name: mdl_book_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -2960,8 +2621,6 @@ CREATE SEQUENCE public.mdl_book_id_seq ALTER TABLE public.mdl_book_id_seq OWNER TO postgres; -- --- TOC entry 10644 (class 0 OID 0) --- Dependencies: 296 -- Name: mdl_book_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -2969,7 +2628,6 @@ ALTER SEQUENCE public.mdl_book_id_seq OWNED BY public.mdl_book.id; -- --- TOC entry 297 (class 1259 OID 59525) -- Name: mdl_cache_filters; Type: TABLE; Schema: public; Owner: postgres -- @@ -2986,8 +2644,6 @@ CREATE TABLE public.mdl_cache_filters ( ALTER TABLE public.mdl_cache_filters OWNER TO postgres; -- --- TOC entry 10645 (class 0 OID 0) --- Dependencies: 297 -- Name: TABLE mdl_cache_filters; Type: COMMENT; Schema: public; Owner: postgres -- @@ -2995,7 +2651,6 @@ COMMENT ON TABLE public.mdl_cache_filters IS 'For keeping information about cach -- --- TOC entry 298 (class 1259 OID 59535) -- Name: mdl_cache_filters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3010,8 +2665,6 @@ CREATE SEQUENCE public.mdl_cache_filters_id_seq ALTER TABLE public.mdl_cache_filters_id_seq OWNER TO postgres; -- --- TOC entry 10646 (class 0 OID 0) --- Dependencies: 298 -- Name: mdl_cache_filters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3019,7 +2672,6 @@ ALTER SEQUENCE public.mdl_cache_filters_id_seq OWNED BY public.mdl_cache_filters -- --- TOC entry 299 (class 1259 OID 59537) -- Name: mdl_cache_flags; Type: TABLE; Schema: public; Owner: postgres -- @@ -3036,8 +2688,6 @@ CREATE TABLE public.mdl_cache_flags ( ALTER TABLE public.mdl_cache_flags OWNER TO postgres; -- --- TOC entry 10647 (class 0 OID 0) --- Dependencies: 299 -- Name: TABLE mdl_cache_flags; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3045,7 +2695,6 @@ COMMENT ON TABLE public.mdl_cache_flags IS 'Cache of time-sensitive flags'; -- --- TOC entry 300 (class 1259 OID 59546) -- Name: mdl_cache_flags_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3060,8 +2709,6 @@ CREATE SEQUENCE public.mdl_cache_flags_id_seq ALTER TABLE public.mdl_cache_flags_id_seq OWNER TO postgres; -- --- TOC entry 10648 (class 0 OID 0) --- Dependencies: 300 -- Name: mdl_cache_flags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3069,7 +2716,6 @@ ALTER SEQUENCE public.mdl_cache_flags_id_seq OWNED BY public.mdl_cache_flags.id; -- --- TOC entry 301 (class 1259 OID 59548) -- Name: mdl_capabilities; Type: TABLE; Schema: public; Owner: postgres -- @@ -3086,8 +2732,6 @@ CREATE TABLE public.mdl_capabilities ( ALTER TABLE public.mdl_capabilities OWNER TO postgres; -- --- TOC entry 10649 (class 0 OID 0) --- Dependencies: 301 -- Name: TABLE mdl_capabilities; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3095,7 +2739,6 @@ COMMENT ON TABLE public.mdl_capabilities IS 'this defines all capabilities'; -- --- TOC entry 302 (class 1259 OID 59556) -- Name: mdl_capabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3110,8 +2753,6 @@ CREATE SEQUENCE public.mdl_capabilities_id_seq ALTER TABLE public.mdl_capabilities_id_seq OWNER TO postgres; -- --- TOC entry 10650 (class 0 OID 0) --- Dependencies: 302 -- Name: mdl_capabilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3119,7 +2760,6 @@ ALTER SEQUENCE public.mdl_capabilities_id_seq OWNED BY public.mdl_capabilities.i -- --- TOC entry 303 (class 1259 OID 59558) -- Name: mdl_chat; Type: TABLE; Schema: public; Owner: postgres -- @@ -3140,8 +2780,6 @@ CREATE TABLE public.mdl_chat ( ALTER TABLE public.mdl_chat OWNER TO postgres; -- --- TOC entry 10651 (class 0 OID 0) --- Dependencies: 303 -- Name: TABLE mdl_chat; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3149,7 +2787,6 @@ COMMENT ON TABLE public.mdl_chat IS 'Each of these is a chat room'; -- --- TOC entry 304 (class 1259 OID 59572) -- Name: mdl_chat_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3164,8 +2801,6 @@ CREATE SEQUENCE public.mdl_chat_id_seq ALTER TABLE public.mdl_chat_id_seq OWNER TO postgres; -- --- TOC entry 10652 (class 0 OID 0) --- Dependencies: 304 -- Name: mdl_chat_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3173,7 +2808,6 @@ ALTER SEQUENCE public.mdl_chat_id_seq OWNED BY public.mdl_chat.id; -- --- TOC entry 305 (class 1259 OID 59574) -- Name: mdl_chat_messages; Type: TABLE; Schema: public; Owner: postgres -- @@ -3191,8 +2825,6 @@ CREATE TABLE public.mdl_chat_messages ( ALTER TABLE public.mdl_chat_messages OWNER TO postgres; -- --- TOC entry 10653 (class 0 OID 0) --- Dependencies: 305 -- Name: TABLE mdl_chat_messages; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3200,7 +2832,6 @@ COMMENT ON TABLE public.mdl_chat_messages IS 'Stores all the actual chat message -- --- TOC entry 306 (class 1259 OID 59585) -- Name: mdl_chat_messages_current; Type: TABLE; Schema: public; Owner: postgres -- @@ -3218,8 +2849,6 @@ CREATE TABLE public.mdl_chat_messages_current ( ALTER TABLE public.mdl_chat_messages_current OWNER TO postgres; -- --- TOC entry 10654 (class 0 OID 0) --- Dependencies: 306 -- Name: TABLE mdl_chat_messages_current; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3227,7 +2856,6 @@ COMMENT ON TABLE public.mdl_chat_messages_current IS 'Stores current session'; -- --- TOC entry 307 (class 1259 OID 59596) -- Name: mdl_chat_messages_current_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3242,8 +2870,6 @@ CREATE SEQUENCE public.mdl_chat_messages_current_id_seq ALTER TABLE public.mdl_chat_messages_current_id_seq OWNER TO postgres; -- --- TOC entry 10655 (class 0 OID 0) --- Dependencies: 307 -- Name: mdl_chat_messages_current_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3251,7 +2877,6 @@ ALTER SEQUENCE public.mdl_chat_messages_current_id_seq OWNED BY public.mdl_chat_ -- --- TOC entry 308 (class 1259 OID 59598) -- Name: mdl_chat_messages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3266,8 +2891,6 @@ CREATE SEQUENCE public.mdl_chat_messages_id_seq ALTER TABLE public.mdl_chat_messages_id_seq OWNER TO postgres; -- --- TOC entry 10656 (class 0 OID 0) --- Dependencies: 308 -- Name: mdl_chat_messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3275,7 +2898,6 @@ ALTER SEQUENCE public.mdl_chat_messages_id_seq OWNED BY public.mdl_chat_messages -- --- TOC entry 309 (class 1259 OID 59600) -- Name: mdl_chat_users; Type: TABLE; Schema: public; Owner: postgres -- @@ -3298,8 +2920,6 @@ CREATE TABLE public.mdl_chat_users ( ALTER TABLE public.mdl_chat_users OWNER TO postgres; -- --- TOC entry 10657 (class 0 OID 0) --- Dependencies: 309 -- Name: TABLE mdl_chat_users; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3307,7 +2927,6 @@ COMMENT ON TABLE public.mdl_chat_users IS 'Keeps track of which users are in whi -- --- TOC entry 310 (class 1259 OID 59614) -- Name: mdl_chat_users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3322,8 +2941,6 @@ CREATE SEQUENCE public.mdl_chat_users_id_seq ALTER TABLE public.mdl_chat_users_id_seq OWNER TO postgres; -- --- TOC entry 10658 (class 0 OID 0) --- Dependencies: 310 -- Name: mdl_chat_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3331,7 +2948,6 @@ ALTER SEQUENCE public.mdl_chat_users_id_seq OWNED BY public.mdl_chat_users.id; -- --- TOC entry 311 (class 1259 OID 59616) -- Name: mdl_choice; Type: TABLE; Schema: public; Owner: postgres -- @@ -3360,8 +2976,6 @@ CREATE TABLE public.mdl_choice ( ALTER TABLE public.mdl_choice OWNER TO postgres; -- --- TOC entry 10659 (class 0 OID 0) --- Dependencies: 311 -- Name: TABLE mdl_choice; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3369,7 +2983,6 @@ COMMENT ON TABLE public.mdl_choice IS 'Available choices are stored here'; -- --- TOC entry 312 (class 1259 OID 59638) -- Name: mdl_choice_answers; Type: TABLE; Schema: public; Owner: postgres -- @@ -3385,8 +2998,6 @@ CREATE TABLE public.mdl_choice_answers ( ALTER TABLE public.mdl_choice_answers OWNER TO postgres; -- --- TOC entry 10660 (class 0 OID 0) --- Dependencies: 312 -- Name: TABLE mdl_choice_answers; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3394,7 +3005,6 @@ COMMENT ON TABLE public.mdl_choice_answers IS 'choices performed by users'; -- --- TOC entry 313 (class 1259 OID 59645) -- Name: mdl_choice_answers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3409,8 +3019,6 @@ CREATE SEQUENCE public.mdl_choice_answers_id_seq ALTER TABLE public.mdl_choice_answers_id_seq OWNER TO postgres; -- --- TOC entry 10661 (class 0 OID 0) --- Dependencies: 313 -- Name: mdl_choice_answers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3418,7 +3026,6 @@ ALTER SEQUENCE public.mdl_choice_answers_id_seq OWNED BY public.mdl_choice_answe -- --- TOC entry 314 (class 1259 OID 59647) -- Name: mdl_choice_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3433,8 +3040,6 @@ CREATE SEQUENCE public.mdl_choice_id_seq ALTER TABLE public.mdl_choice_id_seq OWNER TO postgres; -- --- TOC entry 10662 (class 0 OID 0) --- Dependencies: 314 -- Name: mdl_choice_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3442,7 +3047,6 @@ ALTER SEQUENCE public.mdl_choice_id_seq OWNED BY public.mdl_choice.id; -- --- TOC entry 315 (class 1259 OID 59649) -- Name: mdl_choice_options; Type: TABLE; Schema: public; Owner: postgres -- @@ -3458,8 +3062,6 @@ CREATE TABLE public.mdl_choice_options ( ALTER TABLE public.mdl_choice_options OWNER TO postgres; -- --- TOC entry 10663 (class 0 OID 0) --- Dependencies: 315 -- Name: TABLE mdl_choice_options; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3467,7 +3069,6 @@ COMMENT ON TABLE public.mdl_choice_options IS 'available options to choice'; -- --- TOC entry 316 (class 1259 OID 59658) -- Name: mdl_choice_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3482,8 +3083,6 @@ CREATE SEQUENCE public.mdl_choice_options_id_seq ALTER TABLE public.mdl_choice_options_id_seq OWNER TO postgres; -- --- TOC entry 10664 (class 0 OID 0) --- Dependencies: 316 -- Name: mdl_choice_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3491,7 +3090,6 @@ ALTER SEQUENCE public.mdl_choice_options_id_seq OWNED BY public.mdl_choice_optio -- --- TOC entry 317 (class 1259 OID 59660) -- Name: mdl_cohort; Type: TABLE; Schema: public; Owner: postgres -- @@ -3513,8 +3111,6 @@ CREATE TABLE public.mdl_cohort ( ALTER TABLE public.mdl_cohort OWNER TO postgres; -- --- TOC entry 10665 (class 0 OID 0) --- Dependencies: 317 -- Name: TABLE mdl_cohort; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3522,7 +3118,6 @@ COMMENT ON TABLE public.mdl_cohort IS 'Each record represents one cohort (aka si -- --- TOC entry 318 (class 1259 OID 59669) -- Name: mdl_cohort_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3537,8 +3132,6 @@ CREATE SEQUENCE public.mdl_cohort_id_seq ALTER TABLE public.mdl_cohort_id_seq OWNER TO postgres; -- --- TOC entry 10666 (class 0 OID 0) --- Dependencies: 318 -- Name: mdl_cohort_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3546,7 +3139,6 @@ ALTER SEQUENCE public.mdl_cohort_id_seq OWNED BY public.mdl_cohort.id; -- --- TOC entry 319 (class 1259 OID 59671) -- Name: mdl_cohort_members; Type: TABLE; Schema: public; Owner: postgres -- @@ -3561,8 +3153,6 @@ CREATE TABLE public.mdl_cohort_members ( ALTER TABLE public.mdl_cohort_members OWNER TO postgres; -- --- TOC entry 10667 (class 0 OID 0) --- Dependencies: 319 -- Name: TABLE mdl_cohort_members; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3570,7 +3160,6 @@ COMMENT ON TABLE public.mdl_cohort_members IS 'Link a user to a cohort.'; -- --- TOC entry 320 (class 1259 OID 59677) -- Name: mdl_cohort_members_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3585,8 +3174,6 @@ CREATE SEQUENCE public.mdl_cohort_members_id_seq ALTER TABLE public.mdl_cohort_members_id_seq OWNER TO postgres; -- --- TOC entry 10668 (class 0 OID 0) --- Dependencies: 320 -- Name: mdl_cohort_members_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3594,7 +3181,6 @@ ALTER SEQUENCE public.mdl_cohort_members_id_seq OWNED BY public.mdl_cohort_membe -- --- TOC entry 321 (class 1259 OID 59679) -- Name: mdl_comments; Type: TABLE; Schema: public; Owner: postgres -- @@ -3614,8 +3200,6 @@ CREATE TABLE public.mdl_comments ( ALTER TABLE public.mdl_comments OWNER TO postgres; -- --- TOC entry 10669 (class 0 OID 0) --- Dependencies: 321 -- Name: TABLE mdl_comments; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3623,7 +3207,6 @@ COMMENT ON TABLE public.mdl_comments IS 'moodle comments module'; -- --- TOC entry 322 (class 1259 OID 59687) -- Name: mdl_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3638,8 +3221,6 @@ CREATE SEQUENCE public.mdl_comments_id_seq ALTER TABLE public.mdl_comments_id_seq OWNER TO postgres; -- --- TOC entry 10670 (class 0 OID 0) --- Dependencies: 322 -- Name: mdl_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3647,7 +3228,6 @@ ALTER SEQUENCE public.mdl_comments_id_seq OWNED BY public.mdl_comments.id; -- --- TOC entry 323 (class 1259 OID 59689) -- Name: mdl_competency; Type: TABLE; Schema: public; Owner: postgres -- @@ -3675,8 +3255,6 @@ CREATE TABLE public.mdl_competency ( ALTER TABLE public.mdl_competency OWNER TO postgres; -- --- TOC entry 10671 (class 0 OID 0) --- Dependencies: 323 -- Name: TABLE mdl_competency; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3684,7 +3262,6 @@ COMMENT ON TABLE public.mdl_competency IS 'This table contains the master record -- --- TOC entry 324 (class 1259 OID 59699) -- Name: mdl_competency_coursecomp; Type: TABLE; Schema: public; Owner: postgres -- @@ -3703,8 +3280,6 @@ CREATE TABLE public.mdl_competency_coursecomp ( ALTER TABLE public.mdl_competency_coursecomp OWNER TO postgres; -- --- TOC entry 10672 (class 0 OID 0) --- Dependencies: 324 -- Name: TABLE mdl_competency_coursecomp; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3712,7 +3287,6 @@ COMMENT ON TABLE public.mdl_competency_coursecomp IS 'Link a competency to a cou -- --- TOC entry 325 (class 1259 OID 59702) -- Name: mdl_competency_coursecomp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3727,8 +3301,6 @@ CREATE SEQUENCE public.mdl_competency_coursecomp_id_seq ALTER TABLE public.mdl_competency_coursecomp_id_seq OWNER TO postgres; -- --- TOC entry 10673 (class 0 OID 0) --- Dependencies: 325 -- Name: mdl_competency_coursecomp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3736,7 +3308,6 @@ ALTER SEQUENCE public.mdl_competency_coursecomp_id_seq OWNED BY public.mdl_compe -- --- TOC entry 326 (class 1259 OID 59704) -- Name: mdl_competency_coursecompsetting; Type: TABLE; Schema: public; Owner: postgres -- @@ -3753,8 +3324,6 @@ CREATE TABLE public.mdl_competency_coursecompsetting ( ALTER TABLE public.mdl_competency_coursecompsetting OWNER TO postgres; -- --- TOC entry 10674 (class 0 OID 0) --- Dependencies: 326 -- Name: TABLE mdl_competency_coursecompsetting; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3762,7 +3331,6 @@ COMMENT ON TABLE public.mdl_competency_coursecompsetting IS 'This table contains -- --- TOC entry 327 (class 1259 OID 59707) -- Name: mdl_competency_coursecompsetting_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3777,8 +3345,6 @@ CREATE SEQUENCE public.mdl_competency_coursecompsetting_id_seq ALTER TABLE public.mdl_competency_coursecompsetting_id_seq OWNER TO postgres; -- --- TOC entry 10675 (class 0 OID 0) --- Dependencies: 327 -- Name: mdl_competency_coursecompsetting_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3786,7 +3352,6 @@ ALTER SEQUENCE public.mdl_competency_coursecompsetting_id_seq OWNED BY public.md -- --- TOC entry 328 (class 1259 OID 59709) -- Name: mdl_competency_evidence; Type: TABLE; Schema: public; Owner: postgres -- @@ -3811,8 +3376,6 @@ CREATE TABLE public.mdl_competency_evidence ( ALTER TABLE public.mdl_competency_evidence OWNER TO postgres; -- --- TOC entry 10676 (class 0 OID 0) --- Dependencies: 328 -- Name: TABLE mdl_competency_evidence; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3820,7 +3383,6 @@ COMMENT ON TABLE public.mdl_competency_evidence IS 'The evidence linked to a use -- --- TOC entry 329 (class 1259 OID 59717) -- Name: mdl_competency_evidence_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3835,8 +3397,6 @@ CREATE SEQUENCE public.mdl_competency_evidence_id_seq ALTER TABLE public.mdl_competency_evidence_id_seq OWNER TO postgres; -- --- TOC entry 10677 (class 0 OID 0) --- Dependencies: 329 -- Name: mdl_competency_evidence_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3844,7 +3404,6 @@ ALTER SEQUENCE public.mdl_competency_evidence_id_seq OWNED BY public.mdl_compete -- --- TOC entry 330 (class 1259 OID 59719) -- Name: mdl_competency_framework; Type: TABLE; Schema: public; Owner: postgres -- @@ -3868,8 +3427,6 @@ CREATE TABLE public.mdl_competency_framework ( ALTER TABLE public.mdl_competency_framework OWNER TO postgres; -- --- TOC entry 10678 (class 0 OID 0) --- Dependencies: 330 -- Name: TABLE mdl_competency_framework; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3877,7 +3434,6 @@ COMMENT ON TABLE public.mdl_competency_framework IS 'List of competency framewor -- --- TOC entry 331 (class 1259 OID 59728) -- Name: mdl_competency_framework_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3892,8 +3448,6 @@ CREATE SEQUENCE public.mdl_competency_framework_id_seq ALTER TABLE public.mdl_competency_framework_id_seq OWNER TO postgres; -- --- TOC entry 10679 (class 0 OID 0) --- Dependencies: 331 -- Name: mdl_competency_framework_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3901,7 +3455,6 @@ ALTER SEQUENCE public.mdl_competency_framework_id_seq OWNED BY public.mdl_compet -- --- TOC entry 332 (class 1259 OID 59730) -- Name: mdl_competency_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3916,8 +3469,6 @@ CREATE SEQUENCE public.mdl_competency_id_seq ALTER TABLE public.mdl_competency_id_seq OWNER TO postgres; -- --- TOC entry 10680 (class 0 OID 0) --- Dependencies: 332 -- Name: mdl_competency_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3925,7 +3476,6 @@ ALTER SEQUENCE public.mdl_competency_id_seq OWNED BY public.mdl_competency.id; -- --- TOC entry 333 (class 1259 OID 59732) -- Name: mdl_competency_modulecomp; Type: TABLE; Schema: public; Owner: postgres -- @@ -3944,8 +3494,6 @@ CREATE TABLE public.mdl_competency_modulecomp ( ALTER TABLE public.mdl_competency_modulecomp OWNER TO postgres; -- --- TOC entry 10681 (class 0 OID 0) --- Dependencies: 333 -- Name: TABLE mdl_competency_modulecomp; Type: COMMENT; Schema: public; Owner: postgres -- @@ -3953,7 +3501,6 @@ COMMENT ON TABLE public.mdl_competency_modulecomp IS 'Link a competency to a mod -- --- TOC entry 334 (class 1259 OID 59735) -- Name: mdl_competency_modulecomp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -3968,8 +3515,6 @@ CREATE SEQUENCE public.mdl_competency_modulecomp_id_seq ALTER TABLE public.mdl_competency_modulecomp_id_seq OWNER TO postgres; -- --- TOC entry 10682 (class 0 OID 0) --- Dependencies: 334 -- Name: mdl_competency_modulecomp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -3977,7 +3522,6 @@ ALTER SEQUENCE public.mdl_competency_modulecomp_id_seq OWNED BY public.mdl_compe -- --- TOC entry 335 (class 1259 OID 59737) -- Name: mdl_competency_plan; Type: TABLE; Schema: public; Owner: postgres -- @@ -4001,8 +3545,6 @@ CREATE TABLE public.mdl_competency_plan ( ALTER TABLE public.mdl_competency_plan OWNER TO postgres; -- --- TOC entry 10683 (class 0 OID 0) --- Dependencies: 335 -- Name: TABLE mdl_competency_plan; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4010,7 +3552,6 @@ COMMENT ON TABLE public.mdl_competency_plan IS 'Learning plans'; -- --- TOC entry 336 (class 1259 OID 59747) -- Name: mdl_competency_plan_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4025,8 +3566,6 @@ CREATE SEQUENCE public.mdl_competency_plan_id_seq ALTER TABLE public.mdl_competency_plan_id_seq OWNER TO postgres; -- --- TOC entry 10684 (class 0 OID 0) --- Dependencies: 336 -- Name: mdl_competency_plan_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4034,7 +3573,6 @@ ALTER SEQUENCE public.mdl_competency_plan_id_seq OWNED BY public.mdl_competency_ -- --- TOC entry 337 (class 1259 OID 59749) -- Name: mdl_competency_plancomp; Type: TABLE; Schema: public; Owner: postgres -- @@ -4052,8 +3590,6 @@ CREATE TABLE public.mdl_competency_plancomp ( ALTER TABLE public.mdl_competency_plancomp OWNER TO postgres; -- --- TOC entry 10685 (class 0 OID 0) --- Dependencies: 337 -- Name: TABLE mdl_competency_plancomp; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4061,7 +3597,6 @@ COMMENT ON TABLE public.mdl_competency_plancomp IS 'Plan competencies'; -- --- TOC entry 338 (class 1259 OID 59752) -- Name: mdl_competency_plancomp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4076,8 +3611,6 @@ CREATE SEQUENCE public.mdl_competency_plancomp_id_seq ALTER TABLE public.mdl_competency_plancomp_id_seq OWNER TO postgres; -- --- TOC entry 10686 (class 0 OID 0) --- Dependencies: 338 -- Name: mdl_competency_plancomp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4085,7 +3618,6 @@ ALTER SEQUENCE public.mdl_competency_plancomp_id_seq OWNED BY public.mdl_compete -- --- TOC entry 339 (class 1259 OID 59754) -- Name: mdl_competency_relatedcomp; Type: TABLE; Schema: public; Owner: postgres -- @@ -4102,8 +3634,6 @@ CREATE TABLE public.mdl_competency_relatedcomp ( ALTER TABLE public.mdl_competency_relatedcomp OWNER TO postgres; -- --- TOC entry 10687 (class 0 OID 0) --- Dependencies: 339 -- Name: TABLE mdl_competency_relatedcomp; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4111,7 +3641,6 @@ COMMENT ON TABLE public.mdl_competency_relatedcomp IS 'Related competencies'; -- --- TOC entry 340 (class 1259 OID 59757) -- Name: mdl_competency_relatedcomp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4126,8 +3655,6 @@ CREATE SEQUENCE public.mdl_competency_relatedcomp_id_seq ALTER TABLE public.mdl_competency_relatedcomp_id_seq OWNER TO postgres; -- --- TOC entry 10688 (class 0 OID 0) --- Dependencies: 340 -- Name: mdl_competency_relatedcomp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4135,7 +3662,6 @@ ALTER SEQUENCE public.mdl_competency_relatedcomp_id_seq OWNED BY public.mdl_comp -- --- TOC entry 341 (class 1259 OID 59759) -- Name: mdl_competency_template; Type: TABLE; Schema: public; Owner: postgres -- @@ -4156,8 +3682,6 @@ CREATE TABLE public.mdl_competency_template ( ALTER TABLE public.mdl_competency_template OWNER TO postgres; -- --- TOC entry 10689 (class 0 OID 0) --- Dependencies: 341 -- Name: TABLE mdl_competency_template; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4165,7 +3689,6 @@ COMMENT ON TABLE public.mdl_competency_template IS 'Learning plan templates.'; -- --- TOC entry 342 (class 1259 OID 59767) -- Name: mdl_competency_template_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4180,8 +3703,6 @@ CREATE SEQUENCE public.mdl_competency_template_id_seq ALTER TABLE public.mdl_competency_template_id_seq OWNER TO postgres; -- --- TOC entry 10690 (class 0 OID 0) --- Dependencies: 342 -- Name: mdl_competency_template_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4189,7 +3710,6 @@ ALTER SEQUENCE public.mdl_competency_template_id_seq OWNED BY public.mdl_compete -- --- TOC entry 343 (class 1259 OID 59769) -- Name: mdl_competency_templatecohort; Type: TABLE; Schema: public; Owner: postgres -- @@ -4206,8 +3726,6 @@ CREATE TABLE public.mdl_competency_templatecohort ( ALTER TABLE public.mdl_competency_templatecohort OWNER TO postgres; -- --- TOC entry 10691 (class 0 OID 0) --- Dependencies: 343 -- Name: TABLE mdl_competency_templatecohort; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4215,7 +3733,6 @@ COMMENT ON TABLE public.mdl_competency_templatecohort IS 'Default comment for th -- --- TOC entry 344 (class 1259 OID 59772) -- Name: mdl_competency_templatecohort_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4230,8 +3747,6 @@ CREATE SEQUENCE public.mdl_competency_templatecohort_id_seq ALTER TABLE public.mdl_competency_templatecohort_id_seq OWNER TO postgres; -- --- TOC entry 10692 (class 0 OID 0) --- Dependencies: 344 -- Name: mdl_competency_templatecohort_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4239,7 +3754,6 @@ ALTER SEQUENCE public.mdl_competency_templatecohort_id_seq OWNED BY public.mdl_c -- --- TOC entry 345 (class 1259 OID 59774) -- Name: mdl_competency_templatecomp; Type: TABLE; Schema: public; Owner: postgres -- @@ -4257,8 +3771,6 @@ CREATE TABLE public.mdl_competency_templatecomp ( ALTER TABLE public.mdl_competency_templatecomp OWNER TO postgres; -- --- TOC entry 10693 (class 0 OID 0) --- Dependencies: 345 -- Name: TABLE mdl_competency_templatecomp; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4266,7 +3778,6 @@ COMMENT ON TABLE public.mdl_competency_templatecomp IS 'Link a competency to a l -- --- TOC entry 346 (class 1259 OID 59777) -- Name: mdl_competency_templatecomp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4281,8 +3792,6 @@ CREATE SEQUENCE public.mdl_competency_templatecomp_id_seq ALTER TABLE public.mdl_competency_templatecomp_id_seq OWNER TO postgres; -- --- TOC entry 10694 (class 0 OID 0) --- Dependencies: 346 -- Name: mdl_competency_templatecomp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4290,7 +3799,6 @@ ALTER SEQUENCE public.mdl_competency_templatecomp_id_seq OWNED BY public.mdl_com -- --- TOC entry 347 (class 1259 OID 59779) -- Name: mdl_competency_usercomp; Type: TABLE; Schema: public; Owner: postgres -- @@ -4311,8 +3819,6 @@ CREATE TABLE public.mdl_competency_usercomp ( ALTER TABLE public.mdl_competency_usercomp OWNER TO postgres; -- --- TOC entry 10695 (class 0 OID 0) --- Dependencies: 347 -- Name: TABLE mdl_competency_usercomp; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4320,7 +3826,6 @@ COMMENT ON TABLE public.mdl_competency_usercomp IS 'User competencies'; -- --- TOC entry 348 (class 1259 OID 59783) -- Name: mdl_competency_usercomp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4335,8 +3840,6 @@ CREATE SEQUENCE public.mdl_competency_usercomp_id_seq ALTER TABLE public.mdl_competency_usercomp_id_seq OWNER TO postgres; -- --- TOC entry 10696 (class 0 OID 0) --- Dependencies: 348 -- Name: mdl_competency_usercomp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4344,7 +3847,6 @@ ALTER SEQUENCE public.mdl_competency_usercomp_id_seq OWNED BY public.mdl_compete -- --- TOC entry 349 (class 1259 OID 59785) -- Name: mdl_competency_usercompcourse; Type: TABLE; Schema: public; Owner: postgres -- @@ -4364,8 +3866,6 @@ CREATE TABLE public.mdl_competency_usercompcourse ( ALTER TABLE public.mdl_competency_usercompcourse OWNER TO postgres; -- --- TOC entry 10697 (class 0 OID 0) --- Dependencies: 349 -- Name: TABLE mdl_competency_usercompcourse; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4373,7 +3873,6 @@ COMMENT ON TABLE public.mdl_competency_usercompcourse IS 'User competencies in a -- --- TOC entry 350 (class 1259 OID 59788) -- Name: mdl_competency_usercompcourse_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4388,8 +3887,6 @@ CREATE SEQUENCE public.mdl_competency_usercompcourse_id_seq ALTER TABLE public.mdl_competency_usercompcourse_id_seq OWNER TO postgres; -- --- TOC entry 10698 (class 0 OID 0) --- Dependencies: 350 -- Name: mdl_competency_usercompcourse_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4397,7 +3894,6 @@ ALTER SEQUENCE public.mdl_competency_usercompcourse_id_seq OWNED BY public.mdl_c -- --- TOC entry 351 (class 1259 OID 59790) -- Name: mdl_competency_usercompplan; Type: TABLE; Schema: public; Owner: postgres -- @@ -4418,8 +3914,6 @@ CREATE TABLE public.mdl_competency_usercompplan ( ALTER TABLE public.mdl_competency_usercompplan OWNER TO postgres; -- --- TOC entry 10699 (class 0 OID 0) --- Dependencies: 351 -- Name: TABLE mdl_competency_usercompplan; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4427,7 +3921,6 @@ COMMENT ON TABLE public.mdl_competency_usercompplan IS 'User competencies plans' -- --- TOC entry 352 (class 1259 OID 59793) -- Name: mdl_competency_usercompplan_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4442,8 +3935,6 @@ CREATE SEQUENCE public.mdl_competency_usercompplan_id_seq ALTER TABLE public.mdl_competency_usercompplan_id_seq OWNER TO postgres; -- --- TOC entry 10700 (class 0 OID 0) --- Dependencies: 352 -- Name: mdl_competency_usercompplan_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4451,7 +3942,6 @@ ALTER SEQUENCE public.mdl_competency_usercompplan_id_seq OWNED BY public.mdl_com -- --- TOC entry 353 (class 1259 OID 59795) -- Name: mdl_competency_userevidence; Type: TABLE; Schema: public; Owner: postgres -- @@ -4471,8 +3961,6 @@ CREATE TABLE public.mdl_competency_userevidence ( ALTER TABLE public.mdl_competency_userevidence OWNER TO postgres; -- --- TOC entry 10701 (class 0 OID 0) --- Dependencies: 353 -- Name: TABLE mdl_competency_userevidence; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4480,7 +3968,6 @@ COMMENT ON TABLE public.mdl_competency_userevidence IS 'The evidence of prior le -- --- TOC entry 354 (class 1259 OID 59802) -- Name: mdl_competency_userevidence_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4495,8 +3982,6 @@ CREATE SEQUENCE public.mdl_competency_userevidence_id_seq ALTER TABLE public.mdl_competency_userevidence_id_seq OWNER TO postgres; -- --- TOC entry 10702 (class 0 OID 0) --- Dependencies: 354 -- Name: mdl_competency_userevidence_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4504,7 +3989,6 @@ ALTER SEQUENCE public.mdl_competency_userevidence_id_seq OWNED BY public.mdl_com -- --- TOC entry 355 (class 1259 OID 59804) -- Name: mdl_competency_userevidencecomp; Type: TABLE; Schema: public; Owner: postgres -- @@ -4521,8 +4005,6 @@ CREATE TABLE public.mdl_competency_userevidencecomp ( ALTER TABLE public.mdl_competency_userevidencecomp OWNER TO postgres; -- --- TOC entry 10703 (class 0 OID 0) --- Dependencies: 355 -- Name: TABLE mdl_competency_userevidencecomp; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4530,7 +4012,6 @@ COMMENT ON TABLE public.mdl_competency_userevidencecomp IS 'Relationship between -- --- TOC entry 356 (class 1259 OID 59807) -- Name: mdl_competency_userevidencecomp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4545,8 +4026,6 @@ CREATE SEQUENCE public.mdl_competency_userevidencecomp_id_seq ALTER TABLE public.mdl_competency_userevidencecomp_id_seq OWNER TO postgres; -- --- TOC entry 10704 (class 0 OID 0) --- Dependencies: 356 -- Name: mdl_competency_userevidencecomp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4554,7 +4033,6 @@ ALTER SEQUENCE public.mdl_competency_userevidencecomp_id_seq OWNED BY public.mdl -- --- TOC entry 357 (class 1259 OID 59809) -- Name: mdl_config; Type: TABLE; Schema: public; Owner: postgres -- @@ -4568,8 +4046,6 @@ CREATE TABLE public.mdl_config ( ALTER TABLE public.mdl_config OWNER TO postgres; -- --- TOC entry 10705 (class 0 OID 0) --- Dependencies: 357 -- Name: TABLE mdl_config; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4577,7 +4053,6 @@ COMMENT ON TABLE public.mdl_config IS 'Moodle configuration variables'; -- --- TOC entry 358 (class 1259 OID 59816) -- Name: mdl_config_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4592,8 +4067,6 @@ CREATE SEQUENCE public.mdl_config_id_seq ALTER TABLE public.mdl_config_id_seq OWNER TO postgres; -- --- TOC entry 10706 (class 0 OID 0) --- Dependencies: 358 -- Name: mdl_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4601,7 +4074,6 @@ ALTER SEQUENCE public.mdl_config_id_seq OWNED BY public.mdl_config.id; -- --- TOC entry 359 (class 1259 OID 59818) -- Name: mdl_config_log; Type: TABLE; Schema: public; Owner: postgres -- @@ -4619,8 +4091,6 @@ CREATE TABLE public.mdl_config_log ( ALTER TABLE public.mdl_config_log OWNER TO postgres; -- --- TOC entry 10707 (class 0 OID 0) --- Dependencies: 359 -- Name: TABLE mdl_config_log; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4628,7 +4098,6 @@ COMMENT ON TABLE public.mdl_config_log IS 'Changes done in server configuration -- --- TOC entry 360 (class 1259 OID 59825) -- Name: mdl_config_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4643,8 +4112,6 @@ CREATE SEQUENCE public.mdl_config_log_id_seq ALTER TABLE public.mdl_config_log_id_seq OWNER TO postgres; -- --- TOC entry 10708 (class 0 OID 0) --- Dependencies: 360 -- Name: mdl_config_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4652,7 +4119,6 @@ ALTER SEQUENCE public.mdl_config_log_id_seq OWNED BY public.mdl_config_log.id; -- --- TOC entry 361 (class 1259 OID 59827) -- Name: mdl_config_plugins; Type: TABLE; Schema: public; Owner: postgres -- @@ -4667,8 +4133,6 @@ CREATE TABLE public.mdl_config_plugins ( ALTER TABLE public.mdl_config_plugins OWNER TO postgres; -- --- TOC entry 10709 (class 0 OID 0) --- Dependencies: 361 -- Name: TABLE mdl_config_plugins; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4676,7 +4140,6 @@ COMMENT ON TABLE public.mdl_config_plugins IS 'Moodle modules and plugins config -- --- TOC entry 362 (class 1259 OID 59835) -- Name: mdl_config_plugins_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4691,8 +4154,6 @@ CREATE SEQUENCE public.mdl_config_plugins_id_seq ALTER TABLE public.mdl_config_plugins_id_seq OWNER TO postgres; -- --- TOC entry 10710 (class 0 OID 0) --- Dependencies: 362 -- Name: mdl_config_plugins_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4700,7 +4161,6 @@ ALTER SEQUENCE public.mdl_config_plugins_id_seq OWNED BY public.mdl_config_plugi -- --- TOC entry 363 (class 1259 OID 59837) -- Name: mdl_contentbank_content; Type: TABLE; Schema: public; Owner: postgres -- @@ -4721,8 +4181,6 @@ CREATE TABLE public.mdl_contentbank_content ( ALTER TABLE public.mdl_contentbank_content OWNER TO postgres; -- --- TOC entry 10711 (class 0 OID 0) --- Dependencies: 363 -- Name: TABLE mdl_contentbank_content; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4730,7 +4188,6 @@ COMMENT ON TABLE public.mdl_contentbank_content IS 'This table stores content da -- --- TOC entry 364 (class 1259 OID 59847) -- Name: mdl_contentbank_content_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4745,8 +4202,6 @@ CREATE SEQUENCE public.mdl_contentbank_content_id_seq ALTER TABLE public.mdl_contentbank_content_id_seq OWNER TO postgres; -- --- TOC entry 10712 (class 0 OID 0) --- Dependencies: 364 -- Name: mdl_contentbank_content_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4754,7 +4209,6 @@ ALTER SEQUENCE public.mdl_contentbank_content_id_seq OWNED BY public.mdl_content -- --- TOC entry 365 (class 1259 OID 59849) -- Name: mdl_context; Type: TABLE; Schema: public; Owner: postgres -- @@ -4771,8 +4225,6 @@ CREATE TABLE public.mdl_context ( ALTER TABLE public.mdl_context OWNER TO postgres; -- --- TOC entry 10713 (class 0 OID 0) --- Dependencies: 365 -- Name: TABLE mdl_context; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4780,7 +4232,6 @@ COMMENT ON TABLE public.mdl_context IS 'one of these must be set'; -- --- TOC entry 366 (class 1259 OID 59856) -- Name: mdl_context_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4795,8 +4246,6 @@ CREATE SEQUENCE public.mdl_context_id_seq ALTER TABLE public.mdl_context_id_seq OWNER TO postgres; -- --- TOC entry 10714 (class 0 OID 0) --- Dependencies: 366 -- Name: mdl_context_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4804,7 +4253,6 @@ ALTER SEQUENCE public.mdl_context_id_seq OWNED BY public.mdl_context.id; -- --- TOC entry 367 (class 1259 OID 59858) -- Name: mdl_context_temp; Type: TABLE; Schema: public; Owner: postgres -- @@ -4819,8 +4267,6 @@ CREATE TABLE public.mdl_context_temp ( ALTER TABLE public.mdl_context_temp OWNER TO postgres; -- --- TOC entry 10715 (class 0 OID 0) --- Dependencies: 367 -- Name: TABLE mdl_context_temp; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4828,7 +4274,6 @@ COMMENT ON TABLE public.mdl_context_temp IS 'Used by build_context_path() in upg -- --- TOC entry 368 (class 1259 OID 59863) -- Name: mdl_course; Type: TABLE; Schema: public; Owner: postgres -- @@ -4871,8 +4316,6 @@ CREATE TABLE public.mdl_course ( ALTER TABLE public.mdl_course OWNER TO postgres; -- --- TOC entry 10716 (class 0 OID 0) --- Dependencies: 368 -- Name: TABLE mdl_course; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4880,7 +4323,6 @@ COMMENT ON TABLE public.mdl_course IS 'Central course table'; -- --- TOC entry 369 (class 1259 OID 59899) -- Name: mdl_course_categories; Type: TABLE; Schema: public; Owner: postgres -- @@ -4905,8 +4347,6 @@ CREATE TABLE public.mdl_course_categories ( ALTER TABLE public.mdl_course_categories OWNER TO postgres; -- --- TOC entry 10717 (class 0 OID 0) --- Dependencies: 369 -- Name: TABLE mdl_course_categories; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4914,7 +4354,6 @@ COMMENT ON TABLE public.mdl_course_categories IS 'Course categories'; -- --- TOC entry 370 (class 1259 OID 59915) -- Name: mdl_course_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4929,8 +4368,6 @@ CREATE SEQUENCE public.mdl_course_categories_id_seq ALTER TABLE public.mdl_course_categories_id_seq OWNER TO postgres; -- --- TOC entry 10718 (class 0 OID 0) --- Dependencies: 370 -- Name: mdl_course_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4938,7 +4375,6 @@ ALTER SEQUENCE public.mdl_course_categories_id_seq OWNED BY public.mdl_course_ca -- --- TOC entry 371 (class 1259 OID 59917) -- Name: mdl_course_completion_aggr_methd; Type: TABLE; Schema: public; Owner: postgres -- @@ -4954,8 +4390,6 @@ CREATE TABLE public.mdl_course_completion_aggr_methd ( ALTER TABLE public.mdl_course_completion_aggr_methd OWNER TO postgres; -- --- TOC entry 10719 (class 0 OID 0) --- Dependencies: 371 -- Name: TABLE mdl_course_completion_aggr_methd; Type: COMMENT; Schema: public; Owner: postgres -- @@ -4963,7 +4397,6 @@ COMMENT ON TABLE public.mdl_course_completion_aggr_methd IS 'Course completion a -- --- TOC entry 372 (class 1259 OID 59922) -- Name: mdl_course_completion_aggr_methd_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -4978,8 +4411,6 @@ CREATE SEQUENCE public.mdl_course_completion_aggr_methd_id_seq ALTER TABLE public.mdl_course_completion_aggr_methd_id_seq OWNER TO postgres; -- --- TOC entry 10720 (class 0 OID 0) --- Dependencies: 372 -- Name: mdl_course_completion_aggr_methd_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -4987,7 +4418,6 @@ ALTER SEQUENCE public.mdl_course_completion_aggr_methd_id_seq OWNED BY public.md -- --- TOC entry 373 (class 1259 OID 59924) -- Name: mdl_course_completion_crit_compl; Type: TABLE; Schema: public; Owner: postgres -- @@ -5005,8 +4435,6 @@ CREATE TABLE public.mdl_course_completion_crit_compl ( ALTER TABLE public.mdl_course_completion_crit_compl OWNER TO postgres; -- --- TOC entry 10721 (class 0 OID 0) --- Dependencies: 373 -- Name: TABLE mdl_course_completion_crit_compl; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5014,7 +4442,6 @@ COMMENT ON TABLE public.mdl_course_completion_crit_compl IS 'Course completion u -- --- TOC entry 374 (class 1259 OID 59930) -- Name: mdl_course_completion_crit_compl_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5029,8 +4456,6 @@ CREATE SEQUENCE public.mdl_course_completion_crit_compl_id_seq ALTER TABLE public.mdl_course_completion_crit_compl_id_seq OWNER TO postgres; -- --- TOC entry 10722 (class 0 OID 0) --- Dependencies: 374 -- Name: mdl_course_completion_crit_compl_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5038,7 +4463,6 @@ ALTER SEQUENCE public.mdl_course_completion_crit_compl_id_seq OWNED BY public.md -- --- TOC entry 375 (class 1259 OID 59932) -- Name: mdl_course_completion_criteria; Type: TABLE; Schema: public; Owner: postgres -- @@ -5059,8 +4483,6 @@ CREATE TABLE public.mdl_course_completion_criteria ( ALTER TABLE public.mdl_course_completion_criteria OWNER TO postgres; -- --- TOC entry 10723 (class 0 OID 0) --- Dependencies: 375 -- Name: TABLE mdl_course_completion_criteria; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5068,7 +4490,6 @@ COMMENT ON TABLE public.mdl_course_completion_criteria IS 'Course completion cri -- --- TOC entry 376 (class 1259 OID 59937) -- Name: mdl_course_completion_criteria_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5083,8 +4504,6 @@ CREATE SEQUENCE public.mdl_course_completion_criteria_id_seq ALTER TABLE public.mdl_course_completion_criteria_id_seq OWNER TO postgres; -- --- TOC entry 10724 (class 0 OID 0) --- Dependencies: 376 -- Name: mdl_course_completion_criteria_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5092,7 +4511,6 @@ ALTER SEQUENCE public.mdl_course_completion_criteria_id_seq OWNED BY public.mdl_ -- --- TOC entry 377 (class 1259 OID 59939) -- Name: mdl_course_completion_defaults; Type: TABLE; Schema: public; Owner: postgres -- @@ -5111,8 +4529,6 @@ CREATE TABLE public.mdl_course_completion_defaults ( ALTER TABLE public.mdl_course_completion_defaults OWNER TO postgres; -- --- TOC entry 10725 (class 0 OID 0) --- Dependencies: 377 -- Name: TABLE mdl_course_completion_defaults; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5120,7 +4536,6 @@ COMMENT ON TABLE public.mdl_course_completion_defaults IS 'Default settings for -- --- TOC entry 378 (class 1259 OID 59949) -- Name: mdl_course_completion_defaults_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5135,8 +4550,6 @@ CREATE SEQUENCE public.mdl_course_completion_defaults_id_seq ALTER TABLE public.mdl_course_completion_defaults_id_seq OWNER TO postgres; -- --- TOC entry 10726 (class 0 OID 0) --- Dependencies: 378 -- Name: mdl_course_completion_defaults_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5144,7 +4557,6 @@ ALTER SEQUENCE public.mdl_course_completion_defaults_id_seq OWNED BY public.mdl_ -- --- TOC entry 379 (class 1259 OID 59951) -- Name: mdl_course_completions; Type: TABLE; Schema: public; Owner: postgres -- @@ -5162,8 +4574,6 @@ CREATE TABLE public.mdl_course_completions ( ALTER TABLE public.mdl_course_completions OWNER TO postgres; -- --- TOC entry 10727 (class 0 OID 0) --- Dependencies: 379 -- Name: TABLE mdl_course_completions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5171,7 +4581,6 @@ COMMENT ON TABLE public.mdl_course_completions IS 'Course completion records'; -- --- TOC entry 380 (class 1259 OID 59959) -- Name: mdl_course_completions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5186,8 +4595,6 @@ CREATE SEQUENCE public.mdl_course_completions_id_seq ALTER TABLE public.mdl_course_completions_id_seq OWNER TO postgres; -- --- TOC entry 10728 (class 0 OID 0) --- Dependencies: 380 -- Name: mdl_course_completions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5195,7 +4602,6 @@ ALTER SEQUENCE public.mdl_course_completions_id_seq OWNED BY public.mdl_course_c -- --- TOC entry 381 (class 1259 OID 59961) -- Name: mdl_course_format_options; Type: TABLE; Schema: public; Owner: postgres -- @@ -5212,8 +4618,6 @@ CREATE TABLE public.mdl_course_format_options ( ALTER TABLE public.mdl_course_format_options OWNER TO postgres; -- --- TOC entry 10729 (class 0 OID 0) --- Dependencies: 381 -- Name: TABLE mdl_course_format_options; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5221,7 +4625,6 @@ COMMENT ON TABLE public.mdl_course_format_options IS 'Stores format-specific opt -- --- TOC entry 382 (class 1259 OID 59970) -- Name: mdl_course_format_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5236,8 +4639,6 @@ CREATE SEQUENCE public.mdl_course_format_options_id_seq ALTER TABLE public.mdl_course_format_options_id_seq OWNER TO postgres; -- --- TOC entry 10730 (class 0 OID 0) --- Dependencies: 382 -- Name: mdl_course_format_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5245,7 +4646,6 @@ ALTER SEQUENCE public.mdl_course_format_options_id_seq OWNED BY public.mdl_cours -- --- TOC entry 383 (class 1259 OID 59972) -- Name: mdl_course_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5260,8 +4660,6 @@ CREATE SEQUENCE public.mdl_course_id_seq ALTER TABLE public.mdl_course_id_seq OWNER TO postgres; -- --- TOC entry 10731 (class 0 OID 0) --- Dependencies: 383 -- Name: mdl_course_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5269,7 +4667,6 @@ ALTER SEQUENCE public.mdl_course_id_seq OWNED BY public.mdl_course.id; -- --- TOC entry 384 (class 1259 OID 59974) -- Name: mdl_course_modules; Type: TABLE; Schema: public; Owner: postgres -- @@ -5301,8 +4698,6 @@ CREATE TABLE public.mdl_course_modules ( ALTER TABLE public.mdl_course_modules OWNER TO postgres; -- --- TOC entry 10732 (class 0 OID 0) --- Dependencies: 384 -- Name: TABLE mdl_course_modules; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5310,7 +4705,6 @@ COMMENT ON TABLE public.mdl_course_modules IS 'course_modules table retrofitted -- --- TOC entry 385 (class 1259 OID 59997) -- Name: mdl_course_modules_completion; Type: TABLE; Schema: public; Owner: postgres -- @@ -5328,8 +4722,6 @@ CREATE TABLE public.mdl_course_modules_completion ( ALTER TABLE public.mdl_course_modules_completion OWNER TO postgres; -- --- TOC entry 10733 (class 0 OID 0) --- Dependencies: 385 -- Name: TABLE mdl_course_modules_completion; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5337,7 +4729,6 @@ COMMENT ON TABLE public.mdl_course_modules_completion IS 'Stores the completion -- --- TOC entry 386 (class 1259 OID 60000) -- Name: mdl_course_modules_completion_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5352,8 +4743,6 @@ CREATE SEQUENCE public.mdl_course_modules_completion_id_seq ALTER TABLE public.mdl_course_modules_completion_id_seq OWNER TO postgres; -- --- TOC entry 10734 (class 0 OID 0) --- Dependencies: 386 -- Name: mdl_course_modules_completion_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5361,7 +4750,6 @@ ALTER SEQUENCE public.mdl_course_modules_completion_id_seq OWNED BY public.mdl_c -- --- TOC entry 387 (class 1259 OID 60002) -- Name: mdl_course_modules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5376,8 +4764,6 @@ CREATE SEQUENCE public.mdl_course_modules_id_seq ALTER TABLE public.mdl_course_modules_id_seq OWNER TO postgres; -- --- TOC entry 10735 (class 0 OID 0) --- Dependencies: 387 -- Name: mdl_course_modules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5385,7 +4771,6 @@ ALTER SEQUENCE public.mdl_course_modules_id_seq OWNED BY public.mdl_course_modul -- --- TOC entry 388 (class 1259 OID 60004) -- Name: mdl_course_published; Type: TABLE; Schema: public; Owner: postgres -- @@ -5404,8 +4789,6 @@ CREATE TABLE public.mdl_course_published ( ALTER TABLE public.mdl_course_published OWNER TO postgres; -- --- TOC entry 10736 (class 0 OID 0) --- Dependencies: 388 -- Name: TABLE mdl_course_published; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5413,7 +4796,6 @@ COMMENT ON TABLE public.mdl_course_published IS 'Information about how and when -- --- TOC entry 389 (class 1259 OID 60009) -- Name: mdl_course_published_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5428,8 +4810,6 @@ CREATE SEQUENCE public.mdl_course_published_id_seq ALTER TABLE public.mdl_course_published_id_seq OWNER TO postgres; -- --- TOC entry 10737 (class 0 OID 0) --- Dependencies: 389 -- Name: mdl_course_published_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5437,7 +4817,6 @@ ALTER SEQUENCE public.mdl_course_published_id_seq OWNED BY public.mdl_course_pub -- --- TOC entry 390 (class 1259 OID 60011) -- Name: mdl_course_request; Type: TABLE; Schema: public; Owner: postgres -- @@ -5457,8 +4836,6 @@ CREATE TABLE public.mdl_course_request ( ALTER TABLE public.mdl_course_request OWNER TO postgres; -- --- TOC entry 10738 (class 0 OID 0) --- Dependencies: 390 -- Name: TABLE mdl_course_request; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5466,7 +4843,6 @@ COMMENT ON TABLE public.mdl_course_request IS 'course requests'; -- --- TOC entry 391 (class 1259 OID 60023) -- Name: mdl_course_request_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5481,8 +4857,6 @@ CREATE SEQUENCE public.mdl_course_request_id_seq ALTER TABLE public.mdl_course_request_id_seq OWNER TO postgres; -- --- TOC entry 10739 (class 0 OID 0) --- Dependencies: 391 -- Name: mdl_course_request_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5490,7 +4864,6 @@ ALTER SEQUENCE public.mdl_course_request_id_seq OWNED BY public.mdl_course_reque -- --- TOC entry 392 (class 1259 OID 60025) -- Name: mdl_course_sections; Type: TABLE; Schema: public; Owner: postgres -- @@ -5511,8 +4884,6 @@ CREATE TABLE public.mdl_course_sections ( ALTER TABLE public.mdl_course_sections OWNER TO postgres; -- --- TOC entry 10740 (class 0 OID 0) --- Dependencies: 392 -- Name: TABLE mdl_course_sections; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5520,7 +4891,6 @@ COMMENT ON TABLE public.mdl_course_sections IS 'to define the sections for each -- --- TOC entry 393 (class 1259 OID 60036) -- Name: mdl_course_sections_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5535,8 +4905,6 @@ CREATE SEQUENCE public.mdl_course_sections_id_seq ALTER TABLE public.mdl_course_sections_id_seq OWNER TO postgres; -- --- TOC entry 10741 (class 0 OID 0) --- Dependencies: 393 -- Name: mdl_course_sections_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5544,7 +4912,6 @@ ALTER SEQUENCE public.mdl_course_sections_id_seq OWNED BY public.mdl_course_sect -- --- TOC entry 394 (class 1259 OID 60038) -- Name: mdl_customfield_category; Type: TABLE; Schema: public; Owner: postgres -- @@ -5566,8 +4933,6 @@ CREATE TABLE public.mdl_customfield_category ( ALTER TABLE public.mdl_customfield_category OWNER TO postgres; -- --- TOC entry 10742 (class 0 OID 0) --- Dependencies: 394 -- Name: TABLE mdl_customfield_category; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5575,7 +4940,6 @@ COMMENT ON TABLE public.mdl_customfield_category IS 'core_customfield category t -- --- TOC entry 395 (class 1259 OID 60048) -- Name: mdl_customfield_category_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5590,8 +4954,6 @@ CREATE SEQUENCE public.mdl_customfield_category_id_seq ALTER TABLE public.mdl_customfield_category_id_seq OWNER TO postgres; -- --- TOC entry 10743 (class 0 OID 0) --- Dependencies: 395 -- Name: mdl_customfield_category_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5599,7 +4961,6 @@ ALTER SEQUENCE public.mdl_customfield_category_id_seq OWNED BY public.mdl_custom -- --- TOC entry 396 (class 1259 OID 60050) -- Name: mdl_customfield_data; Type: TABLE; Schema: public; Owner: postgres -- @@ -5622,8 +4983,6 @@ CREATE TABLE public.mdl_customfield_data ( ALTER TABLE public.mdl_customfield_data OWNER TO postgres; -- --- TOC entry 10744 (class 0 OID 0) --- Dependencies: 396 -- Name: TABLE mdl_customfield_data; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5631,7 +4990,6 @@ COMMENT ON TABLE public.mdl_customfield_data IS 'core_customfield data table'; -- --- TOC entry 397 (class 1259 OID 60056) -- Name: mdl_customfield_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5646,8 +5004,6 @@ CREATE SEQUENCE public.mdl_customfield_data_id_seq ALTER TABLE public.mdl_customfield_data_id_seq OWNER TO postgres; -- --- TOC entry 10745 (class 0 OID 0) --- Dependencies: 397 -- Name: mdl_customfield_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5655,7 +5011,6 @@ ALTER SEQUENCE public.mdl_customfield_data_id_seq OWNED BY public.mdl_customfiel -- --- TOC entry 398 (class 1259 OID 60058) -- Name: mdl_customfield_field; Type: TABLE; Schema: public; Owner: postgres -- @@ -5677,8 +5032,6 @@ CREATE TABLE public.mdl_customfield_field ( ALTER TABLE public.mdl_customfield_field OWNER TO postgres; -- --- TOC entry 10746 (class 0 OID 0) --- Dependencies: 398 -- Name: TABLE mdl_customfield_field; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5686,7 +5039,6 @@ COMMENT ON TABLE public.mdl_customfield_field IS 'core_customfield field table'; -- --- TOC entry 399 (class 1259 OID 60067) -- Name: mdl_customfield_field_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5701,8 +5053,6 @@ CREATE SEQUENCE public.mdl_customfield_field_id_seq ALTER TABLE public.mdl_customfield_field_id_seq OWNER TO postgres; -- --- TOC entry 10747 (class 0 OID 0) --- Dependencies: 399 -- Name: mdl_customfield_field_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5710,7 +5060,6 @@ ALTER SEQUENCE public.mdl_customfield_field_id_seq OWNED BY public.mdl_customfie -- --- TOC entry 400 (class 1259 OID 60069) -- Name: mdl_data; Type: TABLE; Schema: public; Owner: postgres -- @@ -5758,8 +5107,6 @@ CREATE TABLE public.mdl_data ( ALTER TABLE public.mdl_data OWNER TO postgres; -- --- TOC entry 10748 (class 0 OID 0) --- Dependencies: 400 -- Name: TABLE mdl_data; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5767,7 +5114,6 @@ COMMENT ON TABLE public.mdl_data IS 'all database activities'; -- --- TOC entry 401 (class 1259 OID 60099) -- Name: mdl_data_content; Type: TABLE; Schema: public; Owner: postgres -- @@ -5786,8 +5132,6 @@ CREATE TABLE public.mdl_data_content ( ALTER TABLE public.mdl_data_content OWNER TO postgres; -- --- TOC entry 10749 (class 0 OID 0) --- Dependencies: 401 -- Name: TABLE mdl_data_content; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5795,7 +5139,6 @@ COMMENT ON TABLE public.mdl_data_content IS 'the content introduced in each reco -- --- TOC entry 402 (class 1259 OID 60107) -- Name: mdl_data_content_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5810,8 +5153,6 @@ CREATE SEQUENCE public.mdl_data_content_id_seq ALTER TABLE public.mdl_data_content_id_seq OWNER TO postgres; -- --- TOC entry 10750 (class 0 OID 0) --- Dependencies: 402 -- Name: mdl_data_content_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5819,7 +5160,6 @@ ALTER SEQUENCE public.mdl_data_content_id_seq OWNED BY public.mdl_data_content.i -- --- TOC entry 403 (class 1259 OID 60109) -- Name: mdl_data_fields; Type: TABLE; Schema: public; Owner: postgres -- @@ -5846,8 +5186,6 @@ CREATE TABLE public.mdl_data_fields ( ALTER TABLE public.mdl_data_fields OWNER TO postgres; -- --- TOC entry 10751 (class 0 OID 0) --- Dependencies: 403 -- Name: TABLE mdl_data_fields; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5855,7 +5193,6 @@ COMMENT ON TABLE public.mdl_data_fields IS 'every field available'; -- --- TOC entry 404 (class 1259 OID 60119) -- Name: mdl_data_fields_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5870,8 +5207,6 @@ CREATE SEQUENCE public.mdl_data_fields_id_seq ALTER TABLE public.mdl_data_fields_id_seq OWNER TO postgres; -- --- TOC entry 10752 (class 0 OID 0) --- Dependencies: 404 -- Name: mdl_data_fields_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5879,7 +5214,6 @@ ALTER SEQUENCE public.mdl_data_fields_id_seq OWNED BY public.mdl_data_fields.id; -- --- TOC entry 405 (class 1259 OID 60121) -- Name: mdl_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5894,8 +5228,6 @@ CREATE SEQUENCE public.mdl_data_id_seq ALTER TABLE public.mdl_data_id_seq OWNER TO postgres; -- --- TOC entry 10753 (class 0 OID 0) --- Dependencies: 405 -- Name: mdl_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5903,7 +5235,6 @@ ALTER SEQUENCE public.mdl_data_id_seq OWNED BY public.mdl_data.id; -- --- TOC entry 406 (class 1259 OID 60123) -- Name: mdl_data_records; Type: TABLE; Schema: public; Owner: postgres -- @@ -5921,8 +5252,6 @@ CREATE TABLE public.mdl_data_records ( ALTER TABLE public.mdl_data_records OWNER TO postgres; -- --- TOC entry 10754 (class 0 OID 0) --- Dependencies: 406 -- Name: TABLE mdl_data_records; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5930,7 +5259,6 @@ COMMENT ON TABLE public.mdl_data_records IS 'every record introduced'; -- --- TOC entry 407 (class 1259 OID 60132) -- Name: mdl_data_records_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5945,8 +5273,6 @@ CREATE SEQUENCE public.mdl_data_records_id_seq ALTER TABLE public.mdl_data_records_id_seq OWNER TO postgres; -- --- TOC entry 10755 (class 0 OID 0) --- Dependencies: 407 -- Name: mdl_data_records_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -5954,7 +5280,6 @@ ALTER SEQUENCE public.mdl_data_records_id_seq OWNED BY public.mdl_data_records.i -- --- TOC entry 408 (class 1259 OID 60134) -- Name: mdl_editor_atto_autosave; Type: TABLE; Schema: public; Owner: postgres -- @@ -5974,8 +5299,6 @@ CREATE TABLE public.mdl_editor_atto_autosave ( ALTER TABLE public.mdl_editor_atto_autosave OWNER TO postgres; -- --- TOC entry 10756 (class 0 OID 0) --- Dependencies: 408 -- Name: TABLE mdl_editor_atto_autosave; Type: COMMENT; Schema: public; Owner: postgres -- @@ -5983,7 +5306,6 @@ COMMENT ON TABLE public.mdl_editor_atto_autosave IS 'Draft text that is auto-sav -- --- TOC entry 409 (class 1259 OID 60144) -- Name: mdl_editor_atto_autosave_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -5998,8 +5320,6 @@ CREATE SEQUENCE public.mdl_editor_atto_autosave_id_seq ALTER TABLE public.mdl_editor_atto_autosave_id_seq OWNER TO postgres; -- --- TOC entry 10757 (class 0 OID 0) --- Dependencies: 409 -- Name: mdl_editor_atto_autosave_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6007,7 +5327,6 @@ ALTER SEQUENCE public.mdl_editor_atto_autosave_id_seq OWNED BY public.mdl_editor -- --- TOC entry 410 (class 1259 OID 60146) -- Name: mdl_enrol; Type: TABLE; Schema: public; Owner: postgres -- @@ -6053,8 +5372,6 @@ CREATE TABLE public.mdl_enrol ( ALTER TABLE public.mdl_enrol OWNER TO postgres; -- --- TOC entry 10758 (class 0 OID 0) --- Dependencies: 410 -- Name: TABLE mdl_enrol; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6062,7 +5379,6 @@ COMMENT ON TABLE public.mdl_enrol IS 'Instances of enrolment plugins used in cou -- --- TOC entry 411 (class 1259 OID 60164) -- Name: mdl_enrol_flatfile; Type: TABLE; Schema: public; Owner: postgres -- @@ -6081,8 +5397,6 @@ CREATE TABLE public.mdl_enrol_flatfile ( ALTER TABLE public.mdl_enrol_flatfile OWNER TO postgres; -- --- TOC entry 10759 (class 0 OID 0) --- Dependencies: 411 -- Name: TABLE mdl_enrol_flatfile; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6090,7 +5404,6 @@ COMMENT ON TABLE public.mdl_enrol_flatfile IS 'enrol_flatfile table retrofitted -- --- TOC entry 412 (class 1259 OID 60171) -- Name: mdl_enrol_flatfile_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6105,8 +5418,6 @@ CREATE SEQUENCE public.mdl_enrol_flatfile_id_seq ALTER TABLE public.mdl_enrol_flatfile_id_seq OWNER TO postgres; -- --- TOC entry 10760 (class 0 OID 0) --- Dependencies: 412 -- Name: mdl_enrol_flatfile_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6114,7 +5425,6 @@ ALTER SEQUENCE public.mdl_enrol_flatfile_id_seq OWNED BY public.mdl_enrol_flatfi -- --- TOC entry 413 (class 1259 OID 60173) -- Name: mdl_enrol_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6129,8 +5439,6 @@ CREATE SEQUENCE public.mdl_enrol_id_seq ALTER TABLE public.mdl_enrol_id_seq OWNER TO postgres; -- --- TOC entry 10761 (class 0 OID 0) --- Dependencies: 413 -- Name: mdl_enrol_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6138,7 +5446,6 @@ ALTER SEQUENCE public.mdl_enrol_id_seq OWNED BY public.mdl_enrol.id; -- --- TOC entry 414 (class 1259 OID 60175) -- Name: mdl_enrol_lti_lti2_consumer; Type: TABLE; Schema: public; Owner: postgres -- @@ -6168,8 +5475,6 @@ CREATE TABLE public.mdl_enrol_lti_lti2_consumer ( ALTER TABLE public.mdl_enrol_lti_lti2_consumer OWNER TO postgres; -- --- TOC entry 10762 (class 0 OID 0) --- Dependencies: 414 -- Name: TABLE mdl_enrol_lti_lti2_consumer; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6177,7 +5482,6 @@ COMMENT ON TABLE public.mdl_enrol_lti_lti2_consumer IS 'LTI consumers interactin -- --- TOC entry 415 (class 1259 OID 60184) -- Name: mdl_enrol_lti_lti2_consumer_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6192,8 +5496,6 @@ CREATE SEQUENCE public.mdl_enrol_lti_lti2_consumer_id_seq ALTER TABLE public.mdl_enrol_lti_lti2_consumer_id_seq OWNER TO postgres; -- --- TOC entry 10763 (class 0 OID 0) --- Dependencies: 415 -- Name: mdl_enrol_lti_lti2_consumer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6201,7 +5503,6 @@ ALTER SEQUENCE public.mdl_enrol_lti_lti2_consumer_id_seq OWNED BY public.mdl_enr -- --- TOC entry 416 (class 1259 OID 60186) -- Name: mdl_enrol_lti_lti2_context; Type: TABLE; Schema: public; Owner: postgres -- @@ -6219,8 +5520,6 @@ CREATE TABLE public.mdl_enrol_lti_lti2_context ( ALTER TABLE public.mdl_enrol_lti_lti2_context OWNER TO postgres; -- --- TOC entry 10764 (class 0 OID 0) --- Dependencies: 416 -- Name: TABLE mdl_enrol_lti_lti2_context; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6228,7 +5527,6 @@ COMMENT ON TABLE public.mdl_enrol_lti_lti2_context IS 'Information about a speci -- --- TOC entry 417 (class 1259 OID 60193) -- Name: mdl_enrol_lti_lti2_context_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6243,8 +5541,6 @@ CREATE SEQUENCE public.mdl_enrol_lti_lti2_context_id_seq ALTER TABLE public.mdl_enrol_lti_lti2_context_id_seq OWNER TO postgres; -- --- TOC entry 10765 (class 0 OID 0) --- Dependencies: 417 -- Name: mdl_enrol_lti_lti2_context_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6252,7 +5548,6 @@ ALTER SEQUENCE public.mdl_enrol_lti_lti2_context_id_seq OWNED BY public.mdl_enro -- --- TOC entry 418 (class 1259 OID 60195) -- Name: mdl_enrol_lti_lti2_nonce; Type: TABLE; Schema: public; Owner: postgres -- @@ -6267,8 +5562,6 @@ CREATE TABLE public.mdl_enrol_lti_lti2_nonce ( ALTER TABLE public.mdl_enrol_lti_lti2_nonce OWNER TO postgres; -- --- TOC entry 10766 (class 0 OID 0) --- Dependencies: 418 -- Name: TABLE mdl_enrol_lti_lti2_nonce; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6276,7 +5569,6 @@ COMMENT ON TABLE public.mdl_enrol_lti_lti2_nonce IS 'Nonce used for authenticati -- --- TOC entry 419 (class 1259 OID 60199) -- Name: mdl_enrol_lti_lti2_nonce_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6291,8 +5583,6 @@ CREATE SEQUENCE public.mdl_enrol_lti_lti2_nonce_id_seq ALTER TABLE public.mdl_enrol_lti_lti2_nonce_id_seq OWNER TO postgres; -- --- TOC entry 10767 (class 0 OID 0) --- Dependencies: 419 -- Name: mdl_enrol_lti_lti2_nonce_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6300,7 +5590,6 @@ ALTER SEQUENCE public.mdl_enrol_lti_lti2_nonce_id_seq OWNED BY public.mdl_enrol_ -- --- TOC entry 420 (class 1259 OID 60201) -- Name: mdl_enrol_lti_lti2_resource_link; Type: TABLE; Schema: public; Owner: postgres -- @@ -6320,8 +5609,6 @@ CREATE TABLE public.mdl_enrol_lti_lti2_resource_link ( ALTER TABLE public.mdl_enrol_lti_lti2_resource_link OWNER TO postgres; -- --- TOC entry 10768 (class 0 OID 0) --- Dependencies: 420 -- Name: TABLE mdl_enrol_lti_lti2_resource_link; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6329,7 +5616,6 @@ COMMENT ON TABLE public.mdl_enrol_lti_lti2_resource_link IS 'Link from the consu -- --- TOC entry 421 (class 1259 OID 60208) -- Name: mdl_enrol_lti_lti2_resource_link_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6344,8 +5630,6 @@ CREATE SEQUENCE public.mdl_enrol_lti_lti2_resource_link_id_seq ALTER TABLE public.mdl_enrol_lti_lti2_resource_link_id_seq OWNER TO postgres; -- --- TOC entry 10769 (class 0 OID 0) --- Dependencies: 421 -- Name: mdl_enrol_lti_lti2_resource_link_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6353,7 +5637,6 @@ ALTER SEQUENCE public.mdl_enrol_lti_lti2_resource_link_id_seq OWNED BY public.md -- --- TOC entry 422 (class 1259 OID 60210) -- Name: mdl_enrol_lti_lti2_share_key; Type: TABLE; Schema: public; Owner: postgres -- @@ -6369,8 +5652,6 @@ CREATE TABLE public.mdl_enrol_lti_lti2_share_key ( ALTER TABLE public.mdl_enrol_lti_lti2_share_key OWNER TO postgres; -- --- TOC entry 10770 (class 0 OID 0) --- Dependencies: 422 -- Name: TABLE mdl_enrol_lti_lti2_share_key; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6378,7 +5659,6 @@ COMMENT ON TABLE public.mdl_enrol_lti_lti2_share_key IS 'Resource link share key -- --- TOC entry 423 (class 1259 OID 60214) -- Name: mdl_enrol_lti_lti2_share_key_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6393,8 +5673,6 @@ CREATE SEQUENCE public.mdl_enrol_lti_lti2_share_key_id_seq ALTER TABLE public.mdl_enrol_lti_lti2_share_key_id_seq OWNER TO postgres; -- --- TOC entry 10771 (class 0 OID 0) --- Dependencies: 423 -- Name: mdl_enrol_lti_lti2_share_key_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6402,7 +5680,6 @@ ALTER SEQUENCE public.mdl_enrol_lti_lti2_share_key_id_seq OWNED BY public.mdl_en -- --- TOC entry 424 (class 1259 OID 60216) -- Name: mdl_enrol_lti_lti2_tool_proxy; Type: TABLE; Schema: public; Owner: postgres -- @@ -6419,8 +5696,6 @@ CREATE TABLE public.mdl_enrol_lti_lti2_tool_proxy ( ALTER TABLE public.mdl_enrol_lti_lti2_tool_proxy OWNER TO postgres; -- --- TOC entry 10772 (class 0 OID 0) --- Dependencies: 424 -- Name: TABLE mdl_enrol_lti_lti2_tool_proxy; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6428,7 +5703,6 @@ COMMENT ON TABLE public.mdl_enrol_lti_lti2_tool_proxy IS 'A tool proxy between m -- --- TOC entry 425 (class 1259 OID 60223) -- Name: mdl_enrol_lti_lti2_tool_proxy_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6443,8 +5717,6 @@ CREATE SEQUENCE public.mdl_enrol_lti_lti2_tool_proxy_id_seq ALTER TABLE public.mdl_enrol_lti_lti2_tool_proxy_id_seq OWNER TO postgres; -- --- TOC entry 10773 (class 0 OID 0) --- Dependencies: 425 -- Name: mdl_enrol_lti_lti2_tool_proxy_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6452,7 +5724,6 @@ ALTER SEQUENCE public.mdl_enrol_lti_lti2_tool_proxy_id_seq OWNED BY public.mdl_e -- --- TOC entry 426 (class 1259 OID 60225) -- Name: mdl_enrol_lti_lti2_user_result; Type: TABLE; Schema: public; Owner: postgres -- @@ -6469,8 +5740,6 @@ CREATE TABLE public.mdl_enrol_lti_lti2_user_result ( ALTER TABLE public.mdl_enrol_lti_lti2_user_result OWNER TO postgres; -- --- TOC entry 10774 (class 0 OID 0) --- Dependencies: 426 -- Name: TABLE mdl_enrol_lti_lti2_user_result; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6478,7 +5747,6 @@ COMMENT ON TABLE public.mdl_enrol_lti_lti2_user_result IS 'Results for each user -- --- TOC entry 427 (class 1259 OID 60233) -- Name: mdl_enrol_lti_lti2_user_result_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6493,8 +5761,6 @@ CREATE SEQUENCE public.mdl_enrol_lti_lti2_user_result_id_seq ALTER TABLE public.mdl_enrol_lti_lti2_user_result_id_seq OWNER TO postgres; -- --- TOC entry 10775 (class 0 OID 0) --- Dependencies: 427 -- Name: mdl_enrol_lti_lti2_user_result_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6502,7 +5768,6 @@ ALTER SEQUENCE public.mdl_enrol_lti_lti2_user_result_id_seq OWNED BY public.mdl_ -- --- TOC entry 428 (class 1259 OID 60235) -- Name: mdl_enrol_lti_tool_consumer_map; Type: TABLE; Schema: public; Owner: postgres -- @@ -6516,8 +5781,6 @@ CREATE TABLE public.mdl_enrol_lti_tool_consumer_map ( ALTER TABLE public.mdl_enrol_lti_tool_consumer_map OWNER TO postgres; -- --- TOC entry 10776 (class 0 OID 0) --- Dependencies: 428 -- Name: TABLE mdl_enrol_lti_tool_consumer_map; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6525,7 +5788,6 @@ COMMENT ON TABLE public.mdl_enrol_lti_tool_consumer_map IS 'Table that maps the -- --- TOC entry 429 (class 1259 OID 60238) -- Name: mdl_enrol_lti_tool_consumer_map_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6540,8 +5802,6 @@ CREATE SEQUENCE public.mdl_enrol_lti_tool_consumer_map_id_seq ALTER TABLE public.mdl_enrol_lti_tool_consumer_map_id_seq OWNER TO postgres; -- --- TOC entry 10777 (class 0 OID 0) --- Dependencies: 429 -- Name: mdl_enrol_lti_tool_consumer_map_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6549,7 +5809,6 @@ ALTER SEQUENCE public.mdl_enrol_lti_tool_consumer_map_id_seq OWNED BY public.mdl -- --- TOC entry 430 (class 1259 OID 60240) -- Name: mdl_enrol_lti_tools; Type: TABLE; Schema: public; Owner: postgres -- @@ -6579,8 +5838,6 @@ CREATE TABLE public.mdl_enrol_lti_tools ( ALTER TABLE public.mdl_enrol_lti_tools OWNER TO postgres; -- --- TOC entry 10778 (class 0 OID 0) --- Dependencies: 430 -- Name: TABLE mdl_enrol_lti_tools; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6588,7 +5845,6 @@ COMMENT ON TABLE public.mdl_enrol_lti_tools IS 'List of tools provided to the re -- --- TOC entry 431 (class 1259 OID 60257) -- Name: mdl_enrol_lti_tools_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6603,8 +5859,6 @@ CREATE SEQUENCE public.mdl_enrol_lti_tools_id_seq ALTER TABLE public.mdl_enrol_lti_tools_id_seq OWNER TO postgres; -- --- TOC entry 10779 (class 0 OID 0) --- Dependencies: 431 -- Name: mdl_enrol_lti_tools_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6612,7 +5866,6 @@ ALTER SEQUENCE public.mdl_enrol_lti_tools_id_seq OWNED BY public.mdl_enrol_lti_t -- --- TOC entry 432 (class 1259 OID 60259) -- Name: mdl_enrol_lti_users; Type: TABLE; Schema: public; Owner: postgres -- @@ -6635,8 +5888,6 @@ CREATE TABLE public.mdl_enrol_lti_users ( ALTER TABLE public.mdl_enrol_lti_users OWNER TO postgres; -- --- TOC entry 10780 (class 0 OID 0) --- Dependencies: 432 -- Name: TABLE mdl_enrol_lti_users; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6644,7 +5895,6 @@ COMMENT ON TABLE public.mdl_enrol_lti_users IS 'User access log and gradeback da -- --- TOC entry 433 (class 1259 OID 60265) -- Name: mdl_enrol_lti_users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6659,8 +5909,6 @@ CREATE SEQUENCE public.mdl_enrol_lti_users_id_seq ALTER TABLE public.mdl_enrol_lti_users_id_seq OWNER TO postgres; -- --- TOC entry 10781 (class 0 OID 0) --- Dependencies: 433 -- Name: mdl_enrol_lti_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6668,7 +5916,6 @@ ALTER SEQUENCE public.mdl_enrol_lti_users_id_seq OWNED BY public.mdl_enrol_lti_u -- --- TOC entry 434 (class 1259 OID 60267) -- Name: mdl_enrol_paypal; Type: TABLE; Schema: public; Owner: postgres -- @@ -6700,8 +5947,6 @@ CREATE TABLE public.mdl_enrol_paypal ( ALTER TABLE public.mdl_enrol_paypal OWNER TO postgres; -- --- TOC entry 10782 (class 0 OID 0) --- Dependencies: 434 -- Name: TABLE mdl_enrol_paypal; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6709,7 +5954,6 @@ COMMENT ON TABLE public.mdl_enrol_paypal IS 'Holds all known information about P -- --- TOC entry 435 (class 1259 OID 60293) -- Name: mdl_enrol_paypal_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6724,8 +5968,6 @@ CREATE SEQUENCE public.mdl_enrol_paypal_id_seq ALTER TABLE public.mdl_enrol_paypal_id_seq OWNER TO postgres; -- --- TOC entry 10783 (class 0 OID 0) --- Dependencies: 435 -- Name: mdl_enrol_paypal_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6733,7 +5975,6 @@ ALTER SEQUENCE public.mdl_enrol_paypal_id_seq OWNED BY public.mdl_enrol_paypal.i -- --- TOC entry 436 (class 1259 OID 60295) -- Name: mdl_event; Type: TABLE; Schema: public; Owner: postgres -- @@ -6768,8 +6009,6 @@ CREATE TABLE public.mdl_event ( ALTER TABLE public.mdl_event OWNER TO postgres; -- --- TOC entry 10784 (class 0 OID 0) --- Dependencies: 436 -- Name: TABLE mdl_event; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6777,7 +6016,6 @@ COMMENT ON TABLE public.mdl_event IS 'For everything with a time associated to i -- --- TOC entry 437 (class 1259 OID 60317) -- Name: mdl_event_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6792,8 +6030,6 @@ CREATE SEQUENCE public.mdl_event_id_seq ALTER TABLE public.mdl_event_id_seq OWNER TO postgres; -- --- TOC entry 10785 (class 0 OID 0) --- Dependencies: 437 -- Name: mdl_event_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6801,7 +6037,6 @@ ALTER SEQUENCE public.mdl_event_id_seq OWNED BY public.mdl_event.id; -- --- TOC entry 438 (class 1259 OID 60319) -- Name: mdl_event_subscriptions; Type: TABLE; Schema: public; Owner: postgres -- @@ -6822,8 +6057,6 @@ CREATE TABLE public.mdl_event_subscriptions ( ALTER TABLE public.mdl_event_subscriptions OWNER TO postgres; -- --- TOC entry 10786 (class 0 OID 0) --- Dependencies: 438 -- Name: TABLE mdl_event_subscriptions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6831,7 +6064,6 @@ COMMENT ON TABLE public.mdl_event_subscriptions IS 'Tracks subscriptions to remo -- --- TOC entry 439 (class 1259 OID 60333) -- Name: mdl_event_subscriptions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6846,8 +6078,6 @@ CREATE SEQUENCE public.mdl_event_subscriptions_id_seq ALTER TABLE public.mdl_event_subscriptions_id_seq OWNER TO postgres; -- --- TOC entry 10787 (class 0 OID 0) --- Dependencies: 439 -- Name: mdl_event_subscriptions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6855,7 +6085,6 @@ ALTER SEQUENCE public.mdl_event_subscriptions_id_seq OWNED BY public.mdl_event_s -- --- TOC entry 440 (class 1259 OID 60335) -- Name: mdl_events_handlers; Type: TABLE; Schema: public; Owner: postgres -- @@ -6874,8 +6103,6 @@ CREATE TABLE public.mdl_events_handlers ( ALTER TABLE public.mdl_events_handlers OWNER TO postgres; -- --- TOC entry 10788 (class 0 OID 0) --- Dependencies: 440 -- Name: TABLE mdl_events_handlers; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6883,7 +6110,6 @@ COMMENT ON TABLE public.mdl_events_handlers IS 'This table is for storing which -- --- TOC entry 441 (class 1259 OID 60346) -- Name: mdl_events_handlers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6898,8 +6124,6 @@ CREATE SEQUENCE public.mdl_events_handlers_id_seq ALTER TABLE public.mdl_events_handlers_id_seq OWNER TO postgres; -- --- TOC entry 10789 (class 0 OID 0) --- Dependencies: 441 -- Name: mdl_events_handlers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6907,7 +6131,6 @@ ALTER SEQUENCE public.mdl_events_handlers_id_seq OWNED BY public.mdl_events_hand -- --- TOC entry 442 (class 1259 OID 60348) -- Name: mdl_events_queue; Type: TABLE; Schema: public; Owner: postgres -- @@ -6923,8 +6146,6 @@ CREATE TABLE public.mdl_events_queue ( ALTER TABLE public.mdl_events_queue OWNER TO postgres; -- --- TOC entry 10790 (class 0 OID 0) --- Dependencies: 442 -- Name: TABLE mdl_events_queue; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6932,7 +6153,6 @@ COMMENT ON TABLE public.mdl_events_queue IS 'This table is for storing queued ev -- --- TOC entry 443 (class 1259 OID 60354) -- Name: mdl_events_queue_handlers; Type: TABLE; Schema: public; Owner: postgres -- @@ -6949,8 +6169,6 @@ CREATE TABLE public.mdl_events_queue_handlers ( ALTER TABLE public.mdl_events_queue_handlers OWNER TO postgres; -- --- TOC entry 10791 (class 0 OID 0) --- Dependencies: 443 -- Name: TABLE mdl_events_queue_handlers; Type: COMMENT; Schema: public; Owner: postgres -- @@ -6958,7 +6176,6 @@ COMMENT ON TABLE public.mdl_events_queue_handlers IS 'This is the list of queued -- --- TOC entry 444 (class 1259 OID 60360) -- Name: mdl_events_queue_handlers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6973,8 +6190,6 @@ CREATE SEQUENCE public.mdl_events_queue_handlers_id_seq ALTER TABLE public.mdl_events_queue_handlers_id_seq OWNER TO postgres; -- --- TOC entry 10792 (class 0 OID 0) --- Dependencies: 444 -- Name: mdl_events_queue_handlers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -6982,7 +6197,6 @@ ALTER SEQUENCE public.mdl_events_queue_handlers_id_seq OWNED BY public.mdl_event -- --- TOC entry 445 (class 1259 OID 60362) -- Name: mdl_events_queue_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -6997,8 +6211,6 @@ CREATE SEQUENCE public.mdl_events_queue_id_seq ALTER TABLE public.mdl_events_queue_id_seq OWNER TO postgres; -- --- TOC entry 10793 (class 0 OID 0) --- Dependencies: 445 -- Name: mdl_events_queue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7006,7 +6218,6 @@ ALTER SEQUENCE public.mdl_events_queue_id_seq OWNED BY public.mdl_events_queue.i -- --- TOC entry 446 (class 1259 OID 60364) -- Name: mdl_external_functions; Type: TABLE; Schema: public; Owner: postgres -- @@ -7025,8 +6236,6 @@ CREATE TABLE public.mdl_external_functions ( ALTER TABLE public.mdl_external_functions OWNER TO postgres; -- --- TOC entry 10794 (class 0 OID 0) --- Dependencies: 446 -- Name: TABLE mdl_external_functions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7034,7 +6243,6 @@ COMMENT ON TABLE public.mdl_external_functions IS 'list of all external function -- --- TOC entry 447 (class 1259 OID 60374) -- Name: mdl_external_functions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7049,8 +6257,6 @@ CREATE SEQUENCE public.mdl_external_functions_id_seq ALTER TABLE public.mdl_external_functions_id_seq OWNER TO postgres; -- --- TOC entry 10795 (class 0 OID 0) --- Dependencies: 447 -- Name: mdl_external_functions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7058,7 +6264,6 @@ ALTER SEQUENCE public.mdl_external_functions_id_seq OWNED BY public.mdl_external -- --- TOC entry 448 (class 1259 OID 60376) -- Name: mdl_external_services; Type: TABLE; Schema: public; Owner: postgres -- @@ -7080,8 +6285,6 @@ CREATE TABLE public.mdl_external_services ( ALTER TABLE public.mdl_external_services OWNER TO postgres; -- --- TOC entry 10796 (class 0 OID 0) --- Dependencies: 448 -- Name: TABLE mdl_external_services; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7089,7 +6292,6 @@ COMMENT ON TABLE public.mdl_external_services IS 'built in and custom external s -- --- TOC entry 449 (class 1259 OID 60385) -- Name: mdl_external_services_functions; Type: TABLE; Schema: public; Owner: postgres -- @@ -7103,8 +6305,6 @@ CREATE TABLE public.mdl_external_services_functions ( ALTER TABLE public.mdl_external_services_functions OWNER TO postgres; -- --- TOC entry 10797 (class 0 OID 0) --- Dependencies: 449 -- Name: TABLE mdl_external_services_functions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7112,7 +6312,6 @@ COMMENT ON TABLE public.mdl_external_services_functions IS 'lists functions avai -- --- TOC entry 450 (class 1259 OID 60389) -- Name: mdl_external_services_functions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7127,8 +6326,6 @@ CREATE SEQUENCE public.mdl_external_services_functions_id_seq ALTER TABLE public.mdl_external_services_functions_id_seq OWNER TO postgres; -- --- TOC entry 10798 (class 0 OID 0) --- Dependencies: 450 -- Name: mdl_external_services_functions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7136,7 +6333,6 @@ ALTER SEQUENCE public.mdl_external_services_functions_id_seq OWNED BY public.mdl -- --- TOC entry 451 (class 1259 OID 60391) -- Name: mdl_external_services_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7151,8 +6347,6 @@ CREATE SEQUENCE public.mdl_external_services_id_seq ALTER TABLE public.mdl_external_services_id_seq OWNER TO postgres; -- --- TOC entry 10799 (class 0 OID 0) --- Dependencies: 451 -- Name: mdl_external_services_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7160,7 +6354,6 @@ ALTER SEQUENCE public.mdl_external_services_id_seq OWNED BY public.mdl_external_ -- --- TOC entry 452 (class 1259 OID 60393) -- Name: mdl_external_services_users; Type: TABLE; Schema: public; Owner: postgres -- @@ -7177,8 +6370,6 @@ CREATE TABLE public.mdl_external_services_users ( ALTER TABLE public.mdl_external_services_users OWNER TO postgres; -- --- TOC entry 10800 (class 0 OID 0) --- Dependencies: 452 -- Name: TABLE mdl_external_services_users; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7186,7 +6377,6 @@ COMMENT ON TABLE public.mdl_external_services_users IS 'users allowed to use ser -- --- TOC entry 453 (class 1259 OID 60396) -- Name: mdl_external_services_users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7201,8 +6391,6 @@ CREATE SEQUENCE public.mdl_external_services_users_id_seq ALTER TABLE public.mdl_external_services_users_id_seq OWNER TO postgres; -- --- TOC entry 10801 (class 0 OID 0) --- Dependencies: 453 -- Name: mdl_external_services_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7210,7 +6398,6 @@ ALTER SEQUENCE public.mdl_external_services_users_id_seq OWNED BY public.mdl_ext -- --- TOC entry 454 (class 1259 OID 60398) -- Name: mdl_external_tokens; Type: TABLE; Schema: public; Owner: postgres -- @@ -7234,8 +6421,6 @@ CREATE TABLE public.mdl_external_tokens ( ALTER TABLE public.mdl_external_tokens OWNER TO postgres; -- --- TOC entry 10802 (class 0 OID 0) --- Dependencies: 454 -- Name: TABLE mdl_external_tokens; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7243,7 +6428,6 @@ COMMENT ON TABLE public.mdl_external_tokens IS 'Security tokens for accessing of -- --- TOC entry 455 (class 1259 OID 60406) -- Name: mdl_external_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7258,8 +6442,6 @@ CREATE SEQUENCE public.mdl_external_tokens_id_seq ALTER TABLE public.mdl_external_tokens_id_seq OWNER TO postgres; -- --- TOC entry 10803 (class 0 OID 0) --- Dependencies: 455 -- Name: mdl_external_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7267,7 +6449,6 @@ ALTER SEQUENCE public.mdl_external_tokens_id_seq OWNED BY public.mdl_external_to -- --- TOC entry 456 (class 1259 OID 60408) -- Name: mdl_favourite; Type: TABLE; Schema: public; Owner: postgres -- @@ -7287,8 +6468,6 @@ CREATE TABLE public.mdl_favourite ( ALTER TABLE public.mdl_favourite OWNER TO postgres; -- --- TOC entry 10804 (class 0 OID 0) --- Dependencies: 456 -- Name: TABLE mdl_favourite; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7296,7 +6475,6 @@ COMMENT ON TABLE public.mdl_favourite IS 'Stores the relationship between an arb -- --- TOC entry 457 (class 1259 OID 60413) -- Name: mdl_favourite_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7311,8 +6489,6 @@ CREATE SEQUENCE public.mdl_favourite_id_seq ALTER TABLE public.mdl_favourite_id_seq OWNER TO postgres; -- --- TOC entry 10805 (class 0 OID 0) --- Dependencies: 457 -- Name: mdl_favourite_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7320,7 +6496,6 @@ ALTER SEQUENCE public.mdl_favourite_id_seq OWNED BY public.mdl_favourite.id; -- --- TOC entry 458 (class 1259 OID 60415) -- Name: mdl_feedback; Type: TABLE; Schema: public; Owner: postgres -- @@ -7348,8 +6523,6 @@ CREATE TABLE public.mdl_feedback ( ALTER TABLE public.mdl_feedback OWNER TO postgres; -- --- TOC entry 10806 (class 0 OID 0) --- Dependencies: 458 -- Name: TABLE mdl_feedback; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7357,7 +6530,6 @@ COMMENT ON TABLE public.mdl_feedback IS 'all feedbacks'; -- --- TOC entry 459 (class 1259 OID 60435) -- Name: mdl_feedback_completed; Type: TABLE; Schema: public; Owner: postgres -- @@ -7375,8 +6547,6 @@ CREATE TABLE public.mdl_feedback_completed ( ALTER TABLE public.mdl_feedback_completed OWNER TO postgres; -- --- TOC entry 10807 (class 0 OID 0) --- Dependencies: 459 -- Name: TABLE mdl_feedback_completed; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7384,7 +6554,6 @@ COMMENT ON TABLE public.mdl_feedback_completed IS 'filled out feedback'; -- --- TOC entry 460 (class 1259 OID 60444) -- Name: mdl_feedback_completed_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7399,8 +6568,6 @@ CREATE SEQUENCE public.mdl_feedback_completed_id_seq ALTER TABLE public.mdl_feedback_completed_id_seq OWNER TO postgres; -- --- TOC entry 10808 (class 0 OID 0) --- Dependencies: 460 -- Name: mdl_feedback_completed_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7408,7 +6575,6 @@ ALTER SEQUENCE public.mdl_feedback_completed_id_seq OWNED BY public.mdl_feedback -- --- TOC entry 461 (class 1259 OID 60446) -- Name: mdl_feedback_completedtmp; Type: TABLE; Schema: public; Owner: postgres -- @@ -7427,8 +6593,6 @@ CREATE TABLE public.mdl_feedback_completedtmp ( ALTER TABLE public.mdl_feedback_completedtmp OWNER TO postgres; -- --- TOC entry 10809 (class 0 OID 0) --- Dependencies: 461 -- Name: TABLE mdl_feedback_completedtmp; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7436,7 +6600,6 @@ COMMENT ON TABLE public.mdl_feedback_completedtmp IS 'filled out feedback'; -- --- TOC entry 462 (class 1259 OID 60456) -- Name: mdl_feedback_completedtmp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7451,8 +6614,6 @@ CREATE SEQUENCE public.mdl_feedback_completedtmp_id_seq ALTER TABLE public.mdl_feedback_completedtmp_id_seq OWNER TO postgres; -- --- TOC entry 10810 (class 0 OID 0) --- Dependencies: 462 -- Name: mdl_feedback_completedtmp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7460,7 +6621,6 @@ ALTER SEQUENCE public.mdl_feedback_completedtmp_id_seq OWNED BY public.mdl_feedb -- --- TOC entry 463 (class 1259 OID 60458) -- Name: mdl_feedback_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7475,8 +6635,6 @@ CREATE SEQUENCE public.mdl_feedback_id_seq ALTER TABLE public.mdl_feedback_id_seq OWNER TO postgres; -- --- TOC entry 10811 (class 0 OID 0) --- Dependencies: 463 -- Name: mdl_feedback_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7484,7 +6642,6 @@ ALTER SEQUENCE public.mdl_feedback_id_seq OWNED BY public.mdl_feedback.id; -- --- TOC entry 464 (class 1259 OID 60460) -- Name: mdl_feedback_item; Type: TABLE; Schema: public; Owner: postgres -- @@ -7508,8 +6665,6 @@ CREATE TABLE public.mdl_feedback_item ( ALTER TABLE public.mdl_feedback_item OWNER TO postgres; -- --- TOC entry 10812 (class 0 OID 0) --- Dependencies: 464 -- Name: TABLE mdl_feedback_item; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7517,7 +6672,6 @@ COMMENT ON TABLE public.mdl_feedback_item IS 'feedback_items'; -- --- TOC entry 465 (class 1259 OID 60477) -- Name: mdl_feedback_item_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7532,8 +6686,6 @@ CREATE SEQUENCE public.mdl_feedback_item_id_seq ALTER TABLE public.mdl_feedback_item_id_seq OWNER TO postgres; -- --- TOC entry 10813 (class 0 OID 0) --- Dependencies: 465 -- Name: mdl_feedback_item_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7541,7 +6693,6 @@ ALTER SEQUENCE public.mdl_feedback_item_id_seq OWNED BY public.mdl_feedback_item -- --- TOC entry 466 (class 1259 OID 60479) -- Name: mdl_feedback_sitecourse_map; Type: TABLE; Schema: public; Owner: postgres -- @@ -7555,8 +6706,6 @@ CREATE TABLE public.mdl_feedback_sitecourse_map ( ALTER TABLE public.mdl_feedback_sitecourse_map OWNER TO postgres; -- --- TOC entry 10814 (class 0 OID 0) --- Dependencies: 466 -- Name: TABLE mdl_feedback_sitecourse_map; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7564,7 +6713,6 @@ COMMENT ON TABLE public.mdl_feedback_sitecourse_map IS 'feedback sitecourse map' -- --- TOC entry 467 (class 1259 OID 60484) -- Name: mdl_feedback_sitecourse_map_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7579,8 +6727,6 @@ CREATE SEQUENCE public.mdl_feedback_sitecourse_map_id_seq ALTER TABLE public.mdl_feedback_sitecourse_map_id_seq OWNER TO postgres; -- --- TOC entry 10815 (class 0 OID 0) --- Dependencies: 467 -- Name: mdl_feedback_sitecourse_map_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7588,7 +6734,6 @@ ALTER SEQUENCE public.mdl_feedback_sitecourse_map_id_seq OWNED BY public.mdl_fee -- --- TOC entry 468 (class 1259 OID 60486) -- Name: mdl_feedback_template; Type: TABLE; Schema: public; Owner: postgres -- @@ -7603,8 +6748,6 @@ CREATE TABLE public.mdl_feedback_template ( ALTER TABLE public.mdl_feedback_template OWNER TO postgres; -- --- TOC entry 10816 (class 0 OID 0) --- Dependencies: 468 -- Name: TABLE mdl_feedback_template; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7612,7 +6755,6 @@ COMMENT ON TABLE public.mdl_feedback_template IS 'templates of feedbackstructure -- --- TOC entry 469 (class 1259 OID 60492) -- Name: mdl_feedback_template_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7627,8 +6769,6 @@ CREATE SEQUENCE public.mdl_feedback_template_id_seq ALTER TABLE public.mdl_feedback_template_id_seq OWNER TO postgres; -- --- TOC entry 10817 (class 0 OID 0) --- Dependencies: 469 -- Name: mdl_feedback_template_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7636,7 +6776,6 @@ ALTER SEQUENCE public.mdl_feedback_template_id_seq OWNED BY public.mdl_feedback_ -- --- TOC entry 470 (class 1259 OID 60494) -- Name: mdl_feedback_value; Type: TABLE; Schema: public; Owner: postgres -- @@ -7653,8 +6792,6 @@ CREATE TABLE public.mdl_feedback_value ( ALTER TABLE public.mdl_feedback_value OWNER TO postgres; -- --- TOC entry 10818 (class 0 OID 0) --- Dependencies: 470 -- Name: TABLE mdl_feedback_value; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7662,7 +6799,6 @@ COMMENT ON TABLE public.mdl_feedback_value IS 'values of the completeds'; -- --- TOC entry 471 (class 1259 OID 60504) -- Name: mdl_feedback_value_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7677,8 +6813,6 @@ CREATE SEQUENCE public.mdl_feedback_value_id_seq ALTER TABLE public.mdl_feedback_value_id_seq OWNER TO postgres; -- --- TOC entry 10819 (class 0 OID 0) --- Dependencies: 471 -- Name: mdl_feedback_value_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7686,7 +6820,6 @@ ALTER SEQUENCE public.mdl_feedback_value_id_seq OWNED BY public.mdl_feedback_val -- --- TOC entry 472 (class 1259 OID 60506) -- Name: mdl_feedback_valuetmp; Type: TABLE; Schema: public; Owner: postgres -- @@ -7703,8 +6836,6 @@ CREATE TABLE public.mdl_feedback_valuetmp ( ALTER TABLE public.mdl_feedback_valuetmp OWNER TO postgres; -- --- TOC entry 10820 (class 0 OID 0) --- Dependencies: 472 -- Name: TABLE mdl_feedback_valuetmp; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7712,7 +6843,6 @@ COMMENT ON TABLE public.mdl_feedback_valuetmp IS 'values of the completedstmp'; -- --- TOC entry 473 (class 1259 OID 60516) -- Name: mdl_feedback_valuetmp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7727,8 +6857,6 @@ CREATE SEQUENCE public.mdl_feedback_valuetmp_id_seq ALTER TABLE public.mdl_feedback_valuetmp_id_seq OWNER TO postgres; -- --- TOC entry 10821 (class 0 OID 0) --- Dependencies: 473 -- Name: mdl_feedback_valuetmp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7736,7 +6864,6 @@ ALTER SEQUENCE public.mdl_feedback_valuetmp_id_seq OWNED BY public.mdl_feedback_ -- --- TOC entry 474 (class 1259 OID 60518) -- Name: mdl_file_conversion; Type: TABLE; Schema: public; Owner: postgres -- @@ -7758,8 +6885,6 @@ CREATE TABLE public.mdl_file_conversion ( ALTER TABLE public.mdl_file_conversion OWNER TO postgres; -- --- TOC entry 10822 (class 0 OID 0) --- Dependencies: 474 -- Name: TABLE mdl_file_conversion; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7767,7 +6892,6 @@ COMMENT ON TABLE public.mdl_file_conversion IS 'Table to track file conversions. -- --- TOC entry 475 (class 1259 OID 60526) -- Name: mdl_file_conversion_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7782,8 +6906,6 @@ CREATE SEQUENCE public.mdl_file_conversion_id_seq ALTER TABLE public.mdl_file_conversion_id_seq OWNER TO postgres; -- --- TOC entry 10823 (class 0 OID 0) --- Dependencies: 475 -- Name: mdl_file_conversion_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7791,7 +6913,6 @@ ALTER SEQUENCE public.mdl_file_conversion_id_seq OWNED BY public.mdl_file_conver -- --- TOC entry 476 (class 1259 OID 60528) -- Name: mdl_files; Type: TABLE; Schema: public; Owner: postgres -- @@ -7822,8 +6943,6 @@ CREATE TABLE public.mdl_files ( ALTER TABLE public.mdl_files OWNER TO postgres; -- --- TOC entry 10824 (class 0 OID 0) --- Dependencies: 476 -- Name: TABLE mdl_files; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7831,7 +6950,6 @@ COMMENT ON TABLE public.mdl_files IS 'description of files, content is stored in -- --- TOC entry 477 (class 1259 OID 60542) -- Name: mdl_files_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7846,8 +6964,6 @@ CREATE SEQUENCE public.mdl_files_id_seq ALTER TABLE public.mdl_files_id_seq OWNER TO postgres; -- --- TOC entry 10825 (class 0 OID 0) --- Dependencies: 477 -- Name: mdl_files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7855,7 +6971,6 @@ ALTER SEQUENCE public.mdl_files_id_seq OWNED BY public.mdl_files.id; -- --- TOC entry 478 (class 1259 OID 60544) -- Name: mdl_files_reference; Type: TABLE; Schema: public; Owner: postgres -- @@ -7871,8 +6986,6 @@ CREATE TABLE public.mdl_files_reference ( ALTER TABLE public.mdl_files_reference OWNER TO postgres; -- --- TOC entry 10826 (class 0 OID 0) --- Dependencies: 478 -- Name: TABLE mdl_files_reference; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7880,7 +6993,6 @@ COMMENT ON TABLE public.mdl_files_reference IS 'Store files references'; -- --- TOC entry 479 (class 1259 OID 60551) -- Name: mdl_files_reference_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7895,8 +7007,6 @@ CREATE SEQUENCE public.mdl_files_reference_id_seq ALTER TABLE public.mdl_files_reference_id_seq OWNER TO postgres; -- --- TOC entry 10827 (class 0 OID 0) --- Dependencies: 479 -- Name: mdl_files_reference_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7904,7 +7014,6 @@ ALTER SEQUENCE public.mdl_files_reference_id_seq OWNED BY public.mdl_files_refer -- --- TOC entry 480 (class 1259 OID 60553) -- Name: mdl_filter_active; Type: TABLE; Schema: public; Owner: postgres -- @@ -7920,8 +7029,6 @@ CREATE TABLE public.mdl_filter_active ( ALTER TABLE public.mdl_filter_active OWNER TO postgres; -- --- TOC entry 10828 (class 0 OID 0) --- Dependencies: 480 -- Name: TABLE mdl_filter_active; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7929,7 +7036,6 @@ COMMENT ON TABLE public.mdl_filter_active IS 'Stores information about which fil -- --- TOC entry 481 (class 1259 OID 60558) -- Name: mdl_filter_active_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7944,8 +7050,6 @@ CREATE SEQUENCE public.mdl_filter_active_id_seq ALTER TABLE public.mdl_filter_active_id_seq OWNER TO postgres; -- --- TOC entry 10829 (class 0 OID 0) --- Dependencies: 481 -- Name: mdl_filter_active_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -7953,7 +7057,6 @@ ALTER SEQUENCE public.mdl_filter_active_id_seq OWNED BY public.mdl_filter_active -- --- TOC entry 482 (class 1259 OID 60560) -- Name: mdl_filter_config; Type: TABLE; Schema: public; Owner: postgres -- @@ -7969,8 +7072,6 @@ CREATE TABLE public.mdl_filter_config ( ALTER TABLE public.mdl_filter_config OWNER TO postgres; -- --- TOC entry 10830 (class 0 OID 0) --- Dependencies: 482 -- Name: TABLE mdl_filter_config; Type: COMMENT; Schema: public; Owner: postgres -- @@ -7978,7 +7079,6 @@ COMMENT ON TABLE public.mdl_filter_config IS 'Stores per-context configuration s -- --- TOC entry 483 (class 1259 OID 60568) -- Name: mdl_filter_config_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -7993,8 +7093,6 @@ CREATE SEQUENCE public.mdl_filter_config_id_seq ALTER TABLE public.mdl_filter_config_id_seq OWNER TO postgres; -- --- TOC entry 10831 (class 0 OID 0) --- Dependencies: 483 -- Name: mdl_filter_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8002,7 +7100,6 @@ ALTER SEQUENCE public.mdl_filter_config_id_seq OWNED BY public.mdl_filter_config -- --- TOC entry 484 (class 1259 OID 60570) -- Name: mdl_folder; Type: TABLE; Schema: public; Owner: postgres -- @@ -8023,8 +7120,6 @@ CREATE TABLE public.mdl_folder ( ALTER TABLE public.mdl_folder OWNER TO postgres; -- --- TOC entry 10832 (class 0 OID 0) --- Dependencies: 484 -- Name: TABLE mdl_folder; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8032,7 +7127,6 @@ COMMENT ON TABLE public.mdl_folder IS 'each record is one folder resource'; -- --- TOC entry 485 (class 1259 OID 60584) -- Name: mdl_folder_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8047,8 +7141,6 @@ CREATE SEQUENCE public.mdl_folder_id_seq ALTER TABLE public.mdl_folder_id_seq OWNER TO postgres; -- --- TOC entry 10833 (class 0 OID 0) --- Dependencies: 485 -- Name: mdl_folder_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8056,7 +7148,6 @@ ALTER SEQUENCE public.mdl_folder_id_seq OWNED BY public.mdl_folder.id; -- --- TOC entry 486 (class 1259 OID 60586) -- Name: mdl_forum; Type: TABLE; Schema: public; Owner: postgres -- @@ -8096,8 +7187,6 @@ CREATE TABLE public.mdl_forum ( ALTER TABLE public.mdl_forum OWNER TO postgres; -- --- TOC entry 10834 (class 0 OID 0) --- Dependencies: 486 -- Name: TABLE mdl_forum; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8105,7 +7194,6 @@ COMMENT ON TABLE public.mdl_forum IS 'Forums contain and structure discussion'; -- --- TOC entry 487 (class 1259 OID 60619) -- Name: mdl_forum_digests; Type: TABLE; Schema: public; Owner: postgres -- @@ -8120,8 +7208,6 @@ CREATE TABLE public.mdl_forum_digests ( ALTER TABLE public.mdl_forum_digests OWNER TO postgres; -- --- TOC entry 10835 (class 0 OID 0) --- Dependencies: 487 -- Name: TABLE mdl_forum_digests; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8129,7 +7215,6 @@ COMMENT ON TABLE public.mdl_forum_digests IS 'Keeps track of user mail delivery -- --- TOC entry 488 (class 1259 OID 60623) -- Name: mdl_forum_digests_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8144,8 +7229,6 @@ CREATE SEQUENCE public.mdl_forum_digests_id_seq ALTER TABLE public.mdl_forum_digests_id_seq OWNER TO postgres; -- --- TOC entry 10836 (class 0 OID 0) --- Dependencies: 488 -- Name: mdl_forum_digests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8153,7 +7236,6 @@ ALTER SEQUENCE public.mdl_forum_digests_id_seq OWNED BY public.mdl_forum_digests -- --- TOC entry 489 (class 1259 OID 60625) -- Name: mdl_forum_discussion_subs; Type: TABLE; Schema: public; Owner: postgres -- @@ -8169,8 +7251,6 @@ CREATE TABLE public.mdl_forum_discussion_subs ( ALTER TABLE public.mdl_forum_discussion_subs OWNER TO postgres; -- --- TOC entry 10837 (class 0 OID 0) --- Dependencies: 489 -- Name: TABLE mdl_forum_discussion_subs; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8178,7 +7258,6 @@ COMMENT ON TABLE public.mdl_forum_discussion_subs IS 'Users may choose to subscr -- --- TOC entry 490 (class 1259 OID 60629) -- Name: mdl_forum_discussion_subs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8193,8 +7272,6 @@ CREATE SEQUENCE public.mdl_forum_discussion_subs_id_seq ALTER TABLE public.mdl_forum_discussion_subs_id_seq OWNER TO postgres; -- --- TOC entry 10838 (class 0 OID 0) --- Dependencies: 490 -- Name: mdl_forum_discussion_subs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8202,7 +7279,6 @@ ALTER SEQUENCE public.mdl_forum_discussion_subs_id_seq OWNED BY public.mdl_forum -- --- TOC entry 491 (class 1259 OID 60631) -- Name: mdl_forum_discussions; Type: TABLE; Schema: public; Owner: postgres -- @@ -8227,8 +7303,6 @@ CREATE TABLE public.mdl_forum_discussions ( ALTER TABLE public.mdl_forum_discussions OWNER TO postgres; -- --- TOC entry 10839 (class 0 OID 0) --- Dependencies: 491 -- Name: TABLE mdl_forum_discussions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8236,7 +7310,6 @@ COMMENT ON TABLE public.mdl_forum_discussions IS 'Forums are composed of discuss -- --- TOC entry 492 (class 1259 OID 60647) -- Name: mdl_forum_discussions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8251,8 +7324,6 @@ CREATE SEQUENCE public.mdl_forum_discussions_id_seq ALTER TABLE public.mdl_forum_discussions_id_seq OWNER TO postgres; -- --- TOC entry 10840 (class 0 OID 0) --- Dependencies: 492 -- Name: mdl_forum_discussions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8260,7 +7331,6 @@ ALTER SEQUENCE public.mdl_forum_discussions_id_seq OWNED BY public.mdl_forum_dis -- --- TOC entry 493 (class 1259 OID 60649) -- Name: mdl_forum_grades; Type: TABLE; Schema: public; Owner: postgres -- @@ -8278,8 +7348,6 @@ CREATE TABLE public.mdl_forum_grades ( ALTER TABLE public.mdl_forum_grades OWNER TO postgres; -- --- TOC entry 10841 (class 0 OID 0) --- Dependencies: 493 -- Name: TABLE mdl_forum_grades; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8287,7 +7355,6 @@ COMMENT ON TABLE public.mdl_forum_grades IS 'Grading data for forum instances'; -- --- TOC entry 494 (class 1259 OID 60652) -- Name: mdl_forum_grades_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8302,8 +7369,6 @@ CREATE SEQUENCE public.mdl_forum_grades_id_seq ALTER TABLE public.mdl_forum_grades_id_seq OWNER TO postgres; -- --- TOC entry 10842 (class 0 OID 0) --- Dependencies: 494 -- Name: mdl_forum_grades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8311,7 +7376,6 @@ ALTER SEQUENCE public.mdl_forum_grades_id_seq OWNED BY public.mdl_forum_grades.i -- --- TOC entry 495 (class 1259 OID 60654) -- Name: mdl_forum_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8326,8 +7390,6 @@ CREATE SEQUENCE public.mdl_forum_id_seq ALTER TABLE public.mdl_forum_id_seq OWNER TO postgres; -- --- TOC entry 10843 (class 0 OID 0) --- Dependencies: 495 -- Name: mdl_forum_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8335,7 +7397,6 @@ ALTER SEQUENCE public.mdl_forum_id_seq OWNED BY public.mdl_forum.id; -- --- TOC entry 496 (class 1259 OID 60656) -- Name: mdl_forum_posts; Type: TABLE; Schema: public; Owner: postgres -- @@ -8364,8 +7425,6 @@ CREATE TABLE public.mdl_forum_posts ( ALTER TABLE public.mdl_forum_posts OWNER TO postgres; -- --- TOC entry 10844 (class 0 OID 0) --- Dependencies: 496 -- Name: TABLE mdl_forum_posts; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8373,7 +7432,6 @@ COMMENT ON TABLE public.mdl_forum_posts IS 'All posts are stored in this table'; -- --- TOC entry 497 (class 1259 OID 60676) -- Name: mdl_forum_posts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8388,8 +7446,6 @@ CREATE SEQUENCE public.mdl_forum_posts_id_seq ALTER TABLE public.mdl_forum_posts_id_seq OWNER TO postgres; -- --- TOC entry 10845 (class 0 OID 0) --- Dependencies: 497 -- Name: mdl_forum_posts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8397,7 +7453,6 @@ ALTER SEQUENCE public.mdl_forum_posts_id_seq OWNED BY public.mdl_forum_posts.id; -- --- TOC entry 498 (class 1259 OID 60678) -- Name: mdl_forum_queue; Type: TABLE; Schema: public; Owner: postgres -- @@ -8413,8 +7468,6 @@ CREATE TABLE public.mdl_forum_queue ( ALTER TABLE public.mdl_forum_queue OWNER TO postgres; -- --- TOC entry 10846 (class 0 OID 0) --- Dependencies: 498 -- Name: TABLE mdl_forum_queue; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8422,7 +7475,6 @@ COMMENT ON TABLE public.mdl_forum_queue IS 'For keeping track of posts that will -- --- TOC entry 499 (class 1259 OID 60685) -- Name: mdl_forum_queue_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8437,8 +7489,6 @@ CREATE SEQUENCE public.mdl_forum_queue_id_seq ALTER TABLE public.mdl_forum_queue_id_seq OWNER TO postgres; -- --- TOC entry 10847 (class 0 OID 0) --- Dependencies: 499 -- Name: mdl_forum_queue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8446,7 +7496,6 @@ ALTER SEQUENCE public.mdl_forum_queue_id_seq OWNED BY public.mdl_forum_queue.id; -- --- TOC entry 500 (class 1259 OID 60687) -- Name: mdl_forum_read; Type: TABLE; Schema: public; Owner: postgres -- @@ -8464,8 +7513,6 @@ CREATE TABLE public.mdl_forum_read ( ALTER TABLE public.mdl_forum_read OWNER TO postgres; -- --- TOC entry 10848 (class 0 OID 0) --- Dependencies: 500 -- Name: TABLE mdl_forum_read; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8473,7 +7520,6 @@ COMMENT ON TABLE public.mdl_forum_read IS 'Tracks each users read posts'; -- --- TOC entry 501 (class 1259 OID 60696) -- Name: mdl_forum_read_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8488,8 +7534,6 @@ CREATE SEQUENCE public.mdl_forum_read_id_seq ALTER TABLE public.mdl_forum_read_id_seq OWNER TO postgres; -- --- TOC entry 10849 (class 0 OID 0) --- Dependencies: 501 -- Name: mdl_forum_read_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8497,7 +7541,6 @@ ALTER SEQUENCE public.mdl_forum_read_id_seq OWNED BY public.mdl_forum_read.id; -- --- TOC entry 502 (class 1259 OID 60698) -- Name: mdl_forum_subscriptions; Type: TABLE; Schema: public; Owner: postgres -- @@ -8511,8 +7554,6 @@ CREATE TABLE public.mdl_forum_subscriptions ( ALTER TABLE public.mdl_forum_subscriptions OWNER TO postgres; -- --- TOC entry 10850 (class 0 OID 0) --- Dependencies: 502 -- Name: TABLE mdl_forum_subscriptions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8520,7 +7561,6 @@ COMMENT ON TABLE public.mdl_forum_subscriptions IS 'Keeps track of who is subscr -- --- TOC entry 503 (class 1259 OID 60703) -- Name: mdl_forum_subscriptions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8535,8 +7575,6 @@ CREATE SEQUENCE public.mdl_forum_subscriptions_id_seq ALTER TABLE public.mdl_forum_subscriptions_id_seq OWNER TO postgres; -- --- TOC entry 10851 (class 0 OID 0) --- Dependencies: 503 -- Name: mdl_forum_subscriptions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8544,7 +7582,6 @@ ALTER SEQUENCE public.mdl_forum_subscriptions_id_seq OWNED BY public.mdl_forum_s -- --- TOC entry 504 (class 1259 OID 60705) -- Name: mdl_forum_track_prefs; Type: TABLE; Schema: public; Owner: postgres -- @@ -8558,8 +7595,6 @@ CREATE TABLE public.mdl_forum_track_prefs ( ALTER TABLE public.mdl_forum_track_prefs OWNER TO postgres; -- --- TOC entry 10852 (class 0 OID 0) --- Dependencies: 504 -- Name: TABLE mdl_forum_track_prefs; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8567,7 +7602,6 @@ COMMENT ON TABLE public.mdl_forum_track_prefs IS 'Tracks each users untracked fo -- --- TOC entry 505 (class 1259 OID 60710) -- Name: mdl_forum_track_prefs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8582,8 +7616,6 @@ CREATE SEQUENCE public.mdl_forum_track_prefs_id_seq ALTER TABLE public.mdl_forum_track_prefs_id_seq OWNER TO postgres; -- --- TOC entry 10853 (class 0 OID 0) --- Dependencies: 505 -- Name: mdl_forum_track_prefs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8591,7 +7623,6 @@ ALTER SEQUENCE public.mdl_forum_track_prefs_id_seq OWNED BY public.mdl_forum_tra -- --- TOC entry 506 (class 1259 OID 60712) -- Name: mdl_glossary; Type: TABLE; Schema: public; Owner: postgres -- @@ -8630,8 +7661,6 @@ CREATE TABLE public.mdl_glossary ( ALTER TABLE public.mdl_glossary OWNER TO postgres; -- --- TOC entry 10854 (class 0 OID 0) --- Dependencies: 506 -- Name: TABLE mdl_glossary; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8639,7 +7668,6 @@ COMMENT ON TABLE public.mdl_glossary IS 'all glossaries'; -- --- TOC entry 507 (class 1259 OID 60744) -- Name: mdl_glossary_alias; Type: TABLE; Schema: public; Owner: postgres -- @@ -8653,8 +7681,6 @@ CREATE TABLE public.mdl_glossary_alias ( ALTER TABLE public.mdl_glossary_alias OWNER TO postgres; -- --- TOC entry 10855 (class 0 OID 0) --- Dependencies: 507 -- Name: TABLE mdl_glossary_alias; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8662,7 +7688,6 @@ COMMENT ON TABLE public.mdl_glossary_alias IS 'entries alias'; -- --- TOC entry 508 (class 1259 OID 60749) -- Name: mdl_glossary_alias_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8677,8 +7702,6 @@ CREATE SEQUENCE public.mdl_glossary_alias_id_seq ALTER TABLE public.mdl_glossary_alias_id_seq OWNER TO postgres; -- --- TOC entry 10856 (class 0 OID 0) --- Dependencies: 508 -- Name: mdl_glossary_alias_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8686,7 +7709,6 @@ ALTER SEQUENCE public.mdl_glossary_alias_id_seq OWNED BY public.mdl_glossary_ali -- --- TOC entry 509 (class 1259 OID 60751) -- Name: mdl_glossary_categories; Type: TABLE; Schema: public; Owner: postgres -- @@ -8701,8 +7723,6 @@ CREATE TABLE public.mdl_glossary_categories ( ALTER TABLE public.mdl_glossary_categories OWNER TO postgres; -- --- TOC entry 10857 (class 0 OID 0) --- Dependencies: 509 -- Name: TABLE mdl_glossary_categories; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8710,7 +7730,6 @@ COMMENT ON TABLE public.mdl_glossary_categories IS 'all categories for glossary -- --- TOC entry 510 (class 1259 OID 60757) -- Name: mdl_glossary_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8725,8 +7744,6 @@ CREATE SEQUENCE public.mdl_glossary_categories_id_seq ALTER TABLE public.mdl_glossary_categories_id_seq OWNER TO postgres; -- --- TOC entry 10858 (class 0 OID 0) --- Dependencies: 510 -- Name: mdl_glossary_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8734,7 +7751,6 @@ ALTER SEQUENCE public.mdl_glossary_categories_id_seq OWNED BY public.mdl_glossar -- --- TOC entry 511 (class 1259 OID 60759) -- Name: mdl_glossary_entries; Type: TABLE; Schema: public; Owner: postgres -- @@ -8761,8 +7777,6 @@ CREATE TABLE public.mdl_glossary_entries ( ALTER TABLE public.mdl_glossary_entries OWNER TO postgres; -- --- TOC entry 10859 (class 0 OID 0) --- Dependencies: 511 -- Name: TABLE mdl_glossary_entries; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8770,7 +7784,6 @@ COMMENT ON TABLE public.mdl_glossary_entries IS 'all glossary entries'; -- --- TOC entry 512 (class 1259 OID 60779) -- Name: mdl_glossary_entries_categories; Type: TABLE; Schema: public; Owner: postgres -- @@ -8784,8 +7797,6 @@ CREATE TABLE public.mdl_glossary_entries_categories ( ALTER TABLE public.mdl_glossary_entries_categories OWNER TO postgres; -- --- TOC entry 10860 (class 0 OID 0) --- Dependencies: 512 -- Name: TABLE mdl_glossary_entries_categories; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8793,7 +7804,6 @@ COMMENT ON TABLE public.mdl_glossary_entries_categories IS 'categories of each g -- --- TOC entry 513 (class 1259 OID 60784) -- Name: mdl_glossary_entries_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8808,8 +7818,6 @@ CREATE SEQUENCE public.mdl_glossary_entries_categories_id_seq ALTER TABLE public.mdl_glossary_entries_categories_id_seq OWNER TO postgres; -- --- TOC entry 10861 (class 0 OID 0) --- Dependencies: 513 -- Name: mdl_glossary_entries_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8817,7 +7825,6 @@ ALTER SEQUENCE public.mdl_glossary_entries_categories_id_seq OWNED BY public.mdl -- --- TOC entry 514 (class 1259 OID 60786) -- Name: mdl_glossary_entries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8832,8 +7839,6 @@ CREATE SEQUENCE public.mdl_glossary_entries_id_seq ALTER TABLE public.mdl_glossary_entries_id_seq OWNER TO postgres; -- --- TOC entry 10862 (class 0 OID 0) --- Dependencies: 514 -- Name: mdl_glossary_entries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8841,7 +7846,6 @@ ALTER SEQUENCE public.mdl_glossary_entries_id_seq OWNED BY public.mdl_glossary_e -- --- TOC entry 515 (class 1259 OID 60788) -- Name: mdl_glossary_formats; Type: TABLE; Schema: public; Owner: postgres -- @@ -8862,8 +7866,6 @@ CREATE TABLE public.mdl_glossary_formats ( ALTER TABLE public.mdl_glossary_formats OWNER TO postgres; -- --- TOC entry 10863 (class 0 OID 0) --- Dependencies: 515 -- Name: TABLE mdl_glossary_formats; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8871,7 +7873,6 @@ COMMENT ON TABLE public.mdl_glossary_formats IS 'Setting of the display formats' -- --- TOC entry 516 (class 1259 OID 60799) -- Name: mdl_glossary_formats_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8886,8 +7887,6 @@ CREATE SEQUENCE public.mdl_glossary_formats_id_seq ALTER TABLE public.mdl_glossary_formats_id_seq OWNER TO postgres; -- --- TOC entry 10864 (class 0 OID 0) --- Dependencies: 516 -- Name: mdl_glossary_formats_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8895,7 +7894,6 @@ ALTER SEQUENCE public.mdl_glossary_formats_id_seq OWNED BY public.mdl_glossary_f -- --- TOC entry 517 (class 1259 OID 60801) -- Name: mdl_glossary_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -8910,8 +7908,6 @@ CREATE SEQUENCE public.mdl_glossary_id_seq ALTER TABLE public.mdl_glossary_id_seq OWNER TO postgres; -- --- TOC entry 10865 (class 0 OID 0) --- Dependencies: 517 -- Name: mdl_glossary_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -8919,7 +7915,6 @@ ALTER SEQUENCE public.mdl_glossary_id_seq OWNED BY public.mdl_glossary.id; -- --- TOC entry 518 (class 1259 OID 60803) -- Name: mdl_grade_categories; Type: TABLE; Schema: public; Owner: postgres -- @@ -8944,8 +7939,6 @@ CREATE TABLE public.mdl_grade_categories ( ALTER TABLE public.mdl_grade_categories OWNER TO postgres; -- --- TOC entry 10866 (class 0 OID 0) --- Dependencies: 518 -- Name: TABLE mdl_grade_categories; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8953,7 +7946,6 @@ COMMENT ON TABLE public.mdl_grade_categories IS 'This table keeps information ab -- --- TOC entry 519 (class 1259 OID 60817) -- Name: mdl_grade_categories_history; Type: TABLE; Schema: public; Owner: postgres -- @@ -8982,8 +7974,6 @@ CREATE TABLE public.mdl_grade_categories_history ( ALTER TABLE public.mdl_grade_categories_history OWNER TO postgres; -- --- TOC entry 10867 (class 0 OID 0) --- Dependencies: 519 -- Name: TABLE mdl_grade_categories_history; Type: COMMENT; Schema: public; Owner: postgres -- @@ -8991,7 +7981,6 @@ COMMENT ON TABLE public.mdl_grade_categories_history IS 'History of grade_catego -- --- TOC entry 520 (class 1259 OID 60833) -- Name: mdl_grade_categories_history_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9006,8 +7995,6 @@ CREATE SEQUENCE public.mdl_grade_categories_history_id_seq ALTER TABLE public.mdl_grade_categories_history_id_seq OWNER TO postgres; -- --- TOC entry 10868 (class 0 OID 0) --- Dependencies: 520 -- Name: mdl_grade_categories_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9015,7 +8002,6 @@ ALTER SEQUENCE public.mdl_grade_categories_history_id_seq OWNED BY public.mdl_gr -- --- TOC entry 521 (class 1259 OID 60835) -- Name: mdl_grade_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9030,8 +8016,6 @@ CREATE SEQUENCE public.mdl_grade_categories_id_seq ALTER TABLE public.mdl_grade_categories_id_seq OWNER TO postgres; -- --- TOC entry 10869 (class 0 OID 0) --- Dependencies: 521 -- Name: mdl_grade_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9039,7 +8023,6 @@ ALTER SEQUENCE public.mdl_grade_categories_id_seq OWNED BY public.mdl_grade_cate -- --- TOC entry 522 (class 1259 OID 60837) -- Name: mdl_grade_grades; Type: TABLE; Schema: public; Owner: postgres -- @@ -9073,8 +8056,6 @@ CREATE TABLE public.mdl_grade_grades ( ALTER TABLE public.mdl_grade_grades OWNER TO postgres; -- --- TOC entry 10870 (class 0 OID 0) --- Dependencies: 522 -- Name: TABLE mdl_grade_grades; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9082,7 +8063,6 @@ COMMENT ON TABLE public.mdl_grade_grades IS 'grade_grades This table keeps indi -- --- TOC entry 523 (class 1259 OID 60854) -- Name: mdl_grade_grades_history; Type: TABLE; Schema: public; Owner: postgres -- @@ -9117,8 +8097,6 @@ CREATE TABLE public.mdl_grade_grades_history ( ALTER TABLE public.mdl_grade_grades_history OWNER TO postgres; -- --- TOC entry 10871 (class 0 OID 0) --- Dependencies: 523 -- Name: TABLE mdl_grade_grades_history; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9126,7 +8104,6 @@ COMMENT ON TABLE public.mdl_grade_grades_history IS 'History table'; -- --- TOC entry 524 (class 1259 OID 60871) -- Name: mdl_grade_grades_history_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9141,8 +8118,6 @@ CREATE SEQUENCE public.mdl_grade_grades_history_id_seq ALTER TABLE public.mdl_grade_grades_history_id_seq OWNER TO postgres; -- --- TOC entry 10872 (class 0 OID 0) --- Dependencies: 524 -- Name: mdl_grade_grades_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9150,7 +8125,6 @@ ALTER SEQUENCE public.mdl_grade_grades_history_id_seq OWNED BY public.mdl_grade_ -- --- TOC entry 525 (class 1259 OID 60873) -- Name: mdl_grade_grades_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9165,8 +8139,6 @@ CREATE SEQUENCE public.mdl_grade_grades_id_seq ALTER TABLE public.mdl_grade_grades_id_seq OWNER TO postgres; -- --- TOC entry 10873 (class 0 OID 0) --- Dependencies: 525 -- Name: mdl_grade_grades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9174,7 +8146,6 @@ ALTER SEQUENCE public.mdl_grade_grades_id_seq OWNED BY public.mdl_grade_grades.i -- --- TOC entry 526 (class 1259 OID 60875) -- Name: mdl_grade_import_newitem; Type: TABLE; Schema: public; Owner: postgres -- @@ -9189,8 +8160,6 @@ CREATE TABLE public.mdl_grade_import_newitem ( ALTER TABLE public.mdl_grade_import_newitem OWNER TO postgres; -- --- TOC entry 10874 (class 0 OID 0) --- Dependencies: 526 -- Name: TABLE mdl_grade_import_newitem; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9198,7 +8167,6 @@ COMMENT ON TABLE public.mdl_grade_import_newitem IS 'temporary table for storing -- --- TOC entry 527 (class 1259 OID 60879) -- Name: mdl_grade_import_newitem_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9213,8 +8181,6 @@ CREATE SEQUENCE public.mdl_grade_import_newitem_id_seq ALTER TABLE public.mdl_grade_import_newitem_id_seq OWNER TO postgres; -- --- TOC entry 10875 (class 0 OID 0) --- Dependencies: 527 -- Name: mdl_grade_import_newitem_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9222,7 +8188,6 @@ ALTER SEQUENCE public.mdl_grade_import_newitem_id_seq OWNED BY public.mdl_grade_ -- --- TOC entry 528 (class 1259 OID 60881) -- Name: mdl_grade_import_values; Type: TABLE; Schema: public; Owner: postgres -- @@ -9242,8 +8207,6 @@ CREATE TABLE public.mdl_grade_import_values ( ALTER TABLE public.mdl_grade_import_values OWNER TO postgres; -- --- TOC entry 10876 (class 0 OID 0) --- Dependencies: 528 -- Name: TABLE mdl_grade_import_values; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9251,7 +8214,6 @@ COMMENT ON TABLE public.mdl_grade_import_values IS 'Temporary table for importin -- --- TOC entry 529 (class 1259 OID 60888) -- Name: mdl_grade_import_values_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9266,8 +8228,6 @@ CREATE SEQUENCE public.mdl_grade_import_values_id_seq ALTER TABLE public.mdl_grade_import_values_id_seq OWNER TO postgres; -- --- TOC entry 10877 (class 0 OID 0) --- Dependencies: 529 -- Name: mdl_grade_import_values_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9275,7 +8235,6 @@ ALTER SEQUENCE public.mdl_grade_import_values_id_seq OWNED BY public.mdl_grade_i -- --- TOC entry 530 (class 1259 OID 60890) -- Name: mdl_grade_items; Type: TABLE; Schema: public; Owner: postgres -- @@ -9317,8 +8276,6 @@ CREATE TABLE public.mdl_grade_items ( ALTER TABLE public.mdl_grade_items OWNER TO postgres; -- --- TOC entry 10878 (class 0 OID 0) --- Dependencies: 530 -- Name: TABLE mdl_grade_items; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9326,7 +8283,6 @@ COMMENT ON TABLE public.mdl_grade_items IS 'This table keeps information about g -- --- TOC entry 531 (class 1259 OID 60912) -- Name: mdl_grade_items_history; Type: TABLE; Schema: public; Owner: postgres -- @@ -9371,8 +8327,6 @@ CREATE TABLE public.mdl_grade_items_history ( ALTER TABLE public.mdl_grade_items_history OWNER TO postgres; -- --- TOC entry 10879 (class 0 OID 0) --- Dependencies: 531 -- Name: TABLE mdl_grade_items_history; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9380,7 +8334,6 @@ COMMENT ON TABLE public.mdl_grade_items_history IS 'History of grade_items'; -- --- TOC entry 532 (class 1259 OID 60935) -- Name: mdl_grade_items_history_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9395,8 +8348,6 @@ CREATE SEQUENCE public.mdl_grade_items_history_id_seq ALTER TABLE public.mdl_grade_items_history_id_seq OWNER TO postgres; -- --- TOC entry 10880 (class 0 OID 0) --- Dependencies: 532 -- Name: mdl_grade_items_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9404,7 +8355,6 @@ ALTER SEQUENCE public.mdl_grade_items_history_id_seq OWNED BY public.mdl_grade_i -- --- TOC entry 533 (class 1259 OID 60937) -- Name: mdl_grade_items_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9419,8 +8369,6 @@ CREATE SEQUENCE public.mdl_grade_items_id_seq ALTER TABLE public.mdl_grade_items_id_seq OWNER TO postgres; -- --- TOC entry 10881 (class 0 OID 0) --- Dependencies: 533 -- Name: mdl_grade_items_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9428,7 +8376,6 @@ ALTER SEQUENCE public.mdl_grade_items_id_seq OWNED BY public.mdl_grade_items.id; -- --- TOC entry 534 (class 1259 OID 60939) -- Name: mdl_grade_letters; Type: TABLE; Schema: public; Owner: postgres -- @@ -9443,8 +8390,6 @@ CREATE TABLE public.mdl_grade_letters ( ALTER TABLE public.mdl_grade_letters OWNER TO postgres; -- --- TOC entry 10882 (class 0 OID 0) --- Dependencies: 534 -- Name: TABLE mdl_grade_letters; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9452,7 +8397,6 @@ COMMENT ON TABLE public.mdl_grade_letters IS 'Repository for grade letters, for -- --- TOC entry 535 (class 1259 OID 60943) -- Name: mdl_grade_letters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9467,8 +8411,6 @@ CREATE SEQUENCE public.mdl_grade_letters_id_seq ALTER TABLE public.mdl_grade_letters_id_seq OWNER TO postgres; -- --- TOC entry 10883 (class 0 OID 0) --- Dependencies: 535 -- Name: mdl_grade_letters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9476,7 +8418,6 @@ ALTER SEQUENCE public.mdl_grade_letters_id_seq OWNED BY public.mdl_grade_letters -- --- TOC entry 536 (class 1259 OID 60945) -- Name: mdl_grade_outcomes; Type: TABLE; Schema: public; Owner: postgres -- @@ -9497,8 +8438,6 @@ CREATE TABLE public.mdl_grade_outcomes ( ALTER TABLE public.mdl_grade_outcomes OWNER TO postgres; -- --- TOC entry 10884 (class 0 OID 0) --- Dependencies: 536 -- Name: TABLE mdl_grade_outcomes; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9506,7 +8445,6 @@ COMMENT ON TABLE public.mdl_grade_outcomes IS 'This table describes the outcomes -- --- TOC entry 537 (class 1259 OID 60953) -- Name: mdl_grade_outcomes_courses; Type: TABLE; Schema: public; Owner: postgres -- @@ -9520,8 +8458,6 @@ CREATE TABLE public.mdl_grade_outcomes_courses ( ALTER TABLE public.mdl_grade_outcomes_courses OWNER TO postgres; -- --- TOC entry 10885 (class 0 OID 0) --- Dependencies: 537 -- Name: TABLE mdl_grade_outcomes_courses; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9529,7 +8465,6 @@ COMMENT ON TABLE public.mdl_grade_outcomes_courses IS 'stores what outcomes are -- --- TOC entry 538 (class 1259 OID 60956) -- Name: mdl_grade_outcomes_courses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9544,8 +8479,6 @@ CREATE SEQUENCE public.mdl_grade_outcomes_courses_id_seq ALTER TABLE public.mdl_grade_outcomes_courses_id_seq OWNER TO postgres; -- --- TOC entry 10886 (class 0 OID 0) --- Dependencies: 538 -- Name: mdl_grade_outcomes_courses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9553,7 +8486,6 @@ ALTER SEQUENCE public.mdl_grade_outcomes_courses_id_seq OWNED BY public.mdl_grad -- --- TOC entry 539 (class 1259 OID 60958) -- Name: mdl_grade_outcomes_history; Type: TABLE; Schema: public; Owner: postgres -- @@ -9576,8 +8508,6 @@ CREATE TABLE public.mdl_grade_outcomes_history ( ALTER TABLE public.mdl_grade_outcomes_history OWNER TO postgres; -- --- TOC entry 10887 (class 0 OID 0) --- Dependencies: 539 -- Name: TABLE mdl_grade_outcomes_history; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9585,7 +8515,6 @@ COMMENT ON TABLE public.mdl_grade_outcomes_history IS 'History table'; -- --- TOC entry 540 (class 1259 OID 60967) -- Name: mdl_grade_outcomes_history_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9600,8 +8529,6 @@ CREATE SEQUENCE public.mdl_grade_outcomes_history_id_seq ALTER TABLE public.mdl_grade_outcomes_history_id_seq OWNER TO postgres; -- --- TOC entry 10888 (class 0 OID 0) --- Dependencies: 540 -- Name: mdl_grade_outcomes_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9609,7 +8536,6 @@ ALTER SEQUENCE public.mdl_grade_outcomes_history_id_seq OWNED BY public.mdl_grad -- --- TOC entry 541 (class 1259 OID 60969) -- Name: mdl_grade_outcomes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9624,8 +8550,6 @@ CREATE SEQUENCE public.mdl_grade_outcomes_id_seq ALTER TABLE public.mdl_grade_outcomes_id_seq OWNER TO postgres; -- --- TOC entry 10889 (class 0 OID 0) --- Dependencies: 541 -- Name: mdl_grade_outcomes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9633,7 +8557,6 @@ ALTER SEQUENCE public.mdl_grade_outcomes_id_seq OWNED BY public.mdl_grade_outcom -- --- TOC entry 542 (class 1259 OID 60971) -- Name: mdl_grade_settings; Type: TABLE; Schema: public; Owner: postgres -- @@ -9648,8 +8571,6 @@ CREATE TABLE public.mdl_grade_settings ( ALTER TABLE public.mdl_grade_settings OWNER TO postgres; -- --- TOC entry 10890 (class 0 OID 0) --- Dependencies: 542 -- Name: TABLE mdl_grade_settings; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9657,7 +8578,6 @@ COMMENT ON TABLE public.mdl_grade_settings IS 'gradebook settings'; -- --- TOC entry 543 (class 1259 OID 60978) -- Name: mdl_grade_settings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9672,8 +8592,6 @@ CREATE SEQUENCE public.mdl_grade_settings_id_seq ALTER TABLE public.mdl_grade_settings_id_seq OWNER TO postgres; -- --- TOC entry 10891 (class 0 OID 0) --- Dependencies: 543 -- Name: mdl_grade_settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9681,7 +8599,6 @@ ALTER SEQUENCE public.mdl_grade_settings_id_seq OWNED BY public.mdl_grade_settin -- --- TOC entry 544 (class 1259 OID 60980) -- Name: mdl_grading_areas; Type: TABLE; Schema: public; Owner: postgres -- @@ -9697,8 +8614,6 @@ CREATE TABLE public.mdl_grading_areas ( ALTER TABLE public.mdl_grading_areas OWNER TO postgres; -- --- TOC entry 10892 (class 0 OID 0) --- Dependencies: 544 -- Name: TABLE mdl_grading_areas; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9706,7 +8621,6 @@ COMMENT ON TABLE public.mdl_grading_areas IS 'Identifies gradable areas where ad -- --- TOC entry 545 (class 1259 OID 60985) -- Name: mdl_grading_areas_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9721,8 +8635,6 @@ CREATE SEQUENCE public.mdl_grading_areas_id_seq ALTER TABLE public.mdl_grading_areas_id_seq OWNER TO postgres; -- --- TOC entry 10893 (class 0 OID 0) --- Dependencies: 545 -- Name: mdl_grading_areas_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9730,7 +8642,6 @@ ALTER SEQUENCE public.mdl_grading_areas_id_seq OWNED BY public.mdl_grading_areas -- --- TOC entry 546 (class 1259 OID 60987) -- Name: mdl_grading_definitions; Type: TABLE; Schema: public; Owner: postgres -- @@ -9755,8 +8666,6 @@ CREATE TABLE public.mdl_grading_definitions ( ALTER TABLE public.mdl_grading_definitions OWNER TO postgres; -- --- TOC entry 10894 (class 0 OID 0) --- Dependencies: 546 -- Name: TABLE mdl_grading_definitions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9764,7 +8673,6 @@ COMMENT ON TABLE public.mdl_grading_definitions IS 'Contains the basic informati -- --- TOC entry 547 (class 1259 OID 60997) -- Name: mdl_grading_definitions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9779,8 +8687,6 @@ CREATE SEQUENCE public.mdl_grading_definitions_id_seq ALTER TABLE public.mdl_grading_definitions_id_seq OWNER TO postgres; -- --- TOC entry 10895 (class 0 OID 0) --- Dependencies: 547 -- Name: mdl_grading_definitions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9788,7 +8694,6 @@ ALTER SEQUENCE public.mdl_grading_definitions_id_seq OWNED BY public.mdl_grading -- --- TOC entry 548 (class 1259 OID 60999) -- Name: mdl_grading_instances; Type: TABLE; Schema: public; Owner: postgres -- @@ -9808,8 +8713,6 @@ CREATE TABLE public.mdl_grading_instances ( ALTER TABLE public.mdl_grading_instances OWNER TO postgres; -- --- TOC entry 10896 (class 0 OID 0) --- Dependencies: 548 -- Name: TABLE mdl_grading_instances; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9817,7 +8720,6 @@ COMMENT ON TABLE public.mdl_grading_instances IS 'Grading form instance is an as -- --- TOC entry 549 (class 1259 OID 61006) -- Name: mdl_grading_instances_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9832,8 +8734,6 @@ CREATE SEQUENCE public.mdl_grading_instances_id_seq ALTER TABLE public.mdl_grading_instances_id_seq OWNER TO postgres; -- --- TOC entry 10897 (class 0 OID 0) --- Dependencies: 549 -- Name: mdl_grading_instances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9841,7 +8741,6 @@ ALTER SEQUENCE public.mdl_grading_instances_id_seq OWNED BY public.mdl_grading_i -- --- TOC entry 550 (class 1259 OID 61008) -- Name: mdl_gradingform_guide_comments; Type: TABLE; Schema: public; Owner: postgres -- @@ -9857,8 +8756,6 @@ CREATE TABLE public.mdl_gradingform_guide_comments ( ALTER TABLE public.mdl_gradingform_guide_comments OWNER TO postgres; -- --- TOC entry 10898 (class 0 OID 0) --- Dependencies: 550 -- Name: TABLE mdl_gradingform_guide_comments; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9866,7 +8763,6 @@ COMMENT ON TABLE public.mdl_gradingform_guide_comments IS 'frequently used comme -- --- TOC entry 551 (class 1259 OID 61014) -- Name: mdl_gradingform_guide_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9881,8 +8777,6 @@ CREATE SEQUENCE public.mdl_gradingform_guide_comments_id_seq ALTER TABLE public.mdl_gradingform_guide_comments_id_seq OWNER TO postgres; -- --- TOC entry 10899 (class 0 OID 0) --- Dependencies: 551 -- Name: mdl_gradingform_guide_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9890,7 +8784,6 @@ ALTER SEQUENCE public.mdl_gradingform_guide_comments_id_seq OWNED BY public.mdl_ -- --- TOC entry 552 (class 1259 OID 61016) -- Name: mdl_gradingform_guide_criteria; Type: TABLE; Schema: public; Owner: postgres -- @@ -9910,8 +8803,6 @@ CREATE TABLE public.mdl_gradingform_guide_criteria ( ALTER TABLE public.mdl_gradingform_guide_criteria OWNER TO postgres; -- --- TOC entry 10900 (class 0 OID 0) --- Dependencies: 552 -- Name: TABLE mdl_gradingform_guide_criteria; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9919,7 +8810,6 @@ COMMENT ON TABLE public.mdl_gradingform_guide_criteria IS 'Stores the rows of th -- --- TOC entry 553 (class 1259 OID 61023) -- Name: mdl_gradingform_guide_criteria_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9934,8 +8824,6 @@ CREATE SEQUENCE public.mdl_gradingform_guide_criteria_id_seq ALTER TABLE public.mdl_gradingform_guide_criteria_id_seq OWNER TO postgres; -- --- TOC entry 10901 (class 0 OID 0) --- Dependencies: 553 -- Name: mdl_gradingform_guide_criteria_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9943,7 +8831,6 @@ ALTER SEQUENCE public.mdl_gradingform_guide_criteria_id_seq OWNED BY public.mdl_ -- --- TOC entry 554 (class 1259 OID 61025) -- Name: mdl_gradingform_guide_fillings; Type: TABLE; Schema: public; Owner: postgres -- @@ -9960,8 +8847,6 @@ CREATE TABLE public.mdl_gradingform_guide_fillings ( ALTER TABLE public.mdl_gradingform_guide_fillings OWNER TO postgres; -- --- TOC entry 10902 (class 0 OID 0) --- Dependencies: 554 -- Name: TABLE mdl_gradingform_guide_fillings; Type: COMMENT; Schema: public; Owner: postgres -- @@ -9969,7 +8854,6 @@ COMMENT ON TABLE public.mdl_gradingform_guide_fillings IS 'Stores the data of ho -- --- TOC entry 555 (class 1259 OID 61031) -- Name: mdl_gradingform_guide_fillings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -9984,8 +8868,6 @@ CREATE SEQUENCE public.mdl_gradingform_guide_fillings_id_seq ALTER TABLE public.mdl_gradingform_guide_fillings_id_seq OWNER TO postgres; -- --- TOC entry 10903 (class 0 OID 0) --- Dependencies: 555 -- Name: mdl_gradingform_guide_fillings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -9993,7 +8875,6 @@ ALTER SEQUENCE public.mdl_gradingform_guide_fillings_id_seq OWNED BY public.mdl_ -- --- TOC entry 556 (class 1259 OID 61033) -- Name: mdl_gradingform_rubric_criteria; Type: TABLE; Schema: public; Owner: postgres -- @@ -10009,8 +8890,6 @@ CREATE TABLE public.mdl_gradingform_rubric_criteria ( ALTER TABLE public.mdl_gradingform_rubric_criteria OWNER TO postgres; -- --- TOC entry 10904 (class 0 OID 0) --- Dependencies: 556 -- Name: TABLE mdl_gradingform_rubric_criteria; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10018,7 +8897,6 @@ COMMENT ON TABLE public.mdl_gradingform_rubric_criteria IS 'Stores the rows of t -- --- TOC entry 557 (class 1259 OID 61039) -- Name: mdl_gradingform_rubric_criteria_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10033,8 +8911,6 @@ CREATE SEQUENCE public.mdl_gradingform_rubric_criteria_id_seq ALTER TABLE public.mdl_gradingform_rubric_criteria_id_seq OWNER TO postgres; -- --- TOC entry 10905 (class 0 OID 0) --- Dependencies: 557 -- Name: mdl_gradingform_rubric_criteria_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10042,7 +8918,6 @@ ALTER SEQUENCE public.mdl_gradingform_rubric_criteria_id_seq OWNED BY public.mdl -- --- TOC entry 558 (class 1259 OID 61041) -- Name: mdl_gradingform_rubric_fillings; Type: TABLE; Schema: public; Owner: postgres -- @@ -10059,8 +8934,6 @@ CREATE TABLE public.mdl_gradingform_rubric_fillings ( ALTER TABLE public.mdl_gradingform_rubric_fillings OWNER TO postgres; -- --- TOC entry 10906 (class 0 OID 0) --- Dependencies: 558 -- Name: TABLE mdl_gradingform_rubric_fillings; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10068,7 +8941,6 @@ COMMENT ON TABLE public.mdl_gradingform_rubric_fillings IS 'Stores the data of h -- --- TOC entry 559 (class 1259 OID 61047) -- Name: mdl_gradingform_rubric_fillings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10083,8 +8955,6 @@ CREATE SEQUENCE public.mdl_gradingform_rubric_fillings_id_seq ALTER TABLE public.mdl_gradingform_rubric_fillings_id_seq OWNER TO postgres; -- --- TOC entry 10907 (class 0 OID 0) --- Dependencies: 559 -- Name: mdl_gradingform_rubric_fillings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10092,7 +8962,6 @@ ALTER SEQUENCE public.mdl_gradingform_rubric_fillings_id_seq OWNED BY public.mdl -- --- TOC entry 560 (class 1259 OID 61049) -- Name: mdl_gradingform_rubric_levels; Type: TABLE; Schema: public; Owner: postgres -- @@ -10108,8 +8977,6 @@ CREATE TABLE public.mdl_gradingform_rubric_levels ( ALTER TABLE public.mdl_gradingform_rubric_levels OWNER TO postgres; -- --- TOC entry 10908 (class 0 OID 0) --- Dependencies: 560 -- Name: TABLE mdl_gradingform_rubric_levels; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10117,7 +8984,6 @@ COMMENT ON TABLE public.mdl_gradingform_rubric_levels IS 'Stores the columns of -- --- TOC entry 561 (class 1259 OID 61055) -- Name: mdl_gradingform_rubric_levels_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10132,8 +8998,6 @@ CREATE SEQUENCE public.mdl_gradingform_rubric_levels_id_seq ALTER TABLE public.mdl_gradingform_rubric_levels_id_seq OWNER TO postgres; -- --- TOC entry 10909 (class 0 OID 0) --- Dependencies: 561 -- Name: mdl_gradingform_rubric_levels_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10141,7 +9005,6 @@ ALTER SEQUENCE public.mdl_gradingform_rubric_levels_id_seq OWNED BY public.mdl_g -- --- TOC entry 562 (class 1259 OID 61057) -- Name: mdl_groupings; Type: TABLE; Schema: public; Owner: postgres -- @@ -10161,8 +9024,6 @@ CREATE TABLE public.mdl_groupings ( ALTER TABLE public.mdl_groupings OWNER TO postgres; -- --- TOC entry 10910 (class 0 OID 0) --- Dependencies: 562 -- Name: TABLE mdl_groupings; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10170,7 +9031,6 @@ COMMENT ON TABLE public.mdl_groupings IS 'A grouping is a collection of groups. -- --- TOC entry 563 (class 1259 OID 61069) -- Name: mdl_groupings_groups; Type: TABLE; Schema: public; Owner: postgres -- @@ -10185,8 +9045,6 @@ CREATE TABLE public.mdl_groupings_groups ( ALTER TABLE public.mdl_groupings_groups OWNER TO postgres; -- --- TOC entry 10911 (class 0 OID 0) --- Dependencies: 563 -- Name: TABLE mdl_groupings_groups; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10194,7 +9052,6 @@ COMMENT ON TABLE public.mdl_groupings_groups IS 'Link a grouping to a group (not -- --- TOC entry 564 (class 1259 OID 61075) -- Name: mdl_groupings_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10209,8 +9066,6 @@ CREATE SEQUENCE public.mdl_groupings_groups_id_seq ALTER TABLE public.mdl_groupings_groups_id_seq OWNER TO postgres; -- --- TOC entry 10912 (class 0 OID 0) --- Dependencies: 564 -- Name: mdl_groupings_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10218,7 +9073,6 @@ ALTER SEQUENCE public.mdl_groupings_groups_id_seq OWNED BY public.mdl_groupings_ -- --- TOC entry 565 (class 1259 OID 61077) -- Name: mdl_groupings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10233,8 +9087,6 @@ CREATE SEQUENCE public.mdl_groupings_id_seq ALTER TABLE public.mdl_groupings_id_seq OWNER TO postgres; -- --- TOC entry 10913 (class 0 OID 0) --- Dependencies: 565 -- Name: mdl_groupings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10242,7 +9094,6 @@ ALTER SEQUENCE public.mdl_groupings_id_seq OWNED BY public.mdl_groupings.id; -- --- TOC entry 566 (class 1259 OID 61079) -- Name: mdl_groups; Type: TABLE; Schema: public; Owner: postgres -- @@ -10264,8 +9115,6 @@ CREATE TABLE public.mdl_groups ( ALTER TABLE public.mdl_groups OWNER TO postgres; -- --- TOC entry 10914 (class 0 OID 0) --- Dependencies: 566 -- Name: TABLE mdl_groups; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10273,7 +9122,6 @@ COMMENT ON TABLE public.mdl_groups IS 'Each record represents a group.'; -- --- TOC entry 567 (class 1259 OID 61092) -- Name: mdl_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10288,8 +9136,6 @@ CREATE SEQUENCE public.mdl_groups_id_seq ALTER TABLE public.mdl_groups_id_seq OWNER TO postgres; -- --- TOC entry 10915 (class 0 OID 0) --- Dependencies: 567 -- Name: mdl_groups_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10297,7 +9143,6 @@ ALTER SEQUENCE public.mdl_groups_id_seq OWNED BY public.mdl_groups.id; -- --- TOC entry 568 (class 1259 OID 61094) -- Name: mdl_groups_members; Type: TABLE; Schema: public; Owner: postgres -- @@ -10314,8 +9159,6 @@ CREATE TABLE public.mdl_groups_members ( ALTER TABLE public.mdl_groups_members OWNER TO postgres; -- --- TOC entry 10916 (class 0 OID 0) --- Dependencies: 568 -- Name: TABLE mdl_groups_members; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10323,7 +9166,6 @@ COMMENT ON TABLE public.mdl_groups_members IS 'Link a user to a group.'; -- --- TOC entry 569 (class 1259 OID 61102) -- Name: mdl_groups_members_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10338,8 +9180,6 @@ CREATE SEQUENCE public.mdl_groups_members_id_seq ALTER TABLE public.mdl_groups_members_id_seq OWNER TO postgres; -- --- TOC entry 10917 (class 0 OID 0) --- Dependencies: 569 -- Name: mdl_groups_members_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10347,7 +9187,6 @@ ALTER SEQUENCE public.mdl_groups_members_id_seq OWNED BY public.mdl_groups_membe -- --- TOC entry 570 (class 1259 OID 61104) -- Name: mdl_h5p; Type: TABLE; Schema: public; Owner: postgres -- @@ -10367,8 +9206,6 @@ CREATE TABLE public.mdl_h5p ( ALTER TABLE public.mdl_h5p OWNER TO postgres; -- --- TOC entry 10918 (class 0 OID 0) --- Dependencies: 570 -- Name: TABLE mdl_h5p; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10376,7 +9213,6 @@ COMMENT ON TABLE public.mdl_h5p IS 'Stores H5P content information'; -- --- TOC entry 571 (class 1259 OID 61114) -- Name: mdl_h5p_contents_libraries; Type: TABLE; Schema: public; Owner: postgres -- @@ -10393,8 +9229,6 @@ CREATE TABLE public.mdl_h5p_contents_libraries ( ALTER TABLE public.mdl_h5p_contents_libraries OWNER TO postgres; -- --- TOC entry 10919 (class 0 OID 0) --- Dependencies: 571 -- Name: TABLE mdl_h5p_contents_libraries; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10402,7 +9236,6 @@ COMMENT ON TABLE public.mdl_h5p_contents_libraries IS 'Store which library is us -- --- TOC entry 572 (class 1259 OID 61118) -- Name: mdl_h5p_contents_libraries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10417,8 +9250,6 @@ CREATE SEQUENCE public.mdl_h5p_contents_libraries_id_seq ALTER TABLE public.mdl_h5p_contents_libraries_id_seq OWNER TO postgres; -- --- TOC entry 10920 (class 0 OID 0) --- Dependencies: 572 -- Name: mdl_h5p_contents_libraries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10426,7 +9257,6 @@ ALTER SEQUENCE public.mdl_h5p_contents_libraries_id_seq OWNED BY public.mdl_h5p_ -- --- TOC entry 573 (class 1259 OID 61120) -- Name: mdl_h5p_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10441,8 +9271,6 @@ CREATE SEQUENCE public.mdl_h5p_id_seq ALTER TABLE public.mdl_h5p_id_seq OWNER TO postgres; -- --- TOC entry 10921 (class 0 OID 0) --- Dependencies: 573 -- Name: mdl_h5p_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10450,7 +9278,6 @@ ALTER SEQUENCE public.mdl_h5p_id_seq OWNED BY public.mdl_h5p.id; -- --- TOC entry 574 (class 1259 OID 61122) -- Name: mdl_h5p_libraries; Type: TABLE; Schema: public; Owner: postgres -- @@ -10478,8 +9305,6 @@ CREATE TABLE public.mdl_h5p_libraries ( ALTER TABLE public.mdl_h5p_libraries OWNER TO postgres; -- --- TOC entry 10922 (class 0 OID 0) --- Dependencies: 574 -- Name: TABLE mdl_h5p_libraries; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10487,7 +9312,6 @@ COMMENT ON TABLE public.mdl_h5p_libraries IS 'Stores information about libraries -- --- TOC entry 575 (class 1259 OID 61132) -- Name: mdl_h5p_libraries_cachedassets; Type: TABLE; Schema: public; Owner: postgres -- @@ -10501,8 +9325,6 @@ CREATE TABLE public.mdl_h5p_libraries_cachedassets ( ALTER TABLE public.mdl_h5p_libraries_cachedassets OWNER TO postgres; -- --- TOC entry 10923 (class 0 OID 0) --- Dependencies: 575 -- Name: TABLE mdl_h5p_libraries_cachedassets; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10510,7 +9332,6 @@ COMMENT ON TABLE public.mdl_h5p_libraries_cachedassets IS 'H5P cached library as -- --- TOC entry 576 (class 1259 OID 61136) -- Name: mdl_h5p_libraries_cachedassets_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10525,8 +9346,6 @@ CREATE SEQUENCE public.mdl_h5p_libraries_cachedassets_id_seq ALTER TABLE public.mdl_h5p_libraries_cachedassets_id_seq OWNER TO postgres; -- --- TOC entry 10924 (class 0 OID 0) --- Dependencies: 576 -- Name: mdl_h5p_libraries_cachedassets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10534,7 +9353,6 @@ ALTER SEQUENCE public.mdl_h5p_libraries_cachedassets_id_seq OWNED BY public.mdl_ -- --- TOC entry 577 (class 1259 OID 61138) -- Name: mdl_h5p_libraries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10549,8 +9367,6 @@ CREATE SEQUENCE public.mdl_h5p_libraries_id_seq ALTER TABLE public.mdl_h5p_libraries_id_seq OWNER TO postgres; -- --- TOC entry 10925 (class 0 OID 0) --- Dependencies: 577 -- Name: mdl_h5p_libraries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10558,7 +9374,6 @@ ALTER SEQUENCE public.mdl_h5p_libraries_id_seq OWNED BY public.mdl_h5p_libraries -- --- TOC entry 578 (class 1259 OID 61140) -- Name: mdl_h5p_library_dependencies; Type: TABLE; Schema: public; Owner: postgres -- @@ -10573,8 +9388,6 @@ CREATE TABLE public.mdl_h5p_library_dependencies ( ALTER TABLE public.mdl_h5p_library_dependencies OWNER TO postgres; -- --- TOC entry 10926 (class 0 OID 0) --- Dependencies: 578 -- Name: TABLE mdl_h5p_library_dependencies; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10582,7 +9395,6 @@ COMMENT ON TABLE public.mdl_h5p_library_dependencies IS 'Stores H5P library depe -- --- TOC entry 579 (class 1259 OID 61144) -- Name: mdl_h5p_library_dependencies_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10597,8 +9409,6 @@ CREATE SEQUENCE public.mdl_h5p_library_dependencies_id_seq ALTER TABLE public.mdl_h5p_library_dependencies_id_seq OWNER TO postgres; -- --- TOC entry 10927 (class 0 OID 0) --- Dependencies: 579 -- Name: mdl_h5p_library_dependencies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10606,7 +9416,6 @@ ALTER SEQUENCE public.mdl_h5p_library_dependencies_id_seq OWNED BY public.mdl_h5 -- --- TOC entry 580 (class 1259 OID 61146) -- Name: mdl_h5pactivity; Type: TABLE; Schema: public; Owner: postgres -- @@ -10629,8 +9438,6 @@ CREATE TABLE public.mdl_h5pactivity ( ALTER TABLE public.mdl_h5pactivity OWNER TO postgres; -- --- TOC entry 10928 (class 0 OID 0) --- Dependencies: 580 -- Name: TABLE mdl_h5pactivity; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10638,7 +9445,6 @@ COMMENT ON TABLE public.mdl_h5pactivity IS 'Stores the h5pactivity activity modu -- --- TOC entry 581 (class 1259 OID 61159) -- Name: mdl_h5pactivity_attempts; Type: TABLE; Schema: public; Owner: postgres -- @@ -10661,8 +9467,6 @@ CREATE TABLE public.mdl_h5pactivity_attempts ( ALTER TABLE public.mdl_h5pactivity_attempts OWNER TO postgres; -- --- TOC entry 10929 (class 0 OID 0) --- Dependencies: 581 -- Name: TABLE mdl_h5pactivity_attempts; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10670,7 +9474,6 @@ COMMENT ON TABLE public.mdl_h5pactivity_attempts IS 'Users attempts inside H5P a -- --- TOC entry 582 (class 1259 OID 61167) -- Name: mdl_h5pactivity_attempts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10685,8 +9488,6 @@ CREATE SEQUENCE public.mdl_h5pactivity_attempts_id_seq ALTER TABLE public.mdl_h5pactivity_attempts_id_seq OWNER TO postgres; -- --- TOC entry 10930 (class 0 OID 0) --- Dependencies: 582 -- Name: mdl_h5pactivity_attempts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10694,7 +9495,6 @@ ALTER SEQUENCE public.mdl_h5pactivity_attempts_id_seq OWNED BY public.mdl_h5pact -- --- TOC entry 583 (class 1259 OID 61169) -- Name: mdl_h5pactivity_attempts_results; Type: TABLE; Schema: public; Owner: postgres -- @@ -10719,8 +9519,6 @@ CREATE TABLE public.mdl_h5pactivity_attempts_results ( ALTER TABLE public.mdl_h5pactivity_attempts_results OWNER TO postgres; -- --- TOC entry 10931 (class 0 OID 0) --- Dependencies: 583 -- Name: TABLE mdl_h5pactivity_attempts_results; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10728,7 +9526,6 @@ COMMENT ON TABLE public.mdl_h5pactivity_attempts_results IS 'H5Pactivities_attem -- --- TOC entry 584 (class 1259 OID 61178) -- Name: mdl_h5pactivity_attempts_results_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10743,8 +9540,6 @@ CREATE SEQUENCE public.mdl_h5pactivity_attempts_results_id_seq ALTER TABLE public.mdl_h5pactivity_attempts_results_id_seq OWNER TO postgres; -- --- TOC entry 10932 (class 0 OID 0) --- Dependencies: 584 -- Name: mdl_h5pactivity_attempts_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10752,7 +9547,6 @@ ALTER SEQUENCE public.mdl_h5pactivity_attempts_results_id_seq OWNED BY public.md -- --- TOC entry 585 (class 1259 OID 61180) -- Name: mdl_h5pactivity_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10767,8 +9561,6 @@ CREATE SEQUENCE public.mdl_h5pactivity_id_seq ALTER TABLE public.mdl_h5pactivity_id_seq OWNER TO postgres; -- --- TOC entry 10933 (class 0 OID 0) --- Dependencies: 585 -- Name: mdl_h5pactivity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10776,7 +9568,6 @@ ALTER SEQUENCE public.mdl_h5pactivity_id_seq OWNED BY public.mdl_h5pactivity.id; -- --- TOC entry 586 (class 1259 OID 61182) -- Name: mdl_imscp; Type: TABLE; Schema: public; Owner: postgres -- @@ -10796,8 +9587,6 @@ CREATE TABLE public.mdl_imscp ( ALTER TABLE public.mdl_imscp OWNER TO postgres; -- --- TOC entry 10934 (class 0 OID 0) --- Dependencies: 586 -- Name: TABLE mdl_imscp; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10805,7 +9594,6 @@ COMMENT ON TABLE public.mdl_imscp IS 'each record is one imscp resource'; -- --- TOC entry 587 (class 1259 OID 61194) -- Name: mdl_imscp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10820,8 +9608,6 @@ CREATE SEQUENCE public.mdl_imscp_id_seq ALTER TABLE public.mdl_imscp_id_seq OWNER TO postgres; -- --- TOC entry 10935 (class 0 OID 0) --- Dependencies: 587 -- Name: mdl_imscp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10829,7 +9615,6 @@ ALTER SEQUENCE public.mdl_imscp_id_seq OWNED BY public.mdl_imscp.id; -- --- TOC entry 588 (class 1259 OID 61196) -- Name: mdl_label; Type: TABLE; Schema: public; Owner: postgres -- @@ -10846,8 +9631,6 @@ CREATE TABLE public.mdl_label ( ALTER TABLE public.mdl_label OWNER TO postgres; -- --- TOC entry 10936 (class 0 OID 0) --- Dependencies: 588 -- Name: TABLE mdl_label; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10855,7 +9638,6 @@ COMMENT ON TABLE public.mdl_label IS 'Defines labels'; -- --- TOC entry 589 (class 1259 OID 61206) -- Name: mdl_label_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10870,8 +9652,6 @@ CREATE SEQUENCE public.mdl_label_id_seq ALTER TABLE public.mdl_label_id_seq OWNER TO postgres; -- --- TOC entry 10937 (class 0 OID 0) --- Dependencies: 589 -- Name: mdl_label_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10879,7 +9659,6 @@ ALTER SEQUENCE public.mdl_label_id_seq OWNED BY public.mdl_label.id; -- --- TOC entry 590 (class 1259 OID 61208) -- Name: mdl_lesson; Type: TABLE; Schema: public; Owner: postgres -- @@ -10932,8 +9711,6 @@ CREATE TABLE public.mdl_lesson ( ALTER TABLE public.mdl_lesson OWNER TO postgres; -- --- TOC entry 10938 (class 0 OID 0) --- Dependencies: 590 -- Name: TABLE mdl_lesson; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10941,7 +9718,6 @@ COMMENT ON TABLE public.mdl_lesson IS 'Defines lesson'; -- --- TOC entry 591 (class 1259 OID 61253) -- Name: mdl_lesson_answers; Type: TABLE; Schema: public; Owner: postgres -- @@ -10965,8 +9741,6 @@ CREATE TABLE public.mdl_lesson_answers ( ALTER TABLE public.mdl_lesson_answers OWNER TO postgres; -- --- TOC entry 10939 (class 0 OID 0) --- Dependencies: 591 -- Name: TABLE mdl_lesson_answers; Type: COMMENT; Schema: public; Owner: postgres -- @@ -10974,7 +9748,6 @@ COMMENT ON TABLE public.mdl_lesson_answers IS 'Defines lesson_answers'; -- --- TOC entry 592 (class 1259 OID 61269) -- Name: mdl_lesson_answers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -10989,8 +9762,6 @@ CREATE SEQUENCE public.mdl_lesson_answers_id_seq ALTER TABLE public.mdl_lesson_answers_id_seq OWNER TO postgres; -- --- TOC entry 10940 (class 0 OID 0) --- Dependencies: 592 -- Name: mdl_lesson_answers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -10998,7 +9769,6 @@ ALTER SEQUENCE public.mdl_lesson_answers_id_seq OWNED BY public.mdl_lesson_answe -- --- TOC entry 593 (class 1259 OID 61271) -- Name: mdl_lesson_attempts; Type: TABLE; Schema: public; Owner: postgres -- @@ -11018,8 +9788,6 @@ CREATE TABLE public.mdl_lesson_attempts ( ALTER TABLE public.mdl_lesson_attempts OWNER TO postgres; -- --- TOC entry 10941 (class 0 OID 0) --- Dependencies: 593 -- Name: TABLE mdl_lesson_attempts; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11027,7 +9795,6 @@ COMMENT ON TABLE public.mdl_lesson_attempts IS 'Defines lesson_attempts'; -- --- TOC entry 594 (class 1259 OID 61284) -- Name: mdl_lesson_attempts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11042,8 +9809,6 @@ CREATE SEQUENCE public.mdl_lesson_attempts_id_seq ALTER TABLE public.mdl_lesson_attempts_id_seq OWNER TO postgres; -- --- TOC entry 10942 (class 0 OID 0) --- Dependencies: 594 -- Name: mdl_lesson_attempts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11051,7 +9816,6 @@ ALTER SEQUENCE public.mdl_lesson_attempts_id_seq OWNED BY public.mdl_lesson_atte -- --- TOC entry 595 (class 1259 OID 61286) -- Name: mdl_lesson_branch; Type: TABLE; Schema: public; Owner: postgres -- @@ -11070,8 +9834,6 @@ CREATE TABLE public.mdl_lesson_branch ( ALTER TABLE public.mdl_lesson_branch OWNER TO postgres; -- --- TOC entry 10943 (class 0 OID 0) --- Dependencies: 595 -- Name: TABLE mdl_lesson_branch; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11079,7 +9841,6 @@ COMMENT ON TABLE public.mdl_lesson_branch IS 'branches for each lesson/user'; -- --- TOC entry 596 (class 1259 OID 61296) -- Name: mdl_lesson_branch_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11094,8 +9855,6 @@ CREATE SEQUENCE public.mdl_lesson_branch_id_seq ALTER TABLE public.mdl_lesson_branch_id_seq OWNER TO postgres; -- --- TOC entry 10944 (class 0 OID 0) --- Dependencies: 596 -- Name: mdl_lesson_branch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11103,7 +9862,6 @@ ALTER SEQUENCE public.mdl_lesson_branch_id_seq OWNED BY public.mdl_lesson_branch -- --- TOC entry 597 (class 1259 OID 61298) -- Name: mdl_lesson_grades; Type: TABLE; Schema: public; Owner: postgres -- @@ -11120,8 +9878,6 @@ CREATE TABLE public.mdl_lesson_grades ( ALTER TABLE public.mdl_lesson_grades OWNER TO postgres; -- --- TOC entry 10945 (class 0 OID 0) --- Dependencies: 597 -- Name: TABLE mdl_lesson_grades; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11129,7 +9885,6 @@ COMMENT ON TABLE public.mdl_lesson_grades IS 'Defines lesson_grades'; -- --- TOC entry 598 (class 1259 OID 61306) -- Name: mdl_lesson_grades_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11144,8 +9899,6 @@ CREATE SEQUENCE public.mdl_lesson_grades_id_seq ALTER TABLE public.mdl_lesson_grades_id_seq OWNER TO postgres; -- --- TOC entry 10946 (class 0 OID 0) --- Dependencies: 598 -- Name: mdl_lesson_grades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11153,7 +9906,6 @@ ALTER SEQUENCE public.mdl_lesson_grades_id_seq OWNED BY public.mdl_lesson_grades -- --- TOC entry 599 (class 1259 OID 61308) -- Name: mdl_lesson_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11168,8 +9920,6 @@ CREATE SEQUENCE public.mdl_lesson_id_seq ALTER TABLE public.mdl_lesson_id_seq OWNER TO postgres; -- --- TOC entry 10947 (class 0 OID 0) --- Dependencies: 599 -- Name: mdl_lesson_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11177,7 +9927,6 @@ ALTER SEQUENCE public.mdl_lesson_id_seq OWNED BY public.mdl_lesson.id; -- --- TOC entry 600 (class 1259 OID 61310) -- Name: mdl_lesson_overrides; Type: TABLE; Schema: public; Owner: postgres -- @@ -11199,8 +9948,6 @@ CREATE TABLE public.mdl_lesson_overrides ( ALTER TABLE public.mdl_lesson_overrides OWNER TO postgres; -- --- TOC entry 10948 (class 0 OID 0) --- Dependencies: 600 -- Name: TABLE mdl_lesson_overrides; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11208,7 +9955,6 @@ COMMENT ON TABLE public.mdl_lesson_overrides IS 'The overrides to lesson setting -- --- TOC entry 601 (class 1259 OID 61314) -- Name: mdl_lesson_overrides_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11223,8 +9969,6 @@ CREATE SEQUENCE public.mdl_lesson_overrides_id_seq ALTER TABLE public.mdl_lesson_overrides_id_seq OWNER TO postgres; -- --- TOC entry 10949 (class 0 OID 0) --- Dependencies: 601 -- Name: mdl_lesson_overrides_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11232,7 +9976,6 @@ ALTER SEQUENCE public.mdl_lesson_overrides_id_seq OWNED BY public.mdl_lesson_ove -- --- TOC entry 602 (class 1259 OID 61316) -- Name: mdl_lesson_pages; Type: TABLE; Schema: public; Owner: postgres -- @@ -11256,8 +9999,6 @@ CREATE TABLE public.mdl_lesson_pages ( ALTER TABLE public.mdl_lesson_pages OWNER TO postgres; -- --- TOC entry 10950 (class 0 OID 0) --- Dependencies: 602 -- Name: TABLE mdl_lesson_pages; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11265,7 +10006,6 @@ COMMENT ON TABLE public.mdl_lesson_pages IS 'Defines lesson_pages'; -- --- TOC entry 603 (class 1259 OID 61333) -- Name: mdl_lesson_pages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11280,8 +10020,6 @@ CREATE SEQUENCE public.mdl_lesson_pages_id_seq ALTER TABLE public.mdl_lesson_pages_id_seq OWNER TO postgres; -- --- TOC entry 10951 (class 0 OID 0) --- Dependencies: 603 -- Name: mdl_lesson_pages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11289,7 +10027,6 @@ ALTER SEQUENCE public.mdl_lesson_pages_id_seq OWNED BY public.mdl_lesson_pages.i -- --- TOC entry 604 (class 1259 OID 61335) -- Name: mdl_lesson_timer; Type: TABLE; Schema: public; Owner: postgres -- @@ -11307,8 +10044,6 @@ CREATE TABLE public.mdl_lesson_timer ( ALTER TABLE public.mdl_lesson_timer OWNER TO postgres; -- --- TOC entry 10952 (class 0 OID 0) --- Dependencies: 604 -- Name: TABLE mdl_lesson_timer; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11316,7 +10051,6 @@ COMMENT ON TABLE public.mdl_lesson_timer IS 'lesson timer for each lesson'; -- --- TOC entry 605 (class 1259 OID 61344) -- Name: mdl_lesson_timer_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11331,8 +10065,6 @@ CREATE SEQUENCE public.mdl_lesson_timer_id_seq ALTER TABLE public.mdl_lesson_timer_id_seq OWNER TO postgres; -- --- TOC entry 10953 (class 0 OID 0) --- Dependencies: 605 -- Name: mdl_lesson_timer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11340,7 +10072,6 @@ ALTER SEQUENCE public.mdl_lesson_timer_id_seq OWNED BY public.mdl_lesson_timer.i -- --- TOC entry 606 (class 1259 OID 61346) -- Name: mdl_license; Type: TABLE; Schema: public; Owner: postgres -- @@ -11359,8 +10090,6 @@ CREATE TABLE public.mdl_license ( ALTER TABLE public.mdl_license OWNER TO postgres; -- --- TOC entry 10954 (class 0 OID 0) --- Dependencies: 606 -- Name: TABLE mdl_license; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11368,7 +10097,6 @@ COMMENT ON TABLE public.mdl_license IS 'store licenses used by moodle'; -- --- TOC entry 607 (class 1259 OID 61356) -- Name: mdl_license_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11383,8 +10111,6 @@ CREATE SEQUENCE public.mdl_license_id_seq ALTER TABLE public.mdl_license_id_seq OWNER TO postgres; -- --- TOC entry 10955 (class 0 OID 0) --- Dependencies: 607 -- Name: mdl_license_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11392,7 +10118,6 @@ ALTER SEQUENCE public.mdl_license_id_seq OWNED BY public.mdl_license.id; -- --- TOC entry 608 (class 1259 OID 61358) -- Name: mdl_lock_db; Type: TABLE; Schema: public; Owner: postgres -- @@ -11407,8 +10132,6 @@ CREATE TABLE public.mdl_lock_db ( ALTER TABLE public.mdl_lock_db OWNER TO postgres; -- --- TOC entry 10956 (class 0 OID 0) --- Dependencies: 608 -- Name: TABLE mdl_lock_db; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11416,7 +10139,6 @@ COMMENT ON TABLE public.mdl_lock_db IS 'Stores active and inactive lock types fo -- --- TOC entry 609 (class 1259 OID 61362) -- Name: mdl_lock_db_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11431,8 +10153,6 @@ CREATE SEQUENCE public.mdl_lock_db_id_seq ALTER TABLE public.mdl_lock_db_id_seq OWNER TO postgres; -- --- TOC entry 10957 (class 0 OID 0) --- Dependencies: 609 -- Name: mdl_lock_db_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11440,7 +10160,6 @@ ALTER SEQUENCE public.mdl_lock_db_id_seq OWNED BY public.mdl_lock_db.id; -- --- TOC entry 610 (class 1259 OID 61364) -- Name: mdl_log; Type: TABLE; Schema: public; Owner: postgres -- @@ -11461,8 +10180,6 @@ CREATE TABLE public.mdl_log ( ALTER TABLE public.mdl_log OWNER TO postgres; -- --- TOC entry 10958 (class 0 OID 0) --- Dependencies: 610 -- Name: TABLE mdl_log; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11470,7 +10187,6 @@ COMMENT ON TABLE public.mdl_log IS 'Every action is logged as far as possible'; -- --- TOC entry 611 (class 1259 OID 61376) -- Name: mdl_log_display; Type: TABLE; Schema: public; Owner: postgres -- @@ -11487,8 +10203,6 @@ CREATE TABLE public.mdl_log_display ( ALTER TABLE public.mdl_log_display OWNER TO postgres; -- --- TOC entry 10959 (class 0 OID 0) --- Dependencies: 611 -- Name: TABLE mdl_log_display; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11496,7 +10210,6 @@ COMMENT ON TABLE public.mdl_log_display IS 'For a particular module/action, spec -- --- TOC entry 612 (class 1259 OID 61384) -- Name: mdl_log_display_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11511,8 +10224,6 @@ CREATE SEQUENCE public.mdl_log_display_id_seq ALTER TABLE public.mdl_log_display_id_seq OWNER TO postgres; -- --- TOC entry 10960 (class 0 OID 0) --- Dependencies: 612 -- Name: mdl_log_display_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11520,7 +10231,6 @@ ALTER SEQUENCE public.mdl_log_display_id_seq OWNED BY public.mdl_log_display.id; -- --- TOC entry 613 (class 1259 OID 61386) -- Name: mdl_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11535,8 +10245,6 @@ CREATE SEQUENCE public.mdl_log_id_seq ALTER TABLE public.mdl_log_id_seq OWNER TO postgres; -- --- TOC entry 10961 (class 0 OID 0) --- Dependencies: 613 -- Name: mdl_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11544,7 +10252,6 @@ ALTER SEQUENCE public.mdl_log_id_seq OWNED BY public.mdl_log.id; -- --- TOC entry 614 (class 1259 OID 61388) -- Name: mdl_log_queries; Type: TABLE; Schema: public; Owner: postgres -- @@ -11564,8 +10271,6 @@ CREATE TABLE public.mdl_log_queries ( ALTER TABLE public.mdl_log_queries OWNER TO postgres; -- --- TOC entry 10962 (class 0 OID 0) --- Dependencies: 614 -- Name: TABLE mdl_log_queries; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11573,7 +10278,6 @@ COMMENT ON TABLE public.mdl_log_queries IS 'Logged database queries.'; -- --- TOC entry 615 (class 1259 OID 61395) -- Name: mdl_log_queries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11588,8 +10292,6 @@ CREATE SEQUENCE public.mdl_log_queries_id_seq ALTER TABLE public.mdl_log_queries_id_seq OWNER TO postgres; -- --- TOC entry 10963 (class 0 OID 0) --- Dependencies: 615 -- Name: mdl_log_queries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11597,7 +10299,6 @@ ALTER SEQUENCE public.mdl_log_queries_id_seq OWNED BY public.mdl_log_queries.id; -- --- TOC entry 616 (class 1259 OID 61397) -- Name: mdl_logstore_standard_log; Type: TABLE; Schema: public; Owner: postgres -- @@ -11629,8 +10330,6 @@ CREATE TABLE public.mdl_logstore_standard_log ( ALTER TABLE public.mdl_logstore_standard_log OWNER TO postgres; -- --- TOC entry 10964 (class 0 OID 0) --- Dependencies: 616 -- Name: TABLE mdl_logstore_standard_log; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11638,7 +10337,6 @@ COMMENT ON TABLE public.mdl_logstore_standard_log IS 'Standard log table'; -- --- TOC entry 617 (class 1259 OID 61409) -- Name: mdl_logstore_standard_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11653,8 +10351,6 @@ CREATE SEQUENCE public.mdl_logstore_standard_log_id_seq ALTER TABLE public.mdl_logstore_standard_log_id_seq OWNER TO postgres; -- --- TOC entry 10965 (class 0 OID 0) --- Dependencies: 617 -- Name: mdl_logstore_standard_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11662,7 +10358,6 @@ ALTER SEQUENCE public.mdl_logstore_standard_log_id_seq OWNED BY public.mdl_logst -- --- TOC entry 618 (class 1259 OID 61411) -- Name: mdl_lti; Type: TABLE; Schema: public; Owner: postgres -- @@ -11699,8 +10394,6 @@ CREATE TABLE public.mdl_lti ( ALTER TABLE public.mdl_lti OWNER TO postgres; -- --- TOC entry 10966 (class 0 OID 0) --- Dependencies: 618 -- Name: TABLE mdl_lti; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11708,7 +10401,6 @@ COMMENT ON TABLE public.mdl_lti IS 'This table contains Basic LTI activities ins -- --- TOC entry 619 (class 1259 OID 61427) -- Name: mdl_lti_access_tokens; Type: TABLE; Schema: public; Owner: postgres -- @@ -11726,8 +10418,6 @@ CREATE TABLE public.mdl_lti_access_tokens ( ALTER TABLE public.mdl_lti_access_tokens OWNER TO postgres; -- --- TOC entry 10967 (class 0 OID 0) --- Dependencies: 619 -- Name: TABLE mdl_lti_access_tokens; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11735,7 +10425,6 @@ COMMENT ON TABLE public.mdl_lti_access_tokens IS 'Security tokens for accessing -- --- TOC entry 620 (class 1259 OID 61434) -- Name: mdl_lti_access_tokens_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11750,8 +10439,6 @@ CREATE SEQUENCE public.mdl_lti_access_tokens_id_seq ALTER TABLE public.mdl_lti_access_tokens_id_seq OWNER TO postgres; -- --- TOC entry 10968 (class 0 OID 0) --- Dependencies: 620 -- Name: mdl_lti_access_tokens_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11759,7 +10446,6 @@ ALTER SEQUENCE public.mdl_lti_access_tokens_id_seq OWNED BY public.mdl_lti_acces -- --- TOC entry 621 (class 1259 OID 61436) -- Name: mdl_lti_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11774,8 +10460,6 @@ CREATE SEQUENCE public.mdl_lti_id_seq ALTER TABLE public.mdl_lti_id_seq OWNER TO postgres; -- --- TOC entry 10969 (class 0 OID 0) --- Dependencies: 621 -- Name: mdl_lti_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11783,7 +10467,6 @@ ALTER SEQUENCE public.mdl_lti_id_seq OWNED BY public.mdl_lti.id; -- --- TOC entry 622 (class 1259 OID 61438) -- Name: mdl_lti_submission; Type: TABLE; Schema: public; Owner: postgres -- @@ -11803,8 +10486,6 @@ CREATE TABLE public.mdl_lti_submission ( ALTER TABLE public.mdl_lti_submission OWNER TO postgres; -- --- TOC entry 10970 (class 0 OID 0) --- Dependencies: 622 -- Name: TABLE mdl_lti_submission; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11812,7 +10493,6 @@ COMMENT ON TABLE public.mdl_lti_submission IS 'Keeps track of individual submiss -- --- TOC entry 623 (class 1259 OID 61441) -- Name: mdl_lti_submission_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11827,8 +10507,6 @@ CREATE SEQUENCE public.mdl_lti_submission_id_seq ALTER TABLE public.mdl_lti_submission_id_seq OWNER TO postgres; -- --- TOC entry 10971 (class 0 OID 0) --- Dependencies: 623 -- Name: mdl_lti_submission_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11836,7 +10514,6 @@ ALTER SEQUENCE public.mdl_lti_submission_id_seq OWNED BY public.mdl_lti_submissi -- --- TOC entry 624 (class 1259 OID 61443) -- Name: mdl_lti_tool_proxies; Type: TABLE; Schema: public; Owner: postgres -- @@ -11860,8 +10537,6 @@ CREATE TABLE public.mdl_lti_tool_proxies ( ALTER TABLE public.mdl_lti_tool_proxies OWNER TO postgres; -- --- TOC entry 10972 (class 0 OID 0) --- Dependencies: 624 -- Name: TABLE mdl_lti_tool_proxies; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11869,7 +10544,6 @@ COMMENT ON TABLE public.mdl_lti_tool_proxies IS 'LTI tool proxy registrations'; -- --- TOC entry 625 (class 1259 OID 61451) -- Name: mdl_lti_tool_proxies_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11884,8 +10558,6 @@ CREATE SEQUENCE public.mdl_lti_tool_proxies_id_seq ALTER TABLE public.mdl_lti_tool_proxies_id_seq OWNER TO postgres; -- --- TOC entry 10973 (class 0 OID 0) --- Dependencies: 625 -- Name: mdl_lti_tool_proxies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11893,7 +10565,6 @@ ALTER SEQUENCE public.mdl_lti_tool_proxies_id_seq OWNED BY public.mdl_lti_tool_p -- --- TOC entry 626 (class 1259 OID 61453) -- Name: mdl_lti_tool_settings; Type: TABLE; Schema: public; Owner: postgres -- @@ -11912,8 +10583,6 @@ CREATE TABLE public.mdl_lti_tool_settings ( ALTER TABLE public.mdl_lti_tool_settings OWNER TO postgres; -- --- TOC entry 10974 (class 0 OID 0) --- Dependencies: 626 -- Name: TABLE mdl_lti_tool_settings; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11921,7 +10590,6 @@ COMMENT ON TABLE public.mdl_lti_tool_settings IS 'LTI tool setting values'; -- --- TOC entry 627 (class 1259 OID 61459) -- Name: mdl_lti_tool_settings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -11936,8 +10604,6 @@ CREATE SEQUENCE public.mdl_lti_tool_settings_id_seq ALTER TABLE public.mdl_lti_tool_settings_id_seq OWNER TO postgres; -- --- TOC entry 10975 (class 0 OID 0) --- Dependencies: 627 -- Name: mdl_lti_tool_settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -11945,7 +10611,6 @@ ALTER SEQUENCE public.mdl_lti_tool_settings_id_seq OWNED BY public.mdl_lti_tool_ -- --- TOC entry 628 (class 1259 OID 61461) -- Name: mdl_lti_types; Type: TABLE; Schema: public; Owner: postgres -- @@ -11974,8 +10639,6 @@ CREATE TABLE public.mdl_lti_types ( ALTER TABLE public.mdl_lti_types OWNER TO postgres; -- --- TOC entry 10976 (class 0 OID 0) --- Dependencies: 628 -- Name: TABLE mdl_lti_types; Type: COMMENT; Schema: public; Owner: postgres -- @@ -11983,7 +10646,6 @@ COMMENT ON TABLE public.mdl_lti_types IS 'Basic LTI pre-configured activities'; -- --- TOC entry 629 (class 1259 OID 61472) -- Name: mdl_lti_types_config; Type: TABLE; Schema: public; Owner: postgres -- @@ -11998,8 +10660,6 @@ CREATE TABLE public.mdl_lti_types_config ( ALTER TABLE public.mdl_lti_types_config OWNER TO postgres; -- --- TOC entry 10977 (class 0 OID 0) --- Dependencies: 629 -- Name: TABLE mdl_lti_types_config; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12007,7 +10667,6 @@ COMMENT ON TABLE public.mdl_lti_types_config IS 'Basic LTI types configuration'; -- --- TOC entry 630 (class 1259 OID 61479) -- Name: mdl_lti_types_config_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12022,8 +10681,6 @@ CREATE SEQUENCE public.mdl_lti_types_config_id_seq ALTER TABLE public.mdl_lti_types_config_id_seq OWNER TO postgres; -- --- TOC entry 10978 (class 0 OID 0) --- Dependencies: 630 -- Name: mdl_lti_types_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12031,7 +10688,6 @@ ALTER SEQUENCE public.mdl_lti_types_config_id_seq OWNED BY public.mdl_lti_types_ -- --- TOC entry 631 (class 1259 OID 61481) -- Name: mdl_lti_types_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12046,8 +10702,6 @@ CREATE SEQUENCE public.mdl_lti_types_id_seq ALTER TABLE public.mdl_lti_types_id_seq OWNER TO postgres; -- --- TOC entry 10979 (class 0 OID 0) --- Dependencies: 631 -- Name: mdl_lti_types_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12055,7 +10709,6 @@ ALTER SEQUENCE public.mdl_lti_types_id_seq OWNED BY public.mdl_lti_types.id; -- --- TOC entry 632 (class 1259 OID 61483) -- Name: mdl_ltiservice_gradebookservices; Type: TABLE; Schema: public; Owner: postgres -- @@ -12075,8 +10728,6 @@ CREATE TABLE public.mdl_ltiservice_gradebookservices ( ALTER TABLE public.mdl_ltiservice_gradebookservices OWNER TO postgres; -- --- TOC entry 10980 (class 0 OID 0) --- Dependencies: 632 -- Name: TABLE mdl_ltiservice_gradebookservices; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12084,7 +10735,6 @@ COMMENT ON TABLE public.mdl_ltiservice_gradebookservices IS 'This file records t -- --- TOC entry 633 (class 1259 OID 61489) -- Name: mdl_ltiservice_gradebookservices_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12099,8 +10749,6 @@ CREATE SEQUENCE public.mdl_ltiservice_gradebookservices_id_seq ALTER TABLE public.mdl_ltiservice_gradebookservices_id_seq OWNER TO postgres; -- --- TOC entry 10981 (class 0 OID 0) --- Dependencies: 633 -- Name: mdl_ltiservice_gradebookservices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12108,7 +10756,6 @@ ALTER SEQUENCE public.mdl_ltiservice_gradebookservices_id_seq OWNED BY public.md -- --- TOC entry 634 (class 1259 OID 61491) -- Name: mdl_message; Type: TABLE; Schema: public; Owner: postgres -- @@ -12136,8 +10783,6 @@ CREATE TABLE public.mdl_message ( ALTER TABLE public.mdl_message OWNER TO postgres; -- --- TOC entry 10982 (class 0 OID 0) --- Dependencies: 634 -- Name: TABLE mdl_message; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12145,7 +10790,6 @@ COMMENT ON TABLE public.mdl_message IS 'Stores all unread messages'; -- --- TOC entry 635 (class 1259 OID 61504) -- Name: mdl_message_airnotifier_devices; Type: TABLE; Schema: public; Owner: postgres -- @@ -12159,8 +10803,6 @@ CREATE TABLE public.mdl_message_airnotifier_devices ( ALTER TABLE public.mdl_message_airnotifier_devices OWNER TO postgres; -- --- TOC entry 10983 (class 0 OID 0) --- Dependencies: 635 -- Name: TABLE mdl_message_airnotifier_devices; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12168,7 +10810,6 @@ COMMENT ON TABLE public.mdl_message_airnotifier_devices IS 'Store information ab -- --- TOC entry 636 (class 1259 OID 61508) -- Name: mdl_message_airnotifier_devices_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12183,8 +10824,6 @@ CREATE SEQUENCE public.mdl_message_airnotifier_devices_id_seq ALTER TABLE public.mdl_message_airnotifier_devices_id_seq OWNER TO postgres; -- --- TOC entry 10984 (class 0 OID 0) --- Dependencies: 636 -- Name: mdl_message_airnotifier_devices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12192,7 +10831,6 @@ ALTER SEQUENCE public.mdl_message_airnotifier_devices_id_seq OWNED BY public.mdl -- --- TOC entry 637 (class 1259 OID 61510) -- Name: mdl_message_contact_requests; Type: TABLE; Schema: public; Owner: postgres -- @@ -12207,8 +10845,6 @@ CREATE TABLE public.mdl_message_contact_requests ( ALTER TABLE public.mdl_message_contact_requests OWNER TO postgres; -- --- TOC entry 10985 (class 0 OID 0) --- Dependencies: 637 -- Name: TABLE mdl_message_contact_requests; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12216,7 +10852,6 @@ COMMENT ON TABLE public.mdl_message_contact_requests IS 'Maintains list of conta -- --- TOC entry 638 (class 1259 OID 61513) -- Name: mdl_message_contact_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12231,8 +10866,6 @@ CREATE SEQUENCE public.mdl_message_contact_requests_id_seq ALTER TABLE public.mdl_message_contact_requests_id_seq OWNER TO postgres; -- --- TOC entry 10986 (class 0 OID 0) --- Dependencies: 638 -- Name: mdl_message_contact_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12240,7 +10873,6 @@ ALTER SEQUENCE public.mdl_message_contact_requests_id_seq OWNED BY public.mdl_me -- --- TOC entry 639 (class 1259 OID 61515) -- Name: mdl_message_contacts; Type: TABLE; Schema: public; Owner: postgres -- @@ -12255,8 +10887,6 @@ CREATE TABLE public.mdl_message_contacts ( ALTER TABLE public.mdl_message_contacts OWNER TO postgres; -- --- TOC entry 10987 (class 0 OID 0) --- Dependencies: 639 -- Name: TABLE mdl_message_contacts; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12264,7 +10894,6 @@ COMMENT ON TABLE public.mdl_message_contacts IS 'Maintains lists of contacts bet -- --- TOC entry 640 (class 1259 OID 61518) -- Name: mdl_message_contacts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12279,8 +10908,6 @@ CREATE SEQUENCE public.mdl_message_contacts_id_seq ALTER TABLE public.mdl_message_contacts_id_seq OWNER TO postgres; -- --- TOC entry 10988 (class 0 OID 0) --- Dependencies: 640 -- Name: mdl_message_contacts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12288,7 +10915,6 @@ ALTER SEQUENCE public.mdl_message_contacts_id_seq OWNED BY public.mdl_message_co -- --- TOC entry 641 (class 1259 OID 61520) -- Name: mdl_message_conversation_actions; Type: TABLE; Schema: public; Owner: postgres -- @@ -12304,8 +10930,6 @@ CREATE TABLE public.mdl_message_conversation_actions ( ALTER TABLE public.mdl_message_conversation_actions OWNER TO postgres; -- --- TOC entry 10989 (class 0 OID 0) --- Dependencies: 641 -- Name: TABLE mdl_message_conversation_actions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12313,7 +10937,6 @@ COMMENT ON TABLE public.mdl_message_conversation_actions IS 'Stores all per-user -- --- TOC entry 642 (class 1259 OID 61523) -- Name: mdl_message_conversation_actions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12328,8 +10951,6 @@ CREATE SEQUENCE public.mdl_message_conversation_actions_id_seq ALTER TABLE public.mdl_message_conversation_actions_id_seq OWNER TO postgres; -- --- TOC entry 10990 (class 0 OID 0) --- Dependencies: 642 -- Name: mdl_message_conversation_actions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12337,7 +10958,6 @@ ALTER SEQUENCE public.mdl_message_conversation_actions_id_seq OWNED BY public.md -- --- TOC entry 643 (class 1259 OID 61525) -- Name: mdl_message_conversation_members; Type: TABLE; Schema: public; Owner: postgres -- @@ -12352,8 +10972,6 @@ CREATE TABLE public.mdl_message_conversation_members ( ALTER TABLE public.mdl_message_conversation_members OWNER TO postgres; -- --- TOC entry 10991 (class 0 OID 0) --- Dependencies: 643 -- Name: TABLE mdl_message_conversation_members; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12361,7 +10979,6 @@ COMMENT ON TABLE public.mdl_message_conversation_members IS 'Stores all members -- --- TOC entry 644 (class 1259 OID 61528) -- Name: mdl_message_conversation_members_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12376,8 +10993,6 @@ CREATE SEQUENCE public.mdl_message_conversation_members_id_seq ALTER TABLE public.mdl_message_conversation_members_id_seq OWNER TO postgres; -- --- TOC entry 10992 (class 0 OID 0) --- Dependencies: 644 -- Name: mdl_message_conversation_members_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12385,7 +11000,6 @@ ALTER SEQUENCE public.mdl_message_conversation_members_id_seq OWNED BY public.md -- --- TOC entry 645 (class 1259 OID 61530) -- Name: mdl_message_conversations; Type: TABLE; Schema: public; Owner: postgres -- @@ -12407,8 +11021,6 @@ CREATE TABLE public.mdl_message_conversations ( ALTER TABLE public.mdl_message_conversations OWNER TO postgres; -- --- TOC entry 10993 (class 0 OID 0) --- Dependencies: 645 -- Name: TABLE mdl_message_conversations; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12416,7 +11028,6 @@ COMMENT ON TABLE public.mdl_message_conversations IS 'Stores all message convers -- --- TOC entry 646 (class 1259 OID 61538) -- Name: mdl_message_conversations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12431,8 +11042,6 @@ CREATE SEQUENCE public.mdl_message_conversations_id_seq ALTER TABLE public.mdl_message_conversations_id_seq OWNER TO postgres; -- --- TOC entry 10994 (class 0 OID 0) --- Dependencies: 646 -- Name: mdl_message_conversations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12440,7 +11049,6 @@ ALTER SEQUENCE public.mdl_message_conversations_id_seq OWNED BY public.mdl_messa -- --- TOC entry 647 (class 1259 OID 61540) -- Name: mdl_message_email_messages; Type: TABLE; Schema: public; Owner: postgres -- @@ -12455,8 +11063,6 @@ CREATE TABLE public.mdl_message_email_messages ( ALTER TABLE public.mdl_message_email_messages OWNER TO postgres; -- --- TOC entry 10995 (class 0 OID 0) --- Dependencies: 647 -- Name: TABLE mdl_message_email_messages; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12464,7 +11070,6 @@ COMMENT ON TABLE public.mdl_message_email_messages IS 'Keeps track of what email -- --- TOC entry 648 (class 1259 OID 61543) -- Name: mdl_message_email_messages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12479,8 +11084,6 @@ CREATE SEQUENCE public.mdl_message_email_messages_id_seq ALTER TABLE public.mdl_message_email_messages_id_seq OWNER TO postgres; -- --- TOC entry 10996 (class 0 OID 0) --- Dependencies: 648 -- Name: mdl_message_email_messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12488,7 +11091,6 @@ ALTER SEQUENCE public.mdl_message_email_messages_id_seq OWNED BY public.mdl_mess -- --- TOC entry 649 (class 1259 OID 61545) -- Name: mdl_message_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12503,8 +11105,6 @@ CREATE SEQUENCE public.mdl_message_id_seq ALTER TABLE public.mdl_message_id_seq OWNER TO postgres; -- --- TOC entry 10997 (class 0 OID 0) --- Dependencies: 649 -- Name: mdl_message_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12512,7 +11112,6 @@ ALTER SEQUENCE public.mdl_message_id_seq OWNED BY public.mdl_message.id; -- --- TOC entry 650 (class 1259 OID 61547) -- Name: mdl_message_popup; Type: TABLE; Schema: public; Owner: postgres -- @@ -12526,8 +11125,6 @@ CREATE TABLE public.mdl_message_popup ( ALTER TABLE public.mdl_message_popup OWNER TO postgres; -- --- TOC entry 10998 (class 0 OID 0) --- Dependencies: 650 -- Name: TABLE mdl_message_popup; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12535,7 +11132,6 @@ COMMENT ON TABLE public.mdl_message_popup IS 'Keep state of notifications for th -- --- TOC entry 651 (class 1259 OID 61551) -- Name: mdl_message_popup_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12550,8 +11146,6 @@ CREATE SEQUENCE public.mdl_message_popup_id_seq ALTER TABLE public.mdl_message_popup_id_seq OWNER TO postgres; -- --- TOC entry 10999 (class 0 OID 0) --- Dependencies: 651 -- Name: mdl_message_popup_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12559,7 +11153,6 @@ ALTER SEQUENCE public.mdl_message_popup_id_seq OWNED BY public.mdl_message_popup -- --- TOC entry 652 (class 1259 OID 61553) -- Name: mdl_message_popup_notifications; Type: TABLE; Schema: public; Owner: postgres -- @@ -12572,8 +11165,6 @@ CREATE TABLE public.mdl_message_popup_notifications ( ALTER TABLE public.mdl_message_popup_notifications OWNER TO postgres; -- --- TOC entry 11000 (class 0 OID 0) --- Dependencies: 652 -- Name: TABLE mdl_message_popup_notifications; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12581,7 +11172,6 @@ COMMENT ON TABLE public.mdl_message_popup_notifications IS 'List of notification -- --- TOC entry 653 (class 1259 OID 61556) -- Name: mdl_message_popup_notifications_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12596,8 +11186,6 @@ CREATE SEQUENCE public.mdl_message_popup_notifications_id_seq ALTER TABLE public.mdl_message_popup_notifications_id_seq OWNER TO postgres; -- --- TOC entry 11001 (class 0 OID 0) --- Dependencies: 653 -- Name: mdl_message_popup_notifications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12605,7 +11193,6 @@ ALTER SEQUENCE public.mdl_message_popup_notifications_id_seq OWNED BY public.mdl -- --- TOC entry 654 (class 1259 OID 61558) -- Name: mdl_message_processors; Type: TABLE; Schema: public; Owner: postgres -- @@ -12619,8 +11206,6 @@ CREATE TABLE public.mdl_message_processors ( ALTER TABLE public.mdl_message_processors OWNER TO postgres; -- --- TOC entry 11002 (class 0 OID 0) --- Dependencies: 654 -- Name: TABLE mdl_message_processors; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12628,7 +11213,6 @@ COMMENT ON TABLE public.mdl_message_processors IS 'List of message output plugin -- --- TOC entry 655 (class 1259 OID 61563) -- Name: mdl_message_processors_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12643,8 +11227,6 @@ CREATE SEQUENCE public.mdl_message_processors_id_seq ALTER TABLE public.mdl_message_processors_id_seq OWNER TO postgres; -- --- TOC entry 11003 (class 0 OID 0) --- Dependencies: 655 -- Name: mdl_message_processors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12652,7 +11234,6 @@ ALTER SEQUENCE public.mdl_message_processors_id_seq OWNED BY public.mdl_message_ -- --- TOC entry 656 (class 1259 OID 61565) -- Name: mdl_message_providers; Type: TABLE; Schema: public; Owner: postgres -- @@ -12667,8 +11248,6 @@ CREATE TABLE public.mdl_message_providers ( ALTER TABLE public.mdl_message_providers OWNER TO postgres; -- --- TOC entry 11004 (class 0 OID 0) --- Dependencies: 656 -- Name: TABLE mdl_message_providers; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12676,7 +11255,6 @@ COMMENT ON TABLE public.mdl_message_providers IS 'This table stores the message -- --- TOC entry 657 (class 1259 OID 61573) -- Name: mdl_message_providers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12691,8 +11269,6 @@ CREATE SEQUENCE public.mdl_message_providers_id_seq ALTER TABLE public.mdl_message_providers_id_seq OWNER TO postgres; -- --- TOC entry 11005 (class 0 OID 0) --- Dependencies: 657 -- Name: mdl_message_providers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12700,7 +11276,6 @@ ALTER SEQUENCE public.mdl_message_providers_id_seq OWNED BY public.mdl_message_p -- --- TOC entry 658 (class 1259 OID 61575) -- Name: mdl_message_read; Type: TABLE; Schema: public; Owner: postgres -- @@ -12728,8 +11303,6 @@ CREATE TABLE public.mdl_message_read ( ALTER TABLE public.mdl_message_read OWNER TO postgres; -- --- TOC entry 11006 (class 0 OID 0) --- Dependencies: 658 -- Name: TABLE mdl_message_read; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12737,7 +11310,6 @@ COMMENT ON TABLE public.mdl_message_read IS 'Stores all messages that have been -- --- TOC entry 659 (class 1259 OID 61589) -- Name: mdl_message_read_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12752,8 +11324,6 @@ CREATE SEQUENCE public.mdl_message_read_id_seq ALTER TABLE public.mdl_message_read_id_seq OWNER TO postgres; -- --- TOC entry 11007 (class 0 OID 0) --- Dependencies: 659 -- Name: mdl_message_read_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12761,7 +11331,6 @@ ALTER SEQUENCE public.mdl_message_read_id_seq OWNED BY public.mdl_message_read.i -- --- TOC entry 660 (class 1259 OID 61591) -- Name: mdl_message_user_actions; Type: TABLE; Schema: public; Owner: postgres -- @@ -12777,8 +11346,6 @@ CREATE TABLE public.mdl_message_user_actions ( ALTER TABLE public.mdl_message_user_actions OWNER TO postgres; -- --- TOC entry 11008 (class 0 OID 0) --- Dependencies: 660 -- Name: TABLE mdl_message_user_actions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12786,7 +11353,6 @@ COMMENT ON TABLE public.mdl_message_user_actions IS 'Stores all per-user actions -- --- TOC entry 661 (class 1259 OID 61594) -- Name: mdl_message_user_actions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12801,8 +11367,6 @@ CREATE SEQUENCE public.mdl_message_user_actions_id_seq ALTER TABLE public.mdl_message_user_actions_id_seq OWNER TO postgres; -- --- TOC entry 11009 (class 0 OID 0) --- Dependencies: 661 -- Name: mdl_message_user_actions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12810,7 +11374,6 @@ ALTER SEQUENCE public.mdl_message_user_actions_id_seq OWNED BY public.mdl_messag -- --- TOC entry 662 (class 1259 OID 61596) -- Name: mdl_message_users_blocked; Type: TABLE; Schema: public; Owner: postgres -- @@ -12825,8 +11388,6 @@ CREATE TABLE public.mdl_message_users_blocked ( ALTER TABLE public.mdl_message_users_blocked OWNER TO postgres; -- --- TOC entry 11010 (class 0 OID 0) --- Dependencies: 662 -- Name: TABLE mdl_message_users_blocked; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12834,7 +11395,6 @@ COMMENT ON TABLE public.mdl_message_users_blocked IS 'Maintains lists of blocked -- --- TOC entry 663 (class 1259 OID 61599) -- Name: mdl_message_users_blocked_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12849,8 +11409,6 @@ CREATE SEQUENCE public.mdl_message_users_blocked_id_seq ALTER TABLE public.mdl_message_users_blocked_id_seq OWNER TO postgres; -- --- TOC entry 11011 (class 0 OID 0) --- Dependencies: 663 -- Name: mdl_message_users_blocked_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12858,7 +11416,6 @@ ALTER SEQUENCE public.mdl_message_users_blocked_id_seq OWNED BY public.mdl_messa -- --- TOC entry 664 (class 1259 OID 61601) -- Name: mdl_messageinbound_datakeys; Type: TABLE; Schema: public; Owner: postgres -- @@ -12875,8 +11432,6 @@ CREATE TABLE public.mdl_messageinbound_datakeys ( ALTER TABLE public.mdl_messageinbound_datakeys OWNER TO postgres; -- --- TOC entry 11012 (class 0 OID 0) --- Dependencies: 664 -- Name: TABLE mdl_messageinbound_datakeys; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12884,7 +11439,6 @@ COMMENT ON TABLE public.mdl_messageinbound_datakeys IS 'Inbound Message data ite -- --- TOC entry 665 (class 1259 OID 61604) -- Name: mdl_messageinbound_datakeys_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12899,8 +11453,6 @@ CREATE SEQUENCE public.mdl_messageinbound_datakeys_id_seq ALTER TABLE public.mdl_messageinbound_datakeys_id_seq OWNER TO postgres; -- --- TOC entry 11013 (class 0 OID 0) --- Dependencies: 665 -- Name: mdl_messageinbound_datakeys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12908,7 +11460,6 @@ ALTER SEQUENCE public.mdl_messageinbound_datakeys_id_seq OWNED BY public.mdl_mes -- --- TOC entry 666 (class 1259 OID 61606) -- Name: mdl_messageinbound_handlers; Type: TABLE; Schema: public; Owner: postgres -- @@ -12925,8 +11476,6 @@ CREATE TABLE public.mdl_messageinbound_handlers ( ALTER TABLE public.mdl_messageinbound_handlers OWNER TO postgres; -- --- TOC entry 11014 (class 0 OID 0) --- Dependencies: 666 -- Name: TABLE mdl_messageinbound_handlers; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12934,7 +11483,6 @@ COMMENT ON TABLE public.mdl_messageinbound_handlers IS 'Inbound Message Handler -- --- TOC entry 667 (class 1259 OID 61614) -- Name: mdl_messageinbound_handlers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12949,8 +11497,6 @@ CREATE SEQUENCE public.mdl_messageinbound_handlers_id_seq ALTER TABLE public.mdl_messageinbound_handlers_id_seq OWNER TO postgres; -- --- TOC entry 11015 (class 0 OID 0) --- Dependencies: 667 -- Name: mdl_messageinbound_handlers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -12958,7 +11504,6 @@ ALTER SEQUENCE public.mdl_messageinbound_handlers_id_seq OWNED BY public.mdl_mes -- --- TOC entry 668 (class 1259 OID 61616) -- Name: mdl_messageinbound_messagelist; Type: TABLE; Schema: public; Owner: postgres -- @@ -12974,8 +11519,6 @@ CREATE TABLE public.mdl_messageinbound_messagelist ( ALTER TABLE public.mdl_messageinbound_messagelist OWNER TO postgres; -- --- TOC entry 11016 (class 0 OID 0) --- Dependencies: 668 -- Name: TABLE mdl_messageinbound_messagelist; Type: COMMENT; Schema: public; Owner: postgres -- @@ -12983,7 +11526,6 @@ COMMENT ON TABLE public.mdl_messageinbound_messagelist IS 'A list of message IDs -- --- TOC entry 669 (class 1259 OID 61622) -- Name: mdl_messageinbound_messagelist_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -12998,8 +11540,6 @@ CREATE SEQUENCE public.mdl_messageinbound_messagelist_id_seq ALTER TABLE public.mdl_messageinbound_messagelist_id_seq OWNER TO postgres; -- --- TOC entry 11017 (class 0 OID 0) --- Dependencies: 669 -- Name: mdl_messageinbound_messagelist_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13007,7 +11547,6 @@ ALTER SEQUENCE public.mdl_messageinbound_messagelist_id_seq OWNED BY public.mdl_ -- --- TOC entry 670 (class 1259 OID 61624) -- Name: mdl_messages; Type: TABLE; Schema: public; Owner: postgres -- @@ -13029,8 +11568,6 @@ CREATE TABLE public.mdl_messages ( ALTER TABLE public.mdl_messages OWNER TO postgres; -- --- TOC entry 11018 (class 0 OID 0) --- Dependencies: 670 -- Name: TABLE mdl_messages; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13038,7 +11575,6 @@ COMMENT ON TABLE public.mdl_messages IS 'Stores all messages'; -- --- TOC entry 671 (class 1259 OID 61632) -- Name: mdl_messages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13053,8 +11589,6 @@ CREATE SEQUENCE public.mdl_messages_id_seq ALTER TABLE public.mdl_messages_id_seq OWNER TO postgres; -- --- TOC entry 11019 (class 0 OID 0) --- Dependencies: 671 -- Name: mdl_messages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13062,7 +11596,6 @@ ALTER SEQUENCE public.mdl_messages_id_seq OWNED BY public.mdl_messages.id; -- --- TOC entry 672 (class 1259 OID 61634) -- Name: mdl_mnet_application; Type: TABLE; Schema: public; Owner: postgres -- @@ -13079,8 +11612,6 @@ CREATE TABLE public.mdl_mnet_application ( ALTER TABLE public.mdl_mnet_application OWNER TO postgres; -- --- TOC entry 11020 (class 0 OID 0) --- Dependencies: 672 -- Name: TABLE mdl_mnet_application; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13088,7 +11619,6 @@ COMMENT ON TABLE public.mdl_mnet_application IS 'Information about applications -- --- TOC entry 673 (class 1259 OID 61645) -- Name: mdl_mnet_application_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13103,8 +11633,6 @@ CREATE SEQUENCE public.mdl_mnet_application_id_seq ALTER TABLE public.mdl_mnet_application_id_seq OWNER TO postgres; -- --- TOC entry 11021 (class 0 OID 0) --- Dependencies: 673 -- Name: mdl_mnet_application_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13112,7 +11640,6 @@ ALTER SEQUENCE public.mdl_mnet_application_id_seq OWNED BY public.mdl_mnet_appli -- --- TOC entry 674 (class 1259 OID 61647) -- Name: mdl_mnet_host; Type: TABLE; Schema: public; Owner: postgres -- @@ -13138,8 +11665,6 @@ CREATE TABLE public.mdl_mnet_host ( ALTER TABLE public.mdl_mnet_host OWNER TO postgres; -- --- TOC entry 11022 (class 0 OID 0) --- Dependencies: 674 -- Name: TABLE mdl_mnet_host; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13147,7 +11672,6 @@ COMMENT ON TABLE public.mdl_mnet_host IS 'Information about the local and remote -- --- TOC entry 675 (class 1259 OID 61665) -- Name: mdl_mnet_host2service; Type: TABLE; Schema: public; Owner: postgres -- @@ -13163,8 +11687,6 @@ CREATE TABLE public.mdl_mnet_host2service ( ALTER TABLE public.mdl_mnet_host2service OWNER TO postgres; -- --- TOC entry 11023 (class 0 OID 0) --- Dependencies: 675 -- Name: TABLE mdl_mnet_host2service; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13172,7 +11694,6 @@ COMMENT ON TABLE public.mdl_mnet_host2service IS 'Information about the services -- --- TOC entry 676 (class 1259 OID 61672) -- Name: mdl_mnet_host2service_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13187,8 +11708,6 @@ CREATE SEQUENCE public.mdl_mnet_host2service_id_seq ALTER TABLE public.mdl_mnet_host2service_id_seq OWNER TO postgres; -- --- TOC entry 11024 (class 0 OID 0) --- Dependencies: 676 -- Name: mdl_mnet_host2service_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13196,7 +11715,6 @@ ALTER SEQUENCE public.mdl_mnet_host2service_id_seq OWNED BY public.mdl_mnet_host -- --- TOC entry 677 (class 1259 OID 61674) -- Name: mdl_mnet_host_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13211,8 +11729,6 @@ CREATE SEQUENCE public.mdl_mnet_host_id_seq ALTER TABLE public.mdl_mnet_host_id_seq OWNER TO postgres; -- --- TOC entry 11025 (class 0 OID 0) --- Dependencies: 677 -- Name: mdl_mnet_host_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13220,7 +11736,6 @@ ALTER SEQUENCE public.mdl_mnet_host_id_seq OWNED BY public.mdl_mnet_host.id; -- --- TOC entry 678 (class 1259 OID 61676) -- Name: mdl_mnet_log; Type: TABLE; Schema: public; Owner: postgres -- @@ -13244,8 +11759,6 @@ CREATE TABLE public.mdl_mnet_log ( ALTER TABLE public.mdl_mnet_log OWNER TO postgres; -- --- TOC entry 11026 (class 0 OID 0) --- Dependencies: 678 -- Name: TABLE mdl_mnet_log; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13253,7 +11766,6 @@ COMMENT ON TABLE public.mdl_mnet_log IS 'Store session data from users migrating -- --- TOC entry 679 (class 1259 OID 61694) -- Name: mdl_mnet_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13268,8 +11780,6 @@ CREATE SEQUENCE public.mdl_mnet_log_id_seq ALTER TABLE public.mdl_mnet_log_id_seq OWNER TO postgres; -- --- TOC entry 11027 (class 0 OID 0) --- Dependencies: 679 -- Name: mdl_mnet_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13277,7 +11787,6 @@ ALTER SEQUENCE public.mdl_mnet_log_id_seq OWNED BY public.mdl_mnet_log.id; -- --- TOC entry 680 (class 1259 OID 61696) -- Name: mdl_mnet_remote_rpc; Type: TABLE; Schema: public; Owner: postgres -- @@ -13294,8 +11803,6 @@ CREATE TABLE public.mdl_mnet_remote_rpc ( ALTER TABLE public.mdl_mnet_remote_rpc OWNER TO postgres; -- --- TOC entry 11028 (class 0 OID 0) --- Dependencies: 680 -- Name: TABLE mdl_mnet_remote_rpc; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13303,7 +11810,6 @@ COMMENT ON TABLE public.mdl_mnet_remote_rpc IS 'This table describes functions t -- --- TOC entry 681 (class 1259 OID 61703) -- Name: mdl_mnet_remote_rpc_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13318,8 +11824,6 @@ CREATE SEQUENCE public.mdl_mnet_remote_rpc_id_seq ALTER TABLE public.mdl_mnet_remote_rpc_id_seq OWNER TO postgres; -- --- TOC entry 11029 (class 0 OID 0) --- Dependencies: 681 -- Name: mdl_mnet_remote_rpc_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13327,7 +11831,6 @@ ALTER SEQUENCE public.mdl_mnet_remote_rpc_id_seq OWNED BY public.mdl_mnet_remote -- --- TOC entry 682 (class 1259 OID 61705) -- Name: mdl_mnet_remote_service2rpc; Type: TABLE; Schema: public; Owner: postgres -- @@ -13341,8 +11844,6 @@ CREATE TABLE public.mdl_mnet_remote_service2rpc ( ALTER TABLE public.mdl_mnet_remote_service2rpc OWNER TO postgres; -- --- TOC entry 11030 (class 0 OID 0) --- Dependencies: 682 -- Name: TABLE mdl_mnet_remote_service2rpc; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13350,7 +11851,6 @@ COMMENT ON TABLE public.mdl_mnet_remote_service2rpc IS 'Group functions or metho -- --- TOC entry 683 (class 1259 OID 61710) -- Name: mdl_mnet_remote_service2rpc_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13365,8 +11865,6 @@ CREATE SEQUENCE public.mdl_mnet_remote_service2rpc_id_seq ALTER TABLE public.mdl_mnet_remote_service2rpc_id_seq OWNER TO postgres; -- --- TOC entry 11031 (class 0 OID 0) --- Dependencies: 683 -- Name: mdl_mnet_remote_service2rpc_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13374,7 +11872,6 @@ ALTER SEQUENCE public.mdl_mnet_remote_service2rpc_id_seq OWNED BY public.mdl_mne -- --- TOC entry 684 (class 1259 OID 61712) -- Name: mdl_mnet_rpc; Type: TABLE; Schema: public; Owner: postgres -- @@ -13396,8 +11893,6 @@ CREATE TABLE public.mdl_mnet_rpc ( ALTER TABLE public.mdl_mnet_rpc OWNER TO postgres; -- --- TOC entry 11032 (class 0 OID 0) --- Dependencies: 684 -- Name: TABLE mdl_mnet_rpc; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13405,7 +11900,6 @@ COMMENT ON TABLE public.mdl_mnet_rpc IS 'Functions or methods that we may publis -- --- TOC entry 685 (class 1259 OID 61724) -- Name: mdl_mnet_rpc_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13420,8 +11914,6 @@ CREATE SEQUENCE public.mdl_mnet_rpc_id_seq ALTER TABLE public.mdl_mnet_rpc_id_seq OWNER TO postgres; -- --- TOC entry 11033 (class 0 OID 0) --- Dependencies: 685 -- Name: mdl_mnet_rpc_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13429,7 +11921,6 @@ ALTER SEQUENCE public.mdl_mnet_rpc_id_seq OWNED BY public.mdl_mnet_rpc.id; -- --- TOC entry 686 (class 1259 OID 61726) -- Name: mdl_mnet_service; Type: TABLE; Schema: public; Owner: postgres -- @@ -13445,8 +11936,6 @@ CREATE TABLE public.mdl_mnet_service ( ALTER TABLE public.mdl_mnet_service OWNER TO postgres; -- --- TOC entry 11034 (class 0 OID 0) --- Dependencies: 686 -- Name: TABLE mdl_mnet_service; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13454,7 +11943,6 @@ COMMENT ON TABLE public.mdl_mnet_service IS 'A service is a group of functions'; -- --- TOC entry 687 (class 1259 OID 61733) -- Name: mdl_mnet_service2rpc; Type: TABLE; Schema: public; Owner: postgres -- @@ -13468,8 +11956,6 @@ CREATE TABLE public.mdl_mnet_service2rpc ( ALTER TABLE public.mdl_mnet_service2rpc OWNER TO postgres; -- --- TOC entry 11035 (class 0 OID 0) --- Dependencies: 687 -- Name: TABLE mdl_mnet_service2rpc; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13477,7 +11963,6 @@ COMMENT ON TABLE public.mdl_mnet_service2rpc IS 'Group functions or methods unde -- --- TOC entry 688 (class 1259 OID 61738) -- Name: mdl_mnet_service2rpc_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13492,8 +11977,6 @@ CREATE SEQUENCE public.mdl_mnet_service2rpc_id_seq ALTER TABLE public.mdl_mnet_service2rpc_id_seq OWNER TO postgres; -- --- TOC entry 11036 (class 0 OID 0) --- Dependencies: 688 -- Name: mdl_mnet_service2rpc_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13501,7 +11984,6 @@ ALTER SEQUENCE public.mdl_mnet_service2rpc_id_seq OWNED BY public.mdl_mnet_servi -- --- TOC entry 689 (class 1259 OID 61740) -- Name: mdl_mnet_service_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13516,8 +11998,6 @@ CREATE SEQUENCE public.mdl_mnet_service_id_seq ALTER TABLE public.mdl_mnet_service_id_seq OWNER TO postgres; -- --- TOC entry 11037 (class 0 OID 0) --- Dependencies: 689 -- Name: mdl_mnet_service_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13525,7 +12005,6 @@ ALTER SEQUENCE public.mdl_mnet_service_id_seq OWNED BY public.mdl_mnet_service.i -- --- TOC entry 690 (class 1259 OID 61742) -- Name: mdl_mnet_session; Type: TABLE; Schema: public; Owner: postgres -- @@ -13545,8 +12024,6 @@ CREATE TABLE public.mdl_mnet_session ( ALTER TABLE public.mdl_mnet_session OWNER TO postgres; -- --- TOC entry 11038 (class 0 OID 0) --- Dependencies: 690 -- Name: TABLE mdl_mnet_session; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13554,7 +12031,6 @@ COMMENT ON TABLE public.mdl_mnet_session IS 'Store session data from users migra -- --- TOC entry 691 (class 1259 OID 61753) -- Name: mdl_mnet_session_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13569,8 +12045,6 @@ CREATE SEQUENCE public.mdl_mnet_session_id_seq ALTER TABLE public.mdl_mnet_session_id_seq OWNER TO postgres; -- --- TOC entry 11039 (class 0 OID 0) --- Dependencies: 691 -- Name: mdl_mnet_session_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13578,7 +12052,6 @@ ALTER SEQUENCE public.mdl_mnet_session_id_seq OWNED BY public.mdl_mnet_session.i -- --- TOC entry 692 (class 1259 OID 61755) -- Name: mdl_mnet_sso_access_control; Type: TABLE; Schema: public; Owner: postgres -- @@ -13593,8 +12066,6 @@ CREATE TABLE public.mdl_mnet_sso_access_control ( ALTER TABLE public.mdl_mnet_sso_access_control OWNER TO postgres; -- --- TOC entry 11040 (class 0 OID 0) --- Dependencies: 692 -- Name: TABLE mdl_mnet_sso_access_control; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13602,7 +12073,6 @@ COMMENT ON TABLE public.mdl_mnet_sso_access_control IS 'Users by host permitted -- --- TOC entry 693 (class 1259 OID 61761) -- Name: mdl_mnet_sso_access_control_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13617,8 +12087,6 @@ CREATE SEQUENCE public.mdl_mnet_sso_access_control_id_seq ALTER TABLE public.mdl_mnet_sso_access_control_id_seq OWNER TO postgres; -- --- TOC entry 11041 (class 0 OID 0) --- Dependencies: 693 -- Name: mdl_mnet_sso_access_control_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13626,7 +12094,6 @@ ALTER SEQUENCE public.mdl_mnet_sso_access_control_id_seq OWNED BY public.mdl_mne -- --- TOC entry 694 (class 1259 OID 61763) -- Name: mdl_mnetservice_enrol_courses; Type: TABLE; Schema: public; Owner: postgres -- @@ -13651,8 +12118,6 @@ CREATE TABLE public.mdl_mnetservice_enrol_courses ( ALTER TABLE public.mdl_mnetservice_enrol_courses OWNER TO postgres; -- --- TOC entry 11042 (class 0 OID 0) --- Dependencies: 694 -- Name: TABLE mdl_mnetservice_enrol_courses; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13660,7 +12125,6 @@ COMMENT ON TABLE public.mdl_mnetservice_enrol_courses IS 'Caches the information -- --- TOC entry 695 (class 1259 OID 61776) -- Name: mdl_mnetservice_enrol_courses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13675,8 +12139,6 @@ CREATE SEQUENCE public.mdl_mnetservice_enrol_courses_id_seq ALTER TABLE public.mdl_mnetservice_enrol_courses_id_seq OWNER TO postgres; -- --- TOC entry 11043 (class 0 OID 0) --- Dependencies: 695 -- Name: mdl_mnetservice_enrol_courses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13684,7 +12146,6 @@ ALTER SEQUENCE public.mdl_mnetservice_enrol_courses_id_seq OWNED BY public.mdl_m -- --- TOC entry 696 (class 1259 OID 61778) -- Name: mdl_mnetservice_enrol_enrolments; Type: TABLE; Schema: public; Owner: postgres -- @@ -13702,8 +12163,6 @@ CREATE TABLE public.mdl_mnetservice_enrol_enrolments ( ALTER TABLE public.mdl_mnetservice_enrol_enrolments OWNER TO postgres; -- --- TOC entry 11044 (class 0 OID 0) --- Dependencies: 696 -- Name: TABLE mdl_mnetservice_enrol_enrolments; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13711,7 +12170,6 @@ COMMENT ON TABLE public.mdl_mnetservice_enrol_enrolments IS 'Caches the informat -- --- TOC entry 697 (class 1259 OID 61784) -- Name: mdl_mnetservice_enrol_enrolments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13726,8 +12184,6 @@ CREATE SEQUENCE public.mdl_mnetservice_enrol_enrolments_id_seq ALTER TABLE public.mdl_mnetservice_enrol_enrolments_id_seq OWNER TO postgres; -- --- TOC entry 11045 (class 0 OID 0) --- Dependencies: 697 -- Name: mdl_mnetservice_enrol_enrolments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13735,7 +12191,6 @@ ALTER SEQUENCE public.mdl_mnetservice_enrol_enrolments_id_seq OWNED BY public.md -- --- TOC entry 698 (class 1259 OID 61786) -- Name: mdl_modules; Type: TABLE; Schema: public; Owner: postgres -- @@ -13752,8 +12207,6 @@ CREATE TABLE public.mdl_modules ( ALTER TABLE public.mdl_modules OWNER TO postgres; -- --- TOC entry 11046 (class 0 OID 0) --- Dependencies: 698 -- Name: TABLE mdl_modules; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13761,7 +12214,6 @@ COMMENT ON TABLE public.mdl_modules IS 'modules available in the site'; -- --- TOC entry 699 (class 1259 OID 61794) -- Name: mdl_modules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13776,8 +12228,6 @@ CREATE SEQUENCE public.mdl_modules_id_seq ALTER TABLE public.mdl_modules_id_seq OWNER TO postgres; -- --- TOC entry 11047 (class 0 OID 0) --- Dependencies: 699 -- Name: mdl_modules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13785,7 +12235,6 @@ ALTER SEQUENCE public.mdl_modules_id_seq OWNED BY public.mdl_modules.id; -- --- TOC entry 700 (class 1259 OID 61796) -- Name: mdl_my_pages; Type: TABLE; Schema: public; Owner: postgres -- @@ -13801,8 +12250,6 @@ CREATE TABLE public.mdl_my_pages ( ALTER TABLE public.mdl_my_pages OWNER TO postgres; -- --- TOC entry 11048 (class 0 OID 0) --- Dependencies: 700 -- Name: TABLE mdl_my_pages; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13810,7 +12257,6 @@ COMMENT ON TABLE public.mdl_my_pages IS 'Extra user pages for the My Moodle syst -- --- TOC entry 701 (class 1259 OID 61803) -- Name: mdl_my_pages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13825,8 +12271,6 @@ CREATE SEQUENCE public.mdl_my_pages_id_seq ALTER TABLE public.mdl_my_pages_id_seq OWNER TO postgres; -- --- TOC entry 11049 (class 0 OID 0) --- Dependencies: 701 -- Name: mdl_my_pages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13834,7 +12278,6 @@ ALTER SEQUENCE public.mdl_my_pages_id_seq OWNED BY public.mdl_my_pages.id; -- --- TOC entry 702 (class 1259 OID 61805) -- Name: mdl_notifications; Type: TABLE; Schema: public; Owner: postgres -- @@ -13860,8 +12303,6 @@ CREATE TABLE public.mdl_notifications ( ALTER TABLE public.mdl_notifications OWNER TO postgres; -- --- TOC entry 11050 (class 0 OID 0) --- Dependencies: 702 -- Name: TABLE mdl_notifications; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13869,7 +12310,6 @@ COMMENT ON TABLE public.mdl_notifications IS 'Stores all notifications'; -- --- TOC entry 703 (class 1259 OID 61812) -- Name: mdl_notifications_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13884,8 +12324,6 @@ CREATE SEQUENCE public.mdl_notifications_id_seq ALTER TABLE public.mdl_notifications_id_seq OWNER TO postgres; -- --- TOC entry 11051 (class 0 OID 0) --- Dependencies: 703 -- Name: mdl_notifications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13893,7 +12331,6 @@ ALTER SEQUENCE public.mdl_notifications_id_seq OWNED BY public.mdl_notifications -- --- TOC entry 704 (class 1259 OID 61814) -- Name: mdl_oauth2_access_token; Type: TABLE; Schema: public; Owner: postgres -- @@ -13912,8 +12349,6 @@ CREATE TABLE public.mdl_oauth2_access_token ( ALTER TABLE public.mdl_oauth2_access_token OWNER TO postgres; -- --- TOC entry 11052 (class 0 OID 0) --- Dependencies: 704 -- Name: TABLE mdl_oauth2_access_token; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13921,7 +12356,6 @@ COMMENT ON TABLE public.mdl_oauth2_access_token IS 'Stores access tokens for sys -- --- TOC entry 705 (class 1259 OID 61820) -- Name: mdl_oauth2_access_token_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13936,8 +12370,6 @@ CREATE SEQUENCE public.mdl_oauth2_access_token_id_seq ALTER TABLE public.mdl_oauth2_access_token_id_seq OWNER TO postgres; -- --- TOC entry 11053 (class 0 OID 0) --- Dependencies: 705 -- Name: mdl_oauth2_access_token_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13945,7 +12377,6 @@ ALTER SEQUENCE public.mdl_oauth2_access_token_id_seq OWNED BY public.mdl_oauth2_ -- --- TOC entry 706 (class 1259 OID 61822) -- Name: mdl_oauth2_endpoint; Type: TABLE; Schema: public; Owner: postgres -- @@ -13963,8 +12394,6 @@ CREATE TABLE public.mdl_oauth2_endpoint ( ALTER TABLE public.mdl_oauth2_endpoint OWNER TO postgres; -- --- TOC entry 11054 (class 0 OID 0) --- Dependencies: 706 -- Name: TABLE mdl_oauth2_endpoint; Type: COMMENT; Schema: public; Owner: postgres -- @@ -13972,7 +12401,6 @@ COMMENT ON TABLE public.mdl_oauth2_endpoint IS 'Describes the named endpoint for -- --- TOC entry 707 (class 1259 OID 61829) -- Name: mdl_oauth2_endpoint_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -13987,8 +12415,6 @@ CREATE SEQUENCE public.mdl_oauth2_endpoint_id_seq ALTER TABLE public.mdl_oauth2_endpoint_id_seq OWNER TO postgres; -- --- TOC entry 11055 (class 0 OID 0) --- Dependencies: 707 -- Name: mdl_oauth2_endpoint_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -13996,7 +12422,6 @@ ALTER SEQUENCE public.mdl_oauth2_endpoint_id_seq OWNED BY public.mdl_oauth2_endp -- --- TOC entry 708 (class 1259 OID 61831) -- Name: mdl_oauth2_issuer; Type: TABLE; Schema: public; Owner: postgres -- @@ -14027,8 +12452,6 @@ CREATE TABLE public.mdl_oauth2_issuer ( ALTER TABLE public.mdl_oauth2_issuer OWNER TO postgres; -- --- TOC entry 11056 (class 0 OID 0) --- Dependencies: 708 -- Name: TABLE mdl_oauth2_issuer; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14036,7 +12459,6 @@ COMMENT ON TABLE public.mdl_oauth2_issuer IS 'Details for an oauth 2 connect ide -- --- TOC entry 709 (class 1259 OID 61842) -- Name: mdl_oauth2_issuer_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14051,8 +12473,6 @@ CREATE SEQUENCE public.mdl_oauth2_issuer_id_seq ALTER TABLE public.mdl_oauth2_issuer_id_seq OWNER TO postgres; -- --- TOC entry 11057 (class 0 OID 0) --- Dependencies: 709 -- Name: mdl_oauth2_issuer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14060,7 +12480,6 @@ ALTER SEQUENCE public.mdl_oauth2_issuer_id_seq OWNED BY public.mdl_oauth2_issuer -- --- TOC entry 710 (class 1259 OID 61844) -- Name: mdl_oauth2_system_account; Type: TABLE; Schema: public; Owner: postgres -- @@ -14080,8 +12499,6 @@ CREATE TABLE public.mdl_oauth2_system_account ( ALTER TABLE public.mdl_oauth2_system_account OWNER TO postgres; -- --- TOC entry 11058 (class 0 OID 0) --- Dependencies: 710 -- Name: TABLE mdl_oauth2_system_account; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14089,7 +12506,6 @@ COMMENT ON TABLE public.mdl_oauth2_system_account IS 'Stored details used to get -- --- TOC entry 711 (class 1259 OID 61850) -- Name: mdl_oauth2_system_account_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14104,8 +12520,6 @@ CREATE SEQUENCE public.mdl_oauth2_system_account_id_seq ALTER TABLE public.mdl_oauth2_system_account_id_seq OWNER TO postgres; -- --- TOC entry 11059 (class 0 OID 0) --- Dependencies: 711 -- Name: mdl_oauth2_system_account_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14113,7 +12527,6 @@ ALTER SEQUENCE public.mdl_oauth2_system_account_id_seq OWNED BY public.mdl_oauth -- --- TOC entry 712 (class 1259 OID 61852) -- Name: mdl_oauth2_user_field_mapping; Type: TABLE; Schema: public; Owner: postgres -- @@ -14131,8 +12544,6 @@ CREATE TABLE public.mdl_oauth2_user_field_mapping ( ALTER TABLE public.mdl_oauth2_user_field_mapping OWNER TO postgres; -- --- TOC entry 11060 (class 0 OID 0) --- Dependencies: 712 -- Name: TABLE mdl_oauth2_user_field_mapping; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14140,7 +12551,6 @@ COMMENT ON TABLE public.mdl_oauth2_user_field_mapping IS 'Mapping of oauth user -- --- TOC entry 713 (class 1259 OID 61857) -- Name: mdl_oauth2_user_field_mapping_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14155,8 +12565,6 @@ CREATE SEQUENCE public.mdl_oauth2_user_field_mapping_id_seq ALTER TABLE public.mdl_oauth2_user_field_mapping_id_seq OWNER TO postgres; -- --- TOC entry 11061 (class 0 OID 0) --- Dependencies: 713 -- Name: mdl_oauth2_user_field_mapping_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14164,7 +12572,6 @@ ALTER SEQUENCE public.mdl_oauth2_user_field_mapping_id_seq OWNED BY public.mdl_o -- --- TOC entry 714 (class 1259 OID 61859) -- Name: mdl_page; Type: TABLE; Schema: public; Owner: postgres -- @@ -14188,8 +12595,6 @@ CREATE TABLE public.mdl_page ( ALTER TABLE public.mdl_page OWNER TO postgres; -- --- TOC entry 11062 (class 0 OID 0) --- Dependencies: 714 -- Name: TABLE mdl_page; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14197,7 +12602,6 @@ COMMENT ON TABLE public.mdl_page IS 'Each record is one page and its config data -- --- TOC entry 715 (class 1259 OID 61873) -- Name: mdl_page_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14212,8 +12616,6 @@ CREATE SEQUENCE public.mdl_page_id_seq ALTER TABLE public.mdl_page_id_seq OWNER TO postgres; -- --- TOC entry 11063 (class 0 OID 0) --- Dependencies: 715 -- Name: mdl_page_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14221,7 +12623,6 @@ ALTER SEQUENCE public.mdl_page_id_seq OWNED BY public.mdl_page.id; -- --- TOC entry 716 (class 1259 OID 61875) -- Name: mdl_portfolio_instance; Type: TABLE; Schema: public; Owner: postgres -- @@ -14236,8 +12637,6 @@ CREATE TABLE public.mdl_portfolio_instance ( ALTER TABLE public.mdl_portfolio_instance OWNER TO postgres; -- --- TOC entry 11064 (class 0 OID 0) --- Dependencies: 716 -- Name: TABLE mdl_portfolio_instance; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14245,7 +12644,6 @@ COMMENT ON TABLE public.mdl_portfolio_instance IS 'base table (not including con -- --- TOC entry 717 (class 1259 OID 61881) -- Name: mdl_portfolio_instance_config; Type: TABLE; Schema: public; Owner: postgres -- @@ -14260,8 +12658,6 @@ CREATE TABLE public.mdl_portfolio_instance_config ( ALTER TABLE public.mdl_portfolio_instance_config OWNER TO postgres; -- --- TOC entry 11065 (class 0 OID 0) --- Dependencies: 717 -- Name: TABLE mdl_portfolio_instance_config; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14269,7 +12665,6 @@ COMMENT ON TABLE public.mdl_portfolio_instance_config IS 'config for portfolio p -- --- TOC entry 718 (class 1259 OID 61888) -- Name: mdl_portfolio_instance_config_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14284,8 +12679,6 @@ CREATE SEQUENCE public.mdl_portfolio_instance_config_id_seq ALTER TABLE public.mdl_portfolio_instance_config_id_seq OWNER TO postgres; -- --- TOC entry 11066 (class 0 OID 0) --- Dependencies: 718 -- Name: mdl_portfolio_instance_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14293,7 +12686,6 @@ ALTER SEQUENCE public.mdl_portfolio_instance_config_id_seq OWNED BY public.mdl_p -- --- TOC entry 719 (class 1259 OID 61890) -- Name: mdl_portfolio_instance_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14308,8 +12700,6 @@ CREATE SEQUENCE public.mdl_portfolio_instance_id_seq ALTER TABLE public.mdl_portfolio_instance_id_seq OWNER TO postgres; -- --- TOC entry 11067 (class 0 OID 0) --- Dependencies: 719 -- Name: mdl_portfolio_instance_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14317,7 +12707,6 @@ ALTER SEQUENCE public.mdl_portfolio_instance_id_seq OWNED BY public.mdl_portfoli -- --- TOC entry 720 (class 1259 OID 61892) -- Name: mdl_portfolio_instance_user; Type: TABLE; Schema: public; Owner: postgres -- @@ -14333,8 +12722,6 @@ CREATE TABLE public.mdl_portfolio_instance_user ( ALTER TABLE public.mdl_portfolio_instance_user OWNER TO postgres; -- --- TOC entry 11068 (class 0 OID 0) --- Dependencies: 720 -- Name: TABLE mdl_portfolio_instance_user; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14342,7 +12729,6 @@ COMMENT ON TABLE public.mdl_portfolio_instance_user IS 'user data for portfolio -- --- TOC entry 721 (class 1259 OID 61899) -- Name: mdl_portfolio_instance_user_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14357,8 +12743,6 @@ CREATE SEQUENCE public.mdl_portfolio_instance_user_id_seq ALTER TABLE public.mdl_portfolio_instance_user_id_seq OWNER TO postgres; -- --- TOC entry 11069 (class 0 OID 0) --- Dependencies: 721 -- Name: mdl_portfolio_instance_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14366,7 +12750,6 @@ ALTER SEQUENCE public.mdl_portfolio_instance_user_id_seq OWNED BY public.mdl_por -- --- TOC entry 722 (class 1259 OID 61901) -- Name: mdl_portfolio_log; Type: TABLE; Schema: public; Owner: postgres -- @@ -14388,8 +12771,6 @@ CREATE TABLE public.mdl_portfolio_log ( ALTER TABLE public.mdl_portfolio_log OWNER TO postgres; -- --- TOC entry 11070 (class 0 OID 0) --- Dependencies: 722 -- Name: TABLE mdl_portfolio_log; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14397,7 +12778,6 @@ COMMENT ON TABLE public.mdl_portfolio_log IS 'log of portfolio transfers (used t -- --- TOC entry 723 (class 1259 OID 61913) -- Name: mdl_portfolio_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14412,8 +12792,6 @@ CREATE SEQUENCE public.mdl_portfolio_log_id_seq ALTER TABLE public.mdl_portfolio_log_id_seq OWNER TO postgres; -- --- TOC entry 11071 (class 0 OID 0) --- Dependencies: 723 -- Name: mdl_portfolio_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14421,7 +12799,6 @@ ALTER SEQUENCE public.mdl_portfolio_log_id_seq OWNED BY public.mdl_portfolio_log -- --- TOC entry 724 (class 1259 OID 61915) -- Name: mdl_portfolio_mahara_queue; Type: TABLE; Schema: public; Owner: postgres -- @@ -14435,8 +12812,6 @@ CREATE TABLE public.mdl_portfolio_mahara_queue ( ALTER TABLE public.mdl_portfolio_mahara_queue OWNER TO postgres; -- --- TOC entry 11072 (class 0 OID 0) --- Dependencies: 724 -- Name: TABLE mdl_portfolio_mahara_queue; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14444,7 +12819,6 @@ COMMENT ON TABLE public.mdl_portfolio_mahara_queue IS 'maps mahara tokens to tra -- --- TOC entry 725 (class 1259 OID 61919) -- Name: mdl_portfolio_mahara_queue_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14459,8 +12833,6 @@ CREATE SEQUENCE public.mdl_portfolio_mahara_queue_id_seq ALTER TABLE public.mdl_portfolio_mahara_queue_id_seq OWNER TO postgres; -- --- TOC entry 11073 (class 0 OID 0) --- Dependencies: 725 -- Name: mdl_portfolio_mahara_queue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14468,7 +12840,6 @@ ALTER SEQUENCE public.mdl_portfolio_mahara_queue_id_seq OWNED BY public.mdl_port -- --- TOC entry 726 (class 1259 OID 61921) -- Name: mdl_portfolio_tempdata; Type: TABLE; Schema: public; Owner: postgres -- @@ -14485,8 +12856,6 @@ CREATE TABLE public.mdl_portfolio_tempdata ( ALTER TABLE public.mdl_portfolio_tempdata OWNER TO postgres; -- --- TOC entry 11074 (class 0 OID 0) --- Dependencies: 726 -- Name: TABLE mdl_portfolio_tempdata; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14494,7 +12863,6 @@ COMMENT ON TABLE public.mdl_portfolio_tempdata IS 'stores temporary data for por -- --- TOC entry 727 (class 1259 OID 61929) -- Name: mdl_portfolio_tempdata_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14509,8 +12877,6 @@ CREATE SEQUENCE public.mdl_portfolio_tempdata_id_seq ALTER TABLE public.mdl_portfolio_tempdata_id_seq OWNER TO postgres; -- --- TOC entry 11075 (class 0 OID 0) --- Dependencies: 727 -- Name: mdl_portfolio_tempdata_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14518,7 +12884,6 @@ ALTER SEQUENCE public.mdl_portfolio_tempdata_id_seq OWNED BY public.mdl_portfoli -- --- TOC entry 728 (class 1259 OID 61931) -- Name: mdl_post; Type: TABLE; Schema: public; Owner: postgres -- @@ -14548,8 +12913,6 @@ CREATE TABLE public.mdl_post ( ALTER TABLE public.mdl_post OWNER TO postgres; -- --- TOC entry 11076 (class 0 OID 0) --- Dependencies: 728 -- Name: TABLE mdl_post; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14557,7 +12920,6 @@ COMMENT ON TABLE public.mdl_post IS 'Generic post table to hold data blog entrie -- --- TOC entry 729 (class 1259 OID 61951) -- Name: mdl_post_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14572,8 +12934,6 @@ CREATE SEQUENCE public.mdl_post_id_seq ALTER TABLE public.mdl_post_id_seq OWNER TO postgres; -- --- TOC entry 11077 (class 0 OID 0) --- Dependencies: 729 -- Name: mdl_post_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14581,7 +12941,6 @@ ALTER SEQUENCE public.mdl_post_id_seq OWNED BY public.mdl_post.id; -- --- TOC entry 730 (class 1259 OID 61953) -- Name: mdl_profiling; Type: TABLE; Schema: public; Owner: postgres -- @@ -14603,8 +12962,6 @@ CREATE TABLE public.mdl_profiling ( ALTER TABLE public.mdl_profiling OWNER TO postgres; -- --- TOC entry 11078 (class 0 OID 0) --- Dependencies: 730 -- Name: TABLE mdl_profiling; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14612,7 +12969,6 @@ COMMENT ON TABLE public.mdl_profiling IS 'Stores the results of all the profilin -- --- TOC entry 731 (class 1259 OID 61963) -- Name: mdl_profiling_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14627,8 +12983,6 @@ CREATE SEQUENCE public.mdl_profiling_id_seq ALTER TABLE public.mdl_profiling_id_seq OWNER TO postgres; -- --- TOC entry 11079 (class 0 OID 0) --- Dependencies: 731 -- Name: mdl_profiling_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14636,7 +12990,6 @@ ALTER SEQUENCE public.mdl_profiling_id_seq OWNED BY public.mdl_profiling.id; -- --- TOC entry 732 (class 1259 OID 61965) -- Name: mdl_qtype_ddimageortext; Type: TABLE; Schema: public; Owner: postgres -- @@ -14657,8 +13010,6 @@ CREATE TABLE public.mdl_qtype_ddimageortext ( ALTER TABLE public.mdl_qtype_ddimageortext OWNER TO postgres; -- --- TOC entry 11080 (class 0 OID 0) --- Dependencies: 732 -- Name: TABLE mdl_qtype_ddimageortext; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14666,7 +13017,6 @@ COMMENT ON TABLE public.mdl_qtype_ddimageortext IS 'Defines drag and drop (text -- --- TOC entry 733 (class 1259 OID 61977) -- Name: mdl_qtype_ddimageortext_drags; Type: TABLE; Schema: public; Owner: postgres -- @@ -14683,8 +13033,6 @@ CREATE TABLE public.mdl_qtype_ddimageortext_drags ( ALTER TABLE public.mdl_qtype_ddimageortext_drags OWNER TO postgres; -- --- TOC entry 11081 (class 0 OID 0) --- Dependencies: 733 -- Name: TABLE mdl_qtype_ddimageortext_drags; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14692,7 +13040,6 @@ COMMENT ON TABLE public.mdl_qtype_ddimageortext_drags IS 'Images to drag. Actual -- --- TOC entry 734 (class 1259 OID 61987) -- Name: mdl_qtype_ddimageortext_drags_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14707,8 +13054,6 @@ CREATE SEQUENCE public.mdl_qtype_ddimageortext_drags_id_seq ALTER TABLE public.mdl_qtype_ddimageortext_drags_id_seq OWNER TO postgres; -- --- TOC entry 11082 (class 0 OID 0) --- Dependencies: 734 -- Name: mdl_qtype_ddimageortext_drags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14716,7 +13061,6 @@ ALTER SEQUENCE public.mdl_qtype_ddimageortext_drags_id_seq OWNED BY public.mdl_q -- --- TOC entry 735 (class 1259 OID 61989) -- Name: mdl_qtype_ddimageortext_drops; Type: TABLE; Schema: public; Owner: postgres -- @@ -14734,8 +13078,6 @@ CREATE TABLE public.mdl_qtype_ddimageortext_drops ( ALTER TABLE public.mdl_qtype_ddimageortext_drops OWNER TO postgres; -- --- TOC entry 11083 (class 0 OID 0) --- Dependencies: 735 -- Name: TABLE mdl_qtype_ddimageortext_drops; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14743,7 +13085,6 @@ COMMENT ON TABLE public.mdl_qtype_ddimageortext_drops IS 'Drop boxes'; -- --- TOC entry 736 (class 1259 OID 62000) -- Name: mdl_qtype_ddimageortext_drops_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14758,8 +13099,6 @@ CREATE SEQUENCE public.mdl_qtype_ddimageortext_drops_id_seq ALTER TABLE public.mdl_qtype_ddimageortext_drops_id_seq OWNER TO postgres; -- --- TOC entry 11084 (class 0 OID 0) --- Dependencies: 736 -- Name: mdl_qtype_ddimageortext_drops_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14767,7 +13106,6 @@ ALTER SEQUENCE public.mdl_qtype_ddimageortext_drops_id_seq OWNED BY public.mdl_q -- --- TOC entry 737 (class 1259 OID 62002) -- Name: mdl_qtype_ddimageortext_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14782,8 +13120,6 @@ CREATE SEQUENCE public.mdl_qtype_ddimageortext_id_seq ALTER TABLE public.mdl_qtype_ddimageortext_id_seq OWNER TO postgres; -- --- TOC entry 11085 (class 0 OID 0) --- Dependencies: 737 -- Name: mdl_qtype_ddimageortext_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14791,7 +13127,6 @@ ALTER SEQUENCE public.mdl_qtype_ddimageortext_id_seq OWNED BY public.mdl_qtype_d -- --- TOC entry 738 (class 1259 OID 62004) -- Name: mdl_qtype_ddmarker; Type: TABLE; Schema: public; Owner: postgres -- @@ -14813,8 +13148,6 @@ CREATE TABLE public.mdl_qtype_ddmarker ( ALTER TABLE public.mdl_qtype_ddmarker OWNER TO postgres; -- --- TOC entry 11086 (class 0 OID 0) --- Dependencies: 738 -- Name: TABLE mdl_qtype_ddmarker; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14822,7 +13155,6 @@ COMMENT ON TABLE public.mdl_qtype_ddmarker IS 'Defines drag and drop (text or im -- --- TOC entry 739 (class 1259 OID 62017) -- Name: mdl_qtype_ddmarker_drags; Type: TABLE; Schema: public; Owner: postgres -- @@ -14839,8 +13171,6 @@ CREATE TABLE public.mdl_qtype_ddmarker_drags ( ALTER TABLE public.mdl_qtype_ddmarker_drags OWNER TO postgres; -- --- TOC entry 11087 (class 0 OID 0) --- Dependencies: 739 -- Name: TABLE mdl_qtype_ddmarker_drags; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14848,7 +13178,6 @@ COMMENT ON TABLE public.mdl_qtype_ddmarker_drags IS 'Labels for markers to drag. -- --- TOC entry 740 (class 1259 OID 62027) -- Name: mdl_qtype_ddmarker_drags_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14863,8 +13192,6 @@ CREATE SEQUENCE public.mdl_qtype_ddmarker_drags_id_seq ALTER TABLE public.mdl_qtype_ddmarker_drags_id_seq OWNER TO postgres; -- --- TOC entry 11088 (class 0 OID 0) --- Dependencies: 740 -- Name: mdl_qtype_ddmarker_drags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14872,7 +13199,6 @@ ALTER SEQUENCE public.mdl_qtype_ddmarker_drags_id_seq OWNED BY public.mdl_qtype_ -- --- TOC entry 741 (class 1259 OID 62029) -- Name: mdl_qtype_ddmarker_drops; Type: TABLE; Schema: public; Owner: postgres -- @@ -14889,8 +13215,6 @@ CREATE TABLE public.mdl_qtype_ddmarker_drops ( ALTER TABLE public.mdl_qtype_ddmarker_drops OWNER TO postgres; -- --- TOC entry 11089 (class 0 OID 0) --- Dependencies: 741 -- Name: TABLE mdl_qtype_ddmarker_drops; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14898,7 +13222,6 @@ COMMENT ON TABLE public.mdl_qtype_ddmarker_drops IS 'drop regions'; -- --- TOC entry 742 (class 1259 OID 62038) -- Name: mdl_qtype_ddmarker_drops_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14913,8 +13236,6 @@ CREATE SEQUENCE public.mdl_qtype_ddmarker_drops_id_seq ALTER TABLE public.mdl_qtype_ddmarker_drops_id_seq OWNER TO postgres; -- --- TOC entry 11090 (class 0 OID 0) --- Dependencies: 742 -- Name: mdl_qtype_ddmarker_drops_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14922,7 +13243,6 @@ ALTER SEQUENCE public.mdl_qtype_ddmarker_drops_id_seq OWNED BY public.mdl_qtype_ -- --- TOC entry 743 (class 1259 OID 62040) -- Name: mdl_qtype_ddmarker_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14937,8 +13257,6 @@ CREATE SEQUENCE public.mdl_qtype_ddmarker_id_seq ALTER TABLE public.mdl_qtype_ddmarker_id_seq OWNER TO postgres; -- --- TOC entry 11091 (class 0 OID 0) --- Dependencies: 743 -- Name: mdl_qtype_ddmarker_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -14946,7 +13264,6 @@ ALTER SEQUENCE public.mdl_qtype_ddmarker_id_seq OWNED BY public.mdl_qtype_ddmark -- --- TOC entry 744 (class 1259 OID 62042) -- Name: mdl_qtype_essay_options; Type: TABLE; Schema: public; Owner: postgres -- @@ -14969,8 +13286,6 @@ CREATE TABLE public.mdl_qtype_essay_options ( ALTER TABLE public.mdl_qtype_essay_options OWNER TO postgres; -- --- TOC entry 11092 (class 0 OID 0) --- Dependencies: 744 -- Name: TABLE mdl_qtype_essay_options; Type: COMMENT; Schema: public; Owner: postgres -- @@ -14978,7 +13293,6 @@ COMMENT ON TABLE public.mdl_qtype_essay_options IS 'Extra options for essay ques -- --- TOC entry 745 (class 1259 OID 62055) -- Name: mdl_qtype_essay_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -14993,8 +13307,6 @@ CREATE SEQUENCE public.mdl_qtype_essay_options_id_seq ALTER TABLE public.mdl_qtype_essay_options_id_seq OWNER TO postgres; -- --- TOC entry 11093 (class 0 OID 0) --- Dependencies: 745 -- Name: mdl_qtype_essay_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15002,7 +13314,6 @@ ALTER SEQUENCE public.mdl_qtype_essay_options_id_seq OWNED BY public.mdl_qtype_e -- --- TOC entry 746 (class 1259 OID 62057) -- Name: mdl_qtype_match_options; Type: TABLE; Schema: public; Owner: postgres -- @@ -15023,8 +13334,6 @@ CREATE TABLE public.mdl_qtype_match_options ( ALTER TABLE public.mdl_qtype_match_options OWNER TO postgres; -- --- TOC entry 11094 (class 0 OID 0) --- Dependencies: 746 -- Name: TABLE mdl_qtype_match_options; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15032,7 +13341,6 @@ COMMENT ON TABLE public.mdl_qtype_match_options IS 'Defines the question-type sp -- --- TOC entry 747 (class 1259 OID 62069) -- Name: mdl_qtype_match_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15047,8 +13355,6 @@ CREATE SEQUENCE public.mdl_qtype_match_options_id_seq ALTER TABLE public.mdl_qtype_match_options_id_seq OWNER TO postgres; -- --- TOC entry 11095 (class 0 OID 0) --- Dependencies: 747 -- Name: mdl_qtype_match_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15056,7 +13362,6 @@ ALTER SEQUENCE public.mdl_qtype_match_options_id_seq OWNED BY public.mdl_qtype_m -- --- TOC entry 748 (class 1259 OID 62071) -- Name: mdl_qtype_match_subquestions; Type: TABLE; Schema: public; Owner: postgres -- @@ -15072,8 +13377,6 @@ CREATE TABLE public.mdl_qtype_match_subquestions ( ALTER TABLE public.mdl_qtype_match_subquestions OWNER TO postgres; -- --- TOC entry 11096 (class 0 OID 0) --- Dependencies: 748 -- Name: TABLE mdl_qtype_match_subquestions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15081,7 +13384,6 @@ COMMENT ON TABLE public.mdl_qtype_match_subquestions IS 'The subquestions that m -- --- TOC entry 749 (class 1259 OID 62080) -- Name: mdl_qtype_match_subquestions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15096,8 +13398,6 @@ CREATE SEQUENCE public.mdl_qtype_match_subquestions_id_seq ALTER TABLE public.mdl_qtype_match_subquestions_id_seq OWNER TO postgres; -- --- TOC entry 11097 (class 0 OID 0) --- Dependencies: 749 -- Name: mdl_qtype_match_subquestions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15105,7 +13405,6 @@ ALTER SEQUENCE public.mdl_qtype_match_subquestions_id_seq OWNED BY public.mdl_qt -- --- TOC entry 750 (class 1259 OID 62082) -- Name: mdl_qtype_multichoice_options; Type: TABLE; Schema: public; Owner: postgres -- @@ -15130,8 +13429,6 @@ CREATE TABLE public.mdl_qtype_multichoice_options ( ALTER TABLE public.mdl_qtype_multichoice_options OWNER TO postgres; -- --- TOC entry 11098 (class 0 OID 0) --- Dependencies: 750 -- Name: TABLE mdl_qtype_multichoice_options; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15139,7 +13436,6 @@ COMMENT ON TABLE public.mdl_qtype_multichoice_options IS 'Options for multiple c -- --- TOC entry 751 (class 1259 OID 62098) -- Name: mdl_qtype_multichoice_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15154,8 +13450,6 @@ CREATE SEQUENCE public.mdl_qtype_multichoice_options_id_seq ALTER TABLE public.mdl_qtype_multichoice_options_id_seq OWNER TO postgres; -- --- TOC entry 11099 (class 0 OID 0) --- Dependencies: 751 -- Name: mdl_qtype_multichoice_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15163,7 +13457,6 @@ ALTER SEQUENCE public.mdl_qtype_multichoice_options_id_seq OWNED BY public.mdl_q -- --- TOC entry 752 (class 1259 OID 62100) -- Name: mdl_qtype_randomsamatch_options; Type: TABLE; Schema: public; Owner: postgres -- @@ -15185,8 +13478,6 @@ CREATE TABLE public.mdl_qtype_randomsamatch_options ( ALTER TABLE public.mdl_qtype_randomsamatch_options OWNER TO postgres; -- --- TOC entry 11100 (class 0 OID 0) --- Dependencies: 752 -- Name: TABLE mdl_qtype_randomsamatch_options; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15194,7 +13485,6 @@ COMMENT ON TABLE public.mdl_qtype_randomsamatch_options IS 'Info about a random -- --- TOC entry 753 (class 1259 OID 62113) -- Name: mdl_qtype_randomsamatch_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15209,8 +13499,6 @@ CREATE SEQUENCE public.mdl_qtype_randomsamatch_options_id_seq ALTER TABLE public.mdl_qtype_randomsamatch_options_id_seq OWNER TO postgres; -- --- TOC entry 11101 (class 0 OID 0) --- Dependencies: 753 -- Name: mdl_qtype_randomsamatch_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15218,7 +13506,6 @@ ALTER SEQUENCE public.mdl_qtype_randomsamatch_options_id_seq OWNED BY public.mdl -- --- TOC entry 754 (class 1259 OID 62115) -- Name: mdl_qtype_shortanswer_options; Type: TABLE; Schema: public; Owner: postgres -- @@ -15232,8 +13519,6 @@ CREATE TABLE public.mdl_qtype_shortanswer_options ( ALTER TABLE public.mdl_qtype_shortanswer_options OWNER TO postgres; -- --- TOC entry 11102 (class 0 OID 0) --- Dependencies: 754 -- Name: TABLE mdl_qtype_shortanswer_options; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15241,7 +13526,6 @@ COMMENT ON TABLE public.mdl_qtype_shortanswer_options IS 'Options for short answ -- --- TOC entry 755 (class 1259 OID 62120) -- Name: mdl_qtype_shortanswer_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15256,8 +13540,6 @@ CREATE SEQUENCE public.mdl_qtype_shortanswer_options_id_seq ALTER TABLE public.mdl_qtype_shortanswer_options_id_seq OWNER TO postgres; -- --- TOC entry 11103 (class 0 OID 0) --- Dependencies: 755 -- Name: mdl_qtype_shortanswer_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15265,7 +13547,6 @@ ALTER SEQUENCE public.mdl_qtype_shortanswer_options_id_seq OWNED BY public.mdl_q -- --- TOC entry 756 (class 1259 OID 62122) -- Name: mdl_question; Type: TABLE; Schema: public; Owner: postgres -- @@ -15296,8 +13577,6 @@ CREATE TABLE public.mdl_question ( ALTER TABLE public.mdl_question OWNER TO postgres; -- --- TOC entry 11104 (class 0 OID 0) --- Dependencies: 756 -- Name: TABLE mdl_question; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15305,7 +13584,6 @@ COMMENT ON TABLE public.mdl_question IS 'The questions themselves'; -- --- TOC entry 757 (class 1259 OID 62142) -- Name: mdl_question_answers; Type: TABLE; Schema: public; Owner: postgres -- @@ -15323,8 +13601,6 @@ CREATE TABLE public.mdl_question_answers ( ALTER TABLE public.mdl_question_answers OWNER TO postgres; -- --- TOC entry 11105 (class 0 OID 0) --- Dependencies: 757 -- Name: TABLE mdl_question_answers; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15332,7 +13608,6 @@ COMMENT ON TABLE public.mdl_question_answers IS 'Answers, with a fractional grad -- --- TOC entry 758 (class 1259 OID 62152) -- Name: mdl_question_answers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15347,8 +13622,6 @@ CREATE SEQUENCE public.mdl_question_answers_id_seq ALTER TABLE public.mdl_question_answers_id_seq OWNER TO postgres; -- --- TOC entry 11106 (class 0 OID 0) --- Dependencies: 758 -- Name: mdl_question_answers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15356,7 +13629,6 @@ ALTER SEQUENCE public.mdl_question_answers_id_seq OWNED BY public.mdl_question_a -- --- TOC entry 759 (class 1259 OID 62154) -- Name: mdl_question_attempt_step_data; Type: TABLE; Schema: public; Owner: postgres -- @@ -15371,8 +13643,6 @@ CREATE TABLE public.mdl_question_attempt_step_data ( ALTER TABLE public.mdl_question_attempt_step_data OWNER TO postgres; -- --- TOC entry 11107 (class 0 OID 0) --- Dependencies: 759 -- Name: TABLE mdl_question_attempt_step_data; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15380,7 +13650,6 @@ COMMENT ON TABLE public.mdl_question_attempt_step_data IS 'Each question_attempt -- --- TOC entry 760 (class 1259 OID 62161) -- Name: mdl_question_attempt_step_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15395,8 +13664,6 @@ CREATE SEQUENCE public.mdl_question_attempt_step_data_id_seq ALTER TABLE public.mdl_question_attempt_step_data_id_seq OWNER TO postgres; -- --- TOC entry 11108 (class 0 OID 0) --- Dependencies: 760 -- Name: mdl_question_attempt_step_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15404,7 +13671,6 @@ ALTER SEQUENCE public.mdl_question_attempt_step_data_id_seq OWNED BY public.mdl_ -- --- TOC entry 761 (class 1259 OID 62163) -- Name: mdl_question_attempt_steps; Type: TABLE; Schema: public; Owner: postgres -- @@ -15422,8 +13688,6 @@ CREATE TABLE public.mdl_question_attempt_steps ( ALTER TABLE public.mdl_question_attempt_steps OWNER TO postgres; -- --- TOC entry 11109 (class 0 OID 0) --- Dependencies: 761 -- Name: TABLE mdl_question_attempt_steps; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15431,7 +13695,6 @@ COMMENT ON TABLE public.mdl_question_attempt_steps IS 'Stores one step in in a q -- --- TOC entry 762 (class 1259 OID 62167) -- Name: mdl_question_attempt_steps_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15446,8 +13709,6 @@ CREATE SEQUENCE public.mdl_question_attempt_steps_id_seq ALTER TABLE public.mdl_question_attempt_steps_id_seq OWNER TO postgres; -- --- TOC entry 11110 (class 0 OID 0) --- Dependencies: 762 -- Name: mdl_question_attempt_steps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15455,7 +13716,6 @@ ALTER SEQUENCE public.mdl_question_attempt_steps_id_seq OWNED BY public.mdl_ques -- --- TOC entry 763 (class 1259 OID 62169) -- Name: mdl_question_attempts; Type: TABLE; Schema: public; Owner: postgres -- @@ -15480,8 +13740,6 @@ CREATE TABLE public.mdl_question_attempts ( ALTER TABLE public.mdl_question_attempts OWNER TO postgres; -- --- TOC entry 11111 (class 0 OID 0) --- Dependencies: 763 -- Name: TABLE mdl_question_attempts; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15489,7 +13747,6 @@ COMMENT ON TABLE public.mdl_question_attempts IS 'Each row here corresponds to a -- --- TOC entry 764 (class 1259 OID 62179) -- Name: mdl_question_attempts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15504,8 +13761,6 @@ CREATE SEQUENCE public.mdl_question_attempts_id_seq ALTER TABLE public.mdl_question_attempts_id_seq OWNER TO postgres; -- --- TOC entry 11112 (class 0 OID 0) --- Dependencies: 764 -- Name: mdl_question_attempts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15513,7 +13768,6 @@ ALTER SEQUENCE public.mdl_question_attempts_id_seq OWNED BY public.mdl_question_ -- --- TOC entry 765 (class 1259 OID 62181) -- Name: mdl_question_calculated; Type: TABLE; Schema: public; Owner: postgres -- @@ -15531,8 +13785,6 @@ CREATE TABLE public.mdl_question_calculated ( ALTER TABLE public.mdl_question_calculated OWNER TO postgres; -- --- TOC entry 11113 (class 0 OID 0) --- Dependencies: 765 -- Name: TABLE mdl_question_calculated; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15540,7 +13792,6 @@ COMMENT ON TABLE public.mdl_question_calculated IS 'Options for questions of typ -- --- TOC entry 766 (class 1259 OID 62190) -- Name: mdl_question_calculated_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15555,8 +13806,6 @@ CREATE SEQUENCE public.mdl_question_calculated_id_seq ALTER TABLE public.mdl_question_calculated_id_seq OWNER TO postgres; -- --- TOC entry 11114 (class 0 OID 0) --- Dependencies: 766 -- Name: mdl_question_calculated_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15564,7 +13813,6 @@ ALTER SEQUENCE public.mdl_question_calculated_id_seq OWNED BY public.mdl_questio -- --- TOC entry 767 (class 1259 OID 62192) -- Name: mdl_question_calculated_options; Type: TABLE; Schema: public; Owner: postgres -- @@ -15588,8 +13836,6 @@ CREATE TABLE public.mdl_question_calculated_options ( ALTER TABLE public.mdl_question_calculated_options OWNER TO postgres; -- --- TOC entry 11115 (class 0 OID 0) --- Dependencies: 767 -- Name: TABLE mdl_question_calculated_options; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15597,7 +13843,6 @@ COMMENT ON TABLE public.mdl_question_calculated_options IS 'Options for question -- --- TOC entry 768 (class 1259 OID 62207) -- Name: mdl_question_calculated_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15612,8 +13857,6 @@ CREATE SEQUENCE public.mdl_question_calculated_options_id_seq ALTER TABLE public.mdl_question_calculated_options_id_seq OWNER TO postgres; -- --- TOC entry 11116 (class 0 OID 0) --- Dependencies: 768 -- Name: mdl_question_calculated_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15621,7 +13864,6 @@ ALTER SEQUENCE public.mdl_question_calculated_options_id_seq OWNED BY public.mdl -- --- TOC entry 769 (class 1259 OID 62209) -- Name: mdl_question_categories; Type: TABLE; Schema: public; Owner: postgres -- @@ -15641,8 +13883,6 @@ CREATE TABLE public.mdl_question_categories ( ALTER TABLE public.mdl_question_categories OWNER TO postgres; -- --- TOC entry 11117 (class 0 OID 0) --- Dependencies: 769 -- Name: TABLE mdl_question_categories; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15650,7 +13890,6 @@ COMMENT ON TABLE public.mdl_question_categories IS 'Categories are for grouping -- --- TOC entry 770 (class 1259 OID 62221) -- Name: mdl_question_categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15665,8 +13904,6 @@ CREATE SEQUENCE public.mdl_question_categories_id_seq ALTER TABLE public.mdl_question_categories_id_seq OWNER TO postgres; -- --- TOC entry 11118 (class 0 OID 0) --- Dependencies: 770 -- Name: mdl_question_categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15674,7 +13911,6 @@ ALTER SEQUENCE public.mdl_question_categories_id_seq OWNED BY public.mdl_questio -- --- TOC entry 771 (class 1259 OID 62223) -- Name: mdl_question_dataset_definitions; Type: TABLE; Schema: public; Owner: postgres -- @@ -15691,8 +13927,6 @@ CREATE TABLE public.mdl_question_dataset_definitions ( ALTER TABLE public.mdl_question_dataset_definitions OWNER TO postgres; -- --- TOC entry 11119 (class 0 OID 0) --- Dependencies: 771 -- Name: TABLE mdl_question_dataset_definitions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15700,7 +13934,6 @@ COMMENT ON TABLE public.mdl_question_dataset_definitions IS 'Organises and store -- --- TOC entry 772 (class 1259 OID 62234) -- Name: mdl_question_dataset_definitions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15715,8 +13948,6 @@ CREATE SEQUENCE public.mdl_question_dataset_definitions_id_seq ALTER TABLE public.mdl_question_dataset_definitions_id_seq OWNER TO postgres; -- --- TOC entry 11120 (class 0 OID 0) --- Dependencies: 772 -- Name: mdl_question_dataset_definitions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15724,7 +13955,6 @@ ALTER SEQUENCE public.mdl_question_dataset_definitions_id_seq OWNED BY public.md -- --- TOC entry 773 (class 1259 OID 62236) -- Name: mdl_question_dataset_items; Type: TABLE; Schema: public; Owner: postgres -- @@ -15739,8 +13969,6 @@ CREATE TABLE public.mdl_question_dataset_items ( ALTER TABLE public.mdl_question_dataset_items OWNER TO postgres; -- --- TOC entry 11121 (class 0 OID 0) --- Dependencies: 773 -- Name: TABLE mdl_question_dataset_items; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15748,7 +13976,6 @@ COMMENT ON TABLE public.mdl_question_dataset_items IS 'Individual dataset items' -- --- TOC entry 774 (class 1259 OID 62242) -- Name: mdl_question_dataset_items_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15763,8 +13990,6 @@ CREATE SEQUENCE public.mdl_question_dataset_items_id_seq ALTER TABLE public.mdl_question_dataset_items_id_seq OWNER TO postgres; -- --- TOC entry 11122 (class 0 OID 0) --- Dependencies: 774 -- Name: mdl_question_dataset_items_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15772,7 +13997,6 @@ ALTER SEQUENCE public.mdl_question_dataset_items_id_seq OWNED BY public.mdl_ques -- --- TOC entry 775 (class 1259 OID 62244) -- Name: mdl_question_datasets; Type: TABLE; Schema: public; Owner: postgres -- @@ -15786,8 +14010,6 @@ CREATE TABLE public.mdl_question_datasets ( ALTER TABLE public.mdl_question_datasets OWNER TO postgres; -- --- TOC entry 11123 (class 0 OID 0) --- Dependencies: 775 -- Name: TABLE mdl_question_datasets; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15795,7 +14017,6 @@ COMMENT ON TABLE public.mdl_question_datasets IS 'Many-many relation between que -- --- TOC entry 776 (class 1259 OID 62249) -- Name: mdl_question_datasets_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15810,8 +14031,6 @@ CREATE SEQUENCE public.mdl_question_datasets_id_seq ALTER TABLE public.mdl_question_datasets_id_seq OWNER TO postgres; -- --- TOC entry 11124 (class 0 OID 0) --- Dependencies: 776 -- Name: mdl_question_datasets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15819,7 +14038,6 @@ ALTER SEQUENCE public.mdl_question_datasets_id_seq OWNED BY public.mdl_question_ -- --- TOC entry 777 (class 1259 OID 62251) -- Name: mdl_question_ddwtos; Type: TABLE; Schema: public; Owner: postgres -- @@ -15840,8 +14058,6 @@ CREATE TABLE public.mdl_question_ddwtos ( ALTER TABLE public.mdl_question_ddwtos OWNER TO postgres; -- --- TOC entry 11125 (class 0 OID 0) --- Dependencies: 777 -- Name: TABLE mdl_question_ddwtos; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15849,7 +14065,6 @@ COMMENT ON TABLE public.mdl_question_ddwtos IS 'Defines drag and drop (words int -- --- TOC entry 778 (class 1259 OID 62263) -- Name: mdl_question_ddwtos_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15864,8 +14079,6 @@ CREATE SEQUENCE public.mdl_question_ddwtos_id_seq ALTER TABLE public.mdl_question_ddwtos_id_seq OWNER TO postgres; -- --- TOC entry 11126 (class 0 OID 0) --- Dependencies: 778 -- Name: mdl_question_ddwtos_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15873,7 +14086,6 @@ ALTER SEQUENCE public.mdl_question_ddwtos_id_seq OWNED BY public.mdl_question_dd -- --- TOC entry 779 (class 1259 OID 62265) -- Name: mdl_question_gapselect; Type: TABLE; Schema: public; Owner: postgres -- @@ -15894,8 +14106,6 @@ CREATE TABLE public.mdl_question_gapselect ( ALTER TABLE public.mdl_question_gapselect OWNER TO postgres; -- --- TOC entry 11127 (class 0 OID 0) --- Dependencies: 779 -- Name: TABLE mdl_question_gapselect; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15903,7 +14113,6 @@ COMMENT ON TABLE public.mdl_question_gapselect IS 'Defines select missing words -- --- TOC entry 780 (class 1259 OID 62277) -- Name: mdl_question_gapselect_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15918,8 +14127,6 @@ CREATE SEQUENCE public.mdl_question_gapselect_id_seq ALTER TABLE public.mdl_question_gapselect_id_seq OWNER TO postgres; -- --- TOC entry 11128 (class 0 OID 0) --- Dependencies: 780 -- Name: mdl_question_gapselect_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15927,7 +14134,6 @@ ALTER SEQUENCE public.mdl_question_gapselect_id_seq OWNED BY public.mdl_question -- --- TOC entry 781 (class 1259 OID 62279) -- Name: mdl_question_hints; Type: TABLE; Schema: public; Owner: postgres -- @@ -15945,8 +14151,6 @@ CREATE TABLE public.mdl_question_hints ( ALTER TABLE public.mdl_question_hints OWNER TO postgres; -- --- TOC entry 11129 (class 0 OID 0) --- Dependencies: 781 -- Name: TABLE mdl_question_hints; Type: COMMENT; Schema: public; Owner: postgres -- @@ -15954,7 +14158,6 @@ COMMENT ON TABLE public.mdl_question_hints IS 'Stores the the part of the questi -- --- TOC entry 782 (class 1259 OID 62286) -- Name: mdl_question_hints_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15969,8 +14172,6 @@ CREATE SEQUENCE public.mdl_question_hints_id_seq ALTER TABLE public.mdl_question_hints_id_seq OWNER TO postgres; -- --- TOC entry 11130 (class 0 OID 0) --- Dependencies: 782 -- Name: mdl_question_hints_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -15978,7 +14179,6 @@ ALTER SEQUENCE public.mdl_question_hints_id_seq OWNED BY public.mdl_question_hin -- --- TOC entry 783 (class 1259 OID 62288) -- Name: mdl_question_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -15993,8 +14193,6 @@ CREATE SEQUENCE public.mdl_question_id_seq ALTER TABLE public.mdl_question_id_seq OWNER TO postgres; -- --- TOC entry 11131 (class 0 OID 0) --- Dependencies: 783 -- Name: mdl_question_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16002,7 +14200,6 @@ ALTER SEQUENCE public.mdl_question_id_seq OWNED BY public.mdl_question.id; -- --- TOC entry 784 (class 1259 OID 62290) -- Name: mdl_question_multianswer; Type: TABLE; Schema: public; Owner: postgres -- @@ -16016,8 +14213,6 @@ CREATE TABLE public.mdl_question_multianswer ( ALTER TABLE public.mdl_question_multianswer OWNER TO postgres; -- --- TOC entry 11132 (class 0 OID 0) --- Dependencies: 784 -- Name: TABLE mdl_question_multianswer; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16025,7 +14220,6 @@ COMMENT ON TABLE public.mdl_question_multianswer IS 'Options for multianswer que -- --- TOC entry 785 (class 1259 OID 62297) -- Name: mdl_question_multianswer_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16040,8 +14234,6 @@ CREATE SEQUENCE public.mdl_question_multianswer_id_seq ALTER TABLE public.mdl_question_multianswer_id_seq OWNER TO postgres; -- --- TOC entry 11133 (class 0 OID 0) --- Dependencies: 785 -- Name: mdl_question_multianswer_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16049,7 +14241,6 @@ ALTER SEQUENCE public.mdl_question_multianswer_id_seq OWNED BY public.mdl_questi -- --- TOC entry 786 (class 1259 OID 62299) -- Name: mdl_question_numerical; Type: TABLE; Schema: public; Owner: postgres -- @@ -16064,8 +14255,6 @@ CREATE TABLE public.mdl_question_numerical ( ALTER TABLE public.mdl_question_numerical OWNER TO postgres; -- --- TOC entry 11134 (class 0 OID 0) --- Dependencies: 786 -- Name: TABLE mdl_question_numerical; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16073,7 +14262,6 @@ COMMENT ON TABLE public.mdl_question_numerical IS 'Options for numerical questio -- --- TOC entry 787 (class 1259 OID 62305) -- Name: mdl_question_numerical_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16088,8 +14276,6 @@ CREATE SEQUENCE public.mdl_question_numerical_id_seq ALTER TABLE public.mdl_question_numerical_id_seq OWNER TO postgres; -- --- TOC entry 11135 (class 0 OID 0) --- Dependencies: 787 -- Name: mdl_question_numerical_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16097,7 +14283,6 @@ ALTER SEQUENCE public.mdl_question_numerical_id_seq OWNED BY public.mdl_question -- --- TOC entry 788 (class 1259 OID 62307) -- Name: mdl_question_numerical_options; Type: TABLE; Schema: public; Owner: postgres -- @@ -16114,8 +14299,6 @@ CREATE TABLE public.mdl_question_numerical_options ( ALTER TABLE public.mdl_question_numerical_options OWNER TO postgres; -- --- TOC entry 11136 (class 0 OID 0) --- Dependencies: 788 -- Name: TABLE mdl_question_numerical_options; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16123,7 +14306,6 @@ COMMENT ON TABLE public.mdl_question_numerical_options IS 'Options for questions -- --- TOC entry 789 (class 1259 OID 62315) -- Name: mdl_question_numerical_options_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16138,8 +14320,6 @@ CREATE SEQUENCE public.mdl_question_numerical_options_id_seq ALTER TABLE public.mdl_question_numerical_options_id_seq OWNER TO postgres; -- --- TOC entry 11137 (class 0 OID 0) --- Dependencies: 789 -- Name: mdl_question_numerical_options_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16147,7 +14327,6 @@ ALTER SEQUENCE public.mdl_question_numerical_options_id_seq OWNED BY public.mdl_ -- --- TOC entry 790 (class 1259 OID 62317) -- Name: mdl_question_numerical_units; Type: TABLE; Schema: public; Owner: postgres -- @@ -16162,8 +14341,6 @@ CREATE TABLE public.mdl_question_numerical_units ( ALTER TABLE public.mdl_question_numerical_units OWNER TO postgres; -- --- TOC entry 11138 (class 0 OID 0) --- Dependencies: 790 -- Name: TABLE mdl_question_numerical_units; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16171,7 +14348,6 @@ COMMENT ON TABLE public.mdl_question_numerical_units IS 'Optional unit options f -- --- TOC entry 791 (class 1259 OID 62323) -- Name: mdl_question_numerical_units_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16186,8 +14362,6 @@ CREATE SEQUENCE public.mdl_question_numerical_units_id_seq ALTER TABLE public.mdl_question_numerical_units_id_seq OWNER TO postgres; -- --- TOC entry 11139 (class 0 OID 0) --- Dependencies: 791 -- Name: mdl_question_numerical_units_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16195,7 +14369,6 @@ ALTER SEQUENCE public.mdl_question_numerical_units_id_seq OWNED BY public.mdl_qu -- --- TOC entry 792 (class 1259 OID 62325) -- Name: mdl_question_response_analysis; Type: TABLE; Schema: public; Owner: postgres -- @@ -16216,8 +14389,6 @@ CREATE TABLE public.mdl_question_response_analysis ( ALTER TABLE public.mdl_question_response_analysis OWNER TO postgres; -- --- TOC entry 11140 (class 0 OID 0) --- Dependencies: 792 -- Name: TABLE mdl_question_response_analysis; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16225,7 +14396,6 @@ COMMENT ON TABLE public.mdl_question_response_analysis IS 'Analysis of student r -- --- TOC entry 793 (class 1259 OID 62334) -- Name: mdl_question_response_analysis_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16240,8 +14410,6 @@ CREATE SEQUENCE public.mdl_question_response_analysis_id_seq ALTER TABLE public.mdl_question_response_analysis_id_seq OWNER TO postgres; -- --- TOC entry 11141 (class 0 OID 0) --- Dependencies: 793 -- Name: mdl_question_response_analysis_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16249,7 +14417,6 @@ ALTER SEQUENCE public.mdl_question_response_analysis_id_seq OWNED BY public.mdl_ -- --- TOC entry 794 (class 1259 OID 62336) -- Name: mdl_question_response_count; Type: TABLE; Schema: public; Owner: postgres -- @@ -16264,8 +14431,6 @@ CREATE TABLE public.mdl_question_response_count ( ALTER TABLE public.mdl_question_response_count OWNER TO postgres; -- --- TOC entry 11142 (class 0 OID 0) --- Dependencies: 794 -- Name: TABLE mdl_question_response_count; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16273,7 +14438,6 @@ COMMENT ON TABLE public.mdl_question_response_count IS 'Count for each responses -- --- TOC entry 795 (class 1259 OID 62339) -- Name: mdl_question_response_count_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16288,8 +14452,6 @@ CREATE SEQUENCE public.mdl_question_response_count_id_seq ALTER TABLE public.mdl_question_response_count_id_seq OWNER TO postgres; -- --- TOC entry 11143 (class 0 OID 0) --- Dependencies: 795 -- Name: mdl_question_response_count_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16297,7 +14459,6 @@ ALTER SEQUENCE public.mdl_question_response_count_id_seq OWNED BY public.mdl_que -- --- TOC entry 796 (class 1259 OID 62341) -- Name: mdl_question_statistics; Type: TABLE; Schema: public; Owner: postgres -- @@ -16326,8 +14487,6 @@ CREATE TABLE public.mdl_question_statistics ( ALTER TABLE public.mdl_question_statistics OWNER TO postgres; -- --- TOC entry 11144 (class 0 OID 0) --- Dependencies: 796 -- Name: TABLE mdl_question_statistics; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16335,7 +14494,6 @@ COMMENT ON TABLE public.mdl_question_statistics IS 'Statistics for individual qu -- --- TOC entry 797 (class 1259 OID 62350) -- Name: mdl_question_statistics_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16350,8 +14508,6 @@ CREATE SEQUENCE public.mdl_question_statistics_id_seq ALTER TABLE public.mdl_question_statistics_id_seq OWNER TO postgres; -- --- TOC entry 11145 (class 0 OID 0) --- Dependencies: 797 -- Name: mdl_question_statistics_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16359,7 +14515,6 @@ ALTER SEQUENCE public.mdl_question_statistics_id_seq OWNED BY public.mdl_questio -- --- TOC entry 798 (class 1259 OID 62352) -- Name: mdl_question_truefalse; Type: TABLE; Schema: public; Owner: postgres -- @@ -16374,8 +14529,6 @@ CREATE TABLE public.mdl_question_truefalse ( ALTER TABLE public.mdl_question_truefalse OWNER TO postgres; -- --- TOC entry 11146 (class 0 OID 0) --- Dependencies: 798 -- Name: TABLE mdl_question_truefalse; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16383,7 +14536,6 @@ COMMENT ON TABLE public.mdl_question_truefalse IS 'Options for True-False questi -- --- TOC entry 799 (class 1259 OID 62358) -- Name: mdl_question_truefalse_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16398,8 +14550,6 @@ CREATE SEQUENCE public.mdl_question_truefalse_id_seq ALTER TABLE public.mdl_question_truefalse_id_seq OWNER TO postgres; -- --- TOC entry 11147 (class 0 OID 0) --- Dependencies: 799 -- Name: mdl_question_truefalse_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16407,7 +14557,6 @@ ALTER SEQUENCE public.mdl_question_truefalse_id_seq OWNED BY public.mdl_question -- --- TOC entry 800 (class 1259 OID 62360) -- Name: mdl_question_usages; Type: TABLE; Schema: public; Owner: postgres -- @@ -16422,8 +14571,6 @@ CREATE TABLE public.mdl_question_usages ( ALTER TABLE public.mdl_question_usages OWNER TO postgres; -- --- TOC entry 11148 (class 0 OID 0) --- Dependencies: 800 -- Name: TABLE mdl_question_usages; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16431,7 +14578,6 @@ COMMENT ON TABLE public.mdl_question_usages IS 'This table''s main purpose it to -- --- TOC entry 801 (class 1259 OID 62365) -- Name: mdl_question_usages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16446,8 +14592,6 @@ CREATE SEQUENCE public.mdl_question_usages_id_seq ALTER TABLE public.mdl_question_usages_id_seq OWNER TO postgres; -- --- TOC entry 11149 (class 0 OID 0) --- Dependencies: 801 -- Name: mdl_question_usages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16455,7 +14599,6 @@ ALTER SEQUENCE public.mdl_question_usages_id_seq OWNED BY public.mdl_question_us -- --- TOC entry 802 (class 1259 OID 62367) -- Name: mdl_quiz; Type: TABLE; Schema: public; Owner: postgres -- @@ -16507,8 +14650,6 @@ CREATE TABLE public.mdl_quiz ( ALTER TABLE public.mdl_quiz OWNER TO postgres; -- --- TOC entry 11150 (class 0 OID 0) --- Dependencies: 802 -- Name: TABLE mdl_quiz; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16516,7 +14657,6 @@ COMMENT ON TABLE public.mdl_quiz IS 'The settings for each quiz.'; -- --- TOC entry 803 (class 1259 OID 62412) -- Name: mdl_quiz_attempts; Type: TABLE; Schema: public; Owner: postgres -- @@ -16542,8 +14682,6 @@ CREATE TABLE public.mdl_quiz_attempts ( ALTER TABLE public.mdl_quiz_attempts OWNER TO postgres; -- --- TOC entry 11151 (class 0 OID 0) --- Dependencies: 803 -- Name: TABLE mdl_quiz_attempts; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16551,7 +14689,6 @@ COMMENT ON TABLE public.mdl_quiz_attempts IS 'Stores users attempts at quizzes.' -- --- TOC entry 804 (class 1259 OID 62430) -- Name: mdl_quiz_attempts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16566,8 +14703,6 @@ CREATE SEQUENCE public.mdl_quiz_attempts_id_seq ALTER TABLE public.mdl_quiz_attempts_id_seq OWNER TO postgres; -- --- TOC entry 11152 (class 0 OID 0) --- Dependencies: 804 -- Name: mdl_quiz_attempts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16575,7 +14710,6 @@ ALTER SEQUENCE public.mdl_quiz_attempts_id_seq OWNED BY public.mdl_quiz_attempts -- --- TOC entry 805 (class 1259 OID 62432) -- Name: mdl_quiz_feedback; Type: TABLE; Schema: public; Owner: postgres -- @@ -16592,8 +14726,6 @@ CREATE TABLE public.mdl_quiz_feedback ( ALTER TABLE public.mdl_quiz_feedback OWNER TO postgres; -- --- TOC entry 11153 (class 0 OID 0) --- Dependencies: 805 -- Name: TABLE mdl_quiz_feedback; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16601,7 +14733,6 @@ COMMENT ON TABLE public.mdl_quiz_feedback IS 'Feedback given to students based o -- --- TOC entry 806 (class 1259 OID 62442) -- Name: mdl_quiz_feedback_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16616,8 +14747,6 @@ CREATE SEQUENCE public.mdl_quiz_feedback_id_seq ALTER TABLE public.mdl_quiz_feedback_id_seq OWNER TO postgres; -- --- TOC entry 11154 (class 0 OID 0) --- Dependencies: 806 -- Name: mdl_quiz_feedback_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16625,7 +14754,6 @@ ALTER SEQUENCE public.mdl_quiz_feedback_id_seq OWNED BY public.mdl_quiz_feedback -- --- TOC entry 807 (class 1259 OID 62444) -- Name: mdl_quiz_grades; Type: TABLE; Schema: public; Owner: postgres -- @@ -16641,8 +14769,6 @@ CREATE TABLE public.mdl_quiz_grades ( ALTER TABLE public.mdl_quiz_grades OWNER TO postgres; -- --- TOC entry 11155 (class 0 OID 0) --- Dependencies: 807 -- Name: TABLE mdl_quiz_grades; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16650,7 +14776,6 @@ COMMENT ON TABLE public.mdl_quiz_grades IS 'Stores the overall grade for each us -- --- TOC entry 808 (class 1259 OID 62451) -- Name: mdl_quiz_grades_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16665,8 +14790,6 @@ CREATE SEQUENCE public.mdl_quiz_grades_id_seq ALTER TABLE public.mdl_quiz_grades_id_seq OWNER TO postgres; -- --- TOC entry 11156 (class 0 OID 0) --- Dependencies: 808 -- Name: mdl_quiz_grades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16674,7 +14797,6 @@ ALTER SEQUENCE public.mdl_quiz_grades_id_seq OWNED BY public.mdl_quiz_grades.id; -- --- TOC entry 809 (class 1259 OID 62453) -- Name: mdl_quiz_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16689,8 +14811,6 @@ CREATE SEQUENCE public.mdl_quiz_id_seq ALTER TABLE public.mdl_quiz_id_seq OWNER TO postgres; -- --- TOC entry 11157 (class 0 OID 0) --- Dependencies: 809 -- Name: mdl_quiz_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16698,7 +14818,6 @@ ALTER SEQUENCE public.mdl_quiz_id_seq OWNED BY public.mdl_quiz.id; -- --- TOC entry 810 (class 1259 OID 62455) -- Name: mdl_quiz_overrides; Type: TABLE; Schema: public; Owner: postgres -- @@ -16718,8 +14837,6 @@ CREATE TABLE public.mdl_quiz_overrides ( ALTER TABLE public.mdl_quiz_overrides OWNER TO postgres; -- --- TOC entry 11158 (class 0 OID 0) --- Dependencies: 810 -- Name: TABLE mdl_quiz_overrides; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16727,7 +14844,6 @@ COMMENT ON TABLE public.mdl_quiz_overrides IS 'The overrides to quiz settings on -- --- TOC entry 811 (class 1259 OID 62459) -- Name: mdl_quiz_overrides_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16742,8 +14858,6 @@ CREATE SEQUENCE public.mdl_quiz_overrides_id_seq ALTER TABLE public.mdl_quiz_overrides_id_seq OWNER TO postgres; -- --- TOC entry 11159 (class 0 OID 0) --- Dependencies: 811 -- Name: mdl_quiz_overrides_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16751,7 +14865,6 @@ ALTER SEQUENCE public.mdl_quiz_overrides_id_seq OWNED BY public.mdl_quiz_overrid -- --- TOC entry 812 (class 1259 OID 62461) -- Name: mdl_quiz_overview_regrades; Type: TABLE; Schema: public; Owner: postgres -- @@ -16769,8 +14882,6 @@ CREATE TABLE public.mdl_quiz_overview_regrades ( ALTER TABLE public.mdl_quiz_overview_regrades OWNER TO postgres; -- --- TOC entry 11160 (class 0 OID 0) --- Dependencies: 812 -- Name: TABLE mdl_quiz_overview_regrades; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16778,7 +14889,6 @@ COMMENT ON TABLE public.mdl_quiz_overview_regrades IS 'This table records which -- --- TOC entry 813 (class 1259 OID 62464) -- Name: mdl_quiz_overview_regrades_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16793,8 +14903,6 @@ CREATE SEQUENCE public.mdl_quiz_overview_regrades_id_seq ALTER TABLE public.mdl_quiz_overview_regrades_id_seq OWNER TO postgres; -- --- TOC entry 11161 (class 0 OID 0) --- Dependencies: 813 -- Name: mdl_quiz_overview_regrades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16802,7 +14910,6 @@ ALTER SEQUENCE public.mdl_quiz_overview_regrades_id_seq OWNED BY public.mdl_quiz -- --- TOC entry 814 (class 1259 OID 62466) -- Name: mdl_quiz_reports; Type: TABLE; Schema: public; Owner: postgres -- @@ -16817,8 +14924,6 @@ CREATE TABLE public.mdl_quiz_reports ( ALTER TABLE public.mdl_quiz_reports OWNER TO postgres; -- --- TOC entry 11162 (class 0 OID 0) --- Dependencies: 814 -- Name: TABLE mdl_quiz_reports; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16826,7 +14931,6 @@ COMMENT ON TABLE public.mdl_quiz_reports IS 'Lists all the installed quiz report -- --- TOC entry 815 (class 1259 OID 62472) -- Name: mdl_quiz_reports_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16841,8 +14945,6 @@ CREATE SEQUENCE public.mdl_quiz_reports_id_seq ALTER TABLE public.mdl_quiz_reports_id_seq OWNER TO postgres; -- --- TOC entry 11163 (class 0 OID 0) --- Dependencies: 815 -- Name: mdl_quiz_reports_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16850,7 +14952,6 @@ ALTER SEQUENCE public.mdl_quiz_reports_id_seq OWNED BY public.mdl_quiz_reports.i -- --- TOC entry 816 (class 1259 OID 62474) -- Name: mdl_quiz_sections; Type: TABLE; Schema: public; Owner: postgres -- @@ -16866,8 +14967,6 @@ CREATE TABLE public.mdl_quiz_sections ( ALTER TABLE public.mdl_quiz_sections OWNER TO postgres; -- --- TOC entry 11164 (class 0 OID 0) --- Dependencies: 816 -- Name: TABLE mdl_quiz_sections; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16875,7 +14974,6 @@ COMMENT ON TABLE public.mdl_quiz_sections IS 'Stores sections of a quiz with sec -- --- TOC entry 817 (class 1259 OID 62481) -- Name: mdl_quiz_sections_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16890,8 +14988,6 @@ CREATE SEQUENCE public.mdl_quiz_sections_id_seq ALTER TABLE public.mdl_quiz_sections_id_seq OWNER TO postgres; -- --- TOC entry 11165 (class 0 OID 0) --- Dependencies: 817 -- Name: mdl_quiz_sections_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16899,7 +14995,6 @@ ALTER SEQUENCE public.mdl_quiz_sections_id_seq OWNED BY public.mdl_quiz_sections -- --- TOC entry 818 (class 1259 OID 62483) -- Name: mdl_quiz_slot_tags; Type: TABLE; Schema: public; Owner: postgres -- @@ -16914,8 +15009,6 @@ CREATE TABLE public.mdl_quiz_slot_tags ( ALTER TABLE public.mdl_quiz_slot_tags OWNER TO postgres; -- --- TOC entry 11166 (class 0 OID 0) --- Dependencies: 818 -- Name: TABLE mdl_quiz_slot_tags; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16923,7 +15016,6 @@ COMMENT ON TABLE public.mdl_quiz_slot_tags IS 'Stores data about the tags that a -- --- TOC entry 819 (class 1259 OID 62486) -- Name: mdl_quiz_slot_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16938,8 +15030,6 @@ CREATE SEQUENCE public.mdl_quiz_slot_tags_id_seq ALTER TABLE public.mdl_quiz_slot_tags_id_seq OWNER TO postgres; -- --- TOC entry 11167 (class 0 OID 0) --- Dependencies: 819 -- Name: mdl_quiz_slot_tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -16947,7 +15037,6 @@ ALTER SEQUENCE public.mdl_quiz_slot_tags_id_seq OWNED BY public.mdl_quiz_slot_ta -- --- TOC entry 820 (class 1259 OID 62488) -- Name: mdl_quiz_slots; Type: TABLE; Schema: public; Owner: postgres -- @@ -16967,8 +15056,6 @@ CREATE TABLE public.mdl_quiz_slots ( ALTER TABLE public.mdl_quiz_slots OWNER TO postgres; -- --- TOC entry 11168 (class 0 OID 0) --- Dependencies: 820 -- Name: TABLE mdl_quiz_slots; Type: COMMENT; Schema: public; Owner: postgres -- @@ -16976,7 +15063,6 @@ COMMENT ON TABLE public.mdl_quiz_slots IS 'Stores the question used in a quiz, w -- --- TOC entry 821 (class 1259 OID 62495) -- Name: mdl_quiz_slots_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -16991,8 +15077,6 @@ CREATE SEQUENCE public.mdl_quiz_slots_id_seq ALTER TABLE public.mdl_quiz_slots_id_seq OWNER TO postgres; -- --- TOC entry 11169 (class 0 OID 0) --- Dependencies: 821 -- Name: mdl_quiz_slots_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17000,7 +15084,6 @@ ALTER SEQUENCE public.mdl_quiz_slots_id_seq OWNED BY public.mdl_quiz_slots.id; -- --- TOC entry 822 (class 1259 OID 62497) -- Name: mdl_quiz_statistics; Type: TABLE; Schema: public; Owner: postgres -- @@ -17030,8 +15113,6 @@ CREATE TABLE public.mdl_quiz_statistics ( ALTER TABLE public.mdl_quiz_statistics OWNER TO postgres; -- --- TOC entry 11170 (class 0 OID 0) --- Dependencies: 822 -- Name: TABLE mdl_quiz_statistics; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17039,7 +15120,6 @@ COMMENT ON TABLE public.mdl_quiz_statistics IS 'table to cache results from anal -- --- TOC entry 823 (class 1259 OID 62501) -- Name: mdl_quiz_statistics_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17054,8 +15134,6 @@ CREATE SEQUENCE public.mdl_quiz_statistics_id_seq ALTER TABLE public.mdl_quiz_statistics_id_seq OWNER TO postgres; -- --- TOC entry 11171 (class 0 OID 0) --- Dependencies: 823 -- Name: mdl_quiz_statistics_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17063,7 +15141,6 @@ ALTER SEQUENCE public.mdl_quiz_statistics_id_seq OWNED BY public.mdl_quiz_statis -- --- TOC entry 824 (class 1259 OID 62503) -- Name: mdl_quizaccess_seb_quizsettings; Type: TABLE; Schema: public; Owner: postgres -- @@ -17103,8 +15180,6 @@ CREATE TABLE public.mdl_quizaccess_seb_quizsettings ( ALTER TABLE public.mdl_quizaccess_seb_quizsettings OWNER TO postgres; -- --- TOC entry 11172 (class 0 OID 0) --- Dependencies: 824 -- Name: TABLE mdl_quizaccess_seb_quizsettings; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17112,7 +15187,6 @@ COMMENT ON TABLE public.mdl_quizaccess_seb_quizsettings IS 'Stores the quiz leve -- --- TOC entry 825 (class 1259 OID 62512) -- Name: mdl_quizaccess_seb_quizsettings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17127,8 +15201,6 @@ CREATE SEQUENCE public.mdl_quizaccess_seb_quizsettings_id_seq ALTER TABLE public.mdl_quizaccess_seb_quizsettings_id_seq OWNER TO postgres; -- --- TOC entry 11173 (class 0 OID 0) --- Dependencies: 825 -- Name: mdl_quizaccess_seb_quizsettings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17136,7 +15208,6 @@ ALTER SEQUENCE public.mdl_quizaccess_seb_quizsettings_id_seq OWNED BY public.mdl -- --- TOC entry 826 (class 1259 OID 62514) -- Name: mdl_quizaccess_seb_template; Type: TABLE; Schema: public; Owner: postgres -- @@ -17156,8 +15227,6 @@ CREATE TABLE public.mdl_quizaccess_seb_template ( ALTER TABLE public.mdl_quizaccess_seb_template OWNER TO postgres; -- --- TOC entry 11174 (class 0 OID 0) --- Dependencies: 826 -- Name: TABLE mdl_quizaccess_seb_template; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17165,7 +15234,6 @@ COMMENT ON TABLE public.mdl_quizaccess_seb_template IS 'Templates for Safe Exam -- --- TOC entry 827 (class 1259 OID 62524) -- Name: mdl_quizaccess_seb_template_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17180,8 +15248,6 @@ CREATE SEQUENCE public.mdl_quizaccess_seb_template_id_seq ALTER TABLE public.mdl_quizaccess_seb_template_id_seq OWNER TO postgres; -- --- TOC entry 11175 (class 0 OID 0) --- Dependencies: 827 -- Name: mdl_quizaccess_seb_template_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17189,7 +15255,6 @@ ALTER SEQUENCE public.mdl_quizaccess_seb_template_id_seq OWNED BY public.mdl_qui -- --- TOC entry 828 (class 1259 OID 62526) -- Name: mdl_rating; Type: TABLE; Schema: public; Owner: postgres -- @@ -17210,8 +15275,6 @@ CREATE TABLE public.mdl_rating ( ALTER TABLE public.mdl_rating OWNER TO postgres; -- --- TOC entry 11176 (class 0 OID 0) --- Dependencies: 828 -- Name: TABLE mdl_rating; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17219,7 +15282,6 @@ COMMENT ON TABLE public.mdl_rating IS 'moodle ratings'; -- --- TOC entry 829 (class 1259 OID 62531) -- Name: mdl_rating_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17234,8 +15296,6 @@ CREATE SEQUENCE public.mdl_rating_id_seq ALTER TABLE public.mdl_rating_id_seq OWNER TO postgres; -- --- TOC entry 11177 (class 0 OID 0) --- Dependencies: 829 -- Name: mdl_rating_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17243,7 +15303,6 @@ ALTER SEQUENCE public.mdl_rating_id_seq OWNED BY public.mdl_rating.id; -- --- TOC entry 830 (class 1259 OID 62533) -- Name: mdl_registration_hubs; Type: TABLE; Schema: public; Owner: postgres -- @@ -17261,8 +15320,6 @@ CREATE TABLE public.mdl_registration_hubs ( ALTER TABLE public.mdl_registration_hubs OWNER TO postgres; -- --- TOC entry 11178 (class 0 OID 0) --- Dependencies: 830 -- Name: TABLE mdl_registration_hubs; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17270,7 +15327,6 @@ COMMENT ON TABLE public.mdl_registration_hubs IS 'hub where the site is register -- --- TOC entry 831 (class 1259 OID 62544) -- Name: mdl_registration_hubs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17285,8 +15341,6 @@ CREATE SEQUENCE public.mdl_registration_hubs_id_seq ALTER TABLE public.mdl_registration_hubs_id_seq OWNER TO postgres; -- --- TOC entry 11179 (class 0 OID 0) --- Dependencies: 831 -- Name: mdl_registration_hubs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17294,7 +15348,6 @@ ALTER SEQUENCE public.mdl_registration_hubs_id_seq OWNED BY public.mdl_registrat -- --- TOC entry 832 (class 1259 OID 62546) -- Name: mdl_repository; Type: TABLE; Schema: public; Owner: postgres -- @@ -17309,8 +15362,6 @@ CREATE TABLE public.mdl_repository ( ALTER TABLE public.mdl_repository OWNER TO postgres; -- --- TOC entry 11180 (class 0 OID 0) --- Dependencies: 832 -- Name: TABLE mdl_repository; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17318,7 +15369,6 @@ COMMENT ON TABLE public.mdl_repository IS 'This table contains one entry for eve -- --- TOC entry 833 (class 1259 OID 62552) -- Name: mdl_repository_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17333,8 +15383,6 @@ CREATE SEQUENCE public.mdl_repository_id_seq ALTER TABLE public.mdl_repository_id_seq OWNER TO postgres; -- --- TOC entry 11181 (class 0 OID 0) --- Dependencies: 833 -- Name: mdl_repository_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17342,7 +15390,6 @@ ALTER SEQUENCE public.mdl_repository_id_seq OWNED BY public.mdl_repository.id; -- --- TOC entry 834 (class 1259 OID 62554) -- Name: mdl_repository_instance_config; Type: TABLE; Schema: public; Owner: postgres -- @@ -17357,8 +15404,6 @@ CREATE TABLE public.mdl_repository_instance_config ( ALTER TABLE public.mdl_repository_instance_config OWNER TO postgres; -- --- TOC entry 11182 (class 0 OID 0) --- Dependencies: 834 -- Name: TABLE mdl_repository_instance_config; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17366,7 +15411,6 @@ COMMENT ON TABLE public.mdl_repository_instance_config IS 'The config for intanc -- --- TOC entry 835 (class 1259 OID 62561) -- Name: mdl_repository_instance_config_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17381,8 +15425,6 @@ CREATE SEQUENCE public.mdl_repository_instance_config_id_seq ALTER TABLE public.mdl_repository_instance_config_id_seq OWNER TO postgres; -- --- TOC entry 11183 (class 0 OID 0) --- Dependencies: 835 -- Name: mdl_repository_instance_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17390,7 +15432,6 @@ ALTER SEQUENCE public.mdl_repository_instance_config_id_seq OWNED BY public.mdl_ -- --- TOC entry 836 (class 1259 OID 62563) -- Name: mdl_repository_instances; Type: TABLE; Schema: public; Owner: postgres -- @@ -17411,8 +15452,6 @@ CREATE TABLE public.mdl_repository_instances ( ALTER TABLE public.mdl_repository_instances OWNER TO postgres; -- --- TOC entry 11184 (class 0 OID 0) --- Dependencies: 836 -- Name: TABLE mdl_repository_instances; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17420,7 +15459,6 @@ COMMENT ON TABLE public.mdl_repository_instances IS 'This table contains one ent -- --- TOC entry 837 (class 1259 OID 62572) -- Name: mdl_repository_instances_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17435,8 +15473,6 @@ CREATE SEQUENCE public.mdl_repository_instances_id_seq ALTER TABLE public.mdl_repository_instances_id_seq OWNER TO postgres; -- --- TOC entry 11185 (class 0 OID 0) --- Dependencies: 837 -- Name: mdl_repository_instances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17444,7 +15480,6 @@ ALTER SEQUENCE public.mdl_repository_instances_id_seq OWNED BY public.mdl_reposi -- --- TOC entry 838 (class 1259 OID 62574) -- Name: mdl_repository_onedrive_access; Type: TABLE; Schema: public; Owner: postgres -- @@ -17461,8 +15496,6 @@ CREATE TABLE public.mdl_repository_onedrive_access ( ALTER TABLE public.mdl_repository_onedrive_access OWNER TO postgres; -- --- TOC entry 11186 (class 0 OID 0) --- Dependencies: 838 -- Name: TABLE mdl_repository_onedrive_access; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17470,7 +15503,6 @@ COMMENT ON TABLE public.mdl_repository_onedrive_access IS 'List of temporary acc -- --- TOC entry 839 (class 1259 OID 62582) -- Name: mdl_repository_onedrive_access_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17485,8 +15517,6 @@ CREATE SEQUENCE public.mdl_repository_onedrive_access_id_seq ALTER TABLE public.mdl_repository_onedrive_access_id_seq OWNER TO postgres; -- --- TOC entry 11187 (class 0 OID 0) --- Dependencies: 839 -- Name: mdl_repository_onedrive_access_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17494,7 +15524,6 @@ ALTER SEQUENCE public.mdl_repository_onedrive_access_id_seq OWNED BY public.mdl_ -- --- TOC entry 840 (class 1259 OID 62584) -- Name: mdl_resource; Type: TABLE; Schema: public; Owner: postgres -- @@ -17518,8 +15547,6 @@ CREATE TABLE public.mdl_resource ( ALTER TABLE public.mdl_resource OWNER TO postgres; -- --- TOC entry 11188 (class 0 OID 0) --- Dependencies: 840 -- Name: TABLE mdl_resource; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17527,7 +15554,6 @@ COMMENT ON TABLE public.mdl_resource IS 'Each record is one resource and its con -- --- TOC entry 841 (class 1259 OID 62599) -- Name: mdl_resource_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17542,8 +15568,6 @@ CREATE SEQUENCE public.mdl_resource_id_seq ALTER TABLE public.mdl_resource_id_seq OWNER TO postgres; -- --- TOC entry 11189 (class 0 OID 0) --- Dependencies: 841 -- Name: mdl_resource_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17551,7 +15575,6 @@ ALTER SEQUENCE public.mdl_resource_id_seq OWNED BY public.mdl_resource.id; -- --- TOC entry 842 (class 1259 OID 62601) -- Name: mdl_resource_old; Type: TABLE; Schema: public; Owner: postgres -- @@ -17578,8 +15601,6 @@ CREATE TABLE public.mdl_resource_old ( ALTER TABLE public.mdl_resource_old OWNER TO postgres; -- --- TOC entry 11190 (class 0 OID 0) --- Dependencies: 842 -- Name: TABLE mdl_resource_old; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17587,7 +15608,6 @@ COMMENT ON TABLE public.mdl_resource_old IS 'backup of all old resource instance -- --- TOC entry 843 (class 1259 OID 62615) -- Name: mdl_resource_old_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17602,8 +15622,6 @@ CREATE SEQUENCE public.mdl_resource_old_id_seq ALTER TABLE public.mdl_resource_old_id_seq OWNER TO postgres; -- --- TOC entry 11191 (class 0 OID 0) --- Dependencies: 843 -- Name: mdl_resource_old_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17611,7 +15629,6 @@ ALTER SEQUENCE public.mdl_resource_old_id_seq OWNED BY public.mdl_resource_old.i -- --- TOC entry 844 (class 1259 OID 62617) -- Name: mdl_role; Type: TABLE; Schema: public; Owner: postgres -- @@ -17628,8 +15645,6 @@ CREATE TABLE public.mdl_role ( ALTER TABLE public.mdl_role OWNER TO postgres; -- --- TOC entry 11192 (class 0 OID 0) --- Dependencies: 844 -- Name: TABLE mdl_role; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17637,7 +15652,6 @@ COMMENT ON TABLE public.mdl_role IS 'moodle roles'; -- --- TOC entry 845 (class 1259 OID 62627) -- Name: mdl_role_allow_assign; Type: TABLE; Schema: public; Owner: postgres -- @@ -17651,8 +15665,6 @@ CREATE TABLE public.mdl_role_allow_assign ( ALTER TABLE public.mdl_role_allow_assign OWNER TO postgres; -- --- TOC entry 11193 (class 0 OID 0) --- Dependencies: 845 -- Name: TABLE mdl_role_allow_assign; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17660,7 +15672,6 @@ COMMENT ON TABLE public.mdl_role_allow_assign IS 'this defines what role can ass -- --- TOC entry 846 (class 1259 OID 62632) -- Name: mdl_role_allow_assign_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17675,8 +15686,6 @@ CREATE SEQUENCE public.mdl_role_allow_assign_id_seq ALTER TABLE public.mdl_role_allow_assign_id_seq OWNER TO postgres; -- --- TOC entry 11194 (class 0 OID 0) --- Dependencies: 846 -- Name: mdl_role_allow_assign_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17684,7 +15693,6 @@ ALTER SEQUENCE public.mdl_role_allow_assign_id_seq OWNED BY public.mdl_role_allo -- --- TOC entry 847 (class 1259 OID 62634) -- Name: mdl_role_allow_override; Type: TABLE; Schema: public; Owner: postgres -- @@ -17698,8 +15706,6 @@ CREATE TABLE public.mdl_role_allow_override ( ALTER TABLE public.mdl_role_allow_override OWNER TO postgres; -- --- TOC entry 11195 (class 0 OID 0) --- Dependencies: 847 -- Name: TABLE mdl_role_allow_override; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17707,7 +15713,6 @@ COMMENT ON TABLE public.mdl_role_allow_override IS 'this defines what role can o -- --- TOC entry 848 (class 1259 OID 62639) -- Name: mdl_role_allow_override_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17722,8 +15727,6 @@ CREATE SEQUENCE public.mdl_role_allow_override_id_seq ALTER TABLE public.mdl_role_allow_override_id_seq OWNER TO postgres; -- --- TOC entry 11196 (class 0 OID 0) --- Dependencies: 848 -- Name: mdl_role_allow_override_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17731,7 +15734,6 @@ ALTER SEQUENCE public.mdl_role_allow_override_id_seq OWNED BY public.mdl_role_al -- --- TOC entry 849 (class 1259 OID 62641) -- Name: mdl_role_allow_switch; Type: TABLE; Schema: public; Owner: postgres -- @@ -17745,8 +15747,6 @@ CREATE TABLE public.mdl_role_allow_switch ( ALTER TABLE public.mdl_role_allow_switch OWNER TO postgres; -- --- TOC entry 11197 (class 0 OID 0) --- Dependencies: 849 -- Name: TABLE mdl_role_allow_switch; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17754,7 +15754,6 @@ COMMENT ON TABLE public.mdl_role_allow_switch IS 'This table stores which which -- --- TOC entry 850 (class 1259 OID 62644) -- Name: mdl_role_allow_switch_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17769,8 +15768,6 @@ CREATE SEQUENCE public.mdl_role_allow_switch_id_seq ALTER TABLE public.mdl_role_allow_switch_id_seq OWNER TO postgres; -- --- TOC entry 11198 (class 0 OID 0) --- Dependencies: 850 -- Name: mdl_role_allow_switch_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17778,7 +15775,6 @@ ALTER SEQUENCE public.mdl_role_allow_switch_id_seq OWNED BY public.mdl_role_allo -- --- TOC entry 851 (class 1259 OID 62646) -- Name: mdl_role_allow_view; Type: TABLE; Schema: public; Owner: postgres -- @@ -17792,8 +15788,6 @@ CREATE TABLE public.mdl_role_allow_view ( ALTER TABLE public.mdl_role_allow_view OWNER TO postgres; -- --- TOC entry 11199 (class 0 OID 0) --- Dependencies: 851 -- Name: TABLE mdl_role_allow_view; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17801,7 +15795,6 @@ COMMENT ON TABLE public.mdl_role_allow_view IS 'This table stores which which ot -- --- TOC entry 852 (class 1259 OID 62649) -- Name: mdl_role_allow_view_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17816,8 +15809,6 @@ CREATE SEQUENCE public.mdl_role_allow_view_id_seq ALTER TABLE public.mdl_role_allow_view_id_seq OWNER TO postgres; -- --- TOC entry 11200 (class 0 OID 0) --- Dependencies: 852 -- Name: mdl_role_allow_view_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17825,7 +15816,6 @@ ALTER SEQUENCE public.mdl_role_allow_view_id_seq OWNED BY public.mdl_role_allow_ -- --- TOC entry 853 (class 1259 OID 62651) -- Name: mdl_role_assignments; Type: TABLE; Schema: public; Owner: postgres -- @@ -17845,8 +15835,6 @@ CREATE TABLE public.mdl_role_assignments ( ALTER TABLE public.mdl_role_assignments OWNER TO postgres; -- --- TOC entry 11201 (class 0 OID 0) --- Dependencies: 853 -- Name: TABLE mdl_role_assignments; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17854,7 +15842,6 @@ COMMENT ON TABLE public.mdl_role_assignments IS 'assigning roles in different co -- --- TOC entry 854 (class 1259 OID 62662) -- Name: mdl_role_assignments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17869,8 +15856,6 @@ CREATE SEQUENCE public.mdl_role_assignments_id_seq ALTER TABLE public.mdl_role_assignments_id_seq OWNER TO postgres; -- --- TOC entry 11202 (class 0 OID 0) --- Dependencies: 854 -- Name: mdl_role_assignments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17878,7 +15863,6 @@ ALTER SEQUENCE public.mdl_role_assignments_id_seq OWNED BY public.mdl_role_assig -- --- TOC entry 855 (class 1259 OID 62664) -- Name: mdl_role_capabilities; Type: TABLE; Schema: public; Owner: postgres -- @@ -17896,8 +15880,6 @@ CREATE TABLE public.mdl_role_capabilities ( ALTER TABLE public.mdl_role_capabilities OWNER TO postgres; -- --- TOC entry 11203 (class 0 OID 0) --- Dependencies: 855 -- Name: TABLE mdl_role_capabilities; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17905,7 +15887,6 @@ COMMENT ON TABLE public.mdl_role_capabilities IS 'permission has to be signed, o -- --- TOC entry 856 (class 1259 OID 62673) -- Name: mdl_role_capabilities_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17920,8 +15901,6 @@ CREATE SEQUENCE public.mdl_role_capabilities_id_seq ALTER TABLE public.mdl_role_capabilities_id_seq OWNER TO postgres; -- --- TOC entry 11204 (class 0 OID 0) --- Dependencies: 856 -- Name: mdl_role_capabilities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17929,7 +15908,6 @@ ALTER SEQUENCE public.mdl_role_capabilities_id_seq OWNED BY public.mdl_role_capa -- --- TOC entry 857 (class 1259 OID 62675) -- Name: mdl_role_context_levels; Type: TABLE; Schema: public; Owner: postgres -- @@ -17943,8 +15921,6 @@ CREATE TABLE public.mdl_role_context_levels ( ALTER TABLE public.mdl_role_context_levels OWNER TO postgres; -- --- TOC entry 11205 (class 0 OID 0) --- Dependencies: 857 -- Name: TABLE mdl_role_context_levels; Type: COMMENT; Schema: public; Owner: postgres -- @@ -17952,7 +15928,6 @@ COMMENT ON TABLE public.mdl_role_context_levels IS 'Lists which roles can be ass -- --- TOC entry 858 (class 1259 OID 62678) -- Name: mdl_role_context_levels_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17967,8 +15942,6 @@ CREATE SEQUENCE public.mdl_role_context_levels_id_seq ALTER TABLE public.mdl_role_context_levels_id_seq OWNER TO postgres; -- --- TOC entry 11206 (class 0 OID 0) --- Dependencies: 858 -- Name: mdl_role_context_levels_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -17976,7 +15949,6 @@ ALTER SEQUENCE public.mdl_role_context_levels_id_seq OWNED BY public.mdl_role_co -- --- TOC entry 859 (class 1259 OID 62680) -- Name: mdl_role_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -17991,8 +15963,6 @@ CREATE SEQUENCE public.mdl_role_id_seq ALTER TABLE public.mdl_role_id_seq OWNER TO postgres; -- --- TOC entry 11207 (class 0 OID 0) --- Dependencies: 859 -- Name: mdl_role_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18000,7 +15970,6 @@ ALTER SEQUENCE public.mdl_role_id_seq OWNED BY public.mdl_role.id; -- --- TOC entry 860 (class 1259 OID 62682) -- Name: mdl_role_names; Type: TABLE; Schema: public; Owner: postgres -- @@ -18015,8 +15984,6 @@ CREATE TABLE public.mdl_role_names ( ALTER TABLE public.mdl_role_names OWNER TO postgres; -- --- TOC entry 11208 (class 0 OID 0) --- Dependencies: 860 -- Name: TABLE mdl_role_names; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18024,7 +15991,6 @@ COMMENT ON TABLE public.mdl_role_names IS 'role names in native strings'; -- --- TOC entry 861 (class 1259 OID 62688) -- Name: mdl_role_names_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18039,8 +16005,6 @@ CREATE SEQUENCE public.mdl_role_names_id_seq ALTER TABLE public.mdl_role_names_id_seq OWNER TO postgres; -- --- TOC entry 11209 (class 0 OID 0) --- Dependencies: 861 -- Name: mdl_role_names_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18048,7 +16012,6 @@ ALTER SEQUENCE public.mdl_role_names_id_seq OWNED BY public.mdl_role_names.id; -- --- TOC entry 862 (class 1259 OID 62690) -- Name: mdl_scale; Type: TABLE; Schema: public; Owner: postgres -- @@ -18067,8 +16030,6 @@ CREATE TABLE public.mdl_scale ( ALTER TABLE public.mdl_scale OWNER TO postgres; -- --- TOC entry 11210 (class 0 OID 0) --- Dependencies: 862 -- Name: TABLE mdl_scale; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18076,7 +16037,6 @@ COMMENT ON TABLE public.mdl_scale IS 'Defines grading scales'; -- --- TOC entry 863 (class 1259 OID 62701) -- Name: mdl_scale_history; Type: TABLE; Schema: public; Owner: postgres -- @@ -18098,8 +16058,6 @@ CREATE TABLE public.mdl_scale_history ( ALTER TABLE public.mdl_scale_history OWNER TO postgres; -- --- TOC entry 11211 (class 0 OID 0) --- Dependencies: 863 -- Name: TABLE mdl_scale_history; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18107,7 +16065,6 @@ COMMENT ON TABLE public.mdl_scale_history IS 'History table'; -- --- TOC entry 864 (class 1259 OID 62711) -- Name: mdl_scale_history_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18122,8 +16079,6 @@ CREATE SEQUENCE public.mdl_scale_history_id_seq ALTER TABLE public.mdl_scale_history_id_seq OWNER TO postgres; -- --- TOC entry 11212 (class 0 OID 0) --- Dependencies: 864 -- Name: mdl_scale_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18131,7 +16086,6 @@ ALTER SEQUENCE public.mdl_scale_history_id_seq OWNED BY public.mdl_scale_history -- --- TOC entry 865 (class 1259 OID 62713) -- Name: mdl_scale_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18146,8 +16100,6 @@ CREATE SEQUENCE public.mdl_scale_id_seq ALTER TABLE public.mdl_scale_id_seq OWNER TO postgres; -- --- TOC entry 11213 (class 0 OID 0) --- Dependencies: 865 -- Name: mdl_scale_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18155,7 +16107,6 @@ ALTER SEQUENCE public.mdl_scale_id_seq OWNED BY public.mdl_scale.id; -- --- TOC entry 866 (class 1259 OID 62715) -- Name: mdl_scorm; Type: TABLE; Schema: public; Owner: postgres -- @@ -18208,8 +16159,6 @@ CREATE TABLE public.mdl_scorm ( ALTER TABLE public.mdl_scorm OWNER TO postgres; -- --- TOC entry 11214 (class 0 OID 0) --- Dependencies: 866 -- Name: TABLE mdl_scorm; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18217,7 +16166,6 @@ COMMENT ON TABLE public.mdl_scorm IS 'each table is one SCORM module and its con -- --- TOC entry 867 (class 1259 OID 62757) -- Name: mdl_scorm_aicc_session; Type: TABLE; Schema: public; Owner: postgres -- @@ -18240,8 +16188,6 @@ CREATE TABLE public.mdl_scorm_aicc_session ( ALTER TABLE public.mdl_scorm_aicc_session OWNER TO postgres; -- --- TOC entry 11215 (class 0 OID 0) --- Dependencies: 867 -- Name: TABLE mdl_scorm_aicc_session; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18249,7 +16195,6 @@ COMMENT ON TABLE public.mdl_scorm_aicc_session IS 'Used by AICC HACP to store se -- --- TOC entry 868 (class 1259 OID 62769) -- Name: mdl_scorm_aicc_session_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18264,8 +16209,6 @@ CREATE SEQUENCE public.mdl_scorm_aicc_session_id_seq ALTER TABLE public.mdl_scorm_aicc_session_id_seq OWNER TO postgres; -- --- TOC entry 11216 (class 0 OID 0) --- Dependencies: 868 -- Name: mdl_scorm_aicc_session_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18273,7 +16216,6 @@ ALTER SEQUENCE public.mdl_scorm_aicc_session_id_seq OWNED BY public.mdl_scorm_ai -- --- TOC entry 869 (class 1259 OID 62771) -- Name: mdl_scorm_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18288,8 +16230,6 @@ CREATE SEQUENCE public.mdl_scorm_id_seq ALTER TABLE public.mdl_scorm_id_seq OWNER TO postgres; -- --- TOC entry 11217 (class 0 OID 0) --- Dependencies: 869 -- Name: mdl_scorm_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18297,7 +16237,6 @@ ALTER SEQUENCE public.mdl_scorm_id_seq OWNED BY public.mdl_scorm.id; -- --- TOC entry 870 (class 1259 OID 62773) -- Name: mdl_scorm_scoes; Type: TABLE; Schema: public; Owner: postgres -- @@ -18318,8 +16257,6 @@ CREATE TABLE public.mdl_scorm_scoes ( ALTER TABLE public.mdl_scorm_scoes OWNER TO postgres; -- --- TOC entry 11218 (class 0 OID 0) --- Dependencies: 870 -- Name: TABLE mdl_scorm_scoes; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18327,7 +16264,6 @@ COMMENT ON TABLE public.mdl_scorm_scoes IS 'each SCO part of the SCORM module'; -- --- TOC entry 871 (class 1259 OID 62787) -- Name: mdl_scorm_scoes_data; Type: TABLE; Schema: public; Owner: postgres -- @@ -18342,8 +16278,6 @@ CREATE TABLE public.mdl_scorm_scoes_data ( ALTER TABLE public.mdl_scorm_scoes_data OWNER TO postgres; -- --- TOC entry 11219 (class 0 OID 0) --- Dependencies: 871 -- Name: TABLE mdl_scorm_scoes_data; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18351,7 +16285,6 @@ COMMENT ON TABLE public.mdl_scorm_scoes_data IS 'Contains variable data get from -- --- TOC entry 872 (class 1259 OID 62795) -- Name: mdl_scorm_scoes_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18366,8 +16299,6 @@ CREATE SEQUENCE public.mdl_scorm_scoes_data_id_seq ALTER TABLE public.mdl_scorm_scoes_data_id_seq OWNER TO postgres; -- --- TOC entry 11220 (class 0 OID 0) --- Dependencies: 872 -- Name: mdl_scorm_scoes_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18375,7 +16306,6 @@ ALTER SEQUENCE public.mdl_scorm_scoes_data_id_seq OWNED BY public.mdl_scorm_scoe -- --- TOC entry 873 (class 1259 OID 62797) -- Name: mdl_scorm_scoes_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18390,8 +16320,6 @@ CREATE SEQUENCE public.mdl_scorm_scoes_id_seq ALTER TABLE public.mdl_scorm_scoes_id_seq OWNER TO postgres; -- --- TOC entry 11221 (class 0 OID 0) --- Dependencies: 873 -- Name: mdl_scorm_scoes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18399,7 +16327,6 @@ ALTER SEQUENCE public.mdl_scorm_scoes_id_seq OWNED BY public.mdl_scorm_scoes.id; -- --- TOC entry 874 (class 1259 OID 62799) -- Name: mdl_scorm_scoes_track; Type: TABLE; Schema: public; Owner: postgres -- @@ -18418,8 +16345,6 @@ CREATE TABLE public.mdl_scorm_scoes_track ( ALTER TABLE public.mdl_scorm_scoes_track OWNER TO postgres; -- --- TOC entry 11222 (class 0 OID 0) --- Dependencies: 874 -- Name: TABLE mdl_scorm_scoes_track; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18427,7 +16352,6 @@ COMMENT ON TABLE public.mdl_scorm_scoes_track IS 'to track SCOes'; -- --- TOC entry 875 (class 1259 OID 62811) -- Name: mdl_scorm_scoes_track_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18442,8 +16366,6 @@ CREATE SEQUENCE public.mdl_scorm_scoes_track_id_seq ALTER TABLE public.mdl_scorm_scoes_track_id_seq OWNER TO postgres; -- --- TOC entry 11223 (class 0 OID 0) --- Dependencies: 875 -- Name: mdl_scorm_scoes_track_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18451,7 +16373,6 @@ ALTER SEQUENCE public.mdl_scorm_scoes_track_id_seq OWNED BY public.mdl_scorm_sco -- --- TOC entry 876 (class 1259 OID 62813) -- Name: mdl_scorm_seq_mapinfo; Type: TABLE; Schema: public; Owner: postgres -- @@ -18470,8 +16391,6 @@ CREATE TABLE public.mdl_scorm_seq_mapinfo ( ALTER TABLE public.mdl_scorm_seq_mapinfo OWNER TO postgres; -- --- TOC entry 11224 (class 0 OID 0) --- Dependencies: 876 -- Name: TABLE mdl_scorm_seq_mapinfo; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18479,7 +16398,6 @@ COMMENT ON TABLE public.mdl_scorm_seq_mapinfo IS 'SCORM2004 objective mapinfo de -- --- TOC entry 877 (class 1259 OID 62823) -- Name: mdl_scorm_seq_mapinfo_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18494,8 +16412,6 @@ CREATE SEQUENCE public.mdl_scorm_seq_mapinfo_id_seq ALTER TABLE public.mdl_scorm_seq_mapinfo_id_seq OWNER TO postgres; -- --- TOC entry 11225 (class 0 OID 0) --- Dependencies: 877 -- Name: mdl_scorm_seq_mapinfo_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18503,7 +16419,6 @@ ALTER SEQUENCE public.mdl_scorm_seq_mapinfo_id_seq OWNED BY public.mdl_scorm_seq -- --- TOC entry 878 (class 1259 OID 62825) -- Name: mdl_scorm_seq_objective; Type: TABLE; Schema: public; Owner: postgres -- @@ -18520,8 +16435,6 @@ CREATE TABLE public.mdl_scorm_seq_objective ( ALTER TABLE public.mdl_scorm_seq_objective OWNER TO postgres; -- --- TOC entry 11226 (class 0 OID 0) --- Dependencies: 878 -- Name: TABLE mdl_scorm_seq_objective; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18529,7 +16442,6 @@ COMMENT ON TABLE public.mdl_scorm_seq_objective IS 'SCORM2004 objective descript -- --- TOC entry 879 (class 1259 OID 62833) -- Name: mdl_scorm_seq_objective_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18544,8 +16456,6 @@ CREATE SEQUENCE public.mdl_scorm_seq_objective_id_seq ALTER TABLE public.mdl_scorm_seq_objective_id_seq OWNER TO postgres; -- --- TOC entry 11227 (class 0 OID 0) --- Dependencies: 879 -- Name: mdl_scorm_seq_objective_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18553,7 +16463,6 @@ ALTER SEQUENCE public.mdl_scorm_seq_objective_id_seq OWNED BY public.mdl_scorm_s -- --- TOC entry 880 (class 1259 OID 62835) -- Name: mdl_scorm_seq_rolluprule; Type: TABLE; Schema: public; Owner: postgres -- @@ -18571,8 +16480,6 @@ CREATE TABLE public.mdl_scorm_seq_rolluprule ( ALTER TABLE public.mdl_scorm_seq_rolluprule OWNER TO postgres; -- --- TOC entry 11228 (class 0 OID 0) --- Dependencies: 880 -- Name: TABLE mdl_scorm_seq_rolluprule; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18580,7 +16487,6 @@ COMMENT ON TABLE public.mdl_scorm_seq_rolluprule IS 'SCORM2004 sequencing rule'; -- --- TOC entry 881 (class 1259 OID 62844) -- Name: mdl_scorm_seq_rolluprule_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18595,8 +16501,6 @@ CREATE SEQUENCE public.mdl_scorm_seq_rolluprule_id_seq ALTER TABLE public.mdl_scorm_seq_rolluprule_id_seq OWNER TO postgres; -- --- TOC entry 11229 (class 0 OID 0) --- Dependencies: 881 -- Name: mdl_scorm_seq_rolluprule_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18604,7 +16508,6 @@ ALTER SEQUENCE public.mdl_scorm_seq_rolluprule_id_seq OWNED BY public.mdl_scorm_ -- --- TOC entry 882 (class 1259 OID 62846) -- Name: mdl_scorm_seq_rolluprulecond; Type: TABLE; Schema: public; Owner: postgres -- @@ -18620,8 +16523,6 @@ CREATE TABLE public.mdl_scorm_seq_rolluprulecond ( ALTER TABLE public.mdl_scorm_seq_rolluprulecond OWNER TO postgres; -- --- TOC entry 11230 (class 0 OID 0) --- Dependencies: 882 -- Name: TABLE mdl_scorm_seq_rolluprulecond; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18629,7 +16530,6 @@ COMMENT ON TABLE public.mdl_scorm_seq_rolluprulecond IS 'SCORM2004 sequencing ru -- --- TOC entry 883 (class 1259 OID 62853) -- Name: mdl_scorm_seq_rolluprulecond_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18644,8 +16544,6 @@ CREATE SEQUENCE public.mdl_scorm_seq_rolluprulecond_id_seq ALTER TABLE public.mdl_scorm_seq_rolluprulecond_id_seq OWNER TO postgres; -- --- TOC entry 11231 (class 0 OID 0) --- Dependencies: 883 -- Name: mdl_scorm_seq_rolluprulecond_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18653,7 +16551,6 @@ ALTER SEQUENCE public.mdl_scorm_seq_rolluprulecond_id_seq OWNED BY public.mdl_sc -- --- TOC entry 884 (class 1259 OID 62855) -- Name: mdl_scorm_seq_rulecond; Type: TABLE; Schema: public; Owner: postgres -- @@ -18671,8 +16568,6 @@ CREATE TABLE public.mdl_scorm_seq_rulecond ( ALTER TABLE public.mdl_scorm_seq_rulecond OWNER TO postgres; -- --- TOC entry 11232 (class 0 OID 0) --- Dependencies: 884 -- Name: TABLE mdl_scorm_seq_rulecond; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18680,7 +16575,6 @@ COMMENT ON TABLE public.mdl_scorm_seq_rulecond IS 'SCORM2004 rule condition'; -- --- TOC entry 885 (class 1259 OID 62864) -- Name: mdl_scorm_seq_rulecond_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18695,8 +16589,6 @@ CREATE SEQUENCE public.mdl_scorm_seq_rulecond_id_seq ALTER TABLE public.mdl_scorm_seq_rulecond_id_seq OWNER TO postgres; -- --- TOC entry 11233 (class 0 OID 0) --- Dependencies: 885 -- Name: mdl_scorm_seq_rulecond_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18704,7 +16596,6 @@ ALTER SEQUENCE public.mdl_scorm_seq_rulecond_id_seq OWNED BY public.mdl_scorm_se -- --- TOC entry 886 (class 1259 OID 62866) -- Name: mdl_scorm_seq_ruleconds; Type: TABLE; Schema: public; Owner: postgres -- @@ -18720,8 +16611,6 @@ CREATE TABLE public.mdl_scorm_seq_ruleconds ( ALTER TABLE public.mdl_scorm_seq_ruleconds OWNER TO postgres; -- --- TOC entry 11234 (class 0 OID 0) --- Dependencies: 886 -- Name: TABLE mdl_scorm_seq_ruleconds; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18729,7 +16618,6 @@ COMMENT ON TABLE public.mdl_scorm_seq_ruleconds IS 'SCORM2004 rule conditions'; -- --- TOC entry 887 (class 1259 OID 62873) -- Name: mdl_scorm_seq_ruleconds_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18744,8 +16632,6 @@ CREATE SEQUENCE public.mdl_scorm_seq_ruleconds_id_seq ALTER TABLE public.mdl_scorm_seq_ruleconds_id_seq OWNER TO postgres; -- --- TOC entry 11235 (class 0 OID 0) --- Dependencies: 887 -- Name: mdl_scorm_seq_ruleconds_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18753,7 +16639,6 @@ ALTER SEQUENCE public.mdl_scorm_seq_ruleconds_id_seq OWNED BY public.mdl_scorm_s -- --- TOC entry 888 (class 1259 OID 62875) -- Name: mdl_search_index_requests; Type: TABLE; Schema: public; Owner: postgres -- @@ -18771,8 +16656,6 @@ CREATE TABLE public.mdl_search_index_requests ( ALTER TABLE public.mdl_search_index_requests OWNER TO postgres; -- --- TOC entry 11236 (class 0 OID 0) --- Dependencies: 888 -- Name: TABLE mdl_search_index_requests; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18780,7 +16663,6 @@ COMMENT ON TABLE public.mdl_search_index_requests IS 'Records requests for (re)i -- --- TOC entry 889 (class 1259 OID 62883) -- Name: mdl_search_index_requests_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18795,8 +16677,6 @@ CREATE SEQUENCE public.mdl_search_index_requests_id_seq ALTER TABLE public.mdl_search_index_requests_id_seq OWNER TO postgres; -- --- TOC entry 11237 (class 0 OID 0) --- Dependencies: 889 -- Name: mdl_search_index_requests_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18804,7 +16684,6 @@ ALTER SEQUENCE public.mdl_search_index_requests_id_seq OWNED BY public.mdl_searc -- --- TOC entry 890 (class 1259 OID 62885) -- Name: mdl_search_simpledb_index; Type: TABLE; Schema: public; Owner: postgres -- @@ -18829,8 +16708,6 @@ CREATE TABLE public.mdl_search_simpledb_index ( ALTER TABLE public.mdl_search_simpledb_index OWNER TO postgres; -- --- TOC entry 11238 (class 0 OID 0) --- Dependencies: 890 -- Name: TABLE mdl_search_simpledb_index; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18838,7 +16715,6 @@ COMMENT ON TABLE public.mdl_search_simpledb_index IS 'search_simpledb table cont -- --- TOC entry 891 (class 1259 OID 62893) -- Name: mdl_search_simpledb_index_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18853,8 +16729,6 @@ CREATE SEQUENCE public.mdl_search_simpledb_index_id_seq ALTER TABLE public.mdl_search_simpledb_index_id_seq OWNER TO postgres; -- --- TOC entry 11239 (class 0 OID 0) --- Dependencies: 891 -- Name: mdl_search_simpledb_index_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18862,7 +16736,6 @@ ALTER SEQUENCE public.mdl_search_simpledb_index_id_seq OWNED BY public.mdl_searc -- --- TOC entry 892 (class 1259 OID 62895) -- Name: mdl_sessions; Type: TABLE; Schema: public; Owner: postgres -- @@ -18882,8 +16755,6 @@ CREATE TABLE public.mdl_sessions ( ALTER TABLE public.mdl_sessions OWNER TO postgres; -- --- TOC entry 11240 (class 0 OID 0) --- Dependencies: 892 -- Name: TABLE mdl_sessions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18891,7 +16762,6 @@ COMMENT ON TABLE public.mdl_sessions IS 'Database based session storage - now re -- --- TOC entry 893 (class 1259 OID 62903) -- Name: mdl_sessions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18906,8 +16776,6 @@ CREATE SEQUENCE public.mdl_sessions_id_seq ALTER TABLE public.mdl_sessions_id_seq OWNER TO postgres; -- --- TOC entry 11241 (class 0 OID 0) --- Dependencies: 893 -- Name: mdl_sessions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18915,7 +16783,6 @@ ALTER SEQUENCE public.mdl_sessions_id_seq OWNED BY public.mdl_sessions.id; -- --- TOC entry 894 (class 1259 OID 62905) -- Name: mdl_stats_daily; Type: TABLE; Schema: public; Owner: postgres -- @@ -18933,8 +16800,6 @@ CREATE TABLE public.mdl_stats_daily ( ALTER TABLE public.mdl_stats_daily OWNER TO postgres; -- --- TOC entry 11242 (class 0 OID 0) --- Dependencies: 894 -- Name: TABLE mdl_stats_daily; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18942,7 +16807,6 @@ COMMENT ON TABLE public.mdl_stats_daily IS 'to accumulate daily stats'; -- --- TOC entry 895 (class 1259 OID 62914) -- Name: mdl_stats_daily_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -18957,8 +16821,6 @@ CREATE SEQUENCE public.mdl_stats_daily_id_seq ALTER TABLE public.mdl_stats_daily_id_seq OWNER TO postgres; -- --- TOC entry 11243 (class 0 OID 0) --- Dependencies: 895 -- Name: mdl_stats_daily_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -18966,7 +16828,6 @@ ALTER SEQUENCE public.mdl_stats_daily_id_seq OWNED BY public.mdl_stats_daily.id; -- --- TOC entry 896 (class 1259 OID 62916) -- Name: mdl_stats_monthly; Type: TABLE; Schema: public; Owner: postgres -- @@ -18984,8 +16845,6 @@ CREATE TABLE public.mdl_stats_monthly ( ALTER TABLE public.mdl_stats_monthly OWNER TO postgres; -- --- TOC entry 11244 (class 0 OID 0) --- Dependencies: 896 -- Name: TABLE mdl_stats_monthly; Type: COMMENT; Schema: public; Owner: postgres -- @@ -18993,7 +16852,6 @@ COMMENT ON TABLE public.mdl_stats_monthly IS 'To accumulate monthly stats'; -- --- TOC entry 897 (class 1259 OID 62925) -- Name: mdl_stats_monthly_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19008,8 +16866,6 @@ CREATE SEQUENCE public.mdl_stats_monthly_id_seq ALTER TABLE public.mdl_stats_monthly_id_seq OWNER TO postgres; -- --- TOC entry 11245 (class 0 OID 0) --- Dependencies: 897 -- Name: mdl_stats_monthly_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19017,7 +16873,6 @@ ALTER SEQUENCE public.mdl_stats_monthly_id_seq OWNED BY public.mdl_stats_monthly -- --- TOC entry 898 (class 1259 OID 62927) -- Name: mdl_stats_user_daily; Type: TABLE; Schema: public; Owner: postgres -- @@ -19036,8 +16891,6 @@ CREATE TABLE public.mdl_stats_user_daily ( ALTER TABLE public.mdl_stats_user_daily OWNER TO postgres; -- --- TOC entry 11246 (class 0 OID 0) --- Dependencies: 898 -- Name: TABLE mdl_stats_user_daily; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19045,7 +16898,6 @@ COMMENT ON TABLE public.mdl_stats_user_daily IS 'To accumulate daily stats per c -- --- TOC entry 899 (class 1259 OID 62937) -- Name: mdl_stats_user_daily_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19060,8 +16912,6 @@ CREATE SEQUENCE public.mdl_stats_user_daily_id_seq ALTER TABLE public.mdl_stats_user_daily_id_seq OWNER TO postgres; -- --- TOC entry 11247 (class 0 OID 0) --- Dependencies: 899 -- Name: mdl_stats_user_daily_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19069,7 +16919,6 @@ ALTER SEQUENCE public.mdl_stats_user_daily_id_seq OWNED BY public.mdl_stats_user -- --- TOC entry 900 (class 1259 OID 62939) -- Name: mdl_stats_user_monthly; Type: TABLE; Schema: public; Owner: postgres -- @@ -19088,8 +16937,6 @@ CREATE TABLE public.mdl_stats_user_monthly ( ALTER TABLE public.mdl_stats_user_monthly OWNER TO postgres; -- --- TOC entry 11248 (class 0 OID 0) --- Dependencies: 900 -- Name: TABLE mdl_stats_user_monthly; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19097,7 +16944,6 @@ COMMENT ON TABLE public.mdl_stats_user_monthly IS 'To accumulate monthly stats p -- --- TOC entry 901 (class 1259 OID 62949) -- Name: mdl_stats_user_monthly_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19112,8 +16958,6 @@ CREATE SEQUENCE public.mdl_stats_user_monthly_id_seq ALTER TABLE public.mdl_stats_user_monthly_id_seq OWNER TO postgres; -- --- TOC entry 11249 (class 0 OID 0) --- Dependencies: 901 -- Name: mdl_stats_user_monthly_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19121,7 +16965,6 @@ ALTER SEQUENCE public.mdl_stats_user_monthly_id_seq OWNED BY public.mdl_stats_us -- --- TOC entry 902 (class 1259 OID 62951) -- Name: mdl_stats_user_weekly; Type: TABLE; Schema: public; Owner: postgres -- @@ -19140,8 +16983,6 @@ CREATE TABLE public.mdl_stats_user_weekly ( ALTER TABLE public.mdl_stats_user_weekly OWNER TO postgres; -- --- TOC entry 11250 (class 0 OID 0) --- Dependencies: 902 -- Name: TABLE mdl_stats_user_weekly; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19149,7 +16990,6 @@ COMMENT ON TABLE public.mdl_stats_user_weekly IS 'To accumulate weekly stats per -- --- TOC entry 903 (class 1259 OID 62961) -- Name: mdl_stats_user_weekly_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19164,8 +17004,6 @@ CREATE SEQUENCE public.mdl_stats_user_weekly_id_seq ALTER TABLE public.mdl_stats_user_weekly_id_seq OWNER TO postgres; -- --- TOC entry 11251 (class 0 OID 0) --- Dependencies: 903 -- Name: mdl_stats_user_weekly_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19173,7 +17011,6 @@ ALTER SEQUENCE public.mdl_stats_user_weekly_id_seq OWNED BY public.mdl_stats_use -- --- TOC entry 904 (class 1259 OID 62963) -- Name: mdl_stats_weekly; Type: TABLE; Schema: public; Owner: postgres -- @@ -19191,8 +17028,6 @@ CREATE TABLE public.mdl_stats_weekly ( ALTER TABLE public.mdl_stats_weekly OWNER TO postgres; -- --- TOC entry 11252 (class 0 OID 0) --- Dependencies: 904 -- Name: TABLE mdl_stats_weekly; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19200,7 +17035,6 @@ COMMENT ON TABLE public.mdl_stats_weekly IS 'To accumulate weekly stats'; -- --- TOC entry 905 (class 1259 OID 62972) -- Name: mdl_stats_weekly_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19215,8 +17049,6 @@ CREATE SEQUENCE public.mdl_stats_weekly_id_seq ALTER TABLE public.mdl_stats_weekly_id_seq OWNER TO postgres; -- --- TOC entry 11253 (class 0 OID 0) --- Dependencies: 905 -- Name: mdl_stats_weekly_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19224,7 +17056,6 @@ ALTER SEQUENCE public.mdl_stats_weekly_id_seq OWNED BY public.mdl_stats_weekly.i -- --- TOC entry 906 (class 1259 OID 62974) -- Name: mdl_survey; Type: TABLE; Schema: public; Owner: postgres -- @@ -19246,8 +17077,6 @@ CREATE TABLE public.mdl_survey ( ALTER TABLE public.mdl_survey OWNER TO postgres; -- --- TOC entry 11254 (class 0 OID 0) --- Dependencies: 906 -- Name: TABLE mdl_survey; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19255,7 +17084,6 @@ COMMENT ON TABLE public.mdl_survey IS 'Each record is one SURVEY module with its -- --- TOC entry 907 (class 1259 OID 62989) -- Name: mdl_survey_analysis; Type: TABLE; Schema: public; Owner: postgres -- @@ -19270,8 +17098,6 @@ CREATE TABLE public.mdl_survey_analysis ( ALTER TABLE public.mdl_survey_analysis OWNER TO postgres; -- --- TOC entry 11255 (class 0 OID 0) --- Dependencies: 907 -- Name: TABLE mdl_survey_analysis; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19279,7 +17105,6 @@ COMMENT ON TABLE public.mdl_survey_analysis IS 'text about each survey submissio -- --- TOC entry 908 (class 1259 OID 62997) -- Name: mdl_survey_analysis_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19294,8 +17119,6 @@ CREATE SEQUENCE public.mdl_survey_analysis_id_seq ALTER TABLE public.mdl_survey_analysis_id_seq OWNER TO postgres; -- --- TOC entry 11256 (class 0 OID 0) --- Dependencies: 908 -- Name: mdl_survey_analysis_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19303,7 +17126,6 @@ ALTER SEQUENCE public.mdl_survey_analysis_id_seq OWNED BY public.mdl_survey_anal -- --- TOC entry 909 (class 1259 OID 62999) -- Name: mdl_survey_answers; Type: TABLE; Schema: public; Owner: postgres -- @@ -19321,8 +17143,6 @@ CREATE TABLE public.mdl_survey_answers ( ALTER TABLE public.mdl_survey_answers OWNER TO postgres; -- --- TOC entry 11257 (class 0 OID 0) --- Dependencies: 909 -- Name: TABLE mdl_survey_answers; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19330,7 +17150,6 @@ COMMENT ON TABLE public.mdl_survey_answers IS 'the answers to each questions fil -- --- TOC entry 910 (class 1259 OID 63009) -- Name: mdl_survey_answers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19345,8 +17164,6 @@ CREATE SEQUENCE public.mdl_survey_answers_id_seq ALTER TABLE public.mdl_survey_answers_id_seq OWNER TO postgres; -- --- TOC entry 11258 (class 0 OID 0) --- Dependencies: 910 -- Name: mdl_survey_answers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19354,7 +17171,6 @@ ALTER SEQUENCE public.mdl_survey_answers_id_seq OWNED BY public.mdl_survey_answe -- --- TOC entry 911 (class 1259 OID 63011) -- Name: mdl_survey_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19369,8 +17185,6 @@ CREATE SEQUENCE public.mdl_survey_id_seq ALTER TABLE public.mdl_survey_id_seq OWNER TO postgres; -- --- TOC entry 11259 (class 0 OID 0) --- Dependencies: 911 -- Name: mdl_survey_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19378,7 +17192,6 @@ ALTER SEQUENCE public.mdl_survey_id_seq OWNED BY public.mdl_survey.id; -- --- TOC entry 912 (class 1259 OID 63013) -- Name: mdl_survey_questions; Type: TABLE; Schema: public; Owner: postgres -- @@ -19396,8 +17209,6 @@ CREATE TABLE public.mdl_survey_questions ( ALTER TABLE public.mdl_survey_questions OWNER TO postgres; -- --- TOC entry 11260 (class 0 OID 0) --- Dependencies: 912 -- Name: TABLE mdl_survey_questions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19405,7 +17216,6 @@ COMMENT ON TABLE public.mdl_survey_questions IS 'the questions conforming one su -- --- TOC entry 913 (class 1259 OID 63024) -- Name: mdl_survey_questions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19420,8 +17230,6 @@ CREATE SEQUENCE public.mdl_survey_questions_id_seq ALTER TABLE public.mdl_survey_questions_id_seq OWNER TO postgres; -- --- TOC entry 11261 (class 0 OID 0) --- Dependencies: 913 -- Name: mdl_survey_questions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19429,7 +17237,6 @@ ALTER SEQUENCE public.mdl_survey_questions_id_seq OWNED BY public.mdl_survey_que -- --- TOC entry 914 (class 1259 OID 63026) -- Name: mdl_tag; Type: TABLE; Schema: public; Owner: postgres -- @@ -19450,8 +17257,6 @@ CREATE TABLE public.mdl_tag ( ALTER TABLE public.mdl_tag OWNER TO postgres; -- --- TOC entry 11262 (class 0 OID 0) --- Dependencies: 914 -- Name: TABLE mdl_tag; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19459,7 +17264,6 @@ COMMENT ON TABLE public.mdl_tag IS 'Tag table - this generic table will replace -- --- TOC entry 915 (class 1259 OID 63037) -- Name: mdl_tag_area; Type: TABLE; Schema: public; Owner: postgres -- @@ -19479,8 +17283,6 @@ CREATE TABLE public.mdl_tag_area ( ALTER TABLE public.mdl_tag_area OWNER TO postgres; -- --- TOC entry 11263 (class 0 OID 0) --- Dependencies: 915 -- Name: TABLE mdl_tag_area; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19488,7 +17290,6 @@ COMMENT ON TABLE public.mdl_tag_area IS 'Defines various tag areas, one area is -- --- TOC entry 916 (class 1259 OID 63045) -- Name: mdl_tag_area_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19503,8 +17304,6 @@ CREATE SEQUENCE public.mdl_tag_area_id_seq ALTER TABLE public.mdl_tag_area_id_seq OWNER TO postgres; -- --- TOC entry 11264 (class 0 OID 0) --- Dependencies: 916 -- Name: mdl_tag_area_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19512,7 +17311,6 @@ ALTER SEQUENCE public.mdl_tag_area_id_seq OWNED BY public.mdl_tag_area.id; -- --- TOC entry 917 (class 1259 OID 63047) -- Name: mdl_tag_coll; Type: TABLE; Schema: public; Owner: postgres -- @@ -19530,8 +17328,6 @@ CREATE TABLE public.mdl_tag_coll ( ALTER TABLE public.mdl_tag_coll OWNER TO postgres; -- --- TOC entry 11265 (class 0 OID 0) --- Dependencies: 917 -- Name: TABLE mdl_tag_coll; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19539,7 +17335,6 @@ COMMENT ON TABLE public.mdl_tag_coll IS 'Defines different set of tags'; -- --- TOC entry 918 (class 1259 OID 63056) -- Name: mdl_tag_coll_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19554,8 +17349,6 @@ CREATE SEQUENCE public.mdl_tag_coll_id_seq ALTER TABLE public.mdl_tag_coll_id_seq OWNER TO postgres; -- --- TOC entry 11266 (class 0 OID 0) --- Dependencies: 918 -- Name: mdl_tag_coll_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19563,7 +17356,6 @@ ALTER SEQUENCE public.mdl_tag_coll_id_seq OWNED BY public.mdl_tag_coll.id; -- --- TOC entry 919 (class 1259 OID 63058) -- Name: mdl_tag_correlation; Type: TABLE; Schema: public; Owner: postgres -- @@ -19577,8 +17369,6 @@ CREATE TABLE public.mdl_tag_correlation ( ALTER TABLE public.mdl_tag_correlation OWNER TO postgres; -- --- TOC entry 11267 (class 0 OID 0) --- Dependencies: 919 -- Name: TABLE mdl_tag_correlation; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19586,7 +17376,6 @@ COMMENT ON TABLE public.mdl_tag_correlation IS 'The rationale for the ''tag_corr -- --- TOC entry 920 (class 1259 OID 63064) -- Name: mdl_tag_correlation_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19601,8 +17390,6 @@ CREATE SEQUENCE public.mdl_tag_correlation_id_seq ALTER TABLE public.mdl_tag_correlation_id_seq OWNER TO postgres; -- --- TOC entry 11268 (class 0 OID 0) --- Dependencies: 920 -- Name: mdl_tag_correlation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19610,7 +17397,6 @@ ALTER SEQUENCE public.mdl_tag_correlation_id_seq OWNED BY public.mdl_tag_correla -- --- TOC entry 921 (class 1259 OID 63066) -- Name: mdl_tag_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19625,8 +17411,6 @@ CREATE SEQUENCE public.mdl_tag_id_seq ALTER TABLE public.mdl_tag_id_seq OWNER TO postgres; -- --- TOC entry 11269 (class 0 OID 0) --- Dependencies: 921 -- Name: mdl_tag_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19634,7 +17418,6 @@ ALTER SEQUENCE public.mdl_tag_id_seq OWNED BY public.mdl_tag.id; -- --- TOC entry 922 (class 1259 OID 63068) -- Name: mdl_tag_instance; Type: TABLE; Schema: public; Owner: postgres -- @@ -19655,8 +17438,6 @@ CREATE TABLE public.mdl_tag_instance ( ALTER TABLE public.mdl_tag_instance OWNER TO postgres; -- --- TOC entry 11270 (class 0 OID 0) --- Dependencies: 922 -- Name: TABLE mdl_tag_instance; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19664,7 +17445,6 @@ COMMENT ON TABLE public.mdl_tag_instance IS 'tag_instance table holds the inform -- --- TOC entry 923 (class 1259 OID 63076) -- Name: mdl_tag_instance_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19679,8 +17459,6 @@ CREATE SEQUENCE public.mdl_tag_instance_id_seq ALTER TABLE public.mdl_tag_instance_id_seq OWNER TO postgres; -- --- TOC entry 11271 (class 0 OID 0) --- Dependencies: 923 -- Name: mdl_tag_instance_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19688,7 +17466,6 @@ ALTER SEQUENCE public.mdl_tag_instance_id_seq OWNED BY public.mdl_tag_instance.i -- --- TOC entry 924 (class 1259 OID 63078) -- Name: mdl_task_adhoc; Type: TABLE; Schema: public; Owner: postgres -- @@ -19707,8 +17484,6 @@ CREATE TABLE public.mdl_task_adhoc ( ALTER TABLE public.mdl_task_adhoc OWNER TO postgres; -- --- TOC entry 11272 (class 0 OID 0) --- Dependencies: 924 -- Name: TABLE mdl_task_adhoc; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19716,7 +17491,6 @@ COMMENT ON TABLE public.mdl_task_adhoc IS 'List of adhoc tasks waiting to run.'; -- --- TOC entry 925 (class 1259 OID 63087) -- Name: mdl_task_adhoc_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19731,8 +17505,6 @@ CREATE SEQUENCE public.mdl_task_adhoc_id_seq ALTER TABLE public.mdl_task_adhoc_id_seq OWNER TO postgres; -- --- TOC entry 11273 (class 0 OID 0) --- Dependencies: 925 -- Name: mdl_task_adhoc_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19740,7 +17512,6 @@ ALTER SEQUENCE public.mdl_task_adhoc_id_seq OWNED BY public.mdl_task_adhoc.id; -- --- TOC entry 926 (class 1259 OID 63089) -- Name: mdl_task_log; Type: TABLE; Schema: public; Owner: postgres -- @@ -19762,8 +17533,6 @@ CREATE TABLE public.mdl_task_log ( ALTER TABLE public.mdl_task_log OWNER TO postgres; -- --- TOC entry 11274 (class 0 OID 0) --- Dependencies: 926 -- Name: TABLE mdl_task_log; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19771,7 +17540,6 @@ COMMENT ON TABLE public.mdl_task_log IS 'The log table for all tasks'; -- --- TOC entry 927 (class 1259 OID 63097) -- Name: mdl_task_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19786,8 +17554,6 @@ CREATE SEQUENCE public.mdl_task_log_id_seq ALTER TABLE public.mdl_task_log_id_seq OWNER TO postgres; -- --- TOC entry 11275 (class 0 OID 0) --- Dependencies: 927 -- Name: mdl_task_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19795,7 +17561,6 @@ ALTER SEQUENCE public.mdl_task_log_id_seq OWNED BY public.mdl_task_log.id; -- --- TOC entry 928 (class 1259 OID 63099) -- Name: mdl_task_scheduled; Type: TABLE; Schema: public; Owner: postgres -- @@ -19820,8 +17585,6 @@ CREATE TABLE public.mdl_task_scheduled ( ALTER TABLE public.mdl_task_scheduled OWNER TO postgres; -- --- TOC entry 11276 (class 0 OID 0) --- Dependencies: 928 -- Name: TABLE mdl_task_scheduled; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19829,7 +17592,6 @@ COMMENT ON TABLE public.mdl_task_scheduled IS 'List of scheduled tasks to be run -- --- TOC entry 929 (class 1259 OID 63115) -- Name: mdl_task_scheduled_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19844,8 +17606,6 @@ CREATE SEQUENCE public.mdl_task_scheduled_id_seq ALTER TABLE public.mdl_task_scheduled_id_seq OWNER TO postgres; -- --- TOC entry 11277 (class 0 OID 0) --- Dependencies: 929 -- Name: mdl_task_scheduled_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19853,7 +17613,6 @@ ALTER SEQUENCE public.mdl_task_scheduled_id_seq OWNED BY public.mdl_task_schedul -- --- TOC entry 930 (class 1259 OID 63117) -- Name: mdl_tool_cohortroles; Type: TABLE; Schema: public; Owner: postgres -- @@ -19871,8 +17630,6 @@ CREATE TABLE public.mdl_tool_cohortroles ( ALTER TABLE public.mdl_tool_cohortroles OWNER TO postgres; -- --- TOC entry 11278 (class 0 OID 0) --- Dependencies: 930 -- Name: TABLE mdl_tool_cohortroles; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19880,7 +17637,6 @@ COMMENT ON TABLE public.mdl_tool_cohortroles IS 'Mapping of users to cohort role -- --- TOC entry 931 (class 1259 OID 63120) -- Name: mdl_tool_cohortroles_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19895,8 +17651,6 @@ CREATE SEQUENCE public.mdl_tool_cohortroles_id_seq ALTER TABLE public.mdl_tool_cohortroles_id_seq OWNER TO postgres; -- --- TOC entry 11279 (class 0 OID 0) --- Dependencies: 931 -- Name: mdl_tool_cohortroles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19904,7 +17658,6 @@ ALTER SEQUENCE public.mdl_tool_cohortroles_id_seq OWNED BY public.mdl_tool_cohor -- --- TOC entry 932 (class 1259 OID 63122) -- Name: mdl_tool_customlang; Type: TABLE; Schema: public; Owner: postgres -- @@ -19926,8 +17679,6 @@ CREATE TABLE public.mdl_tool_customlang ( ALTER TABLE public.mdl_tool_customlang OWNER TO postgres; -- --- TOC entry 11280 (class 0 OID 0) --- Dependencies: 932 -- Name: TABLE mdl_tool_customlang; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19935,7 +17686,6 @@ COMMENT ON TABLE public.mdl_tool_customlang IS 'Contains the working checkout of -- --- TOC entry 933 (class 1259 OID 63132) -- Name: mdl_tool_customlang_components; Type: TABLE; Schema: public; Owner: postgres -- @@ -19949,8 +17699,6 @@ CREATE TABLE public.mdl_tool_customlang_components ( ALTER TABLE public.mdl_tool_customlang_components OWNER TO postgres; -- --- TOC entry 11281 (class 0 OID 0) --- Dependencies: 933 -- Name: TABLE mdl_tool_customlang_components; Type: COMMENT; Schema: public; Owner: postgres -- @@ -19958,7 +17706,6 @@ COMMENT ON TABLE public.mdl_tool_customlang_components IS 'Contains the list of -- --- TOC entry 934 (class 1259 OID 63139) -- Name: mdl_tool_customlang_components_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19973,8 +17720,6 @@ CREATE SEQUENCE public.mdl_tool_customlang_components_id_seq ALTER TABLE public.mdl_tool_customlang_components_id_seq OWNER TO postgres; -- --- TOC entry 11282 (class 0 OID 0) --- Dependencies: 934 -- Name: mdl_tool_customlang_components_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -19982,7 +17727,6 @@ ALTER SEQUENCE public.mdl_tool_customlang_components_id_seq OWNED BY public.mdl_ -- --- TOC entry 935 (class 1259 OID 63141) -- Name: mdl_tool_customlang_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -19997,8 +17741,6 @@ CREATE SEQUENCE public.mdl_tool_customlang_id_seq ALTER TABLE public.mdl_tool_customlang_id_seq OWNER TO postgres; -- --- TOC entry 11283 (class 0 OID 0) --- Dependencies: 935 -- Name: mdl_tool_customlang_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20006,7 +17748,6 @@ ALTER SEQUENCE public.mdl_tool_customlang_id_seq OWNED BY public.mdl_tool_custom -- --- TOC entry 936 (class 1259 OID 63143) -- Name: mdl_tool_dataprivacy_category; Type: TABLE; Schema: public; Owner: postgres -- @@ -20024,8 +17765,6 @@ CREATE TABLE public.mdl_tool_dataprivacy_category ( ALTER TABLE public.mdl_tool_dataprivacy_category OWNER TO postgres; -- --- TOC entry 11284 (class 0 OID 0) --- Dependencies: 936 -- Name: TABLE mdl_tool_dataprivacy_category; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20033,7 +17772,6 @@ COMMENT ON TABLE public.mdl_tool_dataprivacy_category IS 'Data categories'; -- --- TOC entry 937 (class 1259 OID 63150) -- Name: mdl_tool_dataprivacy_category_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20048,8 +17786,6 @@ CREATE SEQUENCE public.mdl_tool_dataprivacy_category_id_seq ALTER TABLE public.mdl_tool_dataprivacy_category_id_seq OWNER TO postgres; -- --- TOC entry 11285 (class 0 OID 0) --- Dependencies: 937 -- Name: mdl_tool_dataprivacy_category_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20057,7 +17793,6 @@ ALTER SEQUENCE public.mdl_tool_dataprivacy_category_id_seq OWNED BY public.mdl_t -- --- TOC entry 938 (class 1259 OID 63152) -- Name: mdl_tool_dataprivacy_ctxexpired; Type: TABLE; Schema: public; Owner: postgres -- @@ -20077,8 +17812,6 @@ CREATE TABLE public.mdl_tool_dataprivacy_ctxexpired ( ALTER TABLE public.mdl_tool_dataprivacy_ctxexpired OWNER TO postgres; -- --- TOC entry 11286 (class 0 OID 0) --- Dependencies: 938 -- Name: TABLE mdl_tool_dataprivacy_ctxexpired; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20086,7 +17819,6 @@ COMMENT ON TABLE public.mdl_tool_dataprivacy_ctxexpired IS 'Default comment for -- --- TOC entry 939 (class 1259 OID 63159) -- Name: mdl_tool_dataprivacy_ctxexpired_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20101,8 +17833,6 @@ CREATE SEQUENCE public.mdl_tool_dataprivacy_ctxexpired_id_seq ALTER TABLE public.mdl_tool_dataprivacy_ctxexpired_id_seq OWNER TO postgres; -- --- TOC entry 11287 (class 0 OID 0) --- Dependencies: 939 -- Name: mdl_tool_dataprivacy_ctxexpired_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20110,7 +17840,6 @@ ALTER SEQUENCE public.mdl_tool_dataprivacy_ctxexpired_id_seq OWNED BY public.mdl -- --- TOC entry 940 (class 1259 OID 63161) -- Name: mdl_tool_dataprivacy_ctxinstance; Type: TABLE; Schema: public; Owner: postgres -- @@ -20128,8 +17857,6 @@ CREATE TABLE public.mdl_tool_dataprivacy_ctxinstance ( ALTER TABLE public.mdl_tool_dataprivacy_ctxinstance OWNER TO postgres; -- --- TOC entry 11288 (class 0 OID 0) --- Dependencies: 940 -- Name: TABLE mdl_tool_dataprivacy_ctxinstance; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20137,7 +17864,6 @@ COMMENT ON TABLE public.mdl_tool_dataprivacy_ctxinstance IS 'Default comment for -- --- TOC entry 941 (class 1259 OID 63164) -- Name: mdl_tool_dataprivacy_ctxinstance_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20152,8 +17878,6 @@ CREATE SEQUENCE public.mdl_tool_dataprivacy_ctxinstance_id_seq ALTER TABLE public.mdl_tool_dataprivacy_ctxinstance_id_seq OWNER TO postgres; -- --- TOC entry 11289 (class 0 OID 0) --- Dependencies: 941 -- Name: mdl_tool_dataprivacy_ctxinstance_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20161,7 +17885,6 @@ ALTER SEQUENCE public.mdl_tool_dataprivacy_ctxinstance_id_seq OWNED BY public.md -- --- TOC entry 942 (class 1259 OID 63166) -- Name: mdl_tool_dataprivacy_ctxlevel; Type: TABLE; Schema: public; Owner: postgres -- @@ -20179,8 +17902,6 @@ CREATE TABLE public.mdl_tool_dataprivacy_ctxlevel ( ALTER TABLE public.mdl_tool_dataprivacy_ctxlevel OWNER TO postgres; -- --- TOC entry 11290 (class 0 OID 0) --- Dependencies: 942 -- Name: TABLE mdl_tool_dataprivacy_ctxlevel; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20188,7 +17909,6 @@ COMMENT ON TABLE public.mdl_tool_dataprivacy_ctxlevel IS 'Default comment for th -- --- TOC entry 943 (class 1259 OID 63169) -- Name: mdl_tool_dataprivacy_ctxlevel_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20203,8 +17923,6 @@ CREATE SEQUENCE public.mdl_tool_dataprivacy_ctxlevel_id_seq ALTER TABLE public.mdl_tool_dataprivacy_ctxlevel_id_seq OWNER TO postgres; -- --- TOC entry 11291 (class 0 OID 0) --- Dependencies: 943 -- Name: mdl_tool_dataprivacy_ctxlevel_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20212,7 +17930,6 @@ ALTER SEQUENCE public.mdl_tool_dataprivacy_ctxlevel_id_seq OWNED BY public.mdl_t -- --- TOC entry 944 (class 1259 OID 63171) -- Name: mdl_tool_dataprivacy_purpose; Type: TABLE; Schema: public; Owner: postgres -- @@ -20234,8 +17951,6 @@ CREATE TABLE public.mdl_tool_dataprivacy_purpose ( ALTER TABLE public.mdl_tool_dataprivacy_purpose OWNER TO postgres; -- --- TOC entry 11292 (class 0 OID 0) --- Dependencies: 944 -- Name: TABLE mdl_tool_dataprivacy_purpose; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20243,7 +17958,6 @@ COMMENT ON TABLE public.mdl_tool_dataprivacy_purpose IS 'Data purposes'; -- --- TOC entry 945 (class 1259 OID 63179) -- Name: mdl_tool_dataprivacy_purpose_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20258,8 +17972,6 @@ CREATE SEQUENCE public.mdl_tool_dataprivacy_purpose_id_seq ALTER TABLE public.mdl_tool_dataprivacy_purpose_id_seq OWNER TO postgres; -- --- TOC entry 11293 (class 0 OID 0) --- Dependencies: 945 -- Name: mdl_tool_dataprivacy_purpose_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20267,7 +17979,6 @@ ALTER SEQUENCE public.mdl_tool_dataprivacy_purpose_id_seq OWNED BY public.mdl_to -- --- TOC entry 946 (class 1259 OID 63181) -- Name: mdl_tool_dataprivacy_purposerole; Type: TABLE; Schema: public; Owner: postgres -- @@ -20288,8 +17999,6 @@ CREATE TABLE public.mdl_tool_dataprivacy_purposerole ( ALTER TABLE public.mdl_tool_dataprivacy_purposerole OWNER TO postgres; -- --- TOC entry 11294 (class 0 OID 0) --- Dependencies: 946 -- Name: TABLE mdl_tool_dataprivacy_purposerole; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20297,7 +18006,6 @@ COMMENT ON TABLE public.mdl_tool_dataprivacy_purposerole IS 'Data purpose overri -- --- TOC entry 947 (class 1259 OID 63188) -- Name: mdl_tool_dataprivacy_purposerole_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20312,8 +18020,6 @@ CREATE SEQUENCE public.mdl_tool_dataprivacy_purposerole_id_seq ALTER TABLE public.mdl_tool_dataprivacy_purposerole_id_seq OWNER TO postgres; -- --- TOC entry 11295 (class 0 OID 0) --- Dependencies: 947 -- Name: mdl_tool_dataprivacy_purposerole_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20321,7 +18027,6 @@ ALTER SEQUENCE public.mdl_tool_dataprivacy_purposerole_id_seq OWNED BY public.md -- --- TOC entry 948 (class 1259 OID 63190) -- Name: mdl_tool_dataprivacy_request; Type: TABLE; Schema: public; Owner: postgres -- @@ -20347,8 +18052,6 @@ CREATE TABLE public.mdl_tool_dataprivacy_request ( ALTER TABLE public.mdl_tool_dataprivacy_request OWNER TO postgres; -- --- TOC entry 11296 (class 0 OID 0) --- Dependencies: 948 -- Name: TABLE mdl_tool_dataprivacy_request; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20356,7 +18059,6 @@ COMMENT ON TABLE public.mdl_tool_dataprivacy_request IS 'Table for data requests -- --- TOC entry 949 (class 1259 OID 63208) -- Name: mdl_tool_dataprivacy_request_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20371,8 +18073,6 @@ CREATE SEQUENCE public.mdl_tool_dataprivacy_request_id_seq ALTER TABLE public.mdl_tool_dataprivacy_request_id_seq OWNER TO postgres; -- --- TOC entry 11297 (class 0 OID 0) --- Dependencies: 949 -- Name: mdl_tool_dataprivacy_request_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20380,7 +18080,6 @@ ALTER SEQUENCE public.mdl_tool_dataprivacy_request_id_seq OWNED BY public.mdl_to -- --- TOC entry 950 (class 1259 OID 63210) -- Name: mdl_tool_monitor_events; Type: TABLE; Schema: public; Owner: postgres -- @@ -20399,8 +18098,6 @@ CREATE TABLE public.mdl_tool_monitor_events ( ALTER TABLE public.mdl_tool_monitor_events OWNER TO postgres; -- --- TOC entry 11298 (class 0 OID 0) --- Dependencies: 950 -- Name: TABLE mdl_tool_monitor_events; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20408,7 +18105,6 @@ COMMENT ON TABLE public.mdl_tool_monitor_events IS 'A table that keeps a log of -- --- TOC entry 951 (class 1259 OID 63218) -- Name: mdl_tool_monitor_events_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20423,8 +18119,6 @@ CREATE SEQUENCE public.mdl_tool_monitor_events_id_seq ALTER TABLE public.mdl_tool_monitor_events_id_seq OWNER TO postgres; -- --- TOC entry 11299 (class 0 OID 0) --- Dependencies: 951 -- Name: mdl_tool_monitor_events_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20432,7 +18126,6 @@ ALTER SEQUENCE public.mdl_tool_monitor_events_id_seq OWNED BY public.mdl_tool_mo -- --- TOC entry 952 (class 1259 OID 63220) -- Name: mdl_tool_monitor_history; Type: TABLE; Schema: public; Owner: postgres -- @@ -20447,8 +18140,6 @@ CREATE TABLE public.mdl_tool_monitor_history ( ALTER TABLE public.mdl_tool_monitor_history OWNER TO postgres; -- --- TOC entry 11300 (class 0 OID 0) --- Dependencies: 952 -- Name: TABLE mdl_tool_monitor_history; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20456,7 +18147,6 @@ COMMENT ON TABLE public.mdl_tool_monitor_history IS 'Table to store history of m -- --- TOC entry 953 (class 1259 OID 63223) -- Name: mdl_tool_monitor_history_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20471,8 +18161,6 @@ CREATE SEQUENCE public.mdl_tool_monitor_history_id_seq ALTER TABLE public.mdl_tool_monitor_history_id_seq OWNER TO postgres; -- --- TOC entry 11301 (class 0 OID 0) --- Dependencies: 953 -- Name: mdl_tool_monitor_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20480,7 +18168,6 @@ ALTER SEQUENCE public.mdl_tool_monitor_history_id_seq OWNED BY public.mdl_tool_m -- --- TOC entry 954 (class 1259 OID 63225) -- Name: mdl_tool_monitor_rules; Type: TABLE; Schema: public; Owner: postgres -- @@ -20505,8 +18192,6 @@ CREATE TABLE public.mdl_tool_monitor_rules ( ALTER TABLE public.mdl_tool_monitor_rules OWNER TO postgres; -- --- TOC entry 11302 (class 0 OID 0) --- Dependencies: 954 -- Name: TABLE mdl_tool_monitor_rules; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20514,7 +18199,6 @@ COMMENT ON TABLE public.mdl_tool_monitor_rules IS 'Table to store rules'; -- --- TOC entry 955 (class 1259 OID 63234) -- Name: mdl_tool_monitor_rules_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20529,8 +18213,6 @@ CREATE SEQUENCE public.mdl_tool_monitor_rules_id_seq ALTER TABLE public.mdl_tool_monitor_rules_id_seq OWNER TO postgres; -- --- TOC entry 11303 (class 0 OID 0) --- Dependencies: 955 -- Name: mdl_tool_monitor_rules_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20538,7 +18220,6 @@ ALTER SEQUENCE public.mdl_tool_monitor_rules_id_seq OWNED BY public.mdl_tool_mon -- --- TOC entry 956 (class 1259 OID 63236) -- Name: mdl_tool_monitor_subscriptions; Type: TABLE; Schema: public; Owner: postgres -- @@ -20557,8 +18238,6 @@ CREATE TABLE public.mdl_tool_monitor_subscriptions ( ALTER TABLE public.mdl_tool_monitor_subscriptions OWNER TO postgres; -- --- TOC entry 11304 (class 0 OID 0) --- Dependencies: 956 -- Name: TABLE mdl_tool_monitor_subscriptions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20566,7 +18245,6 @@ COMMENT ON TABLE public.mdl_tool_monitor_subscriptions IS 'Table to store user s -- --- TOC entry 957 (class 1259 OID 63241) -- Name: mdl_tool_monitor_subscriptions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20581,8 +18259,6 @@ CREATE SEQUENCE public.mdl_tool_monitor_subscriptions_id_seq ALTER TABLE public.mdl_tool_monitor_subscriptions_id_seq OWNER TO postgres; -- --- TOC entry 11305 (class 0 OID 0) --- Dependencies: 957 -- Name: mdl_tool_monitor_subscriptions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20590,7 +18266,6 @@ ALTER SEQUENCE public.mdl_tool_monitor_subscriptions_id_seq OWNED BY public.mdl_ -- --- TOC entry 958 (class 1259 OID 63243) -- Name: mdl_tool_policy; Type: TABLE; Schema: public; Owner: postgres -- @@ -20604,8 +18279,6 @@ CREATE TABLE public.mdl_tool_policy ( ALTER TABLE public.mdl_tool_policy OWNER TO postgres; -- --- TOC entry 11306 (class 0 OID 0) --- Dependencies: 958 -- Name: TABLE mdl_tool_policy; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20613,7 +18286,6 @@ COMMENT ON TABLE public.mdl_tool_policy IS 'Contains the list of policy document -- --- TOC entry 959 (class 1259 OID 63247) -- Name: mdl_tool_policy_acceptances; Type: TABLE; Schema: public; Owner: postgres -- @@ -20633,8 +18305,6 @@ CREATE TABLE public.mdl_tool_policy_acceptances ( ALTER TABLE public.mdl_tool_policy_acceptances OWNER TO postgres; -- --- TOC entry 11307 (class 0 OID 0) --- Dependencies: 959 -- Name: TABLE mdl_tool_policy_acceptances; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20642,7 +18312,6 @@ COMMENT ON TABLE public.mdl_tool_policy_acceptances IS 'Tracks users accepting t -- --- TOC entry 960 (class 1259 OID 63254) -- Name: mdl_tool_policy_acceptances_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20657,8 +18326,6 @@ CREATE SEQUENCE public.mdl_tool_policy_acceptances_id_seq ALTER TABLE public.mdl_tool_policy_acceptances_id_seq OWNER TO postgres; -- --- TOC entry 11308 (class 0 OID 0) --- Dependencies: 960 -- Name: mdl_tool_policy_acceptances_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20666,7 +18333,6 @@ ALTER SEQUENCE public.mdl_tool_policy_acceptances_id_seq OWNED BY public.mdl_too -- --- TOC entry 961 (class 1259 OID 63256) -- Name: mdl_tool_policy_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20681,8 +18347,6 @@ CREATE SEQUENCE public.mdl_tool_policy_id_seq ALTER TABLE public.mdl_tool_policy_id_seq OWNER TO postgres; -- --- TOC entry 11309 (class 0 OID 0) --- Dependencies: 961 -- Name: mdl_tool_policy_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20690,7 +18354,6 @@ ALTER SEQUENCE public.mdl_tool_policy_id_seq OWNED BY public.mdl_tool_policy.id; -- --- TOC entry 962 (class 1259 OID 63258) -- Name: mdl_tool_policy_versions; Type: TABLE; Schema: public; Owner: postgres -- @@ -20717,8 +18380,6 @@ CREATE TABLE public.mdl_tool_policy_versions ( ALTER TABLE public.mdl_tool_policy_versions OWNER TO postgres; -- --- TOC entry 11310 (class 0 OID 0) --- Dependencies: 962 -- Name: TABLE mdl_tool_policy_versions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20726,7 +18387,6 @@ COMMENT ON TABLE public.mdl_tool_policy_versions IS 'Holds versions of the polic -- --- TOC entry 963 (class 1259 OID 63271) -- Name: mdl_tool_policy_versions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20741,8 +18401,6 @@ CREATE SEQUENCE public.mdl_tool_policy_versions_id_seq ALTER TABLE public.mdl_tool_policy_versions_id_seq OWNER TO postgres; -- --- TOC entry 11311 (class 0 OID 0) --- Dependencies: 963 -- Name: mdl_tool_policy_versions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20750,7 +18408,6 @@ ALTER SEQUENCE public.mdl_tool_policy_versions_id_seq OWNED BY public.mdl_tool_p -- --- TOC entry 964 (class 1259 OID 63273) -- Name: mdl_tool_recyclebin_category; Type: TABLE; Schema: public; Owner: postgres -- @@ -20766,8 +18423,6 @@ CREATE TABLE public.mdl_tool_recyclebin_category ( ALTER TABLE public.mdl_tool_recyclebin_category OWNER TO postgres; -- --- TOC entry 11312 (class 0 OID 0) --- Dependencies: 964 -- Name: TABLE mdl_tool_recyclebin_category; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20775,7 +18430,6 @@ COMMENT ON TABLE public.mdl_tool_recyclebin_category IS 'A list of items in the -- --- TOC entry 965 (class 1259 OID 63281) -- Name: mdl_tool_recyclebin_category_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20790,8 +18444,6 @@ CREATE SEQUENCE public.mdl_tool_recyclebin_category_id_seq ALTER TABLE public.mdl_tool_recyclebin_category_id_seq OWNER TO postgres; -- --- TOC entry 11313 (class 0 OID 0) --- Dependencies: 965 -- Name: mdl_tool_recyclebin_category_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20799,7 +18451,6 @@ ALTER SEQUENCE public.mdl_tool_recyclebin_category_id_seq OWNED BY public.mdl_to -- --- TOC entry 966 (class 1259 OID 63283) -- Name: mdl_tool_recyclebin_course; Type: TABLE; Schema: public; Owner: postgres -- @@ -20816,8 +18467,6 @@ CREATE TABLE public.mdl_tool_recyclebin_course ( ALTER TABLE public.mdl_tool_recyclebin_course OWNER TO postgres; -- --- TOC entry 11314 (class 0 OID 0) --- Dependencies: 966 -- Name: TABLE mdl_tool_recyclebin_course; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20825,7 +18474,6 @@ COMMENT ON TABLE public.mdl_tool_recyclebin_course IS 'A list of items in the co -- --- TOC entry 967 (class 1259 OID 63287) -- Name: mdl_tool_recyclebin_course_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20840,8 +18488,6 @@ CREATE SEQUENCE public.mdl_tool_recyclebin_course_id_seq ALTER TABLE public.mdl_tool_recyclebin_course_id_seq OWNER TO postgres; -- --- TOC entry 11315 (class 0 OID 0) --- Dependencies: 967 -- Name: mdl_tool_recyclebin_course_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20849,7 +18495,6 @@ ALTER SEQUENCE public.mdl_tool_recyclebin_course_id_seq OWNED BY public.mdl_tool -- --- TOC entry 968 (class 1259 OID 63289) -- Name: mdl_tool_usertours_steps; Type: TABLE; Schema: public; Owner: postgres -- @@ -20868,8 +18513,6 @@ CREATE TABLE public.mdl_tool_usertours_steps ( ALTER TABLE public.mdl_tool_usertours_steps OWNER TO postgres; -- --- TOC entry 11316 (class 0 OID 0) --- Dependencies: 968 -- Name: TABLE mdl_tool_usertours_steps; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20877,7 +18520,6 @@ COMMENT ON TABLE public.mdl_tool_usertours_steps IS 'Steps in an tour'; -- --- TOC entry 969 (class 1259 OID 63296) -- Name: mdl_tool_usertours_steps_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20892,8 +18534,6 @@ CREATE SEQUENCE public.mdl_tool_usertours_steps_id_seq ALTER TABLE public.mdl_tool_usertours_steps_id_seq OWNER TO postgres; -- --- TOC entry 11317 (class 0 OID 0) --- Dependencies: 969 -- Name: mdl_tool_usertours_steps_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20901,7 +18541,6 @@ ALTER SEQUENCE public.mdl_tool_usertours_steps_id_seq OWNED BY public.mdl_tool_u -- --- TOC entry 970 (class 1259 OID 63298) -- Name: mdl_tool_usertours_tours; Type: TABLE; Schema: public; Owner: postgres -- @@ -20919,8 +18558,6 @@ CREATE TABLE public.mdl_tool_usertours_tours ( ALTER TABLE public.mdl_tool_usertours_tours OWNER TO postgres; -- --- TOC entry 11318 (class 0 OID 0) --- Dependencies: 970 -- Name: TABLE mdl_tool_usertours_tours; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20928,7 +18565,6 @@ COMMENT ON TABLE public.mdl_tool_usertours_tours IS 'List of tours'; -- --- TOC entry 971 (class 1259 OID 63307) -- Name: mdl_tool_usertours_tours_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20943,8 +18579,6 @@ CREATE SEQUENCE public.mdl_tool_usertours_tours_id_seq ALTER TABLE public.mdl_tool_usertours_tours_id_seq OWNER TO postgres; -- --- TOC entry 11319 (class 0 OID 0) --- Dependencies: 971 -- Name: mdl_tool_usertours_tours_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -20952,7 +18586,6 @@ ALTER SEQUENCE public.mdl_tool_usertours_tours_id_seq OWNED BY public.mdl_tool_u -- --- TOC entry 972 (class 1259 OID 63309) -- Name: mdl_upgrade_log; Type: TABLE; Schema: public; Owner: postgres -- @@ -20973,8 +18606,6 @@ CREATE TABLE public.mdl_upgrade_log ( ALTER TABLE public.mdl_upgrade_log OWNER TO postgres; -- --- TOC entry 11320 (class 0 OID 0) --- Dependencies: 972 -- Name: TABLE mdl_upgrade_log; Type: COMMENT; Schema: public; Owner: postgres -- @@ -20982,7 +18613,6 @@ COMMENT ON TABLE public.mdl_upgrade_log IS 'Upgrade logging'; -- --- TOC entry 973 (class 1259 OID 63316) -- Name: mdl_upgrade_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -20997,8 +18627,6 @@ CREATE SEQUENCE public.mdl_upgrade_log_id_seq ALTER TABLE public.mdl_upgrade_log_id_seq OWNER TO postgres; -- --- TOC entry 11321 (class 0 OID 0) --- Dependencies: 973 -- Name: mdl_upgrade_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21006,7 +18634,6 @@ ALTER SEQUENCE public.mdl_upgrade_log_id_seq OWNED BY public.mdl_upgrade_log.id; -- --- TOC entry 974 (class 1259 OID 63318) -- Name: mdl_url; Type: TABLE; Schema: public; Owner: postgres -- @@ -21027,8 +18654,6 @@ CREATE TABLE public.mdl_url ( ALTER TABLE public.mdl_url OWNER TO postgres; -- --- TOC entry 11322 (class 0 OID 0) --- Dependencies: 974 -- Name: TABLE mdl_url; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21036,7 +18661,6 @@ COMMENT ON TABLE public.mdl_url IS 'each record is one url resource'; -- --- TOC entry 975 (class 1259 OID 63329) -- Name: mdl_url_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21051,8 +18675,6 @@ CREATE SEQUENCE public.mdl_url_id_seq ALTER TABLE public.mdl_url_id_seq OWNER TO postgres; -- --- TOC entry 11323 (class 0 OID 0) --- Dependencies: 975 -- Name: mdl_url_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21060,7 +18682,6 @@ ALTER SEQUENCE public.mdl_url_id_seq OWNED BY public.mdl_url.id; -- --- TOC entry 976 (class 1259 OID 63331) -- Name: mdl_user; Type: TABLE; Schema: public; Owner: postgres -- @@ -21125,8 +18746,6 @@ CREATE TABLE public.mdl_user ( ALTER TABLE public.mdl_user OWNER TO postgres; -- --- TOC entry 11324 (class 0 OID 0) --- Dependencies: 976 -- Name: TABLE mdl_user; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21134,7 +18753,6 @@ COMMENT ON TABLE public.mdl_user IS 'One record for each person'; -- --- TOC entry 977 (class 1259 OID 63383) -- Name: mdl_user_devices; Type: TABLE; Schema: public; Owner: postgres -- @@ -21156,8 +18774,6 @@ CREATE TABLE public.mdl_user_devices ( ALTER TABLE public.mdl_user_devices OWNER TO postgres; -- --- TOC entry 11325 (class 0 OID 0) --- Dependencies: 977 -- Name: TABLE mdl_user_devices; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21165,7 +18781,6 @@ COMMENT ON TABLE public.mdl_user_devices IS 'This table stores user''s mobile de -- --- TOC entry 978 (class 1259 OID 63397) -- Name: mdl_user_devices_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21180,8 +18795,6 @@ CREATE SEQUENCE public.mdl_user_devices_id_seq ALTER TABLE public.mdl_user_devices_id_seq OWNER TO postgres; -- --- TOC entry 11326 (class 0 OID 0) --- Dependencies: 978 -- Name: mdl_user_devices_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21189,7 +18802,6 @@ ALTER SEQUENCE public.mdl_user_devices_id_seq OWNED BY public.mdl_user_devices.i -- --- TOC entry 979 (class 1259 OID 63399) -- Name: mdl_user_enrolments; Type: TABLE; Schema: public; Owner: postgres -- @@ -21209,8 +18821,6 @@ CREATE TABLE public.mdl_user_enrolments ( ALTER TABLE public.mdl_user_enrolments OWNER TO postgres; -- --- TOC entry 11327 (class 0 OID 0) --- Dependencies: 979 -- Name: TABLE mdl_user_enrolments; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21218,7 +18828,6 @@ COMMENT ON TABLE public.mdl_user_enrolments IS 'Users participating in courses ( -- --- TOC entry 980 (class 1259 OID 63408) -- Name: mdl_user_enrolments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21233,8 +18842,6 @@ CREATE SEQUENCE public.mdl_user_enrolments_id_seq ALTER TABLE public.mdl_user_enrolments_id_seq OWNER TO postgres; -- --- TOC entry 11328 (class 0 OID 0) --- Dependencies: 980 -- Name: mdl_user_enrolments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21242,7 +18849,6 @@ ALTER SEQUENCE public.mdl_user_enrolments_id_seq OWNED BY public.mdl_user_enrolm -- --- TOC entry 981 (class 1259 OID 63410) -- Name: mdl_user_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21257,8 +18863,6 @@ CREATE SEQUENCE public.mdl_user_id_seq ALTER TABLE public.mdl_user_id_seq OWNER TO postgres; -- --- TOC entry 11329 (class 0 OID 0) --- Dependencies: 981 -- Name: mdl_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21266,7 +18870,6 @@ ALTER SEQUENCE public.mdl_user_id_seq OWNED BY public.mdl_user.id; -- --- TOC entry 982 (class 1259 OID 63412) -- Name: mdl_user_info_category; Type: TABLE; Schema: public; Owner: postgres -- @@ -21280,8 +18883,6 @@ CREATE TABLE public.mdl_user_info_category ( ALTER TABLE public.mdl_user_info_category OWNER TO postgres; -- --- TOC entry 11330 (class 0 OID 0) --- Dependencies: 982 -- Name: TABLE mdl_user_info_category; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21289,7 +18890,6 @@ COMMENT ON TABLE public.mdl_user_info_category IS 'Customisable fields categorie -- --- TOC entry 983 (class 1259 OID 63417) -- Name: mdl_user_info_category_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21304,8 +18904,6 @@ CREATE SEQUENCE public.mdl_user_info_category_id_seq ALTER TABLE public.mdl_user_info_category_id_seq OWNER TO postgres; -- --- TOC entry 11331 (class 0 OID 0) --- Dependencies: 983 -- Name: mdl_user_info_category_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21313,7 +18911,6 @@ ALTER SEQUENCE public.mdl_user_info_category_id_seq OWNED BY public.mdl_user_inf -- --- TOC entry 984 (class 1259 OID 63419) -- Name: mdl_user_info_data; Type: TABLE; Schema: public; Owner: postgres -- @@ -21329,8 +18926,6 @@ CREATE TABLE public.mdl_user_info_data ( ALTER TABLE public.mdl_user_info_data OWNER TO postgres; -- --- TOC entry 11332 (class 0 OID 0) --- Dependencies: 984 -- Name: TABLE mdl_user_info_data; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21338,7 +18933,6 @@ COMMENT ON TABLE public.mdl_user_info_data IS 'Data for the customisable user fi -- --- TOC entry 985 (class 1259 OID 63428) -- Name: mdl_user_info_data_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21353,8 +18947,6 @@ CREATE SEQUENCE public.mdl_user_info_data_id_seq ALTER TABLE public.mdl_user_info_data_id_seq OWNER TO postgres; -- --- TOC entry 11333 (class 0 OID 0) --- Dependencies: 985 -- Name: mdl_user_info_data_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21362,7 +18954,6 @@ ALTER SEQUENCE public.mdl_user_info_data_id_seq OWNED BY public.mdl_user_info_da -- --- TOC entry 986 (class 1259 OID 63430) -- Name: mdl_user_info_field; Type: TABLE; Schema: public; Owner: postgres -- @@ -21393,8 +18984,6 @@ CREATE TABLE public.mdl_user_info_field ( ALTER TABLE public.mdl_user_info_field OWNER TO postgres; -- --- TOC entry 11334 (class 0 OID 0) --- Dependencies: 986 -- Name: TABLE mdl_user_info_field; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21402,7 +18991,6 @@ COMMENT ON TABLE public.mdl_user_info_field IS 'Customisable user profile fields -- --- TOC entry 987 (class 1259 OID 63447) -- Name: mdl_user_info_field_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21417,8 +19005,6 @@ CREATE SEQUENCE public.mdl_user_info_field_id_seq ALTER TABLE public.mdl_user_info_field_id_seq OWNER TO postgres; -- --- TOC entry 11335 (class 0 OID 0) --- Dependencies: 987 -- Name: mdl_user_info_field_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21426,7 +19012,6 @@ ALTER SEQUENCE public.mdl_user_info_field_id_seq OWNED BY public.mdl_user_info_f -- --- TOC entry 988 (class 1259 OID 63449) -- Name: mdl_user_lastaccess; Type: TABLE; Schema: public; Owner: postgres -- @@ -21441,8 +19026,6 @@ CREATE TABLE public.mdl_user_lastaccess ( ALTER TABLE public.mdl_user_lastaccess OWNER TO postgres; -- --- TOC entry 11336 (class 0 OID 0) --- Dependencies: 988 -- Name: TABLE mdl_user_lastaccess; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21450,7 +19033,6 @@ COMMENT ON TABLE public.mdl_user_lastaccess IS 'To keep track of course page acc -- --- TOC entry 989 (class 1259 OID 63455) -- Name: mdl_user_lastaccess_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21465,8 +19047,6 @@ CREATE SEQUENCE public.mdl_user_lastaccess_id_seq ALTER TABLE public.mdl_user_lastaccess_id_seq OWNER TO postgres; -- --- TOC entry 11337 (class 0 OID 0) --- Dependencies: 989 -- Name: mdl_user_lastaccess_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21474,7 +19054,6 @@ ALTER SEQUENCE public.mdl_user_lastaccess_id_seq OWNED BY public.mdl_user_lastac -- --- TOC entry 990 (class 1259 OID 63457) -- Name: mdl_user_password_history; Type: TABLE; Schema: public; Owner: postgres -- @@ -21489,8 +19068,6 @@ CREATE TABLE public.mdl_user_password_history ( ALTER TABLE public.mdl_user_password_history OWNER TO postgres; -- --- TOC entry 11338 (class 0 OID 0) --- Dependencies: 990 -- Name: TABLE mdl_user_password_history; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21498,7 +19075,6 @@ COMMENT ON TABLE public.mdl_user_password_history IS 'A rotating log of hashes o -- --- TOC entry 991 (class 1259 OID 63461) -- Name: mdl_user_password_history_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21513,8 +19089,6 @@ CREATE SEQUENCE public.mdl_user_password_history_id_seq ALTER TABLE public.mdl_user_password_history_id_seq OWNER TO postgres; -- --- TOC entry 11339 (class 0 OID 0) --- Dependencies: 991 -- Name: mdl_user_password_history_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21522,7 +19096,6 @@ ALTER SEQUENCE public.mdl_user_password_history_id_seq OWNED BY public.mdl_user_ -- --- TOC entry 992 (class 1259 OID 63463) -- Name: mdl_user_password_resets; Type: TABLE; Schema: public; Owner: postgres -- @@ -21538,8 +19111,6 @@ CREATE TABLE public.mdl_user_password_resets ( ALTER TABLE public.mdl_user_password_resets OWNER TO postgres; -- --- TOC entry 11340 (class 0 OID 0) --- Dependencies: 992 -- Name: TABLE mdl_user_password_resets; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21547,7 +19118,6 @@ COMMENT ON TABLE public.mdl_user_password_resets IS 'table tracking password res -- --- TOC entry 993 (class 1259 OID 63468) -- Name: mdl_user_password_resets_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21562,8 +19132,6 @@ CREATE SEQUENCE public.mdl_user_password_resets_id_seq ALTER TABLE public.mdl_user_password_resets_id_seq OWNER TO postgres; -- --- TOC entry 11341 (class 0 OID 0) --- Dependencies: 993 -- Name: mdl_user_password_resets_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21571,7 +19139,6 @@ ALTER SEQUENCE public.mdl_user_password_resets_id_seq OWNED BY public.mdl_user_p -- --- TOC entry 994 (class 1259 OID 63470) -- Name: mdl_user_preferences; Type: TABLE; Schema: public; Owner: postgres -- @@ -21586,8 +19153,6 @@ CREATE TABLE public.mdl_user_preferences ( ALTER TABLE public.mdl_user_preferences OWNER TO postgres; -- --- TOC entry 11342 (class 0 OID 0) --- Dependencies: 994 -- Name: TABLE mdl_user_preferences; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21595,7 +19160,6 @@ COMMENT ON TABLE public.mdl_user_preferences IS 'Allows modules to store arbitra -- --- TOC entry 995 (class 1259 OID 63479) -- Name: mdl_user_preferences_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21610,8 +19174,6 @@ CREATE SEQUENCE public.mdl_user_preferences_id_seq ALTER TABLE public.mdl_user_preferences_id_seq OWNER TO postgres; -- --- TOC entry 11343 (class 0 OID 0) --- Dependencies: 995 -- Name: mdl_user_preferences_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21619,7 +19181,6 @@ ALTER SEQUENCE public.mdl_user_preferences_id_seq OWNED BY public.mdl_user_prefe -- --- TOC entry 996 (class 1259 OID 63481) -- Name: mdl_user_private_key; Type: TABLE; Schema: public; Owner: postgres -- @@ -21638,8 +19199,6 @@ CREATE TABLE public.mdl_user_private_key ( ALTER TABLE public.mdl_user_private_key OWNER TO postgres; -- --- TOC entry 11344 (class 0 OID 0) --- Dependencies: 996 -- Name: TABLE mdl_user_private_key; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21647,7 +19206,6 @@ COMMENT ON TABLE public.mdl_user_private_key IS 'access keys used in cookieless -- --- TOC entry 997 (class 1259 OID 63489) -- Name: mdl_user_private_key_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21662,8 +19220,6 @@ CREATE SEQUENCE public.mdl_user_private_key_id_seq ALTER TABLE public.mdl_user_private_key_id_seq OWNER TO postgres; -- --- TOC entry 11345 (class 0 OID 0) --- Dependencies: 997 -- Name: mdl_user_private_key_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21671,7 +19227,6 @@ ALTER SEQUENCE public.mdl_user_private_key_id_seq OWNED BY public.mdl_user_priva -- --- TOC entry 998 (class 1259 OID 63491) -- Name: mdl_wiki; Type: TABLE; Schema: public; Owner: postgres -- @@ -21695,8 +19250,6 @@ CREATE TABLE public.mdl_wiki ( ALTER TABLE public.mdl_wiki OWNER TO postgres; -- --- TOC entry 11346 (class 0 OID 0) --- Dependencies: 998 -- Name: TABLE mdl_wiki; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21704,7 +19257,6 @@ COMMENT ON TABLE public.mdl_wiki IS 'Stores Wiki activity configuration'; -- --- TOC entry 999 (class 1259 OID 63508) -- Name: mdl_wiki_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21719,8 +19271,6 @@ CREATE SEQUENCE public.mdl_wiki_id_seq ALTER TABLE public.mdl_wiki_id_seq OWNER TO postgres; -- --- TOC entry 11347 (class 0 OID 0) --- Dependencies: 999 -- Name: mdl_wiki_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21728,7 +19278,6 @@ ALTER SEQUENCE public.mdl_wiki_id_seq OWNED BY public.mdl_wiki.id; -- --- TOC entry 1000 (class 1259 OID 63510) -- Name: mdl_wiki_links; Type: TABLE; Schema: public; Owner: postgres -- @@ -21744,8 +19293,6 @@ CREATE TABLE public.mdl_wiki_links ( ALTER TABLE public.mdl_wiki_links OWNER TO postgres; -- --- TOC entry 11348 (class 0 OID 0) --- Dependencies: 1000 -- Name: TABLE mdl_wiki_links; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21753,7 +19300,6 @@ COMMENT ON TABLE public.mdl_wiki_links IS 'Page wiki links'; -- --- TOC entry 1001 (class 1259 OID 63516) -- Name: mdl_wiki_links_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21768,8 +19314,6 @@ CREATE SEQUENCE public.mdl_wiki_links_id_seq ALTER TABLE public.mdl_wiki_links_id_seq OWNER TO postgres; -- --- TOC entry 11349 (class 0 OID 0) --- Dependencies: 1001 -- Name: mdl_wiki_links_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21777,7 +19321,6 @@ ALTER SEQUENCE public.mdl_wiki_links_id_seq OWNED BY public.mdl_wiki_links.id; -- --- TOC entry 1002 (class 1259 OID 63518) -- Name: mdl_wiki_locks; Type: TABLE; Schema: public; Owner: postgres -- @@ -21793,8 +19336,6 @@ CREATE TABLE public.mdl_wiki_locks ( ALTER TABLE public.mdl_wiki_locks OWNER TO postgres; -- --- TOC entry 11350 (class 0 OID 0) --- Dependencies: 1002 -- Name: TABLE mdl_wiki_locks; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21802,7 +19343,6 @@ COMMENT ON TABLE public.mdl_wiki_locks IS 'Manages page locks'; -- --- TOC entry 1003 (class 1259 OID 63524) -- Name: mdl_wiki_locks_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21817,8 +19357,6 @@ CREATE SEQUENCE public.mdl_wiki_locks_id_seq ALTER TABLE public.mdl_wiki_locks_id_seq OWNER TO postgres; -- --- TOC entry 11351 (class 0 OID 0) --- Dependencies: 1003 -- Name: mdl_wiki_locks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21826,7 +19364,6 @@ ALTER SEQUENCE public.mdl_wiki_locks_id_seq OWNED BY public.mdl_wiki_locks.id; -- --- TOC entry 1004 (class 1259 OID 63526) -- Name: mdl_wiki_pages; Type: TABLE; Schema: public; Owner: postgres -- @@ -21847,8 +19384,6 @@ CREATE TABLE public.mdl_wiki_pages ( ALTER TABLE public.mdl_wiki_pages OWNER TO postgres; -- --- TOC entry 11352 (class 0 OID 0) --- Dependencies: 1004 -- Name: TABLE mdl_wiki_pages; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21856,7 +19391,6 @@ COMMENT ON TABLE public.mdl_wiki_pages IS 'Stores wiki pages'; -- --- TOC entry 1005 (class 1259 OID 63540) -- Name: mdl_wiki_pages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21871,8 +19405,6 @@ CREATE SEQUENCE public.mdl_wiki_pages_id_seq ALTER TABLE public.mdl_wiki_pages_id_seq OWNER TO postgres; -- --- TOC entry 11353 (class 0 OID 0) --- Dependencies: 1005 -- Name: mdl_wiki_pages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21880,7 +19412,6 @@ ALTER SEQUENCE public.mdl_wiki_pages_id_seq OWNED BY public.mdl_wiki_pages.id; -- --- TOC entry 1006 (class 1259 OID 63542) -- Name: mdl_wiki_subwikis; Type: TABLE; Schema: public; Owner: postgres -- @@ -21895,8 +19426,6 @@ CREATE TABLE public.mdl_wiki_subwikis ( ALTER TABLE public.mdl_wiki_subwikis OWNER TO postgres; -- --- TOC entry 11354 (class 0 OID 0) --- Dependencies: 1006 -- Name: TABLE mdl_wiki_subwikis; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21904,7 +19433,6 @@ COMMENT ON TABLE public.mdl_wiki_subwikis IS 'Stores subwiki instances'; -- --- TOC entry 1007 (class 1259 OID 63548) -- Name: mdl_wiki_subwikis_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21919,8 +19447,6 @@ CREATE SEQUENCE public.mdl_wiki_subwikis_id_seq ALTER TABLE public.mdl_wiki_subwikis_id_seq OWNER TO postgres; -- --- TOC entry 11355 (class 0 OID 0) --- Dependencies: 1007 -- Name: mdl_wiki_subwikis_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21928,7 +19454,6 @@ ALTER SEQUENCE public.mdl_wiki_subwikis_id_seq OWNED BY public.mdl_wiki_subwikis -- --- TOC entry 1008 (class 1259 OID 63550) -- Name: mdl_wiki_synonyms; Type: TABLE; Schema: public; Owner: postgres -- @@ -21943,8 +19468,6 @@ CREATE TABLE public.mdl_wiki_synonyms ( ALTER TABLE public.mdl_wiki_synonyms OWNER TO postgres; -- --- TOC entry 11356 (class 0 OID 0) --- Dependencies: 1008 -- Name: TABLE mdl_wiki_synonyms; Type: COMMENT; Schema: public; Owner: postgres -- @@ -21952,7 +19475,6 @@ COMMENT ON TABLE public.mdl_wiki_synonyms IS 'Stores wiki pages synonyms'; -- --- TOC entry 1009 (class 1259 OID 63556) -- Name: mdl_wiki_synonyms_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -21967,8 +19489,6 @@ CREATE SEQUENCE public.mdl_wiki_synonyms_id_seq ALTER TABLE public.mdl_wiki_synonyms_id_seq OWNER TO postgres; -- --- TOC entry 11357 (class 0 OID 0) --- Dependencies: 1009 -- Name: mdl_wiki_synonyms_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -21976,7 +19496,6 @@ ALTER SEQUENCE public.mdl_wiki_synonyms_id_seq OWNED BY public.mdl_wiki_synonyms -- --- TOC entry 1010 (class 1259 OID 63558) -- Name: mdl_wiki_versions; Type: TABLE; Schema: public; Owner: postgres -- @@ -21994,8 +19513,6 @@ CREATE TABLE public.mdl_wiki_versions ( ALTER TABLE public.mdl_wiki_versions OWNER TO postgres; -- --- TOC entry 11358 (class 0 OID 0) --- Dependencies: 1010 -- Name: TABLE mdl_wiki_versions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22003,7 +19520,6 @@ COMMENT ON TABLE public.mdl_wiki_versions IS 'Stores wiki page history'; -- --- TOC entry 1011 (class 1259 OID 63569) -- Name: mdl_wiki_versions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22018,8 +19534,6 @@ CREATE SEQUENCE public.mdl_wiki_versions_id_seq ALTER TABLE public.mdl_wiki_versions_id_seq OWNER TO postgres; -- --- TOC entry 11359 (class 0 OID 0) --- Dependencies: 1011 -- Name: mdl_wiki_versions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22027,7 +19541,6 @@ ALTER SEQUENCE public.mdl_wiki_versions_id_seq OWNED BY public.mdl_wiki_versions -- --- TOC entry 1012 (class 1259 OID 63571) -- Name: mdl_workshop; Type: TABLE; Schema: public; Owner: postgres -- @@ -22075,8 +19588,6 @@ CREATE TABLE public.mdl_workshop ( ALTER TABLE public.mdl_workshop OWNER TO postgres; -- --- TOC entry 11360 (class 0 OID 0) --- Dependencies: 1012 -- Name: TABLE mdl_workshop; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22084,7 +19595,6 @@ COMMENT ON TABLE public.mdl_workshop IS 'This table keeps information about the -- --- TOC entry 1013 (class 1259 OID 63605) -- Name: mdl_workshop_aggregations; Type: TABLE; Schema: public; Owner: postgres -- @@ -22100,8 +19610,6 @@ CREATE TABLE public.mdl_workshop_aggregations ( ALTER TABLE public.mdl_workshop_aggregations OWNER TO postgres; -- --- TOC entry 11361 (class 0 OID 0) --- Dependencies: 1013 -- Name: TABLE mdl_workshop_aggregations; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22109,7 +19617,6 @@ COMMENT ON TABLE public.mdl_workshop_aggregations IS 'Aggregated grades for asse -- --- TOC entry 1014 (class 1259 OID 63608) -- Name: mdl_workshop_aggregations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22124,8 +19631,6 @@ CREATE SEQUENCE public.mdl_workshop_aggregations_id_seq ALTER TABLE public.mdl_workshop_aggregations_id_seq OWNER TO postgres; -- --- TOC entry 11362 (class 0 OID 0) --- Dependencies: 1014 -- Name: mdl_workshop_aggregations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22133,7 +19638,6 @@ ALTER SEQUENCE public.mdl_workshop_aggregations_id_seq OWNED BY public.mdl_works -- --- TOC entry 1015 (class 1259 OID 63610) -- Name: mdl_workshop_assessments; Type: TABLE; Schema: public; Owner: postgres -- @@ -22159,8 +19663,6 @@ CREATE TABLE public.mdl_workshop_assessments ( ALTER TABLE public.mdl_workshop_assessments OWNER TO postgres; -- --- TOC entry 11363 (class 0 OID 0) --- Dependencies: 1015 -- Name: TABLE mdl_workshop_assessments; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22168,7 +19670,6 @@ COMMENT ON TABLE public.mdl_workshop_assessments IS 'Info about the made assessm -- --- TOC entry 1016 (class 1259 OID 63622) -- Name: mdl_workshop_assessments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22183,8 +19684,6 @@ CREATE SEQUENCE public.mdl_workshop_assessments_id_seq ALTER TABLE public.mdl_workshop_assessments_id_seq OWNER TO postgres; -- --- TOC entry 11364 (class 0 OID 0) --- Dependencies: 1016 -- Name: mdl_workshop_assessments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22192,7 +19691,6 @@ ALTER SEQUENCE public.mdl_workshop_assessments_id_seq OWNED BY public.mdl_worksh -- --- TOC entry 1017 (class 1259 OID 63624) -- Name: mdl_workshop_grades; Type: TABLE; Schema: public; Owner: postgres -- @@ -22210,8 +19708,6 @@ CREATE TABLE public.mdl_workshop_grades ( ALTER TABLE public.mdl_workshop_grades OWNER TO postgres; -- --- TOC entry 11365 (class 0 OID 0) --- Dependencies: 1017 -- Name: TABLE mdl_workshop_grades; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22219,7 +19715,6 @@ COMMENT ON TABLE public.mdl_workshop_grades IS 'How the reviewers filled-up the -- --- TOC entry 1018 (class 1259 OID 63632) -- Name: mdl_workshop_grades_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22234,8 +19729,6 @@ CREATE SEQUENCE public.mdl_workshop_grades_id_seq ALTER TABLE public.mdl_workshop_grades_id_seq OWNER TO postgres; -- --- TOC entry 11366 (class 0 OID 0) --- Dependencies: 1018 -- Name: mdl_workshop_grades_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22243,7 +19736,6 @@ ALTER SEQUENCE public.mdl_workshop_grades_id_seq OWNED BY public.mdl_workshop_gr -- --- TOC entry 1019 (class 1259 OID 63634) -- Name: mdl_workshop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22258,8 +19750,6 @@ CREATE SEQUENCE public.mdl_workshop_id_seq ALTER TABLE public.mdl_workshop_id_seq OWNER TO postgres; -- --- TOC entry 11367 (class 0 OID 0) --- Dependencies: 1019 -- Name: mdl_workshop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22267,7 +19757,6 @@ ALTER SEQUENCE public.mdl_workshop_id_seq OWNED BY public.mdl_workshop.id; -- --- TOC entry 1020 (class 1259 OID 63636) -- Name: mdl_workshop_submissions; Type: TABLE; Schema: public; Owner: postgres -- @@ -22297,8 +19786,6 @@ CREATE TABLE public.mdl_workshop_submissions ( ALTER TABLE public.mdl_workshop_submissions OWNER TO postgres; -- --- TOC entry 11368 (class 0 OID 0) --- Dependencies: 1020 -- Name: TABLE mdl_workshop_submissions; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22306,7 +19793,6 @@ COMMENT ON TABLE public.mdl_workshop_submissions IS 'Info about the submission a -- --- TOC entry 1021 (class 1259 OID 63650) -- Name: mdl_workshop_submissions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22321,8 +19807,6 @@ CREATE SEQUENCE public.mdl_workshop_submissions_id_seq ALTER TABLE public.mdl_workshop_submissions_id_seq OWNER TO postgres; -- --- TOC entry 11369 (class 0 OID 0) --- Dependencies: 1021 -- Name: mdl_workshop_submissions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22330,7 +19814,6 @@ ALTER SEQUENCE public.mdl_workshop_submissions_id_seq OWNED BY public.mdl_worksh -- --- TOC entry 1022 (class 1259 OID 63652) -- Name: mdl_workshopallocation_scheduled; Type: TABLE; Schema: public; Owner: postgres -- @@ -22350,8 +19833,6 @@ CREATE TABLE public.mdl_workshopallocation_scheduled ( ALTER TABLE public.mdl_workshopallocation_scheduled OWNER TO postgres; -- --- TOC entry 11370 (class 0 OID 0) --- Dependencies: 1022 -- Name: TABLE mdl_workshopallocation_scheduled; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22359,7 +19840,6 @@ COMMENT ON TABLE public.mdl_workshopallocation_scheduled IS 'Stores the allocati -- --- TOC entry 1023 (class 1259 OID 63659) -- Name: mdl_workshopallocation_scheduled_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22374,8 +19854,6 @@ CREATE SEQUENCE public.mdl_workshopallocation_scheduled_id_seq ALTER TABLE public.mdl_workshopallocation_scheduled_id_seq OWNER TO postgres; -- --- TOC entry 11371 (class 0 OID 0) --- Dependencies: 1023 -- Name: mdl_workshopallocation_scheduled_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22383,7 +19861,6 @@ ALTER SEQUENCE public.mdl_workshopallocation_scheduled_id_seq OWNED BY public.md -- --- TOC entry 1024 (class 1259 OID 63661) -- Name: mdl_workshopeval_best_settings; Type: TABLE; Schema: public; Owner: postgres -- @@ -22397,8 +19874,6 @@ CREATE TABLE public.mdl_workshopeval_best_settings ( ALTER TABLE public.mdl_workshopeval_best_settings OWNER TO postgres; -- --- TOC entry 11372 (class 0 OID 0) --- Dependencies: 1024 -- Name: TABLE mdl_workshopeval_best_settings; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22406,7 +19881,6 @@ COMMENT ON TABLE public.mdl_workshopeval_best_settings IS 'Settings for the grad -- --- TOC entry 1025 (class 1259 OID 63665) -- Name: mdl_workshopeval_best_settings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22421,8 +19895,6 @@ CREATE SEQUENCE public.mdl_workshopeval_best_settings_id_seq ALTER TABLE public.mdl_workshopeval_best_settings_id_seq OWNER TO postgres; -- --- TOC entry 11373 (class 0 OID 0) --- Dependencies: 1025 -- Name: mdl_workshopeval_best_settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22430,7 +19902,6 @@ ALTER SEQUENCE public.mdl_workshopeval_best_settings_id_seq OWNED BY public.mdl_ -- --- TOC entry 1026 (class 1259 OID 63667) -- Name: mdl_workshopform_accumulative; Type: TABLE; Schema: public; Owner: postgres -- @@ -22448,8 +19919,6 @@ CREATE TABLE public.mdl_workshopform_accumulative ( ALTER TABLE public.mdl_workshopform_accumulative OWNER TO postgres; -- --- TOC entry 11374 (class 0 OID 0) --- Dependencies: 1026 -- Name: TABLE mdl_workshopform_accumulative; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22457,7 +19926,6 @@ COMMENT ON TABLE public.mdl_workshopform_accumulative IS 'The assessment dimensi -- --- TOC entry 1027 (class 1259 OID 63676) -- Name: mdl_workshopform_accumulative_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22472,8 +19940,6 @@ CREATE SEQUENCE public.mdl_workshopform_accumulative_id_seq ALTER TABLE public.mdl_workshopform_accumulative_id_seq OWNER TO postgres; -- --- TOC entry 11375 (class 0 OID 0) --- Dependencies: 1027 -- Name: mdl_workshopform_accumulative_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22481,7 +19947,6 @@ ALTER SEQUENCE public.mdl_workshopform_accumulative_id_seq OWNED BY public.mdl_w -- --- TOC entry 1028 (class 1259 OID 63678) -- Name: mdl_workshopform_comments; Type: TABLE; Schema: public; Owner: postgres -- @@ -22497,8 +19962,6 @@ CREATE TABLE public.mdl_workshopform_comments ( ALTER TABLE public.mdl_workshopform_comments OWNER TO postgres; -- --- TOC entry 11376 (class 0 OID 0) --- Dependencies: 1028 -- Name: TABLE mdl_workshopform_comments; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22506,7 +19969,6 @@ COMMENT ON TABLE public.mdl_workshopform_comments IS 'The assessment dimensions -- --- TOC entry 1029 (class 1259 OID 63686) -- Name: mdl_workshopform_comments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22521,8 +19983,6 @@ CREATE SEQUENCE public.mdl_workshopform_comments_id_seq ALTER TABLE public.mdl_workshopform_comments_id_seq OWNER TO postgres; -- --- TOC entry 11377 (class 0 OID 0) --- Dependencies: 1029 -- Name: mdl_workshopform_comments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22530,7 +19990,6 @@ ALTER SEQUENCE public.mdl_workshopform_comments_id_seq OWNED BY public.mdl_works -- --- TOC entry 1030 (class 1259 OID 63688) -- Name: mdl_workshopform_numerrors; Type: TABLE; Schema: public; Owner: postgres -- @@ -22550,8 +20009,6 @@ CREATE TABLE public.mdl_workshopform_numerrors ( ALTER TABLE public.mdl_workshopform_numerrors OWNER TO postgres; -- --- TOC entry 11378 (class 0 OID 0) --- Dependencies: 1030 -- Name: TABLE mdl_workshopform_numerrors; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22559,7 +20016,6 @@ COMMENT ON TABLE public.mdl_workshopform_numerrors IS 'The assessment dimensions -- --- TOC entry 1031 (class 1259 OID 63697) -- Name: mdl_workshopform_numerrors_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22574,8 +20030,6 @@ CREATE SEQUENCE public.mdl_workshopform_numerrors_id_seq ALTER TABLE public.mdl_workshopform_numerrors_id_seq OWNER TO postgres; -- --- TOC entry 11379 (class 0 OID 0) --- Dependencies: 1031 -- Name: mdl_workshopform_numerrors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22583,7 +20037,6 @@ ALTER SEQUENCE public.mdl_workshopform_numerrors_id_seq OWNED BY public.mdl_work -- --- TOC entry 1032 (class 1259 OID 63699) -- Name: mdl_workshopform_numerrors_map; Type: TABLE; Schema: public; Owner: postgres -- @@ -22598,8 +20051,6 @@ CREATE TABLE public.mdl_workshopform_numerrors_map ( ALTER TABLE public.mdl_workshopform_numerrors_map OWNER TO postgres; -- --- TOC entry 11380 (class 0 OID 0) --- Dependencies: 1032 -- Name: TABLE mdl_workshopform_numerrors_map; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22607,7 +20058,6 @@ COMMENT ON TABLE public.mdl_workshopform_numerrors_map IS 'This maps the number -- --- TOC entry 1033 (class 1259 OID 63702) -- Name: mdl_workshopform_numerrors_map_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22622,8 +20072,6 @@ CREATE SEQUENCE public.mdl_workshopform_numerrors_map_id_seq ALTER TABLE public.mdl_workshopform_numerrors_map_id_seq OWNER TO postgres; -- --- TOC entry 11381 (class 0 OID 0) --- Dependencies: 1033 -- Name: mdl_workshopform_numerrors_map_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22631,7 +20079,6 @@ ALTER SEQUENCE public.mdl_workshopform_numerrors_map_id_seq OWNED BY public.mdl_ -- --- TOC entry 1034 (class 1259 OID 63704) -- Name: mdl_workshopform_rubric; Type: TABLE; Schema: public; Owner: postgres -- @@ -22647,8 +20094,6 @@ CREATE TABLE public.mdl_workshopform_rubric ( ALTER TABLE public.mdl_workshopform_rubric OWNER TO postgres; -- --- TOC entry 11382 (class 0 OID 0) --- Dependencies: 1034 -- Name: TABLE mdl_workshopform_rubric; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22656,7 +20101,6 @@ COMMENT ON TABLE public.mdl_workshopform_rubric IS 'The assessment dimensions de -- --- TOC entry 1035 (class 1259 OID 63712) -- Name: mdl_workshopform_rubric_config; Type: TABLE; Schema: public; Owner: postgres -- @@ -22670,8 +20114,6 @@ CREATE TABLE public.mdl_workshopform_rubric_config ( ALTER TABLE public.mdl_workshopform_rubric_config OWNER TO postgres; -- --- TOC entry 11383 (class 0 OID 0) --- Dependencies: 1035 -- Name: TABLE mdl_workshopform_rubric_config; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22679,7 +20121,6 @@ COMMENT ON TABLE public.mdl_workshopform_rubric_config IS 'Configuration table f -- --- TOC entry 1036 (class 1259 OID 63716) -- Name: mdl_workshopform_rubric_config_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22694,8 +20135,6 @@ CREATE SEQUENCE public.mdl_workshopform_rubric_config_id_seq ALTER TABLE public.mdl_workshopform_rubric_config_id_seq OWNER TO postgres; -- --- TOC entry 11384 (class 0 OID 0) --- Dependencies: 1036 -- Name: mdl_workshopform_rubric_config_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22703,7 +20142,6 @@ ALTER SEQUENCE public.mdl_workshopform_rubric_config_id_seq OWNED BY public.mdl_ -- --- TOC entry 1037 (class 1259 OID 63718) -- Name: mdl_workshopform_rubric_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22718,8 +20156,6 @@ CREATE SEQUENCE public.mdl_workshopform_rubric_id_seq ALTER TABLE public.mdl_workshopform_rubric_id_seq OWNER TO postgres; -- --- TOC entry 11385 (class 0 OID 0) --- Dependencies: 1037 -- Name: mdl_workshopform_rubric_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22727,7 +20163,6 @@ ALTER SEQUENCE public.mdl_workshopform_rubric_id_seq OWNED BY public.mdl_worksho -- --- TOC entry 1038 (class 1259 OID 63720) -- Name: mdl_workshopform_rubric_levels; Type: TABLE; Schema: public; Owner: postgres -- @@ -22743,8 +20178,6 @@ CREATE TABLE public.mdl_workshopform_rubric_levels ( ALTER TABLE public.mdl_workshopform_rubric_levels OWNER TO postgres; -- --- TOC entry 11386 (class 0 OID 0) --- Dependencies: 1038 -- Name: TABLE mdl_workshopform_rubric_levels; Type: COMMENT; Schema: public; Owner: postgres -- @@ -22752,7 +20185,6 @@ COMMENT ON TABLE public.mdl_workshopform_rubric_levels IS 'The definition of rub -- --- TOC entry 1039 (class 1259 OID 63727) -- Name: mdl_workshopform_rubric_levels_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- @@ -22767,8 +20199,6 @@ CREATE SEQUENCE public.mdl_workshopform_rubric_levels_id_seq ALTER TABLE public.mdl_workshopform_rubric_levels_id_seq OWNER TO postgres; -- --- TOC entry 11387 (class 0 OID 0) --- Dependencies: 1039 -- Name: mdl_workshopform_rubric_levels_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- @@ -22776,7 +20206,6 @@ ALTER SEQUENCE public.mdl_workshopform_rubric_levels_id_seq OWNED BY public.mdl_ -- --- TOC entry 5441 (class 2604 OID 63729) -- Name: mdl_analytics_indicator_calc id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22784,7 +20213,6 @@ ALTER TABLE ONLY public.mdl_analytics_indicator_calc ALTER COLUMN id SET DEFAULT -- --- TOC entry 5444 (class 2604 OID 63730) -- Name: mdl_analytics_models id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22792,7 +20220,6 @@ ALTER TABLE ONLY public.mdl_analytics_models ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 5448 (class 2604 OID 63731) -- Name: mdl_analytics_models_log id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22800,7 +20227,6 @@ ALTER TABLE ONLY public.mdl_analytics_models_log ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 5452 (class 2604 OID 63732) -- Name: mdl_analytics_predict_samples id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22808,7 +20234,6 @@ ALTER TABLE ONLY public.mdl_analytics_predict_samples ALTER COLUMN id SET DEFAUL -- --- TOC entry 5456 (class 2604 OID 63733) -- Name: mdl_analytics_prediction_actions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22816,7 +20241,6 @@ ALTER TABLE ONLY public.mdl_analytics_prediction_actions ALTER COLUMN id SET DEF -- --- TOC entry 5458 (class 2604 OID 63734) -- Name: mdl_analytics_predictions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22824,7 +20248,6 @@ ALTER TABLE ONLY public.mdl_analytics_predictions ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 5460 (class 2604 OID 63735) -- Name: mdl_analytics_train_samples id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22832,7 +20255,6 @@ ALTER TABLE ONLY public.mdl_analytics_train_samples ALTER COLUMN id SET DEFAULT -- --- TOC entry 5463 (class 2604 OID 63736) -- Name: mdl_analytics_used_analysables id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22840,7 +20262,6 @@ ALTER TABLE ONLY public.mdl_analytics_used_analysables ALTER COLUMN id SET DEFAU -- --- TOC entry 5465 (class 2604 OID 63737) -- Name: mdl_analytics_used_files id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22848,7 +20269,6 @@ ALTER TABLE ONLY public.mdl_analytics_used_files ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 5498 (class 2604 OID 63738) -- Name: mdl_assign id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22856,7 +20276,6 @@ ALTER TABLE ONLY public.mdl_assign ALTER COLUMN id SET DEFAULT nextval('public.m -- --- TOC entry 5499 (class 2604 OID 63739) -- Name: mdl_assign_grades id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22864,7 +20283,6 @@ ALTER TABLE ONLY public.mdl_assign_grades ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 5507 (class 2604 OID 63740) -- Name: mdl_assign_overrides id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22872,7 +20290,6 @@ ALTER TABLE ONLY public.mdl_assign_overrides ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 5509 (class 2604 OID 63741) -- Name: mdl_assign_plugin_config id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22880,7 +20297,6 @@ ALTER TABLE ONLY public.mdl_assign_plugin_config ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 5514 (class 2604 OID 63742) -- Name: mdl_assign_submission id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22888,7 +20304,6 @@ ALTER TABLE ONLY public.mdl_assign_submission ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 5522 (class 2604 OID 63743) -- Name: mdl_assign_user_flags id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22896,7 +20311,6 @@ ALTER TABLE ONLY public.mdl_assign_user_flags ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 5529 (class 2604 OID 63744) -- Name: mdl_assign_user_mapping id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22904,7 +20318,6 @@ ALTER TABLE ONLY public.mdl_assign_user_mapping ALTER COLUMN id SET DEFAULT next -- --- TOC entry 5532 (class 2604 OID 63745) -- Name: mdl_assignfeedback_comments id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22912,7 +20325,6 @@ ALTER TABLE ONLY public.mdl_assignfeedback_comments ALTER COLUMN id SET DEFAULT -- --- TOC entry 5536 (class 2604 OID 63746) -- Name: mdl_assignfeedback_editpdf_annot id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22920,7 +20332,6 @@ ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_annot ALTER COLUMN id SET DEF -- --- TOC entry 5546 (class 2604 OID 63747) -- Name: mdl_assignfeedback_editpdf_cmnt id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22928,7 +20339,6 @@ ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_cmnt ALTER COLUMN id SET DEFA -- --- TOC entry 5554 (class 2604 OID 63748) -- Name: mdl_assignfeedback_editpdf_queue id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22936,7 +20346,6 @@ ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_queue ALTER COLUMN id SET DEF -- --- TOC entry 5556 (class 2604 OID 63749) -- Name: mdl_assignfeedback_editpdf_quick id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22944,7 +20353,6 @@ ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_quick ALTER COLUMN id SET DEF -- --- TOC entry 5560 (class 2604 OID 63750) -- Name: mdl_assignfeedback_editpdf_rot id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22952,7 +20360,6 @@ ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_rot ALTER COLUMN id SET DEFAU -- --- TOC entry 5565 (class 2604 OID 63751) -- Name: mdl_assignfeedback_file id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22960,7 +20367,6 @@ ALTER TABLE ONLY public.mdl_assignfeedback_file ALTER COLUMN id SET DEFAULT next -- --- TOC entry 5586 (class 2604 OID 63752) -- Name: mdl_assignment id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22968,7 +20374,6 @@ ALTER TABLE ONLY public.mdl_assignment ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 5587 (class 2604 OID 63753) -- Name: mdl_assignment_submissions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22976,7 +20381,6 @@ ALTER TABLE ONLY public.mdl_assignment_submissions ALTER COLUMN id SET DEFAULT n -- --- TOC entry 5598 (class 2604 OID 63754) -- Name: mdl_assignment_upgrade id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22984,7 +20388,6 @@ ALTER TABLE ONLY public.mdl_assignment_upgrade ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 5604 (class 2604 OID 63755) -- Name: mdl_assignsubmission_file id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22992,7 +20395,6 @@ ALTER TABLE ONLY public.mdl_assignsubmission_file ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 5608 (class 2604 OID 63756) -- Name: mdl_assignsubmission_onlinetext id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23000,7 +20402,6 @@ ALTER TABLE ONLY public.mdl_assignsubmission_onlinetext ALTER COLUMN id SET DEFA -- --- TOC entry 5612 (class 2604 OID 63757) -- Name: mdl_auth_oauth2_linked_login id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23008,7 +20409,6 @@ ALTER TABLE ONLY public.mdl_auth_oauth2_linked_login ALTER COLUMN id SET DEFAULT -- --- TOC entry 5615 (class 2604 OID 63758) -- Name: mdl_backup_controllers id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23016,7 +20416,6 @@ ALTER TABLE ONLY public.mdl_backup_controllers ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 5622 (class 2604 OID 63759) -- Name: mdl_backup_courses id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23024,7 +20423,6 @@ ALTER TABLE ONLY public.mdl_backup_courses ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 5628 (class 2604 OID 63760) -- Name: mdl_backup_logs id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23032,7 +20430,6 @@ ALTER TABLE ONLY public.mdl_backup_logs ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 5630 (class 2604 OID 63761) -- Name: mdl_badge id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23040,7 +20437,6 @@ ALTER TABLE ONLY public.mdl_badge ALTER COLUMN id SET DEFAULT nextval('public.md -- --- TOC entry 5640 (class 2604 OID 63762) -- Name: mdl_badge_alignment id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23048,7 +20444,6 @@ ALTER TABLE ONLY public.mdl_badge_alignment ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 5644 (class 2604 OID 63763) -- Name: mdl_badge_backpack id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23056,7 +20451,6 @@ ALTER TABLE ONLY public.mdl_badge_backpack ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 5648 (class 2604 OID 63764) -- Name: mdl_badge_backpack_oauth2 id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23064,7 +20458,6 @@ ALTER TABLE ONLY public.mdl_badge_backpack_oauth2 ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 5652 (class 2604 OID 63765) -- Name: mdl_badge_criteria id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23072,7 +20465,6 @@ ALTER TABLE ONLY public.mdl_badge_criteria ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 5656 (class 2604 OID 63766) -- Name: mdl_badge_criteria_met id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23080,7 +20472,6 @@ ALTER TABLE ONLY public.mdl_badge_criteria_met ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 5657 (class 2604 OID 63767) -- Name: mdl_badge_criteria_param id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23088,7 +20479,6 @@ ALTER TABLE ONLY public.mdl_badge_criteria_param ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 5659 (class 2604 OID 63768) -- Name: mdl_badge_endorsement id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23096,7 +20486,6 @@ ALTER TABLE ONLY public.mdl_badge_endorsement ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 5665 (class 2604 OID 63769) -- Name: mdl_badge_external id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23104,7 +20493,6 @@ ALTER TABLE ONLY public.mdl_badge_external ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 5666 (class 2604 OID 63770) -- Name: mdl_badge_external_backpack id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23112,7 +20500,6 @@ ALTER TABLE ONLY public.mdl_badge_external_backpack ALTER COLUMN id SET DEFAULT -- --- TOC entry 5671 (class 2604 OID 63771) -- Name: mdl_badge_external_identifier id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23120,7 +20507,6 @@ ALTER TABLE ONLY public.mdl_badge_external_identifier ALTER COLUMN id SET DEFAUL -- --- TOC entry 5675 (class 2604 OID 63772) -- Name: mdl_badge_issued id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23128,7 +20514,6 @@ ALTER TABLE ONLY public.mdl_badge_issued ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 5680 (class 2604 OID 63773) -- Name: mdl_badge_manual_award id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23136,7 +20521,6 @@ ALTER TABLE ONLY public.mdl_badge_manual_award ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 5681 (class 2604 OID 63774) -- Name: mdl_badge_related id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23144,7 +20528,6 @@ ALTER TABLE ONLY public.mdl_badge_related ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 5683 (class 2604 OID 63775) -- Name: mdl_block id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23152,7 +20535,6 @@ ALTER TABLE ONLY public.mdl_block ALTER COLUMN id SET DEFAULT nextval('public.md -- --- TOC entry 5688 (class 2604 OID 63776) -- Name: mdl_block_instances id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23160,7 +20542,6 @@ ALTER TABLE ONLY public.mdl_block_instances ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 5693 (class 2604 OID 63777) -- Name: mdl_block_positions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23168,7 +20549,6 @@ ALTER TABLE ONLY public.mdl_block_positions ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 5697 (class 2604 OID 63778) -- Name: mdl_block_recent_activity id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23176,7 +20556,6 @@ ALTER TABLE ONLY public.mdl_block_recent_activity ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 5698 (class 2604 OID 63779) -- Name: mdl_block_recentlyaccesseditems id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23184,7 +20563,6 @@ ALTER TABLE ONLY public.mdl_block_recentlyaccesseditems ALTER COLUMN id SET DEFA -- --- TOC entry 5699 (class 2604 OID 63780) -- Name: mdl_block_rss_client id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23192,7 +20570,6 @@ ALTER TABLE ONLY public.mdl_block_rss_client ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 5706 (class 2604 OID 63781) -- Name: mdl_blog_association id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23200,7 +20577,6 @@ ALTER TABLE ONLY public.mdl_blog_association ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 5707 (class 2604 OID 63782) -- Name: mdl_blog_external id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23208,7 +20584,6 @@ ALTER TABLE ONLY public.mdl_blog_external ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 5711 (class 2604 OID 63783) -- Name: mdl_book id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23216,7 +20591,6 @@ ALTER TABLE ONLY public.mdl_book ALTER COLUMN id SET DEFAULT nextval('public.mdl -- --- TOC entry 5721 (class 2604 OID 63784) -- Name: mdl_book_chapters id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23224,7 +20598,6 @@ ALTER TABLE ONLY public.mdl_book_chapters ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 5731 (class 2604 OID 63785) -- Name: mdl_cache_filters id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23232,7 +20605,6 @@ ALTER TABLE ONLY public.mdl_cache_filters ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 5736 (class 2604 OID 63786) -- Name: mdl_cache_flags id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23240,7 +20612,6 @@ ALTER TABLE ONLY public.mdl_cache_flags ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 5740 (class 2604 OID 63787) -- Name: mdl_capabilities id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23248,7 +20619,6 @@ ALTER TABLE ONLY public.mdl_capabilities ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 5746 (class 2604 OID 63788) -- Name: mdl_chat id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23256,7 +20626,6 @@ ALTER TABLE ONLY public.mdl_chat ALTER COLUMN id SET DEFAULT nextval('public.mdl -- --- TOC entry 5755 (class 2604 OID 63789) -- Name: mdl_chat_messages id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23264,7 +20633,6 @@ ALTER TABLE ONLY public.mdl_chat_messages ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 5761 (class 2604 OID 63790) -- Name: mdl_chat_messages_current id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23272,7 +20640,6 @@ ALTER TABLE ONLY public.mdl_chat_messages_current ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 5767 (class 2604 OID 63791) -- Name: mdl_chat_users id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23280,7 +20647,6 @@ ALTER TABLE ONLY public.mdl_chat_users ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 5779 (class 2604 OID 63792) -- Name: mdl_choice id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23288,7 +20654,6 @@ ALTER TABLE ONLY public.mdl_choice ALTER COLUMN id SET DEFAULT nextval('public.m -- --- TOC entry 5796 (class 2604 OID 63793) -- Name: mdl_choice_answers id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23296,7 +20661,6 @@ ALTER TABLE ONLY public.mdl_choice_answers ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 5801 (class 2604 OID 63794) -- Name: mdl_choice_options id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23304,7 +20668,6 @@ ALTER TABLE ONLY public.mdl_choice_options ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 5805 (class 2604 OID 63795) -- Name: mdl_cohort id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23312,7 +20675,6 @@ ALTER TABLE ONLY public.mdl_cohort ALTER COLUMN id SET DEFAULT nextval('public.m -- --- TOC entry 5809 (class 2604 OID 63796) -- Name: mdl_cohort_members id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23320,7 +20682,6 @@ ALTER TABLE ONLY public.mdl_cohort_members ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 5813 (class 2604 OID 63797) -- Name: mdl_comments id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23328,7 +20689,6 @@ ALTER TABLE ONLY public.mdl_comments ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 5816 (class 2604 OID 63798) -- Name: mdl_competency id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23336,7 +20696,6 @@ ALTER TABLE ONLY public.mdl_competency ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 5821 (class 2604 OID 63799) -- Name: mdl_competency_coursecomp id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23344,7 +20703,6 @@ ALTER TABLE ONLY public.mdl_competency_coursecomp ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 5822 (class 2604 OID 63800) -- Name: mdl_competency_coursecompsetting id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23352,7 +20710,6 @@ ALTER TABLE ONLY public.mdl_competency_coursecompsetting ALTER COLUMN id SET DEF -- --- TOC entry 5823 (class 2604 OID 63801) -- Name: mdl_competency_evidence id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23360,7 +20717,6 @@ ALTER TABLE ONLY public.mdl_competency_evidence ALTER COLUMN id SET DEFAULT next -- --- TOC entry 5826 (class 2604 OID 63802) -- Name: mdl_competency_framework id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23368,7 +20724,6 @@ ALTER TABLE ONLY public.mdl_competency_framework ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 5830 (class 2604 OID 63803) -- Name: mdl_competency_modulecomp id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23376,7 +20731,6 @@ ALTER TABLE ONLY public.mdl_competency_modulecomp ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 5831 (class 2604 OID 63804) -- Name: mdl_competency_plan id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23384,7 +20738,6 @@ ALTER TABLE ONLY public.mdl_competency_plan ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 5836 (class 2604 OID 63805) -- Name: mdl_competency_plancomp id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23392,7 +20745,6 @@ ALTER TABLE ONLY public.mdl_competency_plancomp ALTER COLUMN id SET DEFAULT next -- --- TOC entry 5837 (class 2604 OID 63806) -- Name: mdl_competency_relatedcomp id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23400,7 +20752,6 @@ ALTER TABLE ONLY public.mdl_competency_relatedcomp ALTER COLUMN id SET DEFAULT n -- --- TOC entry 5838 (class 2604 OID 63807) -- Name: mdl_competency_template id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23408,7 +20759,6 @@ ALTER TABLE ONLY public.mdl_competency_template ALTER COLUMN id SET DEFAULT next -- --- TOC entry 5841 (class 2604 OID 63808) -- Name: mdl_competency_templatecohort id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23416,7 +20766,6 @@ ALTER TABLE ONLY public.mdl_competency_templatecohort ALTER COLUMN id SET DEFAUL -- --- TOC entry 5842 (class 2604 OID 63809) -- Name: mdl_competency_templatecomp id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23424,7 +20773,6 @@ ALTER TABLE ONLY public.mdl_competency_templatecomp ALTER COLUMN id SET DEFAULT -- --- TOC entry 5843 (class 2604 OID 63810) -- Name: mdl_competency_usercomp id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23432,7 +20780,6 @@ ALTER TABLE ONLY public.mdl_competency_usercomp ALTER COLUMN id SET DEFAULT next -- --- TOC entry 5845 (class 2604 OID 63811) -- Name: mdl_competency_usercompcourse id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23440,7 +20787,6 @@ ALTER TABLE ONLY public.mdl_competency_usercompcourse ALTER COLUMN id SET DEFAUL -- --- TOC entry 5846 (class 2604 OID 63812) -- Name: mdl_competency_usercompplan id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23448,7 +20794,6 @@ ALTER TABLE ONLY public.mdl_competency_usercompplan ALTER COLUMN id SET DEFAULT -- --- TOC entry 5847 (class 2604 OID 63813) -- Name: mdl_competency_userevidence id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23456,7 +20801,6 @@ ALTER TABLE ONLY public.mdl_competency_userevidence ALTER COLUMN id SET DEFAULT -- --- TOC entry 5849 (class 2604 OID 63814) -- Name: mdl_competency_userevidencecomp id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23464,7 +20808,6 @@ ALTER TABLE ONLY public.mdl_competency_userevidencecomp ALTER COLUMN id SET DEFA -- --- TOC entry 5850 (class 2604 OID 63815) -- Name: mdl_config id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23472,7 +20815,6 @@ ALTER TABLE ONLY public.mdl_config ALTER COLUMN id SET DEFAULT nextval('public.m -- --- TOC entry 5852 (class 2604 OID 63816) -- Name: mdl_config_log id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23480,7 +20822,6 @@ ALTER TABLE ONLY public.mdl_config_log ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 5854 (class 2604 OID 63817) -- Name: mdl_config_plugins id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23488,7 +20829,6 @@ ALTER TABLE ONLY public.mdl_config_plugins ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 5857 (class 2604 OID 63818) -- Name: mdl_contentbank_content id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23496,7 +20836,6 @@ ALTER TABLE ONLY public.mdl_contentbank_content ALTER COLUMN id SET DEFAULT next -- --- TOC entry 5862 (class 2604 OID 63819) -- Name: mdl_context id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23504,7 +20843,6 @@ ALTER TABLE ONLY public.mdl_context ALTER COLUMN id SET DEFAULT nextval('public. -- --- TOC entry 5899 (class 2604 OID 63820) -- Name: mdl_course id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23512,7 +20850,6 @@ ALTER TABLE ONLY public.mdl_course ALTER COLUMN id SET DEFAULT nextval('public.m -- --- TOC entry 5900 (class 2604 OID 63821) -- Name: mdl_course_categories id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23520,7 +20857,6 @@ ALTER TABLE ONLY public.mdl_course_categories ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 5911 (class 2604 OID 63822) -- Name: mdl_course_completion_aggr_methd id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23528,7 +20864,6 @@ ALTER TABLE ONLY public.mdl_course_completion_aggr_methd ALTER COLUMN id SET DEF -- --- TOC entry 5914 (class 2604 OID 63823) -- Name: mdl_course_completion_crit_compl id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23536,7 +20871,6 @@ ALTER TABLE ONLY public.mdl_course_completion_crit_compl ALTER COLUMN id SET DEF -- --- TOC entry 5918 (class 2604 OID 63824) -- Name: mdl_course_completion_criteria id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23544,7 +20878,6 @@ ALTER TABLE ONLY public.mdl_course_completion_criteria ALTER COLUMN id SET DEFAU -- --- TOC entry 5921 (class 2604 OID 63825) -- Name: mdl_course_completion_defaults id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23552,7 +20885,6 @@ ALTER TABLE ONLY public.mdl_course_completion_defaults ALTER COLUMN id SET DEFAU -- --- TOC entry 5926 (class 2604 OID 63826) -- Name: mdl_course_completions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23560,7 +20892,6 @@ ALTER TABLE ONLY public.mdl_course_completions ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 5932 (class 2604 OID 63827) -- Name: mdl_course_format_options id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23568,7 +20899,6 @@ ALTER TABLE ONLY public.mdl_course_format_options ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 5953 (class 2604 OID 63828) -- Name: mdl_course_modules id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23576,7 +20906,6 @@ ALTER TABLE ONLY public.mdl_course_modules ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 5954 (class 2604 OID 63829) -- Name: mdl_course_modules_completion id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23584,7 +20913,6 @@ ALTER TABLE ONLY public.mdl_course_modules_completion ALTER COLUMN id SET DEFAUL -- --- TOC entry 5955 (class 2604 OID 63830) -- Name: mdl_course_published id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23592,7 +20920,6 @@ ALTER TABLE ONLY public.mdl_course_published ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 5958 (class 2604 OID 63831) -- Name: mdl_course_request id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23600,7 +20927,6 @@ ALTER TABLE ONLY public.mdl_course_request ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 5965 (class 2604 OID 63832) -- Name: mdl_course_sections id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23608,7 +20934,6 @@ ALTER TABLE ONLY public.mdl_course_sections ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 5971 (class 2604 OID 63833) -- Name: mdl_customfield_category id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23616,7 +20941,6 @@ ALTER TABLE ONLY public.mdl_customfield_category ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 5976 (class 2604 OID 63834) -- Name: mdl_customfield_data id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23624,7 +20948,6 @@ ALTER TABLE ONLY public.mdl_customfield_data ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 5977 (class 2604 OID 63835) -- Name: mdl_customfield_field id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23632,7 +20955,6 @@ ALTER TABLE ONLY public.mdl_customfield_field ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 6005 (class 2604 OID 63836) -- Name: mdl_data id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23640,7 +20962,6 @@ ALTER TABLE ONLY public.mdl_data ALTER COLUMN id SET DEFAULT nextval('public.mdl -- --- TOC entry 6006 (class 2604 OID 63837) -- Name: mdl_data_content id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23648,7 +20969,6 @@ ALTER TABLE ONLY public.mdl_data_content ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 6009 (class 2604 OID 63838) -- Name: mdl_data_fields id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23656,7 +20976,6 @@ ALTER TABLE ONLY public.mdl_data_fields ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 6014 (class 2604 OID 63839) -- Name: mdl_data_records id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23664,7 +20983,6 @@ ALTER TABLE ONLY public.mdl_data_records ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 6021 (class 2604 OID 63840) -- Name: mdl_editor_atto_autosave id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23672,7 +20990,6 @@ ALTER TABLE ONLY public.mdl_editor_atto_autosave ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 6026 (class 2604 OID 63841) -- Name: mdl_enrol id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23680,7 +20997,6 @@ ALTER TABLE ONLY public.mdl_enrol ALTER COLUMN id SET DEFAULT nextval('public.md -- --- TOC entry 6039 (class 2604 OID 63842) -- Name: mdl_enrol_flatfile id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23688,7 +21004,6 @@ ALTER TABLE ONLY public.mdl_enrol_flatfile ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 6044 (class 2604 OID 63843) -- Name: mdl_enrol_lti_lti2_consumer id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23696,7 +21011,6 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_consumer ALTER COLUMN id SET DEFAULT -- --- TOC entry 6048 (class 2604 OID 63844) -- Name: mdl_enrol_lti_lti2_context id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23704,7 +21018,6 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_context ALTER COLUMN id SET DEFAULT n -- --- TOC entry 6050 (class 2604 OID 63845) -- Name: mdl_enrol_lti_lti2_nonce id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23712,7 +21025,6 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_nonce ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 6052 (class 2604 OID 63846) -- Name: mdl_enrol_lti_lti2_resource_link id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23720,7 +21032,6 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_resource_link ALTER COLUMN id SET DEF -- --- TOC entry 6054 (class 2604 OID 63847) -- Name: mdl_enrol_lti_lti2_share_key id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23728,7 +21039,6 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_share_key ALTER COLUMN id SET DEFAULT -- --- TOC entry 6056 (class 2604 OID 63848) -- Name: mdl_enrol_lti_lti2_tool_proxy id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23736,7 +21046,6 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_tool_proxy ALTER COLUMN id SET DEFAUL -- --- TOC entry 6058 (class 2604 OID 63849) -- Name: mdl_enrol_lti_lti2_user_result id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23744,7 +21053,6 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_user_result ALTER COLUMN id SET DEFAU -- --- TOC entry 6061 (class 2604 OID 63850) -- Name: mdl_enrol_lti_tool_consumer_map id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23752,7 +21060,6 @@ ALTER TABLE ONLY public.mdl_enrol_lti_tool_consumer_map ALTER COLUMN id SET DEFA -- --- TOC entry 6062 (class 2604 OID 63851) -- Name: mdl_enrol_lti_tools id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23760,7 +21067,6 @@ ALTER TABLE ONLY public.mdl_enrol_lti_tools ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 6074 (class 2604 OID 63852) -- Name: mdl_enrol_lti_users id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23768,7 +21074,6 @@ ALTER TABLE ONLY public.mdl_enrol_lti_users ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 6095 (class 2604 OID 63853) -- Name: mdl_enrol_paypal id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23776,7 +21081,6 @@ ALTER TABLE ONLY public.mdl_enrol_paypal ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 6096 (class 2604 OID 63854) -- Name: mdl_event id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23784,7 +21088,6 @@ ALTER TABLE ONLY public.mdl_event ALTER COLUMN id SET DEFAULT nextval('public.md -- --- TOC entry 6113 (class 2604 OID 63855) -- Name: mdl_event_subscriptions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23792,7 +21095,6 @@ ALTER TABLE ONLY public.mdl_event_subscriptions ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6122 (class 2604 OID 63856) -- Name: mdl_events_handlers id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23800,7 +21102,6 @@ ALTER TABLE ONLY public.mdl_events_handlers ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 6128 (class 2604 OID 63857) -- Name: mdl_events_queue id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23808,7 +21109,6 @@ ALTER TABLE ONLY public.mdl_events_queue ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 6129 (class 2604 OID 63858) -- Name: mdl_events_queue_handlers id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23816,7 +21116,6 @@ ALTER TABLE ONLY public.mdl_events_queue_handlers ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 6130 (class 2604 OID 63859) -- Name: mdl_external_functions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23824,7 +21123,6 @@ ALTER TABLE ONLY public.mdl_external_functions ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 6135 (class 2604 OID 63860) -- Name: mdl_external_services id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23832,7 +21130,6 @@ ALTER TABLE ONLY public.mdl_external_services ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 6139 (class 2604 OID 63861) -- Name: mdl_external_services_functions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23840,7 +21137,6 @@ ALTER TABLE ONLY public.mdl_external_services_functions ALTER COLUMN id SET DEFA -- --- TOC entry 6141 (class 2604 OID 63862) -- Name: mdl_external_services_users id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23848,7 +21144,6 @@ ALTER TABLE ONLY public.mdl_external_services_users ALTER COLUMN id SET DEFAULT -- --- TOC entry 6142 (class 2604 OID 63863) -- Name: mdl_external_tokens id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23856,7 +21151,6 @@ ALTER TABLE ONLY public.mdl_external_tokens ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 6145 (class 2604 OID 63864) -- Name: mdl_favourite id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23864,7 +21158,6 @@ ALTER TABLE ONLY public.mdl_favourite ALTER COLUMN id SET DEFAULT nextval('publi -- --- TOC entry 6148 (class 2604 OID 63865) -- Name: mdl_feedback id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23872,7 +21165,6 @@ ALTER TABLE ONLY public.mdl_feedback ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 6163 (class 2604 OID 63866) -- Name: mdl_feedback_completed id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23880,7 +21172,6 @@ ALTER TABLE ONLY public.mdl_feedback_completed ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 6170 (class 2604 OID 63867) -- Name: mdl_feedback_completedtmp id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23888,7 +21179,6 @@ ALTER TABLE ONLY public.mdl_feedback_completedtmp ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 6178 (class 2604 OID 63868) -- Name: mdl_feedback_item id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23896,7 +21186,6 @@ ALTER TABLE ONLY public.mdl_feedback_item ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6190 (class 2604 OID 63869) -- Name: mdl_feedback_sitecourse_map id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23904,7 +21193,6 @@ ALTER TABLE ONLY public.mdl_feedback_sitecourse_map ALTER COLUMN id SET DEFAULT -- --- TOC entry 6193 (class 2604 OID 63870) -- Name: mdl_feedback_template id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23912,7 +21200,6 @@ ALTER TABLE ONLY public.mdl_feedback_template ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 6197 (class 2604 OID 63871) -- Name: mdl_feedback_value id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23920,7 +21207,6 @@ ALTER TABLE ONLY public.mdl_feedback_value ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 6202 (class 2604 OID 63872) -- Name: mdl_feedback_valuetmp id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23928,7 +21214,6 @@ ALTER TABLE ONLY public.mdl_feedback_valuetmp ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 6207 (class 2604 OID 63873) -- Name: mdl_file_conversion id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23936,7 +21221,6 @@ ALTER TABLE ONLY public.mdl_file_conversion ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 6210 (class 2604 OID 63874) -- Name: mdl_files id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23944,7 +21228,6 @@ ALTER TABLE ONLY public.mdl_files ALTER COLUMN id SET DEFAULT nextval('public.md -- --- TOC entry 6219 (class 2604 OID 63875) -- Name: mdl_files_reference id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23952,7 +21235,6 @@ ALTER TABLE ONLY public.mdl_files_reference ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 6221 (class 2604 OID 63876) -- Name: mdl_filter_active id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23960,7 +21242,6 @@ ALTER TABLE ONLY public.mdl_filter_active ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6224 (class 2604 OID 63877) -- Name: mdl_filter_config id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23968,7 +21249,6 @@ ALTER TABLE ONLY public.mdl_filter_config ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6227 (class 2604 OID 63878) -- Name: mdl_folder id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23976,7 +21256,6 @@ ALTER TABLE ONLY public.mdl_folder ALTER COLUMN id SET DEFAULT nextval('public.m -- --- TOC entry 6263 (class 2604 OID 63879) -- Name: mdl_forum id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23984,7 +21263,6 @@ ALTER TABLE ONLY public.mdl_forum ALTER COLUMN id SET DEFAULT nextval('public.md -- --- TOC entry 6264 (class 2604 OID 63880) -- Name: mdl_forum_digests id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23992,7 +21270,6 @@ ALTER TABLE ONLY public.mdl_forum_digests ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6266 (class 2604 OID 63881) -- Name: mdl_forum_discussion_subs id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24000,7 +21277,6 @@ ALTER TABLE ONLY public.mdl_forum_discussion_subs ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 6268 (class 2604 OID 63882) -- Name: mdl_forum_discussions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24008,7 +21284,6 @@ ALTER TABLE ONLY public.mdl_forum_discussions ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 6282 (class 2604 OID 63883) -- Name: mdl_forum_grades id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24016,7 +21291,6 @@ ALTER TABLE ONLY public.mdl_forum_grades ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 6283 (class 2604 OID 63884) -- Name: mdl_forum_posts id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24024,7 +21298,6 @@ ALTER TABLE ONLY public.mdl_forum_posts ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 6298 (class 2604 OID 63885) -- Name: mdl_forum_queue id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24032,7 +21305,6 @@ ALTER TABLE ONLY public.mdl_forum_queue ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 6303 (class 2604 OID 63886) -- Name: mdl_forum_read id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24040,7 +21312,6 @@ ALTER TABLE ONLY public.mdl_forum_read ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 6310 (class 2604 OID 63887) -- Name: mdl_forum_subscriptions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24048,7 +21319,6 @@ ALTER TABLE ONLY public.mdl_forum_subscriptions ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6313 (class 2604 OID 63888) -- Name: mdl_forum_track_prefs id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24056,7 +21326,6 @@ ALTER TABLE ONLY public.mdl_forum_track_prefs ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 6342 (class 2604 OID 63889) -- Name: mdl_glossary id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24064,7 +21333,6 @@ ALTER TABLE ONLY public.mdl_glossary ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 6343 (class 2604 OID 63890) -- Name: mdl_glossary_alias id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24072,7 +21340,6 @@ ALTER TABLE ONLY public.mdl_glossary_alias ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 6346 (class 2604 OID 63891) -- Name: mdl_glossary_categories id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24080,7 +21347,6 @@ ALTER TABLE ONLY public.mdl_glossary_categories ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6350 (class 2604 OID 63892) -- Name: mdl_glossary_entries id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24088,7 +21354,6 @@ ALTER TABLE ONLY public.mdl_glossary_entries ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 6365 (class 2604 OID 63893) -- Name: mdl_glossary_entries_categories id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24096,7 +21361,6 @@ ALTER TABLE ONLY public.mdl_glossary_entries_categories ALTER COLUMN id SET DEFA -- --- TOC entry 6368 (class 2604 OID 63894) -- Name: mdl_glossary_formats id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24104,7 +21368,6 @@ ALTER TABLE ONLY public.mdl_glossary_formats ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 6377 (class 2604 OID 63895) -- Name: mdl_grade_categories id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24112,7 +21375,6 @@ ALTER TABLE ONLY public.mdl_grade_categories ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 6386 (class 2604 OID 63896) -- Name: mdl_grade_categories_history id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24120,7 +21382,6 @@ ALTER TABLE ONLY public.mdl_grade_categories_history ALTER COLUMN id SET DEFAULT -- --- TOC entry 6397 (class 2604 OID 63897) -- Name: mdl_grade_grades id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24128,7 +21389,6 @@ ALTER TABLE ONLY public.mdl_grade_grades ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 6409 (class 2604 OID 63898) -- Name: mdl_grade_grades_history id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24136,7 +21396,6 @@ ALTER TABLE ONLY public.mdl_grade_grades_history ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 6421 (class 2604 OID 63899) -- Name: mdl_grade_import_newitem id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24144,7 +21403,6 @@ ALTER TABLE ONLY public.mdl_grade_import_newitem ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 6423 (class 2604 OID 63900) -- Name: mdl_grade_import_values id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24152,7 +21410,6 @@ ALTER TABLE ONLY public.mdl_grade_import_values ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6425 (class 2604 OID 63901) -- Name: mdl_grade_items id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24160,7 +21417,6 @@ ALTER TABLE ONLY public.mdl_grade_items ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 6459 (class 2604 OID 63902) -- Name: mdl_grade_items_history id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24168,7 +21424,6 @@ ALTER TABLE ONLY public.mdl_grade_items_history ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6460 (class 2604 OID 63903) -- Name: mdl_grade_letters id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24176,7 +21431,6 @@ ALTER TABLE ONLY public.mdl_grade_letters ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6462 (class 2604 OID 63904) -- Name: mdl_grade_outcomes id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24184,7 +21438,6 @@ ALTER TABLE ONLY public.mdl_grade_outcomes ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 6465 (class 2604 OID 63905) -- Name: mdl_grade_outcomes_courses id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24192,7 +21445,6 @@ ALTER TABLE ONLY public.mdl_grade_outcomes_courses ALTER COLUMN id SET DEFAULT n -- --- TOC entry 6466 (class 2604 OID 63906) -- Name: mdl_grade_outcomes_history id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24200,7 +21452,6 @@ ALTER TABLE ONLY public.mdl_grade_outcomes_history ALTER COLUMN id SET DEFAULT n -- --- TOC entry 6470 (class 2604 OID 63907) -- Name: mdl_grade_settings id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24208,7 +21459,6 @@ ALTER TABLE ONLY public.mdl_grade_settings ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 6472 (class 2604 OID 63908) -- Name: mdl_grading_areas id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24216,7 +21466,6 @@ ALTER TABLE ONLY public.mdl_grading_areas ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6475 (class 2604 OID 63909) -- Name: mdl_grading_definitions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24224,7 +21473,6 @@ ALTER TABLE ONLY public.mdl_grading_definitions ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6480 (class 2604 OID 63910) -- Name: mdl_grading_instances id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24232,7 +21480,6 @@ ALTER TABLE ONLY public.mdl_grading_instances ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 6482 (class 2604 OID 63911) -- Name: mdl_gradingform_guide_comments id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24240,7 +21487,6 @@ ALTER TABLE ONLY public.mdl_gradingform_guide_comments ALTER COLUMN id SET DEFAU -- --- TOC entry 6483 (class 2604 OID 63912) -- Name: mdl_gradingform_guide_criteria id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24248,7 +21494,6 @@ ALTER TABLE ONLY public.mdl_gradingform_guide_criteria ALTER COLUMN id SET DEFAU -- --- TOC entry 6485 (class 2604 OID 63913) -- Name: mdl_gradingform_guide_fillings id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24256,7 +21501,6 @@ ALTER TABLE ONLY public.mdl_gradingform_guide_fillings ALTER COLUMN id SET DEFAU -- --- TOC entry 6486 (class 2604 OID 63914) -- Name: mdl_gradingform_rubric_criteria id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24264,7 +21508,6 @@ ALTER TABLE ONLY public.mdl_gradingform_rubric_criteria ALTER COLUMN id SET DEFA -- --- TOC entry 6487 (class 2604 OID 63915) -- Name: mdl_gradingform_rubric_fillings id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24272,7 +21515,6 @@ ALTER TABLE ONLY public.mdl_gradingform_rubric_fillings ALTER COLUMN id SET DEFA -- --- TOC entry 6488 (class 2604 OID 63916) -- Name: mdl_gradingform_rubric_levels id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24280,7 +21522,6 @@ ALTER TABLE ONLY public.mdl_gradingform_rubric_levels ALTER COLUMN id SET DEFAUL -- --- TOC entry 6489 (class 2604 OID 63917) -- Name: mdl_groupings id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24288,7 +21529,6 @@ ALTER TABLE ONLY public.mdl_groupings ALTER COLUMN id SET DEFAULT nextval('publi -- --- TOC entry 6496 (class 2604 OID 63918) -- Name: mdl_groupings_groups id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24296,7 +21536,6 @@ ALTER TABLE ONLY public.mdl_groupings_groups ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 6500 (class 2604 OID 63919) -- Name: mdl_groups id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24304,7 +21543,6 @@ ALTER TABLE ONLY public.mdl_groups ALTER COLUMN id SET DEFAULT nextval('public.m -- --- TOC entry 6508 (class 2604 OID 63920) -- Name: mdl_groups_members id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24312,7 +21550,6 @@ ALTER TABLE ONLY public.mdl_groups_members ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 6514 (class 2604 OID 63921) -- Name: mdl_h5p id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24320,7 +21557,6 @@ ALTER TABLE ONLY public.mdl_h5p ALTER COLUMN id SET DEFAULT nextval('public.mdl_ -- --- TOC entry 6519 (class 2604 OID 63922) -- Name: mdl_h5p_contents_libraries id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24328,7 +21564,6 @@ ALTER TABLE ONLY public.mdl_h5p_contents_libraries ALTER COLUMN id SET DEFAULT n -- --- TOC entry 6521 (class 2604 OID 63923) -- Name: mdl_h5p_libraries id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24336,7 +21571,6 @@ ALTER TABLE ONLY public.mdl_h5p_libraries ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6526 (class 2604 OID 63924) -- Name: mdl_h5p_libraries_cachedassets id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24344,7 +21578,6 @@ ALTER TABLE ONLY public.mdl_h5p_libraries_cachedassets ALTER COLUMN id SET DEFAU -- --- TOC entry 6528 (class 2604 OID 63925) -- Name: mdl_h5p_library_dependencies id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24352,7 +21585,6 @@ ALTER TABLE ONLY public.mdl_h5p_library_dependencies ALTER COLUMN id SET DEFAULT -- --- TOC entry 6530 (class 2604 OID 63926) -- Name: mdl_h5pactivity id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24360,7 +21592,6 @@ ALTER TABLE ONLY public.mdl_h5pactivity ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 6538 (class 2604 OID 63927) -- Name: mdl_h5pactivity_attempts id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24368,7 +21599,6 @@ ALTER TABLE ONLY public.mdl_h5pactivity_attempts ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 6544 (class 2604 OID 63928) -- Name: mdl_h5pactivity_attempts_results id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24376,7 +21606,6 @@ ALTER TABLE ONLY public.mdl_h5pactivity_attempts_results ALTER COLUMN id SET DEF -- --- TOC entry 6548 (class 2604 OID 63929) -- Name: mdl_imscp id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24384,7 +21613,6 @@ ALTER TABLE ONLY public.mdl_imscp ALTER COLUMN id SET DEFAULT nextval('public.md -- --- TOC entry 6555 (class 2604 OID 63930) -- Name: mdl_label id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24392,7 +21620,6 @@ ALTER TABLE ONLY public.mdl_label ALTER COLUMN id SET DEFAULT nextval('public.md -- --- TOC entry 6599 (class 2604 OID 63931) -- Name: mdl_lesson id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24400,7 +21627,6 @@ ALTER TABLE ONLY public.mdl_lesson ALTER COLUMN id SET DEFAULT nextval('public.m -- --- TOC entry 6600 (class 2604 OID 63932) -- Name: mdl_lesson_answers id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24408,7 +21634,6 @@ ALTER TABLE ONLY public.mdl_lesson_answers ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 6611 (class 2604 OID 63933) -- Name: mdl_lesson_attempts id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24416,7 +21641,6 @@ ALTER TABLE ONLY public.mdl_lesson_attempts ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 6619 (class 2604 OID 63934) -- Name: mdl_lesson_branch id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24424,7 +21648,6 @@ ALTER TABLE ONLY public.mdl_lesson_branch ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6627 (class 2604 OID 63935) -- Name: mdl_lesson_grades id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24432,7 +21655,6 @@ ALTER TABLE ONLY public.mdl_lesson_grades ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6633 (class 2604 OID 63936) -- Name: mdl_lesson_overrides id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24440,7 +21662,6 @@ ALTER TABLE ONLY public.mdl_lesson_overrides ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 6635 (class 2604 OID 63937) -- Name: mdl_lesson_pages id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24448,7 +21669,6 @@ ALTER TABLE ONLY public.mdl_lesson_pages ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 6647 (class 2604 OID 63938) -- Name: mdl_lesson_timer id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24456,7 +21676,6 @@ ALTER TABLE ONLY public.mdl_lesson_timer ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 6654 (class 2604 OID 63939) -- Name: mdl_license id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24464,7 +21683,6 @@ ALTER TABLE ONLY public.mdl_license ALTER COLUMN id SET DEFAULT nextval('public. -- --- TOC entry 6659 (class 2604 OID 63940) -- Name: mdl_lock_db id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24472,7 +21690,6 @@ ALTER TABLE ONLY public.mdl_lock_db ALTER COLUMN id SET DEFAULT nextval('public. -- --- TOC entry 6661 (class 2604 OID 63941) -- Name: mdl_log id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24480,7 +21697,6 @@ ALTER TABLE ONLY public.mdl_log ALTER COLUMN id SET DEFAULT nextval('public.mdl_ -- --- TOC entry 6671 (class 2604 OID 63942) -- Name: mdl_log_display id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24488,7 +21704,6 @@ ALTER TABLE ONLY public.mdl_log_display ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 6677 (class 2604 OID 63943) -- Name: mdl_log_queries id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24496,7 +21711,6 @@ ALTER TABLE ONLY public.mdl_log_queries ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 6679 (class 2604 OID 63944) -- Name: mdl_logstore_standard_log id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24504,7 +21718,6 @@ ALTER TABLE ONLY public.mdl_logstore_standard_log ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 6686 (class 2604 OID 63945) -- Name: mdl_lti id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24512,7 +21725,6 @@ ALTER TABLE ONLY public.mdl_lti ALTER COLUMN id SET DEFAULT nextval('public.mdl_ -- --- TOC entry 6697 (class 2604 OID 63946) -- Name: mdl_lti_access_tokens id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24520,7 +21732,6 @@ ALTER TABLE ONLY public.mdl_lti_access_tokens ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 6699 (class 2604 OID 63947) -- Name: mdl_lti_submission id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24528,7 +21739,6 @@ ALTER TABLE ONLY public.mdl_lti_submission ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 6700 (class 2604 OID 63948) -- Name: mdl_lti_tool_proxies id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24536,7 +21746,6 @@ ALTER TABLE ONLY public.mdl_lti_tool_proxies ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 6703 (class 2604 OID 63949) -- Name: mdl_lti_tool_settings id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24544,7 +21753,6 @@ ALTER TABLE ONLY public.mdl_lti_tool_settings ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 6704 (class 2604 OID 63950) -- Name: mdl_lti_types id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24552,7 +21760,6 @@ ALTER TABLE ONLY public.mdl_lti_types ALTER COLUMN id SET DEFAULT nextval('publi -- --- TOC entry 6710 (class 2604 OID 63951) -- Name: mdl_lti_types_config id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24560,7 +21767,6 @@ ALTER TABLE ONLY public.mdl_lti_types_config ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 6712 (class 2604 OID 63952) -- Name: mdl_ltiservice_gradebookservices id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24568,7 +21774,6 @@ ALTER TABLE ONLY public.mdl_ltiservice_gradebookservices ALTER COLUMN id SET DEF -- --- TOC entry 6713 (class 2604 OID 63953) -- Name: mdl_message id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24576,7 +21781,6 @@ ALTER TABLE ONLY public.mdl_message ALTER COLUMN id SET DEFAULT nextval('public. -- --- TOC entry 6721 (class 2604 OID 63954) -- Name: mdl_message_airnotifier_devices id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24584,7 +21788,6 @@ ALTER TABLE ONLY public.mdl_message_airnotifier_devices ALTER COLUMN id SET DEFA -- --- TOC entry 6723 (class 2604 OID 63955) -- Name: mdl_message_contact_requests id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24592,7 +21795,6 @@ ALTER TABLE ONLY public.mdl_message_contact_requests ALTER COLUMN id SET DEFAULT -- --- TOC entry 6724 (class 2604 OID 63956) -- Name: mdl_message_contacts id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24600,7 +21802,6 @@ ALTER TABLE ONLY public.mdl_message_contacts ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 6725 (class 2604 OID 63957) -- Name: mdl_message_conversation_actions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24608,7 +21809,6 @@ ALTER TABLE ONLY public.mdl_message_conversation_actions ALTER COLUMN id SET DEF -- --- TOC entry 6726 (class 2604 OID 63958) -- Name: mdl_message_conversation_members id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24616,7 +21816,6 @@ ALTER TABLE ONLY public.mdl_message_conversation_members ALTER COLUMN id SET DEF -- --- TOC entry 6727 (class 2604 OID 63959) -- Name: mdl_message_conversations id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24624,7 +21823,6 @@ ALTER TABLE ONLY public.mdl_message_conversations ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 6730 (class 2604 OID 63960) -- Name: mdl_message_email_messages id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24632,7 +21830,6 @@ ALTER TABLE ONLY public.mdl_message_email_messages ALTER COLUMN id SET DEFAULT n -- --- TOC entry 6731 (class 2604 OID 63961) -- Name: mdl_message_popup id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24640,7 +21837,6 @@ ALTER TABLE ONLY public.mdl_message_popup ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6733 (class 2604 OID 63962) -- Name: mdl_message_popup_notifications id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24648,7 +21844,6 @@ ALTER TABLE ONLY public.mdl_message_popup_notifications ALTER COLUMN id SET DEFA -- --- TOC entry 6734 (class 2604 OID 63963) -- Name: mdl_message_processors id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24656,7 +21851,6 @@ ALTER TABLE ONLY public.mdl_message_processors ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 6737 (class 2604 OID 63964) -- Name: mdl_message_providers id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24664,7 +21858,6 @@ ALTER TABLE ONLY public.mdl_message_providers ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 6740 (class 2604 OID 63965) -- Name: mdl_message_read id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24672,7 +21865,6 @@ ALTER TABLE ONLY public.mdl_message_read ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 6749 (class 2604 OID 63966) -- Name: mdl_message_user_actions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24680,7 +21872,6 @@ ALTER TABLE ONLY public.mdl_message_user_actions ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 6750 (class 2604 OID 63967) -- Name: mdl_message_users_blocked id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24688,7 +21879,6 @@ ALTER TABLE ONLY public.mdl_message_users_blocked ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 6751 (class 2604 OID 63968) -- Name: mdl_messageinbound_datakeys id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24696,7 +21886,6 @@ ALTER TABLE ONLY public.mdl_messageinbound_datakeys ALTER COLUMN id SET DEFAULT -- --- TOC entry 6752 (class 2604 OID 63969) -- Name: mdl_messageinbound_handlers id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24704,7 +21893,6 @@ ALTER TABLE ONLY public.mdl_messageinbound_handlers ALTER COLUMN id SET DEFAULT -- --- TOC entry 6758 (class 2604 OID 63970) -- Name: mdl_messageinbound_messagelist id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24712,7 +21900,6 @@ ALTER TABLE ONLY public.mdl_messageinbound_messagelist ALTER COLUMN id SET DEFAU -- --- TOC entry 6759 (class 2604 OID 63971) -- Name: mdl_messages id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24720,7 +21907,6 @@ ALTER TABLE ONLY public.mdl_messages ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 6762 (class 2604 OID 63972) -- Name: mdl_mnet_application id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24728,7 +21914,6 @@ ALTER TABLE ONLY public.mdl_mnet_application ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 6768 (class 2604 OID 63973) -- Name: mdl_mnet_host id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24736,7 +21921,6 @@ ALTER TABLE ONLY public.mdl_mnet_host ALTER COLUMN id SET DEFAULT nextval('publi -- --- TOC entry 6781 (class 2604 OID 63974) -- Name: mdl_mnet_host2service id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24744,7 +21928,6 @@ ALTER TABLE ONLY public.mdl_mnet_host2service ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 6786 (class 2604 OID 63975) -- Name: mdl_mnet_log id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24752,7 +21935,6 @@ ALTER TABLE ONLY public.mdl_mnet_log ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 6799 (class 2604 OID 63976) -- Name: mdl_mnet_remote_rpc id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24760,7 +21942,6 @@ ALTER TABLE ONLY public.mdl_mnet_remote_rpc ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 6804 (class 2604 OID 63977) -- Name: mdl_mnet_remote_service2rpc id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24768,7 +21949,6 @@ ALTER TABLE ONLY public.mdl_mnet_remote_service2rpc ALTER COLUMN id SET DEFAULT -- --- TOC entry 6807 (class 2604 OID 63978) -- Name: mdl_mnet_rpc id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24776,7 +21956,6 @@ ALTER TABLE ONLY public.mdl_mnet_rpc ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 6814 (class 2604 OID 63979) -- Name: mdl_mnet_service id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24784,7 +21963,6 @@ ALTER TABLE ONLY public.mdl_mnet_service ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 6819 (class 2604 OID 63980) -- Name: mdl_mnet_service2rpc id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24792,7 +21970,6 @@ ALTER TABLE ONLY public.mdl_mnet_service2rpc ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 6822 (class 2604 OID 63981) -- Name: mdl_mnet_session id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24800,7 +21977,6 @@ ALTER TABLE ONLY public.mdl_mnet_session ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 6831 (class 2604 OID 63982) -- Name: mdl_mnet_sso_access_control id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24808,7 +21984,6 @@ ALTER TABLE ONLY public.mdl_mnet_sso_access_control ALTER COLUMN id SET DEFAULT -- --- TOC entry 6835 (class 2604 OID 63983) -- Name: mdl_mnetservice_enrol_courses id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24816,7 +21991,6 @@ ALTER TABLE ONLY public.mdl_mnetservice_enrol_courses ALTER COLUMN id SET DEFAUL -- --- TOC entry 6843 (class 2604 OID 63984) -- Name: mdl_mnetservice_enrol_enrolments id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24824,7 +21998,6 @@ ALTER TABLE ONLY public.mdl_mnetservice_enrol_enrolments ALTER COLUMN id SET DEF -- --- TOC entry 6847 (class 2604 OID 63985) -- Name: mdl_modules id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24832,7 +22005,6 @@ ALTER TABLE ONLY public.mdl_modules ALTER COLUMN id SET DEFAULT nextval('public. -- --- TOC entry 6853 (class 2604 OID 63986) -- Name: mdl_my_pages id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24840,7 +22012,6 @@ ALTER TABLE ONLY public.mdl_my_pages ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 6858 (class 2604 OID 63987) -- Name: mdl_notifications id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24848,7 +22019,6 @@ ALTER TABLE ONLY public.mdl_notifications ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6860 (class 2604 OID 63988) -- Name: mdl_oauth2_access_token id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24856,7 +22026,6 @@ ALTER TABLE ONLY public.mdl_oauth2_access_token ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6861 (class 2604 OID 63989) -- Name: mdl_oauth2_endpoint id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24864,7 +22033,6 @@ ALTER TABLE ONLY public.mdl_oauth2_endpoint ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 6863 (class 2604 OID 63990) -- Name: mdl_oauth2_issuer id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24872,7 +22040,6 @@ ALTER TABLE ONLY public.mdl_oauth2_issuer ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6869 (class 2604 OID 63991) -- Name: mdl_oauth2_system_account id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24880,7 +22047,6 @@ ALTER TABLE ONLY public.mdl_oauth2_system_account ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 6870 (class 2604 OID 63992) -- Name: mdl_oauth2_user_field_mapping id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24888,7 +22054,6 @@ ALTER TABLE ONLY public.mdl_oauth2_user_field_mapping ALTER COLUMN id SET DEFAUL -- --- TOC entry 6873 (class 2604 OID 63993) -- Name: mdl_page id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24896,7 +22061,6 @@ ALTER TABLE ONLY public.mdl_page ALTER COLUMN id SET DEFAULT nextval('public.mdl -- --- TOC entry 6882 (class 2604 OID 63994) -- Name: mdl_portfolio_instance id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24904,7 +22068,6 @@ ALTER TABLE ONLY public.mdl_portfolio_instance ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 6886 (class 2604 OID 63995) -- Name: mdl_portfolio_instance_config id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24912,7 +22075,6 @@ ALTER TABLE ONLY public.mdl_portfolio_instance_config ALTER COLUMN id SET DEFAUL -- --- TOC entry 6888 (class 2604 OID 63996) -- Name: mdl_portfolio_instance_user id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24920,7 +22082,6 @@ ALTER TABLE ONLY public.mdl_portfolio_instance_user ALTER COLUMN id SET DEFAULT -- --- TOC entry 6890 (class 2604 OID 63997) -- Name: mdl_portfolio_log id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24928,7 +22089,6 @@ ALTER TABLE ONLY public.mdl_portfolio_log ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 6897 (class 2604 OID 63998) -- Name: mdl_portfolio_mahara_queue id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24936,7 +22096,6 @@ ALTER TABLE ONLY public.mdl_portfolio_mahara_queue ALTER COLUMN id SET DEFAULT n -- --- TOC entry 6899 (class 2604 OID 63999) -- Name: mdl_portfolio_tempdata id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24944,7 +22103,6 @@ ALTER TABLE ONLY public.mdl_portfolio_tempdata ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 6902 (class 2604 OID 64000) -- Name: mdl_post id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24952,7 +22110,6 @@ ALTER TABLE ONLY public.mdl_post ALTER COLUMN id SET DEFAULT nextval('public.mdl -- --- TOC entry 6917 (class 2604 OID 64001) -- Name: mdl_profiling id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24960,7 +22117,6 @@ ALTER TABLE ONLY public.mdl_profiling ALTER COLUMN id SET DEFAULT nextval('publi -- --- TOC entry 6922 (class 2604 OID 64002) -- Name: mdl_qtype_ddimageortext id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24968,7 +22124,6 @@ ALTER TABLE ONLY public.mdl_qtype_ddimageortext ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6929 (class 2604 OID 64003) -- Name: mdl_qtype_ddimageortext_drags id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24976,7 +22131,6 @@ ALTER TABLE ONLY public.mdl_qtype_ddimageortext_drags ALTER COLUMN id SET DEFAUL -- --- TOC entry 6934 (class 2604 OID 64004) -- Name: mdl_qtype_ddimageortext_drops id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24984,7 +22138,6 @@ ALTER TABLE ONLY public.mdl_qtype_ddimageortext_drops ALTER COLUMN id SET DEFAUL -- --- TOC entry 6940 (class 2604 OID 64005) -- Name: mdl_qtype_ddmarker id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -24992,7 +22145,6 @@ ALTER TABLE ONLY public.mdl_qtype_ddmarker ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 6948 (class 2604 OID 64006) -- Name: mdl_qtype_ddmarker_drags id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25000,7 +22152,6 @@ ALTER TABLE ONLY public.mdl_qtype_ddmarker_drags ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 6953 (class 2604 OID 64007) -- Name: mdl_qtype_ddmarker_drops id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25008,7 +22159,6 @@ ALTER TABLE ONLY public.mdl_qtype_ddmarker_drops ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 6957 (class 2604 OID 64008) -- Name: mdl_qtype_essay_options id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25016,7 +22166,6 @@ ALTER TABLE ONLY public.mdl_qtype_essay_options ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6965 (class 2604 OID 64009) -- Name: mdl_qtype_match_options id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25024,7 +22173,6 @@ ALTER TABLE ONLY public.mdl_qtype_match_options ALTER COLUMN id SET DEFAULT next -- --- TOC entry 6972 (class 2604 OID 64010) -- Name: mdl_qtype_match_subquestions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25032,7 +22180,6 @@ ALTER TABLE ONLY public.mdl_qtype_match_subquestions ALTER COLUMN id SET DEFAULT -- --- TOC entry 6976 (class 2604 OID 64011) -- Name: mdl_qtype_multichoice_options id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25040,7 +22187,6 @@ ALTER TABLE ONLY public.mdl_qtype_multichoice_options ALTER COLUMN id SET DEFAUL -- --- TOC entry 6987 (class 2604 OID 64012) -- Name: mdl_qtype_randomsamatch_options id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25048,7 +22194,6 @@ ALTER TABLE ONLY public.mdl_qtype_randomsamatch_options ALTER COLUMN id SET DEFA -- --- TOC entry 6995 (class 2604 OID 64013) -- Name: mdl_qtype_shortanswer_options id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25056,7 +22201,6 @@ ALTER TABLE ONLY public.mdl_qtype_shortanswer_options ALTER COLUMN id SET DEFAUL -- --- TOC entry 6998 (class 2604 OID 64014) -- Name: mdl_question id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25064,7 +22208,6 @@ ALTER TABLE ONLY public.mdl_question ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 7013 (class 2604 OID 64015) -- Name: mdl_question_answers id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25072,7 +22215,6 @@ ALTER TABLE ONLY public.mdl_question_answers ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 7018 (class 2604 OID 64016) -- Name: mdl_question_attempt_step_data id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25080,7 +22222,6 @@ ALTER TABLE ONLY public.mdl_question_attempt_step_data ALTER COLUMN id SET DEFAU -- --- TOC entry 7020 (class 2604 OID 64017) -- Name: mdl_question_attempt_steps id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25088,7 +22229,6 @@ ALTER TABLE ONLY public.mdl_question_attempt_steps ALTER COLUMN id SET DEFAULT n -- --- TOC entry 7022 (class 2604 OID 64018) -- Name: mdl_question_attempts id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25096,7 +22236,6 @@ ALTER TABLE ONLY public.mdl_question_attempts ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 7027 (class 2604 OID 64019) -- Name: mdl_question_calculated id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25104,7 +22243,6 @@ ALTER TABLE ONLY public.mdl_question_calculated ALTER COLUMN id SET DEFAULT next -- --- TOC entry 7034 (class 2604 OID 64020) -- Name: mdl_question_calculated_options id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25112,7 +22250,6 @@ ALTER TABLE ONLY public.mdl_question_calculated_options ALTER COLUMN id SET DEFA -- --- TOC entry 7044 (class 2604 OID 64021) -- Name: mdl_question_categories id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25120,7 +22257,6 @@ ALTER TABLE ONLY public.mdl_question_categories ALTER COLUMN id SET DEFAULT next -- --- TOC entry 7051 (class 2604 OID 64022) -- Name: mdl_question_dataset_definitions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25128,7 +22264,6 @@ ALTER TABLE ONLY public.mdl_question_dataset_definitions ALTER COLUMN id SET DEF -- --- TOC entry 7057 (class 2604 OID 64023) -- Name: mdl_question_dataset_items id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25136,7 +22271,6 @@ ALTER TABLE ONLY public.mdl_question_dataset_items ALTER COLUMN id SET DEFAULT n -- --- TOC entry 7061 (class 2604 OID 64024) -- Name: mdl_question_datasets id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25144,7 +22278,6 @@ ALTER TABLE ONLY public.mdl_question_datasets ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 7064 (class 2604 OID 64025) -- Name: mdl_question_ddwtos id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25152,7 +22285,6 @@ ALTER TABLE ONLY public.mdl_question_ddwtos ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 7071 (class 2604 OID 64026) -- Name: mdl_question_gapselect id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25160,7 +22292,6 @@ ALTER TABLE ONLY public.mdl_question_gapselect ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 7078 (class 2604 OID 64027) -- Name: mdl_question_hints id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25168,7 +22299,6 @@ ALTER TABLE ONLY public.mdl_question_hints ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 7080 (class 2604 OID 64028) -- Name: mdl_question_multianswer id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25176,7 +22306,6 @@ ALTER TABLE ONLY public.mdl_question_multianswer ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 7082 (class 2604 OID 64029) -- Name: mdl_question_numerical id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25184,7 +22313,6 @@ ALTER TABLE ONLY public.mdl_question_numerical ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 7086 (class 2604 OID 64030) -- Name: mdl_question_numerical_options id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25192,7 +22320,6 @@ ALTER TABLE ONLY public.mdl_question_numerical_options ALTER COLUMN id SET DEFAU -- --- TOC entry 7092 (class 2604 OID 64031) -- Name: mdl_question_numerical_units id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25200,7 +22327,6 @@ ALTER TABLE ONLY public.mdl_question_numerical_units ALTER COLUMN id SET DEFAULT -- --- TOC entry 7096 (class 2604 OID 64032) -- Name: mdl_question_response_analysis id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25208,7 +22334,6 @@ ALTER TABLE ONLY public.mdl_question_response_analysis ALTER COLUMN id SET DEFAU -- --- TOC entry 7100 (class 2604 OID 64033) -- Name: mdl_question_response_count id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25216,7 +22341,6 @@ ALTER TABLE ONLY public.mdl_question_response_count ALTER COLUMN id SET DEFAULT -- --- TOC entry 7101 (class 2604 OID 64034) -- Name: mdl_question_statistics id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25224,7 +22348,6 @@ ALTER TABLE ONLY public.mdl_question_statistics ALTER COLUMN id SET DEFAULT next -- --- TOC entry 7105 (class 2604 OID 64035) -- Name: mdl_question_truefalse id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25232,7 +22355,6 @@ ALTER TABLE ONLY public.mdl_question_truefalse ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 7109 (class 2604 OID 64036) -- Name: mdl_question_usages id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25240,7 +22362,6 @@ ALTER TABLE ONLY public.mdl_question_usages ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 7151 (class 2604 OID 64037) -- Name: mdl_quiz id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25248,7 +22369,6 @@ ALTER TABLE ONLY public.mdl_quiz ALTER COLUMN id SET DEFAULT nextval('public.mdl -- --- TOC entry 7152 (class 2604 OID 64038) -- Name: mdl_quiz_attempts id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25256,7 +22376,6 @@ ALTER TABLE ONLY public.mdl_quiz_attempts ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 7165 (class 2604 OID 64039) -- Name: mdl_quiz_feedback id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25264,7 +22383,6 @@ ALTER TABLE ONLY public.mdl_quiz_feedback ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 7170 (class 2604 OID 64040) -- Name: mdl_quiz_grades id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25272,7 +22390,6 @@ ALTER TABLE ONLY public.mdl_quiz_grades ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 7175 (class 2604 OID 64041) -- Name: mdl_quiz_overrides id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25280,7 +22397,6 @@ ALTER TABLE ONLY public.mdl_quiz_overrides ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 7177 (class 2604 OID 64042) -- Name: mdl_quiz_overview_regrades id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25288,7 +22404,6 @@ ALTER TABLE ONLY public.mdl_quiz_overview_regrades ALTER COLUMN id SET DEFAULT n -- --- TOC entry 7178 (class 2604 OID 64043) -- Name: mdl_quiz_reports id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25296,7 +22411,6 @@ ALTER TABLE ONLY public.mdl_quiz_reports ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 7179 (class 2604 OID 64044) -- Name: mdl_quiz_sections id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25304,7 +22418,6 @@ ALTER TABLE ONLY public.mdl_quiz_sections ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 7181 (class 2604 OID 64045) -- Name: mdl_quiz_slot_tags id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25312,7 +22425,6 @@ ALTER TABLE ONLY public.mdl_quiz_slot_tags ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 7182 (class 2604 OID 64046) -- Name: mdl_quiz_slots id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25320,7 +22432,6 @@ ALTER TABLE ONLY public.mdl_quiz_slots ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 7187 (class 2604 OID 64047) -- Name: mdl_quiz_statistics id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25328,7 +22439,6 @@ ALTER TABLE ONLY public.mdl_quiz_statistics ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 7189 (class 2604 OID 64048) -- Name: mdl_quizaccess_seb_quizsettings id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25336,7 +22446,6 @@ ALTER TABLE ONLY public.mdl_quizaccess_seb_quizsettings ALTER COLUMN id SET DEFA -- --- TOC entry 7193 (class 2604 OID 64049) -- Name: mdl_quizaccess_seb_template id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25344,7 +22453,6 @@ ALTER TABLE ONLY public.mdl_quizaccess_seb_template ALTER COLUMN id SET DEFAULT -- --- TOC entry 7198 (class 2604 OID 64050) -- Name: mdl_rating id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25352,7 +22460,6 @@ ALTER TABLE ONLY public.mdl_rating ALTER COLUMN id SET DEFAULT nextval('public.m -- --- TOC entry 7201 (class 2604 OID 64051) -- Name: mdl_registration_hubs id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25360,7 +22467,6 @@ ALTER TABLE ONLY public.mdl_registration_hubs ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 7207 (class 2604 OID 64052) -- Name: mdl_repository id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25368,7 +22474,6 @@ ALTER TABLE ONLY public.mdl_repository ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 7211 (class 2604 OID 64053) -- Name: mdl_repository_instance_config id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25376,7 +22481,6 @@ ALTER TABLE ONLY public.mdl_repository_instance_config ALTER COLUMN id SET DEFAU -- --- TOC entry 7213 (class 2604 OID 64054) -- Name: mdl_repository_instances id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25384,7 +22488,6 @@ ALTER TABLE ONLY public.mdl_repository_instances ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 7217 (class 2604 OID 64055) -- Name: mdl_repository_onedrive_access id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25392,7 +22495,6 @@ ALTER TABLE ONLY public.mdl_repository_onedrive_access ALTER COLUMN id SET DEFAU -- --- TOC entry 7220 (class 2604 OID 64056) -- Name: mdl_resource id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25400,7 +22502,6 @@ ALTER TABLE ONLY public.mdl_resource ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 7230 (class 2604 OID 64057) -- Name: mdl_resource_old id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25408,7 +22509,6 @@ ALTER TABLE ONLY public.mdl_resource_old ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 7239 (class 2604 OID 64058) -- Name: mdl_role id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25416,7 +22516,6 @@ ALTER TABLE ONLY public.mdl_role ALTER COLUMN id SET DEFAULT nextval('public.mdl -- --- TOC entry 7244 (class 2604 OID 64059) -- Name: mdl_role_allow_assign id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25424,7 +22523,6 @@ ALTER TABLE ONLY public.mdl_role_allow_assign ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 7247 (class 2604 OID 64060) -- Name: mdl_role_allow_override id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25432,7 +22530,6 @@ ALTER TABLE ONLY public.mdl_role_allow_override ALTER COLUMN id SET DEFAULT next -- --- TOC entry 7250 (class 2604 OID 64061) -- Name: mdl_role_allow_switch id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25440,7 +22537,6 @@ ALTER TABLE ONLY public.mdl_role_allow_switch ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 7251 (class 2604 OID 64062) -- Name: mdl_role_allow_view id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25448,7 +22544,6 @@ ALTER TABLE ONLY public.mdl_role_allow_view ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 7252 (class 2604 OID 64063) -- Name: mdl_role_assignments id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25456,7 +22551,6 @@ ALTER TABLE ONLY public.mdl_role_assignments ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 7261 (class 2604 OID 64064) -- Name: mdl_role_capabilities id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25464,7 +22558,6 @@ ALTER TABLE ONLY public.mdl_role_capabilities ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 7268 (class 2604 OID 64065) -- Name: mdl_role_context_levels id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25472,7 +22565,6 @@ ALTER TABLE ONLY public.mdl_role_context_levels ALTER COLUMN id SET DEFAULT next -- --- TOC entry 7269 (class 2604 OID 64066) -- Name: mdl_role_names id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25480,7 +22572,6 @@ ALTER TABLE ONLY public.mdl_role_names ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 7273 (class 2604 OID 64067) -- Name: mdl_scale id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25488,7 +22579,6 @@ ALTER TABLE ONLY public.mdl_scale ALTER COLUMN id SET DEFAULT nextval('public.md -- --- TOC entry 7279 (class 2604 OID 64068) -- Name: mdl_scale_history id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25496,7 +22586,6 @@ ALTER TABLE ONLY public.mdl_scale_history ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 7320 (class 2604 OID 64069) -- Name: mdl_scorm id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25504,7 +22593,6 @@ ALTER TABLE ONLY public.mdl_scorm ALTER COLUMN id SET DEFAULT nextval('public.md -- --- TOC entry 7321 (class 2604 OID 64070) -- Name: mdl_scorm_aicc_session id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25512,7 +22600,6 @@ ALTER TABLE ONLY public.mdl_scorm_aicc_session ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 7328 (class 2604 OID 64071) -- Name: mdl_scorm_scoes id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25520,7 +22607,6 @@ ALTER TABLE ONLY public.mdl_scorm_scoes ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 7337 (class 2604 OID 64072) -- Name: mdl_scorm_scoes_data id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25528,7 +22614,6 @@ ALTER TABLE ONLY public.mdl_scorm_scoes_data ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 7340 (class 2604 OID 64073) -- Name: mdl_scorm_scoes_track id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25536,7 +22621,6 @@ ALTER TABLE ONLY public.mdl_scorm_scoes_track ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 7347 (class 2604 OID 64074) -- Name: mdl_scorm_seq_mapinfo id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25544,7 +22628,6 @@ ALTER TABLE ONLY public.mdl_scorm_seq_mapinfo ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 7355 (class 2604 OID 64075) -- Name: mdl_scorm_seq_objective id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25552,7 +22635,6 @@ ALTER TABLE ONLY public.mdl_scorm_seq_objective ALTER COLUMN id SET DEFAULT next -- --- TOC entry 7361 (class 2604 OID 64076) -- Name: mdl_scorm_seq_rolluprule id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25560,7 +22642,6 @@ ALTER TABLE ONLY public.mdl_scorm_seq_rolluprule ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 7368 (class 2604 OID 64077) -- Name: mdl_scorm_seq_rolluprulecond id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25568,7 +22649,6 @@ ALTER TABLE ONLY public.mdl_scorm_seq_rolluprulecond ALTER COLUMN id SET DEFAULT -- --- TOC entry 7373 (class 2604 OID 64078) -- Name: mdl_scorm_seq_rulecond id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25576,7 +22656,6 @@ ALTER TABLE ONLY public.mdl_scorm_seq_rulecond ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 7380 (class 2604 OID 64079) -- Name: mdl_scorm_seq_ruleconds id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25584,7 +22663,6 @@ ALTER TABLE ONLY public.mdl_scorm_seq_ruleconds ALTER COLUMN id SET DEFAULT next -- --- TOC entry 7385 (class 2604 OID 64080) -- Name: mdl_search_index_requests id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25592,7 +22670,6 @@ ALTER TABLE ONLY public.mdl_search_index_requests ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 7388 (class 2604 OID 64081) -- Name: mdl_search_simpledb_index id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25600,7 +22677,6 @@ ALTER TABLE ONLY public.mdl_search_simpledb_index ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 7391 (class 2604 OID 64082) -- Name: mdl_sessions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25608,7 +22684,6 @@ ALTER TABLE ONLY public.mdl_sessions ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 7394 (class 2604 OID 64083) -- Name: mdl_stats_daily id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25616,7 +22691,6 @@ ALTER TABLE ONLY public.mdl_stats_daily ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 7401 (class 2604 OID 64084) -- Name: mdl_stats_monthly id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25624,7 +22698,6 @@ ALTER TABLE ONLY public.mdl_stats_monthly ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 7408 (class 2604 OID 64085) -- Name: mdl_stats_user_daily id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25632,7 +22705,6 @@ ALTER TABLE ONLY public.mdl_stats_user_daily ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 7416 (class 2604 OID 64086) -- Name: mdl_stats_user_monthly id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25640,7 +22712,6 @@ ALTER TABLE ONLY public.mdl_stats_user_monthly ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 7424 (class 2604 OID 64087) -- Name: mdl_stats_user_weekly id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25648,7 +22719,6 @@ ALTER TABLE ONLY public.mdl_stats_user_weekly ALTER COLUMN id SET DEFAULT nextva -- --- TOC entry 7432 (class 2604 OID 64088) -- Name: mdl_stats_weekly id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25656,7 +22726,6 @@ ALTER TABLE ONLY public.mdl_stats_weekly ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 7439 (class 2604 OID 64089) -- Name: mdl_survey id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25664,7 +22733,6 @@ ALTER TABLE ONLY public.mdl_survey ALTER COLUMN id SET DEFAULT nextval('public.m -- --- TOC entry 7449 (class 2604 OID 64090) -- Name: mdl_survey_analysis id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25672,7 +22740,6 @@ ALTER TABLE ONLY public.mdl_survey_analysis ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 7452 (class 2604 OID 64091) -- Name: mdl_survey_answers id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25680,7 +22747,6 @@ ALTER TABLE ONLY public.mdl_survey_answers ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 7457 (class 2604 OID 64092) -- Name: mdl_survey_questions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25688,7 +22754,6 @@ ALTER TABLE ONLY public.mdl_survey_questions ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 7463 (class 2604 OID 64093) -- Name: mdl_tag id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25696,7 +22761,6 @@ ALTER TABLE ONLY public.mdl_tag ALTER COLUMN id SET DEFAULT nextval('public.mdl_ -- --- TOC entry 7469 (class 2604 OID 64094) -- Name: mdl_tag_area id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25704,7 +22768,6 @@ ALTER TABLE ONLY public.mdl_tag_area ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 7475 (class 2604 OID 64095) -- Name: mdl_tag_coll id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25712,7 +22775,6 @@ ALTER TABLE ONLY public.mdl_tag_coll ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 7479 (class 2604 OID 64096) -- Name: mdl_tag_correlation id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25720,7 +22782,6 @@ ALTER TABLE ONLY public.mdl_tag_correlation ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 7480 (class 2604 OID 64097) -- Name: mdl_tag_instance id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25728,7 +22789,6 @@ ALTER TABLE ONLY public.mdl_tag_instance ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 7486 (class 2604 OID 64098) -- Name: mdl_task_adhoc id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25736,7 +22796,6 @@ ALTER TABLE ONLY public.mdl_task_adhoc ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 7490 (class 2604 OID 64099) -- Name: mdl_task_log id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25744,7 +22803,6 @@ ALTER TABLE ONLY public.mdl_task_log ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 7493 (class 2604 OID 64100) -- Name: mdl_task_scheduled id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25752,7 +22810,6 @@ ALTER TABLE ONLY public.mdl_task_scheduled ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 7504 (class 2604 OID 64101) -- Name: mdl_tool_cohortroles id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25760,7 +22817,6 @@ ALTER TABLE ONLY public.mdl_tool_cohortroles ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 7505 (class 2604 OID 64102) -- Name: mdl_tool_customlang id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25768,7 +22824,6 @@ ALTER TABLE ONLY public.mdl_tool_customlang ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 7510 (class 2604 OID 64103) -- Name: mdl_tool_customlang_components id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25776,7 +22831,6 @@ ALTER TABLE ONLY public.mdl_tool_customlang_components ALTER COLUMN id SET DEFAU -- --- TOC entry 7512 (class 2604 OID 64104) -- Name: mdl_tool_dataprivacy_category id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25784,7 +22838,6 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_category ALTER COLUMN id SET DEFAUL -- --- TOC entry 7514 (class 2604 OID 64105) -- Name: mdl_tool_dataprivacy_ctxexpired id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25792,7 +22845,6 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_ctxexpired ALTER COLUMN id SET DEFA -- --- TOC entry 7516 (class 2604 OID 64106) -- Name: mdl_tool_dataprivacy_ctxinstance id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25800,7 +22852,6 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_ctxinstance ALTER COLUMN id SET DEF -- --- TOC entry 7517 (class 2604 OID 64107) -- Name: mdl_tool_dataprivacy_ctxlevel id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25808,7 +22859,6 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_ctxlevel ALTER COLUMN id SET DEFAUL -- --- TOC entry 7518 (class 2604 OID 64108) -- Name: mdl_tool_dataprivacy_purpose id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25816,7 +22866,6 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_purpose ALTER COLUMN id SET DEFAULT -- --- TOC entry 7521 (class 2604 OID 64109) -- Name: mdl_tool_dataprivacy_purposerole id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25824,7 +22873,6 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_purposerole ALTER COLUMN id SET DEF -- --- TOC entry 7523 (class 2604 OID 64110) -- Name: mdl_tool_dataprivacy_request id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25832,7 +22880,6 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_request ALTER COLUMN id SET DEFAULT -- --- TOC entry 7536 (class 2604 OID 64111) -- Name: mdl_tool_monitor_events id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25840,7 +22887,6 @@ ALTER TABLE ONLY public.mdl_tool_monitor_events ALTER COLUMN id SET DEFAULT next -- --- TOC entry 7539 (class 2604 OID 64112) -- Name: mdl_tool_monitor_history id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25848,7 +22894,6 @@ ALTER TABLE ONLY public.mdl_tool_monitor_history ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 7540 (class 2604 OID 64113) -- Name: mdl_tool_monitor_rules id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25856,7 +22901,6 @@ ALTER TABLE ONLY public.mdl_tool_monitor_rules ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 7544 (class 2604 OID 64114) -- Name: mdl_tool_monitor_subscriptions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25864,7 +22908,6 @@ ALTER TABLE ONLY public.mdl_tool_monitor_subscriptions ALTER COLUMN id SET DEFAU -- --- TOC entry 7547 (class 2604 OID 64115) -- Name: mdl_tool_policy id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25872,7 +22915,6 @@ ALTER TABLE ONLY public.mdl_tool_policy ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 7549 (class 2604 OID 64116) -- Name: mdl_tool_policy_acceptances id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25880,7 +22922,6 @@ ALTER TABLE ONLY public.mdl_tool_policy_acceptances ALTER COLUMN id SET DEFAULT -- --- TOC entry 7551 (class 2604 OID 64117) -- Name: mdl_tool_policy_versions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25888,7 +22929,6 @@ ALTER TABLE ONLY public.mdl_tool_policy_versions ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 7559 (class 2604 OID 64118) -- Name: mdl_tool_recyclebin_category id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25896,7 +22936,6 @@ ALTER TABLE ONLY public.mdl_tool_recyclebin_category ALTER COLUMN id SET DEFAULT -- --- TOC entry 7562 (class 2604 OID 64119) -- Name: mdl_tool_recyclebin_course id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25904,7 +22943,6 @@ ALTER TABLE ONLY public.mdl_tool_recyclebin_course ALTER COLUMN id SET DEFAULT n -- --- TOC entry 7564 (class 2604 OID 64120) -- Name: mdl_tool_usertours_steps id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25912,7 +22950,6 @@ ALTER TABLE ONLY public.mdl_tool_usertours_steps ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 7566 (class 2604 OID 64121) -- Name: mdl_tool_usertours_tours id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25920,7 +22957,6 @@ ALTER TABLE ONLY public.mdl_tool_usertours_tours ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 7570 (class 2604 OID 64122) -- Name: mdl_upgrade_log id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25928,7 +22964,6 @@ ALTER TABLE ONLY public.mdl_upgrade_log ALTER COLUMN id SET DEFAULT nextval('pub -- --- TOC entry 7572 (class 2604 OID 64123) -- Name: mdl_url id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25936,7 +22971,6 @@ ALTER TABLE ONLY public.mdl_url ALTER COLUMN id SET DEFAULT nextval('public.mdl_ -- --- TOC entry 7624 (class 2604 OID 64124) -- Name: mdl_user id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25944,7 +22978,6 @@ ALTER TABLE ONLY public.mdl_user ALTER COLUMN id SET DEFAULT nextval('public.mdl -- --- TOC entry 7625 (class 2604 OID 64125) -- Name: mdl_user_devices id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25952,7 +22985,6 @@ ALTER TABLE ONLY public.mdl_user_devices ALTER COLUMN id SET DEFAULT nextval('pu -- --- TOC entry 7634 (class 2604 OID 64126) -- Name: mdl_user_enrolments id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25960,7 +22992,6 @@ ALTER TABLE ONLY public.mdl_user_enrolments ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 7641 (class 2604 OID 64127) -- Name: mdl_user_info_category id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25968,7 +22999,6 @@ ALTER TABLE ONLY public.mdl_user_info_category ALTER COLUMN id SET DEFAULT nextv -- --- TOC entry 7644 (class 2604 OID 64128) -- Name: mdl_user_info_data id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25976,7 +23006,6 @@ ALTER TABLE ONLY public.mdl_user_info_data ALTER COLUMN id SET DEFAULT nextval(' -- --- TOC entry 7648 (class 2604 OID 64129) -- Name: mdl_user_info_field id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25984,7 +23013,6 @@ ALTER TABLE ONLY public.mdl_user_info_field ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 7660 (class 2604 OID 64130) -- Name: mdl_user_lastaccess id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -25992,7 +23020,6 @@ ALTER TABLE ONLY public.mdl_user_lastaccess ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 7664 (class 2604 OID 64131) -- Name: mdl_user_password_history id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26000,7 +23027,6 @@ ALTER TABLE ONLY public.mdl_user_password_history ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 7666 (class 2604 OID 64132) -- Name: mdl_user_password_resets id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26008,7 +23034,6 @@ ALTER TABLE ONLY public.mdl_user_password_resets ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 7669 (class 2604 OID 64133) -- Name: mdl_user_preferences id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26016,7 +23041,6 @@ ALTER TABLE ONLY public.mdl_user_preferences ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 7673 (class 2604 OID 64134) -- Name: mdl_user_private_key id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26024,7 +23048,6 @@ ALTER TABLE ONLY public.mdl_user_private_key ALTER COLUMN id SET DEFAULT nextval -- --- TOC entry 7676 (class 2604 OID 64135) -- Name: mdl_wiki id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26032,7 +23055,6 @@ ALTER TABLE ONLY public.mdl_wiki ALTER COLUMN id SET DEFAULT nextval('public.mdl -- --- TOC entry 7688 (class 2604 OID 64136) -- Name: mdl_wiki_links id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26040,7 +23062,6 @@ ALTER TABLE ONLY public.mdl_wiki_links ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 7692 (class 2604 OID 64137) -- Name: mdl_wiki_locks id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26048,7 +23069,6 @@ ALTER TABLE ONLY public.mdl_wiki_locks ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 7696 (class 2604 OID 64138) -- Name: mdl_wiki_pages id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26056,7 +23076,6 @@ ALTER TABLE ONLY public.mdl_wiki_pages ALTER COLUMN id SET DEFAULT nextval('publ -- --- TOC entry 7705 (class 2604 OID 64139) -- Name: mdl_wiki_subwikis id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26064,7 +23083,6 @@ ALTER TABLE ONLY public.mdl_wiki_subwikis ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 7709 (class 2604 OID 64140) -- Name: mdl_wiki_synonyms id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26072,7 +23090,6 @@ ALTER TABLE ONLY public.mdl_wiki_synonyms ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 7713 (class 2604 OID 64141) -- Name: mdl_wiki_versions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26080,7 +23097,6 @@ ALTER TABLE ONLY public.mdl_wiki_versions ALTER COLUMN id SET DEFAULT nextval('p -- --- TOC entry 7747 (class 2604 OID 64142) -- Name: mdl_workshop id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26088,7 +23104,6 @@ ALTER TABLE ONLY public.mdl_workshop ALTER COLUMN id SET DEFAULT nextval('public -- --- TOC entry 7748 (class 2604 OID 64143) -- Name: mdl_workshop_aggregations id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26096,7 +23111,6 @@ ALTER TABLE ONLY public.mdl_workshop_aggregations ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 7749 (class 2604 OID 64144) -- Name: mdl_workshop_assessments id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26104,7 +23118,6 @@ ALTER TABLE ONLY public.mdl_workshop_assessments ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 7756 (class 2604 OID 64145) -- Name: mdl_workshop_grades id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26112,7 +23125,6 @@ ALTER TABLE ONLY public.mdl_workshop_grades ALTER COLUMN id SET DEFAULT nextval( -- --- TOC entry 7759 (class 2604 OID 64146) -- Name: mdl_workshop_submissions id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26120,7 +23132,6 @@ ALTER TABLE ONLY public.mdl_workshop_submissions ALTER COLUMN id SET DEFAULT nex -- --- TOC entry 7768 (class 2604 OID 64147) -- Name: mdl_workshopallocation_scheduled id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26128,7 +23139,6 @@ ALTER TABLE ONLY public.mdl_workshopallocation_scheduled ALTER COLUMN id SET DEF -- --- TOC entry 7770 (class 2604 OID 64148) -- Name: mdl_workshopeval_best_settings id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26136,7 +23146,6 @@ ALTER TABLE ONLY public.mdl_workshopeval_best_settings ALTER COLUMN id SET DEFAU -- --- TOC entry 7772 (class 2604 OID 64149) -- Name: mdl_workshopform_accumulative id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26144,7 +23153,6 @@ ALTER TABLE ONLY public.mdl_workshopform_accumulative ALTER COLUMN id SET DEFAUL -- --- TOC entry 7776 (class 2604 OID 64150) -- Name: mdl_workshopform_comments id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26152,7 +23160,6 @@ ALTER TABLE ONLY public.mdl_workshopform_comments ALTER COLUMN id SET DEFAULT ne -- --- TOC entry 7779 (class 2604 OID 64151) -- Name: mdl_workshopform_numerrors id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26160,7 +23167,6 @@ ALTER TABLE ONLY public.mdl_workshopform_numerrors ALTER COLUMN id SET DEFAULT n -- --- TOC entry 7783 (class 2604 OID 64152) -- Name: mdl_workshopform_numerrors_map id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26168,7 +23174,6 @@ ALTER TABLE ONLY public.mdl_workshopform_numerrors_map ALTER COLUMN id SET DEFAU -- --- TOC entry 7784 (class 2604 OID 64153) -- Name: mdl_workshopform_rubric id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26176,7 +23181,6 @@ ALTER TABLE ONLY public.mdl_workshopform_rubric ALTER COLUMN id SET DEFAULT next -- --- TOC entry 7787 (class 2604 OID 64154) -- Name: mdl_workshopform_rubric_config id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26184,7 +23188,6 @@ ALTER TABLE ONLY public.mdl_workshopform_rubric_config ALTER COLUMN id SET DEFAU -- --- TOC entry 7789 (class 2604 OID 64155) -- Name: mdl_workshopform_rubric_levels id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -26192,8 +23195,6 @@ ALTER TABLE ONLY public.mdl_workshopform_rubric_levels ALTER COLUMN id SET DEFAU -- --- TOC entry 9670 (class 0 OID 58912) --- Dependencies: 185 -- Data for Name: mdl_analytics_indicator_calc; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26202,8 +23203,6 @@ COPY public.mdl_analytics_indicator_calc (id, starttime, endtime, contextid, sam -- --- TOC entry 11388 (class 0 OID 0) --- Dependencies: 186 -- Name: mdl_analytics_indicator_calc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26211,8 +23210,6 @@ SELECT pg_catalog.setval('public.mdl_analytics_indicator_calc_id_seq', 1, false) -- --- TOC entry 9672 (class 0 OID 58922) --- Dependencies: 187 -- Data for Name: mdl_analytics_models; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26226,8 +23223,6 @@ COPY public.mdl_analytics_models (id, enabled, trained, name, target, indicators -- --- TOC entry 11389 (class 0 OID 0) --- Dependencies: 188 -- Name: mdl_analytics_models_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26235,8 +23230,6 @@ SELECT pg_catalog.setval('public.mdl_analytics_models_id_seq', 5, true); -- --- TOC entry 9674 (class 0 OID 58933) --- Dependencies: 189 -- Data for Name: mdl_analytics_models_log; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26245,8 +23238,6 @@ COPY public.mdl_analytics_models_log (id, modelid, version, evaluationmode, targ -- --- TOC entry 11390 (class 0 OID 0) --- Dependencies: 190 -- Name: mdl_analytics_models_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26254,8 +23245,6 @@ SELECT pg_catalog.setval('public.mdl_analytics_models_log_id_seq', 1, false); -- --- TOC entry 9676 (class 0 OID 58944) --- Dependencies: 191 -- Data for Name: mdl_analytics_predict_samples; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26264,8 +23253,6 @@ COPY public.mdl_analytics_predict_samples (id, modelid, analysableid, timesplitt -- --- TOC entry 11391 (class 0 OID 0) --- Dependencies: 192 -- Name: mdl_analytics_predict_samples_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26273,8 +23260,6 @@ SELECT pg_catalog.setval('public.mdl_analytics_predict_samples_id_seq', 1, false -- --- TOC entry 9678 (class 0 OID 58955) --- Dependencies: 193 -- Data for Name: mdl_analytics_prediction_actions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26283,8 +23268,6 @@ COPY public.mdl_analytics_prediction_actions (id, predictionid, userid, actionna -- --- TOC entry 11392 (class 0 OID 0) --- Dependencies: 194 -- Name: mdl_analytics_prediction_actions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26292,8 +23275,6 @@ SELECT pg_catalog.setval('public.mdl_analytics_prediction_actions_id_seq', 1, fa -- --- TOC entry 9680 (class 0 OID 58961) --- Dependencies: 195 -- Data for Name: mdl_analytics_predictions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26302,8 +23283,6 @@ COPY public.mdl_analytics_predictions (id, modelid, contextid, sampleid, rangein -- --- TOC entry 11393 (class 0 OID 0) --- Dependencies: 196 -- Name: mdl_analytics_predictions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26311,8 +23290,6 @@ SELECT pg_catalog.setval('public.mdl_analytics_predictions_id_seq', 1, false); -- --- TOC entry 9682 (class 0 OID 58970) --- Dependencies: 197 -- Data for Name: mdl_analytics_train_samples; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26321,8 +23298,6 @@ COPY public.mdl_analytics_train_samples (id, modelid, analysableid, timesplittin -- --- TOC entry 11394 (class 0 OID 0) --- Dependencies: 198 -- Name: mdl_analytics_train_samples_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26330,8 +23305,6 @@ SELECT pg_catalog.setval('public.mdl_analytics_train_samples_id_seq', 1, false); -- --- TOC entry 9684 (class 0 OID 58980) --- Dependencies: 199 -- Data for Name: mdl_analytics_used_analysables; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26340,8 +23313,6 @@ COPY public.mdl_analytics_used_analysables (id, modelid, action, analysableid, f -- --- TOC entry 11395 (class 0 OID 0) --- Dependencies: 200 -- Name: mdl_analytics_used_analysables_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26349,8 +23320,6 @@ SELECT pg_catalog.setval('public.mdl_analytics_used_analysables_id_seq', 1, fals -- --- TOC entry 9686 (class 0 OID 58986) --- Dependencies: 201 -- Data for Name: mdl_analytics_used_files; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26359,8 +23328,6 @@ COPY public.mdl_analytics_used_files (id, modelid, fileid, action, "time") FROM -- --- TOC entry 11396 (class 0 OID 0) --- Dependencies: 202 -- Name: mdl_analytics_used_files_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26368,8 +23335,6 @@ SELECT pg_catalog.setval('public.mdl_analytics_used_files_id_seq', 1, false); -- --- TOC entry 9688 (class 0 OID 58995) --- Dependencies: 203 -- Data for Name: mdl_assign; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26378,8 +23343,6 @@ COPY public.mdl_assign (id, course, name, intro, introformat, alwaysshowdescript -- --- TOC entry 9689 (class 0 OID 59029) --- Dependencies: 204 -- Data for Name: mdl_assign_grades; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26388,8 +23351,6 @@ COPY public.mdl_assign_grades (id, assignment, userid, timecreated, timemodified -- --- TOC entry 11397 (class 0 OID 0) --- Dependencies: 205 -- Name: mdl_assign_grades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26397,8 +23358,6 @@ SELECT pg_catalog.setval('public.mdl_assign_grades_id_seq', 1, false); -- --- TOC entry 11398 (class 0 OID 0) --- Dependencies: 206 -- Name: mdl_assign_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26406,8 +23365,6 @@ SELECT pg_catalog.setval('public.mdl_assign_id_seq', 1, false); -- --- TOC entry 9692 (class 0 OID 59043) --- Dependencies: 207 -- Data for Name: mdl_assign_overrides; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26416,8 +23373,6 @@ COPY public.mdl_assign_overrides (id, assignid, groupid, userid, sortorder, allo -- --- TOC entry 11399 (class 0 OID 0) --- Dependencies: 208 -- Name: mdl_assign_overrides_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26425,8 +23380,6 @@ SELECT pg_catalog.setval('public.mdl_assign_overrides_id_seq', 1, false); -- --- TOC entry 9694 (class 0 OID 59049) --- Dependencies: 209 -- Data for Name: mdl_assign_plugin_config; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26435,8 +23388,6 @@ COPY public.mdl_assign_plugin_config (id, assignment, plugin, subtype, name, val -- --- TOC entry 11400 (class 0 OID 0) --- Dependencies: 210 -- Name: mdl_assign_plugin_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26444,8 +23395,6 @@ SELECT pg_catalog.setval('public.mdl_assign_plugin_config_id_seq', 1, false); -- --- TOC entry 9696 (class 0 OID 59061) --- Dependencies: 211 -- Data for Name: mdl_assign_submission; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26454,8 +23403,6 @@ COPY public.mdl_assign_submission (id, assignment, userid, timecreated, timemodi -- --- TOC entry 11401 (class 0 OID 0) --- Dependencies: 212 -- Name: mdl_assign_submission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26463,8 +23410,6 @@ SELECT pg_catalog.setval('public.mdl_assign_submission_id_seq', 1, false); -- --- TOC entry 9698 (class 0 OID 59073) --- Dependencies: 213 -- Data for Name: mdl_assign_user_flags; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26473,8 +23418,6 @@ COPY public.mdl_assign_user_flags (id, userid, assignment, locked, mailed, exten -- --- TOC entry 11402 (class 0 OID 0) --- Dependencies: 214 -- Name: mdl_assign_user_flags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26482,8 +23425,6 @@ SELECT pg_catalog.setval('public.mdl_assign_user_flags_id_seq', 1, false); -- --- TOC entry 9700 (class 0 OID 59084) --- Dependencies: 215 -- Data for Name: mdl_assign_user_mapping; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26492,8 +23433,6 @@ COPY public.mdl_assign_user_mapping (id, assignment, userid) FROM stdin; -- --- TOC entry 11403 (class 0 OID 0) --- Dependencies: 216 -- Name: mdl_assign_user_mapping_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26501,8 +23440,6 @@ SELECT pg_catalog.setval('public.mdl_assign_user_mapping_id_seq', 1, false); -- --- TOC entry 9702 (class 0 OID 59091) --- Dependencies: 217 -- Data for Name: mdl_assignfeedback_comments; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26511,8 +23448,6 @@ COPY public.mdl_assignfeedback_comments (id, assignment, grade, commenttext, com -- --- TOC entry 11404 (class 0 OID 0) --- Dependencies: 218 -- Name: mdl_assignfeedback_comments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26520,8 +23455,6 @@ SELECT pg_catalog.setval('public.mdl_assignfeedback_comments_id_seq', 1, false); -- --- TOC entry 9704 (class 0 OID 59102) --- Dependencies: 219 -- Data for Name: mdl_assignfeedback_editpdf_annot; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26530,8 +23463,6 @@ COPY public.mdl_assignfeedback_editpdf_annot (id, gradeid, pageno, x, y, endx, e -- --- TOC entry 11405 (class 0 OID 0) --- Dependencies: 220 -- Name: mdl_assignfeedback_editpdf_annot_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26539,8 +23470,6 @@ SELECT pg_catalog.setval('public.mdl_assignfeedback_editpdf_annot_id_seq', 1, fa -- --- TOC entry 9706 (class 0 OID 59119) --- Dependencies: 221 -- Data for Name: mdl_assignfeedback_editpdf_cmnt; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26549,8 +23478,6 @@ COPY public.mdl_assignfeedback_editpdf_cmnt (id, gradeid, x, y, width, rawtext, -- --- TOC entry 11406 (class 0 OID 0) --- Dependencies: 222 -- Name: mdl_assignfeedback_editpdf_cmnt_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26558,8 +23485,6 @@ SELECT pg_catalog.setval('public.mdl_assignfeedback_editpdf_cmnt_id_seq', 1, fal -- --- TOC entry 9708 (class 0 OID 59134) --- Dependencies: 223 -- Data for Name: mdl_assignfeedback_editpdf_queue; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26568,8 +23493,6 @@ COPY public.mdl_assignfeedback_editpdf_queue (id, submissionid, submissionattemp -- --- TOC entry 11407 (class 0 OID 0) --- Dependencies: 224 -- Name: mdl_assignfeedback_editpdf_queue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26577,8 +23500,6 @@ SELECT pg_catalog.setval('public.mdl_assignfeedback_editpdf_queue_id_seq', 1, fa -- --- TOC entry 9710 (class 0 OID 59140) --- Dependencies: 225 -- Data for Name: mdl_assignfeedback_editpdf_quick; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26587,8 +23508,6 @@ COPY public.mdl_assignfeedback_editpdf_quick (id, userid, rawtext, width, colour -- --- TOC entry 11408 (class 0 OID 0) --- Dependencies: 226 -- Name: mdl_assignfeedback_editpdf_quick_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26596,8 +23515,6 @@ SELECT pg_catalog.setval('public.mdl_assignfeedback_editpdf_quick_id_seq', 1, fa -- --- TOC entry 9712 (class 0 OID 59151) --- Dependencies: 227 -- Data for Name: mdl_assignfeedback_editpdf_rot; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26606,8 +23523,6 @@ COPY public.mdl_assignfeedback_editpdf_rot (id, gradeid, pageno, pathnamehash, i -- --- TOC entry 11409 (class 0 OID 0) --- Dependencies: 228 -- Name: mdl_assignfeedback_editpdf_rot_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26615,8 +23530,6 @@ SELECT pg_catalog.setval('public.mdl_assignfeedback_editpdf_rot_id_seq', 1, fals -- --- TOC entry 9714 (class 0 OID 59163) --- Dependencies: 229 -- Data for Name: mdl_assignfeedback_file; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26625,8 +23538,6 @@ COPY public.mdl_assignfeedback_file (id, assignment, grade, numfiles) FROM stdin -- --- TOC entry 11410 (class 0 OID 0) --- Dependencies: 230 -- Name: mdl_assignfeedback_file_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26634,8 +23545,6 @@ SELECT pg_catalog.setval('public.mdl_assignfeedback_file_id_seq', 1, false); -- --- TOC entry 9716 (class 0 OID 59171) --- Dependencies: 231 -- Data for Name: mdl_assignment; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26644,8 +23553,6 @@ COPY public.mdl_assignment (id, course, name, intro, introformat, assignmenttype -- --- TOC entry 11411 (class 0 OID 0) --- Dependencies: 232 -- Name: mdl_assignment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26653,8 +23560,6 @@ SELECT pg_catalog.setval('public.mdl_assignment_id_seq', 1, false); -- --- TOC entry 9718 (class 0 OID 59196) --- Dependencies: 233 -- Data for Name: mdl_assignment_submissions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26663,8 +23568,6 @@ COPY public.mdl_assignment_submissions (id, assignment, userid, timecreated, tim -- --- TOC entry 11412 (class 0 OID 0) --- Dependencies: 234 -- Name: mdl_assignment_submissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26672,8 +23575,6 @@ SELECT pg_catalog.setval('public.mdl_assignment_submissions_id_seq', 1, false); -- --- TOC entry 9720 (class 0 OID 59214) --- Dependencies: 235 -- Data for Name: mdl_assignment_upgrade; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26682,8 +23583,6 @@ COPY public.mdl_assignment_upgrade (id, oldcmid, oldinstance, newcmid, newinstan -- --- TOC entry 11413 (class 0 OID 0) --- Dependencies: 236 -- Name: mdl_assignment_upgrade_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26691,8 +23590,6 @@ SELECT pg_catalog.setval('public.mdl_assignment_upgrade_id_seq', 1, false); -- --- TOC entry 9722 (class 0 OID 59224) --- Dependencies: 237 -- Data for Name: mdl_assignsubmission_file; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26701,8 +23598,6 @@ COPY public.mdl_assignsubmission_file (id, assignment, submission, numfiles) FRO -- --- TOC entry 11414 (class 0 OID 0) --- Dependencies: 238 -- Name: mdl_assignsubmission_file_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26710,8 +23605,6 @@ SELECT pg_catalog.setval('public.mdl_assignsubmission_file_id_seq', 1, false); -- --- TOC entry 9724 (class 0 OID 59232) --- Dependencies: 239 -- Data for Name: mdl_assignsubmission_onlinetext; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26720,8 +23613,6 @@ COPY public.mdl_assignsubmission_onlinetext (id, assignment, submission, onlinet -- --- TOC entry 11415 (class 0 OID 0) --- Dependencies: 240 -- Name: mdl_assignsubmission_onlinetext_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26729,8 +23620,6 @@ SELECT pg_catalog.setval('public.mdl_assignsubmission_onlinetext_id_seq', 1, fal -- --- TOC entry 9726 (class 0 OID 59243) --- Dependencies: 241 -- Data for Name: mdl_auth_oauth2_linked_login; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26739,8 +23628,6 @@ COPY public.mdl_auth_oauth2_linked_login (id, timecreated, timemodified, usermod -- --- TOC entry 11416 (class 0 OID 0) --- Dependencies: 242 -- Name: mdl_auth_oauth2_linked_login_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26748,8 +23635,6 @@ SELECT pg_catalog.setval('public.mdl_auth_oauth2_linked_login_id_seq', 1, false) -- --- TOC entry 9728 (class 0 OID 59253) --- Dependencies: 243 -- Data for Name: mdl_backup_controllers; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26758,8 +23643,6 @@ COPY public.mdl_backup_controllers (id, backupid, operation, type, itemid, forma -- --- TOC entry 11417 (class 0 OID 0) --- Dependencies: 244 -- Name: mdl_backup_controllers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26767,8 +23650,6 @@ SELECT pg_catalog.setval('public.mdl_backup_controllers_id_seq', 1, false); -- --- TOC entry 9730 (class 0 OID 59267) --- Dependencies: 245 -- Data for Name: mdl_backup_courses; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26777,8 +23658,6 @@ COPY public.mdl_backup_courses (id, courseid, laststarttime, lastendtime, lastst -- --- TOC entry 11418 (class 0 OID 0) --- Dependencies: 246 -- Name: mdl_backup_courses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26786,8 +23665,6 @@ SELECT pg_catalog.setval('public.mdl_backup_courses_id_seq', 1, false); -- --- TOC entry 9732 (class 0 OID 59277) --- Dependencies: 247 -- Data for Name: mdl_backup_logs; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26796,8 +23673,6 @@ COPY public.mdl_backup_logs (id, backupid, loglevel, message, timecreated) FROM -- --- TOC entry 11419 (class 0 OID 0) --- Dependencies: 248 -- Name: mdl_backup_logs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26805,8 +23680,6 @@ SELECT pg_catalog.setval('public.mdl_backup_logs_id_seq', 1, false); -- --- TOC entry 9734 (class 0 OID 59286) --- Dependencies: 249 -- Data for Name: mdl_badge; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26815,8 +23688,6 @@ COPY public.mdl_badge (id, name, description, timecreated, timemodified, usercre -- --- TOC entry 9735 (class 0 OID 59301) --- Dependencies: 250 -- Data for Name: mdl_badge_alignment; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26825,8 +23696,6 @@ COPY public.mdl_badge_alignment (id, badgeid, targetname, targeturl, targetdescr -- --- TOC entry 11420 (class 0 OID 0) --- Dependencies: 251 -- Name: mdl_badge_alignment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26834,8 +23703,6 @@ SELECT pg_catalog.setval('public.mdl_badge_alignment_id_seq', 1, false); -- --- TOC entry 9737 (class 0 OID 59312) --- Dependencies: 252 -- Data for Name: mdl_badge_backpack; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26844,8 +23711,6 @@ COPY public.mdl_badge_backpack (id, userid, email, backpackuid, autosync, passwo -- --- TOC entry 11421 (class 0 OID 0) --- Dependencies: 253 -- Name: mdl_badge_backpack_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26853,8 +23718,6 @@ SELECT pg_catalog.setval('public.mdl_badge_backpack_id_seq', 1, false); -- --- TOC entry 9739 (class 0 OID 59320) --- Dependencies: 254 -- Data for Name: mdl_badge_backpack_oauth2; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26863,8 +23726,6 @@ COPY public.mdl_badge_backpack_oauth2 (id, usermodified, timecreated, timemodifi -- --- TOC entry 11422 (class 0 OID 0) --- Dependencies: 255 -- Name: mdl_badge_backpack_oauth2_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26872,8 +23733,6 @@ SELECT pg_catalog.setval('public.mdl_badge_backpack_oauth2_id_seq', 1, false); -- --- TOC entry 9741 (class 0 OID 59331) --- Dependencies: 256 -- Data for Name: mdl_badge_criteria; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26882,8 +23741,6 @@ COPY public.mdl_badge_criteria (id, badgeid, criteriatype, method, description, -- --- TOC entry 11423 (class 0 OID 0) --- Dependencies: 257 -- Name: mdl_badge_criteria_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26891,8 +23748,6 @@ SELECT pg_catalog.setval('public.mdl_badge_criteria_id_seq', 1, false); -- --- TOC entry 9743 (class 0 OID 59342) --- Dependencies: 258 -- Data for Name: mdl_badge_criteria_met; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26901,8 +23756,6 @@ COPY public.mdl_badge_criteria_met (id, issuedid, critid, userid, datemet) FROM -- --- TOC entry 11424 (class 0 OID 0) --- Dependencies: 259 -- Name: mdl_badge_criteria_met_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26910,8 +23763,6 @@ SELECT pg_catalog.setval('public.mdl_badge_criteria_met_id_seq', 1, false); -- --- TOC entry 9745 (class 0 OID 59347) --- Dependencies: 260 -- Data for Name: mdl_badge_criteria_param; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26920,8 +23771,6 @@ COPY public.mdl_badge_criteria_param (id, critid, name, value) FROM stdin; -- --- TOC entry 11425 (class 0 OID 0) --- Dependencies: 261 -- Name: mdl_badge_criteria_param_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26929,8 +23778,6 @@ SELECT pg_catalog.setval('public.mdl_badge_criteria_param_id_seq', 1, false); -- --- TOC entry 9747 (class 0 OID 59356) --- Dependencies: 262 -- Data for Name: mdl_badge_endorsement; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26939,8 +23786,6 @@ COPY public.mdl_badge_endorsement (id, badgeid, issuername, issuerurl, issuerema -- --- TOC entry 11426 (class 0 OID 0) --- Dependencies: 263 -- Name: mdl_badge_endorsement_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26948,8 +23793,6 @@ SELECT pg_catalog.setval('public.mdl_badge_endorsement_id_seq', 1, false); -- --- TOC entry 9749 (class 0 OID 59369) --- Dependencies: 264 -- Data for Name: mdl_badge_external; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26958,8 +23801,6 @@ COPY public.mdl_badge_external (id, backpackid, collectionid, entityid, assertio -- --- TOC entry 9750 (class 0 OID 59375) --- Dependencies: 265 -- Data for Name: mdl_badge_external_backpack; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26969,8 +23810,6 @@ COPY public.mdl_badge_external_backpack (id, backpackapiurl, backpackweburl, api -- --- TOC entry 11427 (class 0 OID 0) --- Dependencies: 266 -- Name: mdl_badge_external_backpack_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26978,8 +23817,6 @@ SELECT pg_catalog.setval('public.mdl_badge_external_backpack_id_seq', 1, true); -- --- TOC entry 11428 (class 0 OID 0) --- Dependencies: 267 -- Name: mdl_badge_external_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -26987,8 +23824,6 @@ SELECT pg_catalog.setval('public.mdl_badge_external_id_seq', 1, false); -- --- TOC entry 9753 (class 0 OID 59389) --- Dependencies: 268 -- Data for Name: mdl_badge_external_identifier; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -26997,8 +23832,6 @@ COPY public.mdl_badge_external_identifier (id, sitebackpackid, internalid, exter -- --- TOC entry 11429 (class 0 OID 0) --- Dependencies: 269 -- Name: mdl_badge_external_identifier_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27006,8 +23839,6 @@ SELECT pg_catalog.setval('public.mdl_badge_external_identifier_id_seq', 1, false -- --- TOC entry 11430 (class 0 OID 0) --- Dependencies: 270 -- Name: mdl_badge_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27015,8 +23846,6 @@ SELECT pg_catalog.setval('public.mdl_badge_id_seq', 1, false); -- --- TOC entry 9756 (class 0 OID 59399) --- Dependencies: 271 -- Data for Name: mdl_badge_issued; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27025,8 +23854,6 @@ COPY public.mdl_badge_issued (id, badgeid, userid, uniquehash, dateissued, datee -- --- TOC entry 11431 (class 0 OID 0) --- Dependencies: 272 -- Name: mdl_badge_issued_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27034,8 +23861,6 @@ SELECT pg_catalog.setval('public.mdl_badge_issued_id_seq', 1, false); -- --- TOC entry 9758 (class 0 OID 59411) --- Dependencies: 273 -- Data for Name: mdl_badge_manual_award; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27044,8 +23869,6 @@ COPY public.mdl_badge_manual_award (id, badgeid, recipientid, issuerid, issuerro -- --- TOC entry 11432 (class 0 OID 0) --- Dependencies: 274 -- Name: mdl_badge_manual_award_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27053,8 +23876,6 @@ SELECT pg_catalog.setval('public.mdl_badge_manual_award_id_seq', 1, false); -- --- TOC entry 9760 (class 0 OID 59416) --- Dependencies: 275 -- Data for Name: mdl_badge_related; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27063,8 +23884,6 @@ COPY public.mdl_badge_related (id, badgeid, relatedbadgeid) FROM stdin; -- --- TOC entry 11433 (class 0 OID 0) --- Dependencies: 276 -- Name: mdl_badge_related_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27072,8 +23891,6 @@ SELECT pg_catalog.setval('public.mdl_badge_related_id_seq', 1, false); -- --- TOC entry 9762 (class 0 OID 59422) --- Dependencies: 277 -- Data for Name: mdl_block; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27125,8 +23942,6 @@ COPY public.mdl_block (id, name, cron, lastcron, visible) FROM stdin; -- --- TOC entry 11434 (class 0 OID 0) --- Dependencies: 278 -- Name: mdl_block_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27134,8 +23949,6 @@ SELECT pg_catalog.setval('public.mdl_block_id_seq', 43, true); -- --- TOC entry 9764 (class 0 OID 59431) --- Dependencies: 279 -- Data for Name: mdl_block_instances; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27163,8 +23976,6 @@ COPY public.mdl_block_instances (id, blockname, parentcontextid, showinsubcontex -- --- TOC entry 11435 (class 0 OID 0) --- Dependencies: 280 -- Name: mdl_block_instances_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27172,8 +23983,6 @@ SELECT pg_catalog.setval('public.mdl_block_instances_id_seq', 19, true); -- --- TOC entry 9766 (class 0 OID 59443) --- Dependencies: 281 -- Data for Name: mdl_block_positions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27182,8 +23991,6 @@ COPY public.mdl_block_positions (id, blockinstanceid, contextid, pagetype, subpa -- --- TOC entry 11436 (class 0 OID 0) --- Dependencies: 282 -- Name: mdl_block_positions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27191,8 +23998,6 @@ SELECT pg_catalog.setval('public.mdl_block_positions_id_seq', 1, false); -- --- TOC entry 9768 (class 0 OID 59451) --- Dependencies: 283 -- Data for Name: mdl_block_recent_activity; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27201,8 +24006,6 @@ COPY public.mdl_block_recent_activity (id, courseid, cmid, timecreated, userid, -- --- TOC entry 11437 (class 0 OID 0) --- Dependencies: 284 -- Name: mdl_block_recent_activity_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27210,8 +24013,6 @@ SELECT pg_catalog.setval('public.mdl_block_recent_activity_id_seq', 1, false); -- --- TOC entry 9770 (class 0 OID 59456) --- Dependencies: 285 -- Data for Name: mdl_block_recentlyaccesseditems; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27220,8 +24021,6 @@ COPY public.mdl_block_recentlyaccesseditems (id, courseid, cmid, userid, timeacc -- --- TOC entry 11438 (class 0 OID 0) --- Dependencies: 286 -- Name: mdl_block_recentlyaccesseditems_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27229,8 +24028,6 @@ SELECT pg_catalog.setval('public.mdl_block_recentlyaccesseditems_id_seq', 1, fal -- --- TOC entry 9772 (class 0 OID 59461) --- Dependencies: 287 -- Data for Name: mdl_block_rss_client; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27239,8 +24036,6 @@ COPY public.mdl_block_rss_client (id, userid, title, preferredtitle, description -- --- TOC entry 11439 (class 0 OID 0) --- Dependencies: 288 -- Name: mdl_block_rss_client_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27248,8 +24043,6 @@ SELECT pg_catalog.setval('public.mdl_block_rss_client_id_seq', 1, false); -- --- TOC entry 9774 (class 0 OID 59475) --- Dependencies: 289 -- Data for Name: mdl_blog_association; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27258,8 +24051,6 @@ COPY public.mdl_blog_association (id, contextid, blogid) FROM stdin; -- --- TOC entry 11440 (class 0 OID 0) --- Dependencies: 290 -- Name: mdl_blog_association_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27267,8 +24058,6 @@ SELECT pg_catalog.setval('public.mdl_blog_association_id_seq', 1, false); -- --- TOC entry 9776 (class 0 OID 59480) --- Dependencies: 291 -- Data for Name: mdl_blog_external; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27277,8 +24066,6 @@ COPY public.mdl_blog_external (id, userid, name, description, url, filtertags, f -- --- TOC entry 11441 (class 0 OID 0) --- Dependencies: 292 -- Name: mdl_blog_external_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27286,8 +24073,6 @@ SELECT pg_catalog.setval('public.mdl_blog_external_id_seq', 1, false); -- --- TOC entry 9778 (class 0 OID 59491) --- Dependencies: 293 -- Data for Name: mdl_book; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27296,8 +24081,6 @@ COPY public.mdl_book (id, course, name, intro, introformat, numbering, navstyle, -- --- TOC entry 9779 (class 0 OID 59506) --- Dependencies: 294 -- Data for Name: mdl_book_chapters; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27306,8 +24089,6 @@ COPY public.mdl_book_chapters (id, bookid, pagenum, subchapter, title, content, -- --- TOC entry 11442 (class 0 OID 0) --- Dependencies: 295 -- Name: mdl_book_chapters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27315,8 +24096,6 @@ SELECT pg_catalog.setval('public.mdl_book_chapters_id_seq', 1, false); -- --- TOC entry 11443 (class 0 OID 0) --- Dependencies: 296 -- Name: mdl_book_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27324,8 +24103,6 @@ SELECT pg_catalog.setval('public.mdl_book_id_seq', 1, false); -- --- TOC entry 9782 (class 0 OID 59525) --- Dependencies: 297 -- Data for Name: mdl_cache_filters; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -27334,8 +24111,6 @@ COPY public.mdl_cache_filters (id, filter, version, md5key, rawtext, timemodifie -- --- TOC entry 11444 (class 0 OID 0) --- Dependencies: 298 -- Name: mdl_cache_filters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27343,19 +24118,15 @@ SELECT pg_catalog.setval('public.mdl_cache_filters_id_seq', 1, false); -- --- TOC entry 9784 (class 0 OID 59537) --- Dependencies: 299 -- Data for Name: mdl_cache_flags; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.mdl_cache_flags (id, flagtype, name, timemodified, value, expiry) FROM stdin; -1 userpreferenceschanged 2 1609884654 1 1609913454 +1 userpreferenceschanged 2 1612797602 1 1612826402 \. -- --- TOC entry 11445 (class 0 OID 0) --- Dependencies: 300 -- Name: mdl_cache_flags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -27363,8 +24134,6 @@ SELECT pg_catalog.setval('public.mdl_cache_flags_id_seq', 1, true); -- --- TOC entry 9786 (class 0 OID 59548) --- Dependencies: 301 -- Data for Name: mdl_capabilities; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28046,8 +24815,6 @@ COPY public.mdl_capabilities (id, name, captype, contextlevel, component, riskbi -- --- TOC entry 11446 (class 0 OID 0) --- Dependencies: 302 -- Name: mdl_capabilities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28055,8 +24822,6 @@ SELECT pg_catalog.setval('public.mdl_capabilities_id_seq', 673, true); -- --- TOC entry 9788 (class 0 OID 59558) --- Dependencies: 303 -- Data for Name: mdl_chat; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28065,8 +24830,6 @@ COPY public.mdl_chat (id, course, name, intro, introformat, keepdays, studentlog -- --- TOC entry 11447 (class 0 OID 0) --- Dependencies: 304 -- Name: mdl_chat_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28074,8 +24837,6 @@ SELECT pg_catalog.setval('public.mdl_chat_id_seq', 1, false); -- --- TOC entry 9790 (class 0 OID 59574) --- Dependencies: 305 -- Data for Name: mdl_chat_messages; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28084,8 +24845,6 @@ COPY public.mdl_chat_messages (id, chatid, userid, groupid, issystem, message, " -- --- TOC entry 9791 (class 0 OID 59585) --- Dependencies: 306 -- Data for Name: mdl_chat_messages_current; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28094,8 +24853,6 @@ COPY public.mdl_chat_messages_current (id, chatid, userid, groupid, issystem, me -- --- TOC entry 11448 (class 0 OID 0) --- Dependencies: 307 -- Name: mdl_chat_messages_current_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28103,8 +24860,6 @@ SELECT pg_catalog.setval('public.mdl_chat_messages_current_id_seq', 1, false); -- --- TOC entry 11449 (class 0 OID 0) --- Dependencies: 308 -- Name: mdl_chat_messages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28112,8 +24867,6 @@ SELECT pg_catalog.setval('public.mdl_chat_messages_id_seq', 1, false); -- --- TOC entry 9794 (class 0 OID 59600) --- Dependencies: 309 -- Data for Name: mdl_chat_users; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28122,8 +24875,6 @@ COPY public.mdl_chat_users (id, chatid, userid, groupid, version, ip, firstping, -- --- TOC entry 11450 (class 0 OID 0) --- Dependencies: 310 -- Name: mdl_chat_users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28131,8 +24882,6 @@ SELECT pg_catalog.setval('public.mdl_chat_users_id_seq', 1, false); -- --- TOC entry 9796 (class 0 OID 59616) --- Dependencies: 311 -- Data for Name: mdl_choice; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28141,8 +24890,6 @@ COPY public.mdl_choice (id, course, name, intro, introformat, publish, showresul -- --- TOC entry 9797 (class 0 OID 59638) --- Dependencies: 312 -- Data for Name: mdl_choice_answers; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28151,8 +24898,6 @@ COPY public.mdl_choice_answers (id, choiceid, userid, optionid, timemodified) FR -- --- TOC entry 11451 (class 0 OID 0) --- Dependencies: 313 -- Name: mdl_choice_answers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28160,8 +24905,6 @@ SELECT pg_catalog.setval('public.mdl_choice_answers_id_seq', 1, false); -- --- TOC entry 11452 (class 0 OID 0) --- Dependencies: 314 -- Name: mdl_choice_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28169,8 +24912,6 @@ SELECT pg_catalog.setval('public.mdl_choice_id_seq', 1, false); -- --- TOC entry 9800 (class 0 OID 59649) --- Dependencies: 315 -- Data for Name: mdl_choice_options; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28179,8 +24920,6 @@ COPY public.mdl_choice_options (id, choiceid, text, maxanswers, timemodified) FR -- --- TOC entry 11453 (class 0 OID 0) --- Dependencies: 316 -- Name: mdl_choice_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28188,8 +24927,6 @@ SELECT pg_catalog.setval('public.mdl_choice_options_id_seq', 1, false); -- --- TOC entry 9802 (class 0 OID 59660) --- Dependencies: 317 -- Data for Name: mdl_cohort; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28198,8 +24935,6 @@ COPY public.mdl_cohort (id, contextid, name, idnumber, description, descriptionf -- --- TOC entry 11454 (class 0 OID 0) --- Dependencies: 318 -- Name: mdl_cohort_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28207,8 +24942,6 @@ SELECT pg_catalog.setval('public.mdl_cohort_id_seq', 1, false); -- --- TOC entry 9804 (class 0 OID 59671) --- Dependencies: 319 -- Data for Name: mdl_cohort_members; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28217,8 +24950,6 @@ COPY public.mdl_cohort_members (id, cohortid, userid, timeadded) FROM stdin; -- --- TOC entry 11455 (class 0 OID 0) --- Dependencies: 320 -- Name: mdl_cohort_members_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28226,8 +24957,6 @@ SELECT pg_catalog.setval('public.mdl_cohort_members_id_seq', 1, false); -- --- TOC entry 9806 (class 0 OID 59679) --- Dependencies: 321 -- Data for Name: mdl_comments; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28236,8 +24965,6 @@ COPY public.mdl_comments (id, contextid, component, commentarea, itemid, content -- --- TOC entry 11456 (class 0 OID 0) --- Dependencies: 322 -- Name: mdl_comments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28245,8 +24972,6 @@ SELECT pg_catalog.setval('public.mdl_comments_id_seq', 1, false); -- --- TOC entry 9808 (class 0 OID 59689) --- Dependencies: 323 -- Data for Name: mdl_competency; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28255,8 +24980,6 @@ COPY public.mdl_competency (id, shortname, description, descriptionformat, idnum -- --- TOC entry 9809 (class 0 OID 59699) --- Dependencies: 324 -- Data for Name: mdl_competency_coursecomp; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28265,8 +24988,6 @@ COPY public.mdl_competency_coursecomp (id, courseid, competencyid, ruleoutcome, -- --- TOC entry 11457 (class 0 OID 0) --- Dependencies: 325 -- Name: mdl_competency_coursecomp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28274,8 +24995,6 @@ SELECT pg_catalog.setval('public.mdl_competency_coursecomp_id_seq', 1, false); -- --- TOC entry 9811 (class 0 OID 59704) --- Dependencies: 326 -- Data for Name: mdl_competency_coursecompsetting; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28284,8 +25003,6 @@ COPY public.mdl_competency_coursecompsetting (id, courseid, pushratingstouserpla -- --- TOC entry 11458 (class 0 OID 0) --- Dependencies: 327 -- Name: mdl_competency_coursecompsetting_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28293,8 +25010,6 @@ SELECT pg_catalog.setval('public.mdl_competency_coursecompsetting_id_seq', 1, fa -- --- TOC entry 9813 (class 0 OID 59709) --- Dependencies: 328 -- Data for Name: mdl_competency_evidence; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28303,8 +25018,6 @@ COPY public.mdl_competency_evidence (id, usercompetencyid, contextid, action, ac -- --- TOC entry 11459 (class 0 OID 0) --- Dependencies: 329 -- Name: mdl_competency_evidence_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28312,8 +25025,6 @@ SELECT pg_catalog.setval('public.mdl_competency_evidence_id_seq', 1, false); -- --- TOC entry 9815 (class 0 OID 59719) --- Dependencies: 330 -- Data for Name: mdl_competency_framework; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28322,8 +25033,6 @@ COPY public.mdl_competency_framework (id, shortname, contextid, idnumber, descri -- --- TOC entry 11460 (class 0 OID 0) --- Dependencies: 331 -- Name: mdl_competency_framework_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28331,8 +25040,6 @@ SELECT pg_catalog.setval('public.mdl_competency_framework_id_seq', 1, false); -- --- TOC entry 11461 (class 0 OID 0) --- Dependencies: 332 -- Name: mdl_competency_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28340,8 +25047,6 @@ SELECT pg_catalog.setval('public.mdl_competency_id_seq', 1, false); -- --- TOC entry 9818 (class 0 OID 59732) --- Dependencies: 333 -- Data for Name: mdl_competency_modulecomp; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28350,8 +25055,6 @@ COPY public.mdl_competency_modulecomp (id, cmid, timecreated, timemodified, user -- --- TOC entry 11462 (class 0 OID 0) --- Dependencies: 334 -- Name: mdl_competency_modulecomp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28359,8 +25062,6 @@ SELECT pg_catalog.setval('public.mdl_competency_modulecomp_id_seq', 1, false); -- --- TOC entry 9820 (class 0 OID 59737) --- Dependencies: 335 -- Data for Name: mdl_competency_plan; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28369,8 +25070,6 @@ COPY public.mdl_competency_plan (id, name, description, descriptionformat, useri -- --- TOC entry 11463 (class 0 OID 0) --- Dependencies: 336 -- Name: mdl_competency_plan_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28378,8 +25077,6 @@ SELECT pg_catalog.setval('public.mdl_competency_plan_id_seq', 1, false); -- --- TOC entry 9822 (class 0 OID 59749) --- Dependencies: 337 -- Data for Name: mdl_competency_plancomp; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28388,8 +25085,6 @@ COPY public.mdl_competency_plancomp (id, planid, competencyid, sortorder, timecr -- --- TOC entry 11464 (class 0 OID 0) --- Dependencies: 338 -- Name: mdl_competency_plancomp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28397,8 +25092,6 @@ SELECT pg_catalog.setval('public.mdl_competency_plancomp_id_seq', 1, false); -- --- TOC entry 9824 (class 0 OID 59754) --- Dependencies: 339 -- Data for Name: mdl_competency_relatedcomp; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28407,8 +25100,6 @@ COPY public.mdl_competency_relatedcomp (id, competencyid, relatedcompetencyid, t -- --- TOC entry 11465 (class 0 OID 0) --- Dependencies: 340 -- Name: mdl_competency_relatedcomp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28416,8 +25107,6 @@ SELECT pg_catalog.setval('public.mdl_competency_relatedcomp_id_seq', 1, false); -- --- TOC entry 9826 (class 0 OID 59759) --- Dependencies: 341 -- Data for Name: mdl_competency_template; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28426,8 +25115,6 @@ COPY public.mdl_competency_template (id, shortname, contextid, description, desc -- --- TOC entry 11466 (class 0 OID 0) --- Dependencies: 342 -- Name: mdl_competency_template_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28435,8 +25122,6 @@ SELECT pg_catalog.setval('public.mdl_competency_template_id_seq', 1, false); -- --- TOC entry 9828 (class 0 OID 59769) --- Dependencies: 343 -- Data for Name: mdl_competency_templatecohort; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28445,8 +25130,6 @@ COPY public.mdl_competency_templatecohort (id, templateid, cohortid, timecreated -- --- TOC entry 11467 (class 0 OID 0) --- Dependencies: 344 -- Name: mdl_competency_templatecohort_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28454,8 +25137,6 @@ SELECT pg_catalog.setval('public.mdl_competency_templatecohort_id_seq', 1, false -- --- TOC entry 9830 (class 0 OID 59774) --- Dependencies: 345 -- Data for Name: mdl_competency_templatecomp; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28464,8 +25145,6 @@ COPY public.mdl_competency_templatecomp (id, templateid, competencyid, timecreat -- --- TOC entry 11468 (class 0 OID 0) --- Dependencies: 346 -- Name: mdl_competency_templatecomp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28473,8 +25152,6 @@ SELECT pg_catalog.setval('public.mdl_competency_templatecomp_id_seq', 1, false); -- --- TOC entry 9832 (class 0 OID 59779) --- Dependencies: 347 -- Data for Name: mdl_competency_usercomp; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28483,8 +25160,6 @@ COPY public.mdl_competency_usercomp (id, userid, competencyid, status, revieweri -- --- TOC entry 11469 (class 0 OID 0) --- Dependencies: 348 -- Name: mdl_competency_usercomp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28492,8 +25167,6 @@ SELECT pg_catalog.setval('public.mdl_competency_usercomp_id_seq', 1, false); -- --- TOC entry 9834 (class 0 OID 59785) --- Dependencies: 349 -- Data for Name: mdl_competency_usercompcourse; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28502,8 +25175,6 @@ COPY public.mdl_competency_usercompcourse (id, userid, courseid, competencyid, p -- --- TOC entry 11470 (class 0 OID 0) --- Dependencies: 350 -- Name: mdl_competency_usercompcourse_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28511,8 +25182,6 @@ SELECT pg_catalog.setval('public.mdl_competency_usercompcourse_id_seq', 1, false -- --- TOC entry 9836 (class 0 OID 59790) --- Dependencies: 351 -- Data for Name: mdl_competency_usercompplan; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28521,8 +25190,6 @@ COPY public.mdl_competency_usercompplan (id, userid, competencyid, planid, profi -- --- TOC entry 11471 (class 0 OID 0) --- Dependencies: 352 -- Name: mdl_competency_usercompplan_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28530,8 +25197,6 @@ SELECT pg_catalog.setval('public.mdl_competency_usercompplan_id_seq', 1, false); -- --- TOC entry 9838 (class 0 OID 59795) --- Dependencies: 353 -- Data for Name: mdl_competency_userevidence; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28540,8 +25205,6 @@ COPY public.mdl_competency_userevidence (id, userid, name, description, descript -- --- TOC entry 11472 (class 0 OID 0) --- Dependencies: 354 -- Name: mdl_competency_userevidence_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28549,8 +25212,6 @@ SELECT pg_catalog.setval('public.mdl_competency_userevidence_id_seq', 1, false); -- --- TOC entry 9840 (class 0 OID 59804) --- Dependencies: 355 -- Data for Name: mdl_competency_userevidencecomp; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -28559,8 +25220,6 @@ COPY public.mdl_competency_userevidencecomp (id, userevidenceid, competencyid, t -- --- TOC entry 11473 (class 0 OID 0) --- Dependencies: 356 -- Name: mdl_competency_userevidencecomp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -28568,8 +25227,6 @@ SELECT pg_catalog.setval('public.mdl_competency_userevidencecomp_id_seq', 1, fal -- --- TOC entry 9842 (class 0 OID 59809) --- Dependencies: 357 -- Data for Name: mdl_config; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -29083,8 +25740,6 @@ COPY public.mdl_config (id, name, value) FROM stdin; -- --- TOC entry 11474 (class 0 OID 0) --- Dependencies: 358 -- Name: mdl_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -29092,8 +25747,6 @@ SELECT pg_catalog.setval('public.mdl_config_id_seq', 509, true); -- --- TOC entry 9844 (class 0 OID 59818) --- Dependencies: 359 -- Data for Name: mdl_config_log; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -30703,8 +27356,6 @@ COPY public.mdl_config_log (id, userid, timemodified, plugin, name, value, oldva -- --- TOC entry 11475 (class 0 OID 0) --- Dependencies: 360 -- Name: mdl_config_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -30712,8 +27363,6 @@ SELECT pg_catalog.setval('public.mdl_config_log_id_seq', 1601, true); -- --- TOC entry 9846 (class 0 OID 59827) --- Dependencies: 361 -- Data for Name: mdl_config_plugins; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32521,21 +29170,20 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 1879 tool_moodlenet enablemoodlenet 0 1880 tool_moodlenet defaultmoodlenetname MoodleNet Central 1881 tool_moodlenet defaultmoodlenet https://moodle.net +1884 enrol_ldap objectclass (objectClass=*) +1882 tool_task lastcronstart 1612797662 +1883 tool_task lastcroninterval 61 \. -- --- TOC entry 11476 (class 0 OID 0) --- Dependencies: 362 -- Name: mdl_config_plugins_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_config_plugins_id_seq', 1881, true); +SELECT pg_catalog.setval('public.mdl_config_plugins_id_seq', 1884, true); -- --- TOC entry 9848 (class 0 OID 59837) --- Dependencies: 363 -- Data for Name: mdl_contentbank_content; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32544,8 +29192,6 @@ COPY public.mdl_contentbank_content (id, name, contenttype, contextid, instancei -- --- TOC entry 11477 (class 0 OID 0) --- Dependencies: 364 -- Name: mdl_contentbank_content_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32553,8 +29199,6 @@ SELECT pg_catalog.setval('public.mdl_contentbank_content_id_seq', 1, false); -- --- TOC entry 9850 (class 0 OID 59849) --- Dependencies: 365 -- Data for Name: mdl_context; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32587,8 +29231,6 @@ COPY public.mdl_context (id, contextlevel, instanceid, path, depth, locked) FROM -- --- TOC entry 11478 (class 0 OID 0) --- Dependencies: 366 -- Name: mdl_context_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32596,8 +29238,6 @@ SELECT pg_catalog.setval('public.mdl_context_id_seq', 24, true); -- --- TOC entry 9852 (class 0 OID 59858) --- Dependencies: 367 -- Data for Name: mdl_context_temp; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32606,8 +29246,6 @@ COPY public.mdl_context_temp (id, path, depth, locked) FROM stdin; -- --- TOC entry 9853 (class 0 OID 59863) --- Dependencies: 368 -- Data for Name: mdl_course; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32617,8 +29255,6 @@ COPY public.mdl_course (id, category, sortorder, fullname, shortname, idnumber, -- --- TOC entry 9854 (class 0 OID 59899) --- Dependencies: 369 -- Data for Name: mdl_course_categories; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32628,8 +29264,6 @@ COPY public.mdl_course_categories (id, name, idnumber, description, descriptionf -- --- TOC entry 11479 (class 0 OID 0) --- Dependencies: 370 -- Name: mdl_course_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32637,8 +29271,6 @@ SELECT pg_catalog.setval('public.mdl_course_categories_id_seq', 1, true); -- --- TOC entry 9856 (class 0 OID 59917) --- Dependencies: 371 -- Data for Name: mdl_course_completion_aggr_methd; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32647,8 +29279,6 @@ COPY public.mdl_course_completion_aggr_methd (id, course, criteriatype, method, -- --- TOC entry 11480 (class 0 OID 0) --- Dependencies: 372 -- Name: mdl_course_completion_aggr_methd_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32656,8 +29286,6 @@ SELECT pg_catalog.setval('public.mdl_course_completion_aggr_methd_id_seq', 1, fa -- --- TOC entry 9858 (class 0 OID 59924) --- Dependencies: 373 -- Data for Name: mdl_course_completion_crit_compl; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32666,8 +29294,6 @@ COPY public.mdl_course_completion_crit_compl (id, userid, course, criteriaid, gr -- --- TOC entry 11481 (class 0 OID 0) --- Dependencies: 374 -- Name: mdl_course_completion_crit_compl_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32675,8 +29301,6 @@ SELECT pg_catalog.setval('public.mdl_course_completion_crit_compl_id_seq', 1, fa -- --- TOC entry 9860 (class 0 OID 59932) --- Dependencies: 375 -- Data for Name: mdl_course_completion_criteria; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32685,8 +29309,6 @@ COPY public.mdl_course_completion_criteria (id, course, criteriatype, module, mo -- --- TOC entry 11482 (class 0 OID 0) --- Dependencies: 376 -- Name: mdl_course_completion_criteria_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32694,8 +29316,6 @@ SELECT pg_catalog.setval('public.mdl_course_completion_criteria_id_seq', 1, fals -- --- TOC entry 9862 (class 0 OID 59939) --- Dependencies: 377 -- Data for Name: mdl_course_completion_defaults; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32704,8 +29324,6 @@ COPY public.mdl_course_completion_defaults (id, course, module, completion, comp -- --- TOC entry 11483 (class 0 OID 0) --- Dependencies: 378 -- Name: mdl_course_completion_defaults_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32713,8 +29331,6 @@ SELECT pg_catalog.setval('public.mdl_course_completion_defaults_id_seq', 1, fals -- --- TOC entry 9864 (class 0 OID 59951) --- Dependencies: 379 -- Data for Name: mdl_course_completions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32723,8 +29339,6 @@ COPY public.mdl_course_completions (id, userid, course, timeenrolled, timestarte -- --- TOC entry 11484 (class 0 OID 0) --- Dependencies: 380 -- Name: mdl_course_completions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32732,8 +29346,6 @@ SELECT pg_catalog.setval('public.mdl_course_completions_id_seq', 1, false); -- --- TOC entry 9866 (class 0 OID 59961) --- Dependencies: 381 -- Data for Name: mdl_course_format_options; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32743,8 +29355,6 @@ COPY public.mdl_course_format_options (id, courseid, format, sectionid, name, va -- --- TOC entry 11485 (class 0 OID 0) --- Dependencies: 382 -- Name: mdl_course_format_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32752,8 +29362,6 @@ SELECT pg_catalog.setval('public.mdl_course_format_options_id_seq', 1, true); -- --- TOC entry 11486 (class 0 OID 0) --- Dependencies: 383 -- Name: mdl_course_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32761,8 +29369,6 @@ SELECT pg_catalog.setval('public.mdl_course_id_seq', 2, false); -- --- TOC entry 9869 (class 0 OID 59974) --- Dependencies: 384 -- Data for Name: mdl_course_modules; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32771,8 +29377,6 @@ COPY public.mdl_course_modules (id, course, module, instance, section, idnumber, -- --- TOC entry 9870 (class 0 OID 59997) --- Dependencies: 385 -- Data for Name: mdl_course_modules_completion; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32781,8 +29385,6 @@ COPY public.mdl_course_modules_completion (id, coursemoduleid, userid, completio -- --- TOC entry 11487 (class 0 OID 0) --- Dependencies: 386 -- Name: mdl_course_modules_completion_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32790,8 +29392,6 @@ SELECT pg_catalog.setval('public.mdl_course_modules_completion_id_seq', 1, false -- --- TOC entry 11488 (class 0 OID 0) --- Dependencies: 387 -- Name: mdl_course_modules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32799,8 +29399,6 @@ SELECT pg_catalog.setval('public.mdl_course_modules_id_seq', 1, false); -- --- TOC entry 9873 (class 0 OID 60004) --- Dependencies: 388 -- Data for Name: mdl_course_published; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32809,8 +29407,6 @@ COPY public.mdl_course_published (id, huburl, courseid, timepublished, enrollabl -- --- TOC entry 11489 (class 0 OID 0) --- Dependencies: 389 -- Name: mdl_course_published_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32818,8 +29414,6 @@ SELECT pg_catalog.setval('public.mdl_course_published_id_seq', 1, false); -- --- TOC entry 9875 (class 0 OID 60011) --- Dependencies: 390 -- Data for Name: mdl_course_request; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32828,8 +29422,6 @@ COPY public.mdl_course_request (id, fullname, shortname, summary, summaryformat, -- --- TOC entry 11490 (class 0 OID 0) --- Dependencies: 391 -- Name: mdl_course_request_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32837,8 +29429,6 @@ SELECT pg_catalog.setval('public.mdl_course_request_id_seq', 1, false); -- --- TOC entry 9877 (class 0 OID 60025) --- Dependencies: 392 -- Data for Name: mdl_course_sections; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32847,8 +29437,6 @@ COPY public.mdl_course_sections (id, course, section, name, summary, summaryform -- --- TOC entry 11491 (class 0 OID 0) --- Dependencies: 393 -- Name: mdl_course_sections_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32856,8 +29444,6 @@ SELECT pg_catalog.setval('public.mdl_course_sections_id_seq', 1, false); -- --- TOC entry 9879 (class 0 OID 60038) --- Dependencies: 394 -- Data for Name: mdl_customfield_category; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32866,8 +29452,6 @@ COPY public.mdl_customfield_category (id, name, description, descriptionformat, -- --- TOC entry 11492 (class 0 OID 0) --- Dependencies: 395 -- Name: mdl_customfield_category_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32875,8 +29459,6 @@ SELECT pg_catalog.setval('public.mdl_customfield_category_id_seq', 1, false); -- --- TOC entry 9881 (class 0 OID 60050) --- Dependencies: 396 -- Data for Name: mdl_customfield_data; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32885,8 +29467,6 @@ COPY public.mdl_customfield_data (id, fieldid, instanceid, intvalue, decvalue, s -- --- TOC entry 11493 (class 0 OID 0) --- Dependencies: 397 -- Name: mdl_customfield_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32894,8 +29474,6 @@ SELECT pg_catalog.setval('public.mdl_customfield_data_id_seq', 1, false); -- --- TOC entry 9883 (class 0 OID 60058) --- Dependencies: 398 -- Data for Name: mdl_customfield_field; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32904,8 +29482,6 @@ COPY public.mdl_customfield_field (id, shortname, name, type, description, descr -- --- TOC entry 11494 (class 0 OID 0) --- Dependencies: 399 -- Name: mdl_customfield_field_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32913,8 +29489,6 @@ SELECT pg_catalog.setval('public.mdl_customfield_field_id_seq', 1, false); -- --- TOC entry 9885 (class 0 OID 60069) --- Dependencies: 400 -- Data for Name: mdl_data; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32923,8 +29497,6 @@ COPY public.mdl_data (id, course, name, intro, introformat, comments, timeavaila -- --- TOC entry 9886 (class 0 OID 60099) --- Dependencies: 401 -- Data for Name: mdl_data_content; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32933,8 +29505,6 @@ COPY public.mdl_data_content (id, fieldid, recordid, content, content1, content2 -- --- TOC entry 11495 (class 0 OID 0) --- Dependencies: 402 -- Name: mdl_data_content_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32942,8 +29512,6 @@ SELECT pg_catalog.setval('public.mdl_data_content_id_seq', 1, false); -- --- TOC entry 9888 (class 0 OID 60109) --- Dependencies: 403 -- Data for Name: mdl_data_fields; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32952,8 +29520,6 @@ COPY public.mdl_data_fields (id, dataid, type, name, description, required, para -- --- TOC entry 11496 (class 0 OID 0) --- Dependencies: 404 -- Name: mdl_data_fields_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32961,8 +29527,6 @@ SELECT pg_catalog.setval('public.mdl_data_fields_id_seq', 1, false); -- --- TOC entry 11497 (class 0 OID 0) --- Dependencies: 405 -- Name: mdl_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32970,8 +29534,6 @@ SELECT pg_catalog.setval('public.mdl_data_id_seq', 1, false); -- --- TOC entry 9891 (class 0 OID 60123) --- Dependencies: 406 -- Data for Name: mdl_data_records; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32980,8 +29542,6 @@ COPY public.mdl_data_records (id, userid, groupid, dataid, timecreated, timemodi -- --- TOC entry 11498 (class 0 OID 0) --- Dependencies: 407 -- Name: mdl_data_records_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -32989,27 +29549,22 @@ SELECT pg_catalog.setval('public.mdl_data_records_id_seq', 1, false); -- --- TOC entry 9893 (class 0 OID 60134) --- Dependencies: 408 -- Data for Name: mdl_editor_atto_autosave; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.mdl_editor_atto_autosave (id, elementid, contextid, pagehash, userid, drafttext, draftid, pageinstance, timemodified) FROM stdin; +2 id_s__maintenance_message 1 f2cc2fc32a3e3b36de110f255931e3e184dbdd5b 2 -1 yui_3_17_2_1_1612797635385_45 1612797635 \. -- --- TOC entry 11499 (class 0 OID 0) --- Dependencies: 409 -- Name: mdl_editor_atto_autosave_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_editor_atto_autosave_id_seq', 1, true); +SELECT pg_catalog.setval('public.mdl_editor_atto_autosave_id_seq', 2, true); -- --- TOC entry 9895 (class 0 OID 60146) --- Dependencies: 410 -- Data for Name: mdl_enrol; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33018,8 +29573,6 @@ COPY public.mdl_enrol (id, enrol, status, courseid, sortorder, name, enrolperiod -- --- TOC entry 9896 (class 0 OID 60164) --- Dependencies: 411 -- Data for Name: mdl_enrol_flatfile; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33028,8 +29581,6 @@ COPY public.mdl_enrol_flatfile (id, action, roleid, userid, courseid, timestart, -- --- TOC entry 11500 (class 0 OID 0) --- Dependencies: 412 -- Name: mdl_enrol_flatfile_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33037,8 +29588,6 @@ SELECT pg_catalog.setval('public.mdl_enrol_flatfile_id_seq', 1, false); -- --- TOC entry 11501 (class 0 OID 0) --- Dependencies: 413 -- Name: mdl_enrol_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33046,8 +29595,6 @@ SELECT pg_catalog.setval('public.mdl_enrol_id_seq', 1, false); -- --- TOC entry 9899 (class 0 OID 60175) --- Dependencies: 414 -- Data for Name: mdl_enrol_lti_lti2_consumer; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33056,8 +29603,6 @@ COPY public.mdl_enrol_lti_lti2_consumer (id, name, consumerkey256, consumerkey, -- --- TOC entry 11502 (class 0 OID 0) --- Dependencies: 415 -- Name: mdl_enrol_lti_lti2_consumer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33065,8 +29610,6 @@ SELECT pg_catalog.setval('public.mdl_enrol_lti_lti2_consumer_id_seq', 1, false); -- --- TOC entry 9901 (class 0 OID 60186) --- Dependencies: 416 -- Data for Name: mdl_enrol_lti_lti2_context; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33075,8 +29618,6 @@ COPY public.mdl_enrol_lti_lti2_context (id, consumerid, lticontextkey, type, set -- --- TOC entry 11503 (class 0 OID 0) --- Dependencies: 417 -- Name: mdl_enrol_lti_lti2_context_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33084,8 +29625,6 @@ SELECT pg_catalog.setval('public.mdl_enrol_lti_lti2_context_id_seq', 1, false); -- --- TOC entry 9903 (class 0 OID 60195) --- Dependencies: 418 -- Data for Name: mdl_enrol_lti_lti2_nonce; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33094,8 +29633,6 @@ COPY public.mdl_enrol_lti_lti2_nonce (id, consumerid, value, expires) FROM stdin -- --- TOC entry 11504 (class 0 OID 0) --- Dependencies: 419 -- Name: mdl_enrol_lti_lti2_nonce_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33103,8 +29640,6 @@ SELECT pg_catalog.setval('public.mdl_enrol_lti_lti2_nonce_id_seq', 1, false); -- --- TOC entry 9905 (class 0 OID 60201) --- Dependencies: 420 -- Data for Name: mdl_enrol_lti_lti2_resource_link; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33113,8 +29648,6 @@ COPY public.mdl_enrol_lti_lti2_resource_link (id, contextid, consumerid, ltireso -- --- TOC entry 11505 (class 0 OID 0) --- Dependencies: 421 -- Name: mdl_enrol_lti_lti2_resource_link_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33122,8 +29655,6 @@ SELECT pg_catalog.setval('public.mdl_enrol_lti_lti2_resource_link_id_seq', 1, fa -- --- TOC entry 9907 (class 0 OID 60210) --- Dependencies: 422 -- Data for Name: mdl_enrol_lti_lti2_share_key; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33132,8 +29663,6 @@ COPY public.mdl_enrol_lti_lti2_share_key (id, sharekey, resourcelinkid, autoappr -- --- TOC entry 11506 (class 0 OID 0) --- Dependencies: 423 -- Name: mdl_enrol_lti_lti2_share_key_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33141,8 +29670,6 @@ SELECT pg_catalog.setval('public.mdl_enrol_lti_lti2_share_key_id_seq', 1, false) -- --- TOC entry 9909 (class 0 OID 60216) --- Dependencies: 424 -- Data for Name: mdl_enrol_lti_lti2_tool_proxy; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33151,8 +29678,6 @@ COPY public.mdl_enrol_lti_lti2_tool_proxy (id, toolproxykey, consumerid, toolpro -- --- TOC entry 11507 (class 0 OID 0) --- Dependencies: 425 -- Name: mdl_enrol_lti_lti2_tool_proxy_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33160,8 +29685,6 @@ SELECT pg_catalog.setval('public.mdl_enrol_lti_lti2_tool_proxy_id_seq', 1, false -- --- TOC entry 9911 (class 0 OID 60225) --- Dependencies: 426 -- Data for Name: mdl_enrol_lti_lti2_user_result; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33170,8 +29693,6 @@ COPY public.mdl_enrol_lti_lti2_user_result (id, resourcelinkid, ltiuserkey, ltir -- --- TOC entry 11508 (class 0 OID 0) --- Dependencies: 427 -- Name: mdl_enrol_lti_lti2_user_result_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33179,8 +29700,6 @@ SELECT pg_catalog.setval('public.mdl_enrol_lti_lti2_user_result_id_seq', 1, fals -- --- TOC entry 9913 (class 0 OID 60235) --- Dependencies: 428 -- Data for Name: mdl_enrol_lti_tool_consumer_map; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33189,8 +29708,6 @@ COPY public.mdl_enrol_lti_tool_consumer_map (id, toolid, consumerid) FROM stdin; -- --- TOC entry 11509 (class 0 OID 0) --- Dependencies: 429 -- Name: mdl_enrol_lti_tool_consumer_map_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33198,8 +29715,6 @@ SELECT pg_catalog.setval('public.mdl_enrol_lti_tool_consumer_map_id_seq', 1, fal -- --- TOC entry 9915 (class 0 OID 60240) --- Dependencies: 430 -- Data for Name: mdl_enrol_lti_tools; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33208,8 +29723,6 @@ COPY public.mdl_enrol_lti_tools (id, enrolid, contextid, institution, lang, time -- --- TOC entry 11510 (class 0 OID 0) --- Dependencies: 431 -- Name: mdl_enrol_lti_tools_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33217,8 +29730,6 @@ SELECT pg_catalog.setval('public.mdl_enrol_lti_tools_id_seq', 1, false); -- --- TOC entry 9917 (class 0 OID 60259) --- Dependencies: 432 -- Data for Name: mdl_enrol_lti_users; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33227,8 +29738,6 @@ COPY public.mdl_enrol_lti_users (id, userid, toolid, serviceurl, sourceid, consu -- --- TOC entry 11511 (class 0 OID 0) --- Dependencies: 433 -- Name: mdl_enrol_lti_users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33236,8 +29745,6 @@ SELECT pg_catalog.setval('public.mdl_enrol_lti_users_id_seq', 1, false); -- --- TOC entry 9919 (class 0 OID 60267) --- Dependencies: 434 -- Data for Name: mdl_enrol_paypal; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33246,8 +29753,6 @@ COPY public.mdl_enrol_paypal (id, business, receiver_email, receiver_id, item_na -- --- TOC entry 11512 (class 0 OID 0) --- Dependencies: 435 -- Name: mdl_enrol_paypal_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33255,8 +29760,6 @@ SELECT pg_catalog.setval('public.mdl_enrol_paypal_id_seq', 1, false); -- --- TOC entry 9921 (class 0 OID 60295) --- Dependencies: 436 -- Data for Name: mdl_event; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33265,8 +29768,6 @@ COPY public.mdl_event (id, name, description, format, categoryid, courseid, grou -- --- TOC entry 11513 (class 0 OID 0) --- Dependencies: 437 -- Name: mdl_event_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33274,8 +29775,6 @@ SELECT pg_catalog.setval('public.mdl_event_id_seq', 1, false); -- --- TOC entry 9923 (class 0 OID 60319) --- Dependencies: 438 -- Data for Name: mdl_event_subscriptions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33284,8 +29783,6 @@ COPY public.mdl_event_subscriptions (id, url, categoryid, courseid, groupid, use -- --- TOC entry 11514 (class 0 OID 0) --- Dependencies: 439 -- Name: mdl_event_subscriptions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33293,8 +29790,6 @@ SELECT pg_catalog.setval('public.mdl_event_subscriptions_id_seq', 1, false); -- --- TOC entry 9925 (class 0 OID 60335) --- Dependencies: 440 -- Data for Name: mdl_events_handlers; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33303,8 +29798,6 @@ COPY public.mdl_events_handlers (id, eventname, component, handlerfile, handlerf -- --- TOC entry 11515 (class 0 OID 0) --- Dependencies: 441 -- Name: mdl_events_handlers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33312,8 +29805,6 @@ SELECT pg_catalog.setval('public.mdl_events_handlers_id_seq', 1, false); -- --- TOC entry 9927 (class 0 OID 60348) --- Dependencies: 442 -- Data for Name: mdl_events_queue; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33322,8 +29813,6 @@ COPY public.mdl_events_queue (id, eventdata, stackdump, userid, timecreated) FRO -- --- TOC entry 9928 (class 0 OID 60354) --- Dependencies: 443 -- Data for Name: mdl_events_queue_handlers; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33332,8 +29821,6 @@ COPY public.mdl_events_queue_handlers (id, queuedeventid, handlerid, status, err -- --- TOC entry 11516 (class 0 OID 0) --- Dependencies: 444 -- Name: mdl_events_queue_handlers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33341,8 +29828,6 @@ SELECT pg_catalog.setval('public.mdl_events_queue_handlers_id_seq', 1, false); -- --- TOC entry 11517 (class 0 OID 0) --- Dependencies: 445 -- Name: mdl_events_queue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33350,8 +29835,6 @@ SELECT pg_catalog.setval('public.mdl_events_queue_id_seq', 1, false); -- --- TOC entry 9931 (class 0 OID 60364) --- Dependencies: 446 -- Data for Name: mdl_external_functions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33970,8 +30453,6 @@ COPY public.mdl_external_functions (id, name, classname, methodname, classpath, -- --- TOC entry 11518 (class 0 OID 0) --- Dependencies: 447 -- Name: mdl_external_functions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -33979,8 +30460,6 @@ SELECT pg_catalog.setval('public.mdl_external_functions_id_seq', 610, true); -- --- TOC entry 9933 (class 0 OID 60376) --- Dependencies: 448 -- Data for Name: mdl_external_services; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -33990,8 +30469,6 @@ COPY public.mdl_external_services (id, name, enabled, requiredcapability, restri -- --- TOC entry 9934 (class 0 OID 60385) --- Dependencies: 449 -- Data for Name: mdl_external_services_functions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34375,8 +30852,6 @@ COPY public.mdl_external_services_functions (id, externalserviceid, functionname -- --- TOC entry 11519 (class 0 OID 0) --- Dependencies: 450 -- Name: mdl_external_services_functions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34384,8 +30859,6 @@ SELECT pg_catalog.setval('public.mdl_external_services_functions_id_seq', 375, t -- --- TOC entry 11520 (class 0 OID 0) --- Dependencies: 451 -- Name: mdl_external_services_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34393,8 +30866,6 @@ SELECT pg_catalog.setval('public.mdl_external_services_id_seq', 1, true); -- --- TOC entry 9937 (class 0 OID 60393) --- Dependencies: 452 -- Data for Name: mdl_external_services_users; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34403,8 +30874,6 @@ COPY public.mdl_external_services_users (id, externalserviceid, userid, iprestri -- --- TOC entry 11521 (class 0 OID 0) --- Dependencies: 453 -- Name: mdl_external_services_users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34412,8 +30881,6 @@ SELECT pg_catalog.setval('public.mdl_external_services_users_id_seq', 1, false); -- --- TOC entry 9939 (class 0 OID 60398) --- Dependencies: 454 -- Data for Name: mdl_external_tokens; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34422,8 +30889,6 @@ COPY public.mdl_external_tokens (id, token, privatetoken, tokentype, userid, ext -- --- TOC entry 11522 (class 0 OID 0) --- Dependencies: 455 -- Name: mdl_external_tokens_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34431,8 +30896,6 @@ SELECT pg_catalog.setval('public.mdl_external_tokens_id_seq', 1, false); -- --- TOC entry 9941 (class 0 OID 60408) --- Dependencies: 456 -- Data for Name: mdl_favourite; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34441,8 +30904,6 @@ COPY public.mdl_favourite (id, component, itemtype, itemid, contextid, userid, o -- --- TOC entry 11523 (class 0 OID 0) --- Dependencies: 457 -- Name: mdl_favourite_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34450,8 +30911,6 @@ SELECT pg_catalog.setval('public.mdl_favourite_id_seq', 1, false); -- --- TOC entry 9943 (class 0 OID 60415) --- Dependencies: 458 -- Data for Name: mdl_feedback; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34460,8 +30919,6 @@ COPY public.mdl_feedback (id, course, name, intro, introformat, anonymous, email -- --- TOC entry 9944 (class 0 OID 60435) --- Dependencies: 459 -- Data for Name: mdl_feedback_completed; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34470,8 +30927,6 @@ COPY public.mdl_feedback_completed (id, feedback, userid, timemodified, random_r -- --- TOC entry 11524 (class 0 OID 0) --- Dependencies: 460 -- Name: mdl_feedback_completed_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34479,8 +30934,6 @@ SELECT pg_catalog.setval('public.mdl_feedback_completed_id_seq', 1, false); -- --- TOC entry 9946 (class 0 OID 60446) --- Dependencies: 461 -- Data for Name: mdl_feedback_completedtmp; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34489,8 +30942,6 @@ COPY public.mdl_feedback_completedtmp (id, feedback, userid, guestid, timemodifi -- --- TOC entry 11525 (class 0 OID 0) --- Dependencies: 462 -- Name: mdl_feedback_completedtmp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34498,8 +30949,6 @@ SELECT pg_catalog.setval('public.mdl_feedback_completedtmp_id_seq', 1, false); -- --- TOC entry 11526 (class 0 OID 0) --- Dependencies: 463 -- Name: mdl_feedback_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34507,8 +30956,6 @@ SELECT pg_catalog.setval('public.mdl_feedback_id_seq', 1, false); -- --- TOC entry 9949 (class 0 OID 60460) --- Dependencies: 464 -- Data for Name: mdl_feedback_item; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34517,8 +30964,6 @@ COPY public.mdl_feedback_item (id, feedback, template, name, label, presentation -- --- TOC entry 11527 (class 0 OID 0) --- Dependencies: 465 -- Name: mdl_feedback_item_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34526,8 +30971,6 @@ SELECT pg_catalog.setval('public.mdl_feedback_item_id_seq', 1, false); -- --- TOC entry 9951 (class 0 OID 60479) --- Dependencies: 466 -- Data for Name: mdl_feedback_sitecourse_map; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34536,8 +30979,6 @@ COPY public.mdl_feedback_sitecourse_map (id, feedbackid, courseid) FROM stdin; -- --- TOC entry 11528 (class 0 OID 0) --- Dependencies: 467 -- Name: mdl_feedback_sitecourse_map_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34545,8 +30986,6 @@ SELECT pg_catalog.setval('public.mdl_feedback_sitecourse_map_id_seq', 1, false); -- --- TOC entry 9953 (class 0 OID 60486) --- Dependencies: 468 -- Data for Name: mdl_feedback_template; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34555,8 +30994,6 @@ COPY public.mdl_feedback_template (id, course, ispublic, name) FROM stdin; -- --- TOC entry 11529 (class 0 OID 0) --- Dependencies: 469 -- Name: mdl_feedback_template_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34564,8 +31001,6 @@ SELECT pg_catalog.setval('public.mdl_feedback_template_id_seq', 1, false); -- --- TOC entry 9955 (class 0 OID 60494) --- Dependencies: 470 -- Data for Name: mdl_feedback_value; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34574,8 +31009,6 @@ COPY public.mdl_feedback_value (id, course_id, item, completed, tmp_completed, v -- --- TOC entry 11530 (class 0 OID 0) --- Dependencies: 471 -- Name: mdl_feedback_value_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34583,8 +31016,6 @@ SELECT pg_catalog.setval('public.mdl_feedback_value_id_seq', 1, false); -- --- TOC entry 9957 (class 0 OID 60506) --- Dependencies: 472 -- Data for Name: mdl_feedback_valuetmp; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34593,8 +31024,6 @@ COPY public.mdl_feedback_valuetmp (id, course_id, item, completed, tmp_completed -- --- TOC entry 11531 (class 0 OID 0) --- Dependencies: 473 -- Name: mdl_feedback_valuetmp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34602,8 +31031,6 @@ SELECT pg_catalog.setval('public.mdl_feedback_valuetmp_id_seq', 1, false); -- --- TOC entry 9959 (class 0 OID 60518) --- Dependencies: 474 -- Data for Name: mdl_file_conversion; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34612,8 +31039,6 @@ COPY public.mdl_file_conversion (id, usermodified, timecreated, timemodified, so -- --- TOC entry 11532 (class 0 OID 0) --- Dependencies: 475 -- Name: mdl_file_conversion_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34621,8 +31046,6 @@ SELECT pg_catalog.setval('public.mdl_file_conversion_id_seq', 1, false); -- --- TOC entry 9961 (class 0 OID 60528) --- Dependencies: 476 -- Data for Name: mdl_files; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34636,8 +31059,6 @@ COPY public.mdl_files (id, contenthash, pathnamehash, contextid, component, file -- --- TOC entry 11533 (class 0 OID 0) --- Dependencies: 477 -- Name: mdl_files_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34645,8 +31066,6 @@ SELECT pg_catalog.setval('public.mdl_files_id_seq', 5, true); -- --- TOC entry 9963 (class 0 OID 60544) --- Dependencies: 478 -- Data for Name: mdl_files_reference; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34655,8 +31074,6 @@ COPY public.mdl_files_reference (id, repositoryid, lastsync, reference, referenc -- --- TOC entry 11534 (class 0 OID 0) --- Dependencies: 479 -- Name: mdl_files_reference_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34664,8 +31081,6 @@ SELECT pg_catalog.setval('public.mdl_files_reference_id_seq', 1, false); -- --- TOC entry 9965 (class 0 OID 60553) --- Dependencies: 480 -- Data for Name: mdl_filter_active; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34680,8 +31095,6 @@ COPY public.mdl_filter_active (id, filter, contextid, active, sortorder) FROM st -- --- TOC entry 11535 (class 0 OID 0) --- Dependencies: 481 -- Name: mdl_filter_active_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34689,8 +31102,6 @@ SELECT pg_catalog.setval('public.mdl_filter_active_id_seq', 6, true); -- --- TOC entry 9967 (class 0 OID 60560) --- Dependencies: 482 -- Data for Name: mdl_filter_config; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34699,8 +31110,6 @@ COPY public.mdl_filter_config (id, filter, contextid, name, value) FROM stdin; -- --- TOC entry 11536 (class 0 OID 0) --- Dependencies: 483 -- Name: mdl_filter_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34708,8 +31117,6 @@ SELECT pg_catalog.setval('public.mdl_filter_config_id_seq', 1, false); -- --- TOC entry 9969 (class 0 OID 60570) --- Dependencies: 484 -- Data for Name: mdl_folder; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34718,8 +31125,6 @@ COPY public.mdl_folder (id, course, name, intro, introformat, revision, timemodi -- --- TOC entry 11537 (class 0 OID 0) --- Dependencies: 485 -- Name: mdl_folder_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34727,8 +31132,6 @@ SELECT pg_catalog.setval('public.mdl_folder_id_seq', 1, false); -- --- TOC entry 9971 (class 0 OID 60586) --- Dependencies: 486 -- Data for Name: mdl_forum; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34737,8 +31140,6 @@ COPY public.mdl_forum (id, course, type, name, intro, introformat, duedate, cuto -- --- TOC entry 9972 (class 0 OID 60619) --- Dependencies: 487 -- Data for Name: mdl_forum_digests; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34747,8 +31148,6 @@ COPY public.mdl_forum_digests (id, userid, forum, maildigest) FROM stdin; -- --- TOC entry 11538 (class 0 OID 0) --- Dependencies: 488 -- Name: mdl_forum_digests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34756,8 +31155,6 @@ SELECT pg_catalog.setval('public.mdl_forum_digests_id_seq', 1, false); -- --- TOC entry 9974 (class 0 OID 60625) --- Dependencies: 489 -- Data for Name: mdl_forum_discussion_subs; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34766,8 +31163,6 @@ COPY public.mdl_forum_discussion_subs (id, forum, userid, discussion, preference -- --- TOC entry 11539 (class 0 OID 0) --- Dependencies: 490 -- Name: mdl_forum_discussion_subs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34775,8 +31170,6 @@ SELECT pg_catalog.setval('public.mdl_forum_discussion_subs_id_seq', 1, false); -- --- TOC entry 9976 (class 0 OID 60631) --- Dependencies: 491 -- Data for Name: mdl_forum_discussions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34785,8 +31178,6 @@ COPY public.mdl_forum_discussions (id, course, forum, name, firstpost, userid, g -- --- TOC entry 11540 (class 0 OID 0) --- Dependencies: 492 -- Name: mdl_forum_discussions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34794,8 +31185,6 @@ SELECT pg_catalog.setval('public.mdl_forum_discussions_id_seq', 1, false); -- --- TOC entry 9978 (class 0 OID 60649) --- Dependencies: 493 -- Data for Name: mdl_forum_grades; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34804,8 +31193,6 @@ COPY public.mdl_forum_grades (id, forum, itemnumber, userid, grade, timecreated, -- --- TOC entry 11541 (class 0 OID 0) --- Dependencies: 494 -- Name: mdl_forum_grades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34813,8 +31200,6 @@ SELECT pg_catalog.setval('public.mdl_forum_grades_id_seq', 1, false); -- --- TOC entry 11542 (class 0 OID 0) --- Dependencies: 495 -- Name: mdl_forum_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34822,8 +31207,6 @@ SELECT pg_catalog.setval('public.mdl_forum_id_seq', 1, false); -- --- TOC entry 9981 (class 0 OID 60656) --- Dependencies: 496 -- Data for Name: mdl_forum_posts; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34832,8 +31215,6 @@ COPY public.mdl_forum_posts (id, discussion, parent, userid, created, modified, -- --- TOC entry 11543 (class 0 OID 0) --- Dependencies: 497 -- Name: mdl_forum_posts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34841,8 +31222,6 @@ SELECT pg_catalog.setval('public.mdl_forum_posts_id_seq', 1, false); -- --- TOC entry 9983 (class 0 OID 60678) --- Dependencies: 498 -- Data for Name: mdl_forum_queue; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34851,8 +31230,6 @@ COPY public.mdl_forum_queue (id, userid, discussionid, postid, timemodified) FRO -- --- TOC entry 11544 (class 0 OID 0) --- Dependencies: 499 -- Name: mdl_forum_queue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34860,8 +31237,6 @@ SELECT pg_catalog.setval('public.mdl_forum_queue_id_seq', 1, false); -- --- TOC entry 9985 (class 0 OID 60687) --- Dependencies: 500 -- Data for Name: mdl_forum_read; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34870,8 +31245,6 @@ COPY public.mdl_forum_read (id, userid, forumid, discussionid, postid, firstread -- --- TOC entry 11545 (class 0 OID 0) --- Dependencies: 501 -- Name: mdl_forum_read_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34879,8 +31252,6 @@ SELECT pg_catalog.setval('public.mdl_forum_read_id_seq', 1, false); -- --- TOC entry 9987 (class 0 OID 60698) --- Dependencies: 502 -- Data for Name: mdl_forum_subscriptions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34889,8 +31260,6 @@ COPY public.mdl_forum_subscriptions (id, userid, forum) FROM stdin; -- --- TOC entry 11546 (class 0 OID 0) --- Dependencies: 503 -- Name: mdl_forum_subscriptions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34898,8 +31267,6 @@ SELECT pg_catalog.setval('public.mdl_forum_subscriptions_id_seq', 1, false); -- --- TOC entry 9989 (class 0 OID 60705) --- Dependencies: 504 -- Data for Name: mdl_forum_track_prefs; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34908,8 +31275,6 @@ COPY public.mdl_forum_track_prefs (id, userid, forumid) FROM stdin; -- --- TOC entry 11547 (class 0 OID 0) --- Dependencies: 505 -- Name: mdl_forum_track_prefs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34917,8 +31282,6 @@ SELECT pg_catalog.setval('public.mdl_forum_track_prefs_id_seq', 1, false); -- --- TOC entry 9991 (class 0 OID 60712) --- Dependencies: 506 -- Data for Name: mdl_glossary; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34927,8 +31290,6 @@ COPY public.mdl_glossary (id, course, name, intro, introformat, allowduplicatede -- --- TOC entry 9992 (class 0 OID 60744) --- Dependencies: 507 -- Data for Name: mdl_glossary_alias; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34937,8 +31298,6 @@ COPY public.mdl_glossary_alias (id, entryid, alias) FROM stdin; -- --- TOC entry 11548 (class 0 OID 0) --- Dependencies: 508 -- Name: mdl_glossary_alias_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34946,8 +31305,6 @@ SELECT pg_catalog.setval('public.mdl_glossary_alias_id_seq', 1, false); -- --- TOC entry 9994 (class 0 OID 60751) --- Dependencies: 509 -- Data for Name: mdl_glossary_categories; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34956,8 +31313,6 @@ COPY public.mdl_glossary_categories (id, glossaryid, name, usedynalink) FROM std -- --- TOC entry 11549 (class 0 OID 0) --- Dependencies: 510 -- Name: mdl_glossary_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34965,8 +31320,6 @@ SELECT pg_catalog.setval('public.mdl_glossary_categories_id_seq', 1, false); -- --- TOC entry 9996 (class 0 OID 60759) --- Dependencies: 511 -- Data for Name: mdl_glossary_entries; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34975,8 +31328,6 @@ COPY public.mdl_glossary_entries (id, glossaryid, userid, concept, definition, d -- --- TOC entry 9997 (class 0 OID 60779) --- Dependencies: 512 -- Data for Name: mdl_glossary_entries_categories; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34985,8 +31336,6 @@ COPY public.mdl_glossary_entries_categories (id, categoryid, entryid) FROM stdin -- --- TOC entry 11550 (class 0 OID 0) --- Dependencies: 513 -- Name: mdl_glossary_entries_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -34994,8 +31343,6 @@ SELECT pg_catalog.setval('public.mdl_glossary_entries_categories_id_seq', 1, fal -- --- TOC entry 11551 (class 0 OID 0) --- Dependencies: 514 -- Name: mdl_glossary_entries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35003,8 +31350,6 @@ SELECT pg_catalog.setval('public.mdl_glossary_entries_id_seq', 1, false); -- --- TOC entry 10000 (class 0 OID 60788) --- Dependencies: 515 -- Data for Name: mdl_glossary_formats; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35020,8 +31365,6 @@ COPY public.mdl_glossary_formats (id, name, popupformatname, visible, showgroup, -- --- TOC entry 11552 (class 0 OID 0) --- Dependencies: 516 -- Name: mdl_glossary_formats_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35029,8 +31372,6 @@ SELECT pg_catalog.setval('public.mdl_glossary_formats_id_seq', 7, true); -- --- TOC entry 11553 (class 0 OID 0) --- Dependencies: 517 -- Name: mdl_glossary_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35038,8 +31379,6 @@ SELECT pg_catalog.setval('public.mdl_glossary_id_seq', 1, false); -- --- TOC entry 10003 (class 0 OID 60803) --- Dependencies: 518 -- Data for Name: mdl_grade_categories; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35048,8 +31387,6 @@ COPY public.mdl_grade_categories (id, courseid, parent, depth, path, fullname, a -- --- TOC entry 10004 (class 0 OID 60817) --- Dependencies: 519 -- Data for Name: mdl_grade_categories_history; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35058,8 +31395,6 @@ COPY public.mdl_grade_categories_history (id, action, oldid, source, timemodifie -- --- TOC entry 11554 (class 0 OID 0) --- Dependencies: 520 -- Name: mdl_grade_categories_history_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35067,8 +31402,6 @@ SELECT pg_catalog.setval('public.mdl_grade_categories_history_id_seq', 1, false) -- --- TOC entry 11555 (class 0 OID 0) --- Dependencies: 521 -- Name: mdl_grade_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35076,8 +31409,6 @@ SELECT pg_catalog.setval('public.mdl_grade_categories_id_seq', 1, false); -- --- TOC entry 10007 (class 0 OID 60837) --- Dependencies: 522 -- Data for Name: mdl_grade_grades; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35086,8 +31417,6 @@ COPY public.mdl_grade_grades (id, itemid, userid, rawgrade, rawgrademax, rawgrad -- --- TOC entry 10008 (class 0 OID 60854) --- Dependencies: 523 -- Data for Name: mdl_grade_grades_history; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35096,8 +31425,6 @@ COPY public.mdl_grade_grades_history (id, action, oldid, source, timemodified, l -- --- TOC entry 11556 (class 0 OID 0) --- Dependencies: 524 -- Name: mdl_grade_grades_history_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35105,8 +31432,6 @@ SELECT pg_catalog.setval('public.mdl_grade_grades_history_id_seq', 1, false); -- --- TOC entry 11557 (class 0 OID 0) --- Dependencies: 525 -- Name: mdl_grade_grades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35114,8 +31439,6 @@ SELECT pg_catalog.setval('public.mdl_grade_grades_id_seq', 1, false); -- --- TOC entry 10011 (class 0 OID 60875) --- Dependencies: 526 -- Data for Name: mdl_grade_import_newitem; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35124,8 +31447,6 @@ COPY public.mdl_grade_import_newitem (id, itemname, importcode, importer) FROM s -- --- TOC entry 11558 (class 0 OID 0) --- Dependencies: 527 -- Name: mdl_grade_import_newitem_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35133,8 +31454,6 @@ SELECT pg_catalog.setval('public.mdl_grade_import_newitem_id_seq', 1, false); -- --- TOC entry 10013 (class 0 OID 60881) --- Dependencies: 528 -- Data for Name: mdl_grade_import_values; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35143,8 +31462,6 @@ COPY public.mdl_grade_import_values (id, itemid, newgradeitem, userid, finalgrad -- --- TOC entry 11559 (class 0 OID 0) --- Dependencies: 529 -- Name: mdl_grade_import_values_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35152,8 +31469,6 @@ SELECT pg_catalog.setval('public.mdl_grade_import_values_id_seq', 1, false); -- --- TOC entry 10015 (class 0 OID 60890) --- Dependencies: 530 -- Data for Name: mdl_grade_items; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35162,8 +31477,6 @@ COPY public.mdl_grade_items (id, courseid, categoryid, itemname, itemtype, itemm -- --- TOC entry 10016 (class 0 OID 60912) --- Dependencies: 531 -- Data for Name: mdl_grade_items_history; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35172,8 +31485,6 @@ COPY public.mdl_grade_items_history (id, action, oldid, source, timemodified, lo -- --- TOC entry 11560 (class 0 OID 0) --- Dependencies: 532 -- Name: mdl_grade_items_history_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35181,8 +31492,6 @@ SELECT pg_catalog.setval('public.mdl_grade_items_history_id_seq', 1, false); -- --- TOC entry 11561 (class 0 OID 0) --- Dependencies: 533 -- Name: mdl_grade_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35190,8 +31499,6 @@ SELECT pg_catalog.setval('public.mdl_grade_items_id_seq', 1, false); -- --- TOC entry 10019 (class 0 OID 60939) --- Dependencies: 534 -- Data for Name: mdl_grade_letters; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35200,8 +31507,6 @@ COPY public.mdl_grade_letters (id, contextid, lowerboundary, letter) FROM stdin; -- --- TOC entry 11562 (class 0 OID 0) --- Dependencies: 535 -- Name: mdl_grade_letters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35209,8 +31514,6 @@ SELECT pg_catalog.setval('public.mdl_grade_letters_id_seq', 1, false); -- --- TOC entry 10021 (class 0 OID 60945) --- Dependencies: 536 -- Data for Name: mdl_grade_outcomes; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35219,8 +31522,6 @@ COPY public.mdl_grade_outcomes (id, courseid, shortname, fullname, scaleid, desc -- --- TOC entry 10022 (class 0 OID 60953) --- Dependencies: 537 -- Data for Name: mdl_grade_outcomes_courses; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35229,8 +31530,6 @@ COPY public.mdl_grade_outcomes_courses (id, courseid, outcomeid) FROM stdin; -- --- TOC entry 11563 (class 0 OID 0) --- Dependencies: 538 -- Name: mdl_grade_outcomes_courses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35238,8 +31537,6 @@ SELECT pg_catalog.setval('public.mdl_grade_outcomes_courses_id_seq', 1, false); -- --- TOC entry 10024 (class 0 OID 60958) --- Dependencies: 539 -- Data for Name: mdl_grade_outcomes_history; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35248,8 +31545,6 @@ COPY public.mdl_grade_outcomes_history (id, action, oldid, source, timemodified, -- --- TOC entry 11564 (class 0 OID 0) --- Dependencies: 540 -- Name: mdl_grade_outcomes_history_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35257,8 +31552,6 @@ SELECT pg_catalog.setval('public.mdl_grade_outcomes_history_id_seq', 1, false); -- --- TOC entry 11565 (class 0 OID 0) --- Dependencies: 541 -- Name: mdl_grade_outcomes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35266,8 +31559,6 @@ SELECT pg_catalog.setval('public.mdl_grade_outcomes_id_seq', 1, false); -- --- TOC entry 10027 (class 0 OID 60971) --- Dependencies: 542 -- Data for Name: mdl_grade_settings; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35276,8 +31567,6 @@ COPY public.mdl_grade_settings (id, courseid, name, value) FROM stdin; -- --- TOC entry 11566 (class 0 OID 0) --- Dependencies: 543 -- Name: mdl_grade_settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35285,8 +31574,6 @@ SELECT pg_catalog.setval('public.mdl_grade_settings_id_seq', 1, false); -- --- TOC entry 10029 (class 0 OID 60980) --- Dependencies: 544 -- Data for Name: mdl_grading_areas; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35295,8 +31582,6 @@ COPY public.mdl_grading_areas (id, contextid, component, areaname, activemethod) -- --- TOC entry 11567 (class 0 OID 0) --- Dependencies: 545 -- Name: mdl_grading_areas_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35304,8 +31589,6 @@ SELECT pg_catalog.setval('public.mdl_grading_areas_id_seq', 1, false); -- --- TOC entry 10031 (class 0 OID 60987) --- Dependencies: 546 -- Data for Name: mdl_grading_definitions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35314,8 +31597,6 @@ COPY public.mdl_grading_definitions (id, areaid, method, name, description, desc -- --- TOC entry 11568 (class 0 OID 0) --- Dependencies: 547 -- Name: mdl_grading_definitions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35323,8 +31604,6 @@ SELECT pg_catalog.setval('public.mdl_grading_definitions_id_seq', 1, false); -- --- TOC entry 10033 (class 0 OID 60999) --- Dependencies: 548 -- Data for Name: mdl_grading_instances; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35333,8 +31612,6 @@ COPY public.mdl_grading_instances (id, definitionid, raterid, itemid, rawgrade, -- --- TOC entry 11569 (class 0 OID 0) --- Dependencies: 549 -- Name: mdl_grading_instances_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35342,8 +31619,6 @@ SELECT pg_catalog.setval('public.mdl_grading_instances_id_seq', 1, false); -- --- TOC entry 10035 (class 0 OID 61008) --- Dependencies: 550 -- Data for Name: mdl_gradingform_guide_comments; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35352,8 +31627,6 @@ COPY public.mdl_gradingform_guide_comments (id, definitionid, sortorder, descrip -- --- TOC entry 11570 (class 0 OID 0) --- Dependencies: 551 -- Name: mdl_gradingform_guide_comments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35361,8 +31634,6 @@ SELECT pg_catalog.setval('public.mdl_gradingform_guide_comments_id_seq', 1, fals -- --- TOC entry 10037 (class 0 OID 61016) --- Dependencies: 552 -- Data for Name: mdl_gradingform_guide_criteria; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35371,8 +31642,6 @@ COPY public.mdl_gradingform_guide_criteria (id, definitionid, sortorder, shortna -- --- TOC entry 11571 (class 0 OID 0) --- Dependencies: 553 -- Name: mdl_gradingform_guide_criteria_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35380,8 +31649,6 @@ SELECT pg_catalog.setval('public.mdl_gradingform_guide_criteria_id_seq', 1, fals -- --- TOC entry 10039 (class 0 OID 61025) --- Dependencies: 554 -- Data for Name: mdl_gradingform_guide_fillings; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35390,8 +31657,6 @@ COPY public.mdl_gradingform_guide_fillings (id, instanceid, criterionid, remark, -- --- TOC entry 11572 (class 0 OID 0) --- Dependencies: 555 -- Name: mdl_gradingform_guide_fillings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35399,8 +31664,6 @@ SELECT pg_catalog.setval('public.mdl_gradingform_guide_fillings_id_seq', 1, fals -- --- TOC entry 10041 (class 0 OID 61033) --- Dependencies: 556 -- Data for Name: mdl_gradingform_rubric_criteria; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35409,8 +31672,6 @@ COPY public.mdl_gradingform_rubric_criteria (id, definitionid, sortorder, descri -- --- TOC entry 11573 (class 0 OID 0) --- Dependencies: 557 -- Name: mdl_gradingform_rubric_criteria_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35418,8 +31679,6 @@ SELECT pg_catalog.setval('public.mdl_gradingform_rubric_criteria_id_seq', 1, fal -- --- TOC entry 10043 (class 0 OID 61041) --- Dependencies: 558 -- Data for Name: mdl_gradingform_rubric_fillings; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35428,8 +31687,6 @@ COPY public.mdl_gradingform_rubric_fillings (id, instanceid, criterionid, leveli -- --- TOC entry 11574 (class 0 OID 0) --- Dependencies: 559 -- Name: mdl_gradingform_rubric_fillings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35437,8 +31694,6 @@ SELECT pg_catalog.setval('public.mdl_gradingform_rubric_fillings_id_seq', 1, fal -- --- TOC entry 10045 (class 0 OID 61049) --- Dependencies: 560 -- Data for Name: mdl_gradingform_rubric_levels; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35447,8 +31702,6 @@ COPY public.mdl_gradingform_rubric_levels (id, criterionid, score, definition, d -- --- TOC entry 11575 (class 0 OID 0) --- Dependencies: 561 -- Name: mdl_gradingform_rubric_levels_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35456,8 +31709,6 @@ SELECT pg_catalog.setval('public.mdl_gradingform_rubric_levels_id_seq', 1, false -- --- TOC entry 10047 (class 0 OID 61057) --- Dependencies: 562 -- Data for Name: mdl_groupings; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35466,8 +31717,6 @@ COPY public.mdl_groupings (id, courseid, name, idnumber, description, descriptio -- --- TOC entry 10048 (class 0 OID 61069) --- Dependencies: 563 -- Data for Name: mdl_groupings_groups; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35476,8 +31725,6 @@ COPY public.mdl_groupings_groups (id, groupingid, groupid, timeadded) FROM stdin -- --- TOC entry 11576 (class 0 OID 0) --- Dependencies: 564 -- Name: mdl_groupings_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35485,8 +31732,6 @@ SELECT pg_catalog.setval('public.mdl_groupings_groups_id_seq', 1, false); -- --- TOC entry 11577 (class 0 OID 0) --- Dependencies: 565 -- Name: mdl_groupings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35494,8 +31739,6 @@ SELECT pg_catalog.setval('public.mdl_groupings_id_seq', 1, false); -- --- TOC entry 10051 (class 0 OID 61079) --- Dependencies: 566 -- Data for Name: mdl_groups; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35504,8 +31747,6 @@ COPY public.mdl_groups (id, courseid, idnumber, name, description, descriptionfo -- --- TOC entry 11578 (class 0 OID 0) --- Dependencies: 567 -- Name: mdl_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35513,8 +31754,6 @@ SELECT pg_catalog.setval('public.mdl_groups_id_seq', 1, false); -- --- TOC entry 10053 (class 0 OID 61094) --- Dependencies: 568 -- Data for Name: mdl_groups_members; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35523,8 +31762,6 @@ COPY public.mdl_groups_members (id, groupid, userid, timeadded, component, itemi -- --- TOC entry 11579 (class 0 OID 0) --- Dependencies: 569 -- Name: mdl_groups_members_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35532,8 +31769,6 @@ SELECT pg_catalog.setval('public.mdl_groups_members_id_seq', 1, false); -- --- TOC entry 10055 (class 0 OID 61104) --- Dependencies: 570 -- Data for Name: mdl_h5p; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35542,8 +31777,6 @@ COPY public.mdl_h5p (id, jsoncontent, mainlibraryid, displayoptions, pathnamehas -- --- TOC entry 10056 (class 0 OID 61114) --- Dependencies: 571 -- Data for Name: mdl_h5p_contents_libraries; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35552,8 +31785,6 @@ COPY public.mdl_h5p_contents_libraries (id, h5pid, libraryid, dependencytype, dr -- --- TOC entry 11580 (class 0 OID 0) --- Dependencies: 572 -- Name: mdl_h5p_contents_libraries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35561,8 +31792,6 @@ SELECT pg_catalog.setval('public.mdl_h5p_contents_libraries_id_seq', 1, false); -- --- TOC entry 11581 (class 0 OID 0) --- Dependencies: 573 -- Name: mdl_h5p_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35570,8 +31799,6 @@ SELECT pg_catalog.setval('public.mdl_h5p_id_seq', 1, false); -- --- TOC entry 10059 (class 0 OID 61122) --- Dependencies: 574 -- Data for Name: mdl_h5p_libraries; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35580,8 +31807,6 @@ COPY public.mdl_h5p_libraries (id, machinename, title, majorversion, minorversio -- --- TOC entry 10060 (class 0 OID 61132) --- Dependencies: 575 -- Data for Name: mdl_h5p_libraries_cachedassets; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35590,8 +31815,6 @@ COPY public.mdl_h5p_libraries_cachedassets (id, libraryid, hash) FROM stdin; -- --- TOC entry 11582 (class 0 OID 0) --- Dependencies: 576 -- Name: mdl_h5p_libraries_cachedassets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35599,8 +31822,6 @@ SELECT pg_catalog.setval('public.mdl_h5p_libraries_cachedassets_id_seq', 1, fals -- --- TOC entry 11583 (class 0 OID 0) --- Dependencies: 577 -- Name: mdl_h5p_libraries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35608,8 +31829,6 @@ SELECT pg_catalog.setval('public.mdl_h5p_libraries_id_seq', 1, false); -- --- TOC entry 10063 (class 0 OID 61140) --- Dependencies: 578 -- Data for Name: mdl_h5p_library_dependencies; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35618,8 +31837,6 @@ COPY public.mdl_h5p_library_dependencies (id, libraryid, requiredlibraryid, depe -- --- TOC entry 11584 (class 0 OID 0) --- Dependencies: 579 -- Name: mdl_h5p_library_dependencies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35627,8 +31844,6 @@ SELECT pg_catalog.setval('public.mdl_h5p_library_dependencies_id_seq', 1, false) -- --- TOC entry 10065 (class 0 OID 61146) --- Dependencies: 580 -- Data for Name: mdl_h5pactivity; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35637,8 +31852,6 @@ COPY public.mdl_h5pactivity (id, course, name, timecreated, timemodified, intro, -- --- TOC entry 10066 (class 0 OID 61159) --- Dependencies: 581 -- Data for Name: mdl_h5pactivity_attempts; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35647,8 +31860,6 @@ COPY public.mdl_h5pactivity_attempts (id, h5pactivityid, userid, timecreated, ti -- --- TOC entry 11585 (class 0 OID 0) --- Dependencies: 582 -- Name: mdl_h5pactivity_attempts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35656,8 +31867,6 @@ SELECT pg_catalog.setval('public.mdl_h5pactivity_attempts_id_seq', 1, false); -- --- TOC entry 10068 (class 0 OID 61169) --- Dependencies: 583 -- Data for Name: mdl_h5pactivity_attempts_results; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35666,8 +31875,6 @@ COPY public.mdl_h5pactivity_attempts_results (id, attemptid, subcontent, timecre -- --- TOC entry 11586 (class 0 OID 0) --- Dependencies: 584 -- Name: mdl_h5pactivity_attempts_results_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35675,8 +31882,6 @@ SELECT pg_catalog.setval('public.mdl_h5pactivity_attempts_results_id_seq', 1, fa -- --- TOC entry 11587 (class 0 OID 0) --- Dependencies: 585 -- Name: mdl_h5pactivity_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35684,8 +31889,6 @@ SELECT pg_catalog.setval('public.mdl_h5pactivity_id_seq', 1, false); -- --- TOC entry 10071 (class 0 OID 61182) --- Dependencies: 586 -- Data for Name: mdl_imscp; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35694,8 +31897,6 @@ COPY public.mdl_imscp (id, course, name, intro, introformat, revision, keepold, -- --- TOC entry 11588 (class 0 OID 0) --- Dependencies: 587 -- Name: mdl_imscp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35703,8 +31904,6 @@ SELECT pg_catalog.setval('public.mdl_imscp_id_seq', 1, false); -- --- TOC entry 10073 (class 0 OID 61196) --- Dependencies: 588 -- Data for Name: mdl_label; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35713,8 +31912,6 @@ COPY public.mdl_label (id, course, name, intro, introformat, timemodified) FROM -- --- TOC entry 11589 (class 0 OID 0) --- Dependencies: 589 -- Name: mdl_label_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35722,8 +31919,6 @@ SELECT pg_catalog.setval('public.mdl_label_id_seq', 1, false); -- --- TOC entry 10075 (class 0 OID 61208) --- Dependencies: 590 -- Data for Name: mdl_lesson; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35732,8 +31927,6 @@ COPY public.mdl_lesson (id, course, name, intro, introformat, practice, modattem -- --- TOC entry 10076 (class 0 OID 61253) --- Dependencies: 591 -- Data for Name: mdl_lesson_answers; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35742,8 +31935,6 @@ COPY public.mdl_lesson_answers (id, lessonid, pageid, jumpto, grade, score, flag -- --- TOC entry 11590 (class 0 OID 0) --- Dependencies: 592 -- Name: mdl_lesson_answers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35751,8 +31942,6 @@ SELECT pg_catalog.setval('public.mdl_lesson_answers_id_seq', 1, false); -- --- TOC entry 10078 (class 0 OID 61271) --- Dependencies: 593 -- Data for Name: mdl_lesson_attempts; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35761,8 +31950,6 @@ COPY public.mdl_lesson_attempts (id, lessonid, pageid, userid, answerid, retry, -- --- TOC entry 11591 (class 0 OID 0) --- Dependencies: 594 -- Name: mdl_lesson_attempts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35770,8 +31957,6 @@ SELECT pg_catalog.setval('public.mdl_lesson_attempts_id_seq', 1, false); -- --- TOC entry 10080 (class 0 OID 61286) --- Dependencies: 595 -- Data for Name: mdl_lesson_branch; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35780,8 +31965,6 @@ COPY public.mdl_lesson_branch (id, lessonid, userid, pageid, retry, flag, timese -- --- TOC entry 11592 (class 0 OID 0) --- Dependencies: 596 -- Name: mdl_lesson_branch_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35789,8 +31972,6 @@ SELECT pg_catalog.setval('public.mdl_lesson_branch_id_seq', 1, false); -- --- TOC entry 10082 (class 0 OID 61298) --- Dependencies: 597 -- Data for Name: mdl_lesson_grades; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35799,8 +31980,6 @@ COPY public.mdl_lesson_grades (id, lessonid, userid, grade, late, completed) FRO -- --- TOC entry 11593 (class 0 OID 0) --- Dependencies: 598 -- Name: mdl_lesson_grades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35808,8 +31987,6 @@ SELECT pg_catalog.setval('public.mdl_lesson_grades_id_seq', 1, false); -- --- TOC entry 11594 (class 0 OID 0) --- Dependencies: 599 -- Name: mdl_lesson_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35817,8 +31994,6 @@ SELECT pg_catalog.setval('public.mdl_lesson_id_seq', 1, false); -- --- TOC entry 10085 (class 0 OID 61310) --- Dependencies: 600 -- Data for Name: mdl_lesson_overrides; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35827,8 +32002,6 @@ COPY public.mdl_lesson_overrides (id, lessonid, groupid, userid, available, dead -- --- TOC entry 11595 (class 0 OID 0) --- Dependencies: 601 -- Name: mdl_lesson_overrides_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35836,8 +32009,6 @@ SELECT pg_catalog.setval('public.mdl_lesson_overrides_id_seq', 1, false); -- --- TOC entry 10087 (class 0 OID 61316) --- Dependencies: 602 -- Data for Name: mdl_lesson_pages; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35846,8 +32017,6 @@ COPY public.mdl_lesson_pages (id, lessonid, prevpageid, nextpageid, qtype, qopti -- --- TOC entry 11596 (class 0 OID 0) --- Dependencies: 603 -- Name: mdl_lesson_pages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35855,8 +32024,6 @@ SELECT pg_catalog.setval('public.mdl_lesson_pages_id_seq', 1, false); -- --- TOC entry 10089 (class 0 OID 61335) --- Dependencies: 604 -- Data for Name: mdl_lesson_timer; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35865,8 +32032,6 @@ COPY public.mdl_lesson_timer (id, lessonid, userid, starttime, lessontime, compl -- --- TOC entry 11597 (class 0 OID 0) --- Dependencies: 605 -- Name: mdl_lesson_timer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35874,8 +32039,6 @@ SELECT pg_catalog.setval('public.mdl_lesson_timer_id_seq', 1, false); -- --- TOC entry 10091 (class 0 OID 61346) --- Dependencies: 606 -- Data for Name: mdl_license; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35893,8 +32056,6 @@ COPY public.mdl_license (id, shortname, fullname, source, enabled, version, cust -- --- TOC entry 11598 (class 0 OID 0) --- Dependencies: 607 -- Name: mdl_license_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35902,8 +32063,6 @@ SELECT pg_catalog.setval('public.mdl_license_id_seq', 9, true); -- --- TOC entry 10093 (class 0 OID 61358) --- Dependencies: 608 -- Data for Name: mdl_lock_db; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35912,8 +32071,6 @@ COPY public.mdl_lock_db (id, resourcekey, expires, owner) FROM stdin; -- --- TOC entry 11599 (class 0 OID 0) --- Dependencies: 609 -- Name: mdl_lock_db_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -35921,8 +32078,6 @@ SELECT pg_catalog.setval('public.mdl_lock_db_id_seq', 1, false); -- --- TOC entry 10095 (class 0 OID 61364) --- Dependencies: 610 -- Data for Name: mdl_log; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -35931,8 +32086,6 @@ COPY public.mdl_log (id, "time", userid, ip, course, module, cmid, action, url, -- --- TOC entry 10096 (class 0 OID 61376) --- Dependencies: 611 -- Data for Name: mdl_log_display; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -36130,8 +32283,6 @@ COPY public.mdl_log_display (id, module, action, mtable, field, component) FROM -- --- TOC entry 11600 (class 0 OID 0) --- Dependencies: 612 -- Name: mdl_log_display_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -36139,8 +32290,6 @@ SELECT pg_catalog.setval('public.mdl_log_display_id_seq', 189, true); -- --- TOC entry 11601 (class 0 OID 0) --- Dependencies: 613 -- Name: mdl_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -36148,8 +32297,6 @@ SELECT pg_catalog.setval('public.mdl_log_id_seq', 1, false); -- --- TOC entry 10099 (class 0 OID 61388) --- Dependencies: 614 -- Data for Name: mdl_log_queries; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -36158,8 +32305,6 @@ COPY public.mdl_log_queries (id, qtype, sqltext, sqlparams, error, info, backtra -- --- TOC entry 11602 (class 0 OID 0) --- Dependencies: 615 -- Name: mdl_log_queries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -36167,8 +32312,6 @@ SELECT pg_catalog.setval('public.mdl_log_queries_id_seq', 1, false); -- --- TOC entry 10101 (class 0 OID 61397) --- Dependencies: 616 -- Data for Name: mdl_logstore_standard_log; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -36274,6 +32417,7 @@ COPY public.mdl_logstore_standard_log (id, eventname, component, action, target, 99 \\core\\event\\config_log_created core created config_log config_log 686 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"maxfiles";s:8:"oldvalue";N;s:5:"value";s:2:"20";s:6:"plugin";s:21:"assignsubmission_file";} 1609884655 web 67.182.30.218 \N 100 \\core\\event\\config_log_created core created config_log config_log 687 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"filetypes";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:21:"assignsubmission_file";} 1609884655 web 67.182.30.218 \N 101 \\core\\event\\config_log_created core created config_log config_log 688 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"maxbytes";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:21:"assignsubmission_file";} 1609884655 web 67.182.30.218 \N +1020 \\core\\event\\course_viewed core viewed course \N \N r 2 2 50 1 0 1 \N 0 null 1612797594 web 67.182.30.218 \N 102 \\core\\event\\config_log_created core created config_log config_log 689 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:27:"assignsubmission_onlinetext";} 1609884655 web 67.182.30.218 \N 103 \\core\\event\\config_log_created core created config_log config_log 690 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:23:"assignfeedback_comments";} 1609884655 web 67.182.30.218 \N 104 \\core\\event\\config_log_created core created config_log config_log 691 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"inline";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:23:"assignfeedback_comments";} 1609884655 web 67.182.30.218 \N @@ -36454,6 +32598,7 @@ COPY public.mdl_logstore_standard_log (id, eventname, component, action, target, 279 \\core\\event\\config_log_created core created config_log config_log 866 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"displayblockswhenfinished";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:14:"quizaccess_seb";} 1609884656 web 67.182.30.218 \N 280 \\core\\event\\config_log_created core created config_log config_log 867 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"displaycoursestructure";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N 281 \\core\\event\\config_log_created core created config_log config_log 868 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"displaycoursestructure_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N +1021 \\core\\event\\user_loggedin core loggedin user user 2 r 0 1 10 0 2 0 \N 0 {"username":"admin"} 1612797602 web 67.182.30.218 \N 282 \\core\\event\\config_log_created core created config_log config_log 869 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:5:"popup";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N 283 \\core\\event\\config_log_created core created config_log config_log 870 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"popup_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N 284 \\core\\event\\config_log_created core created config_log config_log 871 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"displayactivityname";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N @@ -36531,6 +32676,7 @@ COPY public.mdl_logstore_standard_log (id, eventname, component, action, target, 356 \\core\\event\\config_log_created core created config_log config_log 943 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"categorybinexpiry";s:8:"oldvalue";N;s:5:"value";s:6:"604800";s:6:"plugin";s:15:"tool_recyclebin";} 1609884656 web 67.182.30.218 \N 357 \\core\\event\\config_log_created core created config_log config_log 944 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"autohide";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:15:"tool_recyclebin";} 1609884656 web 67.182.30.218 \N 358 \\core\\event\\config_log_created core created config_log config_log 945 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"runningmethod";s:8:"oldvalue";N;s:5:"value";s:11:"commandline";s:6:"plugin";s:16:"antivirus_clamav";} 1609884656 web 67.182.30.218 \N +1022 \\core\\event\\dashboard_viewed core viewed dashboard \N \N r 0 5 30 2 2 0 2 0 null 1612797602 web 67.182.30.218 \N 359 \\core\\event\\config_log_created core created config_log config_log 946 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"pathtoclam";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"antivirus_clamav";} 1609884656 web 67.182.30.218 \N 360 \\core\\event\\config_log_created core created config_log config_log 947 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"pathtounixsocket";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"antivirus_clamav";} 1609884656 web 67.182.30.218 \N 361 \\core\\event\\config_log_created core created config_log config_log 948 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"tcpsockethost";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"antivirus_clamav";} 1609884656 web 67.182.30.218 \N @@ -37196,17 +33342,13 @@ COPY public.mdl_logstore_standard_log (id, eventname, component, action, target, -- --- TOC entry 11603 (class 0 OID 0) --- Dependencies: 617 -- Name: mdl_logstore_standard_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_logstore_standard_log_id_seq', 1019, true); +SELECT pg_catalog.setval('public.mdl_logstore_standard_log_id_seq', 1022, true); -- --- TOC entry 10103 (class 0 OID 61411) --- Dependencies: 618 -- Data for Name: mdl_lti; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37215,8 +33357,6 @@ COPY public.mdl_lti (id, course, name, intro, introformat, timecreated, timemodi -- --- TOC entry 10104 (class 0 OID 61427) --- Dependencies: 619 -- Data for Name: mdl_lti_access_tokens; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37225,8 +33365,6 @@ COPY public.mdl_lti_access_tokens (id, typeid, scope, token, validuntil, timecre -- --- TOC entry 11604 (class 0 OID 0) --- Dependencies: 620 -- Name: mdl_lti_access_tokens_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37234,8 +33372,6 @@ SELECT pg_catalog.setval('public.mdl_lti_access_tokens_id_seq', 1, false); -- --- TOC entry 11605 (class 0 OID 0) --- Dependencies: 621 -- Name: mdl_lti_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37243,8 +33379,6 @@ SELECT pg_catalog.setval('public.mdl_lti_id_seq', 1, false); -- --- TOC entry 10107 (class 0 OID 61438) --- Dependencies: 622 -- Data for Name: mdl_lti_submission; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37253,8 +33387,6 @@ COPY public.mdl_lti_submission (id, ltiid, userid, datesubmitted, dateupdated, g -- --- TOC entry 11606 (class 0 OID 0) --- Dependencies: 623 -- Name: mdl_lti_submission_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37262,8 +33394,6 @@ SELECT pg_catalog.setval('public.mdl_lti_submission_id_seq', 1, false); -- --- TOC entry 10109 (class 0 OID 61443) --- Dependencies: 624 -- Data for Name: mdl_lti_tool_proxies; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37272,8 +33402,6 @@ COPY public.mdl_lti_tool_proxies (id, name, regurl, state, guid, secret, vendorc -- --- TOC entry 11607 (class 0 OID 0) --- Dependencies: 625 -- Name: mdl_lti_tool_proxies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37281,8 +33409,6 @@ SELECT pg_catalog.setval('public.mdl_lti_tool_proxies_id_seq', 1, false); -- --- TOC entry 10111 (class 0 OID 61453) --- Dependencies: 626 -- Data for Name: mdl_lti_tool_settings; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37291,8 +33417,6 @@ COPY public.mdl_lti_tool_settings (id, toolproxyid, typeid, course, coursemodule -- --- TOC entry 11608 (class 0 OID 0) --- Dependencies: 627 -- Name: mdl_lti_tool_settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37300,8 +33424,6 @@ SELECT pg_catalog.setval('public.mdl_lti_tool_settings_id_seq', 1, false); -- --- TOC entry 10113 (class 0 OID 61461) --- Dependencies: 628 -- Data for Name: mdl_lti_types; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37310,8 +33432,6 @@ COPY public.mdl_lti_types (id, name, baseurl, tooldomain, state, course, coursev -- --- TOC entry 10114 (class 0 OID 61472) --- Dependencies: 629 -- Data for Name: mdl_lti_types_config; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37320,8 +33440,6 @@ COPY public.mdl_lti_types_config (id, typeid, name, value) FROM stdin; -- --- TOC entry 11609 (class 0 OID 0) --- Dependencies: 630 -- Name: mdl_lti_types_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37329,8 +33447,6 @@ SELECT pg_catalog.setval('public.mdl_lti_types_config_id_seq', 1, false); -- --- TOC entry 11610 (class 0 OID 0) --- Dependencies: 631 -- Name: mdl_lti_types_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37338,8 +33454,6 @@ SELECT pg_catalog.setval('public.mdl_lti_types_id_seq', 1, false); -- --- TOC entry 10117 (class 0 OID 61483) --- Dependencies: 632 -- Data for Name: mdl_ltiservice_gradebookservices; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37348,8 +33462,6 @@ COPY public.mdl_ltiservice_gradebookservices (id, gradeitemid, courseid, toolpro -- --- TOC entry 11611 (class 0 OID 0) --- Dependencies: 633 -- Name: mdl_ltiservice_gradebookservices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37357,8 +33469,6 @@ SELECT pg_catalog.setval('public.mdl_ltiservice_gradebookservices_id_seq', 1, fa -- --- TOC entry 10119 (class 0 OID 61491) --- Dependencies: 634 -- Data for Name: mdl_message; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37367,8 +33477,6 @@ COPY public.mdl_message (id, useridfrom, useridto, subject, fullmessage, fullmes -- --- TOC entry 10120 (class 0 OID 61504) --- Dependencies: 635 -- Data for Name: mdl_message_airnotifier_devices; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37377,8 +33485,6 @@ COPY public.mdl_message_airnotifier_devices (id, userdeviceid, enable) FROM stdi -- --- TOC entry 11612 (class 0 OID 0) --- Dependencies: 636 -- Name: mdl_message_airnotifier_devices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37386,8 +33492,6 @@ SELECT pg_catalog.setval('public.mdl_message_airnotifier_devices_id_seq', 1, fal -- --- TOC entry 10122 (class 0 OID 61510) --- Dependencies: 637 -- Data for Name: mdl_message_contact_requests; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37396,8 +33500,6 @@ COPY public.mdl_message_contact_requests (id, userid, requesteduserid, timecreat -- --- TOC entry 11613 (class 0 OID 0) --- Dependencies: 638 -- Name: mdl_message_contact_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37405,8 +33507,6 @@ SELECT pg_catalog.setval('public.mdl_message_contact_requests_id_seq', 1, false) -- --- TOC entry 10124 (class 0 OID 61515) --- Dependencies: 639 -- Data for Name: mdl_message_contacts; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37415,8 +33515,6 @@ COPY public.mdl_message_contacts (id, userid, contactid, timecreated) FROM stdin -- --- TOC entry 11614 (class 0 OID 0) --- Dependencies: 640 -- Name: mdl_message_contacts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37424,8 +33522,6 @@ SELECT pg_catalog.setval('public.mdl_message_contacts_id_seq', 1, false); -- --- TOC entry 10126 (class 0 OID 61520) --- Dependencies: 641 -- Data for Name: mdl_message_conversation_actions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37434,8 +33530,6 @@ COPY public.mdl_message_conversation_actions (id, userid, conversationid, action -- --- TOC entry 11615 (class 0 OID 0) --- Dependencies: 642 -- Name: mdl_message_conversation_actions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37443,8 +33537,6 @@ SELECT pg_catalog.setval('public.mdl_message_conversation_actions_id_seq', 1, fa -- --- TOC entry 10128 (class 0 OID 61525) --- Dependencies: 643 -- Data for Name: mdl_message_conversation_members; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37453,8 +33545,6 @@ COPY public.mdl_message_conversation_members (id, conversationid, userid, timecr -- --- TOC entry 11616 (class 0 OID 0) --- Dependencies: 644 -- Name: mdl_message_conversation_members_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37462,8 +33552,6 @@ SELECT pg_catalog.setval('public.mdl_message_conversation_members_id_seq', 1, fa -- --- TOC entry 10130 (class 0 OID 61530) --- Dependencies: 645 -- Data for Name: mdl_message_conversations; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37472,8 +33560,6 @@ COPY public.mdl_message_conversations (id, type, name, convhash, component, item -- --- TOC entry 11617 (class 0 OID 0) --- Dependencies: 646 -- Name: mdl_message_conversations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37481,8 +33567,6 @@ SELECT pg_catalog.setval('public.mdl_message_conversations_id_seq', 1, false); -- --- TOC entry 10132 (class 0 OID 61540) --- Dependencies: 647 -- Data for Name: mdl_message_email_messages; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37491,8 +33575,6 @@ COPY public.mdl_message_email_messages (id, useridto, conversationid, messageid) -- --- TOC entry 11618 (class 0 OID 0) --- Dependencies: 648 -- Name: mdl_message_email_messages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37500,8 +33582,6 @@ SELECT pg_catalog.setval('public.mdl_message_email_messages_id_seq', 1, false); -- --- TOC entry 11619 (class 0 OID 0) --- Dependencies: 649 -- Name: mdl_message_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37509,8 +33589,6 @@ SELECT pg_catalog.setval('public.mdl_message_id_seq', 1, false); -- --- TOC entry 10135 (class 0 OID 61547) --- Dependencies: 650 -- Data for Name: mdl_message_popup; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37519,8 +33597,6 @@ COPY public.mdl_message_popup (id, messageid, isread) FROM stdin; -- --- TOC entry 11620 (class 0 OID 0) --- Dependencies: 651 -- Name: mdl_message_popup_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37528,8 +33604,6 @@ SELECT pg_catalog.setval('public.mdl_message_popup_id_seq', 1, false); -- --- TOC entry 10137 (class 0 OID 61553) --- Dependencies: 652 -- Data for Name: mdl_message_popup_notifications; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37538,8 +33612,6 @@ COPY public.mdl_message_popup_notifications (id, notificationid) FROM stdin; -- --- TOC entry 11621 (class 0 OID 0) --- Dependencies: 653 -- Name: mdl_message_popup_notifications_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37547,8 +33619,6 @@ SELECT pg_catalog.setval('public.mdl_message_popup_notifications_id_seq', 1, fal -- --- TOC entry 10139 (class 0 OID 61558) --- Dependencies: 654 -- Data for Name: mdl_message_processors; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37561,8 +33631,6 @@ COPY public.mdl_message_processors (id, name, enabled) FROM stdin; -- --- TOC entry 11622 (class 0 OID 0) --- Dependencies: 655 -- Name: mdl_message_processors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37570,8 +33638,6 @@ SELECT pg_catalog.setval('public.mdl_message_processors_id_seq', 4, true); -- --- TOC entry 10141 (class 0 OID 61565) --- Dependencies: 656 -- Data for Name: mdl_message_providers; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37618,8 +33684,6 @@ COPY public.mdl_message_providers (id, name, component, capability) FROM stdin; -- --- TOC entry 11623 (class 0 OID 0) --- Dependencies: 657 -- Name: mdl_message_providers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37627,8 +33691,6 @@ SELECT pg_catalog.setval('public.mdl_message_providers_id_seq', 38, true); -- --- TOC entry 10143 (class 0 OID 61575) --- Dependencies: 658 -- Data for Name: mdl_message_read; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37637,8 +33699,6 @@ COPY public.mdl_message_read (id, useridfrom, useridto, subject, fullmessage, fu -- --- TOC entry 11624 (class 0 OID 0) --- Dependencies: 659 -- Name: mdl_message_read_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37646,8 +33706,6 @@ SELECT pg_catalog.setval('public.mdl_message_read_id_seq', 1, false); -- --- TOC entry 10145 (class 0 OID 61591) --- Dependencies: 660 -- Data for Name: mdl_message_user_actions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37656,8 +33714,6 @@ COPY public.mdl_message_user_actions (id, userid, messageid, action, timecreated -- --- TOC entry 11625 (class 0 OID 0) --- Dependencies: 661 -- Name: mdl_message_user_actions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37665,8 +33721,6 @@ SELECT pg_catalog.setval('public.mdl_message_user_actions_id_seq', 1, false); -- --- TOC entry 10147 (class 0 OID 61596) --- Dependencies: 662 -- Data for Name: mdl_message_users_blocked; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37675,8 +33729,6 @@ COPY public.mdl_message_users_blocked (id, userid, blockeduserid, timecreated) F -- --- TOC entry 11626 (class 0 OID 0) --- Dependencies: 663 -- Name: mdl_message_users_blocked_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37684,8 +33736,6 @@ SELECT pg_catalog.setval('public.mdl_message_users_blocked_id_seq', 1, false); -- --- TOC entry 10149 (class 0 OID 61601) --- Dependencies: 664 -- Data for Name: mdl_messageinbound_datakeys; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37694,8 +33744,6 @@ COPY public.mdl_messageinbound_datakeys (id, handler, datavalue, datakey, timecr -- --- TOC entry 11627 (class 0 OID 0) --- Dependencies: 665 -- Name: mdl_messageinbound_datakeys_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37703,8 +33751,6 @@ SELECT pg_catalog.setval('public.mdl_messageinbound_datakeys_id_seq', 1, false); -- --- TOC entry 10151 (class 0 OID 61606) --- Dependencies: 666 -- Data for Name: mdl_messageinbound_handlers; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37716,8 +33762,6 @@ COPY public.mdl_messageinbound_handlers (id, component, classname, defaultexpira -- --- TOC entry 11628 (class 0 OID 0) --- Dependencies: 667 -- Name: mdl_messageinbound_handlers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37725,8 +33769,6 @@ SELECT pg_catalog.setval('public.mdl_messageinbound_handlers_id_seq', 3, true); -- --- TOC entry 10153 (class 0 OID 61616) --- Dependencies: 668 -- Data for Name: mdl_messageinbound_messagelist; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37735,8 +33777,6 @@ COPY public.mdl_messageinbound_messagelist (id, messageid, userid, address, time -- --- TOC entry 11629 (class 0 OID 0) --- Dependencies: 669 -- Name: mdl_messageinbound_messagelist_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37744,8 +33784,6 @@ SELECT pg_catalog.setval('public.mdl_messageinbound_messagelist_id_seq', 1, fals -- --- TOC entry 10155 (class 0 OID 61624) --- Dependencies: 670 -- Data for Name: mdl_messages; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37754,8 +33792,6 @@ COPY public.mdl_messages (id, useridfrom, conversationid, subject, fullmessage, -- --- TOC entry 11630 (class 0 OID 0) --- Dependencies: 671 -- Name: mdl_messages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37763,8 +33799,6 @@ SELECT pg_catalog.setval('public.mdl_messages_id_seq', 1, false); -- --- TOC entry 10157 (class 0 OID 61634) --- Dependencies: 672 -- Data for Name: mdl_mnet_application; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37775,8 +33809,6 @@ COPY public.mdl_mnet_application (id, name, display_name, xmlrpc_server_url, sso -- --- TOC entry 11631 (class 0 OID 0) --- Dependencies: 673 -- Name: mdl_mnet_application_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37784,20 +33816,16 @@ SELECT pg_catalog.setval('public.mdl_mnet_application_id_seq', 2, true); -- --- TOC entry 10159 (class 0 OID 61647) --- Dependencies: 674 -- Data for Name: mdl_mnet_host; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.mdl_mnet_host (id, deleted, wwwroot, ip_address, name, public_key, public_key_expires, transport, portno, last_connect_time, last_log_id, force_theme, theme, applicationid, sslverification) FROM stdin; -1 0 http://{{ connectbox_default_hostname }} 172.30.2.144 0 0 0 0 0 0 \N 1 0 +1 0 http://dev.derekmaxson.com 172.30.2.144 0 0 0 0 0 0 \N 1 0 2 0 All Hosts 0 0 0 0 0 0 \N 1 0 \. -- --- TOC entry 10160 (class 0 OID 61665) --- Dependencies: 675 -- Data for Name: mdl_mnet_host2service; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37806,8 +33834,6 @@ COPY public.mdl_mnet_host2service (id, hostid, serviceid, publish, subscribe) FR -- --- TOC entry 11632 (class 0 OID 0) --- Dependencies: 676 -- Name: mdl_mnet_host2service_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37815,8 +33841,6 @@ SELECT pg_catalog.setval('public.mdl_mnet_host2service_id_seq', 1, false); -- --- TOC entry 11633 (class 0 OID 0) --- Dependencies: 677 -- Name: mdl_mnet_host_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37824,8 +33848,6 @@ SELECT pg_catalog.setval('public.mdl_mnet_host_id_seq', 2, true); -- --- TOC entry 10163 (class 0 OID 61676) --- Dependencies: 678 -- Data for Name: mdl_mnet_log; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37834,8 +33856,6 @@ COPY public.mdl_mnet_log (id, hostid, remoteid, "time", userid, ip, course, cour -- --- TOC entry 11634 (class 0 OID 0) --- Dependencies: 679 -- Name: mdl_mnet_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37843,8 +33863,6 @@ SELECT pg_catalog.setval('public.mdl_mnet_log_id_seq', 1, false); -- --- TOC entry 10165 (class 0 OID 61696) --- Dependencies: 680 -- Data for Name: mdl_mnet_remote_rpc; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37869,8 +33887,6 @@ COPY public.mdl_mnet_remote_rpc (id, functionname, xmlrpcpath, plugintype, plugi -- --- TOC entry 11635 (class 0 OID 0) --- Dependencies: 681 -- Name: mdl_mnet_remote_rpc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37878,8 +33894,6 @@ SELECT pg_catalog.setval('public.mdl_mnet_remote_rpc_id_seq', 16, true); -- --- TOC entry 10167 (class 0 OID 61705) --- Dependencies: 682 -- Data for Name: mdl_mnet_remote_service2rpc; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37904,8 +33918,6 @@ COPY public.mdl_mnet_remote_service2rpc (id, serviceid, rpcid) FROM stdin; -- --- TOC entry 11636 (class 0 OID 0) --- Dependencies: 683 -- Name: mdl_mnet_remote_service2rpc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37913,8 +33925,6 @@ SELECT pg_catalog.setval('public.mdl_mnet_remote_service2rpc_id_seq', 16, true); -- --- TOC entry 10169 (class 0 OID 61712) --- Dependencies: 684 -- Data for Name: mdl_mnet_rpc; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37938,8 +33948,6 @@ COPY public.mdl_mnet_rpc (id, functionname, xmlrpcpath, plugintype, pluginname, -- --- TOC entry 11637 (class 0 OID 0) --- Dependencies: 685 -- Name: mdl_mnet_rpc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37947,8 +33955,6 @@ SELECT pg_catalog.setval('public.mdl_mnet_rpc_id_seq', 15, true); -- --- TOC entry 10171 (class 0 OID 61726) --- Dependencies: 686 -- Data for Name: mdl_mnet_service; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37961,8 +33967,6 @@ COPY public.mdl_mnet_service (id, name, description, apiversion, offer) FROM std -- --- TOC entry 10172 (class 0 OID 61733) --- Dependencies: 687 -- Data for Name: mdl_mnet_service2rpc; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -37986,8 +33990,6 @@ COPY public.mdl_mnet_service2rpc (id, serviceid, rpcid) FROM stdin; -- --- TOC entry 11638 (class 0 OID 0) --- Dependencies: 688 -- Name: mdl_mnet_service2rpc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -37995,8 +33997,6 @@ SELECT pg_catalog.setval('public.mdl_mnet_service2rpc_id_seq', 15, true); -- --- TOC entry 11639 (class 0 OID 0) --- Dependencies: 689 -- Name: mdl_mnet_service_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38004,8 +34004,6 @@ SELECT pg_catalog.setval('public.mdl_mnet_service_id_seq', 4, true); -- --- TOC entry 10175 (class 0 OID 61742) --- Dependencies: 690 -- Data for Name: mdl_mnet_session; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38014,8 +34012,6 @@ COPY public.mdl_mnet_session (id, userid, username, token, mnethostid, useragent -- --- TOC entry 11640 (class 0 OID 0) --- Dependencies: 691 -- Name: mdl_mnet_session_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38023,8 +34019,6 @@ SELECT pg_catalog.setval('public.mdl_mnet_session_id_seq', 1, false); -- --- TOC entry 10177 (class 0 OID 61755) --- Dependencies: 692 -- Data for Name: mdl_mnet_sso_access_control; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38033,8 +34027,6 @@ COPY public.mdl_mnet_sso_access_control (id, username, mnet_host_id, accessctrl) -- --- TOC entry 11641 (class 0 OID 0) --- Dependencies: 693 -- Name: mdl_mnet_sso_access_control_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38042,8 +34034,6 @@ SELECT pg_catalog.setval('public.mdl_mnet_sso_access_control_id_seq', 1, false); -- --- TOC entry 10179 (class 0 OID 61763) --- Dependencies: 694 -- Data for Name: mdl_mnetservice_enrol_courses; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38052,8 +34042,6 @@ COPY public.mdl_mnetservice_enrol_courses (id, hostid, remoteid, categoryid, cat -- --- TOC entry 11642 (class 0 OID 0) --- Dependencies: 695 -- Name: mdl_mnetservice_enrol_courses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38061,8 +34049,6 @@ SELECT pg_catalog.setval('public.mdl_mnetservice_enrol_courses_id_seq', 1, false -- --- TOC entry 10181 (class 0 OID 61778) --- Dependencies: 696 -- Data for Name: mdl_mnetservice_enrol_enrolments; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38071,8 +34057,6 @@ COPY public.mdl_mnetservice_enrol_enrolments (id, hostid, userid, remotecourseid -- --- TOC entry 11643 (class 0 OID 0) --- Dependencies: 697 -- Name: mdl_mnetservice_enrol_enrolments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38080,8 +34064,6 @@ SELECT pg_catalog.setval('public.mdl_mnetservice_enrol_enrolments_id_seq', 1, fa -- --- TOC entry 10183 (class 0 OID 61786) --- Dependencies: 698 -- Data for Name: mdl_modules; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38113,8 +34095,6 @@ COPY public.mdl_modules (id, name, cron, lastcron, search, visible) FROM stdin; -- --- TOC entry 11644 (class 0 OID 0) --- Dependencies: 699 -- Name: mdl_modules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38122,8 +34102,6 @@ SELECT pg_catalog.setval('public.mdl_modules_id_seq', 23, true); -- --- TOC entry 10185 (class 0 OID 61796) --- Dependencies: 700 -- Data for Name: mdl_my_pages; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38135,8 +34113,6 @@ COPY public.mdl_my_pages (id, userid, name, private, sortorder) FROM stdin; -- --- TOC entry 11645 (class 0 OID 0) --- Dependencies: 701 -- Name: mdl_my_pages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38144,8 +34120,6 @@ SELECT pg_catalog.setval('public.mdl_my_pages_id_seq', 3, true); -- --- TOC entry 10187 (class 0 OID 61805) --- Dependencies: 702 -- Data for Name: mdl_notifications; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38154,8 +34128,6 @@ COPY public.mdl_notifications (id, useridfrom, useridto, subject, fullmessage, f -- --- TOC entry 11646 (class 0 OID 0) --- Dependencies: 703 -- Name: mdl_notifications_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38163,8 +34135,6 @@ SELECT pg_catalog.setval('public.mdl_notifications_id_seq', 1, false); -- --- TOC entry 10189 (class 0 OID 61814) --- Dependencies: 704 -- Data for Name: mdl_oauth2_access_token; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38173,8 +34143,6 @@ COPY public.mdl_oauth2_access_token (id, timecreated, timemodified, usermodified -- --- TOC entry 11647 (class 0 OID 0) --- Dependencies: 705 -- Name: mdl_oauth2_access_token_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38182,8 +34150,6 @@ SELECT pg_catalog.setval('public.mdl_oauth2_access_token_id_seq', 1, false); -- --- TOC entry 10191 (class 0 OID 61822) --- Dependencies: 706 -- Data for Name: mdl_oauth2_endpoint; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38192,8 +34158,6 @@ COPY public.mdl_oauth2_endpoint (id, timecreated, timemodified, usermodified, na -- --- TOC entry 11648 (class 0 OID 0) --- Dependencies: 707 -- Name: mdl_oauth2_endpoint_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38201,8 +34165,6 @@ SELECT pg_catalog.setval('public.mdl_oauth2_endpoint_id_seq', 1, false); -- --- TOC entry 10193 (class 0 OID 61831) --- Dependencies: 708 -- Data for Name: mdl_oauth2_issuer; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38211,8 +34173,6 @@ COPY public.mdl_oauth2_issuer (id, timecreated, timemodified, usermodified, name -- --- TOC entry 11649 (class 0 OID 0) --- Dependencies: 709 -- Name: mdl_oauth2_issuer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38220,8 +34180,6 @@ SELECT pg_catalog.setval('public.mdl_oauth2_issuer_id_seq', 1, false); -- --- TOC entry 10195 (class 0 OID 61844) --- Dependencies: 710 -- Data for Name: mdl_oauth2_system_account; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38230,8 +34188,6 @@ COPY public.mdl_oauth2_system_account (id, timecreated, timemodified, usermodifi -- --- TOC entry 11650 (class 0 OID 0) --- Dependencies: 711 -- Name: mdl_oauth2_system_account_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38239,8 +34195,6 @@ SELECT pg_catalog.setval('public.mdl_oauth2_system_account_id_seq', 1, false); -- --- TOC entry 10197 (class 0 OID 61852) --- Dependencies: 712 -- Data for Name: mdl_oauth2_user_field_mapping; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38249,8 +34203,6 @@ COPY public.mdl_oauth2_user_field_mapping (id, timemodified, timecreated, usermo -- --- TOC entry 11651 (class 0 OID 0) --- Dependencies: 713 -- Name: mdl_oauth2_user_field_mapping_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38258,8 +34210,6 @@ SELECT pg_catalog.setval('public.mdl_oauth2_user_field_mapping_id_seq', 1, false -- --- TOC entry 10199 (class 0 OID 61859) --- Dependencies: 714 -- Data for Name: mdl_page; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38268,8 +34218,6 @@ COPY public.mdl_page (id, course, name, intro, introformat, content, contentform -- --- TOC entry 11652 (class 0 OID 0) --- Dependencies: 715 -- Name: mdl_page_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38277,8 +34225,6 @@ SELECT pg_catalog.setval('public.mdl_page_id_seq', 1, false); -- --- TOC entry 10201 (class 0 OID 61875) --- Dependencies: 716 -- Data for Name: mdl_portfolio_instance; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38287,8 +34233,6 @@ COPY public.mdl_portfolio_instance (id, plugin, name, visible) FROM stdin; -- --- TOC entry 10202 (class 0 OID 61881) --- Dependencies: 717 -- Data for Name: mdl_portfolio_instance_config; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38297,8 +34241,6 @@ COPY public.mdl_portfolio_instance_config (id, instance, name, value) FROM stdin -- --- TOC entry 11653 (class 0 OID 0) --- Dependencies: 718 -- Name: mdl_portfolio_instance_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38306,8 +34248,6 @@ SELECT pg_catalog.setval('public.mdl_portfolio_instance_config_id_seq', 1, false -- --- TOC entry 11654 (class 0 OID 0) --- Dependencies: 719 -- Name: mdl_portfolio_instance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38315,8 +34255,6 @@ SELECT pg_catalog.setval('public.mdl_portfolio_instance_id_seq', 1, false); -- --- TOC entry 10205 (class 0 OID 61892) --- Dependencies: 720 -- Data for Name: mdl_portfolio_instance_user; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38325,8 +34263,6 @@ COPY public.mdl_portfolio_instance_user (id, instance, userid, name, value) FROM -- --- TOC entry 11655 (class 0 OID 0) --- Dependencies: 721 -- Name: mdl_portfolio_instance_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38334,8 +34270,6 @@ SELECT pg_catalog.setval('public.mdl_portfolio_instance_user_id_seq', 1, false); -- --- TOC entry 10207 (class 0 OID 61901) --- Dependencies: 722 -- Data for Name: mdl_portfolio_log; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38344,8 +34278,6 @@ COPY public.mdl_portfolio_log (id, userid, "time", portfolio, caller_class, call -- --- TOC entry 11656 (class 0 OID 0) --- Dependencies: 723 -- Name: mdl_portfolio_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38353,8 +34285,6 @@ SELECT pg_catalog.setval('public.mdl_portfolio_log_id_seq', 1, false); -- --- TOC entry 10209 (class 0 OID 61915) --- Dependencies: 724 -- Data for Name: mdl_portfolio_mahara_queue; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38363,8 +34293,6 @@ COPY public.mdl_portfolio_mahara_queue (id, transferid, token) FROM stdin; -- --- TOC entry 11657 (class 0 OID 0) --- Dependencies: 725 -- Name: mdl_portfolio_mahara_queue_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38372,8 +34300,6 @@ SELECT pg_catalog.setval('public.mdl_portfolio_mahara_queue_id_seq', 1, false); -- --- TOC entry 10211 (class 0 OID 61921) --- Dependencies: 726 -- Data for Name: mdl_portfolio_tempdata; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38382,8 +34308,6 @@ COPY public.mdl_portfolio_tempdata (id, data, expirytime, userid, instance, queu -- --- TOC entry 11658 (class 0 OID 0) --- Dependencies: 727 -- Name: mdl_portfolio_tempdata_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38391,8 +34315,6 @@ SELECT pg_catalog.setval('public.mdl_portfolio_tempdata_id_seq', 1, false); -- --- TOC entry 10213 (class 0 OID 61931) --- Dependencies: 728 -- Data for Name: mdl_post; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38401,8 +34323,6 @@ COPY public.mdl_post (id, module, userid, courseid, groupid, moduleid, coursemod -- --- TOC entry 11659 (class 0 OID 0) --- Dependencies: 729 -- Name: mdl_post_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38410,8 +34330,6 @@ SELECT pg_catalog.setval('public.mdl_post_id_seq', 1, false); -- --- TOC entry 10215 (class 0 OID 61953) --- Dependencies: 730 -- Data for Name: mdl_profiling; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38420,8 +34338,6 @@ COPY public.mdl_profiling (id, runid, url, data, totalexecutiontime, totalcputim -- --- TOC entry 11660 (class 0 OID 0) --- Dependencies: 731 -- Name: mdl_profiling_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38429,8 +34345,6 @@ SELECT pg_catalog.setval('public.mdl_profiling_id_seq', 1, false); -- --- TOC entry 10217 (class 0 OID 61965) --- Dependencies: 732 -- Data for Name: mdl_qtype_ddimageortext; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38439,8 +34353,6 @@ COPY public.mdl_qtype_ddimageortext (id, questionid, shuffleanswers, correctfeed -- --- TOC entry 10218 (class 0 OID 61977) --- Dependencies: 733 -- Data for Name: mdl_qtype_ddimageortext_drags; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38449,8 +34361,6 @@ COPY public.mdl_qtype_ddimageortext_drags (id, questionid, no, draggroup, infini -- --- TOC entry 11661 (class 0 OID 0) --- Dependencies: 734 -- Name: mdl_qtype_ddimageortext_drags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38458,8 +34368,6 @@ SELECT pg_catalog.setval('public.mdl_qtype_ddimageortext_drags_id_seq', 1, false -- --- TOC entry 10220 (class 0 OID 61989) --- Dependencies: 735 -- Data for Name: mdl_qtype_ddimageortext_drops; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38468,8 +34376,6 @@ COPY public.mdl_qtype_ddimageortext_drops (id, questionid, no, xleft, ytop, choi -- --- TOC entry 11662 (class 0 OID 0) --- Dependencies: 736 -- Name: mdl_qtype_ddimageortext_drops_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38477,8 +34383,6 @@ SELECT pg_catalog.setval('public.mdl_qtype_ddimageortext_drops_id_seq', 1, false -- --- TOC entry 11663 (class 0 OID 0) --- Dependencies: 737 -- Name: mdl_qtype_ddimageortext_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38486,8 +34390,6 @@ SELECT pg_catalog.setval('public.mdl_qtype_ddimageortext_id_seq', 1, false); -- --- TOC entry 10223 (class 0 OID 62004) --- Dependencies: 738 -- Data for Name: mdl_qtype_ddmarker; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38496,8 +34398,6 @@ COPY public.mdl_qtype_ddmarker (id, questionid, shuffleanswers, correctfeedback, -- --- TOC entry 10224 (class 0 OID 62017) --- Dependencies: 739 -- Data for Name: mdl_qtype_ddmarker_drags; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38506,8 +34406,6 @@ COPY public.mdl_qtype_ddmarker_drags (id, questionid, no, label, infinite, noofd -- --- TOC entry 11664 (class 0 OID 0) --- Dependencies: 740 -- Name: mdl_qtype_ddmarker_drags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38515,8 +34413,6 @@ SELECT pg_catalog.setval('public.mdl_qtype_ddmarker_drags_id_seq', 1, false); -- --- TOC entry 10226 (class 0 OID 62029) --- Dependencies: 741 -- Data for Name: mdl_qtype_ddmarker_drops; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38525,8 +34421,6 @@ COPY public.mdl_qtype_ddmarker_drops (id, questionid, no, shape, coords, choice) -- --- TOC entry 11665 (class 0 OID 0) --- Dependencies: 742 -- Name: mdl_qtype_ddmarker_drops_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38534,8 +34428,6 @@ SELECT pg_catalog.setval('public.mdl_qtype_ddmarker_drops_id_seq', 1, false); -- --- TOC entry 11666 (class 0 OID 0) --- Dependencies: 743 -- Name: mdl_qtype_ddmarker_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38543,8 +34435,6 @@ SELECT pg_catalog.setval('public.mdl_qtype_ddmarker_id_seq', 1, false); -- --- TOC entry 10229 (class 0 OID 62042) --- Dependencies: 744 -- Data for Name: mdl_qtype_essay_options; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38553,8 +34443,6 @@ COPY public.mdl_qtype_essay_options (id, questionid, responseformat, responsereq -- --- TOC entry 11667 (class 0 OID 0) --- Dependencies: 745 -- Name: mdl_qtype_essay_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38562,8 +34450,6 @@ SELECT pg_catalog.setval('public.mdl_qtype_essay_options_id_seq', 1, false); -- --- TOC entry 10231 (class 0 OID 62057) --- Dependencies: 746 -- Data for Name: mdl_qtype_match_options; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38572,8 +34458,6 @@ COPY public.mdl_qtype_match_options (id, questionid, shuffleanswers, correctfeed -- --- TOC entry 11668 (class 0 OID 0) --- Dependencies: 747 -- Name: mdl_qtype_match_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38581,8 +34465,6 @@ SELECT pg_catalog.setval('public.mdl_qtype_match_options_id_seq', 1, false); -- --- TOC entry 10233 (class 0 OID 62071) --- Dependencies: 748 -- Data for Name: mdl_qtype_match_subquestions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38591,8 +34473,6 @@ COPY public.mdl_qtype_match_subquestions (id, questionid, questiontext, question -- --- TOC entry 11669 (class 0 OID 0) --- Dependencies: 749 -- Name: mdl_qtype_match_subquestions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38600,8 +34480,6 @@ SELECT pg_catalog.setval('public.mdl_qtype_match_subquestions_id_seq', 1, false) -- --- TOC entry 10235 (class 0 OID 62082) --- Dependencies: 750 -- Data for Name: mdl_qtype_multichoice_options; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38610,8 +34488,6 @@ COPY public.mdl_qtype_multichoice_options (id, questionid, layout, single, shuff -- --- TOC entry 11670 (class 0 OID 0) --- Dependencies: 751 -- Name: mdl_qtype_multichoice_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38619,8 +34495,6 @@ SELECT pg_catalog.setval('public.mdl_qtype_multichoice_options_id_seq', 1, false -- --- TOC entry 10237 (class 0 OID 62100) --- Dependencies: 752 -- Data for Name: mdl_qtype_randomsamatch_options; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38629,8 +34503,6 @@ COPY public.mdl_qtype_randomsamatch_options (id, questionid, choose, subcats, co -- --- TOC entry 11671 (class 0 OID 0) --- Dependencies: 753 -- Name: mdl_qtype_randomsamatch_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38638,8 +34510,6 @@ SELECT pg_catalog.setval('public.mdl_qtype_randomsamatch_options_id_seq', 1, fal -- --- TOC entry 10239 (class 0 OID 62115) --- Dependencies: 754 -- Data for Name: mdl_qtype_shortanswer_options; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38648,8 +34518,6 @@ COPY public.mdl_qtype_shortanswer_options (id, questionid, usecase) FROM stdin; -- --- TOC entry 11672 (class 0 OID 0) --- Dependencies: 755 -- Name: mdl_qtype_shortanswer_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38657,8 +34525,6 @@ SELECT pg_catalog.setval('public.mdl_qtype_shortanswer_options_id_seq', 1, false -- --- TOC entry 10241 (class 0 OID 62122) --- Dependencies: 756 -- Data for Name: mdl_question; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38667,8 +34533,6 @@ COPY public.mdl_question (id, category, parent, name, questiontext, questiontext -- --- TOC entry 10242 (class 0 OID 62142) --- Dependencies: 757 -- Data for Name: mdl_question_answers; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38677,8 +34541,6 @@ COPY public.mdl_question_answers (id, question, answer, answerformat, fraction, -- --- TOC entry 11673 (class 0 OID 0) --- Dependencies: 758 -- Name: mdl_question_answers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38686,8 +34548,6 @@ SELECT pg_catalog.setval('public.mdl_question_answers_id_seq', 1, false); -- --- TOC entry 10244 (class 0 OID 62154) --- Dependencies: 759 -- Data for Name: mdl_question_attempt_step_data; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38696,8 +34556,6 @@ COPY public.mdl_question_attempt_step_data (id, attemptstepid, name, value) FROM -- --- TOC entry 11674 (class 0 OID 0) --- Dependencies: 760 -- Name: mdl_question_attempt_step_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38705,8 +34563,6 @@ SELECT pg_catalog.setval('public.mdl_question_attempt_step_data_id_seq', 1, fals -- --- TOC entry 10246 (class 0 OID 62163) --- Dependencies: 761 -- Data for Name: mdl_question_attempt_steps; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38715,8 +34571,6 @@ COPY public.mdl_question_attempt_steps (id, questionattemptid, sequencenumber, s -- --- TOC entry 11675 (class 0 OID 0) --- Dependencies: 762 -- Name: mdl_question_attempt_steps_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38724,8 +34578,6 @@ SELECT pg_catalog.setval('public.mdl_question_attempt_steps_id_seq', 1, false); -- --- TOC entry 10248 (class 0 OID 62169) --- Dependencies: 763 -- Data for Name: mdl_question_attempts; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38734,8 +34586,6 @@ COPY public.mdl_question_attempts (id, questionusageid, slot, behaviour, questio -- --- TOC entry 11676 (class 0 OID 0) --- Dependencies: 764 -- Name: mdl_question_attempts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38743,8 +34593,6 @@ SELECT pg_catalog.setval('public.mdl_question_attempts_id_seq', 1, false); -- --- TOC entry 10250 (class 0 OID 62181) --- Dependencies: 765 -- Data for Name: mdl_question_calculated; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38753,8 +34601,6 @@ COPY public.mdl_question_calculated (id, question, answer, tolerance, tolerancet -- --- TOC entry 11677 (class 0 OID 0) --- Dependencies: 766 -- Name: mdl_question_calculated_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38762,8 +34608,6 @@ SELECT pg_catalog.setval('public.mdl_question_calculated_id_seq', 1, false); -- --- TOC entry 10252 (class 0 OID 62192) --- Dependencies: 767 -- Data for Name: mdl_question_calculated_options; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38772,8 +34616,6 @@ COPY public.mdl_question_calculated_options (id, question, synchronize, single, -- --- TOC entry 11678 (class 0 OID 0) --- Dependencies: 768 -- Name: mdl_question_calculated_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38781,8 +34623,6 @@ SELECT pg_catalog.setval('public.mdl_question_calculated_options_id_seq', 1, fal -- --- TOC entry 10254 (class 0 OID 62209) --- Dependencies: 769 -- Data for Name: mdl_question_categories; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38791,8 +34631,6 @@ COPY public.mdl_question_categories (id, name, contextid, info, infoformat, stam -- --- TOC entry 11679 (class 0 OID 0) --- Dependencies: 770 -- Name: mdl_question_categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38800,8 +34638,6 @@ SELECT pg_catalog.setval('public.mdl_question_categories_id_seq', 1, false); -- --- TOC entry 10256 (class 0 OID 62223) --- Dependencies: 771 -- Data for Name: mdl_question_dataset_definitions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38810,8 +34646,6 @@ COPY public.mdl_question_dataset_definitions (id, category, name, type, options, -- --- TOC entry 11680 (class 0 OID 0) --- Dependencies: 772 -- Name: mdl_question_dataset_definitions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38819,8 +34653,6 @@ SELECT pg_catalog.setval('public.mdl_question_dataset_definitions_id_seq', 1, fa -- --- TOC entry 10258 (class 0 OID 62236) --- Dependencies: 773 -- Data for Name: mdl_question_dataset_items; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38829,8 +34661,6 @@ COPY public.mdl_question_dataset_items (id, definition, itemnumber, value) FROM -- --- TOC entry 11681 (class 0 OID 0) --- Dependencies: 774 -- Name: mdl_question_dataset_items_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38838,8 +34668,6 @@ SELECT pg_catalog.setval('public.mdl_question_dataset_items_id_seq', 1, false); -- --- TOC entry 10260 (class 0 OID 62244) --- Dependencies: 775 -- Data for Name: mdl_question_datasets; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38848,8 +34676,6 @@ COPY public.mdl_question_datasets (id, question, datasetdefinition) FROM stdin; -- --- TOC entry 11682 (class 0 OID 0) --- Dependencies: 776 -- Name: mdl_question_datasets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38857,8 +34683,6 @@ SELECT pg_catalog.setval('public.mdl_question_datasets_id_seq', 1, false); -- --- TOC entry 10262 (class 0 OID 62251) --- Dependencies: 777 -- Data for Name: mdl_question_ddwtos; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38867,8 +34691,6 @@ COPY public.mdl_question_ddwtos (id, questionid, shuffleanswers, correctfeedback -- --- TOC entry 11683 (class 0 OID 0) --- Dependencies: 778 -- Name: mdl_question_ddwtos_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38876,8 +34698,6 @@ SELECT pg_catalog.setval('public.mdl_question_ddwtos_id_seq', 1, false); -- --- TOC entry 10264 (class 0 OID 62265) --- Dependencies: 779 -- Data for Name: mdl_question_gapselect; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38886,8 +34706,6 @@ COPY public.mdl_question_gapselect (id, questionid, shuffleanswers, correctfeedb -- --- TOC entry 11684 (class 0 OID 0) --- Dependencies: 780 -- Name: mdl_question_gapselect_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38895,8 +34713,6 @@ SELECT pg_catalog.setval('public.mdl_question_gapselect_id_seq', 1, false); -- --- TOC entry 10266 (class 0 OID 62279) --- Dependencies: 781 -- Data for Name: mdl_question_hints; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38905,8 +34721,6 @@ COPY public.mdl_question_hints (id, questionid, hint, hintformat, shownumcorrect -- --- TOC entry 11685 (class 0 OID 0) --- Dependencies: 782 -- Name: mdl_question_hints_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38914,8 +34728,6 @@ SELECT pg_catalog.setval('public.mdl_question_hints_id_seq', 1, false); -- --- TOC entry 11686 (class 0 OID 0) --- Dependencies: 783 -- Name: mdl_question_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38923,8 +34735,6 @@ SELECT pg_catalog.setval('public.mdl_question_id_seq', 1, false); -- --- TOC entry 10269 (class 0 OID 62290) --- Dependencies: 784 -- Data for Name: mdl_question_multianswer; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38933,8 +34743,6 @@ COPY public.mdl_question_multianswer (id, question, sequence) FROM stdin; -- --- TOC entry 11687 (class 0 OID 0) --- Dependencies: 785 -- Name: mdl_question_multianswer_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38942,8 +34750,6 @@ SELECT pg_catalog.setval('public.mdl_question_multianswer_id_seq', 1, false); -- --- TOC entry 10271 (class 0 OID 62299) --- Dependencies: 786 -- Data for Name: mdl_question_numerical; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38952,8 +34758,6 @@ COPY public.mdl_question_numerical (id, question, answer, tolerance) FROM stdin; -- --- TOC entry 11688 (class 0 OID 0) --- Dependencies: 787 -- Name: mdl_question_numerical_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38961,8 +34765,6 @@ SELECT pg_catalog.setval('public.mdl_question_numerical_id_seq', 1, false); -- --- TOC entry 10273 (class 0 OID 62307) --- Dependencies: 788 -- Data for Name: mdl_question_numerical_options; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38971,8 +34773,6 @@ COPY public.mdl_question_numerical_options (id, question, showunits, unitsleft, -- --- TOC entry 11689 (class 0 OID 0) --- Dependencies: 789 -- Name: mdl_question_numerical_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38980,8 +34780,6 @@ SELECT pg_catalog.setval('public.mdl_question_numerical_options_id_seq', 1, fals -- --- TOC entry 10275 (class 0 OID 62317) --- Dependencies: 790 -- Data for Name: mdl_question_numerical_units; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -38990,8 +34788,6 @@ COPY public.mdl_question_numerical_units (id, question, multiplier, unit) FROM s -- --- TOC entry 11690 (class 0 OID 0) --- Dependencies: 791 -- Name: mdl_question_numerical_units_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -38999,8 +34795,6 @@ SELECT pg_catalog.setval('public.mdl_question_numerical_units_id_seq', 1, false) -- --- TOC entry 10277 (class 0 OID 62325) --- Dependencies: 792 -- Data for Name: mdl_question_response_analysis; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39009,8 +34803,6 @@ COPY public.mdl_question_response_analysis (id, hashcode, whichtries, timemodifi -- --- TOC entry 11691 (class 0 OID 0) --- Dependencies: 793 -- Name: mdl_question_response_analysis_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39018,8 +34810,6 @@ SELECT pg_catalog.setval('public.mdl_question_response_analysis_id_seq', 1, fals -- --- TOC entry 10279 (class 0 OID 62336) --- Dependencies: 794 -- Data for Name: mdl_question_response_count; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39028,8 +34818,6 @@ COPY public.mdl_question_response_count (id, analysisid, try, rcount) FROM stdin -- --- TOC entry 11692 (class 0 OID 0) --- Dependencies: 795 -- Name: mdl_question_response_count_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39037,8 +34825,6 @@ SELECT pg_catalog.setval('public.mdl_question_response_count_id_seq', 1, false); -- --- TOC entry 10281 (class 0 OID 62341) --- Dependencies: 796 -- Data for Name: mdl_question_statistics; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39047,8 +34833,6 @@ COPY public.mdl_question_statistics (id, hashcode, timemodified, questionid, slo -- --- TOC entry 11693 (class 0 OID 0) --- Dependencies: 797 -- Name: mdl_question_statistics_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39056,8 +34840,6 @@ SELECT pg_catalog.setval('public.mdl_question_statistics_id_seq', 1, false); -- --- TOC entry 10283 (class 0 OID 62352) --- Dependencies: 798 -- Data for Name: mdl_question_truefalse; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39066,8 +34848,6 @@ COPY public.mdl_question_truefalse (id, question, trueanswer, falseanswer) FROM -- --- TOC entry 11694 (class 0 OID 0) --- Dependencies: 799 -- Name: mdl_question_truefalse_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39075,8 +34855,6 @@ SELECT pg_catalog.setval('public.mdl_question_truefalse_id_seq', 1, false); -- --- TOC entry 10285 (class 0 OID 62360) --- Dependencies: 800 -- Data for Name: mdl_question_usages; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39085,8 +34863,6 @@ COPY public.mdl_question_usages (id, contextid, component, preferredbehaviour) F -- --- TOC entry 11695 (class 0 OID 0) --- Dependencies: 801 -- Name: mdl_question_usages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39094,8 +34870,6 @@ SELECT pg_catalog.setval('public.mdl_question_usages_id_seq', 1, false); -- --- TOC entry 10287 (class 0 OID 62367) --- Dependencies: 802 -- Data for Name: mdl_quiz; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39104,8 +34878,6 @@ COPY public.mdl_quiz (id, course, name, intro, introformat, timeopen, timeclose, -- --- TOC entry 10288 (class 0 OID 62412) --- Dependencies: 803 -- Data for Name: mdl_quiz_attempts; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39114,8 +34886,6 @@ COPY public.mdl_quiz_attempts (id, quiz, userid, attempt, uniqueid, layout, curr -- --- TOC entry 11696 (class 0 OID 0) --- Dependencies: 804 -- Name: mdl_quiz_attempts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39123,8 +34893,6 @@ SELECT pg_catalog.setval('public.mdl_quiz_attempts_id_seq', 1, false); -- --- TOC entry 10290 (class 0 OID 62432) --- Dependencies: 805 -- Data for Name: mdl_quiz_feedback; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39133,8 +34901,6 @@ COPY public.mdl_quiz_feedback (id, quizid, feedbacktext, feedbacktextformat, min -- --- TOC entry 11697 (class 0 OID 0) --- Dependencies: 806 -- Name: mdl_quiz_feedback_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39142,8 +34908,6 @@ SELECT pg_catalog.setval('public.mdl_quiz_feedback_id_seq', 1, false); -- --- TOC entry 10292 (class 0 OID 62444) --- Dependencies: 807 -- Data for Name: mdl_quiz_grades; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39152,8 +34916,6 @@ COPY public.mdl_quiz_grades (id, quiz, userid, grade, timemodified) FROM stdin; -- --- TOC entry 11698 (class 0 OID 0) --- Dependencies: 808 -- Name: mdl_quiz_grades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39161,8 +34923,6 @@ SELECT pg_catalog.setval('public.mdl_quiz_grades_id_seq', 1, false); -- --- TOC entry 11699 (class 0 OID 0) --- Dependencies: 809 -- Name: mdl_quiz_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39170,8 +34930,6 @@ SELECT pg_catalog.setval('public.mdl_quiz_id_seq', 1, false); -- --- TOC entry 10295 (class 0 OID 62455) --- Dependencies: 810 -- Data for Name: mdl_quiz_overrides; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39180,8 +34938,6 @@ COPY public.mdl_quiz_overrides (id, quiz, groupid, userid, timeopen, timeclose, -- --- TOC entry 11700 (class 0 OID 0) --- Dependencies: 811 -- Name: mdl_quiz_overrides_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39189,8 +34945,6 @@ SELECT pg_catalog.setval('public.mdl_quiz_overrides_id_seq', 1, false); -- --- TOC entry 10297 (class 0 OID 62461) --- Dependencies: 812 -- Data for Name: mdl_quiz_overview_regrades; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39199,8 +34953,6 @@ COPY public.mdl_quiz_overview_regrades (id, questionusageid, slot, newfraction, -- --- TOC entry 11701 (class 0 OID 0) --- Dependencies: 813 -- Name: mdl_quiz_overview_regrades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39208,8 +34960,6 @@ SELECT pg_catalog.setval('public.mdl_quiz_overview_regrades_id_seq', 1, false); -- --- TOC entry 10299 (class 0 OID 62466) --- Dependencies: 814 -- Data for Name: mdl_quiz_reports; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39222,8 +34972,6 @@ COPY public.mdl_quiz_reports (id, name, displayorder, capability) FROM stdin; -- --- TOC entry 11702 (class 0 OID 0) --- Dependencies: 815 -- Name: mdl_quiz_reports_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39231,8 +34979,6 @@ SELECT pg_catalog.setval('public.mdl_quiz_reports_id_seq', 4, true); -- --- TOC entry 10301 (class 0 OID 62474) --- Dependencies: 816 -- Data for Name: mdl_quiz_sections; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39241,8 +34987,6 @@ COPY public.mdl_quiz_sections (id, quizid, firstslot, heading, shufflequestions) -- --- TOC entry 11703 (class 0 OID 0) --- Dependencies: 817 -- Name: mdl_quiz_sections_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39250,8 +34994,6 @@ SELECT pg_catalog.setval('public.mdl_quiz_sections_id_seq', 1, false); -- --- TOC entry 10303 (class 0 OID 62483) --- Dependencies: 818 -- Data for Name: mdl_quiz_slot_tags; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39260,8 +35002,6 @@ COPY public.mdl_quiz_slot_tags (id, slotid, tagid, tagname) FROM stdin; -- --- TOC entry 11704 (class 0 OID 0) --- Dependencies: 819 -- Name: mdl_quiz_slot_tags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39269,8 +35009,6 @@ SELECT pg_catalog.setval('public.mdl_quiz_slot_tags_id_seq', 1, false); -- --- TOC entry 10305 (class 0 OID 62488) --- Dependencies: 820 -- Data for Name: mdl_quiz_slots; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39279,8 +35017,6 @@ COPY public.mdl_quiz_slots (id, slot, quizid, page, requireprevious, questionid, -- --- TOC entry 11705 (class 0 OID 0) --- Dependencies: 821 -- Name: mdl_quiz_slots_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39288,8 +35024,6 @@ SELECT pg_catalog.setval('public.mdl_quiz_slots_id_seq', 1, false); -- --- TOC entry 10307 (class 0 OID 62497) --- Dependencies: 822 -- Data for Name: mdl_quiz_statistics; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39298,8 +35032,6 @@ COPY public.mdl_quiz_statistics (id, hashcode, whichattempts, timemodified, firs -- --- TOC entry 11706 (class 0 OID 0) --- Dependencies: 823 -- Name: mdl_quiz_statistics_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39307,8 +35039,6 @@ SELECT pg_catalog.setval('public.mdl_quiz_statistics_id_seq', 1, false); -- --- TOC entry 10309 (class 0 OID 62503) --- Dependencies: 824 -- Data for Name: mdl_quizaccess_seb_quizsettings; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39317,8 +35047,6 @@ COPY public.mdl_quizaccess_seb_quizsettings (id, quizid, cmid, templateid, requi -- --- TOC entry 11707 (class 0 OID 0) --- Dependencies: 825 -- Name: mdl_quizaccess_seb_quizsettings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39326,8 +35054,6 @@ SELECT pg_catalog.setval('public.mdl_quizaccess_seb_quizsettings_id_seq', 1, fal -- --- TOC entry 10311 (class 0 OID 62514) --- Dependencies: 826 -- Data for Name: mdl_quizaccess_seb_template; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39336,8 +35062,6 @@ COPY public.mdl_quizaccess_seb_template (id, name, description, content, enabled -- --- TOC entry 11708 (class 0 OID 0) --- Dependencies: 827 -- Name: mdl_quizaccess_seb_template_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39345,8 +35069,6 @@ SELECT pg_catalog.setval('public.mdl_quizaccess_seb_template_id_seq', 1, false); -- --- TOC entry 10313 (class 0 OID 62526) --- Dependencies: 828 -- Data for Name: mdl_rating; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39355,8 +35077,6 @@ COPY public.mdl_rating (id, contextid, component, ratingarea, itemid, scaleid, r -- --- TOC entry 11709 (class 0 OID 0) --- Dependencies: 829 -- Name: mdl_rating_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39364,8 +35084,6 @@ SELECT pg_catalog.setval('public.mdl_rating_id_seq', 1, false); -- --- TOC entry 10315 (class 0 OID 62533) --- Dependencies: 830 -- Data for Name: mdl_registration_hubs; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39374,8 +35092,6 @@ COPY public.mdl_registration_hubs (id, token, hubname, huburl, confirmed, secret -- --- TOC entry 11710 (class 0 OID 0) --- Dependencies: 831 -- Name: mdl_registration_hubs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39383,8 +35099,6 @@ SELECT pg_catalog.setval('public.mdl_registration_hubs_id_seq', 1, false); -- --- TOC entry 10317 (class 0 OID 62546) --- Dependencies: 832 -- Data for Name: mdl_repository; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39401,8 +35115,6 @@ COPY public.mdl_repository (id, type, visible, sortorder) FROM stdin; -- --- TOC entry 11711 (class 0 OID 0) --- Dependencies: 833 -- Name: mdl_repository_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39410,8 +35122,6 @@ SELECT pg_catalog.setval('public.mdl_repository_id_seq', 8, true); -- --- TOC entry 10319 (class 0 OID 62554) --- Dependencies: 834 -- Data for Name: mdl_repository_instance_config; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39420,8 +35130,6 @@ COPY public.mdl_repository_instance_config (id, instanceid, name, value) FROM st -- --- TOC entry 11712 (class 0 OID 0) --- Dependencies: 835 -- Name: mdl_repository_instance_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39429,8 +35137,6 @@ SELECT pg_catalog.setval('public.mdl_repository_instance_config_id_seq', 1, fals -- --- TOC entry 10321 (class 0 OID 62563) --- Dependencies: 836 -- Data for Name: mdl_repository_instances; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39447,8 +35153,6 @@ COPY public.mdl_repository_instances (id, name, typeid, userid, contextid, usern -- --- TOC entry 11713 (class 0 OID 0) --- Dependencies: 837 -- Name: mdl_repository_instances_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39456,8 +35160,6 @@ SELECT pg_catalog.setval('public.mdl_repository_instances_id_seq', 8, true); -- --- TOC entry 10323 (class 0 OID 62574) --- Dependencies: 838 -- Data for Name: mdl_repository_onedrive_access; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39466,8 +35168,6 @@ COPY public.mdl_repository_onedrive_access (id, timemodified, timecreated, userm -- --- TOC entry 11714 (class 0 OID 0) --- Dependencies: 839 -- Name: mdl_repository_onedrive_access_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39475,8 +35175,6 @@ SELECT pg_catalog.setval('public.mdl_repository_onedrive_access_id_seq', 1, fals -- --- TOC entry 10325 (class 0 OID 62584) --- Dependencies: 840 -- Data for Name: mdl_resource; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39485,8 +35183,6 @@ COPY public.mdl_resource (id, course, name, intro, introformat, tobemigrated, le -- --- TOC entry 11715 (class 0 OID 0) --- Dependencies: 841 -- Name: mdl_resource_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39494,8 +35190,6 @@ SELECT pg_catalog.setval('public.mdl_resource_id_seq', 1, false); -- --- TOC entry 10327 (class 0 OID 62601) --- Dependencies: 842 -- Data for Name: mdl_resource_old; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39504,8 +35198,6 @@ COPY public.mdl_resource_old (id, course, name, type, reference, intro, introfor -- --- TOC entry 11716 (class 0 OID 0) --- Dependencies: 843 -- Name: mdl_resource_old_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39513,8 +35205,6 @@ SELECT pg_catalog.setval('public.mdl_resource_old_id_seq', 1, false); -- --- TOC entry 10329 (class 0 OID 62617) --- Dependencies: 844 -- Data for Name: mdl_role; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39531,8 +35221,6 @@ COPY public.mdl_role (id, name, shortname, description, sortorder, archetype) FR -- --- TOC entry 10330 (class 0 OID 62627) --- Dependencies: 845 -- Data for Name: mdl_role_allow_assign; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39548,8 +35236,6 @@ COPY public.mdl_role_allow_assign (id, roleid, allowassign) FROM stdin; -- --- TOC entry 11717 (class 0 OID 0) --- Dependencies: 846 -- Name: mdl_role_allow_assign_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39557,8 +35243,6 @@ SELECT pg_catalog.setval('public.mdl_role_allow_assign_id_seq', 7, true); -- --- TOC entry 10332 (class 0 OID 62634) --- Dependencies: 847 -- Data for Name: mdl_role_allow_override; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39578,8 +35262,6 @@ COPY public.mdl_role_allow_override (id, roleid, allowoverride) FROM stdin; -- --- TOC entry 11718 (class 0 OID 0) --- Dependencies: 848 -- Name: mdl_role_allow_override_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39587,8 +35269,6 @@ SELECT pg_catalog.setval('public.mdl_role_allow_override_id_seq', 11, true); -- --- TOC entry 10334 (class 0 OID 62641) --- Dependencies: 849 -- Data for Name: mdl_role_allow_switch; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39606,8 +35286,6 @@ COPY public.mdl_role_allow_switch (id, roleid, allowswitch) FROM stdin; -- --- TOC entry 11719 (class 0 OID 0) --- Dependencies: 850 -- Name: mdl_role_allow_switch_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39615,8 +35293,6 @@ SELECT pg_catalog.setval('public.mdl_role_allow_switch_id_seq', 9, true); -- --- TOC entry 10336 (class 0 OID 62646) --- Dependencies: 851 -- Data for Name: mdl_role_allow_view; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39649,8 +35325,6 @@ COPY public.mdl_role_allow_view (id, roleid, allowview) FROM stdin; -- --- TOC entry 11720 (class 0 OID 0) --- Dependencies: 852 -- Name: mdl_role_allow_view_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39658,8 +35332,6 @@ SELECT pg_catalog.setval('public.mdl_role_allow_view_id_seq', 24, true); -- --- TOC entry 10338 (class 0 OID 62651) --- Dependencies: 853 -- Data for Name: mdl_role_assignments; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -39668,8 +35340,6 @@ COPY public.mdl_role_assignments (id, roleid, contextid, userid, timemodified, m -- --- TOC entry 11721 (class 0 OID 0) --- Dependencies: 854 -- Name: mdl_role_assignments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -39677,8 +35347,6 @@ SELECT pg_catalog.setval('public.mdl_role_assignments_id_seq', 1, false); -- --- TOC entry 10340 (class 0 OID 62664) --- Dependencies: 855 -- Data for Name: mdl_role_capabilities; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41105,8 +36773,6 @@ COPY public.mdl_role_capabilities (id, contextid, roleid, capability, permission -- --- TOC entry 11722 (class 0 OID 0) --- Dependencies: 856 -- Name: mdl_role_capabilities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41114,8 +36780,6 @@ SELECT pg_catalog.setval('public.mdl_role_capabilities_id_seq', 1418, true); -- --- TOC entry 10342 (class 0 OID 62675) --- Dependencies: 857 -- Data for Name: mdl_role_context_levels; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41135,8 +36799,6 @@ COPY public.mdl_role_context_levels (id, roleid, contextlevel) FROM stdin; -- --- TOC entry 11723 (class 0 OID 0) --- Dependencies: 858 -- Name: mdl_role_context_levels_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41144,8 +36806,6 @@ SELECT pg_catalog.setval('public.mdl_role_context_levels_id_seq', 11, true); -- --- TOC entry 11724 (class 0 OID 0) --- Dependencies: 859 -- Name: mdl_role_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41153,8 +36813,6 @@ SELECT pg_catalog.setval('public.mdl_role_id_seq', 8, true); -- --- TOC entry 10345 (class 0 OID 62682) --- Dependencies: 860 -- Data for Name: mdl_role_names; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41163,8 +36821,6 @@ COPY public.mdl_role_names (id, roleid, contextid, name) FROM stdin; -- --- TOC entry 11725 (class 0 OID 0) --- Dependencies: 861 -- Name: mdl_role_names_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41172,8 +36828,6 @@ SELECT pg_catalog.setval('public.mdl_role_names_id_seq', 1, false); -- --- TOC entry 10347 (class 0 OID 62690) --- Dependencies: 862 -- Data for Name: mdl_scale; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41184,8 +36838,6 @@ COPY public.mdl_scale (id, courseid, userid, name, scale, description, descripti -- --- TOC entry 10348 (class 0 OID 62701) --- Dependencies: 863 -- Data for Name: mdl_scale_history; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41194,8 +36846,6 @@ COPY public.mdl_scale_history (id, action, oldid, source, timemodified, loggedus -- --- TOC entry 11726 (class 0 OID 0) --- Dependencies: 864 -- Name: mdl_scale_history_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41203,8 +36853,6 @@ SELECT pg_catalog.setval('public.mdl_scale_history_id_seq', 1, false); -- --- TOC entry 11727 (class 0 OID 0) --- Dependencies: 865 -- Name: mdl_scale_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41212,8 +36860,6 @@ SELECT pg_catalog.setval('public.mdl_scale_id_seq', 2, true); -- --- TOC entry 10351 (class 0 OID 62715) --- Dependencies: 866 -- Data for Name: mdl_scorm; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41222,8 +36868,6 @@ COPY public.mdl_scorm (id, course, name, scormtype, reference, intro, introforma -- --- TOC entry 10352 (class 0 OID 62757) --- Dependencies: 867 -- Data for Name: mdl_scorm_aicc_session; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41232,8 +36876,6 @@ COPY public.mdl_scorm_aicc_session (id, userid, scormid, hacpsession, scoid, sco -- --- TOC entry 11728 (class 0 OID 0) --- Dependencies: 868 -- Name: mdl_scorm_aicc_session_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41241,8 +36883,6 @@ SELECT pg_catalog.setval('public.mdl_scorm_aicc_session_id_seq', 1, false); -- --- TOC entry 11729 (class 0 OID 0) --- Dependencies: 869 -- Name: mdl_scorm_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41250,8 +36890,6 @@ SELECT pg_catalog.setval('public.mdl_scorm_id_seq', 1, false); -- --- TOC entry 10355 (class 0 OID 62773) --- Dependencies: 870 -- Data for Name: mdl_scorm_scoes; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41260,8 +36898,6 @@ COPY public.mdl_scorm_scoes (id, scorm, manifest, organization, parent, identifi -- --- TOC entry 10356 (class 0 OID 62787) --- Dependencies: 871 -- Data for Name: mdl_scorm_scoes_data; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41270,8 +36906,6 @@ COPY public.mdl_scorm_scoes_data (id, scoid, name, value) FROM stdin; -- --- TOC entry 11730 (class 0 OID 0) --- Dependencies: 872 -- Name: mdl_scorm_scoes_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41279,8 +36913,6 @@ SELECT pg_catalog.setval('public.mdl_scorm_scoes_data_id_seq', 1, false); -- --- TOC entry 11731 (class 0 OID 0) --- Dependencies: 873 -- Name: mdl_scorm_scoes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41288,8 +36920,6 @@ SELECT pg_catalog.setval('public.mdl_scorm_scoes_id_seq', 1, false); -- --- TOC entry 10359 (class 0 OID 62799) --- Dependencies: 874 -- Data for Name: mdl_scorm_scoes_track; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41298,8 +36928,6 @@ COPY public.mdl_scorm_scoes_track (id, userid, scormid, scoid, attempt, element, -- --- TOC entry 11732 (class 0 OID 0) --- Dependencies: 875 -- Name: mdl_scorm_scoes_track_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41307,8 +36935,6 @@ SELECT pg_catalog.setval('public.mdl_scorm_scoes_track_id_seq', 1, false); -- --- TOC entry 10361 (class 0 OID 62813) --- Dependencies: 876 -- Data for Name: mdl_scorm_seq_mapinfo; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41317,8 +36943,6 @@ COPY public.mdl_scorm_seq_mapinfo (id, scoid, objectiveid, targetobjectiveid, re -- --- TOC entry 11733 (class 0 OID 0) --- Dependencies: 877 -- Name: mdl_scorm_seq_mapinfo_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41326,8 +36950,6 @@ SELECT pg_catalog.setval('public.mdl_scorm_seq_mapinfo_id_seq', 1, false); -- --- TOC entry 10363 (class 0 OID 62825) --- Dependencies: 878 -- Data for Name: mdl_scorm_seq_objective; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41336,8 +36958,6 @@ COPY public.mdl_scorm_seq_objective (id, scoid, primaryobj, objectiveid, satisfi -- --- TOC entry 11734 (class 0 OID 0) --- Dependencies: 879 -- Name: mdl_scorm_seq_objective_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41345,8 +36965,6 @@ SELECT pg_catalog.setval('public.mdl_scorm_seq_objective_id_seq', 1, false); -- --- TOC entry 10365 (class 0 OID 62835) --- Dependencies: 880 -- Data for Name: mdl_scorm_seq_rolluprule; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41355,8 +36973,6 @@ COPY public.mdl_scorm_seq_rolluprule (id, scoid, childactivityset, minimumcount, -- --- TOC entry 11735 (class 0 OID 0) --- Dependencies: 881 -- Name: mdl_scorm_seq_rolluprule_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41364,8 +36980,6 @@ SELECT pg_catalog.setval('public.mdl_scorm_seq_rolluprule_id_seq', 1, false); -- --- TOC entry 10367 (class 0 OID 62846) --- Dependencies: 882 -- Data for Name: mdl_scorm_seq_rolluprulecond; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41374,8 +36988,6 @@ COPY public.mdl_scorm_seq_rolluprulecond (id, scoid, rollupruleid, operator, con -- --- TOC entry 11736 (class 0 OID 0) --- Dependencies: 883 -- Name: mdl_scorm_seq_rolluprulecond_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41383,8 +36995,6 @@ SELECT pg_catalog.setval('public.mdl_scorm_seq_rolluprulecond_id_seq', 1, false) -- --- TOC entry 10369 (class 0 OID 62855) --- Dependencies: 884 -- Data for Name: mdl_scorm_seq_rulecond; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41393,8 +37003,6 @@ COPY public.mdl_scorm_seq_rulecond (id, scoid, ruleconditionsid, refrencedobject -- --- TOC entry 11737 (class 0 OID 0) --- Dependencies: 885 -- Name: mdl_scorm_seq_rulecond_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41402,8 +37010,6 @@ SELECT pg_catalog.setval('public.mdl_scorm_seq_rulecond_id_seq', 1, false); -- --- TOC entry 10371 (class 0 OID 62866) --- Dependencies: 886 -- Data for Name: mdl_scorm_seq_ruleconds; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41412,8 +37018,6 @@ COPY public.mdl_scorm_seq_ruleconds (id, scoid, conditioncombination, ruletype, -- --- TOC entry 11738 (class 0 OID 0) --- Dependencies: 887 -- Name: mdl_scorm_seq_ruleconds_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41421,8 +37025,6 @@ SELECT pg_catalog.setval('public.mdl_scorm_seq_ruleconds_id_seq', 1, false); -- --- TOC entry 10373 (class 0 OID 62875) --- Dependencies: 888 -- Data for Name: mdl_search_index_requests; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41431,8 +37033,6 @@ COPY public.mdl_search_index_requests (id, contextid, searcharea, timerequested, -- --- TOC entry 11739 (class 0 OID 0) --- Dependencies: 889 -- Name: mdl_search_index_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41440,8 +37040,6 @@ SELECT pg_catalog.setval('public.mdl_search_index_requests_id_seq', 1, false); -- --- TOC entry 10375 (class 0 OID 62885) --- Dependencies: 890 -- Data for Name: mdl_search_simpledb_index; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41450,8 +37048,6 @@ COPY public.mdl_search_simpledb_index (id, docid, itemid, title, content, contex -- --- TOC entry 11740 (class 0 OID 0) --- Dependencies: 891 -- Name: mdl_search_simpledb_index_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41459,8 +37055,6 @@ SELECT pg_catalog.setval('public.mdl_search_simpledb_index_id_seq', 1, false); -- --- TOC entry 10377 (class 0 OID 62895) --- Dependencies: 892 -- Data for Name: mdl_sessions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41509,21 +37103,18 @@ COPY public.mdl_sessions (id, state, sid, userid, sessdata, timecreated, timemod 68 0 oqoesti3mraj246rqa994umq56 0 \N 1609863506 1609863507 107.0.200.61 107.0.200.61 72 0 9kq9sa57enerhq9dkqh9pq4nq4 0 \N 1609888714 1609888714 5.189.174.129 5.189.174.129 71 0 sfv8r52dg34qrv0eon6bfhggon 2 \N 1609883714 1609892640 67.182.30.218 67.182.30.218 +74 0 ioki42g280aa1b41t9kr4m1vml 2 \N 1612797602 1612797632 67.182.30.218 67.182.30.218 \. -- --- TOC entry 11741 (class 0 OID 0) --- Dependencies: 893 -- Name: mdl_sessions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_sessions_id_seq', 72, true); +SELECT pg_catalog.setval('public.mdl_sessions_id_seq', 74, true); -- --- TOC entry 10379 (class 0 OID 62905) --- Dependencies: 894 -- Data for Name: mdl_stats_daily; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41532,8 +37123,6 @@ COPY public.mdl_stats_daily (id, courseid, timeend, roleid, stattype, stat1, sta -- --- TOC entry 11742 (class 0 OID 0) --- Dependencies: 895 -- Name: mdl_stats_daily_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41541,8 +37130,6 @@ SELECT pg_catalog.setval('public.mdl_stats_daily_id_seq', 1, false); -- --- TOC entry 10381 (class 0 OID 62916) --- Dependencies: 896 -- Data for Name: mdl_stats_monthly; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41551,8 +37138,6 @@ COPY public.mdl_stats_monthly (id, courseid, timeend, roleid, stattype, stat1, s -- --- TOC entry 11743 (class 0 OID 0) --- Dependencies: 897 -- Name: mdl_stats_monthly_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41560,8 +37145,6 @@ SELECT pg_catalog.setval('public.mdl_stats_monthly_id_seq', 1, false); -- --- TOC entry 10383 (class 0 OID 62927) --- Dependencies: 898 -- Data for Name: mdl_stats_user_daily; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41570,8 +37153,6 @@ COPY public.mdl_stats_user_daily (id, courseid, userid, roleid, timeend, statsre -- --- TOC entry 11744 (class 0 OID 0) --- Dependencies: 899 -- Name: mdl_stats_user_daily_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41579,8 +37160,6 @@ SELECT pg_catalog.setval('public.mdl_stats_user_daily_id_seq', 1, false); -- --- TOC entry 10385 (class 0 OID 62939) --- Dependencies: 900 -- Data for Name: mdl_stats_user_monthly; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41589,8 +37168,6 @@ COPY public.mdl_stats_user_monthly (id, courseid, userid, roleid, timeend, stats -- --- TOC entry 11745 (class 0 OID 0) --- Dependencies: 901 -- Name: mdl_stats_user_monthly_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41598,8 +37175,6 @@ SELECT pg_catalog.setval('public.mdl_stats_user_monthly_id_seq', 1, false); -- --- TOC entry 10387 (class 0 OID 62951) --- Dependencies: 902 -- Data for Name: mdl_stats_user_weekly; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41608,8 +37183,6 @@ COPY public.mdl_stats_user_weekly (id, courseid, userid, roleid, timeend, statsr -- --- TOC entry 11746 (class 0 OID 0) --- Dependencies: 903 -- Name: mdl_stats_user_weekly_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41617,8 +37190,6 @@ SELECT pg_catalog.setval('public.mdl_stats_user_weekly_id_seq', 1, false); -- --- TOC entry 10389 (class 0 OID 62963) --- Dependencies: 904 -- Data for Name: mdl_stats_weekly; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41627,8 +37198,6 @@ COPY public.mdl_stats_weekly (id, courseid, timeend, roleid, stattype, stat1, st -- --- TOC entry 11747 (class 0 OID 0) --- Dependencies: 905 -- Name: mdl_stats_weekly_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41636,8 +37205,6 @@ SELECT pg_catalog.setval('public.mdl_stats_weekly_id_seq', 1, false); -- --- TOC entry 10391 (class 0 OID 62974) --- Dependencies: 906 -- Data for Name: mdl_survey; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41651,8 +37218,6 @@ COPY public.mdl_survey (id, course, template, days, timecreated, timemodified, n -- --- TOC entry 10392 (class 0 OID 62989) --- Dependencies: 907 -- Data for Name: mdl_survey_analysis; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41661,8 +37226,6 @@ COPY public.mdl_survey_analysis (id, survey, userid, notes) FROM stdin; -- --- TOC entry 11748 (class 0 OID 0) --- Dependencies: 908 -- Name: mdl_survey_analysis_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41670,8 +37233,6 @@ SELECT pg_catalog.setval('public.mdl_survey_analysis_id_seq', 1, false); -- --- TOC entry 10394 (class 0 OID 62999) --- Dependencies: 909 -- Data for Name: mdl_survey_answers; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41680,8 +37241,6 @@ COPY public.mdl_survey_answers (id, userid, survey, question, "time", answer1, a -- --- TOC entry 11749 (class 0 OID 0) --- Dependencies: 910 -- Name: mdl_survey_answers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41689,8 +37248,6 @@ SELECT pg_catalog.setval('public.mdl_survey_answers_id_seq', 1, false); -- --- TOC entry 11750 (class 0 OID 0) --- Dependencies: 911 -- Name: mdl_survey_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41698,8 +37255,6 @@ SELECT pg_catalog.setval('public.mdl_survey_id_seq', 5, true); -- --- TOC entry 10397 (class 0 OID 63013) --- Dependencies: 912 -- Data for Name: mdl_survey_questions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41781,8 +37336,6 @@ COPY public.mdl_survey_questions (id, text, shorttext, multi, intro, type, optio -- --- TOC entry 11751 (class 0 OID 0) --- Dependencies: 913 -- Name: mdl_survey_questions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41790,8 +37343,6 @@ SELECT pg_catalog.setval('public.mdl_survey_questions_id_seq', 73, true); -- --- TOC entry 10399 (class 0 OID 63026) --- Dependencies: 914 -- Data for Name: mdl_tag; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41800,8 +37351,6 @@ COPY public.mdl_tag (id, userid, tagcollid, name, rawname, isstandard, descripti -- --- TOC entry 10400 (class 0 OID 63037) --- Dependencies: 915 -- Data for Name: mdl_tag_area; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41821,8 +37370,6 @@ COPY public.mdl_tag_area (id, component, itemtype, enabled, tagcollid, callback, -- --- TOC entry 11752 (class 0 OID 0) --- Dependencies: 916 -- Name: mdl_tag_area_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41830,8 +37377,6 @@ SELECT pg_catalog.setval('public.mdl_tag_area_id_seq', 11, true); -- --- TOC entry 10402 (class 0 OID 63047) --- Dependencies: 917 -- Data for Name: mdl_tag_coll; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41841,8 +37386,6 @@ COPY public.mdl_tag_coll (id, name, isdefault, component, sortorder, searchable, -- --- TOC entry 11753 (class 0 OID 0) --- Dependencies: 918 -- Name: mdl_tag_coll_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41850,8 +37393,6 @@ SELECT pg_catalog.setval('public.mdl_tag_coll_id_seq', 1, true); -- --- TOC entry 10404 (class 0 OID 63058) --- Dependencies: 919 -- Data for Name: mdl_tag_correlation; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41860,8 +37401,6 @@ COPY public.mdl_tag_correlation (id, tagid, correlatedtags) FROM stdin; -- --- TOC entry 11754 (class 0 OID 0) --- Dependencies: 920 -- Name: mdl_tag_correlation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41869,8 +37408,6 @@ SELECT pg_catalog.setval('public.mdl_tag_correlation_id_seq', 1, false); -- --- TOC entry 11755 (class 0 OID 0) --- Dependencies: 921 -- Name: mdl_tag_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41878,8 +37415,6 @@ SELECT pg_catalog.setval('public.mdl_tag_id_seq', 1, false); -- --- TOC entry 10407 (class 0 OID 63068) --- Dependencies: 922 -- Data for Name: mdl_tag_instance; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41888,8 +37423,6 @@ COPY public.mdl_tag_instance (id, tagid, component, itemtype, itemid, contextid, -- --- TOC entry 11756 (class 0 OID 0) --- Dependencies: 923 -- Name: mdl_tag_instance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41897,8 +37430,6 @@ SELECT pg_catalog.setval('public.mdl_tag_instance_id_seq', 1, false); -- --- TOC entry 10409 (class 0 OID 63078) --- Dependencies: 924 -- Data for Name: mdl_task_adhoc; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41907,8 +37438,6 @@ COPY public.mdl_task_adhoc (id, component, classname, nextruntime, faildelay, cu -- --- TOC entry 11757 (class 0 OID 0) --- Dependencies: 925 -- Name: mdl_task_adhoc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41916,8 +37445,6 @@ SELECT pg_catalog.setval('public.mdl_task_adhoc_id_seq', 1, false); -- --- TOC entry 10411 (class 0 OID 63089) --- Dependencies: 926 -- Data for Name: mdl_task_log; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -41926,8 +37453,6 @@ COPY public.mdl_task_log (id, type, component, classname, userid, timestart, tim -- --- TOC entry 11758 (class 0 OID 0) --- Dependencies: 927 -- Name: mdl_task_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -41935,8 +37460,6 @@ SELECT pg_catalog.setval('public.mdl_task_log_id_seq', 1, false); -- --- TOC entry 10413 (class 0 OID 63099) --- Dependencies: 928 -- Data for Name: mdl_task_scheduled; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42043,8 +37566,6 @@ COPY public.mdl_task_scheduled (id, component, classname, lastruntime, nextrunti -- --- TOC entry 11759 (class 0 OID 0) --- Dependencies: 929 -- Name: mdl_task_scheduled_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42052,8 +37573,6 @@ SELECT pg_catalog.setval('public.mdl_task_scheduled_id_seq', 98, true); -- --- TOC entry 10415 (class 0 OID 63117) --- Dependencies: 930 -- Data for Name: mdl_tool_cohortroles; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42062,8 +37581,6 @@ COPY public.mdl_tool_cohortroles (id, cohortid, roleid, userid, timecreated, tim -- --- TOC entry 11760 (class 0 OID 0) --- Dependencies: 931 -- Name: mdl_tool_cohortroles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42071,8 +37588,6 @@ SELECT pg_catalog.setval('public.mdl_tool_cohortroles_id_seq', 1, false); -- --- TOC entry 10417 (class 0 OID 63122) --- Dependencies: 932 -- Data for Name: mdl_tool_customlang; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42081,8 +37596,6 @@ COPY public.mdl_tool_customlang (id, lang, componentid, stringid, original, mast -- --- TOC entry 10418 (class 0 OID 63132) --- Dependencies: 933 -- Data for Name: mdl_tool_customlang_components; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42091,8 +37604,6 @@ COPY public.mdl_tool_customlang_components (id, name, version) FROM stdin; -- --- TOC entry 11761 (class 0 OID 0) --- Dependencies: 934 -- Name: mdl_tool_customlang_components_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42100,8 +37611,6 @@ SELECT pg_catalog.setval('public.mdl_tool_customlang_components_id_seq', 1, fals -- --- TOC entry 11762 (class 0 OID 0) --- Dependencies: 935 -- Name: mdl_tool_customlang_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42109,8 +37618,6 @@ SELECT pg_catalog.setval('public.mdl_tool_customlang_id_seq', 1, false); -- --- TOC entry 10421 (class 0 OID 63143) --- Dependencies: 936 -- Data for Name: mdl_tool_dataprivacy_category; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42119,8 +37626,6 @@ COPY public.mdl_tool_dataprivacy_category (id, name, description, descriptionfor -- --- TOC entry 11763 (class 0 OID 0) --- Dependencies: 937 -- Name: mdl_tool_dataprivacy_category_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42128,8 +37633,6 @@ SELECT pg_catalog.setval('public.mdl_tool_dataprivacy_category_id_seq', 1, false -- --- TOC entry 10423 (class 0 OID 63152) --- Dependencies: 938 -- Data for Name: mdl_tool_dataprivacy_ctxexpired; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42138,8 +37641,6 @@ COPY public.mdl_tool_dataprivacy_ctxexpired (id, contextid, unexpiredroles, expi -- --- TOC entry 11764 (class 0 OID 0) --- Dependencies: 939 -- Name: mdl_tool_dataprivacy_ctxexpired_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42147,8 +37648,6 @@ SELECT pg_catalog.setval('public.mdl_tool_dataprivacy_ctxexpired_id_seq', 1, fal -- --- TOC entry 10425 (class 0 OID 63161) --- Dependencies: 940 -- Data for Name: mdl_tool_dataprivacy_ctxinstance; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42157,8 +37656,6 @@ COPY public.mdl_tool_dataprivacy_ctxinstance (id, contextid, purposeid, category -- --- TOC entry 11765 (class 0 OID 0) --- Dependencies: 941 -- Name: mdl_tool_dataprivacy_ctxinstance_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42166,8 +37663,6 @@ SELECT pg_catalog.setval('public.mdl_tool_dataprivacy_ctxinstance_id_seq', 1, fa -- --- TOC entry 10427 (class 0 OID 63166) --- Dependencies: 942 -- Data for Name: mdl_tool_dataprivacy_ctxlevel; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42176,8 +37671,6 @@ COPY public.mdl_tool_dataprivacy_ctxlevel (id, contextlevel, purposeid, category -- --- TOC entry 11766 (class 0 OID 0) --- Dependencies: 943 -- Name: mdl_tool_dataprivacy_ctxlevel_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42185,8 +37678,6 @@ SELECT pg_catalog.setval('public.mdl_tool_dataprivacy_ctxlevel_id_seq', 1, false -- --- TOC entry 10429 (class 0 OID 63171) --- Dependencies: 944 -- Data for Name: mdl_tool_dataprivacy_purpose; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42195,8 +37686,6 @@ COPY public.mdl_tool_dataprivacy_purpose (id, name, description, descriptionform -- --- TOC entry 11767 (class 0 OID 0) --- Dependencies: 945 -- Name: mdl_tool_dataprivacy_purpose_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42204,8 +37693,6 @@ SELECT pg_catalog.setval('public.mdl_tool_dataprivacy_purpose_id_seq', 1, false) -- --- TOC entry 10431 (class 0 OID 63181) --- Dependencies: 946 -- Data for Name: mdl_tool_dataprivacy_purposerole; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42214,8 +37701,6 @@ COPY public.mdl_tool_dataprivacy_purposerole (id, purposeid, roleid, lawfulbases -- --- TOC entry 11768 (class 0 OID 0) --- Dependencies: 947 -- Name: mdl_tool_dataprivacy_purposerole_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42223,8 +37708,6 @@ SELECT pg_catalog.setval('public.mdl_tool_dataprivacy_purposerole_id_seq', 1, fa -- --- TOC entry 10433 (class 0 OID 63190) --- Dependencies: 948 -- Data for Name: mdl_tool_dataprivacy_request; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42233,8 +37716,6 @@ COPY public.mdl_tool_dataprivacy_request (id, type, comments, commentsformat, us -- --- TOC entry 11769 (class 0 OID 0) --- Dependencies: 949 -- Name: mdl_tool_dataprivacy_request_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42242,8 +37723,6 @@ SELECT pg_catalog.setval('public.mdl_tool_dataprivacy_request_id_seq', 1, false) -- --- TOC entry 10435 (class 0 OID 63210) --- Dependencies: 950 -- Data for Name: mdl_tool_monitor_events; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42252,8 +37731,6 @@ COPY public.mdl_tool_monitor_events (id, eventname, contextid, contextlevel, con -- --- TOC entry 11770 (class 0 OID 0) --- Dependencies: 951 -- Name: mdl_tool_monitor_events_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42261,8 +37738,6 @@ SELECT pg_catalog.setval('public.mdl_tool_monitor_events_id_seq', 1, false); -- --- TOC entry 10437 (class 0 OID 63220) --- Dependencies: 952 -- Data for Name: mdl_tool_monitor_history; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42271,8 +37746,6 @@ COPY public.mdl_tool_monitor_history (id, sid, userid, timesent) FROM stdin; -- --- TOC entry 11771 (class 0 OID 0) --- Dependencies: 953 -- Name: mdl_tool_monitor_history_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42280,8 +37753,6 @@ SELECT pg_catalog.setval('public.mdl_tool_monitor_history_id_seq', 1, false); -- --- TOC entry 10439 (class 0 OID 63225) --- Dependencies: 954 -- Data for Name: mdl_tool_monitor_rules; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42290,8 +37761,6 @@ COPY public.mdl_tool_monitor_rules (id, description, descriptionformat, name, us -- --- TOC entry 11772 (class 0 OID 0) --- Dependencies: 955 -- Name: mdl_tool_monitor_rules_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42299,8 +37768,6 @@ SELECT pg_catalog.setval('public.mdl_tool_monitor_rules_id_seq', 1, false); -- --- TOC entry 10441 (class 0 OID 63236) --- Dependencies: 956 -- Data for Name: mdl_tool_monitor_subscriptions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42309,8 +37776,6 @@ COPY public.mdl_tool_monitor_subscriptions (id, courseid, ruleid, cmid, userid, -- --- TOC entry 11773 (class 0 OID 0) --- Dependencies: 957 -- Name: mdl_tool_monitor_subscriptions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42318,8 +37783,6 @@ SELECT pg_catalog.setval('public.mdl_tool_monitor_subscriptions_id_seq', 1, fals -- --- TOC entry 10443 (class 0 OID 63243) --- Dependencies: 958 -- Data for Name: mdl_tool_policy; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42328,8 +37791,6 @@ COPY public.mdl_tool_policy (id, sortorder, currentversionid) FROM stdin; -- --- TOC entry 10444 (class 0 OID 63247) --- Dependencies: 959 -- Data for Name: mdl_tool_policy_acceptances; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42338,8 +37799,6 @@ COPY public.mdl_tool_policy_acceptances (id, policyversionid, userid, status, la -- --- TOC entry 11774 (class 0 OID 0) --- Dependencies: 960 -- Name: mdl_tool_policy_acceptances_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42347,8 +37806,6 @@ SELECT pg_catalog.setval('public.mdl_tool_policy_acceptances_id_seq', 1, false); -- --- TOC entry 11775 (class 0 OID 0) --- Dependencies: 961 -- Name: mdl_tool_policy_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42356,8 +37813,6 @@ SELECT pg_catalog.setval('public.mdl_tool_policy_id_seq', 1, false); -- --- TOC entry 10447 (class 0 OID 63258) --- Dependencies: 962 -- Data for Name: mdl_tool_policy_versions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42366,8 +37821,6 @@ COPY public.mdl_tool_policy_versions (id, name, type, audience, archived, usermo -- --- TOC entry 11776 (class 0 OID 0) --- Dependencies: 963 -- Name: mdl_tool_policy_versions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42375,8 +37828,6 @@ SELECT pg_catalog.setval('public.mdl_tool_policy_versions_id_seq', 1, false); -- --- TOC entry 10449 (class 0 OID 63273) --- Dependencies: 964 -- Data for Name: mdl_tool_recyclebin_category; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42385,8 +37836,6 @@ COPY public.mdl_tool_recyclebin_category (id, categoryid, shortname, fullname, t -- --- TOC entry 11777 (class 0 OID 0) --- Dependencies: 965 -- Name: mdl_tool_recyclebin_category_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42394,8 +37843,6 @@ SELECT pg_catalog.setval('public.mdl_tool_recyclebin_category_id_seq', 1, false) -- --- TOC entry 10451 (class 0 OID 63283) --- Dependencies: 966 -- Data for Name: mdl_tool_recyclebin_course; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42404,8 +37851,6 @@ COPY public.mdl_tool_recyclebin_course (id, courseid, section, module, name, tim -- --- TOC entry 11778 (class 0 OID 0) --- Dependencies: 967 -- Name: mdl_tool_recyclebin_course_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42413,8 +37858,6 @@ SELECT pg_catalog.setval('public.mdl_tool_recyclebin_course_id_seq', 1, false); -- --- TOC entry 10453 (class 0 OID 63289) --- Dependencies: 968 -- Data for Name: mdl_tool_usertours_steps; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42423,8 +37866,6 @@ COPY public.mdl_tool_usertours_steps (id, tourid, title, content, targettype, ta -- --- TOC entry 11779 (class 0 OID 0) --- Dependencies: 969 -- Name: mdl_tool_usertours_steps_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42432,8 +37873,6 @@ SELECT pg_catalog.setval('public.mdl_tool_usertours_steps_id_seq', 1, false); -- --- TOC entry 10455 (class 0 OID 63298) --- Dependencies: 970 -- Data for Name: mdl_tool_usertours_tours; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -42442,8 +37881,6 @@ COPY public.mdl_tool_usertours_tours (id, name, description, pathmatch, enabled, -- --- TOC entry 11780 (class 0 OID 0) --- Dependencies: 971 -- Name: mdl_tool_usertours_tours_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -42451,8 +37888,6 @@ SELECT pg_catalog.setval('public.mdl_tool_usertours_tours_id_seq', 1, false); -- --- TOC entry 10457 (class 0 OID 63309) --- Dependencies: 972 -- Data for Name: mdl_upgrade_log; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43696,8 +39131,6 @@ COPY public.mdl_upgrade_log (id, type, plugin, version, targetversion, info, det -- --- TOC entry 11781 (class 0 OID 0) --- Dependencies: 973 -- Name: mdl_upgrade_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43705,8 +39138,6 @@ SELECT pg_catalog.setval('public.mdl_upgrade_log_id_seq', 1235, true); -- --- TOC entry 10459 (class 0 OID 63318) --- Dependencies: 974 -- Data for Name: mdl_url; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43715,8 +39146,6 @@ COPY public.mdl_url (id, course, name, intro, introformat, externalurl, display, -- --- TOC entry 11782 (class 0 OID 0) --- Dependencies: 975 -- Name: mdl_url_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43724,21 +39153,17 @@ SELECT pg_catalog.setval('public.mdl_url_id_seq', 1, false); -- --- TOC entry 10461 (class 0 OID 63331) --- Dependencies: 976 -- Data for Name: mdl_user; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.mdl_user (id, auth, confirmed, policyagreed, deleted, suspended, mnethostid, username, password, idnumber, firstname, lastname, email, emailstop, icq, skype, yahoo, aim, msn, phone1, phone2, institution, department, address, city, country, lang, calendartype, theme, timezone, firstaccess, lastaccess, lastlogin, currentlogin, lastip, secret, picture, url, description, descriptionformat, mailformat, maildigest, maildisplay, autosubscribe, trackforums, timecreated, timemodified, trustbitmask, imagealt, lastnamephonetic, firstnamephonetic, middlename, alternatename, moodlenetprofile) FROM stdin; 1 manual 1 0 0 0 1 guest $2y$10$uqhnR2sWCxC8jN5iDUZh1uCs95LbjaXtf0rk/N7fufZ5BrTmUPUfq Guest user root@localhost 0 en gregorian 99 0 0 0 0 0 This user is a special user that allows read-only access to some courses. 1 1 0 2 1 0 0 1609808466 0 \N \N \N \N \N \N -2 manual 1 0 0 0 1 admin $2y$10$7e.nO1HCZAUwOjjcB9PALumA9hz4sUd4UvKgo7x1nqty7wbP1BBlq Admin User email@email.com 0 en gregorian America/Los_Angeles 1609808513 1609892614 1609808513 1609883714 67.182.30.218 0 1 1 0 1 1 0 0 1609884654 0 \N 3 manual 1 0 0 0 1 user $2y$10$7e.nO1HCZAUwOjjcB9PALumA9hz4sUd4UvKgo7x1nqty7wbP1BBlq Default User email2@email.com 0 en gregorian America/Los_Angeles 1609808513 1609892614 1609808513 1609883714 67.182.30.218 0 1 1 0 1 1 0 0 1609884654 0 \N +2 manual 1 0 0 0 1 admin $2y$10$7e.nO1HCZAUwOjjcB9PALumA9hz4sUd4UvKgo7x1nqty7wbP1BBlq Admin User email@email.com 0 en gregorian America/Los_Angeles 1609808513 1612797602 1609883714 1612797602 67.182.30.218 0 1 1 0 1 1 0 0 1609884654 0 \N \. -- --- TOC entry 10462 (class 0 OID 63383) --- Dependencies: 977 -- Data for Name: mdl_user_devices; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43747,8 +39172,6 @@ COPY public.mdl_user_devices (id, userid, appid, name, model, platform, version, -- --- TOC entry 11783 (class 0 OID 0) --- Dependencies: 978 -- Name: mdl_user_devices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43756,8 +39179,6 @@ SELECT pg_catalog.setval('public.mdl_user_devices_id_seq', 1, false); -- --- TOC entry 10464 (class 0 OID 63399) --- Dependencies: 979 -- Data for Name: mdl_user_enrolments; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43766,8 +39187,6 @@ COPY public.mdl_user_enrolments (id, status, enrolid, userid, timestart, timeend -- --- TOC entry 11784 (class 0 OID 0) --- Dependencies: 980 -- Name: mdl_user_enrolments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43775,8 +39194,6 @@ SELECT pg_catalog.setval('public.mdl_user_enrolments_id_seq', 1, false); -- --- TOC entry 11785 (class 0 OID 0) --- Dependencies: 981 -- Name: mdl_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43784,8 +39201,6 @@ SELECT pg_catalog.setval('public.mdl_user_id_seq', 2, true); -- --- TOC entry 10467 (class 0 OID 63412) --- Dependencies: 982 -- Data for Name: mdl_user_info_category; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43794,8 +39209,6 @@ COPY public.mdl_user_info_category (id, name, sortorder) FROM stdin; -- --- TOC entry 11786 (class 0 OID 0) --- Dependencies: 983 -- Name: mdl_user_info_category_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43803,8 +39216,6 @@ SELECT pg_catalog.setval('public.mdl_user_info_category_id_seq', 1, false); -- --- TOC entry 10469 (class 0 OID 63419) --- Dependencies: 984 -- Data for Name: mdl_user_info_data; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43813,8 +39224,6 @@ COPY public.mdl_user_info_data (id, userid, fieldid, data, dataformat) FROM stdi -- --- TOC entry 11787 (class 0 OID 0) --- Dependencies: 985 -- Name: mdl_user_info_data_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43822,8 +39231,6 @@ SELECT pg_catalog.setval('public.mdl_user_info_data_id_seq', 1, false); -- --- TOC entry 10471 (class 0 OID 63430) --- Dependencies: 986 -- Data for Name: mdl_user_info_field; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43832,8 +39239,6 @@ COPY public.mdl_user_info_field (id, shortname, name, datatype, description, des -- --- TOC entry 11788 (class 0 OID 0) --- Dependencies: 987 -- Name: mdl_user_info_field_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43841,8 +39246,6 @@ SELECT pg_catalog.setval('public.mdl_user_info_field_id_seq', 1, false); -- --- TOC entry 10473 (class 0 OID 63449) --- Dependencies: 988 -- Data for Name: mdl_user_lastaccess; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43851,8 +39254,6 @@ COPY public.mdl_user_lastaccess (id, userid, courseid, timeaccess) FROM stdin; -- --- TOC entry 11789 (class 0 OID 0) --- Dependencies: 989 -- Name: mdl_user_lastaccess_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43860,8 +39261,6 @@ SELECT pg_catalog.setval('public.mdl_user_lastaccess_id_seq', 1, false); -- --- TOC entry 10475 (class 0 OID 63457) --- Dependencies: 990 -- Data for Name: mdl_user_password_history; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43870,8 +39269,6 @@ COPY public.mdl_user_password_history (id, userid, hash, timecreated) FROM stdin -- --- TOC entry 11790 (class 0 OID 0) --- Dependencies: 991 -- Name: mdl_user_password_history_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43879,8 +39276,6 @@ SELECT pg_catalog.setval('public.mdl_user_password_history_id_seq', 1, false); -- --- TOC entry 10477 (class 0 OID 63463) --- Dependencies: 992 -- Data for Name: mdl_user_password_resets; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43889,8 +39284,6 @@ COPY public.mdl_user_password_resets (id, userid, timerequested, timererequested -- --- TOC entry 11791 (class 0 OID 0) --- Dependencies: 993 -- Name: mdl_user_password_resets_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43898,8 +39291,6 @@ SELECT pg_catalog.setval('public.mdl_user_password_resets_id_seq', 1, false); -- --- TOC entry 10479 (class 0 OID 63470) --- Dependencies: 994 -- Data for Name: mdl_user_preferences; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43912,8 +39303,6 @@ COPY public.mdl_user_preferences (id, userid, name, value) FROM stdin; -- --- TOC entry 11792 (class 0 OID 0) --- Dependencies: 995 -- Name: mdl_user_preferences_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43921,8 +39310,6 @@ SELECT pg_catalog.setval('public.mdl_user_preferences_id_seq', 4, true); -- --- TOC entry 10481 (class 0 OID 63481) --- Dependencies: 996 -- Data for Name: mdl_user_private_key; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43931,8 +39318,6 @@ COPY public.mdl_user_private_key (id, script, value, userid, instance, iprestric -- --- TOC entry 11793 (class 0 OID 0) --- Dependencies: 997 -- Name: mdl_user_private_key_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43940,8 +39325,6 @@ SELECT pg_catalog.setval('public.mdl_user_private_key_id_seq', 1, false); -- --- TOC entry 10483 (class 0 OID 63491) --- Dependencies: 998 -- Data for Name: mdl_wiki; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43950,8 +39333,6 @@ COPY public.mdl_wiki (id, course, name, intro, introformat, timecreated, timemod -- --- TOC entry 11794 (class 0 OID 0) --- Dependencies: 999 -- Name: mdl_wiki_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43959,8 +39340,6 @@ SELECT pg_catalog.setval('public.mdl_wiki_id_seq', 1, false); -- --- TOC entry 10485 (class 0 OID 63510) --- Dependencies: 1000 -- Data for Name: mdl_wiki_links; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43969,8 +39348,6 @@ COPY public.mdl_wiki_links (id, subwikiid, frompageid, topageid, tomissingpage) -- --- TOC entry 11795 (class 0 OID 0) --- Dependencies: 1001 -- Name: mdl_wiki_links_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43978,8 +39355,6 @@ SELECT pg_catalog.setval('public.mdl_wiki_links_id_seq', 1, false); -- --- TOC entry 10487 (class 0 OID 63518) --- Dependencies: 1002 -- Data for Name: mdl_wiki_locks; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -43988,8 +39363,6 @@ COPY public.mdl_wiki_locks (id, pageid, sectionname, userid, lockedat) FROM stdi -- --- TOC entry 11796 (class 0 OID 0) --- Dependencies: 1003 -- Name: mdl_wiki_locks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -43997,8 +39370,6 @@ SELECT pg_catalog.setval('public.mdl_wiki_locks_id_seq', 1, false); -- --- TOC entry 10489 (class 0 OID 63526) --- Dependencies: 1004 -- Data for Name: mdl_wiki_pages; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44007,8 +39378,6 @@ COPY public.mdl_wiki_pages (id, subwikiid, title, cachedcontent, timecreated, ti -- --- TOC entry 11797 (class 0 OID 0) --- Dependencies: 1005 -- Name: mdl_wiki_pages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44016,8 +39385,6 @@ SELECT pg_catalog.setval('public.mdl_wiki_pages_id_seq', 1, false); -- --- TOC entry 10491 (class 0 OID 63542) --- Dependencies: 1006 -- Data for Name: mdl_wiki_subwikis; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44026,8 +39393,6 @@ COPY public.mdl_wiki_subwikis (id, wikiid, groupid, userid) FROM stdin; -- --- TOC entry 11798 (class 0 OID 0) --- Dependencies: 1007 -- Name: mdl_wiki_subwikis_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44035,8 +39400,6 @@ SELECT pg_catalog.setval('public.mdl_wiki_subwikis_id_seq', 1, false); -- --- TOC entry 10493 (class 0 OID 63550) --- Dependencies: 1008 -- Data for Name: mdl_wiki_synonyms; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44045,8 +39408,6 @@ COPY public.mdl_wiki_synonyms (id, subwikiid, pageid, pagesynonym) FROM stdin; -- --- TOC entry 11799 (class 0 OID 0) --- Dependencies: 1009 -- Name: mdl_wiki_synonyms_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44054,8 +39415,6 @@ SELECT pg_catalog.setval('public.mdl_wiki_synonyms_id_seq', 1, false); -- --- TOC entry 10495 (class 0 OID 63558) --- Dependencies: 1010 -- Data for Name: mdl_wiki_versions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44064,8 +39423,6 @@ COPY public.mdl_wiki_versions (id, pageid, content, contentformat, version, time -- --- TOC entry 11800 (class 0 OID 0) --- Dependencies: 1011 -- Name: mdl_wiki_versions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44073,8 +39430,6 @@ SELECT pg_catalog.setval('public.mdl_wiki_versions_id_seq', 1, false); -- --- TOC entry 10497 (class 0 OID 63571) --- Dependencies: 1012 -- Data for Name: mdl_workshop; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44083,8 +39438,6 @@ COPY public.mdl_workshop (id, course, name, intro, introformat, instructauthors, -- --- TOC entry 10498 (class 0 OID 63605) --- Dependencies: 1013 -- Data for Name: mdl_workshop_aggregations; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44093,8 +39446,6 @@ COPY public.mdl_workshop_aggregations (id, workshopid, userid, gradinggrade, tim -- --- TOC entry 11801 (class 0 OID 0) --- Dependencies: 1014 -- Name: mdl_workshop_aggregations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44102,8 +39453,6 @@ SELECT pg_catalog.setval('public.mdl_workshop_aggregations_id_seq', 1, false); -- --- TOC entry 10500 (class 0 OID 63610) --- Dependencies: 1015 -- Data for Name: mdl_workshop_assessments; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44112,8 +39461,6 @@ COPY public.mdl_workshop_assessments (id, submissionid, reviewerid, weight, time -- --- TOC entry 11802 (class 0 OID 0) --- Dependencies: 1016 -- Name: mdl_workshop_assessments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44121,8 +39468,6 @@ SELECT pg_catalog.setval('public.mdl_workshop_assessments_id_seq', 1, false); -- --- TOC entry 10502 (class 0 OID 63624) --- Dependencies: 1017 -- Data for Name: mdl_workshop_grades; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44131,8 +39476,6 @@ COPY public.mdl_workshop_grades (id, assessmentid, strategy, dimensionid, grade, -- --- TOC entry 11803 (class 0 OID 0) --- Dependencies: 1018 -- Name: mdl_workshop_grades_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44140,8 +39483,6 @@ SELECT pg_catalog.setval('public.mdl_workshop_grades_id_seq', 1, false); -- --- TOC entry 11804 (class 0 OID 0) --- Dependencies: 1019 -- Name: mdl_workshop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44149,8 +39490,6 @@ SELECT pg_catalog.setval('public.mdl_workshop_id_seq', 1, false); -- --- TOC entry 10505 (class 0 OID 63636) --- Dependencies: 1020 -- Data for Name: mdl_workshop_submissions; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44159,8 +39498,6 @@ COPY public.mdl_workshop_submissions (id, workshopid, example, authorid, timecre -- --- TOC entry 11805 (class 0 OID 0) --- Dependencies: 1021 -- Name: mdl_workshop_submissions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44168,8 +39505,6 @@ SELECT pg_catalog.setval('public.mdl_workshop_submissions_id_seq', 1, false); -- --- TOC entry 10507 (class 0 OID 63652) --- Dependencies: 1022 -- Data for Name: mdl_workshopallocation_scheduled; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44178,8 +39513,6 @@ COPY public.mdl_workshopallocation_scheduled (id, workshopid, enabled, submissio -- --- TOC entry 11806 (class 0 OID 0) --- Dependencies: 1023 -- Name: mdl_workshopallocation_scheduled_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44187,8 +39520,6 @@ SELECT pg_catalog.setval('public.mdl_workshopallocation_scheduled_id_seq', 1, fa -- --- TOC entry 10509 (class 0 OID 63661) --- Dependencies: 1024 -- Data for Name: mdl_workshopeval_best_settings; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44197,8 +39528,6 @@ COPY public.mdl_workshopeval_best_settings (id, workshopid, comparison) FROM std -- --- TOC entry 11807 (class 0 OID 0) --- Dependencies: 1025 -- Name: mdl_workshopeval_best_settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44206,8 +39535,6 @@ SELECT pg_catalog.setval('public.mdl_workshopeval_best_settings_id_seq', 1, fals -- --- TOC entry 10511 (class 0 OID 63667) --- Dependencies: 1026 -- Data for Name: mdl_workshopform_accumulative; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44216,8 +39543,6 @@ COPY public.mdl_workshopform_accumulative (id, workshopid, sort, description, de -- --- TOC entry 11808 (class 0 OID 0) --- Dependencies: 1027 -- Name: mdl_workshopform_accumulative_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44225,8 +39550,6 @@ SELECT pg_catalog.setval('public.mdl_workshopform_accumulative_id_seq', 1, false -- --- TOC entry 10513 (class 0 OID 63678) --- Dependencies: 1028 -- Data for Name: mdl_workshopform_comments; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44235,8 +39558,6 @@ COPY public.mdl_workshopform_comments (id, workshopid, sort, description, descri -- --- TOC entry 11809 (class 0 OID 0) --- Dependencies: 1029 -- Name: mdl_workshopform_comments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44244,8 +39565,6 @@ SELECT pg_catalog.setval('public.mdl_workshopform_comments_id_seq', 1, false); -- --- TOC entry 10515 (class 0 OID 63688) --- Dependencies: 1030 -- Data for Name: mdl_workshopform_numerrors; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44254,8 +39573,6 @@ COPY public.mdl_workshopform_numerrors (id, workshopid, sort, description, descr -- --- TOC entry 11810 (class 0 OID 0) --- Dependencies: 1031 -- Name: mdl_workshopform_numerrors_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44263,8 +39580,6 @@ SELECT pg_catalog.setval('public.mdl_workshopform_numerrors_id_seq', 1, false); -- --- TOC entry 10517 (class 0 OID 63699) --- Dependencies: 1032 -- Data for Name: mdl_workshopform_numerrors_map; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44273,8 +39588,6 @@ COPY public.mdl_workshopform_numerrors_map (id, workshopid, nonegative, grade) F -- --- TOC entry 11811 (class 0 OID 0) --- Dependencies: 1033 -- Name: mdl_workshopform_numerrors_map_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44282,8 +39595,6 @@ SELECT pg_catalog.setval('public.mdl_workshopform_numerrors_map_id_seq', 1, fals -- --- TOC entry 10519 (class 0 OID 63704) --- Dependencies: 1034 -- Data for Name: mdl_workshopform_rubric; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44292,8 +39603,6 @@ COPY public.mdl_workshopform_rubric (id, workshopid, sort, description, descript -- --- TOC entry 10520 (class 0 OID 63712) --- Dependencies: 1035 -- Data for Name: mdl_workshopform_rubric_config; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44302,8 +39611,6 @@ COPY public.mdl_workshopform_rubric_config (id, workshopid, layout) FROM stdin; -- --- TOC entry 11812 (class 0 OID 0) --- Dependencies: 1036 -- Name: mdl_workshopform_rubric_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44311,8 +39618,6 @@ SELECT pg_catalog.setval('public.mdl_workshopform_rubric_config_id_seq', 1, fals -- --- TOC entry 11813 (class 0 OID 0) --- Dependencies: 1037 -- Name: mdl_workshopform_rubric_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44320,8 +39625,6 @@ SELECT pg_catalog.setval('public.mdl_workshopform_rubric_id_seq', 1, false); -- --- TOC entry 10523 (class 0 OID 63720) --- Dependencies: 1038 -- Data for Name: mdl_workshopform_rubric_levels; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -44330,8 +39633,6 @@ COPY public.mdl_workshopform_rubric_levels (id, dimensionid, grade, definition, -- --- TOC entry 11814 (class 0 OID 0) --- Dependencies: 1039 -- Name: mdl_workshopform_rubric_levels_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- @@ -44339,7 +39640,6 @@ SELECT pg_catalog.setval('public.mdl_workshopform_rubric_levels_id_seq', 1, fals -- --- TOC entry 7793 (class 2606 OID 64157) -- Name: mdl_analytics_indicator_calc mdl_analindicalc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44348,7 +39648,6 @@ ALTER TABLE ONLY public.mdl_analytics_indicator_calc -- --- TOC entry 7797 (class 2606 OID 64159) -- Name: mdl_analytics_models mdl_analmode_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44357,7 +39656,6 @@ ALTER TABLE ONLY public.mdl_analytics_models -- --- TOC entry 7799 (class 2606 OID 64161) -- Name: mdl_analytics_models_log mdl_analmodelog_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44366,7 +39664,6 @@ ALTER TABLE ONLY public.mdl_analytics_models_log -- --- TOC entry 7812 (class 2606 OID 64163) -- Name: mdl_analytics_predictions mdl_analpred_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44375,7 +39672,6 @@ ALTER TABLE ONLY public.mdl_analytics_predictions -- --- TOC entry 7806 (class 2606 OID 64165) -- Name: mdl_analytics_prediction_actions mdl_analpredacti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44384,7 +39680,6 @@ ALTER TABLE ONLY public.mdl_analytics_prediction_actions -- --- TOC entry 7802 (class 2606 OID 64167) -- Name: mdl_analytics_predict_samples mdl_analpredsamp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44393,7 +39688,6 @@ ALTER TABLE ONLY public.mdl_analytics_predict_samples -- --- TOC entry 7816 (class 2606 OID 64169) -- Name: mdl_analytics_train_samples mdl_analtraisamp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44402,7 +39696,6 @@ ALTER TABLE ONLY public.mdl_analytics_train_samples -- --- TOC entry 7821 (class 2606 OID 64171) -- Name: mdl_analytics_used_analysables mdl_analusedanal_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44411,7 +39704,6 @@ ALTER TABLE ONLY public.mdl_analytics_used_analysables -- --- TOC entry 7826 (class 2606 OID 64173) -- Name: mdl_analytics_used_files mdl_analusedfile_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44420,7 +39712,6 @@ ALTER TABLE ONLY public.mdl_analytics_used_files -- --- TOC entry 7894 (class 2606 OID 64175) -- Name: mdl_assignment mdl_assi_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44429,7 +39720,6 @@ ALTER TABLE ONLY public.mdl_assignment -- --- TOC entry 7831 (class 2606 OID 64177) -- Name: mdl_assign mdl_assi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44438,7 +39728,6 @@ ALTER TABLE ONLY public.mdl_assign -- --- TOC entry 7869 (class 2606 OID 64179) -- Name: mdl_assignfeedback_comments mdl_assicomm_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44447,7 +39736,6 @@ ALTER TABLE ONLY public.mdl_assignfeedback_comments -- --- TOC entry 7873 (class 2606 OID 64181) -- Name: mdl_assignfeedback_editpdf_annot mdl_assieditanno_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44456,7 +39744,6 @@ ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_annot -- --- TOC entry 7877 (class 2606 OID 64183) -- Name: mdl_assignfeedback_editpdf_cmnt mdl_assieditcmnt_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44465,7 +39752,6 @@ ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_cmnt -- --- TOC entry 7879 (class 2606 OID 64185) -- Name: mdl_assignfeedback_editpdf_queue mdl_assieditqueu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44474,7 +39760,6 @@ ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_queue -- --- TOC entry 7882 (class 2606 OID 64187) -- Name: mdl_assignfeedback_editpdf_quick mdl_assieditquic_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44483,7 +39768,6 @@ ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_quick -- --- TOC entry 7887 (class 2606 OID 64189) -- Name: mdl_assignfeedback_editpdf_rot mdl_assieditrot_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44492,7 +39776,6 @@ ALTER TABLE ONLY public.mdl_assignfeedback_editpdf_rot -- --- TOC entry 7891 (class 2606 OID 64191) -- Name: mdl_assignfeedback_file mdl_assifile_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44501,7 +39784,6 @@ ALTER TABLE ONLY public.mdl_assignfeedback_file -- --- TOC entry 7907 (class 2606 OID 64193) -- Name: mdl_assignsubmission_file mdl_assifile_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44510,7 +39792,6 @@ ALTER TABLE ONLY public.mdl_assignsubmission_file -- --- TOC entry 7837 (class 2606 OID 64195) -- Name: mdl_assign_grades mdl_assigrad_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44519,7 +39800,6 @@ ALTER TABLE ONLY public.mdl_assign_grades -- --- TOC entry 7911 (class 2606 OID 64197) -- Name: mdl_assignsubmission_onlinetext mdl_assionli_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44528,7 +39808,6 @@ ALTER TABLE ONLY public.mdl_assignsubmission_onlinetext -- --- TOC entry 7842 (class 2606 OID 64199) -- Name: mdl_assign_overrides mdl_assiover_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44537,7 +39816,6 @@ ALTER TABLE ONLY public.mdl_assign_overrides -- --- TOC entry 7846 (class 2606 OID 64201) -- Name: mdl_assign_plugin_config mdl_assiplugconf_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44546,7 +39824,6 @@ ALTER TABLE ONLY public.mdl_assign_plugin_config -- --- TOC entry 7897 (class 2606 OID 64203) -- Name: mdl_assignment_submissions mdl_assisubm_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44555,7 +39832,6 @@ ALTER TABLE ONLY public.mdl_assignment_submissions -- --- TOC entry 7855 (class 2606 OID 64205) -- Name: mdl_assign_submission mdl_assisubm_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44564,7 +39840,6 @@ ALTER TABLE ONLY public.mdl_assign_submission -- --- TOC entry 7902 (class 2606 OID 64207) -- Name: mdl_assignment_upgrade mdl_assiupgr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44573,7 +39848,6 @@ ALTER TABLE ONLY public.mdl_assignment_upgrade -- --- TOC entry 7859 (class 2606 OID 64209) -- Name: mdl_assign_user_flags mdl_assiuserflag_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44582,7 +39856,6 @@ ALTER TABLE ONLY public.mdl_assign_user_flags -- --- TOC entry 7864 (class 2606 OID 64211) -- Name: mdl_assign_user_mapping mdl_assiusermapp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44591,7 +39864,6 @@ ALTER TABLE ONLY public.mdl_assign_user_mapping -- --- TOC entry 7914 (class 2606 OID 64213) -- Name: mdl_auth_oauth2_linked_login mdl_authoautlinklogi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44600,7 +39872,6 @@ ALTER TABLE ONLY public.mdl_auth_oauth2_linked_login -- --- TOC entry 7922 (class 2606 OID 64215) -- Name: mdl_backup_controllers mdl_backcont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44609,7 +39880,6 @@ ALTER TABLE ONLY public.mdl_backup_controllers -- --- TOC entry 7928 (class 2606 OID 64217) -- Name: mdl_backup_courses mdl_backcour_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44618,7 +39888,6 @@ ALTER TABLE ONLY public.mdl_backup_courses -- --- TOC entry 7932 (class 2606 OID 64219) -- Name: mdl_backup_logs mdl_backlogs_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44627,7 +39896,6 @@ ALTER TABLE ONLY public.mdl_backup_logs -- --- TOC entry 7935 (class 2606 OID 64221) -- Name: mdl_badge mdl_badg_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44636,7 +39904,6 @@ ALTER TABLE ONLY public.mdl_badge -- --- TOC entry 7941 (class 2606 OID 64223) -- Name: mdl_badge_alignment mdl_badgalig_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44645,7 +39912,6 @@ ALTER TABLE ONLY public.mdl_badge_alignment -- --- TOC entry 7944 (class 2606 OID 64225) -- Name: mdl_badge_backpack mdl_badgback_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44654,7 +39920,6 @@ ALTER TABLE ONLY public.mdl_badge_backpack -- --- TOC entry 7948 (class 2606 OID 64227) -- Name: mdl_badge_backpack_oauth2 mdl_badgbackoaut_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44663,7 +39928,6 @@ ALTER TABLE ONLY public.mdl_badge_backpack_oauth2 -- --- TOC entry 7956 (class 2606 OID 64229) -- Name: mdl_badge_criteria mdl_badgcrit_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44672,7 +39936,6 @@ ALTER TABLE ONLY public.mdl_badge_criteria -- --- TOC entry 7959 (class 2606 OID 64231) -- Name: mdl_badge_criteria_met mdl_badgcritmet_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44681,7 +39944,6 @@ ALTER TABLE ONLY public.mdl_badge_criteria_met -- --- TOC entry 7964 (class 2606 OID 64233) -- Name: mdl_badge_criteria_param mdl_badgcritpara_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44690,7 +39952,6 @@ ALTER TABLE ONLY public.mdl_badge_criteria_param -- --- TOC entry 7967 (class 2606 OID 64235) -- Name: mdl_badge_endorsement mdl_badgendo_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44699,7 +39960,6 @@ ALTER TABLE ONLY public.mdl_badge_endorsement -- --- TOC entry 7970 (class 2606 OID 64237) -- Name: mdl_badge_external mdl_badgexte_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44708,7 +39968,6 @@ ALTER TABLE ONLY public.mdl_badge_external -- --- TOC entry 7974 (class 2606 OID 64239) -- Name: mdl_badge_external_backpack mdl_badgexteback_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44717,7 +39976,6 @@ ALTER TABLE ONLY public.mdl_badge_external_backpack -- --- TOC entry 7977 (class 2606 OID 64241) -- Name: mdl_badge_external_identifier mdl_badgexteiden_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44726,7 +39984,6 @@ ALTER TABLE ONLY public.mdl_badge_external_identifier -- --- TOC entry 7983 (class 2606 OID 64243) -- Name: mdl_badge_issued mdl_badgissu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44735,7 +39992,6 @@ ALTER TABLE ONLY public.mdl_badge_issued -- --- TOC entry 7987 (class 2606 OID 64245) -- Name: mdl_badge_manual_award mdl_badgmanuawar_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44744,7 +40000,6 @@ ALTER TABLE ONLY public.mdl_badge_manual_award -- --- TOC entry 7994 (class 2606 OID 64247) -- Name: mdl_badge_related mdl_badgrela_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44753,7 +40008,6 @@ ALTER TABLE ONLY public.mdl_badge_related -- --- TOC entry 7997 (class 2606 OID 64249) -- Name: mdl_block mdl_bloc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44762,7 +40016,6 @@ ALTER TABLE ONLY public.mdl_block -- --- TOC entry 8000 (class 2606 OID 64251) -- Name: mdl_block_instances mdl_blocinst_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44771,7 +40024,6 @@ ALTER TABLE ONLY public.mdl_block_instances -- --- TOC entry 8008 (class 2606 OID 64253) -- Name: mdl_block_positions mdl_blocposi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44780,7 +40032,6 @@ ALTER TABLE ONLY public.mdl_block_positions -- --- TOC entry 8015 (class 2606 OID 64255) -- Name: mdl_block_recentlyaccesseditems mdl_blocrece_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44789,7 +40040,6 @@ ALTER TABLE ONLY public.mdl_block_recentlyaccesseditems -- --- TOC entry 8011 (class 2606 OID 64257) -- Name: mdl_block_recent_activity mdl_blocreceacti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44798,7 +40048,6 @@ ALTER TABLE ONLY public.mdl_block_recent_activity -- --- TOC entry 8019 (class 2606 OID 64259) -- Name: mdl_block_rss_client mdl_blocrssclie_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44807,7 +40056,6 @@ ALTER TABLE ONLY public.mdl_block_rss_client -- --- TOC entry 8023 (class 2606 OID 64261) -- Name: mdl_blog_association mdl_blogasso_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44816,7 +40064,6 @@ ALTER TABLE ONLY public.mdl_blog_association -- --- TOC entry 8025 (class 2606 OID 64263) -- Name: mdl_blog_external mdl_blogexte_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44825,7 +40072,6 @@ ALTER TABLE ONLY public.mdl_blog_external -- --- TOC entry 8028 (class 2606 OID 64265) -- Name: mdl_book mdl_book_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44834,7 +40080,6 @@ ALTER TABLE ONLY public.mdl_book -- --- TOC entry 8030 (class 2606 OID 64267) -- Name: mdl_book_chapters mdl_bookchap_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44843,7 +40088,6 @@ ALTER TABLE ONLY public.mdl_book_chapters -- --- TOC entry 8033 (class 2606 OID 64269) -- Name: mdl_cache_filters mdl_cachfilt_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44852,7 +40096,6 @@ ALTER TABLE ONLY public.mdl_cache_filters -- --- TOC entry 8036 (class 2606 OID 64271) -- Name: mdl_cache_flags mdl_cachflag_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44861,7 +40104,6 @@ ALTER TABLE ONLY public.mdl_cache_flags -- --- TOC entry 8039 (class 2606 OID 64273) -- Name: mdl_capabilities mdl_capa_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44870,7 +40112,6 @@ ALTER TABLE ONLY public.mdl_capabilities -- --- TOC entry 8043 (class 2606 OID 64275) -- Name: mdl_chat mdl_chat_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44879,7 +40120,6 @@ ALTER TABLE ONLY public.mdl_chat -- --- TOC entry 8047 (class 2606 OID 64277) -- Name: mdl_chat_messages mdl_chatmess_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44888,7 +40128,6 @@ ALTER TABLE ONLY public.mdl_chat_messages -- --- TOC entry 8053 (class 2606 OID 64279) -- Name: mdl_chat_messages_current mdl_chatmesscurr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44897,7 +40136,6 @@ ALTER TABLE ONLY public.mdl_chat_messages_current -- --- TOC entry 8059 (class 2606 OID 64281) -- Name: mdl_chat_users mdl_chatuser_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44906,7 +40144,6 @@ ALTER TABLE ONLY public.mdl_chat_users -- --- TOC entry 8064 (class 2606 OID 64283) -- Name: mdl_choice mdl_choi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44915,7 +40152,6 @@ ALTER TABLE ONLY public.mdl_choice -- --- TOC entry 8067 (class 2606 OID 64285) -- Name: mdl_choice_answers mdl_choiansw_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44924,7 +40160,6 @@ ALTER TABLE ONLY public.mdl_choice_answers -- --- TOC entry 8072 (class 2606 OID 64287) -- Name: mdl_choice_options mdl_choiopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44933,7 +40168,6 @@ ALTER TABLE ONLY public.mdl_choice_options -- --- TOC entry 8075 (class 2606 OID 64289) -- Name: mdl_cohort mdl_coho_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44942,7 +40176,6 @@ ALTER TABLE ONLY public.mdl_cohort -- --- TOC entry 8079 (class 2606 OID 64291) -- Name: mdl_cohort_members mdl_cohomemb_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44951,7 +40184,6 @@ ALTER TABLE ONLY public.mdl_cohort_members -- --- TOC entry 8083 (class 2606 OID 64293) -- Name: mdl_comments mdl_comm_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44960,7 +40192,6 @@ ALTER TABLE ONLY public.mdl_comments -- --- TOC entry 8087 (class 2606 OID 64295) -- Name: mdl_competency mdl_comp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44969,7 +40200,6 @@ ALTER TABLE ONLY public.mdl_competency -- --- TOC entry 8094 (class 2606 OID 64297) -- Name: mdl_competency_coursecomp mdl_compcour_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44978,7 +40208,6 @@ ALTER TABLE ONLY public.mdl_competency_coursecomp -- --- TOC entry 8097 (class 2606 OID 64299) -- Name: mdl_competency_coursecompsetting mdl_compcour_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44987,7 +40216,6 @@ ALTER TABLE ONLY public.mdl_competency_coursecompsetting -- --- TOC entry 8099 (class 2606 OID 64301) -- Name: mdl_competency_evidence mdl_compevid_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -44996,7 +40224,6 @@ ALTER TABLE ONLY public.mdl_competency_evidence -- --- TOC entry 8102 (class 2606 OID 64303) -- Name: mdl_competency_framework mdl_compfram_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45005,7 +40232,6 @@ ALTER TABLE ONLY public.mdl_competency_framework -- --- TOC entry 8109 (class 2606 OID 64305) -- Name: mdl_competency_modulecomp mdl_compmodu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45014,7 +40240,6 @@ ALTER TABLE ONLY public.mdl_competency_modulecomp -- --- TOC entry 8116 (class 2606 OID 64307) -- Name: mdl_competency_plancomp mdl_compplan_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45023,7 +40248,6 @@ ALTER TABLE ONLY public.mdl_competency_plancomp -- --- TOC entry 8111 (class 2606 OID 64309) -- Name: mdl_competency_plan mdl_compplan_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45032,7 +40256,6 @@ ALTER TABLE ONLY public.mdl_competency_plan -- --- TOC entry 8119 (class 2606 OID 64311) -- Name: mdl_competency_relatedcomp mdl_comprela_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45041,7 +40264,6 @@ ALTER TABLE ONLY public.mdl_competency_relatedcomp -- --- TOC entry 8128 (class 2606 OID 64313) -- Name: mdl_competency_templatecomp mdl_comptemp_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45050,7 +40272,6 @@ ALTER TABLE ONLY public.mdl_competency_templatecomp -- --- TOC entry 8123 (class 2606 OID 64315) -- Name: mdl_competency_templatecohort mdl_comptemp_id5_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45059,7 +40280,6 @@ ALTER TABLE ONLY public.mdl_competency_templatecohort -- --- TOC entry 8121 (class 2606 OID 64317) -- Name: mdl_competency_template mdl_comptemp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45068,7 +40288,6 @@ ALTER TABLE ONLY public.mdl_competency_template -- --- TOC entry 8134 (class 2606 OID 64319) -- Name: mdl_competency_usercompcourse mdl_compuser_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45077,7 +40296,6 @@ ALTER TABLE ONLY public.mdl_competency_usercompcourse -- --- TOC entry 8137 (class 2606 OID 64321) -- Name: mdl_competency_usercompplan mdl_compuser_id5_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45086,7 +40304,6 @@ ALTER TABLE ONLY public.mdl_competency_usercompplan -- --- TOC entry 8140 (class 2606 OID 64323) -- Name: mdl_competency_userevidence mdl_compuser_id7_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45095,7 +40312,6 @@ ALTER TABLE ONLY public.mdl_competency_userevidence -- --- TOC entry 8143 (class 2606 OID 64325) -- Name: mdl_competency_userevidencecomp mdl_compuser_id9_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45104,7 +40320,6 @@ ALTER TABLE ONLY public.mdl_competency_userevidencecomp -- --- TOC entry 8131 (class 2606 OID 64327) -- Name: mdl_competency_usercomp mdl_compuser_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45113,7 +40328,6 @@ ALTER TABLE ONLY public.mdl_competency_usercomp -- --- TOC entry 8147 (class 2606 OID 64329) -- Name: mdl_config mdl_conf_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45122,7 +40336,6 @@ ALTER TABLE ONLY public.mdl_config -- --- TOC entry 8150 (class 2606 OID 64331) -- Name: mdl_config_log mdl_conflog_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45131,7 +40344,6 @@ ALTER TABLE ONLY public.mdl_config_log -- --- TOC entry 8154 (class 2606 OID 64333) -- Name: mdl_config_plugins mdl_confplug_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45140,7 +40352,6 @@ ALTER TABLE ONLY public.mdl_config_plugins -- --- TOC entry 8165 (class 2606 OID 64335) -- Name: mdl_context mdl_cont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45149,7 +40360,6 @@ ALTER TABLE ONLY public.mdl_context -- --- TOC entry 8159 (class 2606 OID 64337) -- Name: mdl_contentbank_content mdl_contcont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45158,7 +40368,6 @@ ALTER TABLE ONLY public.mdl_contentbank_content -- --- TOC entry 8170 (class 2606 OID 64339) -- Name: mdl_context_temp mdl_conttemp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45167,7 +40376,6 @@ ALTER TABLE ONLY public.mdl_context_temp -- --- TOC entry 8173 (class 2606 OID 64341) -- Name: mdl_course mdl_cour_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45176,7 +40384,6 @@ ALTER TABLE ONLY public.mdl_course -- --- TOC entry 8178 (class 2606 OID 64343) -- Name: mdl_course_categories mdl_courcate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45185,7 +40392,6 @@ ALTER TABLE ONLY public.mdl_course_categories -- --- TOC entry 8202 (class 2606 OID 64345) -- Name: mdl_course_completions mdl_courcomp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45194,7 +40400,6 @@ ALTER TABLE ONLY public.mdl_course_completions -- --- TOC entry 8184 (class 2606 OID 64347) -- Name: mdl_course_completion_aggr_methd mdl_courcompaggrmeth_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45203,7 +40408,6 @@ ALTER TABLE ONLY public.mdl_course_completion_aggr_methd -- --- TOC entry 8194 (class 2606 OID 64349) -- Name: mdl_course_completion_criteria mdl_courcompcrit_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45212,7 +40416,6 @@ ALTER TABLE ONLY public.mdl_course_completion_criteria -- --- TOC entry 8188 (class 2606 OID 64351) -- Name: mdl_course_completion_crit_compl mdl_courcompcritcomp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45221,7 +40424,6 @@ ALTER TABLE ONLY public.mdl_course_completion_crit_compl -- --- TOC entry 8198 (class 2606 OID 64353) -- Name: mdl_course_completion_defaults mdl_courcompdefa_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45230,7 +40432,6 @@ ALTER TABLE ONLY public.mdl_course_completion_defaults -- --- TOC entry 8209 (class 2606 OID 64355) -- Name: mdl_course_format_options mdl_courformopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45239,7 +40440,6 @@ ALTER TABLE ONLY public.mdl_course_format_options -- --- TOC entry 8213 (class 2606 OID 64357) -- Name: mdl_course_modules mdl_courmodu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45248,7 +40448,6 @@ ALTER TABLE ONLY public.mdl_course_modules -- --- TOC entry 8220 (class 2606 OID 64359) -- Name: mdl_course_modules_completion mdl_courmoducomp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45257,7 +40456,6 @@ ALTER TABLE ONLY public.mdl_course_modules_completion -- --- TOC entry 8223 (class 2606 OID 64361) -- Name: mdl_course_published mdl_courpubl_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45266,7 +40464,6 @@ ALTER TABLE ONLY public.mdl_course_published -- --- TOC entry 8225 (class 2606 OID 64363) -- Name: mdl_course_request mdl_courrequ_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45275,7 +40472,6 @@ ALTER TABLE ONLY public.mdl_course_request -- --- TOC entry 8229 (class 2606 OID 64365) -- Name: mdl_course_sections mdl_coursect_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45284,7 +40480,6 @@ ALTER TABLE ONLY public.mdl_course_sections -- --- TOC entry 8233 (class 2606 OID 64367) -- Name: mdl_customfield_category mdl_custcate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45293,7 +40488,6 @@ ALTER TABLE ONLY public.mdl_customfield_category -- --- TOC entry 8240 (class 2606 OID 64369) -- Name: mdl_customfield_data mdl_custdata_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45302,7 +40496,6 @@ ALTER TABLE ONLY public.mdl_customfield_data -- --- TOC entry 8245 (class 2606 OID 64371) -- Name: mdl_customfield_field mdl_custfiel_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45311,7 +40504,6 @@ ALTER TABLE ONLY public.mdl_customfield_field -- --- TOC entry 8248 (class 2606 OID 64373) -- Name: mdl_data mdl_data_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45320,7 +40512,6 @@ ALTER TABLE ONLY public.mdl_data -- --- TOC entry 8251 (class 2606 OID 64375) -- Name: mdl_data_content mdl_datacont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45329,7 +40520,6 @@ ALTER TABLE ONLY public.mdl_data_content -- --- TOC entry 8255 (class 2606 OID 64377) -- Name: mdl_data_fields mdl_datafiel_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45338,7 +40528,6 @@ ALTER TABLE ONLY public.mdl_data_fields -- --- TOC entry 8259 (class 2606 OID 64379) -- Name: mdl_data_records mdl_datareco_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45347,7 +40536,6 @@ ALTER TABLE ONLY public.mdl_data_records -- --- TOC entry 8262 (class 2606 OID 64381) -- Name: mdl_editor_atto_autosave mdl_editattoauto_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45356,7 +40544,6 @@ ALTER TABLE ONLY public.mdl_editor_atto_autosave -- --- TOC entry 8266 (class 2606 OID 64383) -- Name: mdl_enrol mdl_enro_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45365,7 +40552,6 @@ ALTER TABLE ONLY public.mdl_enrol -- --- TOC entry 8269 (class 2606 OID 64385) -- Name: mdl_enrol_flatfile mdl_enroflat_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45374,7 +40560,6 @@ ALTER TABLE ONLY public.mdl_enrol_flatfile -- --- TOC entry 8274 (class 2606 OID 64387) -- Name: mdl_enrol_lti_lti2_consumer mdl_enroltilti2cons_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45383,7 +40568,6 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_consumer -- --- TOC entry 8277 (class 2606 OID 64389) -- Name: mdl_enrol_lti_lti2_context mdl_enroltilti2cont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45392,7 +40576,6 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_context -- --- TOC entry 8280 (class 2606 OID 64391) -- Name: mdl_enrol_lti_lti2_nonce mdl_enroltilti2nonc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45401,7 +40584,6 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_nonce -- --- TOC entry 8284 (class 2606 OID 64393) -- Name: mdl_enrol_lti_lti2_resource_link mdl_enroltilti2resolink_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45410,7 +40592,6 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_resource_link -- --- TOC entry 8287 (class 2606 OID 64395) -- Name: mdl_enrol_lti_lti2_share_key mdl_enroltilti2sharkey_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45419,7 +40600,6 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_share_key -- --- TOC entry 8292 (class 2606 OID 64397) -- Name: mdl_enrol_lti_lti2_tool_proxy mdl_enroltilti2toolprox_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45428,7 +40608,6 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_tool_proxy -- --- TOC entry 8295 (class 2606 OID 64399) -- Name: mdl_enrol_lti_lti2_user_result mdl_enroltilti2userresu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45437,7 +40616,6 @@ ALTER TABLE ONLY public.mdl_enrol_lti_lti2_user_result -- --- TOC entry 8304 (class 2606 OID 64401) -- Name: mdl_enrol_lti_tools mdl_enroltitool_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45446,7 +40624,6 @@ ALTER TABLE ONLY public.mdl_enrol_lti_tools -- --- TOC entry 8299 (class 2606 OID 64403) -- Name: mdl_enrol_lti_tool_consumer_map mdl_enroltitoolconsmap_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45455,7 +40632,6 @@ ALTER TABLE ONLY public.mdl_enrol_lti_tool_consumer_map -- --- TOC entry 8306 (class 2606 OID 64405) -- Name: mdl_enrol_lti_users mdl_enroltiuser_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45464,7 +40640,6 @@ ALTER TABLE ONLY public.mdl_enrol_lti_users -- --- TOC entry 8312 (class 2606 OID 64407) -- Name: mdl_enrol_paypal mdl_enropayp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45473,7 +40648,6 @@ ALTER TABLE ONLY public.mdl_enrol_paypal -- --- TOC entry 8322 (class 2606 OID 64409) -- Name: mdl_event mdl_even_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45482,7 +40656,6 @@ ALTER TABLE ONLY public.mdl_event -- --- TOC entry 8334 (class 2606 OID 64411) -- Name: mdl_events_handlers mdl_evenhand_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45491,7 +40664,6 @@ ALTER TABLE ONLY public.mdl_events_handlers -- --- TOC entry 8336 (class 2606 OID 64413) -- Name: mdl_events_queue mdl_evenqueu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45500,7 +40672,6 @@ ALTER TABLE ONLY public.mdl_events_queue -- --- TOC entry 8340 (class 2606 OID 64415) -- Name: mdl_events_queue_handlers mdl_evenqueuhand_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45509,7 +40680,6 @@ ALTER TABLE ONLY public.mdl_events_queue_handlers -- --- TOC entry 8331 (class 2606 OID 64417) -- Name: mdl_event_subscriptions mdl_evensubs_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45518,7 +40688,6 @@ ALTER TABLE ONLY public.mdl_event_subscriptions -- --- TOC entry 8343 (class 2606 OID 64419) -- Name: mdl_external_functions mdl_extefunc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45527,7 +40696,6 @@ ALTER TABLE ONLY public.mdl_external_functions -- --- TOC entry 8346 (class 2606 OID 64421) -- Name: mdl_external_services mdl_exteserv_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45536,7 +40704,6 @@ ALTER TABLE ONLY public.mdl_external_services -- --- TOC entry 8350 (class 2606 OID 64423) -- Name: mdl_external_services_functions mdl_exteservfunc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45545,7 +40712,6 @@ ALTER TABLE ONLY public.mdl_external_services_functions -- --- TOC entry 8353 (class 2606 OID 64425) -- Name: mdl_external_services_users mdl_exteservuser_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45554,7 +40720,6 @@ ALTER TABLE ONLY public.mdl_external_services_users -- --- TOC entry 8359 (class 2606 OID 64427) -- Name: mdl_external_tokens mdl_extetoke_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45563,7 +40728,6 @@ ALTER TABLE ONLY public.mdl_external_tokens -- --- TOC entry 8364 (class 2606 OID 64429) -- Name: mdl_favourite mdl_favo_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45572,7 +40736,6 @@ ALTER TABLE ONLY public.mdl_favourite -- --- TOC entry 8368 (class 2606 OID 64431) -- Name: mdl_feedback mdl_feed_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45581,7 +40744,6 @@ ALTER TABLE ONLY public.mdl_feedback -- --- TOC entry 8375 (class 2606 OID 64433) -- Name: mdl_feedback_completedtmp mdl_feedcomp_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45590,7 +40752,6 @@ ALTER TABLE ONLY public.mdl_feedback_completedtmp -- --- TOC entry 8371 (class 2606 OID 64435) -- Name: mdl_feedback_completed mdl_feedcomp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45599,7 +40760,6 @@ ALTER TABLE ONLY public.mdl_feedback_completed -- --- TOC entry 8379 (class 2606 OID 64437) -- Name: mdl_feedback_item mdl_feeditem_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45608,7 +40768,6 @@ ALTER TABLE ONLY public.mdl_feedback_item -- --- TOC entry 8384 (class 2606 OID 64439) -- Name: mdl_feedback_sitecourse_map mdl_feedsitemap_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45617,7 +40776,6 @@ ALTER TABLE ONLY public.mdl_feedback_sitecourse_map -- --- TOC entry 8387 (class 2606 OID 64441) -- Name: mdl_feedback_template mdl_feedtemp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45626,7 +40784,6 @@ ALTER TABLE ONLY public.mdl_feedback_template -- --- TOC entry 8396 (class 2606 OID 64443) -- Name: mdl_feedback_valuetmp mdl_feedvalu_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45635,7 +40792,6 @@ ALTER TABLE ONLY public.mdl_feedback_valuetmp -- --- TOC entry 8391 (class 2606 OID 64445) -- Name: mdl_feedback_value mdl_feedvalu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45644,7 +40800,6 @@ ALTER TABLE ONLY public.mdl_feedback_value -- --- TOC entry 8406 (class 2606 OID 64447) -- Name: mdl_files mdl_file_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45653,7 +40808,6 @@ ALTER TABLE ONLY public.mdl_files -- --- TOC entry 8400 (class 2606 OID 64449) -- Name: mdl_file_conversion mdl_fileconv_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45662,7 +40816,6 @@ ALTER TABLE ONLY public.mdl_file_conversion -- --- TOC entry 8412 (class 2606 OID 64451) -- Name: mdl_files_reference mdl_filerefe_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45671,7 +40824,6 @@ ALTER TABLE ONLY public.mdl_files_reference -- --- TOC entry 8418 (class 2606 OID 64453) -- Name: mdl_filter_active mdl_filtacti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45680,7 +40832,6 @@ ALTER TABLE ONLY public.mdl_filter_active -- --- TOC entry 8422 (class 2606 OID 64455) -- Name: mdl_filter_config mdl_filtconf_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45689,7 +40840,6 @@ ALTER TABLE ONLY public.mdl_filter_config -- --- TOC entry 8425 (class 2606 OID 64457) -- Name: mdl_folder mdl_fold_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45698,7 +40848,6 @@ ALTER TABLE ONLY public.mdl_folder -- --- TOC entry 8428 (class 2606 OID 64459) -- Name: mdl_forum mdl_foru_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45707,7 +40856,6 @@ ALTER TABLE ONLY public.mdl_forum -- --- TOC entry 8432 (class 2606 OID 64461) -- Name: mdl_forum_digests mdl_forudige_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45716,7 +40864,6 @@ ALTER TABLE ONLY public.mdl_forum_digests -- --- TOC entry 8443 (class 2606 OID 64463) -- Name: mdl_forum_discussions mdl_forudisc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45725,7 +40872,6 @@ ALTER TABLE ONLY public.mdl_forum_discussions -- --- TOC entry 8437 (class 2606 OID 64465) -- Name: mdl_forum_discussion_subs mdl_forudiscsubs_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45734,7 +40880,6 @@ ALTER TABLE ONLY public.mdl_forum_discussion_subs -- --- TOC entry 8448 (class 2606 OID 64467) -- Name: mdl_forum_grades mdl_forugrad_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45743,7 +40888,6 @@ ALTER TABLE ONLY public.mdl_forum_grades -- --- TOC entry 8453 (class 2606 OID 64469) -- Name: mdl_forum_posts mdl_forupost_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45752,7 +40896,6 @@ ALTER TABLE ONLY public.mdl_forum_posts -- --- TOC entry 8460 (class 2606 OID 64471) -- Name: mdl_forum_queue mdl_foruqueu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45761,7 +40904,6 @@ ALTER TABLE ONLY public.mdl_forum_queue -- --- TOC entry 8464 (class 2606 OID 64473) -- Name: mdl_forum_read mdl_foruread_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45770,7 +40912,6 @@ ALTER TABLE ONLY public.mdl_forum_read -- --- TOC entry 8470 (class 2606 OID 64475) -- Name: mdl_forum_subscriptions mdl_forusubs_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45779,7 +40920,6 @@ ALTER TABLE ONLY public.mdl_forum_subscriptions -- --- TOC entry 8474 (class 2606 OID 64477) -- Name: mdl_forum_track_prefs mdl_forutracpref_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45788,7 +40928,6 @@ ALTER TABLE ONLY public.mdl_forum_track_prefs -- --- TOC entry 8478 (class 2606 OID 64479) -- Name: mdl_glossary mdl_glos_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45797,7 +40936,6 @@ ALTER TABLE ONLY public.mdl_glossary -- --- TOC entry 8481 (class 2606 OID 64481) -- Name: mdl_glossary_alias mdl_glosalia_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45806,7 +40944,6 @@ ALTER TABLE ONLY public.mdl_glossary_alias -- --- TOC entry 8484 (class 2606 OID 64483) -- Name: mdl_glossary_categories mdl_gloscate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45815,7 +40952,6 @@ ALTER TABLE ONLY public.mdl_glossary_categories -- --- TOC entry 8488 (class 2606 OID 64485) -- Name: mdl_glossary_entries mdl_glosentr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45824,7 +40960,6 @@ ALTER TABLE ONLY public.mdl_glossary_entries -- --- TOC entry 8493 (class 2606 OID 64487) -- Name: mdl_glossary_entries_categories mdl_glosentrcate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45833,7 +40968,6 @@ ALTER TABLE ONLY public.mdl_glossary_entries_categories -- --- TOC entry 8495 (class 2606 OID 64489) -- Name: mdl_glossary_formats mdl_glosform_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45842,7 +40976,6 @@ ALTER TABLE ONLY public.mdl_glossary_formats -- --- TOC entry 8584 (class 2606 OID 64491) -- Name: mdl_grading_areas mdl_gradarea_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45851,7 +40984,6 @@ ALTER TABLE ONLY public.mdl_grading_areas -- --- TOC entry 8498 (class 2606 OID 64493) -- Name: mdl_grade_categories mdl_gradcate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45860,7 +40992,6 @@ ALTER TABLE ONLY public.mdl_grade_categories -- --- TOC entry 8503 (class 2606 OID 64495) -- Name: mdl_grade_categories_history mdl_gradcatehist_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45869,7 +41000,6 @@ ALTER TABLE ONLY public.mdl_grade_categories_history -- --- TOC entry 8588 (class 2606 OID 64497) -- Name: mdl_grading_definitions mdl_graddefi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45878,7 +41008,6 @@ ALTER TABLE ONLY public.mdl_grading_definitions -- --- TOC entry 8509 (class 2606 OID 64499) -- Name: mdl_grade_grades mdl_gradgrad_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45887,7 +41016,6 @@ ALTER TABLE ONLY public.mdl_grade_grades -- --- TOC entry 8518 (class 2606 OID 64501) -- Name: mdl_grade_grades_history mdl_gradgradhist_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45896,7 +41024,6 @@ ALTER TABLE ONLY public.mdl_grade_grades_history -- --- TOC entry 8597 (class 2606 OID 64503) -- Name: mdl_gradingform_guide_comments mdl_gradguidcomm_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45905,7 +41032,6 @@ ALTER TABLE ONLY public.mdl_gradingform_guide_comments -- --- TOC entry 8600 (class 2606 OID 64505) -- Name: mdl_gradingform_guide_criteria mdl_gradguidcrit_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45914,7 +41040,6 @@ ALTER TABLE ONLY public.mdl_gradingform_guide_criteria -- --- TOC entry 8603 (class 2606 OID 64507) -- Name: mdl_gradingform_guide_fillings mdl_gradguidfill_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45923,7 +41048,6 @@ ALTER TABLE ONLY public.mdl_gradingform_guide_fillings -- --- TOC entry 8528 (class 2606 OID 64509) -- Name: mdl_grade_import_newitem mdl_gradimponewi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45932,7 +41056,6 @@ ALTER TABLE ONLY public.mdl_grade_import_newitem -- --- TOC entry 8531 (class 2606 OID 64511) -- Name: mdl_grade_import_values mdl_gradimpovalu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45941,7 +41064,6 @@ ALTER TABLE ONLY public.mdl_grade_import_values -- --- TOC entry 8593 (class 2606 OID 64513) -- Name: mdl_grading_instances mdl_gradinst_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45950,7 +41072,6 @@ ALTER TABLE ONLY public.mdl_grading_instances -- --- TOC entry 8539 (class 2606 OID 64515) -- Name: mdl_grade_items mdl_graditem_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45959,7 +41080,6 @@ ALTER TABLE ONLY public.mdl_grade_items -- --- TOC entry 8549 (class 2606 OID 64517) -- Name: mdl_grade_items_history mdl_graditemhist_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45968,7 +41088,6 @@ ALTER TABLE ONLY public.mdl_grade_items_history -- --- TOC entry 8557 (class 2606 OID 64519) -- Name: mdl_grade_letters mdl_gradlett_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45977,7 +41096,6 @@ ALTER TABLE ONLY public.mdl_grade_letters -- --- TOC entry 8561 (class 2606 OID 64521) -- Name: mdl_grade_outcomes mdl_gradoutc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45986,7 +41104,6 @@ ALTER TABLE ONLY public.mdl_grade_outcomes -- --- TOC entry 8567 (class 2606 OID 64523) -- Name: mdl_grade_outcomes_courses mdl_gradoutccour_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -45995,7 +41112,6 @@ ALTER TABLE ONLY public.mdl_grade_outcomes_courses -- --- TOC entry 8572 (class 2606 OID 64525) -- Name: mdl_grade_outcomes_history mdl_gradoutchist_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46004,7 +41120,6 @@ ALTER TABLE ONLY public.mdl_grade_outcomes_history -- --- TOC entry 8608 (class 2606 OID 64527) -- Name: mdl_gradingform_rubric_criteria mdl_gradrubrcrit_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46013,7 +41128,6 @@ ALTER TABLE ONLY public.mdl_gradingform_rubric_criteria -- --- TOC entry 8611 (class 2606 OID 64529) -- Name: mdl_gradingform_rubric_fillings mdl_gradrubrfill_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46022,7 +41136,6 @@ ALTER TABLE ONLY public.mdl_gradingform_rubric_fillings -- --- TOC entry 8617 (class 2606 OID 64531) -- Name: mdl_gradingform_rubric_levels mdl_gradrubrleve_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46031,7 +41144,6 @@ ALTER TABLE ONLY public.mdl_gradingform_rubric_levels -- --- TOC entry 8580 (class 2606 OID 64533) -- Name: mdl_grade_settings mdl_gradsett_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46040,7 +41152,6 @@ ALTER TABLE ONLY public.mdl_grade_settings -- --- TOC entry 8620 (class 2606 OID 64535) -- Name: mdl_groupings mdl_grou_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46049,7 +41160,6 @@ ALTER TABLE ONLY public.mdl_groupings -- --- TOC entry 8628 (class 2606 OID 64537) -- Name: mdl_groups mdl_grou_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46058,7 +41168,6 @@ ALTER TABLE ONLY public.mdl_groups -- --- TOC entry 8625 (class 2606 OID 64539) -- Name: mdl_groupings_groups mdl_grougrou_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46067,7 +41176,6 @@ ALTER TABLE ONLY public.mdl_groupings_groups -- --- TOC entry 8632 (class 2606 OID 64541) -- Name: mdl_groups_members mdl_groumemb_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46076,7 +41184,6 @@ ALTER TABLE ONLY public.mdl_groups_members -- --- TOC entry 8636 (class 2606 OID 64543) -- Name: mdl_h5p mdl_h5p_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46085,7 +41192,6 @@ ALTER TABLE ONLY public.mdl_h5p -- --- TOC entry 8654 (class 2606 OID 64545) -- Name: mdl_h5pactivity mdl_h5pa_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46094,7 +41200,6 @@ ALTER TABLE ONLY public.mdl_h5pactivity -- --- TOC entry 8660 (class 2606 OID 64547) -- Name: mdl_h5pactivity_attempts mdl_h5paatte_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46103,7 +41208,6 @@ ALTER TABLE ONLY public.mdl_h5pactivity_attempts -- --- TOC entry 8665 (class 2606 OID 64549) -- Name: mdl_h5pactivity_attempts_results mdl_h5paatteresu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46112,7 +41216,6 @@ ALTER TABLE ONLY public.mdl_h5pactivity_attempts_results -- --- TOC entry 8640 (class 2606 OID 64551) -- Name: mdl_h5p_contents_libraries mdl_h5pcontlibr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46121,7 +41224,6 @@ ALTER TABLE ONLY public.mdl_h5p_contents_libraries -- --- TOC entry 8643 (class 2606 OID 64553) -- Name: mdl_h5p_libraries mdl_h5plibr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46130,7 +41232,6 @@ ALTER TABLE ONLY public.mdl_h5p_libraries -- --- TOC entry 8646 (class 2606 OID 64555) -- Name: mdl_h5p_libraries_cachedassets mdl_h5plibrcach_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46139,7 +41240,6 @@ ALTER TABLE ONLY public.mdl_h5p_libraries_cachedassets -- --- TOC entry 8649 (class 2606 OID 64557) -- Name: mdl_h5p_library_dependencies mdl_h5plibrdepe_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46148,7 +41248,6 @@ ALTER TABLE ONLY public.mdl_h5p_library_dependencies -- --- TOC entry 8668 (class 2606 OID 64559) -- Name: mdl_imscp mdl_imsc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46157,7 +41256,6 @@ ALTER TABLE ONLY public.mdl_imscp -- --- TOC entry 8671 (class 2606 OID 64561) -- Name: mdl_label mdl_labe_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46166,7 +41264,6 @@ ALTER TABLE ONLY public.mdl_label -- --- TOC entry 8674 (class 2606 OID 64563) -- Name: mdl_lesson mdl_less_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46175,7 +41272,6 @@ ALTER TABLE ONLY public.mdl_lesson -- --- TOC entry 8676 (class 2606 OID 64565) -- Name: mdl_lesson_answers mdl_lessansw_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46184,7 +41280,6 @@ ALTER TABLE ONLY public.mdl_lesson_answers -- --- TOC entry 8681 (class 2606 OID 64567) -- Name: mdl_lesson_attempts mdl_lessatte_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46193,7 +41288,6 @@ ALTER TABLE ONLY public.mdl_lesson_attempts -- --- TOC entry 8686 (class 2606 OID 64569) -- Name: mdl_lesson_branch mdl_lessbran_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46202,7 +41296,6 @@ ALTER TABLE ONLY public.mdl_lesson_branch -- --- TOC entry 8691 (class 2606 OID 64571) -- Name: mdl_lesson_grades mdl_lessgrad_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46211,7 +41304,6 @@ ALTER TABLE ONLY public.mdl_lesson_grades -- --- TOC entry 8696 (class 2606 OID 64573) -- Name: mdl_lesson_overrides mdl_lessover_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46220,7 +41312,6 @@ ALTER TABLE ONLY public.mdl_lesson_overrides -- --- TOC entry 8700 (class 2606 OID 64575) -- Name: mdl_lesson_pages mdl_lesspage_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46229,7 +41320,6 @@ ALTER TABLE ONLY public.mdl_lesson_pages -- --- TOC entry 8703 (class 2606 OID 64577) -- Name: mdl_lesson_timer mdl_lesstime_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46238,7 +41328,6 @@ ALTER TABLE ONLY public.mdl_lesson_timer -- --- TOC entry 8707 (class 2606 OID 64579) -- Name: mdl_license mdl_lice_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46247,7 +41336,6 @@ ALTER TABLE ONLY public.mdl_license -- --- TOC entry 8710 (class 2606 OID 64581) -- Name: mdl_lock_db mdl_lockdb_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46256,7 +41344,6 @@ ALTER TABLE ONLY public.mdl_lock_db -- --- TOC entry 8717 (class 2606 OID 64583) -- Name: mdl_log mdl_log_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46265,7 +41352,6 @@ ALTER TABLE ONLY public.mdl_log -- --- TOC entry 8721 (class 2606 OID 64585) -- Name: mdl_log_display mdl_logdisp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46274,7 +41360,6 @@ ALTER TABLE ONLY public.mdl_log_display -- --- TOC entry 8724 (class 2606 OID 64587) -- Name: mdl_log_queries mdl_logquer_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46283,7 +41368,6 @@ ALTER TABLE ONLY public.mdl_log_queries -- --- TOC entry 8728 (class 2606 OID 64589) -- Name: mdl_logstore_standard_log mdl_logsstanlog_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46292,7 +41376,6 @@ ALTER TABLE ONLY public.mdl_logstore_standard_log -- --- TOC entry 8733 (class 2606 OID 64591) -- Name: mdl_lti mdl_lti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46301,7 +41384,6 @@ ALTER TABLE ONLY public.mdl_lti -- --- TOC entry 8735 (class 2606 OID 64593) -- Name: mdl_lti_access_tokens mdl_ltiaccetoke_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46310,7 +41392,6 @@ ALTER TABLE ONLY public.mdl_lti_access_tokens -- --- TOC entry 8760 (class 2606 OID 64595) -- Name: mdl_ltiservice_gradebookservices mdl_ltisgrad_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46319,7 +41400,6 @@ ALTER TABLE ONLY public.mdl_ltiservice_gradebookservices -- --- TOC entry 8739 (class 2606 OID 64597) -- Name: mdl_lti_submission mdl_ltisubm_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46328,7 +41408,6 @@ ALTER TABLE ONLY public.mdl_lti_submission -- --- TOC entry 8743 (class 2606 OID 64599) -- Name: mdl_lti_tool_proxies mdl_ltitoolprox_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46337,7 +41416,6 @@ ALTER TABLE ONLY public.mdl_lti_tool_proxies -- --- TOC entry 8747 (class 2606 OID 64601) -- Name: mdl_lti_tool_settings mdl_ltitoolsett_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46346,7 +41424,6 @@ ALTER TABLE ONLY public.mdl_lti_tool_settings -- --- TOC entry 8753 (class 2606 OID 64603) -- Name: mdl_lti_types mdl_ltitype_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46355,7 +41432,6 @@ ALTER TABLE ONLY public.mdl_lti_types -- --- TOC entry 8756 (class 2606 OID 64605) -- Name: mdl_lti_types_config mdl_ltitypeconf_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46364,7 +41440,6 @@ ALTER TABLE ONLY public.mdl_lti_types_config -- --- TOC entry 8840 (class 2606 OID 64607) -- Name: mdl_messages mdl_mess_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46373,7 +41448,6 @@ ALTER TABLE ONLY public.mdl_messages -- --- TOC entry 8763 (class 2606 OID 64609) -- Name: mdl_message mdl_mess_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46382,7 +41456,6 @@ ALTER TABLE ONLY public.mdl_message -- --- TOC entry 8768 (class 2606 OID 64611) -- Name: mdl_message_airnotifier_devices mdl_messairndevi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46391,7 +41464,6 @@ ALTER TABLE ONLY public.mdl_message_airnotifier_devices -- --- TOC entry 8777 (class 2606 OID 64613) -- Name: mdl_message_contacts mdl_messcont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46400,7 +41472,6 @@ ALTER TABLE ONLY public.mdl_message_contacts -- --- TOC entry 8771 (class 2606 OID 64615) -- Name: mdl_message_contact_requests mdl_messcontrequ_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46409,7 +41480,6 @@ ALTER TABLE ONLY public.mdl_message_contact_requests -- --- TOC entry 8792 (class 2606 OID 64617) -- Name: mdl_message_conversations mdl_messconv_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46418,7 +41488,6 @@ ALTER TABLE ONLY public.mdl_message_conversations -- --- TOC entry 8782 (class 2606 OID 64619) -- Name: mdl_message_conversation_actions mdl_messconvacti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46427,7 +41496,6 @@ ALTER TABLE ONLY public.mdl_message_conversation_actions -- --- TOC entry 8786 (class 2606 OID 64621) -- Name: mdl_message_conversation_members mdl_messconvmemb_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46436,7 +41504,6 @@ ALTER TABLE ONLY public.mdl_message_conversation_members -- --- TOC entry 8830 (class 2606 OID 64623) -- Name: mdl_messageinbound_datakeys mdl_messdata_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46445,7 +41512,6 @@ ALTER TABLE ONLY public.mdl_messageinbound_datakeys -- --- TOC entry 8796 (class 2606 OID 64625) -- Name: mdl_message_email_messages mdl_messemaimess_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46454,7 +41520,6 @@ ALTER TABLE ONLY public.mdl_message_email_messages -- --- TOC entry 8833 (class 2606 OID 64627) -- Name: mdl_messageinbound_handlers mdl_messhand_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46463,7 +41528,6 @@ ALTER TABLE ONLY public.mdl_messageinbound_handlers -- --- TOC entry 8835 (class 2606 OID 64629) -- Name: mdl_messageinbound_messagelist mdl_messmess_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46472,7 +41536,6 @@ ALTER TABLE ONLY public.mdl_messageinbound_messagelist -- --- TOC entry 8800 (class 2606 OID 64631) -- Name: mdl_message_popup mdl_messpopu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46481,7 +41544,6 @@ ALTER TABLE ONLY public.mdl_message_popup -- --- TOC entry 8804 (class 2606 OID 64633) -- Name: mdl_message_popup_notifications mdl_messpopunoti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46490,7 +41552,6 @@ ALTER TABLE ONLY public.mdl_message_popup_notifications -- --- TOC entry 8807 (class 2606 OID 64635) -- Name: mdl_message_processors mdl_messproc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46499,7 +41560,6 @@ ALTER TABLE ONLY public.mdl_message_processors -- --- TOC entry 8810 (class 2606 OID 64637) -- Name: mdl_message_providers mdl_messprov_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46508,7 +41568,6 @@ ALTER TABLE ONLY public.mdl_message_providers -- --- TOC entry 8812 (class 2606 OID 64639) -- Name: mdl_message_read mdl_messread_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46517,7 +41576,6 @@ ALTER TABLE ONLY public.mdl_message_read -- --- TOC entry 8818 (class 2606 OID 64641) -- Name: mdl_message_user_actions mdl_messuseracti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46526,7 +41584,6 @@ ALTER TABLE ONLY public.mdl_message_user_actions -- --- TOC entry 8824 (class 2606 OID 64643) -- Name: mdl_message_users_blocked mdl_messuserbloc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46535,7 +41592,6 @@ ALTER TABLE ONLY public.mdl_message_users_blocked -- --- TOC entry 8843 (class 2606 OID 64645) -- Name: mdl_mnet_application mdl_mnetappl_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46544,7 +41600,6 @@ ALTER TABLE ONLY public.mdl_mnet_application -- --- TOC entry 8874 (class 2606 OID 64647) -- Name: mdl_mnetservice_enrol_courses mdl_mnetenrocour_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46553,7 +41608,6 @@ ALTER TABLE ONLY public.mdl_mnetservice_enrol_courses -- --- TOC entry 8877 (class 2606 OID 64649) -- Name: mdl_mnetservice_enrol_enrolments mdl_mnetenroenro_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46562,7 +41616,6 @@ ALTER TABLE ONLY public.mdl_mnetservice_enrol_enrolments -- --- TOC entry 8849 (class 2606 OID 64651) -- Name: mdl_mnet_host2service mdl_mnethost_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46571,7 +41624,6 @@ ALTER TABLE ONLY public.mdl_mnet_host2service -- --- TOC entry 8846 (class 2606 OID 64653) -- Name: mdl_mnet_host mdl_mnethost_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46580,7 +41632,6 @@ ALTER TABLE ONLY public.mdl_mnet_host -- --- TOC entry 8852 (class 2606 OID 64655) -- Name: mdl_mnet_log mdl_mnetlog_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46589,7 +41640,6 @@ ALTER TABLE ONLY public.mdl_mnet_log -- --- TOC entry 8854 (class 2606 OID 64657) -- Name: mdl_mnet_remote_rpc mdl_mnetremorpc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46598,7 +41648,6 @@ ALTER TABLE ONLY public.mdl_mnet_remote_rpc -- --- TOC entry 8856 (class 2606 OID 64659) -- Name: mdl_mnet_remote_service2rpc mdl_mnetremoserv_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46607,7 +41656,6 @@ ALTER TABLE ONLY public.mdl_mnet_remote_service2rpc -- --- TOC entry 8860 (class 2606 OID 64661) -- Name: mdl_mnet_rpc mdl_mnetrpc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46616,7 +41664,6 @@ ALTER TABLE ONLY public.mdl_mnet_rpc -- --- TOC entry 8864 (class 2606 OID 64663) -- Name: mdl_mnet_service2rpc mdl_mnetserv_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46625,7 +41672,6 @@ ALTER TABLE ONLY public.mdl_mnet_service2rpc -- --- TOC entry 8862 (class 2606 OID 64665) -- Name: mdl_mnet_service mdl_mnetserv_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46634,7 +41680,6 @@ ALTER TABLE ONLY public.mdl_mnet_service -- --- TOC entry 8867 (class 2606 OID 64667) -- Name: mdl_mnet_session mdl_mnetsess_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46643,7 +41688,6 @@ ALTER TABLE ONLY public.mdl_mnet_session -- --- TOC entry 8870 (class 2606 OID 64669) -- Name: mdl_mnet_sso_access_control mdl_mnetssoaccecont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46652,7 +41696,6 @@ ALTER TABLE ONLY public.mdl_mnet_sso_access_control -- --- TOC entry 8880 (class 2606 OID 64671) -- Name: mdl_modules mdl_modu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46661,7 +41704,6 @@ ALTER TABLE ONLY public.mdl_modules -- --- TOC entry 8883 (class 2606 OID 64673) -- Name: mdl_my_pages mdl_mypage_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46670,7 +41712,6 @@ ALTER TABLE ONLY public.mdl_my_pages -- --- TOC entry 8886 (class 2606 OID 64675) -- Name: mdl_notifications mdl_noti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46679,7 +41720,6 @@ ALTER TABLE ONLY public.mdl_notifications -- --- TOC entry 8890 (class 2606 OID 64677) -- Name: mdl_oauth2_access_token mdl_oautaccetoke_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46688,7 +41728,6 @@ ALTER TABLE ONLY public.mdl_oauth2_access_token -- --- TOC entry 8893 (class 2606 OID 64679) -- Name: mdl_oauth2_endpoint mdl_oautendp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46697,7 +41736,6 @@ ALTER TABLE ONLY public.mdl_oauth2_endpoint -- --- TOC entry 8896 (class 2606 OID 64681) -- Name: mdl_oauth2_issuer mdl_oautissu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46706,7 +41744,6 @@ ALTER TABLE ONLY public.mdl_oauth2_issuer -- --- TOC entry 8898 (class 2606 OID 64683) -- Name: mdl_oauth2_system_account mdl_oautsystacco_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46715,7 +41752,6 @@ ALTER TABLE ONLY public.mdl_oauth2_system_account -- --- TOC entry 8901 (class 2606 OID 64685) -- Name: mdl_oauth2_user_field_mapping mdl_oautuserfielmapp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46724,7 +41760,6 @@ ALTER TABLE ONLY public.mdl_oauth2_user_field_mapping -- --- TOC entry 8906 (class 2606 OID 64687) -- Name: mdl_page mdl_page_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46733,7 +41768,6 @@ ALTER TABLE ONLY public.mdl_page -- --- TOC entry 8908 (class 2606 OID 64689) -- Name: mdl_portfolio_instance mdl_portinst_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46742,7 +41776,6 @@ ALTER TABLE ONLY public.mdl_portfolio_instance -- --- TOC entry 8910 (class 2606 OID 64691) -- Name: mdl_portfolio_instance_config mdl_portinstconf_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46751,7 +41784,6 @@ ALTER TABLE ONLY public.mdl_portfolio_instance_config -- --- TOC entry 8914 (class 2606 OID 64693) -- Name: mdl_portfolio_instance_user mdl_portinstuser_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46760,7 +41792,6 @@ ALTER TABLE ONLY public.mdl_portfolio_instance_user -- --- TOC entry 8918 (class 2606 OID 64695) -- Name: mdl_portfolio_log mdl_portlog_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46769,7 +41800,6 @@ ALTER TABLE ONLY public.mdl_portfolio_log -- --- TOC entry 8922 (class 2606 OID 64697) -- Name: mdl_portfolio_mahara_queue mdl_portmahaqueu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46778,7 +41808,6 @@ ALTER TABLE ONLY public.mdl_portfolio_mahara_queue -- --- TOC entry 8926 (class 2606 OID 64699) -- Name: mdl_portfolio_tempdata mdl_porttemp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46787,7 +41816,6 @@ ALTER TABLE ONLY public.mdl_portfolio_tempdata -- --- TOC entry 8930 (class 2606 OID 64701) -- Name: mdl_post mdl_post_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46796,7 +41824,6 @@ ALTER TABLE ONLY public.mdl_post -- --- TOC entry 8937 (class 2606 OID 64703) -- Name: mdl_profiling mdl_prof_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46805,7 +41832,6 @@ ALTER TABLE ONLY public.mdl_profiling -- --- TOC entry 8942 (class 2606 OID 64705) -- Name: mdl_qtype_ddimageortext mdl_qtypddim_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46814,7 +41840,6 @@ ALTER TABLE ONLY public.mdl_qtype_ddimageortext -- --- TOC entry 8945 (class 2606 OID 64707) -- Name: mdl_qtype_ddimageortext_drags mdl_qtypddimdrag_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46823,7 +41848,6 @@ ALTER TABLE ONLY public.mdl_qtype_ddimageortext_drags -- --- TOC entry 8948 (class 2606 OID 64709) -- Name: mdl_qtype_ddimageortext_drops mdl_qtypddimdrop_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46832,7 +41856,6 @@ ALTER TABLE ONLY public.mdl_qtype_ddimageortext_drops -- --- TOC entry 8951 (class 2606 OID 64711) -- Name: mdl_qtype_ddmarker mdl_qtypddma_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46841,7 +41864,6 @@ ALTER TABLE ONLY public.mdl_qtype_ddmarker -- --- TOC entry 8954 (class 2606 OID 64713) -- Name: mdl_qtype_ddmarker_drags mdl_qtypddmadrag_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46850,7 +41872,6 @@ ALTER TABLE ONLY public.mdl_qtype_ddmarker_drags -- --- TOC entry 8957 (class 2606 OID 64715) -- Name: mdl_qtype_ddmarker_drops mdl_qtypddmadrop_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46859,7 +41880,6 @@ ALTER TABLE ONLY public.mdl_qtype_ddmarker_drops -- --- TOC entry 8960 (class 2606 OID 64717) -- Name: mdl_qtype_essay_options mdl_qtypessaopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46868,7 +41888,6 @@ ALTER TABLE ONLY public.mdl_qtype_essay_options -- --- TOC entry 8963 (class 2606 OID 64719) -- Name: mdl_qtype_match_options mdl_qtypmatcopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46877,7 +41896,6 @@ ALTER TABLE ONLY public.mdl_qtype_match_options -- --- TOC entry 8966 (class 2606 OID 64721) -- Name: mdl_qtype_match_subquestions mdl_qtypmatcsubq_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46886,7 +41904,6 @@ ALTER TABLE ONLY public.mdl_qtype_match_subquestions -- --- TOC entry 8969 (class 2606 OID 64723) -- Name: mdl_qtype_multichoice_options mdl_qtypmultopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46895,7 +41912,6 @@ ALTER TABLE ONLY public.mdl_qtype_multichoice_options -- --- TOC entry 8972 (class 2606 OID 64725) -- Name: mdl_qtype_randomsamatch_options mdl_qtyprandopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46904,7 +41920,6 @@ ALTER TABLE ONLY public.mdl_qtype_randomsamatch_options -- --- TOC entry 8975 (class 2606 OID 64727) -- Name: mdl_qtype_shortanswer_options mdl_qtypshoropti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46913,7 +41928,6 @@ ALTER TABLE ONLY public.mdl_qtype_shortanswer_options -- --- TOC entry 8981 (class 2606 OID 64729) -- Name: mdl_question mdl_ques_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46922,7 +41936,6 @@ ALTER TABLE ONLY public.mdl_question -- --- TOC entry 8986 (class 2606 OID 64731) -- Name: mdl_question_answers mdl_quesansw_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46931,7 +41944,6 @@ ALTER TABLE ONLY public.mdl_question_answers -- --- TOC entry 8998 (class 2606 OID 64733) -- Name: mdl_question_attempts mdl_quesatte_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46940,7 +41952,6 @@ ALTER TABLE ONLY public.mdl_question_attempts -- --- TOC entry 8992 (class 2606 OID 64735) -- Name: mdl_question_attempt_steps mdl_quesattestep_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46949,7 +41960,6 @@ ALTER TABLE ONLY public.mdl_question_attempt_steps -- --- TOC entry 8990 (class 2606 OID 64737) -- Name: mdl_question_attempt_step_data mdl_quesattestepdata_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46958,7 +41968,6 @@ ALTER TABLE ONLY public.mdl_question_attempt_step_data -- --- TOC entry 9004 (class 2606 OID 64739) -- Name: mdl_question_calculated mdl_quescalc_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46967,7 +41976,6 @@ ALTER TABLE ONLY public.mdl_question_calculated -- --- TOC entry 9007 (class 2606 OID 64741) -- Name: mdl_question_calculated_options mdl_quescalcopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46976,7 +41984,6 @@ ALTER TABLE ONLY public.mdl_question_calculated_options -- --- TOC entry 9013 (class 2606 OID 64743) -- Name: mdl_question_categories mdl_quescate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46985,7 +41992,6 @@ ALTER TABLE ONLY public.mdl_question_categories -- --- TOC entry 9023 (class 2606 OID 64745) -- Name: mdl_question_datasets mdl_quesdata_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -46994,7 +42000,6 @@ ALTER TABLE ONLY public.mdl_question_datasets -- --- TOC entry 9017 (class 2606 OID 64747) -- Name: mdl_question_dataset_definitions mdl_quesdatadefi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47003,7 +42008,6 @@ ALTER TABLE ONLY public.mdl_question_dataset_definitions -- --- TOC entry 9020 (class 2606 OID 64749) -- Name: mdl_question_dataset_items mdl_quesdataitem_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47012,7 +42016,6 @@ ALTER TABLE ONLY public.mdl_question_dataset_items -- --- TOC entry 9027 (class 2606 OID 64751) -- Name: mdl_question_ddwtos mdl_quesddwt_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47021,7 +42024,6 @@ ALTER TABLE ONLY public.mdl_question_ddwtos -- --- TOC entry 9030 (class 2606 OID 64753) -- Name: mdl_question_gapselect mdl_quesgaps_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47030,7 +42032,6 @@ ALTER TABLE ONLY public.mdl_question_gapselect -- --- TOC entry 9033 (class 2606 OID 64755) -- Name: mdl_question_hints mdl_queshint_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47039,7 +42040,6 @@ ALTER TABLE ONLY public.mdl_question_hints -- --- TOC entry 9036 (class 2606 OID 64757) -- Name: mdl_question_multianswer mdl_quesmult_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47048,7 +42048,6 @@ ALTER TABLE ONLY public.mdl_question_multianswer -- --- TOC entry 9040 (class 2606 OID 64759) -- Name: mdl_question_numerical mdl_quesnume_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47057,7 +42056,6 @@ ALTER TABLE ONLY public.mdl_question_numerical -- --- TOC entry 9043 (class 2606 OID 64761) -- Name: mdl_question_numerical_options mdl_quesnumeopti_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47066,7 +42064,6 @@ ALTER TABLE ONLY public.mdl_question_numerical_options -- --- TOC entry 9046 (class 2606 OID 64763) -- Name: mdl_question_numerical_units mdl_quesnumeunit_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47075,7 +42072,6 @@ ALTER TABLE ONLY public.mdl_question_numerical_units -- --- TOC entry 9050 (class 2606 OID 64765) -- Name: mdl_question_response_analysis mdl_quesrespanal_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47084,7 +42080,6 @@ ALTER TABLE ONLY public.mdl_question_response_analysis -- --- TOC entry 9053 (class 2606 OID 64767) -- Name: mdl_question_response_count mdl_quesrespcoun_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47093,7 +42088,6 @@ ALTER TABLE ONLY public.mdl_question_response_count -- --- TOC entry 9055 (class 2606 OID 64769) -- Name: mdl_question_statistics mdl_quesstat_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47102,7 +42096,6 @@ ALTER TABLE ONLY public.mdl_question_statistics -- --- TOC entry 9057 (class 2606 OID 64771) -- Name: mdl_question_truefalse mdl_questrue_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47111,7 +42104,6 @@ ALTER TABLE ONLY public.mdl_question_truefalse -- --- TOC entry 9061 (class 2606 OID 64773) -- Name: mdl_question_usages mdl_quesusag_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47120,7 +42112,6 @@ ALTER TABLE ONLY public.mdl_question_usages -- --- TOC entry 9064 (class 2606 OID 64775) -- Name: mdl_quiz mdl_quiz_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47129,7 +42120,6 @@ ALTER TABLE ONLY public.mdl_quiz -- --- TOC entry 9066 (class 2606 OID 64777) -- Name: mdl_quiz_attempts mdl_quizatte_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47138,7 +42128,6 @@ ALTER TABLE ONLY public.mdl_quiz_attempts -- --- TOC entry 9073 (class 2606 OID 64779) -- Name: mdl_quiz_feedback mdl_quizfeed_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47147,7 +42136,6 @@ ALTER TABLE ONLY public.mdl_quiz_feedback -- --- TOC entry 9076 (class 2606 OID 64781) -- Name: mdl_quiz_grades mdl_quizgrad_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47156,7 +42144,6 @@ ALTER TABLE ONLY public.mdl_quiz_grades -- --- TOC entry 9081 (class 2606 OID 64783) -- Name: mdl_quiz_overrides mdl_quizover_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47165,7 +42152,6 @@ ALTER TABLE ONLY public.mdl_quiz_overrides -- --- TOC entry 9085 (class 2606 OID 64785) -- Name: mdl_quiz_overview_regrades mdl_quizoverregr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47174,7 +42160,6 @@ ALTER TABLE ONLY public.mdl_quiz_overview_regrades -- --- TOC entry 9088 (class 2606 OID 64787) -- Name: mdl_quiz_reports mdl_quizrepo_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47183,7 +42168,6 @@ ALTER TABLE ONLY public.mdl_quiz_reports -- --- TOC entry 9108 (class 2606 OID 64789) -- Name: mdl_quizaccess_seb_quizsettings mdl_quizsebquiz_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47192,7 +42176,6 @@ ALTER TABLE ONLY public.mdl_quizaccess_seb_quizsettings -- --- TOC entry 9113 (class 2606 OID 64791) -- Name: mdl_quizaccess_seb_template mdl_quizsebtemp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47201,7 +42184,6 @@ ALTER TABLE ONLY public.mdl_quizaccess_seb_template -- --- TOC entry 9091 (class 2606 OID 64793) -- Name: mdl_quiz_sections mdl_quizsect_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47210,7 +42192,6 @@ ALTER TABLE ONLY public.mdl_quiz_sections -- --- TOC entry 9099 (class 2606 OID 64795) -- Name: mdl_quiz_slots mdl_quizslot_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47219,7 +42200,6 @@ ALTER TABLE ONLY public.mdl_quiz_slots -- --- TOC entry 9095 (class 2606 OID 64797) -- Name: mdl_quiz_slot_tags mdl_quizslottags_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47228,7 +42208,6 @@ ALTER TABLE ONLY public.mdl_quiz_slot_tags -- --- TOC entry 9105 (class 2606 OID 64799) -- Name: mdl_quiz_statistics mdl_quizstat_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47237,7 +42216,6 @@ ALTER TABLE ONLY public.mdl_quiz_statistics -- --- TOC entry 9118 (class 2606 OID 64801) -- Name: mdl_rating mdl_rati_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47246,7 +42224,6 @@ ALTER TABLE ONLY public.mdl_rating -- --- TOC entry 9121 (class 2606 OID 64803) -- Name: mdl_registration_hubs mdl_regihubs_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47255,7 +42232,6 @@ ALTER TABLE ONLY public.mdl_registration_hubs -- --- TOC entry 9123 (class 2606 OID 64805) -- Name: mdl_repository mdl_repo_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47264,7 +42240,6 @@ ALTER TABLE ONLY public.mdl_repository -- --- TOC entry 9127 (class 2606 OID 64807) -- Name: mdl_repository_instances mdl_repoinst_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47273,7 +42248,6 @@ ALTER TABLE ONLY public.mdl_repository_instances -- --- TOC entry 9125 (class 2606 OID 64809) -- Name: mdl_repository_instance_config mdl_repoinstconf_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47282,7 +42256,6 @@ ALTER TABLE ONLY public.mdl_repository_instance_config -- --- TOC entry 9129 (class 2606 OID 64811) -- Name: mdl_repository_onedrive_access mdl_repoonedacce_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47291,7 +42264,6 @@ ALTER TABLE ONLY public.mdl_repository_onedrive_access -- --- TOC entry 9133 (class 2606 OID 64813) -- Name: mdl_resource mdl_reso_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47300,7 +42272,6 @@ ALTER TABLE ONLY public.mdl_resource -- --- TOC entry 9136 (class 2606 OID 64815) -- Name: mdl_resource_old mdl_resoold_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47309,7 +42280,6 @@ ALTER TABLE ONLY public.mdl_resource_old -- --- TOC entry 9139 (class 2606 OID 64817) -- Name: mdl_role mdl_role_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47318,7 +42288,6 @@ ALTER TABLE ONLY public.mdl_role -- --- TOC entry 9144 (class 2606 OID 64819) -- Name: mdl_role_allow_assign mdl_rolealloassi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47327,7 +42296,6 @@ ALTER TABLE ONLY public.mdl_role_allow_assign -- --- TOC entry 9149 (class 2606 OID 64821) -- Name: mdl_role_allow_override mdl_rolealloover_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47336,7 +42304,6 @@ ALTER TABLE ONLY public.mdl_role_allow_override -- --- TOC entry 9154 (class 2606 OID 64823) -- Name: mdl_role_allow_switch mdl_rolealloswit_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47345,7 +42312,6 @@ ALTER TABLE ONLY public.mdl_role_allow_switch -- --- TOC entry 9159 (class 2606 OID 64825) -- Name: mdl_role_allow_view mdl_rolealloview_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47354,7 +42320,6 @@ ALTER TABLE ONLY public.mdl_role_allow_view -- --- TOC entry 9165 (class 2606 OID 64827) -- Name: mdl_role_assignments mdl_roleassi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47363,7 +42328,6 @@ ALTER TABLE ONLY public.mdl_role_assignments -- --- TOC entry 9174 (class 2606 OID 64829) -- Name: mdl_role_capabilities mdl_rolecapa_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47372,7 +42336,6 @@ ALTER TABLE ONLY public.mdl_role_capabilities -- --- TOC entry 9180 (class 2606 OID 64831) -- Name: mdl_role_context_levels mdl_rolecontleve_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47381,7 +42344,6 @@ ALTER TABLE ONLY public.mdl_role_context_levels -- --- TOC entry 9184 (class 2606 OID 64833) -- Name: mdl_role_names mdl_rolename_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47390,7 +42352,6 @@ ALTER TABLE ONLY public.mdl_role_names -- --- TOC entry 9189 (class 2606 OID 64835) -- Name: mdl_scale mdl_scal_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47399,7 +42360,6 @@ ALTER TABLE ONLY public.mdl_scale -- --- TOC entry 9193 (class 2606 OID 64837) -- Name: mdl_scale_history mdl_scalhist_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47408,7 +42368,6 @@ ALTER TABLE ONLY public.mdl_scale_history -- --- TOC entry 9199 (class 2606 OID 64839) -- Name: mdl_scorm mdl_scor_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47417,7 +42376,6 @@ ALTER TABLE ONLY public.mdl_scorm -- --- TOC entry 9201 (class 2606 OID 64841) -- Name: mdl_scorm_aicc_session mdl_scoraiccsess_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47426,7 +42384,6 @@ ALTER TABLE ONLY public.mdl_scorm_aicc_session -- --- TOC entry 9205 (class 2606 OID 64843) -- Name: mdl_scorm_scoes mdl_scorscoe_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47435,7 +42392,6 @@ ALTER TABLE ONLY public.mdl_scorm_scoes -- --- TOC entry 9208 (class 2606 OID 64845) -- Name: mdl_scorm_scoes_data mdl_scorscoedata_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47444,7 +42400,6 @@ ALTER TABLE ONLY public.mdl_scorm_scoes_data -- --- TOC entry 9211 (class 2606 OID 64847) -- Name: mdl_scorm_scoes_track mdl_scorscoetrac_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47453,7 +42408,6 @@ ALTER TABLE ONLY public.mdl_scorm_scoes_track -- --- TOC entry 9217 (class 2606 OID 64849) -- Name: mdl_scorm_seq_mapinfo mdl_scorseqmapi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47462,7 +42416,6 @@ ALTER TABLE ONLY public.mdl_scorm_seq_mapinfo -- --- TOC entry 9222 (class 2606 OID 64851) -- Name: mdl_scorm_seq_objective mdl_scorseqobje_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47471,7 +42424,6 @@ ALTER TABLE ONLY public.mdl_scorm_seq_objective -- --- TOC entry 9230 (class 2606 OID 64853) -- Name: mdl_scorm_seq_rolluprulecond mdl_scorseqroll_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47480,7 +42432,6 @@ ALTER TABLE ONLY public.mdl_scorm_seq_rolluprulecond -- --- TOC entry 9226 (class 2606 OID 64855) -- Name: mdl_scorm_seq_rolluprule mdl_scorseqroll_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47489,7 +42440,6 @@ ALTER TABLE ONLY public.mdl_scorm_seq_rolluprule -- --- TOC entry 9235 (class 2606 OID 64857) -- Name: mdl_scorm_seq_rulecond mdl_scorseqrule_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47498,7 +42448,6 @@ ALTER TABLE ONLY public.mdl_scorm_seq_rulecond -- --- TOC entry 9240 (class 2606 OID 64859) -- Name: mdl_scorm_seq_ruleconds mdl_scorseqrule_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47507,7 +42456,6 @@ ALTER TABLE ONLY public.mdl_scorm_seq_ruleconds -- --- TOC entry 9245 (class 2606 OID 64861) -- Name: mdl_search_index_requests mdl_searinderequ_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47516,7 +42464,6 @@ ALTER TABLE ONLY public.mdl_search_index_requests -- --- TOC entry 9253 (class 2606 OID 64863) -- Name: mdl_search_simpledb_index mdl_searsimpinde_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47525,7 +42472,6 @@ ALTER TABLE ONLY public.mdl_search_simpledb_index -- --- TOC entry 9256 (class 2606 OID 64865) -- Name: mdl_sessions mdl_sess_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47534,7 +42480,6 @@ ALTER TABLE ONLY public.mdl_sessions -- --- TOC entry 9264 (class 2606 OID 64867) -- Name: mdl_stats_daily mdl_statdail_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47543,7 +42488,6 @@ ALTER TABLE ONLY public.mdl_stats_daily -- --- TOC entry 9269 (class 2606 OID 64869) -- Name: mdl_stats_monthly mdl_statmont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47552,7 +42496,6 @@ ALTER TABLE ONLY public.mdl_stats_monthly -- --- TOC entry 9274 (class 2606 OID 64871) -- Name: mdl_stats_user_daily mdl_statuserdail_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47561,7 +42504,6 @@ ALTER TABLE ONLY public.mdl_stats_user_daily -- --- TOC entry 9280 (class 2606 OID 64873) -- Name: mdl_stats_user_monthly mdl_statusermont_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47570,7 +42512,6 @@ ALTER TABLE ONLY public.mdl_stats_user_monthly -- --- TOC entry 9286 (class 2606 OID 64875) -- Name: mdl_stats_user_weekly mdl_statuserweek_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47579,7 +42520,6 @@ ALTER TABLE ONLY public.mdl_stats_user_weekly -- --- TOC entry 9292 (class 2606 OID 64877) -- Name: mdl_stats_weekly mdl_statweek_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47588,7 +42528,6 @@ ALTER TABLE ONLY public.mdl_stats_weekly -- --- TOC entry 9297 (class 2606 OID 64879) -- Name: mdl_survey mdl_surv_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47597,7 +42536,6 @@ ALTER TABLE ONLY public.mdl_survey -- --- TOC entry 9299 (class 2606 OID 64881) -- Name: mdl_survey_analysis mdl_survanal_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47606,7 +42544,6 @@ ALTER TABLE ONLY public.mdl_survey_analysis -- --- TOC entry 9303 (class 2606 OID 64883) -- Name: mdl_survey_answers mdl_survansw_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47615,7 +42552,6 @@ ALTER TABLE ONLY public.mdl_survey_answers -- --- TOC entry 9308 (class 2606 OID 64885) -- Name: mdl_survey_questions mdl_survques_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47624,7 +42560,6 @@ ALTER TABLE ONLY public.mdl_survey_questions -- --- TOC entry 9310 (class 2606 OID 64887) -- Name: mdl_tag mdl_tag_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47633,7 +42568,6 @@ ALTER TABLE ONLY public.mdl_tag -- --- TOC entry 9317 (class 2606 OID 64889) -- Name: mdl_tag_area mdl_tagarea_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47642,7 +42576,6 @@ ALTER TABLE ONLY public.mdl_tag_area -- --- TOC entry 9320 (class 2606 OID 64891) -- Name: mdl_tag_coll mdl_tagcoll_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47651,7 +42584,6 @@ ALTER TABLE ONLY public.mdl_tag_coll -- --- TOC entry 9322 (class 2606 OID 64893) -- Name: mdl_tag_correlation mdl_tagcorr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47660,7 +42592,6 @@ ALTER TABLE ONLY public.mdl_tag_correlation -- --- TOC entry 9327 (class 2606 OID 64895) -- Name: mdl_tag_instance mdl_taginst_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47669,7 +42600,6 @@ ALTER TABLE ONLY public.mdl_tag_instance -- --- TOC entry 9331 (class 2606 OID 64897) -- Name: mdl_task_adhoc mdl_taskadho_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47678,7 +42608,6 @@ ALTER TABLE ONLY public.mdl_task_adhoc -- --- TOC entry 9336 (class 2606 OID 64899) -- Name: mdl_task_log mdl_tasklog_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47687,7 +42616,6 @@ ALTER TABLE ONLY public.mdl_task_log -- --- TOC entry 9340 (class 2606 OID 64901) -- Name: mdl_task_scheduled mdl_tasksche_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47696,7 +42624,6 @@ ALTER TABLE ONLY public.mdl_task_scheduled -- --- TOC entry 9343 (class 2606 OID 64903) -- Name: mdl_tool_cohortroles mdl_toolcoho_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47705,7 +42632,6 @@ ALTER TABLE ONLY public.mdl_tool_cohortroles -- --- TOC entry 9346 (class 2606 OID 64905) -- Name: mdl_tool_customlang mdl_toolcust_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47714,7 +42640,6 @@ ALTER TABLE ONLY public.mdl_tool_customlang -- --- TOC entry 9349 (class 2606 OID 64907) -- Name: mdl_tool_customlang_components mdl_toolcustcomp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47723,7 +42648,6 @@ ALTER TABLE ONLY public.mdl_tool_customlang_components -- --- TOC entry 9351 (class 2606 OID 64909) -- Name: mdl_tool_dataprivacy_category mdl_tooldatacate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47732,7 +42656,6 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_category -- --- TOC entry 9354 (class 2606 OID 64911) -- Name: mdl_tool_dataprivacy_ctxexpired mdl_tooldatactxe_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47741,7 +42664,6 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_ctxexpired -- --- TOC entry 9358 (class 2606 OID 64913) -- Name: mdl_tool_dataprivacy_ctxinstance mdl_tooldatactxi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47750,7 +42672,6 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_ctxinstance -- --- TOC entry 9363 (class 2606 OID 64915) -- Name: mdl_tool_dataprivacy_ctxlevel mdl_tooldatactxl_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47759,7 +42680,6 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_ctxlevel -- --- TOC entry 9368 (class 2606 OID 64917) -- Name: mdl_tool_dataprivacy_purposerole mdl_tooldatapurp_id3_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47768,7 +42688,6 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_purposerole -- --- TOC entry 9366 (class 2606 OID 64919) -- Name: mdl_tool_dataprivacy_purpose mdl_tooldatapurp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47777,7 +42696,6 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_purpose -- --- TOC entry 9374 (class 2606 OID 64921) -- Name: mdl_tool_dataprivacy_request mdl_tooldatarequ_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47786,7 +42704,6 @@ ALTER TABLE ONLY public.mdl_tool_dataprivacy_request -- --- TOC entry 9379 (class 2606 OID 64923) -- Name: mdl_tool_monitor_events mdl_toolmonieven_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47795,7 +42712,6 @@ ALTER TABLE ONLY public.mdl_tool_monitor_events -- --- TOC entry 9381 (class 2606 OID 64925) -- Name: mdl_tool_monitor_history mdl_toolmonihist_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47804,7 +42720,6 @@ ALTER TABLE ONLY public.mdl_tool_monitor_history -- --- TOC entry 9387 (class 2606 OID 64927) -- Name: mdl_tool_monitor_rules mdl_toolmonirule_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47813,7 +42728,6 @@ ALTER TABLE ONLY public.mdl_tool_monitor_rules -- --- TOC entry 9390 (class 2606 OID 64929) -- Name: mdl_tool_monitor_subscriptions mdl_toolmonisubs_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47822,7 +42736,6 @@ ALTER TABLE ONLY public.mdl_tool_monitor_subscriptions -- --- TOC entry 9394 (class 2606 OID 64931) -- Name: mdl_tool_policy mdl_toolpoli_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47831,7 +42744,6 @@ ALTER TABLE ONLY public.mdl_tool_policy -- --- TOC entry 9396 (class 2606 OID 64933) -- Name: mdl_tool_policy_acceptances mdl_toolpoliacce_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47840,7 +42752,6 @@ ALTER TABLE ONLY public.mdl_tool_policy_acceptances -- --- TOC entry 9402 (class 2606 OID 64935) -- Name: mdl_tool_policy_versions mdl_toolpolivers_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47849,7 +42760,6 @@ ALTER TABLE ONLY public.mdl_tool_policy_versions -- --- TOC entry 9407 (class 2606 OID 64937) -- Name: mdl_tool_recyclebin_category mdl_toolrecycate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47858,7 +42768,6 @@ ALTER TABLE ONLY public.mdl_tool_recyclebin_category -- --- TOC entry 9411 (class 2606 OID 64939) -- Name: mdl_tool_recyclebin_course mdl_toolrecycour_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47867,7 +42776,6 @@ ALTER TABLE ONLY public.mdl_tool_recyclebin_course -- --- TOC entry 9414 (class 2606 OID 64941) -- Name: mdl_tool_usertours_steps mdl_tooluserstep_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47876,7 +42784,6 @@ ALTER TABLE ONLY public.mdl_tool_usertours_steps -- --- TOC entry 9418 (class 2606 OID 64943) -- Name: mdl_tool_usertours_tours mdl_toolusertour_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47885,7 +42792,6 @@ ALTER TABLE ONLY public.mdl_tool_usertours_tours -- --- TOC entry 9420 (class 2606 OID 64945) -- Name: mdl_upgrade_log mdl_upgrlog_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47894,7 +42800,6 @@ ALTER TABLE ONLY public.mdl_upgrade_log -- --- TOC entry 9426 (class 2606 OID 64947) -- Name: mdl_url mdl_url_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47903,7 +42808,6 @@ ALTER TABLE ONLY public.mdl_url -- --- TOC entry 9437 (class 2606 OID 64949) -- Name: mdl_user mdl_user_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47912,7 +42816,6 @@ ALTER TABLE ONLY public.mdl_user -- --- TOC entry 9445 (class 2606 OID 64951) -- Name: mdl_user_devices mdl_userdevi_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47921,7 +42824,6 @@ ALTER TABLE ONLY public.mdl_user_devices -- --- TOC entry 9452 (class 2606 OID 64953) -- Name: mdl_user_enrolments mdl_userenro_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47930,7 +42832,6 @@ ALTER TABLE ONLY public.mdl_user_enrolments -- --- TOC entry 9456 (class 2606 OID 64955) -- Name: mdl_user_info_category mdl_userinfocate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47939,7 +42840,6 @@ ALTER TABLE ONLY public.mdl_user_info_category -- --- TOC entry 9458 (class 2606 OID 64957) -- Name: mdl_user_info_data mdl_userinfodata_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47948,7 +42848,6 @@ ALTER TABLE ONLY public.mdl_user_info_data -- --- TOC entry 9461 (class 2606 OID 64959) -- Name: mdl_user_info_field mdl_userinfofiel_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47957,7 +42856,6 @@ ALTER TABLE ONLY public.mdl_user_info_field -- --- TOC entry 9464 (class 2606 OID 64961) -- Name: mdl_user_lastaccess mdl_userlast_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47966,7 +42864,6 @@ ALTER TABLE ONLY public.mdl_user_lastaccess -- --- TOC entry 9468 (class 2606 OID 64963) -- Name: mdl_user_password_history mdl_userpasshist_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47975,7 +42872,6 @@ ALTER TABLE ONLY public.mdl_user_password_history -- --- TOC entry 9471 (class 2606 OID 64965) -- Name: mdl_user_password_resets mdl_userpassrese_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47984,7 +42880,6 @@ ALTER TABLE ONLY public.mdl_user_password_resets -- --- TOC entry 9474 (class 2606 OID 64967) -- Name: mdl_user_preferences mdl_userpref_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -47993,7 +42888,6 @@ ALTER TABLE ONLY public.mdl_user_preferences -- --- TOC entry 9477 (class 2606 OID 64969) -- Name: mdl_user_private_key mdl_userprivkey_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48002,7 +42896,6 @@ ALTER TABLE ONLY public.mdl_user_private_key -- --- TOC entry 9482 (class 2606 OID 64971) -- Name: mdl_wiki mdl_wiki_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48011,7 +42904,6 @@ ALTER TABLE ONLY public.mdl_wiki -- --- TOC entry 9485 (class 2606 OID 64973) -- Name: mdl_wiki_links mdl_wikilink_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48020,7 +42912,6 @@ ALTER TABLE ONLY public.mdl_wiki_links -- --- TOC entry 9488 (class 2606 OID 64975) -- Name: mdl_wiki_locks mdl_wikilock_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48029,7 +42920,6 @@ ALTER TABLE ONLY public.mdl_wiki_locks -- --- TOC entry 9490 (class 2606 OID 64977) -- Name: mdl_wiki_pages mdl_wikipage_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48038,7 +42928,6 @@ ALTER TABLE ONLY public.mdl_wiki_pages -- --- TOC entry 9494 (class 2606 OID 64979) -- Name: mdl_wiki_subwikis mdl_wikisubw_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48047,7 +42936,6 @@ ALTER TABLE ONLY public.mdl_wiki_subwikis -- --- TOC entry 9498 (class 2606 OID 64981) -- Name: mdl_wiki_synonyms mdl_wikisyno_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48056,7 +42944,6 @@ ALTER TABLE ONLY public.mdl_wiki_synonyms -- --- TOC entry 9501 (class 2606 OID 64983) -- Name: mdl_wiki_versions mdl_wikivers_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48065,7 +42952,6 @@ ALTER TABLE ONLY public.mdl_wiki_versions -- --- TOC entry 9505 (class 2606 OID 64985) -- Name: mdl_workshop mdl_work_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48074,7 +42960,6 @@ ALTER TABLE ONLY public.mdl_workshop -- --- TOC entry 9532 (class 2606 OID 64987) -- Name: mdl_workshopform_accumulative mdl_workaccu_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48083,7 +42968,6 @@ ALTER TABLE ONLY public.mdl_workshopform_accumulative -- --- TOC entry 9507 (class 2606 OID 64989) -- Name: mdl_workshop_aggregations mdl_workaggr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48092,7 +42976,6 @@ ALTER TABLE ONLY public.mdl_workshop_aggregations -- --- TOC entry 9513 (class 2606 OID 64991) -- Name: mdl_workshop_assessments mdl_workasse_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48101,7 +42984,6 @@ ALTER TABLE ONLY public.mdl_workshop_assessments -- --- TOC entry 9529 (class 2606 OID 64993) -- Name: mdl_workshopeval_best_settings mdl_workbestsett_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48110,7 +42992,6 @@ ALTER TABLE ONLY public.mdl_workshopeval_best_settings -- --- TOC entry 9535 (class 2606 OID 64995) -- Name: mdl_workshopform_comments mdl_workcomm_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48119,7 +43000,6 @@ ALTER TABLE ONLY public.mdl_workshopform_comments -- --- TOC entry 9519 (class 2606 OID 64997) -- Name: mdl_workshop_grades mdl_workgrad_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48128,7 +43008,6 @@ ALTER TABLE ONLY public.mdl_workshop_grades -- --- TOC entry 9538 (class 2606 OID 64999) -- Name: mdl_workshopform_numerrors mdl_worknume_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48137,7 +43016,6 @@ ALTER TABLE ONLY public.mdl_workshopform_numerrors -- --- TOC entry 9541 (class 2606 OID 65001) -- Name: mdl_workshopform_numerrors_map mdl_worknumemap_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48146,7 +43024,6 @@ ALTER TABLE ONLY public.mdl_workshopform_numerrors_map -- --- TOC entry 9545 (class 2606 OID 65003) -- Name: mdl_workshopform_rubric mdl_workrubr_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48155,7 +43032,6 @@ ALTER TABLE ONLY public.mdl_workshopform_rubric -- --- TOC entry 9548 (class 2606 OID 65005) -- Name: mdl_workshopform_rubric_config mdl_workrubrconf_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48164,7 +43040,6 @@ ALTER TABLE ONLY public.mdl_workshopform_rubric_config -- --- TOC entry 9552 (class 2606 OID 65007) -- Name: mdl_workshopform_rubric_levels mdl_workrubrleve_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48173,7 +43048,6 @@ ALTER TABLE ONLY public.mdl_workshopform_rubric_levels -- --- TOC entry 9526 (class 2606 OID 65009) -- Name: mdl_workshopallocation_scheduled mdl_worksche_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48182,7 +43056,6 @@ ALTER TABLE ONLY public.mdl_workshopallocation_scheduled -- --- TOC entry 9523 (class 2606 OID 65011) -- Name: mdl_workshop_submissions mdl_worksubm_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -48191,7 +43064,6 @@ ALTER TABLE ONLY public.mdl_workshop_submissions -- --- TOC entry 7791 (class 1259 OID 65012) -- Name: mdl_analindicalc_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48199,7 +43071,6 @@ CREATE INDEX mdl_analindicalc_con_ix ON public.mdl_analytics_indicator_calc USIN -- --- TOC entry 7794 (class 1259 OID 65013) -- Name: mdl_analindicalc_staendcon_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48207,7 +43078,6 @@ CREATE INDEX mdl_analindicalc_staendcon_ix ON public.mdl_analytics_indicator_cal -- --- TOC entry 7795 (class 1259 OID 65014) -- Name: mdl_analmode_enatra_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48215,7 +43085,6 @@ CREATE INDEX mdl_analmode_enatra_ix ON public.mdl_analytics_models USING btree ( -- --- TOC entry 7800 (class 1259 OID 65015) -- Name: mdl_analmodelog_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48223,7 +43092,6 @@ CREATE INDEX mdl_analmodelog_mod_ix ON public.mdl_analytics_models_log USING btr -- --- TOC entry 7810 (class 1259 OID 65016) -- Name: mdl_analpred_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48231,7 +43099,6 @@ CREATE INDEX mdl_analpred_con_ix ON public.mdl_analytics_predictions USING btree -- --- TOC entry 7813 (class 1259 OID 65017) -- Name: mdl_analpred_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48239,7 +43106,6 @@ CREATE INDEX mdl_analpred_mod_ix ON public.mdl_analytics_predictions USING btree -- --- TOC entry 7814 (class 1259 OID 65018) -- Name: mdl_analpred_modcon_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48247,7 +43113,6 @@ CREATE INDEX mdl_analpred_modcon_ix ON public.mdl_analytics_predictions USING bt -- --- TOC entry 7807 (class 1259 OID 65019) -- Name: mdl_analpredacti_pre_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48255,7 +43120,6 @@ CREATE INDEX mdl_analpredacti_pre_ix ON public.mdl_analytics_prediction_actions -- --- TOC entry 7808 (class 1259 OID 65020) -- Name: mdl_analpredacti_preuseact_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48263,7 +43127,6 @@ CREATE INDEX mdl_analpredacti_preuseact_ix ON public.mdl_analytics_prediction_ac -- --- TOC entry 7809 (class 1259 OID 65021) -- Name: mdl_analpredacti_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48271,7 +43134,6 @@ CREATE INDEX mdl_analpredacti_use_ix ON public.mdl_analytics_prediction_actions -- --- TOC entry 7803 (class 1259 OID 65022) -- Name: mdl_analpredsamp_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48279,7 +43141,6 @@ CREATE INDEX mdl_analpredsamp_mod_ix ON public.mdl_analytics_predict_samples USI -- --- TOC entry 7804 (class 1259 OID 65023) -- Name: mdl_analpredsamp_modanatimr_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48287,7 +43148,6 @@ CREATE INDEX mdl_analpredsamp_modanatimr_ix ON public.mdl_analytics_predict_samp -- --- TOC entry 7817 (class 1259 OID 65024) -- Name: mdl_analtraisamp_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48295,7 +43155,6 @@ CREATE INDEX mdl_analtraisamp_mod_ix ON public.mdl_analytics_train_samples USING -- --- TOC entry 7818 (class 1259 OID 65025) -- Name: mdl_analtraisamp_modanatim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48303,7 +43162,6 @@ CREATE INDEX mdl_analtraisamp_modanatim_ix ON public.mdl_analytics_train_samples -- --- TOC entry 7819 (class 1259 OID 65026) -- Name: mdl_analusedanal_ana_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48311,7 +43169,6 @@ CREATE INDEX mdl_analusedanal_ana_ix ON public.mdl_analytics_used_analysables US -- --- TOC entry 7822 (class 1259 OID 65027) -- Name: mdl_analusedanal_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48319,7 +43176,6 @@ CREATE INDEX mdl_analusedanal_mod_ix ON public.mdl_analytics_used_analysables US -- --- TOC entry 7823 (class 1259 OID 65028) -- Name: mdl_analusedanal_modact_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48327,7 +43183,6 @@ CREATE INDEX mdl_analusedanal_modact_ix ON public.mdl_analytics_used_analysables -- --- TOC entry 7824 (class 1259 OID 65029) -- Name: mdl_analusedfile_fil_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48335,7 +43190,6 @@ CREATE INDEX mdl_analusedfile_fil_ix ON public.mdl_analytics_used_files USING bt -- --- TOC entry 7827 (class 1259 OID 65030) -- Name: mdl_analusedfile_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48343,7 +43197,6 @@ CREATE INDEX mdl_analusedfile_mod_ix ON public.mdl_analytics_used_files USING bt -- --- TOC entry 7828 (class 1259 OID 65031) -- Name: mdl_analusedfile_modactfil_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48351,7 +43204,6 @@ CREATE INDEX mdl_analusedfile_modactfil_ix ON public.mdl_analytics_used_files US -- --- TOC entry 7892 (class 1259 OID 65032) -- Name: mdl_assi_cou2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48359,7 +43211,6 @@ CREATE INDEX mdl_assi_cou2_ix ON public.mdl_assignment USING btree (course); -- --- TOC entry 7829 (class 1259 OID 65033) -- Name: mdl_assi_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48367,7 +43218,6 @@ CREATE INDEX mdl_assi_cou_ix ON public.mdl_assign USING btree (course); -- --- TOC entry 7832 (class 1259 OID 65034) -- Name: mdl_assi_tea_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48375,7 +43225,6 @@ CREATE INDEX mdl_assi_tea_ix ON public.mdl_assign USING btree (teamsubmissiongro -- --- TOC entry 7866 (class 1259 OID 65035) -- Name: mdl_assicomm_ass_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48383,7 +43232,6 @@ CREATE INDEX mdl_assicomm_ass_ix ON public.mdl_assignfeedback_comments USING btr -- --- TOC entry 7867 (class 1259 OID 65036) -- Name: mdl_assicomm_gra_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48391,7 +43239,6 @@ CREATE INDEX mdl_assicomm_gra_ix ON public.mdl_assignfeedback_comments USING btr -- --- TOC entry 7870 (class 1259 OID 65037) -- Name: mdl_assieditanno_gra_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48399,7 +43246,6 @@ CREATE INDEX mdl_assieditanno_gra_ix ON public.mdl_assignfeedback_editpdf_annot -- --- TOC entry 7871 (class 1259 OID 65038) -- Name: mdl_assieditanno_grapag_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48407,7 +43253,6 @@ CREATE INDEX mdl_assieditanno_grapag_ix ON public.mdl_assignfeedback_editpdf_ann -- --- TOC entry 7874 (class 1259 OID 65039) -- Name: mdl_assieditcmnt_gra_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48415,7 +43260,6 @@ CREATE INDEX mdl_assieditcmnt_gra_ix ON public.mdl_assignfeedback_editpdf_cmnt U -- --- TOC entry 7875 (class 1259 OID 65040) -- Name: mdl_assieditcmnt_grapag_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48423,7 +43267,6 @@ CREATE INDEX mdl_assieditcmnt_grapag_ix ON public.mdl_assignfeedback_editpdf_cmn -- --- TOC entry 7880 (class 1259 OID 65041) -- Name: mdl_assieditqueu_subsub_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48431,7 +43274,6 @@ CREATE UNIQUE INDEX mdl_assieditqueu_subsub_uix ON public.mdl_assignfeedback_edi -- --- TOC entry 7883 (class 1259 OID 65042) -- Name: mdl_assieditquic_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48439,7 +43281,6 @@ CREATE INDEX mdl_assieditquic_use_ix ON public.mdl_assignfeedback_editpdf_quick -- --- TOC entry 7884 (class 1259 OID 65043) -- Name: mdl_assieditrot_gra_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48447,7 +43288,6 @@ CREATE INDEX mdl_assieditrot_gra_ix ON public.mdl_assignfeedback_editpdf_rot USI -- --- TOC entry 7885 (class 1259 OID 65044) -- Name: mdl_assieditrot_grapag_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48455,7 +43295,6 @@ CREATE UNIQUE INDEX mdl_assieditrot_grapag_uix ON public.mdl_assignfeedback_edit -- --- TOC entry 7888 (class 1259 OID 65045) -- Name: mdl_assifile_ass2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48463,7 +43302,6 @@ CREATE INDEX mdl_assifile_ass2_ix ON public.mdl_assignfeedback_file USING btree -- --- TOC entry 7905 (class 1259 OID 65046) -- Name: mdl_assifile_ass_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48471,7 +43309,6 @@ CREATE INDEX mdl_assifile_ass_ix ON public.mdl_assignsubmission_file USING btree -- --- TOC entry 7889 (class 1259 OID 65047) -- Name: mdl_assifile_gra_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48479,7 +43316,6 @@ CREATE INDEX mdl_assifile_gra_ix ON public.mdl_assignfeedback_file USING btree ( -- --- TOC entry 7908 (class 1259 OID 65048) -- Name: mdl_assifile_sub_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48487,7 +43323,6 @@ CREATE INDEX mdl_assifile_sub_ix ON public.mdl_assignsubmission_file USING btree -- --- TOC entry 7833 (class 1259 OID 65049) -- Name: mdl_assigrad_ass_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48495,7 +43330,6 @@ CREATE INDEX mdl_assigrad_ass_ix ON public.mdl_assign_grades USING btree (assign -- --- TOC entry 7834 (class 1259 OID 65050) -- Name: mdl_assigrad_assuseatt_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48503,7 +43337,6 @@ CREATE UNIQUE INDEX mdl_assigrad_assuseatt_uix ON public.mdl_assign_grades USING -- --- TOC entry 7835 (class 1259 OID 65051) -- Name: mdl_assigrad_att_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48511,7 +43344,6 @@ CREATE INDEX mdl_assigrad_att_ix ON public.mdl_assign_grades USING btree (attemp -- --- TOC entry 7838 (class 1259 OID 65052) -- Name: mdl_assigrad_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48519,7 +43351,6 @@ CREATE INDEX mdl_assigrad_use_ix ON public.mdl_assign_grades USING btree (userid -- --- TOC entry 7909 (class 1259 OID 65053) -- Name: mdl_assionli_ass_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48527,7 +43358,6 @@ CREATE INDEX mdl_assionli_ass_ix ON public.mdl_assignsubmission_onlinetext USING -- --- TOC entry 7912 (class 1259 OID 65054) -- Name: mdl_assionli_sub_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48535,7 +43365,6 @@ CREATE INDEX mdl_assionli_sub_ix ON public.mdl_assignsubmission_onlinetext USING -- --- TOC entry 7839 (class 1259 OID 65055) -- Name: mdl_assiover_ass_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48543,7 +43372,6 @@ CREATE INDEX mdl_assiover_ass_ix ON public.mdl_assign_overrides USING btree (ass -- --- TOC entry 7840 (class 1259 OID 65056) -- Name: mdl_assiover_gro_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48551,7 +43379,6 @@ CREATE INDEX mdl_assiover_gro_ix ON public.mdl_assign_overrides USING btree (gro -- --- TOC entry 7843 (class 1259 OID 65057) -- Name: mdl_assiover_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48559,7 +43386,6 @@ CREATE INDEX mdl_assiover_use_ix ON public.mdl_assign_overrides USING btree (use -- --- TOC entry 7844 (class 1259 OID 65058) -- Name: mdl_assiplugconf_ass_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48567,7 +43393,6 @@ CREATE INDEX mdl_assiplugconf_ass_ix ON public.mdl_assign_plugin_config USING bt -- --- TOC entry 7847 (class 1259 OID 65059) -- Name: mdl_assiplugconf_nam_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48575,7 +43400,6 @@ CREATE INDEX mdl_assiplugconf_nam_ix ON public.mdl_assign_plugin_config USING bt -- --- TOC entry 7848 (class 1259 OID 65060) -- Name: mdl_assiplugconf_plu_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48583,7 +43407,6 @@ CREATE INDEX mdl_assiplugconf_plu_ix ON public.mdl_assign_plugin_config USING bt -- --- TOC entry 7849 (class 1259 OID 65061) -- Name: mdl_assiplugconf_sub_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48591,7 +43414,6 @@ CREATE INDEX mdl_assiplugconf_sub_ix ON public.mdl_assign_plugin_config USING bt -- --- TOC entry 7895 (class 1259 OID 65062) -- Name: mdl_assisubm_ass2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48599,7 +43421,6 @@ CREATE INDEX mdl_assisubm_ass2_ix ON public.mdl_assignment_submissions USING btr -- --- TOC entry 7850 (class 1259 OID 65063) -- Name: mdl_assisubm_ass_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48607,7 +43428,6 @@ CREATE INDEX mdl_assisubm_ass_ix ON public.mdl_assign_submission USING btree (as -- --- TOC entry 7851 (class 1259 OID 65064) -- Name: mdl_assisubm_assusegroatt_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48615,7 +43435,6 @@ CREATE UNIQUE INDEX mdl_assisubm_assusegroatt_uix ON public.mdl_assign_submissio -- --- TOC entry 7852 (class 1259 OID 65065) -- Name: mdl_assisubm_assusegrolat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48623,7 +43442,6 @@ CREATE INDEX mdl_assisubm_assusegrolat_ix ON public.mdl_assign_submission USING -- --- TOC entry 7853 (class 1259 OID 65066) -- Name: mdl_assisubm_att_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48631,7 +43449,6 @@ CREATE INDEX mdl_assisubm_att_ix ON public.mdl_assign_submission USING btree (at -- --- TOC entry 7898 (class 1259 OID 65067) -- Name: mdl_assisubm_mai_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48639,7 +43456,6 @@ CREATE INDEX mdl_assisubm_mai_ix ON public.mdl_assignment_submissions USING btre -- --- TOC entry 7899 (class 1259 OID 65068) -- Name: mdl_assisubm_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48647,7 +43463,6 @@ CREATE INDEX mdl_assisubm_tim_ix ON public.mdl_assignment_submissions USING btre -- --- TOC entry 7900 (class 1259 OID 65069) -- Name: mdl_assisubm_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48655,7 +43470,6 @@ CREATE INDEX mdl_assisubm_use2_ix ON public.mdl_assignment_submissions USING btr -- --- TOC entry 7856 (class 1259 OID 65070) -- Name: mdl_assisubm_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48663,7 +43477,6 @@ CREATE INDEX mdl_assisubm_use_ix ON public.mdl_assign_submission USING btree (us -- --- TOC entry 7903 (class 1259 OID 65071) -- Name: mdl_assiupgr_old2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48671,7 +43484,6 @@ CREATE INDEX mdl_assiupgr_old2_ix ON public.mdl_assignment_upgrade USING btree ( -- --- TOC entry 7904 (class 1259 OID 65072) -- Name: mdl_assiupgr_old_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48679,7 +43491,6 @@ CREATE INDEX mdl_assiupgr_old_ix ON public.mdl_assignment_upgrade USING btree (o -- --- TOC entry 7857 (class 1259 OID 65073) -- Name: mdl_assiuserflag_ass_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48687,7 +43498,6 @@ CREATE INDEX mdl_assiuserflag_ass_ix ON public.mdl_assign_user_flags USING btree -- --- TOC entry 7860 (class 1259 OID 65074) -- Name: mdl_assiuserflag_mai_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48695,7 +43505,6 @@ CREATE INDEX mdl_assiuserflag_mai_ix ON public.mdl_assign_user_flags USING btree -- --- TOC entry 7861 (class 1259 OID 65075) -- Name: mdl_assiuserflag_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48703,7 +43512,6 @@ CREATE INDEX mdl_assiuserflag_use_ix ON public.mdl_assign_user_flags USING btree -- --- TOC entry 7862 (class 1259 OID 65076) -- Name: mdl_assiusermapp_ass_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48711,7 +43519,6 @@ CREATE INDEX mdl_assiusermapp_ass_ix ON public.mdl_assign_user_mapping USING btr -- --- TOC entry 7865 (class 1259 OID 65077) -- Name: mdl_assiusermapp_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48719,7 +43526,6 @@ CREATE INDEX mdl_assiusermapp_use_ix ON public.mdl_assign_user_mapping USING btr -- --- TOC entry 7915 (class 1259 OID 65078) -- Name: mdl_authoautlinklogi_iss_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48727,7 +43533,6 @@ CREATE INDEX mdl_authoautlinklogi_iss_ix ON public.mdl_auth_oauth2_linked_login -- --- TOC entry 7916 (class 1259 OID 65079) -- Name: mdl_authoautlinklogi_issuse_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48735,7 +43540,6 @@ CREATE INDEX mdl_authoautlinklogi_issuse_ix ON public.mdl_auth_oauth2_linked_log -- --- TOC entry 7917 (class 1259 OID 65080) -- Name: mdl_authoautlinklogi_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48743,7 +43547,6 @@ CREATE INDEX mdl_authoautlinklogi_use2_ix ON public.mdl_auth_oauth2_linked_login -- --- TOC entry 7918 (class 1259 OID 65081) -- Name: mdl_authoautlinklogi_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48751,7 +43554,6 @@ CREATE INDEX mdl_authoautlinklogi_use_ix ON public.mdl_auth_oauth2_linked_login -- --- TOC entry 7919 (class 1259 OID 65082) -- Name: mdl_authoautlinklogi_useis_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48759,7 +43561,6 @@ CREATE UNIQUE INDEX mdl_authoautlinklogi_useis_uix ON public.mdl_auth_oauth2_lin -- --- TOC entry 7920 (class 1259 OID 65083) -- Name: mdl_backcont_bac_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48767,7 +43568,6 @@ CREATE UNIQUE INDEX mdl_backcont_bac_uix ON public.mdl_backup_controllers USING -- --- TOC entry 7923 (class 1259 OID 65084) -- Name: mdl_backcont_typite_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48775,7 +43575,6 @@ CREATE INDEX mdl_backcont_typite_ix ON public.mdl_backup_controllers USING btree -- --- TOC entry 7924 (class 1259 OID 65085) -- Name: mdl_backcont_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48783,7 +43582,6 @@ CREATE INDEX mdl_backcont_use_ix ON public.mdl_backup_controllers USING btree (u -- --- TOC entry 7925 (class 1259 OID 65086) -- Name: mdl_backcont_useite_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48791,7 +43589,6 @@ CREATE INDEX mdl_backcont_useite_ix ON public.mdl_backup_controllers USING btree -- --- TOC entry 7926 (class 1259 OID 65087) -- Name: mdl_backcour_cou_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48799,7 +43596,6 @@ CREATE UNIQUE INDEX mdl_backcour_cou_uix ON public.mdl_backup_courses USING btre -- --- TOC entry 7929 (class 1259 OID 65088) -- Name: mdl_backlogs_bac_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48807,7 +43603,6 @@ CREATE INDEX mdl_backlogs_bac_ix ON public.mdl_backup_logs USING btree (backupid -- --- TOC entry 7930 (class 1259 OID 65089) -- Name: mdl_backlogs_bacid_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48815,7 +43610,6 @@ CREATE UNIQUE INDEX mdl_backlogs_bacid_uix ON public.mdl_backup_logs USING btree -- --- TOC entry 7933 (class 1259 OID 65090) -- Name: mdl_badg_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48823,7 +43617,6 @@ CREATE INDEX mdl_badg_cou_ix ON public.mdl_badge USING btree (courseid); -- --- TOC entry 7936 (class 1259 OID 65091) -- Name: mdl_badg_typ_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48831,7 +43624,6 @@ CREATE INDEX mdl_badg_typ_ix ON public.mdl_badge USING btree (type); -- --- TOC entry 7937 (class 1259 OID 65092) -- Name: mdl_badg_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48839,7 +43631,6 @@ CREATE INDEX mdl_badg_use2_ix ON public.mdl_badge USING btree (usercreated); -- --- TOC entry 7938 (class 1259 OID 65093) -- Name: mdl_badg_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48847,7 +43638,6 @@ CREATE INDEX mdl_badg_use_ix ON public.mdl_badge USING btree (usermodified); -- --- TOC entry 7939 (class 1259 OID 65094) -- Name: mdl_badgalig_bad_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48855,7 +43645,6 @@ CREATE INDEX mdl_badgalig_bad_ix ON public.mdl_badge_alignment USING btree (badg -- --- TOC entry 7942 (class 1259 OID 65095) -- Name: mdl_badgback_ext_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48863,7 +43652,6 @@ CREATE INDEX mdl_badgback_ext_ix ON public.mdl_badge_backpack USING btree (exter -- --- TOC entry 7945 (class 1259 OID 65096) -- Name: mdl_badgback_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48871,7 +43659,6 @@ CREATE INDEX mdl_badgback_use_ix ON public.mdl_badge_backpack USING btree (useri -- --- TOC entry 7946 (class 1259 OID 65097) -- Name: mdl_badgbackoaut_ext_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48879,7 +43666,6 @@ CREATE INDEX mdl_badgbackoaut_ext_ix ON public.mdl_badge_backpack_oauth2 USING b -- --- TOC entry 7949 (class 1259 OID 65098) -- Name: mdl_badgbackoaut_iss_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48887,7 +43673,6 @@ CREATE INDEX mdl_badgbackoaut_iss_ix ON public.mdl_badge_backpack_oauth2 USING b -- --- TOC entry 7950 (class 1259 OID 65099) -- Name: mdl_badgbackoaut_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48895,7 +43680,6 @@ CREATE INDEX mdl_badgbackoaut_use2_ix ON public.mdl_badge_backpack_oauth2 USING -- --- TOC entry 7951 (class 1259 OID 65100) -- Name: mdl_badgbackoaut_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48903,7 +43687,6 @@ CREATE INDEX mdl_badgbackoaut_use_ix ON public.mdl_badge_backpack_oauth2 USING b -- --- TOC entry 7952 (class 1259 OID 65101) -- Name: mdl_badgcrit_bad_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48911,7 +43694,6 @@ CREATE INDEX mdl_badgcrit_bad_ix ON public.mdl_badge_criteria USING btree (badge -- --- TOC entry 7953 (class 1259 OID 65102) -- Name: mdl_badgcrit_badcri_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48919,7 +43701,6 @@ CREATE UNIQUE INDEX mdl_badgcrit_badcri_uix ON public.mdl_badge_criteria USING b -- --- TOC entry 7954 (class 1259 OID 65103) -- Name: mdl_badgcrit_cri_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48927,7 +43708,6 @@ CREATE INDEX mdl_badgcrit_cri_ix ON public.mdl_badge_criteria USING btree (crite -- --- TOC entry 7957 (class 1259 OID 65104) -- Name: mdl_badgcritmet_cri_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48935,7 +43715,6 @@ CREATE INDEX mdl_badgcritmet_cri_ix ON public.mdl_badge_criteria_met USING btree -- --- TOC entry 7960 (class 1259 OID 65105) -- Name: mdl_badgcritmet_iss_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48943,7 +43722,6 @@ CREATE INDEX mdl_badgcritmet_iss_ix ON public.mdl_badge_criteria_met USING btree -- --- TOC entry 7961 (class 1259 OID 65106) -- Name: mdl_badgcritmet_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48951,7 +43729,6 @@ CREATE INDEX mdl_badgcritmet_use_ix ON public.mdl_badge_criteria_met USING btree -- --- TOC entry 7962 (class 1259 OID 65107) -- Name: mdl_badgcritpara_cri_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48959,7 +43736,6 @@ CREATE INDEX mdl_badgcritpara_cri_ix ON public.mdl_badge_criteria_param USING bt -- --- TOC entry 7965 (class 1259 OID 65108) -- Name: mdl_badgendo_bad_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48967,7 +43743,6 @@ CREATE INDEX mdl_badgendo_bad_ix ON public.mdl_badge_endorsement USING btree (ba -- --- TOC entry 7968 (class 1259 OID 65109) -- Name: mdl_badgexte_bac_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48975,7 +43750,6 @@ CREATE INDEX mdl_badgexte_bac_ix ON public.mdl_badge_external USING btree (backp -- --- TOC entry 7971 (class 1259 OID 65110) -- Name: mdl_badgexteback_bac2_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48983,7 +43757,6 @@ CREATE UNIQUE INDEX mdl_badgexteback_bac2_uix ON public.mdl_badge_external_backp -- --- TOC entry 7972 (class 1259 OID 65111) -- Name: mdl_badgexteback_bac_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48991,7 +43764,6 @@ CREATE UNIQUE INDEX mdl_badgexteback_bac_uix ON public.mdl_badge_external_backpa -- --- TOC entry 7975 (class 1259 OID 65112) -- Name: mdl_badgexteback_oau_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -48999,7 +43771,6 @@ CREATE INDEX mdl_badgexteback_oau_ix ON public.mdl_badge_external_backpack USING -- --- TOC entry 7978 (class 1259 OID 65113) -- Name: mdl_badgexteiden_sit_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49007,7 +43778,6 @@ CREATE INDEX mdl_badgexteiden_sit_ix ON public.mdl_badge_external_identifier USI -- --- TOC entry 7979 (class 1259 OID 65114) -- Name: mdl_badgexteiden_sitintext_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49015,7 +43785,6 @@ CREATE UNIQUE INDEX mdl_badgexteiden_sitintext_uix ON public.mdl_badge_external_ -- --- TOC entry 7980 (class 1259 OID 65115) -- Name: mdl_badgissu_bad_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49023,7 +43792,6 @@ CREATE INDEX mdl_badgissu_bad_ix ON public.mdl_badge_issued USING btree (badgeid -- --- TOC entry 7981 (class 1259 OID 65116) -- Name: mdl_badgissu_baduse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49031,7 +43799,6 @@ CREATE UNIQUE INDEX mdl_badgissu_baduse_uix ON public.mdl_badge_issued USING btr -- --- TOC entry 7984 (class 1259 OID 65117) -- Name: mdl_badgissu_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49039,7 +43806,6 @@ CREATE INDEX mdl_badgissu_use_ix ON public.mdl_badge_issued USING btree (userid) -- --- TOC entry 7985 (class 1259 OID 65118) -- Name: mdl_badgmanuawar_bad_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49047,7 +43813,6 @@ CREATE INDEX mdl_badgmanuawar_bad_ix ON public.mdl_badge_manual_award USING btre -- --- TOC entry 7988 (class 1259 OID 65119) -- Name: mdl_badgmanuawar_iss2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49055,7 +43820,6 @@ CREATE INDEX mdl_badgmanuawar_iss2_ix ON public.mdl_badge_manual_award USING btr -- --- TOC entry 7989 (class 1259 OID 65120) -- Name: mdl_badgmanuawar_iss_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49063,7 +43827,6 @@ CREATE INDEX mdl_badgmanuawar_iss_ix ON public.mdl_badge_manual_award USING btre -- --- TOC entry 7990 (class 1259 OID 65121) -- Name: mdl_badgmanuawar_rec_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49071,7 +43834,6 @@ CREATE INDEX mdl_badgmanuawar_rec_ix ON public.mdl_badge_manual_award USING btre -- --- TOC entry 7991 (class 1259 OID 65122) -- Name: mdl_badgrela_bad_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49079,7 +43841,6 @@ CREATE INDEX mdl_badgrela_bad_ix ON public.mdl_badge_related USING btree (badgei -- --- TOC entry 7992 (class 1259 OID 65123) -- Name: mdl_badgrela_badrel_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49087,7 +43848,6 @@ CREATE UNIQUE INDEX mdl_badgrela_badrel_uix ON public.mdl_badge_related USING bt -- --- TOC entry 7995 (class 1259 OID 65124) -- Name: mdl_badgrela_rel_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49095,7 +43855,6 @@ CREATE INDEX mdl_badgrela_rel_ix ON public.mdl_badge_related USING btree (relate -- --- TOC entry 7998 (class 1259 OID 65125) -- Name: mdl_bloc_nam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49103,7 +43862,6 @@ CREATE UNIQUE INDEX mdl_bloc_nam_uix ON public.mdl_block USING btree (name); -- --- TOC entry 8001 (class 1259 OID 65126) -- Name: mdl_blocinst_par_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49111,7 +43869,6 @@ CREATE INDEX mdl_blocinst_par_ix ON public.mdl_block_instances USING btree (pare -- --- TOC entry 8002 (class 1259 OID 65127) -- Name: mdl_blocinst_parshopagsub_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49119,7 +43876,6 @@ CREATE INDEX mdl_blocinst_parshopagsub_ix ON public.mdl_block_instances USING bt -- --- TOC entry 8003 (class 1259 OID 65128) -- Name: mdl_blocinst_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49127,7 +43883,6 @@ CREATE INDEX mdl_blocinst_tim_ix ON public.mdl_block_instances USING btree (time -- --- TOC entry 8004 (class 1259 OID 65129) -- Name: mdl_blocposi_blo_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49135,7 +43890,6 @@ CREATE INDEX mdl_blocposi_blo_ix ON public.mdl_block_positions USING btree (bloc -- --- TOC entry 8005 (class 1259 OID 65130) -- Name: mdl_blocposi_bloconpagsub_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49143,7 +43897,6 @@ CREATE UNIQUE INDEX mdl_blocposi_bloconpagsub_uix ON public.mdl_block_positions -- --- TOC entry 8006 (class 1259 OID 65131) -- Name: mdl_blocposi_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49151,7 +43904,6 @@ CREATE INDEX mdl_blocposi_con_ix ON public.mdl_block_positions USING btree (cont -- --- TOC entry 8012 (class 1259 OID 65132) -- Name: mdl_blocrece_cmi_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49159,7 +43911,6 @@ CREATE INDEX mdl_blocrece_cmi_ix ON public.mdl_block_recentlyaccesseditems USING -- --- TOC entry 8013 (class 1259 OID 65133) -- Name: mdl_blocrece_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49167,7 +43918,6 @@ CREATE INDEX mdl_blocrece_cou_ix ON public.mdl_block_recentlyaccesseditems USING -- --- TOC entry 8016 (class 1259 OID 65134) -- Name: mdl_blocrece_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49175,7 +43925,6 @@ CREATE INDEX mdl_blocrece_use_ix ON public.mdl_block_recentlyaccesseditems USING -- --- TOC entry 8017 (class 1259 OID 65135) -- Name: mdl_blocrece_usecoucmi_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49183,7 +43932,6 @@ CREATE UNIQUE INDEX mdl_blocrece_usecoucmi_uix ON public.mdl_block_recentlyacces -- --- TOC entry 8009 (class 1259 OID 65136) -- Name: mdl_blocreceacti_coutim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49191,7 +43939,6 @@ CREATE INDEX mdl_blocreceacti_coutim_ix ON public.mdl_block_recent_activity USIN -- --- TOC entry 8020 (class 1259 OID 65137) -- Name: mdl_blogasso_blo_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49199,7 +43946,6 @@ CREATE INDEX mdl_blogasso_blo_ix ON public.mdl_blog_association USING btree (blo -- --- TOC entry 8021 (class 1259 OID 65138) -- Name: mdl_blogasso_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49207,7 +43953,6 @@ CREATE INDEX mdl_blogasso_con_ix ON public.mdl_blog_association USING btree (con -- --- TOC entry 8026 (class 1259 OID 65139) -- Name: mdl_blogexte_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49215,7 +43960,6 @@ CREATE INDEX mdl_blogexte_use_ix ON public.mdl_blog_external USING btree (userid -- --- TOC entry 8031 (class 1259 OID 65140) -- Name: mdl_cachfilt_filmd5_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49223,7 +43967,6 @@ CREATE INDEX mdl_cachfilt_filmd5_ix ON public.mdl_cache_filters USING btree (fil -- --- TOC entry 8034 (class 1259 OID 65141) -- Name: mdl_cachflag_fla_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49231,7 +43974,6 @@ CREATE INDEX mdl_cachflag_fla_ix ON public.mdl_cache_flags USING btree (flagtype -- --- TOC entry 8037 (class 1259 OID 65142) -- Name: mdl_cachflag_nam_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49239,7 +43981,6 @@ CREATE INDEX mdl_cachflag_nam_ix ON public.mdl_cache_flags USING btree (name); -- --- TOC entry 8040 (class 1259 OID 65143) -- Name: mdl_capa_nam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49247,7 +43988,6 @@ CREATE UNIQUE INDEX mdl_capa_nam_uix ON public.mdl_capabilities USING btree (nam -- --- TOC entry 8041 (class 1259 OID 65144) -- Name: mdl_chat_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49255,7 +43995,6 @@ CREATE INDEX mdl_chat_cou_ix ON public.mdl_chat USING btree (course); -- --- TOC entry 8044 (class 1259 OID 65145) -- Name: mdl_chatmess_cha_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49263,7 +44002,6 @@ CREATE INDEX mdl_chatmess_cha_ix ON public.mdl_chat_messages USING btree (chatid -- --- TOC entry 8045 (class 1259 OID 65146) -- Name: mdl_chatmess_gro_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49271,7 +44009,6 @@ CREATE INDEX mdl_chatmess_gro_ix ON public.mdl_chat_messages USING btree (groupi -- --- TOC entry 8048 (class 1259 OID 65147) -- Name: mdl_chatmess_timcha_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49279,7 +44016,6 @@ CREATE INDEX mdl_chatmess_timcha_ix ON public.mdl_chat_messages USING btree ("ti -- --- TOC entry 8049 (class 1259 OID 65148) -- Name: mdl_chatmess_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49287,7 +44023,6 @@ CREATE INDEX mdl_chatmess_use_ix ON public.mdl_chat_messages USING btree (userid -- --- TOC entry 8050 (class 1259 OID 65149) -- Name: mdl_chatmesscurr_cha_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49295,7 +44030,6 @@ CREATE INDEX mdl_chatmesscurr_cha_ix ON public.mdl_chat_messages_current USING b -- --- TOC entry 8051 (class 1259 OID 65150) -- Name: mdl_chatmesscurr_gro_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49303,7 +44037,6 @@ CREATE INDEX mdl_chatmesscurr_gro_ix ON public.mdl_chat_messages_current USING b -- --- TOC entry 8054 (class 1259 OID 65151) -- Name: mdl_chatmesscurr_timcha_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49311,7 +44044,6 @@ CREATE INDEX mdl_chatmesscurr_timcha_ix ON public.mdl_chat_messages_current USIN -- --- TOC entry 8055 (class 1259 OID 65152) -- Name: mdl_chatmesscurr_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49319,7 +44051,6 @@ CREATE INDEX mdl_chatmesscurr_use_ix ON public.mdl_chat_messages_current USING b -- --- TOC entry 8056 (class 1259 OID 65153) -- Name: mdl_chatuser_cha_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49327,7 +44058,6 @@ CREATE INDEX mdl_chatuser_cha_ix ON public.mdl_chat_users USING btree (chatid); -- --- TOC entry 8057 (class 1259 OID 65154) -- Name: mdl_chatuser_gro_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49335,7 +44065,6 @@ CREATE INDEX mdl_chatuser_gro_ix ON public.mdl_chat_users USING btree (groupid); -- --- TOC entry 8060 (class 1259 OID 65155) -- Name: mdl_chatuser_las_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49343,7 +44072,6 @@ CREATE INDEX mdl_chatuser_las_ix ON public.mdl_chat_users USING btree (lastping) -- --- TOC entry 8061 (class 1259 OID 65156) -- Name: mdl_chatuser_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49351,7 +44079,6 @@ CREATE INDEX mdl_chatuser_use_ix ON public.mdl_chat_users USING btree (userid); -- --- TOC entry 8062 (class 1259 OID 65157) -- Name: mdl_choi_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49359,7 +44086,6 @@ CREATE INDEX mdl_choi_cou_ix ON public.mdl_choice USING btree (course); -- --- TOC entry 8065 (class 1259 OID 65158) -- Name: mdl_choiansw_cho_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49367,7 +44093,6 @@ CREATE INDEX mdl_choiansw_cho_ix ON public.mdl_choice_answers USING btree (choic -- --- TOC entry 8068 (class 1259 OID 65159) -- Name: mdl_choiansw_opt_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49375,7 +44100,6 @@ CREATE INDEX mdl_choiansw_opt_ix ON public.mdl_choice_answers USING btree (optio -- --- TOC entry 8069 (class 1259 OID 65160) -- Name: mdl_choiansw_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49383,7 +44107,6 @@ CREATE INDEX mdl_choiansw_use_ix ON public.mdl_choice_answers USING btree (useri -- --- TOC entry 8070 (class 1259 OID 65161) -- Name: mdl_choiopti_cho_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49391,7 +44114,6 @@ CREATE INDEX mdl_choiopti_cho_ix ON public.mdl_choice_options USING btree (choic -- --- TOC entry 8073 (class 1259 OID 65162) -- Name: mdl_coho_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49399,7 +44121,6 @@ CREATE INDEX mdl_coho_con_ix ON public.mdl_cohort USING btree (contextid); -- --- TOC entry 8076 (class 1259 OID 65163) -- Name: mdl_cohomemb_coh_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49407,7 +44128,6 @@ CREATE INDEX mdl_cohomemb_coh_ix ON public.mdl_cohort_members USING btree (cohor -- --- TOC entry 8077 (class 1259 OID 65164) -- Name: mdl_cohomemb_cohuse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49415,7 +44135,6 @@ CREATE UNIQUE INDEX mdl_cohomemb_cohuse_uix ON public.mdl_cohort_members USING b -- --- TOC entry 8080 (class 1259 OID 65165) -- Name: mdl_cohomemb_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49423,7 +44142,6 @@ CREATE INDEX mdl_cohomemb_use_ix ON public.mdl_cohort_members USING btree (useri -- --- TOC entry 8081 (class 1259 OID 65166) -- Name: mdl_comm_concomite_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49431,7 +44149,6 @@ CREATE INDEX mdl_comm_concomite_ix ON public.mdl_comments USING btree (contextid -- --- TOC entry 8084 (class 1259 OID 65167) -- Name: mdl_comm_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49439,7 +44156,6 @@ CREATE INDEX mdl_comm_use_ix ON public.mdl_comments USING btree (userid); -- --- TOC entry 8085 (class 1259 OID 65168) -- Name: mdl_comp_comidn_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49447,7 +44163,6 @@ CREATE UNIQUE INDEX mdl_comp_comidn_uix ON public.mdl_competency USING btree (co -- --- TOC entry 8088 (class 1259 OID 65169) -- Name: mdl_comp_rul_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49455,7 +44170,6 @@ CREATE INDEX mdl_comp_rul_ix ON public.mdl_competency USING btree (ruleoutcome); -- --- TOC entry 8089 (class 1259 OID 65170) -- Name: mdl_compcour_com_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49463,7 +44177,6 @@ CREATE INDEX mdl_compcour_com_ix ON public.mdl_competency_coursecomp USING btree -- --- TOC entry 8090 (class 1259 OID 65171) -- Name: mdl_compcour_cou2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49471,7 +44184,6 @@ CREATE INDEX mdl_compcour_cou2_ix ON public.mdl_competency_coursecomp USING btre -- --- TOC entry 8095 (class 1259 OID 65172) -- Name: mdl_compcour_cou_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49479,7 +44191,6 @@ CREATE UNIQUE INDEX mdl_compcour_cou_uix ON public.mdl_competency_coursecompsett -- --- TOC entry 8091 (class 1259 OID 65173) -- Name: mdl_compcour_coucom_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49487,7 +44198,6 @@ CREATE UNIQUE INDEX mdl_compcour_coucom_uix ON public.mdl_competency_coursecomp -- --- TOC entry 8092 (class 1259 OID 65174) -- Name: mdl_compcour_courul_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49495,7 +44205,6 @@ CREATE INDEX mdl_compcour_courul_ix ON public.mdl_competency_coursecomp USING bt -- --- TOC entry 8100 (class 1259 OID 65175) -- Name: mdl_compevid_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49503,7 +44212,6 @@ CREATE INDEX mdl_compevid_use_ix ON public.mdl_competency_evidence USING btree ( -- --- TOC entry 8103 (class 1259 OID 65176) -- Name: mdl_compfram_idn_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49511,7 +44219,6 @@ CREATE UNIQUE INDEX mdl_compfram_idn_uix ON public.mdl_competency_framework USIN -- --- TOC entry 8104 (class 1259 OID 65177) -- Name: mdl_compmodu_cmi_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49519,7 +44226,6 @@ CREATE INDEX mdl_compmodu_cmi_ix ON public.mdl_competency_modulecomp USING btree -- --- TOC entry 8105 (class 1259 OID 65178) -- Name: mdl_compmodu_cmicom_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49527,7 +44233,6 @@ CREATE UNIQUE INDEX mdl_compmodu_cmicom_uix ON public.mdl_competency_modulecomp -- --- TOC entry 8106 (class 1259 OID 65179) -- Name: mdl_compmodu_cmirul_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49535,7 +44240,6 @@ CREATE INDEX mdl_compmodu_cmirul_ix ON public.mdl_competency_modulecomp USING bt -- --- TOC entry 8107 (class 1259 OID 65180) -- Name: mdl_compmodu_com_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49543,7 +44247,6 @@ CREATE INDEX mdl_compmodu_com_ix ON public.mdl_competency_modulecomp USING btree -- --- TOC entry 8117 (class 1259 OID 65181) -- Name: mdl_compplan_placom_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49551,7 +44254,6 @@ CREATE UNIQUE INDEX mdl_compplan_placom_uix ON public.mdl_competency_plancomp US -- --- TOC entry 8112 (class 1259 OID 65182) -- Name: mdl_compplan_stadue_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49559,7 +44261,6 @@ CREATE INDEX mdl_compplan_stadue_ix ON public.mdl_competency_plan USING btree (s -- --- TOC entry 8113 (class 1259 OID 65183) -- Name: mdl_compplan_tem_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49567,7 +44268,6 @@ CREATE INDEX mdl_compplan_tem_ix ON public.mdl_competency_plan USING btree (temp -- --- TOC entry 8114 (class 1259 OID 65184) -- Name: mdl_compplan_usesta_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49575,7 +44275,6 @@ CREATE INDEX mdl_compplan_usesta_ix ON public.mdl_competency_plan USING btree (u -- --- TOC entry 8126 (class 1259 OID 65185) -- Name: mdl_comptemp_com_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49583,7 +44282,6 @@ CREATE INDEX mdl_comptemp_com_ix ON public.mdl_competency_templatecomp USING btr -- --- TOC entry 8124 (class 1259 OID 65186) -- Name: mdl_comptemp_tem2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49591,7 +44289,6 @@ CREATE INDEX mdl_comptemp_tem2_ix ON public.mdl_competency_templatecohort USING -- --- TOC entry 8129 (class 1259 OID 65187) -- Name: mdl_comptemp_tem_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49599,7 +44296,6 @@ CREATE INDEX mdl_comptemp_tem_ix ON public.mdl_competency_templatecomp USING btr -- --- TOC entry 8125 (class 1259 OID 65188) -- Name: mdl_comptemp_temcoh_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49607,7 +44303,6 @@ CREATE UNIQUE INDEX mdl_comptemp_temcoh_uix ON public.mdl_competency_templatecoh -- --- TOC entry 8144 (class 1259 OID 65189) -- Name: mdl_compuser_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49615,7 +44310,6 @@ CREATE INDEX mdl_compuser_use2_ix ON public.mdl_competency_userevidencecomp USIN -- --- TOC entry 8141 (class 1259 OID 65190) -- Name: mdl_compuser_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49623,7 +44317,6 @@ CREATE INDEX mdl_compuser_use_ix ON public.mdl_competency_userevidence USING btr -- --- TOC entry 8145 (class 1259 OID 65191) -- Name: mdl_compuser_usecom2_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49631,7 +44324,6 @@ CREATE UNIQUE INDEX mdl_compuser_usecom2_uix ON public.mdl_competency_usereviden -- --- TOC entry 8132 (class 1259 OID 65192) -- Name: mdl_compuser_usecom_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49639,7 +44331,6 @@ CREATE UNIQUE INDEX mdl_compuser_usecom_uix ON public.mdl_competency_usercomp US -- --- TOC entry 8138 (class 1259 OID 65193) -- Name: mdl_compuser_usecompla_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49647,7 +44338,6 @@ CREATE UNIQUE INDEX mdl_compuser_usecompla_uix ON public.mdl_competency_usercomp -- --- TOC entry 8135 (class 1259 OID 65194) -- Name: mdl_compuser_usecoucom_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49655,7 +44345,6 @@ CREATE UNIQUE INDEX mdl_compuser_usecoucom_uix ON public.mdl_competency_usercomp -- --- TOC entry 8148 (class 1259 OID 65195) -- Name: mdl_conf_nam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49663,7 +44352,6 @@ CREATE UNIQUE INDEX mdl_conf_nam_uix ON public.mdl_config USING btree (name); -- --- TOC entry 8151 (class 1259 OID 65196) -- Name: mdl_conflog_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49671,7 +44359,6 @@ CREATE INDEX mdl_conflog_tim_ix ON public.mdl_config_log USING btree (timemodifi -- --- TOC entry 8152 (class 1259 OID 65197) -- Name: mdl_conflog_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49679,7 +44366,6 @@ CREATE INDEX mdl_conflog_use_ix ON public.mdl_config_log USING btree (userid); -- --- TOC entry 8155 (class 1259 OID 65198) -- Name: mdl_confplug_plunam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49687,7 +44373,6 @@ CREATE UNIQUE INDEX mdl_confplug_plunam_uix ON public.mdl_config_plugins USING b -- --- TOC entry 8163 (class 1259 OID 65199) -- Name: mdl_cont_conins_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49695,7 +44380,6 @@ CREATE UNIQUE INDEX mdl_cont_conins_uix ON public.mdl_context USING btree (conte -- --- TOC entry 8166 (class 1259 OID 65200) -- Name: mdl_cont_ins_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49703,7 +44387,6 @@ CREATE INDEX mdl_cont_ins_ix ON public.mdl_context USING btree (instanceid); -- --- TOC entry 8167 (class 1259 OID 65201) -- Name: mdl_cont_pat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49711,7 +44394,6 @@ CREATE INDEX mdl_cont_pat_ix ON public.mdl_context USING btree (path); -- --- TOC entry 8168 (class 1259 OID 65202) -- Name: mdl_cont_pat_ix_pattern; Type: INDEX; Schema: public; Owner: postgres -- @@ -49719,7 +44401,6 @@ CREATE INDEX mdl_cont_pat_ix_pattern ON public.mdl_context USING btree (path var -- --- TOC entry 8156 (class 1259 OID 65203) -- Name: mdl_contcont_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49727,7 +44408,6 @@ CREATE INDEX mdl_contcont_con_ix ON public.mdl_contentbank_content USING btree ( -- --- TOC entry 8157 (class 1259 OID 65204) -- Name: mdl_contcont_conconins_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49735,7 +44415,6 @@ CREATE INDEX mdl_contcont_conconins_ix ON public.mdl_contentbank_content USING b -- --- TOC entry 8160 (class 1259 OID 65205) -- Name: mdl_contcont_nam_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49743,7 +44422,6 @@ CREATE INDEX mdl_contcont_nam_ix ON public.mdl_contentbank_content USING btree ( -- --- TOC entry 8161 (class 1259 OID 65206) -- Name: mdl_contcont_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49751,7 +44429,6 @@ CREATE INDEX mdl_contcont_use2_ix ON public.mdl_contentbank_content USING btree -- --- TOC entry 8162 (class 1259 OID 65207) -- Name: mdl_contcont_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49759,7 +44436,6 @@ CREATE INDEX mdl_contcont_use_ix ON public.mdl_contentbank_content USING btree ( -- --- TOC entry 8171 (class 1259 OID 65208) -- Name: mdl_cour_cat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49767,7 +44443,6 @@ CREATE INDEX mdl_cour_cat_ix ON public.mdl_course USING btree (category); -- --- TOC entry 8174 (class 1259 OID 65209) -- Name: mdl_cour_idn_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49775,7 +44450,6 @@ CREATE INDEX mdl_cour_idn_ix ON public.mdl_course USING btree (idnumber); -- --- TOC entry 8175 (class 1259 OID 65210) -- Name: mdl_cour_sho_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49783,7 +44457,6 @@ CREATE INDEX mdl_cour_sho_ix ON public.mdl_course USING btree (shortname); -- --- TOC entry 8176 (class 1259 OID 65211) -- Name: mdl_cour_sor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49791,7 +44464,6 @@ CREATE INDEX mdl_cour_sor_ix ON public.mdl_course USING btree (sortorder); -- --- TOC entry 8179 (class 1259 OID 65212) -- Name: mdl_courcate_par_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49799,7 +44471,6 @@ CREATE INDEX mdl_courcate_par_ix ON public.mdl_course_categories USING btree (pa -- --- TOC entry 8200 (class 1259 OID 65213) -- Name: mdl_courcomp_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49807,7 +44478,6 @@ CREATE INDEX mdl_courcomp_cou_ix ON public.mdl_course_completions USING btree (c -- --- TOC entry 8203 (class 1259 OID 65214) -- Name: mdl_courcomp_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49815,7 +44485,6 @@ CREATE INDEX mdl_courcomp_tim_ix ON public.mdl_course_completions USING btree (t -- --- TOC entry 8204 (class 1259 OID 65215) -- Name: mdl_courcomp_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49823,7 +44492,6 @@ CREATE INDEX mdl_courcomp_use_ix ON public.mdl_course_completions USING btree (u -- --- TOC entry 8205 (class 1259 OID 65216) -- Name: mdl_courcomp_usecou_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49831,7 +44499,6 @@ CREATE UNIQUE INDEX mdl_courcomp_usecou_uix ON public.mdl_course_completions USI -- --- TOC entry 8180 (class 1259 OID 65217) -- Name: mdl_courcompaggrmeth_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49839,7 +44506,6 @@ CREATE INDEX mdl_courcompaggrmeth_cou_ix ON public.mdl_course_completion_aggr_me -- --- TOC entry 8181 (class 1259 OID 65218) -- Name: mdl_courcompaggrmeth_coucr_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49847,7 +44513,6 @@ CREATE UNIQUE INDEX mdl_courcompaggrmeth_coucr_uix ON public.mdl_course_completi -- --- TOC entry 8182 (class 1259 OID 65219) -- Name: mdl_courcompaggrmeth_cri_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49855,7 +44520,6 @@ CREATE INDEX mdl_courcompaggrmeth_cri_ix ON public.mdl_course_completion_aggr_me -- --- TOC entry 8192 (class 1259 OID 65220) -- Name: mdl_courcompcrit_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49863,7 +44527,6 @@ CREATE INDEX mdl_courcompcrit_cou_ix ON public.mdl_course_completion_criteria US -- --- TOC entry 8185 (class 1259 OID 65221) -- Name: mdl_courcompcritcomp_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49871,7 +44534,6 @@ CREATE INDEX mdl_courcompcritcomp_cou_ix ON public.mdl_course_completion_crit_co -- --- TOC entry 8186 (class 1259 OID 65222) -- Name: mdl_courcompcritcomp_cri_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49879,7 +44541,6 @@ CREATE INDEX mdl_courcompcritcomp_cri_ix ON public.mdl_course_completion_crit_co -- --- TOC entry 8189 (class 1259 OID 65223) -- Name: mdl_courcompcritcomp_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49887,7 +44548,6 @@ CREATE INDEX mdl_courcompcritcomp_tim_ix ON public.mdl_course_completion_crit_co -- --- TOC entry 8190 (class 1259 OID 65224) -- Name: mdl_courcompcritcomp_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49895,7 +44555,6 @@ CREATE INDEX mdl_courcompcritcomp_use_ix ON public.mdl_course_completion_crit_co -- --- TOC entry 8191 (class 1259 OID 65225) -- Name: mdl_courcompcritcomp_useco_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49903,7 +44562,6 @@ CREATE UNIQUE INDEX mdl_courcompcritcomp_useco_uix ON public.mdl_course_completi -- --- TOC entry 8195 (class 1259 OID 65226) -- Name: mdl_courcompdefa_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49911,7 +44569,6 @@ CREATE INDEX mdl_courcompdefa_cou_ix ON public.mdl_course_completion_defaults US -- --- TOC entry 8196 (class 1259 OID 65227) -- Name: mdl_courcompdefa_coumod_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49919,7 +44576,6 @@ CREATE UNIQUE INDEX mdl_courcompdefa_coumod_uix ON public.mdl_course_completion_ -- --- TOC entry 8199 (class 1259 OID 65228) -- Name: mdl_courcompdefa_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49927,7 +44583,6 @@ CREATE INDEX mdl_courcompdefa_mod_ix ON public.mdl_course_completion_defaults US -- --- TOC entry 8206 (class 1259 OID 65229) -- Name: mdl_courformopti_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49935,7 +44590,6 @@ CREATE INDEX mdl_courformopti_cou_ix ON public.mdl_course_format_options USING b -- --- TOC entry 8207 (class 1259 OID 65230) -- Name: mdl_courformopti_couforsec_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49943,7 +44597,6 @@ CREATE UNIQUE INDEX mdl_courformopti_couforsec_uix ON public.mdl_course_format_o -- --- TOC entry 8210 (class 1259 OID 65231) -- Name: mdl_courmodu_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49951,7 +44604,6 @@ CREATE INDEX mdl_courmodu_cou_ix ON public.mdl_course_modules USING btree (cours -- --- TOC entry 8211 (class 1259 OID 65232) -- Name: mdl_courmodu_gro_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49959,7 +44611,6 @@ CREATE INDEX mdl_courmodu_gro_ix ON public.mdl_course_modules USING btree (group -- --- TOC entry 8214 (class 1259 OID 65233) -- Name: mdl_courmodu_idncou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49967,7 +44618,6 @@ CREATE INDEX mdl_courmodu_idncou_ix ON public.mdl_course_modules USING btree (id -- --- TOC entry 8215 (class 1259 OID 65234) -- Name: mdl_courmodu_ins_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49975,7 +44625,6 @@ CREATE INDEX mdl_courmodu_ins_ix ON public.mdl_course_modules USING btree (insta -- --- TOC entry 8216 (class 1259 OID 65235) -- Name: mdl_courmodu_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49983,7 +44632,6 @@ CREATE INDEX mdl_courmodu_mod_ix ON public.mdl_course_modules USING btree (modul -- --- TOC entry 8217 (class 1259 OID 65236) -- Name: mdl_courmodu_vis_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49991,7 +44639,6 @@ CREATE INDEX mdl_courmodu_vis_ix ON public.mdl_course_modules USING btree (visib -- --- TOC entry 8218 (class 1259 OID 65237) -- Name: mdl_courmoducomp_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -49999,7 +44646,6 @@ CREATE INDEX mdl_courmoducomp_cou_ix ON public.mdl_course_modules_completion USI -- --- TOC entry 8221 (class 1259 OID 65238) -- Name: mdl_courmoducomp_usecou_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50007,7 +44653,6 @@ CREATE UNIQUE INDEX mdl_courmoducomp_usecou_uix ON public.mdl_course_modules_com -- --- TOC entry 8226 (class 1259 OID 65239) -- Name: mdl_courrequ_sho_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50015,7 +44660,6 @@ CREATE INDEX mdl_courrequ_sho_ix ON public.mdl_course_request USING btree (short -- --- TOC entry 8227 (class 1259 OID 65240) -- Name: mdl_coursect_cousec_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50023,7 +44667,6 @@ CREATE UNIQUE INDEX mdl_coursect_cousec_uix ON public.mdl_course_sections USING -- --- TOC entry 8230 (class 1259 OID 65241) -- Name: mdl_custcate_comareitesor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50031,7 +44674,6 @@ CREATE INDEX mdl_custcate_comareitesor_ix ON public.mdl_customfield_category USI -- --- TOC entry 8231 (class 1259 OID 65242) -- Name: mdl_custcate_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50039,7 +44681,6 @@ CREATE INDEX mdl_custcate_con_ix ON public.mdl_customfield_category USING btree -- --- TOC entry 8234 (class 1259 OID 65243) -- Name: mdl_custdata_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50047,7 +44688,6 @@ CREATE INDEX mdl_custdata_con_ix ON public.mdl_customfield_data USING btree (con -- --- TOC entry 8235 (class 1259 OID 65244) -- Name: mdl_custdata_fie_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50055,7 +44695,6 @@ CREATE INDEX mdl_custdata_fie_ix ON public.mdl_customfield_data USING btree (fie -- --- TOC entry 8236 (class 1259 OID 65245) -- Name: mdl_custdata_fiedec_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50063,7 +44702,6 @@ CREATE INDEX mdl_custdata_fiedec_ix ON public.mdl_customfield_data USING btree ( -- --- TOC entry 8237 (class 1259 OID 65246) -- Name: mdl_custdata_fieint_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50071,7 +44709,6 @@ CREATE INDEX mdl_custdata_fieint_ix ON public.mdl_customfield_data USING btree ( -- --- TOC entry 8238 (class 1259 OID 65247) -- Name: mdl_custdata_fiesho_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50079,7 +44716,6 @@ CREATE INDEX mdl_custdata_fiesho_ix ON public.mdl_customfield_data USING btree ( -- --- TOC entry 8241 (class 1259 OID 65248) -- Name: mdl_custdata_insfie_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50087,7 +44723,6 @@ CREATE UNIQUE INDEX mdl_custdata_insfie_uix ON public.mdl_customfield_data USING -- --- TOC entry 8242 (class 1259 OID 65249) -- Name: mdl_custfiel_cat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50095,7 +44730,6 @@ CREATE INDEX mdl_custfiel_cat_ix ON public.mdl_customfield_field USING btree (ca -- --- TOC entry 8243 (class 1259 OID 65250) -- Name: mdl_custfiel_catsor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50103,7 +44737,6 @@ CREATE INDEX mdl_custfiel_catsor_ix ON public.mdl_customfield_field USING btree -- --- TOC entry 8246 (class 1259 OID 65251) -- Name: mdl_data_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50111,7 +44744,6 @@ CREATE INDEX mdl_data_cou_ix ON public.mdl_data USING btree (course); -- --- TOC entry 8249 (class 1259 OID 65252) -- Name: mdl_datacont_fie_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50119,7 +44751,6 @@ CREATE INDEX mdl_datacont_fie_ix ON public.mdl_data_content USING btree (fieldid -- --- TOC entry 8252 (class 1259 OID 65253) -- Name: mdl_datacont_rec_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50127,7 +44758,6 @@ CREATE INDEX mdl_datacont_rec_ix ON public.mdl_data_content USING btree (recordi -- --- TOC entry 8253 (class 1259 OID 65254) -- Name: mdl_datafiel_dat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50135,7 +44765,6 @@ CREATE INDEX mdl_datafiel_dat_ix ON public.mdl_data_fields USING btree (dataid); -- --- TOC entry 8256 (class 1259 OID 65255) -- Name: mdl_datafiel_typdat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50143,7 +44772,6 @@ CREATE INDEX mdl_datafiel_typdat_ix ON public.mdl_data_fields USING btree (type, -- --- TOC entry 8257 (class 1259 OID 65256) -- Name: mdl_datareco_dat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50151,7 +44779,6 @@ CREATE INDEX mdl_datareco_dat_ix ON public.mdl_data_records USING btree (dataid) -- --- TOC entry 8260 (class 1259 OID 65257) -- Name: mdl_editattoauto_eleconuse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50159,7 +44786,6 @@ CREATE UNIQUE INDEX mdl_editattoauto_eleconuse_uix ON public.mdl_editor_atto_aut -- --- TOC entry 8263 (class 1259 OID 65258) -- Name: mdl_enro_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50167,7 +44793,6 @@ CREATE INDEX mdl_enro_cou_ix ON public.mdl_enrol USING btree (courseid); -- --- TOC entry 8264 (class 1259 OID 65259) -- Name: mdl_enro_enr_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50175,7 +44800,6 @@ CREATE INDEX mdl_enro_enr_ix ON public.mdl_enrol USING btree (enrol); -- --- TOC entry 8267 (class 1259 OID 65260) -- Name: mdl_enroflat_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50183,7 +44807,6 @@ CREATE INDEX mdl_enroflat_cou_ix ON public.mdl_enrol_flatfile USING btree (cours -- --- TOC entry 8270 (class 1259 OID 65261) -- Name: mdl_enroflat_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50191,7 +44814,6 @@ CREATE INDEX mdl_enroflat_rol_ix ON public.mdl_enrol_flatfile USING btree (rolei -- --- TOC entry 8271 (class 1259 OID 65262) -- Name: mdl_enroflat_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50199,7 +44821,6 @@ CREATE INDEX mdl_enroflat_use_ix ON public.mdl_enrol_flatfile USING btree (useri -- --- TOC entry 8272 (class 1259 OID 65263) -- Name: mdl_enroltilti2cons_con_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50207,7 +44828,6 @@ CREATE UNIQUE INDEX mdl_enroltilti2cons_con_uix ON public.mdl_enrol_lti_lti2_con -- --- TOC entry 8275 (class 1259 OID 65264) -- Name: mdl_enroltilti2cont_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50215,7 +44835,6 @@ CREATE INDEX mdl_enroltilti2cont_con_ix ON public.mdl_enrol_lti_lti2_context USI -- --- TOC entry 8278 (class 1259 OID 65265) -- Name: mdl_enroltilti2nonc_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50223,7 +44842,6 @@ CREATE INDEX mdl_enroltilti2nonc_con_ix ON public.mdl_enrol_lti_lti2_nonce USING -- --- TOC entry 8281 (class 1259 OID 65266) -- Name: mdl_enroltilti2resolink_co2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50231,7 +44849,6 @@ CREATE INDEX mdl_enroltilti2resolink_co2_ix ON public.mdl_enrol_lti_lti2_resourc -- --- TOC entry 8282 (class 1259 OID 65267) -- Name: mdl_enroltilti2resolink_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50239,7 +44856,6 @@ CREATE INDEX mdl_enroltilti2resolink_con_ix ON public.mdl_enrol_lti_lti2_resourc -- --- TOC entry 8285 (class 1259 OID 65268) -- Name: mdl_enroltilti2resolink_pri_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50247,7 +44863,6 @@ CREATE INDEX mdl_enroltilti2resolink_pri_ix ON public.mdl_enrol_lti_lti2_resourc -- --- TOC entry 8288 (class 1259 OID 65269) -- Name: mdl_enroltilti2sharkey_res_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50255,7 +44870,6 @@ CREATE UNIQUE INDEX mdl_enroltilti2sharkey_res_uix ON public.mdl_enrol_lti_lti2_ -- --- TOC entry 8289 (class 1259 OID 65270) -- Name: mdl_enroltilti2sharkey_sha_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50263,7 +44877,6 @@ CREATE UNIQUE INDEX mdl_enroltilti2sharkey_sha_uix ON public.mdl_enrol_lti_lti2_ -- --- TOC entry 8290 (class 1259 OID 65271) -- Name: mdl_enroltilti2toolprox_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50271,7 +44884,6 @@ CREATE INDEX mdl_enroltilti2toolprox_con_ix ON public.mdl_enrol_lti_lti2_tool_pr -- --- TOC entry 8293 (class 1259 OID 65272) -- Name: mdl_enroltilti2toolprox_to_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50279,7 +44891,6 @@ CREATE UNIQUE INDEX mdl_enroltilti2toolprox_to_uix ON public.mdl_enrol_lti_lti2_ -- --- TOC entry 8296 (class 1259 OID 65273) -- Name: mdl_enroltilti2userresu_res_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50287,7 +44898,6 @@ CREATE INDEX mdl_enroltilti2userresu_res_ix ON public.mdl_enrol_lti_lti2_user_re -- --- TOC entry 8301 (class 1259 OID 65274) -- Name: mdl_enroltitool_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50295,7 +44905,6 @@ CREATE INDEX mdl_enroltitool_con_ix ON public.mdl_enrol_lti_tools USING btree (c -- --- TOC entry 8302 (class 1259 OID 65275) -- Name: mdl_enroltitool_enr_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50303,7 +44912,6 @@ CREATE INDEX mdl_enroltitool_enr_ix ON public.mdl_enrol_lti_tools USING btree (e -- --- TOC entry 8297 (class 1259 OID 65276) -- Name: mdl_enroltitoolconsmap_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50311,7 +44919,6 @@ CREATE INDEX mdl_enroltitoolconsmap_con_ix ON public.mdl_enrol_lti_tool_consumer -- --- TOC entry 8300 (class 1259 OID 65277) -- Name: mdl_enroltitoolconsmap_too_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50319,7 +44926,6 @@ CREATE INDEX mdl_enroltitoolconsmap_too_ix ON public.mdl_enrol_lti_tool_consumer -- --- TOC entry 8307 (class 1259 OID 65278) -- Name: mdl_enroltiuser_too_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50327,7 +44933,6 @@ CREATE INDEX mdl_enroltiuser_too_ix ON public.mdl_enrol_lti_users USING btree (t -- --- TOC entry 8308 (class 1259 OID 65279) -- Name: mdl_enroltiuser_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50335,7 +44940,6 @@ CREATE INDEX mdl_enroltiuser_use_ix ON public.mdl_enrol_lti_users USING btree (u -- --- TOC entry 8309 (class 1259 OID 65280) -- Name: mdl_enropayp_bus_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50343,7 +44947,6 @@ CREATE INDEX mdl_enropayp_bus_ix ON public.mdl_enrol_paypal USING btree (busines -- --- TOC entry 8310 (class 1259 OID 65281) -- Name: mdl_enropayp_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50351,7 +44954,6 @@ CREATE INDEX mdl_enropayp_cou_ix ON public.mdl_enrol_paypal USING btree (coursei -- --- TOC entry 8313 (class 1259 OID 65282) -- Name: mdl_enropayp_ins_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50359,7 +44961,6 @@ CREATE INDEX mdl_enropayp_ins_ix ON public.mdl_enrol_paypal USING btree (instanc -- --- TOC entry 8314 (class 1259 OID 65283) -- Name: mdl_enropayp_rec_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50367,7 +44968,6 @@ CREATE INDEX mdl_enropayp_rec_ix ON public.mdl_enrol_paypal USING btree (receive -- --- TOC entry 8315 (class 1259 OID 65284) -- Name: mdl_enropayp_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50375,7 +44975,6 @@ CREATE INDEX mdl_enropayp_use_ix ON public.mdl_enrol_paypal USING btree (userid) -- --- TOC entry 8316 (class 1259 OID 65285) -- Name: mdl_even_cat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50383,7 +44982,6 @@ CREATE INDEX mdl_even_cat_ix ON public.mdl_event USING btree (categoryid); -- --- TOC entry 8317 (class 1259 OID 65286) -- Name: mdl_even_comeveins_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50391,7 +44989,6 @@ CREATE INDEX mdl_even_comeveins_ix ON public.mdl_event USING btree (component, e -- --- TOC entry 8318 (class 1259 OID 65287) -- Name: mdl_even_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50399,7 +44996,6 @@ CREATE INDEX mdl_even_cou_ix ON public.mdl_event USING btree (courseid); -- --- TOC entry 8319 (class 1259 OID 65288) -- Name: mdl_even_eve_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50407,7 +45003,6 @@ CREATE INDEX mdl_even_eve_ix ON public.mdl_event USING btree (eventtype); -- --- TOC entry 8320 (class 1259 OID 65289) -- Name: mdl_even_grocoucatvisuse_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50415,7 +45010,6 @@ CREATE INDEX mdl_even_grocoucatvisuse_ix ON public.mdl_event USING btree (groupi -- --- TOC entry 8323 (class 1259 OID 65290) -- Name: mdl_even_modins_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50423,7 +45017,6 @@ CREATE INDEX mdl_even_modins_ix ON public.mdl_event USING btree (modulename, ins -- --- TOC entry 8324 (class 1259 OID 65291) -- Name: mdl_even_sub_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50431,7 +45024,6 @@ CREATE INDEX mdl_even_sub_ix ON public.mdl_event USING btree (subscriptionid); -- --- TOC entry 8325 (class 1259 OID 65292) -- Name: mdl_even_tim2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50439,7 +45031,6 @@ CREATE INDEX mdl_even_tim2_ix ON public.mdl_event USING btree (timeduration); -- --- TOC entry 8326 (class 1259 OID 65293) -- Name: mdl_even_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50447,7 +45038,6 @@ CREATE INDEX mdl_even_tim_ix ON public.mdl_event USING btree (timestart); -- --- TOC entry 8327 (class 1259 OID 65294) -- Name: mdl_even_typtim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50455,7 +45045,6 @@ CREATE INDEX mdl_even_typtim_ix ON public.mdl_event USING btree (type, timesort) -- --- TOC entry 8328 (class 1259 OID 65295) -- Name: mdl_even_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50463,7 +45052,6 @@ CREATE INDEX mdl_even_use_ix ON public.mdl_event USING btree (userid); -- --- TOC entry 8329 (class 1259 OID 65296) -- Name: mdl_even_uui_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50471,7 +45059,6 @@ CREATE INDEX mdl_even_uui_ix ON public.mdl_event USING btree (uuid); -- --- TOC entry 8332 (class 1259 OID 65297) -- Name: mdl_evenhand_evecom_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50479,7 +45066,6 @@ CREATE UNIQUE INDEX mdl_evenhand_evecom_uix ON public.mdl_events_handlers USING -- --- TOC entry 8337 (class 1259 OID 65298) -- Name: mdl_evenqueu_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50487,7 +45073,6 @@ CREATE INDEX mdl_evenqueu_use_ix ON public.mdl_events_queue USING btree (userid) -- --- TOC entry 8338 (class 1259 OID 65299) -- Name: mdl_evenqueuhand_han_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50495,7 +45080,6 @@ CREATE INDEX mdl_evenqueuhand_han_ix ON public.mdl_events_queue_handlers USING b -- --- TOC entry 8341 (class 1259 OID 65300) -- Name: mdl_evenqueuhand_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50503,7 +45087,6 @@ CREATE INDEX mdl_evenqueuhand_que_ix ON public.mdl_events_queue_handlers USING b -- --- TOC entry 8344 (class 1259 OID 65301) -- Name: mdl_extefunc_nam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50511,7 +45094,6 @@ CREATE UNIQUE INDEX mdl_extefunc_nam_uix ON public.mdl_external_functions USING -- --- TOC entry 8347 (class 1259 OID 65302) -- Name: mdl_exteserv_nam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50519,7 +45101,6 @@ CREATE UNIQUE INDEX mdl_exteserv_nam_uix ON public.mdl_external_services USING b -- --- TOC entry 8348 (class 1259 OID 65303) -- Name: mdl_exteservfunc_ext_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50527,7 +45108,6 @@ CREATE INDEX mdl_exteservfunc_ext_ix ON public.mdl_external_services_functions U -- --- TOC entry 8351 (class 1259 OID 65304) -- Name: mdl_exteservuser_ext_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50535,7 +45115,6 @@ CREATE INDEX mdl_exteservuser_ext_ix ON public.mdl_external_services_users USING -- --- TOC entry 8354 (class 1259 OID 65305) -- Name: mdl_exteservuser_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50543,7 +45122,6 @@ CREATE INDEX mdl_exteservuser_use_ix ON public.mdl_external_services_users USING -- --- TOC entry 8355 (class 1259 OID 65306) -- Name: mdl_extetoke_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50551,7 +45129,6 @@ CREATE INDEX mdl_extetoke_con_ix ON public.mdl_external_tokens USING btree (cont -- --- TOC entry 8356 (class 1259 OID 65307) -- Name: mdl_extetoke_cre_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50559,7 +45136,6 @@ CREATE INDEX mdl_extetoke_cre_ix ON public.mdl_external_tokens USING btree (crea -- --- TOC entry 8357 (class 1259 OID 65308) -- Name: mdl_extetoke_ext_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50567,7 +45143,6 @@ CREATE INDEX mdl_extetoke_ext_ix ON public.mdl_external_tokens USING btree (exte -- --- TOC entry 8360 (class 1259 OID 65309) -- Name: mdl_extetoke_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50575,7 +45150,6 @@ CREATE INDEX mdl_extetoke_use_ix ON public.mdl_external_tokens USING btree (user -- --- TOC entry 8361 (class 1259 OID 65310) -- Name: mdl_favo_comiteiteconuse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50583,7 +45157,6 @@ CREATE UNIQUE INDEX mdl_favo_comiteiteconuse_uix ON public.mdl_favourite USING b -- --- TOC entry 8362 (class 1259 OID 65311) -- Name: mdl_favo_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50591,7 +45164,6 @@ CREATE INDEX mdl_favo_con_ix ON public.mdl_favourite USING btree (contextid); -- --- TOC entry 8365 (class 1259 OID 65312) -- Name: mdl_favo_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50599,7 +45171,6 @@ CREATE INDEX mdl_favo_use_ix ON public.mdl_favourite USING btree (userid); -- --- TOC entry 8366 (class 1259 OID 65313) -- Name: mdl_feed_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50607,7 +45178,6 @@ CREATE INDEX mdl_feed_cou_ix ON public.mdl_feedback USING btree (course); -- --- TOC entry 8373 (class 1259 OID 65314) -- Name: mdl_feedcomp_fee2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50615,7 +45185,6 @@ CREATE INDEX mdl_feedcomp_fee2_ix ON public.mdl_feedback_completedtmp USING btre -- --- TOC entry 8369 (class 1259 OID 65315) -- Name: mdl_feedcomp_fee_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50623,7 +45192,6 @@ CREATE INDEX mdl_feedcomp_fee_ix ON public.mdl_feedback_completed USING btree (f -- --- TOC entry 8376 (class 1259 OID 65316) -- Name: mdl_feedcomp_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50631,7 +45199,6 @@ CREATE INDEX mdl_feedcomp_use2_ix ON public.mdl_feedback_completedtmp USING btre -- --- TOC entry 8372 (class 1259 OID 65317) -- Name: mdl_feedcomp_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50639,7 +45206,6 @@ CREATE INDEX mdl_feedcomp_use_ix ON public.mdl_feedback_completed USING btree (u -- --- TOC entry 8377 (class 1259 OID 65318) -- Name: mdl_feeditem_fee_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50647,7 +45213,6 @@ CREATE INDEX mdl_feeditem_fee_ix ON public.mdl_feedback_item USING btree (feedba -- --- TOC entry 8380 (class 1259 OID 65319) -- Name: mdl_feeditem_tem_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50655,7 +45220,6 @@ CREATE INDEX mdl_feeditem_tem_ix ON public.mdl_feedback_item USING btree (templa -- --- TOC entry 8381 (class 1259 OID 65320) -- Name: mdl_feedsitemap_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50663,7 +45227,6 @@ CREATE INDEX mdl_feedsitemap_cou_ix ON public.mdl_feedback_sitecourse_map USING -- --- TOC entry 8382 (class 1259 OID 65321) -- Name: mdl_feedsitemap_fee_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50671,7 +45234,6 @@ CREATE INDEX mdl_feedsitemap_fee_ix ON public.mdl_feedback_sitecourse_map USING -- --- TOC entry 8385 (class 1259 OID 65322) -- Name: mdl_feedtemp_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50679,7 +45241,6 @@ CREATE INDEX mdl_feedtemp_cou_ix ON public.mdl_feedback_template USING btree (co -- --- TOC entry 8393 (class 1259 OID 65323) -- Name: mdl_feedvalu_comitecou2_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50687,7 +45248,6 @@ CREATE UNIQUE INDEX mdl_feedvalu_comitecou2_uix ON public.mdl_feedback_valuetmp -- --- TOC entry 8388 (class 1259 OID 65324) -- Name: mdl_feedvalu_comitecou_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50695,7 +45255,6 @@ CREATE UNIQUE INDEX mdl_feedvalu_comitecou_uix ON public.mdl_feedback_value USIN -- --- TOC entry 8394 (class 1259 OID 65325) -- Name: mdl_feedvalu_cou2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50703,7 +45262,6 @@ CREATE INDEX mdl_feedvalu_cou2_ix ON public.mdl_feedback_valuetmp USING btree (c -- --- TOC entry 8389 (class 1259 OID 65326) -- Name: mdl_feedvalu_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50711,7 +45269,6 @@ CREATE INDEX mdl_feedvalu_cou_ix ON public.mdl_feedback_value USING btree (cours -- --- TOC entry 8397 (class 1259 OID 65327) -- Name: mdl_feedvalu_ite2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50719,7 +45276,6 @@ CREATE INDEX mdl_feedvalu_ite2_ix ON public.mdl_feedback_valuetmp USING btree (i -- --- TOC entry 8392 (class 1259 OID 65328) -- Name: mdl_feedvalu_ite_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50727,7 +45283,6 @@ CREATE INDEX mdl_feedvalu_ite_ix ON public.mdl_feedback_value USING btree (item) -- --- TOC entry 8402 (class 1259 OID 65329) -- Name: mdl_file_comfilconite_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50735,7 +45290,6 @@ CREATE INDEX mdl_file_comfilconite_ix ON public.mdl_files USING btree (component -- --- TOC entry 8403 (class 1259 OID 65330) -- Name: mdl_file_con2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50743,7 +45297,6 @@ CREATE INDEX mdl_file_con2_ix ON public.mdl_files USING btree (contextid); -- --- TOC entry 8404 (class 1259 OID 65331) -- Name: mdl_file_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50751,7 +45304,6 @@ CREATE INDEX mdl_file_con_ix ON public.mdl_files USING btree (contenthash); -- --- TOC entry 8407 (class 1259 OID 65332) -- Name: mdl_file_lic_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50759,7 +45311,6 @@ CREATE INDEX mdl_file_lic_ix ON public.mdl_files USING btree (license); -- --- TOC entry 8408 (class 1259 OID 65333) -- Name: mdl_file_pat_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50767,7 +45318,6 @@ CREATE UNIQUE INDEX mdl_file_pat_uix ON public.mdl_files USING btree (pathnameha -- --- TOC entry 8409 (class 1259 OID 65334) -- Name: mdl_file_ref_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50775,7 +45325,6 @@ CREATE INDEX mdl_file_ref_ix ON public.mdl_files USING btree (referencefileid); -- --- TOC entry 8410 (class 1259 OID 65335) -- Name: mdl_file_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50783,7 +45332,6 @@ CREATE INDEX mdl_file_use_ix ON public.mdl_files USING btree (userid); -- --- TOC entry 8398 (class 1259 OID 65336) -- Name: mdl_fileconv_des_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50791,7 +45339,6 @@ CREATE INDEX mdl_fileconv_des_ix ON public.mdl_file_conversion USING btree (dest -- --- TOC entry 8401 (class 1259 OID 65337) -- Name: mdl_fileconv_sou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50799,7 +45346,6 @@ CREATE INDEX mdl_fileconv_sou_ix ON public.mdl_file_conversion USING btree (sour -- --- TOC entry 8413 (class 1259 OID 65338) -- Name: mdl_filerefe_refrep_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50807,7 +45353,6 @@ CREATE UNIQUE INDEX mdl_filerefe_refrep_uix ON public.mdl_files_reference USING -- --- TOC entry 8414 (class 1259 OID 65339) -- Name: mdl_filerefe_rep_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50815,7 +45360,6 @@ CREATE INDEX mdl_filerefe_rep_ix ON public.mdl_files_reference USING btree (repo -- --- TOC entry 8415 (class 1259 OID 65340) -- Name: mdl_filtacti_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50823,7 +45367,6 @@ CREATE INDEX mdl_filtacti_con_ix ON public.mdl_filter_active USING btree (contex -- --- TOC entry 8416 (class 1259 OID 65341) -- Name: mdl_filtacti_confil_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50831,7 +45374,6 @@ CREATE UNIQUE INDEX mdl_filtacti_confil_uix ON public.mdl_filter_active USING bt -- --- TOC entry 8419 (class 1259 OID 65342) -- Name: mdl_filtconf_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50839,7 +45381,6 @@ CREATE INDEX mdl_filtconf_con_ix ON public.mdl_filter_config USING btree (contex -- --- TOC entry 8420 (class 1259 OID 65343) -- Name: mdl_filtconf_confilnam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50847,7 +45388,6 @@ CREATE UNIQUE INDEX mdl_filtconf_confilnam_uix ON public.mdl_filter_config USING -- --- TOC entry 8423 (class 1259 OID 65344) -- Name: mdl_fold_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50855,7 +45395,6 @@ CREATE INDEX mdl_fold_cou_ix ON public.mdl_folder USING btree (course); -- --- TOC entry 8426 (class 1259 OID 65345) -- Name: mdl_foru_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50863,7 +45402,6 @@ CREATE INDEX mdl_foru_cou_ix ON public.mdl_forum USING btree (course); -- --- TOC entry 8429 (class 1259 OID 65346) -- Name: mdl_forudige_for_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50871,7 +45409,6 @@ CREATE INDEX mdl_forudige_for_ix ON public.mdl_forum_digests USING btree (forum) -- --- TOC entry 8430 (class 1259 OID 65347) -- Name: mdl_forudige_forusemai_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50879,7 +45416,6 @@ CREATE UNIQUE INDEX mdl_forudige_forusemai_uix ON public.mdl_forum_digests USING -- --- TOC entry 8433 (class 1259 OID 65348) -- Name: mdl_forudige_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50887,7 +45423,6 @@ CREATE INDEX mdl_forudige_use_ix ON public.mdl_forum_digests USING btree (userid -- --- TOC entry 8440 (class 1259 OID 65349) -- Name: mdl_forudisc_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50895,7 +45430,6 @@ CREATE INDEX mdl_forudisc_cou_ix ON public.mdl_forum_discussions USING btree (co -- --- TOC entry 8441 (class 1259 OID 65350) -- Name: mdl_forudisc_for_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50903,7 +45437,6 @@ CREATE INDEX mdl_forudisc_for_ix ON public.mdl_forum_discussions USING btree (fo -- --- TOC entry 8444 (class 1259 OID 65351) -- Name: mdl_forudisc_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50911,7 +45444,6 @@ CREATE INDEX mdl_forudisc_use_ix ON public.mdl_forum_discussions USING btree (us -- --- TOC entry 8434 (class 1259 OID 65352) -- Name: mdl_forudiscsubs_dis_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50919,7 +45451,6 @@ CREATE INDEX mdl_forudiscsubs_dis_ix ON public.mdl_forum_discussion_subs USING b -- --- TOC entry 8435 (class 1259 OID 65353) -- Name: mdl_forudiscsubs_for_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50927,7 +45458,6 @@ CREATE INDEX mdl_forudiscsubs_for_ix ON public.mdl_forum_discussion_subs USING b -- --- TOC entry 8438 (class 1259 OID 65354) -- Name: mdl_forudiscsubs_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50935,7 +45465,6 @@ CREATE INDEX mdl_forudiscsubs_use_ix ON public.mdl_forum_discussion_subs USING b -- --- TOC entry 8439 (class 1259 OID 65355) -- Name: mdl_forudiscsubs_usedis_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50943,7 +45472,6 @@ CREATE UNIQUE INDEX mdl_forudiscsubs_usedis_uix ON public.mdl_forum_discussion_s -- --- TOC entry 8445 (class 1259 OID 65356) -- Name: mdl_forugrad_for_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50951,7 +45479,6 @@ CREATE INDEX mdl_forugrad_for_ix ON public.mdl_forum_grades USING btree (forum); -- --- TOC entry 8446 (class 1259 OID 65357) -- Name: mdl_forugrad_foriteuse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50959,7 +45486,6 @@ CREATE UNIQUE INDEX mdl_forugrad_foriteuse_uix ON public.mdl_forum_grades USING -- --- TOC entry 8449 (class 1259 OID 65358) -- Name: mdl_forugrad_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50967,7 +45493,6 @@ CREATE INDEX mdl_forugrad_use_ix ON public.mdl_forum_grades USING btree (userid) -- --- TOC entry 8450 (class 1259 OID 65359) -- Name: mdl_forupost_cre_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50975,7 +45500,6 @@ CREATE INDEX mdl_forupost_cre_ix ON public.mdl_forum_posts USING btree (created) -- --- TOC entry 8451 (class 1259 OID 65360) -- Name: mdl_forupost_dis_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50983,7 +45507,6 @@ CREATE INDEX mdl_forupost_dis_ix ON public.mdl_forum_posts USING btree (discussi -- --- TOC entry 8454 (class 1259 OID 65361) -- Name: mdl_forupost_mai_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50991,7 +45514,6 @@ CREATE INDEX mdl_forupost_mai_ix ON public.mdl_forum_posts USING btree (mailed); -- --- TOC entry 8455 (class 1259 OID 65362) -- Name: mdl_forupost_par_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -50999,7 +45521,6 @@ CREATE INDEX mdl_forupost_par_ix ON public.mdl_forum_posts USING btree (parent); -- --- TOC entry 8456 (class 1259 OID 65363) -- Name: mdl_forupost_pri_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51007,7 +45528,6 @@ CREATE INDEX mdl_forupost_pri_ix ON public.mdl_forum_posts USING btree (privater -- --- TOC entry 8457 (class 1259 OID 65364) -- Name: mdl_forupost_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51015,7 +45535,6 @@ CREATE INDEX mdl_forupost_use_ix ON public.mdl_forum_posts USING btree (userid); -- --- TOC entry 8458 (class 1259 OID 65365) -- Name: mdl_foruqueu_dis_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51023,7 +45542,6 @@ CREATE INDEX mdl_foruqueu_dis_ix ON public.mdl_forum_queue USING btree (discussi -- --- TOC entry 8461 (class 1259 OID 65366) -- Name: mdl_foruqueu_pos_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51031,7 +45549,6 @@ CREATE INDEX mdl_foruqueu_pos_ix ON public.mdl_forum_queue USING btree (postid); -- --- TOC entry 8462 (class 1259 OID 65367) -- Name: mdl_foruqueu_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51039,7 +45556,6 @@ CREATE INDEX mdl_foruqueu_use_ix ON public.mdl_forum_queue USING btree (userid); -- --- TOC entry 8465 (class 1259 OID 65368) -- Name: mdl_foruread_posuse_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51047,7 +45563,6 @@ CREATE INDEX mdl_foruread_posuse_ix ON public.mdl_forum_read USING btree (postid -- --- TOC entry 8466 (class 1259 OID 65369) -- Name: mdl_foruread_usedis_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51055,7 +45570,6 @@ CREATE INDEX mdl_foruread_usedis_ix ON public.mdl_forum_read USING btree (userid -- --- TOC entry 8467 (class 1259 OID 65370) -- Name: mdl_foruread_usefor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51063,7 +45577,6 @@ CREATE INDEX mdl_foruread_usefor_ix ON public.mdl_forum_read USING btree (userid -- --- TOC entry 8468 (class 1259 OID 65371) -- Name: mdl_forusubs_for_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51071,7 +45584,6 @@ CREATE INDEX mdl_forusubs_for_ix ON public.mdl_forum_subscriptions USING btree ( -- --- TOC entry 8471 (class 1259 OID 65372) -- Name: mdl_forusubs_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51079,7 +45591,6 @@ CREATE INDEX mdl_forusubs_use_ix ON public.mdl_forum_subscriptions USING btree ( -- --- TOC entry 8472 (class 1259 OID 65373) -- Name: mdl_forusubs_usefor_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51087,7 +45598,6 @@ CREATE UNIQUE INDEX mdl_forusubs_usefor_uix ON public.mdl_forum_subscriptions US -- --- TOC entry 8475 (class 1259 OID 65374) -- Name: mdl_forutracpref_usefor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51095,7 +45605,6 @@ CREATE INDEX mdl_forutracpref_usefor_ix ON public.mdl_forum_track_prefs USING bt -- --- TOC entry 8476 (class 1259 OID 65375) -- Name: mdl_glos_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51103,7 +45612,6 @@ CREATE INDEX mdl_glos_cou_ix ON public.mdl_glossary USING btree (course); -- --- TOC entry 8479 (class 1259 OID 65376) -- Name: mdl_glosalia_ent_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51111,7 +45619,6 @@ CREATE INDEX mdl_glosalia_ent_ix ON public.mdl_glossary_alias USING btree (entry -- --- TOC entry 8482 (class 1259 OID 65377) -- Name: mdl_gloscate_glo_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51119,7 +45626,6 @@ CREATE INDEX mdl_gloscate_glo_ix ON public.mdl_glossary_categories USING btree ( -- --- TOC entry 8485 (class 1259 OID 65378) -- Name: mdl_glosentr_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51127,7 +45633,6 @@ CREATE INDEX mdl_glosentr_con_ix ON public.mdl_glossary_entries USING btree (con -- --- TOC entry 8486 (class 1259 OID 65379) -- Name: mdl_glosentr_glo_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51135,7 +45640,6 @@ CREATE INDEX mdl_glosentr_glo_ix ON public.mdl_glossary_entries USING btree (glo -- --- TOC entry 8489 (class 1259 OID 65380) -- Name: mdl_glosentr_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51143,7 +45647,6 @@ CREATE INDEX mdl_glosentr_use_ix ON public.mdl_glossary_entries USING btree (use -- --- TOC entry 8490 (class 1259 OID 65381) -- Name: mdl_glosentrcate_cat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51151,7 +45654,6 @@ CREATE INDEX mdl_glosentrcate_cat_ix ON public.mdl_glossary_entries_categories U -- --- TOC entry 8491 (class 1259 OID 65382) -- Name: mdl_glosentrcate_ent_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51159,7 +45661,6 @@ CREATE INDEX mdl_glosentrcate_ent_ix ON public.mdl_glossary_entries_categories U -- --- TOC entry 8581 (class 1259 OID 65383) -- Name: mdl_gradarea_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51167,7 +45668,6 @@ CREATE INDEX mdl_gradarea_con_ix ON public.mdl_grading_areas USING btree (contex -- --- TOC entry 8582 (class 1259 OID 65384) -- Name: mdl_gradarea_concomare_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51175,7 +45675,6 @@ CREATE UNIQUE INDEX mdl_gradarea_concomare_uix ON public.mdl_grading_areas USING -- --- TOC entry 8496 (class 1259 OID 65385) -- Name: mdl_gradcate_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51183,7 +45682,6 @@ CREATE INDEX mdl_gradcate_cou_ix ON public.mdl_grade_categories USING btree (cou -- --- TOC entry 8499 (class 1259 OID 65386) -- Name: mdl_gradcate_par_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51191,7 +45689,6 @@ CREATE INDEX mdl_gradcate_par_ix ON public.mdl_grade_categories USING btree (par -- --- TOC entry 8500 (class 1259 OID 65387) -- Name: mdl_gradcatehist_act_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51199,7 +45696,6 @@ CREATE INDEX mdl_gradcatehist_act_ix ON public.mdl_grade_categories_history USIN -- --- TOC entry 8501 (class 1259 OID 65388) -- Name: mdl_gradcatehist_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51207,7 +45703,6 @@ CREATE INDEX mdl_gradcatehist_cou_ix ON public.mdl_grade_categories_history USIN -- --- TOC entry 8504 (class 1259 OID 65389) -- Name: mdl_gradcatehist_log_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51215,7 +45710,6 @@ CREATE INDEX mdl_gradcatehist_log_ix ON public.mdl_grade_categories_history USIN -- --- TOC entry 8505 (class 1259 OID 65390) -- Name: mdl_gradcatehist_old_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51223,7 +45717,6 @@ CREATE INDEX mdl_gradcatehist_old_ix ON public.mdl_grade_categories_history USIN -- --- TOC entry 8506 (class 1259 OID 65391) -- Name: mdl_gradcatehist_par_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51231,7 +45724,6 @@ CREATE INDEX mdl_gradcatehist_par_ix ON public.mdl_grade_categories_history USIN -- --- TOC entry 8507 (class 1259 OID 65392) -- Name: mdl_gradcatehist_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51239,7 +45731,6 @@ CREATE INDEX mdl_gradcatehist_tim_ix ON public.mdl_grade_categories_history USIN -- --- TOC entry 8585 (class 1259 OID 65393) -- Name: mdl_graddefi_are_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51247,7 +45738,6 @@ CREATE INDEX mdl_graddefi_are_ix ON public.mdl_grading_definitions USING btree ( -- --- TOC entry 8586 (class 1259 OID 65394) -- Name: mdl_graddefi_aremet_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51255,7 +45745,6 @@ CREATE UNIQUE INDEX mdl_graddefi_aremet_uix ON public.mdl_grading_definitions US -- --- TOC entry 8589 (class 1259 OID 65395) -- Name: mdl_graddefi_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51263,7 +45752,6 @@ CREATE INDEX mdl_graddefi_use2_ix ON public.mdl_grading_definitions USING btree -- --- TOC entry 8590 (class 1259 OID 65396) -- Name: mdl_graddefi_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51271,7 +45759,6 @@ CREATE INDEX mdl_graddefi_use_ix ON public.mdl_grading_definitions USING btree ( -- --- TOC entry 8510 (class 1259 OID 65397) -- Name: mdl_gradgrad_ite_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51279,7 +45766,6 @@ CREATE INDEX mdl_gradgrad_ite_ix ON public.mdl_grade_grades USING btree (itemid) -- --- TOC entry 8511 (class 1259 OID 65398) -- Name: mdl_gradgrad_locloc_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51287,7 +45773,6 @@ CREATE INDEX mdl_gradgrad_locloc_ix ON public.mdl_grade_grades USING btree (lock -- --- TOC entry 8512 (class 1259 OID 65399) -- Name: mdl_gradgrad_raw_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51295,7 +45780,6 @@ CREATE INDEX mdl_gradgrad_raw_ix ON public.mdl_grade_grades USING btree (rawscal -- --- TOC entry 8513 (class 1259 OID 65400) -- Name: mdl_gradgrad_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51303,7 +45787,6 @@ CREATE INDEX mdl_gradgrad_use2_ix ON public.mdl_grade_grades USING btree (usermo -- --- TOC entry 8514 (class 1259 OID 65401) -- Name: mdl_gradgrad_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51311,7 +45794,6 @@ CREATE INDEX mdl_gradgrad_use_ix ON public.mdl_grade_grades USING btree (userid) -- --- TOC entry 8515 (class 1259 OID 65402) -- Name: mdl_gradgrad_useite_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51319,7 +45801,6 @@ CREATE UNIQUE INDEX mdl_gradgrad_useite_uix ON public.mdl_grade_grades USING btr -- --- TOC entry 8516 (class 1259 OID 65403) -- Name: mdl_gradgradhist_act_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51327,7 +45808,6 @@ CREATE INDEX mdl_gradgradhist_act_ix ON public.mdl_grade_grades_history USING bt -- --- TOC entry 8519 (class 1259 OID 65404) -- Name: mdl_gradgradhist_ite_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51335,7 +45815,6 @@ CREATE INDEX mdl_gradgradhist_ite_ix ON public.mdl_grade_grades_history USING bt -- --- TOC entry 8520 (class 1259 OID 65405) -- Name: mdl_gradgradhist_log_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51343,7 +45822,6 @@ CREATE INDEX mdl_gradgradhist_log_ix ON public.mdl_grade_grades_history USING bt -- --- TOC entry 8521 (class 1259 OID 65406) -- Name: mdl_gradgradhist_old_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51351,7 +45829,6 @@ CREATE INDEX mdl_gradgradhist_old_ix ON public.mdl_grade_grades_history USING bt -- --- TOC entry 8522 (class 1259 OID 65407) -- Name: mdl_gradgradhist_raw_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51359,7 +45836,6 @@ CREATE INDEX mdl_gradgradhist_raw_ix ON public.mdl_grade_grades_history USING bt -- --- TOC entry 8523 (class 1259 OID 65408) -- Name: mdl_gradgradhist_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51367,7 +45843,6 @@ CREATE INDEX mdl_gradgradhist_tim_ix ON public.mdl_grade_grades_history USING bt -- --- TOC entry 8524 (class 1259 OID 65409) -- Name: mdl_gradgradhist_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51375,7 +45850,6 @@ CREATE INDEX mdl_gradgradhist_use2_ix ON public.mdl_grade_grades_history USING b -- --- TOC entry 8525 (class 1259 OID 65410) -- Name: mdl_gradgradhist_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51383,7 +45857,6 @@ CREATE INDEX mdl_gradgradhist_use_ix ON public.mdl_grade_grades_history USING bt -- --- TOC entry 8526 (class 1259 OID 65411) -- Name: mdl_gradgradhist_useitetim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51391,7 +45864,6 @@ CREATE INDEX mdl_gradgradhist_useitetim_ix ON public.mdl_grade_grades_history US -- --- TOC entry 8595 (class 1259 OID 65412) -- Name: mdl_gradguidcomm_def_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51399,7 +45871,6 @@ CREATE INDEX mdl_gradguidcomm_def_ix ON public.mdl_gradingform_guide_comments US -- --- TOC entry 8598 (class 1259 OID 65413) -- Name: mdl_gradguidcrit_def_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51407,7 +45878,6 @@ CREATE INDEX mdl_gradguidcrit_def_ix ON public.mdl_gradingform_guide_criteria US -- --- TOC entry 8601 (class 1259 OID 65414) -- Name: mdl_gradguidfill_cri_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51415,7 +45885,6 @@ CREATE INDEX mdl_gradguidfill_cri_ix ON public.mdl_gradingform_guide_fillings US -- --- TOC entry 8604 (class 1259 OID 65415) -- Name: mdl_gradguidfill_ins_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51423,7 +45892,6 @@ CREATE INDEX mdl_gradguidfill_ins_ix ON public.mdl_gradingform_guide_fillings US -- --- TOC entry 8605 (class 1259 OID 65416) -- Name: mdl_gradguidfill_inscri_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51431,7 +45899,6 @@ CREATE UNIQUE INDEX mdl_gradguidfill_inscri_uix ON public.mdl_gradingform_guide_ -- --- TOC entry 8529 (class 1259 OID 65417) -- Name: mdl_gradimponewi_imp_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51439,7 +45906,6 @@ CREATE INDEX mdl_gradimponewi_imp_ix ON public.mdl_grade_import_newitem USING bt -- --- TOC entry 8532 (class 1259 OID 65418) -- Name: mdl_gradimpovalu_imp_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51447,7 +45913,6 @@ CREATE INDEX mdl_gradimpovalu_imp_ix ON public.mdl_grade_import_values USING btr -- --- TOC entry 8533 (class 1259 OID 65419) -- Name: mdl_gradimpovalu_ite_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51455,7 +45920,6 @@ CREATE INDEX mdl_gradimpovalu_ite_ix ON public.mdl_grade_import_values USING btr -- --- TOC entry 8534 (class 1259 OID 65420) -- Name: mdl_gradimpovalu_new_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51463,7 +45927,6 @@ CREATE INDEX mdl_gradimpovalu_new_ix ON public.mdl_grade_import_values USING btr -- --- TOC entry 8591 (class 1259 OID 65421) -- Name: mdl_gradinst_def_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51471,7 +45934,6 @@ CREATE INDEX mdl_gradinst_def_ix ON public.mdl_grading_instances USING btree (de -- --- TOC entry 8594 (class 1259 OID 65422) -- Name: mdl_gradinst_rat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51479,7 +45941,6 @@ CREATE INDEX mdl_gradinst_rat_ix ON public.mdl_grading_instances USING btree (ra -- --- TOC entry 8535 (class 1259 OID 65423) -- Name: mdl_graditem_cat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51487,7 +45948,6 @@ CREATE INDEX mdl_graditem_cat_ix ON public.mdl_grade_items USING btree (category -- --- TOC entry 8536 (class 1259 OID 65424) -- Name: mdl_graditem_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51495,7 +45955,6 @@ CREATE INDEX mdl_graditem_cou_ix ON public.mdl_grade_items USING btree (courseid -- --- TOC entry 8537 (class 1259 OID 65425) -- Name: mdl_graditem_gra_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51503,7 +45962,6 @@ CREATE INDEX mdl_graditem_gra_ix ON public.mdl_grade_items USING btree (gradetyp -- --- TOC entry 8540 (class 1259 OID 65426) -- Name: mdl_graditem_idncou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51511,7 +45969,6 @@ CREATE INDEX mdl_graditem_idncou_ix ON public.mdl_grade_items USING btree (idnum -- --- TOC entry 8541 (class 1259 OID 65427) -- Name: mdl_graditem_itenee_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51519,7 +45976,6 @@ CREATE INDEX mdl_graditem_itenee_ix ON public.mdl_grade_items USING btree (itemt -- --- TOC entry 8542 (class 1259 OID 65428) -- Name: mdl_graditem_locloc_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51527,7 +45983,6 @@ CREATE INDEX mdl_graditem_locloc_ix ON public.mdl_grade_items USING btree (locke -- --- TOC entry 8543 (class 1259 OID 65429) -- Name: mdl_graditem_out_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51535,7 +45990,6 @@ CREATE INDEX mdl_graditem_out_ix ON public.mdl_grade_items USING btree (outcomei -- --- TOC entry 8544 (class 1259 OID 65430) -- Name: mdl_graditem_sca_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51543,7 +45997,6 @@ CREATE INDEX mdl_graditem_sca_ix ON public.mdl_grade_items USING btree (scaleid) -- --- TOC entry 8545 (class 1259 OID 65431) -- Name: mdl_graditemhist_act_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51551,7 +46004,6 @@ CREATE INDEX mdl_graditemhist_act_ix ON public.mdl_grade_items_history USING btr -- --- TOC entry 8546 (class 1259 OID 65432) -- Name: mdl_graditemhist_cat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51559,7 +46011,6 @@ CREATE INDEX mdl_graditemhist_cat_ix ON public.mdl_grade_items_history USING btr -- --- TOC entry 8547 (class 1259 OID 65433) -- Name: mdl_graditemhist_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51567,7 +46018,6 @@ CREATE INDEX mdl_graditemhist_cou_ix ON public.mdl_grade_items_history USING btr -- --- TOC entry 8550 (class 1259 OID 65434) -- Name: mdl_graditemhist_log_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51575,7 +46025,6 @@ CREATE INDEX mdl_graditemhist_log_ix ON public.mdl_grade_items_history USING btr -- --- TOC entry 8551 (class 1259 OID 65435) -- Name: mdl_graditemhist_old_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51583,7 +46032,6 @@ CREATE INDEX mdl_graditemhist_old_ix ON public.mdl_grade_items_history USING btr -- --- TOC entry 8552 (class 1259 OID 65436) -- Name: mdl_graditemhist_out_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51591,7 +46039,6 @@ CREATE INDEX mdl_graditemhist_out_ix ON public.mdl_grade_items_history USING btr -- --- TOC entry 8553 (class 1259 OID 65437) -- Name: mdl_graditemhist_sca_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51599,7 +46046,6 @@ CREATE INDEX mdl_graditemhist_sca_ix ON public.mdl_grade_items_history USING btr -- --- TOC entry 8554 (class 1259 OID 65438) -- Name: mdl_graditemhist_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51607,7 +46053,6 @@ CREATE INDEX mdl_graditemhist_tim_ix ON public.mdl_grade_items_history USING btr -- --- TOC entry 8555 (class 1259 OID 65439) -- Name: mdl_gradlett_conlowlet_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51615,7 +46060,6 @@ CREATE UNIQUE INDEX mdl_gradlett_conlowlet_uix ON public.mdl_grade_letters USING -- --- TOC entry 8558 (class 1259 OID 65440) -- Name: mdl_gradoutc_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51623,7 +46067,6 @@ CREATE INDEX mdl_gradoutc_cou_ix ON public.mdl_grade_outcomes USING btree (cours -- --- TOC entry 8559 (class 1259 OID 65441) -- Name: mdl_gradoutc_cousho_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51631,7 +46074,6 @@ CREATE UNIQUE INDEX mdl_gradoutc_cousho_uix ON public.mdl_grade_outcomes USING b -- --- TOC entry 8562 (class 1259 OID 65442) -- Name: mdl_gradoutc_sca_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51639,7 +46081,6 @@ CREATE INDEX mdl_gradoutc_sca_ix ON public.mdl_grade_outcomes USING btree (scale -- --- TOC entry 8563 (class 1259 OID 65443) -- Name: mdl_gradoutc_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51647,7 +46088,6 @@ CREATE INDEX mdl_gradoutc_use_ix ON public.mdl_grade_outcomes USING btree (userm -- --- TOC entry 8564 (class 1259 OID 65444) -- Name: mdl_gradoutccour_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51655,7 +46095,6 @@ CREATE INDEX mdl_gradoutccour_cou_ix ON public.mdl_grade_outcomes_courses USING -- --- TOC entry 8565 (class 1259 OID 65445) -- Name: mdl_gradoutccour_couout_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51663,7 +46102,6 @@ CREATE UNIQUE INDEX mdl_gradoutccour_couout_uix ON public.mdl_grade_outcomes_cou -- --- TOC entry 8568 (class 1259 OID 65446) -- Name: mdl_gradoutccour_out_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51671,7 +46109,6 @@ CREATE INDEX mdl_gradoutccour_out_ix ON public.mdl_grade_outcomes_courses USING -- --- TOC entry 8569 (class 1259 OID 65447) -- Name: mdl_gradoutchist_act_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51679,7 +46116,6 @@ CREATE INDEX mdl_gradoutchist_act_ix ON public.mdl_grade_outcomes_history USING -- --- TOC entry 8570 (class 1259 OID 65448) -- Name: mdl_gradoutchist_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51687,7 +46123,6 @@ CREATE INDEX mdl_gradoutchist_cou_ix ON public.mdl_grade_outcomes_history USING -- --- TOC entry 8573 (class 1259 OID 65449) -- Name: mdl_gradoutchist_log_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51695,7 +46130,6 @@ CREATE INDEX mdl_gradoutchist_log_ix ON public.mdl_grade_outcomes_history USING -- --- TOC entry 8574 (class 1259 OID 65450) -- Name: mdl_gradoutchist_old_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51703,7 +46137,6 @@ CREATE INDEX mdl_gradoutchist_old_ix ON public.mdl_grade_outcomes_history USING -- --- TOC entry 8575 (class 1259 OID 65451) -- Name: mdl_gradoutchist_sca_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51711,7 +46144,6 @@ CREATE INDEX mdl_gradoutchist_sca_ix ON public.mdl_grade_outcomes_history USING -- --- TOC entry 8576 (class 1259 OID 65452) -- Name: mdl_gradoutchist_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51719,7 +46151,6 @@ CREATE INDEX mdl_gradoutchist_tim_ix ON public.mdl_grade_outcomes_history USING -- --- TOC entry 8606 (class 1259 OID 65453) -- Name: mdl_gradrubrcrit_def_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51727,7 +46158,6 @@ CREATE INDEX mdl_gradrubrcrit_def_ix ON public.mdl_gradingform_rubric_criteria U -- --- TOC entry 8609 (class 1259 OID 65454) -- Name: mdl_gradrubrfill_cri_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51735,7 +46165,6 @@ CREATE INDEX mdl_gradrubrfill_cri_ix ON public.mdl_gradingform_rubric_fillings U -- --- TOC entry 8612 (class 1259 OID 65455) -- Name: mdl_gradrubrfill_ins_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51743,7 +46172,6 @@ CREATE INDEX mdl_gradrubrfill_ins_ix ON public.mdl_gradingform_rubric_fillings U -- --- TOC entry 8613 (class 1259 OID 65456) -- Name: mdl_gradrubrfill_inscri_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51751,7 +46179,6 @@ CREATE UNIQUE INDEX mdl_gradrubrfill_inscri_uix ON public.mdl_gradingform_rubric -- --- TOC entry 8614 (class 1259 OID 65457) -- Name: mdl_gradrubrfill_lev_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51759,7 +46186,6 @@ CREATE INDEX mdl_gradrubrfill_lev_ix ON public.mdl_gradingform_rubric_fillings U -- --- TOC entry 8615 (class 1259 OID 65458) -- Name: mdl_gradrubrleve_cri_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51767,7 +46193,6 @@ CREATE INDEX mdl_gradrubrleve_cri_ix ON public.mdl_gradingform_rubric_levels USI -- --- TOC entry 8577 (class 1259 OID 65459) -- Name: mdl_gradsett_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51775,7 +46200,6 @@ CREATE INDEX mdl_gradsett_cou_ix ON public.mdl_grade_settings USING btree (cours -- --- TOC entry 8578 (class 1259 OID 65460) -- Name: mdl_gradsett_counam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51783,7 +46207,6 @@ CREATE UNIQUE INDEX mdl_gradsett_counam_uix ON public.mdl_grade_settings USING b -- --- TOC entry 8618 (class 1259 OID 65461) -- Name: mdl_grou_cou2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51791,7 +46214,6 @@ CREATE INDEX mdl_grou_cou2_ix ON public.mdl_groupings USING btree (courseid); -- --- TOC entry 8626 (class 1259 OID 65462) -- Name: mdl_grou_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51799,7 +46221,6 @@ CREATE INDEX mdl_grou_cou_ix ON public.mdl_groups USING btree (courseid); -- --- TOC entry 8621 (class 1259 OID 65463) -- Name: mdl_grou_idn2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51807,7 +46228,6 @@ CREATE INDEX mdl_grou_idn2_ix ON public.mdl_groupings USING btree (idnumber); -- --- TOC entry 8629 (class 1259 OID 65464) -- Name: mdl_grou_idn_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51815,7 +46235,6 @@ CREATE INDEX mdl_grou_idn_ix ON public.mdl_groups USING btree (idnumber); -- --- TOC entry 8622 (class 1259 OID 65465) -- Name: mdl_grougrou_gro2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51823,7 +46242,6 @@ CREATE INDEX mdl_grougrou_gro2_ix ON public.mdl_groupings_groups USING btree (gr -- --- TOC entry 8623 (class 1259 OID 65466) -- Name: mdl_grougrou_gro_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51831,7 +46249,6 @@ CREATE INDEX mdl_grougrou_gro_ix ON public.mdl_groupings_groups USING btree (gro -- --- TOC entry 8630 (class 1259 OID 65467) -- Name: mdl_groumemb_gro_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51839,7 +46256,6 @@ CREATE INDEX mdl_groumemb_gro_ix ON public.mdl_groups_members USING btree (group -- --- TOC entry 8633 (class 1259 OID 65468) -- Name: mdl_groumemb_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51847,7 +46263,6 @@ CREATE INDEX mdl_groumemb_use_ix ON public.mdl_groups_members USING btree (useri -- --- TOC entry 8634 (class 1259 OID 65469) -- Name: mdl_groumemb_usegro_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51855,7 +46270,6 @@ CREATE UNIQUE INDEX mdl_groumemb_usegro_uix ON public.mdl_groups_members USING b -- --- TOC entry 8637 (class 1259 OID 65470) -- Name: mdl_h5p_mai_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51863,7 +46277,6 @@ CREATE INDEX mdl_h5p_mai_ix ON public.mdl_h5p USING btree (mainlibraryid); -- --- TOC entry 8652 (class 1259 OID 65471) -- Name: mdl_h5pa_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51871,7 +46284,6 @@ CREATE INDEX mdl_h5pa_cou_ix ON public.mdl_h5pactivity USING btree (course); -- --- TOC entry 8655 (class 1259 OID 65472) -- Name: mdl_h5paatte_h5p_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51879,7 +46291,6 @@ CREATE INDEX mdl_h5paatte_h5p_ix ON public.mdl_h5pactivity_attempts USING btree -- --- TOC entry 8656 (class 1259 OID 65473) -- Name: mdl_h5paatte_h5ptim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51887,7 +46298,6 @@ CREATE INDEX mdl_h5paatte_h5ptim_ix ON public.mdl_h5pactivity_attempts USING btr -- --- TOC entry 8657 (class 1259 OID 65474) -- Name: mdl_h5paatte_h5puse_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51895,7 +46305,6 @@ CREATE INDEX mdl_h5paatte_h5puse_ix ON public.mdl_h5pactivity_attempts USING btr -- --- TOC entry 8658 (class 1259 OID 65475) -- Name: mdl_h5paatte_h5puseatt_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51903,7 +46312,6 @@ CREATE UNIQUE INDEX mdl_h5paatte_h5puseatt_uix ON public.mdl_h5pactivity_attempt -- --- TOC entry 8661 (class 1259 OID 65476) -- Name: mdl_h5paatte_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51911,7 +46319,6 @@ CREATE INDEX mdl_h5paatte_tim_ix ON public.mdl_h5pactivity_attempts USING btree -- --- TOC entry 8662 (class 1259 OID 65477) -- Name: mdl_h5paatteresu_att_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51919,7 +46326,6 @@ CREATE INDEX mdl_h5paatteresu_att_ix ON public.mdl_h5pactivity_attempts_results -- --- TOC entry 8663 (class 1259 OID 65478) -- Name: mdl_h5paatteresu_atttim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51927,7 +46333,6 @@ CREATE INDEX mdl_h5paatteresu_atttim_ix ON public.mdl_h5pactivity_attempts_resul -- --- TOC entry 8638 (class 1259 OID 65479) -- Name: mdl_h5pcontlibr_h5p_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51935,7 +46340,6 @@ CREATE INDEX mdl_h5pcontlibr_h5p_ix ON public.mdl_h5p_contents_libraries USING b -- --- TOC entry 8641 (class 1259 OID 65480) -- Name: mdl_h5pcontlibr_lib_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51943,7 +46347,6 @@ CREATE INDEX mdl_h5pcontlibr_lib_ix ON public.mdl_h5p_contents_libraries USING b -- --- TOC entry 8644 (class 1259 OID 65481) -- Name: mdl_h5plibr_macmajminpatrun_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51951,7 +46354,6 @@ CREATE INDEX mdl_h5plibr_macmajminpatrun_ix ON public.mdl_h5p_libraries USING bt -- --- TOC entry 8647 (class 1259 OID 65482) -- Name: mdl_h5plibrcach_lib_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51959,7 +46361,6 @@ CREATE INDEX mdl_h5plibrcach_lib_ix ON public.mdl_h5p_libraries_cachedassets USI -- --- TOC entry 8650 (class 1259 OID 65483) -- Name: mdl_h5plibrdepe_lib_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51967,7 +46368,6 @@ CREATE INDEX mdl_h5plibrdepe_lib_ix ON public.mdl_h5p_library_dependencies USING -- --- TOC entry 8651 (class 1259 OID 65484) -- Name: mdl_h5plibrdepe_req_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51975,7 +46375,6 @@ CREATE INDEX mdl_h5plibrdepe_req_ix ON public.mdl_h5p_library_dependencies USING -- --- TOC entry 8666 (class 1259 OID 65485) -- Name: mdl_imsc_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51983,7 +46382,6 @@ CREATE INDEX mdl_imsc_cou_ix ON public.mdl_imscp USING btree (course); -- --- TOC entry 8669 (class 1259 OID 65486) -- Name: mdl_labe_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51991,7 +46389,6 @@ CREATE INDEX mdl_labe_cou_ix ON public.mdl_label USING btree (course); -- --- TOC entry 8672 (class 1259 OID 65487) -- Name: mdl_less_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -51999,7 +46396,6 @@ CREATE INDEX mdl_less_cou_ix ON public.mdl_lesson USING btree (course); -- --- TOC entry 8677 (class 1259 OID 65488) -- Name: mdl_lessansw_les_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52007,7 +46403,6 @@ CREATE INDEX mdl_lessansw_les_ix ON public.mdl_lesson_answers USING btree (lesso -- --- TOC entry 8678 (class 1259 OID 65489) -- Name: mdl_lessansw_pag_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52015,7 +46410,6 @@ CREATE INDEX mdl_lessansw_pag_ix ON public.mdl_lesson_answers USING btree (pagei -- --- TOC entry 8679 (class 1259 OID 65490) -- Name: mdl_lessatte_ans_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52023,7 +46417,6 @@ CREATE INDEX mdl_lessatte_ans_ix ON public.mdl_lesson_attempts USING btree (answ -- --- TOC entry 8682 (class 1259 OID 65491) -- Name: mdl_lessatte_les_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52031,7 +46424,6 @@ CREATE INDEX mdl_lessatte_les_ix ON public.mdl_lesson_attempts USING btree (less -- --- TOC entry 8683 (class 1259 OID 65492) -- Name: mdl_lessatte_pag_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52039,7 +46431,6 @@ CREATE INDEX mdl_lessatte_pag_ix ON public.mdl_lesson_attempts USING btree (page -- --- TOC entry 8684 (class 1259 OID 65493) -- Name: mdl_lessatte_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52047,7 +46438,6 @@ CREATE INDEX mdl_lessatte_use_ix ON public.mdl_lesson_attempts USING btree (user -- --- TOC entry 8687 (class 1259 OID 65494) -- Name: mdl_lessbran_les_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52055,7 +46445,6 @@ CREATE INDEX mdl_lessbran_les_ix ON public.mdl_lesson_branch USING btree (lesson -- --- TOC entry 8688 (class 1259 OID 65495) -- Name: mdl_lessbran_pag_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52063,7 +46452,6 @@ CREATE INDEX mdl_lessbran_pag_ix ON public.mdl_lesson_branch USING btree (pageid -- --- TOC entry 8689 (class 1259 OID 65496) -- Name: mdl_lessbran_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52071,7 +46459,6 @@ CREATE INDEX mdl_lessbran_use_ix ON public.mdl_lesson_branch USING btree (userid -- --- TOC entry 8692 (class 1259 OID 65497) -- Name: mdl_lessgrad_les_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52079,7 +46466,6 @@ CREATE INDEX mdl_lessgrad_les_ix ON public.mdl_lesson_grades USING btree (lesson -- --- TOC entry 8693 (class 1259 OID 65498) -- Name: mdl_lessgrad_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52087,7 +46473,6 @@ CREATE INDEX mdl_lessgrad_use_ix ON public.mdl_lesson_grades USING btree (userid -- --- TOC entry 8694 (class 1259 OID 65499) -- Name: mdl_lessover_gro_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52095,7 +46480,6 @@ CREATE INDEX mdl_lessover_gro_ix ON public.mdl_lesson_overrides USING btree (gro -- --- TOC entry 8697 (class 1259 OID 65500) -- Name: mdl_lessover_les_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52103,7 +46487,6 @@ CREATE INDEX mdl_lessover_les_ix ON public.mdl_lesson_overrides USING btree (les -- --- TOC entry 8698 (class 1259 OID 65501) -- Name: mdl_lessover_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52111,7 +46494,6 @@ CREATE INDEX mdl_lessover_use_ix ON public.mdl_lesson_overrides USING btree (use -- --- TOC entry 8701 (class 1259 OID 65502) -- Name: mdl_lesspage_les_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52119,7 +46501,6 @@ CREATE INDEX mdl_lesspage_les_ix ON public.mdl_lesson_pages USING btree (lessoni -- --- TOC entry 8704 (class 1259 OID 65503) -- Name: mdl_lesstime_les_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52127,7 +46508,6 @@ CREATE INDEX mdl_lesstime_les_ix ON public.mdl_lesson_timer USING btree (lessoni -- --- TOC entry 8705 (class 1259 OID 65504) -- Name: mdl_lesstime_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52135,7 +46515,6 @@ CREATE INDEX mdl_lesstime_use_ix ON public.mdl_lesson_timer USING btree (userid) -- --- TOC entry 8708 (class 1259 OID 65505) -- Name: mdl_lockdb_exp_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52143,7 +46522,6 @@ CREATE INDEX mdl_lockdb_exp_ix ON public.mdl_lock_db USING btree (expires); -- --- TOC entry 8711 (class 1259 OID 65506) -- Name: mdl_lockdb_own_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52151,7 +46529,6 @@ CREATE INDEX mdl_lockdb_own_ix ON public.mdl_lock_db USING btree (owner); -- --- TOC entry 8712 (class 1259 OID 65507) -- Name: mdl_lockdb_res_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52159,7 +46536,6 @@ CREATE UNIQUE INDEX mdl_lockdb_res_uix ON public.mdl_lock_db USING btree (resour -- --- TOC entry 8713 (class 1259 OID 65508) -- Name: mdl_log_act_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52167,7 +46543,6 @@ CREATE INDEX mdl_log_act_ix ON public.mdl_log USING btree (action); -- --- TOC entry 8714 (class 1259 OID 65509) -- Name: mdl_log_cmi_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52175,7 +46550,6 @@ CREATE INDEX mdl_log_cmi_ix ON public.mdl_log USING btree (cmid); -- --- TOC entry 8715 (class 1259 OID 65510) -- Name: mdl_log_coumodact_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52183,7 +46557,6 @@ CREATE INDEX mdl_log_coumodact_ix ON public.mdl_log USING btree (course, module, -- --- TOC entry 8718 (class 1259 OID 65511) -- Name: mdl_log_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52191,7 +46564,6 @@ CREATE INDEX mdl_log_tim_ix ON public.mdl_log USING btree ("time"); -- --- TOC entry 8719 (class 1259 OID 65512) -- Name: mdl_log_usecou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52199,7 +46571,6 @@ CREATE INDEX mdl_log_usecou_ix ON public.mdl_log USING btree (userid, course); -- --- TOC entry 8722 (class 1259 OID 65513) -- Name: mdl_logdisp_modact_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52207,7 +46578,6 @@ CREATE UNIQUE INDEX mdl_logdisp_modact_uix ON public.mdl_log_display USING btree -- --- TOC entry 8725 (class 1259 OID 65514) -- Name: mdl_logsstanlog_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52215,7 +46585,6 @@ CREATE INDEX mdl_logsstanlog_con_ix ON public.mdl_logstore_standard_log USING bt -- --- TOC entry 8726 (class 1259 OID 65515) -- Name: mdl_logsstanlog_couanotim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52223,7 +46592,6 @@ CREATE INDEX mdl_logsstanlog_couanotim_ix ON public.mdl_logstore_standard_log US -- --- TOC entry 8729 (class 1259 OID 65516) -- Name: mdl_logsstanlog_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52231,7 +46599,6 @@ CREATE INDEX mdl_logsstanlog_tim_ix ON public.mdl_logstore_standard_log USING bt -- --- TOC entry 8730 (class 1259 OID 65517) -- Name: mdl_logsstanlog_useconconcr_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52239,7 +46606,6 @@ CREATE INDEX mdl_logsstanlog_useconconcr_ix ON public.mdl_logstore_standard_log -- --- TOC entry 8731 (class 1259 OID 65518) -- Name: mdl_lti_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52247,7 +46613,6 @@ CREATE INDEX mdl_lti_cou_ix ON public.mdl_lti USING btree (course); -- --- TOC entry 8736 (class 1259 OID 65519) -- Name: mdl_ltiaccetoke_tok_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52255,7 +46620,6 @@ CREATE UNIQUE INDEX mdl_ltiaccetoke_tok_uix ON public.mdl_lti_access_tokens USIN -- --- TOC entry 8737 (class 1259 OID 65520) -- Name: mdl_ltiaccetoke_typ_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52263,7 +46627,6 @@ CREATE INDEX mdl_ltiaccetoke_typ_ix ON public.mdl_lti_access_tokens USING btree -- --- TOC entry 8758 (class 1259 OID 65521) -- Name: mdl_ltisgrad_gracou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52271,7 +46634,6 @@ CREATE INDEX mdl_ltisgrad_gracou_ix ON public.mdl_ltiservice_gradebookservices U -- --- TOC entry 8761 (class 1259 OID 65522) -- Name: mdl_ltisgrad_lti_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52279,7 +46641,6 @@ CREATE INDEX mdl_ltisgrad_lti_ix ON public.mdl_ltiservice_gradebookservices USIN -- --- TOC entry 8740 (class 1259 OID 65523) -- Name: mdl_ltisubm_lti_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52287,7 +46648,6 @@ CREATE INDEX mdl_ltisubm_lti_ix ON public.mdl_lti_submission USING btree (ltiid) -- --- TOC entry 8741 (class 1259 OID 65524) -- Name: mdl_ltitoolprox_gui_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52295,7 +46655,6 @@ CREATE UNIQUE INDEX mdl_ltitoolprox_gui_uix ON public.mdl_lti_tool_proxies USING -- --- TOC entry 8744 (class 1259 OID 65525) -- Name: mdl_ltitoolsett_cou2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52303,7 +46662,6 @@ CREATE INDEX mdl_ltitoolsett_cou2_ix ON public.mdl_lti_tool_settings USING btree -- --- TOC entry 8745 (class 1259 OID 65526) -- Name: mdl_ltitoolsett_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52311,7 +46669,6 @@ CREATE INDEX mdl_ltitoolsett_cou_ix ON public.mdl_lti_tool_settings USING btree -- --- TOC entry 8748 (class 1259 OID 65527) -- Name: mdl_ltitoolsett_too_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52319,7 +46676,6 @@ CREATE INDEX mdl_ltitoolsett_too_ix ON public.mdl_lti_tool_settings USING btree -- --- TOC entry 8749 (class 1259 OID 65528) -- Name: mdl_ltitoolsett_typ_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52327,7 +46683,6 @@ CREATE INDEX mdl_ltitoolsett_typ_ix ON public.mdl_lti_tool_settings USING btree -- --- TOC entry 8750 (class 1259 OID 65529) -- Name: mdl_ltitype_cli_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52335,7 +46690,6 @@ CREATE UNIQUE INDEX mdl_ltitype_cli_uix ON public.mdl_lti_types USING btree (cli -- --- TOC entry 8751 (class 1259 OID 65530) -- Name: mdl_ltitype_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52343,7 +46697,6 @@ CREATE INDEX mdl_ltitype_cou_ix ON public.mdl_lti_types USING btree (course); -- --- TOC entry 8754 (class 1259 OID 65531) -- Name: mdl_ltitype_too_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52351,7 +46704,6 @@ CREATE INDEX mdl_ltitype_too_ix ON public.mdl_lti_types USING btree (tooldomain) -- --- TOC entry 8757 (class 1259 OID 65532) -- Name: mdl_ltitypeconf_typ_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52359,7 +46711,6 @@ CREATE INDEX mdl_ltitypeconf_typ_ix ON public.mdl_lti_types_config USING btree ( -- --- TOC entry 8837 (class 1259 OID 65533) -- Name: mdl_mess_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52367,7 +46718,6 @@ CREATE INDEX mdl_mess_con_ix ON public.mdl_messages USING btree (conversationid) -- --- TOC entry 8838 (class 1259 OID 65534) -- Name: mdl_mess_contim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52375,7 +46725,6 @@ CREATE INDEX mdl_mess_contim_ix ON public.mdl_messages USING btree (conversation -- --- TOC entry 8841 (class 1259 OID 65535) -- Name: mdl_mess_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52383,7 +46732,6 @@ CREATE INDEX mdl_mess_use_ix ON public.mdl_messages USING btree (useridfrom); -- --- TOC entry 8764 (class 1259 OID 65536) -- Name: mdl_mess_usetimnot2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52391,7 +46739,6 @@ CREATE INDEX mdl_mess_usetimnot2_ix ON public.mdl_message USING btree (useridto, -- --- TOC entry 8765 (class 1259 OID 65537) -- Name: mdl_mess_usetimnot_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52399,7 +46746,6 @@ CREATE INDEX mdl_mess_usetimnot_ix ON public.mdl_message USING btree (useridfrom -- --- TOC entry 8766 (class 1259 OID 65538) -- Name: mdl_mess_useusetimtim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52407,7 +46753,6 @@ CREATE INDEX mdl_mess_useusetimtim_ix ON public.mdl_message USING btree (useridf -- --- TOC entry 8769 (class 1259 OID 65539) -- Name: mdl_messairndevi_use_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52415,7 +46760,6 @@ CREATE UNIQUE INDEX mdl_messairndevi_use_uix ON public.mdl_message_airnotifier_d -- --- TOC entry 8775 (class 1259 OID 65540) -- Name: mdl_messcont_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52423,7 +46767,6 @@ CREATE INDEX mdl_messcont_con_ix ON public.mdl_message_contacts USING btree (con -- --- TOC entry 8778 (class 1259 OID 65541) -- Name: mdl_messcont_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52431,7 +46774,6 @@ CREATE INDEX mdl_messcont_use_ix ON public.mdl_message_contacts USING btree (use -- --- TOC entry 8779 (class 1259 OID 65542) -- Name: mdl_messcont_usecon_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52439,7 +46781,6 @@ CREATE UNIQUE INDEX mdl_messcont_usecon_uix ON public.mdl_message_contacts USING -- --- TOC entry 8772 (class 1259 OID 65543) -- Name: mdl_messcontrequ_req_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52447,7 +46788,6 @@ CREATE INDEX mdl_messcontrequ_req_ix ON public.mdl_message_contact_requests USIN -- --- TOC entry 8773 (class 1259 OID 65544) -- Name: mdl_messcontrequ_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52455,7 +46795,6 @@ CREATE INDEX mdl_messcontrequ_use_ix ON public.mdl_message_contact_requests USIN -- --- TOC entry 8774 (class 1259 OID 65545) -- Name: mdl_messcontrequ_usereq_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52463,7 +46802,6 @@ CREATE UNIQUE INDEX mdl_messcontrequ_usereq_uix ON public.mdl_message_contact_re -- --- TOC entry 8788 (class 1259 OID 65546) -- Name: mdl_messconv_comiteitecon_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52471,7 +46809,6 @@ CREATE INDEX mdl_messconv_comiteitecon_ix ON public.mdl_message_conversations US -- --- TOC entry 8789 (class 1259 OID 65547) -- Name: mdl_messconv_con2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52479,7 +46816,6 @@ CREATE INDEX mdl_messconv_con2_ix ON public.mdl_message_conversations USING btre -- --- TOC entry 8790 (class 1259 OID 65548) -- Name: mdl_messconv_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52487,7 +46823,6 @@ CREATE INDEX mdl_messconv_con_ix ON public.mdl_message_conversations USING btree -- --- TOC entry 8793 (class 1259 OID 65549) -- Name: mdl_messconv_typ_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52495,7 +46830,6 @@ CREATE INDEX mdl_messconv_typ_ix ON public.mdl_message_conversations USING btree -- --- TOC entry 8780 (class 1259 OID 65550) -- Name: mdl_messconvacti_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52503,7 +46837,6 @@ CREATE INDEX mdl_messconvacti_con_ix ON public.mdl_message_conversation_actions -- --- TOC entry 8783 (class 1259 OID 65551) -- Name: mdl_messconvacti_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52511,7 +46844,6 @@ CREATE INDEX mdl_messconvacti_use_ix ON public.mdl_message_conversation_actions -- --- TOC entry 8784 (class 1259 OID 65552) -- Name: mdl_messconvmemb_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52519,7 +46851,6 @@ CREATE INDEX mdl_messconvmemb_con_ix ON public.mdl_message_conversation_members -- --- TOC entry 8787 (class 1259 OID 65553) -- Name: mdl_messconvmemb_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52527,7 +46858,6 @@ CREATE INDEX mdl_messconvmemb_use_ix ON public.mdl_message_conversation_members -- --- TOC entry 8827 (class 1259 OID 65554) -- Name: mdl_messdata_han_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52535,7 +46865,6 @@ CREATE INDEX mdl_messdata_han_ix ON public.mdl_messageinbound_datakeys USING btr -- --- TOC entry 8828 (class 1259 OID 65555) -- Name: mdl_messdata_handat_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52543,7 +46872,6 @@ CREATE UNIQUE INDEX mdl_messdata_handat_uix ON public.mdl_messageinbound_datakey -- --- TOC entry 8794 (class 1259 OID 65556) -- Name: mdl_messemaimess_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52551,7 +46879,6 @@ CREATE INDEX mdl_messemaimess_con_ix ON public.mdl_message_email_messages USING -- --- TOC entry 8797 (class 1259 OID 65557) -- Name: mdl_messemaimess_mes_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52559,7 +46886,6 @@ CREATE INDEX mdl_messemaimess_mes_ix ON public.mdl_message_email_messages USING -- --- TOC entry 8798 (class 1259 OID 65558) -- Name: mdl_messemaimess_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52567,7 +46893,6 @@ CREATE INDEX mdl_messemaimess_use_ix ON public.mdl_message_email_messages USING -- --- TOC entry 8831 (class 1259 OID 65559) -- Name: mdl_messhand_cla_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52575,7 +46900,6 @@ CREATE UNIQUE INDEX mdl_messhand_cla_uix ON public.mdl_messageinbound_handlers U -- --- TOC entry 8836 (class 1259 OID 65560) -- Name: mdl_messmess_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52583,7 +46907,6 @@ CREATE INDEX mdl_messmess_use_ix ON public.mdl_messageinbound_messagelist USING -- --- TOC entry 8801 (class 1259 OID 65561) -- Name: mdl_messpopu_isr_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52591,7 +46914,6 @@ CREATE INDEX mdl_messpopu_isr_ix ON public.mdl_message_popup USING btree (isread -- --- TOC entry 8802 (class 1259 OID 65562) -- Name: mdl_messpopu_mesisr_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52599,7 +46921,6 @@ CREATE UNIQUE INDEX mdl_messpopu_mesisr_uix ON public.mdl_message_popup USING bt -- --- TOC entry 8805 (class 1259 OID 65563) -- Name: mdl_messpopunoti_not_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52607,7 +46928,6 @@ CREATE INDEX mdl_messpopunoti_not_ix ON public.mdl_message_popup_notifications U -- --- TOC entry 8808 (class 1259 OID 65564) -- Name: mdl_messprov_comnam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52615,7 +46935,6 @@ CREATE UNIQUE INDEX mdl_messprov_comnam_uix ON public.mdl_message_providers USIN -- --- TOC entry 8813 (class 1259 OID 65565) -- Name: mdl_messread_nottim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52623,7 +46942,6 @@ CREATE INDEX mdl_messread_nottim_ix ON public.mdl_message_read USING btree (noti -- --- TOC entry 8814 (class 1259 OID 65566) -- Name: mdl_messread_usetimnot2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52631,7 +46949,6 @@ CREATE INDEX mdl_messread_usetimnot2_ix ON public.mdl_message_read USING btree ( -- --- TOC entry 8815 (class 1259 OID 65567) -- Name: mdl_messread_usetimnot_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52639,7 +46956,6 @@ CREATE INDEX mdl_messread_usetimnot_ix ON public.mdl_message_read USING btree (u -- --- TOC entry 8816 (class 1259 OID 65568) -- Name: mdl_messread_useusetimtim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52647,7 +46963,6 @@ CREATE INDEX mdl_messread_useusetimtim_ix ON public.mdl_message_read USING btree -- --- TOC entry 8819 (class 1259 OID 65569) -- Name: mdl_messuseracti_mes_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52655,7 +46970,6 @@ CREATE INDEX mdl_messuseracti_mes_ix ON public.mdl_message_user_actions USING bt -- --- TOC entry 8820 (class 1259 OID 65570) -- Name: mdl_messuseracti_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52663,7 +46977,6 @@ CREATE INDEX mdl_messuseracti_use_ix ON public.mdl_message_user_actions USING bt -- --- TOC entry 8821 (class 1259 OID 65571) -- Name: mdl_messuseracti_usemesact_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52671,7 +46984,6 @@ CREATE UNIQUE INDEX mdl_messuseracti_usemesact_uix ON public.mdl_message_user_ac -- --- TOC entry 8822 (class 1259 OID 65572) -- Name: mdl_messuserbloc_blo_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52679,7 +46991,6 @@ CREATE INDEX mdl_messuserbloc_blo_ix ON public.mdl_message_users_blocked USING b -- --- TOC entry 8825 (class 1259 OID 65573) -- Name: mdl_messuserbloc_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52687,7 +46998,6 @@ CREATE INDEX mdl_messuserbloc_use_ix ON public.mdl_message_users_blocked USING b -- --- TOC entry 8826 (class 1259 OID 65574) -- Name: mdl_messuserbloc_useblo_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52695,7 +47005,6 @@ CREATE UNIQUE INDEX mdl_messuserbloc_useblo_uix ON public.mdl_message_users_bloc -- --- TOC entry 8872 (class 1259 OID 65575) -- Name: mdl_mnetenrocour_hosrem_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52703,7 +47012,6 @@ CREATE UNIQUE INDEX mdl_mnetenrocour_hosrem_uix ON public.mdl_mnetservice_enrol_ -- --- TOC entry 8875 (class 1259 OID 65576) -- Name: mdl_mnetenroenro_hos_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52711,7 +47019,6 @@ CREATE INDEX mdl_mnetenroenro_hos_ix ON public.mdl_mnetservice_enrol_enrolments -- --- TOC entry 8878 (class 1259 OID 65577) -- Name: mdl_mnetenroenro_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52719,7 +47026,6 @@ CREATE INDEX mdl_mnetenroenro_use_ix ON public.mdl_mnetservice_enrol_enrolments -- --- TOC entry 8844 (class 1259 OID 65578) -- Name: mdl_mnethost_app_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52727,7 +47033,6 @@ CREATE INDEX mdl_mnethost_app_ix ON public.mdl_mnet_host USING btree (applicatio -- --- TOC entry 8847 (class 1259 OID 65579) -- Name: mdl_mnethost_hosser_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52735,7 +47040,6 @@ CREATE UNIQUE INDEX mdl_mnethost_hosser_uix ON public.mdl_mnet_host2service USIN -- --- TOC entry 8850 (class 1259 OID 65580) -- Name: mdl_mnetlog_hosusecou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52743,7 +47047,6 @@ CREATE INDEX mdl_mnetlog_hosusecou_ix ON public.mdl_mnet_log USING btree (hostid -- --- TOC entry 8857 (class 1259 OID 65581) -- Name: mdl_mnetremoserv_rpcser_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52751,7 +47054,6 @@ CREATE UNIQUE INDEX mdl_mnetremoserv_rpcser_uix ON public.mdl_mnet_remote_servic -- --- TOC entry 8858 (class 1259 OID 65582) -- Name: mdl_mnetrpc_enaxml_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52759,7 +47061,6 @@ CREATE INDEX mdl_mnetrpc_enaxml_ix ON public.mdl_mnet_rpc USING btree (enabled, -- --- TOC entry 8865 (class 1259 OID 65583) -- Name: mdl_mnetserv_rpcser_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52767,7 +47068,6 @@ CREATE UNIQUE INDEX mdl_mnetserv_rpcser_uix ON public.mdl_mnet_service2rpc USING -- --- TOC entry 8868 (class 1259 OID 65584) -- Name: mdl_mnetsess_tok_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52775,7 +47075,6 @@ CREATE UNIQUE INDEX mdl_mnetsess_tok_uix ON public.mdl_mnet_session USING btree -- --- TOC entry 8871 (class 1259 OID 65585) -- Name: mdl_mnetssoaccecont_mneuse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52783,7 +47082,6 @@ CREATE UNIQUE INDEX mdl_mnetssoaccecont_mneuse_uix ON public.mdl_mnet_sso_access -- --- TOC entry 8881 (class 1259 OID 65586) -- Name: mdl_modu_nam_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52791,7 +47089,6 @@ CREATE INDEX mdl_modu_nam_ix ON public.mdl_modules USING btree (name); -- --- TOC entry 8884 (class 1259 OID 65587) -- Name: mdl_mypage_usepri_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52799,7 +47096,6 @@ CREATE INDEX mdl_mypage_usepri_ix ON public.mdl_my_pages USING btree (userid, pr -- --- TOC entry 8887 (class 1259 OID 65588) -- Name: mdl_noti_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52807,7 +47103,6 @@ CREATE INDEX mdl_noti_use2_ix ON public.mdl_notifications USING btree (useridto) -- --- TOC entry 8888 (class 1259 OID 65589) -- Name: mdl_noti_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52815,7 +47110,6 @@ CREATE INDEX mdl_noti_use_ix ON public.mdl_notifications USING btree (useridfrom -- --- TOC entry 8891 (class 1259 OID 65590) -- Name: mdl_oautaccetoke_iss_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52823,7 +47117,6 @@ CREATE UNIQUE INDEX mdl_oautaccetoke_iss_uix ON public.mdl_oauth2_access_token U -- --- TOC entry 8894 (class 1259 OID 65591) -- Name: mdl_oautendp_iss_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52831,7 +47124,6 @@ CREATE INDEX mdl_oautendp_iss_ix ON public.mdl_oauth2_endpoint USING btree (issu -- --- TOC entry 8899 (class 1259 OID 65592) -- Name: mdl_oautsystacco_iss_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52839,7 +47131,6 @@ CREATE UNIQUE INDEX mdl_oautsystacco_iss_uix ON public.mdl_oauth2_system_account -- --- TOC entry 8902 (class 1259 OID 65593) -- Name: mdl_oautuserfielmapp_iss_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52847,7 +47138,6 @@ CREATE INDEX mdl_oautuserfielmapp_iss_ix ON public.mdl_oauth2_user_field_mapping -- --- TOC entry 8903 (class 1259 OID 65594) -- Name: mdl_oautuserfielmapp_issin_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52855,7 +47145,6 @@ CREATE UNIQUE INDEX mdl_oautuserfielmapp_issin_uix ON public.mdl_oauth2_user_fie -- --- TOC entry 8904 (class 1259 OID 65595) -- Name: mdl_page_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52863,7 +47152,6 @@ CREATE INDEX mdl_page_cou_ix ON public.mdl_page USING btree (course); -- --- TOC entry 8911 (class 1259 OID 65596) -- Name: mdl_portinstconf_ins_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52871,7 +47159,6 @@ CREATE INDEX mdl_portinstconf_ins_ix ON public.mdl_portfolio_instance_config USI -- --- TOC entry 8912 (class 1259 OID 65597) -- Name: mdl_portinstconf_nam_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52879,7 +47166,6 @@ CREATE INDEX mdl_portinstconf_nam_ix ON public.mdl_portfolio_instance_config USI -- --- TOC entry 8915 (class 1259 OID 65598) -- Name: mdl_portinstuser_ins_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52887,7 +47173,6 @@ CREATE INDEX mdl_portinstuser_ins_ix ON public.mdl_portfolio_instance_user USING -- --- TOC entry 8916 (class 1259 OID 65599) -- Name: mdl_portinstuser_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52895,7 +47180,6 @@ CREATE INDEX mdl_portinstuser_use_ix ON public.mdl_portfolio_instance_user USING -- --- TOC entry 8919 (class 1259 OID 65600) -- Name: mdl_portlog_por_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52903,7 +47187,6 @@ CREATE INDEX mdl_portlog_por_ix ON public.mdl_portfolio_log USING btree (portfol -- --- TOC entry 8920 (class 1259 OID 65601) -- Name: mdl_portlog_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52911,7 +47194,6 @@ CREATE INDEX mdl_portlog_use_ix ON public.mdl_portfolio_log USING btree (userid) -- --- TOC entry 8923 (class 1259 OID 65602) -- Name: mdl_portmahaqueu_tok_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52919,7 +47201,6 @@ CREATE INDEX mdl_portmahaqueu_tok_ix ON public.mdl_portfolio_mahara_queue USING -- --- TOC entry 8924 (class 1259 OID 65603) -- Name: mdl_portmahaqueu_tra_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52927,7 +47208,6 @@ CREATE INDEX mdl_portmahaqueu_tra_ix ON public.mdl_portfolio_mahara_queue USING -- --- TOC entry 8927 (class 1259 OID 65604) -- Name: mdl_porttemp_ins_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52935,7 +47215,6 @@ CREATE INDEX mdl_porttemp_ins_ix ON public.mdl_portfolio_tempdata USING btree (i -- --- TOC entry 8928 (class 1259 OID 65605) -- Name: mdl_porttemp_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52943,7 +47222,6 @@ CREATE INDEX mdl_porttemp_use_ix ON public.mdl_portfolio_tempdata USING btree (u -- --- TOC entry 8931 (class 1259 OID 65606) -- Name: mdl_post_iduse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52951,7 +47229,6 @@ CREATE UNIQUE INDEX mdl_post_iduse_uix ON public.mdl_post USING btree (id, useri -- --- TOC entry 8932 (class 1259 OID 65607) -- Name: mdl_post_las_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52959,7 +47236,6 @@ CREATE INDEX mdl_post_las_ix ON public.mdl_post USING btree (lastmodified); -- --- TOC entry 8933 (class 1259 OID 65608) -- Name: mdl_post_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52967,7 +47243,6 @@ CREATE INDEX mdl_post_mod_ix ON public.mdl_post USING btree (module); -- --- TOC entry 8934 (class 1259 OID 65609) -- Name: mdl_post_sub_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52975,7 +47250,6 @@ CREATE INDEX mdl_post_sub_ix ON public.mdl_post USING btree (subject); -- --- TOC entry 8935 (class 1259 OID 65610) -- Name: mdl_post_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52983,7 +47257,6 @@ CREATE INDEX mdl_post_use_ix ON public.mdl_post USING btree (usermodified); -- --- TOC entry 8938 (class 1259 OID 65611) -- Name: mdl_prof_run_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52991,7 +47264,6 @@ CREATE UNIQUE INDEX mdl_prof_run_uix ON public.mdl_profiling USING btree (runid) -- --- TOC entry 8939 (class 1259 OID 65612) -- Name: mdl_prof_timrun_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -52999,7 +47271,6 @@ CREATE INDEX mdl_prof_timrun_ix ON public.mdl_profiling USING btree (timecreated -- --- TOC entry 8940 (class 1259 OID 65613) -- Name: mdl_prof_urlrun_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53007,7 +47278,6 @@ CREATE INDEX mdl_prof_urlrun_ix ON public.mdl_profiling USING btree (url, runref -- --- TOC entry 8943 (class 1259 OID 65614) -- Name: mdl_qtypddim_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53015,7 +47285,6 @@ CREATE INDEX mdl_qtypddim_que_ix ON public.mdl_qtype_ddimageortext USING btree ( -- --- TOC entry 8946 (class 1259 OID 65615) -- Name: mdl_qtypddimdrag_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53023,7 +47292,6 @@ CREATE INDEX mdl_qtypddimdrag_que_ix ON public.mdl_qtype_ddimageortext_drags USI -- --- TOC entry 8949 (class 1259 OID 65616) -- Name: mdl_qtypddimdrop_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53031,7 +47299,6 @@ CREATE INDEX mdl_qtypddimdrop_que_ix ON public.mdl_qtype_ddimageortext_drops USI -- --- TOC entry 8952 (class 1259 OID 65617) -- Name: mdl_qtypddma_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53039,7 +47306,6 @@ CREATE INDEX mdl_qtypddma_que_ix ON public.mdl_qtype_ddmarker USING btree (quest -- --- TOC entry 8955 (class 1259 OID 65618) -- Name: mdl_qtypddmadrag_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53047,7 +47313,6 @@ CREATE INDEX mdl_qtypddmadrag_que_ix ON public.mdl_qtype_ddmarker_drags USING bt -- --- TOC entry 8958 (class 1259 OID 65619) -- Name: mdl_qtypddmadrop_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53055,7 +47320,6 @@ CREATE INDEX mdl_qtypddmadrop_que_ix ON public.mdl_qtype_ddmarker_drops USING bt -- --- TOC entry 8961 (class 1259 OID 65620) -- Name: mdl_qtypessaopti_que_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53063,7 +47327,6 @@ CREATE UNIQUE INDEX mdl_qtypessaopti_que_uix ON public.mdl_qtype_essay_options U -- --- TOC entry 8964 (class 1259 OID 65621) -- Name: mdl_qtypmatcopti_que_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53071,7 +47334,6 @@ CREATE UNIQUE INDEX mdl_qtypmatcopti_que_uix ON public.mdl_qtype_match_options U -- --- TOC entry 8967 (class 1259 OID 65622) -- Name: mdl_qtypmatcsubq_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53079,7 +47341,6 @@ CREATE INDEX mdl_qtypmatcsubq_que_ix ON public.mdl_qtype_match_subquestions USIN -- --- TOC entry 8970 (class 1259 OID 65623) -- Name: mdl_qtypmultopti_que_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53087,7 +47348,6 @@ CREATE UNIQUE INDEX mdl_qtypmultopti_que_uix ON public.mdl_qtype_multichoice_opt -- --- TOC entry 8973 (class 1259 OID 65624) -- Name: mdl_qtyprandopti_que_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53095,7 +47355,6 @@ CREATE UNIQUE INDEX mdl_qtyprandopti_que_uix ON public.mdl_qtype_randomsamatch_o -- --- TOC entry 8976 (class 1259 OID 65625) -- Name: mdl_qtypshoropti_que_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53103,7 +47362,6 @@ CREATE UNIQUE INDEX mdl_qtypshoropti_que_uix ON public.mdl_qtype_shortanswer_opt -- --- TOC entry 8977 (class 1259 OID 65626) -- Name: mdl_ques_cat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53111,7 +47369,6 @@ CREATE INDEX mdl_ques_cat_ix ON public.mdl_question USING btree (category); -- --- TOC entry 8978 (class 1259 OID 65627) -- Name: mdl_ques_catidn_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53119,7 +47376,6 @@ CREATE UNIQUE INDEX mdl_ques_catidn_uix ON public.mdl_question USING btree (cate -- --- TOC entry 8979 (class 1259 OID 65628) -- Name: mdl_ques_cre_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53127,7 +47383,6 @@ CREATE INDEX mdl_ques_cre_ix ON public.mdl_question USING btree (createdby); -- --- TOC entry 8982 (class 1259 OID 65629) -- Name: mdl_ques_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53135,7 +47390,6 @@ CREATE INDEX mdl_ques_mod_ix ON public.mdl_question USING btree (modifiedby); -- --- TOC entry 8983 (class 1259 OID 65630) -- Name: mdl_ques_par_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53143,7 +47397,6 @@ CREATE INDEX mdl_ques_par_ix ON public.mdl_question USING btree (parent); -- --- TOC entry 8984 (class 1259 OID 65631) -- Name: mdl_ques_qty_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53151,7 +47404,6 @@ CREATE INDEX mdl_ques_qty_ix ON public.mdl_question USING btree (qtype); -- --- TOC entry 8987 (class 1259 OID 65632) -- Name: mdl_quesansw_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53159,7 +47411,6 @@ CREATE INDEX mdl_quesansw_que_ix ON public.mdl_question_answers USING btree (que -- --- TOC entry 8996 (class 1259 OID 65633) -- Name: mdl_quesatte_beh_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53167,7 +47418,6 @@ CREATE INDEX mdl_quesatte_beh_ix ON public.mdl_question_attempts USING btree (be -- --- TOC entry 8999 (class 1259 OID 65634) -- Name: mdl_quesatte_que2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53175,7 +47425,6 @@ CREATE INDEX mdl_quesatte_que2_ix ON public.mdl_question_attempts USING btree (q -- --- TOC entry 9000 (class 1259 OID 65635) -- Name: mdl_quesatte_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53183,7 +47432,6 @@ CREATE INDEX mdl_quesatte_que_ix ON public.mdl_question_attempts USING btree (qu -- --- TOC entry 9001 (class 1259 OID 65636) -- Name: mdl_quesatte_queslo_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53191,7 +47439,6 @@ CREATE UNIQUE INDEX mdl_quesatte_queslo_uix ON public.mdl_question_attempts USIN -- --- TOC entry 8993 (class 1259 OID 65637) -- Name: mdl_quesattestep_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53199,7 +47446,6 @@ CREATE INDEX mdl_quesattestep_que_ix ON public.mdl_question_attempt_steps USING -- --- TOC entry 8994 (class 1259 OID 65638) -- Name: mdl_quesattestep_queseq_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53207,7 +47453,6 @@ CREATE UNIQUE INDEX mdl_quesattestep_queseq_uix ON public.mdl_question_attempt_s -- --- TOC entry 8995 (class 1259 OID 65639) -- Name: mdl_quesattestep_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53215,7 +47460,6 @@ CREATE INDEX mdl_quesattestep_use_ix ON public.mdl_question_attempt_steps USING -- --- TOC entry 8988 (class 1259 OID 65640) -- Name: mdl_quesattestepdata_att_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53223,7 +47467,6 @@ CREATE INDEX mdl_quesattestepdata_att_ix ON public.mdl_question_attempt_step_dat -- --- TOC entry 9002 (class 1259 OID 65641) -- Name: mdl_quescalc_ans_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53231,7 +47474,6 @@ CREATE INDEX mdl_quescalc_ans_ix ON public.mdl_question_calculated USING btree ( -- --- TOC entry 9005 (class 1259 OID 65642) -- Name: mdl_quescalc_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53239,7 +47481,6 @@ CREATE INDEX mdl_quescalc_que_ix ON public.mdl_question_calculated USING btree ( -- --- TOC entry 9008 (class 1259 OID 65643) -- Name: mdl_quescalcopti_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53247,7 +47488,6 @@ CREATE INDEX mdl_quescalcopti_que_ix ON public.mdl_question_calculated_options U -- --- TOC entry 9009 (class 1259 OID 65644) -- Name: mdl_quescate_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53255,7 +47495,6 @@ CREATE INDEX mdl_quescate_con_ix ON public.mdl_question_categories USING btree ( -- --- TOC entry 9010 (class 1259 OID 65645) -- Name: mdl_quescate_conidn_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53263,7 +47502,6 @@ CREATE UNIQUE INDEX mdl_quescate_conidn_uix ON public.mdl_question_categories US -- --- TOC entry 9011 (class 1259 OID 65646) -- Name: mdl_quescate_consta_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53271,7 +47509,6 @@ CREATE UNIQUE INDEX mdl_quescate_consta_uix ON public.mdl_question_categories US -- --- TOC entry 9014 (class 1259 OID 65647) -- Name: mdl_quescate_par_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53279,7 +47516,6 @@ CREATE INDEX mdl_quescate_par_ix ON public.mdl_question_categories USING btree ( -- --- TOC entry 9021 (class 1259 OID 65648) -- Name: mdl_quesdata_dat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53287,7 +47523,6 @@ CREATE INDEX mdl_quesdata_dat_ix ON public.mdl_question_datasets USING btree (da -- --- TOC entry 9024 (class 1259 OID 65649) -- Name: mdl_quesdata_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53295,7 +47530,6 @@ CREATE INDEX mdl_quesdata_que_ix ON public.mdl_question_datasets USING btree (qu -- --- TOC entry 9025 (class 1259 OID 65650) -- Name: mdl_quesdata_quedat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53303,7 +47537,6 @@ CREATE INDEX mdl_quesdata_quedat_ix ON public.mdl_question_datasets USING btree -- --- TOC entry 9015 (class 1259 OID 65651) -- Name: mdl_quesdatadefi_cat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53311,7 +47544,6 @@ CREATE INDEX mdl_quesdatadefi_cat_ix ON public.mdl_question_dataset_definitions -- --- TOC entry 9018 (class 1259 OID 65652) -- Name: mdl_quesdataitem_def_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53319,7 +47551,6 @@ CREATE INDEX mdl_quesdataitem_def_ix ON public.mdl_question_dataset_items USING -- --- TOC entry 9028 (class 1259 OID 65653) -- Name: mdl_quesddwt_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53327,7 +47558,6 @@ CREATE INDEX mdl_quesddwt_que_ix ON public.mdl_question_ddwtos USING btree (ques -- --- TOC entry 9031 (class 1259 OID 65654) -- Name: mdl_quesgaps_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53335,7 +47565,6 @@ CREATE INDEX mdl_quesgaps_que_ix ON public.mdl_question_gapselect USING btree (q -- --- TOC entry 9034 (class 1259 OID 65655) -- Name: mdl_queshint_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53343,7 +47572,6 @@ CREATE INDEX mdl_queshint_que_ix ON public.mdl_question_hints USING btree (quest -- --- TOC entry 9037 (class 1259 OID 65656) -- Name: mdl_quesmult_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53351,7 +47579,6 @@ CREATE INDEX mdl_quesmult_que_ix ON public.mdl_question_multianswer USING btree -- --- TOC entry 9038 (class 1259 OID 65657) -- Name: mdl_quesnume_ans_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53359,7 +47586,6 @@ CREATE INDEX mdl_quesnume_ans_ix ON public.mdl_question_numerical USING btree (a -- --- TOC entry 9041 (class 1259 OID 65658) -- Name: mdl_quesnume_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53367,7 +47593,6 @@ CREATE INDEX mdl_quesnume_que_ix ON public.mdl_question_numerical USING btree (q -- --- TOC entry 9044 (class 1259 OID 65659) -- Name: mdl_quesnumeopti_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53375,7 +47600,6 @@ CREATE INDEX mdl_quesnumeopti_que_ix ON public.mdl_question_numerical_options US -- --- TOC entry 9047 (class 1259 OID 65660) -- Name: mdl_quesnumeunit_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53383,7 +47607,6 @@ CREATE INDEX mdl_quesnumeunit_que_ix ON public.mdl_question_numerical_units USIN -- --- TOC entry 9048 (class 1259 OID 65661) -- Name: mdl_quesnumeunit_queuni_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53391,7 +47614,6 @@ CREATE UNIQUE INDEX mdl_quesnumeunit_queuni_uix ON public.mdl_question_numerical -- --- TOC entry 9051 (class 1259 OID 65662) -- Name: mdl_quesrespcoun_ana_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53399,7 +47621,6 @@ CREATE INDEX mdl_quesrespcoun_ana_ix ON public.mdl_question_response_count USING -- --- TOC entry 9058 (class 1259 OID 65663) -- Name: mdl_questrue_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53407,7 +47628,6 @@ CREATE INDEX mdl_questrue_que_ix ON public.mdl_question_truefalse USING btree (q -- --- TOC entry 9059 (class 1259 OID 65664) -- Name: mdl_quesusag_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53415,7 +47635,6 @@ CREATE INDEX mdl_quesusag_con_ix ON public.mdl_question_usages USING btree (cont -- --- TOC entry 9062 (class 1259 OID 65665) -- Name: mdl_quiz_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53423,7 +47642,6 @@ CREATE INDEX mdl_quiz_cou_ix ON public.mdl_quiz USING btree (course); -- --- TOC entry 9067 (class 1259 OID 65666) -- Name: mdl_quizatte_qui_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53431,7 +47649,6 @@ CREATE INDEX mdl_quizatte_qui_ix ON public.mdl_quiz_attempts USING btree (quiz); -- --- TOC entry 9068 (class 1259 OID 65667) -- Name: mdl_quizatte_quiuseatt_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53439,7 +47656,6 @@ CREATE UNIQUE INDEX mdl_quizatte_quiuseatt_uix ON public.mdl_quiz_attempts USING -- --- TOC entry 9069 (class 1259 OID 65668) -- Name: mdl_quizatte_statim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53447,7 +47663,6 @@ CREATE INDEX mdl_quizatte_statim_ix ON public.mdl_quiz_attempts USING btree (sta -- --- TOC entry 9070 (class 1259 OID 65669) -- Name: mdl_quizatte_uni_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53455,7 +47670,6 @@ CREATE UNIQUE INDEX mdl_quizatte_uni_uix ON public.mdl_quiz_attempts USING btree -- --- TOC entry 9071 (class 1259 OID 65670) -- Name: mdl_quizatte_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53463,7 +47677,6 @@ CREATE INDEX mdl_quizatte_use_ix ON public.mdl_quiz_attempts USING btree (userid -- --- TOC entry 9074 (class 1259 OID 65671) -- Name: mdl_quizfeed_qui_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53471,7 +47684,6 @@ CREATE INDEX mdl_quizfeed_qui_ix ON public.mdl_quiz_feedback USING btree (quizid -- --- TOC entry 9077 (class 1259 OID 65672) -- Name: mdl_quizgrad_qui_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53479,7 +47691,6 @@ CREATE INDEX mdl_quizgrad_qui_ix ON public.mdl_quiz_grades USING btree (quiz); -- --- TOC entry 9078 (class 1259 OID 65673) -- Name: mdl_quizgrad_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53487,7 +47698,6 @@ CREATE INDEX mdl_quizgrad_use_ix ON public.mdl_quiz_grades USING btree (userid); -- --- TOC entry 9079 (class 1259 OID 65674) -- Name: mdl_quizover_gro_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53495,7 +47705,6 @@ CREATE INDEX mdl_quizover_gro_ix ON public.mdl_quiz_overrides USING btree (group -- --- TOC entry 9082 (class 1259 OID 65675) -- Name: mdl_quizover_qui_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53503,7 +47712,6 @@ CREATE INDEX mdl_quizover_qui_ix ON public.mdl_quiz_overrides USING btree (quiz) -- --- TOC entry 9083 (class 1259 OID 65676) -- Name: mdl_quizover_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53511,7 +47719,6 @@ CREATE INDEX mdl_quizover_use_ix ON public.mdl_quiz_overrides USING btree (useri -- --- TOC entry 9086 (class 1259 OID 65677) -- Name: mdl_quizoverregr_queslo_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53519,7 +47726,6 @@ CREATE INDEX mdl_quizoverregr_queslo_ix ON public.mdl_quiz_overview_regrades USI -- --- TOC entry 9089 (class 1259 OID 65678) -- Name: mdl_quizrepo_nam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53527,7 +47733,6 @@ CREATE UNIQUE INDEX mdl_quizrepo_nam_uix ON public.mdl_quiz_reports USING btree -- --- TOC entry 9106 (class 1259 OID 65679) -- Name: mdl_quizsebquiz_cmi_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53535,7 +47740,6 @@ CREATE UNIQUE INDEX mdl_quizsebquiz_cmi_uix ON public.mdl_quizaccess_seb_quizset -- --- TOC entry 9109 (class 1259 OID 65680) -- Name: mdl_quizsebquiz_qui_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53543,7 +47747,6 @@ CREATE UNIQUE INDEX mdl_quizsebquiz_qui_uix ON public.mdl_quizaccess_seb_quizset -- --- TOC entry 9110 (class 1259 OID 65681) -- Name: mdl_quizsebquiz_tem_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53551,7 +47754,6 @@ CREATE INDEX mdl_quizsebquiz_tem_ix ON public.mdl_quizaccess_seb_quizsettings US -- --- TOC entry 9111 (class 1259 OID 65682) -- Name: mdl_quizsebquiz_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53559,7 +47761,6 @@ CREATE INDEX mdl_quizsebquiz_use_ix ON public.mdl_quizaccess_seb_quizsettings US -- --- TOC entry 9114 (class 1259 OID 65683) -- Name: mdl_quizsebtemp_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53567,7 +47768,6 @@ CREATE INDEX mdl_quizsebtemp_use_ix ON public.mdl_quizaccess_seb_template USING -- --- TOC entry 9092 (class 1259 OID 65684) -- Name: mdl_quizsect_qui_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53575,7 +47775,6 @@ CREATE INDEX mdl_quizsect_qui_ix ON public.mdl_quiz_sections USING btree (quizid -- --- TOC entry 9093 (class 1259 OID 65685) -- Name: mdl_quizsect_quifir_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53583,7 +47782,6 @@ CREATE UNIQUE INDEX mdl_quizsect_quifir_uix ON public.mdl_quiz_sections USING bt -- --- TOC entry 9100 (class 1259 OID 65686) -- Name: mdl_quizslot_que2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53591,7 +47789,6 @@ CREATE INDEX mdl_quizslot_que2_ix ON public.mdl_quiz_slots USING btree (question -- --- TOC entry 9101 (class 1259 OID 65687) -- Name: mdl_quizslot_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53599,7 +47796,6 @@ CREATE INDEX mdl_quizslot_que_ix ON public.mdl_quiz_slots USING btree (questioni -- --- TOC entry 9102 (class 1259 OID 65688) -- Name: mdl_quizslot_qui_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53607,7 +47803,6 @@ CREATE INDEX mdl_quizslot_qui_ix ON public.mdl_quiz_slots USING btree (quizid); -- --- TOC entry 9103 (class 1259 OID 65689) -- Name: mdl_quizslot_quislo_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53615,7 +47810,6 @@ CREATE UNIQUE INDEX mdl_quizslot_quislo_uix ON public.mdl_quiz_slots USING btree -- --- TOC entry 9096 (class 1259 OID 65690) -- Name: mdl_quizslottags_slo_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53623,7 +47817,6 @@ CREATE INDEX mdl_quizslottags_slo_ix ON public.mdl_quiz_slot_tags USING btree (s -- --- TOC entry 9097 (class 1259 OID 65691) -- Name: mdl_quizslottags_tag_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53631,7 +47824,6 @@ CREATE INDEX mdl_quizslottags_tag_ix ON public.mdl_quiz_slot_tags USING btree (t -- --- TOC entry 9115 (class 1259 OID 65692) -- Name: mdl_rati_comratconite_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53639,7 +47831,6 @@ CREATE INDEX mdl_rati_comratconite_ix ON public.mdl_rating USING btree (componen -- --- TOC entry 9116 (class 1259 OID 65693) -- Name: mdl_rati_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53647,7 +47838,6 @@ CREATE INDEX mdl_rati_con_ix ON public.mdl_rating USING btree (contextid); -- --- TOC entry 9119 (class 1259 OID 65694) -- Name: mdl_rati_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53655,7 +47845,6 @@ CREATE INDEX mdl_rati_use_ix ON public.mdl_rating USING btree (userid); -- --- TOC entry 9130 (class 1259 OID 65695) -- Name: mdl_repoonedacce_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53663,7 +47852,6 @@ CREATE INDEX mdl_repoonedacce_use_ix ON public.mdl_repository_onedrive_access US -- --- TOC entry 9131 (class 1259 OID 65696) -- Name: mdl_reso_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53671,7 +47859,6 @@ CREATE INDEX mdl_reso_cou_ix ON public.mdl_resource USING btree (course); -- --- TOC entry 9134 (class 1259 OID 65697) -- Name: mdl_resoold_cmi_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53679,7 +47866,6 @@ CREATE INDEX mdl_resoold_cmi_ix ON public.mdl_resource_old USING btree (cmid); -- --- TOC entry 9137 (class 1259 OID 65698) -- Name: mdl_resoold_old_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53687,7 +47873,6 @@ CREATE UNIQUE INDEX mdl_resoold_old_uix ON public.mdl_resource_old USING btree ( -- --- TOC entry 9140 (class 1259 OID 65699) -- Name: mdl_role_sho_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53695,7 +47880,6 @@ CREATE UNIQUE INDEX mdl_role_sho_uix ON public.mdl_role USING btree (shortname); -- --- TOC entry 9141 (class 1259 OID 65700) -- Name: mdl_role_sor_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53703,7 +47887,6 @@ CREATE UNIQUE INDEX mdl_role_sor_uix ON public.mdl_role USING btree (sortorder); -- --- TOC entry 9142 (class 1259 OID 65701) -- Name: mdl_rolealloassi_all_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53711,7 +47894,6 @@ CREATE INDEX mdl_rolealloassi_all_ix ON public.mdl_role_allow_assign USING btree -- --- TOC entry 9145 (class 1259 OID 65702) -- Name: mdl_rolealloassi_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53719,7 +47901,6 @@ CREATE INDEX mdl_rolealloassi_rol_ix ON public.mdl_role_allow_assign USING btree -- --- TOC entry 9146 (class 1259 OID 65703) -- Name: mdl_rolealloassi_rolall_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53727,7 +47908,6 @@ CREATE UNIQUE INDEX mdl_rolealloassi_rolall_uix ON public.mdl_role_allow_assign -- --- TOC entry 9147 (class 1259 OID 65704) -- Name: mdl_rolealloover_all_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53735,7 +47915,6 @@ CREATE INDEX mdl_rolealloover_all_ix ON public.mdl_role_allow_override USING btr -- --- TOC entry 9150 (class 1259 OID 65705) -- Name: mdl_rolealloover_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53743,7 +47922,6 @@ CREATE INDEX mdl_rolealloover_rol_ix ON public.mdl_role_allow_override USING btr -- --- TOC entry 9151 (class 1259 OID 65706) -- Name: mdl_rolealloover_rolall_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53751,7 +47929,6 @@ CREATE UNIQUE INDEX mdl_rolealloover_rolall_uix ON public.mdl_role_allow_overrid -- --- TOC entry 9152 (class 1259 OID 65707) -- Name: mdl_rolealloswit_all_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53759,7 +47936,6 @@ CREATE INDEX mdl_rolealloswit_all_ix ON public.mdl_role_allow_switch USING btree -- --- TOC entry 9155 (class 1259 OID 65708) -- Name: mdl_rolealloswit_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53767,7 +47943,6 @@ CREATE INDEX mdl_rolealloswit_rol_ix ON public.mdl_role_allow_switch USING btree -- --- TOC entry 9156 (class 1259 OID 65709) -- Name: mdl_rolealloswit_rolall_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53775,7 +47950,6 @@ CREATE UNIQUE INDEX mdl_rolealloswit_rolall_uix ON public.mdl_role_allow_switch -- --- TOC entry 9157 (class 1259 OID 65710) -- Name: mdl_rolealloview_all_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53783,7 +47957,6 @@ CREATE INDEX mdl_rolealloview_all_ix ON public.mdl_role_allow_view USING btree ( -- --- TOC entry 9160 (class 1259 OID 65711) -- Name: mdl_rolealloview_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53791,7 +47964,6 @@ CREATE INDEX mdl_rolealloview_rol_ix ON public.mdl_role_allow_view USING btree ( -- --- TOC entry 9161 (class 1259 OID 65712) -- Name: mdl_rolealloview_rolall_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53799,7 +47971,6 @@ CREATE UNIQUE INDEX mdl_rolealloview_rolall_uix ON public.mdl_role_allow_view US -- --- TOC entry 9162 (class 1259 OID 65713) -- Name: mdl_roleassi_comiteuse_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53807,7 +47978,6 @@ CREATE INDEX mdl_roleassi_comiteuse_ix ON public.mdl_role_assignments USING btre -- --- TOC entry 9163 (class 1259 OID 65714) -- Name: mdl_roleassi_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53815,7 +47985,6 @@ CREATE INDEX mdl_roleassi_con_ix ON public.mdl_role_assignments USING btree (con -- --- TOC entry 9166 (class 1259 OID 65715) -- Name: mdl_roleassi_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53823,7 +47992,6 @@ CREATE INDEX mdl_roleassi_rol_ix ON public.mdl_role_assignments USING btree (rol -- --- TOC entry 9167 (class 1259 OID 65716) -- Name: mdl_roleassi_rolcon_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53831,7 +47999,6 @@ CREATE INDEX mdl_roleassi_rolcon_ix ON public.mdl_role_assignments USING btree ( -- --- TOC entry 9168 (class 1259 OID 65717) -- Name: mdl_roleassi_sor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53839,7 +48006,6 @@ CREATE INDEX mdl_roleassi_sor_ix ON public.mdl_role_assignments USING btree (sor -- --- TOC entry 9169 (class 1259 OID 65718) -- Name: mdl_roleassi_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53847,7 +48013,6 @@ CREATE INDEX mdl_roleassi_use_ix ON public.mdl_role_assignments USING btree (use -- --- TOC entry 9170 (class 1259 OID 65719) -- Name: mdl_roleassi_useconrol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53855,7 +48020,6 @@ CREATE INDEX mdl_roleassi_useconrol_ix ON public.mdl_role_assignments USING btre -- --- TOC entry 9171 (class 1259 OID 65720) -- Name: mdl_rolecapa_cap_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53863,7 +48027,6 @@ CREATE INDEX mdl_rolecapa_cap_ix ON public.mdl_role_capabilities USING btree (ca -- --- TOC entry 9172 (class 1259 OID 65721) -- Name: mdl_rolecapa_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53871,7 +48034,6 @@ CREATE INDEX mdl_rolecapa_con_ix ON public.mdl_role_capabilities USING btree (co -- --- TOC entry 9175 (class 1259 OID 65722) -- Name: mdl_rolecapa_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53879,7 +48041,6 @@ CREATE INDEX mdl_rolecapa_mod_ix ON public.mdl_role_capabilities USING btree (mo -- --- TOC entry 9176 (class 1259 OID 65723) -- Name: mdl_rolecapa_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53887,7 +48048,6 @@ CREATE INDEX mdl_rolecapa_rol_ix ON public.mdl_role_capabilities USING btree (ro -- --- TOC entry 9177 (class 1259 OID 65724) -- Name: mdl_rolecapa_rolconcap_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53895,7 +48055,6 @@ CREATE UNIQUE INDEX mdl_rolecapa_rolconcap_uix ON public.mdl_role_capabilities U -- --- TOC entry 9178 (class 1259 OID 65725) -- Name: mdl_rolecontleve_conrol_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53903,7 +48062,6 @@ CREATE UNIQUE INDEX mdl_rolecontleve_conrol_uix ON public.mdl_role_context_level -- --- TOC entry 9181 (class 1259 OID 65726) -- Name: mdl_rolecontleve_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53911,7 +48069,6 @@ CREATE INDEX mdl_rolecontleve_rol_ix ON public.mdl_role_context_levels USING btr -- --- TOC entry 9182 (class 1259 OID 65727) -- Name: mdl_rolename_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53919,7 +48076,6 @@ CREATE INDEX mdl_rolename_con_ix ON public.mdl_role_names USING btree (contextid -- --- TOC entry 9185 (class 1259 OID 65728) -- Name: mdl_rolename_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53927,7 +48083,6 @@ CREATE INDEX mdl_rolename_rol_ix ON public.mdl_role_names USING btree (roleid); -- --- TOC entry 9186 (class 1259 OID 65729) -- Name: mdl_rolename_rolcon_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53935,7 +48090,6 @@ CREATE UNIQUE INDEX mdl_rolename_rolcon_uix ON public.mdl_role_names USING btree -- --- TOC entry 9187 (class 1259 OID 65730) -- Name: mdl_scal_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53943,7 +48097,6 @@ CREATE INDEX mdl_scal_cou_ix ON public.mdl_scale USING btree (courseid); -- --- TOC entry 9190 (class 1259 OID 65731) -- Name: mdl_scalhist_act_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53951,7 +48104,6 @@ CREATE INDEX mdl_scalhist_act_ix ON public.mdl_scale_history USING btree (action -- --- TOC entry 9191 (class 1259 OID 65732) -- Name: mdl_scalhist_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53959,7 +48111,6 @@ CREATE INDEX mdl_scalhist_cou_ix ON public.mdl_scale_history USING btree (course -- --- TOC entry 9194 (class 1259 OID 65733) -- Name: mdl_scalhist_log_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53967,7 +48118,6 @@ CREATE INDEX mdl_scalhist_log_ix ON public.mdl_scale_history USING btree (logged -- --- TOC entry 9195 (class 1259 OID 65734) -- Name: mdl_scalhist_old_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53975,7 +48125,6 @@ CREATE INDEX mdl_scalhist_old_ix ON public.mdl_scale_history USING btree (oldid) -- --- TOC entry 9196 (class 1259 OID 65735) -- Name: mdl_scalhist_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53983,7 +48132,6 @@ CREATE INDEX mdl_scalhist_tim_ix ON public.mdl_scale_history USING btree (timemo -- --- TOC entry 9197 (class 1259 OID 65736) -- Name: mdl_scor_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53991,7 +48139,6 @@ CREATE INDEX mdl_scor_cou_ix ON public.mdl_scorm USING btree (course); -- --- TOC entry 9202 (class 1259 OID 65737) -- Name: mdl_scoraiccsess_sco_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -53999,7 +48146,6 @@ CREATE INDEX mdl_scoraiccsess_sco_ix ON public.mdl_scorm_aicc_session USING btre -- --- TOC entry 9203 (class 1259 OID 65738) -- Name: mdl_scoraiccsess_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54007,7 +48153,6 @@ CREATE INDEX mdl_scoraiccsess_use_ix ON public.mdl_scorm_aicc_session USING btre -- --- TOC entry 9206 (class 1259 OID 65739) -- Name: mdl_scorscoe_sco_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54015,7 +48160,6 @@ CREATE INDEX mdl_scorscoe_sco_ix ON public.mdl_scorm_scoes USING btree (scorm); -- --- TOC entry 9209 (class 1259 OID 65740) -- Name: mdl_scorscoedata_sco_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54023,7 +48167,6 @@ CREATE INDEX mdl_scorscoedata_sco_ix ON public.mdl_scorm_scoes_data USING btree -- --- TOC entry 9212 (class 1259 OID 65741) -- Name: mdl_scorscoetrac_sco2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54031,7 +48174,6 @@ CREATE INDEX mdl_scorscoetrac_sco2_ix ON public.mdl_scorm_scoes_track USING btre -- --- TOC entry 9213 (class 1259 OID 65742) -- Name: mdl_scorscoetrac_sco_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54039,7 +48181,6 @@ CREATE INDEX mdl_scorscoetrac_sco_ix ON public.mdl_scorm_scoes_track USING btree -- --- TOC entry 9214 (class 1259 OID 65743) -- Name: mdl_scorscoetrac_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54047,7 +48188,6 @@ CREATE INDEX mdl_scorscoetrac_use_ix ON public.mdl_scorm_scoes_track USING btree -- --- TOC entry 9215 (class 1259 OID 65744) -- Name: mdl_scorscoetrac_usescosco_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54055,7 +48195,6 @@ CREATE UNIQUE INDEX mdl_scorscoetrac_usescosco_uix ON public.mdl_scorm_scoes_tra -- --- TOC entry 9218 (class 1259 OID 65745) -- Name: mdl_scorseqmapi_obj_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54063,7 +48202,6 @@ CREATE INDEX mdl_scorseqmapi_obj_ix ON public.mdl_scorm_seq_mapinfo USING btree -- --- TOC entry 9219 (class 1259 OID 65746) -- Name: mdl_scorseqmapi_sco_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54071,7 +48209,6 @@ CREATE INDEX mdl_scorseqmapi_sco_ix ON public.mdl_scorm_seq_mapinfo USING btree -- --- TOC entry 9220 (class 1259 OID 65747) -- Name: mdl_scorseqmapi_scoidobj_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54079,7 +48216,6 @@ CREATE UNIQUE INDEX mdl_scorseqmapi_scoidobj_uix ON public.mdl_scorm_seq_mapinfo -- --- TOC entry 9223 (class 1259 OID 65748) -- Name: mdl_scorseqobje_sco_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54087,7 +48223,6 @@ CREATE INDEX mdl_scorseqobje_sco_ix ON public.mdl_scorm_seq_objective USING btre -- --- TOC entry 9224 (class 1259 OID 65749) -- Name: mdl_scorseqobje_scoid_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54095,7 +48230,6 @@ CREATE UNIQUE INDEX mdl_scorseqobje_scoid_uix ON public.mdl_scorm_seq_objective -- --- TOC entry 9231 (class 1259 OID 65750) -- Name: mdl_scorseqroll_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54103,7 +48237,6 @@ CREATE INDEX mdl_scorseqroll_rol_ix ON public.mdl_scorm_seq_rolluprulecond USING -- --- TOC entry 9232 (class 1259 OID 65751) -- Name: mdl_scorseqroll_sco2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54111,7 +48244,6 @@ CREATE INDEX mdl_scorseqroll_sco2_ix ON public.mdl_scorm_seq_rolluprulecond USIN -- --- TOC entry 9227 (class 1259 OID 65752) -- Name: mdl_scorseqroll_sco_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54119,7 +48251,6 @@ CREATE INDEX mdl_scorseqroll_sco_ix ON public.mdl_scorm_seq_rolluprule USING btr -- --- TOC entry 9228 (class 1259 OID 65753) -- Name: mdl_scorseqroll_scoid_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54127,7 +48258,6 @@ CREATE UNIQUE INDEX mdl_scorseqroll_scoid_uix ON public.mdl_scorm_seq_rolluprule -- --- TOC entry 9233 (class 1259 OID 65754) -- Name: mdl_scorseqroll_scorolid_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54135,7 +48265,6 @@ CREATE UNIQUE INDEX mdl_scorseqroll_scorolid_uix ON public.mdl_scorm_seq_rollupr -- --- TOC entry 9236 (class 1259 OID 65755) -- Name: mdl_scorseqrule_idscorul_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54143,7 +48272,6 @@ CREATE UNIQUE INDEX mdl_scorseqrule_idscorul_uix ON public.mdl_scorm_seq_rulecon -- --- TOC entry 9237 (class 1259 OID 65756) -- Name: mdl_scorseqrule_rul_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54151,7 +48279,6 @@ CREATE INDEX mdl_scorseqrule_rul_ix ON public.mdl_scorm_seq_rulecond USING btree -- --- TOC entry 9238 (class 1259 OID 65757) -- Name: mdl_scorseqrule_sco2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54159,7 +48286,6 @@ CREATE INDEX mdl_scorseqrule_sco2_ix ON public.mdl_scorm_seq_rulecond USING btre -- --- TOC entry 9241 (class 1259 OID 65758) -- Name: mdl_scorseqrule_sco_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54167,7 +48293,6 @@ CREATE INDEX mdl_scorseqrule_sco_ix ON public.mdl_scorm_seq_ruleconds USING btre -- --- TOC entry 9242 (class 1259 OID 65759) -- Name: mdl_scorseqrule_scoid_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54175,7 +48300,6 @@ CREATE UNIQUE INDEX mdl_scorseqrule_scoid_uix ON public.mdl_scorm_seq_ruleconds -- --- TOC entry 9247 (class 1259 OID 65760) -- Name: mdl_search_simpledb_content; Type: INDEX; Schema: public; Owner: postgres -- @@ -54183,7 +48307,6 @@ CREATE INDEX mdl_search_simpledb_content ON public.mdl_search_simpledb_index USI -- --- TOC entry 9248 (class 1259 OID 65761) -- Name: mdl_search_simpledb_description1; Type: INDEX; Schema: public; Owner: postgres -- @@ -54191,7 +48314,6 @@ CREATE INDEX mdl_search_simpledb_description1 ON public.mdl_search_simpledb_inde -- --- TOC entry 9249 (class 1259 OID 65762) -- Name: mdl_search_simpledb_description2; Type: INDEX; Schema: public; Owner: postgres -- @@ -54199,7 +48321,6 @@ CREATE INDEX mdl_search_simpledb_description2 ON public.mdl_search_simpledb_inde -- --- TOC entry 9250 (class 1259 OID 65763) -- Name: mdl_search_simpledb_title; Type: INDEX; Schema: public; Owner: postgres -- @@ -54207,7 +48328,6 @@ CREATE INDEX mdl_search_simpledb_title ON public.mdl_search_simpledb_index USING -- --- TOC entry 9243 (class 1259 OID 65764) -- Name: mdl_searinderequ_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54215,7 +48335,6 @@ CREATE INDEX mdl_searinderequ_con_ix ON public.mdl_search_index_requests USING b -- --- TOC entry 9246 (class 1259 OID 65765) -- Name: mdl_searinderequ_indtim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54223,7 +48342,6 @@ CREATE INDEX mdl_searinderequ_indtim_ix ON public.mdl_search_index_requests USIN -- --- TOC entry 9251 (class 1259 OID 65766) -- Name: mdl_searsimpinde_doc_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54231,7 +48349,6 @@ CREATE UNIQUE INDEX mdl_searsimpinde_doc_uix ON public.mdl_search_simpledb_index -- --- TOC entry 9254 (class 1259 OID 65767) -- Name: mdl_searsimpinde_owncon_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54239,7 +48356,6 @@ CREATE INDEX mdl_searsimpinde_owncon_ix ON public.mdl_search_simpledb_index USIN -- --- TOC entry 9257 (class 1259 OID 65768) -- Name: mdl_sess_sid_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54247,7 +48363,6 @@ CREATE UNIQUE INDEX mdl_sess_sid_uix ON public.mdl_sessions USING btree (sid); -- --- TOC entry 9258 (class 1259 OID 65769) -- Name: mdl_sess_sta_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54255,7 +48370,6 @@ CREATE INDEX mdl_sess_sta_ix ON public.mdl_sessions USING btree (state); -- --- TOC entry 9259 (class 1259 OID 65770) -- Name: mdl_sess_tim2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54263,7 +48377,6 @@ CREATE INDEX mdl_sess_tim2_ix ON public.mdl_sessions USING btree (timemodified); -- --- TOC entry 9260 (class 1259 OID 65771) -- Name: mdl_sess_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54271,7 +48384,6 @@ CREATE INDEX mdl_sess_tim_ix ON public.mdl_sessions USING btree (timecreated); -- --- TOC entry 9261 (class 1259 OID 65772) -- Name: mdl_sess_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54279,7 +48391,6 @@ CREATE INDEX mdl_sess_use_ix ON public.mdl_sessions USING btree (userid); -- --- TOC entry 9262 (class 1259 OID 65773) -- Name: mdl_statdail_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54287,7 +48398,6 @@ CREATE INDEX mdl_statdail_cou_ix ON public.mdl_stats_daily USING btree (courseid -- --- TOC entry 9265 (class 1259 OID 65774) -- Name: mdl_statdail_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54295,7 +48405,6 @@ CREATE INDEX mdl_statdail_rol_ix ON public.mdl_stats_daily USING btree (roleid); -- --- TOC entry 9266 (class 1259 OID 65775) -- Name: mdl_statdail_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54303,7 +48412,6 @@ CREATE INDEX mdl_statdail_tim_ix ON public.mdl_stats_daily USING btree (timeend) -- --- TOC entry 9267 (class 1259 OID 65776) -- Name: mdl_statmont_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54311,7 +48419,6 @@ CREATE INDEX mdl_statmont_cou_ix ON public.mdl_stats_monthly USING btree (course -- --- TOC entry 9270 (class 1259 OID 65777) -- Name: mdl_statmont_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54319,7 +48426,6 @@ CREATE INDEX mdl_statmont_rol_ix ON public.mdl_stats_monthly USING btree (roleid -- --- TOC entry 9271 (class 1259 OID 65778) -- Name: mdl_statmont_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54327,7 +48433,6 @@ CREATE INDEX mdl_statmont_tim_ix ON public.mdl_stats_monthly USING btree (timeen -- --- TOC entry 9272 (class 1259 OID 65779) -- Name: mdl_statuserdail_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54335,7 +48440,6 @@ CREATE INDEX mdl_statuserdail_cou_ix ON public.mdl_stats_user_daily USING btree -- --- TOC entry 9275 (class 1259 OID 65780) -- Name: mdl_statuserdail_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54343,7 +48447,6 @@ CREATE INDEX mdl_statuserdail_rol_ix ON public.mdl_stats_user_daily USING btree -- --- TOC entry 9276 (class 1259 OID 65781) -- Name: mdl_statuserdail_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54351,7 +48454,6 @@ CREATE INDEX mdl_statuserdail_tim_ix ON public.mdl_stats_user_daily USING btree -- --- TOC entry 9277 (class 1259 OID 65782) -- Name: mdl_statuserdail_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54359,7 +48461,6 @@ CREATE INDEX mdl_statuserdail_use_ix ON public.mdl_stats_user_daily USING btree -- --- TOC entry 9278 (class 1259 OID 65783) -- Name: mdl_statusermont_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54367,7 +48468,6 @@ CREATE INDEX mdl_statusermont_cou_ix ON public.mdl_stats_user_monthly USING btre -- --- TOC entry 9281 (class 1259 OID 65784) -- Name: mdl_statusermont_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54375,7 +48475,6 @@ CREATE INDEX mdl_statusermont_rol_ix ON public.mdl_stats_user_monthly USING btre -- --- TOC entry 9282 (class 1259 OID 65785) -- Name: mdl_statusermont_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54383,7 +48482,6 @@ CREATE INDEX mdl_statusermont_tim_ix ON public.mdl_stats_user_monthly USING btre -- --- TOC entry 9283 (class 1259 OID 65786) -- Name: mdl_statusermont_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54391,7 +48489,6 @@ CREATE INDEX mdl_statusermont_use_ix ON public.mdl_stats_user_monthly USING btre -- --- TOC entry 9284 (class 1259 OID 65787) -- Name: mdl_statuserweek_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54399,7 +48496,6 @@ CREATE INDEX mdl_statuserweek_cou_ix ON public.mdl_stats_user_weekly USING btree -- --- TOC entry 9287 (class 1259 OID 65788) -- Name: mdl_statuserweek_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54407,7 +48503,6 @@ CREATE INDEX mdl_statuserweek_rol_ix ON public.mdl_stats_user_weekly USING btree -- --- TOC entry 9288 (class 1259 OID 65789) -- Name: mdl_statuserweek_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54415,7 +48510,6 @@ CREATE INDEX mdl_statuserweek_tim_ix ON public.mdl_stats_user_weekly USING btree -- --- TOC entry 9289 (class 1259 OID 65790) -- Name: mdl_statuserweek_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54423,7 +48517,6 @@ CREATE INDEX mdl_statuserweek_use_ix ON public.mdl_stats_user_weekly USING btree -- --- TOC entry 9290 (class 1259 OID 65791) -- Name: mdl_statweek_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54431,7 +48524,6 @@ CREATE INDEX mdl_statweek_cou_ix ON public.mdl_stats_weekly USING btree (coursei -- --- TOC entry 9293 (class 1259 OID 65792) -- Name: mdl_statweek_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54439,7 +48531,6 @@ CREATE INDEX mdl_statweek_rol_ix ON public.mdl_stats_weekly USING btree (roleid) -- --- TOC entry 9294 (class 1259 OID 65793) -- Name: mdl_statweek_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54447,7 +48538,6 @@ CREATE INDEX mdl_statweek_tim_ix ON public.mdl_stats_weekly USING btree (timeend -- --- TOC entry 9295 (class 1259 OID 65794) -- Name: mdl_surv_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54455,7 +48545,6 @@ CREATE INDEX mdl_surv_cou_ix ON public.mdl_survey USING btree (course); -- --- TOC entry 9300 (class 1259 OID 65795) -- Name: mdl_survanal_sur_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54463,7 +48552,6 @@ CREATE INDEX mdl_survanal_sur_ix ON public.mdl_survey_analysis USING btree (surv -- --- TOC entry 9301 (class 1259 OID 65796) -- Name: mdl_survanal_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54471,7 +48559,6 @@ CREATE INDEX mdl_survanal_use_ix ON public.mdl_survey_analysis USING btree (user -- --- TOC entry 9304 (class 1259 OID 65797) -- Name: mdl_survansw_que_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54479,7 +48566,6 @@ CREATE INDEX mdl_survansw_que_ix ON public.mdl_survey_answers USING btree (quest -- --- TOC entry 9305 (class 1259 OID 65798) -- Name: mdl_survansw_sur_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54487,7 +48573,6 @@ CREATE INDEX mdl_survansw_sur_ix ON public.mdl_survey_answers USING btree (surve -- --- TOC entry 9306 (class 1259 OID 65799) -- Name: mdl_survansw_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54495,7 +48580,6 @@ CREATE INDEX mdl_survansw_use_ix ON public.mdl_survey_answers USING btree (useri -- --- TOC entry 9311 (class 1259 OID 65800) -- Name: mdl_tag_tag_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54503,7 +48587,6 @@ CREATE INDEX mdl_tag_tag_ix ON public.mdl_tag USING btree (tagcollid); -- --- TOC entry 9312 (class 1259 OID 65801) -- Name: mdl_tag_tagiss_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54511,7 +48594,6 @@ CREATE INDEX mdl_tag_tagiss_ix ON public.mdl_tag USING btree (tagcollid, isstand -- --- TOC entry 9313 (class 1259 OID 65802) -- Name: mdl_tag_tagnam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54519,7 +48601,6 @@ CREATE UNIQUE INDEX mdl_tag_tagnam_uix ON public.mdl_tag USING btree (tagcollid, -- --- TOC entry 9314 (class 1259 OID 65803) -- Name: mdl_tag_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54527,7 +48608,6 @@ CREATE INDEX mdl_tag_use_ix ON public.mdl_tag USING btree (userid); -- --- TOC entry 9315 (class 1259 OID 65804) -- Name: mdl_tagarea_comite_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54535,7 +48615,6 @@ CREATE UNIQUE INDEX mdl_tagarea_comite_uix ON public.mdl_tag_area USING btree (c -- --- TOC entry 9318 (class 1259 OID 65805) -- Name: mdl_tagarea_tag_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54543,7 +48622,6 @@ CREATE INDEX mdl_tagarea_tag_ix ON public.mdl_tag_area USING btree (tagcollid); -- --- TOC entry 9323 (class 1259 OID 65806) -- Name: mdl_tagcorr_tag_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54551,7 +48629,6 @@ CREATE INDEX mdl_tagcorr_tag_ix ON public.mdl_tag_correlation USING btree (tagid -- --- TOC entry 9324 (class 1259 OID 65807) -- Name: mdl_taginst_comiteiteconti_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54559,7 +48636,6 @@ CREATE UNIQUE INDEX mdl_taginst_comiteiteconti_uix ON public.mdl_tag_instance US -- --- TOC entry 9325 (class 1259 OID 65808) -- Name: mdl_taginst_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54567,7 +48643,6 @@ CREATE INDEX mdl_taginst_con_ix ON public.mdl_tag_instance USING btree (contexti -- --- TOC entry 9328 (class 1259 OID 65809) -- Name: mdl_taginst_itecomtagcon_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54575,7 +48650,6 @@ CREATE INDEX mdl_taginst_itecomtagcon_ix ON public.mdl_tag_instance USING btree -- --- TOC entry 9329 (class 1259 OID 65810) -- Name: mdl_taginst_tag_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54583,7 +48657,6 @@ CREATE INDEX mdl_taginst_tag_ix ON public.mdl_tag_instance USING btree (tagid); -- --- TOC entry 9332 (class 1259 OID 65811) -- Name: mdl_taskadho_nex_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54591,7 +48664,6 @@ CREATE INDEX mdl_taskadho_nex_ix ON public.mdl_task_adhoc USING btree (nextrunti -- --- TOC entry 9333 (class 1259 OID 65812) -- Name: mdl_taskadho_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54599,7 +48671,6 @@ CREATE INDEX mdl_taskadho_use_ix ON public.mdl_task_adhoc USING btree (userid); -- --- TOC entry 9334 (class 1259 OID 65813) -- Name: mdl_tasklog_cla_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54607,7 +48678,6 @@ CREATE INDEX mdl_tasklog_cla_ix ON public.mdl_task_log USING btree (classname); -- --- TOC entry 9337 (class 1259 OID 65814) -- Name: mdl_tasklog_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54615,7 +48685,6 @@ CREATE INDEX mdl_tasklog_tim_ix ON public.mdl_task_log USING btree (timestart); -- --- TOC entry 9338 (class 1259 OID 65815) -- Name: mdl_tasksche_cla_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54623,7 +48692,6 @@ CREATE UNIQUE INDEX mdl_tasksche_cla_uix ON public.mdl_task_scheduled USING btre -- --- TOC entry 9341 (class 1259 OID 65816) -- Name: mdl_toolcoho_cohroluse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54631,7 +48699,6 @@ CREATE UNIQUE INDEX mdl_toolcoho_cohroluse_uix ON public.mdl_tool_cohortroles US -- --- TOC entry 9344 (class 1259 OID 65817) -- Name: mdl_toolcust_com_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54639,7 +48706,6 @@ CREATE INDEX mdl_toolcust_com_ix ON public.mdl_tool_customlang USING btree (comp -- --- TOC entry 9347 (class 1259 OID 65818) -- Name: mdl_toolcust_lancomstr_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54647,7 +48713,6 @@ CREATE UNIQUE INDEX mdl_toolcust_lancomstr_uix ON public.mdl_tool_customlang USI -- --- TOC entry 9352 (class 1259 OID 65819) -- Name: mdl_tooldatactxe_con_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54655,7 +48720,6 @@ CREATE UNIQUE INDEX mdl_tooldatactxe_con_uix ON public.mdl_tool_dataprivacy_ctxe -- --- TOC entry 9355 (class 1259 OID 65820) -- Name: mdl_tooldatactxi_cat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54663,7 +48727,6 @@ CREATE INDEX mdl_tooldatactxi_cat_ix ON public.mdl_tool_dataprivacy_ctxinstance -- --- TOC entry 9356 (class 1259 OID 65821) -- Name: mdl_tooldatactxi_con_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54671,7 +48734,6 @@ CREATE UNIQUE INDEX mdl_tooldatactxi_con_uix ON public.mdl_tool_dataprivacy_ctxi -- --- TOC entry 9359 (class 1259 OID 65822) -- Name: mdl_tooldatactxi_pur_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54679,7 +48741,6 @@ CREATE INDEX mdl_tooldatactxi_pur_ix ON public.mdl_tool_dataprivacy_ctxinstance -- --- TOC entry 9360 (class 1259 OID 65823) -- Name: mdl_tooldatactxl_cat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54687,7 +48748,6 @@ CREATE INDEX mdl_tooldatactxl_cat_ix ON public.mdl_tool_dataprivacy_ctxlevel USI -- --- TOC entry 9361 (class 1259 OID 65824) -- Name: mdl_tooldatactxl_con_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54695,7 +48755,6 @@ CREATE UNIQUE INDEX mdl_tooldatactxl_con_uix ON public.mdl_tool_dataprivacy_ctxl -- --- TOC entry 9364 (class 1259 OID 65825) -- Name: mdl_tooldatactxl_pur_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54703,7 +48762,6 @@ CREATE INDEX mdl_tooldatactxl_pur_ix ON public.mdl_tool_dataprivacy_ctxlevel USI -- --- TOC entry 9369 (class 1259 OID 65826) -- Name: mdl_tooldatapurp_pur_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54711,7 +48769,6 @@ CREATE INDEX mdl_tooldatapurp_pur_ix ON public.mdl_tool_dataprivacy_purposerole -- --- TOC entry 9370 (class 1259 OID 65827) -- Name: mdl_tooldatapurp_purrol_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54719,7 +48776,6 @@ CREATE UNIQUE INDEX mdl_tooldatapurp_purrol_uix ON public.mdl_tool_dataprivacy_p -- --- TOC entry 9371 (class 1259 OID 65828) -- Name: mdl_tooldatapurp_rol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54727,7 +48783,6 @@ CREATE INDEX mdl_tooldatapurp_rol_ix ON public.mdl_tool_dataprivacy_purposerole -- --- TOC entry 9372 (class 1259 OID 65829) -- Name: mdl_tooldatarequ_dpo_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54735,7 +48790,6 @@ CREATE INDEX mdl_tooldatarequ_dpo_ix ON public.mdl_tool_dataprivacy_request USIN -- --- TOC entry 9375 (class 1259 OID 65830) -- Name: mdl_tooldatarequ_req_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54743,7 +48797,6 @@ CREATE INDEX mdl_tooldatarequ_req_ix ON public.mdl_tool_dataprivacy_request USIN -- --- TOC entry 9376 (class 1259 OID 65831) -- Name: mdl_tooldatarequ_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54751,7 +48804,6 @@ CREATE INDEX mdl_tooldatarequ_use2_ix ON public.mdl_tool_dataprivacy_request USI -- --- TOC entry 9377 (class 1259 OID 65832) -- Name: mdl_tooldatarequ_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54759,7 +48811,6 @@ CREATE INDEX mdl_tooldatarequ_use_ix ON public.mdl_tool_dataprivacy_request USIN -- --- TOC entry 9382 (class 1259 OID 65833) -- Name: mdl_toolmonihist_sid_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54767,7 +48818,6 @@ CREATE INDEX mdl_toolmonihist_sid_ix ON public.mdl_tool_monitor_history USING bt -- --- TOC entry 9383 (class 1259 OID 65834) -- Name: mdl_toolmonihist_sidusetim_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54775,7 +48825,6 @@ CREATE UNIQUE INDEX mdl_toolmonihist_sidusetim_uix ON public.mdl_tool_monitor_hi -- --- TOC entry 9384 (class 1259 OID 65835) -- Name: mdl_toolmonirule_couuse_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54783,7 +48832,6 @@ CREATE INDEX mdl_toolmonirule_couuse_ix ON public.mdl_tool_monitor_rules USING b -- --- TOC entry 9385 (class 1259 OID 65836) -- Name: mdl_toolmonirule_eve_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54791,7 +48839,6 @@ CREATE INDEX mdl_toolmonirule_eve_ix ON public.mdl_tool_monitor_rules USING btre -- --- TOC entry 9388 (class 1259 OID 65837) -- Name: mdl_toolmonisubs_couuse_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54799,7 +48846,6 @@ CREATE INDEX mdl_toolmonisubs_couuse_ix ON public.mdl_tool_monitor_subscriptions -- --- TOC entry 9391 (class 1259 OID 65838) -- Name: mdl_toolmonisubs_rul_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54807,7 +48853,6 @@ CREATE INDEX mdl_toolmonisubs_rul_ix ON public.mdl_tool_monitor_subscriptions US -- --- TOC entry 9392 (class 1259 OID 65839) -- Name: mdl_toolpoli_cur_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54815,7 +48860,6 @@ CREATE INDEX mdl_toolpoli_cur_ix ON public.mdl_tool_policy USING btree (currentv -- --- TOC entry 9397 (class 1259 OID 65840) -- Name: mdl_toolpoliacce_pol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54823,7 +48867,6 @@ CREATE INDEX mdl_toolpoliacce_pol_ix ON public.mdl_tool_policy_acceptances USING -- --- TOC entry 9398 (class 1259 OID 65841) -- Name: mdl_toolpoliacce_poluse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54831,7 +48874,6 @@ CREATE UNIQUE INDEX mdl_toolpoliacce_poluse_uix ON public.mdl_tool_policy_accept -- --- TOC entry 9399 (class 1259 OID 65842) -- Name: mdl_toolpoliacce_use2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54839,7 +48881,6 @@ CREATE INDEX mdl_toolpoliacce_use2_ix ON public.mdl_tool_policy_acceptances USIN -- --- TOC entry 9400 (class 1259 OID 65843) -- Name: mdl_toolpoliacce_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54847,7 +48888,6 @@ CREATE INDEX mdl_toolpoliacce_use_ix ON public.mdl_tool_policy_acceptances USING -- --- TOC entry 9403 (class 1259 OID 65844) -- Name: mdl_toolpolivers_pol_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54855,7 +48895,6 @@ CREATE INDEX mdl_toolpolivers_pol_ix ON public.mdl_tool_policy_versions USING bt -- --- TOC entry 9404 (class 1259 OID 65845) -- Name: mdl_toolpolivers_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54863,7 +48902,6 @@ CREATE INDEX mdl_toolpolivers_use_ix ON public.mdl_tool_policy_versions USING bt -- --- TOC entry 9405 (class 1259 OID 65846) -- Name: mdl_toolrecycate_cat_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54871,7 +48909,6 @@ CREATE INDEX mdl_toolrecycate_cat_ix ON public.mdl_tool_recyclebin_category USIN -- --- TOC entry 9408 (class 1259 OID 65847) -- Name: mdl_toolrecycate_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54879,7 +48916,6 @@ CREATE INDEX mdl_toolrecycate_tim_ix ON public.mdl_tool_recyclebin_category USIN -- --- TOC entry 9409 (class 1259 OID 65848) -- Name: mdl_toolrecycour_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54887,7 +48923,6 @@ CREATE INDEX mdl_toolrecycour_cou_ix ON public.mdl_tool_recyclebin_course USING -- --- TOC entry 9412 (class 1259 OID 65849) -- Name: mdl_toolrecycour_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54895,7 +48930,6 @@ CREATE INDEX mdl_toolrecycour_tim_ix ON public.mdl_tool_recyclebin_course USING -- --- TOC entry 9415 (class 1259 OID 65850) -- Name: mdl_tooluserstep_tou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54903,7 +48937,6 @@ CREATE INDEX mdl_tooluserstep_tou_ix ON public.mdl_tool_usertours_steps USING bt -- --- TOC entry 9416 (class 1259 OID 65851) -- Name: mdl_tooluserstep_tousor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54911,7 +48944,6 @@ CREATE INDEX mdl_tooluserstep_tousor_ix ON public.mdl_tool_usertours_steps USING -- --- TOC entry 9421 (class 1259 OID 65852) -- Name: mdl_upgrlog_tim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54919,7 +48951,6 @@ CREATE INDEX mdl_upgrlog_tim_ix ON public.mdl_upgrade_log USING btree (timemodif -- --- TOC entry 9422 (class 1259 OID 65853) -- Name: mdl_upgrlog_typtim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54927,7 +48958,6 @@ CREATE INDEX mdl_upgrlog_typtim_ix ON public.mdl_upgrade_log USING btree (type, -- --- TOC entry 9423 (class 1259 OID 65854) -- Name: mdl_upgrlog_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54935,7 +48965,6 @@ CREATE INDEX mdl_upgrlog_use_ix ON public.mdl_upgrade_log USING btree (userid); -- --- TOC entry 9424 (class 1259 OID 65855) -- Name: mdl_url_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54943,7 +48972,6 @@ CREATE INDEX mdl_url_cou_ix ON public.mdl_url USING btree (course); -- --- TOC entry 9427 (class 1259 OID 65856) -- Name: mdl_user_alt_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54951,7 +48979,6 @@ CREATE INDEX mdl_user_alt_ix ON public.mdl_user USING btree (alternatename); -- --- TOC entry 9428 (class 1259 OID 65857) -- Name: mdl_user_aut_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54959,7 +48986,6 @@ CREATE INDEX mdl_user_aut_ix ON public.mdl_user USING btree (auth); -- --- TOC entry 9429 (class 1259 OID 65858) -- Name: mdl_user_cit_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54967,7 +48993,6 @@ CREATE INDEX mdl_user_cit_ix ON public.mdl_user USING btree (city); -- --- TOC entry 9430 (class 1259 OID 65859) -- Name: mdl_user_con_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54975,7 +49000,6 @@ CREATE INDEX mdl_user_con_ix ON public.mdl_user USING btree (confirmed); -- --- TOC entry 9431 (class 1259 OID 65860) -- Name: mdl_user_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54983,7 +49007,6 @@ CREATE INDEX mdl_user_cou_ix ON public.mdl_user USING btree (country); -- --- TOC entry 9432 (class 1259 OID 65861) -- Name: mdl_user_del_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54991,7 +49014,6 @@ CREATE INDEX mdl_user_del_ix ON public.mdl_user USING btree (deleted); -- --- TOC entry 9433 (class 1259 OID 65862) -- Name: mdl_user_ema_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -54999,7 +49021,6 @@ CREATE INDEX mdl_user_ema_ix ON public.mdl_user USING btree (email); -- --- TOC entry 9434 (class 1259 OID 65863) -- Name: mdl_user_fir2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55007,7 +49028,6 @@ CREATE INDEX mdl_user_fir2_ix ON public.mdl_user USING btree (firstnamephonetic) -- --- TOC entry 9435 (class 1259 OID 65864) -- Name: mdl_user_fir_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55015,7 +49035,6 @@ CREATE INDEX mdl_user_fir_ix ON public.mdl_user USING btree (firstname); -- --- TOC entry 9438 (class 1259 OID 65865) -- Name: mdl_user_idn_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55023,7 +49042,6 @@ CREATE INDEX mdl_user_idn_ix ON public.mdl_user USING btree (idnumber); -- --- TOC entry 9439 (class 1259 OID 65866) -- Name: mdl_user_las2_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55031,7 +49049,6 @@ CREATE INDEX mdl_user_las2_ix ON public.mdl_user USING btree (lastaccess); -- --- TOC entry 9440 (class 1259 OID 65867) -- Name: mdl_user_las3_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55039,7 +49056,6 @@ CREATE INDEX mdl_user_las3_ix ON public.mdl_user USING btree (lastnamephonetic); -- --- TOC entry 9441 (class 1259 OID 65868) -- Name: mdl_user_las_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55047,7 +49063,6 @@ CREATE INDEX mdl_user_las_ix ON public.mdl_user USING btree (lastname); -- --- TOC entry 9442 (class 1259 OID 65869) -- Name: mdl_user_mid_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55055,7 +49070,6 @@ CREATE INDEX mdl_user_mid_ix ON public.mdl_user USING btree (middlename); -- --- TOC entry 9443 (class 1259 OID 65870) -- Name: mdl_user_mneuse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55063,7 +49077,6 @@ CREATE UNIQUE INDEX mdl_user_mneuse_uix ON public.mdl_user USING btree (mnethost -- --- TOC entry 9446 (class 1259 OID 65871) -- Name: mdl_userdevi_pususe_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55071,7 +49084,6 @@ CREATE UNIQUE INDEX mdl_userdevi_pususe_uix ON public.mdl_user_devices USING btr -- --- TOC entry 9447 (class 1259 OID 65872) -- Name: mdl_userdevi_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55079,7 +49091,6 @@ CREATE INDEX mdl_userdevi_use_ix ON public.mdl_user_devices USING btree (userid) -- --- TOC entry 9448 (class 1259 OID 65873) -- Name: mdl_userdevi_uuiuse_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55087,7 +49098,6 @@ CREATE INDEX mdl_userdevi_uuiuse_ix ON public.mdl_user_devices USING btree (uuid -- --- TOC entry 9449 (class 1259 OID 65874) -- Name: mdl_userenro_enr_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55095,7 +49105,6 @@ CREATE INDEX mdl_userenro_enr_ix ON public.mdl_user_enrolments USING btree (enro -- --- TOC entry 9450 (class 1259 OID 65875) -- Name: mdl_userenro_enruse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55103,7 +49112,6 @@ CREATE UNIQUE INDEX mdl_userenro_enruse_uix ON public.mdl_user_enrolments USING -- --- TOC entry 9453 (class 1259 OID 65876) -- Name: mdl_userenro_mod_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55111,7 +49119,6 @@ CREATE INDEX mdl_userenro_mod_ix ON public.mdl_user_enrolments USING btree (modi -- --- TOC entry 9454 (class 1259 OID 65877) -- Name: mdl_userenro_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55119,7 +49126,6 @@ CREATE INDEX mdl_userenro_use_ix ON public.mdl_user_enrolments USING btree (user -- --- TOC entry 9459 (class 1259 OID 65878) -- Name: mdl_userinfodata_usefie_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55127,7 +49133,6 @@ CREATE UNIQUE INDEX mdl_userinfodata_usefie_uix ON public.mdl_user_info_data USI -- --- TOC entry 9462 (class 1259 OID 65879) -- Name: mdl_userlast_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55135,7 +49140,6 @@ CREATE INDEX mdl_userlast_cou_ix ON public.mdl_user_lastaccess USING btree (cour -- --- TOC entry 9465 (class 1259 OID 65880) -- Name: mdl_userlast_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55143,7 +49147,6 @@ CREATE INDEX mdl_userlast_use_ix ON public.mdl_user_lastaccess USING btree (user -- --- TOC entry 9466 (class 1259 OID 65881) -- Name: mdl_userlast_usecou_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55151,7 +49154,6 @@ CREATE UNIQUE INDEX mdl_userlast_usecou_uix ON public.mdl_user_lastaccess USING -- --- TOC entry 9469 (class 1259 OID 65882) -- Name: mdl_userpasshist_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55159,7 +49161,6 @@ CREATE INDEX mdl_userpasshist_use_ix ON public.mdl_user_password_history USING b -- --- TOC entry 9472 (class 1259 OID 65883) -- Name: mdl_userpassrese_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55167,7 +49168,6 @@ CREATE INDEX mdl_userpassrese_use_ix ON public.mdl_user_password_resets USING bt -- --- TOC entry 9475 (class 1259 OID 65884) -- Name: mdl_userpref_usenam_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55175,7 +49175,6 @@ CREATE UNIQUE INDEX mdl_userpref_usenam_uix ON public.mdl_user_preferences USING -- --- TOC entry 9478 (class 1259 OID 65885) -- Name: mdl_userprivkey_scrval_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55183,7 +49182,6 @@ CREATE INDEX mdl_userprivkey_scrval_ix ON public.mdl_user_private_key USING btre -- --- TOC entry 9479 (class 1259 OID 65886) -- Name: mdl_userprivkey_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55191,7 +49189,6 @@ CREATE INDEX mdl_userprivkey_use_ix ON public.mdl_user_private_key USING btree ( -- --- TOC entry 9480 (class 1259 OID 65887) -- Name: mdl_wiki_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55199,7 +49196,6 @@ CREATE INDEX mdl_wiki_cou_ix ON public.mdl_wiki USING btree (course); -- --- TOC entry 9483 (class 1259 OID 65888) -- Name: mdl_wikilink_fro_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55207,7 +49203,6 @@ CREATE INDEX mdl_wikilink_fro_ix ON public.mdl_wiki_links USING btree (frompagei -- --- TOC entry 9486 (class 1259 OID 65889) -- Name: mdl_wikilink_sub_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55215,7 +49210,6 @@ CREATE INDEX mdl_wikilink_sub_ix ON public.mdl_wiki_links USING btree (subwikiid -- --- TOC entry 9491 (class 1259 OID 65890) -- Name: mdl_wikipage_sub_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55223,7 +49217,6 @@ CREATE INDEX mdl_wikipage_sub_ix ON public.mdl_wiki_pages USING btree (subwikiid -- --- TOC entry 9492 (class 1259 OID 65891) -- Name: mdl_wikipage_subtituse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55231,7 +49224,6 @@ CREATE UNIQUE INDEX mdl_wikipage_subtituse_uix ON public.mdl_wiki_pages USING bt -- --- TOC entry 9495 (class 1259 OID 65892) -- Name: mdl_wikisubw_wik_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55239,7 +49231,6 @@ CREATE INDEX mdl_wikisubw_wik_ix ON public.mdl_wiki_subwikis USING btree (wikiid -- --- TOC entry 9496 (class 1259 OID 65893) -- Name: mdl_wikisubw_wikgrouse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55247,7 +49238,6 @@ CREATE UNIQUE INDEX mdl_wikisubw_wikgrouse_uix ON public.mdl_wiki_subwikis USING -- --- TOC entry 9499 (class 1259 OID 65894) -- Name: mdl_wikisyno_pagpag_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55255,7 +49245,6 @@ CREATE UNIQUE INDEX mdl_wikisyno_pagpag_uix ON public.mdl_wiki_synonyms USING bt -- --- TOC entry 9502 (class 1259 OID 65895) -- Name: mdl_wikivers_pag_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55263,7 +49252,6 @@ CREATE INDEX mdl_wikivers_pag_ix ON public.mdl_wiki_versions USING btree (pageid -- --- TOC entry 9503 (class 1259 OID 65896) -- Name: mdl_work_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55271,7 +49259,6 @@ CREATE INDEX mdl_work_cou_ix ON public.mdl_workshop USING btree (course); -- --- TOC entry 9533 (class 1259 OID 65897) -- Name: mdl_workaccu_wor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55279,7 +49266,6 @@ CREATE INDEX mdl_workaccu_wor_ix ON public.mdl_workshopform_accumulative USING b -- --- TOC entry 9508 (class 1259 OID 65898) -- Name: mdl_workaggr_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55287,7 +49273,6 @@ CREATE INDEX mdl_workaggr_use_ix ON public.mdl_workshop_aggregations USING btree -- --- TOC entry 9509 (class 1259 OID 65899) -- Name: mdl_workaggr_wor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55295,7 +49280,6 @@ CREATE INDEX mdl_workaggr_wor_ix ON public.mdl_workshop_aggregations USING btree -- --- TOC entry 9510 (class 1259 OID 65900) -- Name: mdl_workaggr_woruse_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55303,7 +49287,6 @@ CREATE UNIQUE INDEX mdl_workaggr_woruse_uix ON public.mdl_workshop_aggregations -- --- TOC entry 9511 (class 1259 OID 65901) -- Name: mdl_workasse_gra_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55311,7 +49294,6 @@ CREATE INDEX mdl_workasse_gra_ix ON public.mdl_workshop_assessments USING btree -- --- TOC entry 9514 (class 1259 OID 65902) -- Name: mdl_workasse_rev_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55319,7 +49301,6 @@ CREATE INDEX mdl_workasse_rev_ix ON public.mdl_workshop_assessments USING btree -- --- TOC entry 9515 (class 1259 OID 65903) -- Name: mdl_workasse_sub_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55327,7 +49308,6 @@ CREATE INDEX mdl_workasse_sub_ix ON public.mdl_workshop_assessments USING btree -- --- TOC entry 9530 (class 1259 OID 65904) -- Name: mdl_workbestsett_wor_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55335,7 +49315,6 @@ CREATE UNIQUE INDEX mdl_workbestsett_wor_uix ON public.mdl_workshopeval_best_set -- --- TOC entry 9536 (class 1259 OID 65905) -- Name: mdl_workcomm_wor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55343,7 +49322,6 @@ CREATE INDEX mdl_workcomm_wor_ix ON public.mdl_workshopform_comments USING btree -- --- TOC entry 9516 (class 1259 OID 65906) -- Name: mdl_workgrad_ass_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55351,7 +49329,6 @@ CREATE INDEX mdl_workgrad_ass_ix ON public.mdl_workshop_grades USING btree (asse -- --- TOC entry 9517 (class 1259 OID 65907) -- Name: mdl_workgrad_assstrdim_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55359,7 +49336,6 @@ CREATE UNIQUE INDEX mdl_workgrad_assstrdim_uix ON public.mdl_workshop_grades USI -- --- TOC entry 9539 (class 1259 OID 65908) -- Name: mdl_worknume_wor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55367,7 +49343,6 @@ CREATE INDEX mdl_worknume_wor_ix ON public.mdl_workshopform_numerrors USING btre -- --- TOC entry 9542 (class 1259 OID 65909) -- Name: mdl_worknumemap_wor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55375,7 +49350,6 @@ CREATE INDEX mdl_worknumemap_wor_ix ON public.mdl_workshopform_numerrors_map USI -- --- TOC entry 9543 (class 1259 OID 65910) -- Name: mdl_worknumemap_wornon_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55383,7 +49357,6 @@ CREATE UNIQUE INDEX mdl_worknumemap_wornon_uix ON public.mdl_workshopform_numerr -- --- TOC entry 9546 (class 1259 OID 65911) -- Name: mdl_workrubr_wor_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55391,7 +49364,6 @@ CREATE INDEX mdl_workrubr_wor_ix ON public.mdl_workshopform_rubric USING btree ( -- --- TOC entry 9549 (class 1259 OID 65912) -- Name: mdl_workrubrconf_wor_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55399,7 +49371,6 @@ CREATE UNIQUE INDEX mdl_workrubrconf_wor_uix ON public.mdl_workshopform_rubric_c -- --- TOC entry 9550 (class 1259 OID 65913) -- Name: mdl_workrubrleve_dim_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55407,7 +49378,6 @@ CREATE INDEX mdl_workrubrleve_dim_ix ON public.mdl_workshopform_rubric_levels US -- --- TOC entry 9527 (class 1259 OID 65914) -- Name: mdl_worksche_wor_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55415,7 +49385,6 @@ CREATE UNIQUE INDEX mdl_worksche_wor_uix ON public.mdl_workshopallocation_schedu -- --- TOC entry 9520 (class 1259 OID 65915) -- Name: mdl_worksubm_aut_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55423,7 +49392,6 @@ CREATE INDEX mdl_worksubm_aut_ix ON public.mdl_workshop_submissions USING btree -- --- TOC entry 9521 (class 1259 OID 65916) -- Name: mdl_worksubm_gra_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -55431,15 +49399,12 @@ CREATE INDEX mdl_worksubm_gra_ix ON public.mdl_workshop_submissions USING btree -- --- TOC entry 9524 (class 1259 OID 65917) -- Name: mdl_worksubm_wor_ix; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX mdl_worksubm_wor_ix ON public.mdl_workshop_submissions USING btree (workshopid); --- Completed on 2021-01-06 00:24:08 UTC - -- -- PostgreSQL database dump complete -- From 44f5d984b7c19df7dd5965b86b8db35fa2e761b5 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 8 Feb 2021 07:46:29 -0800 Subject: [PATCH 041/129] Increase upload amounts --- ansible/roles/php/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/roles/php/tasks/main.yml b/ansible/roles/php/tasks/main.yml index fdfa80fc..ca65c470 100644 --- a/ansible/roles/php/tasks/main.yml +++ b/ansible/roles/php/tasks/main.yml @@ -49,7 +49,7 @@ replace: dest: /etc/php/7.3/fpm/php.ini regexp: '^post_max_size.*$' - replace: 'post_max_size = 201M' + replace: 'post_max_size = 512M' backup: yes become: true @@ -57,7 +57,7 @@ replace: dest: /etc/php/7.3/fpm/php.ini regexp: '^upload_max_filesize.*$' - replace: 'upload_max_filesize = 201M' + replace: 'upload_max_filesize = 512M' backup: yes become: true From f2b0a0f646945319fddbc60ab085bbe60b192fc2 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 8 Feb 2021 07:46:40 -0800 Subject: [PATCH 042/129] Increase upload amounts --- ansible/roles/nginx/templates/nginx.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/roles/nginx/templates/nginx.conf.j2 b/ansible/roles/nginx/templates/nginx.conf.j2 index 2b4c4439..8c78ab9a 100644 --- a/ansible/roles/nginx/templates/nginx.conf.j2 +++ b/ansible/roles/nginx/templates/nginx.conf.j2 @@ -18,7 +18,7 @@ http { server_names_hash_bucket_size 64; - client_max_body_size 100M; + client_max_body_size 512M; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' From bcc878667ccb6ce52ca71ac5f1dbba22f94e6a56 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 8 Feb 2021 07:47:09 -0800 Subject: [PATCH 043/129] Switch for indicating delete and rebuild Moodle Postgres database --- ansible/roles/image-preparation/defaults/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible/roles/image-preparation/defaults/main.yml b/ansible/roles/image-preparation/defaults/main.yml index 044e28bb..54558f76 100644 --- a/ansible/roles/image-preparation/defaults/main.yml +++ b/ansible/roles/image-preparation/defaults/main.yml @@ -1,2 +1,3 @@ --- shutdown_in_image_preparation: True +overwrite_database: True From 23d2646b18c5a591dc184170620df2c6b932ff5b Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 8 Feb 2021 07:47:54 -0800 Subject: [PATCH 044/129] Moodle: tmpfs from moodlebox, 3.10 Moodle, Cron --- ansible/roles/moodle/tasks/main.yml | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml index fd5a97d3..79a25704 100644 --- a/ansible/roles/moodle/tasks/main.yml +++ b/ansible/roles/moodle/tasks/main.yml @@ -17,9 +17,9 @@ mode: 0775 # This is from Relay Trust's Repo -- name: Install Moodle 3.9 repo to /var/www/moodle +- name: Install Moodle 3.10 repo to /var/www/moodle git: - repo: 'https://github.com/RT-coding-team/the-well-moodle.git' + repo: 'https://github.com/RT-coding-team/the-well-moodle310.git' dest: /var/www/moodle/ clone: yes update: yes @@ -31,6 +31,20 @@ owner: www-data group: www-data mode: 0775 + +- name: configure temporary storage for Moodle cache + mount: + path: '{{ item.name }}' + src: 'tmpfs' + fstype: 'tmpfs' + opts: 'size={{ item.size }},mode=775,uid=www-data,gid=www-data' + dump: '0' + passno: '0' + state: 'mounted' + with_items: + - { name: '/var/cache/moodle', size: '128M' } + - { name: '/var/www/moodledata/temp', size: '999M' } + - { name: '/var/www/moodledata/sessions', size: '256M' } - name: Copy config.php to working directory @@ -55,3 +69,11 @@ src: var_www_moodle_info_php.j2 dest: /var/www/moodle/info.php +# Setup Moodle's Cron +- name: Setup Moodle's Cron To Run Every Minute as Per Moodle + ansible.builtin.cron: + name: "moodle cron" + minute: "*" + hour: "*" + user: www-data + job: "/usr/bin/php /var/www/moodle/admin/cli/cron.php >/dev/null" From 6785876986f97b333268e71e4b252a418d7ed819 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 9 Feb 2021 08:47:39 -0800 Subject: [PATCH 045/129] Fully updated for Moodle 3.10 --- .../templates/moodle_database_template.dump | 19405 ++++++++-------- 1 file changed, 10030 insertions(+), 9375 deletions(-) diff --git a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump index 1adffa80..3e823943 100644 --- a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump +++ b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump @@ -1916,7 +1916,6 @@ CREATE TABLE public.mdl_badge_external_backpack ( backpackweburl character varying(255) DEFAULT ''::character varying NOT NULL, apiversion character varying(12) DEFAULT '1.0'::character varying NOT NULL, sortorder bigint DEFAULT 0 NOT NULL, - password character varying(255), oauth2_issuerid bigint ); @@ -2969,7 +2968,8 @@ CREATE TABLE public.mdl_choice ( timeclose bigint DEFAULT 0 NOT NULL, showpreview smallint DEFAULT 0 NOT NULL, timemodified bigint DEFAULT 0 NOT NULL, - completionsubmit smallint DEFAULT 0 NOT NULL + completionsubmit smallint DEFAULT 0 NOT NULL, + showavailable smallint DEFAULT 0 NOT NULL ); @@ -4298,6 +4298,7 @@ CREATE TABLE public.mdl_course ( showreports smallint DEFAULT 0 NOT NULL, visible smallint DEFAULT 1 NOT NULL, visibleold smallint DEFAULT 1 NOT NULL, + downloadcontent smallint, groupmode smallint DEFAULT 0 NOT NULL, groupmodeforce smallint DEFAULT 0 NOT NULL, defaultgroupingid bigint DEFAULT 0 NOT NULL, @@ -4309,7 +4310,8 @@ CREATE TABLE public.mdl_course ( requested smallint DEFAULT 0 NOT NULL, enablecompletion smallint DEFAULT 0 NOT NULL, completionnotify smallint DEFAULT 0 NOT NULL, - cacherev bigint DEFAULT 0 NOT NULL + cacherev bigint DEFAULT 0 NOT NULL, + originalcourseid bigint ); @@ -7113,7 +7115,8 @@ CREATE TABLE public.mdl_folder ( timemodified bigint DEFAULT 0 NOT NULL, display smallint DEFAULT 0 NOT NULL, showexpanded smallint DEFAULT 1 NOT NULL, - showdownloadfolder smallint DEFAULT 1 NOT NULL + showdownloadfolder smallint DEFAULT 1 NOT NULL, + forcedownload smallint DEFAULT 1 NOT NULL ); @@ -9298,7 +9301,9 @@ CREATE TABLE public.mdl_h5p_libraries ( addto text, coremajor smallint, coreminor smallint, - metadatasettings text + metadatasettings text, + tutorial text, + example text ); @@ -9614,6 +9619,50 @@ ALTER TABLE public.mdl_imscp_id_seq OWNER TO postgres; ALTER SEQUENCE public.mdl_imscp_id_seq OWNED BY public.mdl_imscp.id; +-- +-- Name: mdl_infected_files; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_infected_files ( + id bigint NOT NULL, + filename text NOT NULL, + quarantinedfile text, + userid bigint NOT NULL, + reason text NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_infected_files OWNER TO postgres; + +-- +-- Name: TABLE mdl_infected_files; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_infected_files IS 'Table to store infected file details.'; + + +-- +-- Name: mdl_infected_files_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_infected_files_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_infected_files_id_seq OWNER TO postgres; + +-- +-- Name: mdl_infected_files_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_infected_files_id_seq OWNED BY public.mdl_infected_files.id; + + -- -- Name: mdl_label; Type: TABLE; Schema: public; Owner: postgres -- @@ -12479,6 +12528,51 @@ ALTER TABLE public.mdl_oauth2_issuer_id_seq OWNER TO postgres; ALTER SEQUENCE public.mdl_oauth2_issuer_id_seq OWNED BY public.mdl_oauth2_issuer.id; +-- +-- Name: mdl_oauth2_refresh_token; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_oauth2_refresh_token ( + id bigint NOT NULL, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL, + userid bigint NOT NULL, + issuerid bigint NOT NULL, + token text NOT NULL, + scopehash character varying(40) DEFAULT ''::character varying NOT NULL +); + + +ALTER TABLE public.mdl_oauth2_refresh_token OWNER TO postgres; + +-- +-- Name: TABLE mdl_oauth2_refresh_token; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_oauth2_refresh_token IS 'Stores refresh tokens which can be exchanged for access tokens'; + + +-- +-- Name: mdl_oauth2_refresh_token_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_oauth2_refresh_token_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_oauth2_refresh_token_id_seq OWNER TO postgres; + +-- +-- Name: mdl_oauth2_refresh_token_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_oauth2_refresh_token_id_seq OWNED BY public.mdl_oauth2_refresh_token.id; + + -- -- Name: mdl_oauth2_system_account; Type: TABLE; Schema: public; Owner: postgres -- @@ -12622,6 +12716,187 @@ ALTER TABLE public.mdl_page_id_seq OWNER TO postgres; ALTER SEQUENCE public.mdl_page_id_seq OWNED BY public.mdl_page.id; +-- +-- Name: mdl_paygw_paypal; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_paygw_paypal ( + id bigint NOT NULL, + paymentid bigint NOT NULL, + pp_orderid character varying(255) DEFAULT 'The ID of the order in PayPal'::character varying NOT NULL +); + + +ALTER TABLE public.mdl_paygw_paypal OWNER TO postgres; + +-- +-- Name: TABLE mdl_paygw_paypal; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_paygw_paypal IS 'Stores PayPal related information'; + + +-- +-- Name: mdl_paygw_paypal_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_paygw_paypal_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_paygw_paypal_id_seq OWNER TO postgres; + +-- +-- Name: mdl_paygw_paypal_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_paygw_paypal_id_seq OWNED BY public.mdl_paygw_paypal.id; + + +-- +-- Name: mdl_payment_accounts; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_payment_accounts ( + id bigint NOT NULL, + name character varying(255) DEFAULT ''::character varying NOT NULL, + idnumber character varying(100), + contextid bigint NOT NULL, + enabled smallint DEFAULT 0 NOT NULL, + archived smallint DEFAULT 0 NOT NULL, + timecreated bigint, + timemodified bigint +); + + +ALTER TABLE public.mdl_payment_accounts OWNER TO postgres; + +-- +-- Name: TABLE mdl_payment_accounts; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_payment_accounts IS 'Payment accounts'; + + +-- +-- Name: mdl_payment_accounts_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_payment_accounts_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_payment_accounts_id_seq OWNER TO postgres; + +-- +-- Name: mdl_payment_accounts_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_payment_accounts_id_seq OWNED BY public.mdl_payment_accounts.id; + + +-- +-- Name: mdl_payment_gateways; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_payment_gateways ( + id bigint NOT NULL, + accountid bigint NOT NULL, + gateway character varying(100) DEFAULT ''::character varying NOT NULL, + enabled smallint DEFAULT 1 NOT NULL, + config text, + timecreated bigint NOT NULL, + timemodified bigint NOT NULL +); + + +ALTER TABLE public.mdl_payment_gateways OWNER TO postgres; + +-- +-- Name: TABLE mdl_payment_gateways; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_payment_gateways IS 'Configuration for one gateway for one payment account'; + + +-- +-- Name: mdl_payment_gateways_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_payment_gateways_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_payment_gateways_id_seq OWNER TO postgres; + +-- +-- Name: mdl_payment_gateways_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_payment_gateways_id_seq OWNED BY public.mdl_payment_gateways.id; + + +-- +-- Name: mdl_payments; Type: TABLE; Schema: public; Owner: postgres +-- + +CREATE TABLE public.mdl_payments ( + id bigint NOT NULL, + component character varying(100) DEFAULT ''::character varying NOT NULL, + paymentarea character varying(50) DEFAULT ''::character varying NOT NULL, + itemid bigint NOT NULL, + userid bigint NOT NULL, + amount character varying(20) DEFAULT ''::character varying NOT NULL, + currency character varying(3) DEFAULT ''::character varying NOT NULL, + accountid bigint NOT NULL, + gateway character varying(100) DEFAULT ''::character varying NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timemodified bigint DEFAULT 0 NOT NULL +); + + +ALTER TABLE public.mdl_payments OWNER TO postgres; + +-- +-- Name: TABLE mdl_payments; Type: COMMENT; Schema: public; Owner: postgres +-- + +COMMENT ON TABLE public.mdl_payments IS 'Stores information about payments'; + + +-- +-- Name: mdl_payments_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres +-- + +CREATE SEQUENCE public.mdl_payments_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER TABLE public.mdl_payments_id_seq OWNER TO postgres; + +-- +-- Name: mdl_payments_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres +-- + +ALTER SEQUENCE public.mdl_payments_id_seq OWNED BY public.mdl_payments.id; + + -- -- Name: mdl_portfolio_instance; Type: TABLE; Schema: public; Owner: postgres -- @@ -13279,6 +13554,7 @@ CREATE TABLE public.mdl_qtype_essay_options ( graderinfoformat smallint DEFAULT 0 NOT NULL, responsetemplate text, responsetemplateformat smallint DEFAULT 0 NOT NULL, + maxbytes bigint DEFAULT 0 NOT NULL, filetypeslist text ); @@ -14643,6 +14919,7 @@ CREATE TABLE public.mdl_quiz ( showblocks smallint DEFAULT 0 NOT NULL, completionattemptsexhausted smallint DEFAULT 0, completionpass smallint DEFAULT 0, + completionminattempts bigint DEFAULT 0 NOT NULL, allowofflineattempts smallint DEFAULT 0 ); @@ -17477,7 +17754,11 @@ CREATE TABLE public.mdl_task_adhoc ( faildelay bigint, customdata text, userid bigint, - blocking smallint DEFAULT 0 NOT NULL + blocking smallint DEFAULT 0 NOT NULL, + timecreated bigint DEFAULT 0 NOT NULL, + timestarted bigint, + hostname character varying(255), + pid bigint ); @@ -17526,7 +17807,9 @@ CREATE TABLE public.mdl_task_log ( dbreads bigint NOT NULL, dbwrites bigint NOT NULL, result smallint NOT NULL, - output text NOT NULL + output text NOT NULL, + hostname character varying(255), + pid bigint ); @@ -17578,7 +17861,10 @@ CREATE TABLE public.mdl_task_scheduled ( dayofweek character varying(25) DEFAULT ''::character varying NOT NULL, faildelay bigint, customised smallint DEFAULT 0 NOT NULL, - disabled smallint DEFAULT 0 NOT NULL + disabled smallint DEFAULT 0 NOT NULL, + timestarted bigint, + hostname character varying(255), + pid bigint ); @@ -21612,6 +21898,13 @@ ALTER TABLE ONLY public.mdl_h5pactivity_attempts_results ALTER COLUMN id SET DEF ALTER TABLE ONLY public.mdl_imscp ALTER COLUMN id SET DEFAULT nextval('public.mdl_imscp_id_seq'::regclass); +-- +-- Name: mdl_infected_files id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_infected_files ALTER COLUMN id SET DEFAULT nextval('public.mdl_infected_files_id_seq'::regclass); + + -- -- Name: mdl_label id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22039,6 +22332,13 @@ ALTER TABLE ONLY public.mdl_oauth2_endpoint ALTER COLUMN id SET DEFAULT nextval( ALTER TABLE ONLY public.mdl_oauth2_issuer ALTER COLUMN id SET DEFAULT nextval('public.mdl_oauth2_issuer_id_seq'::regclass); +-- +-- Name: mdl_oauth2_refresh_token id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_oauth2_refresh_token ALTER COLUMN id SET DEFAULT nextval('public.mdl_oauth2_refresh_token_id_seq'::regclass); + + -- -- Name: mdl_oauth2_system_account id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -22060,6 +22360,34 @@ ALTER TABLE ONLY public.mdl_oauth2_user_field_mapping ALTER COLUMN id SET DEFAUL ALTER TABLE ONLY public.mdl_page ALTER COLUMN id SET DEFAULT nextval('public.mdl_page_id_seq'::regclass); +-- +-- Name: mdl_paygw_paypal id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_paygw_paypal ALTER COLUMN id SET DEFAULT nextval('public.mdl_paygw_paypal_id_seq'::regclass); + + +-- +-- Name: mdl_payment_accounts id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_payment_accounts ALTER COLUMN id SET DEFAULT nextval('public.mdl_payment_accounts_id_seq'::regclass); + + +-- +-- Name: mdl_payment_gateways id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_payment_gateways ALTER COLUMN id SET DEFAULT nextval('public.mdl_payment_gateways_id_seq'::regclass); + + +-- +-- Name: mdl_payments id; Type: DEFAULT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_payments ALTER COLUMN id SET DEFAULT nextval('public.mdl_payments_id_seq'::regclass); + + -- -- Name: mdl_portfolio_instance id; Type: DEFAULT; Schema: public; Owner: postgres -- @@ -23214,11 +23542,11 @@ SELECT pg_catalog.setval('public.mdl_analytics_indicator_calc_id_seq', 1, false) -- COPY public.mdl_analytics_models (id, enabled, trained, name, target, indicators, timesplitting, predictionsprocessor, version, contextids, timecreated, timemodified, usermodified) FROM stdin; -1 0 0 \N \\core_course\\analytics\\target\\course_dropout ["\\\\core\\\\analytics\\\\indicator\\\\any_access_after_end","\\\\core\\\\analytics\\\\indicator\\\\any_access_before_start","\\\\core\\\\analytics\\\\indicator\\\\any_write_action_in_course","\\\\core\\\\analytics\\\\indicator\\\\read_actions","\\\\core_course\\\\analytics\\\\indicator\\\\completion_enabled","\\\\core_course\\\\analytics\\\\indicator\\\\potential_cognitive_depth","\\\\core_course\\\\analytics\\\\indicator\\\\potential_social_breadth","\\\\mod_assign\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_assign\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_book\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_book\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_chat\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_chat\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_choice\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_choice\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_data\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_data\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_feedback\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_feedback\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_folder\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_folder\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_forum\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_forum\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_glossary\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_glossary\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_imscp\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_imscp\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_label\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_label\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_lesson\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_lesson\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_lti\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_lti\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_page\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_page\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_quiz\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_quiz\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_resource\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_resource\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_scorm\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_scorm\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_survey\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_survey\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_url\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_url\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_wiki\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_wiki\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_workshop\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_workshop\\\\analytics\\\\indicator\\\\social_breadth"] \N \N 1609808471 \N 1609808471 1609808471 0 -2 1 1 \N \\core_course\\analytics\\target\\no_teaching ["\\\\core_course\\\\analytics\\\\indicator\\\\no_teacher","\\\\core_course\\\\analytics\\\\indicator\\\\no_student"] \\core\\analytics\\time_splitting\\single_range \N 1609808471 \N 1609808471 1609808471 0 -3 1 1 \N \\core_user\\analytics\\target\\upcoming_activities_due ["\\\\core_course\\\\analytics\\\\indicator\\\\activities_due"] \\core\\analytics\\time_splitting\\upcoming_week \N 1609808471 \N 1609808471 1609808471 0 -4 1 1 \N \\core_course\\analytics\\target\\no_access_since_course_start ["\\\\core\\\\analytics\\\\indicator\\\\any_course_access"] \\core\\analytics\\time_splitting\\one_month_after_start \N 1609808471 \N 1609808471 1609808471 0 -5 1 1 \N \\core_course\\analytics\\target\\no_recent_accesses ["\\\\core\\\\analytics\\\\indicator\\\\any_course_access"] \\core\\analytics\\time_splitting\\past_month \N 1609808471 \N 1609808471 1609808471 0 +1 0 0 \N \\core_course\\analytics\\target\\course_dropout ["\\\\core\\\\analytics\\\\indicator\\\\any_access_after_end","\\\\core\\\\analytics\\\\indicator\\\\any_access_before_start","\\\\core\\\\analytics\\\\indicator\\\\any_write_action_in_course","\\\\core\\\\analytics\\\\indicator\\\\read_actions","\\\\core_course\\\\analytics\\\\indicator\\\\completion_enabled","\\\\core_course\\\\analytics\\\\indicator\\\\potential_cognitive_depth","\\\\core_course\\\\analytics\\\\indicator\\\\potential_social_breadth","\\\\mod_assign\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_assign\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_book\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_book\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_chat\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_chat\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_choice\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_choice\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_data\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_data\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_feedback\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_feedback\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_folder\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_folder\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_forum\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_forum\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_glossary\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_glossary\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_imscp\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_imscp\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_label\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_label\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_lesson\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_lesson\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_lti\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_lti\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_page\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_page\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_quiz\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_quiz\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_resource\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_resource\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_scorm\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_scorm\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_survey\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_survey\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_url\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_url\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_wiki\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_wiki\\\\analytics\\\\indicator\\\\social_breadth","\\\\mod_workshop\\\\analytics\\\\indicator\\\\cognitive_depth","\\\\mod_workshop\\\\analytics\\\\indicator\\\\social_breadth"] \N \N 1612889059 \N 1612889059 1612889059 0 +2 1 1 \N \\core_course\\analytics\\target\\no_teaching ["\\\\core_course\\\\analytics\\\\indicator\\\\no_teacher","\\\\core_course\\\\analytics\\\\indicator\\\\no_student"] \\core\\analytics\\time_splitting\\single_range \N 1612889059 \N 1612889059 1612889059 0 +3 1 1 \N \\core_user\\analytics\\target\\upcoming_activities_due ["\\\\core_course\\\\analytics\\\\indicator\\\\activities_due"] \\core\\analytics\\time_splitting\\upcoming_week \N 1612889059 \N 1612889059 1612889059 0 +4 1 1 \N \\core_course\\analytics\\target\\no_access_since_course_start ["\\\\core\\\\analytics\\\\indicator\\\\any_course_access"] \\core\\analytics\\time_splitting\\one_month_after_start \N 1612889059 \N 1612889059 1612889059 0 +5 1 1 \N \\core_course\\analytics\\target\\no_recent_accesses ["\\\\core\\\\analytics\\\\indicator\\\\any_course_access"] \\core\\analytics\\time_splitting\\past_month \N 1612889059 \N 1612889059 1612889059 0 \. @@ -23804,8 +24132,8 @@ COPY public.mdl_badge_external (id, backpackid, collectionid, entityid, assertio -- Data for Name: mdl_badge_external_backpack; Type: TABLE DATA; Schema: public; Owner: postgres -- -COPY public.mdl_badge_external_backpack (id, backpackapiurl, backpackweburl, apiversion, sortorder, password, oauth2_issuerid) FROM stdin; -1 https://api.badgr.io/v2 https://badgr.io 2 1 \N +COPY public.mdl_badge_external_backpack (id, backpackapiurl, backpackweburl, apiversion, sortorder, oauth2_issuerid) FROM stdin; +1 https://api.badgr.io/v2 https://badgr.io 2 1 \N \. @@ -23953,25 +24281,25 @@ SELECT pg_catalog.setval('public.mdl_block_id_seq', 43, true); -- COPY public.mdl_block_instances (id, blockname, parentcontextid, showinsubcontexts, requiredbytheme, pagetypepattern, subpagepattern, defaultregion, defaultweight, configdata, timecreated, timemodified) FROM stdin; -1 admin_bookmarks 1 0 0 admin-* \N side-pre 2 1609808495 1609808495 -2 timeline 1 0 0 my-index 2 side-post 0 1609808495 1609808495 -3 private_files 1 0 0 my-index 2 side-post 1 1609808495 1609808495 -4 online_users 1 0 0 my-index 2 side-post 2 1609808495 1609808495 -5 badges 1 0 0 my-index 2 side-post 3 1609808495 1609808495 -6 calendar_month 1 0 0 my-index 2 side-post 4 1609808495 1609808495 -7 calendar_upcoming 1 0 0 my-index 2 side-post 5 1609808495 1609808495 -8 lp 1 0 0 my-index 2 content 0 1609808495 1609808495 -9 recentlyaccessedcourses 1 0 0 my-index 2 content 1 1609808495 1609808495 -10 myoverview 1 0 0 my-index 2 content 2 1609808495 1609808495 -11 myoverview 5 0 0 my-index 3 content 2 1609884719 1609884719 -12 recentlyaccessedcourses 5 0 0 my-index 3 content 1 1609884719 1609884719 -13 lp 5 0 0 my-index 3 content 0 1609884719 1609884719 -14 calendar_upcoming 5 0 0 my-index 3 side-post 5 1609884719 1609884719 -15 calendar_month 5 0 0 my-index 3 side-post 4 1609884719 1609884719 -16 badges 5 0 0 my-index 3 side-post 3 1609884719 1609884719 -17 online_users 5 0 0 my-index 3 side-post 2 1609884719 1609884719 -18 private_files 5 0 0 my-index 3 side-post 1 1609884719 1609884719 -19 timeline 5 0 0 my-index 3 side-post 0 1609884719 1609884719 +1 admin_bookmarks 1 0 0 admin-* \N side-pre 2 1612889086 1612889086 +2 timeline 1 0 0 my-index 2 side-post 0 1612889086 1612889086 +3 private_files 1 0 0 my-index 2 side-post 1 1612889086 1612889086 +4 online_users 1 0 0 my-index 2 side-post 2 1612889086 1612889086 +5 badges 1 0 0 my-index 2 side-post 3 1612889086 1612889086 +6 calendar_month 1 0 0 my-index 2 side-post 4 1612889086 1612889086 +7 calendar_upcoming 1 0 0 my-index 2 side-post 5 1612889086 1612889086 +8 lp 1 0 0 my-index 2 content 0 1612889086 1612889086 +9 recentlyaccessedcourses 1 0 0 my-index 2 content 1 1612889086 1612889086 +10 myoverview 1 0 0 my-index 2 content 2 1612889086 1612889086 +11 myoverview 5 0 0 my-index 3 content 2 1612889167 1612889167 +12 recentlyaccessedcourses 5 0 0 my-index 3 content 1 1612889167 1612889167 +13 lp 5 0 0 my-index 3 content 0 1612889167 1612889167 +14 calendar_upcoming 5 0 0 my-index 3 side-post 5 1612889167 1612889167 +15 calendar_month 5 0 0 my-index 3 side-post 4 1612889167 1612889167 +16 badges 5 0 0 my-index 3 side-post 3 1612889167 1612889167 +17 online_users 5 0 0 my-index 3 side-post 2 1612889167 1612889167 +18 private_files 5 0 0 my-index 3 side-post 1 1612889167 1612889167 +19 timeline 5 0 0 my-index 3 side-post 0 1612889167 1612889167 \. @@ -24122,7 +24450,8 @@ SELECT pg_catalog.setval('public.mdl_cache_filters_id_seq', 1, false); -- COPY public.mdl_cache_flags (id, flagtype, name, timemodified, value, expiry) FROM stdin; -1 userpreferenceschanged 2 1612797602 1 1612826402 +1 userpreferenceschanged 2 1612889142 1 1612917942 +2 userpreferenceschanged 3 1612889205 1 1612918005 \. @@ -24130,7 +24459,7 @@ COPY public.mdl_cache_flags (id, flagtype, name, timemodified, value, expiry) FR -- Name: mdl_cache_flags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_cache_flags_id_seq', 1, true); +SELECT pg_catalog.setval('public.mdl_cache_flags_id_seq', 2, true); -- @@ -24144,673 +24473,685 @@ COPY public.mdl_capabilities (id, name, captype, contextlevel, component, riskbi 4 moodle/site:manageallmessaging write 10 moodle 8 5 moodle/site:deleteanymessage write 10 moodle 32 6 moodle/site:sendmessage write 10 moodle 16 -7 moodle/site:deleteownmessage write 10 moodle 0 -8 moodle/site:approvecourse write 40 moodle 4 -9 moodle/backup:backupcourse write 50 moodle 28 -10 moodle/backup:backupsection write 50 moodle 28 -11 moodle/backup:backupactivity write 70 moodle 28 -12 moodle/backup:backuptargetimport read 50 moodle 28 -13 moodle/backup:downloadfile write 50 moodle 28 -14 moodle/backup:configure write 50 moodle 28 -15 moodle/backup:userinfo read 50 moodle 8 -16 moodle/backup:anonymise read 50 moodle 8 -17 moodle/restore:restorecourse write 50 moodle 28 -18 moodle/restore:restoresection write 50 moodle 28 -19 moodle/restore:restoreactivity write 50 moodle 28 -20 moodle/restore:viewautomatedfilearea write 50 moodle 28 -21 moodle/restore:restoretargetimport write 50 moodle 28 -22 moodle/restore:uploadfile write 50 moodle 28 -23 moodle/restore:configure write 50 moodle 28 -24 moodle/restore:rolldates write 50 moodle 0 -25 moodle/restore:userinfo write 50 moodle 30 -26 moodle/restore:createuser write 10 moodle 24 -27 moodle/site:manageblocks write 80 moodle 20 -28 moodle/site:accessallgroups read 70 moodle 0 -29 moodle/site:viewanonymousevents read 70 moodle 8 -30 moodle/site:viewfullnames read 70 moodle 0 -31 moodle/site:viewuseridentity read 70 moodle 0 -32 moodle/site:viewreports read 50 moodle 8 -33 moodle/site:trustcontent write 70 moodle 4 -34 moodle/site:uploadusers write 10 moodle 24 -35 moodle/filter:manage write 50 moodle 0 -36 moodle/user:create write 10 moodle 24 -37 moodle/user:delete write 10 moodle 40 -38 moodle/user:update write 10 moodle 24 -39 moodle/user:viewdetails read 50 moodle 0 -40 moodle/user:viewalldetails read 30 moodle 8 -41 moodle/user:viewlastip read 30 moodle 8 -42 moodle/user:viewhiddendetails read 50 moodle 8 -43 moodle/user:loginas write 50 moodle 30 -44 moodle/user:managesyspages write 10 moodle 0 -45 moodle/user:manageblocks write 30 moodle 0 -46 moodle/user:manageownblocks write 10 moodle 0 -47 moodle/user:manageownfiles write 10 moodle 0 -48 moodle/user:ignoreuserquota write 10 moodle 0 -49 moodle/my:configsyspages write 10 moodle 0 -50 moodle/role:assign write 50 moodle 28 -51 moodle/role:review read 50 moodle 8 -52 moodle/role:override write 50 moodle 28 -53 moodle/role:safeoverride write 50 moodle 16 -54 moodle/role:manage write 10 moodle 28 -55 moodle/role:switchroles read 50 moodle 12 -56 moodle/category:manage write 40 moodle 4 -57 moodle/category:viewcourselist read 40 moodle 0 -58 moodle/category:viewhiddencategories read 40 moodle 0 -59 moodle/cohort:manage write 40 moodle 0 -60 moodle/cohort:assign write 40 moodle 0 -61 moodle/cohort:view read 50 moodle 0 -62 moodle/course:create write 40 moodle 4 -63 moodle/course:creategroupconversations write 50 moodle 4 -64 moodle/course:request write 40 moodle 0 -65 moodle/course:delete write 50 moodle 32 -66 moodle/course:update write 50 moodle 4 -67 moodle/course:view read 50 moodle 0 -68 moodle/course:enrolreview read 50 moodle 8 -69 moodle/course:enrolconfig write 50 moodle 8 -70 moodle/course:reviewotherusers read 50 moodle 0 -71 moodle/course:bulkmessaging write 50 moodle 16 -72 moodle/course:viewhiddenuserfields read 50 moodle 8 -73 moodle/course:viewhiddencourses read 50 moodle 0 -74 moodle/course:visibility write 50 moodle 0 -75 moodle/course:managefiles write 50 moodle 4 -76 moodle/course:ignoreavailabilityrestrictions read 70 moodle 0 -77 moodle/course:ignorefilesizelimits write 50 moodle 0 -78 moodle/course:manageactivities write 70 moodle 4 -79 moodle/course:activityvisibility write 70 moodle 0 -80 moodle/course:viewhiddenactivities read 70 moodle 0 -81 moodle/course:viewparticipants read 50 moodle 0 -82 moodle/course:changefullname write 50 moodle 4 -83 moodle/course:changeshortname write 50 moodle 4 -84 moodle/course:changelockedcustomfields write 50 moodle 16 -85 moodle/course:configurecustomfields write 10 moodle 16 -86 moodle/course:renameroles write 50 moodle 0 -87 moodle/course:changeidnumber write 50 moodle 4 -88 moodle/course:changecategory write 50 moodle 4 -89 moodle/course:changesummary write 50 moodle 4 -90 moodle/course:setforcedlanguage write 50 moodle 0 -91 moodle/site:viewparticipants read 10 moodle 0 -92 moodle/course:isincompletionreports read 50 moodle 0 -93 moodle/course:viewscales read 50 moodle 0 -94 moodle/course:managescales write 50 moodle 0 -95 moodle/course:managegroups write 50 moodle 4 -96 moodle/course:reset write 50 moodle 32 -97 moodle/course:viewsuspendedusers read 50 moodle 0 -98 moodle/course:tag write 50 moodle 16 -99 moodle/blog:view read 10 moodle 0 -100 moodle/blog:search read 10 moodle 0 -101 moodle/blog:viewdrafts read 10 moodle 8 -102 moodle/blog:create write 10 moodle 16 -103 moodle/blog:manageentries write 10 moodle 16 -104 moodle/blog:manageexternal write 10 moodle 16 -105 moodle/calendar:manageownentries write 50 moodle 16 -106 moodle/calendar:managegroupentries write 50 moodle 16 -107 moodle/calendar:manageentries write 50 moodle 16 -108 moodle/user:editprofile write 30 moodle 24 -109 moodle/user:editownprofile write 10 moodle 16 -110 moodle/user:changeownpassword write 10 moodle 0 -111 moodle/user:readuserposts read 30 moodle 0 -112 moodle/user:readuserblogs read 30 moodle 0 -113 moodle/user:viewuseractivitiesreport read 30 moodle 8 -114 moodle/user:editmessageprofile write 30 moodle 16 -115 moodle/user:editownmessageprofile write 10 moodle 0 -116 moodle/question:managecategory write 50 moodle 20 -117 moodle/question:add write 50 moodle 20 -118 moodle/question:editmine write 50 moodle 20 -119 moodle/question:editall write 50 moodle 20 -120 moodle/question:viewmine read 50 moodle 0 -121 moodle/question:viewall read 50 moodle 0 -122 moodle/question:usemine read 50 moodle 0 -123 moodle/question:useall read 50 moodle 0 -124 moodle/question:movemine write 50 moodle 0 -125 moodle/question:moveall write 50 moodle 0 -126 moodle/question:config write 10 moodle 2 -127 moodle/question:flag write 50 moodle 0 -128 moodle/question:tagmine write 50 moodle 0 -129 moodle/question:tagall write 50 moodle 0 -130 moodle/site:doclinks read 10 moodle 0 -131 moodle/course:sectionvisibility write 50 moodle 0 -132 moodle/course:useremail write 50 moodle 0 -133 moodle/course:viewhiddensections read 50 moodle 0 -134 moodle/course:setcurrentsection write 50 moodle 0 -135 moodle/course:movesections write 50 moodle 0 -136 moodle/site:mnetlogintoremote read 10 moodle 0 -137 moodle/grade:viewall read 50 moodle 8 -138 moodle/grade:view read 50 moodle 0 -139 moodle/grade:viewhidden read 50 moodle 8 -140 moodle/grade:import write 50 moodle 12 -141 moodle/grade:export read 50 moodle 8 -142 moodle/grade:manage write 50 moodle 12 -143 moodle/grade:edit write 50 moodle 12 -144 moodle/grade:managegradingforms write 50 moodle 12 -145 moodle/grade:sharegradingforms write 10 moodle 4 -146 moodle/grade:managesharedforms write 10 moodle 4 -147 moodle/grade:manageoutcomes write 50 moodle 0 -148 moodle/grade:manageletters write 50 moodle 0 -149 moodle/grade:hide write 50 moodle 0 -150 moodle/grade:lock write 50 moodle 0 -151 moodle/grade:unlock write 50 moodle 0 -152 moodle/my:manageblocks write 10 moodle 0 -153 moodle/notes:view read 50 moodle 0 -154 moodle/notes:manage write 50 moodle 16 -155 moodle/tag:manage write 10 moodle 16 -156 moodle/tag:edit write 10 moodle 16 -157 moodle/tag:flag write 10 moodle 16 -158 moodle/tag:editblocks write 10 moodle 0 -159 moodle/block:view read 80 moodle 0 -160 moodle/block:edit write 80 moodle 20 -161 moodle/portfolio:export read 10 moodle 0 -162 moodle/comment:view read 50 moodle 0 -163 moodle/comment:post write 50 moodle 24 -164 moodle/comment:delete write 50 moodle 32 -165 moodle/webservice:createtoken write 10 moodle 62 -166 moodle/webservice:managealltokens write 10 moodle 42 -167 moodle/webservice:createmobiletoken write 10 moodle 24 -168 moodle/rating:view read 50 moodle 0 -169 moodle/rating:viewany read 50 moodle 8 -170 moodle/rating:viewall read 50 moodle 8 -171 moodle/rating:rate write 50 moodle 0 -172 moodle/course:markcomplete write 50 moodle 0 -173 moodle/course:overridecompletion write 50 moodle 0 -174 moodle/badges:manageglobalsettings write 10 moodle 34 -175 moodle/badges:viewbadges read 50 moodle 0 -176 moodle/badges:manageownbadges write 30 moodle 0 -177 moodle/badges:viewotherbadges read 30 moodle 0 -178 moodle/badges:earnbadge write 50 moodle 0 -179 moodle/badges:createbadge write 50 moodle 16 -180 moodle/badges:deletebadge write 50 moodle 32 -181 moodle/badges:configuredetails write 50 moodle 16 -182 moodle/badges:configurecriteria write 50 moodle 4 -183 moodle/badges:configuremessages write 50 moodle 16 -184 moodle/badges:awardbadge write 50 moodle 16 -185 moodle/badges:revokebadge write 50 moodle 16 -186 moodle/badges:viewawarded read 50 moodle 8 -187 moodle/site:forcelanguage read 10 moodle 0 -188 moodle/search:query read 10 moodle 0 -189 moodle/competency:competencymanage write 40 moodle 0 -190 moodle/competency:competencyview read 40 moodle 0 -191 moodle/competency:competencygrade write 50 moodle 0 -192 moodle/competency:coursecompetencymanage write 50 moodle 0 -193 moodle/competency:coursecompetencyconfigure write 70 moodle 0 -194 moodle/competency:coursecompetencygradable read 50 moodle 0 -195 moodle/competency:coursecompetencyview read 50 moodle 0 -196 moodle/competency:evidencedelete write 30 moodle 0 -197 moodle/competency:planmanage write 30 moodle 0 -198 moodle/competency:planmanagedraft write 30 moodle 0 -199 moodle/competency:planmanageown write 30 moodle 0 -200 moodle/competency:planmanageowndraft write 30 moodle 0 -201 moodle/competency:planview read 30 moodle 0 -202 moodle/competency:planviewdraft read 30 moodle 0 -203 moodle/competency:planviewown read 30 moodle 0 -204 moodle/competency:planviewowndraft read 30 moodle 0 -205 moodle/competency:planrequestreview write 30 moodle 0 -206 moodle/competency:planrequestreviewown write 30 moodle 0 -207 moodle/competency:planreview write 30 moodle 0 -208 moodle/competency:plancomment write 30 moodle 0 -209 moodle/competency:plancommentown write 30 moodle 0 -210 moodle/competency:usercompetencyview read 30 moodle 0 -211 moodle/competency:usercompetencyrequestreview write 30 moodle 0 -212 moodle/competency:usercompetencyrequestreviewown write 30 moodle 0 -213 moodle/competency:usercompetencyreview write 30 moodle 0 -214 moodle/competency:usercompetencycomment write 30 moodle 0 -215 moodle/competency:usercompetencycommentown write 30 moodle 0 -216 moodle/competency:templatemanage write 40 moodle 0 -217 moodle/analytics:listinsights read 50 moodle 8 -218 moodle/analytics:managemodels write 10 moodle 2 -219 moodle/competency:templateview read 40 moodle 0 -220 moodle/competency:userevidencemanage write 30 moodle 0 -221 moodle/competency:userevidencemanageown write 30 moodle 0 -222 moodle/competency:userevidenceview read 30 moodle 0 -223 moodle/site:maintenanceaccess write 10 moodle 0 -224 moodle/site:messageanyuser write 10 moodle 16 -225 moodle/site:managecontextlocks write 70 moodle 0 -226 moodle/course:togglecompletion write 70 moodle 0 -227 moodle/analytics:listowninsights read 10 moodle 0 -228 moodle/h5p:setdisplayoptions write 70 moodle 0 -229 moodle/h5p:deploy write 70 moodle 4 -230 moodle/h5p:updatelibraries write 70 moodle 4 -231 moodle/course:recommendactivity write 10 moodle 0 -232 moodle/contentbank:access read 50 moodle 0 -233 moodle/contentbank:upload write 50 moodle 16 -234 moodle/contentbank:deleteanycontent write 50 moodle 32 -235 moodle/contentbank:deleteowncontent write 50 moodle 0 -236 moodle/contentbank:manageanycontent write 50 moodle 32 -237 moodle/contentbank:manageowncontent write 50 moodle 0 -238 moodle/contentbank:useeditor write 50 moodle 16 -239 mod/assign:view read 70 mod_assign 0 -240 mod/assign:submit write 70 mod_assign 0 -241 mod/assign:grade write 70 mod_assign 4 -242 mod/assign:exportownsubmission read 70 mod_assign 0 -243 mod/assign:addinstance write 50 mod_assign 4 -244 mod/assign:editothersubmission write 70 mod_assign 41 -245 mod/assign:grantextension write 70 mod_assign 0 -246 mod/assign:revealidentities write 70 mod_assign 0 -247 mod/assign:reviewgrades write 70 mod_assign 0 -248 mod/assign:releasegrades write 70 mod_assign 0 -249 mod/assign:managegrades write 70 mod_assign 0 -250 mod/assign:manageallocations write 70 mod_assign 0 -251 mod/assign:viewgrades read 70 mod_assign 0 -252 mod/assign:viewblinddetails write 70 mod_assign 8 -253 mod/assign:receivegradernotifications read 70 mod_assign 0 -254 mod/assign:manageoverrides write 70 mod_assign 0 -255 mod/assign:showhiddengrader read 70 mod_assign 0 -256 mod/assignment:view read 70 mod_assignment 0 -257 mod/assignment:addinstance write 50 mod_assignment 4 -258 mod/assignment:submit write 70 mod_assignment 0 -259 mod/assignment:grade write 70 mod_assignment 4 -260 mod/assignment:exportownsubmission read 70 mod_assignment 0 -261 mod/book:addinstance write 50 mod_book 4 -262 mod/book:read read 70 mod_book 0 -263 mod/book:viewhiddenchapters read 70 mod_book 0 -264 mod/book:edit write 70 mod_book 4 -265 mod/chat:addinstance write 50 mod_chat 4 -266 mod/chat:chat write 70 mod_chat 16 -267 mod/chat:readlog read 70 mod_chat 0 -268 mod/chat:deletelog write 70 mod_chat 0 -269 mod/chat:exportparticipatedsession read 70 mod_chat 8 -270 mod/chat:exportsession read 70 mod_chat 8 -271 mod/chat:view read 70 mod_chat 0 -272 mod/choice:addinstance write 50 mod_choice 4 -273 mod/choice:choose write 70 mod_choice 0 -274 mod/choice:readresponses read 70 mod_choice 0 -275 mod/choice:deleteresponses write 70 mod_choice 0 -276 mod/choice:downloadresponses read 70 mod_choice 0 -277 mod/choice:view read 70 mod_choice 0 -278 mod/data:addinstance write 50 mod_data 4 -279 mod/data:viewentry read 70 mod_data 0 -280 mod/data:writeentry write 70 mod_data 16 -281 mod/data:comment write 70 mod_data 16 -282 mod/data:rate write 70 mod_data 0 -283 mod/data:viewrating read 70 mod_data 0 -284 mod/data:viewanyrating read 70 mod_data 8 -285 mod/data:viewallratings read 70 mod_data 8 -286 mod/data:approve write 70 mod_data 16 -287 mod/data:manageentries write 70 mod_data 16 -288 mod/data:managecomments write 70 mod_data 16 -289 mod/data:managetemplates write 70 mod_data 20 -290 mod/data:viewalluserpresets read 70 mod_data 0 -291 mod/data:manageuserpresets write 70 mod_data 20 -292 mod/data:exportentry read 70 mod_data 8 -293 mod/data:exportownentry read 70 mod_data 0 -294 mod/data:exportallentries read 70 mod_data 8 -295 mod/data:exportuserinfo read 70 mod_data 8 -296 mod/data:view read 70 mod_data 0 -297 mod/feedback:addinstance write 50 mod_feedback 4 -298 mod/feedback:view read 70 mod_feedback 0 -299 mod/feedback:complete write 70 mod_feedback 16 -300 mod/feedback:viewanalysepage read 70 mod_feedback 8 -301 mod/feedback:deletesubmissions write 70 mod_feedback 0 -302 mod/feedback:mapcourse write 70 mod_feedback 0 -303 mod/feedback:edititems write 70 mod_feedback 20 -304 mod/feedback:createprivatetemplate write 70 mod_feedback 16 -305 mod/feedback:createpublictemplate write 70 mod_feedback 16 -306 mod/feedback:deletetemplate write 70 mod_feedback 0 -307 mod/feedback:viewreports read 70 mod_feedback 8 -308 mod/feedback:receivemail read 70 mod_feedback 8 -309 mod/folder:addinstance write 50 mod_folder 4 -310 mod/folder:view read 70 mod_folder 0 -311 mod/folder:managefiles write 70 mod_folder 16 -312 mod/forum:addinstance write 50 mod_forum 4 -313 mod/forum:viewdiscussion read 70 mod_forum 0 -314 mod/forum:viewhiddentimedposts read 70 mod_forum 0 -315 mod/forum:startdiscussion write 70 mod_forum 16 -316 mod/forum:replypost write 70 mod_forum 16 -317 mod/forum:addnews write 70 mod_forum 16 -318 mod/forum:replynews write 70 mod_forum 16 -319 mod/forum:viewrating read 70 mod_forum 0 -320 mod/forum:viewanyrating read 70 mod_forum 8 -321 mod/forum:viewallratings read 70 mod_forum 8 -322 mod/forum:rate write 70 mod_forum 0 -323 mod/forum:postprivatereply write 70 mod_forum 0 -324 mod/forum:readprivatereplies read 70 mod_forum 0 -325 mod/forum:createattachment write 70 mod_forum 16 -326 mod/forum:deleteownpost write 70 mod_forum 0 -327 mod/forum:deleteanypost write 70 mod_forum 0 -328 mod/forum:splitdiscussions write 70 mod_forum 0 -329 mod/forum:movediscussions write 70 mod_forum 0 -330 mod/forum:pindiscussions write 70 mod_forum 0 -331 mod/forum:editanypost write 70 mod_forum 16 -332 mod/forum:viewqandawithoutposting read 70 mod_forum 0 -333 mod/forum:viewsubscribers read 70 mod_forum 0 -334 mod/forum:managesubscriptions write 70 mod_forum 16 -335 mod/forum:postwithoutthrottling write 70 mod_forum 16 -336 mod/forum:exportdiscussion read 70 mod_forum 8 -337 mod/forum:exportforum read 70 mod_forum 8 -338 mod/forum:exportpost read 70 mod_forum 8 -339 mod/forum:exportownpost read 70 mod_forum 8 -340 mod/forum:addquestion write 70 mod_forum 16 -341 mod/forum:allowforcesubscribe read 70 mod_forum 0 -342 mod/forum:canposttomygroups write 70 mod_forum 0 -343 mod/forum:canoverridediscussionlock write 70 mod_forum 0 -344 mod/forum:canoverridecutoff write 70 mod_forum 0 -345 mod/forum:cantogglefavourite write 70 mod_forum 0 -346 mod/forum:grade write 70 mod_forum 0 -347 mod/glossary:addinstance write 50 mod_glossary 4 -348 mod/glossary:view read 70 mod_glossary 0 -349 mod/glossary:write write 70 mod_glossary 16 -350 mod/glossary:manageentries write 70 mod_glossary 16 -351 mod/glossary:managecategories write 70 mod_glossary 16 -352 mod/glossary:comment write 70 mod_glossary 16 -353 mod/glossary:managecomments write 70 mod_glossary 16 -354 mod/glossary:import write 70 mod_glossary 16 -355 mod/glossary:export read 70 mod_glossary 0 -356 mod/glossary:approve write 70 mod_glossary 16 -357 mod/glossary:rate write 70 mod_glossary 0 -358 mod/glossary:viewrating read 70 mod_glossary 0 -359 mod/glossary:viewanyrating read 70 mod_glossary 8 -360 mod/glossary:viewallratings read 70 mod_glossary 8 -361 mod/glossary:exportentry read 70 mod_glossary 8 -362 mod/glossary:exportownentry read 70 mod_glossary 0 -363 mod/h5pactivity:view read 70 mod_h5pactivity 0 -364 mod/h5pactivity:addinstance write 50 mod_h5pactivity 0 -365 mod/h5pactivity:submit write 70 mod_h5pactivity 0 -366 mod/h5pactivity:reviewattempts read 70 mod_h5pactivity 0 -367 mod/imscp:view read 70 mod_imscp 0 -368 mod/imscp:addinstance write 50 mod_imscp 4 -369 mod/label:addinstance write 50 mod_label 4 -370 mod/label:view read 70 mod_label 0 -371 mod/lesson:addinstance write 50 mod_lesson 4 -372 mod/lesson:edit write 70 mod_lesson 4 -373 mod/lesson:grade write 70 mod_lesson 20 -374 mod/lesson:viewreports read 70 mod_lesson 8 -375 mod/lesson:manage write 70 mod_lesson 0 -376 mod/lesson:manageoverrides write 70 mod_lesson 0 -377 mod/lesson:view read 70 mod_lesson 0 -378 mod/lti:view read 70 mod_lti 0 -379 mod/lti:addinstance write 50 mod_lti 4 -380 mod/lti:manage write 70 mod_lti 8 -381 mod/lti:admin write 70 mod_lti 8 -382 mod/lti:addcoursetool write 50 mod_lti 0 -383 mod/lti:addpreconfiguredinstance write 50 mod_lti 0 -384 mod/lti:addmanualinstance write 50 mod_lti 0 -385 mod/lti:requesttooladd write 50 mod_lti 0 -386 mod/page:view read 70 mod_page 0 -387 mod/page:addinstance write 50 mod_page 4 -388 mod/quiz:view read 70 mod_quiz 0 -389 mod/quiz:addinstance write 50 mod_quiz 4 -390 mod/quiz:attempt write 70 mod_quiz 16 -391 mod/quiz:reviewmyattempts read 70 mod_quiz 0 -392 mod/quiz:manage write 70 mod_quiz 16 -393 mod/quiz:manageoverrides write 70 mod_quiz 0 -394 mod/quiz:preview write 70 mod_quiz 0 -395 mod/quiz:grade write 70 mod_quiz 20 -396 mod/quiz:regrade write 70 mod_quiz 16 -397 mod/quiz:viewreports read 70 mod_quiz 8 -398 mod/quiz:deleteattempts write 70 mod_quiz 32 -399 mod/quiz:ignoretimelimits read 70 mod_quiz 0 -400 mod/quiz:emailconfirmsubmission read 70 mod_quiz 0 -401 mod/quiz:emailnotifysubmission read 70 mod_quiz 0 -402 mod/quiz:emailwarnoverdue read 70 mod_quiz 0 -403 mod/resource:view read 70 mod_resource 0 -404 mod/resource:addinstance write 50 mod_resource 4 -405 mod/scorm:addinstance write 50 mod_scorm 4 -406 mod/scorm:viewreport read 70 mod_scorm 0 -407 mod/scorm:skipview read 70 mod_scorm 0 -408 mod/scorm:savetrack write 70 mod_scorm 0 -409 mod/scorm:viewscores read 70 mod_scorm 0 -410 mod/scorm:deleteresponses write 70 mod_scorm 0 -411 mod/scorm:deleteownresponses write 70 mod_scorm 0 -412 mod/survey:addinstance write 50 mod_survey 4 -413 mod/survey:participate read 70 mod_survey 0 -414 mod/survey:readresponses read 70 mod_survey 0 -415 mod/survey:download read 70 mod_survey 0 -416 mod/url:view read 70 mod_url 0 -417 mod/url:addinstance write 50 mod_url 4 -418 mod/wiki:addinstance write 50 mod_wiki 4 -419 mod/wiki:viewpage read 70 mod_wiki 0 -420 mod/wiki:editpage write 70 mod_wiki 16 -421 mod/wiki:createpage write 70 mod_wiki 16 -422 mod/wiki:viewcomment read 70 mod_wiki 0 -423 mod/wiki:editcomment write 70 mod_wiki 16 -424 mod/wiki:managecomment write 70 mod_wiki 0 -425 mod/wiki:managefiles write 70 mod_wiki 0 -426 mod/wiki:overridelock write 70 mod_wiki 0 -427 mod/wiki:managewiki write 70 mod_wiki 0 -428 mod/workshop:view read 70 mod_workshop 0 -429 mod/workshop:addinstance write 50 mod_workshop 4 -430 mod/workshop:switchphase write 70 mod_workshop 0 -431 mod/workshop:editdimensions write 70 mod_workshop 4 -432 mod/workshop:submit write 70 mod_workshop 0 -433 mod/workshop:peerassess write 70 mod_workshop 0 -434 mod/workshop:manageexamples write 70 mod_workshop 0 -435 mod/workshop:allocate write 70 mod_workshop 0 -436 mod/workshop:publishsubmissions write 70 mod_workshop 0 -437 mod/workshop:viewauthornames read 70 mod_workshop 0 -438 mod/workshop:viewreviewernames read 70 mod_workshop 0 -439 mod/workshop:viewallsubmissions read 70 mod_workshop 0 -440 mod/workshop:viewpublishedsubmissions read 70 mod_workshop 0 -441 mod/workshop:viewauthorpublished read 70 mod_workshop 0 -442 mod/workshop:viewallassessments read 70 mod_workshop 0 -443 mod/workshop:overridegrades write 70 mod_workshop 0 -444 mod/workshop:ignoredeadlines write 70 mod_workshop 0 -445 mod/workshop:deletesubmissions write 70 mod_workshop 0 -446 mod/workshop:exportsubmissions read 70 mod_workshop 0 -447 auth/oauth2:managelinkedlogins write 30 auth_oauth2 0 -448 enrol/category:synchronised write 10 enrol_category 0 -449 enrol/category:config write 50 enrol_category 0 -450 enrol/cohort:config write 50 enrol_cohort 0 -451 enrol/cohort:unenrol write 50 enrol_cohort 0 -452 enrol/database:unenrol write 50 enrol_database 0 -453 enrol/database:config write 50 enrol_database 0 -454 enrol/flatfile:manage write 50 enrol_flatfile 0 -455 enrol/flatfile:unenrol write 50 enrol_flatfile 0 -456 enrol/guest:config write 50 enrol_guest 0 -457 enrol/imsenterprise:config write 50 enrol_imsenterprise 0 -458 enrol/ldap:manage write 50 enrol_ldap 0 -459 enrol/lti:config write 50 enrol_lti 0 -460 enrol/lti:unenrol write 50 enrol_lti 0 -461 enrol/manual:config write 50 enrol_manual 0 -462 enrol/manual:enrol write 50 enrol_manual 0 -463 enrol/manual:manage write 50 enrol_manual 0 -464 enrol/manual:unenrol write 50 enrol_manual 0 -465 enrol/manual:unenrolself write 50 enrol_manual 0 -466 enrol/meta:config write 50 enrol_meta 0 -467 enrol/meta:selectaslinked read 50 enrol_meta 0 -468 enrol/meta:unenrol write 50 enrol_meta 0 -469 enrol/mnet:config write 50 enrol_mnet 0 -470 enrol/paypal:config write 50 enrol_paypal 0 -471 enrol/paypal:manage write 50 enrol_paypal 0 -472 enrol/paypal:unenrol write 50 enrol_paypal 0 -473 enrol/paypal:unenrolself write 50 enrol_paypal 0 -474 enrol/self:config write 50 enrol_self 0 -475 enrol/self:manage write 50 enrol_self 0 -476 enrol/self:holdkey write 50 enrol_self 0 -477 enrol/self:unenrolself write 50 enrol_self 0 -478 enrol/self:unenrol write 50 enrol_self 0 -479 message/airnotifier:managedevice write 10 message_airnotifier 0 -480 block/activity_modules:addinstance write 80 block_activity_modules 20 -481 block/activity_results:addinstance write 80 block_activity_results 20 -482 block/admin_bookmarks:myaddinstance write 10 block_admin_bookmarks 0 -483 block/admin_bookmarks:addinstance write 80 block_admin_bookmarks 20 -484 block/badges:addinstance read 80 block_badges 0 -485 block/badges:myaddinstance read 10 block_badges 8 -486 block/blog_menu:addinstance write 80 block_blog_menu 20 -487 block/blog_recent:addinstance write 80 block_blog_recent 20 -488 block/blog_tags:addinstance write 80 block_blog_tags 20 -489 block/calendar_month:myaddinstance write 10 block_calendar_month 0 -490 block/calendar_month:addinstance write 80 block_calendar_month 20 -491 block/calendar_upcoming:myaddinstance write 10 block_calendar_upcoming 0 -492 block/calendar_upcoming:addinstance write 80 block_calendar_upcoming 20 -493 block/comments:myaddinstance write 10 block_comments 0 -494 block/comments:addinstance write 80 block_comments 20 -495 block/completionstatus:addinstance write 80 block_completionstatus 20 -496 block/course_list:myaddinstance write 10 block_course_list 0 -497 block/course_list:addinstance write 80 block_course_list 20 -498 block/course_summary:addinstance write 80 block_course_summary 20 -499 block/feedback:addinstance write 80 block_feedback 20 -500 block/globalsearch:myaddinstance write 10 block_globalsearch 0 -501 block/globalsearch:addinstance write 80 block_globalsearch 0 -502 block/glossary_random:myaddinstance write 10 block_glossary_random 0 -503 block/glossary_random:addinstance write 80 block_glossary_random 20 -504 block/html:myaddinstance write 10 block_html 0 -505 block/html:addinstance write 80 block_html 20 -506 block/login:addinstance write 80 block_login 20 -507 block/lp:addinstance write 10 block_lp 0 -508 block/lp:myaddinstance write 10 block_lp 0 -509 block/mentees:myaddinstance write 10 block_mentees 0 -510 block/mentees:addinstance write 80 block_mentees 20 -511 block/mnet_hosts:myaddinstance write 10 block_mnet_hosts 0 -512 block/mnet_hosts:addinstance write 80 block_mnet_hosts 20 -513 block/myoverview:myaddinstance write 10 block_myoverview 0 -514 block/myprofile:myaddinstance write 10 block_myprofile 0 -515 block/myprofile:addinstance write 80 block_myprofile 20 -516 block/navigation:myaddinstance write 10 block_navigation 0 -517 block/navigation:addinstance write 80 block_navigation 20 -518 block/news_items:myaddinstance write 10 block_news_items 0 -519 block/news_items:addinstance write 80 block_news_items 20 -520 block/online_users:myaddinstance write 10 block_online_users 0 -521 block/online_users:addinstance write 80 block_online_users 20 -522 block/online_users:viewlist read 80 block_online_users 0 -523 block/private_files:myaddinstance write 10 block_private_files 0 -524 block/private_files:addinstance write 80 block_private_files 20 -525 block/quiz_results:addinstance write 80 block_quiz_results 20 -526 block/recent_activity:addinstance write 80 block_recent_activity 20 -527 block/recent_activity:viewaddupdatemodule read 50 block_recent_activity 0 -528 block/recent_activity:viewdeletemodule read 50 block_recent_activity 0 -529 block/recentlyaccessedcourses:myaddinstance write 10 block_recentlyaccessedcourses 0 -530 block/recentlyaccesseditems:myaddinstance write 10 block_recentlyaccesseditems 0 -531 block/rss_client:myaddinstance write 10 block_rss_client 0 -532 block/rss_client:addinstance write 80 block_rss_client 20 -533 block/rss_client:manageownfeeds write 80 block_rss_client 0 -534 block/rss_client:manageanyfeeds write 80 block_rss_client 16 -535 block/search_forums:addinstance write 80 block_search_forums 20 -536 block/section_links:addinstance write 80 block_section_links 20 -537 block/selfcompletion:addinstance write 80 block_selfcompletion 20 -538 block/settings:myaddinstance write 10 block_settings 0 -539 block/settings:addinstance write 80 block_settings 20 -540 block/site_main_menu:addinstance write 80 block_site_main_menu 20 -541 block/social_activities:addinstance write 80 block_social_activities 20 -542 block/starredcourses:myaddinstance write 10 block_starredcourses 0 -543 block/tag_flickr:addinstance write 80 block_tag_flickr 20 -544 block/tag_youtube:addinstance write 80 block_tag_youtube 20 -545 block/tags:myaddinstance write 10 block_tags 0 -546 block/tags:addinstance write 80 block_tags 20 -547 block/timeline:myaddinstance write 10 block_timeline 0 -548 report/completion:view read 50 report_completion 8 -549 report/courseoverview:view read 10 report_courseoverview 8 -550 report/log:view read 50 report_log 8 -551 report/log:viewtoday read 50 report_log 8 -552 report/loglive:view read 50 report_loglive 8 -553 report/outline:view read 50 report_outline 8 -554 report/outline:viewuserreport read 50 report_outline 8 -555 report/participation:view read 50 report_participation 8 -556 report/performance:view read 10 report_performance 2 -557 report/progress:view read 50 report_progress 8 -558 report/questioninstances:view read 10 report_questioninstances 0 -559 report/security:view read 10 report_security 2 -560 report/stats:view read 50 report_stats 8 -561 report/status:view read 10 report_status 2 -562 report/usersessions:manageownsessions write 30 report_usersessions 0 -563 gradeexport/ods:view read 50 gradeexport_ods 8 -564 gradeexport/ods:publish read 50 gradeexport_ods 8 -565 gradeexport/txt:view read 50 gradeexport_txt 8 -566 gradeexport/txt:publish read 50 gradeexport_txt 8 -567 gradeexport/xls:view read 50 gradeexport_xls 8 -568 gradeexport/xls:publish read 50 gradeexport_xls 8 -569 gradeexport/xml:view read 50 gradeexport_xml 8 -570 gradeexport/xml:publish read 50 gradeexport_xml 8 -571 gradeimport/csv:view write 50 gradeimport_csv 0 -572 gradeimport/direct:view write 50 gradeimport_direct 0 -573 gradeimport/xml:view write 50 gradeimport_xml 0 -574 gradeimport/xml:publish write 50 gradeimport_xml 0 -575 gradereport/grader:view read 50 gradereport_grader 8 -576 gradereport/history:view read 50 gradereport_history 8 -577 gradereport/outcomes:view read 50 gradereport_outcomes 8 -578 gradereport/overview:view read 50 gradereport_overview 8 -579 gradereport/singleview:view read 50 gradereport_singleview 8 -580 gradereport/user:view read 50 gradereport_user 8 -581 webservice/rest:use read 50 webservice_rest 0 -582 webservice/soap:use read 50 webservice_soap 0 -583 webservice/xmlrpc:use read 50 webservice_xmlrpc 0 -584 repository/areafiles:view read 70 repository_areafiles 0 -585 repository/boxnet:view read 70 repository_boxnet 0 -586 repository/contentbank:view read 70 repository_contentbank 0 -587 repository/contentbank:accesscoursecontent read 50 repository_contentbank 0 -588 repository/contentbank:accesscoursecategorycontent read 40 repository_contentbank 0 -589 repository/contentbank:accessgeneralcontent read 40 repository_contentbank 0 -590 repository/coursefiles:view read 70 repository_coursefiles 0 -591 repository/dropbox:view read 70 repository_dropbox 0 -592 repository/equella:view read 70 repository_equella 0 -593 repository/filesystem:view read 70 repository_filesystem 0 -594 repository/flickr:view read 70 repository_flickr 0 -595 repository/flickr_public:view read 70 repository_flickr_public 0 -596 repository/googledocs:view read 70 repository_googledocs 0 -597 repository/local:view read 70 repository_local 0 -598 repository/merlot:view read 70 repository_merlot 0 -599 repository/nextcloud:view read 70 repository_nextcloud 0 -600 repository/onedrive:view read 70 repository_onedrive 0 -601 repository/picasa:view read 70 repository_picasa 0 -602 repository/recent:view read 70 repository_recent 0 -603 repository/s3:view read 70 repository_s3 0 -604 repository/skydrive:view read 70 repository_skydrive 0 -605 repository/upload:view read 70 repository_upload 0 -606 repository/url:view read 70 repository_url 0 -607 repository/user:view read 70 repository_user 0 -608 repository/webdav:view read 70 repository_webdav 0 -609 repository/wikimedia:view read 70 repository_wikimedia 0 -610 repository/youtube:view read 70 repository_youtube 0 -611 tool/customlang:view read 10 tool_customlang 2 -612 tool/customlang:edit write 10 tool_customlang 6 -613 tool/dataprivacy:managedatarequests write 10 tool_dataprivacy 60 -614 tool/dataprivacy:requestdeleteforotheruser write 10 tool_dataprivacy 60 -615 tool/dataprivacy:managedataregistry write 10 tool_dataprivacy 60 -616 tool/dataprivacy:makedatarequestsforchildren write 30 tool_dataprivacy 24 -617 tool/dataprivacy:makedatadeletionrequestsforchildren write 30 tool_dataprivacy 24 -618 tool/dataprivacy:downloadownrequest read 30 tool_dataprivacy 0 -619 tool/dataprivacy:downloadallrequests read 30 tool_dataprivacy 8 -620 tool/dataprivacy:requestdelete write 30 tool_dataprivacy 32 -621 tool/lpmigrate:frameworksmigrate write 10 tool_lpmigrate 0 -622 tool/monitor:subscribe read 50 tool_monitor 8 -623 tool/monitor:managerules write 50 tool_monitor 4 -624 tool/monitor:managetool write 10 tool_monitor 4 -625 tool/policy:accept write 10 tool_policy 0 -626 tool/policy:acceptbehalf write 30 tool_policy 8 -627 tool/policy:managedocs write 10 tool_policy 0 -628 tool/policy:viewacceptances read 10 tool_policy 0 -629 tool/recyclebin:deleteitems write 50 tool_recyclebin 32 -630 tool/recyclebin:restoreitems write 50 tool_recyclebin 0 -631 tool/recyclebin:viewitems read 50 tool_recyclebin 0 -632 tool/uploaduser:uploaduserpictures write 10 tool_uploaduser 16 -633 tool/usertours:managetours write 10 tool_usertours 4 -634 contenttype/h5p:access read 50 contenttype_h5p 0 -635 contenttype/h5p:upload write 50 contenttype_h5p 16 -636 contenttype/h5p:useeditor write 50 contenttype_h5p 16 -637 booktool/exportimscp:export read 70 booktool_exportimscp 0 -638 booktool/importhtml:import write 70 booktool_importhtml 4 -639 booktool/print:print read 70 booktool_print 0 -640 forumreport/summary:view read 70 forumreport_summary 0 -641 forumreport/summary:viewall read 70 forumreport_summary 8 -642 quiz/grading:viewstudentnames read 70 quiz_grading 0 -643 quiz/grading:viewidnumber read 70 quiz_grading 0 -644 quiz/statistics:view read 70 quiz_statistics 0 -645 quizaccess/seb:managetemplates write 10 quizaccess_seb 0 -646 quizaccess/seb:bypassseb read 70 quizaccess_seb 0 -647 quizaccess/seb:manage_seb_requiresafeexambrowser write 70 quizaccess_seb 0 -648 quizaccess/seb:manage_seb_templateid read 70 quizaccess_seb 0 -649 quizaccess/seb:manage_filemanager_sebconfigfile write 70 quizaccess_seb 0 -650 quizaccess/seb:manage_seb_showsebdownloadlink write 70 quizaccess_seb 0 -651 quizaccess/seb:manage_seb_allowedbrowserexamkeys write 70 quizaccess_seb 0 -652 quizaccess/seb:manage_seb_linkquitseb write 70 quizaccess_seb 0 -653 quizaccess/seb:manage_seb_userconfirmquit write 70 quizaccess_seb 0 -654 quizaccess/seb:manage_seb_allowuserquitseb write 70 quizaccess_seb 0 -655 quizaccess/seb:manage_seb_quitpassword write 70 quizaccess_seb 0 -656 quizaccess/seb:manage_seb_allowreloadinexam write 70 quizaccess_seb 0 -657 quizaccess/seb:manage_seb_showsebtaskbar write 70 quizaccess_seb 0 -658 quizaccess/seb:manage_seb_showreloadbutton write 70 quizaccess_seb 0 -659 quizaccess/seb:manage_seb_showtime write 70 quizaccess_seb 0 -660 quizaccess/seb:manage_seb_showkeyboardlayout write 70 quizaccess_seb 0 -661 quizaccess/seb:manage_seb_showwificontrol write 70 quizaccess_seb 0 -662 quizaccess/seb:manage_seb_enableaudiocontrol write 70 quizaccess_seb 0 -663 quizaccess/seb:manage_seb_muteonstartup write 70 quizaccess_seb 0 -664 quizaccess/seb:manage_seb_allowspellchecking write 70 quizaccess_seb 0 -665 quizaccess/seb:manage_seb_activateurlfiltering write 70 quizaccess_seb 0 -666 quizaccess/seb:manage_seb_filterembeddedcontent write 70 quizaccess_seb 0 -667 quizaccess/seb:manage_seb_expressionsallowed write 70 quizaccess_seb 0 -668 quizaccess/seb:manage_seb_regexallowed write 70 quizaccess_seb 0 -669 quizaccess/seb:manage_seb_expressionsblocked write 70 quizaccess_seb 0 -670 quizaccess/seb:manage_seb_regexblocked write 70 quizaccess_seb 0 -671 atto/h5p:addembed write 70 atto_h5p 0 -672 atto/recordrtc:recordaudio write 70 atto_recordrtc 0 -673 atto/recordrtc:recordvideo write 70 atto_recordrtc 0 +7 moodle/site:senderrormessage write 10 moodle 16 +8 moodle/site:deleteownmessage write 10 moodle 0 +9 moodle/site:approvecourse write 40 moodle 4 +10 moodle/backup:backupcourse write 50 moodle 28 +11 moodle/backup:backupsection write 50 moodle 28 +12 moodle/backup:backupactivity write 70 moodle 28 +13 moodle/backup:backuptargetimport read 50 moodle 28 +14 moodle/backup:downloadfile write 50 moodle 28 +15 moodle/backup:configure write 50 moodle 28 +16 moodle/backup:userinfo read 50 moodle 8 +17 moodle/backup:anonymise read 50 moodle 8 +18 moodle/restore:restorecourse write 50 moodle 28 +19 moodle/restore:restoresection write 50 moodle 28 +20 moodle/restore:restoreactivity write 50 moodle 28 +21 moodle/restore:viewautomatedfilearea write 50 moodle 28 +22 moodle/restore:restoretargetimport write 50 moodle 28 +23 moodle/restore:uploadfile write 50 moodle 28 +24 moodle/restore:configure write 50 moodle 28 +25 moodle/restore:rolldates write 50 moodle 0 +26 moodle/restore:userinfo write 50 moodle 30 +27 moodle/restore:createuser write 10 moodle 24 +28 moodle/site:manageblocks write 80 moodle 20 +29 moodle/site:accessallgroups read 70 moodle 0 +30 moodle/site:viewanonymousevents read 70 moodle 8 +31 moodle/site:viewfullnames read 70 moodle 0 +32 moodle/site:viewuseridentity read 70 moodle 0 +33 moodle/site:viewreports read 50 moodle 8 +34 moodle/site:trustcontent write 70 moodle 4 +35 moodle/site:uploadusers write 10 moodle 24 +36 moodle/filter:manage write 50 moodle 0 +37 moodle/user:create write 10 moodle 24 +38 moodle/user:delete write 10 moodle 40 +39 moodle/user:update write 10 moodle 24 +40 moodle/user:viewdetails read 50 moodle 0 +41 moodle/user:viewalldetails read 30 moodle 8 +42 moodle/user:viewlastip read 30 moodle 8 +43 moodle/user:viewhiddendetails read 50 moodle 8 +44 moodle/user:loginas write 50 moodle 30 +45 moodle/user:managesyspages write 10 moodle 0 +46 moodle/user:manageblocks write 30 moodle 0 +47 moodle/user:manageownblocks write 10 moodle 0 +48 moodle/user:manageownfiles write 10 moodle 0 +49 moodle/user:ignoreuserquota write 10 moodle 0 +50 moodle/my:configsyspages write 10 moodle 0 +51 moodle/role:assign write 50 moodle 28 +52 moodle/role:review read 50 moodle 8 +53 moodle/role:override write 50 moodle 28 +54 moodle/role:safeoverride write 50 moodle 16 +55 moodle/role:manage write 10 moodle 28 +56 moodle/role:switchroles read 50 moodle 12 +57 moodle/category:manage write 40 moodle 4 +58 moodle/category:viewcourselist read 40 moodle 0 +59 moodle/category:viewhiddencategories read 40 moodle 0 +60 moodle/cohort:manage write 40 moodle 0 +61 moodle/cohort:assign write 40 moodle 0 +62 moodle/cohort:view read 50 moodle 0 +63 moodle/course:create write 40 moodle 4 +64 moodle/course:creategroupconversations write 50 moodle 4 +65 moodle/course:request write 40 moodle 0 +66 moodle/course:delete write 50 moodle 32 +67 moodle/course:update write 50 moodle 4 +68 moodle/course:view read 50 moodle 0 +69 moodle/course:enrolreview read 50 moodle 8 +70 moodle/course:enrolconfig write 50 moodle 8 +71 moodle/course:reviewotherusers read 50 moodle 0 +72 moodle/course:bulkmessaging write 50 moodle 16 +73 moodle/course:viewhiddenuserfields read 50 moodle 8 +74 moodle/course:viewhiddencourses read 50 moodle 0 +75 moodle/course:visibility write 50 moodle 0 +76 moodle/course:managefiles write 50 moodle 4 +77 moodle/course:ignoreavailabilityrestrictions read 70 moodle 0 +78 moodle/course:ignorefilesizelimits write 50 moodle 0 +79 moodle/course:manageactivities write 70 moodle 4 +80 moodle/course:activityvisibility write 70 moodle 0 +81 moodle/course:viewhiddenactivities read 70 moodle 0 +82 moodle/course:viewparticipants read 50 moodle 0 +83 moodle/course:changefullname write 50 moodle 4 +84 moodle/course:changeshortname write 50 moodle 4 +171 moodle/rating:viewall read 50 moodle 8 +85 moodle/course:changelockedcustomfields write 50 moodle 16 +86 moodle/course:configurecustomfields write 10 moodle 16 +87 moodle/course:renameroles write 50 moodle 0 +88 moodle/course:changeidnumber write 50 moodle 4 +89 moodle/course:changecategory write 50 moodle 4 +90 moodle/course:changesummary write 50 moodle 4 +91 moodle/course:setforcedlanguage write 50 moodle 0 +92 moodle/site:viewparticipants read 10 moodle 0 +93 moodle/course:isincompletionreports read 50 moodle 0 +94 moodle/course:viewscales read 50 moodle 0 +95 moodle/course:managescales write 50 moodle 0 +96 moodle/course:managegroups write 50 moodle 4 +97 moodle/course:reset write 50 moodle 32 +98 moodle/course:viewsuspendedusers read 50 moodle 0 +99 moodle/course:tag write 50 moodle 16 +100 moodle/blog:view read 10 moodle 0 +101 moodle/blog:search read 10 moodle 0 +102 moodle/blog:viewdrafts read 10 moodle 8 +103 moodle/blog:create write 10 moodle 16 +104 moodle/blog:manageentries write 10 moodle 16 +105 moodle/blog:manageexternal write 10 moodle 16 +106 moodle/calendar:manageownentries write 50 moodle 16 +107 moodle/calendar:managegroupentries write 50 moodle 16 +108 moodle/calendar:manageentries write 50 moodle 16 +109 moodle/user:editprofile write 30 moodle 24 +110 moodle/user:editownprofile write 10 moodle 16 +111 moodle/user:changeownpassword write 10 moodle 0 +112 moodle/user:readuserposts read 30 moodle 0 +113 moodle/user:readuserblogs read 30 moodle 0 +114 moodle/user:viewuseractivitiesreport read 30 moodle 8 +115 moodle/user:editmessageprofile write 30 moodle 16 +116 moodle/user:editownmessageprofile write 10 moodle 0 +117 moodle/question:managecategory write 50 moodle 20 +118 moodle/question:add write 50 moodle 20 +119 moodle/question:editmine write 50 moodle 20 +120 moodle/question:editall write 50 moodle 20 +121 moodle/question:viewmine read 50 moodle 0 +122 moodle/question:viewall read 50 moodle 0 +123 moodle/question:usemine read 50 moodle 0 +124 moodle/question:useall read 50 moodle 0 +125 moodle/question:movemine write 50 moodle 0 +126 moodle/question:moveall write 50 moodle 0 +127 moodle/question:config write 10 moodle 2 +128 moodle/question:flag write 50 moodle 0 +129 moodle/question:tagmine write 50 moodle 0 +130 moodle/question:tagall write 50 moodle 0 +131 moodle/site:doclinks read 10 moodle 0 +132 moodle/course:sectionvisibility write 50 moodle 0 +133 moodle/course:useremail write 50 moodle 0 +134 moodle/course:viewhiddensections read 50 moodle 0 +135 moodle/course:setcurrentsection write 50 moodle 0 +136 moodle/course:movesections write 50 moodle 0 +137 moodle/site:mnetlogintoremote read 10 moodle 0 +138 moodle/grade:viewall read 50 moodle 8 +139 moodle/grade:view read 50 moodle 0 +140 moodle/grade:viewhidden read 50 moodle 8 +141 moodle/grade:import write 50 moodle 12 +142 moodle/grade:export read 50 moodle 8 +143 moodle/grade:manage write 50 moodle 12 +144 moodle/grade:edit write 50 moodle 12 +145 moodle/grade:managegradingforms write 50 moodle 12 +146 moodle/grade:sharegradingforms write 10 moodle 4 +147 moodle/grade:managesharedforms write 10 moodle 4 +148 moodle/grade:manageoutcomes write 50 moodle 0 +149 moodle/grade:manageletters write 50 moodle 0 +150 moodle/grade:hide write 50 moodle 0 +151 moodle/grade:lock write 50 moodle 0 +152 moodle/grade:unlock write 50 moodle 0 +153 moodle/my:manageblocks write 10 moodle 0 +154 moodle/notes:view read 50 moodle 0 +155 moodle/notes:manage write 50 moodle 16 +156 moodle/tag:manage write 10 moodle 16 +157 moodle/tag:edit write 10 moodle 16 +158 moodle/tag:flag write 10 moodle 16 +159 moodle/tag:editblocks write 10 moodle 0 +160 moodle/block:view read 80 moodle 0 +161 moodle/block:edit write 80 moodle 20 +162 moodle/portfolio:export read 10 moodle 0 +163 moodle/comment:view read 50 moodle 0 +164 moodle/comment:post write 50 moodle 24 +165 moodle/comment:delete write 50 moodle 32 +166 moodle/webservice:createtoken write 10 moodle 62 +167 moodle/webservice:managealltokens write 10 moodle 42 +168 moodle/webservice:createmobiletoken write 10 moodle 24 +169 moodle/rating:view read 50 moodle 0 +170 moodle/rating:viewany read 50 moodle 8 +172 moodle/rating:rate write 50 moodle 0 +173 moodle/course:markcomplete write 50 moodle 0 +174 moodle/course:overridecompletion write 50 moodle 0 +175 moodle/badges:manageglobalsettings write 10 moodle 34 +176 moodle/badges:viewbadges read 50 moodle 0 +177 moodle/badges:manageownbadges write 30 moodle 0 +178 moodle/badges:viewotherbadges read 30 moodle 0 +179 moodle/badges:earnbadge write 50 moodle 0 +180 moodle/badges:createbadge write 50 moodle 16 +181 moodle/badges:deletebadge write 50 moodle 32 +182 moodle/badges:configuredetails write 50 moodle 16 +183 moodle/badges:configurecriteria write 50 moodle 4 +184 moodle/badges:configuremessages write 50 moodle 16 +185 moodle/badges:awardbadge write 50 moodle 16 +186 moodle/badges:revokebadge write 50 moodle 16 +187 moodle/badges:viewawarded read 50 moodle 8 +188 moodle/site:forcelanguage read 10 moodle 0 +189 moodle/search:query read 10 moodle 0 +190 moodle/competency:competencymanage write 40 moodle 0 +191 moodle/competency:competencyview read 40 moodle 0 +192 moodle/competency:competencygrade write 50 moodle 0 +193 moodle/competency:coursecompetencymanage write 50 moodle 0 +194 moodle/competency:coursecompetencyconfigure write 70 moodle 0 +195 moodle/competency:coursecompetencygradable read 50 moodle 0 +196 moodle/competency:coursecompetencyview read 50 moodle 0 +197 moodle/competency:evidencedelete write 30 moodle 0 +198 moodle/competency:planmanage write 30 moodle 0 +199 moodle/competency:planmanagedraft write 30 moodle 0 +200 moodle/competency:planmanageown write 30 moodle 0 +201 moodle/competency:planmanageowndraft write 30 moodle 0 +202 moodle/competency:planview read 30 moodle 0 +203 moodle/competency:planviewdraft read 30 moodle 0 +204 moodle/competency:planviewown read 30 moodle 0 +205 moodle/competency:planviewowndraft read 30 moodle 0 +206 moodle/competency:planrequestreview write 30 moodle 0 +207 moodle/competency:planrequestreviewown write 30 moodle 0 +208 moodle/competency:planreview write 30 moodle 0 +209 moodle/competency:plancomment write 30 moodle 0 +210 moodle/competency:plancommentown write 30 moodle 0 +211 moodle/competency:usercompetencyview read 30 moodle 0 +212 moodle/competency:usercompetencyrequestreview write 30 moodle 0 +213 moodle/competency:usercompetencyrequestreviewown write 30 moodle 0 +214 moodle/competency:usercompetencyreview write 30 moodle 0 +215 moodle/competency:usercompetencycomment write 30 moodle 0 +216 moodle/competency:usercompetencycommentown write 30 moodle 0 +217 moodle/competency:templatemanage write 40 moodle 0 +218 moodle/analytics:listinsights read 50 moodle 8 +219 moodle/analytics:managemodels write 10 moodle 2 +220 moodle/competency:templateview read 40 moodle 0 +221 moodle/competency:userevidencemanage write 30 moodle 0 +222 moodle/competency:userevidencemanageown write 30 moodle 0 +223 moodle/competency:userevidenceview read 30 moodle 0 +224 moodle/site:maintenanceaccess write 10 moodle 0 +225 moodle/site:messageanyuser write 10 moodle 16 +226 moodle/site:managecontextlocks write 70 moodle 0 +227 moodle/course:togglecompletion write 70 moodle 0 +228 moodle/analytics:listowninsights read 10 moodle 0 +229 moodle/h5p:setdisplayoptions write 70 moodle 0 +230 moodle/h5p:deploy write 70 moodle 4 +231 moodle/h5p:updatelibraries write 70 moodle 4 +232 moodle/course:recommendactivity write 10 moodle 0 +233 moodle/contentbank:access read 50 moodle 0 +234 moodle/contentbank:upload write 50 moodle 16 +235 moodle/contentbank:deleteanycontent write 50 moodle 32 +236 moodle/contentbank:deleteowncontent write 50 moodle 0 +237 moodle/contentbank:manageanycontent write 50 moodle 32 +238 moodle/contentbank:manageowncontent write 50 moodle 0 +239 moodle/contentbank:useeditor write 50 moodle 16 +240 moodle/contentbank:downloadcontent read 50 moodle 0 +241 moodle/course:downloadcoursecontent read 50 moodle 0 +242 moodle/course:configuredownloadcontent write 50 moodle 0 +243 moodle/payment:manageaccounts write 50 moodle 42 +244 moodle/payment:viewpayments read 50 moodle 8 +245 mod/assign:view read 70 mod_assign 0 +246 mod/assign:submit write 70 mod_assign 0 +247 mod/assign:grade write 70 mod_assign 4 +248 mod/assign:exportownsubmission read 70 mod_assign 0 +249 mod/assign:addinstance write 50 mod_assign 4 +250 mod/assign:editothersubmission write 70 mod_assign 41 +251 mod/assign:grantextension write 70 mod_assign 0 +252 mod/assign:revealidentities write 70 mod_assign 0 +253 mod/assign:reviewgrades write 70 mod_assign 0 +254 mod/assign:releasegrades write 70 mod_assign 0 +255 mod/assign:managegrades write 70 mod_assign 0 +256 mod/assign:manageallocations write 70 mod_assign 0 +257 mod/assign:viewgrades read 70 mod_assign 0 +258 mod/assign:viewblinddetails write 70 mod_assign 8 +259 mod/assign:receivegradernotifications read 70 mod_assign 0 +260 mod/assign:manageoverrides write 70 mod_assign 0 +261 mod/assign:showhiddengrader read 70 mod_assign 0 +262 mod/assignment:view read 70 mod_assignment 0 +263 mod/assignment:addinstance write 50 mod_assignment 4 +264 mod/assignment:submit write 70 mod_assignment 0 +265 mod/assignment:grade write 70 mod_assignment 4 +266 mod/assignment:exportownsubmission read 70 mod_assignment 0 +267 mod/book:addinstance write 50 mod_book 4 +268 mod/book:read read 70 mod_book 0 +269 mod/book:viewhiddenchapters read 70 mod_book 0 +270 mod/book:edit write 70 mod_book 4 +271 mod/chat:addinstance write 50 mod_chat 4 +272 mod/chat:chat write 70 mod_chat 16 +273 mod/chat:readlog read 70 mod_chat 0 +274 mod/chat:deletelog write 70 mod_chat 0 +275 mod/chat:exportparticipatedsession read 70 mod_chat 8 +276 mod/chat:exportsession read 70 mod_chat 8 +277 mod/chat:view read 70 mod_chat 0 +278 mod/choice:addinstance write 50 mod_choice 4 +279 mod/choice:choose write 70 mod_choice 0 +280 mod/choice:readresponses read 70 mod_choice 0 +281 mod/choice:deleteresponses write 70 mod_choice 0 +282 mod/choice:downloadresponses read 70 mod_choice 0 +283 mod/choice:view read 70 mod_choice 0 +284 mod/data:addinstance write 50 mod_data 4 +285 mod/data:viewentry read 70 mod_data 0 +286 mod/data:writeentry write 70 mod_data 16 +287 mod/data:comment write 70 mod_data 16 +288 mod/data:rate write 70 mod_data 0 +289 mod/data:viewrating read 70 mod_data 0 +290 mod/data:viewanyrating read 70 mod_data 8 +291 mod/data:viewallratings read 70 mod_data 8 +292 mod/data:approve write 70 mod_data 16 +293 mod/data:manageentries write 70 mod_data 16 +294 mod/data:managecomments write 70 mod_data 16 +295 mod/data:managetemplates write 70 mod_data 20 +296 mod/data:viewalluserpresets read 70 mod_data 0 +297 mod/data:manageuserpresets write 70 mod_data 20 +298 mod/data:exportentry read 70 mod_data 8 +299 mod/data:exportownentry read 70 mod_data 0 +300 mod/data:exportallentries read 70 mod_data 8 +301 mod/data:exportuserinfo read 70 mod_data 8 +302 mod/data:view read 70 mod_data 0 +303 mod/feedback:addinstance write 50 mod_feedback 4 +304 mod/feedback:view read 70 mod_feedback 0 +305 mod/feedback:complete write 70 mod_feedback 16 +306 mod/feedback:viewanalysepage read 70 mod_feedback 8 +307 mod/feedback:deletesubmissions write 70 mod_feedback 0 +308 mod/feedback:mapcourse write 70 mod_feedback 0 +309 mod/feedback:edititems write 70 mod_feedback 20 +310 mod/feedback:createprivatetemplate write 70 mod_feedback 16 +311 mod/feedback:createpublictemplate write 70 mod_feedback 16 +312 mod/feedback:deletetemplate write 70 mod_feedback 0 +313 mod/feedback:viewreports read 70 mod_feedback 8 +314 mod/feedback:receivemail read 70 mod_feedback 8 +315 mod/folder:addinstance write 50 mod_folder 4 +316 mod/folder:view read 70 mod_folder 0 +317 mod/folder:managefiles write 70 mod_folder 20 +318 mod/forum:addinstance write 50 mod_forum 4 +319 mod/forum:viewdiscussion read 70 mod_forum 0 +320 mod/forum:viewhiddentimedposts read 70 mod_forum 0 +321 mod/forum:startdiscussion write 70 mod_forum 16 +322 mod/forum:replypost write 70 mod_forum 16 +323 mod/forum:addnews write 70 mod_forum 16 +324 mod/forum:replynews write 70 mod_forum 16 +325 mod/forum:viewrating read 70 mod_forum 0 +326 mod/forum:viewanyrating read 70 mod_forum 8 +327 mod/forum:viewallratings read 70 mod_forum 8 +328 mod/forum:rate write 70 mod_forum 0 +329 mod/forum:postprivatereply write 70 mod_forum 0 +330 mod/forum:readprivatereplies read 70 mod_forum 0 +331 mod/forum:createattachment write 70 mod_forum 16 +332 mod/forum:deleteownpost write 70 mod_forum 0 +333 mod/forum:deleteanypost write 70 mod_forum 0 +334 mod/forum:splitdiscussions write 70 mod_forum 0 +335 mod/forum:movediscussions write 70 mod_forum 0 +336 mod/forum:pindiscussions write 70 mod_forum 0 +337 mod/forum:editanypost write 70 mod_forum 16 +338 mod/forum:viewqandawithoutposting read 70 mod_forum 0 +339 mod/forum:viewsubscribers read 70 mod_forum 0 +340 mod/forum:managesubscriptions write 70 mod_forum 16 +341 mod/forum:postwithoutthrottling write 70 mod_forum 16 +342 mod/forum:exportdiscussion read 70 mod_forum 8 +343 mod/forum:exportforum read 70 mod_forum 8 +344 mod/forum:exportpost read 70 mod_forum 8 +345 mod/forum:exportownpost read 70 mod_forum 8 +346 mod/forum:addquestion write 70 mod_forum 16 +347 mod/forum:allowforcesubscribe read 70 mod_forum 0 +348 mod/forum:canposttomygroups write 70 mod_forum 0 +349 mod/forum:canoverridediscussionlock write 70 mod_forum 0 +350 mod/forum:canoverridecutoff write 70 mod_forum 0 +351 mod/forum:cantogglefavourite write 70 mod_forum 0 +352 mod/forum:grade write 70 mod_forum 0 +353 mod/glossary:addinstance write 50 mod_glossary 4 +354 mod/glossary:view read 70 mod_glossary 0 +355 mod/glossary:write write 70 mod_glossary 16 +356 mod/glossary:manageentries write 70 mod_glossary 16 +357 mod/glossary:managecategories write 70 mod_glossary 16 +358 mod/glossary:comment write 70 mod_glossary 16 +359 mod/glossary:managecomments write 70 mod_glossary 16 +360 mod/glossary:import write 70 mod_glossary 16 +361 mod/glossary:export read 70 mod_glossary 0 +362 mod/glossary:approve write 70 mod_glossary 16 +363 mod/glossary:rate write 70 mod_glossary 0 +364 mod/glossary:viewrating read 70 mod_glossary 0 +365 mod/glossary:viewanyrating read 70 mod_glossary 8 +366 mod/glossary:viewallratings read 70 mod_glossary 8 +367 mod/glossary:exportentry read 70 mod_glossary 8 +368 mod/glossary:exportownentry read 70 mod_glossary 0 +369 mod/h5pactivity:view read 70 mod_h5pactivity 0 +370 mod/h5pactivity:addinstance write 50 mod_h5pactivity 0 +371 mod/h5pactivity:submit write 70 mod_h5pactivity 0 +372 mod/h5pactivity:reviewattempts read 70 mod_h5pactivity 0 +373 mod/imscp:view read 70 mod_imscp 0 +374 mod/imscp:addinstance write 50 mod_imscp 4 +375 mod/label:addinstance write 50 mod_label 4 +376 mod/label:view read 70 mod_label 0 +377 mod/lesson:addinstance write 50 mod_lesson 4 +378 mod/lesson:edit write 70 mod_lesson 4 +379 mod/lesson:grade write 70 mod_lesson 20 +380 mod/lesson:viewreports read 70 mod_lesson 8 +381 mod/lesson:manage write 70 mod_lesson 0 +382 mod/lesson:manageoverrides write 70 mod_lesson 0 +383 mod/lesson:view read 70 mod_lesson 0 +384 mod/lti:view read 70 mod_lti 0 +385 mod/lti:addinstance write 50 mod_lti 4 +386 mod/lti:manage write 70 mod_lti 8 +387 mod/lti:admin write 70 mod_lti 8 +388 mod/lti:addcoursetool write 50 mod_lti 0 +389 mod/lti:addpreconfiguredinstance write 50 mod_lti 0 +390 mod/lti:addmanualinstance write 50 mod_lti 0 +391 mod/lti:requesttooladd write 50 mod_lti 0 +392 mod/page:view read 70 mod_page 0 +393 mod/page:addinstance write 50 mod_page 4 +394 mod/quiz:view read 70 mod_quiz 0 +395 mod/quiz:addinstance write 50 mod_quiz 4 +396 mod/quiz:attempt write 70 mod_quiz 16 +397 mod/quiz:reviewmyattempts read 70 mod_quiz 0 +398 mod/quiz:manage write 70 mod_quiz 16 +399 mod/quiz:manageoverrides write 70 mod_quiz 0 +400 mod/quiz:preview write 70 mod_quiz 0 +401 mod/quiz:grade write 70 mod_quiz 20 +402 mod/quiz:regrade write 70 mod_quiz 16 +403 mod/quiz:viewreports read 70 mod_quiz 8 +404 mod/quiz:deleteattempts write 70 mod_quiz 32 +405 mod/quiz:ignoretimelimits read 70 mod_quiz 0 +406 mod/quiz:emailconfirmsubmission read 70 mod_quiz 0 +407 mod/quiz:emailnotifysubmission read 70 mod_quiz 0 +408 mod/quiz:emailwarnoverdue read 70 mod_quiz 0 +409 mod/resource:view read 70 mod_resource 0 +410 mod/resource:addinstance write 50 mod_resource 4 +411 mod/scorm:addinstance write 50 mod_scorm 4 +412 mod/scorm:viewreport read 70 mod_scorm 0 +413 mod/scorm:skipview read 70 mod_scorm 0 +414 mod/scorm:savetrack write 70 mod_scorm 0 +415 mod/scorm:viewscores read 70 mod_scorm 0 +416 mod/scorm:deleteresponses write 70 mod_scorm 0 +417 mod/scorm:deleteownresponses write 70 mod_scorm 0 +418 mod/survey:addinstance write 50 mod_survey 4 +419 mod/survey:participate read 70 mod_survey 0 +420 mod/survey:readresponses read 70 mod_survey 0 +421 mod/survey:download read 70 mod_survey 0 +422 mod/url:view read 70 mod_url 0 +423 mod/url:addinstance write 50 mod_url 4 +424 mod/wiki:addinstance write 50 mod_wiki 4 +425 mod/wiki:viewpage read 70 mod_wiki 0 +426 mod/wiki:editpage write 70 mod_wiki 16 +427 mod/wiki:createpage write 70 mod_wiki 16 +428 mod/wiki:viewcomment read 70 mod_wiki 0 +429 mod/wiki:editcomment write 70 mod_wiki 16 +430 mod/wiki:managecomment write 70 mod_wiki 0 +431 mod/wiki:managefiles write 70 mod_wiki 0 +432 mod/wiki:overridelock write 70 mod_wiki 0 +433 mod/wiki:managewiki write 70 mod_wiki 0 +434 mod/workshop:view read 70 mod_workshop 0 +435 mod/workshop:addinstance write 50 mod_workshop 4 +436 mod/workshop:switchphase write 70 mod_workshop 0 +437 mod/workshop:editdimensions write 70 mod_workshop 4 +438 mod/workshop:submit write 70 mod_workshop 0 +439 mod/workshop:peerassess write 70 mod_workshop 0 +440 mod/workshop:manageexamples write 70 mod_workshop 0 +441 mod/workshop:allocate write 70 mod_workshop 0 +442 mod/workshop:publishsubmissions write 70 mod_workshop 0 +443 mod/workshop:viewauthornames read 70 mod_workshop 0 +444 mod/workshop:viewreviewernames read 70 mod_workshop 0 +445 mod/workshop:viewallsubmissions read 70 mod_workshop 0 +446 mod/workshop:viewpublishedsubmissions read 70 mod_workshop 0 +447 mod/workshop:viewauthorpublished read 70 mod_workshop 0 +448 mod/workshop:viewallassessments read 70 mod_workshop 0 +449 mod/workshop:overridegrades write 70 mod_workshop 0 +450 mod/workshop:ignoredeadlines write 70 mod_workshop 0 +451 mod/workshop:deletesubmissions write 70 mod_workshop 0 +452 mod/workshop:exportsubmissions read 70 mod_workshop 0 +453 auth/oauth2:managelinkedlogins write 30 auth_oauth2 0 +454 enrol/category:synchronised write 10 enrol_category 0 +455 enrol/category:config write 50 enrol_category 0 +456 enrol/cohort:config write 50 enrol_cohort 0 +457 enrol/cohort:unenrol write 50 enrol_cohort 0 +458 enrol/database:unenrol write 50 enrol_database 0 +459 enrol/database:config write 50 enrol_database 0 +460 enrol/fee:config write 50 enrol_fee 0 +461 enrol/fee:manage write 50 enrol_fee 0 +462 enrol/fee:unenrol write 50 enrol_fee 0 +463 enrol/fee:unenrolself write 50 enrol_fee 0 +464 enrol/flatfile:manage write 50 enrol_flatfile 0 +465 enrol/flatfile:unenrol write 50 enrol_flatfile 0 +466 enrol/guest:config write 50 enrol_guest 0 +467 enrol/imsenterprise:config write 50 enrol_imsenterprise 0 +468 enrol/ldap:manage write 50 enrol_ldap 0 +469 enrol/lti:config write 50 enrol_lti 0 +470 enrol/lti:unenrol write 50 enrol_lti 0 +471 enrol/manual:config write 50 enrol_manual 0 +472 enrol/manual:enrol write 50 enrol_manual 0 +473 enrol/manual:manage write 50 enrol_manual 0 +474 enrol/manual:unenrol write 50 enrol_manual 0 +475 enrol/manual:unenrolself write 50 enrol_manual 0 +476 enrol/meta:config write 50 enrol_meta 0 +477 enrol/meta:selectaslinked read 50 enrol_meta 0 +478 enrol/meta:unenrol write 50 enrol_meta 0 +479 enrol/mnet:config write 50 enrol_mnet 0 +480 enrol/paypal:config write 50 enrol_paypal 0 +481 enrol/paypal:manage write 50 enrol_paypal 0 +482 enrol/paypal:unenrol write 50 enrol_paypal 0 +483 enrol/paypal:unenrolself write 50 enrol_paypal 0 +484 enrol/self:config write 50 enrol_self 0 +485 enrol/self:manage write 50 enrol_self 0 +486 enrol/self:holdkey write 50 enrol_self 0 +487 enrol/self:unenrolself write 50 enrol_self 0 +488 enrol/self:unenrol write 50 enrol_self 0 +489 enrol/self:enrolself write 50 enrol_self 0 +490 message/airnotifier:managedevice write 10 message_airnotifier 0 +491 block/activity_modules:addinstance write 80 block_activity_modules 20 +492 block/activity_results:addinstance write 80 block_activity_results 20 +493 block/admin_bookmarks:myaddinstance write 10 block_admin_bookmarks 0 +494 block/admin_bookmarks:addinstance write 80 block_admin_bookmarks 20 +495 block/badges:addinstance read 80 block_badges 0 +496 block/badges:myaddinstance read 10 block_badges 8 +497 block/blog_menu:addinstance write 80 block_blog_menu 20 +498 block/blog_recent:addinstance write 80 block_blog_recent 20 +499 block/blog_tags:addinstance write 80 block_blog_tags 20 +500 block/calendar_month:myaddinstance write 10 block_calendar_month 0 +501 block/calendar_month:addinstance write 80 block_calendar_month 20 +502 block/calendar_upcoming:myaddinstance write 10 block_calendar_upcoming 0 +503 block/calendar_upcoming:addinstance write 80 block_calendar_upcoming 20 +504 block/comments:myaddinstance write 10 block_comments 0 +505 block/comments:addinstance write 80 block_comments 20 +506 block/completionstatus:addinstance write 80 block_completionstatus 20 +507 block/course_list:myaddinstance write 10 block_course_list 0 +508 block/course_list:addinstance write 80 block_course_list 20 +509 block/course_summary:addinstance write 80 block_course_summary 20 +510 block/feedback:addinstance write 80 block_feedback 20 +511 block/globalsearch:myaddinstance write 10 block_globalsearch 0 +512 block/globalsearch:addinstance write 80 block_globalsearch 0 +513 block/glossary_random:myaddinstance write 10 block_glossary_random 0 +514 block/glossary_random:addinstance write 80 block_glossary_random 20 +515 block/html:myaddinstance write 10 block_html 0 +516 block/html:addinstance write 80 block_html 20 +517 block/login:addinstance write 80 block_login 20 +518 block/lp:addinstance write 10 block_lp 0 +519 block/lp:myaddinstance write 10 block_lp 0 +520 block/mentees:myaddinstance write 10 block_mentees 0 +521 block/mentees:addinstance write 80 block_mentees 20 +522 block/mnet_hosts:myaddinstance write 10 block_mnet_hosts 0 +523 block/mnet_hosts:addinstance write 80 block_mnet_hosts 20 +524 block/myoverview:myaddinstance write 10 block_myoverview 0 +525 block/myprofile:myaddinstance write 10 block_myprofile 0 +526 block/myprofile:addinstance write 80 block_myprofile 20 +527 block/navigation:myaddinstance write 10 block_navigation 0 +528 block/navigation:addinstance write 80 block_navigation 20 +529 block/news_items:myaddinstance write 10 block_news_items 0 +530 block/news_items:addinstance write 80 block_news_items 20 +531 block/online_users:myaddinstance write 10 block_online_users 0 +532 block/online_users:addinstance write 80 block_online_users 20 +533 block/online_users:viewlist read 80 block_online_users 0 +534 block/private_files:myaddinstance write 10 block_private_files 0 +535 block/private_files:addinstance write 80 block_private_files 20 +536 block/quiz_results:addinstance write 80 block_quiz_results 20 +537 block/recent_activity:addinstance write 80 block_recent_activity 20 +538 block/recent_activity:viewaddupdatemodule read 50 block_recent_activity 0 +539 block/recent_activity:viewdeletemodule read 50 block_recent_activity 0 +540 block/recentlyaccessedcourses:myaddinstance write 10 block_recentlyaccessedcourses 0 +541 block/recentlyaccesseditems:myaddinstance write 10 block_recentlyaccesseditems 0 +542 block/rss_client:myaddinstance write 10 block_rss_client 0 +543 block/rss_client:addinstance write 80 block_rss_client 20 +544 block/rss_client:manageownfeeds write 80 block_rss_client 0 +545 block/rss_client:manageanyfeeds write 80 block_rss_client 16 +546 block/search_forums:addinstance write 80 block_search_forums 20 +547 block/section_links:addinstance write 80 block_section_links 20 +548 block/selfcompletion:addinstance write 80 block_selfcompletion 20 +549 block/settings:myaddinstance write 10 block_settings 0 +550 block/settings:addinstance write 80 block_settings 20 +551 block/site_main_menu:addinstance write 80 block_site_main_menu 20 +552 block/social_activities:addinstance write 80 block_social_activities 20 +553 block/starredcourses:myaddinstance write 10 block_starredcourses 0 +554 block/tag_flickr:addinstance write 80 block_tag_flickr 20 +555 block/tag_youtube:addinstance write 80 block_tag_youtube 20 +556 block/tags:myaddinstance write 10 block_tags 0 +557 block/tags:addinstance write 80 block_tags 20 +558 block/timeline:myaddinstance write 10 block_timeline 0 +559 report/completion:view read 50 report_completion 8 +560 report/courseoverview:view read 10 report_courseoverview 8 +561 report/log:view read 50 report_log 8 +562 report/log:viewtoday read 50 report_log 8 +563 report/loglive:view read 50 report_loglive 8 +564 report/outline:view read 50 report_outline 8 +565 report/outline:viewuserreport read 50 report_outline 8 +566 report/participation:view read 50 report_participation 8 +567 report/performance:view read 10 report_performance 2 +568 report/progress:view read 50 report_progress 8 +569 report/questioninstances:view read 10 report_questioninstances 0 +570 report/security:view read 10 report_security 2 +571 report/stats:view read 50 report_stats 8 +572 report/status:view read 10 report_status 2 +573 report/usersessions:manageownsessions write 30 report_usersessions 0 +574 gradeexport/ods:view read 50 gradeexport_ods 8 +575 gradeexport/ods:publish read 50 gradeexport_ods 8 +576 gradeexport/txt:view read 50 gradeexport_txt 8 +577 gradeexport/txt:publish read 50 gradeexport_txt 8 +578 gradeexport/xls:view read 50 gradeexport_xls 8 +579 gradeexport/xls:publish read 50 gradeexport_xls 8 +580 gradeexport/xml:view read 50 gradeexport_xml 8 +581 gradeexport/xml:publish read 50 gradeexport_xml 8 +582 gradeimport/csv:view write 50 gradeimport_csv 0 +583 gradeimport/direct:view write 50 gradeimport_direct 0 +584 gradeimport/xml:view write 50 gradeimport_xml 0 +585 gradeimport/xml:publish write 50 gradeimport_xml 0 +586 gradereport/grader:view read 50 gradereport_grader 8 +587 gradereport/history:view read 50 gradereport_history 8 +588 gradereport/outcomes:view read 50 gradereport_outcomes 8 +589 gradereport/overview:view read 50 gradereport_overview 8 +590 gradereport/singleview:view read 50 gradereport_singleview 8 +591 gradereport/user:view read 50 gradereport_user 8 +592 webservice/rest:use read 50 webservice_rest 0 +593 webservice/soap:use read 50 webservice_soap 0 +594 webservice/xmlrpc:use read 50 webservice_xmlrpc 0 +595 repository/areafiles:view read 70 repository_areafiles 0 +596 repository/boxnet:view read 70 repository_boxnet 0 +597 repository/contentbank:view read 70 repository_contentbank 0 +598 repository/contentbank:accesscoursecontent read 50 repository_contentbank 0 +599 repository/contentbank:accesscoursecategorycontent read 40 repository_contentbank 0 +600 repository/contentbank:accessgeneralcontent read 40 repository_contentbank 0 +601 repository/coursefiles:view read 70 repository_coursefiles 0 +602 repository/dropbox:view read 70 repository_dropbox 0 +603 repository/equella:view read 70 repository_equella 0 +604 repository/filesystem:view read 70 repository_filesystem 0 +605 repository/flickr:view read 70 repository_flickr 0 +606 repository/flickr_public:view read 70 repository_flickr_public 0 +607 repository/googledocs:view read 70 repository_googledocs 0 +608 repository/local:view read 70 repository_local 0 +609 repository/merlot:view read 70 repository_merlot 0 +610 repository/nextcloud:view read 70 repository_nextcloud 0 +611 repository/onedrive:view read 70 repository_onedrive 0 +612 repository/picasa:view read 70 repository_picasa 0 +613 repository/recent:view read 70 repository_recent 0 +614 repository/s3:view read 70 repository_s3 0 +615 repository/skydrive:view read 70 repository_skydrive 0 +616 repository/upload:view read 70 repository_upload 0 +617 repository/url:view read 70 repository_url 0 +618 repository/user:view read 70 repository_user 0 +619 repository/webdav:view read 70 repository_webdav 0 +620 repository/wikimedia:view read 70 repository_wikimedia 0 +621 repository/youtube:view read 70 repository_youtube 0 +622 tool/customlang:view read 10 tool_customlang 2 +623 tool/customlang:edit write 10 tool_customlang 6 +624 tool/customlang:export read 10 tool_customlang 2 +625 tool/dataprivacy:managedatarequests write 10 tool_dataprivacy 60 +626 tool/dataprivacy:requestdeleteforotheruser write 10 tool_dataprivacy 60 +627 tool/dataprivacy:managedataregistry write 10 tool_dataprivacy 60 +628 tool/dataprivacy:makedatarequestsforchildren write 30 tool_dataprivacy 24 +629 tool/dataprivacy:makedatadeletionrequestsforchildren write 30 tool_dataprivacy 24 +630 tool/dataprivacy:downloadownrequest read 30 tool_dataprivacy 0 +631 tool/dataprivacy:downloadallrequests read 30 tool_dataprivacy 8 +632 tool/dataprivacy:requestdelete write 30 tool_dataprivacy 32 +633 tool/lpmigrate:frameworksmigrate write 10 tool_lpmigrate 0 +634 tool/monitor:subscribe read 50 tool_monitor 8 +635 tool/monitor:managerules write 50 tool_monitor 4 +636 tool/monitor:managetool write 10 tool_monitor 4 +637 tool/policy:accept write 10 tool_policy 0 +638 tool/policy:acceptbehalf write 30 tool_policy 8 +639 tool/policy:managedocs write 10 tool_policy 0 +640 tool/policy:viewacceptances read 10 tool_policy 0 +641 tool/recyclebin:deleteitems write 50 tool_recyclebin 32 +642 tool/recyclebin:restoreitems write 50 tool_recyclebin 0 +643 tool/recyclebin:viewitems read 50 tool_recyclebin 0 +644 tool/uploaduser:uploaduserpictures write 10 tool_uploaduser 16 +645 tool/usertours:managetours write 10 tool_usertours 4 +646 contenttype/h5p:access read 50 contenttype_h5p 0 +647 contenttype/h5p:upload write 50 contenttype_h5p 16 +648 contenttype/h5p:useeditor write 50 contenttype_h5p 16 +649 booktool/exportimscp:export read 70 booktool_exportimscp 0 +650 booktool/importhtml:import write 70 booktool_importhtml 4 +651 booktool/print:print read 70 booktool_print 0 +652 forumreport/summary:view read 70 forumreport_summary 0 +653 forumreport/summary:viewall read 70 forumreport_summary 8 +654 quiz/grading:viewstudentnames read 70 quiz_grading 0 +655 quiz/grading:viewidnumber read 70 quiz_grading 0 +656 quiz/statistics:view read 70 quiz_statistics 0 +657 quizaccess/seb:managetemplates write 10 quizaccess_seb 0 +658 quizaccess/seb:bypassseb read 70 quizaccess_seb 0 +659 quizaccess/seb:manage_seb_requiresafeexambrowser write 70 quizaccess_seb 0 +660 quizaccess/seb:manage_seb_templateid read 70 quizaccess_seb 0 +661 quizaccess/seb:manage_filemanager_sebconfigfile write 70 quizaccess_seb 0 +662 quizaccess/seb:manage_seb_showsebdownloadlink write 70 quizaccess_seb 0 +663 quizaccess/seb:manage_seb_allowedbrowserexamkeys write 70 quizaccess_seb 0 +664 quizaccess/seb:manage_seb_linkquitseb write 70 quizaccess_seb 0 +665 quizaccess/seb:manage_seb_userconfirmquit write 70 quizaccess_seb 0 +666 quizaccess/seb:manage_seb_allowuserquitseb write 70 quizaccess_seb 0 +667 quizaccess/seb:manage_seb_quitpassword write 70 quizaccess_seb 0 +668 quizaccess/seb:manage_seb_allowreloadinexam write 70 quizaccess_seb 0 +669 quizaccess/seb:manage_seb_showsebtaskbar write 70 quizaccess_seb 0 +670 quizaccess/seb:manage_seb_showreloadbutton write 70 quizaccess_seb 0 +671 quizaccess/seb:manage_seb_showtime write 70 quizaccess_seb 0 +672 quizaccess/seb:manage_seb_showkeyboardlayout write 70 quizaccess_seb 0 +673 quizaccess/seb:manage_seb_showwificontrol write 70 quizaccess_seb 0 +674 quizaccess/seb:manage_seb_enableaudiocontrol write 70 quizaccess_seb 0 +675 quizaccess/seb:manage_seb_muteonstartup write 70 quizaccess_seb 0 +676 quizaccess/seb:manage_seb_allowspellchecking write 70 quizaccess_seb 0 +677 quizaccess/seb:manage_seb_activateurlfiltering write 70 quizaccess_seb 0 +678 quizaccess/seb:manage_seb_filterembeddedcontent write 70 quizaccess_seb 0 +679 quizaccess/seb:manage_seb_expressionsallowed write 70 quizaccess_seb 0 +680 quizaccess/seb:manage_seb_regexallowed write 70 quizaccess_seb 0 +681 quizaccess/seb:manage_seb_expressionsblocked write 70 quizaccess_seb 0 +682 quizaccess/seb:manage_seb_regexblocked write 70 quizaccess_seb 0 +683 atto/h5p:addembed write 70 atto_h5p 0 +684 atto/recordrtc:recordaudio write 70 atto_recordrtc 0 +685 atto/recordrtc:recordvideo write 70 atto_recordrtc 0 \. @@ -24818,7 +25159,7 @@ COPY public.mdl_capabilities (id, name, captype, contextlevel, component, riskbi -- Name: mdl_capabilities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_capabilities_id_seq', 673, true); +SELECT pg_catalog.setval('public.mdl_capabilities_id_seq', 685, true); -- @@ -24885,7 +25226,7 @@ SELECT pg_catalog.setval('public.mdl_chat_users_id_seq', 1, false); -- Data for Name: mdl_choice; Type: TABLE DATA; Schema: public; Owner: postgres -- -COPY public.mdl_choice (id, course, name, intro, introformat, publish, showresults, display, allowupdate, allowmultiple, showunanswered, includeinactive, limitanswers, timeopen, timeclose, showpreview, timemodified, completionsubmit) FROM stdin; +COPY public.mdl_choice (id, course, name, intro, introformat, publish, showresults, display, allowupdate, allowmultiple, showunanswered, includeinactive, limitanswers, timeopen, timeclose, showpreview, timemodified, completionsubmit, showavailable) FROM stdin; \. @@ -25235,7 +25576,7 @@ COPY public.mdl_config (id, name, value) FROM stdin; 4 enrol_plugins_enabled manual,guest,self,cohort 5 theme boost 6 filter_multilang_converted 1 -7 siteidentifier H3kgTYs3E7HQmfbuxbNmm2edmkYrsAsx18.237.39.129 +7 siteidentifier jRSjQJvZuUXioZNGA7SIWZUwGExyMD9mdev.derekmaxson.com 8 backup_version 2008111700 9 backup_release 2.0 dev 10 mnet_dispatcher_mode off @@ -25254,7 +25595,7 @@ COPY public.mdl_config (id, name, value) FROM stdin; 28 licenses unknown,allrightsreserved,public,cc,cc-nd,cc-nc-nd,cc-nc,cc-nc-sa,cc-sa 29 sitedefaultlicense unknown 30 badges_site_backpack 1 -31 version 2020061503.07 +31 version 2020110901.04 32 enableuserfeedback 0 33 userfeedback_nextreminder 1 34 userfeedback_remindafter 90 @@ -25293,449 +25634,464 @@ COPY public.mdl_config (id, name, value) FROM stdin; 68 agedigitalconsentmap *, 16\nAT, 14\nBE, 13\nBG, 14\nCY, 14\nCZ, 15\nDK, 13\nEE, 13\nES, 14\nFI, 13\nFR, 15\nGB, 13\nGR, 15\nIT, 14\nLT, 14\nLV, 13\nMT, 13\nNO, 13\nPT, 13\nSE, 13\nUS, 13 69 sitepolicy 70 sitepolicyguest -71 enablecourserequests 1 -72 defaultrequestcategory 1 -73 lockrequestcategory 0 -74 courserequestnotify -75 activitychoosertabmode 0 -76 enableasyncbackup 0 -77 grade_profilereport user -78 grade_aggregationposition 1 -79 grade_includescalesinaggregation 1 -80 grade_hiddenasdate 0 -81 gradepublishing 0 -82 grade_export_exportfeedback 0 -83 grade_export_displaytype 1 -84 grade_export_decimalpoints 2 -85 grade_navmethod 1 -86 grade_export_userprofilefields firstname,lastname,idnumber,institution,department,email -87 grade_export_customprofilefields -88 recovergradesdefault 0 -89 gradeexport -90 unlimitedgrades 0 -91 grade_report_showmin 1 -92 gradepointmax 100 -93 gradepointdefault 100 -94 grade_minmaxtouse 1 -95 grade_mygrades_report overview -96 gradereport_mygradeurl -97 grade_hideforcedsettings 1 -98 grade_aggregation 13 -99 grade_aggregation_flag 0 -100 grade_aggregations_visible 13 -101 grade_aggregateonlygraded 1 -102 grade_aggregateonlygraded_flag 2 -103 grade_aggregateoutcomes 0 -104 grade_aggregateoutcomes_flag 2 -105 grade_keephigh 0 -106 grade_keephigh_flag 3 -107 grade_droplow 0 -108 grade_droplow_flag 2 -109 grade_overridecat 1 -110 grade_displaytype 1 -111 grade_decimalpoints 2 -112 grade_item_advanced iteminfo,idnumber,gradepass,plusfactor,multfactor,display,decimals,hiddenuntil,locktime -113 grade_report_studentsperpage 100 -114 grade_report_showonlyactiveenrol 1 -115 grade_report_quickgrading 1 -116 grade_report_showquickfeedback 0 -117 grade_report_meanselection 1 -118 grade_report_enableajax 0 -119 grade_report_showcalculations 1 -120 grade_report_showeyecons 0 -121 grade_report_showaverages 1 -122 grade_report_showlocks 0 -123 grade_report_showranges 0 -25 jsrev 1609808510 -26 templaterev 1609808510 +71 downloadcoursecontentallowed 0 +72 maxsizeperdownloadcoursefile 52428800 +73 enablecourserequests 1 +74 defaultrequestcategory 1 +75 lockrequestcategory 0 +76 courserequestnotify +77 activitychoosertabmode 0 +78 activitychooseractivefooter hidden +79 enableasyncbackup 0 +80 grade_profilereport user +81 grade_aggregationposition 1 +82 grade_includescalesinaggregation 1 +83 grade_hiddenasdate 0 +84 gradepublishing 0 +85 grade_export_exportfeedback 0 +86 grade_export_displaytype 1 +87 grade_export_decimalpoints 2 +88 grade_navmethod 1 +89 grade_export_userprofilefields firstname,lastname,idnumber,institution,department,email +90 grade_export_customprofilefields +91 recovergradesdefault 0 +92 gradeexport +93 unlimitedgrades 0 +94 grade_report_showmin 1 +95 gradepointmax 100 +96 gradepointdefault 100 +97 grade_minmaxtouse 1 +98 grade_mygrades_report overview +99 gradereport_mygradeurl +100 grade_hideforcedsettings 1 +101 grade_aggregation 13 +102 grade_aggregation_flag 0 +103 grade_aggregations_visible 13 +104 grade_aggregateonlygraded 1 +105 grade_aggregateonlygraded_flag 2 +106 grade_aggregateoutcomes 0 +107 grade_aggregateoutcomes_flag 2 +108 grade_keephigh 0 +109 grade_keephigh_flag 3 +110 grade_droplow 0 +111 grade_droplow_flag 2 +112 grade_overridecat 1 +113 grade_displaytype 1 +114 grade_decimalpoints 2 +115 grade_item_advanced iteminfo,idnumber,gradepass,plusfactor,multfactor,display,decimals,hiddenuntil,locktime +116 grade_report_studentsperpage 100 +117 grade_report_showonlyactiveenrol 1 +118 grade_report_quickgrading 1 +119 grade_report_showquickfeedback 0 +120 grade_report_meanselection 1 +121 grade_report_enableajax 0 +122 grade_report_showcalculations 1 +25 jsrev 1612889104 +26 templaterev 1612889104 13 filterall 0 -24 themerev 1609808510 -2 rolesactive 1 -124 grade_report_showanalysisicon 1 -125 grade_report_showuserimage 1 -126 grade_report_showactivityicons 1 -127 grade_report_shownumberofgrades 0 -128 grade_report_averagesdisplaytype inherit -129 grade_report_rangesdisplaytype inherit -130 grade_report_averagesdecimalpoints inherit -131 grade_report_rangesdecimalpoints inherit -132 grade_report_historyperpage 50 -133 grade_report_overview_showrank 0 -134 grade_report_overview_showtotalsifcontainhidden 0 -135 grade_report_user_showrank 0 -136 grade_report_user_showpercentage 1 -137 grade_report_user_showgrade 1 -138 grade_report_user_showfeedback 1 -139 grade_report_user_showrange 1 -140 grade_report_user_showweight 1 -141 grade_report_user_showaverage 0 -142 grade_report_user_showlettergrade 0 -143 grade_report_user_rangedecimals 0 -144 grade_report_user_showhiddenitems 1 -145 grade_report_user_showtotalsifcontainhidden 0 -146 grade_report_user_showcontributiontocoursetotal 1 -147 badges_defaultissuername -148 badges_defaultissuercontact -149 badges_badgesalt badges1609808466 -150 badges_allowcoursebadges 1 -151 badges_allowexternalbackpack 1 -152 rememberuserlicensepref 1 -154 forcetimezone 99 -155 country 0 -156 defaultcity -157 geoip2file /var/www/moodledata/geoip/GeoLite2-City.mmdb -158 googlemapkey3 -159 allcountrycodes -160 autolang 1 -161 lang en -162 langmenu 1 -163 langlist -165 langcache 1 -166 langstringcache 1 -167 locale -168 latinexcelexport 0 -169 messaging 1 -170 messagingallusers 0 -171 messagingdefaultpressenter 1 -172 messagingdeletereadnotificationsdelay 604800 -173 messagingdeleteallnotificationsdelay 2620800 -174 messagingallowemailoverride 0 -175 requiremodintro 0 -177 authloginviaemail 0 -178 allowaccountssameemail 0 -179 authpreventaccountcreation 0 -180 loginpageautofocus 0 -181 guestloginbutton 1 -182 limitconcurrentlogins 0 -183 alternateloginurl -184 forgottenpasswordurl -185 auth_instructions -186 allowemailaddresses -187 denyemailaddresses -188 verifychangedemail 1 -189 recaptchapublickey -190 recaptchaprivatekey -191 filteruploadedfiles 0 -192 filtermatchoneperpage 0 -193 filtermatchonepertext 0 -194 media_default_width 400 -195 media_default_height 300 -196 portfolio_moderate_filesize_threshold 1048576 -197 portfolio_high_filesize_threshold 5242880 -198 portfolio_moderate_db_threshold 20 -199 portfolio_high_db_threshold 50 -200 repositorycacheexpire 120 -201 repositorygetfiletimeout 30 -202 repositorysyncfiletimeout 1 -203 repositorysyncimagetimeout 3 -204 repositoryallowexternallinks 1 -205 legacyfilesinnewcourses 0 -206 legacyfilesaddallowed 1 -207 searchengine simpledb -208 searchindexwhendisabled 0 -209 searchindextime 600 -210 searchallavailablecourses 0 -211 searchincludeallcourses 0 -212 searchenablecategories 0 -213 searchdefaultcategory core-all -214 searchhideallcategory 0 -215 enablewsdocumentation 0 -216 allowbeforeblock 0 -217 allowedip -218 blockedip -219 protectusernames 1 -220 forcelogin 0 -221 forceloginforprofiles 1 -222 forceloginforprofileimage 0 -223 opentowebcrawlers 0 -224 allowindexing 0 -225 maxbytes 0 -226 userquota 104857600 -227 allowobjectembed 0 -228 enabletrusttext 0 -229 maxeditingtime 1800 -230 extendedusernamechars 0 -231 keeptagnamecase 1 -232 profilesforenrolledusersonly 1 -233 cronclionly 1 -234 cronremotepassword -235 lockoutthreshold 0 -236 lockoutwindow 1800 -237 lockoutduration 1800 -238 passwordpolicy 1 -239 minpasswordlength 8 -240 minpassworddigits 1 -241 minpasswordlower 1 -242 minpasswordupper 1 -243 minpasswordnonalphanum 1 -244 maxconsecutiveidentchars 0 -245 passwordpolicycheckonlogin 0 -246 passwordreuselimit 0 -247 pwresettime 1800 -248 passwordchangelogout 0 -249 passwordchangetokendeletion 0 -250 tokenduration 7257600 -251 groupenrolmentkeypolicy 1 -252 disableuserimages 0 -253 emailchangeconfirmation 1 -254 rememberusername 2 -255 strictformsrequired 0 -256 cookiesecure 1 -257 cookiehttponly 0 -258 allowframembedding 0 -259 curlsecurityblockedhosts -260 curlsecurityallowedport -261 displayloginfailures 0 -262 notifyloginfailures -263 notifyloginthreshold 10 -264 themelist -265 themedesignermode 0 -266 allowuserthemes 0 -267 allowcoursethemes 0 -268 allowcategorythemes 0 -269 allowcohortthemes 0 -270 allowthemechangeonurl 0 -271 allowuserblockhiding 1 -272 langmenuinsecurelayout 0 -273 logininfoinsecurelayout 0 -274 custommenuitems -275 customusermenuitems grades,grades|/grade/report/mygrades.php|t/grades\nmessages,message|/message/index.php|t/message\npreferences,moodle|/user/preferences.php|t/preferences -276 enabledevicedetection 1 -277 devicedetectregex [] -278 calendartype gregorian -279 calendar_adminseesall 0 -280 calendar_site_timeformat 0 -281 calendar_startwday 1 -282 calendar_weekend 65 -283 calendar_lookahead 21 -284 calendar_maxevents 10 -285 enablecalendarexport 1 -286 calendar_customexport 1 -287 calendar_exportlookahead 365 -288 calendar_exportlookback 5 -290 calendar_showicalsource 1 -291 useblogassociations 1 -292 bloglevel 4 -293 useexternalblogs 1 -294 externalblogcrontime 86400 -295 maxexternalblogsperuser 1 -296 blogusecomments 1 -297 blogshowcommentscount 1 -298 defaulthomepage 1 -299 allowguestmymoodle 1 -300 navshowfullcoursenames 0 -301 navshowcategories 1 -302 navshowmycoursecategories 0 -303 navshowallcourses 0 -304 navsortmycoursessort sortorder -305 navsortmycourseshiddenlast 1 -306 navcourselimit 10 -307 usesitenameforsitepages 0 -308 linkadmincategories 1 -309 linkcoursesections 1 -310 navshowfrontpagemods 1 -311 navadduserpostslinks 1 -312 formatstringstriptags 1 -313 emoticons [{"text":":-)","imagename":"s\\/smiley","imagecomponent":"core","altidentifier":"smiley","altcomponent":"core_pix"},{"text":":)","imagename":"s\\/smiley","imagecomponent":"core","altidentifier":"smiley","altcomponent":"core_pix"},{"text":":-D","imagename":"s\\/biggrin","imagecomponent":"core","altidentifier":"biggrin","altcomponent":"core_pix"},{"text":";-)","imagename":"s\\/wink","imagecomponent":"core","altidentifier":"wink","altcomponent":"core_pix"},{"text":":-\\/","imagename":"s\\/mixed","imagecomponent":"core","altidentifier":"mixed","altcomponent":"core_pix"},{"text":"V-.","imagename":"s\\/thoughtful","imagecomponent":"core","altidentifier":"thoughtful","altcomponent":"core_pix"},{"text":":-P","imagename":"s\\/tongueout","imagecomponent":"core","altidentifier":"tongueout","altcomponent":"core_pix"},{"text":":-p","imagename":"s\\/tongueout","imagecomponent":"core","altidentifier":"tongueout","altcomponent":"core_pix"},{"text":"B-)","imagename":"s\\/cool","imagecomponent":"core","altidentifier":"cool","altcomponent":"core_pix"},{"text":"^-)","imagename":"s\\/approve","imagecomponent":"core","altidentifier":"approve","altcomponent":"core_pix"},{"text":"8-)","imagename":"s\\/wideeyes","imagecomponent":"core","altidentifier":"wideeyes","altcomponent":"core_pix"},{"text":":o)","imagename":"s\\/clown","imagecomponent":"core","altidentifier":"clown","altcomponent":"core_pix"},{"text":":-(","imagename":"s\\/sad","imagecomponent":"core","altidentifier":"sad","altcomponent":"core_pix"},{"text":":(","imagename":"s\\/sad","imagecomponent":"core","altidentifier":"sad","altcomponent":"core_pix"},{"text":"8-.","imagename":"s\\/shy","imagecomponent":"core","altidentifier":"shy","altcomponent":"core_pix"},{"text":":-I","imagename":"s\\/blush","imagecomponent":"core","altidentifier":"blush","altcomponent":"core_pix"},{"text":":-X","imagename":"s\\/kiss","imagecomponent":"core","altidentifier":"kiss","altcomponent":"core_pix"},{"text":"8-o","imagename":"s\\/surprise","imagecomponent":"core","altidentifier":"surprise","altcomponent":"core_pix"},{"text":"P-|","imagename":"s\\/blackeye","imagecomponent":"core","altidentifier":"blackeye","altcomponent":"core_pix"},{"text":"8-[","imagename":"s\\/angry","imagecomponent":"core","altidentifier":"angry","altcomponent":"core_pix"},{"text":"(grr)","imagename":"s\\/angry","imagecomponent":"core","altidentifier":"angry","altcomponent":"core_pix"},{"text":"xx-P","imagename":"s\\/dead","imagecomponent":"core","altidentifier":"dead","altcomponent":"core_pix"},{"text":"|-.","imagename":"s\\/sleepy","imagecomponent":"core","altidentifier":"sleepy","altcomponent":"core_pix"},{"text":"}-]","imagename":"s\\/evil","imagecomponent":"core","altidentifier":"evil","altcomponent":"core_pix"},{"text":"(h)","imagename":"s\\/heart","imagecomponent":"core","altidentifier":"heart","altcomponent":"core_pix"},{"text":"(heart)","imagename":"s\\/heart","imagecomponent":"core","altidentifier":"heart","altcomponent":"core_pix"},{"text":"(y)","imagename":"s\\/yes","imagecomponent":"core","altidentifier":"yes","altcomponent":"core"},{"text":"(n)","imagename":"s\\/no","imagecomponent":"core","altidentifier":"no","altcomponent":"core"},{"text":"(martin)","imagename":"s\\/martin","imagecomponent":"core","altidentifier":"martin","altcomponent":"core_pix"},{"text":"( )","imagename":"s\\/egg","imagecomponent":"core","altidentifier":"egg","altcomponent":"core_pix"}] -314 docroot https://docs.moodle.org -315 doclang -316 doctonewwindow 0 -317 coursecontactduplicates 0 -318 courselistshortnames 0 -319 coursesperpage 20 -320 courseswithsummarieslimit 10 -321 courseoverviewfileslimit 1 -322 courseoverviewfilesext .jpg,.gif,.png -323 coursegraceperiodbefore 0 -324 coursegraceperiodafter 0 -325 useexternalyui 0 -326 yuicomboloading 1 -327 cachejs 1 -328 modchooserdefault 1 -329 additionalhtmlhead -330 additionalhtmltopofbody -331 additionalhtmlfooter -332 cachetemplates 1 -333 pathtophp -334 pathtodu -335 aspellpath -336 pathtodot -337 pathtogs /usr/bin/gs -338 pathtopython -339 supportname Admin User -340 supportemail -341 supportpage -342 dbsessions 0 -343 sessioncookie -344 sessioncookiepath -345 sessioncookiedomain -346 statsfirstrun none -347 statsmaxruntime 0 -348 statsruntimedays 31 -349 statsuserthreshold 0 -350 slasharguments 1 -351 getremoteaddrconf 3 -352 reverseproxyignore -353 proxyhost -354 proxyport 0 -355 proxytype HTTP -356 proxyuser -357 proxypassword -358 proxybypass localhost, 127.0.0.1 -359 maintenance_enabled 0 -360 maintenance_message -361 deleteunconfirmed 168 -362 deleteincompleteusers 0 -363 disablegradehistory 0 -364 gradehistorylifetime 0 -365 tempdatafoldercleanup 168 -366 filescleanupperiod 86400 -367 extramemorylimit 512M -368 maxtimelimit 0 -369 curlcache 120 -370 curltimeoutkbitrate 56 -498 messageinbound_mailbox -499 messageinbound_domain -500 messageinbound_host -371 task_scheduled_concurrency_limit 3 -372 task_scheduled_max_runtime 1800 -373 task_adhoc_concurrency_limit 3 -374 task_adhoc_max_runtime 1800 -375 task_logmode 1 -376 task_logtostdout 1 -377 task_logretention 2419200 -378 task_logretainruns 20 -379 smtphosts -380 smtpsecure -381 smtpauthtype LOGIN -382 smtpuser -383 smtppass -384 smtpmaxbulk 1 -385 allowedemaildomains -386 sitemailcharset 0 -387 allowusermailcharset 0 -388 allowattachments 1 -389 mailnewline LF -390 emailfromvia 1 -391 emailsubjectprefix -392 updateautocheck 1 -393 updateminmaturity 200 -394 updatenotifybuilds 0 -395 dndallowtextandlinks 0 -396 pathtosassc -397 contextlocking 0 -398 contextlockappliestoadmin 1 -399 forceclean 0 -400 enablecourserelativedates 0 -401 debug 0 -402 debugdisplay 0 -403 perfdebug 7 -404 debugstringids 0 -405 debugvalidators 0 -406 debugpageinfo 0 -407 profilingenabled 0 -408 profilingincluded -409 profilingexcluded -410 profilingautofrec 0 -411 profilingallowme 0 -412 profilingallowall 0 -413 profilingslow 0 -414 profilinglifetime 1440 -415 profilingimportprefix (I) -289 calendar_exportsalt BZbQVUNtdpSQs8j5gGrndp3LMDkPopmWa5KiqxGMgvvQjS6LHeHte4jUalFG -416 release 3.9.3+ (Build: 20201224) -469 glossary_dupentries 0 -470 glossary_allowcomments 0 -471 glossary_linkbydefault 1 -472 glossary_defaultapproval 1 -473 glossary_enablerssfeeds 0 -474 glossary_linkentries 0 -475 glossary_casesensitive 0 -476 glossary_fullmatch 0 -477 block_course_list_adminview all -478 block_course_list_hideallcourseslink 0 -479 block_html_allowcssclasses 0 -480 block_online_users_timetosee 5 -481 block_online_users_onlinestatushiding 1 -482 block_rss_client_num_entries 5 -419 allversionshash b2866237f8919ab355fc818846fe24ac40cff09f -164 langrev 1609808510 -417 localcachedirpurged 1609808510 -418 scheduledtaskreset 1609808510 -422 branch 39 -423 notloggedinroleid 6 -424 guestroleid 6 -425 defaultuserroleid 7 -426 creatornewroleid 3 -427 restorernewroleid 3 -428 sitepolicyhandler -429 gradebookroles 5 -430 h5plibraryhandler h5plib_v124 -431 jabberhost -432 jabberserver -433 jabberusername -434 jabberpassword -435 jabberport 5222 -436 airnotifierurl https://messages.moodle.net -437 airnotifierport 443 -438 airnotifiermobileappname com.moodle.moodlemobile -439 airnotifierappname commoodlemoodlemobile -440 airnotifieraccesskey -441 chat_method ajax -442 chat_refresh_userlist 10 -443 chat_old_ping 35 -444 chat_refresh_room 5 14 texteditors atto,tinymce,textarea -445 chat_normal_updatemode jsupdate -446 chat_serverhost connectbox -447 chat_serverip 127.0.0.1 -448 chat_serverport 9111 -449 chat_servermax 100 -450 data_enablerssfeeds 0 -451 feedback_allowfullanonymous 0 -452 forum_displaymode 3 -453 forum_shortpost 300 -454 forum_longpost 600 -455 forum_manydiscussions 100 -456 forum_maxbytes 512000 -457 forum_maxattachments 9 -458 forum_subscription 0 -459 forum_trackingtype 1 -460 forum_trackreadposts 1 -461 forum_allowforcedreadtracking 0 -462 forum_oldpostdays 14 -463 forum_usermarksread 0 -483 block_rss_client_timeout 30 -464 forum_cleanreadtime 2 -465 digestmailtime 17 -466 forum_enablerssfeeds 0 -467 forum_enabletimedposts 1 -468 glossary_entbypage 10 -484 pathtounoconv /usr/bin/unoconv -485 filter_multilang_force_old 0 -486 filter_censor_badwords -487 logguests 1 -488 loglifetime 0 -489 profileroles 5,4,3 -490 coursecontact 3 -491 frontpage 6 -492 frontpageloggedin 6 -493 maxcategorydepth 2 -494 frontpagecourselimit 200 -495 commentsperpage 15 -496 defaultfrontpageroleid 8 -497 messageinbound_enabled 0 -421 registrationpending 0 -501 messageinbound_hostssl ssl -502 messageinbound_hostuser -503 messageinbound_hostpass -505 mobilecssurl -506 timezone America/Los_Angeles -507 registerauth -508 noreplyaddress noreply@email.com -40 enablewebservices 1 -509 webserviceprotocols rest -504 enablemobilewebservice 1 +2 rolesactive 1 +24 themerev 1612889104 +40 enablewebservices 0 +123 grade_report_showeyecons 0 +124 grade_report_showaverages 1 +125 grade_report_showlocks 0 +126 grade_report_showranges 0 +127 grade_report_showanalysisicon 1 +128 grade_report_showuserimage 1 +129 grade_report_showactivityicons 1 +130 grade_report_shownumberofgrades 0 +131 grade_report_averagesdisplaytype inherit +132 grade_report_rangesdisplaytype inherit +133 grade_report_averagesdecimalpoints inherit +134 grade_report_rangesdecimalpoints inherit +135 grade_report_historyperpage 50 +136 grade_report_overview_showrank 0 +137 grade_report_overview_showtotalsifcontainhidden 0 +138 grade_report_user_showrank 0 +139 grade_report_user_showpercentage 1 +140 grade_report_user_showgrade 1 +141 grade_report_user_showfeedback 1 +142 grade_report_user_showrange 1 +143 grade_report_user_showweight 1 +144 grade_report_user_showaverage 0 +145 grade_report_user_showlettergrade 0 +146 grade_report_user_rangedecimals 0 +147 grade_report_user_showhiddenitems 1 +148 grade_report_user_showtotalsifcontainhidden 0 +149 grade_report_user_showcontributiontocoursetotal 1 +150 badges_defaultissuername +151 badges_defaultissuercontact +152 badges_badgesalt badges1612889052 +153 badges_allowcoursebadges 1 +154 badges_allowexternalbackpack 1 +155 rememberuserlicensepref 1 +157 forcetimezone 99 +158 country 0 +159 defaultcity +160 geoip2file /var/www/moodledata/geoip/GeoLite2-City.mmdb +161 googlemapkey3 +162 allcountrycodes +163 autolang 1 +164 lang en +165 autolangusercreation 1 +166 langmenu 1 +167 langlist +169 langcache 1 +170 langstringcache 1 +171 locale +172 latinexcelexport 0 +173 messaging 1 +174 messagingallusers 0 +175 messagingdefaultpressenter 1 +176 messagingdeletereadnotificationsdelay 604800 +177 messagingdeleteallnotificationsdelay 2620800 +178 messagingallowemailoverride 0 +179 requiremodintro 0 +181 authloginviaemail 0 +182 allowaccountssameemail 0 +183 authpreventaccountcreation 0 +184 loginpageautofocus 0 +185 guestloginbutton 1 +186 limitconcurrentlogins 0 +187 alternateloginurl +188 forgottenpasswordurl +189 auth_instructions +190 allowemailaddresses +191 denyemailaddresses +192 verifychangedemail 1 +193 recaptchapublickey +194 recaptchaprivatekey +195 filteruploadedfiles 0 +196 filtermatchoneperpage 0 +197 filtermatchonepertext 0 +198 media_default_width 400 +199 media_default_height 300 +200 portfolio_moderate_filesize_threshold 1048576 +201 portfolio_high_filesize_threshold 5242880 +202 portfolio_moderate_db_threshold 20 +203 portfolio_high_db_threshold 50 +204 repositorycacheexpire 120 +205 repositorygetfiletimeout 30 +206 repositorysyncfiletimeout 1 +207 repositorysyncimagetimeout 3 +208 repositoryallowexternallinks 1 +209 legacyfilesinnewcourses 0 +210 legacyfilesaddallowed 1 +211 searchengine simpledb +212 searchindexwhendisabled 0 +213 searchindextime 600 +214 searchallavailablecourses 0 +215 searchincludeallcourses 0 +216 searchenablecategories 0 +217 searchdefaultcategory core-all +218 searchhideallcategory 0 +219 searchenginequeryonly +220 searchbannerenable 0 +221 searchbanner +222 enablewsdocumentation 0 +223 allowbeforeblock 0 +224 allowedip +225 blockedip +226 protectusernames 1 +227 forcelogin 0 +228 forceloginforprofiles 1 +229 forceloginforprofileimage 0 +230 opentowebcrawlers 0 +231 allowindexing 0 +232 maxbytes 0 +233 userquota 104857600 +234 allowobjectembed 0 +235 enabletrusttext 0 +236 maxeditingtime 1800 +237 extendedusernamechars 0 +238 keeptagnamecase 1 +239 profilesforenrolledusersonly 1 +240 cronclionly 1 +241 cronremotepassword +242 lockoutthreshold 0 +243 lockoutwindow 1800 +244 lockoutduration 1800 +245 passwordpolicy 1 +246 minpasswordlength 8 +247 minpassworddigits 1 +248 minpasswordlower 1 +249 minpasswordupper 1 +250 minpasswordnonalphanum 1 +251 maxconsecutiveidentchars 0 +252 passwordpolicycheckonlogin 0 +253 passwordreuselimit 0 +254 pwresettime 1800 +255 passwordchangelogout 0 +256 passwordchangetokendeletion 0 +257 tokenduration 7257600 +258 groupenrolmentkeypolicy 1 +259 disableuserimages 0 +260 emailchangeconfirmation 1 +261 rememberusername 2 +262 strictformsrequired 0 +263 cookiesecure 1 +264 cookiehttponly 0 +265 allowframembedding 0 +266 curlsecurityblockedhosts +267 curlsecurityallowedport +268 referrerpolicy default +269 displayloginfailures 0 +270 notifyloginfailures +271 notifyloginthreshold 10 +272 themelist +273 themedesignermode 0 +274 allowuserthemes 0 +275 allowcoursethemes 0 +276 allowcategorythemes 0 +277 allowcohortthemes 0 +278 allowthemechangeonurl 0 +279 allowuserblockhiding 1 +280 langmenuinsecurelayout 0 +281 logininfoinsecurelayout 0 +282 custommenuitems +283 customusermenuitems grades,grades|/grade/report/mygrades.php|t/grades\nmessages,message|/message/index.php|t/message\npreferences,moodle|/user/preferences.php|t/preferences +284 enabledevicedetection 1 +285 devicedetectregex [] +286 calendartype gregorian +287 calendar_adminseesall 0 +288 calendar_site_timeformat 0 +289 calendar_startwday 1 +290 calendar_weekend 65 +291 calendar_lookahead 21 +292 calendar_maxevents 10 +293 enablecalendarexport 1 +294 calendar_customexport 1 +295 calendar_exportlookahead 365 +296 calendar_exportlookback 5 +298 calendar_showicalsource 1 +299 useblogassociations 1 +300 bloglevel 4 +301 useexternalblogs 1 +302 externalblogcrontime 86400 +303 maxexternalblogsperuser 1 +304 blogusecomments 1 +305 blogshowcommentscount 1 +306 defaulthomepage 1 +307 allowguestmymoodle 1 +308 navshowfullcoursenames 0 +309 navshowcategories 1 +310 navshowmycoursecategories 0 +311 navshowallcourses 0 +312 navsortmycoursessort sortorder +313 navsortmycourseshiddenlast 1 +314 navcourselimit 10 +315 usesitenameforsitepages 0 +316 linkadmincategories 1 +317 linkcoursesections 1 +318 navshowfrontpagemods 1 +319 navadduserpostslinks 1 +320 formatstringstriptags 1 +321 emoticons [{"text":":-)","imagename":"s\\/smiley","imagecomponent":"core","altidentifier":"smiley","altcomponent":"core_pix"},{"text":":)","imagename":"s\\/smiley","imagecomponent":"core","altidentifier":"smiley","altcomponent":"core_pix"},{"text":":-D","imagename":"s\\/biggrin","imagecomponent":"core","altidentifier":"biggrin","altcomponent":"core_pix"},{"text":";-)","imagename":"s\\/wink","imagecomponent":"core","altidentifier":"wink","altcomponent":"core_pix"},{"text":":-\\/","imagename":"s\\/mixed","imagecomponent":"core","altidentifier":"mixed","altcomponent":"core_pix"},{"text":"V-.","imagename":"s\\/thoughtful","imagecomponent":"core","altidentifier":"thoughtful","altcomponent":"core_pix"},{"text":":-P","imagename":"s\\/tongueout","imagecomponent":"core","altidentifier":"tongueout","altcomponent":"core_pix"},{"text":":-p","imagename":"s\\/tongueout","imagecomponent":"core","altidentifier":"tongueout","altcomponent":"core_pix"},{"text":"B-)","imagename":"s\\/cool","imagecomponent":"core","altidentifier":"cool","altcomponent":"core_pix"},{"text":"^-)","imagename":"s\\/approve","imagecomponent":"core","altidentifier":"approve","altcomponent":"core_pix"},{"text":"8-)","imagename":"s\\/wideeyes","imagecomponent":"core","altidentifier":"wideeyes","altcomponent":"core_pix"},{"text":":o)","imagename":"s\\/clown","imagecomponent":"core","altidentifier":"clown","altcomponent":"core_pix"},{"text":":-(","imagename":"s\\/sad","imagecomponent":"core","altidentifier":"sad","altcomponent":"core_pix"},{"text":":(","imagename":"s\\/sad","imagecomponent":"core","altidentifier":"sad","altcomponent":"core_pix"},{"text":"8-.","imagename":"s\\/shy","imagecomponent":"core","altidentifier":"shy","altcomponent":"core_pix"},{"text":":-I","imagename":"s\\/blush","imagecomponent":"core","altidentifier":"blush","altcomponent":"core_pix"},{"text":":-X","imagename":"s\\/kiss","imagecomponent":"core","altidentifier":"kiss","altcomponent":"core_pix"},{"text":"8-o","imagename":"s\\/surprise","imagecomponent":"core","altidentifier":"surprise","altcomponent":"core_pix"},{"text":"P-|","imagename":"s\\/blackeye","imagecomponent":"core","altidentifier":"blackeye","altcomponent":"core_pix"},{"text":"8-[","imagename":"s\\/angry","imagecomponent":"core","altidentifier":"angry","altcomponent":"core_pix"},{"text":"(grr)","imagename":"s\\/angry","imagecomponent":"core","altidentifier":"angry","altcomponent":"core_pix"},{"text":"xx-P","imagename":"s\\/dead","imagecomponent":"core","altidentifier":"dead","altcomponent":"core_pix"},{"text":"|-.","imagename":"s\\/sleepy","imagecomponent":"core","altidentifier":"sleepy","altcomponent":"core_pix"},{"text":"}-]","imagename":"s\\/evil","imagecomponent":"core","altidentifier":"evil","altcomponent":"core_pix"},{"text":"(h)","imagename":"s\\/heart","imagecomponent":"core","altidentifier":"heart","altcomponent":"core_pix"},{"text":"(heart)","imagename":"s\\/heart","imagecomponent":"core","altidentifier":"heart","altcomponent":"core_pix"},{"text":"(y)","imagename":"s\\/yes","imagecomponent":"core","altidentifier":"yes","altcomponent":"core"},{"text":"(n)","imagename":"s\\/no","imagecomponent":"core","altidentifier":"no","altcomponent":"core"},{"text":"(martin)","imagename":"s\\/martin","imagecomponent":"core","altidentifier":"martin","altcomponent":"core_pix"},{"text":"( )","imagename":"s\\/egg","imagecomponent":"core","altidentifier":"egg","altcomponent":"core_pix"}] +322 docroot https://docs.moodle.org +323 doclang +324 doctonewwindow 0 +325 coursecontactduplicates 0 +326 courselistshortnames 0 +327 coursesperpage 20 +328 courseswithsummarieslimit 10 +329 courseoverviewfileslimit 1 +330 courseoverviewfilesext .jpg,.gif,.png +331 coursegraceperiodbefore 0 +332 coursegraceperiodafter 0 +333 useexternalyui 0 +334 yuicomboloading 1 +335 cachejs 1 +336 modchooserdefault 1 +337 additionalhtmlhead +338 additionalhtmltopofbody +339 additionalhtmlfooter +340 cachetemplates 1 +341 pathtophp +342 pathtodu +343 aspellpath +344 pathtodot +345 pathtogs /usr/bin/gs +346 pathtopython +347 supportname Admin User +348 supportemail +349 supportpage +350 dbsessions 0 +351 sessioncookie +352 sessioncookiepath +353 sessioncookiedomain +354 statsfirstrun none +355 statsmaxruntime 0 +356 statsruntimedays 31 +357 statsuserthreshold 0 +358 slasharguments 1 +359 getremoteaddrconf 3 +360 reverseproxyignore +361 proxyhost +362 proxyport 0 +363 proxytype HTTP +364 proxyuser +365 proxypassword +366 proxybypass localhost, 127.0.0.1 +367 maintenance_enabled 0 +368 maintenance_message +369 deleteunconfirmed 168 +370 deleteincompleteusers 0 +371 disablegradehistory 0 +372 gradehistorylifetime 0 +373 tempdatafoldercleanup 168 +374 filescleanupperiod 86400 +375 extramemorylimit 512M +376 maxtimelimit 0 +377 curlcache 120 +378 curltimeoutkbitrate 56 +379 cron_enabled 1 +380 task_scheduled_concurrency_limit 3 +381 task_scheduled_max_runtime 1800 +382 task_adhoc_concurrency_limit 3 +383 task_adhoc_max_runtime 1800 +384 task_logmode 1 +385 task_logtostdout 1 +386 task_logretention 2419200 +387 task_logretainruns 20 +388 smtphosts +389 smtpsecure +390 smtpauthtype LOGIN +391 smtpuser +392 smtppass +393 smtpmaxbulk 1 +394 noreplyaddress noreply@dev.derekmaxson.com +395 allowedemaildomains +396 divertallemailsto +397 divertallemailsexcept +398 emaildkimselector +399 sitemailcharset 0 +400 allowusermailcharset 0 +401 allowattachments 1 +402 mailnewline LF +403 emailfromvia 1 +404 emailsubjectprefix +405 emailheaders +406 updateautocheck 1 +407 updateminmaturity 200 +408 updatenotifybuilds 0 +409 dndallowtextandlinks 0 +410 pathtosassc +411 contextlocking 0 +412 contextlockappliestoadmin 1 +413 forceclean 0 +414 enablecourserelativedates 0 +415 debug 0 +416 debugdisplay 0 +417 perfdebug 7 +418 debugstringids 0 +419 debugsqltrace 0 +420 debugvalidators 0 +421 debugpageinfo 0 +422 profilingenabled 0 +423 profilingincluded +424 profilingexcluded +425 profilingautofrec 0 +426 profilingallowme 0 +427 profilingallowall 0 +428 profilingslow 0 +429 profilinglifetime 1440 +430 profilingimportprefix (I) +297 calendar_exportsalt DaSq4Dykd5LKpXJuifuvgPNkhOICXEKjaJU1TXKQC1DHDpxHUubuGyQfAR73 +431 release 3.10.1+ (Build: 20210204) +482 forum_enablerssfeeds 0 +483 forum_enabletimedposts 1 +435 allversionshash 0e78666f53885f337026656472808301f6b1318e +168 langrev 1612889104 +432 localcachedirpurged 1612889104 +433 scheduledtaskreset 1612889104 +438 branch 310 +439 notloggedinroleid 6 +440 guestroleid 6 +441 defaultuserroleid 7 +442 creatornewroleid 3 +443 restorernewroleid 3 +444 sitepolicyhandler +445 gradebookroles 5 +446 h5plibraryhandler h5plib_v124 +447 jabberhost +448 jabberserver +449 jabberusername +450 jabberpassword +451 jabberport 5222 +452 airnotifierurl https://messages.moodle.net +453 airnotifierport 443 +454 airnotifiermobileappname com.moodle.moodlemobile +455 airnotifierappname commoodlemoodlemobile +456 airnotifieraccesskey +457 chat_method ajax +458 chat_refresh_userlist 10 +459 chat_old_ping 35 +460 chat_refresh_room 5 +461 chat_normal_updatemode jsupdate +462 chat_serverhost dev.derekmaxson.com +463 chat_serverip 127.0.0.1 +464 chat_serverport 9111 +434 paygw_plugins_sortorder paypal +465 chat_servermax 100 +466 data_enablerssfeeds 0 +467 feedback_allowfullanonymous 0 +468 forum_displaymode 3 +469 forum_shortpost 300 +470 forum_longpost 600 +471 forum_manydiscussions 100 +472 forum_maxbytes 512000 +473 forum_maxattachments 9 +474 forum_subscription 0 +475 forum_trackingtype 1 +476 forum_trackreadposts 1 +477 forum_allowforcedreadtracking 0 +484 glossary_entbypage 10 +478 forum_oldpostdays 14 +479 forum_usermarksread 0 +480 forum_cleanreadtime 2 +481 digestmailtime 17 +485 glossary_dupentries 0 +486 glossary_allowcomments 0 +487 glossary_linkbydefault 1 +488 glossary_defaultapproval 1 +489 glossary_enablerssfeeds 0 +490 glossary_linkentries 0 +491 glossary_casesensitive 0 +492 glossary_fullmatch 0 +493 block_course_list_adminview all +494 block_course_list_hideallcourseslink 0 +495 block_html_allowcssclasses 0 +496 block_online_users_timetosee 5 +497 block_online_users_onlinestatushiding 1 +498 block_rss_client_num_entries 5 +437 registrationpending 0 +499 block_rss_client_timeout 30 +500 pathtounoconv /usr/bin/unoconv +501 filter_multilang_force_old 0 +502 filter_censor_badwords +503 logguests 1 +504 loglifetime 0 +505 profileroles 5,4,3 +506 coursecontact 3 +507 frontpage 6 +508 frontpageloggedin 6 +509 maxcategorydepth 2 +510 frontpagecourselimit 200 +511 commentsperpage 15 +512 defaultfrontpageroleid 8 +513 messageinbound_enabled 0 +514 messageinbound_mailbox +515 messageinbound_domain +516 messageinbound_host +517 messageinbound_hostssl ssl +518 messageinbound_hostuser +519 messageinbound_hostpass +520 enablemobilewebservice 0 +521 mobilecssurl +522 scorm_updatetimelast 1612889162 +523 timezone Europe/London +524 registerauth \. @@ -25743,7 +26099,7 @@ COPY public.mdl_config (id, name, value) FROM stdin; -- Name: mdl_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_config_id_seq', 509, true); +SELECT pg_catalog.setval('public.mdl_config_id_seq', 524, true); -- @@ -25751,1607 +26107,1639 @@ SELECT pg_catalog.setval('public.mdl_config_id_seq', 509, true); -- COPY public.mdl_config_log (id, userid, timemodified, plugin, name, value, oldvalue) FROM stdin; -1 0 1609808472 \N enableuserfeedback 0 \N -2 0 1609808472 \N userfeedback_nextreminder 1 \N -3 0 1609808472 \N userfeedback_remindafter 90 \N -4 0 1609808472 \N enableoutcomes 0 \N -5 0 1609808472 \N usecomments 1 \N -6 0 1609808472 \N usetags 1 \N -7 0 1609808472 \N enablenotes 1 \N -8 0 1609808472 \N enableportfolios 0 \N -9 0 1609808472 \N enablewebservices 0 \N -10 0 1609808472 \N enablestats 0 \N -11 0 1609808472 \N enablerssfeeds 0 \N -12 0 1609808472 \N enableblogs 1 \N -13 0 1609808472 \N enablecompletion 1 \N -14 0 1609808472 \N completiondefault 1 \N -15 0 1609808472 \N enableavailability 1 \N -16 0 1609808472 \N enableplagiarism 0 \N -17 0 1609808472 \N enablebadges 1 \N -18 0 1609808472 \N enableglobalsearch 0 \N -19 0 1609808472 \N allowstealth 0 \N -20 0 1609808472 \N enableanalytics 1 \N -21 0 1609808472 \N allowemojipicker 1 \N -22 0 1609808472 \N userfiltersdefault realname \N -23 0 1609808472 \N defaultpreference_maildisplay 2 \N -24 0 1609808472 \N defaultpreference_mailformat 1 \N -25 0 1609808472 \N defaultpreference_maildigest 0 \N -26 0 1609808472 \N defaultpreference_autosubscribe 1 \N -27 0 1609808472 \N defaultpreference_trackforums 0 \N -28 0 1609808472 \N autologinguests 0 \N -29 0 1609808472 \N hiddenuserfields \N -30 0 1609808472 \N showuseridentity email \N -31 0 1609808472 \N fullnamedisplay language \N -32 0 1609808472 \N alternativefullnameformat language \N -33 0 1609808472 \N maxusersperpage 100 \N -34 0 1609808472 \N enablegravatar 0 \N -35 0 1609808472 \N gravatardefaulturl mm \N -36 0 1609808472 \N agedigitalconsentverification 0 \N -37 0 1609808472 \N agedigitalconsentmap *, 16\nAT, 14\nBE, 13\nBG, 14\nCY, 14\nCZ, 15\nDK, 13\nEE, 13\nES, 14\nFI, 13\nFR, 15\nGB, 13\nGR, 15\nIT, 14\nLT, 14\nLV, 13\nMT, 13\nNO, 13\nPT, 13\nSE, 13\nUS, 13 \N -38 0 1609808472 \N sitepolicy \N -39 0 1609808472 \N sitepolicyguest \N -40 0 1609808472 moodlecourse visible 1 \N -41 0 1609808472 moodlecourse format topics \N -42 0 1609808472 moodlecourse maxsections 52 \N -43 0 1609808472 moodlecourse numsections 4 \N -44 0 1609808472 moodlecourse hiddensections 0 \N -45 0 1609808472 moodlecourse coursedisplay 0 \N -46 0 1609808472 moodlecourse courseenddateenabled 1 \N -47 0 1609808472 moodlecourse courseduration 31536000 \N -48 0 1609808472 moodlecourse lang \N -49 0 1609808472 moodlecourse newsitems 5 \N -50 0 1609808472 moodlecourse showgrades 1 \N -51 0 1609808472 moodlecourse showreports 0 \N -52 0 1609808472 moodlecourse maxbytes 0 \N -53 0 1609808472 moodlecourse enablecompletion 1 \N -54 0 1609808472 moodlecourse groupmode 0 \N -55 0 1609808472 moodlecourse groupmodeforce 0 \N -56 0 1609808472 \N enablecourserequests 1 \N -57 0 1609808472 \N defaultrequestcategory 1 \N -58 0 1609808472 \N lockrequestcategory 0 \N -59 0 1609808472 \N courserequestnotify \N -60 0 1609808472 \N activitychoosertabmode 0 \N -61 0 1609808472 backup loglifetime 30 \N -62 0 1609808472 backup backup_general_users 1 \N -63 0 1609808472 backup backup_general_users_locked \N -64 0 1609808472 backup backup_general_anonymize 0 \N -65 0 1609808472 backup backup_general_anonymize_locked \N -66 0 1609808472 backup backup_general_role_assignments 1 \N -67 0 1609808472 backup backup_general_role_assignments_locked \N -68 0 1609808472 backup backup_general_activities 1 \N -69 0 1609808472 backup backup_general_activities_locked \N -70 0 1609808472 backup backup_general_blocks 1 \N -71 0 1609808472 backup backup_general_blocks_locked \N -72 0 1609808472 backup backup_general_files 1 \N -73 0 1609808472 backup backup_general_files_locked \N -74 0 1609808473 backup backup_general_filters 1 \N -75 0 1609808473 backup backup_general_filters_locked \N -76 0 1609808473 backup backup_general_comments 1 \N -77 0 1609808473 backup backup_general_comments_locked \N -78 0 1609808473 backup backup_general_badges 1 \N -79 0 1609808473 backup backup_general_badges_locked \N -80 0 1609808473 backup backup_general_calendarevents 1 \N -81 0 1609808473 backup backup_general_calendarevents_locked \N -82 0 1609808473 backup backup_general_userscompletion 1 \N -83 0 1609808473 backup backup_general_userscompletion_locked \N -84 0 1609808473 backup backup_general_logs 0 \N -85 0 1609808473 backup backup_general_logs_locked \N -86 0 1609808473 backup backup_general_histories 0 \N -87 0 1609808473 backup backup_general_histories_locked \N -88 0 1609808473 backup backup_general_questionbank 1 \N -89 0 1609808473 backup backup_general_questionbank_locked \N -90 0 1609808473 backup backup_general_groups 1 \N -91 0 1609808473 backup backup_general_groups_locked \N -92 0 1609808473 backup backup_general_competencies 1 \N -93 0 1609808473 backup backup_general_competencies_locked \N -94 0 1609808473 backup backup_general_contentbankcontent 1 \N -95 0 1609808473 backup backup_general_contentbankcontent_locked \N -96 0 1609808473 backup import_general_maxresults 10 \N -97 0 1609808473 backup import_general_duplicate_admin_allowed 0 \N -98 0 1609808473 backup backup_import_activities 1 \N -99 0 1609808473 backup backup_import_activities_locked \N -100 0 1609808473 backup backup_import_blocks 1 \N -101 0 1609808473 backup backup_import_blocks_locked \N -102 0 1609808473 backup backup_import_filters 1 \N -103 0 1609808473 backup backup_import_filters_locked \N -104 0 1609808473 backup backup_import_calendarevents 1 \N -105 0 1609808473 backup backup_import_calendarevents_locked \N -106 0 1609808473 backup backup_import_questionbank 1 \N -107 0 1609808473 backup backup_import_questionbank_locked \N -108 0 1609808473 backup backup_import_groups 1 \N -109 0 1609808473 backup backup_import_groups_locked \N -110 0 1609808473 backup backup_import_competencies 1 \N -111 0 1609808473 backup backup_import_competencies_locked \N -112 0 1609808473 backup backup_import_contentbankcontent 1 \N -113 0 1609808473 backup backup_import_contentbankcontent_locked \N -114 0 1609808473 backup backup_auto_active 0 \N -115 0 1609808473 backup backup_auto_weekdays 0000000 \N -116 0 1609808473 backup backup_auto_hour 0 \N -117 0 1609808473 backup backup_auto_minute 0 \N -118 0 1609808473 backup backup_auto_storage 0 \N -119 0 1609808473 backup backup_auto_destination \N -120 0 1609808473 backup backup_auto_max_kept 1 \N -121 0 1609808473 backup backup_auto_delete_days 0 \N -122 0 1609808473 backup backup_auto_min_kept 0 \N -123 0 1609808473 backup backup_shortname 0 \N -124 0 1609808473 backup backup_auto_skip_hidden 1 \N -125 0 1609808473 backup backup_auto_skip_modif_days 30 \N -126 0 1609808473 backup backup_auto_skip_modif_prev 0 \N -127 0 1609808473 backup backup_auto_users 1 \N -128 0 1609808473 backup backup_auto_role_assignments 1 \N -129 0 1609808473 backup backup_auto_activities 1 \N -130 0 1609808473 backup backup_auto_blocks 1 \N -131 0 1609808473 backup backup_auto_files 1 \N -132 0 1609808473 backup backup_auto_filters 1 \N -133 0 1609808473 backup backup_auto_comments 1 \N -134 0 1609808473 backup backup_auto_badges 1 \N -135 0 1609808473 backup backup_auto_calendarevents 1 \N -136 0 1609808473 backup backup_auto_userscompletion 1 \N -137 0 1609808473 backup backup_auto_logs 0 \N -138 0 1609808473 backup backup_auto_histories 0 \N -139 0 1609808473 backup backup_auto_questionbank 1 \N -140 0 1609808473 backup backup_auto_groups 1 \N -141 0 1609808473 backup backup_auto_competencies 1 \N -142 0 1609808473 backup backup_auto_contentbankcontent 1 \N -143 0 1609808473 restore restore_general_users 1 \N -144 0 1609808473 restore restore_general_users_locked \N -145 0 1609808473 restore restore_general_enrolments 1 \N -146 0 1609808473 restore restore_general_enrolments_locked \N -147 0 1609808473 restore restore_general_role_assignments 1 \N -148 0 1609808473 restore restore_general_role_assignments_locked \N -149 0 1609808473 restore restore_general_activities 1 \N -150 0 1609808473 restore restore_general_activities_locked \N -151 0 1609808473 restore restore_general_blocks 1 \N -152 0 1609808473 restore restore_general_blocks_locked \N -153 0 1609808473 restore restore_general_filters 1 \N -154 0 1609808473 restore restore_general_filters_locked \N -155 0 1609808473 restore restore_general_comments 1 \N -156 0 1609808473 restore restore_general_comments_locked \N -157 0 1609808473 restore restore_general_badges 1 \N -158 0 1609808473 restore restore_general_badges_locked \N -159 0 1609808473 restore restore_general_calendarevents 1 \N -160 0 1609808473 restore restore_general_calendarevents_locked \N -161 0 1609808473 restore restore_general_userscompletion 1 \N -162 0 1609808473 restore restore_general_userscompletion_locked \N -163 0 1609808473 restore restore_general_logs 1 \N -164 0 1609808473 restore restore_general_logs_locked \N -165 0 1609808473 restore restore_general_histories 1 \N -166 0 1609808473 restore restore_general_histories_locked \N -167 0 1609808473 restore restore_general_groups 1 \N -168 0 1609808473 restore restore_general_groups_locked \N -169 0 1609808473 restore restore_general_competencies 1 \N -170 0 1609808473 restore restore_general_competencies_locked \N -171 0 1609808473 restore restore_general_contentbankcontent 1 \N -172 0 1609808473 restore restore_general_contentbankcontent_locked \N -173 0 1609808473 restore restore_merge_overwrite_conf 0 \N -174 0 1609808473 restore restore_merge_overwrite_conf_locked \N -175 0 1609808473 restore restore_merge_course_fullname 1 \N -176 0 1609808473 restore restore_merge_course_fullname_locked \N -177 0 1609808473 restore restore_merge_course_shortname 1 \N -178 0 1609808473 restore restore_merge_course_shortname_locked \N -179 0 1609808473 restore restore_merge_course_startdate 1 \N -180 0 1609808473 restore restore_merge_course_startdate_locked \N -181 0 1609808473 restore restore_replace_overwrite_conf 0 \N -182 0 1609808473 restore restore_replace_overwrite_conf_locked \N -183 0 1609808473 restore restore_replace_course_fullname 1 \N -184 0 1609808473 restore restore_replace_course_fullname_locked \N -185 0 1609808473 restore restore_replace_course_shortname 1 \N -186 0 1609808473 restore restore_replace_course_shortname_locked \N -187 0 1609808473 restore restore_replace_course_startdate 1 \N -188 0 1609808473 restore restore_replace_course_startdate_locked \N -189 0 1609808473 restore restore_replace_keep_roles_and_enrolments 0 \N -190 0 1609808473 restore restore_replace_keep_roles_and_enrolments_locked \N -191 0 1609808473 restore restore_replace_keep_groups_and_groupings 0 \N -192 0 1609808473 restore restore_replace_keep_groups_and_groupings_locked \N -193 0 1609808473 \N enableasyncbackup 0 \N -194 0 1609808473 backup backup_async_message_users 0 \N -195 0 1609808473 backup backup_async_message_subject Moodle {operation} completed successfully \N -196 0 1609808473 backup backup_async_message Hi {user_firstname},
Your {operation} (ID: {backupid}) has completed successfully.

You can access it here: {link}. \N -197 0 1609808473 \N grade_profilereport user \N -198 0 1609808473 \N grade_aggregationposition 1 \N -199 0 1609808473 \N grade_includescalesinaggregation 1 \N -200 0 1609808473 \N grade_hiddenasdate 0 \N -201 0 1609808473 \N gradepublishing 0 \N -202 0 1609808473 \N grade_export_exportfeedback 0 \N -203 0 1609808473 \N grade_export_displaytype 1 \N -204 0 1609808473 \N grade_export_decimalpoints 2 \N -205 0 1609808473 \N grade_navmethod 1 \N -206 0 1609808473 \N grade_export_userprofilefields firstname,lastname,idnumber,institution,department,email \N -207 0 1609808473 \N grade_export_customprofilefields \N -208 0 1609808473 \N recovergradesdefault 0 \N -209 0 1609808473 \N gradeexport \N -210 0 1609808473 \N unlimitedgrades 0 \N -211 0 1609808473 \N grade_report_showmin 1 \N -212 0 1609808473 \N gradepointmax 100 \N -213 0 1609808473 \N gradepointdefault 100 \N -214 0 1609808473 \N grade_minmaxtouse 1 \N -215 0 1609808473 \N grade_mygrades_report overview \N -216 0 1609808473 \N gradereport_mygradeurl \N -217 0 1609808473 \N grade_hideforcedsettings 1 \N -218 0 1609808473 \N grade_aggregation 13 \N -219 0 1609808473 \N grade_aggregation_flag 0 \N -220 0 1609808473 \N grade_aggregations_visible 13 \N -221 0 1609808473 \N grade_aggregateonlygraded 1 \N -222 0 1609808473 \N grade_aggregateonlygraded_flag 2 \N -223 0 1609808473 \N grade_aggregateoutcomes 0 \N -224 0 1609808473 \N grade_aggregateoutcomes_flag 2 \N -225 0 1609808473 \N grade_keephigh 0 \N -226 0 1609808473 \N grade_keephigh_flag 3 \N -227 0 1609808473 \N grade_droplow 0 \N -228 0 1609808473 \N grade_droplow_flag 2 \N -229 0 1609808473 \N grade_overridecat 1 \N -230 0 1609808473 \N grade_displaytype 1 \N -231 0 1609808473 \N grade_decimalpoints 2 \N -232 0 1609808473 \N grade_item_advanced iteminfo,idnumber,gradepass,plusfactor,multfactor,display,decimals,hiddenuntil,locktime \N -233 0 1609808473 \N grade_report_studentsperpage 100 \N -234 0 1609808473 \N grade_report_showonlyactiveenrol 1 \N -235 0 1609808473 \N grade_report_quickgrading 1 \N -236 0 1609808473 \N grade_report_showquickfeedback 0 \N -237 0 1609808473 \N grade_report_meanselection 1 \N -238 0 1609808473 \N grade_report_enableajax 0 \N -239 0 1609808473 \N grade_report_showcalculations 1 \N -240 0 1609808473 \N grade_report_showeyecons 0 \N -241 0 1609808473 \N grade_report_showaverages 1 \N -242 0 1609808473 \N grade_report_showlocks 0 \N -243 0 1609808473 \N grade_report_showranges 0 \N -244 0 1609808473 \N grade_report_showanalysisicon 1 \N -245 0 1609808473 \N grade_report_showuserimage 1 \N -246 0 1609808473 \N grade_report_showactivityicons 1 \N -247 0 1609808473 \N grade_report_shownumberofgrades 0 \N -248 0 1609808473 \N grade_report_averagesdisplaytype inherit \N -249 0 1609808473 \N grade_report_rangesdisplaytype inherit \N -250 0 1609808473 \N grade_report_averagesdecimalpoints inherit \N -251 0 1609808473 \N grade_report_rangesdecimalpoints inherit \N -252 0 1609808473 \N grade_report_historyperpage 50 \N -253 0 1609808473 \N grade_report_overview_showrank 0 \N -254 0 1609808473 \N grade_report_overview_showtotalsifcontainhidden 0 \N -255 0 1609808473 \N grade_report_user_showrank 0 \N -256 0 1609808473 \N grade_report_user_showpercentage 1 \N -257 0 1609808473 \N grade_report_user_showgrade 1 \N -258 0 1609808473 \N grade_report_user_showfeedback 1 \N -259 0 1609808473 \N grade_report_user_showrange 1 \N -260 0 1609808473 \N grade_report_user_showweight 1 \N -261 0 1609808473 \N grade_report_user_showaverage 0 \N -262 0 1609808473 \N grade_report_user_showlettergrade 0 \N -263 0 1609808473 \N grade_report_user_rangedecimals 0 \N -264 0 1609808473 \N grade_report_user_showhiddenitems 1 \N -265 0 1609808473 \N grade_report_user_showtotalsifcontainhidden 0 \N -266 0 1609808473 \N grade_report_user_showcontributiontocoursetotal 1 \N -267 0 1609808474 analytics modeinstruction \N -268 0 1609808474 analytics percentonline 0 \N -269 0 1609808474 analytics typeinstitution \N -270 0 1609808474 analytics levelinstitution \N -271 0 1609808474 analytics predictionsprocessor \\mlbackend_php\\processor \N -372 0 1609808475 \N maxeditingtime 1800 \N -373 0 1609808475 \N extendedusernamechars 0 \N -272 0 1609808474 analytics defaulttimesplittingsevaluation \\core\\analytics\\time_splitting\\quarters_accum,\\core\\analytics\\time_splitting\\quarters,\\core\\analytics\\time_splitting\\single_range \N -273 0 1609808474 analytics modeloutputdir \N -274 0 1609808474 analytics onlycli 1 \N -275 0 1609808474 analytics modeltimelimit 1200 \N -276 0 1609808474 core_competency enabled 1 \N -277 0 1609808474 core_competency pushcourseratingstouserplans 1 \N -278 0 1609808474 \N badges_defaultissuername \N -279 0 1609808474 \N badges_defaultissuercontact \N -280 0 1609808474 \N badges_badgesalt badges1609808466 \N -281 0 1609808474 \N badges_allowcoursebadges 1 \N -282 0 1609808474 \N badges_allowexternalbackpack 1 \N -283 0 1609808474 \N rememberuserlicensepref 1 \N -284 0 1609808474 \N timezone Europe/London \N -285 0 1609808474 \N forcetimezone 99 \N -286 0 1609808474 \N country 0 \N -287 0 1609808474 \N defaultcity \N -288 0 1609808474 \N geoip2file /var/www/moodledata/geoip/GeoLite2-City.mmdb \N -289 0 1609808474 \N googlemapkey3 \N -290 0 1609808474 \N allcountrycodes \N -291 0 1609808474 \N autolang 1 \N -292 0 1609808475 \N lang en \N -293 0 1609808475 \N langmenu 1 \N -294 0 1609808475 \N langlist \N -295 0 1609808475 \N langcache 1 \N -296 0 1609808475 \N langstringcache 1 \N -297 0 1609808475 \N locale \N -298 0 1609808475 \N latinexcelexport 0 \N -299 0 1609808475 \N messaging 1 \N -300 0 1609808475 \N messagingallusers 0 \N -301 0 1609808475 \N messagingdefaultpressenter 1 \N -302 0 1609808475 \N messagingdeletereadnotificationsdelay 604800 \N -303 0 1609808475 \N messagingdeleteallnotificationsdelay 2620800 \N -304 0 1609808475 \N messagingallowemailoverride 0 \N -305 0 1609808475 \N requiremodintro 0 \N -306 0 1609808475 \N registerauth \N -307 0 1609808475 \N authloginviaemail 0 \N -308 0 1609808475 \N allowaccountssameemail 0 \N -309 0 1609808475 \N authpreventaccountcreation 0 \N -310 0 1609808475 \N loginpageautofocus 0 \N -311 0 1609808475 \N guestloginbutton 1 \N -312 0 1609808475 \N limitconcurrentlogins 0 \N -313 0 1609808475 \N alternateloginurl \N -314 0 1609808475 \N forgottenpasswordurl \N -315 0 1609808475 \N auth_instructions \N -316 0 1609808475 \N allowemailaddresses \N -317 0 1609808475 \N denyemailaddresses \N -318 0 1609808475 \N verifychangedemail 1 \N -319 0 1609808475 \N recaptchapublickey \N -320 0 1609808475 \N recaptchaprivatekey \N -321 0 1609808475 cachestore_apcu testperformance 0 \N -322 0 1609808475 cachestore_memcached testservers \N -323 0 1609808475 cachestore_mongodb testserver \N -324 0 1609808475 cachestore_redis test_server \N -325 0 1609808475 cachestore_redis test_password \N -326 0 1609808475 \N filteruploadedfiles 0 \N -327 0 1609808475 \N filtermatchoneperpage 0 \N -328 0 1609808475 \N filtermatchonepertext 0 \N -329 0 1609808475 \N media_default_width 400 \N -330 0 1609808475 \N media_default_height 300 \N -331 0 1609808475 \N portfolio_moderate_filesize_threshold 1048576 \N -332 0 1609808475 \N portfolio_high_filesize_threshold 5242880 \N -333 0 1609808475 \N portfolio_moderate_db_threshold 20 \N -334 0 1609808475 \N portfolio_high_db_threshold 50 \N -335 0 1609808475 question_preview behaviour deferredfeedback \N -336 0 1609808475 question_preview correctness 1 \N -337 0 1609808475 question_preview marks 2 \N -338 0 1609808475 question_preview markdp 2 \N -339 0 1609808475 question_preview feedback 1 \N -340 0 1609808475 question_preview generalfeedback 1 \N -341 0 1609808475 question_preview rightanswer 1 \N -342 0 1609808475 question_preview history 0 \N -343 0 1609808475 \N repositorycacheexpire 120 \N -344 0 1609808475 \N repositorygetfiletimeout 30 \N -345 0 1609808475 \N repositorysyncfiletimeout 1 \N -346 0 1609808475 \N repositorysyncimagetimeout 3 \N -347 0 1609808475 \N repositoryallowexternallinks 1 \N -348 0 1609808475 \N legacyfilesinnewcourses 0 \N -349 0 1609808475 \N legacyfilesaddallowed 1 \N -350 0 1609808475 \N searchengine simpledb \N -351 0 1609808475 \N searchindexwhendisabled 0 \N -352 0 1609808475 \N searchindextime 600 \N -353 0 1609808475 \N searchallavailablecourses 0 \N -354 0 1609808475 \N searchincludeallcourses 0 \N -355 0 1609808475 \N searchenablecategories 0 \N -356 0 1609808475 \N searchdefaultcategory core-all \N -357 0 1609808475 \N searchhideallcategory 0 \N -358 0 1609808475 \N enablewsdocumentation 0 \N -359 0 1609808475 \N allowbeforeblock 0 \N -360 0 1609808475 \N allowedip \N -361 0 1609808475 \N blockedip \N -362 0 1609808475 \N protectusernames 1 \N -363 0 1609808475 \N forcelogin 0 \N -364 0 1609808475 \N forceloginforprofiles 1 \N -365 0 1609808475 \N forceloginforprofileimage 0 \N -366 0 1609808475 \N opentowebcrawlers 0 \N -367 0 1609808475 \N allowindexing 0 \N -368 0 1609808475 \N maxbytes 0 \N -369 0 1609808475 \N userquota 104857600 \N -370 0 1609808475 \N allowobjectembed 0 \N -371 0 1609808475 \N enabletrusttext 0 \N -374 0 1609808475 \N keeptagnamecase 1 \N -375 0 1609808475 \N profilesforenrolledusersonly 1 \N -376 0 1609808475 \N cronclionly 1 \N -377 0 1609808475 \N cronremotepassword \N -378 0 1609808475 tool_task enablerunnow 1 \N -379 0 1609808475 \N lockoutthreshold 0 \N -380 0 1609808475 \N lockoutwindow 1800 \N -381 0 1609808475 \N lockoutduration 1800 \N -382 0 1609808475 \N passwordpolicy 1 \N -383 0 1609808475 \N minpasswordlength 8 \N -384 0 1609808475 \N minpassworddigits 1 \N -385 0 1609808475 \N minpasswordlower 1 \N -386 0 1609808475 \N minpasswordupper 1 \N -387 0 1609808475 \N minpasswordnonalphanum 1 \N -388 0 1609808475 \N maxconsecutiveidentchars 0 \N -389 0 1609808475 \N passwordpolicycheckonlogin 0 \N -390 0 1609808475 \N passwordreuselimit 0 \N -391 0 1609808475 \N pwresettime 1800 \N -392 0 1609808475 \N passwordchangelogout 0 \N -393 0 1609808475 \N passwordchangetokendeletion 0 \N -394 0 1609808475 \N tokenduration 7257600 \N -395 0 1609808475 \N groupenrolmentkeypolicy 1 \N -396 0 1609808475 \N disableuserimages 0 \N -397 0 1609808475 \N emailchangeconfirmation 1 \N -398 0 1609808475 \N rememberusername 2 \N -399 0 1609808475 \N strictformsrequired 0 \N -400 0 1609808475 \N cookiesecure 1 \N -401 0 1609808475 \N cookiehttponly 0 \N -402 0 1609808475 \N allowframembedding 0 \N -403 0 1609808475 \N curlsecurityblockedhosts \N -404 0 1609808475 \N curlsecurityallowedport \N -405 0 1609808475 \N displayloginfailures 0 \N -406 0 1609808475 \N notifyloginfailures \N -407 0 1609808475 \N notifyloginthreshold 10 \N -408 0 1609808475 \N themelist \N -409 0 1609808475 \N themedesignermode 0 \N -410 0 1609808475 \N allowuserthemes 0 \N -411 0 1609808475 \N allowcoursethemes 0 \N -412 0 1609808475 \N allowcategorythemes 0 \N -413 0 1609808475 \N allowcohortthemes 0 \N -414 0 1609808475 \N allowthemechangeonurl 0 \N -415 0 1609808475 \N allowuserblockhiding 1 \N -416 0 1609808475 \N langmenuinsecurelayout 0 \N -417 0 1609808475 \N logininfoinsecurelayout 0 \N -418 0 1609808475 \N custommenuitems \N -419 0 1609808475 \N customusermenuitems grades,grades|/grade/report/mygrades.php|t/grades\nmessages,message|/message/index.php|t/message\npreferences,moodle|/user/preferences.php|t/preferences \N -420 0 1609808475 \N enabledevicedetection 1 \N -421 0 1609808475 \N devicedetectregex [] \N -422 0 1609808475 theme_boost preset default.scss \N -423 0 1609808475 theme_boost presetfiles \N -424 0 1609808475 theme_boost backgroundimage \N -425 0 1609808475 theme_boost brandcolor \N -426 0 1609808475 theme_boost scsspre \N -427 0 1609808475 theme_boost scss \N -428 0 1609808475 theme_classic navbardark 0 \N -429 0 1609808475 theme_classic preset default.scss \N -430 0 1609808475 theme_classic presetfiles \N -431 0 1609808475 theme_classic backgroundimage \N -432 0 1609808475 theme_classic brandcolor \N -433 0 1609808475 theme_classic scsspre \N -434 0 1609808475 theme_classic scss \N -435 0 1609808475 core_admin logo \N -436 0 1609808475 core_admin logocompact \N -437 0 1609808475 core_admin coursecolor1 #81ecec \N -438 0 1609808475 core_admin coursecolor2 #74b9ff \N -439 0 1609808475 core_admin coursecolor3 #a29bfe \N -440 0 1609808475 core_admin coursecolor4 #dfe6e9 \N -441 0 1609808475 core_admin coursecolor5 #00b894 \N -442 0 1609808475 core_admin coursecolor6 #0984e3 \N -443 0 1609808475 core_admin coursecolor7 #b2bec3 \N -444 0 1609808475 core_admin coursecolor8 #fdcb6e \N -445 0 1609808475 core_admin coursecolor9 #fd79a8 \N -446 0 1609808475 core_admin coursecolor10 #6c5ce7 \N -447 0 1609808475 \N calendartype gregorian \N -448 0 1609808475 \N calendar_adminseesall 0 \N -449 0 1609808475 \N calendar_site_timeformat 0 \N -450 0 1609808475 \N calendar_startwday 1 \N -451 0 1609808475 \N calendar_weekend 65 \N -452 0 1609808475 \N calendar_lookahead 21 \N -453 0 1609808475 \N calendar_maxevents 10 \N -454 0 1609808475 \N enablecalendarexport 1 \N -455 0 1609808475 \N calendar_customexport 1 \N -456 0 1609808475 \N calendar_exportlookahead 365 \N -457 0 1609808475 \N calendar_exportlookback 5 \N -458 0 1609808475 \N calendar_exportsalt D52uRsgLflbBciD7d3mc2HEUHSgAOXl5iRAuqH8lTj2OkTkZ9uwhUZllCDJz \N -459 0 1609808475 \N calendar_showicalsource 1 \N -460 0 1609808476 \N useblogassociations 1 \N -461 0 1609808476 \N bloglevel 4 \N -462 0 1609808476 \N useexternalblogs 1 \N -463 0 1609808476 \N externalblogcrontime 86400 \N -464 0 1609808476 \N maxexternalblogsperuser 1 \N -465 0 1609808476 \N blogusecomments 1 \N -466 0 1609808476 \N blogshowcommentscount 1 \N -467 0 1609808476 \N defaulthomepage 1 \N -468 0 1609808476 \N allowguestmymoodle 1 \N -469 0 1609808476 \N navshowfullcoursenames 0 \N -470 0 1609808476 \N navshowcategories 1 \N -471 0 1609808476 \N navshowmycoursecategories 0 \N -472 0 1609808476 \N navshowallcourses 0 \N -473 0 1609808476 \N navsortmycoursessort sortorder \N -474 0 1609808476 \N navsortmycourseshiddenlast 1 \N -475 0 1609808476 \N navcourselimit 10 \N -476 0 1609808476 \N usesitenameforsitepages 0 \N -477 0 1609808476 \N linkadmincategories 1 \N -478 0 1609808476 \N linkcoursesections 1 \N -479 0 1609808476 \N navshowfrontpagemods 1 \N -480 0 1609808476 \N navadduserpostslinks 1 \N -481 0 1609808476 \N formatstringstriptags 1 \N -482 0 1609808476 \N emoticons [{"text":":-)","imagename":"s\\/smiley","imagecomponent":"core","altidentifier":"smiley","altcomponent":"core_pix"},{"text":":)","imagename":"s\\/smiley","imagecomponent":"core","altidentifier":"smiley","altcomponent":"core_pix"},{"text":":-D","imagename":"s\\/biggrin","imagecomponent":"core","altidentifier":"biggrin","altcomponent":"core_pix"},{"text":";-)","imagename":"s\\/wink","imagecomponent":"core","altidentifier":"wink","altcomponent":"core_pix"},{"text":":-\\/","imagename":"s\\/mixed","imagecomponent":"core","altidentifier":"mixed","altcomponent":"core_pix"},{"text":"V-.","imagename":"s\\/thoughtful","imagecomponent":"core","altidentifier":"thoughtful","altcomponent":"core_pix"},{"text":":-P","imagename":"s\\/tongueout","imagecomponent":"core","altidentifier":"tongueout","altcomponent":"core_pix"},{"text":":-p","imagename":"s\\/tongueout","imagecomponent":"core","altidentifier":"tongueout","altcomponent":"core_pix"},{"text":"B-)","imagename":"s\\/cool","imagecomponent":"core","altidentifier":"cool","altcomponent":"core_pix"},{"text":"^-)","imagename":"s\\/approve","imagecomponent":"core","altidentifier":"approve","altcomponent":"core_pix"},{"text":"8-)","imagename":"s\\/wideeyes","imagecomponent":"core","altidentifier":"wideeyes","altcomponent":"core_pix"},{"text":":o)","imagename":"s\\/clown","imagecomponent":"core","altidentifier":"clown","altcomponent":"core_pix"},{"text":":-(","imagename":"s\\/sad","imagecomponent":"core","altidentifier":"sad","altcomponent":"core_pix"},{"text":":(","imagename":"s\\/sad","imagecomponent":"core","altidentifier":"sad","altcomponent":"core_pix"},{"text":"8-.","imagename":"s\\/shy","imagecomponent":"core","altidentifier":"shy","altcomponent":"core_pix"},{"text":":-I","imagename":"s\\/blush","imagecomponent":"core","altidentifier":"blush","altcomponent":"core_pix"},{"text":":-X","imagename":"s\\/kiss","imagecomponent":"core","altidentifier":"kiss","altcomponent":"core_pix"},{"text":"8-o","imagename":"s\\/surprise","imagecomponent":"core","altidentifier":"surprise","altcomponent":"core_pix"},{"text":"P-|","imagename":"s\\/blackeye","imagecomponent":"core","altidentifier":"blackeye","altcomponent":"core_pix"},{"text":"8-[","imagename":"s\\/angry","imagecomponent":"core","altidentifier":"angry","altcomponent":"core_pix"},{"text":"(grr)","imagename":"s\\/angry","imagecomponent":"core","altidentifier":"angry","altcomponent":"core_pix"},{"text":"xx-P","imagename":"s\\/dead","imagecomponent":"core","altidentifier":"dead","altcomponent":"core_pix"},{"text":"|-.","imagename":"s\\/sleepy","imagecomponent":"core","altidentifier":"sleepy","altcomponent":"core_pix"},{"text":"}-]","imagename":"s\\/evil","imagecomponent":"core","altidentifier":"evil","altcomponent":"core_pix"},{"text":"(h)","imagename":"s\\/heart","imagecomponent":"core","altidentifier":"heart","altcomponent":"core_pix"},{"text":"(heart)","imagename":"s\\/heart","imagecomponent":"core","altidentifier":"heart","altcomponent":"core_pix"},{"text":"(y)","imagename":"s\\/yes","imagecomponent":"core","altidentifier":"yes","altcomponent":"core"},{"text":"(n)","imagename":"s\\/no","imagecomponent":"core","altidentifier":"no","altcomponent":"core"},{"text":"(martin)","imagename":"s\\/martin","imagecomponent":"core","altidentifier":"martin","altcomponent":"core_pix"},{"text":"( )","imagename":"s\\/egg","imagecomponent":"core","altidentifier":"egg","altcomponent":"core_pix"}] \N -483 0 1609808476 \N docroot https://docs.moodle.org \N -484 0 1609808476 \N doclang \N -485 0 1609808476 \N doctonewwindow 0 \N -486 0 1609808476 \N coursecontactduplicates 0 \N -487 0 1609808476 \N courselistshortnames 0 \N -488 0 1609808476 \N coursesperpage 20 \N -489 0 1609808476 \N courseswithsummarieslimit 10 \N -490 0 1609808476 \N courseoverviewfileslimit 1 \N -491 0 1609808476 \N courseoverviewfilesext .jpg,.gif,.png \N -492 0 1609808476 \N coursegraceperiodbefore 0 \N -493 0 1609808476 \N coursegraceperiodafter 0 \N -494 0 1609808476 \N useexternalyui 0 \N -495 0 1609808476 \N yuicomboloading 1 \N -496 0 1609808476 \N cachejs 1 \N -497 0 1609808476 \N modchooserdefault 1 \N -498 0 1609808476 \N additionalhtmlhead \N -499 0 1609808476 \N additionalhtmltopofbody \N -500 0 1609808476 \N additionalhtmlfooter \N -501 0 1609808476 \N cachetemplates 1 \N -502 0 1609808476 \N pathtophp \N -503 0 1609808476 \N pathtodu \N -504 0 1609808476 \N aspellpath \N -505 0 1609808476 \N pathtodot \N -506 0 1609808476 \N pathtogs /usr/bin/gs \N -507 0 1609808476 \N pathtopython \N -508 0 1609808476 \N supportname Admin User \N -509 0 1609808476 \N supportemail \N -510 0 1609808476 \N supportpage \N -511 0 1609808476 \N dbsessions 0 \N -512 0 1609808476 \N sessioncookie \N -513 0 1609808476 \N sessioncookiepath \N -514 0 1609808476 \N sessioncookiedomain \N -515 0 1609808476 \N statsfirstrun none \N -516 0 1609808476 \N statsmaxruntime 0 \N -517 0 1609808476 \N statsruntimedays 31 \N -518 0 1609808476 \N statsuserthreshold 0 \N -519 0 1609808476 \N slasharguments 1 \N -520 0 1609808476 \N getremoteaddrconf 3 \N -521 0 1609808476 \N reverseproxyignore \N -522 0 1609808476 \N proxyhost \N -523 0 1609808476 \N proxyport 0 \N -524 0 1609808476 \N proxytype HTTP \N -525 0 1609808476 \N proxyuser \N -526 0 1609808476 \N proxypassword \N -527 0 1609808476 \N proxybypass localhost, 127.0.0.1 \N -528 0 1609808476 \N maintenance_enabled 0 \N -529 0 1609808476 \N maintenance_message \N -530 0 1609808476 \N deleteunconfirmed 168 \N -531 0 1609808476 \N deleteincompleteusers 0 \N -532 0 1609808476 \N disablegradehistory 0 \N -533 0 1609808476 \N gradehistorylifetime 0 \N -534 0 1609808476 \N tempdatafoldercleanup 168 \N -535 0 1609808476 \N filescleanupperiod 86400 \N -536 0 1609808476 \N extramemorylimit 512M \N -537 0 1609808476 \N maxtimelimit 0 \N -538 0 1609808476 \N curlcache 120 \N -539 0 1609808476 \N curltimeoutkbitrate 56 \N -540 0 1609808476 \N task_scheduled_concurrency_limit 3 \N -541 0 1609808476 \N task_scheduled_max_runtime 1800 \N -542 0 1609808476 \N task_adhoc_concurrency_limit 3 \N -543 0 1609808476 \N task_adhoc_max_runtime 1800 \N -544 0 1609808476 \N task_logmode 1 \N -545 0 1609808476 \N task_logtostdout 1 \N -546 0 1609808476 \N task_logretention 2419200 \N -547 0 1609808476 \N task_logretainruns 20 \N -548 0 1609808476 \N smtphosts \N -549 0 1609808476 \N smtpsecure \N -550 0 1609808476 \N smtpauthtype LOGIN \N -551 0 1609808476 \N smtpuser \N -552 0 1609808476 \N smtppass \N -553 0 1609808476 \N smtpmaxbulk 1 \N -554 0 1609808476 \N allowedemaildomains \N -555 0 1609808476 \N sitemailcharset 0 \N -556 0 1609808476 \N allowusermailcharset 0 \N -557 0 1609808476 \N allowattachments 1 \N -558 0 1609808476 \N mailnewline LF \N -559 0 1609808476 \N emailfromvia 1 \N -560 0 1609808476 \N emailsubjectprefix \N -561 0 1609808476 \N updateautocheck 1 \N -562 0 1609808476 \N updateminmaturity 200 \N -563 0 1609808476 \N updatenotifybuilds 0 \N -564 0 1609808476 \N dndallowtextandlinks 0 \N -565 0 1609808476 \N pathtosassc \N -566 0 1609808476 \N contextlocking 0 \N -567 0 1609808476 \N contextlockappliestoadmin 1 \N -568 0 1609808476 \N forceclean 0 \N -569 0 1609808476 \N enablecourserelativedates 0 \N -570 0 1609808476 \N debug 0 \N -571 0 1609808476 \N debugdisplay 0 \N -572 0 1609808476 \N perfdebug 7 \N -573 0 1609808476 \N debugstringids 0 \N -574 0 1609808476 \N debugvalidators 0 \N -575 0 1609808476 \N debugpageinfo 0 \N -576 0 1609808476 \N profilingenabled 0 \N -577 0 1609808476 \N profilingincluded \N -578 0 1609808476 \N profilingexcluded \N -579 0 1609808476 \N profilingautofrec 0 \N -580 0 1609808476 \N profilingallowme 0 \N -581 0 1609808476 \N profilingallowall 0 \N -582 0 1609808476 \N profilingslow 0 \N -583 0 1609808476 \N profilinglifetime 1440 \N -584 0 1609808476 \N profilingimportprefix (I) \N -585 0 1609808478 \N calendar_exportsalt BZbQVUNtdpSQs8j5gGrndp3LMDkPopmWa5KiqxGMgvvQjS6LHeHte4jUalFG D52uRsgLflbBciD7d3mc2HEUHSgAOXl5iRAuqH8lTj2OkTkZ9uwhUZllCDJz -586 0 1609808496 activitynames filter_active 1 -587 0 1609808496 displayh5p filter_active 1 -588 0 1609808496 emoticon filter_active 1 -589 0 1609808496 mathjaxloader filter_active 1 -590 0 1609808496 mediaplugin filter_active 1 -591 0 1609808496 urltolink filter_active 1 -592 2 1609884655 \N notloggedinroleid 6 \N -593 2 1609884655 \N guestroleid 6 \N -594 2 1609884655 \N defaultuserroleid 7 \N -595 2 1609884655 \N creatornewroleid 3 \N -596 2 1609884655 \N restorernewroleid 3 \N -597 2 1609884655 tool_dataprivacy contactdataprotectionofficer 0 \N -598 2 1609884655 tool_dataprivacy automaticdataexportapproval 0 \N -599 2 1609884655 tool_dataprivacy automaticdatadeletionapproval 0 \N -600 2 1609884655 tool_dataprivacy automaticdeletionrequests 1 \N -601 2 1609884655 tool_dataprivacy privacyrequestexpiry 604800 \N -602 2 1609884655 tool_dataprivacy requireallenddatesforuserdeletion 1 \N -603 2 1609884655 tool_dataprivacy showdataretentionsummary 1 \N -604 2 1609884655 tool_log exportlog 1 \N -605 2 1609884655 \N sitepolicyhandler \N -606 2 1609884655 \N gradebookroles 5 \N -607 2 1609884655 analytics logstore logstore_standard \N -608 2 1609884655 \N h5plibraryhandler h5plib_v124 \N -609 2 1609884655 \N jabberhost \N -610 2 1609884655 \N jabberserver \N -611 2 1609884655 \N jabberusername \N -612 2 1609884655 \N jabberpassword \N -613 2 1609884655 \N jabberport 5222 \N -614 2 1609884655 \N airnotifierurl https://messages.moodle.net \N -615 2 1609884655 \N airnotifierport 443 \N -616 2 1609884655 \N airnotifiermobileappname com.moodle.moodlemobile \N -617 2 1609884655 \N airnotifierappname commoodlemoodlemobile \N -618 2 1609884655 \N airnotifieraccesskey \N -619 2 1609884655 assign feedback_plugin_for_gradebook assignfeedback_comments \N -620 2 1609884655 assign showrecentsubmissions 0 \N -621 2 1609884655 assign submissionreceipts 1 \N -622 2 1609884655 assign submissionstatement This submission is my own work, except where I have acknowledged the use of the works of other people. \N -623 2 1609884655 assign submissionstatementteamsubmission This submission is the work of my group, except where we have acknowledged the use of the works of other people. \N -624 2 1609884655 assign submissionstatementteamsubmissionallsubmit This submission is my own work as a group member, except where I have acknowledged the use of the works of other people. \N -625 2 1609884655 assign maxperpage -1 \N -626 2 1609884655 assign alwaysshowdescription 1 \N -627 2 1609884655 assign alwaysshowdescription_adv \N -628 2 1609884655 assign alwaysshowdescription_locked \N -629 2 1609884655 assign allowsubmissionsfromdate 0 \N -630 2 1609884655 assign allowsubmissionsfromdate_enabled 1 \N -631 2 1609884655 assign allowsubmissionsfromdate_adv \N -632 2 1609884655 assign duedate 604800 \N -633 2 1609884655 assign duedate_enabled 1 \N -634 2 1609884655 assign duedate_adv \N -635 2 1609884655 assign cutoffdate 1209600 \N -636 2 1609884655 assign cutoffdate_enabled \N -637 2 1609884655 assign cutoffdate_adv \N -638 2 1609884655 assign gradingduedate 1209600 \N -639 2 1609884655 assign gradingduedate_enabled 1 \N -640 2 1609884655 assign gradingduedate_adv \N -641 2 1609884655 assign submissiondrafts 0 \N -642 2 1609884655 assign submissiondrafts_adv \N -643 2 1609884655 assign submissiondrafts_locked \N -644 2 1609884655 assign requiresubmissionstatement 0 \N -645 2 1609884655 assign requiresubmissionstatement_adv \N -646 2 1609884655 assign requiresubmissionstatement_locked \N -647 2 1609884655 assign attemptreopenmethod none \N -648 2 1609884655 assign attemptreopenmethod_adv \N -649 2 1609884655 assign attemptreopenmethod_locked \N -650 2 1609884655 assign maxattempts -1 \N -651 2 1609884655 assign maxattempts_adv \N -652 2 1609884655 assign maxattempts_locked \N -653 2 1609884655 assign teamsubmission 0 \N -654 2 1609884655 assign teamsubmission_adv \N -655 2 1609884655 assign teamsubmission_locked \N -656 2 1609884655 assign preventsubmissionnotingroup 0 \N -657 2 1609884655 assign preventsubmissionnotingroup_adv \N -658 2 1609884655 assign preventsubmissionnotingroup_locked \N -659 2 1609884655 assign requireallteammemberssubmit 0 \N -660 2 1609884655 assign requireallteammemberssubmit_adv \N -661 2 1609884655 assign requireallteammemberssubmit_locked \N -662 2 1609884655 assign teamsubmissiongroupingid \N -663 2 1609884655 assign teamsubmissiongroupingid_adv \N -664 2 1609884655 assign sendnotifications 0 \N -665 2 1609884655 assign sendnotifications_adv \N -666 2 1609884655 assign sendnotifications_locked \N -667 2 1609884655 assign sendlatenotifications 0 \N -668 2 1609884655 assign sendlatenotifications_adv \N -669 2 1609884655 assign sendlatenotifications_locked \N -670 2 1609884655 assign sendstudentnotifications 1 \N -671 2 1609884655 assign sendstudentnotifications_adv \N -672 2 1609884655 assign sendstudentnotifications_locked \N -673 2 1609884655 assign blindmarking 0 \N -674 2 1609884655 assign blindmarking_adv \N -675 2 1609884655 assign blindmarking_locked \N -676 2 1609884655 assign hidegrader 0 \N -677 2 1609884655 assign hidegrader_adv \N -678 2 1609884655 assign hidegrader_locked \N -679 2 1609884655 assign markingworkflow 0 \N -680 2 1609884655 assign markingworkflow_adv \N -681 2 1609884655 assign markingworkflow_locked \N -682 2 1609884655 assign markingallocation 0 \N -683 2 1609884655 assign markingallocation_adv \N -684 2 1609884655 assign markingallocation_locked \N -685 2 1609884655 assignsubmission_file default 1 \N -686 2 1609884655 assignsubmission_file maxfiles 20 \N -687 2 1609884655 assignsubmission_file filetypes \N -688 2 1609884655 assignsubmission_file maxbytes 0 \N -689 2 1609884655 assignsubmission_onlinetext default 0 \N -690 2 1609884655 assignfeedback_comments default 1 \N -691 2 1609884655 assignfeedback_comments inline 0 \N -692 2 1609884655 assignfeedback_comments inline_adv \N -693 2 1609884655 assignfeedback_comments inline_locked \N -694 2 1609884655 assignfeedback_editpdf default 1 \N -695 2 1609884655 assignfeedback_editpdf stamps \N -696 2 1609884655 assignfeedback_file default 0 \N -697 2 1609884655 assignfeedback_offline default 0 \N -698 2 1609884655 book numberingoptions 0,1,2,3 \N -699 2 1609884655 book navoptions 0,1,2 \N -700 2 1609884655 book numbering 1 \N -701 2 1609884655 book navstyle 1 \N -702 2 1609884655 \N chat_method ajax \N -703 2 1609884655 \N chat_refresh_userlist 10 \N -704 2 1609884655 \N chat_old_ping 35 \N -705 2 1609884655 \N chat_refresh_room 5 \N -706 2 1609884655 \N chat_normal_updatemode jsupdate \N -707 2 1609884655 \N chat_serverhost connectbox \N -708 2 1609884655 \N chat_serverip 127.0.0.1 \N -709 2 1609884655 \N chat_serverport 9111 \N -710 2 1609884655 \N chat_servermax 100 \N -711 2 1609884655 \N data_enablerssfeeds 0 \N -712 2 1609884655 \N feedback_allowfullanonymous 0 \N -713 2 1609884655 resource framesize 130 \N -714 2 1609884655 resource displayoptions 0,1,4,5,6 \N -715 2 1609884655 resource printintro 1 \N -716 2 1609884655 resource display 0 \N -717 2 1609884655 resource showsize 0 \N -718 2 1609884655 resource showtype 0 \N -719 2 1609884655 resource showdate 0 \N -720 2 1609884655 resource popupwidth 620 \N -721 2 1609884655 resource popupheight 450 \N -722 2 1609884655 resource filterfiles 0 \N -723 2 1609884655 folder showexpanded 1 \N -724 2 1609884655 folder maxsizetodownload 0 \N -725 2 1609884655 \N forum_displaymode 3 \N -726 2 1609884655 \N forum_shortpost 300 \N -727 2 1609884655 \N forum_longpost 600 \N -728 2 1609884655 \N forum_manydiscussions 100 \N -729 2 1609884655 \N forum_maxbytes 512000 \N -730 2 1609884655 \N forum_maxattachments 9 \N -731 2 1609884655 \N forum_subscription 0 \N -732 2 1609884655 \N forum_trackingtype 1 \N -733 2 1609884655 \N forum_trackreadposts 1 \N -734 2 1609884655 \N forum_allowforcedreadtracking 0 \N -735 2 1609884655 \N forum_oldpostdays 14 \N -736 2 1609884655 \N forum_usermarksread 0 \N -737 2 1609884655 \N forum_cleanreadtime 2 \N -738 2 1609884655 \N digestmailtime 17 \N -739 2 1609884655 \N forum_enablerssfeeds 0 \N -740 2 1609884655 \N forum_enabletimedposts 1 \N -741 2 1609884655 \N glossary_entbypage 10 \N -742 2 1609884655 \N glossary_dupentries 0 \N -743 2 1609884655 \N glossary_allowcomments 0 \N -744 2 1609884655 \N glossary_linkbydefault 1 \N -745 2 1609884655 \N glossary_defaultapproval 1 \N -746 2 1609884655 \N glossary_enablerssfeeds 0 \N -747 2 1609884655 \N glossary_linkentries 0 \N -748 2 1609884655 \N glossary_casesensitive 0 \N -749 2 1609884655 \N glossary_fullmatch 0 \N -750 2 1609884655 imscp keepold 1 \N -751 2 1609884655 imscp keepold_adv \N -752 2 1609884655 label dndmedia 1 \N -753 2 1609884655 label dndresizewidth 400 \N -754 2 1609884655 label dndresizeheight 400 \N -755 2 1609884655 mod_lesson mediafile \N -756 2 1609884655 mod_lesson mediafile_adv 1 \N -757 2 1609884655 mod_lesson mediawidth 640 \N -758 2 1609884655 mod_lesson mediaheight 480 \N -759 2 1609884655 mod_lesson mediaclose 0 \N -760 2 1609884655 mod_lesson progressbar 0 \N -761 2 1609884655 mod_lesson progressbar_adv \N -762 2 1609884655 mod_lesson ongoing 0 \N -763 2 1609884656 mod_lesson ongoing_adv 1 \N -764 2 1609884656 mod_lesson displayleftmenu 0 \N -765 2 1609884656 mod_lesson displayleftmenu_adv \N -766 2 1609884656 mod_lesson displayleftif 0 \N -767 2 1609884656 mod_lesson displayleftif_adv 1 \N -768 2 1609884656 mod_lesson slideshow 0 \N -769 2 1609884656 mod_lesson slideshow_adv 1 \N -770 2 1609884656 mod_lesson slideshowwidth 640 \N -771 2 1609884656 mod_lesson slideshowheight 480 \N -772 2 1609884656 mod_lesson slideshowbgcolor #FFFFFF \N -773 2 1609884656 mod_lesson maxanswers 5 \N -774 2 1609884656 mod_lesson maxanswers_adv 1 \N -775 2 1609884656 mod_lesson defaultfeedback 0 \N -776 2 1609884656 mod_lesson defaultfeedback_adv 1 \N -777 2 1609884656 mod_lesson activitylink \N -778 2 1609884656 mod_lesson activitylink_adv 1 \N -779 2 1609884656 mod_lesson timelimit 0 \N -780 2 1609884656 mod_lesson timelimit_adv \N -781 2 1609884656 mod_lesson password 0 \N -782 2 1609884656 mod_lesson password_adv 1 \N -783 2 1609884656 mod_lesson modattempts 0 \N -784 2 1609884656 mod_lesson modattempts_adv \N -785 2 1609884656 mod_lesson displayreview 0 \N -786 2 1609884656 mod_lesson displayreview_adv \N -787 2 1609884656 mod_lesson maximumnumberofattempts 1 \N -788 2 1609884656 mod_lesson maximumnumberofattempts_adv \N -789 2 1609884656 mod_lesson defaultnextpage 0 \N -790 2 1609884656 mod_lesson defaultnextpage_adv 1 \N -791 2 1609884656 mod_lesson numberofpagestoshow 1 \N -792 2 1609884656 mod_lesson numberofpagestoshow_adv 1 \N -793 2 1609884656 mod_lesson practice 0 \N -794 2 1609884656 mod_lesson practice_adv \N -795 2 1609884656 mod_lesson customscoring 1 \N -796 2 1609884656 mod_lesson customscoring_adv 1 \N -797 2 1609884656 mod_lesson retakesallowed 0 \N -798 2 1609884656 mod_lesson retakesallowed_adv \N -799 2 1609884656 mod_lesson handlingofretakes 0 \N -800 2 1609884656 mod_lesson handlingofretakes_adv 1 \N -801 2 1609884656 mod_lesson minimumnumberofquestions 0 \N -802 2 1609884656 mod_lesson minimumnumberofquestions_adv 1 \N -803 2 1609884656 page displayoptions 5 \N -804 2 1609884656 page printheading 1 \N -805 2 1609884656 page printintro 0 \N -806 2 1609884656 page printlastmodified 1 \N -807 2 1609884656 page display 5 \N -808 2 1609884656 page popupwidth 620 \N -809 2 1609884656 page popupheight 450 \N -810 2 1609884656 quiz timelimit 0 \N -811 2 1609884656 quiz timelimit_adv \N -812 2 1609884656 quiz overduehandling autosubmit \N -813 2 1609884656 quiz overduehandling_adv \N -814 2 1609884656 quiz graceperiod 86400 \N -815 2 1609884656 quiz graceperiod_adv \N -816 2 1609884656 quiz graceperiodmin 60 \N -817 2 1609884656 quiz attempts 0 \N -818 2 1609884656 quiz attempts_adv \N -819 2 1609884656 quiz grademethod 1 \N -820 2 1609884656 quiz grademethod_adv \N -821 2 1609884656 quiz maximumgrade 10 \N -822 2 1609884656 quiz questionsperpage 1 \N -823 2 1609884656 quiz questionsperpage_adv \N -824 2 1609884656 quiz navmethod free \N -825 2 1609884656 quiz navmethod_adv 1 \N -826 2 1609884656 quiz shuffleanswers 1 \N -827 2 1609884656 quiz shuffleanswers_adv \N -828 2 1609884656 quiz preferredbehaviour deferredfeedback \N -829 2 1609884656 quiz canredoquestions 0 \N -830 2 1609884656 quiz canredoquestions_adv 1 \N -831 2 1609884656 quiz attemptonlast 0 \N -832 2 1609884656 quiz attemptonlast_adv 1 \N -833 2 1609884656 quiz reviewattempt 69904 \N -834 2 1609884656 quiz reviewcorrectness 69904 \N -835 2 1609884656 quiz reviewmarks 69904 \N -836 2 1609884656 quiz reviewspecificfeedback 69904 \N -837 2 1609884656 quiz reviewgeneralfeedback 69904 \N -838 2 1609884656 quiz reviewrightanswer 69904 \N -839 2 1609884656 quiz reviewoverallfeedback 4368 \N -840 2 1609884656 quiz showuserpicture 0 \N -841 2 1609884656 quiz showuserpicture_adv \N -842 2 1609884656 quiz decimalpoints 2 \N -843 2 1609884656 quiz decimalpoints_adv \N -844 2 1609884656 quiz questiondecimalpoints -1 \N -845 2 1609884656 quiz questiondecimalpoints_adv \N -846 2 1609884656 quiz showblocks 0 \N -847 2 1609884656 quiz showblocks_adv 1 \N -848 2 1609884656 quiz quizpassword \N -849 2 1609884656 quiz quizpassword_adv \N -850 2 1609884656 quiz quizpassword_required \N -851 2 1609884656 quiz subnet \N -852 2 1609884656 quiz subnet_adv 1 \N -853 2 1609884656 quiz delay1 0 \N -854 2 1609884656 quiz delay1_adv 1 \N -855 2 1609884656 quiz delay2 0 \N -856 2 1609884656 quiz delay2_adv 1 \N -857 2 1609884656 quiz browsersecurity - \N -858 2 1609884656 quiz browsersecurity_adv 1 \N -859 2 1609884656 quiz initialnumfeedbacks 2 \N -860 2 1609884656 quiz autosaveperiod 60 \N -861 2 1609884656 quizaccess_seb autoreconfigureseb 1 \N -862 2 1609884656 quizaccess_seb showseblinks seb,http \N -863 2 1609884656 quizaccess_seb downloadlink https://safeexambrowser.org/download_en.html \N -864 2 1609884656 quizaccess_seb quizpasswordrequired 0 \N -865 2 1609884656 quizaccess_seb displayblocksbeforestart 0 \N -866 2 1609884656 quizaccess_seb displayblockswhenfinished 1 \N -867 2 1609884656 scorm displaycoursestructure 0 \N -868 2 1609884656 scorm displaycoursestructure_adv \N -869 2 1609884656 scorm popup 0 \N -870 2 1609884656 scorm popup_adv \N -871 2 1609884656 scorm displayactivityname 1 \N -872 2 1609884656 scorm framewidth 100 \N -873 2 1609884656 scorm framewidth_adv 1 \N -874 2 1609884656 scorm frameheight 500 \N -875 2 1609884656 scorm frameheight_adv 1 \N -876 2 1609884656 scorm winoptgrp_adv 1 \N -877 2 1609884656 scorm scrollbars 0 \N -878 2 1609884656 scorm directories 0 \N -879 2 1609884656 scorm location 0 \N -880 2 1609884656 scorm menubar 0 \N -881 2 1609884656 scorm toolbar 0 \N -882 2 1609884656 scorm status 0 \N -883 2 1609884656 scorm skipview 0 \N -884 2 1609884656 scorm skipview_adv 1 \N -885 2 1609884656 scorm hidebrowse 0 \N -886 2 1609884656 scorm hidebrowse_adv 1 \N -887 2 1609884656 scorm hidetoc 0 \N -888 2 1609884656 scorm hidetoc_adv 1 \N -889 2 1609884656 scorm nav 1 \N -890 2 1609884656 scorm nav_adv 1 \N -891 2 1609884656 scorm navpositionleft -100 \N -892 2 1609884656 scorm navpositionleft_adv 1 \N -893 2 1609884656 scorm navpositiontop -100 \N -894 2 1609884656 scorm navpositiontop_adv 1 \N -895 2 1609884656 scorm collapsetocwinsize 767 \N -896 2 1609884656 scorm collapsetocwinsize_adv 1 \N -897 2 1609884656 scorm displayattemptstatus 1 \N -898 2 1609884656 scorm displayattemptstatus_adv \N -899 2 1609884656 scorm grademethod 1 \N -900 2 1609884656 scorm maxgrade 100 \N -901 2 1609884656 scorm maxattempt 0 \N -902 2 1609884656 scorm whatgrade 0 \N -903 2 1609884656 scorm forcecompleted 0 \N -904 2 1609884656 scorm forcenewattempt 0 \N -905 2 1609884656 scorm autocommit 0 \N -906 2 1609884656 scorm masteryoverride 1 \N -907 2 1609884656 scorm lastattemptlock 0 \N -908 2 1609884656 scorm auto 0 \N -909 2 1609884656 scorm updatefreq 0 \N -910 2 1609884656 scorm scormstandard 0 \N -911 2 1609884656 scorm allowtypeexternal 0 \N -912 2 1609884656 scorm allowtypelocalsync 0 \N -913 2 1609884656 scorm allowtypeexternalaicc 0 \N -914 2 1609884656 scorm allowaicchacp 0 \N -915 2 1609884656 scorm aicchacptimeout 30 \N -916 2 1609884656 scorm aicchacpkeepsessiondata 1 \N -917 2 1609884656 scorm aiccuserid 1 \N -918 2 1609884656 scorm forcejavascript 1 \N -919 2 1609884656 scorm allowapidebug 0 \N -920 2 1609884656 scorm apidebugmask .* \N -921 2 1609884656 scorm protectpackagedownloads 0 \N -922 2 1609884656 url framesize 130 \N -923 2 1609884656 url secretphrase \N -924 2 1609884656 url rolesinparams 0 \N -925 2 1609884656 url displayoptions 0,1,5,6 \N -926 2 1609884656 url printintro 1 \N -927 2 1609884656 url display 0 \N -928 2 1609884656 url popupwidth 620 \N -929 2 1609884656 url popupheight 450 \N -930 2 1609884656 workshop grade 80 \N -931 2 1609884656 workshop gradinggrade 20 \N -932 2 1609884656 workshop gradedecimals 0 \N -933 2 1609884656 workshop maxbytes 0 \N -934 2 1609884656 workshop strategy accumulative \N -935 2 1609884656 workshop examplesmode 0 \N -936 2 1609884656 workshopallocation_random numofreviews 5 \N -937 2 1609884656 workshopform_numerrors grade0 No \N -938 2 1609884656 workshopform_numerrors grade1 Yes \N -939 2 1609884656 workshopeval_best comparison 5 \N -940 2 1609884656 tool_recyclebin coursebinenable 1 \N -941 2 1609884656 tool_recyclebin coursebinexpiry 604800 \N -942 2 1609884656 tool_recyclebin categorybinenable 1 \N -943 2 1609884656 tool_recyclebin categorybinexpiry 604800 \N -944 2 1609884656 tool_recyclebin autohide 1 \N -945 2 1609884656 antivirus_clamav runningmethod commandline \N -946 2 1609884656 antivirus_clamav pathtoclam \N -947 2 1609884656 antivirus_clamav pathtounixsocket \N -948 2 1609884656 antivirus_clamav tcpsockethost \N -949 2 1609884656 antivirus_clamav tcpsocketport 3310 \N -950 2 1609884656 antivirus_clamav clamfailureonupload donothing \N -951 2 1609884656 antivirus_clamav tries 1 \N -952 2 1609884656 auth_cas field_map_firstname \N -953 2 1609884656 auth_cas field_updatelocal_firstname oncreate \N -954 2 1609884656 auth_cas field_updateremote_firstname 0 \N -955 2 1609884656 auth_cas field_lock_firstname unlocked \N -956 2 1609884656 auth_cas field_map_lastname \N -957 2 1609884656 auth_cas field_updatelocal_lastname oncreate \N -958 2 1609884656 auth_cas field_updateremote_lastname 0 \N -959 2 1609884656 auth_cas field_lock_lastname unlocked \N -960 2 1609884656 auth_cas field_map_email \N -961 2 1609884656 auth_cas field_updatelocal_email oncreate \N -962 2 1609884656 auth_cas field_updateremote_email 0 \N -963 2 1609884656 auth_cas field_lock_email unlocked \N -964 2 1609884656 auth_cas field_map_city \N -965 2 1609884656 auth_cas field_updatelocal_city oncreate \N -966 2 1609884656 auth_cas field_updateremote_city 0 \N -967 2 1609884656 auth_cas field_lock_city unlocked \N -968 2 1609884656 auth_cas field_map_country \N -969 2 1609884656 auth_cas field_updatelocal_country oncreate \N -970 2 1609884656 auth_cas field_updateremote_country 0 \N -971 2 1609884656 auth_cas field_lock_country unlocked \N -972 2 1609884656 auth_cas field_map_lang \N -973 2 1609884656 auth_cas field_updatelocal_lang oncreate \N -974 2 1609884656 auth_cas field_updateremote_lang 0 \N -975 2 1609884656 auth_cas field_lock_lang unlocked \N -976 2 1609884656 auth_cas field_map_description \N -977 2 1609884656 auth_cas field_updatelocal_description oncreate \N -978 2 1609884656 auth_cas field_updateremote_description 0 \N -979 2 1609884656 auth_cas field_lock_description unlocked \N -980 2 1609884656 auth_cas field_map_url \N -981 2 1609884656 auth_cas field_updatelocal_url oncreate \N -982 2 1609884656 auth_cas field_updateremote_url 0 \N -983 2 1609884656 auth_cas field_lock_url unlocked \N -984 2 1609884656 auth_cas field_map_idnumber \N -985 2 1609884656 auth_cas field_updatelocal_idnumber oncreate \N -986 2 1609884656 auth_cas field_updateremote_idnumber 0 \N -987 2 1609884656 auth_cas field_lock_idnumber unlocked \N -988 2 1609884656 auth_cas field_map_institution \N -989 2 1609884656 auth_cas field_updatelocal_institution oncreate \N -990 2 1609884656 auth_cas field_updateremote_institution 0 \N -991 2 1609884656 auth_cas field_lock_institution unlocked \N -992 2 1609884656 auth_cas field_map_department \N -993 2 1609884656 auth_cas field_updatelocal_department oncreate \N -994 2 1609884656 auth_cas field_updateremote_department 0 \N -995 2 1609884656 auth_cas field_lock_department unlocked \N -996 2 1609884656 auth_cas field_map_phone1 \N -997 2 1609884656 auth_cas field_updatelocal_phone1 oncreate \N -998 2 1609884656 auth_cas field_updateremote_phone1 0 \N -999 2 1609884656 auth_cas field_lock_phone1 unlocked \N -1000 2 1609884656 auth_cas field_map_phone2 \N -1001 2 1609884656 auth_cas field_updatelocal_phone2 oncreate \N -1002 2 1609884656 auth_cas field_updateremote_phone2 0 \N -1003 2 1609884656 auth_cas field_lock_phone2 unlocked \N -1004 2 1609884656 auth_cas field_map_address \N -1005 2 1609884656 auth_cas field_updatelocal_address oncreate \N -1006 2 1609884656 auth_cas field_updateremote_address 0 \N -1007 2 1609884656 auth_cas field_lock_address unlocked \N -1008 2 1609884656 auth_cas field_map_firstnamephonetic \N -1009 2 1609884656 auth_cas field_updatelocal_firstnamephonetic oncreate \N -1010 2 1609884656 auth_cas field_updateremote_firstnamephonetic 0 \N -1011 2 1609884656 auth_cas field_lock_firstnamephonetic unlocked \N -1012 2 1609884656 auth_cas field_map_lastnamephonetic \N -1013 2 1609884656 auth_cas field_updatelocal_lastnamephonetic oncreate \N -1014 2 1609884656 auth_cas field_updateremote_lastnamephonetic 0 \N -1015 2 1609884656 auth_cas field_lock_lastnamephonetic unlocked \N -1016 2 1609884656 auth_cas field_map_middlename \N -1017 2 1609884656 auth_cas field_updatelocal_middlename oncreate \N -1018 2 1609884656 auth_cas field_updateremote_middlename 0 \N -1019 2 1609884656 auth_cas field_lock_middlename unlocked \N -1020 2 1609884656 auth_cas field_map_alternatename \N -1021 2 1609884656 auth_cas field_updatelocal_alternatename oncreate \N -1022 2 1609884656 auth_cas field_updateremote_alternatename 0 \N -1023 2 1609884656 auth_cas field_lock_alternatename unlocked \N -1024 2 1609884656 auth_email recaptcha 0 \N -1025 2 1609884656 auth_email field_lock_firstname unlocked \N -1026 2 1609884656 auth_email field_lock_lastname unlocked \N -1027 2 1609884656 auth_email field_lock_email unlocked \N -1028 2 1609884656 auth_email field_lock_city unlocked \N -1029 2 1609884656 auth_email field_lock_country unlocked \N -1030 2 1609884656 auth_email field_lock_lang unlocked \N -1031 2 1609884656 auth_email field_lock_description unlocked \N -1032 2 1609884656 auth_email field_lock_url unlocked \N -1033 2 1609884656 auth_email field_lock_idnumber unlocked \N -1034 2 1609884656 auth_email field_lock_institution unlocked \N -1035 2 1609884656 auth_email field_lock_department unlocked \N -1036 2 1609884656 auth_email field_lock_phone1 unlocked \N -1037 2 1609884656 auth_email field_lock_phone2 unlocked \N -1038 2 1609884656 auth_email field_lock_address unlocked \N -1039 2 1609884656 auth_email field_lock_firstnamephonetic unlocked \N -1040 2 1609884656 auth_email field_lock_lastnamephonetic unlocked \N -1041 2 1609884656 auth_email field_lock_middlename unlocked \N -1042 2 1609884656 auth_email field_lock_alternatename unlocked \N -1043 2 1609884656 auth_db host 127.0.0.1 \N -1044 2 1609884656 auth_db type mysqli \N -1045 2 1609884656 auth_db sybasequoting 0 \N -1046 2 1609884656 auth_db name \N -1047 2 1609884656 auth_db user \N -1048 2 1609884656 auth_db pass \N -1049 2 1609884656 auth_db table \N -1050 2 1609884656 auth_db fielduser \N -1051 2 1609884656 auth_db fieldpass \N -1052 2 1609884656 auth_db passtype plaintext \N -1053 2 1609884656 auth_db extencoding utf-8 \N -1054 2 1609884656 auth_db setupsql \N -1055 2 1609884656 auth_db debugauthdb 0 \N -1056 2 1609884656 auth_db changepasswordurl \N -1057 2 1609884656 auth_db removeuser 0 \N -1058 2 1609884656 auth_db updateusers 0 \N -1059 2 1609884656 auth_db field_map_firstname \N -1060 2 1609884656 auth_db field_updatelocal_firstname oncreate \N -1061 2 1609884656 auth_db field_updateremote_firstname 0 \N -1062 2 1609884656 auth_db field_lock_firstname unlocked \N -1063 2 1609884656 auth_db field_map_lastname \N -1064 2 1609884656 auth_db field_updatelocal_lastname oncreate \N -1065 2 1609884656 auth_db field_updateremote_lastname 0 \N -1066 2 1609884656 auth_db field_lock_lastname unlocked \N -1067 2 1609884656 auth_db field_map_email \N -1068 2 1609884656 auth_db field_updatelocal_email oncreate \N -1069 2 1609884656 auth_db field_updateremote_email 0 \N -1070 2 1609884656 auth_db field_lock_email unlocked \N -1071 2 1609884656 auth_db field_map_city \N -1072 2 1609884656 auth_db field_updatelocal_city oncreate \N -1073 2 1609884656 auth_db field_updateremote_city 0 \N -1074 2 1609884656 auth_db field_lock_city unlocked \N -1075 2 1609884656 auth_db field_map_country \N -1076 2 1609884656 auth_db field_updatelocal_country oncreate \N -1077 2 1609884656 auth_db field_updateremote_country 0 \N -1078 2 1609884656 auth_db field_lock_country unlocked \N -1079 2 1609884656 auth_db field_map_lang \N -1080 2 1609884656 auth_db field_updatelocal_lang oncreate \N -1081 2 1609884656 auth_db field_updateremote_lang 0 \N -1082 2 1609884656 auth_db field_lock_lang unlocked \N -1083 2 1609884656 auth_db field_map_description \N -1084 2 1609884656 auth_db field_updatelocal_description oncreate \N -1085 2 1609884656 auth_db field_updateremote_description 0 \N -1086 2 1609884656 auth_db field_lock_description unlocked \N -1087 2 1609884656 auth_db field_map_url \N -1088 2 1609884656 auth_db field_updatelocal_url oncreate \N -1089 2 1609884656 auth_db field_updateremote_url 0 \N -1090 2 1609884656 auth_db field_lock_url unlocked \N -1091 2 1609884656 auth_db field_map_idnumber \N -1092 2 1609884656 auth_db field_updatelocal_idnumber oncreate \N -1093 2 1609884656 auth_db field_updateremote_idnumber 0 \N -1094 2 1609884656 auth_db field_lock_idnumber unlocked \N -1095 2 1609884656 auth_db field_map_institution \N -1096 2 1609884656 auth_db field_updatelocal_institution oncreate \N -1097 2 1609884656 auth_db field_updateremote_institution 0 \N -1098 2 1609884656 auth_db field_lock_institution unlocked \N -1099 2 1609884656 auth_db field_map_department \N -1100 2 1609884656 auth_db field_updatelocal_department oncreate \N -1101 2 1609884656 auth_db field_updateremote_department 0 \N -1102 2 1609884656 auth_db field_lock_department unlocked \N -1103 2 1609884656 auth_db field_map_phone1 \N -1104 2 1609884656 auth_db field_updatelocal_phone1 oncreate \N -1105 2 1609884656 auth_db field_updateremote_phone1 0 \N -1106 2 1609884656 auth_db field_lock_phone1 unlocked \N -1107 2 1609884656 auth_db field_map_phone2 \N -1108 2 1609884656 auth_db field_updatelocal_phone2 oncreate \N -1109 2 1609884656 auth_db field_updateremote_phone2 0 \N -1110 2 1609884656 auth_db field_lock_phone2 unlocked \N -1111 2 1609884656 auth_db field_map_address \N -1112 2 1609884656 auth_db field_updatelocal_address oncreate \N -1113 2 1609884656 auth_db field_updateremote_address 0 \N -1114 2 1609884656 auth_db field_lock_address unlocked \N -1115 2 1609884656 auth_db field_map_firstnamephonetic \N -1116 2 1609884656 auth_db field_updatelocal_firstnamephonetic oncreate \N -1117 2 1609884656 auth_db field_updateremote_firstnamephonetic 0 \N -1118 2 1609884656 auth_db field_lock_firstnamephonetic unlocked \N -1119 2 1609884656 auth_db field_map_lastnamephonetic \N -1120 2 1609884656 auth_db field_updatelocal_lastnamephonetic oncreate \N -1121 2 1609884656 auth_db field_updateremote_lastnamephonetic 0 \N -1122 2 1609884656 auth_db field_lock_lastnamephonetic unlocked \N -1123 2 1609884656 auth_db field_map_middlename \N -1124 2 1609884656 auth_db field_updatelocal_middlename oncreate \N -1125 2 1609884656 auth_db field_updateremote_middlename 0 \N -1126 2 1609884656 auth_db field_lock_middlename unlocked \N -1127 2 1609884656 auth_db field_map_alternatename \N -1128 2 1609884656 auth_db field_updatelocal_alternatename oncreate \N -1129 2 1609884656 auth_db field_updateremote_alternatename 0 \N -1130 2 1609884656 auth_db field_lock_alternatename unlocked \N -1131 2 1609884656 auth_ldap field_map_firstname \N -1132 2 1609884656 auth_ldap field_updatelocal_firstname oncreate \N -1133 2 1609884656 auth_ldap field_updateremote_firstname 0 \N -1134 2 1609884656 auth_ldap field_lock_firstname unlocked \N -1135 2 1609884656 auth_ldap field_map_lastname \N -1136 2 1609884656 auth_ldap field_updatelocal_lastname oncreate \N -1137 2 1609884656 auth_ldap field_updateremote_lastname 0 \N -1138 2 1609884656 auth_ldap field_lock_lastname unlocked \N -1139 2 1609884656 auth_ldap field_map_email \N -1140 2 1609884656 auth_ldap field_updatelocal_email oncreate \N -1141 2 1609884656 auth_ldap field_updateremote_email 0 \N -1142 2 1609884656 auth_ldap field_lock_email unlocked \N -1143 2 1609884656 auth_ldap field_map_city \N -1144 2 1609884656 auth_ldap field_updatelocal_city oncreate \N -1145 2 1609884656 auth_ldap field_updateremote_city 0 \N -1146 2 1609884656 auth_ldap field_lock_city unlocked \N -1147 2 1609884656 auth_ldap field_map_country \N -1148 2 1609884656 auth_ldap field_updatelocal_country oncreate \N -1149 2 1609884656 auth_ldap field_updateremote_country 0 \N -1150 2 1609884656 auth_ldap field_lock_country unlocked \N -1151 2 1609884656 auth_ldap field_map_lang \N -1152 2 1609884656 auth_ldap field_updatelocal_lang oncreate \N -1153 2 1609884656 auth_ldap field_updateremote_lang 0 \N -1154 2 1609884656 auth_ldap field_lock_lang unlocked \N -1155 2 1609884656 auth_ldap field_map_description \N -1156 2 1609884656 auth_ldap field_updatelocal_description oncreate \N -1157 2 1609884656 auth_ldap field_updateremote_description 0 \N -1158 2 1609884656 auth_ldap field_lock_description unlocked \N -1159 2 1609884657 auth_ldap field_map_url \N -1160 2 1609884657 auth_ldap field_updatelocal_url oncreate \N -1161 2 1609884657 auth_ldap field_updateremote_url 0 \N -1162 2 1609884657 auth_ldap field_lock_url unlocked \N -1163 2 1609884657 auth_ldap field_map_idnumber \N -1164 2 1609884657 auth_ldap field_updatelocal_idnumber oncreate \N -1165 2 1609884657 auth_ldap field_updateremote_idnumber 0 \N -1166 2 1609884657 auth_ldap field_lock_idnumber unlocked \N -1167 2 1609884657 auth_ldap field_map_institution \N -1168 2 1609884657 auth_ldap field_updatelocal_institution oncreate \N -1169 2 1609884657 auth_ldap field_updateremote_institution 0 \N -1170 2 1609884657 auth_ldap field_lock_institution unlocked \N -1171 2 1609884657 auth_ldap field_map_department \N -1172 2 1609884657 auth_ldap field_updatelocal_department oncreate \N -1173 2 1609884657 auth_ldap field_updateremote_department 0 \N -1174 2 1609884657 auth_ldap field_lock_department unlocked \N -1175 2 1609884657 auth_ldap field_map_phone1 \N -1176 2 1609884657 auth_ldap field_updatelocal_phone1 oncreate \N -1177 2 1609884657 auth_ldap field_updateremote_phone1 0 \N -1178 2 1609884657 auth_ldap field_lock_phone1 unlocked \N -1179 2 1609884657 auth_ldap field_map_phone2 \N -1180 2 1609884657 auth_ldap field_updatelocal_phone2 oncreate \N -1181 2 1609884657 auth_ldap field_updateremote_phone2 0 \N -1182 2 1609884657 auth_ldap field_lock_phone2 unlocked \N -1183 2 1609884657 auth_ldap field_map_address \N -1184 2 1609884657 auth_ldap field_updatelocal_address oncreate \N -1185 2 1609884657 auth_ldap field_updateremote_address 0 \N -1186 2 1609884657 auth_ldap field_lock_address unlocked \N -1187 2 1609884657 auth_ldap field_map_firstnamephonetic \N -1188 2 1609884657 auth_ldap field_updatelocal_firstnamephonetic oncreate \N -1189 2 1609884657 auth_ldap field_updateremote_firstnamephonetic 0 \N -1190 2 1609884657 auth_ldap field_lock_firstnamephonetic unlocked \N -1191 2 1609884657 auth_ldap field_map_lastnamephonetic \N -1192 2 1609884657 auth_ldap field_updatelocal_lastnamephonetic oncreate \N -1193 2 1609884657 auth_ldap field_updateremote_lastnamephonetic 0 \N -1194 2 1609884657 auth_ldap field_lock_lastnamephonetic unlocked \N -1195 2 1609884657 auth_ldap field_map_middlename \N -1196 2 1609884657 auth_ldap field_updatelocal_middlename oncreate \N -1197 2 1609884657 auth_ldap field_updateremote_middlename 0 \N -1198 2 1609884657 auth_ldap field_lock_middlename unlocked \N -1199 2 1609884657 auth_ldap field_map_alternatename \N -1200 2 1609884657 auth_ldap field_updatelocal_alternatename oncreate \N -1201 2 1609884657 auth_ldap field_updateremote_alternatename 0 \N -1202 2 1609884657 auth_ldap field_lock_alternatename unlocked \N -1203 2 1609884657 auth_manual expiration 0 \N -1204 2 1609884657 auth_manual expirationtime 30 \N -1205 2 1609884657 auth_manual expiration_warning 0 \N -1206 2 1609884657 auth_manual field_lock_firstname unlocked \N -1207 2 1609884657 auth_manual field_lock_lastname unlocked \N -1208 2 1609884657 auth_manual field_lock_email unlocked \N -1209 2 1609884657 auth_manual field_lock_city unlocked \N -1210 2 1609884657 auth_manual field_lock_country unlocked \N -1211 2 1609884657 auth_manual field_lock_lang unlocked \N -1212 2 1609884657 auth_manual field_lock_description unlocked \N -1213 2 1609884657 auth_manual field_lock_url unlocked \N -1214 2 1609884657 auth_manual field_lock_idnumber unlocked \N -1215 2 1609884657 auth_manual field_lock_institution unlocked \N -1216 2 1609884657 auth_manual field_lock_department unlocked \N -1217 2 1609884657 auth_manual field_lock_phone1 unlocked \N -1218 2 1609884657 auth_manual field_lock_phone2 unlocked \N -1219 2 1609884657 auth_manual field_lock_address unlocked \N -1220 2 1609884657 auth_manual field_lock_firstnamephonetic unlocked \N -1221 2 1609884657 auth_manual field_lock_lastnamephonetic unlocked \N -1222 2 1609884657 auth_manual field_lock_middlename unlocked \N -1223 2 1609884657 auth_manual field_lock_alternatename unlocked \N -1224 2 1609884657 auth_mnet rpc_negotiation_timeout 30 \N -1225 2 1609884657 auth_none field_lock_firstname unlocked \N -1226 2 1609884657 auth_none field_lock_lastname unlocked \N -1227 2 1609884657 auth_none field_lock_email unlocked \N -1228 2 1609884657 auth_none field_lock_city unlocked \N -1229 2 1609884657 auth_none field_lock_country unlocked \N -1230 2 1609884657 auth_none field_lock_lang unlocked \N -1231 2 1609884657 auth_none field_lock_description unlocked \N -1232 2 1609884657 auth_none field_lock_url unlocked \N -1233 2 1609884657 auth_none field_lock_idnumber unlocked \N -1234 2 1609884657 auth_none field_lock_institution unlocked \N -1235 2 1609884657 auth_none field_lock_department unlocked \N -1236 2 1609884657 auth_none field_lock_phone1 unlocked \N -1237 2 1609884657 auth_none field_lock_phone2 unlocked \N -1238 2 1609884657 auth_none field_lock_address unlocked \N -1239 2 1609884657 auth_none field_lock_firstnamephonetic unlocked \N -1240 2 1609884657 auth_none field_lock_lastnamephonetic unlocked \N -1241 2 1609884657 auth_none field_lock_middlename unlocked \N -1242 2 1609884657 auth_none field_lock_alternatename unlocked \N -1243 2 1609884657 auth_oauth2 field_lock_firstname unlocked \N -1244 2 1609884657 auth_oauth2 field_lock_lastname unlocked \N -1245 2 1609884657 auth_oauth2 field_lock_email unlocked \N -1246 2 1609884657 auth_oauth2 field_lock_city unlocked \N -1247 2 1609884657 auth_oauth2 field_lock_country unlocked \N -1248 2 1609884657 auth_oauth2 field_lock_lang unlocked \N -1249 2 1609884657 auth_oauth2 field_lock_description unlocked \N -1250 2 1609884657 auth_oauth2 field_lock_url unlocked \N -1251 2 1609884657 auth_oauth2 field_lock_idnumber unlocked \N -1252 2 1609884657 auth_oauth2 field_lock_institution unlocked \N -1253 2 1609884657 auth_oauth2 field_lock_department unlocked \N -1254 2 1609884657 auth_oauth2 field_lock_phone1 unlocked \N -1255 2 1609884657 auth_oauth2 field_lock_phone2 unlocked \N -1256 2 1609884657 auth_oauth2 field_lock_address unlocked \N -1257 2 1609884657 auth_oauth2 field_lock_firstnamephonetic unlocked \N -1258 2 1609884657 auth_oauth2 field_lock_lastnamephonetic unlocked \N -1259 2 1609884657 auth_oauth2 field_lock_middlename unlocked \N -1260 2 1609884657 auth_oauth2 field_lock_alternatename unlocked \N -1261 2 1609884657 auth_shibboleth user_attribute \N -1262 2 1609884657 auth_shibboleth convert_data \N -1263 2 1609884657 auth_shibboleth alt_login off \N -1264 2 1609884657 auth_shibboleth organization_selection urn:mace:organization1:providerID, Example Organization 1\n https://another.idp-id.com/shibboleth, Other Example Organization, /Shibboleth.sso/DS/SWITCHaai\n urn:mace:organization2:providerID, Example Organization 2, /Shibboleth.sso/WAYF/SWITCHaai \N -1265 2 1609884657 auth_shibboleth logout_handler \N -1266 2 1609884657 auth_shibboleth logout_return_url \N -1267 2 1609884657 auth_shibboleth login_name Shibboleth Login \N -1268 2 1609884657 auth_shibboleth auth_logo \N -1269 2 1609884657 auth_shibboleth auth_instructions Use the Shibboleth login to get access via Shibboleth, if your institution supports it. Otherwise, use the normal login form shown here. \N -1270 2 1609884657 auth_shibboleth changepasswordurl \N -1271 2 1609884657 auth_shibboleth field_map_firstname \N -1272 2 1609884657 auth_shibboleth field_updatelocal_firstname oncreate \N -1273 2 1609884657 auth_shibboleth field_lock_firstname unlocked \N -1274 2 1609884657 auth_shibboleth field_map_lastname \N -1275 2 1609884657 auth_shibboleth field_updatelocal_lastname oncreate \N -1276 2 1609884657 auth_shibboleth field_lock_lastname unlocked \N -1277 2 1609884657 auth_shibboleth field_map_email \N -1278 2 1609884657 auth_shibboleth field_updatelocal_email oncreate \N -1279 2 1609884657 auth_shibboleth field_lock_email unlocked \N -1280 2 1609884657 auth_shibboleth field_map_city \N -1281 2 1609884657 auth_shibboleth field_updatelocal_city oncreate \N -1282 2 1609884657 auth_shibboleth field_lock_city unlocked \N -1283 2 1609884657 auth_shibboleth field_map_country \N -1284 2 1609884657 auth_shibboleth field_updatelocal_country oncreate \N -1285 2 1609884657 auth_shibboleth field_lock_country unlocked \N -1286 2 1609884657 auth_shibboleth field_map_lang \N -1287 2 1609884657 auth_shibboleth field_updatelocal_lang oncreate \N -1288 2 1609884657 auth_shibboleth field_lock_lang unlocked \N -1289 2 1609884657 auth_shibboleth field_map_description \N -1290 2 1609884657 auth_shibboleth field_updatelocal_description oncreate \N -1291 2 1609884657 auth_shibboleth field_lock_description unlocked \N -1292 2 1609884657 auth_shibboleth field_map_url \N -1293 2 1609884657 auth_shibboleth field_updatelocal_url oncreate \N -1294 2 1609884657 auth_shibboleth field_lock_url unlocked \N -1295 2 1609884657 auth_shibboleth field_map_idnumber \N -1296 2 1609884657 auth_shibboleth field_updatelocal_idnumber oncreate \N -1297 2 1609884657 auth_shibboleth field_lock_idnumber unlocked \N -1298 2 1609884657 auth_shibboleth field_map_institution \N -1299 2 1609884657 auth_shibboleth field_updatelocal_institution oncreate \N -1300 2 1609884657 auth_shibboleth field_lock_institution unlocked \N -1301 2 1609884657 auth_shibboleth field_map_department \N -1302 2 1609884657 auth_shibboleth field_updatelocal_department oncreate \N -1303 2 1609884657 auth_shibboleth field_lock_department unlocked \N -1304 2 1609884657 auth_shibboleth field_map_phone1 \N -1305 2 1609884657 auth_shibboleth field_updatelocal_phone1 oncreate \N -1306 2 1609884657 auth_shibboleth field_lock_phone1 unlocked \N -1307 2 1609884657 auth_shibboleth field_map_phone2 \N -1308 2 1609884657 auth_shibboleth field_updatelocal_phone2 oncreate \N -1309 2 1609884657 auth_shibboleth field_lock_phone2 unlocked \N -1310 2 1609884657 auth_shibboleth field_map_address \N -1311 2 1609884657 auth_shibboleth field_updatelocal_address oncreate \N -1312 2 1609884657 auth_shibboleth field_lock_address unlocked \N -1313 2 1609884657 auth_shibboleth field_map_firstnamephonetic \N -1314 2 1609884657 auth_shibboleth field_updatelocal_firstnamephonetic oncreate \N -1315 2 1609884657 auth_shibboleth field_lock_firstnamephonetic unlocked \N -1316 2 1609884657 auth_shibboleth field_map_lastnamephonetic \N -1317 2 1609884657 auth_shibboleth field_updatelocal_lastnamephonetic oncreate \N -1318 2 1609884657 auth_shibboleth field_lock_lastnamephonetic unlocked \N -1319 2 1609884657 auth_shibboleth field_map_middlename \N -1320 2 1609884657 auth_shibboleth field_updatelocal_middlename oncreate \N -1321 2 1609884657 auth_shibboleth field_lock_middlename unlocked \N -1322 2 1609884657 auth_shibboleth field_map_alternatename \N -1323 2 1609884657 auth_shibboleth field_updatelocal_alternatename oncreate \N -1324 2 1609884657 auth_shibboleth field_lock_alternatename unlocked \N -1325 2 1609884657 block_activity_results config_showbest 3 \N -1326 2 1609884657 block_activity_results config_showbest_locked \N -1327 2 1609884657 block_activity_results config_showworst 0 \N -1328 2 1609884657 block_activity_results config_showworst_locked \N -1329 2 1609884657 block_activity_results config_usegroups 0 \N -1330 2 1609884657 block_activity_results config_usegroups_locked \N -1331 2 1609884657 block_activity_results config_nameformat 1 \N -1332 2 1609884657 block_activity_results config_nameformat_locked \N -1333 2 1609884657 block_activity_results config_gradeformat 1 \N -1334 2 1609884657 block_activity_results config_gradeformat_locked \N -1335 2 1609884657 block_activity_results config_decimalpoints 2 \N -1336 2 1609884657 block_activity_results config_decimalpoints_locked \N -1337 2 1609884657 block_myoverview displaycategories 1 \N -1338 2 1609884657 block_myoverview layouts card,list,summary \N -1339 2 1609884657 block_myoverview displaygroupingallincludinghidden 0 \N -1340 2 1609884657 block_myoverview displaygroupingall 1 \N -1341 2 1609884657 block_myoverview displaygroupinginprogress 1 \N -1342 2 1609884657 block_myoverview displaygroupingpast 1 \N -1343 2 1609884657 block_myoverview displaygroupingfuture 1 \N -1344 2 1609884657 block_myoverview displaygroupingcustomfield 0 \N -1345 2 1609884657 block_myoverview customfiltergrouping \N -1346 2 1609884657 block_myoverview displaygroupingfavourites 1 \N -1347 2 1609884657 block_myoverview displaygroupinghidden 1 \N -1348 2 1609884657 \N block_course_list_adminview all \N -1349 2 1609884657 \N block_course_list_hideallcourseslink 0 \N -1350 2 1609884657 \N block_html_allowcssclasses 0 \N -1351 2 1609884657 \N block_online_users_timetosee 5 \N -1352 2 1609884657 \N block_online_users_onlinestatushiding 1 \N -1353 2 1609884657 block_recentlyaccessedcourses displaycategories 1 \N -1354 2 1609884657 \N block_rss_client_num_entries 5 \N -1355 2 1609884657 \N block_rss_client_timeout 30 \N -1356 2 1609884657 block_section_links numsections1 22 \N -1357 2 1609884657 block_section_links incby1 2 \N -1358 2 1609884657 block_section_links numsections2 40 \N -1359 2 1609884657 block_section_links incby2 5 \N -1360 2 1609884657 block_starredcourses displaycategories 1 \N -1361 2 1609884657 block_tag_youtube apikey \N -1362 2 1609884657 format_singleactivity activitytype forum \N -1363 2 1609884657 fileconverter_googledrive issuerid \N -1364 2 1609884657 \N pathtounoconv /usr/bin/unoconv \N -1365 2 1609884657 enrol_cohort roleid 5 \N -1366 2 1609884657 enrol_cohort unenrolaction 0 \N -1367 2 1609884657 enrol_meta nosyncroleids \N -1368 2 1609884657 enrol_meta syncall 1 \N -1369 2 1609884657 enrol_meta unenrolaction 3 \N -1370 2 1609884657 enrol_meta coursesort sortorder \N -1371 2 1609884657 enrol_database dbtype \N -1372 2 1609884657 enrol_database dbhost localhost \N -1373 2 1609884657 enrol_database dbuser \N -1374 2 1609884657 enrol_database dbpass \N -1375 2 1609884657 enrol_database dbname \N -1376 2 1609884657 enrol_database dbencoding utf-8 \N -1377 2 1609884657 enrol_database dbsetupsql \N -1378 2 1609884657 enrol_database dbsybasequoting 0 \N -1379 2 1609884657 enrol_database debugdb 0 \N -1380 2 1609884657 enrol_database localcoursefield idnumber \N -1381 2 1609884657 enrol_database localuserfield idnumber \N -1382 2 1609884657 enrol_database localrolefield shortname \N -1383 2 1609884657 enrol_database localcategoryfield id \N -1384 2 1609884657 enrol_database remoteenroltable \N -1385 2 1609884657 enrol_database remotecoursefield \N -1386 2 1609884657 enrol_database remoteuserfield \N -1387 2 1609884657 enrol_database remoterolefield \N -1388 2 1609884657 enrol_database remoteotheruserfield \N -1389 2 1609884657 enrol_database defaultrole 5 \N -1390 2 1609884657 enrol_database ignorehiddencourses 0 \N -1391 2 1609884657 enrol_database unenrolaction 0 \N -1392 2 1609884657 enrol_database newcoursetable \N -1393 2 1609884657 enrol_database newcoursefullname fullname \N -1394 2 1609884657 enrol_database newcourseshortname shortname \N -1395 2 1609884657 enrol_database newcourseidnumber idnumber \N -1396 2 1609884657 enrol_database newcoursecategory \N -1397 2 1609884657 enrol_database defaultcategory 1 \N -1398 2 1609884657 enrol_database templatecourse \N -1399 2 1609884657 enrol_flatfile location \N -1400 2 1609884657 enrol_flatfile encoding UTF-8 \N -1401 2 1609884657 enrol_flatfile mailstudents 0 \N -1402 2 1609884657 enrol_flatfile mailteachers 0 \N -1403 2 1609884657 enrol_flatfile mailadmins 0 \N -1404 2 1609884657 enrol_flatfile unenrolaction 3 \N -1405 2 1609884657 enrol_flatfile expiredaction 3 \N -1406 2 1609884657 enrol_guest requirepassword 0 \N -1407 2 1609884657 enrol_guest usepasswordpolicy 0 \N -1408 2 1609884657 enrol_guest showhint 0 \N -1409 2 1609884657 enrol_guest defaultenrol 1 \N -1410 2 1609884657 enrol_guest status 1 \N -1411 2 1609884657 enrol_guest status_adv \N -1412 2 1609884657 enrol_imsenterprise imsfilelocation \N -1413 2 1609884657 enrol_imsenterprise logtolocation \N -1414 2 1609884657 enrol_imsenterprise mailadmins 0 \N -1415 2 1609884657 enrol_imsenterprise createnewusers 0 \N -1416 2 1609884657 enrol_imsenterprise imsupdateusers 0 \N -1417 2 1609884657 enrol_imsenterprise imsdeleteusers 0 \N -1418 2 1609884657 enrol_imsenterprise fixcaseusernames 0 \N -1419 2 1609884657 enrol_imsenterprise fixcasepersonalnames 0 \N -1420 2 1609884657 enrol_imsenterprise imssourcedidfallback 0 \N -1421 2 1609884657 enrol_imsenterprise imsrolemap01 5 \N -1422 2 1609884657 enrol_imsenterprise imsrolemap02 3 \N -1423 2 1609884657 enrol_imsenterprise imsrolemap03 3 \N -1424 2 1609884657 enrol_imsenterprise imsrolemap04 5 \N -1425 2 1609884657 enrol_imsenterprise imsrolemap05 0 \N -1426 2 1609884657 enrol_imsenterprise imsrolemap06 4 \N -1427 2 1609884657 enrol_imsenterprise imsrolemap07 0 \N -1428 2 1609884657 enrol_imsenterprise imsrolemap08 4 \N -1429 2 1609884657 enrol_imsenterprise truncatecoursecodes 0 \N -1430 2 1609884657 enrol_imsenterprise createnewcourses 0 \N -1431 2 1609884657 enrol_imsenterprise updatecourses 0 \N -1432 2 1609884657 enrol_imsenterprise createnewcategories 0 \N -1433 2 1609884657 enrol_imsenterprise nestedcategories 0 \N -1434 2 1609884657 enrol_imsenterprise categoryidnumber 0 \N -1435 2 1609884657 enrol_imsenterprise categoryseparator \N -1436 2 1609884657 enrol_imsenterprise imsunenrol 0 \N -1437 2 1609884657 enrol_imsenterprise imscoursemapshortname coursecode \N -1438 2 1609884657 enrol_imsenterprise imscoursemapfullname short \N -1439 2 1609884657 enrol_imsenterprise imscoursemapsummary ignore \N -1440 2 1609884657 enrol_imsenterprise imsrestricttarget \N -1441 2 1609884657 enrol_imsenterprise imscapitafix 0 \N -1442 2 1609884657 enrol_manual expiredaction 1 \N -1443 2 1609884657 enrol_manual expirynotifyhour 6 \N -1444 2 1609884657 enrol_manual defaultenrol 1 \N -1445 2 1609884657 enrol_manual status 0 \N -1446 2 1609884657 enrol_manual roleid 5 \N -1447 2 1609884657 enrol_manual enrolstart 4 \N -1448 2 1609884657 enrol_manual enrolperiod 0 \N -1449 2 1609884657 enrol_manual expirynotify 0 \N -1450 2 1609884657 enrol_manual expirythreshold 86400 \N -1451 2 1609884657 enrol_mnet roleid 5 \N -1452 2 1609884657 enrol_mnet roleid_adv 1 \N -1453 2 1609884657 enrol_paypal paypalbusiness \N -1454 2 1609884657 enrol_paypal mailstudents 0 \N -1455 2 1609884657 enrol_paypal mailteachers 0 \N -1456 2 1609884657 enrol_paypal mailadmins 0 \N -1457 2 1609884657 enrol_paypal expiredaction 3 \N -1458 2 1609884657 enrol_paypal status 1 \N -1459 2 1609884657 enrol_paypal cost 0 \N -1460 2 1609884657 enrol_paypal currency USD \N -1461 2 1609884657 enrol_paypal roleid 5 \N -1462 2 1609884657 enrol_paypal enrolperiod 0 \N -1463 2 1609884657 enrol_lti emaildisplay 2 \N -1464 2 1609884657 enrol_lti city \N -1465 2 1609884657 enrol_lti country \N -1466 2 1609884657 enrol_lti timezone 99 \N -1467 2 1609884657 enrol_lti lang en \N -1468 2 1609884657 enrol_lti institution \N -1469 2 1609884657 enrol_self requirepassword 0 \N -1470 2 1609884657 enrol_self usepasswordpolicy 0 \N -1471 2 1609884657 enrol_self showhint 0 \N -1472 2 1609884657 enrol_self expiredaction 1 \N -1473 2 1609884657 enrol_self expirynotifyhour 6 \N -1474 2 1609884657 enrol_self defaultenrol 1 \N -1475 2 1609884657 enrol_self status 1 \N -1476 2 1609884657 enrol_self newenrols 1 \N -1477 2 1609884657 enrol_self groupkey 0 \N -1478 2 1609884657 enrol_self roleid 5 \N -1479 2 1609884657 enrol_self enrolperiod 0 \N -1480 2 1609884657 enrol_self expirynotify 0 \N -1481 2 1609884657 enrol_self expirythreshold 86400 \N -1482 2 1609884657 enrol_self longtimenosee 0 \N -1483 2 1609884657 enrol_self maxenrolled 0 \N -1484 2 1609884657 enrol_self sendcoursewelcomemessage 1 \N -1485 2 1609884657 filter_urltolink formats 1,4,0 \N -1486 2 1609884657 filter_urltolink embedimages 1 \N -1487 2 1609884657 filter_emoticon formats 1,4,0 \N -1488 2 1609884657 filter_displayh5p allowedsources \N -1489 2 1609884657 filter_mathjaxloader httpsurl https://cdn.jsdelivr.net/npm/mathjax@2.7.8/MathJax.js \N -1490 2 1609884657 filter_mathjaxloader texfiltercompatibility 0 \N -1491 2 1609884657 filter_mathjaxloader mathjaxconfig \nMathJax.Hub.Config({\n config: ["Accessible.js", "Safe.js"],\n errorSettings: { message: ["!"] },\n skipStartupTypeset: true,\n messageStyle: "none"\n});\n \N -1492 2 1609884657 filter_mathjaxloader additionaldelimiters \N -1493 2 1609884657 \N filter_multilang_force_old 0 \N -1494 2 1609884657 filter_tex latexpreamble \\usepackage[latin1]{inputenc}\n\\usepackage{amsmath}\n\\usepackage{amsfonts}\n\\RequirePackage{amsmath,amssymb,latexsym}\n \N -1495 2 1609884657 filter_tex latexbackground #FFFFFF \N -1496 2 1609884657 filter_tex density 120 \N -1497 2 1609884657 filter_tex pathlatex /usr/bin/latex \N -1498 2 1609884657 filter_tex pathdvips /usr/bin/dvips \N -1499 2 1609884657 filter_tex pathconvert /usr/bin/convert \N -1500 2 1609884657 filter_tex pathdvisvgm /usr/bin/dvisvgm \N -1501 2 1609884657 filter_tex pathmimetex \N -1502 2 1609884657 filter_tex convertformat gif \N -1503 2 1609884657 \N filter_censor_badwords \N -1504 2 1609884657 logstore_database dbdriver \N -1505 2 1609884657 logstore_database dbhost \N -1506 2 1609884657 logstore_database dbuser \N -1507 2 1609884657 logstore_database dbpass \N -1508 2 1609884657 logstore_database dbname \N -1509 2 1609884657 logstore_database dbtable \N -1510 2 1609884657 logstore_database dbpersist 0 \N -1511 2 1609884657 logstore_database dbsocket \N -1512 2 1609884657 logstore_database dbport \N -1513 2 1609884657 logstore_database dbschema \N -1514 2 1609884657 logstore_database dbcollation \N -1515 2 1609884657 logstore_database dbhandlesoptions 0 \N -1516 2 1609884657 logstore_database buffersize 50 \N -1517 2 1609884657 logstore_database jsonformat 1 \N -1518 2 1609884657 logstore_database logguests 0 \N -1519 2 1609884657 logstore_database includelevels 1,2,0 \N -1520 2 1609884657 logstore_database includeactions c,r,u,d \N -1521 2 1609884657 logstore_legacy loglegacy 0 \N -1522 2 1609884657 \N logguests 1 \N -1523 2 1609884657 \N loglifetime 0 \N -1524 2 1609884657 logstore_standard logguests 1 \N -1525 2 1609884657 logstore_standard jsonformat 1 \N -1526 2 1609884657 logstore_standard loglifetime 0 \N -1527 2 1609884657 logstore_standard buffersize 50 \N -1528 2 1609884657 mlbackend_python useserver 0 \N -1529 2 1609884657 mlbackend_python host \N -1530 2 1609884657 mlbackend_python port 0 \N -1531 2 1609884657 mlbackend_python secure 0 \N -1532 2 1609884657 mlbackend_python username default \N -1533 2 1609884657 mlbackend_python password \N -1534 2 1609884657 media_videojs videoextensions html_video,media_source,.f4v,.flv \N -1535 2 1609884657 media_videojs audioextensions html_audio \N -1536 2 1609884657 media_videojs rtmp 0 \N -1537 2 1609884657 media_videojs useflash 0 \N -1538 2 1609884657 media_videojs youtube 1 \N -1539 2 1609884657 media_videojs videocssclass video-js \N -1540 2 1609884657 media_videojs audiocssclass video-js \N -1541 2 1609884657 media_videojs limitsize 1 \N -1542 2 1609884657 qtype_multichoice answerhowmany 1 \N -1543 2 1609884657 qtype_multichoice shuffleanswers 1 \N -1544 2 1609884657 qtype_multichoice answernumbering abc \N -1545 2 1609884657 editor_atto toolbar collapse = collapse\nstyle1 = title, bold, italic\nlist = unorderedlist, orderedlist, indent\nlinks = link\nfiles = emojipicker, image, media, recordrtc, managefiles, h5p\nstyle2 = underline, strike, subscript, superscript\nalign = align\ninsert = equation, charmap, table, clear\nundo = undo\naccessibility = accessibilitychecker, accessibilityhelper\nother = html \N -1546 2 1609884657 editor_atto autosavefrequency 60 \N -1547 2 1609884657 atto_collapse showgroups 5 \N -1548 2 1609884657 atto_equation librarygroup1 \n\\cdot\n\\times\n\\ast\n\\div\n\\diamond\n\\pm\n\\mp\n\\oplus\n\\ominus\n\\otimes\n\\oslash\n\\odot\n\\circ\n\\bullet\n\\asymp\n\\equiv\n\\subseteq\n\\supseteq\n\\leq\n\\geq\n\\preceq\n\\succeq\n\\sim\n\\simeq\n\\approx\n\\subset\n\\supset\n\\ll\n\\gg\n\\prec\n\\succ\n\\infty\n\\in\n\\ni\n\\forall\n\\exists\n\\neq\n \N -1549 2 1609884657 atto_equation librarygroup2 \n\\leftarrow\n\\rightarrow\n\\uparrow\n\\downarrow\n\\leftrightarrow\n\\nearrow\n\\searrow\n\\swarrow\n\\nwarrow\n\\Leftarrow\n\\Rightarrow\n\\Uparrow\n\\Downarrow\n\\Leftrightarrow\n \N -1550 2 1609884657 atto_equation librarygroup3 \n\\alpha\n\\beta\n\\gamma\n\\delta\n\\epsilon\n\\zeta\n\\eta\n\\theta\n\\iota\n\\kappa\n\\lambda\n\\mu\n\\nu\n\\xi\n\\pi\n\\rho\n\\sigma\n\\tau\n\\upsilon\n\\phi\n\\chi\n\\psi\n\\omega\n\\Gamma\n\\Delta\n\\Theta\n\\Lambda\n\\Xi\n\\Pi\n\\Sigma\n\\Upsilon\n\\Phi\n\\Psi\n\\Omega\n \N -1551 2 1609884657 atto_equation librarygroup4 \n\\sum{a,b}\n\\sqrt[a]{b+c}\n\\int_{a}^{b}{c}\n\\iint_{a}^{b}{c}\n\\iiint_{a}^{b}{c}\n\\oint{a}\n(a)\n[a]\n\\lbrace{a}\\rbrace\n\\left| \\begin{matrix} a_1 & a_2 \\ a_3 & a_4 \\end{matrix} \\right|\n\\frac{a}{b+c}\n\\vec{a}\n\\binom {a} {b}\n{a \\brack b}\n{a \\brace b}\n \N -1552 2 1609884657 atto_recordrtc allowedtypes both \N -1553 2 1609884657 atto_recordrtc audiobitrate 128000 \N -1554 2 1609884657 atto_recordrtc videobitrate 2500000 \N -1555 2 1609884657 atto_recordrtc timelimit 120 \N -1556 2 1609884657 atto_table allowborders 0 \N -1557 2 1609884657 atto_table allowbackgroundcolour 0 \N -1558 2 1609884657 atto_table allowwidth 0 \N -1559 2 1609884657 editor_tinymce customtoolbar wrap,formatselect,wrap,bold,italic,wrap,bullist,numlist,wrap,link,unlink,wrap,image\n\nundo,redo,wrap,underline,strikethrough,sub,sup,wrap,justifyleft,justifycenter,justifyright,wrap,outdent,indent,wrap,forecolor,backcolor,wrap,ltr,rtl\n\nfontselect,fontsizeselect,wrap,code,search,replace,wrap,nonbreaking,charmap,table,wrap,cleanup,removeformat,pastetext,pasteword,wrap,fullscreen \N -1560 2 1609884657 editor_tinymce fontselectlist Trebuchet=Trebuchet MS,Verdana,Arial,Helvetica,sans-serif;Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;Wingdings=wingdings \N -1561 2 1609884657 editor_tinymce customconfig \N -1562 2 1609884657 tinymce_moodleemoticon requireemoticon 1 \N -1563 2 1609884657 tinymce_spellchecker spellengine \N -1564 2 1609884657 tinymce_spellchecker spelllanguagelist +English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv \N -1565 2 1609884657 \N profileroles 5,4,3 \N -1566 2 1609884657 \N coursecontact 3 \N -1567 2 1609884657 \N frontpage 6 \N -1568 2 1609884657 \N frontpageloggedin 6 \N -1569 2 1609884657 \N maxcategorydepth 2 \N -1570 2 1609884657 \N frontpagecourselimit 200 \N -1571 2 1609884657 \N commentsperpage 15 \N -1572 2 1609884657 \N defaultfrontpageroleid 8 \N -1573 2 1609884657 \N messageinbound_enabled 0 \N -1574 2 1609884657 \N messageinbound_mailbox \N -1575 2 1609884657 \N messageinbound_domain \N -1576 2 1609884657 \N messageinbound_host \N -1577 2 1609884657 \N messageinbound_hostssl ssl \N -1578 2 1609884657 \N messageinbound_hostuser \N -1579 2 1609884657 \N messageinbound_hostpass \N -1580 2 1609884657 \N enablemobilewebservice 0 \N -1581 2 1609884657 tool_mobile apppolicy \N -1582 2 1609884658 tool_mobile typeoflogin 1 \N -1583 2 1609884658 tool_mobile qrcodetype 1 \N -1584 2 1609884658 tool_mobile forcedurlscheme moodlemobile \N -1585 2 1609884658 tool_mobile minimumversion \N -1586 2 1609884658 \N mobilecssurl \N -1587 2 1609884658 tool_mobile enablesmartappbanners 0 \N -1588 2 1609884658 tool_mobile iosappid 633359593 \N -1589 2 1609884658 tool_mobile androidappid com.moodle.moodlemobile \N -1590 2 1609884658 tool_mobile setuplink https://download.moodle.org/mobile \N -1591 2 1609884658 tool_mobile forcelogout 0 \N -1592 2 1609884658 tool_mobile disabledfeatures \N -1593 2 1609884658 tool_mobile custommenuitems \N -1594 2 1609884658 tool_mobile customlangstrings \N -1595 2 1609884658 tool_moodlenet enablemoodlenet 0 \N -1596 2 1609884658 tool_moodlenet defaultmoodlenetname MoodleNet Central \N -1597 2 1609884658 tool_moodlenet defaultmoodlenet https://moodle.net \N -1598 2 1609884709 \N timezone America/Los_Angeles \N -1599 2 1609884709 \N registerauth \N -1600 2 1609884719 \N noreplyaddress noreply@email.com \N -1601 2 1609892624 \N enablemobilewebservice 1 0 +1 0 1612889060 \N enableuserfeedback 0 \N +2 0 1612889060 \N userfeedback_nextreminder 1 \N +3 0 1612889060 \N userfeedback_remindafter 90 \N +4 0 1612889060 \N enableoutcomes 0 \N +5 0 1612889060 \N usecomments 1 \N +6 0 1612889060 \N usetags 1 \N +7 0 1612889060 \N enablenotes 1 \N +8 0 1612889060 \N enableportfolios 0 \N +9 0 1612889060 \N enablewebservices 0 \N +10 0 1612889060 \N enablestats 0 \N +11 0 1612889060 \N enablerssfeeds 0 \N +12 0 1612889060 \N enableblogs 1 \N +13 0 1612889060 \N enablecompletion 1 \N +14 0 1612889060 \N completiondefault 1 \N +15 0 1612889060 \N enableavailability 1 \N +16 0 1612889060 \N enableplagiarism 0 \N +17 0 1612889060 \N enablebadges 1 \N +18 0 1612889060 \N enableglobalsearch 0 \N +19 0 1612889060 \N allowstealth 0 \N +20 0 1612889060 \N enableanalytics 1 \N +21 0 1612889060 \N allowemojipicker 1 \N +22 0 1612889060 \N userfiltersdefault realname \N +23 0 1612889060 \N defaultpreference_maildisplay 2 \N +24 0 1612889060 \N defaultpreference_mailformat 1 \N +25 0 1612889060 \N defaultpreference_maildigest 0 \N +26 0 1612889060 \N defaultpreference_autosubscribe 1 \N +27 0 1612889060 \N defaultpreference_trackforums 0 \N +28 0 1612889060 \N autologinguests 0 \N +29 0 1612889060 \N hiddenuserfields \N +30 0 1612889060 \N showuseridentity email \N +31 0 1612889060 \N fullnamedisplay language \N +32 0 1612889060 \N alternativefullnameformat language \N +33 0 1612889060 \N maxusersperpage 100 \N +34 0 1612889060 \N enablegravatar 0 \N +35 0 1612889060 \N gravatardefaulturl mm \N +36 0 1612889060 \N agedigitalconsentverification 0 \N +37 0 1612889060 \N agedigitalconsentmap *, 16\nAT, 14\nBE, 13\nBG, 14\nCY, 14\nCZ, 15\nDK, 13\nEE, 13\nES, 14\nFI, 13\nFR, 15\nGB, 13\nGR, 15\nIT, 14\nLT, 14\nLV, 13\nMT, 13\nNO, 13\nPT, 13\nSE, 13\nUS, 13 \N +38 0 1612889060 \N sitepolicy \N +39 0 1612889060 \N sitepolicyguest \N +40 0 1612889060 moodlecourse visible 1 \N +41 0 1612889060 moodlecourse downloadcontentsitedefault 0 \N +42 0 1612889060 moodlecourse format topics \N +43 0 1612889060 moodlecourse maxsections 52 \N +44 0 1612889060 moodlecourse numsections 4 \N +45 0 1612889060 moodlecourse hiddensections 0 \N +46 0 1612889060 moodlecourse coursedisplay 0 \N +47 0 1612889060 moodlecourse courseenddateenabled 1 \N +48 0 1612889060 moodlecourse courseduration 31536000 \N +49 0 1612889060 moodlecourse lang \N +50 0 1612889060 moodlecourse newsitems 5 \N +51 0 1612889060 moodlecourse showgrades 1 \N +52 0 1612889060 moodlecourse showreports 0 \N +53 0 1612889060 moodlecourse maxbytes 0 \N +54 0 1612889060 moodlecourse enablecompletion 1 \N +55 0 1612889060 moodlecourse groupmode 0 \N +56 0 1612889060 moodlecourse groupmodeforce 0 \N +57 0 1612889060 \N downloadcoursecontentallowed 0 \N +58 0 1612889060 \N maxsizeperdownloadcoursefile 52428800 \N +59 0 1612889060 \N enablecourserequests 1 \N +60 0 1612889060 \N defaultrequestcategory 1 \N +61 0 1612889060 \N lockrequestcategory 0 \N +62 0 1612889060 \N courserequestnotify \N +63 0 1612889060 \N activitychoosertabmode 0 \N +64 0 1612889060 \N activitychooseractivefooter hidden \N +65 0 1612889060 backup loglifetime 30 \N +66 0 1612889060 backup backup_general_users 1 \N +67 0 1612889060 backup backup_general_users_locked \N +68 0 1612889060 backup backup_general_anonymize 0 \N +69 0 1612889060 backup backup_general_anonymize_locked \N +70 0 1612889060 backup backup_general_role_assignments 1 \N +71 0 1612889060 backup backup_general_role_assignments_locked \N +72 0 1612889060 backup backup_general_activities 1 \N +73 0 1612889060 backup backup_general_activities_locked \N +74 0 1612889060 backup backup_general_blocks 1 \N +75 0 1612889060 backup backup_general_blocks_locked \N +76 0 1612889060 backup backup_general_files 1 \N +77 0 1612889060 backup backup_general_files_locked \N +78 0 1612889060 backup backup_general_filters 1 \N +79 0 1612889060 backup backup_general_filters_locked \N +80 0 1612889060 backup backup_general_comments 1 \N +81 0 1612889060 backup backup_general_comments_locked \N +82 0 1612889060 backup backup_general_badges 1 \N +83 0 1612889060 backup backup_general_badges_locked \N +84 0 1612889060 backup backup_general_calendarevents 1 \N +85 0 1612889060 backup backup_general_calendarevents_locked \N +86 0 1612889060 backup backup_general_userscompletion 1 \N +87 0 1612889060 backup backup_general_userscompletion_locked \N +88 0 1612889060 backup backup_general_logs 0 \N +89 0 1612889060 backup backup_general_logs_locked \N +90 0 1612889060 backup backup_general_histories 0 \N +91 0 1612889060 backup backup_general_histories_locked \N +92 0 1612889060 backup backup_general_questionbank 1 \N +93 0 1612889060 backup backup_general_questionbank_locked \N +94 0 1612889060 backup backup_general_groups 1 \N +95 0 1612889060 backup backup_general_groups_locked \N +96 0 1612889060 backup backup_general_competencies 1 \N +97 0 1612889060 backup backup_general_competencies_locked \N +98 0 1612889060 backup backup_general_contentbankcontent 1 \N +99 0 1612889060 backup backup_general_contentbankcontent_locked \N +100 0 1612889060 backup backup_general_legacyfiles 1 \N +101 0 1612889060 backup backup_general_legacyfiles_locked \N +102 0 1612889060 backup import_general_maxresults 10 \N +103 0 1612889060 backup import_general_duplicate_admin_allowed 0 \N +104 0 1612889060 backup backup_import_activities 1 \N +105 0 1612889060 backup backup_import_activities_locked \N +106 0 1612889060 backup backup_import_blocks 1 \N +107 0 1612889060 backup backup_import_blocks_locked \N +108 0 1612889060 backup backup_import_filters 1 \N +109 0 1612889060 backup backup_import_filters_locked \N +110 0 1612889060 backup backup_import_calendarevents 1 \N +111 0 1612889060 backup backup_import_calendarevents_locked \N +112 0 1612889060 backup backup_import_questionbank 1 \N +113 0 1612889060 backup backup_import_questionbank_locked \N +114 0 1612889060 backup backup_import_groups 1 \N +115 0 1612889060 backup backup_import_groups_locked \N +116 0 1612889060 backup backup_import_competencies 1 \N +117 0 1612889060 backup backup_import_competencies_locked \N +118 0 1612889060 backup backup_import_contentbankcontent 1 \N +119 0 1612889060 backup backup_import_contentbankcontent_locked \N +120 0 1612889060 backup backup_import_legacyfiles 1 \N +121 0 1612889061 backup backup_import_legacyfiles_locked \N +122 0 1612889061 backup backup_auto_active 0 \N +123 0 1612889061 backup backup_auto_weekdays 0000000 \N +124 0 1612889061 backup backup_auto_hour 0 \N +125 0 1612889061 backup backup_auto_minute 0 \N +126 0 1612889061 backup backup_auto_storage 0 \N +127 0 1612889061 backup backup_auto_destination \N +128 0 1612889061 backup backup_auto_max_kept 1 \N +129 0 1612889061 backup backup_auto_delete_days 0 \N +130 0 1612889061 backup backup_auto_min_kept 0 \N +131 0 1612889061 backup backup_shortname 0 \N +132 0 1612889061 backup backup_auto_skip_hidden 1 \N +133 0 1612889061 backup backup_auto_skip_modif_days 30 \N +134 0 1612889061 backup backup_auto_skip_modif_prev 0 \N +135 0 1612889061 backup backup_auto_users 1 \N +136 0 1612889061 backup backup_auto_role_assignments 1 \N +137 0 1612889061 backup backup_auto_activities 1 \N +138 0 1612889061 backup backup_auto_blocks 1 \N +139 0 1612889061 backup backup_auto_files 1 \N +140 0 1612889061 backup backup_auto_filters 1 \N +141 0 1612889061 backup backup_auto_comments 1 \N +142 0 1612889061 backup backup_auto_badges 1 \N +143 0 1612889061 backup backup_auto_calendarevents 1 \N +144 0 1612889061 backup backup_auto_userscompletion 1 \N +145 0 1612889061 backup backup_auto_logs 0 \N +146 0 1612889061 backup backup_auto_histories 0 \N +147 0 1612889061 backup backup_auto_questionbank 1 \N +148 0 1612889061 backup backup_auto_groups 1 \N +149 0 1612889061 backup backup_auto_competencies 1 \N +150 0 1612889061 backup backup_auto_contentbankcontent 1 \N +151 0 1612889061 backup backup_auto_legacyfiles 1 \N +152 0 1612889061 restore restore_general_users 1 \N +153 0 1612889061 restore restore_general_users_locked \N +154 0 1612889061 restore restore_general_enrolments 1 \N +155 0 1612889061 restore restore_general_enrolments_locked \N +156 0 1612889061 restore restore_general_role_assignments 1 \N +157 0 1612889061 restore restore_general_role_assignments_locked \N +158 0 1612889061 restore restore_general_activities 1 \N +159 0 1612889061 restore restore_general_activities_locked \N +160 0 1612889061 restore restore_general_blocks 1 \N +161 0 1612889061 restore restore_general_blocks_locked \N +162 0 1612889061 restore restore_general_filters 1 \N +163 0 1612889061 restore restore_general_filters_locked \N +164 0 1612889061 restore restore_general_comments 1 \N +165 0 1612889061 restore restore_general_comments_locked \N +166 0 1612889061 restore restore_general_badges 1 \N +167 0 1612889061 restore restore_general_badges_locked \N +168 0 1612889061 restore restore_general_calendarevents 1 \N +169 0 1612889061 restore restore_general_calendarevents_locked \N +170 0 1612889061 restore restore_general_userscompletion 1 \N +171 0 1612889061 restore restore_general_userscompletion_locked \N +172 0 1612889061 restore restore_general_logs 1 \N +173 0 1612889061 restore restore_general_logs_locked \N +174 0 1612889061 restore restore_general_histories 1 \N +175 0 1612889061 restore restore_general_histories_locked \N +176 0 1612889061 restore restore_general_groups 1 \N +177 0 1612889061 restore restore_general_groups_locked \N +178 0 1612889061 restore restore_general_competencies 1 \N +179 0 1612889061 restore restore_general_competencies_locked \N +180 0 1612889061 restore restore_general_contentbankcontent 1 \N +181 0 1612889061 restore restore_general_contentbankcontent_locked \N +182 0 1612889061 restore restore_general_legacyfiles 1 \N +183 0 1612889061 restore restore_general_legacyfiles_locked \N +184 0 1612889061 restore restore_merge_overwrite_conf 0 \N +185 0 1612889061 restore restore_merge_overwrite_conf_locked \N +186 0 1612889061 restore restore_merge_course_fullname 1 \N +187 0 1612889061 restore restore_merge_course_fullname_locked \N +188 0 1612889061 restore restore_merge_course_shortname 1 \N +189 0 1612889061 restore restore_merge_course_shortname_locked \N +190 0 1612889061 restore restore_merge_course_startdate 1 \N +191 0 1612889061 restore restore_merge_course_startdate_locked \N +192 0 1612889061 restore restore_replace_overwrite_conf 0 \N +193 0 1612889061 restore restore_replace_overwrite_conf_locked \N +194 0 1612889061 restore restore_replace_course_fullname 1 \N +195 0 1612889061 restore restore_replace_course_fullname_locked \N +196 0 1612889061 restore restore_replace_course_shortname 1 \N +197 0 1612889061 restore restore_replace_course_shortname_locked \N +198 0 1612889061 restore restore_replace_course_startdate 1 \N +199 0 1612889061 restore restore_replace_course_startdate_locked \N +200 0 1612889061 restore restore_replace_keep_roles_and_enrolments 0 \N +201 0 1612889061 restore restore_replace_keep_roles_and_enrolments_locked \N +202 0 1612889061 restore restore_replace_keep_groups_and_groupings 0 \N +203 0 1612889061 restore restore_replace_keep_groups_and_groupings_locked \N +204 0 1612889061 \N enableasyncbackup 0 \N +205 0 1612889061 backup backup_async_message_users 0 \N +206 0 1612889061 backup backup_async_message_subject Moodle {operation} completed successfully \N +207 0 1612889061 backup backup_async_message Hi {user_firstname},
Your {operation} (ID: {backupid}) has completed successfully.

You can access it here: {link}. \N +208 0 1612889061 \N grade_profilereport user \N +209 0 1612889061 \N grade_aggregationposition 1 \N +210 0 1612889061 \N grade_includescalesinaggregation 1 \N +211 0 1612889061 \N grade_hiddenasdate 0 \N +212 0 1612889061 \N gradepublishing 0 \N +213 0 1612889061 \N grade_export_exportfeedback 0 \N +214 0 1612889061 \N grade_export_displaytype 1 \N +215 0 1612889061 \N grade_export_decimalpoints 2 \N +216 0 1612889061 \N grade_navmethod 1 \N +217 0 1612889061 \N grade_export_userprofilefields firstname,lastname,idnumber,institution,department,email \N +218 0 1612889061 \N grade_export_customprofilefields \N +219 0 1612889061 \N recovergradesdefault 0 \N +220 0 1612889061 \N gradeexport \N +221 0 1612889061 \N unlimitedgrades 0 \N +222 0 1612889061 \N grade_report_showmin 1 \N +223 0 1612889061 \N gradepointmax 100 \N +224 0 1612889061 \N gradepointdefault 100 \N +225 0 1612889061 \N grade_minmaxtouse 1 \N +226 0 1612889061 \N grade_mygrades_report overview \N +227 0 1612889061 \N gradereport_mygradeurl \N +228 0 1612889061 \N grade_hideforcedsettings 1 \N +229 0 1612889061 \N grade_aggregation 13 \N +230 0 1612889061 \N grade_aggregation_flag 0 \N +231 0 1612889061 \N grade_aggregations_visible 13 \N +232 0 1612889061 \N grade_aggregateonlygraded 1 \N +233 0 1612889061 \N grade_aggregateonlygraded_flag 2 \N +234 0 1612889061 \N grade_aggregateoutcomes 0 \N +235 0 1612889061 \N grade_aggregateoutcomes_flag 2 \N +236 0 1612889061 \N grade_keephigh 0 \N +237 0 1612889061 \N grade_keephigh_flag 3 \N +238 0 1612889061 \N grade_droplow 0 \N +239 0 1612889061 \N grade_droplow_flag 2 \N +240 0 1612889061 \N grade_overridecat 1 \N +241 0 1612889061 \N grade_displaytype 1 \N +242 0 1612889061 \N grade_decimalpoints 2 \N +243 0 1612889061 \N grade_item_advanced iteminfo,idnumber,gradepass,plusfactor,multfactor,display,decimals,hiddenuntil,locktime \N +244 0 1612889061 \N grade_report_studentsperpage 100 \N +245 0 1612889061 \N grade_report_showonlyactiveenrol 1 \N +246 0 1612889061 \N grade_report_quickgrading 1 \N +247 0 1612889061 \N grade_report_showquickfeedback 0 \N +248 0 1612889061 \N grade_report_meanselection 1 \N +249 0 1612889061 \N grade_report_enableajax 0 \N +250 0 1612889061 \N grade_report_showcalculations 1 \N +251 0 1612889061 \N grade_report_showeyecons 0 \N +252 0 1612889061 \N grade_report_showaverages 1 \N +253 0 1612889061 \N grade_report_showlocks 0 \N +254 0 1612889061 \N grade_report_showranges 0 \N +255 0 1612889061 \N grade_report_showanalysisicon 1 \N +256 0 1612889061 \N grade_report_showuserimage 1 \N +257 0 1612889061 \N grade_report_showactivityicons 1 \N +258 0 1612889061 \N grade_report_shownumberofgrades 0 \N +259 0 1612889061 \N grade_report_averagesdisplaytype inherit \N +260 0 1612889061 \N grade_report_rangesdisplaytype inherit \N +261 0 1612889061 \N grade_report_averagesdecimalpoints inherit \N +262 0 1612889061 \N grade_report_rangesdecimalpoints inherit \N +263 0 1612889061 \N grade_report_historyperpage 50 \N +264 0 1612889061 \N grade_report_overview_showrank 0 \N +265 0 1612889061 \N grade_report_overview_showtotalsifcontainhidden 0 \N +266 0 1612889061 \N grade_report_user_showrank 0 \N +267 0 1612889061 \N grade_report_user_showpercentage 1 \N +268 0 1612889061 \N grade_report_user_showgrade 1 \N +269 0 1612889061 \N grade_report_user_showfeedback 1 \N +270 0 1612889061 \N grade_report_user_showrange 1 \N +271 0 1612889061 \N grade_report_user_showweight 1 \N +272 0 1612889061 \N grade_report_user_showaverage 0 \N +273 0 1612889061 \N grade_report_user_showlettergrade 0 \N +274 0 1612889061 \N grade_report_user_rangedecimals 0 \N +275 0 1612889061 \N grade_report_user_showhiddenitems 1 \N +276 0 1612889061 \N grade_report_user_showtotalsifcontainhidden 0 \N +277 0 1612889061 \N grade_report_user_showcontributiontocoursetotal 1 \N +278 0 1612889061 analytics modeinstruction \N +279 0 1612889061 analytics percentonline 0 \N +280 0 1612889061 analytics typeinstitution \N +281 0 1612889061 analytics levelinstitution \N +282 0 1612889061 analytics predictionsprocessor \\mlbackend_php\\processor \N +283 0 1612889061 analytics defaulttimesplittingsevaluation \\core\\analytics\\time_splitting\\quarters_accum,\\core\\analytics\\time_splitting\\quarters,\\core\\analytics\\time_splitting\\single_range \N +284 0 1612889061 analytics modeloutputdir \N +285 0 1612889061 analytics onlycli 1 \N +286 0 1612889061 analytics modeltimelimit 1200 \N +287 0 1612889061 core_competency enabled 1 \N +288 0 1612889061 core_competency pushcourseratingstouserplans 1 \N +289 0 1612889061 \N badges_defaultissuername \N +290 0 1612889061 \N badges_defaultissuercontact \N +291 0 1612889061 \N badges_badgesalt badges1612889052 \N +292 0 1612889061 \N badges_allowcoursebadges 1 \N +293 0 1612889061 \N badges_allowexternalbackpack 1 \N +294 0 1612889061 \N rememberuserlicensepref 1 \N +295 0 1612889062 \N timezone Europe/London \N +296 0 1612889062 \N forcetimezone 99 \N +297 0 1612889062 \N country 0 \N +298 0 1612889062 \N defaultcity \N +299 0 1612889062 \N geoip2file /var/www/moodledata/geoip/GeoLite2-City.mmdb \N +300 0 1612889062 \N googlemapkey3 \N +301 0 1612889062 \N allcountrycodes \N +302 0 1612889062 \N autolang 1 \N +303 0 1612889062 \N lang en \N +304 0 1612889062 \N autolangusercreation 1 \N +305 0 1612889062 \N langmenu 1 \N +306 0 1612889062 \N langlist \N +307 0 1612889062 \N langcache 1 \N +308 0 1612889062 \N langstringcache 1 \N +309 0 1612889062 \N locale \N +310 0 1612889062 \N latinexcelexport 0 \N +311 0 1612889062 \N messaging 1 \N +312 0 1612889062 \N messagingallusers 0 \N +313 0 1612889062 \N messagingdefaultpressenter 1 \N +314 0 1612889062 \N messagingdeletereadnotificationsdelay 604800 \N +315 0 1612889062 \N messagingdeleteallnotificationsdelay 2620800 \N +316 0 1612889062 \N messagingallowemailoverride 0 \N +317 0 1612889062 \N requiremodintro 0 \N +318 0 1612889062 antivirus notifyemail \N +319 0 1612889062 antivirus enablequarantine 0 \N +320 0 1612889062 antivirus quarantinetime 2419200 \N +321 0 1612889062 \N registerauth \N +322 0 1612889062 \N authloginviaemail 0 \N +323 0 1612889062 \N allowaccountssameemail 0 \N +324 0 1612889062 \N authpreventaccountcreation 0 \N +325 0 1612889062 \N loginpageautofocus 0 \N +326 0 1612889062 \N guestloginbutton 1 \N +327 0 1612889062 \N limitconcurrentlogins 0 \N +328 0 1612889062 \N alternateloginurl \N +329 0 1612889062 \N forgottenpasswordurl \N +330 0 1612889062 \N auth_instructions \N +331 0 1612889062 \N allowemailaddresses \N +332 0 1612889062 \N denyemailaddresses \N +333 0 1612889062 \N verifychangedemail 1 \N +334 0 1612889062 \N recaptchapublickey \N +335 0 1612889062 \N recaptchaprivatekey \N +336 0 1612889062 cachestore_apcu testperformance 0 \N +337 0 1612889062 cachestore_memcached testservers \N +338 0 1612889063 cachestore_mongodb testserver \N +339 0 1612889063 cachestore_redis test_server \N +340 0 1612889063 cachestore_redis test_password \N +341 0 1612889063 \N filteruploadedfiles 0 \N +342 0 1612889063 \N filtermatchoneperpage 0 \N +343 0 1612889063 \N filtermatchonepertext 0 \N +344 0 1612889063 \N media_default_width 400 \N +345 0 1612889063 \N media_default_height 300 \N +346 0 1612889063 \N portfolio_moderate_filesize_threshold 1048576 \N +347 0 1612889063 \N portfolio_high_filesize_threshold 5242880 \N +348 0 1612889063 \N portfolio_moderate_db_threshold 20 \N +349 0 1612889063 \N portfolio_high_db_threshold 50 \N +350 0 1612889063 question_preview behaviour deferredfeedback \N +351 0 1612889063 question_preview correctness 1 \N +352 0 1612889063 question_preview marks 2 \N +353 0 1612889063 question_preview markdp 2 \N +354 0 1612889063 question_preview feedback 1 \N +355 0 1612889063 question_preview generalfeedback 1 \N +356 0 1612889063 question_preview rightanswer 1 \N +357 0 1612889063 question_preview history 0 \N +358 0 1612889063 \N repositorycacheexpire 120 \N +359 0 1612889063 \N repositorygetfiletimeout 30 \N +360 0 1612889063 \N repositorysyncfiletimeout 1 \N +361 0 1612889063 \N repositorysyncimagetimeout 3 \N +362 0 1612889063 \N repositoryallowexternallinks 1 \N +363 0 1612889063 \N legacyfilesinnewcourses 0 \N +364 0 1612889063 \N legacyfilesaddallowed 1 \N +365 0 1612889063 \N searchengine simpledb \N +366 0 1612889063 \N searchindexwhendisabled 0 \N +367 0 1612889063 \N searchindextime 600 \N +368 0 1612889063 \N searchallavailablecourses 0 \N +369 0 1612889063 \N searchincludeallcourses 0 \N +370 0 1612889063 \N searchenablecategories 0 \N +371 0 1612889063 \N searchdefaultcategory core-all \N +372 0 1612889063 \N searchhideallcategory 0 \N +373 0 1612889063 \N searchenginequeryonly \N +374 0 1612889063 \N searchbannerenable 0 \N +375 0 1612889063 \N searchbanner \N +376 0 1612889063 \N enablewsdocumentation 0 \N +377 0 1612889063 \N allowbeforeblock 0 \N +378 0 1612889063 \N allowedip \N +379 0 1612889063 \N blockedip \N +380 0 1612889063 \N protectusernames 1 \N +381 0 1612889063 \N forcelogin 0 \N +382 0 1612889063 \N forceloginforprofiles 1 \N +383 0 1612889063 \N forceloginforprofileimage 0 \N +384 0 1612889063 \N opentowebcrawlers 0 \N +385 0 1612889063 \N allowindexing 0 \N +386 0 1612889063 \N maxbytes 0 \N +387 0 1612889063 \N userquota 104857600 \N +388 0 1612889063 \N allowobjectembed 0 \N +389 0 1612889063 \N enabletrusttext 0 \N +390 0 1612889063 \N maxeditingtime 1800 \N +391 0 1612889063 \N extendedusernamechars 0 \N +392 0 1612889063 \N keeptagnamecase 1 \N +393 0 1612889063 \N profilesforenrolledusersonly 1 \N +394 0 1612889063 \N cronclionly 1 \N +395 0 1612889063 \N cronremotepassword \N +396 0 1612889063 tool_task enablerunnow 1 \N +397 0 1612889063 \N lockoutthreshold 0 \N +398 0 1612889063 \N lockoutwindow 1800 \N +399 0 1612889063 \N lockoutduration 1800 \N +400 0 1612889063 \N passwordpolicy 1 \N +401 0 1612889063 \N minpasswordlength 8 \N +402 0 1612889063 \N minpassworddigits 1 \N +403 0 1612889063 \N minpasswordlower 1 \N +404 0 1612889063 \N minpasswordupper 1 \N +405 0 1612889063 \N minpasswordnonalphanum 1 \N +406 0 1612889063 \N maxconsecutiveidentchars 0 \N +407 0 1612889063 \N passwordpolicycheckonlogin 0 \N +408 0 1612889063 \N passwordreuselimit 0 \N +409 0 1612889063 \N pwresettime 1800 \N +410 0 1612889063 \N passwordchangelogout 0 \N +411 0 1612889063 \N passwordchangetokendeletion 0 \N +412 0 1612889063 \N tokenduration 7257600 \N +413 0 1612889063 \N groupenrolmentkeypolicy 1 \N +414 0 1612889063 \N disableuserimages 0 \N +415 0 1612889063 \N emailchangeconfirmation 1 \N +416 0 1612889063 \N rememberusername 2 \N +417 0 1612889063 \N strictformsrequired 0 \N +418 0 1612889063 \N cookiesecure 1 \N +419 0 1612889063 \N cookiehttponly 0 \N +420 0 1612889063 \N allowframembedding 0 \N +421 0 1612889063 \N curlsecurityblockedhosts \N +422 0 1612889063 \N curlsecurityallowedport \N +423 0 1612889063 \N referrerpolicy default \N +424 0 1612889063 \N displayloginfailures 0 \N +425 0 1612889063 \N notifyloginfailures \N +426 0 1612889063 \N notifyloginthreshold 10 \N +427 0 1612889063 \N themelist \N +428 0 1612889063 \N themedesignermode 0 \N +429 0 1612889063 \N allowuserthemes 0 \N +430 0 1612889063 \N allowcoursethemes 0 \N +431 0 1612889063 \N allowcategorythemes 0 \N +432 0 1612889063 \N allowcohortthemes 0 \N +433 0 1612889063 \N allowthemechangeonurl 0 \N +434 0 1612889063 \N allowuserblockhiding 1 \N +435 0 1612889063 \N langmenuinsecurelayout 0 \N +436 0 1612889063 \N logininfoinsecurelayout 0 \N +437 0 1612889063 \N custommenuitems \N +438 0 1612889063 \N customusermenuitems grades,grades|/grade/report/mygrades.php|t/grades\nmessages,message|/message/index.php|t/message\npreferences,moodle|/user/preferences.php|t/preferences \N +439 0 1612889063 \N enabledevicedetection 1 \N +440 0 1612889063 \N devicedetectregex [] \N +441 0 1612889063 theme_boost preset default.scss \N +442 0 1612889063 theme_boost presetfiles \N +443 0 1612889063 theme_boost backgroundimage \N +444 0 1612889063 theme_boost brandcolor \N +445 0 1612889063 theme_boost scsspre \N +446 0 1612889063 theme_boost scss \N +447 0 1612889063 theme_classic navbardark 0 \N +448 0 1612889063 theme_classic preset default.scss \N +449 0 1612889063 theme_classic presetfiles \N +450 0 1612889063 theme_classic backgroundimage \N +451 0 1612889063 theme_classic brandcolor \N +452 0 1612889063 theme_classic scsspre \N +453 0 1612889063 theme_classic scss \N +454 0 1612889063 core_admin logo \N +455 0 1612889063 core_admin logocompact \N +456 0 1612889063 core_admin coursecolor1 #81ecec \N +457 0 1612889063 core_admin coursecolor2 #74b9ff \N +458 0 1612889063 core_admin coursecolor3 #a29bfe \N +459 0 1612889063 core_admin coursecolor4 #dfe6e9 \N +460 0 1612889063 core_admin coursecolor5 #00b894 \N +461 0 1612889063 core_admin coursecolor6 #0984e3 \N +462 0 1612889063 core_admin coursecolor7 #b2bec3 \N +463 0 1612889063 core_admin coursecolor8 #fdcb6e \N +464 0 1612889063 core_admin coursecolor9 #fd79a8 \N +465 0 1612889063 core_admin coursecolor10 #6c5ce7 \N +466 0 1612889063 \N calendartype gregorian \N +467 0 1612889063 \N calendar_adminseesall 0 \N +468 0 1612889063 \N calendar_site_timeformat 0 \N +469 0 1612889063 \N calendar_startwday 1 \N +470 0 1612889063 \N calendar_weekend 65 \N +471 0 1612889063 \N calendar_lookahead 21 \N +472 0 1612889063 \N calendar_maxevents 10 \N +473 0 1612889063 \N enablecalendarexport 1 \N +474 0 1612889063 \N calendar_customexport 1 \N +475 0 1612889063 \N calendar_exportlookahead 365 \N +476 0 1612889063 \N calendar_exportlookback 5 \N +477 0 1612889063 \N calendar_exportsalt BPDupDDE9GhMuNOVYYjFNbBnd9XgPFbVUmYZg7LwZhELtrXkVd8bXnIBg3rx \N +478 0 1612889063 \N calendar_showicalsource 1 \N +479 0 1612889063 \N useblogassociations 1 \N +480 0 1612889063 \N bloglevel 4 \N +481 0 1612889063 \N useexternalblogs 1 \N +482 0 1612889063 \N externalblogcrontime 86400 \N +483 0 1612889063 \N maxexternalblogsperuser 1 \N +484 0 1612889063 \N blogusecomments 1 \N +485 0 1612889063 \N blogshowcommentscount 1 \N +486 0 1612889063 \N defaulthomepage 1 \N +487 0 1612889063 \N allowguestmymoodle 1 \N +488 0 1612889063 \N navshowfullcoursenames 0 \N +489 0 1612889063 \N navshowcategories 1 \N +490 0 1612889063 \N navshowmycoursecategories 0 \N +491 0 1612889063 \N navshowallcourses 0 \N +492 0 1612889063 \N navsortmycoursessort sortorder \N +493 0 1612889063 \N navsortmycourseshiddenlast 1 \N +494 0 1612889063 \N navcourselimit 10 \N +495 0 1612889063 \N usesitenameforsitepages 0 \N +496 0 1612889063 \N linkadmincategories 1 \N +497 0 1612889063 \N linkcoursesections 1 \N +498 0 1612889063 \N navshowfrontpagemods 1 \N +499 0 1612889063 \N navadduserpostslinks 1 \N +500 0 1612889063 \N formatstringstriptags 1 \N +501 0 1612889063 \N emoticons [{"text":":-)","imagename":"s\\/smiley","imagecomponent":"core","altidentifier":"smiley","altcomponent":"core_pix"},{"text":":)","imagename":"s\\/smiley","imagecomponent":"core","altidentifier":"smiley","altcomponent":"core_pix"},{"text":":-D","imagename":"s\\/biggrin","imagecomponent":"core","altidentifier":"biggrin","altcomponent":"core_pix"},{"text":";-)","imagename":"s\\/wink","imagecomponent":"core","altidentifier":"wink","altcomponent":"core_pix"},{"text":":-\\/","imagename":"s\\/mixed","imagecomponent":"core","altidentifier":"mixed","altcomponent":"core_pix"},{"text":"V-.","imagename":"s\\/thoughtful","imagecomponent":"core","altidentifier":"thoughtful","altcomponent":"core_pix"},{"text":":-P","imagename":"s\\/tongueout","imagecomponent":"core","altidentifier":"tongueout","altcomponent":"core_pix"},{"text":":-p","imagename":"s\\/tongueout","imagecomponent":"core","altidentifier":"tongueout","altcomponent":"core_pix"},{"text":"B-)","imagename":"s\\/cool","imagecomponent":"core","altidentifier":"cool","altcomponent":"core_pix"},{"text":"^-)","imagename":"s\\/approve","imagecomponent":"core","altidentifier":"approve","altcomponent":"core_pix"},{"text":"8-)","imagename":"s\\/wideeyes","imagecomponent":"core","altidentifier":"wideeyes","altcomponent":"core_pix"},{"text":":o)","imagename":"s\\/clown","imagecomponent":"core","altidentifier":"clown","altcomponent":"core_pix"},{"text":":-(","imagename":"s\\/sad","imagecomponent":"core","altidentifier":"sad","altcomponent":"core_pix"},{"text":":(","imagename":"s\\/sad","imagecomponent":"core","altidentifier":"sad","altcomponent":"core_pix"},{"text":"8-.","imagename":"s\\/shy","imagecomponent":"core","altidentifier":"shy","altcomponent":"core_pix"},{"text":":-I","imagename":"s\\/blush","imagecomponent":"core","altidentifier":"blush","altcomponent":"core_pix"},{"text":":-X","imagename":"s\\/kiss","imagecomponent":"core","altidentifier":"kiss","altcomponent":"core_pix"},{"text":"8-o","imagename":"s\\/surprise","imagecomponent":"core","altidentifier":"surprise","altcomponent":"core_pix"},{"text":"P-|","imagename":"s\\/blackeye","imagecomponent":"core","altidentifier":"blackeye","altcomponent":"core_pix"},{"text":"8-[","imagename":"s\\/angry","imagecomponent":"core","altidentifier":"angry","altcomponent":"core_pix"},{"text":"(grr)","imagename":"s\\/angry","imagecomponent":"core","altidentifier":"angry","altcomponent":"core_pix"},{"text":"xx-P","imagename":"s\\/dead","imagecomponent":"core","altidentifier":"dead","altcomponent":"core_pix"},{"text":"|-.","imagename":"s\\/sleepy","imagecomponent":"core","altidentifier":"sleepy","altcomponent":"core_pix"},{"text":"}-]","imagename":"s\\/evil","imagecomponent":"core","altidentifier":"evil","altcomponent":"core_pix"},{"text":"(h)","imagename":"s\\/heart","imagecomponent":"core","altidentifier":"heart","altcomponent":"core_pix"},{"text":"(heart)","imagename":"s\\/heart","imagecomponent":"core","altidentifier":"heart","altcomponent":"core_pix"},{"text":"(y)","imagename":"s\\/yes","imagecomponent":"core","altidentifier":"yes","altcomponent":"core"},{"text":"(n)","imagename":"s\\/no","imagecomponent":"core","altidentifier":"no","altcomponent":"core"},{"text":"(martin)","imagename":"s\\/martin","imagecomponent":"core","altidentifier":"martin","altcomponent":"core_pix"},{"text":"( )","imagename":"s\\/egg","imagecomponent":"core","altidentifier":"egg","altcomponent":"core_pix"}] \N +502 0 1612889063 \N docroot https://docs.moodle.org \N +503 0 1612889063 \N doclang \N +504 0 1612889063 \N doctonewwindow 0 \N +505 0 1612889063 \N coursecontactduplicates 0 \N +506 0 1612889063 \N courselistshortnames 0 \N +507 0 1612889063 \N coursesperpage 20 \N +508 0 1612889063 \N courseswithsummarieslimit 10 \N +509 0 1612889063 \N courseoverviewfileslimit 1 \N +510 0 1612889063 \N courseoverviewfilesext .jpg,.gif,.png \N +511 0 1612889063 \N coursegraceperiodbefore 0 \N +512 0 1612889063 \N coursegraceperiodafter 0 \N +513 0 1612889063 \N useexternalyui 0 \N +514 0 1612889063 \N yuicomboloading 1 \N +515 0 1612889063 \N cachejs 1 \N +516 0 1612889063 \N modchooserdefault 1 \N +517 0 1612889063 \N additionalhtmlhead \N +518 0 1612889063 \N additionalhtmltopofbody \N +519 0 1612889063 \N additionalhtmlfooter \N +520 0 1612889063 \N cachetemplates 1 \N +521 0 1612889063 \N pathtophp \N +522 0 1612889064 \N pathtodu \N +523 0 1612889064 \N aspellpath \N +524 0 1612889064 \N pathtodot \N +525 0 1612889064 \N pathtogs /usr/bin/gs \N +526 0 1612889064 \N pathtopython \N +527 0 1612889064 \N supportname Admin User \N +528 0 1612889064 \N supportemail \N +529 0 1612889064 \N supportpage \N +530 0 1612889064 \N dbsessions 0 \N +531 0 1612889064 \N sessioncookie \N +532 0 1612889064 \N sessioncookiepath \N +533 0 1612889064 \N sessioncookiedomain \N +534 0 1612889064 \N statsfirstrun none \N +535 0 1612889064 \N statsmaxruntime 0 \N +536 0 1612889064 \N statsruntimedays 31 \N +537 0 1612889064 \N statsuserthreshold 0 \N +538 0 1612889064 \N slasharguments 1 \N +539 0 1612889064 \N getremoteaddrconf 3 \N +540 0 1612889064 \N reverseproxyignore \N +541 0 1612889064 \N proxyhost \N +542 0 1612889064 \N proxyport 0 \N +543 0 1612889064 \N proxytype HTTP \N +544 0 1612889064 \N proxyuser \N +545 0 1612889064 \N proxypassword \N +546 0 1612889064 \N proxybypass localhost, 127.0.0.1 \N +547 0 1612889064 \N maintenance_enabled 0 \N +548 0 1612889064 \N maintenance_message \N +549 0 1612889064 \N deleteunconfirmed 168 \N +550 0 1612889064 \N deleteincompleteusers 0 \N +551 0 1612889064 \N disablegradehistory 0 \N +552 0 1612889064 \N gradehistorylifetime 0 \N +553 0 1612889064 \N tempdatafoldercleanup 168 \N +554 0 1612889064 \N filescleanupperiod 86400 \N +555 0 1612889064 \N extramemorylimit 512M \N +556 0 1612889064 \N maxtimelimit 0 \N +557 0 1612889064 \N curlcache 120 \N +558 0 1612889064 \N curltimeoutkbitrate 56 \N +559 0 1612889064 \N cron_enabled 1 \N +560 0 1612889064 \N task_scheduled_concurrency_limit 3 \N +561 0 1612889064 \N task_scheduled_max_runtime 1800 \N +562 0 1612889064 \N task_adhoc_concurrency_limit 3 \N +563 0 1612889064 \N task_adhoc_max_runtime 1800 \N +564 0 1612889064 \N task_logmode 1 \N +565 0 1612889064 \N task_logtostdout 1 \N +566 0 1612889064 \N task_logretention 2419200 \N +567 0 1612889064 \N task_logretainruns 20 \N +568 0 1612889064 \N smtphosts \N +569 0 1612889064 \N smtpsecure \N +570 0 1612889064 \N smtpauthtype LOGIN \N +571 0 1612889064 \N smtpuser \N +572 0 1612889064 \N smtppass \N +573 0 1612889064 \N smtpmaxbulk 1 \N +574 0 1612889064 \N noreplyaddress noreply@dev.derekmaxson.com \N +575 0 1612889064 \N allowedemaildomains \N +576 0 1612889064 \N divertallemailsto \N +577 0 1612889064 \N divertallemailsexcept \N +578 0 1612889064 \N emaildkimselector \N +579 0 1612889064 \N sitemailcharset 0 \N +580 0 1612889064 \N allowusermailcharset 0 \N +581 0 1612889064 \N allowattachments 1 \N +582 0 1612889064 \N mailnewline LF \N +583 0 1612889064 \N emailfromvia 1 \N +584 0 1612889064 \N emailsubjectprefix \N +585 0 1612889064 \N emailheaders \N +586 0 1612889064 \N updateautocheck 1 \N +587 0 1612889064 \N updateminmaturity 200 \N +588 0 1612889064 \N updatenotifybuilds 0 \N +589 0 1612889064 \N dndallowtextandlinks 0 \N +590 0 1612889064 \N pathtosassc \N +591 0 1612889064 \N contextlocking 0 \N +592 0 1612889064 \N contextlockappliestoadmin 1 \N +593 0 1612889064 \N forceclean 0 \N +594 0 1612889064 \N enablecourserelativedates 0 \N +595 0 1612889064 \N debug 0 \N +596 0 1612889064 \N debugdisplay 0 \N +597 0 1612889064 \N perfdebug 7 \N +598 0 1612889064 \N debugstringids 0 \N +599 0 1612889064 \N debugsqltrace 0 \N +600 0 1612889064 \N debugvalidators 0 \N +601 0 1612889064 \N debugpageinfo 0 \N +602 0 1612889064 \N profilingenabled 0 \N +603 0 1612889064 \N profilingincluded \N +604 0 1612889064 \N profilingexcluded \N +605 0 1612889064 \N profilingautofrec 0 \N +606 0 1612889064 \N profilingallowme 0 \N +607 0 1612889064 \N profilingallowall 0 \N +608 0 1612889064 \N profilingslow 0 \N +609 0 1612889064 \N profilinglifetime 1440 \N +610 0 1612889064 \N profilingimportprefix (I) \N +611 0 1612889067 \N calendar_exportsalt DaSq4Dykd5LKpXJuifuvgPNkhOICXEKjaJU1TXKQC1DHDpxHUubuGyQfAR73 BPDupDDE9GhMuNOVYYjFNbBnd9XgPFbVUmYZg7LwZhELtrXkVd8bXnIBg3rx +612 0 1612889086 activitynames filter_active 1 +613 0 1612889086 displayh5p filter_active 1 +614 0 1612889086 emoticon filter_active 1 +615 0 1612889086 mathjaxloader filter_active 1 +616 0 1612889086 mediaplugin filter_active 1 +617 0 1612889087 urltolink filter_active 1 +618 2 1612889142 \N notloggedinroleid 6 \N +619 2 1612889142 \N guestroleid 6 \N +620 2 1612889142 \N defaultuserroleid 7 \N +621 2 1612889142 \N creatornewroleid 3 \N +622 2 1612889142 \N restorernewroleid 3 \N +623 2 1612889142 tool_dataprivacy contactdataprotectionofficer 0 \N +624 2 1612889142 tool_dataprivacy automaticdataexportapproval 0 \N +625 2 1612889142 tool_dataprivacy automaticdatadeletionapproval 0 \N +626 2 1612889142 tool_dataprivacy automaticdeletionrequests 1 \N +627 2 1612889142 tool_dataprivacy privacyrequestexpiry 604800 \N +628 2 1612889142 tool_dataprivacy requireallenddatesforuserdeletion 1 \N +629 2 1612889142 tool_dataprivacy showdataretentionsummary 1 \N +630 2 1612889142 tool_log exportlog 1 \N +631 2 1612889142 \N sitepolicyhandler \N +632 2 1612889142 \N gradebookroles 5 \N +633 2 1612889142 analytics logstore logstore_standard \N +634 2 1612889142 \N h5plibraryhandler h5plib_v124 \N +635 2 1612889142 \N jabberhost \N +636 2 1612889142 \N jabberserver \N +637 2 1612889142 \N jabberusername \N +638 2 1612889142 \N jabberpassword \N +639 2 1612889142 \N jabberport 5222 \N +640 2 1612889142 \N airnotifierurl https://messages.moodle.net \N +641 2 1612889142 \N airnotifierport 443 \N +642 2 1612889142 \N airnotifiermobileappname com.moodle.moodlemobile \N +643 2 1612889142 \N airnotifierappname commoodlemoodlemobile \N +644 2 1612889142 \N airnotifieraccesskey \N +645 2 1612889142 assign feedback_plugin_for_gradebook assignfeedback_comments \N +646 2 1612889142 assign showrecentsubmissions 0 \N +647 2 1612889142 assign submissionreceipts 1 \N +648 2 1612889142 assign submissionstatement This submission is my own work, except where I have acknowledged the use of the works of other people. \N +649 2 1612889142 assign submissionstatementteamsubmission This submission is the work of my group, except where we have acknowledged the use of the works of other people. \N +650 2 1612889142 assign submissionstatementteamsubmissionallsubmit This submission is my own work as a group member, except where I have acknowledged the use of the works of other people. \N +651 2 1612889142 assign maxperpage -1 \N +652 2 1612889142 assign alwaysshowdescription 1 \N +653 2 1612889142 assign alwaysshowdescription_adv \N +654 2 1612889142 assign alwaysshowdescription_locked \N +655 2 1612889142 assign allowsubmissionsfromdate 0 \N +656 2 1612889142 assign allowsubmissionsfromdate_enabled 1 \N +657 2 1612889142 assign allowsubmissionsfromdate_adv \N +658 2 1612889142 assign duedate 604800 \N +659 2 1612889142 assign duedate_enabled 1 \N +660 2 1612889142 assign duedate_adv \N +661 2 1612889142 assign cutoffdate 1209600 \N +662 2 1612889142 assign cutoffdate_enabled \N +663 2 1612889142 assign cutoffdate_adv \N +664 2 1612889142 assign gradingduedate 1209600 \N +665 2 1612889142 assign gradingduedate_enabled 1 \N +666 2 1612889142 assign gradingduedate_adv \N +667 2 1612889142 assign submissiondrafts 0 \N +668 2 1612889142 assign submissiondrafts_adv \N +669 2 1612889142 assign submissiondrafts_locked \N +670 2 1612889142 assign requiresubmissionstatement 0 \N +671 2 1612889142 assign requiresubmissionstatement_adv \N +672 2 1612889142 assign requiresubmissionstatement_locked \N +673 2 1612889142 assign attemptreopenmethod none \N +674 2 1612889142 assign attemptreopenmethod_adv \N +675 2 1612889142 assign attemptreopenmethod_locked \N +676 2 1612889142 assign maxattempts -1 \N +677 2 1612889142 assign maxattempts_adv \N +678 2 1612889142 assign maxattempts_locked \N +679 2 1612889142 assign teamsubmission 0 \N +680 2 1612889142 assign teamsubmission_adv \N +681 2 1612889142 assign teamsubmission_locked \N +682 2 1612889142 assign preventsubmissionnotingroup 0 \N +683 2 1612889142 assign preventsubmissionnotingroup_adv \N +684 2 1612889142 assign preventsubmissionnotingroup_locked \N +685 2 1612889142 assign requireallteammemberssubmit 0 \N +686 2 1612889142 assign requireallteammemberssubmit_adv \N +687 2 1612889142 assign requireallteammemberssubmit_locked \N +688 2 1612889142 assign teamsubmissiongroupingid \N +689 2 1612889142 assign teamsubmissiongroupingid_adv \N +690 2 1612889142 assign sendnotifications 0 \N +691 2 1612889142 assign sendnotifications_adv \N +692 2 1612889142 assign sendnotifications_locked \N +693 2 1612889142 assign sendlatenotifications 0 \N +694 2 1612889142 assign sendlatenotifications_adv \N +695 2 1612889142 assign sendlatenotifications_locked \N +696 2 1612889142 assign sendstudentnotifications 1 \N +697 2 1612889142 assign sendstudentnotifications_adv \N +698 2 1612889142 assign sendstudentnotifications_locked \N +699 2 1612889142 assign blindmarking 0 \N +700 2 1612889142 assign blindmarking_adv \N +701 2 1612889142 assign blindmarking_locked \N +702 2 1612889142 assign hidegrader 0 \N +703 2 1612889142 assign hidegrader_adv \N +704 2 1612889142 assign hidegrader_locked \N +705 2 1612889142 assign markingworkflow 0 \N +706 2 1612889142 assign markingworkflow_adv \N +707 2 1612889142 assign markingworkflow_locked \N +708 2 1612889142 assign markingallocation 0 \N +709 2 1612889142 assign markingallocation_adv \N +710 2 1612889142 assign markingallocation_locked \N +711 2 1612889142 assignsubmission_file default 1 \N +712 2 1612889142 assignsubmission_file maxfiles 20 \N +713 2 1612889142 assignsubmission_file filetypes \N +714 2 1612889142 assignsubmission_file maxbytes 0 \N +715 2 1612889142 assignsubmission_onlinetext default 0 \N +716 2 1612889142 assignfeedback_comments default 1 \N +717 2 1612889142 assignfeedback_comments inline 0 \N +718 2 1612889142 assignfeedback_comments inline_adv \N +719 2 1612889142 assignfeedback_comments inline_locked \N +720 2 1612889142 assignfeedback_editpdf default 1 \N +721 2 1612889142 assignfeedback_editpdf stamps \N +722 2 1612889142 assignfeedback_file default 0 \N +723 2 1612889142 assignfeedback_offline default 0 \N +724 2 1612889142 book numberingoptions 0,1,2,3 \N +725 2 1612889142 book navoptions 0,1,2 \N +726 2 1612889142 book numbering 1 \N +727 2 1612889142 book navstyle 1 \N +728 2 1612889142 \N chat_method ajax \N +729 2 1612889142 \N chat_refresh_userlist 10 \N +730 2 1612889142 \N chat_old_ping 35 \N +731 2 1612889142 \N chat_refresh_room 5 \N +732 2 1612889142 \N chat_normal_updatemode jsupdate \N +733 2 1612889142 \N chat_serverhost dev.derekmaxson.com \N +734 2 1612889142 \N chat_serverip 127.0.0.1 \N +735 2 1612889142 \N chat_serverport 9111 \N +736 2 1612889142 \N chat_servermax 100 \N +737 2 1612889142 \N data_enablerssfeeds 0 \N +738 2 1612889142 \N feedback_allowfullanonymous 0 \N +739 2 1612889142 resource framesize 130 \N +740 2 1612889142 resource displayoptions 0,1,4,5,6 \N +741 2 1612889142 resource printintro 1 \N +742 2 1612889142 resource display 0 \N +743 2 1612889142 resource showsize 0 \N +744 2 1612889142 resource showtype 0 \N +745 2 1612889142 resource showdate 0 \N +746 2 1612889142 resource popupwidth 620 \N +747 2 1612889142 resource popupheight 450 \N +748 2 1612889142 resource filterfiles 0 \N +749 2 1612889142 folder showexpanded 1 \N +750 2 1612889142 folder maxsizetodownload 0 \N +751 2 1612889142 \N forum_displaymode 3 \N +752 2 1612889142 \N forum_shortpost 300 \N +753 2 1612889143 \N forum_longpost 600 \N +754 2 1612889143 \N forum_manydiscussions 100 \N +755 2 1612889143 \N forum_maxbytes 512000 \N +756 2 1612889143 \N forum_maxattachments 9 \N +757 2 1612889143 \N forum_subscription 0 \N +758 2 1612889143 \N forum_trackingtype 1 \N +759 2 1612889143 \N forum_trackreadposts 1 \N +760 2 1612889143 \N forum_allowforcedreadtracking 0 \N +761 2 1612889143 \N forum_oldpostdays 14 \N +762 2 1612889143 \N forum_usermarksread 0 \N +763 2 1612889143 \N forum_cleanreadtime 2 \N +764 2 1612889143 \N digestmailtime 17 \N +765 2 1612889143 \N forum_enablerssfeeds 0 \N +766 2 1612889143 \N forum_enabletimedposts 1 \N +767 2 1612889143 \N glossary_entbypage 10 \N +768 2 1612889143 \N glossary_dupentries 0 \N +769 2 1612889143 \N glossary_allowcomments 0 \N +770 2 1612889143 \N glossary_linkbydefault 1 \N +771 2 1612889143 \N glossary_defaultapproval 1 \N +772 2 1612889143 \N glossary_enablerssfeeds 0 \N +773 2 1612889143 \N glossary_linkentries 0 \N +774 2 1612889143 \N glossary_casesensitive 0 \N +775 2 1612889143 \N glossary_fullmatch 0 \N +776 2 1612889143 imscp keepold 1 \N +777 2 1612889143 imscp keepold_adv \N +778 2 1612889143 label dndmedia 1 \N +779 2 1612889143 label dndresizewidth 400 \N +780 2 1612889143 label dndresizeheight 400 \N +781 2 1612889143 mod_lesson mediafile \N +782 2 1612889143 mod_lesson mediafile_adv 1 \N +783 2 1612889143 mod_lesson mediawidth 640 \N +784 2 1612889143 mod_lesson mediaheight 480 \N +785 2 1612889143 mod_lesson mediaclose 0 \N +786 2 1612889143 mod_lesson progressbar 0 \N +787 2 1612889143 mod_lesson progressbar_adv \N +788 2 1612889143 mod_lesson ongoing 0 \N +789 2 1612889143 mod_lesson ongoing_adv 1 \N +790 2 1612889143 mod_lesson displayleftmenu 0 \N +791 2 1612889143 mod_lesson displayleftmenu_adv \N +792 2 1612889143 mod_lesson displayleftif 0 \N +793 2 1612889143 mod_lesson displayleftif_adv 1 \N +794 2 1612889143 mod_lesson slideshow 0 \N +795 2 1612889143 mod_lesson slideshow_adv 1 \N +796 2 1612889143 mod_lesson slideshowwidth 640 \N +797 2 1612889143 mod_lesson slideshowheight 480 \N +798 2 1612889143 mod_lesson slideshowbgcolor #FFFFFF \N +799 2 1612889143 mod_lesson maxanswers 5 \N +800 2 1612889143 mod_lesson maxanswers_adv 1 \N +801 2 1612889143 mod_lesson defaultfeedback 0 \N +802 2 1612889143 mod_lesson defaultfeedback_adv 1 \N +803 2 1612889143 mod_lesson activitylink \N +804 2 1612889143 mod_lesson activitylink_adv 1 \N +805 2 1612889143 mod_lesson timelimit 0 \N +806 2 1612889143 mod_lesson timelimit_adv \N +807 2 1612889143 mod_lesson password 0 \N +808 2 1612889143 mod_lesson password_adv 1 \N +809 2 1612889143 mod_lesson modattempts 0 \N +810 2 1612889143 mod_lesson modattempts_adv \N +811 2 1612889143 mod_lesson displayreview 0 \N +812 2 1612889143 mod_lesson displayreview_adv \N +813 2 1612889143 mod_lesson maximumnumberofattempts 1 \N +814 2 1612889143 mod_lesson maximumnumberofattempts_adv \N +815 2 1612889143 mod_lesson defaultnextpage 0 \N +816 2 1612889143 mod_lesson defaultnextpage_adv 1 \N +817 2 1612889143 mod_lesson numberofpagestoshow 1 \N +818 2 1612889143 mod_lesson numberofpagestoshow_adv 1 \N +819 2 1612889143 mod_lesson practice 0 \N +820 2 1612889143 mod_lesson practice_adv \N +821 2 1612889143 mod_lesson customscoring 1 \N +822 2 1612889143 mod_lesson customscoring_adv 1 \N +823 2 1612889143 mod_lesson retakesallowed 0 \N +824 2 1612889143 mod_lesson retakesallowed_adv \N +825 2 1612889143 mod_lesson handlingofretakes 0 \N +826 2 1612889143 mod_lesson handlingofretakes_adv 1 \N +827 2 1612889143 mod_lesson minimumnumberofquestions 0 \N +828 2 1612889143 mod_lesson minimumnumberofquestions_adv 1 \N +829 2 1612889143 page displayoptions 5 \N +830 2 1612889143 page printheading 1 \N +831 2 1612889143 page printintro 0 \N +832 2 1612889143 page printlastmodified 1 \N +833 2 1612889143 page display 5 \N +834 2 1612889143 page popupwidth 620 \N +835 2 1612889143 page popupheight 450 \N +836 2 1612889143 quiz timelimit 0 \N +837 2 1612889143 quiz timelimit_adv \N +838 2 1612889143 quiz overduehandling autosubmit \N +839 2 1612889143 quiz overduehandling_adv \N +840 2 1612889143 quiz graceperiod 86400 \N +841 2 1612889143 quiz graceperiod_adv \N +842 2 1612889143 quiz graceperiodmin 60 \N +843 2 1612889143 quiz attempts 0 \N +844 2 1612889143 quiz attempts_adv \N +845 2 1612889143 quiz grademethod 1 \N +846 2 1612889143 quiz grademethod_adv \N +847 2 1612889143 quiz maximumgrade 10 \N +848 2 1612889143 quiz questionsperpage 1 \N +849 2 1612889143 quiz questionsperpage_adv \N +850 2 1612889143 quiz navmethod free \N +851 2 1612889143 quiz navmethod_adv 1 \N +852 2 1612889143 quiz shuffleanswers 1 \N +853 2 1612889143 quiz shuffleanswers_adv \N +854 2 1612889143 quiz preferredbehaviour deferredfeedback \N +855 2 1612889143 quiz canredoquestions 0 \N +856 2 1612889143 quiz canredoquestions_adv 1 \N +857 2 1612889143 quiz attemptonlast 0 \N +858 2 1612889143 quiz attemptonlast_adv 1 \N +859 2 1612889143 quiz reviewattempt 69904 \N +860 2 1612889143 quiz reviewcorrectness 69904 \N +861 2 1612889143 quiz reviewmarks 69904 \N +862 2 1612889143 quiz reviewspecificfeedback 69904 \N +863 2 1612889143 quiz reviewgeneralfeedback 69904 \N +864 2 1612889143 quiz reviewrightanswer 69904 \N +865 2 1612889143 quiz reviewoverallfeedback 4368 \N +866 2 1612889143 quiz showuserpicture 0 \N +867 2 1612889143 quiz showuserpicture_adv \N +868 2 1612889143 quiz decimalpoints 2 \N +869 2 1612889143 quiz decimalpoints_adv \N +870 2 1612889143 quiz questiondecimalpoints -1 \N +871 2 1612889143 quiz questiondecimalpoints_adv \N +872 2 1612889143 quiz showblocks 0 \N +873 2 1612889143 quiz showblocks_adv 1 \N +874 2 1612889143 quiz quizpassword \N +875 2 1612889143 quiz quizpassword_adv \N +876 2 1612889143 quiz quizpassword_required \N +877 2 1612889143 quiz subnet \N +878 2 1612889143 quiz subnet_adv 1 \N +879 2 1612889143 quiz delay1 0 \N +880 2 1612889143 quiz delay1_adv 1 \N +881 2 1612889143 quiz delay2 0 \N +882 2 1612889143 quiz delay2_adv 1 \N +883 2 1612889143 quiz browsersecurity - \N +884 2 1612889143 quiz browsersecurity_adv 1 \N +885 2 1612889143 quiz initialnumfeedbacks 2 \N +886 2 1612889143 quiz autosaveperiod 60 \N +887 2 1612889143 quizaccess_seb autoreconfigureseb 1 \N +888 2 1612889143 quizaccess_seb showseblinks seb,http \N +889 2 1612889143 quizaccess_seb downloadlink https://safeexambrowser.org/download_en.html \N +890 2 1612889143 quizaccess_seb quizpasswordrequired 0 \N +891 2 1612889143 quizaccess_seb displayblocksbeforestart 0 \N +892 2 1612889143 quizaccess_seb displayblockswhenfinished 1 \N +893 2 1612889143 scorm displaycoursestructure 0 \N +894 2 1612889143 scorm displaycoursestructure_adv \N +895 2 1612889143 scorm popup 0 \N +896 2 1612889143 scorm popup_adv \N +897 2 1612889143 scorm displayactivityname 1 \N +898 2 1612889143 scorm framewidth 100 \N +899 2 1612889143 scorm framewidth_adv 1 \N +900 2 1612889143 scorm frameheight 500 \N +901 2 1612889143 scorm frameheight_adv 1 \N +902 2 1612889143 scorm winoptgrp_adv 1 \N +903 2 1612889143 scorm scrollbars 0 \N +904 2 1612889143 scorm directories 0 \N +905 2 1612889143 scorm location 0 \N +906 2 1612889143 scorm menubar 0 \N +907 2 1612889143 scorm toolbar 0 \N +908 2 1612889143 scorm status 0 \N +909 2 1612889143 scorm skipview 0 \N +910 2 1612889143 scorm skipview_adv 1 \N +911 2 1612889143 scorm hidebrowse 0 \N +912 2 1612889143 scorm hidebrowse_adv 1 \N +913 2 1612889143 scorm hidetoc 0 \N +914 2 1612889143 scorm hidetoc_adv 1 \N +915 2 1612889143 scorm nav 1 \N +916 2 1612889143 scorm nav_adv 1 \N +917 2 1612889143 scorm navpositionleft -100 \N +918 2 1612889143 scorm navpositionleft_adv 1 \N +919 2 1612889143 scorm navpositiontop -100 \N +920 2 1612889143 scorm navpositiontop_adv 1 \N +921 2 1612889143 scorm collapsetocwinsize 767 \N +922 2 1612889143 scorm collapsetocwinsize_adv 1 \N +923 2 1612889143 scorm displayattemptstatus 1 \N +924 2 1612889143 scorm displayattemptstatus_adv \N +925 2 1612889143 scorm grademethod 1 \N +926 2 1612889143 scorm maxgrade 100 \N +927 2 1612889143 scorm maxattempt 0 \N +928 2 1612889143 scorm whatgrade 0 \N +929 2 1612889143 scorm forcecompleted 0 \N +930 2 1612889143 scorm forcenewattempt 0 \N +931 2 1612889143 scorm autocommit 0 \N +932 2 1612889143 scorm masteryoverride 1 \N +933 2 1612889143 scorm lastattemptlock 0 \N +934 2 1612889143 scorm auto 0 \N +935 2 1612889143 scorm updatefreq 0 \N +936 2 1612889143 scorm scormstandard 0 \N +937 2 1612889143 scorm allowtypeexternal 0 \N +938 2 1612889143 scorm allowtypelocalsync 0 \N +939 2 1612889143 scorm allowtypeexternalaicc 0 \N +940 2 1612889143 scorm allowaicchacp 0 \N +941 2 1612889143 scorm aicchacptimeout 30 \N +942 2 1612889143 scorm aicchacpkeepsessiondata 1 \N +943 2 1612889143 scorm aiccuserid 1 \N +944 2 1612889143 scorm forcejavascript 1 \N +945 2 1612889143 scorm allowapidebug 0 \N +946 2 1612889143 scorm apidebugmask .* \N +947 2 1612889143 scorm protectpackagedownloads 0 \N +948 2 1612889143 url framesize 130 \N +949 2 1612889143 url secretphrase \N +950 2 1612889143 url rolesinparams 0 \N +951 2 1612889143 url displayoptions 0,1,5,6 \N +952 2 1612889143 url printintro 1 \N +953 2 1612889143 url display 0 \N +954 2 1612889143 url popupwidth 620 \N +955 2 1612889143 url popupheight 450 \N +956 2 1612889143 workshop grade 80 \N +957 2 1612889143 workshop gradinggrade 20 \N +958 2 1612889143 workshop gradedecimals 0 \N +959 2 1612889143 workshop maxbytes 0 \N +960 2 1612889143 workshop strategy accumulative \N +961 2 1612889143 workshop examplesmode 0 \N +962 2 1612889143 workshopallocation_random numofreviews 5 \N +963 2 1612889143 workshopform_numerrors grade0 No \N +964 2 1612889143 workshopform_numerrors grade1 Yes \N +965 2 1612889143 workshopeval_best comparison 5 \N +966 2 1612889143 tool_recyclebin coursebinenable 1 \N +967 2 1612889143 tool_recyclebin coursebinexpiry 604800 \N +968 2 1612889143 tool_recyclebin categorybinenable 1 \N +969 2 1612889143 tool_recyclebin categorybinexpiry 604800 \N +970 2 1612889143 tool_recyclebin autohide 1 \N +971 2 1612889143 antivirus_clamav runningmethod commandline \N +972 2 1612889143 antivirus_clamav pathtoclam \N +973 2 1612889143 antivirus_clamav pathtounixsocket \N +974 2 1612889143 antivirus_clamav tcpsockethost \N +975 2 1612889143 antivirus_clamav tcpsocketport 3310 \N +976 2 1612889143 antivirus_clamav clamfailureonupload donothing \N +977 2 1612889143 antivirus_clamav tries 1 \N +978 2 1612889143 auth_cas field_map_firstname \N +979 2 1612889143 auth_cas field_updatelocal_firstname oncreate \N +980 2 1612889143 auth_cas field_updateremote_firstname 0 \N +981 2 1612889143 auth_cas field_lock_firstname unlocked \N +982 2 1612889143 auth_cas field_map_lastname \N +983 2 1612889143 auth_cas field_updatelocal_lastname oncreate \N +984 2 1612889143 auth_cas field_updateremote_lastname 0 \N +985 2 1612889143 auth_cas field_lock_lastname unlocked \N +986 2 1612889143 auth_cas field_map_email \N +987 2 1612889143 auth_cas field_updatelocal_email oncreate \N +988 2 1612889143 auth_cas field_updateremote_email 0 \N +989 2 1612889143 auth_cas field_lock_email unlocked \N +990 2 1612889143 auth_cas field_map_city \N +991 2 1612889143 auth_cas field_updatelocal_city oncreate \N +992 2 1612889143 auth_cas field_updateremote_city 0 \N +993 2 1612889143 auth_cas field_lock_city unlocked \N +994 2 1612889143 auth_cas field_map_country \N +995 2 1612889143 auth_cas field_updatelocal_country oncreate \N +996 2 1612889143 auth_cas field_updateremote_country 0 \N +997 2 1612889143 auth_cas field_lock_country unlocked \N +998 2 1612889143 auth_cas field_map_lang \N +999 2 1612889143 auth_cas field_updatelocal_lang oncreate \N +1000 2 1612889143 auth_cas field_updateremote_lang 0 \N +1001 2 1612889143 auth_cas field_lock_lang unlocked \N +1002 2 1612889143 auth_cas field_map_description \N +1003 2 1612889143 auth_cas field_updatelocal_description oncreate \N +1004 2 1612889143 auth_cas field_updateremote_description 0 \N +1005 2 1612889143 auth_cas field_lock_description unlocked \N +1006 2 1612889143 auth_cas field_map_url \N +1007 2 1612889143 auth_cas field_updatelocal_url oncreate \N +1008 2 1612889143 auth_cas field_updateremote_url 0 \N +1009 2 1612889143 auth_cas field_lock_url unlocked \N +1010 2 1612889143 auth_cas field_map_idnumber \N +1011 2 1612889143 auth_cas field_updatelocal_idnumber oncreate \N +1012 2 1612889143 auth_cas field_updateremote_idnumber 0 \N +1013 2 1612889143 auth_cas field_lock_idnumber unlocked \N +1014 2 1612889143 auth_cas field_map_institution \N +1015 2 1612889143 auth_cas field_updatelocal_institution oncreate \N +1016 2 1612889143 auth_cas field_updateremote_institution 0 \N +1017 2 1612889143 auth_cas field_lock_institution unlocked \N +1018 2 1612889143 auth_cas field_map_department \N +1019 2 1612889143 auth_cas field_updatelocal_department oncreate \N +1020 2 1612889143 auth_cas field_updateremote_department 0 \N +1021 2 1612889143 auth_cas field_lock_department unlocked \N +1022 2 1612889143 auth_cas field_map_phone1 \N +1023 2 1612889143 auth_cas field_updatelocal_phone1 oncreate \N +1024 2 1612889143 auth_cas field_updateremote_phone1 0 \N +1025 2 1612889143 auth_cas field_lock_phone1 unlocked \N +1026 2 1612889143 auth_cas field_map_phone2 \N +1027 2 1612889143 auth_cas field_updatelocal_phone2 oncreate \N +1028 2 1612889143 auth_cas field_updateremote_phone2 0 \N +1029 2 1612889143 auth_cas field_lock_phone2 unlocked \N +1030 2 1612889143 auth_cas field_map_address \N +1031 2 1612889143 auth_cas field_updatelocal_address oncreate \N +1032 2 1612889143 auth_cas field_updateremote_address 0 \N +1033 2 1612889143 auth_cas field_lock_address unlocked \N +1034 2 1612889143 auth_cas field_map_firstnamephonetic \N +1035 2 1612889143 auth_cas field_updatelocal_firstnamephonetic oncreate \N +1036 2 1612889143 auth_cas field_updateremote_firstnamephonetic 0 \N +1037 2 1612889143 auth_cas field_lock_firstnamephonetic unlocked \N +1038 2 1612889143 auth_cas field_map_lastnamephonetic \N +1039 2 1612889143 auth_cas field_updatelocal_lastnamephonetic oncreate \N +1040 2 1612889143 auth_cas field_updateremote_lastnamephonetic 0 \N +1041 2 1612889143 auth_cas field_lock_lastnamephonetic unlocked \N +1042 2 1612889143 auth_cas field_map_middlename \N +1043 2 1612889143 auth_cas field_updatelocal_middlename oncreate \N +1044 2 1612889143 auth_cas field_updateremote_middlename 0 \N +1045 2 1612889143 auth_cas field_lock_middlename unlocked \N +1046 2 1612889143 auth_cas field_map_alternatename \N +1047 2 1612889143 auth_cas field_updatelocal_alternatename oncreate \N +1048 2 1612889143 auth_cas field_updateremote_alternatename 0 \N +1049 2 1612889143 auth_cas field_lock_alternatename unlocked \N +1050 2 1612889143 auth_email recaptcha 0 \N +1051 2 1612889143 auth_email field_lock_firstname unlocked \N +1052 2 1612889143 auth_email field_lock_lastname unlocked \N +1053 2 1612889143 auth_email field_lock_email unlocked \N +1054 2 1612889143 auth_email field_lock_city unlocked \N +1055 2 1612889143 auth_email field_lock_country unlocked \N +1056 2 1612889143 auth_email field_lock_lang unlocked \N +1057 2 1612889143 auth_email field_lock_description unlocked \N +1058 2 1612889143 auth_email field_lock_url unlocked \N +1059 2 1612889143 auth_email field_lock_idnumber unlocked \N +1060 2 1612889143 auth_email field_lock_institution unlocked \N +1061 2 1612889143 auth_email field_lock_department unlocked \N +1062 2 1612889143 auth_email field_lock_phone1 unlocked \N +1063 2 1612889143 auth_email field_lock_phone2 unlocked \N +1064 2 1612889143 auth_email field_lock_address unlocked \N +1065 2 1612889143 auth_email field_lock_firstnamephonetic unlocked \N +1066 2 1612889143 auth_email field_lock_lastnamephonetic unlocked \N +1067 2 1612889143 auth_email field_lock_middlename unlocked \N +1068 2 1612889143 auth_email field_lock_alternatename unlocked \N +1069 2 1612889143 auth_db host 127.0.0.1 \N +1070 2 1612889143 auth_db type mysqli \N +1071 2 1612889143 auth_db sybasequoting 0 \N +1072 2 1612889143 auth_db name \N +1073 2 1612889143 auth_db user \N +1074 2 1612889143 auth_db pass \N +1075 2 1612889143 auth_db table \N +1076 2 1612889143 auth_db fielduser \N +1077 2 1612889143 auth_db fieldpass \N +1078 2 1612889143 auth_db passtype plaintext \N +1079 2 1612889143 auth_db extencoding utf-8 \N +1080 2 1612889143 auth_db setupsql \N +1081 2 1612889143 auth_db debugauthdb 0 \N +1082 2 1612889143 auth_db changepasswordurl \N +1083 2 1612889143 auth_db removeuser 0 \N +1084 2 1612889143 auth_db updateusers 0 \N +1085 2 1612889143 auth_db field_map_firstname \N +1086 2 1612889143 auth_db field_updatelocal_firstname oncreate \N +1087 2 1612889143 auth_db field_updateremote_firstname 0 \N +1088 2 1612889143 auth_db field_lock_firstname unlocked \N +1089 2 1612889143 auth_db field_map_lastname \N +1090 2 1612889143 auth_db field_updatelocal_lastname oncreate \N +1091 2 1612889143 auth_db field_updateremote_lastname 0 \N +1092 2 1612889143 auth_db field_lock_lastname unlocked \N +1093 2 1612889143 auth_db field_map_email \N +1094 2 1612889143 auth_db field_updatelocal_email oncreate \N +1095 2 1612889143 auth_db field_updateremote_email 0 \N +1096 2 1612889143 auth_db field_lock_email unlocked \N +1097 2 1612889143 auth_db field_map_city \N +1098 2 1612889143 auth_db field_updatelocal_city oncreate \N +1099 2 1612889143 auth_db field_updateremote_city 0 \N +1100 2 1612889143 auth_db field_lock_city unlocked \N +1101 2 1612889143 auth_db field_map_country \N +1102 2 1612889143 auth_db field_updatelocal_country oncreate \N +1103 2 1612889143 auth_db field_updateremote_country 0 \N +1104 2 1612889143 auth_db field_lock_country unlocked \N +1105 2 1612889143 auth_db field_map_lang \N +1106 2 1612889143 auth_db field_updatelocal_lang oncreate \N +1107 2 1612889143 auth_db field_updateremote_lang 0 \N +1108 2 1612889143 auth_db field_lock_lang unlocked \N +1109 2 1612889143 auth_db field_map_description \N +1110 2 1612889143 auth_db field_updatelocal_description oncreate \N +1111 2 1612889143 auth_db field_updateremote_description 0 \N +1112 2 1612889143 auth_db field_lock_description unlocked \N +1113 2 1612889143 auth_db field_map_url \N +1114 2 1612889143 auth_db field_updatelocal_url oncreate \N +1115 2 1612889143 auth_db field_updateremote_url 0 \N +1116 2 1612889143 auth_db field_lock_url unlocked \N +1117 2 1612889143 auth_db field_map_idnumber \N +1118 2 1612889143 auth_db field_updatelocal_idnumber oncreate \N +1119 2 1612889143 auth_db field_updateremote_idnumber 0 \N +1120 2 1612889143 auth_db field_lock_idnumber unlocked \N +1121 2 1612889143 auth_db field_map_institution \N +1122 2 1612889143 auth_db field_updatelocal_institution oncreate \N +1123 2 1612889143 auth_db field_updateremote_institution 0 \N +1124 2 1612889143 auth_db field_lock_institution unlocked \N +1125 2 1612889143 auth_db field_map_department \N +1126 2 1612889143 auth_db field_updatelocal_department oncreate \N +1127 2 1612889143 auth_db field_updateremote_department 0 \N +1128 2 1612889144 auth_db field_lock_department unlocked \N +1129 2 1612889144 auth_db field_map_phone1 \N +1130 2 1612889144 auth_db field_updatelocal_phone1 oncreate \N +1131 2 1612889144 auth_db field_updateremote_phone1 0 \N +1132 2 1612889144 auth_db field_lock_phone1 unlocked \N +1133 2 1612889144 auth_db field_map_phone2 \N +1134 2 1612889144 auth_db field_updatelocal_phone2 oncreate \N +1135 2 1612889144 auth_db field_updateremote_phone2 0 \N +1136 2 1612889144 auth_db field_lock_phone2 unlocked \N +1137 2 1612889144 auth_db field_map_address \N +1138 2 1612889144 auth_db field_updatelocal_address oncreate \N +1139 2 1612889144 auth_db field_updateremote_address 0 \N +1140 2 1612889144 auth_db field_lock_address unlocked \N +1141 2 1612889144 auth_db field_map_firstnamephonetic \N +1142 2 1612889144 auth_db field_updatelocal_firstnamephonetic oncreate \N +1143 2 1612889144 auth_db field_updateremote_firstnamephonetic 0 \N +1144 2 1612889144 auth_db field_lock_firstnamephonetic unlocked \N +1145 2 1612889144 auth_db field_map_lastnamephonetic \N +1146 2 1612889144 auth_db field_updatelocal_lastnamephonetic oncreate \N +1147 2 1612889144 auth_db field_updateremote_lastnamephonetic 0 \N +1148 2 1612889144 auth_db field_lock_lastnamephonetic unlocked \N +1149 2 1612889144 auth_db field_map_middlename \N +1150 2 1612889144 auth_db field_updatelocal_middlename oncreate \N +1151 2 1612889144 auth_db field_updateremote_middlename 0 \N +1152 2 1612889144 auth_db field_lock_middlename unlocked \N +1153 2 1612889144 auth_db field_map_alternatename \N +1154 2 1612889144 auth_db field_updatelocal_alternatename oncreate \N +1155 2 1612889144 auth_db field_updateremote_alternatename 0 \N +1156 2 1612889144 auth_db field_lock_alternatename unlocked \N +1157 2 1612889144 auth_ldap field_map_firstname \N +1158 2 1612889144 auth_ldap field_updatelocal_firstname oncreate \N +1159 2 1612889144 auth_ldap field_updateremote_firstname 0 \N +1160 2 1612889144 auth_ldap field_lock_firstname unlocked \N +1161 2 1612889144 auth_ldap field_map_lastname \N +1162 2 1612889144 auth_ldap field_updatelocal_lastname oncreate \N +1163 2 1612889144 auth_ldap field_updateremote_lastname 0 \N +1164 2 1612889144 auth_ldap field_lock_lastname unlocked \N +1165 2 1612889144 auth_ldap field_map_email \N +1166 2 1612889144 auth_ldap field_updatelocal_email oncreate \N +1167 2 1612889144 auth_ldap field_updateremote_email 0 \N +1168 2 1612889144 auth_ldap field_lock_email unlocked \N +1169 2 1612889144 auth_ldap field_map_city \N +1170 2 1612889144 auth_ldap field_updatelocal_city oncreate \N +1171 2 1612889144 auth_ldap field_updateremote_city 0 \N +1172 2 1612889144 auth_ldap field_lock_city unlocked \N +1173 2 1612889144 auth_ldap field_map_country \N +1174 2 1612889144 auth_ldap field_updatelocal_country oncreate \N +1175 2 1612889144 auth_ldap field_updateremote_country 0 \N +1176 2 1612889144 auth_ldap field_lock_country unlocked \N +1177 2 1612889144 auth_ldap field_map_lang \N +1178 2 1612889144 auth_ldap field_updatelocal_lang oncreate \N +1179 2 1612889144 auth_ldap field_updateremote_lang 0 \N +1180 2 1612889144 auth_ldap field_lock_lang unlocked \N +1181 2 1612889144 auth_ldap field_map_description \N +1182 2 1612889144 auth_ldap field_updatelocal_description oncreate \N +1183 2 1612889144 auth_ldap field_updateremote_description 0 \N +1184 2 1612889144 auth_ldap field_lock_description unlocked \N +1185 2 1612889144 auth_ldap field_map_url \N +1186 2 1612889144 auth_ldap field_updatelocal_url oncreate \N +1187 2 1612889144 auth_ldap field_updateremote_url 0 \N +1188 2 1612889144 auth_ldap field_lock_url unlocked \N +1189 2 1612889144 auth_ldap field_map_idnumber \N +1190 2 1612889144 auth_ldap field_updatelocal_idnumber oncreate \N +1191 2 1612889144 auth_ldap field_updateremote_idnumber 0 \N +1192 2 1612889144 auth_ldap field_lock_idnumber unlocked \N +1193 2 1612889144 auth_ldap field_map_institution \N +1194 2 1612889144 auth_ldap field_updatelocal_institution oncreate \N +1195 2 1612889144 auth_ldap field_updateremote_institution 0 \N +1196 2 1612889144 auth_ldap field_lock_institution unlocked \N +1197 2 1612889144 auth_ldap field_map_department \N +1198 2 1612889144 auth_ldap field_updatelocal_department oncreate \N +1199 2 1612889144 auth_ldap field_updateremote_department 0 \N +1200 2 1612889144 auth_ldap field_lock_department unlocked \N +1201 2 1612889144 auth_ldap field_map_phone1 \N +1202 2 1612889144 auth_ldap field_updatelocal_phone1 oncreate \N +1203 2 1612889144 auth_ldap field_updateremote_phone1 0 \N +1204 2 1612889144 auth_ldap field_lock_phone1 unlocked \N +1205 2 1612889144 auth_ldap field_map_phone2 \N +1206 2 1612889144 auth_ldap field_updatelocal_phone2 oncreate \N +1207 2 1612889144 auth_ldap field_updateremote_phone2 0 \N +1208 2 1612889144 auth_ldap field_lock_phone2 unlocked \N +1209 2 1612889144 auth_ldap field_map_address \N +1210 2 1612889144 auth_ldap field_updatelocal_address oncreate \N +1211 2 1612889144 auth_ldap field_updateremote_address 0 \N +1212 2 1612889144 auth_ldap field_lock_address unlocked \N +1213 2 1612889144 auth_ldap field_map_firstnamephonetic \N +1214 2 1612889144 auth_ldap field_updatelocal_firstnamephonetic oncreate \N +1215 2 1612889144 auth_ldap field_updateremote_firstnamephonetic 0 \N +1216 2 1612889144 auth_ldap field_lock_firstnamephonetic unlocked \N +1217 2 1612889144 auth_ldap field_map_lastnamephonetic \N +1218 2 1612889144 auth_ldap field_updatelocal_lastnamephonetic oncreate \N +1219 2 1612889144 auth_ldap field_updateremote_lastnamephonetic 0 \N +1220 2 1612889144 auth_ldap field_lock_lastnamephonetic unlocked \N +1221 2 1612889144 auth_ldap field_map_middlename \N +1222 2 1612889144 auth_ldap field_updatelocal_middlename oncreate \N +1223 2 1612889144 auth_ldap field_updateremote_middlename 0 \N +1224 2 1612889144 auth_ldap field_lock_middlename unlocked \N +1225 2 1612889144 auth_ldap field_map_alternatename \N +1226 2 1612889144 auth_ldap field_updatelocal_alternatename oncreate \N +1227 2 1612889144 auth_ldap field_updateremote_alternatename 0 \N +1228 2 1612889144 auth_ldap field_lock_alternatename unlocked \N +1229 2 1612889144 auth_manual expiration 0 \N +1230 2 1612889144 auth_manual expirationtime 30 \N +1231 2 1612889144 auth_manual expiration_warning 0 \N +1232 2 1612889144 auth_manual field_lock_firstname unlocked \N +1233 2 1612889144 auth_manual field_lock_lastname unlocked \N +1234 2 1612889144 auth_manual field_lock_email unlocked \N +1235 2 1612889144 auth_manual field_lock_city unlocked \N +1236 2 1612889144 auth_manual field_lock_country unlocked \N +1237 2 1612889144 auth_manual field_lock_lang unlocked \N +1238 2 1612889144 auth_manual field_lock_description unlocked \N +1239 2 1612889144 auth_manual field_lock_url unlocked \N +1240 2 1612889144 auth_manual field_lock_idnumber unlocked \N +1241 2 1612889144 auth_manual field_lock_institution unlocked \N +1242 2 1612889144 auth_manual field_lock_department unlocked \N +1243 2 1612889144 auth_manual field_lock_phone1 unlocked \N +1244 2 1612889144 auth_manual field_lock_phone2 unlocked \N +1245 2 1612889144 auth_manual field_lock_address unlocked \N +1246 2 1612889144 auth_manual field_lock_firstnamephonetic unlocked \N +1247 2 1612889144 auth_manual field_lock_lastnamephonetic unlocked \N +1248 2 1612889144 auth_manual field_lock_middlename unlocked \N +1249 2 1612889144 auth_manual field_lock_alternatename unlocked \N +1250 2 1612889144 auth_mnet rpc_negotiation_timeout 30 \N +1251 2 1612889144 auth_none field_lock_firstname unlocked \N +1252 2 1612889144 auth_none field_lock_lastname unlocked \N +1253 2 1612889144 auth_none field_lock_email unlocked \N +1254 2 1612889144 auth_none field_lock_city unlocked \N +1255 2 1612889144 auth_none field_lock_country unlocked \N +1256 2 1612889144 auth_none field_lock_lang unlocked \N +1257 2 1612889144 auth_none field_lock_description unlocked \N +1258 2 1612889144 auth_none field_lock_url unlocked \N +1259 2 1612889144 auth_none field_lock_idnumber unlocked \N +1260 2 1612889144 auth_none field_lock_institution unlocked \N +1261 2 1612889144 auth_none field_lock_department unlocked \N +1262 2 1612889144 auth_none field_lock_phone1 unlocked \N +1263 2 1612889144 auth_none field_lock_phone2 unlocked \N +1264 2 1612889144 auth_none field_lock_address unlocked \N +1265 2 1612889144 auth_none field_lock_firstnamephonetic unlocked \N +1266 2 1612889144 auth_none field_lock_lastnamephonetic unlocked \N +1267 2 1612889144 auth_none field_lock_middlename unlocked \N +1268 2 1612889144 auth_none field_lock_alternatename unlocked \N +1269 2 1612889144 auth_oauth2 field_lock_firstname unlocked \N +1270 2 1612889144 auth_oauth2 field_lock_lastname unlocked \N +1271 2 1612889144 auth_oauth2 field_lock_email unlocked \N +1272 2 1612889144 auth_oauth2 field_lock_city unlocked \N +1273 2 1612889144 auth_oauth2 field_lock_country unlocked \N +1274 2 1612889144 auth_oauth2 field_lock_lang unlocked \N +1275 2 1612889144 auth_oauth2 field_lock_description unlocked \N +1276 2 1612889144 auth_oauth2 field_lock_url unlocked \N +1277 2 1612889144 auth_oauth2 field_lock_idnumber unlocked \N +1278 2 1612889144 auth_oauth2 field_lock_institution unlocked \N +1279 2 1612889144 auth_oauth2 field_lock_department unlocked \N +1280 2 1612889144 auth_oauth2 field_lock_phone1 unlocked \N +1281 2 1612889144 auth_oauth2 field_lock_phone2 unlocked \N +1282 2 1612889144 auth_oauth2 field_lock_address unlocked \N +1283 2 1612889144 auth_oauth2 field_lock_firstnamephonetic unlocked \N +1284 2 1612889144 auth_oauth2 field_lock_lastnamephonetic unlocked \N +1285 2 1612889144 auth_oauth2 field_lock_middlename unlocked \N +1286 2 1612889144 auth_oauth2 field_lock_alternatename unlocked \N +1287 2 1612889144 auth_shibboleth user_attribute \N +1288 2 1612889144 auth_shibboleth convert_data \N +1289 2 1612889144 auth_shibboleth alt_login off \N +1290 2 1612889144 auth_shibboleth organization_selection urn:mace:organization1:providerID, Example Organization 1\n https://another.idp-id.com/shibboleth, Other Example Organization, /Shibboleth.sso/DS/SWITCHaai\n urn:mace:organization2:providerID, Example Organization 2, /Shibboleth.sso/WAYF/SWITCHaai \N +1291 2 1612889144 auth_shibboleth logout_handler \N +1292 2 1612889144 auth_shibboleth logout_return_url \N +1293 2 1612889144 auth_shibboleth login_name Shibboleth Login \N +1294 2 1612889144 auth_shibboleth auth_logo \N +1295 2 1612889144 auth_shibboleth auth_instructions Use the Shibboleth login to get access via Shibboleth, if your institution supports it. Otherwise, use the normal login form shown here. \N +1296 2 1612889144 auth_shibboleth changepasswordurl \N +1297 2 1612889144 auth_shibboleth field_map_firstname \N +1298 2 1612889144 auth_shibboleth field_updatelocal_firstname oncreate \N +1299 2 1612889144 auth_shibboleth field_lock_firstname unlocked \N +1300 2 1612889144 auth_shibboleth field_map_lastname \N +1301 2 1612889144 auth_shibboleth field_updatelocal_lastname oncreate \N +1302 2 1612889144 auth_shibboleth field_lock_lastname unlocked \N +1303 2 1612889144 auth_shibboleth field_map_email \N +1304 2 1612889144 auth_shibboleth field_updatelocal_email oncreate \N +1305 2 1612889144 auth_shibboleth field_lock_email unlocked \N +1306 2 1612889144 auth_shibboleth field_map_city \N +1307 2 1612889144 auth_shibboleth field_updatelocal_city oncreate \N +1308 2 1612889144 auth_shibboleth field_lock_city unlocked \N +1309 2 1612889144 auth_shibboleth field_map_country \N +1310 2 1612889144 auth_shibboleth field_updatelocal_country oncreate \N +1311 2 1612889144 auth_shibboleth field_lock_country unlocked \N +1312 2 1612889144 auth_shibboleth field_map_lang \N +1313 2 1612889144 auth_shibboleth field_updatelocal_lang oncreate \N +1314 2 1612889144 auth_shibboleth field_lock_lang unlocked \N +1315 2 1612889144 auth_shibboleth field_map_description \N +1316 2 1612889144 auth_shibboleth field_updatelocal_description oncreate \N +1317 2 1612889144 auth_shibboleth field_lock_description unlocked \N +1318 2 1612889144 auth_shibboleth field_map_url \N +1319 2 1612889144 auth_shibboleth field_updatelocal_url oncreate \N +1320 2 1612889144 auth_shibboleth field_lock_url unlocked \N +1321 2 1612889144 auth_shibboleth field_map_idnumber \N +1322 2 1612889144 auth_shibboleth field_updatelocal_idnumber oncreate \N +1323 2 1612889144 auth_shibboleth field_lock_idnumber unlocked \N +1324 2 1612889144 auth_shibboleth field_map_institution \N +1325 2 1612889144 auth_shibboleth field_updatelocal_institution oncreate \N +1326 2 1612889144 auth_shibboleth field_lock_institution unlocked \N +1327 2 1612889144 auth_shibboleth field_map_department \N +1328 2 1612889144 auth_shibboleth field_updatelocal_department oncreate \N +1329 2 1612889144 auth_shibboleth field_lock_department unlocked \N +1330 2 1612889144 auth_shibboleth field_map_phone1 \N +1331 2 1612889144 auth_shibboleth field_updatelocal_phone1 oncreate \N +1332 2 1612889144 auth_shibboleth field_lock_phone1 unlocked \N +1333 2 1612889144 auth_shibboleth field_map_phone2 \N +1334 2 1612889144 auth_shibboleth field_updatelocal_phone2 oncreate \N +1335 2 1612889144 auth_shibboleth field_lock_phone2 unlocked \N +1336 2 1612889144 auth_shibboleth field_map_address \N +1337 2 1612889144 auth_shibboleth field_updatelocal_address oncreate \N +1338 2 1612889144 auth_shibboleth field_lock_address unlocked \N +1339 2 1612889144 auth_shibboleth field_map_firstnamephonetic \N +1340 2 1612889144 auth_shibboleth field_updatelocal_firstnamephonetic oncreate \N +1341 2 1612889144 auth_shibboleth field_lock_firstnamephonetic unlocked \N +1342 2 1612889144 auth_shibboleth field_map_lastnamephonetic \N +1343 2 1612889144 auth_shibboleth field_updatelocal_lastnamephonetic oncreate \N +1344 2 1612889144 auth_shibboleth field_lock_lastnamephonetic unlocked \N +1345 2 1612889144 auth_shibboleth field_map_middlename \N +1346 2 1612889144 auth_shibboleth field_updatelocal_middlename oncreate \N +1347 2 1612889144 auth_shibboleth field_lock_middlename unlocked \N +1348 2 1612889144 auth_shibboleth field_map_alternatename \N +1349 2 1612889144 auth_shibboleth field_updatelocal_alternatename oncreate \N +1350 2 1612889144 auth_shibboleth field_lock_alternatename unlocked \N +1351 2 1612889144 block_activity_results config_showbest 3 \N +1352 2 1612889144 block_activity_results config_showbest_locked \N +1353 2 1612889144 block_activity_results config_showworst 0 \N +1354 2 1612889144 block_activity_results config_showworst_locked \N +1355 2 1612889144 block_activity_results config_usegroups 0 \N +1356 2 1612889144 block_activity_results config_usegroups_locked \N +1357 2 1612889144 block_activity_results config_nameformat 1 \N +1358 2 1612889144 block_activity_results config_nameformat_locked \N +1359 2 1612889144 block_activity_results config_gradeformat 1 \N +1360 2 1612889144 block_activity_results config_gradeformat_locked \N +1361 2 1612889144 block_activity_results config_decimalpoints 2 \N +1362 2 1612889144 block_activity_results config_decimalpoints_locked \N +1363 2 1612889144 block_myoverview displaycategories 1 \N +1364 2 1612889144 block_myoverview layouts card,list,summary \N +1365 2 1612889144 block_myoverview displaygroupingallincludinghidden 0 \N +1366 2 1612889144 block_myoverview displaygroupingall 1 \N +1367 2 1612889144 block_myoverview displaygroupinginprogress 1 \N +1368 2 1612889144 block_myoverview displaygroupingpast 1 \N +1369 2 1612889144 block_myoverview displaygroupingfuture 1 \N +1370 2 1612889144 block_myoverview displaygroupingcustomfield 0 \N +1371 2 1612889144 block_myoverview customfiltergrouping \N +1372 2 1612889144 block_myoverview displaygroupingfavourites 1 \N +1373 2 1612889144 block_myoverview displaygroupinghidden 1 \N +1374 2 1612889144 \N block_course_list_adminview all \N +1375 2 1612889144 \N block_course_list_hideallcourseslink 0 \N +1376 2 1612889144 \N block_html_allowcssclasses 0 \N +1377 2 1612889144 \N block_online_users_timetosee 5 \N +1378 2 1612889144 \N block_online_users_onlinestatushiding 1 \N +1379 2 1612889144 block_recentlyaccessedcourses displaycategories 1 \N +1380 2 1612889144 \N block_rss_client_num_entries 5 \N +1381 2 1612889144 \N block_rss_client_timeout 30 \N +1382 2 1612889144 block_section_links numsections1 22 \N +1383 2 1612889144 block_section_links incby1 2 \N +1384 2 1612889144 block_section_links numsections2 40 \N +1385 2 1612889144 block_section_links incby2 5 \N +1386 2 1612889144 block_starredcourses displaycategories 1 \N +1387 2 1612889144 block_tag_youtube apikey \N +1388 2 1612889144 format_singleactivity activitytype forum \N +1389 2 1612889144 fileconverter_googledrive issuerid \N +1390 2 1612889144 \N pathtounoconv /usr/bin/unoconv \N +1391 2 1612889144 enrol_cohort roleid 5 \N +1392 2 1612889144 enrol_cohort unenrolaction 0 \N +1393 2 1612889144 enrol_meta nosyncroleids \N +1394 2 1612889144 enrol_meta syncall 1 \N +1395 2 1612889144 enrol_meta unenrolaction 3 \N +1396 2 1612889144 enrol_meta coursesort sortorder \N +1397 2 1612889144 enrol_fee expiredaction 3 \N +1398 2 1612889144 enrol_fee status 1 \N +1399 2 1612889144 enrol_fee cost 0 \N +1400 2 1612889144 enrol_fee currency USD \N +1401 2 1612889144 enrol_fee roleid 5 \N +1402 2 1612889144 enrol_fee enrolperiod 0 \N +1403 2 1612889144 enrol_database dbtype \N +1404 2 1612889144 enrol_database dbhost localhost \N +1405 2 1612889144 enrol_database dbuser \N +1406 2 1612889144 enrol_database dbpass \N +1407 2 1612889144 enrol_database dbname \N +1408 2 1612889144 enrol_database dbencoding utf-8 \N +1409 2 1612889144 enrol_database dbsetupsql \N +1410 2 1612889144 enrol_database dbsybasequoting 0 \N +1411 2 1612889144 enrol_database debugdb 0 \N +1412 2 1612889144 enrol_database localcoursefield idnumber \N +1413 2 1612889144 enrol_database localuserfield idnumber \N +1414 2 1612889144 enrol_database localrolefield shortname \N +1415 2 1612889144 enrol_database localcategoryfield id \N +1416 2 1612889144 enrol_database remoteenroltable \N +1417 2 1612889144 enrol_database remotecoursefield \N +1418 2 1612889144 enrol_database remoteuserfield \N +1419 2 1612889144 enrol_database remoterolefield \N +1420 2 1612889144 enrol_database remoteotheruserfield \N +1421 2 1612889144 enrol_database defaultrole 5 \N +1422 2 1612889144 enrol_database ignorehiddencourses 0 \N +1423 2 1612889144 enrol_database unenrolaction 0 \N +1424 2 1612889144 enrol_database newcoursetable \N +1425 2 1612889144 enrol_database newcoursefullname fullname \N +1426 2 1612889144 enrol_database newcourseshortname shortname \N +1427 2 1612889144 enrol_database newcourseidnumber idnumber \N +1428 2 1612889144 enrol_database newcoursecategory \N +1429 2 1612889144 enrol_database defaultcategory 1 \N +1430 2 1612889144 enrol_database templatecourse \N +1431 2 1612889144 enrol_flatfile location \N +1432 2 1612889144 enrol_flatfile encoding UTF-8 \N +1433 2 1612889144 enrol_flatfile mailstudents 0 \N +1434 2 1612889144 enrol_flatfile mailteachers 0 \N +1435 2 1612889144 enrol_flatfile mailadmins 0 \N +1436 2 1612889144 enrol_flatfile unenrolaction 3 \N +1437 2 1612889144 enrol_flatfile expiredaction 3 \N +1438 2 1612889144 enrol_guest requirepassword 0 \N +1439 2 1612889144 enrol_guest usepasswordpolicy 0 \N +1440 2 1612889144 enrol_guest showhint 0 \N +1441 2 1612889144 enrol_guest defaultenrol 1 \N +1442 2 1612889144 enrol_guest status 1 \N +1443 2 1612889144 enrol_guest status_adv \N +1444 2 1612889144 enrol_imsenterprise imsfilelocation \N +1445 2 1612889144 enrol_imsenterprise logtolocation \N +1446 2 1612889144 enrol_imsenterprise mailadmins 0 \N +1447 2 1612889144 enrol_imsenterprise createnewusers 0 \N +1448 2 1612889144 enrol_imsenterprise imsupdateusers 0 \N +1449 2 1612889144 enrol_imsenterprise imsdeleteusers 0 \N +1450 2 1612889144 enrol_imsenterprise fixcaseusernames 0 \N +1451 2 1612889144 enrol_imsenterprise fixcasepersonalnames 0 \N +1452 2 1612889144 enrol_imsenterprise imssourcedidfallback 0 \N +1453 2 1612889144 enrol_imsenterprise imsrolemap01 5 \N +1454 2 1612889144 enrol_imsenterprise imsrolemap02 3 \N +1455 2 1612889144 enrol_imsenterprise imsrolemap03 3 \N +1456 2 1612889144 enrol_imsenterprise imsrolemap04 5 \N +1457 2 1612889144 enrol_imsenterprise imsrolemap05 0 \N +1458 2 1612889144 enrol_imsenterprise imsrolemap06 4 \N +1459 2 1612889144 enrol_imsenterprise imsrolemap07 0 \N +1460 2 1612889144 enrol_imsenterprise imsrolemap08 4 \N +1461 2 1612889144 enrol_imsenterprise truncatecoursecodes 0 \N +1462 2 1612889144 enrol_imsenterprise createnewcourses 0 \N +1463 2 1612889144 enrol_imsenterprise updatecourses 0 \N +1464 2 1612889144 enrol_imsenterprise createnewcategories 0 \N +1465 2 1612889144 enrol_imsenterprise nestedcategories 0 \N +1466 2 1612889144 enrol_imsenterprise categoryidnumber 0 \N +1467 2 1612889144 enrol_imsenterprise categoryseparator \N +1468 2 1612889144 enrol_imsenterprise imsunenrol 0 \N +1469 2 1612889144 enrol_imsenterprise imscoursemapshortname coursecode \N +1470 2 1612889144 enrol_imsenterprise imscoursemapfullname short \N +1471 2 1612889144 enrol_imsenterprise imscoursemapsummary ignore \N +1472 2 1612889144 enrol_imsenterprise imsrestricttarget \N +1473 2 1612889144 enrol_imsenterprise imscapitafix 0 \N +1474 2 1612889144 enrol_manual expiredaction 1 \N +1475 2 1612889144 enrol_manual expirynotifyhour 6 \N +1476 2 1612889144 enrol_manual defaultenrol 1 \N +1477 2 1612889144 enrol_manual status 0 \N +1478 2 1612889144 enrol_manual roleid 5 \N +1479 2 1612889144 enrol_manual enrolstart 4 \N +1480 2 1612889144 enrol_manual enrolperiod 0 \N +1481 2 1612889144 enrol_manual expirynotify 0 \N +1482 2 1612889144 enrol_manual expirythreshold 86400 \N +1483 2 1612889144 enrol_mnet roleid 5 \N +1484 2 1612889144 enrol_mnet roleid_adv 1 \N +1485 2 1612889144 enrol_paypal paypalbusiness \N +1486 2 1612889144 enrol_paypal mailstudents 0 \N +1487 2 1612889144 enrol_paypal mailteachers 0 \N +1488 2 1612889144 enrol_paypal mailadmins 0 \N +1489 2 1612889144 enrol_paypal expiredaction 3 \N +1490 2 1612889144 enrol_paypal status 1 \N +1491 2 1612889144 enrol_paypal cost 0 \N +1492 2 1612889144 enrol_paypal currency USD \N +1493 2 1612889144 enrol_paypal roleid 5 \N +1494 2 1612889144 enrol_paypal enrolperiod 0 \N +1495 2 1612889144 enrol_lti emaildisplay 2 \N +1496 2 1612889144 enrol_lti city \N +1497 2 1612889144 enrol_lti country \N +1498 2 1612889144 enrol_lti timezone 99 \N +1499 2 1612889144 enrol_lti lang en \N +1500 2 1612889144 enrol_lti institution \N +1501 2 1612889144 enrol_self requirepassword 0 \N +1502 2 1612889144 enrol_self usepasswordpolicy 0 \N +1503 2 1612889144 enrol_self showhint 0 \N +1504 2 1612889144 enrol_self expiredaction 1 \N +1505 2 1612889144 enrol_self expirynotifyhour 6 \N +1506 2 1612889144 enrol_self defaultenrol 1 \N +1507 2 1612889144 enrol_self status 1 \N +1508 2 1612889144 enrol_self newenrols 1 \N +1509 2 1612889144 enrol_self groupkey 0 \N +1510 2 1612889144 enrol_self roleid 5 \N +1511 2 1612889144 enrol_self enrolperiod 0 \N +1512 2 1612889144 enrol_self expirynotify 0 \N +1513 2 1612889144 enrol_self expirythreshold 86400 \N +1514 2 1612889144 enrol_self longtimenosee 0 \N +1515 2 1612889144 enrol_self maxenrolled 0 \N +1516 2 1612889144 enrol_self sendcoursewelcomemessage 1 \N +1517 2 1612889144 filter_urltolink formats 1,4,0 \N +1518 2 1612889144 filter_urltolink embedimages 1 \N +1519 2 1612889144 filter_emoticon formats 1,4,0 \N +1520 2 1612889144 filter_displayh5p allowedsources \N +1521 2 1612889144 filter_mathjaxloader httpsurl https://cdn.jsdelivr.net/npm/mathjax@2.7.8/MathJax.js \N +1522 2 1612889144 filter_mathjaxloader texfiltercompatibility 0 \N +1523 2 1612889144 filter_mathjaxloader mathjaxconfig \nMathJax.Hub.Config({\n config: ["Accessible.js", "Safe.js"],\n errorSettings: { message: ["!"] },\n skipStartupTypeset: true,\n messageStyle: "none"\n});\n \N +1524 2 1612889144 filter_mathjaxloader additionaldelimiters \N +1525 2 1612889144 \N filter_multilang_force_old 0 \N +1526 2 1612889144 filter_tex latexpreamble \\usepackage[latin1]{inputenc}\n\\usepackage{amsmath}\n\\usepackage{amsfonts}\n\\RequirePackage{amsmath,amssymb,latexsym}\n \N +1527 2 1612889145 filter_tex latexbackground #FFFFFF \N +1528 2 1612889145 filter_tex density 120 \N +1529 2 1612889145 filter_tex pathlatex /usr/bin/latex \N +1530 2 1612889145 filter_tex pathdvips /usr/bin/dvips \N +1531 2 1612889145 filter_tex pathconvert /usr/bin/convert \N +1532 2 1612889145 filter_tex pathdvisvgm /usr/bin/dvisvgm \N +1533 2 1612889145 filter_tex pathmimetex \N +1534 2 1612889145 filter_tex convertformat gif \N +1535 2 1612889145 \N filter_censor_badwords \N +1536 2 1612889145 logstore_database dbdriver \N +1537 2 1612889145 logstore_database dbhost \N +1538 2 1612889145 logstore_database dbuser \N +1539 2 1612889145 logstore_database dbpass \N +1540 2 1612889145 logstore_database dbname \N +1541 2 1612889145 logstore_database dbtable \N +1542 2 1612889145 logstore_database dbpersist 0 \N +1543 2 1612889145 logstore_database dbsocket \N +1544 2 1612889145 logstore_database dbport \N +1545 2 1612889145 logstore_database dbschema \N +1546 2 1612889145 logstore_database dbcollation \N +1547 2 1612889145 logstore_database dbhandlesoptions 0 \N +1548 2 1612889145 logstore_database buffersize 50 \N +1549 2 1612889145 logstore_database jsonformat 1 \N +1550 2 1612889145 logstore_database logguests 0 \N +1551 2 1612889145 logstore_database includelevels 1,2,0 \N +1552 2 1612889145 logstore_database includeactions c,r,u,d \N +1553 2 1612889145 logstore_legacy loglegacy 0 \N +1554 2 1612889145 \N logguests 1 \N +1555 2 1612889145 \N loglifetime 0 \N +1556 2 1612889145 logstore_standard logguests 1 \N +1557 2 1612889145 logstore_standard jsonformat 1 \N +1558 2 1612889145 logstore_standard loglifetime 0 \N +1559 2 1612889145 logstore_standard buffersize 50 \N +1560 2 1612889145 mlbackend_python useserver 0 \N +1561 2 1612889145 mlbackend_python host \N +1562 2 1612889145 mlbackend_python port 0 \N +1563 2 1612889145 mlbackend_python secure 0 \N +1564 2 1612889145 mlbackend_python username default \N +1565 2 1612889145 mlbackend_python password \N +1566 2 1612889145 media_videojs videoextensions html_video,media_source,.f4v,.flv \N +1567 2 1612889145 media_videojs audioextensions html_audio \N +1568 2 1612889145 media_videojs rtmp 0 \N +1569 2 1612889145 media_videojs useflash 0 \N +1570 2 1612889145 media_videojs youtube 1 \N +1571 2 1612889145 media_videojs videocssclass video-js \N +1572 2 1612889145 media_videojs audiocssclass video-js \N +1573 2 1612889145 media_videojs limitsize 1 \N +1574 2 1612889145 paygw_paypal surcharge 0 \N +1575 2 1612889145 qtype_multichoice answerhowmany 1 \N +1576 2 1612889145 qtype_multichoice shuffleanswers 1 \N +1577 2 1612889145 qtype_multichoice answernumbering abc \N +1578 2 1612889145 editor_atto toolbar collapse = collapse\nstyle1 = title, bold, italic\nlist = unorderedlist, orderedlist, indent\nlinks = link\nfiles = emojipicker, image, media, recordrtc, managefiles, h5p\nstyle2 = underline, strike, subscript, superscript\nalign = align\ninsert = equation, charmap, table, clear\nundo = undo\naccessibility = accessibilitychecker, accessibilityhelper\nother = html \N +1579 2 1612889145 editor_atto autosavefrequency 60 \N +1580 2 1612889145 atto_collapse showgroups 5 \N +1581 2 1612889145 atto_equation librarygroup1 \n\\cdot\n\\times\n\\ast\n\\div\n\\diamond\n\\pm\n\\mp\n\\oplus\n\\ominus\n\\otimes\n\\oslash\n\\odot\n\\circ\n\\bullet\n\\asymp\n\\equiv\n\\subseteq\n\\supseteq\n\\leq\n\\geq\n\\preceq\n\\succeq\n\\sim\n\\simeq\n\\approx\n\\subset\n\\supset\n\\ll\n\\gg\n\\prec\n\\succ\n\\infty\n\\in\n\\ni\n\\forall\n\\exists\n\\neq\n \N +1582 2 1612889145 atto_equation librarygroup2 \n\\leftarrow\n\\rightarrow\n\\uparrow\n\\downarrow\n\\leftrightarrow\n\\nearrow\n\\searrow\n\\swarrow\n\\nwarrow\n\\Leftarrow\n\\Rightarrow\n\\Uparrow\n\\Downarrow\n\\Leftrightarrow\n \N +1583 2 1612889145 atto_equation librarygroup3 \n\\alpha\n\\beta\n\\gamma\n\\delta\n\\epsilon\n\\zeta\n\\eta\n\\theta\n\\iota\n\\kappa\n\\lambda\n\\mu\n\\nu\n\\xi\n\\pi\n\\rho\n\\sigma\n\\tau\n\\upsilon\n\\phi\n\\chi\n\\psi\n\\omega\n\\Gamma\n\\Delta\n\\Theta\n\\Lambda\n\\Xi\n\\Pi\n\\Sigma\n\\Upsilon\n\\Phi\n\\Psi\n\\Omega\n \N +1584 2 1612889145 atto_equation librarygroup4 \n\\sum{a,b}\n\\sqrt[a]{b+c}\n\\int_{a}^{b}{c}\n\\iint_{a}^{b}{c}\n\\iiint_{a}^{b}{c}\n\\oint{a}\n(a)\n[a]\n\\lbrace{a}\\rbrace\n\\left| \\begin{matrix} a_1 & a_2 \\ a_3 & a_4 \\end{matrix} \\right|\n\\frac{a}{b+c}\n\\vec{a}\n\\binom {a} {b}\n{a \\brack b}\n{a \\brace b}\n \N +1585 2 1612889145 atto_recordrtc allowedtypes both \N +1586 2 1612889145 atto_recordrtc audiobitrate 128000 \N +1587 2 1612889145 atto_recordrtc videobitrate 2500000 \N +1588 2 1612889145 atto_recordrtc timelimit 120 \N +1589 2 1612889145 atto_table allowborders 0 \N +1590 2 1612889145 atto_table allowbackgroundcolour 0 \N +1591 2 1612889145 atto_table allowwidth 0 \N +1592 2 1612889145 editor_tinymce customtoolbar wrap,formatselect,wrap,bold,italic,wrap,bullist,numlist,wrap,link,unlink,wrap,image\n\nundo,redo,wrap,underline,strikethrough,sub,sup,wrap,justifyleft,justifycenter,justifyright,wrap,outdent,indent,wrap,forecolor,backcolor,wrap,ltr,rtl\n\nfontselect,fontsizeselect,wrap,code,search,replace,wrap,nonbreaking,charmap,table,wrap,cleanup,removeformat,pastetext,pasteword,wrap,fullscreen \N +1593 2 1612889145 editor_tinymce fontselectlist Trebuchet=Trebuchet MS,Verdana,Arial,Helvetica,sans-serif;Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;Wingdings=wingdings \N +1594 2 1612889145 editor_tinymce customconfig \N +1595 2 1612889145 tinymce_moodleemoticon requireemoticon 1 \N +1596 2 1612889145 tinymce_spellchecker spellengine \N +1597 2 1612889145 tinymce_spellchecker spelllanguagelist +English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv \N +1598 2 1612889145 \N profileroles 5,4,3 \N +1599 2 1612889145 \N coursecontact 3 \N +1600 2 1612889145 \N frontpage 6 \N +1601 2 1612889145 \N frontpageloggedin 6 \N +1602 2 1612889145 \N maxcategorydepth 2 \N +1603 2 1612889145 \N frontpagecourselimit 200 \N +1604 2 1612889145 \N commentsperpage 15 \N +1605 2 1612889145 \N defaultfrontpageroleid 8 \N +1606 2 1612889145 \N messageinbound_enabled 0 \N +1607 2 1612889145 \N messageinbound_mailbox \N +1608 2 1612889145 \N messageinbound_domain \N +1609 2 1612889145 \N messageinbound_host \N +1610 2 1612889145 \N messageinbound_hostssl ssl \N +1611 2 1612889145 \N messageinbound_hostuser \N +1612 2 1612889145 \N messageinbound_hostpass \N +1613 2 1612889145 \N enablemobilewebservice 0 \N +1614 2 1612889145 tool_mobile apppolicy \N +1615 2 1612889145 tool_mobile typeoflogin 1 \N +1616 2 1612889145 tool_mobile qrcodetype 1 \N +1617 2 1612889145 tool_mobile forcedurlscheme moodlemobile \N +1618 2 1612889145 tool_mobile minimumversion \N +1619 2 1612889145 \N mobilecssurl \N +1620 2 1612889145 tool_mobile enablesmartappbanners 0 \N +1621 2 1612889145 tool_mobile iosappid 633359593 \N +1622 2 1612889145 tool_mobile androidappid com.moodle.moodlemobile \N +1623 2 1612889145 tool_mobile setuplink https://download.moodle.org/mobile \N +1624 2 1612889145 tool_mobile forcelogout 0 \N +1625 2 1612889145 tool_mobile disabledfeatures \N +1626 2 1612889145 tool_mobile custommenuitems \N +1627 2 1612889145 tool_mobile filetypeexclusionlist \N +1628 2 1612889145 tool_mobile customlangstrings \N +1629 2 1612889145 tool_moodlenet enablemoodlenet 0 \N +1630 2 1612889145 tool_moodlenet defaultmoodlenetname MoodleNet Central \N +1631 2 1612889145 tool_moodlenet defaultmoodlenet https://moodle.net \N +1632 2 1612889167 \N timezone Europe/London \N +1633 2 1612889167 \N registerauth \N \. @@ -27359,7 +27747,7 @@ COPY public.mdl_config_log (id, userid, timemodified, plugin, name, value, oldva -- Name: mdl_config_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_config_log_id_seq', 1601, true); +SELECT pg_catalog.setval('public.mdl_config_log_id_seq', 1633, true); -- @@ -27374,1805 +27762,1837 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 5 question numerical_sortorder 5 6 question essay_sortorder 6 7 moodlecourse visible 1 -8 moodlecourse format topics -9 moodlecourse maxsections 52 -10 moodlecourse numsections 4 -11 moodlecourse hiddensections 0 -12 moodlecourse coursedisplay 0 -13 moodlecourse courseenddateenabled 1 -14 moodlecourse courseduration 31536000 -15 moodlecourse lang -16 moodlecourse newsitems 5 -17 moodlecourse showgrades 1 -18 moodlecourse showreports 0 -19 moodlecourse maxbytes 0 -20 moodlecourse enablecompletion 1 -21 moodlecourse groupmode 0 -22 moodlecourse groupmodeforce 0 -23 backup loglifetime 30 -24 backup backup_general_users 1 -25 backup backup_general_users_locked -26 backup backup_general_anonymize 0 -27 backup backup_general_anonymize_locked -28 backup backup_general_role_assignments 1 -29 backup backup_general_role_assignments_locked -30 backup backup_general_activities 1 -31 backup backup_general_activities_locked -32 backup backup_general_blocks 1 -33 backup backup_general_blocks_locked -34 backup backup_general_files 1 -35 backup backup_general_files_locked -36 backup backup_general_filters 1 -37 backup backup_general_filters_locked -38 backup backup_general_comments 1 -39 backup backup_general_comments_locked -40 backup backup_general_badges 1 -41 backup backup_general_badges_locked -42 backup backup_general_calendarevents 1 -43 backup backup_general_calendarevents_locked -44 backup backup_general_userscompletion 1 -45 backup backup_general_userscompletion_locked -46 backup backup_general_logs 0 -47 backup backup_general_logs_locked -48 backup backup_general_histories 0 -49 backup backup_general_histories_locked -50 backup backup_general_questionbank 1 -51 backup backup_general_questionbank_locked -52 backup backup_general_groups 1 -53 backup backup_general_groups_locked -54 backup backup_general_competencies 1 -55 backup backup_general_competencies_locked -56 backup backup_general_contentbankcontent 1 -57 backup backup_general_contentbankcontent_locked -58 backup import_general_maxresults 10 -59 backup import_general_duplicate_admin_allowed 0 -60 backup backup_import_activities 1 -61 backup backup_import_activities_locked -62 backup backup_import_blocks 1 -63 backup backup_import_blocks_locked -64 backup backup_import_filters 1 -65 backup backup_import_filters_locked -66 backup backup_import_calendarevents 1 -67 backup backup_import_calendarevents_locked -68 backup backup_import_questionbank 1 -69 backup backup_import_questionbank_locked -70 backup backup_import_groups 1 -71 backup backup_import_groups_locked -72 backup backup_import_competencies 1 -73 backup backup_import_competencies_locked -74 backup backup_import_contentbankcontent 1 -75 backup backup_import_contentbankcontent_locked -76 backup backup_auto_active 0 -77 backup backup_auto_weekdays 0000000 -78 backup backup_auto_hour 0 -79 backup backup_auto_minute 0 -80 backup backup_auto_storage 0 -81 backup backup_auto_destination -82 backup backup_auto_max_kept 1 -83 backup backup_auto_delete_days 0 -84 backup backup_auto_min_kept 0 -85 backup backup_shortname 0 -86 backup backup_auto_skip_hidden 1 -87 backup backup_auto_skip_modif_days 30 -88 backup backup_auto_skip_modif_prev 0 -89 backup backup_auto_users 1 -90 backup backup_auto_role_assignments 1 -91 backup backup_auto_activities 1 -92 backup backup_auto_blocks 1 -93 backup backup_auto_files 1 -94 backup backup_auto_filters 1 -95 backup backup_auto_comments 1 -96 backup backup_auto_badges 1 -97 backup backup_auto_calendarevents 1 -98 backup backup_auto_userscompletion 1 -99 backup backup_auto_logs 0 -100 backup backup_auto_histories 0 -101 backup backup_auto_questionbank 1 -102 backup backup_auto_groups 1 -103 backup backup_auto_competencies 1 -104 backup backup_auto_contentbankcontent 1 -105 restore restore_general_users 1 -106 restore restore_general_users_locked -107 restore restore_general_enrolments 1 -108 restore restore_general_enrolments_locked -109 restore restore_general_role_assignments 1 -110 restore restore_general_role_assignments_locked -111 restore restore_general_activities 1 -112 restore restore_general_activities_locked -113 restore restore_general_blocks 1 -114 restore restore_general_blocks_locked -115 restore restore_general_filters 1 -116 restore restore_general_filters_locked -117 restore restore_general_comments 1 -118 restore restore_general_comments_locked -119 restore restore_general_badges 1 -120 restore restore_general_badges_locked -121 restore restore_general_calendarevents 1 -122 restore restore_general_calendarevents_locked -123 restore restore_general_userscompletion 1 -124 restore restore_general_userscompletion_locked -125 restore restore_general_logs 1 -126 restore restore_general_logs_locked -127 restore restore_general_histories 1 -128 restore restore_general_histories_locked -129 restore restore_general_groups 1 -130 restore restore_general_groups_locked -131 restore restore_general_competencies 1 -132 restore restore_general_competencies_locked -133 restore restore_general_contentbankcontent 1 -134 restore restore_general_contentbankcontent_locked -135 restore restore_merge_overwrite_conf 0 -136 restore restore_merge_overwrite_conf_locked -137 restore restore_merge_course_fullname 1 -138 restore restore_merge_course_fullname_locked -139 restore restore_merge_course_shortname 1 -140 restore restore_merge_course_shortname_locked -141 restore restore_merge_course_startdate 1 -142 restore restore_merge_course_startdate_locked -143 restore restore_replace_overwrite_conf 0 -144 restore restore_replace_overwrite_conf_locked -145 restore restore_replace_course_fullname 1 -146 restore restore_replace_course_fullname_locked -147 restore restore_replace_course_shortname 1 -148 restore restore_replace_course_shortname_locked -149 restore restore_replace_course_startdate 1 -150 restore restore_replace_course_startdate_locked -151 restore restore_replace_keep_roles_and_enrolments 0 -152 restore restore_replace_keep_roles_and_enrolments_locked -153 restore restore_replace_keep_groups_and_groupings 0 -154 restore restore_replace_keep_groups_and_groupings_locked -155 backup backup_async_message_users 0 -156 backup backup_async_message_subject Moodle {operation} completed successfully -157 backup backup_async_message Hi {user_firstname},
Your {operation} (ID: {backupid}) has completed successfully.

You can access it here: {link}. -158 analytics modeinstruction -159 analytics percentonline 0 -160 analytics typeinstitution -161 analytics levelinstitution -162 analytics predictionsprocessor \\mlbackend_php\\processor -163 analytics defaulttimesplittingsevaluation \\core\\analytics\\time_splitting\\quarters_accum,\\core\\analytics\\time_splitting\\quarters,\\core\\analytics\\time_splitting\\single_range -164 analytics modeloutputdir -165 analytics onlycli 1 -166 analytics modeltimelimit 1200 -167 core_competency enabled 1 -168 core_competency pushcourseratingstouserplans 1 -169 cachestore_apcu testperformance 0 -170 cachestore_memcached testservers -171 cachestore_mongodb testserver -172 cachestore_redis test_server -173 cachestore_redis test_password -174 question_preview behaviour deferredfeedback -175 question_preview correctness 1 -176 question_preview marks 2 -177 question_preview markdp 2 -178 question_preview feedback 1 -179 question_preview generalfeedback 1 -180 question_preview rightanswer 1 -181 question_preview history 0 -182 tool_task enablerunnow 1 -183 theme_boost preset default.scss -184 theme_boost presetfiles -185 theme_boost backgroundimage -186 theme_boost brandcolor -187 theme_boost scsspre -188 theme_boost scss -189 theme_classic navbardark 0 -190 theme_classic preset default.scss -191 theme_classic presetfiles -192 theme_classic backgroundimage -193 theme_classic brandcolor -194 theme_classic scsspre -195 theme_classic scss -196 core_admin logo -197 core_admin logocompact -198 core_admin coursecolor1 #81ecec -199 core_admin coursecolor2 #74b9ff -200 core_admin coursecolor3 #a29bfe -201 core_admin coursecolor4 #dfe6e9 -202 core_admin coursecolor5 #00b894 -203 core_admin coursecolor6 #0984e3 -204 core_admin coursecolor7 #b2bec3 -205 core_admin coursecolor8 #fdcb6e -206 core_admin coursecolor9 #fd79a8 -207 core_admin coursecolor10 #6c5ce7 -208 antivirus_clamav version 2020061500 -209 availability_completion version 2020061500 -210 availability_date version 2020061500 -211 availability_grade version 2020061500 -212 availability_group version 2020061500 -213 availability_grouping version 2020061500 -214 availability_profile version 2020061500 -215 qtype_calculated version 2020061500 -216 qtype_calculatedmulti version 2020061500 -217 qtype_calculatedsimple version 2020061500 -218 qtype_ddimageortext version 2020061500 -219 qtype_ddmarker version 2020061500 -220 qtype_ddwtos version 2020061500 -221 qtype_description version 2020061500 -222 qtype_essay version 2020061500 -223 qtype_gapselect version 2020061500 -224 qtype_match version 2020061500 -225 qtype_missingtype version 2020061500 -226 qtype_multianswer version 2020061500 -227 qtype_multichoice version 2020061500 -228 qtype_numerical version 2020061500 -229 qtype_random version 2020061500 -230 qtype_randomsamatch version 2020061500 -231 qtype_shortanswer version 2020061500 -232 qtype_truefalse version 2020061500 -233 mod_assign version 2020061500 -234 mod_assignment version 2020061500 -236 mod_book version 2020061500 -237 mod_chat version 2020061500 -238 mod_choice version 2020061500 -239 mod_data version 2020061500 -240 mod_feedback version 2020061500 -242 mod_folder version 2020061500 -244 mod_forum version 2020061501 -245 mod_glossary version 2020061500 -246 mod_h5pactivity version 2020061500 -247 mod_imscp version 2020061500 -249 mod_label version 2020061500 -250 mod_lesson version 2020061500 -251 mod_lti version 2020061501 -253 mod_lti kid 060173215daee673f086 -254 mod_lti privatekey -----BEGIN PRIVATE KEY-----\nMIIEwAIBADANBgkqhkiG9w0BAQEFAASCBKowggSmAgEAAoIBAQDLWwaU8o+Bdd2l\nBt87/XwNznEr3IdSMEYpPR9exYoKG0dMsy6TpKD7ZCtOV/eUs3FLk938QTEVkwzP\n7BCENdrOnSnzuw2SdYnJsznLmIKGJVyfO2/JjJkmRw8tF8XwIulOKrp9ripzarYs\nChOGOGqd2AZMl3CV5FPgV2Sppswrp1ucwMg7q58ppLrjGBC4Ea/fNDvWQl2dDBA7\n+knS2xhfFeiRqtzxQGSVXzWx4QLOGnoZ/554aDKAHjVSR52aJ0V5x0eAnLMIb/pM\nR4KeVK5qU4xSlhlmRSfjQMD95iPhGbt8yBFKe8p2wwfQp2pRpbhXKO/2UIzSIYA8\n1aYVPT6/AgMBAAECggEBAKDrjkDN1ZvXvqZ50qtxQvrV856G65qxUsQNd0aSwVKQ\nFZLvdBsnurBUqyRa3jOQ8EWjZJXarNHqxMfAga1txJGdsvYJfor4cinnpwOi0x7+\nb9Ydva9bkFHHB45icqM9rSvLCjqsWTFuL2yYKK0c9dmkeg+gA1rKDUnJPoI12Plt\nFCOxNVEGGUx/dvzm6gS7/uDJ081fLQiQ6GAYeOP9NnxcKjyGLfsWKTbfV0uicGAA\naLlGi23Om1RsbakkgJFmh0zODLTO8Qq42b7sLOs5EjaaLuMlzJmTDRWv6rw76UCe\nZUlAcLAFuV/B3jwfK01ScWkDUt71kqpacX25nwjxr3kCgYEA5piYs20nwqYwi7To\njk1XzT/96DXDHrYyav7Wg8WahypvqaMme2IQniZ5Kee7Y45oxS/iutfT7qdFf+zO\nSailr25S0+fNJTO7lMBBvq3vuECuZeXU+759UoSLG3TGiB77IwiNgZgZ8N5W1sPb\nZ19IRFXvJ7JYpW9MgQsQ7tv/5t0CgYEA4cItOErbk8ycTc2grcYfAbYtXUqKtzHu\nYMre6GQhTa87yswtqH4DO9FM6sktAvlgxyLGZbODt8zIkQm1NNDT3Yj+D/qM+W2v\naeWdwkiOZkCRNIQopUDAoNHX2RRWhGHmBDWq9KGkK/l2rmRQpaTSibPPvKdsFLOP\nLI7Tkzh3TEsCgYEAp/9QcJf7uaHeCEpaiyHp78zJLN3OM5fFj5Htsr7J3+OYylvk\nc0t0k+Ovrkn3iYZ86fwDEOCgtGQFDDf36k4Ft5OGoH9mQ842wR54R3TtCq2E4RPa\nYTXck7ugpPYklZMMn+9hOKMZcxRo67pxJBSUz8RTofYbAxvc/r6TLZH2E7kCgYEA\njnmNMEmN6ejne/KZxRGT3/CpEIdKo/LPDib6Jo+KtQwyH/pblkpwn/+nG0V7MrVP\nbl1z+BsitYx3x5Do2zwveVBLhqoI7iFa4uoWddZ0h/OXsBz3ydLjvpqwLj+3mjRu\nhZmZGmoowdfeHpEQlHlApcblA5pli2sGoIhC3lZ0c6ECgYEA5Y9IgFLCIACdCEb4\numcXm0yRbwNS56kiE8nRi5lec4y9NrBqreyySh/NLae4IEfOm/wmhG5vQ2QEIBXH\nc7OX9lqcJtndxpDUuTq8Z7z0JSxPKWLYRuY7Mk67k1GNYXl8l9111kM7yaCJLsmB\nklRbV30qZ+2r4o/2plUDZFpaGQk=\n-----END PRIVATE KEY-----\n -255 mod_page version 2020061500 -257 mod_quiz version 2020061500 -258 mod_resource version 2020061500 -259 mod_scorm version 2020061500 -260 mod_survey version 2020061500 -262 mod_url version 2020061500 -264 mod_wiki version 2020061500 -266 mod_workshop version 2020061500 -267 auth_cas version 2020061501 -269 auth_db version 2020061500 -271 auth_email version 2020061500 -272 auth_ldap version 2020061501 -274 auth_lti version 2020061500 -275 auth_manual version 2020061500 -276 auth_mnet version 2020061500 -278 auth_nologin version 2020061500 -279 auth_none version 2020061500 -280 auth_oauth2 version 2020061500 -281 auth_shibboleth version 2020061500 -283 auth_webservice version 2020061500 -284 calendartype_gregorian version 2020061500 -285 customfield_checkbox version 2020061500 -286 customfield_date version 2020061500 -287 customfield_select version 2020061500 -288 customfield_text version 2020061500 -289 customfield_textarea version 2020061500 -290 enrol_category version 2020061500 -292 enrol_cohort version 2020061500 -293 enrol_database version 2020061500 -295 enrol_flatfile version 2020061500 -297 enrol_flatfile map_1 manager -298 enrol_flatfile map_2 coursecreator -299 enrol_flatfile map_3 editingteacher -300 enrol_flatfile map_4 teacher -301 enrol_flatfile map_5 student -302 enrol_flatfile map_6 guest -303 enrol_flatfile map_7 user -304 enrol_flatfile map_8 frontpage -305 enrol_guest version 2020061500 -306 enrol_imsenterprise version 2020061500 -308 enrol_ldap version 2020061500 -310 enrol_lti version 2020061500 -311 enrol_manual version 2020061500 -313 enrol_meta version 2020061500 -315 enrol_mnet version 2020061500 -316 enrol_paypal version 2020061500 -317 enrol_self version 2020061500 -319 message_airnotifier version 2020061500 -321 message airnotifier_provider_enrol_manual_expiry_notification_permitted permitted -322 message airnotifier_provider_mod_forum_posts_permitted permitted -325 message airnotifier_provider_mod_forum_digests_permitted permitted -326 message airnotifier_provider_mod_quiz_submission_permitted permitted -1140 quiz shuffleanswers_adv -327 message airnotifier_provider_mod_quiz_confirmation_permitted permitted -330 message airnotifier_provider_mod_quiz_attempt_overdue_permitted permitted -333 message airnotifier_provider_mod_feedback_submission_permitted permitted -334 message airnotifier_provider_mod_feedback_message_permitted permitted -335 message airnotifier_provider_enrol_paypal_paypal_enrolment_permitted permitted -336 message airnotifier_provider_mod_lesson_graded_essay_permitted permitted -339 message airnotifier_provider_enrol_self_expiry_notification_permitted permitted -340 message airnotifier_provider_enrol_imsenterprise_imsenterprise_enrolment_permitted permitted -341 message airnotifier_provider_mod_assignment_assignment_updates_permitted permitted -342 message airnotifier_provider_moodle_notices_permitted permitted -343 message airnotifier_provider_moodle_errors_permitted permitted -344 message airnotifier_provider_moodle_availableupdate_permitted permitted -345 message airnotifier_provider_moodle_instantmessage_permitted permitted -346 message airnotifier_provider_moodle_backup_permitted permitted -347 message airnotifier_provider_moodle_courserequested_permitted permitted -348 message airnotifier_provider_moodle_courserequestapproved_permitted permitted -351 message airnotifier_provider_moodle_courserequestrejected_permitted permitted -354 message airnotifier_provider_moodle_badgerecipientnotice_permitted permitted -357 message airnotifier_provider_moodle_badgecreatornotice_permitted permitted -358 message airnotifier_provider_moodle_competencyplancomment_permitted permitted -359 message airnotifier_provider_moodle_competencyusercompcomment_permitted permitted -360 message airnotifier_provider_moodle_insights_permitted permitted -363 message airnotifier_provider_moodle_messagecontactrequests_permitted permitted -364 message message_provider_moodle_messagecontactrequests_loggedin airnotifier -366 message airnotifier_provider_moodle_asyncbackupnotification_permitted permitted -367 message airnotifier_provider_moodle_gradenotifications_permitted permitted -368 message airnotifier_provider_mod_assign_assign_notification_permitted permitted -369 message airnotifier_provider_enrol_flatfile_flatfile_enrolment_permitted permitted -370 message_email version 2020061500 -372 message email_provider_enrol_manual_expiry_notification_permitted permitted -373 message message_provider_enrol_manual_expiry_notification_loggedin email -374 message message_provider_enrol_manual_expiry_notification_loggedoff email -375 message email_provider_mod_forum_posts_permitted permitted -323 message message_provider_mod_forum_posts_loggedin email,airnotifier -324 message message_provider_mod_forum_posts_loggedoff email,airnotifier -376 message email_provider_mod_forum_digests_permitted permitted -377 message message_provider_mod_forum_digests_loggedin email -378 message message_provider_mod_forum_digests_loggedoff email -379 message email_provider_mod_quiz_submission_permitted permitted -380 message message_provider_mod_quiz_submission_loggedin email -381 message message_provider_mod_quiz_submission_loggedoff email -382 message email_provider_mod_quiz_confirmation_permitted permitted -328 message message_provider_mod_quiz_confirmation_loggedin email,airnotifier -329 message message_provider_mod_quiz_confirmation_loggedoff email,airnotifier -383 message email_provider_mod_quiz_attempt_overdue_permitted permitted -331 message message_provider_mod_quiz_attempt_overdue_loggedin email,airnotifier -332 message message_provider_mod_quiz_attempt_overdue_loggedoff email,airnotifier -384 message email_provider_mod_feedback_submission_permitted permitted -385 message message_provider_mod_feedback_submission_loggedin email -386 message message_provider_mod_feedback_submission_loggedoff email -387 message email_provider_mod_feedback_message_permitted permitted -388 message message_provider_mod_feedback_message_loggedin email -389 message message_provider_mod_feedback_message_loggedoff email -390 message email_provider_enrol_paypal_paypal_enrolment_permitted permitted -391 message message_provider_enrol_paypal_paypal_enrolment_loggedin email -392 message message_provider_enrol_paypal_paypal_enrolment_loggedoff email -393 message email_provider_mod_lesson_graded_essay_permitted permitted -355 message message_provider_moodle_badgerecipientnotice_loggedin popup,airnotifier -361 message message_provider_moodle_insights_loggedin popup,airnotifier -337 message message_provider_mod_lesson_graded_essay_loggedin email,airnotifier -338 message message_provider_mod_lesson_graded_essay_loggedoff email,airnotifier -394 message email_provider_enrol_self_expiry_notification_permitted permitted -395 message message_provider_enrol_self_expiry_notification_loggedin email -396 message message_provider_enrol_self_expiry_notification_loggedoff email -397 message email_provider_enrol_imsenterprise_imsenterprise_enrolment_permitted permitted -398 message message_provider_enrol_imsenterprise_imsenterprise_enrolment_loggedin email -399 message message_provider_enrol_imsenterprise_imsenterprise_enrolment_loggedoff email -400 message email_provider_mod_assignment_assignment_updates_permitted permitted -401 message message_provider_mod_assignment_assignment_updates_loggedin email -402 message message_provider_mod_assignment_assignment_updates_loggedoff email -403 message email_provider_moodle_notices_permitted permitted -404 message message_provider_moodle_notices_loggedin email -405 message message_provider_moodle_notices_loggedoff email -406 message email_provider_moodle_errors_permitted permitted -407 message message_provider_moodle_errors_loggedin email -408 message message_provider_moodle_errors_loggedoff email -409 message email_provider_moodle_availableupdate_permitted permitted -410 message message_provider_moodle_availableupdate_loggedin email -411 message message_provider_moodle_availableupdate_loggedoff email -412 message email_provider_moodle_instantmessage_permitted permitted -414 message email_provider_moodle_backup_permitted permitted -415 message message_provider_moodle_backup_loggedin email -416 message message_provider_moodle_backup_loggedoff email -417 message email_provider_moodle_courserequested_permitted permitted -418 message message_provider_moodle_courserequested_loggedin email -419 message message_provider_moodle_courserequested_loggedoff email -420 message email_provider_moodle_courserequestapproved_permitted permitted -349 message message_provider_moodle_courserequestapproved_loggedin email,airnotifier -350 message message_provider_moodle_courserequestapproved_loggedoff email,airnotifier -421 message email_provider_moodle_courserequestrejected_permitted permitted -352 message message_provider_moodle_courserequestrejected_loggedin email,airnotifier -353 message message_provider_moodle_courserequestrejected_loggedoff email,airnotifier -422 message email_provider_moodle_badgerecipientnotice_permitted permitted -423 message email_provider_moodle_badgecreatornotice_permitted permitted -424 message message_provider_moodle_badgecreatornotice_loggedoff email -425 message email_provider_moodle_competencyplancomment_permitted permitted -426 message message_provider_moodle_competencyplancomment_loggedin email -427 message message_provider_moodle_competencyplancomment_loggedoff email -428 message email_provider_moodle_competencyusercompcomment_permitted permitted -429 message message_provider_moodle_competencyusercompcomment_loggedin email -430 message message_provider_moodle_competencyusercompcomment_loggedoff email -431 message email_provider_moodle_insights_permitted permitted -432 message email_provider_moodle_messagecontactrequests_permitted permitted -365 message message_provider_moodle_messagecontactrequests_loggedoff email,airnotifier -433 message email_provider_moodle_asyncbackupnotification_permitted permitted -435 message email_provider_moodle_gradenotifications_permitted permitted -437 message email_provider_mod_assign_assign_notification_permitted permitted -438 message message_provider_mod_assign_assign_notification_loggedin email -439 message message_provider_mod_assign_assign_notification_loggedoff email -440 message email_provider_enrol_flatfile_flatfile_enrolment_permitted permitted -441 message message_provider_enrol_flatfile_flatfile_enrolment_loggedin email -442 message message_provider_enrol_flatfile_flatfile_enrolment_loggedoff email -443 message_jabber version 2020061500 -445 message jabber_provider_enrol_manual_expiry_notification_permitted permitted -446 message jabber_provider_mod_forum_posts_permitted permitted -447 message jabber_provider_mod_forum_digests_permitted permitted -448 message jabber_provider_mod_quiz_submission_permitted permitted -449 message jabber_provider_mod_quiz_confirmation_permitted permitted -450 message jabber_provider_mod_quiz_attempt_overdue_permitted permitted -451 message jabber_provider_mod_feedback_submission_permitted permitted -452 message jabber_provider_mod_feedback_message_permitted permitted -453 message jabber_provider_enrol_paypal_paypal_enrolment_permitted permitted -454 message jabber_provider_mod_lesson_graded_essay_permitted permitted -455 message jabber_provider_enrol_self_expiry_notification_permitted permitted -456 message jabber_provider_enrol_imsenterprise_imsenterprise_enrolment_permitted permitted -457 message jabber_provider_mod_assignment_assignment_updates_permitted permitted -458 message jabber_provider_moodle_notices_permitted permitted -459 message jabber_provider_moodle_errors_permitted permitted -539 block_private_files version 2020061500 -540 block_quiz_results version 2020061500 -542 block_recent_activity version 2020061500 -543 block_recentlyaccessedcourses version 2020061500 -545 block_recentlyaccesseditems version 2020061500 -546 block_rss_client version 2020061500 -547 block_search_forums version 2020061500 -460 message jabber_provider_moodle_availableupdate_permitted permitted -461 message jabber_provider_moodle_instantmessage_permitted permitted -462 message jabber_provider_moodle_backup_permitted permitted -463 message jabber_provider_moodle_courserequested_permitted permitted -464 message jabber_provider_moodle_courserequestapproved_permitted permitted -465 message jabber_provider_moodle_courserequestrejected_permitted permitted -466 message jabber_provider_moodle_badgerecipientnotice_permitted permitted -467 message jabber_provider_moodle_badgecreatornotice_permitted permitted -468 message jabber_provider_moodle_competencyplancomment_permitted permitted -469 message jabber_provider_moodle_competencyusercompcomment_permitted permitted -470 message jabber_provider_moodle_insights_permitted permitted -471 message jabber_provider_moodle_messagecontactrequests_permitted permitted -472 message jabber_provider_moodle_asyncbackupnotification_permitted permitted -473 message jabber_provider_moodle_gradenotifications_permitted permitted -474 message jabber_provider_mod_assign_assign_notification_permitted permitted -1578 auth_shibboleth logout_handler -475 message jabber_provider_enrol_flatfile_flatfile_enrolment_permitted permitted -476 message_popup version 2020061500 -478 message popup_provider_enrol_manual_expiry_notification_permitted permitted -479 message popup_provider_mod_forum_posts_permitted permitted -480 message popup_provider_mod_forum_digests_permitted permitted -481 message popup_provider_mod_quiz_submission_permitted permitted -482 message popup_provider_mod_quiz_confirmation_permitted permitted -483 message popup_provider_mod_quiz_attempt_overdue_permitted permitted -484 message popup_provider_mod_feedback_submission_permitted permitted -485 message popup_provider_mod_feedback_message_permitted permitted -486 message popup_provider_enrol_paypal_paypal_enrolment_permitted permitted -487 message popup_provider_mod_lesson_graded_essay_permitted permitted -488 message popup_provider_enrol_self_expiry_notification_permitted permitted -489 message popup_provider_enrol_imsenterprise_imsenterprise_enrolment_permitted permitted -490 message popup_provider_mod_assignment_assignment_updates_permitted permitted -491 message popup_provider_moodle_notices_permitted permitted -492 message popup_provider_moodle_errors_permitted permitted -493 message popup_provider_moodle_availableupdate_permitted permitted -494 message popup_provider_moodle_instantmessage_permitted permitted -495 message message_provider_moodle_instantmessage_loggedin popup -413 message message_provider_moodle_instantmessage_loggedoff popup,email -496 message popup_provider_moodle_backup_permitted permitted -497 message popup_provider_moodle_courserequested_permitted permitted -498 message popup_provider_moodle_courserequestapproved_permitted permitted -499 message popup_provider_moodle_courserequestrejected_permitted permitted -500 message popup_provider_moodle_badgerecipientnotice_permitted permitted -356 message message_provider_moodle_badgerecipientnotice_loggedoff popup,email,airnotifier -501 message popup_provider_moodle_badgecreatornotice_permitted permitted -502 message popup_provider_moodle_competencyplancomment_permitted permitted -503 message popup_provider_moodle_competencyusercompcomment_permitted permitted -504 message popup_provider_moodle_insights_permitted permitted -362 message message_provider_moodle_insights_loggedoff popup,email,airnotifier -505 message popup_provider_moodle_messagecontactrequests_permitted permitted -506 message popup_provider_moodle_asyncbackupnotification_permitted permitted -507 message message_provider_moodle_asyncbackupnotification_loggedin popup -434 message message_provider_moodle_asyncbackupnotification_loggedoff popup,email -508 message popup_provider_moodle_gradenotifications_permitted permitted -509 message message_provider_moodle_gradenotifications_loggedin popup -436 message message_provider_moodle_gradenotifications_loggedoff popup,email -510 message popup_provider_mod_assign_assign_notification_permitted permitted -511 message popup_provider_enrol_flatfile_flatfile_enrolment_permitted permitted -512 block_activity_modules version 2020061500 -513 block_activity_results version 2020061500 -514 block_admin_bookmarks version 2020061500 -515 block_badges version 2020061500 -516 block_blog_menu version 2020061500 -517 block_blog_recent version 2020061500 -518 block_blog_tags version 2020061500 -519 block_calendar_month version 2020061500 -520 block_calendar_upcoming version 2020061500 -521 block_comments version 2020061500 -522 block_completionstatus version 2020061500 -523 block_course_list version 2020061500 -524 block_course_summary version 2020061500 -525 block_feedback version 2020061500 -527 block_globalsearch version 2020061500 -528 block_glossary_random version 2020061500 -529 block_html version 2020061500 -530 block_login version 2020061500 -531 block_lp version 2020061500 -532 block_mentees version 2020061500 -533 block_mnet_hosts version 2020061500 -534 block_myoverview version 2020061500 -535 block_myprofile version 2020061500 -536 block_navigation version 2020061500 -537 block_news_items version 2020061500 -538 block_online_users version 2020061500 -548 block_section_links version 2020061500 -549 block_selfcompletion version 2020061500 -550 block_settings version 2020061500 -551 block_site_main_menu version 2020061500 -552 block_social_activities version 2020061500 -553 block_starredcourses version 2020061500 -554 block_tag_flickr version 2020061500 -555 block_tag_youtube version 2020061501 -557 block_tags version 2020061500 -558 block_timeline version 2020061500 -560 media_html5audio version 2020061500 -561 media_html5video version 2020061500 -562 media_swf version 2020061500 -563 media_videojs version 2020061500 -564 media_vimeo version 2020061500 -565 media_youtube version 2020061500 -566 filter_activitynames version 2020061500 -568 filter_algebra version 2020061500 -569 filter_censor version 2020061500 -570 filter_data version 2020061500 -572 filter_displayh5p version 2020061500 -574 filter_emailprotect version 2020061500 -1676 enrol_database dbtype -575 filter_emoticon version 2020061500 -577 filter_glossary version 2020061500 -579 filter_mathjaxloader version 2020061500 -581 filter_mediaplugin version 2020061500 -583 filter_multilang version 2020061500 -584 filter_tex version 2020061500 -586 filter_tidy version 2020061500 -587 filter_urltolink version 2020061500 -589 editor_atto version 2020061500 -591 editor_textarea version 2020061500 -592 editor_tinymce version 2020061500 -593 format_singleactivity version 2020061500 -594 format_social version 2020061500 -595 format_topics version 2020061500 -596 format_weeks version 2020061500 -597 dataformat_csv version 2020061500 -598 dataformat_excel version 2020061500 -599 dataformat_html version 2020061500 -600 dataformat_json version 2020061500 -601 dataformat_ods version 2020061500 -602 dataformat_pdf version 2020061500 -603 profilefield_checkbox version 2020061500 -604 profilefield_datetime version 2020061500 -605 profilefield_menu version 2020061500 -606 profilefield_text version 2020061500 -607 profilefield_textarea version 2020061500 -608 report_backups version 2020061500 -609 report_competency version 2020061500 -610 report_completion version 2020061500 -612 report_configlog version 2020061500 -613 report_courseoverview version 2020061500 -614 report_eventlist version 2020061500 -615 report_insights version 2020061500 -616 report_log version 2020061500 -618 report_loglive version 2020061500 -619 report_outline version 2020061500 -621 report_participation version 2020061500 -623 report_performance version 2020061500 -624 report_progress version 2020061500 -626 report_questioninstances version 2020061500 -627 report_security version 2020061500 -628 report_stats version 2020061500 -630 report_status version 2020061500 -631 report_usersessions version 2020061500 -632 gradeexport_ods version 2020061500 -633 gradeexport_txt version 2020061500 -634 gradeexport_xls version 2020061500 -635 gradeexport_xml version 2020061500 -636 gradeimport_csv version 2020061500 -637 gradeimport_direct version 2020061500 -638 gradeimport_xml version 2020061500 -639 gradereport_grader version 2020061500 -640 gradereport_history version 2020061500 -641 gradereport_outcomes version 2020061500 -642 gradereport_overview version 2020061500 -643 gradereport_singleview version 2020061500 -644 gradereport_user version 2020061500 -645 gradingform_guide version 2020061500 -646 gradingform_rubric version 2020061500 -647 mlbackend_php version 2020061500 -648 mlbackend_python version 2020061500 -649 mnetservice_enrol version 2020061500 -650 webservice_rest version 2020061500 -651 webservice_soap version 2020061500 -652 webservice_xmlrpc version 2020061500 -653 repository_areafiles version 2020061500 -655 areafiles enablecourseinstances 0 -656 areafiles enableuserinstances 0 -657 repository_boxnet version 2020061500 -658 repository_contentbank version 2020061500 -660 contentbank enablecourseinstances 0 -661 contentbank enableuserinstances 0 -662 repository_coursefiles version 2020061500 -663 repository_dropbox version 2020061500 -664 repository_equella version 2020061500 -665 repository_filesystem version 2020061500 -666 repository_flickr version 2020061500 -667 repository_flickr_public version 2020061500 -668 repository_googledocs version 2020061500 -669 repository_local version 2020061500 -671 local enablecourseinstances 0 -672 local enableuserinstances 0 -673 repository_merlot version 2020061500 -674 repository_nextcloud version 2020061500 -675 repository_onedrive version 2020061500 -676 repository_picasa version 2020061500 -677 repository_recent version 2020061500 -679 recent enablecourseinstances 0 -680 recent enableuserinstances 0 -681 repository_s3 version 2020061500 -682 repository_skydrive version 2020061500 -683 repository_upload version 2020061500 -685 upload enablecourseinstances 0 -686 upload enableuserinstances 0 -687 repository_url version 2020061500 -689 url enablecourseinstances 0 -690 url enableuserinstances 0 -691 repository_user version 2020061500 -693 user enablecourseinstances 0 -694 user enableuserinstances 0 -695 repository_webdav version 2020061500 -696 repository_wikimedia version 2020061500 -698 wikimedia enablecourseinstances 0 -699 wikimedia enableuserinstances 0 -700 repository_youtube version 2020061500 -702 portfolio_boxnet version 2020061500 -703 portfolio_download version 2020061500 -704 portfolio_flickr version 2020061500 -705 portfolio_googledocs version 2020061500 -706 portfolio_mahara version 2020061500 -707 portfolio_picasa version 2020061500 -708 search_simpledb version 2020061500 -710 search_solr version 2020061500 -711 qbehaviour_adaptive version 2020061500 -712 qbehaviour_adaptivenopenalty version 2020061500 -713 qbehaviour_deferredcbm version 2020061500 -714 qbehaviour_deferredfeedback version 2020061500 -715 qbehaviour_immediatecbm version 2020061500 -716 qbehaviour_immediatefeedback version 2020061500 -717 qbehaviour_informationitem version 2020061500 -718 qbehaviour_interactive version 2020061500 -719 qbehaviour_interactivecountback version 2020061500 -720 qbehaviour_manualgraded version 2020061500 -722 question disabledbehaviours manualgraded -723 qbehaviour_missing version 2020061500 -724 qformat_aiken version 2020061500 -725 qformat_blackboard_six version 2020061500 -726 qformat_examview version 2020061500 -727 qformat_gift version 2020061500 -728 qformat_missingword version 2020061500 -729 qformat_multianswer version 2020061500 -730 qformat_webct version 2020061500 -731 qformat_xhtml version 2020061500 -732 qformat_xml version 2020061500 -733 tool_analytics version 2020061500 -734 tool_availabilityconditions version 2020061500 -735 tool_behat version 2020061500 -736 tool_capability version 2020061500 -737 tool_cohortroles version 2020061500 -738 tool_customlang version 2020061500 -740 tool_dataprivacy version 2020061501 -741 message airnotifier_provider_tool_dataprivacy_contactdataprotectionofficer_permitted permitted -742 message email_provider_tool_dataprivacy_contactdataprotectionofficer_permitted permitted -743 message jabber_provider_tool_dataprivacy_contactdataprotectionofficer_permitted permitted -744 message popup_provider_tool_dataprivacy_contactdataprotectionofficer_permitted permitted -745 message message_provider_tool_dataprivacy_contactdataprotectionofficer_loggedin email,popup -746 message message_provider_tool_dataprivacy_contactdataprotectionofficer_loggedoff email,popup -747 message airnotifier_provider_tool_dataprivacy_datarequestprocessingresults_permitted permitted -748 message email_provider_tool_dataprivacy_datarequestprocessingresults_permitted permitted -749 message jabber_provider_tool_dataprivacy_datarequestprocessingresults_permitted permitted -750 message popup_provider_tool_dataprivacy_datarequestprocessingresults_permitted permitted -751 message message_provider_tool_dataprivacy_datarequestprocessingresults_loggedin email,popup -752 message message_provider_tool_dataprivacy_datarequestprocessingresults_loggedoff email,popup -753 message airnotifier_provider_tool_dataprivacy_notifyexceptions_permitted permitted -754 message email_provider_tool_dataprivacy_notifyexceptions_permitted permitted -755 message jabber_provider_tool_dataprivacy_notifyexceptions_permitted permitted -756 message popup_provider_tool_dataprivacy_notifyexceptions_permitted permitted -757 message message_provider_tool_dataprivacy_notifyexceptions_loggedin email -758 message message_provider_tool_dataprivacy_notifyexceptions_loggedoff email -759 tool_dbtransfer version 2020061500 -760 tool_filetypes version 2020061500 -761 tool_generator version 2020061500 -762 tool_health version 2020061500 -763 tool_httpsreplace version 2020061500 -764 tool_innodb version 2020061500 -765 tool_installaddon version 2020061500 -766 tool_langimport version 2020061500 -767 tool_licensemanager version 2020061500 -768 tool_log version 2020061500 -770 tool_log enabled_stores logstore_standard -771 tool_lp version 2020061500 -772 tool_lpimportcsv version 2020061500 -773 tool_lpmigrate version 2020061500 -774 tool_messageinbound version 2020061500 -775 message airnotifier_provider_tool_messageinbound_invalidrecipienthandler_permitted permitted -776 message email_provider_tool_messageinbound_invalidrecipienthandler_permitted permitted -777 message jabber_provider_tool_messageinbound_invalidrecipienthandler_permitted permitted -778 message popup_provider_tool_messageinbound_invalidrecipienthandler_permitted permitted -779 message message_provider_tool_messageinbound_invalidrecipienthandler_loggedin email -780 message message_provider_tool_messageinbound_invalidrecipienthandler_loggedoff email -781 message airnotifier_provider_tool_messageinbound_messageprocessingerror_permitted permitted -782 message email_provider_tool_messageinbound_messageprocessingerror_permitted permitted -783 message jabber_provider_tool_messageinbound_messageprocessingerror_permitted permitted -784 message popup_provider_tool_messageinbound_messageprocessingerror_permitted permitted -785 message message_provider_tool_messageinbound_messageprocessingerror_loggedin email -786 message message_provider_tool_messageinbound_messageprocessingerror_loggedoff email -787 message airnotifier_provider_tool_messageinbound_messageprocessingsuccess_permitted permitted -788 message email_provider_tool_messageinbound_messageprocessingsuccess_permitted permitted -789 message jabber_provider_tool_messageinbound_messageprocessingsuccess_permitted permitted -790 message popup_provider_tool_messageinbound_messageprocessingsuccess_permitted permitted -791 message message_provider_tool_messageinbound_messageprocessingsuccess_loggedin email -792 message message_provider_tool_messageinbound_messageprocessingsuccess_loggedoff email -793 tool_mobile version 2020061500 -794 tool_monitor version 2020061500 -795 message airnotifier_provider_tool_monitor_notification_permitted permitted -796 message email_provider_tool_monitor_notification_permitted permitted -797 message jabber_provider_tool_monitor_notification_permitted permitted -798 message popup_provider_tool_monitor_notification_permitted permitted -799 message message_provider_tool_monitor_notification_loggedin email -800 message message_provider_tool_monitor_notification_loggedoff email -801 tool_moodlenet version 2020061503 -802 tool_multilangupgrade version 2020061500 -803 tool_oauth2 version 2020061500 -804 tool_phpunit version 2020061500 -805 tool_policy version 2020061500 -806 tool_profiling version 2020061500 -807 tool_recyclebin version 2020061500 -808 tool_replace version 2020061500 -809 tool_spamcleaner version 2020061500 -810 tool_task version 2020061500 -811 tool_templatelibrary version 2020061500 -812 tool_unsuproles version 2020061500 -814 tool_uploadcourse version 2020061500 -815 tool_uploaduser version 2020061500 -816 tool_usertours version 2020061502 -818 tool_xmldb version 2020061500 -819 cachestore_apcu version 2020061500 -820 cachestore_file version 2020061500 -821 cachestore_memcached version 2020061500 -822 cachestore_mongodb version 2020061500 -823 cachestore_redis version 2020061500 -824 cachestore_session version 2020061500 -825 cachestore_static version 2020061500 -826 cachelock_file version 2020061500 -827 fileconverter_googledrive version 2020061500 -828 fileconverter_unoconv version 2020061500 -830 contenttype_h5p version 2020061500 -831 theme_boost version 2020061500 -832 theme_classic version 2020061500 -833 h5plib_v124 version 2020061500 -834 assignsubmission_comments version 2020061500 -847 assignfeedback_offline sortorder 2 -846 assignfeedback_file sortorder 3 -852 assignfeedback_offline version 2020061500 -839 assignsubmission_file version 2020061500 -840 assignsubmission_onlinetext version 2020061500 -853 assignment_offline version 2020061500 -854 assignment_online version 2020061500 -855 assignment_upload version 2020061500 -838 assignsubmission_onlinetext sortorder 0 -836 assignsubmission_file sortorder 1 -837 assignsubmission_comments sortorder 2 -842 assignfeedback_comments version 2020061500 -848 assignfeedback_editpdf version 2020061500 -850 assignfeedback_file version 2020061500 -844 assignfeedback_comments sortorder 0 -845 assignfeedback_editpdf sortorder 1 -856 assignment_uploadsingle version 2020061500 -857 booktool_exportimscp version 2020061500 -858 booktool_importhtml version 2020061500 -859 booktool_print version 2020061500 -860 datafield_checkbox version 2020061500 -861 datafield_date version 2020061500 -862 datafield_file version 2020061500 -863 datafield_latlong version 2020061500 -864 datafield_menu version 2020061500 -865 datafield_multimenu version 2020061500 -866 datafield_number version 2020061500 -867 datafield_picture version 2020061500 -868 datafield_radiobutton version 2020061500 -869 datafield_text version 2020061500 -870 datafield_textarea version 2020061500 -871 datafield_url version 2020061500 -872 datapreset_imagegallery version 2020061500 -873 forumreport_summary version 2020061500 -874 ltiservice_basicoutcomes version 2020061500 -875 ltiservice_gradebookservices version 2020061500 -876 ltiservice_memberships version 2020061500 -877 ltiservice_profile version 2020061500 -878 ltiservice_toolproxy version 2020061500 -879 ltiservice_toolsettings version 2020061500 -880 quiz_grading version 2020061500 -882 quiz_overview version 2020061500 -884 quiz_responses version 2020061500 -886 quiz_statistics version 2020061500 -888 quizaccess_delaybetweenattempts version 2020061500 -889 quizaccess_ipaddress version 2020061500 -890 quizaccess_numattempts version 2020061500 -891 quizaccess_offlineattempts version 2020061500 -892 quizaccess_openclosedate version 2020061500 -893 quizaccess_password version 2020061500 -894 quizaccess_seb version 2020061500 -896 quizaccess_securewindow version 2020061500 -897 quizaccess_timelimit version 2020061500 -898 scormreport_basic version 2020061500 -899 scormreport_graphs version 2020061500 -900 scormreport_interactions version 2020061500 -901 scormreport_objectives version 2020061500 -902 workshopform_accumulative version 2020061500 -904 workshopform_comments version 2020061500 -906 workshopform_numerrors version 2020061500 -908 workshopform_rubric version 2020061500 -910 workshopallocation_manual version 2020061500 -911 workshopallocation_random version 2020061500 -912 workshopallocation_scheduled version 2020061500 -913 workshopeval_best version 2020061500 -914 atto_accessibilitychecker version 2020061500 -915 atto_accessibilityhelper version 2020061500 -916 atto_align version 2020061500 -917 atto_backcolor version 2020061500 -918 atto_bold version 2020061500 -919 atto_charmap version 2020061500 -920 atto_clear version 2020061500 -921 atto_collapse version 2020061500 -922 atto_emojipicker version 2020061500 -923 atto_emoticon version 2020061500 -924 atto_equation version 2020061500 -925 atto_fontcolor version 2020061500 -926 atto_h5p version 2020061500 -927 atto_html version 2020061500 -928 atto_image version 2020061500 -929 atto_indent version 2020061500 -930 atto_italic version 2020061500 -931 atto_link version 2020061500 -932 atto_managefiles version 2020061500 -933 atto_media version 2020061500 -934 atto_noautolink version 2020061500 -935 atto_orderedlist version 2020061500 -936 atto_recordrtc version 2020061500 -937 atto_rtl version 2020061500 -938 atto_strike version 2020061500 -939 atto_subscript version 2020061500 -940 atto_superscript version 2020061500 -941 atto_table version 2020061500 -942 atto_title version 2020061500 -943 atto_underline version 2020061500 -944 atto_undo version 2020061500 -945 atto_unorderedlist version 2020061500 -946 tinymce_ctrlhelp version 2020061500 -947 tinymce_managefiles version 2020061500 -948 tinymce_moodleemoticon version 2020061500 -949 tinymce_moodleimage version 2020061500 -950 tinymce_moodlemedia version 2020061500 -951 tinymce_moodlenolink version 2020061500 -952 tinymce_pdw version 2020061500 -953 tinymce_spellchecker version 2020061500 -955 tinymce_wrap version 2020061500 -956 logstore_database version 2020061500 -957 logstore_legacy version 2020061500 -958 logstore_standard version 2020061500 -959 tool_dataprivacy contactdataprotectionofficer 0 -960 tool_dataprivacy automaticdataexportapproval 0 -961 tool_dataprivacy automaticdatadeletionapproval 0 -962 tool_dataprivacy automaticdeletionrequests 1 -963 tool_dataprivacy privacyrequestexpiry 604800 -964 tool_dataprivacy requireallenddatesforuserdeletion 1 -965 tool_dataprivacy showdataretentionsummary 1 -966 tool_log exportlog 1 -967 analytics logstore logstore_standard -968 assign feedback_plugin_for_gradebook assignfeedback_comments -969 assign showrecentsubmissions 0 -970 assign submissionreceipts 1 -971 assign submissionstatement This submission is my own work, except where I have acknowledged the use of the works of other people. -972 assign submissionstatementteamsubmission This submission is the work of my group, except where we have acknowledged the use of the works of other people. -973 assign submissionstatementteamsubmissionallsubmit This submission is my own work as a group member, except where I have acknowledged the use of the works of other people. -974 assign maxperpage -1 -975 assign alwaysshowdescription 1 -976 assign alwaysshowdescription_adv -977 assign alwaysshowdescription_locked -978 assign allowsubmissionsfromdate 0 -979 assign allowsubmissionsfromdate_enabled 1 -980 assign allowsubmissionsfromdate_adv -981 assign duedate 604800 -982 assign duedate_enabled 1 -983 assign duedate_adv -984 assign cutoffdate 1209600 -985 assign cutoffdate_enabled -986 assign cutoffdate_adv -987 assign gradingduedate 1209600 -988 assign gradingduedate_enabled 1 -989 assign gradingduedate_adv -990 assign submissiondrafts 0 -991 assign submissiondrafts_adv -992 assign submissiondrafts_locked -993 assign requiresubmissionstatement 0 -994 assign requiresubmissionstatement_adv -995 assign requiresubmissionstatement_locked -996 assign attemptreopenmethod none -997 assign attemptreopenmethod_adv -998 assign attemptreopenmethod_locked -999 assign maxattempts -1 -1000 assign maxattempts_adv -1001 assign maxattempts_locked -1002 assign teamsubmission 0 -1003 assign teamsubmission_adv -1004 assign teamsubmission_locked -1005 assign preventsubmissionnotingroup 0 -1006 assign preventsubmissionnotingroup_adv -1007 assign preventsubmissionnotingroup_locked -1008 assign requireallteammemberssubmit 0 -1009 assign requireallteammemberssubmit_adv -1010 assign requireallteammemberssubmit_locked -1011 assign teamsubmissiongroupingid -1012 assign teamsubmissiongroupingid_adv -1013 assign sendnotifications 0 -1014 assign sendnotifications_adv -1015 assign sendnotifications_locked -1016 assign sendlatenotifications 0 -1017 assign sendlatenotifications_adv -1018 assign sendlatenotifications_locked -1019 assign sendstudentnotifications 1 -1020 assign sendstudentnotifications_adv -1021 assign sendstudentnotifications_locked -1022 assign blindmarking 0 -1023 assign blindmarking_adv -1024 assign blindmarking_locked -1025 assign hidegrader 0 -1026 assign hidegrader_adv -1027 assign hidegrader_locked -1028 assign markingworkflow 0 -1029 assign markingworkflow_adv -1030 assign markingworkflow_locked -1031 assign markingallocation 0 -1032 assign markingallocation_adv -1033 assign markingallocation_locked -1034 assignsubmission_file default 1 -1035 assignsubmission_file maxfiles 20 -1036 assignsubmission_file filetypes -1037 assignsubmission_file maxbytes 0 -1038 assignsubmission_onlinetext default 0 -1039 assignfeedback_comments default 1 -1040 assignfeedback_comments inline 0 -1041 assignfeedback_comments inline_adv -1042 assignfeedback_comments inline_locked -1043 assignfeedback_editpdf default 1 -1044 assignfeedback_editpdf stamps -1045 assignfeedback_file default 0 -1046 assignfeedback_offline default 0 -1047 book numberingoptions 0,1,2,3 -1048 book navoptions 0,1,2 -1049 book numbering 1 -1050 book navstyle 1 -1051 resource framesize 130 -1052 resource displayoptions 0,1,4,5,6 -1053 resource printintro 1 -1054 resource display 0 -1055 resource showsize 0 -1056 resource showtype 0 -1057 resource showdate 0 -1058 resource popupwidth 620 -1059 resource popupheight 450 -1060 resource filterfiles 0 -1061 folder showexpanded 1 -1062 folder maxsizetodownload 0 -1063 imscp keepold 1 -1064 imscp keepold_adv -1065 label dndmedia 1 -1066 label dndresizewidth 400 -1067 label dndresizeheight 400 -1068 mod_lesson mediafile -1069 mod_lesson mediafile_adv 1 -1070 mod_lesson mediawidth 640 -1071 mod_lesson mediaheight 480 -1072 mod_lesson mediaclose 0 -1073 mod_lesson progressbar 0 -1074 mod_lesson progressbar_adv -1075 mod_lesson ongoing 0 -1076 mod_lesson ongoing_adv 1 -1077 mod_lesson displayleftmenu 0 -1078 mod_lesson displayleftmenu_adv -1079 mod_lesson displayleftif 0 -1080 mod_lesson displayleftif_adv 1 -1081 mod_lesson slideshow 0 -1082 mod_lesson slideshow_adv 1 -1083 mod_lesson slideshowwidth 640 -1084 mod_lesson slideshowheight 480 -1085 mod_lesson slideshowbgcolor #FFFFFF -1086 mod_lesson maxanswers 5 -1087 mod_lesson maxanswers_adv 1 -1088 mod_lesson defaultfeedback 0 -1089 mod_lesson defaultfeedback_adv 1 -1090 mod_lesson activitylink -1091 mod_lesson activitylink_adv 1 -1092 mod_lesson timelimit 0 -1093 mod_lesson timelimit_adv -1094 mod_lesson password 0 -1095 mod_lesson password_adv 1 -1096 mod_lesson modattempts 0 -1097 mod_lesson modattempts_adv -1098 mod_lesson displayreview 0 -1099 mod_lesson displayreview_adv -1100 mod_lesson maximumnumberofattempts 1 -1101 mod_lesson maximumnumberofattempts_adv -1102 mod_lesson defaultnextpage 0 -1103 mod_lesson defaultnextpage_adv 1 -1104 mod_lesson numberofpagestoshow 1 -1105 mod_lesson numberofpagestoshow_adv 1 -1106 mod_lesson practice 0 -1107 mod_lesson practice_adv -1108 mod_lesson customscoring 1 -1109 mod_lesson customscoring_adv 1 -1110 mod_lesson retakesallowed 0 -1111 mod_lesson retakesallowed_adv -1112 mod_lesson handlingofretakes 0 -1113 mod_lesson handlingofretakes_adv 1 -1114 mod_lesson minimumnumberofquestions 0 -1115 mod_lesson minimumnumberofquestions_adv 1 -1116 page displayoptions 5 -1117 page printheading 1 -1118 page printintro 0 -1119 page printlastmodified 1 -1120 page display 5 -1121 page popupwidth 620 -1122 page popupheight 450 -1123 quiz timelimit 0 -1124 quiz timelimit_adv -1125 quiz overduehandling autosubmit -1126 quiz overduehandling_adv -1127 quiz graceperiod 86400 -1128 quiz graceperiod_adv -1129 quiz graceperiodmin 60 -1130 quiz attempts 0 -1131 quiz attempts_adv -1132 quiz grademethod 1 -1133 quiz grademethod_adv -1134 quiz maximumgrade 10 -1135 quiz questionsperpage 1 -1136 quiz questionsperpage_adv -1137 quiz navmethod free -1138 quiz navmethod_adv 1 -1139 quiz shuffleanswers 1 -1141 quiz preferredbehaviour deferredfeedback -1142 quiz canredoquestions 0 -1143 quiz canredoquestions_adv 1 -1144 quiz attemptonlast 0 -1145 quiz attemptonlast_adv 1 -1146 quiz reviewattempt 69904 -1147 quiz reviewcorrectness 69904 -1148 quiz reviewmarks 69904 -1149 quiz reviewspecificfeedback 69904 -1150 quiz reviewgeneralfeedback 69904 -1151 quiz reviewrightanswer 69904 -1152 quiz reviewoverallfeedback 4368 -1153 quiz showuserpicture 0 -1154 quiz showuserpicture_adv -1155 quiz decimalpoints 2 -1156 quiz decimalpoints_adv -1157 quiz questiondecimalpoints -1 -1158 quiz questiondecimalpoints_adv -1159 quiz showblocks 0 -1160 quiz showblocks_adv 1 -1161 quiz quizpassword -1162 quiz quizpassword_adv -1163 quiz quizpassword_required -1164 quiz subnet -1165 quiz subnet_adv 1 -1166 quiz delay1 0 -1167 quiz delay1_adv 1 -1168 quiz delay2 0 -1169 quiz delay2_adv 1 -1170 quiz browsersecurity - -1171 quiz browsersecurity_adv 1 -1172 quiz initialnumfeedbacks 2 -1173 quiz autosaveperiod 60 -1174 quizaccess_seb autoreconfigureseb 1 -1175 quizaccess_seb showseblinks seb,http -1176 quizaccess_seb downloadlink https://safeexambrowser.org/download_en.html -1177 quizaccess_seb quizpasswordrequired 0 -1178 quizaccess_seb displayblocksbeforestart 0 -1179 quizaccess_seb displayblockswhenfinished 1 -1180 scorm displaycoursestructure 0 -1181 scorm displaycoursestructure_adv -1182 scorm popup 0 -1183 scorm popup_adv -1184 scorm displayactivityname 1 -1185 scorm framewidth 100 -1186 scorm framewidth_adv 1 -1187 scorm frameheight 500 -1188 scorm frameheight_adv 1 -1189 scorm winoptgrp_adv 1 -1190 scorm scrollbars 0 -1191 scorm directories 0 -1192 scorm location 0 -1193 scorm menubar 0 -1194 scorm toolbar 0 -1195 scorm status 0 -1196 scorm skipview 0 -1197 scorm skipview_adv 1 -1198 scorm hidebrowse 0 -1199 scorm hidebrowse_adv 1 -1200 scorm hidetoc 0 -1201 scorm hidetoc_adv 1 -1202 scorm nav 1 -1203 scorm nav_adv 1 -1204 scorm navpositionleft -100 -1205 scorm navpositionleft_adv 1 -1206 scorm navpositiontop -100 -1207 scorm navpositiontop_adv 1 -1208 scorm collapsetocwinsize 767 -1209 scorm collapsetocwinsize_adv 1 -1210 scorm displayattemptstatus 1 -1211 scorm displayattemptstatus_adv -1212 scorm grademethod 1 -1213 scorm maxgrade 100 -1214 scorm maxattempt 0 -1215 scorm whatgrade 0 -1216 scorm forcecompleted 0 -1217 scorm forcenewattempt 0 -1218 scorm autocommit 0 -1219 scorm masteryoverride 1 -1220 scorm lastattemptlock 0 -1221 scorm auto 0 -1222 scorm updatefreq 0 -1223 scorm scormstandard 0 -1224 scorm allowtypeexternal 0 -1225 scorm allowtypelocalsync 0 -1226 scorm allowtypeexternalaicc 0 -1227 scorm allowaicchacp 0 -1228 scorm aicchacptimeout 30 -1229 scorm aicchacpkeepsessiondata 1 -1230 scorm aiccuserid 1 -1231 scorm forcejavascript 1 -1232 scorm allowapidebug 0 -1233 scorm apidebugmask .* -1234 scorm protectpackagedownloads 0 -1235 url framesize 130 -1236 url secretphrase -1237 url rolesinparams 0 -1238 url displayoptions 0,1,5,6 -1239 url printintro 1 -1240 url display 0 -1241 url popupwidth 620 -1242 url popupheight 450 -1243 workshop grade 80 -1244 workshop gradinggrade 20 -1245 workshop gradedecimals 0 -1246 workshop maxbytes 0 -1247 workshop strategy accumulative -1248 workshop examplesmode 0 -1249 workshopallocation_random numofreviews 5 -1250 workshopform_numerrors grade0 No -1251 workshopform_numerrors grade1 Yes -1252 workshopeval_best comparison 5 -1253 tool_recyclebin coursebinenable 1 -1254 tool_recyclebin coursebinexpiry 604800 -1255 tool_recyclebin categorybinenable 1 -1256 tool_recyclebin categorybinexpiry 604800 -1257 tool_recyclebin autohide 1 -1258 antivirus_clamav runningmethod commandline -1259 antivirus_clamav pathtoclam -1260 antivirus_clamav pathtounixsocket -1261 antivirus_clamav tcpsockethost -1262 antivirus_clamav tcpsocketport 3310 -1263 antivirus_clamav clamfailureonupload donothing -1264 antivirus_clamav tries 1 -1265 auth_cas field_map_firstname -1266 auth_cas field_updatelocal_firstname oncreate -1267 auth_cas field_updateremote_firstname 0 -1268 auth_cas field_lock_firstname unlocked -1269 auth_cas field_map_lastname -1270 auth_cas field_updatelocal_lastname oncreate -1271 auth_cas field_updateremote_lastname 0 -1272 auth_cas field_lock_lastname unlocked -1273 auth_cas field_map_email -1274 auth_cas field_updatelocal_email oncreate -1275 auth_cas field_updateremote_email 0 -1276 auth_cas field_lock_email unlocked -1277 auth_cas field_map_city -1278 auth_cas field_updatelocal_city oncreate -1279 auth_cas field_updateremote_city 0 -1280 auth_cas field_lock_city unlocked -1281 auth_cas field_map_country -1282 auth_cas field_updatelocal_country oncreate -1283 auth_cas field_updateremote_country 0 -1284 auth_cas field_lock_country unlocked -1285 auth_cas field_map_lang -1286 auth_cas field_updatelocal_lang oncreate -1287 auth_cas field_updateremote_lang 0 -1288 auth_cas field_lock_lang unlocked -1289 auth_cas field_map_description -1290 auth_cas field_updatelocal_description oncreate -1291 auth_cas field_updateremote_description 0 -1292 auth_cas field_lock_description unlocked -1293 auth_cas field_map_url -1294 auth_cas field_updatelocal_url oncreate -1295 auth_cas field_updateremote_url 0 -1296 auth_cas field_lock_url unlocked -1297 auth_cas field_map_idnumber -1298 auth_cas field_updatelocal_idnumber oncreate -1299 auth_cas field_updateremote_idnumber 0 -1300 auth_cas field_lock_idnumber unlocked -1301 auth_cas field_map_institution -1302 auth_cas field_updatelocal_institution oncreate -1303 auth_cas field_updateremote_institution 0 -1304 auth_cas field_lock_institution unlocked -1305 auth_cas field_map_department -1306 auth_cas field_updatelocal_department oncreate -1307 auth_cas field_updateremote_department 0 -1308 auth_cas field_lock_department unlocked -1309 auth_cas field_map_phone1 -1310 auth_cas field_updatelocal_phone1 oncreate -1311 auth_cas field_updateremote_phone1 0 -1312 auth_cas field_lock_phone1 unlocked -1313 auth_cas field_map_phone2 -1314 auth_cas field_updatelocal_phone2 oncreate -1315 auth_cas field_updateremote_phone2 0 -1316 auth_cas field_lock_phone2 unlocked -1317 auth_cas field_map_address -1318 auth_cas field_updatelocal_address oncreate -1319 auth_cas field_updateremote_address 0 -1320 auth_cas field_lock_address unlocked -1321 auth_cas field_map_firstnamephonetic -1322 auth_cas field_updatelocal_firstnamephonetic oncreate -1323 auth_cas field_updateremote_firstnamephonetic 0 -1324 auth_cas field_lock_firstnamephonetic unlocked -1325 auth_cas field_map_lastnamephonetic -1326 auth_cas field_updatelocal_lastnamephonetic oncreate -1327 auth_cas field_updateremote_lastnamephonetic 0 -1328 auth_cas field_lock_lastnamephonetic unlocked -1329 auth_cas field_map_middlename -1330 auth_cas field_updatelocal_middlename oncreate -1331 auth_cas field_updateremote_middlename 0 -1332 auth_cas field_lock_middlename unlocked -1333 auth_cas field_map_alternatename -1334 auth_cas field_updatelocal_alternatename oncreate -1335 auth_cas field_updateremote_alternatename 0 -1336 auth_cas field_lock_alternatename unlocked -1337 auth_email recaptcha 0 -1338 auth_email field_lock_firstname unlocked -1339 auth_email field_lock_lastname unlocked -1340 auth_email field_lock_email unlocked -1341 auth_email field_lock_city unlocked -1342 auth_email field_lock_country unlocked -1343 auth_email field_lock_lang unlocked -1344 auth_email field_lock_description unlocked -1345 auth_email field_lock_url unlocked -1346 auth_email field_lock_idnumber unlocked -1347 auth_email field_lock_institution unlocked -1348 auth_email field_lock_department unlocked -1349 auth_email field_lock_phone1 unlocked -1350 auth_email field_lock_phone2 unlocked -1351 auth_email field_lock_address unlocked -1352 auth_email field_lock_firstnamephonetic unlocked -1353 auth_email field_lock_lastnamephonetic unlocked -1354 auth_email field_lock_middlename unlocked -1355 auth_email field_lock_alternatename unlocked -1356 auth_db host 127.0.0.1 -1357 auth_db type mysqli -1358 auth_db sybasequoting 0 -1359 auth_db name -1360 auth_db user -1361 auth_db pass -1362 auth_db table -1363 auth_db fielduser -1364 auth_db fieldpass -1365 auth_db passtype plaintext -1366 auth_db extencoding utf-8 -1367 auth_db setupsql -1368 auth_db debugauthdb 0 -1369 auth_db changepasswordurl -1370 auth_db removeuser 0 -1371 auth_db updateusers 0 -1372 auth_db field_map_firstname -1373 auth_db field_updatelocal_firstname oncreate -1374 auth_db field_updateremote_firstname 0 -1375 auth_db field_lock_firstname unlocked -1376 auth_db field_map_lastname -1377 auth_db field_updatelocal_lastname oncreate -1378 auth_db field_updateremote_lastname 0 -1379 auth_db field_lock_lastname unlocked -1380 auth_db field_map_email -1381 auth_db field_updatelocal_email oncreate -1382 auth_db field_updateremote_email 0 -1383 auth_db field_lock_email unlocked -1384 auth_db field_map_city -1385 auth_db field_updatelocal_city oncreate -1386 auth_db field_updateremote_city 0 -1387 auth_db field_lock_city unlocked -1388 auth_db field_map_country -1389 auth_db field_updatelocal_country oncreate -1390 auth_db field_updateremote_country 0 -1391 auth_db field_lock_country unlocked -1392 auth_db field_map_lang -1393 auth_db field_updatelocal_lang oncreate -1394 auth_db field_updateremote_lang 0 -1395 auth_db field_lock_lang unlocked -1396 auth_db field_map_description -1397 auth_db field_updatelocal_description oncreate -1398 auth_db field_updateremote_description 0 -1399 auth_db field_lock_description unlocked -1400 auth_db field_map_url -1401 auth_db field_updatelocal_url oncreate -1402 auth_db field_updateremote_url 0 -1403 auth_db field_lock_url unlocked -1404 auth_db field_map_idnumber -1405 auth_db field_updatelocal_idnumber oncreate -1406 auth_db field_updateremote_idnumber 0 -1407 auth_db field_lock_idnumber unlocked -1408 auth_db field_map_institution -1409 auth_db field_updatelocal_institution oncreate -1410 auth_db field_updateremote_institution 0 -1411 auth_db field_lock_institution unlocked -1412 auth_db field_map_department -1413 auth_db field_updatelocal_department oncreate -1414 auth_db field_updateremote_department 0 -1415 auth_db field_lock_department unlocked -1416 auth_db field_map_phone1 -1417 auth_db field_updatelocal_phone1 oncreate -1418 auth_db field_updateremote_phone1 0 -1419 auth_db field_lock_phone1 unlocked -1420 auth_db field_map_phone2 -1421 auth_db field_updatelocal_phone2 oncreate -1422 auth_db field_updateremote_phone2 0 -1423 auth_db field_lock_phone2 unlocked -1424 auth_db field_map_address -1425 auth_db field_updatelocal_address oncreate -1426 auth_db field_updateremote_address 0 -1427 auth_db field_lock_address unlocked -1428 auth_db field_map_firstnamephonetic -1429 auth_db field_updatelocal_firstnamephonetic oncreate -1430 auth_db field_updateremote_firstnamephonetic 0 -1431 auth_db field_lock_firstnamephonetic unlocked -1432 auth_db field_map_lastnamephonetic -1433 auth_db field_updatelocal_lastnamephonetic oncreate -1434 auth_db field_updateremote_lastnamephonetic 0 -1435 auth_db field_lock_lastnamephonetic unlocked -1436 auth_db field_map_middlename -1437 auth_db field_updatelocal_middlename oncreate -1438 auth_db field_updateremote_middlename 0 -1439 auth_db field_lock_middlename unlocked -1440 auth_db field_map_alternatename -1441 auth_db field_updatelocal_alternatename oncreate -1442 auth_db field_updateremote_alternatename 0 -1443 auth_db field_lock_alternatename unlocked -1444 auth_ldap field_map_firstname -1445 auth_ldap field_updatelocal_firstname oncreate -1446 auth_ldap field_updateremote_firstname 0 -1447 auth_ldap field_lock_firstname unlocked -1448 auth_ldap field_map_lastname -1449 auth_ldap field_updatelocal_lastname oncreate -1450 auth_ldap field_updateremote_lastname 0 -1451 auth_ldap field_lock_lastname unlocked -1452 auth_ldap field_map_email -1453 auth_ldap field_updatelocal_email oncreate -1454 auth_ldap field_updateremote_email 0 -1455 auth_ldap field_lock_email unlocked -1456 auth_ldap field_map_city -1457 auth_ldap field_updatelocal_city oncreate -1458 auth_ldap field_updateremote_city 0 -1459 auth_ldap field_lock_city unlocked -1460 auth_ldap field_map_country -1461 auth_ldap field_updatelocal_country oncreate -1462 auth_ldap field_updateremote_country 0 -1463 auth_ldap field_lock_country unlocked -1464 auth_ldap field_map_lang -1465 auth_ldap field_updatelocal_lang oncreate -1466 auth_ldap field_updateremote_lang 0 -1467 auth_ldap field_lock_lang unlocked -1468 auth_ldap field_map_description -1469 auth_ldap field_updatelocal_description oncreate -1470 auth_ldap field_updateremote_description 0 -1471 auth_ldap field_lock_description unlocked -1472 auth_ldap field_map_url -1473 auth_ldap field_updatelocal_url oncreate -1474 auth_ldap field_updateremote_url 0 -1475 auth_ldap field_lock_url unlocked -1476 auth_ldap field_map_idnumber -1477 auth_ldap field_updatelocal_idnumber oncreate -1478 auth_ldap field_updateremote_idnumber 0 -1479 auth_ldap field_lock_idnumber unlocked -1480 auth_ldap field_map_institution -1481 auth_ldap field_updatelocal_institution oncreate -1482 auth_ldap field_updateremote_institution 0 -1483 auth_ldap field_lock_institution unlocked -1484 auth_ldap field_map_department -1485 auth_ldap field_updatelocal_department oncreate -1486 auth_ldap field_updateremote_department 0 -1487 auth_ldap field_lock_department unlocked -1488 auth_ldap field_map_phone1 -1489 auth_ldap field_updatelocal_phone1 oncreate -1490 auth_ldap field_updateremote_phone1 0 -1491 auth_ldap field_lock_phone1 unlocked -1492 auth_ldap field_map_phone2 -1493 auth_ldap field_updatelocal_phone2 oncreate -1494 auth_ldap field_updateremote_phone2 0 -1495 auth_ldap field_lock_phone2 unlocked -1496 auth_ldap field_map_address -1497 auth_ldap field_updatelocal_address oncreate -1498 auth_ldap field_updateremote_address 0 -1499 auth_ldap field_lock_address unlocked -1500 auth_ldap field_map_firstnamephonetic -1501 auth_ldap field_updatelocal_firstnamephonetic oncreate -1502 auth_ldap field_updateremote_firstnamephonetic 0 -1503 auth_ldap field_lock_firstnamephonetic unlocked -1504 auth_ldap field_map_lastnamephonetic -1505 auth_ldap field_updatelocal_lastnamephonetic oncreate -1506 auth_ldap field_updateremote_lastnamephonetic 0 -1507 auth_ldap field_lock_lastnamephonetic unlocked -1508 auth_ldap field_map_middlename -1509 auth_ldap field_updatelocal_middlename oncreate -1510 auth_ldap field_updateremote_middlename 0 -1511 auth_ldap field_lock_middlename unlocked -1512 auth_ldap field_map_alternatename -1513 auth_ldap field_updatelocal_alternatename oncreate -1514 auth_ldap field_updateremote_alternatename 0 -1515 auth_ldap field_lock_alternatename unlocked -1516 auth_manual expiration 0 -1517 auth_manual expirationtime 30 -1518 auth_manual expiration_warning 0 -1519 auth_manual field_lock_firstname unlocked -1520 auth_manual field_lock_lastname unlocked -1521 auth_manual field_lock_email unlocked -1522 auth_manual field_lock_city unlocked -1523 auth_manual field_lock_country unlocked -1524 auth_manual field_lock_lang unlocked -1525 auth_manual field_lock_description unlocked -1526 auth_manual field_lock_url unlocked -1527 auth_manual field_lock_idnumber unlocked -1528 auth_manual field_lock_institution unlocked -1529 auth_manual field_lock_department unlocked -1530 auth_manual field_lock_phone1 unlocked -1531 auth_manual field_lock_phone2 unlocked -1532 auth_manual field_lock_address unlocked -1533 auth_manual field_lock_firstnamephonetic unlocked -1534 auth_manual field_lock_lastnamephonetic unlocked -1535 auth_manual field_lock_middlename unlocked -1536 auth_manual field_lock_alternatename unlocked -1537 auth_mnet rpc_negotiation_timeout 30 -1538 auth_none field_lock_firstname unlocked -1539 auth_none field_lock_lastname unlocked -1540 auth_none field_lock_email unlocked -1541 auth_none field_lock_city unlocked -1542 auth_none field_lock_country unlocked -1543 auth_none field_lock_lang unlocked -1544 auth_none field_lock_description unlocked -1545 auth_none field_lock_url unlocked -1546 auth_none field_lock_idnumber unlocked -1547 auth_none field_lock_institution unlocked -1548 auth_none field_lock_department unlocked -1549 auth_none field_lock_phone1 unlocked -1550 auth_none field_lock_phone2 unlocked -1551 auth_none field_lock_address unlocked -1552 auth_none field_lock_firstnamephonetic unlocked -1553 auth_none field_lock_lastnamephonetic unlocked -1554 auth_none field_lock_middlename unlocked -1555 auth_none field_lock_alternatename unlocked -1556 auth_oauth2 field_lock_firstname unlocked -1761 enrol_paypal mailadmins 0 -1557 auth_oauth2 field_lock_lastname unlocked -1558 auth_oauth2 field_lock_email unlocked -1559 auth_oauth2 field_lock_city unlocked -1560 auth_oauth2 field_lock_country unlocked -1561 auth_oauth2 field_lock_lang unlocked -1562 auth_oauth2 field_lock_description unlocked -1563 auth_oauth2 field_lock_url unlocked -1564 auth_oauth2 field_lock_idnumber unlocked -1565 auth_oauth2 field_lock_institution unlocked -1566 auth_oauth2 field_lock_department unlocked -1567 auth_oauth2 field_lock_phone1 unlocked -1568 auth_oauth2 field_lock_phone2 unlocked -1569 auth_oauth2 field_lock_address unlocked -1570 auth_oauth2 field_lock_firstnamephonetic unlocked -1571 auth_oauth2 field_lock_lastnamephonetic unlocked -1572 auth_oauth2 field_lock_middlename unlocked -1573 auth_oauth2 field_lock_alternatename unlocked -1574 auth_shibboleth user_attribute -1575 auth_shibboleth convert_data -1576 auth_shibboleth alt_login off -1577 auth_shibboleth organization_selection urn:mace:organization1:providerID, Example Organization 1\n https://another.idp-id.com/shibboleth, Other Example Organization, /Shibboleth.sso/DS/SWITCHaai\n urn:mace:organization2:providerID, Example Organization 2, /Shibboleth.sso/WAYF/SWITCHaai -1579 auth_shibboleth logout_return_url -1580 auth_shibboleth login_name Shibboleth Login -1581 auth_shibboleth auth_logo -1582 auth_shibboleth auth_instructions Use the Shibboleth login to get access via Shibboleth, if your institution supports it. Otherwise, use the normal login form shown here. -1583 auth_shibboleth changepasswordurl -1584 auth_shibboleth field_map_firstname -1585 auth_shibboleth field_updatelocal_firstname oncreate -1586 auth_shibboleth field_lock_firstname unlocked -1587 auth_shibboleth field_map_lastname -1588 auth_shibboleth field_updatelocal_lastname oncreate -1589 auth_shibboleth field_lock_lastname unlocked -1590 auth_shibboleth field_map_email -1591 auth_shibboleth field_updatelocal_email oncreate -1592 auth_shibboleth field_lock_email unlocked -1593 auth_shibboleth field_map_city -1594 auth_shibboleth field_updatelocal_city oncreate -1595 auth_shibboleth field_lock_city unlocked -1596 auth_shibboleth field_map_country -1597 auth_shibboleth field_updatelocal_country oncreate -1598 auth_shibboleth field_lock_country unlocked -1599 auth_shibboleth field_map_lang -1600 auth_shibboleth field_updatelocal_lang oncreate -1601 auth_shibboleth field_lock_lang unlocked -1602 auth_shibboleth field_map_description -1603 auth_shibboleth field_updatelocal_description oncreate -1604 auth_shibboleth field_lock_description unlocked -1605 auth_shibboleth field_map_url -1606 auth_shibboleth field_updatelocal_url oncreate -1607 auth_shibboleth field_lock_url unlocked -1608 auth_shibboleth field_map_idnumber -1609 auth_shibboleth field_updatelocal_idnumber oncreate -1610 auth_shibboleth field_lock_idnumber unlocked -1611 auth_shibboleth field_map_institution -1612 auth_shibboleth field_updatelocal_institution oncreate -1613 auth_shibboleth field_lock_institution unlocked -1614 auth_shibboleth field_map_department -1615 auth_shibboleth field_updatelocal_department oncreate -1616 auth_shibboleth field_lock_department unlocked -1617 auth_shibboleth field_map_phone1 -1618 auth_shibboleth field_updatelocal_phone1 oncreate -1619 auth_shibboleth field_lock_phone1 unlocked -1620 auth_shibboleth field_map_phone2 -1621 auth_shibboleth field_updatelocal_phone2 oncreate -1622 auth_shibboleth field_lock_phone2 unlocked -1623 auth_shibboleth field_map_address -1624 auth_shibboleth field_updatelocal_address oncreate -1625 auth_shibboleth field_lock_address unlocked -1626 auth_shibboleth field_map_firstnamephonetic -1627 auth_shibboleth field_updatelocal_firstnamephonetic oncreate -1628 auth_shibboleth field_lock_firstnamephonetic unlocked -1629 auth_shibboleth field_map_lastnamephonetic -1630 auth_shibboleth field_updatelocal_lastnamephonetic oncreate -1631 auth_shibboleth field_lock_lastnamephonetic unlocked -1632 auth_shibboleth field_map_middlename -1633 auth_shibboleth field_updatelocal_middlename oncreate -1634 auth_shibboleth field_lock_middlename unlocked -1635 auth_shibboleth field_map_alternatename -1636 auth_shibboleth field_updatelocal_alternatename oncreate -1637 auth_shibboleth field_lock_alternatename unlocked -1638 block_activity_results config_showbest 3 -1639 block_activity_results config_showbest_locked -1640 block_activity_results config_showworst 0 -1641 block_activity_results config_showworst_locked -1642 block_activity_results config_usegroups 0 -1643 block_activity_results config_usegroups_locked -1644 block_activity_results config_nameformat 1 -1645 block_activity_results config_nameformat_locked -1646 block_activity_results config_gradeformat 1 -1647 block_activity_results config_gradeformat_locked -1648 block_activity_results config_decimalpoints 2 -1649 block_activity_results config_decimalpoints_locked -1650 block_myoverview displaycategories 1 -1651 block_myoverview layouts card,list,summary -1652 block_myoverview displaygroupingallincludinghidden 0 -1653 block_myoverview displaygroupingall 1 -1654 block_myoverview displaygroupinginprogress 1 -1655 block_myoverview displaygroupingpast 1 -1656 block_myoverview displaygroupingfuture 1 -1657 block_myoverview displaygroupingcustomfield 0 -1658 block_myoverview customfiltergrouping -1659 block_myoverview displaygroupingfavourites 1 -1660 block_myoverview displaygroupinghidden 1 -1661 block_recentlyaccessedcourses displaycategories 1 -1662 block_section_links numsections1 22 -1663 block_section_links incby1 2 -1664 block_section_links numsections2 40 -1665 block_section_links incby2 5 -1666 block_starredcourses displaycategories 1 -1667 block_tag_youtube apikey -1668 format_singleactivity activitytype forum -1669 fileconverter_googledrive issuerid -1670 enrol_cohort roleid 5 -1671 enrol_cohort unenrolaction 0 -1672 enrol_meta nosyncroleids -1673 enrol_meta syncall 1 -1674 enrol_meta unenrolaction 3 -1675 enrol_meta coursesort sortorder -1677 enrol_database dbhost localhost -1678 enrol_database dbuser -1679 enrol_database dbpass -1680 enrol_database dbname -1681 enrol_database dbencoding utf-8 -1682 enrol_database dbsetupsql -1683 enrol_database dbsybasequoting 0 -1684 enrol_database debugdb 0 -1685 enrol_database localcoursefield idnumber -1686 enrol_database localuserfield idnumber -1687 enrol_database localrolefield shortname -1688 enrol_database localcategoryfield id -1689 enrol_database remoteenroltable -1690 enrol_database remotecoursefield -1691 enrol_database remoteuserfield -1692 enrol_database remoterolefield -1693 enrol_database remoteotheruserfield -1694 enrol_database defaultrole 5 -1695 enrol_database ignorehiddencourses 0 -1696 enrol_database unenrolaction 0 -1697 enrol_database newcoursetable -1698 enrol_database newcoursefullname fullname -1699 enrol_database newcourseshortname shortname -1700 enrol_database newcourseidnumber idnumber -1701 enrol_database newcoursecategory -1702 enrol_database defaultcategory 1 -1703 enrol_database templatecourse -1704 enrol_flatfile location -1705 enrol_flatfile encoding UTF-8 -1706 enrol_flatfile mailstudents 0 -1707 enrol_flatfile mailteachers 0 -1708 enrol_flatfile mailadmins 0 -1709 enrol_flatfile unenrolaction 3 -1710 enrol_flatfile expiredaction 3 -1711 enrol_guest requirepassword 0 -1712 enrol_guest usepasswordpolicy 0 -1713 enrol_guest showhint 0 -1714 enrol_guest defaultenrol 1 -1715 enrol_guest status 1 -1716 enrol_guest status_adv -1717 enrol_imsenterprise imsfilelocation -1718 enrol_imsenterprise logtolocation -1719 enrol_imsenterprise mailadmins 0 -1720 enrol_imsenterprise createnewusers 0 -1721 enrol_imsenterprise imsupdateusers 0 -1722 enrol_imsenterprise imsdeleteusers 0 -1723 enrol_imsenterprise fixcaseusernames 0 -1724 enrol_imsenterprise fixcasepersonalnames 0 -1725 enrol_imsenterprise imssourcedidfallback 0 -1726 enrol_imsenterprise imsrolemap01 5 -1727 enrol_imsenterprise imsrolemap02 3 -1728 enrol_imsenterprise imsrolemap03 3 -1729 enrol_imsenterprise imsrolemap04 5 -1730 enrol_imsenterprise imsrolemap05 0 -1731 enrol_imsenterprise imsrolemap06 4 -1732 enrol_imsenterprise imsrolemap07 0 -1733 enrol_imsenterprise imsrolemap08 4 -1734 enrol_imsenterprise truncatecoursecodes 0 -1735 enrol_imsenterprise createnewcourses 0 -1736 enrol_imsenterprise updatecourses 0 -1737 enrol_imsenterprise createnewcategories 0 -1738 enrol_imsenterprise nestedcategories 0 -1739 enrol_imsenterprise categoryidnumber 0 -1740 enrol_imsenterprise categoryseparator -1741 enrol_imsenterprise imsunenrol 0 -1742 enrol_imsenterprise imscoursemapshortname coursecode -1743 enrol_imsenterprise imscoursemapfullname short -1744 enrol_imsenterprise imscoursemapsummary ignore -1745 enrol_imsenterprise imsrestricttarget -1746 enrol_imsenterprise imscapitafix 0 -1747 enrol_manual expiredaction 1 -1748 enrol_manual expirynotifyhour 6 -1749 enrol_manual defaultenrol 1 -1750 enrol_manual status 0 -1751 enrol_manual roleid 5 -1752 enrol_manual enrolstart 4 -1753 enrol_manual enrolperiod 0 -1754 enrol_manual expirynotify 0 -1755 enrol_manual expirythreshold 86400 -1756 enrol_mnet roleid 5 -1757 enrol_mnet roleid_adv 1 -1758 enrol_paypal paypalbusiness -1759 enrol_paypal mailstudents 0 -1760 enrol_paypal mailteachers 0 -1762 enrol_paypal expiredaction 3 -1763 enrol_paypal status 1 -1764 enrol_paypal cost 0 -1765 enrol_paypal currency USD -1766 enrol_paypal roleid 5 -1767 enrol_paypal enrolperiod 0 -1768 enrol_lti emaildisplay 2 -1769 enrol_lti city -1770 enrol_lti country -1771 enrol_lti timezone 99 -1772 enrol_lti lang en -1773 enrol_lti institution -1774 enrol_self requirepassword 0 -1775 enrol_self usepasswordpolicy 0 -1776 enrol_self showhint 0 -1777 enrol_self expiredaction 1 -1778 enrol_self expirynotifyhour 6 -1779 enrol_self defaultenrol 1 -1780 enrol_self status 1 -1781 enrol_self newenrols 1 -1782 enrol_self groupkey 0 -1783 enrol_self roleid 5 -1784 enrol_self enrolperiod 0 -1785 enrol_self expirynotify 0 -1786 enrol_self expirythreshold 86400 -1787 enrol_self longtimenosee 0 -1788 enrol_self maxenrolled 0 -1789 enrol_self sendcoursewelcomemessage 1 -1790 filter_urltolink formats 1,4,0 -1791 filter_urltolink embedimages 1 -1792 filter_emoticon formats 1,4,0 -1793 filter_displayh5p allowedsources -1794 filter_mathjaxloader httpsurl https://cdn.jsdelivr.net/npm/mathjax@2.7.8/MathJax.js -1795 filter_mathjaxloader texfiltercompatibility 0 -1796 filter_mathjaxloader mathjaxconfig \nMathJax.Hub.Config({\n config: ["Accessible.js", "Safe.js"],\n errorSettings: { message: ["!"] },\n skipStartupTypeset: true,\n messageStyle: "none"\n});\n -1797 filter_mathjaxloader additionaldelimiters -1798 filter_tex latexpreamble \\usepackage[latin1]{inputenc}\n\\usepackage{amsmath}\n\\usepackage{amsfonts}\n\\RequirePackage{amsmath,amssymb,latexsym}\n -1799 filter_tex latexbackground #FFFFFF -1800 filter_tex density 120 -1801 filter_tex pathlatex /usr/bin/latex -1802 filter_tex pathdvips /usr/bin/dvips -1803 filter_tex pathconvert /usr/bin/convert -1804 filter_tex pathdvisvgm /usr/bin/dvisvgm -1805 filter_tex pathmimetex -1806 filter_tex convertformat gif -1807 logstore_database dbdriver -1808 logstore_database dbhost -1809 logstore_database dbuser -1810 logstore_database dbpass -1811 logstore_database dbname -1812 logstore_database dbtable -1813 logstore_database dbpersist 0 -1814 logstore_database dbsocket -1815 logstore_database dbport -1816 logstore_database dbschema -1817 logstore_database dbcollation -1818 logstore_database dbhandlesoptions 0 -1819 logstore_database buffersize 50 -1820 logstore_database jsonformat 1 -1821 logstore_database logguests 0 -1822 logstore_database includelevels 1,2,0 -1823 logstore_database includeactions c,r,u,d -1824 logstore_legacy loglegacy 0 -1825 logstore_standard logguests 1 -1826 logstore_standard jsonformat 1 -1827 logstore_standard loglifetime 0 -1828 logstore_standard buffersize 50 -1829 mlbackend_python useserver 0 -1830 mlbackend_python host -1831 mlbackend_python port 0 -1832 mlbackend_python secure 0 -1833 mlbackend_python username default -1834 mlbackend_python password -1835 media_videojs videoextensions html_video,media_source,.f4v,.flv -1836 media_videojs audioextensions html_audio -1837 media_videojs rtmp 0 -1838 media_videojs useflash 0 -1839 media_videojs youtube 1 -1840 media_videojs videocssclass video-js -1841 media_videojs audiocssclass video-js -1842 media_videojs limitsize 1 -1843 qtype_multichoice answerhowmany 1 -1844 qtype_multichoice shuffleanswers 1 -1845 qtype_multichoice answernumbering abc -1846 editor_atto toolbar collapse = collapse\nstyle1 = title, bold, italic\nlist = unorderedlist, orderedlist, indent\nlinks = link\nfiles = emojipicker, image, media, recordrtc, managefiles, h5p\nstyle2 = underline, strike, subscript, superscript\nalign = align\ninsert = equation, charmap, table, clear\nundo = undo\naccessibility = accessibilitychecker, accessibilityhelper\nother = html -1847 editor_atto autosavefrequency 60 -1848 atto_collapse showgroups 5 -1849 atto_equation librarygroup1 \n\\cdot\n\\times\n\\ast\n\\div\n\\diamond\n\\pm\n\\mp\n\\oplus\n\\ominus\n\\otimes\n\\oslash\n\\odot\n\\circ\n\\bullet\n\\asymp\n\\equiv\n\\subseteq\n\\supseteq\n\\leq\n\\geq\n\\preceq\n\\succeq\n\\sim\n\\simeq\n\\approx\n\\subset\n\\supset\n\\ll\n\\gg\n\\prec\n\\succ\n\\infty\n\\in\n\\ni\n\\forall\n\\exists\n\\neq\n -1850 atto_equation librarygroup2 \n\\leftarrow\n\\rightarrow\n\\uparrow\n\\downarrow\n\\leftrightarrow\n\\nearrow\n\\searrow\n\\swarrow\n\\nwarrow\n\\Leftarrow\n\\Rightarrow\n\\Uparrow\n\\Downarrow\n\\Leftrightarrow\n -1851 atto_equation librarygroup3 \n\\alpha\n\\beta\n\\gamma\n\\delta\n\\epsilon\n\\zeta\n\\eta\n\\theta\n\\iota\n\\kappa\n\\lambda\n\\mu\n\\nu\n\\xi\n\\pi\n\\rho\n\\sigma\n\\tau\n\\upsilon\n\\phi\n\\chi\n\\psi\n\\omega\n\\Gamma\n\\Delta\n\\Theta\n\\Lambda\n\\Xi\n\\Pi\n\\Sigma\n\\Upsilon\n\\Phi\n\\Psi\n\\Omega\n -1852 atto_equation librarygroup4 \n\\sum{a,b}\n\\sqrt[a]{b+c}\n\\int_{a}^{b}{c}\n\\iint_{a}^{b}{c}\n\\iiint_{a}^{b}{c}\n\\oint{a}\n(a)\n[a]\n\\lbrace{a}\\rbrace\n\\left| \\begin{matrix} a_1 & a_2 \\ a_3 & a_4 \\end{matrix} \\right|\n\\frac{a}{b+c}\n\\vec{a}\n\\binom {a} {b}\n{a \\brack b}\n{a \\brace b}\n -1853 atto_recordrtc allowedtypes both -1854 atto_recordrtc audiobitrate 128000 -1855 atto_recordrtc videobitrate 2500000 -1856 atto_recordrtc timelimit 120 -1857 atto_table allowborders 0 -1858 atto_table allowbackgroundcolour 0 -1859 atto_table allowwidth 0 -1860 editor_tinymce customtoolbar wrap,formatselect,wrap,bold,italic,wrap,bullist,numlist,wrap,link,unlink,wrap,image\n\nundo,redo,wrap,underline,strikethrough,sub,sup,wrap,justifyleft,justifycenter,justifyright,wrap,outdent,indent,wrap,forecolor,backcolor,wrap,ltr,rtl\n\nfontselect,fontsizeselect,wrap,code,search,replace,wrap,nonbreaking,charmap,table,wrap,cleanup,removeformat,pastetext,pasteword,wrap,fullscreen -1861 editor_tinymce fontselectlist Trebuchet=Trebuchet MS,Verdana,Arial,Helvetica,sans-serif;Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;Wingdings=wingdings -1862 editor_tinymce customconfig -1863 tinymce_moodleemoticon requireemoticon 1 -1864 tinymce_spellchecker spellengine -1865 tinymce_spellchecker spelllanguagelist +English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv -1866 tool_mobile apppolicy -1867 tool_mobile typeoflogin 1 -1868 tool_mobile qrcodetype 2 -1869 tool_mobile forcedurlscheme moodlemobile -1870 tool_mobile minimumversion -1871 tool_mobile enablesmartappbanners 0 -1872 tool_mobile iosappid 633359593 -1873 tool_mobile androidappid com.moodle.moodlemobile -1874 tool_mobile setuplink https://download.moodle.org/mobile -1875 tool_mobile forcelogout 0 -1876 tool_mobile disabledfeatures -1877 tool_mobile custommenuitems -1878 tool_mobile customlangstrings -1879 tool_moodlenet enablemoodlenet 0 -1880 tool_moodlenet defaultmoodlenetname MoodleNet Central -1881 tool_moodlenet defaultmoodlenet https://moodle.net -1884 enrol_ldap objectclass (objectClass=*) -1882 tool_task lastcronstart 1612797662 -1883 tool_task lastcroninterval 61 +8 moodlecourse downloadcontentsitedefault 0 +9 moodlecourse format topics +10 moodlecourse maxsections 52 +11 moodlecourse numsections 4 +12 moodlecourse hiddensections 0 +13 moodlecourse coursedisplay 0 +14 moodlecourse courseenddateenabled 1 +15 moodlecourse courseduration 31536000 +16 moodlecourse lang +17 moodlecourse newsitems 5 +18 moodlecourse showgrades 1 +19 moodlecourse showreports 0 +20 moodlecourse maxbytes 0 +21 moodlecourse enablecompletion 1 +22 moodlecourse groupmode 0 +23 moodlecourse groupmodeforce 0 +24 backup loglifetime 30 +25 backup backup_general_users 1 +26 backup backup_general_users_locked +27 backup backup_general_anonymize 0 +28 backup backup_general_anonymize_locked +29 backup backup_general_role_assignments 1 +30 backup backup_general_role_assignments_locked +31 backup backup_general_activities 1 +32 backup backup_general_activities_locked +33 backup backup_general_blocks 1 +34 backup backup_general_blocks_locked +35 backup backup_general_files 1 +36 backup backup_general_files_locked +37 backup backup_general_filters 1 +38 backup backup_general_filters_locked +39 backup backup_general_comments 1 +40 backup backup_general_comments_locked +41 backup backup_general_badges 1 +42 backup backup_general_badges_locked +43 backup backup_general_calendarevents 1 +44 backup backup_general_calendarevents_locked +45 backup backup_general_userscompletion 1 +46 backup backup_general_userscompletion_locked +47 backup backup_general_logs 0 +48 backup backup_general_logs_locked +49 backup backup_general_histories 0 +50 backup backup_general_histories_locked +51 backup backup_general_questionbank 1 +52 backup backup_general_questionbank_locked +53 backup backup_general_groups 1 +54 backup backup_general_groups_locked +55 backup backup_general_competencies 1 +56 backup backup_general_competencies_locked +57 backup backup_general_contentbankcontent 1 +58 backup backup_general_contentbankcontent_locked +59 backup backup_general_legacyfiles 1 +60 backup backup_general_legacyfiles_locked +61 backup import_general_maxresults 10 +62 backup import_general_duplicate_admin_allowed 0 +63 backup backup_import_activities 1 +64 backup backup_import_activities_locked +65 backup backup_import_blocks 1 +66 backup backup_import_blocks_locked +67 backup backup_import_filters 1 +68 backup backup_import_filters_locked +69 backup backup_import_calendarevents 1 +70 backup backup_import_calendarevents_locked +71 backup backup_import_questionbank 1 +72 backup backup_import_questionbank_locked +73 backup backup_import_groups 1 +74 backup backup_import_groups_locked +75 backup backup_import_competencies 1 +76 backup backup_import_competencies_locked +77 backup backup_import_contentbankcontent 1 +78 backup backup_import_contentbankcontent_locked +79 backup backup_import_legacyfiles 1 +80 backup backup_import_legacyfiles_locked +81 backup backup_auto_active 0 +82 backup backup_auto_weekdays 0000000 +83 backup backup_auto_hour 0 +84 backup backup_auto_minute 0 +85 backup backup_auto_storage 0 +86 backup backup_auto_destination +87 backup backup_auto_max_kept 1 +88 backup backup_auto_delete_days 0 +89 backup backup_auto_min_kept 0 +90 backup backup_shortname 0 +91 backup backup_auto_skip_hidden 1 +92 backup backup_auto_skip_modif_days 30 +93 backup backup_auto_skip_modif_prev 0 +94 backup backup_auto_users 1 +95 backup backup_auto_role_assignments 1 +96 backup backup_auto_activities 1 +97 backup backup_auto_blocks 1 +98 backup backup_auto_files 1 +99 backup backup_auto_filters 1 +100 backup backup_auto_comments 1 +101 backup backup_auto_badges 1 +102 backup backup_auto_calendarevents 1 +103 backup backup_auto_userscompletion 1 +104 backup backup_auto_logs 0 +105 backup backup_auto_histories 0 +106 backup backup_auto_questionbank 1 +107 backup backup_auto_groups 1 +108 backup backup_auto_competencies 1 +109 backup backup_auto_contentbankcontent 1 +110 backup backup_auto_legacyfiles 1 +111 restore restore_general_users 1 +112 restore restore_general_users_locked +113 restore restore_general_enrolments 1 +114 restore restore_general_enrolments_locked +115 restore restore_general_role_assignments 1 +116 restore restore_general_role_assignments_locked +117 restore restore_general_activities 1 +118 restore restore_general_activities_locked +119 restore restore_general_blocks 1 +120 restore restore_general_blocks_locked +121 restore restore_general_filters 1 +122 restore restore_general_filters_locked +123 restore restore_general_comments 1 +124 restore restore_general_comments_locked +125 restore restore_general_badges 1 +126 restore restore_general_badges_locked +127 restore restore_general_calendarevents 1 +128 restore restore_general_calendarevents_locked +129 restore restore_general_userscompletion 1 +130 restore restore_general_userscompletion_locked +131 restore restore_general_logs 1 +132 restore restore_general_logs_locked +133 restore restore_general_histories 1 +134 restore restore_general_histories_locked +135 restore restore_general_groups 1 +136 restore restore_general_groups_locked +137 restore restore_general_competencies 1 +138 restore restore_general_competencies_locked +139 restore restore_general_contentbankcontent 1 +140 restore restore_general_contentbankcontent_locked +141 restore restore_general_legacyfiles 1 +142 restore restore_general_legacyfiles_locked +143 restore restore_merge_overwrite_conf 0 +144 restore restore_merge_overwrite_conf_locked +145 restore restore_merge_course_fullname 1 +146 restore restore_merge_course_fullname_locked +147 restore restore_merge_course_shortname 1 +148 restore restore_merge_course_shortname_locked +149 restore restore_merge_course_startdate 1 +150 restore restore_merge_course_startdate_locked +151 restore restore_replace_overwrite_conf 0 +152 restore restore_replace_overwrite_conf_locked +153 restore restore_replace_course_fullname 1 +154 restore restore_replace_course_fullname_locked +155 restore restore_replace_course_shortname 1 +156 restore restore_replace_course_shortname_locked +157 restore restore_replace_course_startdate 1 +158 restore restore_replace_course_startdate_locked +159 restore restore_replace_keep_roles_and_enrolments 0 +160 restore restore_replace_keep_roles_and_enrolments_locked +161 restore restore_replace_keep_groups_and_groupings 0 +162 restore restore_replace_keep_groups_and_groupings_locked +163 backup backup_async_message_users 0 +164 backup backup_async_message_subject Moodle {operation} completed successfully +165 backup backup_async_message Hi {user_firstname},
Your {operation} (ID: {backupid}) has completed successfully.

You can access it here: {link}. +166 analytics modeinstruction +167 analytics percentonline 0 +168 analytics typeinstitution +169 analytics levelinstitution +170 analytics predictionsprocessor \\mlbackend_php\\processor +171 analytics defaulttimesplittingsevaluation \\core\\analytics\\time_splitting\\quarters_accum,\\core\\analytics\\time_splitting\\quarters,\\core\\analytics\\time_splitting\\single_range +172 analytics modeloutputdir +173 analytics onlycli 1 +174 analytics modeltimelimit 1200 +175 core_competency enabled 1 +176 core_competency pushcourseratingstouserplans 1 +177 antivirus notifyemail +178 antivirus enablequarantine 0 +179 antivirus quarantinetime 2419200 +180 cachestore_apcu testperformance 0 +181 cachestore_memcached testservers +182 cachestore_mongodb testserver +183 cachestore_redis test_server +184 cachestore_redis test_password +185 question_preview behaviour deferredfeedback +186 question_preview correctness 1 +187 question_preview marks 2 +188 question_preview markdp 2 +189 question_preview feedback 1 +190 question_preview generalfeedback 1 +191 question_preview rightanswer 1 +192 question_preview history 0 +193 tool_task enablerunnow 1 +194 theme_boost preset default.scss +195 theme_boost presetfiles +196 theme_boost backgroundimage +197 theme_boost brandcolor +198 theme_boost scsspre +199 theme_boost scss +200 theme_classic navbardark 0 +201 theme_classic preset default.scss +202 theme_classic presetfiles +203 theme_classic backgroundimage +204 theme_classic brandcolor +205 theme_classic scsspre +206 theme_classic scss +207 core_admin logo +208 core_admin logocompact +209 core_admin coursecolor1 #81ecec +210 core_admin coursecolor2 #74b9ff +211 core_admin coursecolor3 #a29bfe +212 core_admin coursecolor4 #dfe6e9 +213 core_admin coursecolor5 #00b894 +214 core_admin coursecolor6 #0984e3 +215 core_admin coursecolor7 #b2bec3 +216 core_admin coursecolor8 #fdcb6e +217 core_admin coursecolor9 #fd79a8 +218 core_admin coursecolor10 #6c5ce7 +219 antivirus_clamav version 2020110900 +220 availability_completion version 2020110900 +221 availability_date version 2020110900 +222 availability_grade version 2020110900 +223 availability_group version 2020110900 +224 availability_grouping version 2020110900 +225 availability_profile version 2020110900 +226 qtype_calculated version 2020110900 +227 qtype_calculatedmulti version 2020110900 +228 qtype_calculatedsimple version 2020110900 +229 qtype_ddimageortext version 2020110900 +230 qtype_ddmarker version 2020110900 +231 qtype_ddwtos version 2020110900 +232 qtype_description version 2020110900 +233 qtype_essay version 2020110900 +234 qtype_gapselect version 2020110900 +235 qtype_match version 2020110900 +236 qtype_missingtype version 2020110900 +237 qtype_multianswer version 2020110900 +238 qtype_multichoice version 2020110900 +239 qtype_numerical version 2020110900 +240 qtype_random version 2020110900 +241 qtype_randomsamatch version 2020110900 +242 qtype_shortanswer version 2020110900 +243 qtype_truefalse version 2020110900 +244 mod_assign version 2020110900 +245 mod_assignment version 2020110900 +1126 mod_lesson displayreview_adv +247 mod_book version 2020110900 +248 mod_chat version 2020110900 +249 mod_choice version 2020110900 +250 mod_data version 2020110900 +251 mod_feedback version 2020110900 +253 mod_folder version 2020110900 +255 mod_forum version 2020110900 +256 mod_glossary version 2020110900 +257 mod_h5pactivity version 2020110900 +258 mod_imscp version 2020110900 +260 mod_label version 2020110900 +261 mod_lesson version 2020110900 +262 mod_lti version 2020110900 +264 mod_lti kid 596d68d4f036777393c6 +265 mod_lti privatekey -----BEGIN PRIVATE KEY-----\nMIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQDCzxQevqj97oBT\nHCTLqJkQxPELh+FL6/4SKA0m2QxRxbPRuB6PIaIupje3B+7p5GjH1GgfdUIYE0GU\nSP+Dpd6AVS403VWkZE2xDCiAghZKL7qBMYPDpbo3dpswihGdWPU7QBsq5FjDLxIB\nUN6CiI+hDprVHkOsbDsfo9kQ9bWdxdX2TXTJq9JnWi3R0c7p5cWL/gHNN1i/Iozs\n9jSpDShIj/5/cLtBlN2CPwWZxIhsd45tIlxc4HecUQ6rg3LzZG0UAT4auDYN1SKf\nMDeBdx4czLq4PFq170AnqJY32FbLjMYTX0V3DU0wGKLCN7FvkHzpUo1C69AKBAo0\n9wRcLH5PAgMBAAECggEAfvesa2VkiyxZItHjAYG/UXiqihNjubH0BC1qdPld2CX8\nzyEreao4JCNdiMN46aRezm8X9fjcvQg/47+4GTuQSyA5X2cqnFxrbos4Epm2oV9+\nNRnqgSeQuPlqqDY0yNLj8lwT2N6/I2eYWpc0jusmgZgdPe3duZFI75RAs5cRaeQW\nLRgqI0oaxOuB5QnZ49l1iJwEUBeCLbdrLO5ripuSt7gh5Um06ndinX/HvNUhcgpt\nBd5RSnjQ3XTCtWpEy97ZdmcHUXNS/nYc5AjpuVUU79PvPdZmATh9FHT4eQLM65LX\nUgdhOTiD+tlX+ObXl+p+1oylNJ9x5F90MJayMPNnQQKBgQDjItZIjIrSWs7FiWGK\ncqpNWvCCRCYtIl4q5lnbWahb0TsF9WzxoLuum/0fhDcTpuOZ4qAEmEIQr4ildV2q\nRRZBS29QjjuYI53Y3a6MyJIQ3we3jY2QvneeYJWg7aytxtWVteT8Snymm9mfyZXr\nhpeycwM/xjPlFkQW9fwQ4q8G8QKBgQDbkJPitCGlqcKvZZRp7Q2yK77MygAHGwNz\nm7Qp4nOwsnsv0DMGps3QNhAAsOUgDgOtSlMGPeM4wCJ3UZ2BfbOO/Wqc+7gzOPlV\nLabWztBG86mdyNl2aN7cEDRiLVKqVa/rbKYNw67Wh5quVOaS491uxQR+wcUZnhKh\njm9QNLBZPwKBgBShuHc0lPOQnhGhbgPGcKPAK/KZQCJ/abBZ5jWfikR01/itl2zH\nXeT5dF+lgd8+HJSA2mowbmfXmgD1jUGHLwNVV9IoaU9jhNYLJOzS1znDGI9aw04v\njuwK9+x7SmEqm4IS2K72ESaNJ5J1HDIdsq/Z9KSZW2Nmx16Sj4f1H1LxAoGAHSaD\ny9x4fyMbuue0nZ+gauBN86h5+neGrMmmUM1E6Ne5bS6qJ57rwlH7K+xQb0INEOvG\nPBTpXvZ7XPYUAEYtGbXhergcy4gr6jgmZ2yL0G+3PECXRpZDyFnKaqJz0DOSKKKD\nJV6ujsLwMWcKOcRQ+MzlfOLDBVSsSpC7jJ2CMEcCgYBSvhZOCuH806MsbQcRvtkO\n5UZ0iIp6KB5nnK3r/krONOu8oU24Nq719HFWr9ygARFhe9cFbVGOmrFikA+4MS37\nSDi0t5GOrBacbP+1ifhtxkAkEeNzWXwUcIiWxB2wLM8cWDhopUo91tUXwpSZN4qH\nZBCEqAcmYNNyM1x+K+kCBw==\n-----END PRIVATE KEY-----\n +266 mod_page version 2020110900 +268 mod_quiz version 2020110900 +269 mod_resource version 2020110900 +270 mod_scorm version 2020110900 +271 mod_survey version 2020110900 +273 mod_url version 2020110900 +275 mod_wiki version 2020110900 +277 mod_workshop version 2020110900 +278 auth_cas version 2020110900 +280 auth_db version 2020110900 +282 auth_email version 2020110900 +283 auth_ldap version 2020110900 +285 auth_lti version 2020110900 +286 auth_manual version 2020110900 +287 auth_mnet version 2020110900 +289 auth_nologin version 2020110900 +290 auth_none version 2020110900 +291 auth_oauth2 version 2020110900 +292 auth_shibboleth version 2020110901 +294 auth_webservice version 2020110900 +295 calendartype_gregorian version 2020110900 +296 customfield_checkbox version 2020110900 +297 customfield_date version 2020110900 +298 customfield_select version 2020110900 +299 customfield_text version 2020110900 +300 customfield_textarea version 2020110900 +301 enrol_category version 2020110900 +303 enrol_cohort version 2020110900 +304 enrol_database version 2020110900 +306 enrol_fee version 2020110900 +307 enrol_flatfile version 2020110900 +309 enrol_flatfile map_1 manager +310 enrol_flatfile map_2 coursecreator +311 enrol_flatfile map_3 editingteacher +312 enrol_flatfile map_4 teacher +313 enrol_flatfile map_5 student +314 enrol_flatfile map_6 guest +315 enrol_flatfile map_7 user +316 enrol_flatfile map_8 frontpage +317 enrol_guest version 2020110900 +318 enrol_imsenterprise version 2020110900 +652 report_security version 2020110900 +320 enrol_ldap version 2020110900 +653 report_stats version 2020110900 +322 enrol_lti version 2020110900 +323 enrol_manual version 2020110900 +325 enrol_meta version 2020110900 +655 report_status version 2020110900 +327 enrol_mnet version 2020110900 +328 enrol_paypal version 2020110900 +329 enrol_self version 2020110900 +656 report_usersessions version 2020110900 +331 message_airnotifier version 2020110900 +657 gradeexport_ods version 2020110900 +333 message airnotifier_provider_enrol_manual_expiry_notification_permitted permitted +334 message airnotifier_provider_mod_forum_posts_permitted permitted +337 message airnotifier_provider_mod_forum_digests_permitted permitted +338 message airnotifier_provider_mod_quiz_submission_permitted permitted +339 message airnotifier_provider_mod_quiz_confirmation_permitted permitted +342 message airnotifier_provider_mod_quiz_attempt_overdue_permitted permitted +658 gradeexport_txt version 2020110900 +659 gradeexport_xls version 2020110900 +345 message airnotifier_provider_mod_feedback_submission_permitted permitted +346 message airnotifier_provider_mod_feedback_message_permitted permitted +347 message airnotifier_provider_enrol_paypal_paypal_enrolment_permitted permitted +348 message airnotifier_provider_mod_lesson_graded_essay_permitted permitted +660 gradeexport_xml version 2020110900 +661 gradeimport_csv version 2020110900 +351 message airnotifier_provider_enrol_self_expiry_notification_permitted permitted +352 message airnotifier_provider_enrol_imsenterprise_imsenterprise_enrolment_permitted permitted +353 message airnotifier_provider_mod_assignment_assignment_updates_permitted permitted +354 message airnotifier_provider_moodle_notices_permitted permitted +355 message airnotifier_provider_moodle_errors_permitted permitted +356 message airnotifier_provider_moodle_availableupdate_permitted permitted +357 message airnotifier_provider_moodle_instantmessage_permitted permitted +358 message airnotifier_provider_moodle_backup_permitted permitted +359 message airnotifier_provider_moodle_courserequested_permitted permitted +360 message airnotifier_provider_moodle_courserequestapproved_permitted permitted +662 gradeimport_direct version 2020110900 +663 gradeimport_xml version 2020110900 +363 message airnotifier_provider_moodle_courserequestrejected_permitted permitted +664 gradereport_grader version 2020110900 +665 gradereport_history version 2020110900 +366 message airnotifier_provider_moodle_coursecompleted_permitted permitted +367 message airnotifier_provider_moodle_badgerecipientnotice_permitted permitted +666 gradereport_outcomes version 2020110900 +370 message airnotifier_provider_moodle_badgecreatornotice_permitted permitted +371 message airnotifier_provider_moodle_competencyplancomment_permitted permitted +372 message airnotifier_provider_moodle_competencyusercompcomment_permitted permitted +373 message airnotifier_provider_moodle_insights_permitted permitted +667 gradereport_overview version 2020110900 +376 message airnotifier_provider_moodle_messagecontactrequests_permitted permitted +377 message message_provider_moodle_messagecontactrequests_loggedin airnotifier +668 gradereport_singleview version 2020110900 +379 message airnotifier_provider_moodle_asyncbackupnotification_permitted permitted +380 message airnotifier_provider_moodle_gradenotifications_permitted permitted +381 message airnotifier_provider_moodle_infected_permitted permitted +382 message airnotifier_provider_mod_assign_assign_notification_permitted permitted +383 message airnotifier_provider_enrol_flatfile_flatfile_enrolment_permitted permitted +384 message_email version 2020110900 +669 gradereport_user version 2020110900 +386 message email_provider_enrol_manual_expiry_notification_permitted permitted +387 message message_provider_enrol_manual_expiry_notification_loggedin email +388 message message_provider_enrol_manual_expiry_notification_loggedoff email +389 message email_provider_mod_forum_posts_permitted permitted +335 message message_provider_mod_forum_posts_loggedin email,airnotifier +336 message message_provider_mod_forum_posts_loggedoff email,airnotifier +390 message email_provider_mod_forum_digests_permitted permitted +391 message message_provider_mod_forum_digests_loggedin email +392 message message_provider_mod_forum_digests_loggedoff email +393 message email_provider_mod_quiz_submission_permitted permitted +394 message message_provider_mod_quiz_submission_loggedin email +395 message message_provider_mod_quiz_submission_loggedoff email +396 message email_provider_mod_quiz_confirmation_permitted permitted +340 message message_provider_mod_quiz_confirmation_loggedin email,airnotifier +341 message message_provider_mod_quiz_confirmation_loggedoff email,airnotifier +397 message email_provider_mod_quiz_attempt_overdue_permitted permitted +368 message message_provider_moodle_badgerecipientnotice_loggedin popup,airnotifier +374 message message_provider_moodle_insights_loggedin popup,airnotifier +670 gradingform_guide version 2020110900 +671 gradingform_rubric version 2020110900 +672 mlbackend_php version 2020110900 +673 mlbackend_python version 2020110900 +674 mnetservice_enrol version 2020110900 +343 message message_provider_mod_quiz_attempt_overdue_loggedin email,airnotifier +344 message message_provider_mod_quiz_attempt_overdue_loggedoff email,airnotifier +398 message email_provider_mod_feedback_submission_permitted permitted +399 message message_provider_mod_feedback_submission_loggedin email +400 message message_provider_mod_feedback_submission_loggedoff email +401 message email_provider_mod_feedback_message_permitted permitted +402 message message_provider_mod_feedback_message_loggedin email +403 message message_provider_mod_feedback_message_loggedoff email +404 message email_provider_enrol_paypal_paypal_enrolment_permitted permitted +405 message message_provider_enrol_paypal_paypal_enrolment_loggedin email +406 message message_provider_enrol_paypal_paypal_enrolment_loggedoff email +407 message email_provider_mod_lesson_graded_essay_permitted permitted +349 message message_provider_mod_lesson_graded_essay_loggedin email,airnotifier +350 message message_provider_mod_lesson_graded_essay_loggedoff email,airnotifier +408 message email_provider_enrol_self_expiry_notification_permitted permitted +409 message message_provider_enrol_self_expiry_notification_loggedin email +410 message message_provider_enrol_self_expiry_notification_loggedoff email +411 message email_provider_enrol_imsenterprise_imsenterprise_enrolment_permitted permitted +412 message message_provider_enrol_imsenterprise_imsenterprise_enrolment_loggedin email +413 message message_provider_enrol_imsenterprise_imsenterprise_enrolment_loggedoff email +414 message email_provider_mod_assignment_assignment_updates_permitted permitted +415 message message_provider_mod_assignment_assignment_updates_loggedin email +416 message message_provider_mod_assignment_assignment_updates_loggedoff email +417 message email_provider_moodle_notices_permitted permitted +418 message message_provider_moodle_notices_loggedin email +419 message message_provider_moodle_notices_loggedoff email +420 message email_provider_moodle_errors_permitted permitted +421 message message_provider_moodle_errors_loggedin email +422 message message_provider_moodle_errors_loggedoff email +423 message email_provider_moodle_availableupdate_permitted permitted +424 message message_provider_moodle_availableupdate_loggedin email +425 message message_provider_moodle_availableupdate_loggedoff email +426 message email_provider_moodle_instantmessage_permitted permitted +675 webservice_rest version 2020110900 +428 message email_provider_moodle_backup_permitted permitted +429 message message_provider_moodle_backup_loggedin email +430 message message_provider_moodle_backup_loggedoff email +431 message email_provider_moodle_courserequested_permitted permitted +432 message message_provider_moodle_courserequested_loggedin email +433 message message_provider_moodle_courserequested_loggedoff email +434 message email_provider_moodle_courserequestapproved_permitted permitted +361 message message_provider_moodle_courserequestapproved_loggedin email,airnotifier +362 message message_provider_moodle_courserequestapproved_loggedoff email,airnotifier +435 message email_provider_moodle_courserequestrejected_permitted permitted +364 message message_provider_moodle_courserequestrejected_loggedin email,airnotifier +365 message message_provider_moodle_courserequestrejected_loggedoff email,airnotifier +436 message email_provider_moodle_coursecompleted_permitted permitted +437 message message_provider_moodle_coursecompleted_loggedin email +438 message message_provider_moodle_coursecompleted_loggedoff email +439 message email_provider_moodle_badgerecipientnotice_permitted permitted +676 webservice_soap version 2020110900 +440 message email_provider_moodle_badgecreatornotice_permitted permitted +441 message message_provider_moodle_badgecreatornotice_loggedoff email +442 message email_provider_moodle_competencyplancomment_permitted permitted +443 message message_provider_moodle_competencyplancomment_loggedin email +444 message message_provider_moodle_competencyplancomment_loggedoff email +445 message email_provider_moodle_competencyusercompcomment_permitted permitted +446 message message_provider_moodle_competencyusercompcomment_loggedin email +447 message message_provider_moodle_competencyusercompcomment_loggedoff email +448 message email_provider_moodle_insights_permitted permitted +677 webservice_xmlrpc version 2020110900 +449 message email_provider_moodle_messagecontactrequests_permitted permitted +378 message message_provider_moodle_messagecontactrequests_loggedoff email,airnotifier +450 message email_provider_moodle_asyncbackupnotification_permitted permitted +678 repository_areafiles version 2020110900 +452 message email_provider_moodle_gradenotifications_permitted permitted +454 message email_provider_moodle_infected_permitted permitted +455 message message_provider_moodle_infected_loggedin email +456 message message_provider_moodle_infected_loggedoff email +457 message email_provider_mod_assign_assign_notification_permitted permitted +458 message message_provider_mod_assign_assign_notification_loggedin email +459 message message_provider_mod_assign_assign_notification_loggedoff email +460 message email_provider_enrol_flatfile_flatfile_enrolment_permitted permitted +461 message message_provider_enrol_flatfile_flatfile_enrolment_loggedin email +680 areafiles enablecourseinstances 0 +681 areafiles enableuserinstances 0 +682 repository_boxnet version 2020110900 +462 message message_provider_enrol_flatfile_flatfile_enrolment_loggedoff email +463 message_jabber version 2020110900 +465 message jabber_provider_enrol_manual_expiry_notification_permitted permitted +466 message jabber_provider_mod_forum_posts_permitted permitted +467 message jabber_provider_mod_forum_digests_permitted permitted +468 message jabber_provider_mod_quiz_submission_permitted permitted +469 message jabber_provider_mod_quiz_confirmation_permitted permitted +470 message jabber_provider_mod_quiz_attempt_overdue_permitted permitted +471 message jabber_provider_mod_feedback_submission_permitted permitted +472 message jabber_provider_mod_feedback_message_permitted permitted +473 message jabber_provider_enrol_paypal_paypal_enrolment_permitted permitted +474 message jabber_provider_mod_lesson_graded_essay_permitted permitted +475 message jabber_provider_enrol_self_expiry_notification_permitted permitted +476 message jabber_provider_enrol_imsenterprise_imsenterprise_enrolment_permitted permitted +477 message jabber_provider_mod_assignment_assignment_updates_permitted permitted +478 message jabber_provider_moodle_notices_permitted permitted +479 message jabber_provider_moodle_errors_permitted permitted +480 message jabber_provider_moodle_availableupdate_permitted permitted +481 message jabber_provider_moodle_instantmessage_permitted permitted +482 message jabber_provider_moodle_backup_permitted permitted +483 message jabber_provider_moodle_courserequested_permitted permitted +484 message jabber_provider_moodle_courserequestapproved_permitted permitted +485 message jabber_provider_moodle_courserequestrejected_permitted permitted +486 message jabber_provider_moodle_coursecompleted_permitted permitted +487 message jabber_provider_moodle_badgerecipientnotice_permitted permitted +488 message jabber_provider_moodle_badgecreatornotice_permitted permitted +489 message jabber_provider_moodle_competencyplancomment_permitted permitted +490 message jabber_provider_moodle_competencyusercompcomment_permitted permitted +491 message jabber_provider_moodle_insights_permitted permitted +492 message jabber_provider_moodle_messagecontactrequests_permitted permitted +493 message jabber_provider_moodle_asyncbackupnotification_permitted permitted +494 message jabber_provider_moodle_gradenotifications_permitted permitted +495 message jabber_provider_moodle_infected_permitted permitted +496 message jabber_provider_mod_assign_assign_notification_permitted permitted +497 message jabber_provider_enrol_flatfile_flatfile_enrolment_permitted permitted +498 message_popup version 2020110900 +500 message popup_provider_enrol_manual_expiry_notification_permitted permitted +501 message popup_provider_mod_forum_posts_permitted permitted +502 message popup_provider_mod_forum_digests_permitted permitted +503 message popup_provider_mod_quiz_submission_permitted permitted +504 message popup_provider_mod_quiz_confirmation_permitted permitted +505 message popup_provider_mod_quiz_attempt_overdue_permitted permitted +506 message popup_provider_mod_feedback_submission_permitted permitted +507 message popup_provider_mod_feedback_message_permitted permitted +508 message popup_provider_enrol_paypal_paypal_enrolment_permitted permitted +509 message popup_provider_mod_lesson_graded_essay_permitted permitted +510 message popup_provider_enrol_self_expiry_notification_permitted permitted +511 message popup_provider_enrol_imsenterprise_imsenterprise_enrolment_permitted permitted +512 message popup_provider_mod_assignment_assignment_updates_permitted permitted +513 message popup_provider_moodle_notices_permitted permitted +514 message popup_provider_moodle_errors_permitted permitted +515 message popup_provider_moodle_availableupdate_permitted permitted +516 message popup_provider_moodle_instantmessage_permitted permitted +517 message message_provider_moodle_instantmessage_loggedin popup +427 message message_provider_moodle_instantmessage_loggedoff popup,email +518 message popup_provider_moodle_backup_permitted permitted +519 message popup_provider_moodle_courserequested_permitted permitted +520 message popup_provider_moodle_courserequestapproved_permitted permitted +521 message popup_provider_moodle_courserequestrejected_permitted permitted +522 message popup_provider_moodle_coursecompleted_permitted permitted +523 message popup_provider_moodle_badgerecipientnotice_permitted permitted +369 message message_provider_moodle_badgerecipientnotice_loggedoff popup,email,airnotifier +524 message popup_provider_moodle_badgecreatornotice_permitted permitted +525 message popup_provider_moodle_competencyplancomment_permitted permitted +526 message popup_provider_moodle_competencyusercompcomment_permitted permitted +527 message popup_provider_moodle_insights_permitted permitted +375 message message_provider_moodle_insights_loggedoff popup,email,airnotifier +528 message popup_provider_moodle_messagecontactrequests_permitted permitted +529 message popup_provider_moodle_asyncbackupnotification_permitted permitted +530 message message_provider_moodle_asyncbackupnotification_loggedin popup +451 message message_provider_moodle_asyncbackupnotification_loggedoff popup,email +531 message popup_provider_moodle_gradenotifications_permitted permitted +532 message message_provider_moodle_gradenotifications_loggedin popup +453 message message_provider_moodle_gradenotifications_loggedoff popup,email +533 message popup_provider_moodle_infected_permitted permitted +534 message popup_provider_mod_assign_assign_notification_permitted permitted +535 message popup_provider_enrol_flatfile_flatfile_enrolment_permitted permitted +536 block_activity_modules version 2020110900 +537 block_activity_results version 2020110900 +538 block_admin_bookmarks version 2020110900 +539 block_badges version 2020110900 +540 block_blog_menu version 2020110900 +541 block_blog_recent version 2020110900 +542 block_blog_tags version 2020110900 +543 block_calendar_month version 2020110900 +544 block_calendar_upcoming version 2020110900 +545 block_comments version 2020110900 +546 block_completionstatus version 2020110900 +547 block_course_list version 2020110900 +548 block_course_summary version 2020110900 +549 block_feedback version 2020110900 +683 repository_contentbank version 2020110900 +551 block_globalsearch version 2020110900 +552 block_glossary_random version 2020110900 +553 block_html version 2020110900 +554 block_login version 2020110900 +555 block_lp version 2020110900 +556 block_mentees version 2020110900 +557 block_mnet_hosts version 2020110900 +558 block_myoverview version 2020110900 +559 block_myprofile version 2020110900 +560 block_navigation version 2020110900 +561 block_news_items version 2020110900 +562 block_online_users version 2020110900 +563 block_private_files version 2020110900 +564 block_quiz_results version 2020110900 +566 block_recent_activity version 2020110900 +567 block_recentlyaccessedcourses version 2020110900 +685 contentbank enablecourseinstances 0 +569 block_recentlyaccesseditems version 2020110900 +570 block_rss_client version 2020110900 +571 block_search_forums version 2020110900 +572 block_section_links version 2020110900 +573 block_selfcompletion version 2020110900 +574 block_settings version 2020110900 +575 block_site_main_menu version 2020110900 +576 block_social_activities version 2020110900 +577 block_starredcourses version 2020110900 +578 block_tag_flickr version 2020110900 +579 block_tag_youtube version 2020110901 +686 contentbank enableuserinstances 0 +581 block_tags version 2020110900 +582 block_timeline version 2020110900 +687 repository_coursefiles version 2020110900 +584 media_html5audio version 2020110900 +585 media_html5video version 2020110900 +586 media_swf version 2020110900 +587 media_videojs version 2020110900 +588 media_vimeo version 2020110900 +589 media_youtube version 2020110900 +590 filter_activitynames version 2020110900 +688 repository_dropbox version 2020110900 +592 filter_algebra version 2020110900 +593 filter_censor version 2020110900 +594 filter_data version 2020110900 +689 repository_equella version 2020110900 +596 filter_displayh5p version 2020110900 +1253 scorm allowtypeexternalaicc 0 +598 filter_emailprotect version 2020110900 +599 filter_emoticon version 2020110900 +601 filter_glossary version 2020110900 +603 filter_mathjaxloader version 2020110900 +605 filter_mediaplugin version 2020110900 +607 filter_multilang version 2020110900 +608 filter_tex version 2020110900 +610 filter_tidy version 2020110900 +611 filter_urltolink version 2020110900 +613 editor_atto version 2020110900 +615 editor_textarea version 2020110900 +616 editor_tinymce version 2020110900 +617 format_singleactivity version 2020110900 +618 format_social version 2020110900 +619 format_topics version 2020110900 +620 format_weeks version 2020110900 +621 dataformat_csv version 2020110900 +622 dataformat_excel version 2020110900 +623 dataformat_html version 2020110900 +624 dataformat_json version 2020110900 +625 dataformat_ods version 2020110900 +626 dataformat_pdf version 2020110900 +627 profilefield_checkbox version 2020110900 +628 profilefield_datetime version 2020110900 +629 profilefield_menu version 2020110900 +630 profilefield_text version 2020110900 +631 profilefield_textarea version 2020110900 +632 report_backups version 2020110900 +633 report_competency version 2020110900 +634 report_completion version 2020110900 +636 report_configlog version 2020110900 +637 report_courseoverview version 2020110900 +638 report_eventlist version 2020110900 +639 report_infectedfiles version 2020110900 +640 report_insights version 2020110900 +641 report_log version 2020110900 +643 report_loglive version 2020110900 +644 report_outline version 2020110900 +646 report_participation version 2020110900 +648 report_performance version 2020110900 +649 report_progress version 2020110900 +651 report_questioninstances version 2020110900 +690 repository_filesystem version 2020110900 +691 repository_flickr version 2020110900 +692 repository_flickr_public version 2020110900 +693 repository_googledocs version 2020110900 +694 repository_local version 2020110900 +696 local enablecourseinstances 0 +697 local enableuserinstances 0 +698 repository_merlot version 2020110900 +699 repository_nextcloud version 2020110900 +700 repository_onedrive version 2020110900 +701 repository_picasa version 2020110900 +702 repository_recent version 2020110900 +704 recent enablecourseinstances 0 +705 recent enableuserinstances 0 +706 repository_s3 version 2020110900 +707 repository_skydrive version 2020110900 +708 repository_upload version 2020110900 +710 upload enablecourseinstances 0 +711 upload enableuserinstances 0 +712 repository_url version 2020110900 +714 url enablecourseinstances 0 +715 url enableuserinstances 0 +716 repository_user version 2020110900 +718 user enablecourseinstances 0 +719 user enableuserinstances 0 +720 repository_webdav version 2020110900 +721 repository_wikimedia version 2020110900 +723 wikimedia enablecourseinstances 0 +724 wikimedia enableuserinstances 0 +725 repository_youtube version 2020110900 +727 portfolio_boxnet version 2020110900 +728 portfolio_download version 2020110900 +729 portfolio_flickr version 2020110900 +730 portfolio_googledocs version 2020110900 +731 portfolio_mahara version 2020110900 +732 portfolio_picasa version 2020110900 +733 search_simpledb version 2020110900 +735 search_solr version 2020110900 +736 qbehaviour_adaptive version 2020110900 +737 qbehaviour_adaptivenopenalty version 2020110900 +738 qbehaviour_deferredcbm version 2020110900 +739 qbehaviour_deferredfeedback version 2020110900 +740 qbehaviour_immediatecbm version 2020110900 +741 qbehaviour_immediatefeedback version 2020110900 +742 qbehaviour_informationitem version 2020110900 +743 qbehaviour_interactive version 2020110900 +744 qbehaviour_interactivecountback version 2020110900 +745 qbehaviour_manualgraded version 2020110900 +747 question disabledbehaviours manualgraded +748 qbehaviour_missing version 2020110900 +749 qformat_aiken version 2020110900 +750 qformat_blackboard_six version 2020110900 +751 qformat_examview version 2020110900 +752 qformat_gift version 2020110900 +753 qformat_missingword version 2020110900 +754 qformat_multianswer version 2020110900 +755 qformat_webct version 2020110900 +756 qformat_xhtml version 2020110900 +757 qformat_xml version 2020110900 +758 tool_analytics version 2020110900 +759 tool_availabilityconditions version 2020110900 +760 tool_behat version 2020110900 +761 tool_capability version 2020110900 +762 tool_cohortroles version 2020110900 +763 tool_customlang version 2020110900 +765 tool_dataprivacy version 2020110900 +766 message airnotifier_provider_tool_dataprivacy_contactdataprotectionofficer_permitted permitted +767 message email_provider_tool_dataprivacy_contactdataprotectionofficer_permitted permitted +768 message jabber_provider_tool_dataprivacy_contactdataprotectionofficer_permitted permitted +769 message popup_provider_tool_dataprivacy_contactdataprotectionofficer_permitted permitted +770 message message_provider_tool_dataprivacy_contactdataprotectionofficer_loggedin email,popup +771 message message_provider_tool_dataprivacy_contactdataprotectionofficer_loggedoff email,popup +772 message airnotifier_provider_tool_dataprivacy_datarequestprocessingresults_permitted permitted +773 message email_provider_tool_dataprivacy_datarequestprocessingresults_permitted permitted +774 message jabber_provider_tool_dataprivacy_datarequestprocessingresults_permitted permitted +775 message popup_provider_tool_dataprivacy_datarequestprocessingresults_permitted permitted +776 message message_provider_tool_dataprivacy_datarequestprocessingresults_loggedin email,popup +777 message message_provider_tool_dataprivacy_datarequestprocessingresults_loggedoff email,popup +778 message airnotifier_provider_tool_dataprivacy_notifyexceptions_permitted permitted +779 message email_provider_tool_dataprivacy_notifyexceptions_permitted permitted +780 message jabber_provider_tool_dataprivacy_notifyexceptions_permitted permitted +781 message popup_provider_tool_dataprivacy_notifyexceptions_permitted permitted +782 message message_provider_tool_dataprivacy_notifyexceptions_loggedin email +783 message message_provider_tool_dataprivacy_notifyexceptions_loggedoff email +784 tool_dbtransfer version 2020110900 +785 tool_filetypes version 2020110900 +786 tool_generator version 2020110900 +787 tool_health version 2020110900 +788 tool_httpsreplace version 2020110900 +789 tool_innodb version 2020110900 +790 tool_installaddon version 2020110900 +791 tool_langimport version 2020110900 +792 tool_licensemanager version 2020110900 +793 tool_log version 2020110900 +795 tool_log enabled_stores logstore_standard +796 tool_lp version 2020110900 +797 tool_lpimportcsv version 2020110900 +798 tool_lpmigrate version 2020110900 +799 tool_messageinbound version 2020110900 +800 message airnotifier_provider_tool_messageinbound_invalidrecipienthandler_permitted permitted +801 message email_provider_tool_messageinbound_invalidrecipienthandler_permitted permitted +802 message jabber_provider_tool_messageinbound_invalidrecipienthandler_permitted permitted +803 message popup_provider_tool_messageinbound_invalidrecipienthandler_permitted permitted +804 message message_provider_tool_messageinbound_invalidrecipienthandler_loggedin email +805 message message_provider_tool_messageinbound_invalidrecipienthandler_loggedoff email +806 message airnotifier_provider_tool_messageinbound_messageprocessingerror_permitted permitted +807 message email_provider_tool_messageinbound_messageprocessingerror_permitted permitted +808 message jabber_provider_tool_messageinbound_messageprocessingerror_permitted permitted +809 message popup_provider_tool_messageinbound_messageprocessingerror_permitted permitted +810 message message_provider_tool_messageinbound_messageprocessingerror_loggedin email +811 message message_provider_tool_messageinbound_messageprocessingerror_loggedoff email +812 message airnotifier_provider_tool_messageinbound_messageprocessingsuccess_permitted permitted +813 message email_provider_tool_messageinbound_messageprocessingsuccess_permitted permitted +814 message jabber_provider_tool_messageinbound_messageprocessingsuccess_permitted permitted +815 message popup_provider_tool_messageinbound_messageprocessingsuccess_permitted permitted +816 message message_provider_tool_messageinbound_messageprocessingsuccess_loggedin email +817 message message_provider_tool_messageinbound_messageprocessingsuccess_loggedoff email +818 tool_mobile version 2020110900 +819 tool_monitor version 2020110900 +820 message airnotifier_provider_tool_monitor_notification_permitted permitted +821 message email_provider_tool_monitor_notification_permitted permitted +822 message jabber_provider_tool_monitor_notification_permitted permitted +823 message popup_provider_tool_monitor_notification_permitted permitted +824 message message_provider_tool_monitor_notification_loggedin email +825 message message_provider_tool_monitor_notification_loggedoff email +826 tool_moodlenet version 2020110900 +827 tool_multilangupgrade version 2020110900 +828 tool_oauth2 version 2020110900 +829 tool_phpunit version 2020110900 +830 tool_policy version 2020110900 +831 tool_profiling version 2020110900 +832 tool_recyclebin version 2020110900 +833 tool_replace version 2020110900 +834 tool_spamcleaner version 2020110900 +835 tool_task version 2020110900 +836 tool_templatelibrary version 2020110900 +837 tool_unsuproles version 2020110900 +839 tool_uploadcourse version 2020110900 +840 tool_uploaduser version 2020110900 +841 tool_usertours version 2020110900 +843 tool_xmldb version 2020110900 +844 cachestore_apcu version 2020110900 +845 cachestore_file version 2020110900 +846 cachestore_memcached version 2020110900 +847 cachestore_mongodb version 2020110900 +848 cachestore_redis version 2020110900 +849 cachestore_session version 2020110900 +850 cachestore_static version 2020110900 +851 cachelock_file version 2020110900 +852 fileconverter_googledrive version 2020110900 +853 fileconverter_unoconv version 2020110900 +855 contenttype_h5p version 2020110900 +856 theme_boost version 2020110900 +857 theme_classic version 2020110900 +858 h5plib_v124 version 2020110900 +859 paygw_paypal version 2020110901 +861 assignsubmission_comments version 2020110900 +869 assignfeedback_comments version 2020110900 +866 assignsubmission_file version 2020110900 +867 assignsubmission_onlinetext version 2020110900 +865 assignsubmission_onlinetext sortorder 0 +863 assignsubmission_file sortorder 1 +864 assignsubmission_comments sortorder 2 +875 assignfeedback_editpdf version 2020110900 +877 assignfeedback_file version 2020110900 +871 assignfeedback_comments sortorder 0 +872 assignfeedback_editpdf sortorder 1 +874 assignfeedback_offline sortorder 2 +873 assignfeedback_file sortorder 3 +879 assignfeedback_offline version 2020110900 +880 assignment_offline version 2020110900 +881 assignment_online version 2020110900 +882 assignment_upload version 2020110900 +883 assignment_uploadsingle version 2020110900 +884 booktool_exportimscp version 2020110900 +885 booktool_importhtml version 2020110900 +886 booktool_print version 2020110900 +887 datafield_checkbox version 2020110900 +888 datafield_date version 2020110900 +889 datafield_file version 2020110900 +890 datafield_latlong version 2020110900 +891 datafield_menu version 2020110900 +892 datafield_multimenu version 2020110900 +893 datafield_number version 2020110900 +894 datafield_picture version 2020110900 +895 datafield_radiobutton version 2020110900 +896 datafield_text version 2020110900 +897 datafield_textarea version 2020110900 +898 datafield_url version 2020110900 +899 datapreset_imagegallery version 2020110900 +900 forumreport_summary version 2020110900 +901 ltiservice_basicoutcomes version 2020110900 +902 ltiservice_gradebookservices version 2020110900 +903 ltiservice_memberships version 2020110900 +904 ltiservice_profile version 2020110900 +905 ltiservice_toolproxy version 2020110900 +906 ltiservice_toolsettings version 2020110900 +907 quiz_grading version 2020110900 +909 quiz_overview version 2020110900 +911 quiz_responses version 2020110900 +913 quiz_statistics version 2020110900 +915 quizaccess_delaybetweenattempts version 2020110900 +916 quizaccess_ipaddress version 2020110900 +917 quizaccess_numattempts version 2020110900 +918 quizaccess_offlineattempts version 2020110900 +919 quizaccess_openclosedate version 2020110900 +920 quizaccess_password version 2020110900 +921 quizaccess_seb version 2020110900 +923 quizaccess_securewindow version 2020110900 +924 quizaccess_timelimit version 2020110900 +925 scormreport_basic version 2020110900 +926 scormreport_graphs version 2020110900 +927 scormreport_interactions version 2020110900 +928 scormreport_objectives version 2020110900 +929 workshopform_accumulative version 2020110900 +931 workshopform_comments version 2020110900 +933 workshopform_numerrors version 2020110900 +935 workshopform_rubric version 2020110900 +937 workshopallocation_manual version 2020110900 +938 workshopallocation_random version 2020110900 +939 workshopallocation_scheduled version 2020110900 +940 workshopeval_best version 2020110900 +941 atto_accessibilitychecker version 2020110900 +942 atto_accessibilityhelper version 2020110900 +943 atto_align version 2020110900 +944 atto_backcolor version 2020110900 +945 atto_bold version 2020110900 +946 atto_charmap version 2020110900 +947 atto_clear version 2020110900 +948 atto_collapse version 2020110900 +949 atto_emojipicker version 2020110900 +950 atto_emoticon version 2020110900 +951 atto_equation version 2020110900 +952 atto_fontcolor version 2020110900 +953 atto_h5p version 2020110900 +954 atto_html version 2020110900 +955 atto_image version 2020110900 +956 atto_indent version 2020110900 +957 atto_italic version 2020110900 +958 atto_link version 2020110900 +959 atto_managefiles version 2020110900 +960 atto_media version 2020110900 +961 atto_noautolink version 2020110900 +962 atto_orderedlist version 2020110900 +963 atto_recordrtc version 2020110900 +964 atto_rtl version 2020110900 +965 atto_strike version 2020110900 +966 atto_subscript version 2020110900 +967 atto_superscript version 2020110900 +968 atto_table version 2020110900 +969 atto_title version 2020110900 +970 atto_underline version 2020110900 +971 atto_undo version 2020110900 +972 atto_unorderedlist version 2020110900 +973 tinymce_ctrlhelp version 2020110900 +974 tinymce_managefiles version 2020110900 +975 tinymce_moodleemoticon version 2020110900 +976 tinymce_moodleimage version 2020110900 +977 tinymce_moodlemedia version 2020110900 +978 tinymce_moodlenolink version 2020110900 +979 tinymce_pdw version 2020110900 +980 tinymce_spellchecker version 2020110900 +982 tinymce_wrap version 2020110900 +983 logstore_database version 2020110900 +984 logstore_legacy version 2020110900 +985 logstore_standard version 2020110900 +986 tool_dataprivacy contactdataprotectionofficer 0 +987 tool_dataprivacy automaticdataexportapproval 0 +988 tool_dataprivacy automaticdatadeletionapproval 0 +989 tool_dataprivacy automaticdeletionrequests 1 +990 tool_dataprivacy privacyrequestexpiry 604800 +991 tool_dataprivacy requireallenddatesforuserdeletion 1 +992 tool_dataprivacy showdataretentionsummary 1 +993 tool_log exportlog 1 +994 analytics logstore logstore_standard +995 assign feedback_plugin_for_gradebook assignfeedback_comments +996 assign showrecentsubmissions 0 +997 assign submissionreceipts 1 +998 assign submissionstatement This submission is my own work, except where I have acknowledged the use of the works of other people. +999 assign submissionstatementteamsubmission This submission is the work of my group, except where we have acknowledged the use of the works of other people. +1000 assign submissionstatementteamsubmissionallsubmit This submission is my own work as a group member, except where I have acknowledged the use of the works of other people. +1001 assign maxperpage -1 +1002 assign alwaysshowdescription 1 +1003 assign alwaysshowdescription_adv +1004 assign alwaysshowdescription_locked +1005 assign allowsubmissionsfromdate 0 +1006 assign allowsubmissionsfromdate_enabled 1 +1007 assign allowsubmissionsfromdate_adv +1008 assign duedate 604800 +1009 assign duedate_enabled 1 +1010 assign duedate_adv +1011 assign cutoffdate 1209600 +1012 assign cutoffdate_enabled +1013 assign cutoffdate_adv +1014 assign gradingduedate 1209600 +1015 assign gradingduedate_enabled 1 +1016 assign gradingduedate_adv +1017 assign submissiondrafts 0 +1018 assign submissiondrafts_adv +1019 assign submissiondrafts_locked +1020 assign requiresubmissionstatement 0 +1021 assign requiresubmissionstatement_adv +1022 assign requiresubmissionstatement_locked +1023 assign attemptreopenmethod none +1024 assign attemptreopenmethod_adv +1025 assign attemptreopenmethod_locked +1026 assign maxattempts -1 +1027 assign maxattempts_adv +1028 assign maxattempts_locked +1029 assign teamsubmission 0 +1030 assign teamsubmission_adv +1031 assign teamsubmission_locked +1032 assign preventsubmissionnotingroup 0 +1033 assign preventsubmissionnotingroup_adv +1034 assign preventsubmissionnotingroup_locked +1035 assign requireallteammemberssubmit 0 +1036 assign requireallteammemberssubmit_adv +1037 assign requireallteammemberssubmit_locked +1038 assign teamsubmissiongroupingid +1039 assign teamsubmissiongroupingid_adv +1040 assign sendnotifications 0 +1041 assign sendnotifications_adv +1042 assign sendnotifications_locked +1043 assign sendlatenotifications 0 +1044 assign sendlatenotifications_adv +1045 assign sendlatenotifications_locked +1046 assign sendstudentnotifications 1 +1047 assign sendstudentnotifications_adv +1048 assign sendstudentnotifications_locked +1049 assign blindmarking 0 +1050 assign blindmarking_adv +1051 assign blindmarking_locked +1052 assign hidegrader 0 +1053 assign hidegrader_adv +1054 assign hidegrader_locked +1055 assign markingworkflow 0 +1056 assign markingworkflow_adv +1057 assign markingworkflow_locked +1058 assign markingallocation 0 +1059 assign markingallocation_adv +1060 assign markingallocation_locked +1061 assignsubmission_file default 1 +1062 assignsubmission_file maxfiles 20 +1063 assignsubmission_file filetypes +1064 assignsubmission_file maxbytes 0 +1065 assignsubmission_onlinetext default 0 +1066 assignfeedback_comments default 1 +1067 assignfeedback_comments inline 0 +1068 assignfeedback_comments inline_adv +1069 assignfeedback_comments inline_locked +1070 assignfeedback_editpdf default 1 +1071 assignfeedback_editpdf stamps +1072 assignfeedback_file default 0 +1073 assignfeedback_offline default 0 +1074 book numberingoptions 0,1,2,3 +1075 book navoptions 0,1,2 +1076 book numbering 1 +1077 book navstyle 1 +1078 resource framesize 130 +1079 resource displayoptions 0,1,4,5,6 +1080 resource printintro 1 +1081 resource display 0 +1082 resource showsize 0 +1083 resource showtype 0 +1084 resource showdate 0 +1085 resource popupwidth 620 +1086 resource popupheight 450 +1087 resource filterfiles 0 +1088 folder showexpanded 1 +1089 folder maxsizetodownload 0 +1090 imscp keepold 1 +1091 imscp keepold_adv +1092 label dndmedia 1 +1093 label dndresizewidth 400 +1094 label dndresizeheight 400 +1095 mod_lesson mediafile +1096 mod_lesson mediafile_adv 1 +1097 mod_lesson mediawidth 640 +1098 mod_lesson mediaheight 480 +1099 mod_lesson mediaclose 0 +1100 mod_lesson progressbar 0 +1101 mod_lesson progressbar_adv +1102 mod_lesson ongoing 0 +1103 mod_lesson ongoing_adv 1 +1104 mod_lesson displayleftmenu 0 +1105 mod_lesson displayleftmenu_adv +1106 mod_lesson displayleftif 0 +1107 mod_lesson displayleftif_adv 1 +1108 mod_lesson slideshow 0 +1109 mod_lesson slideshow_adv 1 +1110 mod_lesson slideshowwidth 640 +1111 mod_lesson slideshowheight 480 +1112 mod_lesson slideshowbgcolor #FFFFFF +1113 mod_lesson maxanswers 5 +1114 mod_lesson maxanswers_adv 1 +1115 mod_lesson defaultfeedback 0 +1116 mod_lesson defaultfeedback_adv 1 +1117 mod_lesson activitylink +1118 mod_lesson activitylink_adv 1 +1119 mod_lesson timelimit 0 +1120 mod_lesson timelimit_adv +1121 mod_lesson password 0 +1122 mod_lesson password_adv 1 +1123 mod_lesson modattempts 0 +1124 mod_lesson modattempts_adv +1125 mod_lesson displayreview 0 +1127 mod_lesson maximumnumberofattempts 1 +1128 mod_lesson maximumnumberofattempts_adv +1129 mod_lesson defaultnextpage 0 +1130 mod_lesson defaultnextpage_adv 1 +1131 mod_lesson numberofpagestoshow 1 +1132 mod_lesson numberofpagestoshow_adv 1 +1133 mod_lesson practice 0 +1134 mod_lesson practice_adv +1135 mod_lesson customscoring 1 +1136 mod_lesson customscoring_adv 1 +1137 mod_lesson retakesallowed 0 +1138 mod_lesson retakesallowed_adv +1139 mod_lesson handlingofretakes 0 +1140 mod_lesson handlingofretakes_adv 1 +1141 mod_lesson minimumnumberofquestions 0 +1142 mod_lesson minimumnumberofquestions_adv 1 +1143 page displayoptions 5 +1144 page printheading 1 +1145 page printintro 0 +1146 page printlastmodified 1 +1147 page display 5 +1148 page popupwidth 620 +1149 page popupheight 450 +1150 quiz timelimit 0 +1151 quiz timelimit_adv +1152 quiz overduehandling autosubmit +1153 quiz overduehandling_adv +1154 quiz graceperiod 86400 +1155 quiz graceperiod_adv +1156 quiz graceperiodmin 60 +1157 quiz attempts 0 +1158 quiz attempts_adv +1159 quiz grademethod 1 +1160 quiz grademethod_adv +1161 quiz maximumgrade 10 +1162 quiz questionsperpage 1 +1163 quiz questionsperpage_adv +1164 quiz navmethod free +1165 quiz navmethod_adv 1 +1166 quiz shuffleanswers 1 +1167 quiz shuffleanswers_adv +1168 quiz preferredbehaviour deferredfeedback +1169 quiz canredoquestions 0 +1170 quiz canredoquestions_adv 1 +1171 quiz attemptonlast 0 +1172 quiz attemptonlast_adv 1 +1173 quiz reviewattempt 69904 +1174 quiz reviewcorrectness 69904 +1175 quiz reviewmarks 69904 +1176 quiz reviewspecificfeedback 69904 +1177 quiz reviewgeneralfeedback 69904 +1178 quiz reviewrightanswer 69904 +1179 quiz reviewoverallfeedback 4368 +1180 quiz showuserpicture 0 +1181 quiz showuserpicture_adv +1182 quiz decimalpoints 2 +1183 quiz decimalpoints_adv +1184 quiz questiondecimalpoints -1 +1185 quiz questiondecimalpoints_adv +1186 quiz showblocks 0 +1187 quiz showblocks_adv 1 +1188 quiz quizpassword +1189 quiz quizpassword_adv +1190 quiz quizpassword_required +1191 quiz subnet +1192 quiz subnet_adv 1 +1193 quiz delay1 0 +1194 quiz delay1_adv 1 +1195 quiz delay2 0 +1196 quiz delay2_adv 1 +1197 quiz browsersecurity - +1198 quiz browsersecurity_adv 1 +1199 quiz initialnumfeedbacks 2 +1200 quiz autosaveperiod 60 +1201 quizaccess_seb autoreconfigureseb 1 +1202 quizaccess_seb showseblinks seb,http +1203 quizaccess_seb downloadlink https://safeexambrowser.org/download_en.html +1204 quizaccess_seb quizpasswordrequired 0 +1205 quizaccess_seb displayblocksbeforestart 0 +1206 quizaccess_seb displayblockswhenfinished 1 +1207 scorm displaycoursestructure 0 +1208 scorm displaycoursestructure_adv +1209 scorm popup 0 +1210 scorm popup_adv +1211 scorm displayactivityname 1 +1212 scorm framewidth 100 +1213 scorm framewidth_adv 1 +1214 scorm frameheight 500 +1215 scorm frameheight_adv 1 +1216 scorm winoptgrp_adv 1 +1217 scorm scrollbars 0 +1218 scorm directories 0 +1219 scorm location 0 +1220 scorm menubar 0 +1221 scorm toolbar 0 +1222 scorm status 0 +1223 scorm skipview 0 +1224 scorm skipview_adv 1 +1225 scorm hidebrowse 0 +1226 scorm hidebrowse_adv 1 +1227 scorm hidetoc 0 +1228 scorm hidetoc_adv 1 +1229 scorm nav 1 +1230 scorm nav_adv 1 +1231 scorm navpositionleft -100 +1232 scorm navpositionleft_adv 1 +1233 scorm navpositiontop -100 +1234 scorm navpositiontop_adv 1 +1235 scorm collapsetocwinsize 767 +1236 scorm collapsetocwinsize_adv 1 +1237 scorm displayattemptstatus 1 +1238 scorm displayattemptstatus_adv +1239 scorm grademethod 1 +1240 scorm maxgrade 100 +1241 scorm maxattempt 0 +1242 scorm whatgrade 0 +1243 scorm forcecompleted 0 +1244 scorm forcenewattempt 0 +1245 scorm autocommit 0 +1246 scorm masteryoverride 1 +1247 scorm lastattemptlock 0 +1248 scorm auto 0 +1249 scorm updatefreq 0 +1250 scorm scormstandard 0 +1251 scorm allowtypeexternal 0 +1252 scorm allowtypelocalsync 0 +1254 scorm allowaicchacp 0 +1255 scorm aicchacptimeout 30 +1256 scorm aicchacpkeepsessiondata 1 +1257 scorm aiccuserid 1 +1258 scorm forcejavascript 1 +1259 scorm allowapidebug 0 +1260 scorm apidebugmask .* +1261 scorm protectpackagedownloads 0 +1262 url framesize 130 +1263 url secretphrase +1264 url rolesinparams 0 +1265 url displayoptions 0,1,5,6 +1266 url printintro 1 +1267 url display 0 +1268 url popupwidth 620 +1269 url popupheight 450 +1270 workshop grade 80 +1271 workshop gradinggrade 20 +1272 workshop gradedecimals 0 +1273 workshop maxbytes 0 +1274 workshop strategy accumulative +1275 workshop examplesmode 0 +1276 workshopallocation_random numofreviews 5 +1277 workshopform_numerrors grade0 No +1278 workshopform_numerrors grade1 Yes +1279 workshopeval_best comparison 5 +1280 tool_recyclebin coursebinenable 1 +1281 tool_recyclebin coursebinexpiry 604800 +1282 tool_recyclebin categorybinenable 1 +1283 tool_recyclebin categorybinexpiry 604800 +1284 tool_recyclebin autohide 1 +1285 antivirus_clamav runningmethod commandline +1286 antivirus_clamav pathtoclam +1287 antivirus_clamav pathtounixsocket +1288 antivirus_clamav tcpsockethost +1289 antivirus_clamav tcpsocketport 3310 +1290 antivirus_clamav clamfailureonupload donothing +1291 antivirus_clamav tries 1 +1292 auth_cas field_map_firstname +1293 auth_cas field_updatelocal_firstname oncreate +1294 auth_cas field_updateremote_firstname 0 +1295 auth_cas field_lock_firstname unlocked +1296 auth_cas field_map_lastname +1297 auth_cas field_updatelocal_lastname oncreate +1298 auth_cas field_updateremote_lastname 0 +1299 auth_cas field_lock_lastname unlocked +1300 auth_cas field_map_email +1301 auth_cas field_updatelocal_email oncreate +1302 auth_cas field_updateremote_email 0 +1303 auth_cas field_lock_email unlocked +1304 auth_cas field_map_city +1305 auth_cas field_updatelocal_city oncreate +1306 auth_cas field_updateremote_city 0 +1307 auth_cas field_lock_city unlocked +1308 auth_cas field_map_country +1309 auth_cas field_updatelocal_country oncreate +1310 auth_cas field_updateremote_country 0 +1311 auth_cas field_lock_country unlocked +1312 auth_cas field_map_lang +1313 auth_cas field_updatelocal_lang oncreate +1314 auth_cas field_updateremote_lang 0 +1315 auth_cas field_lock_lang unlocked +1316 auth_cas field_map_description +1317 auth_cas field_updatelocal_description oncreate +1318 auth_cas field_updateremote_description 0 +1319 auth_cas field_lock_description unlocked +1320 auth_cas field_map_url +1321 auth_cas field_updatelocal_url oncreate +1322 auth_cas field_updateremote_url 0 +1323 auth_cas field_lock_url unlocked +1324 auth_cas field_map_idnumber +1325 auth_cas field_updatelocal_idnumber oncreate +1326 auth_cas field_updateremote_idnumber 0 +1327 auth_cas field_lock_idnumber unlocked +1328 auth_cas field_map_institution +1329 auth_cas field_updatelocal_institution oncreate +1330 auth_cas field_updateremote_institution 0 +1331 auth_cas field_lock_institution unlocked +1332 auth_cas field_map_department +1333 auth_cas field_updatelocal_department oncreate +1334 auth_cas field_updateremote_department 0 +1335 auth_cas field_lock_department unlocked +1336 auth_cas field_map_phone1 +1337 auth_cas field_updatelocal_phone1 oncreate +1338 auth_cas field_updateremote_phone1 0 +1339 auth_cas field_lock_phone1 unlocked +1340 auth_cas field_map_phone2 +1341 auth_cas field_updatelocal_phone2 oncreate +1342 auth_cas field_updateremote_phone2 0 +1343 auth_cas field_lock_phone2 unlocked +1344 auth_cas field_map_address +1345 auth_cas field_updatelocal_address oncreate +1346 auth_cas field_updateremote_address 0 +1347 auth_cas field_lock_address unlocked +1348 auth_cas field_map_firstnamephonetic +1349 auth_cas field_updatelocal_firstnamephonetic oncreate +1350 auth_cas field_updateremote_firstnamephonetic 0 +1351 auth_cas field_lock_firstnamephonetic unlocked +1352 auth_cas field_map_lastnamephonetic +1353 auth_cas field_updatelocal_lastnamephonetic oncreate +1354 auth_cas field_updateremote_lastnamephonetic 0 +1355 auth_cas field_lock_lastnamephonetic unlocked +1356 auth_cas field_map_middlename +1357 auth_cas field_updatelocal_middlename oncreate +1358 auth_cas field_updateremote_middlename 0 +1359 auth_cas field_lock_middlename unlocked +1360 auth_cas field_map_alternatename +1361 auth_cas field_updatelocal_alternatename oncreate +1362 auth_cas field_updateremote_alternatename 0 +1363 auth_cas field_lock_alternatename unlocked +1364 auth_email recaptcha 0 +1365 auth_email field_lock_firstname unlocked +1366 auth_email field_lock_lastname unlocked +1367 auth_email field_lock_email unlocked +1368 auth_email field_lock_city unlocked +1369 auth_email field_lock_country unlocked +1370 auth_email field_lock_lang unlocked +1371 auth_email field_lock_description unlocked +1372 auth_email field_lock_url unlocked +1373 auth_email field_lock_idnumber unlocked +1374 auth_email field_lock_institution unlocked +1375 auth_email field_lock_department unlocked +1376 auth_email field_lock_phone1 unlocked +1377 auth_email field_lock_phone2 unlocked +1378 auth_email field_lock_address unlocked +1379 auth_email field_lock_firstnamephonetic unlocked +1380 auth_email field_lock_lastnamephonetic unlocked +1381 auth_email field_lock_middlename unlocked +1382 auth_email field_lock_alternatename unlocked +1383 auth_db host 127.0.0.1 +1384 auth_db type mysqli +1385 auth_db sybasequoting 0 +1386 auth_db name +1387 auth_db user +1388 auth_db pass +1389 auth_db table +1390 auth_db fielduser +1391 auth_db fieldpass +1392 auth_db passtype plaintext +1393 auth_db extencoding utf-8 +1394 auth_db setupsql +1395 auth_db debugauthdb 0 +1396 auth_db changepasswordurl +1397 auth_db removeuser 0 +1398 auth_db updateusers 0 +1399 auth_db field_map_firstname +1400 auth_db field_updatelocal_firstname oncreate +1401 auth_db field_updateremote_firstname 0 +1402 auth_db field_lock_firstname unlocked +1403 auth_db field_map_lastname +1404 auth_db field_updatelocal_lastname oncreate +1405 auth_db field_updateremote_lastname 0 +1406 auth_db field_lock_lastname unlocked +1407 auth_db field_map_email +1408 auth_db field_updatelocal_email oncreate +1409 auth_db field_updateremote_email 0 +1410 auth_db field_lock_email unlocked +1411 auth_db field_map_city +1412 auth_db field_updatelocal_city oncreate +1413 auth_db field_updateremote_city 0 +1414 auth_db field_lock_city unlocked +1415 auth_db field_map_country +1416 auth_db field_updatelocal_country oncreate +1417 auth_db field_updateremote_country 0 +1418 auth_db field_lock_country unlocked +1419 auth_db field_map_lang +1420 auth_db field_updatelocal_lang oncreate +1421 auth_db field_updateremote_lang 0 +1422 auth_db field_lock_lang unlocked +1423 auth_db field_map_description +1424 auth_db field_updatelocal_description oncreate +1425 auth_db field_updateremote_description 0 +1426 auth_db field_lock_description unlocked +1427 auth_db field_map_url +1428 auth_db field_updatelocal_url oncreate +1429 auth_db field_updateremote_url 0 +1430 auth_db field_lock_url unlocked +1431 auth_db field_map_idnumber +1432 auth_db field_updatelocal_idnumber oncreate +1433 auth_db field_updateremote_idnumber 0 +1434 auth_db field_lock_idnumber unlocked +1435 auth_db field_map_institution +1436 auth_db field_updatelocal_institution oncreate +1437 auth_db field_updateremote_institution 0 +1438 auth_db field_lock_institution unlocked +1439 auth_db field_map_department +1440 auth_db field_updatelocal_department oncreate +1441 auth_db field_updateremote_department 0 +1442 auth_db field_lock_department unlocked +1443 auth_db field_map_phone1 +1444 auth_db field_updatelocal_phone1 oncreate +1445 auth_db field_updateremote_phone1 0 +1446 auth_db field_lock_phone1 unlocked +1447 auth_db field_map_phone2 +1448 auth_db field_updatelocal_phone2 oncreate +1449 auth_db field_updateremote_phone2 0 +1450 auth_db field_lock_phone2 unlocked +1451 auth_db field_map_address +1452 auth_db field_updatelocal_address oncreate +1453 auth_db field_updateremote_address 0 +1454 auth_db field_lock_address unlocked +1455 auth_db field_map_firstnamephonetic +1456 auth_db field_updatelocal_firstnamephonetic oncreate +1457 auth_db field_updateremote_firstnamephonetic 0 +1458 auth_db field_lock_firstnamephonetic unlocked +1459 auth_db field_map_lastnamephonetic +1460 auth_db field_updatelocal_lastnamephonetic oncreate +1461 auth_db field_updateremote_lastnamephonetic 0 +1462 auth_db field_lock_lastnamephonetic unlocked +1463 auth_db field_map_middlename +1464 auth_db field_updatelocal_middlename oncreate +1465 auth_db field_updateremote_middlename 0 +1466 auth_db field_lock_middlename unlocked +1467 auth_db field_map_alternatename +1468 auth_db field_updatelocal_alternatename oncreate +1469 auth_db field_updateremote_alternatename 0 +1470 auth_db field_lock_alternatename unlocked +1471 auth_ldap field_map_firstname +1472 auth_ldap field_updatelocal_firstname oncreate +1473 auth_ldap field_updateremote_firstname 0 +1474 auth_ldap field_lock_firstname unlocked +1475 auth_ldap field_map_lastname +1476 auth_ldap field_updatelocal_lastname oncreate +1477 auth_ldap field_updateremote_lastname 0 +1478 auth_ldap field_lock_lastname unlocked +1479 auth_ldap field_map_email +1480 auth_ldap field_updatelocal_email oncreate +1481 auth_ldap field_updateremote_email 0 +1482 auth_ldap field_lock_email unlocked +1483 auth_ldap field_map_city +1484 auth_ldap field_updatelocal_city oncreate +1485 auth_ldap field_updateremote_city 0 +1486 auth_ldap field_lock_city unlocked +1487 auth_ldap field_map_country +1488 auth_ldap field_updatelocal_country oncreate +1489 auth_ldap field_updateremote_country 0 +1490 auth_ldap field_lock_country unlocked +1491 auth_ldap field_map_lang +1492 auth_ldap field_updatelocal_lang oncreate +1493 auth_ldap field_updateremote_lang 0 +1494 auth_ldap field_lock_lang unlocked +1495 auth_ldap field_map_description +1496 auth_ldap field_updatelocal_description oncreate +1497 auth_ldap field_updateremote_description 0 +1498 auth_ldap field_lock_description unlocked +1499 auth_ldap field_map_url +1500 auth_ldap field_updatelocal_url oncreate +1501 auth_ldap field_updateremote_url 0 +1502 auth_ldap field_lock_url unlocked +1503 auth_ldap field_map_idnumber +1504 auth_ldap field_updatelocal_idnumber oncreate +1505 auth_ldap field_updateremote_idnumber 0 +1506 auth_ldap field_lock_idnumber unlocked +1507 auth_ldap field_map_institution +1508 auth_ldap field_updatelocal_institution oncreate +1509 auth_ldap field_updateremote_institution 0 +1510 auth_ldap field_lock_institution unlocked +1511 auth_ldap field_map_department +1512 auth_ldap field_updatelocal_department oncreate +1513 auth_ldap field_updateremote_department 0 +1514 auth_ldap field_lock_department unlocked +1515 auth_ldap field_map_phone1 +1516 auth_ldap field_updatelocal_phone1 oncreate +1517 auth_ldap field_updateremote_phone1 0 +1518 auth_ldap field_lock_phone1 unlocked +1519 auth_ldap field_map_phone2 +1520 auth_ldap field_updatelocal_phone2 oncreate +1521 auth_ldap field_updateremote_phone2 0 +1522 auth_ldap field_lock_phone2 unlocked +1523 auth_ldap field_map_address +1524 auth_ldap field_updatelocal_address oncreate +1525 auth_ldap field_updateremote_address 0 +1526 auth_ldap field_lock_address unlocked +1527 auth_ldap field_map_firstnamephonetic +1528 auth_ldap field_updatelocal_firstnamephonetic oncreate +1529 auth_ldap field_updateremote_firstnamephonetic 0 +1530 auth_ldap field_lock_firstnamephonetic unlocked +1531 auth_ldap field_map_lastnamephonetic +1532 auth_ldap field_updatelocal_lastnamephonetic oncreate +1533 auth_ldap field_updateremote_lastnamephonetic 0 +1534 auth_ldap field_lock_lastnamephonetic unlocked +1535 auth_ldap field_map_middlename +1536 auth_ldap field_updatelocal_middlename oncreate +1537 auth_ldap field_updateremote_middlename 0 +1538 auth_ldap field_lock_middlename unlocked +1539 auth_ldap field_map_alternatename +1540 auth_ldap field_updatelocal_alternatename oncreate +1541 auth_ldap field_updateremote_alternatename 0 +1542 auth_ldap field_lock_alternatename unlocked +1543 auth_manual expiration 0 +1544 auth_manual expirationtime 30 +1545 auth_manual expiration_warning 0 +1546 auth_manual field_lock_firstname unlocked +1547 auth_manual field_lock_lastname unlocked +1548 auth_manual field_lock_email unlocked +1549 auth_manual field_lock_city unlocked +1550 auth_manual field_lock_country unlocked +1551 auth_manual field_lock_lang unlocked +1552 auth_manual field_lock_description unlocked +1553 auth_manual field_lock_url unlocked +1554 auth_manual field_lock_idnumber unlocked +1555 auth_manual field_lock_institution unlocked +1556 auth_manual field_lock_department unlocked +1557 auth_manual field_lock_phone1 unlocked +1558 auth_manual field_lock_phone2 unlocked +1559 auth_manual field_lock_address unlocked +1560 auth_manual field_lock_firstnamephonetic unlocked +1561 auth_manual field_lock_lastnamephonetic unlocked +1562 auth_manual field_lock_middlename unlocked +1563 auth_manual field_lock_alternatename unlocked +1564 auth_mnet rpc_negotiation_timeout 30 +1565 auth_none field_lock_firstname unlocked +1566 auth_none field_lock_lastname unlocked +1567 auth_none field_lock_email unlocked +1568 auth_none field_lock_city unlocked +1569 auth_none field_lock_country unlocked +1570 auth_none field_lock_lang unlocked +1571 auth_none field_lock_description unlocked +1572 auth_none field_lock_url unlocked +1573 auth_none field_lock_idnumber unlocked +1574 auth_none field_lock_institution unlocked +1575 auth_none field_lock_department unlocked +1576 auth_none field_lock_phone1 unlocked +1577 auth_none field_lock_phone2 unlocked +1578 auth_none field_lock_address unlocked +1579 auth_none field_lock_firstnamephonetic unlocked +1580 auth_none field_lock_lastnamephonetic unlocked +1581 auth_none field_lock_middlename unlocked +1582 auth_none field_lock_alternatename unlocked +1583 auth_oauth2 field_lock_firstname unlocked +1584 auth_oauth2 field_lock_lastname unlocked +1585 auth_oauth2 field_lock_email unlocked +1586 auth_oauth2 field_lock_city unlocked +1587 auth_oauth2 field_lock_country unlocked +1588 auth_oauth2 field_lock_lang unlocked +1589 auth_oauth2 field_lock_description unlocked +1590 auth_oauth2 field_lock_url unlocked +1591 auth_oauth2 field_lock_idnumber unlocked +1592 auth_oauth2 field_lock_institution unlocked +1593 auth_oauth2 field_lock_department unlocked +1594 auth_oauth2 field_lock_phone1 unlocked +1595 auth_oauth2 field_lock_phone2 unlocked +1596 auth_oauth2 field_lock_address unlocked +1597 auth_oauth2 field_lock_firstnamephonetic unlocked +1598 auth_oauth2 field_lock_lastnamephonetic unlocked +1599 auth_oauth2 field_lock_middlename unlocked +1600 auth_oauth2 field_lock_alternatename unlocked +1601 auth_shibboleth user_attribute +1602 auth_shibboleth convert_data +1603 auth_shibboleth alt_login off +1604 auth_shibboleth organization_selection urn:mace:organization1:providerID, Example Organization 1\n https://another.idp-id.com/shibboleth, Other Example Organization, /Shibboleth.sso/DS/SWITCHaai\n urn:mace:organization2:providerID, Example Organization 2, /Shibboleth.sso/WAYF/SWITCHaai +1605 auth_shibboleth logout_handler +1606 auth_shibboleth logout_return_url +1607 auth_shibboleth login_name Shibboleth Login +1608 auth_shibboleth auth_logo +1609 auth_shibboleth auth_instructions Use the Shibboleth login to get access via Shibboleth, if your institution supports it. Otherwise, use the normal login form shown here. +1610 auth_shibboleth changepasswordurl +1611 auth_shibboleth field_map_firstname +1612 auth_shibboleth field_updatelocal_firstname oncreate +1613 auth_shibboleth field_lock_firstname unlocked +1614 auth_shibboleth field_map_lastname +1615 auth_shibboleth field_updatelocal_lastname oncreate +1616 auth_shibboleth field_lock_lastname unlocked +1617 auth_shibboleth field_map_email +1618 auth_shibboleth field_updatelocal_email oncreate +1619 auth_shibboleth field_lock_email unlocked +1620 auth_shibboleth field_map_city +1621 auth_shibboleth field_updatelocal_city oncreate +1622 auth_shibboleth field_lock_city unlocked +1623 auth_shibboleth field_map_country +1624 auth_shibboleth field_updatelocal_country oncreate +1625 auth_shibboleth field_lock_country unlocked +1626 auth_shibboleth field_map_lang +1627 auth_shibboleth field_updatelocal_lang oncreate +1628 auth_shibboleth field_lock_lang unlocked +1629 auth_shibboleth field_map_description +1630 auth_shibboleth field_updatelocal_description oncreate +1631 auth_shibboleth field_lock_description unlocked +1632 auth_shibboleth field_map_url +1633 auth_shibboleth field_updatelocal_url oncreate +1634 auth_shibboleth field_lock_url unlocked +1635 auth_shibboleth field_map_idnumber +1636 auth_shibboleth field_updatelocal_idnumber oncreate +1637 auth_shibboleth field_lock_idnumber unlocked +1638 auth_shibboleth field_map_institution +1639 auth_shibboleth field_updatelocal_institution oncreate +1640 auth_shibboleth field_lock_institution unlocked +1641 auth_shibboleth field_map_department +1642 auth_shibboleth field_updatelocal_department oncreate +1643 auth_shibboleth field_lock_department unlocked +1644 auth_shibboleth field_map_phone1 +1645 auth_shibboleth field_updatelocal_phone1 oncreate +1646 auth_shibboleth field_lock_phone1 unlocked +1647 auth_shibboleth field_map_phone2 +1648 auth_shibboleth field_updatelocal_phone2 oncreate +1649 auth_shibboleth field_lock_phone2 unlocked +1650 auth_shibboleth field_map_address +1651 auth_shibboleth field_updatelocal_address oncreate +1652 auth_shibboleth field_lock_address unlocked +1653 auth_shibboleth field_map_firstnamephonetic +1654 auth_shibboleth field_updatelocal_firstnamephonetic oncreate +1655 auth_shibboleth field_lock_firstnamephonetic unlocked +1656 auth_shibboleth field_map_lastnamephonetic +1657 auth_shibboleth field_updatelocal_lastnamephonetic oncreate +1658 auth_shibboleth field_lock_lastnamephonetic unlocked +1659 auth_shibboleth field_map_middlename +1660 auth_shibboleth field_updatelocal_middlename oncreate +1661 auth_shibboleth field_lock_middlename unlocked +1662 auth_shibboleth field_map_alternatename +1663 auth_shibboleth field_updatelocal_alternatename oncreate +1664 auth_shibboleth field_lock_alternatename unlocked +1665 block_activity_results config_showbest 3 +1666 block_activity_results config_showbest_locked +1667 block_activity_results config_showworst 0 +1668 block_activity_results config_showworst_locked +1669 block_activity_results config_usegroups 0 +1670 block_activity_results config_usegroups_locked +1671 block_activity_results config_nameformat 1 +1672 block_activity_results config_nameformat_locked +1673 block_activity_results config_gradeformat 1 +1674 block_activity_results config_gradeformat_locked +1675 block_activity_results config_decimalpoints 2 +1676 block_activity_results config_decimalpoints_locked +1677 block_myoverview displaycategories 1 +1678 block_myoverview layouts card,list,summary +1679 block_myoverview displaygroupingallincludinghidden 0 +1680 block_myoverview displaygroupingall 1 +1681 block_myoverview displaygroupinginprogress 1 +1682 block_myoverview displaygroupingpast 1 +1683 block_myoverview displaygroupingfuture 1 +1684 block_myoverview displaygroupingcustomfield 0 +1685 block_myoverview customfiltergrouping +1686 block_myoverview displaygroupingfavourites 1 +1687 block_myoverview displaygroupinghidden 1 +1688 block_recentlyaccessedcourses displaycategories 1 +1689 block_section_links numsections1 22 +1690 block_section_links incby1 2 +1691 block_section_links numsections2 40 +1692 block_section_links incby2 5 +1693 block_starredcourses displaycategories 1 +1694 block_tag_youtube apikey +1695 format_singleactivity activitytype forum +1696 fileconverter_googledrive issuerid +1697 enrol_cohort roleid 5 +1698 enrol_cohort unenrolaction 0 +1699 enrol_meta nosyncroleids +1700 enrol_meta syncall 1 +1701 enrol_meta unenrolaction 3 +1702 enrol_meta coursesort sortorder +1703 enrol_fee expiredaction 3 +1704 enrol_fee status 1 +1705 enrol_fee cost 0 +1706 enrol_fee currency USD +1707 enrol_fee roleid 5 +1708 enrol_fee enrolperiod 0 +1709 enrol_database dbtype +1710 enrol_database dbhost localhost +1711 enrol_database dbuser +1712 enrol_database dbpass +1713 enrol_database dbname +1714 enrol_database dbencoding utf-8 +1715 enrol_database dbsetupsql +1716 enrol_database dbsybasequoting 0 +1717 enrol_database debugdb 0 +1718 enrol_database localcoursefield idnumber +1719 enrol_database localuserfield idnumber +1720 enrol_database localrolefield shortname +1721 enrol_database localcategoryfield id +1722 enrol_database remoteenroltable +1723 enrol_database remotecoursefield +1724 enrol_database remoteuserfield +1725 enrol_database remoterolefield +1726 enrol_database remoteotheruserfield +1727 enrol_database defaultrole 5 +1728 enrol_database ignorehiddencourses 0 +1729 enrol_database unenrolaction 0 +1730 enrol_database newcoursetable +1731 enrol_database newcoursefullname fullname +1732 enrol_database newcourseshortname shortname +1733 enrol_database newcourseidnumber idnumber +1734 enrol_database newcoursecategory +1735 enrol_database defaultcategory 1 +1736 enrol_database templatecourse +1737 enrol_flatfile location +1738 enrol_flatfile encoding UTF-8 +1739 enrol_flatfile mailstudents 0 +1740 enrol_flatfile mailteachers 0 +1741 enrol_flatfile mailadmins 0 +1742 enrol_flatfile unenrolaction 3 +1743 enrol_flatfile expiredaction 3 +1744 enrol_guest requirepassword 0 +1745 enrol_guest usepasswordpolicy 0 +1746 enrol_guest showhint 0 +1747 enrol_guest defaultenrol 1 +1748 enrol_guest status 1 +1749 enrol_guest status_adv +1750 enrol_imsenterprise imsfilelocation +1751 enrol_imsenterprise logtolocation +1752 enrol_imsenterprise mailadmins 0 +1753 enrol_imsenterprise createnewusers 0 +1754 enrol_imsenterprise imsupdateusers 0 +1755 enrol_imsenterprise imsdeleteusers 0 +1756 enrol_imsenterprise fixcaseusernames 0 +1757 enrol_imsenterprise fixcasepersonalnames 0 +1758 enrol_imsenterprise imssourcedidfallback 0 +1759 enrol_imsenterprise imsrolemap01 5 +1760 enrol_imsenterprise imsrolemap02 3 +1761 enrol_imsenterprise imsrolemap03 3 +1762 enrol_imsenterprise imsrolemap04 5 +1763 enrol_imsenterprise imsrolemap05 0 +1764 enrol_imsenterprise imsrolemap06 4 +1765 enrol_imsenterprise imsrolemap07 0 +1766 enrol_imsenterprise imsrolemap08 4 +1767 enrol_imsenterprise truncatecoursecodes 0 +1768 enrol_imsenterprise createnewcourses 0 +1769 enrol_imsenterprise updatecourses 0 +1770 enrol_imsenterprise createnewcategories 0 +1771 enrol_imsenterprise nestedcategories 0 +1772 enrol_imsenterprise categoryidnumber 0 +1773 enrol_imsenterprise categoryseparator +1774 enrol_imsenterprise imsunenrol 0 +1775 enrol_imsenterprise imscoursemapshortname coursecode +1776 enrol_imsenterprise imscoursemapfullname short +1777 enrol_imsenterprise imscoursemapsummary ignore +1778 enrol_imsenterprise imsrestricttarget +1779 enrol_imsenterprise imscapitafix 0 +1780 enrol_manual expiredaction 1 +1781 enrol_manual expirynotifyhour 6 +1782 enrol_manual defaultenrol 1 +1783 enrol_manual status 0 +1784 enrol_manual roleid 5 +1785 enrol_manual enrolstart 4 +1786 enrol_manual enrolperiod 0 +1787 enrol_manual expirynotify 0 +1788 enrol_manual expirythreshold 86400 +1789 enrol_mnet roleid 5 +1790 enrol_mnet roleid_adv 1 +1791 enrol_paypal paypalbusiness +1792 enrol_paypal mailstudents 0 +1793 enrol_paypal mailteachers 0 +1794 enrol_paypal mailadmins 0 +1795 enrol_paypal expiredaction 3 +1796 enrol_paypal status 1 +1797 enrol_paypal cost 0 +1798 enrol_paypal currency USD +1799 enrol_paypal roleid 5 +1800 enrol_paypal enrolperiod 0 +1801 enrol_lti emaildisplay 2 +1802 enrol_lti city +1803 enrol_lti country +1804 enrol_lti timezone 99 +1805 enrol_lti lang en +1806 enrol_lti institution +1807 enrol_self requirepassword 0 +1808 enrol_self usepasswordpolicy 0 +1809 enrol_self showhint 0 +1810 enrol_self expiredaction 1 +1811 enrol_self expirynotifyhour 6 +1812 enrol_self defaultenrol 1 +1813 enrol_self status 1 +1814 enrol_self newenrols 1 +1815 enrol_self groupkey 0 +1816 enrol_self roleid 5 +1817 enrol_self enrolperiod 0 +1818 enrol_self expirynotify 0 +1819 enrol_self expirythreshold 86400 +1820 enrol_self longtimenosee 0 +1821 enrol_self maxenrolled 0 +1822 enrol_self sendcoursewelcomemessage 1 +1823 filter_urltolink formats 1,4,0 +1824 filter_urltolink embedimages 1 +1825 filter_emoticon formats 1,4,0 +1826 filter_displayh5p allowedsources +1827 filter_mathjaxloader httpsurl https://cdn.jsdelivr.net/npm/mathjax@2.7.8/MathJax.js +1828 filter_mathjaxloader texfiltercompatibility 0 +1829 filter_mathjaxloader mathjaxconfig \nMathJax.Hub.Config({\n config: ["Accessible.js", "Safe.js"],\n errorSettings: { message: ["!"] },\n skipStartupTypeset: true,\n messageStyle: "none"\n});\n +1830 filter_mathjaxloader additionaldelimiters +1831 filter_tex latexpreamble \\usepackage[latin1]{inputenc}\n\\usepackage{amsmath}\n\\usepackage{amsfonts}\n\\RequirePackage{amsmath,amssymb,latexsym}\n +1832 filter_tex latexbackground #FFFFFF +1833 filter_tex density 120 +1834 filter_tex pathlatex /usr/bin/latex +1835 filter_tex pathdvips /usr/bin/dvips +1836 filter_tex pathconvert /usr/bin/convert +1837 filter_tex pathdvisvgm /usr/bin/dvisvgm +1838 filter_tex pathmimetex +1839 filter_tex convertformat gif +1840 logstore_database dbdriver +1841 logstore_database dbhost +1842 logstore_database dbuser +1843 logstore_database dbpass +1844 logstore_database dbname +1845 logstore_database dbtable +1846 logstore_database dbpersist 0 +1847 logstore_database dbsocket +1848 logstore_database dbport +1849 logstore_database dbschema +1850 logstore_database dbcollation +1851 logstore_database dbhandlesoptions 0 +1852 logstore_database buffersize 50 +1853 logstore_database jsonformat 1 +1854 logstore_database logguests 0 +1855 logstore_database includelevels 1,2,0 +1856 logstore_database includeactions c,r,u,d +1857 logstore_legacy loglegacy 0 +1858 logstore_standard logguests 1 +1859 logstore_standard jsonformat 1 +1860 logstore_standard loglifetime 0 +1861 logstore_standard buffersize 50 +1862 mlbackend_python useserver 0 +1863 mlbackend_python host +1864 mlbackend_python port 0 +1865 mlbackend_python secure 0 +1866 mlbackend_python username default +1867 mlbackend_python password +1868 media_videojs videoextensions html_video,media_source,.f4v,.flv +1869 media_videojs audioextensions html_audio +1870 media_videojs rtmp 0 +1871 media_videojs useflash 0 +1872 media_videojs youtube 1 +1873 media_videojs videocssclass video-js +1874 media_videojs audiocssclass video-js +1875 media_videojs limitsize 1 +1876 paygw_paypal surcharge 0 +1877 qtype_multichoice answerhowmany 1 +1878 qtype_multichoice shuffleanswers 1 +1879 qtype_multichoice answernumbering abc +1880 editor_atto toolbar collapse = collapse\nstyle1 = title, bold, italic\nlist = unorderedlist, orderedlist, indent\nlinks = link\nfiles = emojipicker, image, media, recordrtc, managefiles, h5p\nstyle2 = underline, strike, subscript, superscript\nalign = align\ninsert = equation, charmap, table, clear\nundo = undo\naccessibility = accessibilitychecker, accessibilityhelper\nother = html +1881 editor_atto autosavefrequency 60 +1882 atto_collapse showgroups 5 +1883 atto_equation librarygroup1 \n\\cdot\n\\times\n\\ast\n\\div\n\\diamond\n\\pm\n\\mp\n\\oplus\n\\ominus\n\\otimes\n\\oslash\n\\odot\n\\circ\n\\bullet\n\\asymp\n\\equiv\n\\subseteq\n\\supseteq\n\\leq\n\\geq\n\\preceq\n\\succeq\n\\sim\n\\simeq\n\\approx\n\\subset\n\\supset\n\\ll\n\\gg\n\\prec\n\\succ\n\\infty\n\\in\n\\ni\n\\forall\n\\exists\n\\neq\n +1884 atto_equation librarygroup2 \n\\leftarrow\n\\rightarrow\n\\uparrow\n\\downarrow\n\\leftrightarrow\n\\nearrow\n\\searrow\n\\swarrow\n\\nwarrow\n\\Leftarrow\n\\Rightarrow\n\\Uparrow\n\\Downarrow\n\\Leftrightarrow\n +1885 atto_equation librarygroup3 \n\\alpha\n\\beta\n\\gamma\n\\delta\n\\epsilon\n\\zeta\n\\eta\n\\theta\n\\iota\n\\kappa\n\\lambda\n\\mu\n\\nu\n\\xi\n\\pi\n\\rho\n\\sigma\n\\tau\n\\upsilon\n\\phi\n\\chi\n\\psi\n\\omega\n\\Gamma\n\\Delta\n\\Theta\n\\Lambda\n\\Xi\n\\Pi\n\\Sigma\n\\Upsilon\n\\Phi\n\\Psi\n\\Omega\n +1886 atto_equation librarygroup4 \n\\sum{a,b}\n\\sqrt[a]{b+c}\n\\int_{a}^{b}{c}\n\\iint_{a}^{b}{c}\n\\iiint_{a}^{b}{c}\n\\oint{a}\n(a)\n[a]\n\\lbrace{a}\\rbrace\n\\left| \\begin{matrix} a_1 & a_2 \\ a_3 & a_4 \\end{matrix} \\right|\n\\frac{a}{b+c}\n\\vec{a}\n\\binom {a} {b}\n{a \\brack b}\n{a \\brace b}\n +1887 atto_recordrtc allowedtypes both +1888 atto_recordrtc audiobitrate 128000 +1889 atto_recordrtc videobitrate 2500000 +1890 atto_recordrtc timelimit 120 +1891 atto_table allowborders 0 +1892 atto_table allowbackgroundcolour 0 +1893 atto_table allowwidth 0 +1894 editor_tinymce customtoolbar wrap,formatselect,wrap,bold,italic,wrap,bullist,numlist,wrap,link,unlink,wrap,image\n\nundo,redo,wrap,underline,strikethrough,sub,sup,wrap,justifyleft,justifycenter,justifyright,wrap,outdent,indent,wrap,forecolor,backcolor,wrap,ltr,rtl\n\nfontselect,fontsizeselect,wrap,code,search,replace,wrap,nonbreaking,charmap,table,wrap,cleanup,removeformat,pastetext,pasteword,wrap,fullscreen +1895 editor_tinymce fontselectlist Trebuchet=Trebuchet MS,Verdana,Arial,Helvetica,sans-serif;Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;Wingdings=wingdings +1896 editor_tinymce customconfig +1897 tinymce_moodleemoticon requireemoticon 1 +1898 tinymce_spellchecker spellengine +1899 tinymce_spellchecker spelllanguagelist +English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv +1900 tool_mobile apppolicy +1901 tool_mobile typeoflogin 1 +1902 tool_mobile qrcodetype 1 +1903 tool_mobile forcedurlscheme moodlemobile +1904 tool_mobile minimumversion +1905 tool_mobile enablesmartappbanners 0 +1906 tool_mobile iosappid 633359593 +1907 tool_mobile androidappid com.moodle.moodlemobile +1908 tool_mobile setuplink https://download.moodle.org/mobile +1909 tool_mobile forcelogout 0 +1910 tool_mobile disabledfeatures +1911 tool_mobile custommenuitems +1912 tool_mobile filetypeexclusionlist +1913 tool_mobile customlangstrings +1914 tool_moodlenet enablemoodlenet 0 +1915 tool_moodlenet defaultmoodlenetname MoodleNet Central +1916 tool_moodlenet defaultmoodlenet https://moodle.net +1917 tool_task lastcronstart 1612889162 \. @@ -29180,7 +29600,7 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; -- Name: mdl_config_plugins_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_config_plugins_id_seq', 1884, true); +SELECT pg_catalog.setval('public.mdl_config_plugins_id_seq', 1917, true); -- @@ -29227,6 +29647,7 @@ COPY public.mdl_context (id, contextlevel, instanceid, path, depth, locked) FROM 22 80 17 /1/5/22 3 0 23 80 18 /1/5/23 3 0 24 80 19 /1/5/24 3 0 +25 30 3 /1/25 2 0 \. @@ -29234,7 +29655,7 @@ COPY public.mdl_context (id, contextlevel, instanceid, path, depth, locked) FROM -- Name: mdl_context_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_context_id_seq', 24, true); +SELECT pg_catalog.setval('public.mdl_context_id_seq', 25, true); -- @@ -29249,8 +29670,8 @@ COPY public.mdl_context_temp (id, path, depth, locked) FROM stdin; -- Data for Name: mdl_course; Type: TABLE DATA; Schema: public; Owner: postgres -- -COPY public.mdl_course (id, category, sortorder, fullname, shortname, idnumber, summary, summaryformat, format, showgrades, newsitems, startdate, enddate, relativedatesmode, marker, maxbytes, legacyfiles, showreports, visible, visibleold, groupmode, groupmodeforce, defaultgroupingid, lang, calendartype, theme, timecreated, timemodified, requested, enablecompletion, completionnotify, cacherev) FROM stdin; -1 0 0 FROMDUMP:fullsitename shortsitename

Front Page Summary

0 site 1 3 0 0 0 0 0 0 0 1 1 0 0 0 1609808466 1609884709 0 0 0 1609808510 +COPY public.mdl_course (id, category, sortorder, fullname, shortname, idnumber, summary, summaryformat, format, showgrades, newsitems, startdate, enddate, relativedatesmode, marker, maxbytes, legacyfiles, showreports, visible, visibleold, downloadcontent, groupmode, groupmodeforce, defaultgroupingid, lang, calendartype, theme, timecreated, timemodified, requested, enablecompletion, completionnotify, cacherev, originalcourseid) FROM stdin; +1 0 0 FROMDUMP:fullsitename shortsitename 0 site 1 3 0 0 0 0 0 0 0 1 1 \N 0 0 0 1612889052 1612889167 0 0 0 1612889104 \N \. @@ -29259,7 +29680,7 @@ COPY public.mdl_course (id, category, sortorder, fullname, shortname, idnumber, -- COPY public.mdl_course_categories (id, name, idnumber, description, descriptionformat, parent, sortorder, coursecount, visible, visibleold, timemodified, depth, path, theme) FROM stdin; -1 Miscellaneous \N \N 0 0 10000 0 1 1 1609808466 1 /1 \N +1 Miscellaneous \N \N 0 0 10000 0 1 1 1612889052 1 /1 \N \. @@ -29553,7 +29974,6 @@ SELECT pg_catalog.setval('public.mdl_data_records_id_seq', 1, false); -- COPY public.mdl_editor_atto_autosave (id, elementid, contextid, pagehash, userid, drafttext, draftid, pageinstance, timemodified) FROM stdin; -2 id_s__maintenance_message 1 f2cc2fc32a3e3b36de110f255931e3e184dbdd5b 2 -1 yui_3_17_2_1_1612797635385_45 1612797635 \. @@ -29867,588 +30287,585 @@ COPY public.mdl_external_functions (id, name, classname, methodname, classpath, 26 core_calendar_get_calendar_access_information core_calendar_external get_calendar_access_information calendar/externallib.php moodle moodle_mobile_app 27 core_calendar_get_allowed_event_types core_calendar_external get_allowed_event_types calendar/externallib.php moodle moodle_mobile_app 28 core_calendar_get_timestamps core_calendar_external get_timestamps calendar/externallib.php moodle \N -29 core_cohort_add_cohort_members core_cohort_external add_cohort_members cohort/externallib.php moodle moodle/cohort:assign \N -30 core_cohort_create_cohorts core_cohort_external create_cohorts cohort/externallib.php moodle moodle/cohort:manage \N -31 core_cohort_delete_cohort_members core_cohort_external delete_cohort_members cohort/externallib.php moodle moodle/cohort:assign \N -32 core_cohort_delete_cohorts core_cohort_external delete_cohorts cohort/externallib.php moodle moodle/cohort:manage \N -33 core_cohort_get_cohort_members core_cohort_external get_cohort_members cohort/externallib.php moodle moodle/cohort:view \N -34 core_cohort_search_cohorts core_cohort_external search_cohorts cohort/externallib.php moodle moodle/cohort:view \N -35 core_cohort_get_cohorts core_cohort_external get_cohorts cohort/externallib.php moodle moodle/cohort:view \N -36 core_cohort_update_cohorts core_cohort_external update_cohorts cohort/externallib.php moodle moodle/cohort:manage \N -37 core_comment_get_comments core_comment_external get_comments \N moodle moodle/comment:view moodle_mobile_app -38 core_comment_add_comments core_comment_external add_comments \N moodle moodle_mobile_app -39 core_comment_delete_comments core_comment_external delete_comments \N moodle moodle_mobile_app -40 core_completion_get_activities_completion_status core_completion_external get_activities_completion_status \N moodle moodle_mobile_app -41 core_completion_get_course_completion_status core_completion_external get_course_completion_status \N moodle report/completion:view moodle_mobile_app -42 core_completion_mark_course_self_completed core_completion_external mark_course_self_completed \N moodle moodle_mobile_app -43 core_completion_update_activity_completion_status_manually core_completion_external update_activity_completion_status_manually \N moodle moodle_mobile_app -44 core_completion_override_activity_completion_status core_completion_external override_activity_completion_status \N moodle moodle/course:overridecompletion \N -45 core_course_create_categories core_course_external create_categories course/externallib.php moodle moodle/category:manage \N -46 core_course_create_courses core_course_external create_courses course/externallib.php moodle moodle/course:create, moodle/course:visibility \N -47 core_course_delete_categories core_course_external delete_categories course/externallib.php moodle moodle/category:manage \N -48 core_course_delete_courses core_course_external delete_courses course/externallib.php moodle moodle/course:delete \N -49 core_course_delete_modules core_course_external delete_modules course/externallib.php moodle moodle/course:manageactivities \N -50 core_course_duplicate_course core_course_external duplicate_course course/externallib.php moodle moodle/backup:backupcourse, moodle/restore:restorecourse, moodle/course:create \N -51 core_course_get_categories core_course_external get_categories course/externallib.php moodle moodle/category:viewhiddencategories moodle_mobile_app -52 core_course_get_contents core_course_external get_course_contents course/externallib.php moodle moodle/course:update, moodle/course:viewhiddencourses moodle_mobile_app -53 core_course_get_course_module core_course_external get_course_module course/externallib.php moodle moodle_mobile_app -54 core_course_get_course_module_by_instance core_course_external get_course_module_by_instance course/externallib.php moodle moodle_mobile_app -55 core_course_get_module core_course_external get_module course/externallib.php moodle \N -56 core_course_edit_module core_course_external edit_module course/externallib.php moodle \N -57 core_course_edit_section core_course_external edit_section course/externallib.php moodle \N -58 core_course_get_courses core_course_external get_courses course/externallib.php moodle moodle/course:view, moodle/course:update, moodle/course:viewhiddencourses moodle_mobile_app -59 core_course_import_course core_course_external import_course course/externallib.php moodle moodle/backup:backuptargetimport, moodle/restore:restoretargetimport \N -60 core_course_search_courses core_course_external search_courses course/externallib.php moodle moodle_mobile_app -61 core_course_update_categories core_course_external update_categories course/externallib.php moodle moodle/category:manage \N -62 core_course_update_courses core_course_external update_courses course/externallib.php moodle moodle/course:update, moodle/course:changecategory, moodle/course:changefullname, moodle/course:changeshortname, moodle/course:changeidnumber, moodle/course:changesummary, moodle/course:visibility \N -63 core_course_view_course core_course_external view_course course/externallib.php moodle moodle_mobile_app -64 core_course_get_user_navigation_options core_course_external get_user_navigation_options course/externallib.php moodle moodle_mobile_app -65 core_course_get_user_administration_options core_course_external get_user_administration_options course/externallib.php moodle moodle_mobile_app -66 core_course_get_courses_by_field core_course_external get_courses_by_field course/externallib.php moodle moodle_mobile_app -67 core_course_check_updates core_course_external check_updates course/externallib.php moodle moodle_mobile_app -68 core_course_get_updates_since core_course_external get_updates_since course/externallib.php moodle moodle_mobile_app -69 core_course_get_enrolled_courses_by_timeline_classification core_course_external get_enrolled_courses_by_timeline_classification course/externallib.php moodle moodle_mobile_app -70 core_course_get_recent_courses core_course_external get_recent_courses course/externallib.php moodle moodle_mobile_app -71 core_course_set_favourite_courses core_course_external set_favourite_courses course/externallib.php moodle moodle_mobile_app -72 core_course_get_enrolled_users_by_cmid core_course_external get_enrolled_users_by_cmid course/externallib.php moodle \N -73 core_course_add_content_item_to_user_favourites core_course_external add_content_item_to_user_favourites course/externallib.php moodle \N -74 core_course_remove_content_item_from_user_favourites core_course_external remove_content_item_from_user_favourites course/externallib.php moodle \N -75 core_course_get_course_content_items core_course_external get_course_content_items course/externallib.php moodle \N -76 core_course_get_activity_chooser_footer core_course_external get_activity_chooser_footer course/externallib.php moodle \N -77 core_course_toggle_activity_recommendation core_course_external toggle_activity_recommendation course/externallib.php moodle \N -78 core_enrol_get_course_enrolment_methods core_enrol_external get_course_enrolment_methods enrol/externallib.php moodle moodle_mobile_app -79 core_enrol_get_enrolled_users core_enrol_external get_enrolled_users enrol/externallib.php moodle moodle/user:viewdetails, moodle/user:viewhiddendetails, moodle/course:useremail, moodle/user:update, moodle/site:accessallgroups moodle_mobile_app -80 core_enrol_get_enrolled_users_with_capability core_enrol_external get_enrolled_users_with_capability enrol/externallib.php moodle \N -81 core_enrol_get_potential_users core_enrol_external get_potential_users enrol/externallib.php moodle moodle/course:enrolreview \N -82 core_enrol_search_users core_enrol_external search_users enrol/externallib.php moodle moodle/course:viewparticipants moodle_mobile_app -83 core_enrol_get_users_courses core_enrol_external get_users_courses enrol/externallib.php moodle moodle/course:viewparticipants moodle_mobile_app -84 core_enrol_edit_user_enrolment core_enrol_external edit_user_enrolment enrol/externallib.php moodle \N -85 core_enrol_submit_user_enrolment_form core_enrol_external submit_user_enrolment_form enrol/externallib.php moodle \N -86 core_enrol_unenrol_user_enrolment core_enrol_external unenrol_user_enrolment enrol/externallib.php moodle \N -87 core_fetch_notifications core_external fetch_notifications lib/external/externallib.php moodle \N -88 core_session_touch core\\session\\external touch_session \N moodle \N -89 core_session_time_remaining core\\session\\external time_remaining \N moodle \N -90 core_files_get_files core_files_external get_files files/externallib.php moodle moodle_mobile_app -91 core_files_upload core_files_external upload files/externallib.php moodle \N -92 core_form_get_filetypes_browser_data core_form\\external get_filetypes_browser_data \N moodle \N -93 core_get_component_strings core_external get_component_strings lib/external/externallib.php moodle moodle_mobile_app -94 core_get_fragment core_external get_fragment lib/external/externallib.php moodle \N -95 core_get_string core_external get_string lib/external/externallib.php moodle \N -96 core_get_strings core_external get_strings lib/external/externallib.php moodle \N -97 core_get_user_dates core_external get_user_dates lib/external/externallib.php moodle \N -98 core_grades_get_grades core_grades_external get_grades \N moodle moodle/grade:view, moodle/grade:viewall, moodle/grade:viewhidden \N -99 core_grades_update_grades core_grades_external update_grades \N moodle \N -100 core_grades_grader_gradingpanel_point_fetch core_grades\\grades\\grader\\gradingpanel\\point\\external\\fetch execute \N moodle moodle_mobile_app -101 core_grades_grader_gradingpanel_point_store core_grades\\grades\\grader\\gradingpanel\\point\\external\\store execute \N moodle moodle_mobile_app -102 core_grades_grader_gradingpanel_scale_fetch core_grades\\grades\\grader\\gradingpanel\\scale\\external\\fetch execute \N moodle moodle_mobile_app -103 core_grades_grader_gradingpanel_scale_store core_grades\\grades\\grader\\gradingpanel\\scale\\external\\store execute \N moodle moodle_mobile_app -104 core_grading_get_definitions core_grading_external get_definitions \N moodle \N -105 core_grading_get_gradingform_instances core_grading_external get_gradingform_instances \N moodle \N -106 core_grading_save_definitions core_grading_external save_definitions \N moodle \N -107 core_group_add_group_members core_group_external add_group_members group/externallib.php moodle moodle/course:managegroups \N -108 core_group_assign_grouping core_group_external assign_grouping group/externallib.php moodle \N -109 core_group_create_groupings core_group_external create_groupings group/externallib.php moodle \N -110 core_group_create_groups core_group_external create_groups group/externallib.php moodle moodle/course:managegroups \N -111 core_group_delete_group_members core_group_external delete_group_members group/externallib.php moodle moodle/course:managegroups \N -112 core_group_delete_groupings core_group_external delete_groupings group/externallib.php moodle \N -113 core_group_delete_groups core_group_external delete_groups group/externallib.php moodle moodle/course:managegroups \N -114 core_group_get_activity_allowed_groups core_group_external get_activity_allowed_groups group/externallib.php moodle moodle_mobile_app -115 core_group_get_activity_groupmode core_group_external get_activity_groupmode group/externallib.php moodle moodle_mobile_app -116 core_group_get_course_groupings core_group_external get_course_groupings group/externallib.php moodle moodle_mobile_app -117 core_group_get_course_groups core_group_external get_course_groups group/externallib.php moodle moodle/course:managegroups moodle_mobile_app -118 core_group_get_course_user_groups core_group_external get_course_user_groups group/externallib.php moodle moodle/course:managegroups moodle_mobile_app -119 core_group_get_group_members core_group_external get_group_members group/externallib.php moodle moodle/course:managegroups \N -120 core_group_get_groupings core_group_external get_groupings group/externallib.php moodle \N -121 core_group_get_groups core_group_external get_groups group/externallib.php moodle moodle/course:managegroups \N -122 core_group_unassign_grouping core_group_external unassign_grouping group/externallib.php moodle \N -123 core_group_update_groupings core_group_external update_groupings group/externallib.php moodle \N -124 core_group_update_groups core_group_external update_groups group/externallib.php moodle moodle/course:managegroups \N -125 core_message_mute_conversations core_message_external mute_conversations message/externallib.php moodle moodle_mobile_app -126 core_message_unmute_conversations core_message_external unmute_conversations message/externallib.php moodle moodle_mobile_app -127 core_message_block_user core_message_external block_user message/externallib.php moodle moodle_mobile_app -128 core_message_block_contacts core_message_external block_contacts message/externallib.php moodle moodle_mobile_app -129 core_message_create_contacts core_message_external create_contacts message/externallib.php moodle moodle_mobile_app -130 core_message_get_contact_requests core_message_external get_contact_requests message/externallib.php moodle moodle_mobile_app -131 core_message_create_contact_request core_message_external create_contact_request message/externallib.php moodle moodle_mobile_app -132 core_message_confirm_contact_request core_message_external confirm_contact_request message/externallib.php moodle moodle_mobile_app -133 core_message_decline_contact_request core_message_external decline_contact_request message/externallib.php moodle moodle_mobile_app -134 core_message_get_received_contact_requests_count core_message_external get_received_contact_requests_count message/externallib.php moodle moodle_mobile_app -135 core_message_delete_contacts core_message_external delete_contacts message/externallib.php moodle moodle_mobile_app -136 core_message_delete_conversation core_message_external delete_conversation message/externallib.php moodle moodle/site:deleteownmessage moodle_mobile_app +29 core_calendar_get_calendar_export_token core_calendar\\external\\export\\token execute \N moodle moodle_mobile_app +30 core_cohort_add_cohort_members core_cohort_external add_cohort_members cohort/externallib.php moodle moodle/cohort:assign \N +31 core_cohort_create_cohorts core_cohort_external create_cohorts cohort/externallib.php moodle moodle/cohort:manage \N +32 core_cohort_delete_cohort_members core_cohort_external delete_cohort_members cohort/externallib.php moodle moodle/cohort:assign \N +33 core_cohort_delete_cohorts core_cohort_external delete_cohorts cohort/externallib.php moodle moodle/cohort:manage \N +34 core_cohort_get_cohort_members core_cohort_external get_cohort_members cohort/externallib.php moodle moodle/cohort:view \N +35 core_cohort_search_cohorts core_cohort_external search_cohorts cohort/externallib.php moodle moodle/cohort:view \N +36 core_cohort_get_cohorts core_cohort_external get_cohorts cohort/externallib.php moodle moodle/cohort:view \N +37 core_cohort_update_cohorts core_cohort_external update_cohorts cohort/externallib.php moodle moodle/cohort:manage \N +38 core_comment_get_comments core_comment_external get_comments \N moodle moodle/comment:view moodle_mobile_app +39 core_comment_add_comments core_comment_external add_comments \N moodle moodle_mobile_app +40 core_comment_delete_comments core_comment_external delete_comments \N moodle moodle_mobile_app +41 core_completion_get_activities_completion_status core_completion_external get_activities_completion_status \N moodle moodle_mobile_app +42 core_completion_get_course_completion_status core_completion_external get_course_completion_status \N moodle report/completion:view moodle_mobile_app +43 core_completion_mark_course_self_completed core_completion_external mark_course_self_completed \N moodle moodle_mobile_app +44 core_completion_update_activity_completion_status_manually core_completion_external update_activity_completion_status_manually \N moodle moodle_mobile_app +45 core_completion_override_activity_completion_status core_completion_external override_activity_completion_status \N moodle moodle/course:overridecompletion \N +46 core_course_create_categories core_course_external create_categories course/externallib.php moodle moodle/category:manage \N +47 core_course_create_courses core_course_external create_courses course/externallib.php moodle moodle/course:create, moodle/course:visibility \N +48 core_course_delete_categories core_course_external delete_categories course/externallib.php moodle moodle/category:manage \N +49 core_course_delete_courses core_course_external delete_courses course/externallib.php moodle moodle/course:delete \N +50 core_course_delete_modules core_course_external delete_modules course/externallib.php moodle moodle/course:manageactivities \N +51 core_course_duplicate_course core_course_external duplicate_course course/externallib.php moodle moodle/backup:backupcourse, moodle/restore:restorecourse, moodle/course:create \N +52 core_course_get_categories core_course_external get_categories course/externallib.php moodle moodle/category:viewhiddencategories moodle_mobile_app +53 core_course_get_contents core_course_external get_course_contents course/externallib.php moodle moodle/course:update, moodle/course:viewhiddencourses moodle_mobile_app +54 core_course_get_course_module core_course_external get_course_module course/externallib.php moodle moodle_mobile_app +55 core_course_get_course_module_by_instance core_course_external get_course_module_by_instance course/externallib.php moodle moodle_mobile_app +56 core_course_get_module core_course_external get_module course/externallib.php moodle \N +57 core_course_edit_module core_course_external edit_module course/externallib.php moodle \N +58 core_course_edit_section core_course_external edit_section course/externallib.php moodle \N +59 core_course_get_courses core_course_external get_courses course/externallib.php moodle moodle/course:view, moodle/course:update, moodle/course:viewhiddencourses moodle_mobile_app +60 core_course_import_course core_course_external import_course course/externallib.php moodle moodle/backup:backuptargetimport, moodle/restore:restoretargetimport \N +61 core_course_search_courses core_course_external search_courses course/externallib.php moodle moodle_mobile_app +62 core_course_update_categories core_course_external update_categories course/externallib.php moodle moodle/category:manage \N +63 core_course_update_courses core_course_external update_courses course/externallib.php moodle moodle/course:update, moodle/course:changecategory, moodle/course:changefullname, moodle/course:changeshortname, moodle/course:changeidnumber, moodle/course:changesummary, moodle/course:visibility \N +64 core_course_view_course core_course_external view_course course/externallib.php moodle moodle_mobile_app +65 core_course_get_user_navigation_options core_course_external get_user_navigation_options course/externallib.php moodle moodle_mobile_app +66 core_course_get_user_administration_options core_course_external get_user_administration_options course/externallib.php moodle moodle_mobile_app +67 core_course_get_courses_by_field core_course_external get_courses_by_field course/externallib.php moodle moodle_mobile_app +68 core_course_check_updates core_course_external check_updates course/externallib.php moodle moodle_mobile_app +69 core_course_get_updates_since core_course_external get_updates_since course/externallib.php moodle moodle_mobile_app +70 core_course_get_enrolled_courses_by_timeline_classification core_course_external get_enrolled_courses_by_timeline_classification course/externallib.php moodle moodle_mobile_app +71 core_course_get_recent_courses core_course_external get_recent_courses course/externallib.php moodle moodle_mobile_app +72 core_course_set_favourite_courses core_course_external set_favourite_courses course/externallib.php moodle moodle_mobile_app +73 core_course_get_enrolled_users_by_cmid core_course_external get_enrolled_users_by_cmid course/externallib.php moodle \N +74 core_course_add_content_item_to_user_favourites core_course_external add_content_item_to_user_favourites course/externallib.php moodle \N +75 core_course_remove_content_item_from_user_favourites core_course_external remove_content_item_from_user_favourites course/externallib.php moodle \N +76 core_course_get_course_content_items core_course_external get_course_content_items course/externallib.php moodle \N +77 core_course_get_activity_chooser_footer core_course_external get_activity_chooser_footer course/externallib.php moodle \N +78 core_course_toggle_activity_recommendation core_course_external toggle_activity_recommendation course/externallib.php moodle \N +79 core_enrol_get_course_enrolment_methods core_enrol_external get_course_enrolment_methods enrol/externallib.php moodle moodle_mobile_app +80 core_enrol_get_enrolled_users core_enrol_external get_enrolled_users enrol/externallib.php moodle moodle/user:viewdetails, moodle/user:viewhiddendetails, moodle/course:useremail, moodle/user:update, moodle/site:accessallgroups moodle_mobile_app +81 core_enrol_get_enrolled_users_with_capability core_enrol_external get_enrolled_users_with_capability enrol/externallib.php moodle \N +82 core_enrol_get_potential_users core_enrol_external get_potential_users enrol/externallib.php moodle moodle/course:enrolreview \N +83 core_enrol_search_users core_enrol_external search_users enrol/externallib.php moodle moodle/course:viewparticipants moodle_mobile_app +84 core_enrol_get_users_courses core_enrol_external get_users_courses enrol/externallib.php moodle moodle/course:viewparticipants moodle_mobile_app +85 core_enrol_edit_user_enrolment core_enrol_external edit_user_enrolment enrol/externallib.php moodle \N +86 core_enrol_submit_user_enrolment_form core_enrol_external submit_user_enrolment_form enrol/externallib.php moodle \N +87 core_enrol_unenrol_user_enrolment core_enrol_external unenrol_user_enrolment enrol/externallib.php moodle \N +88 core_fetch_notifications core_external fetch_notifications lib/external/externallib.php moodle \N +89 core_session_touch core\\session\\external touch_session \N moodle \N +90 core_session_time_remaining core\\session\\external time_remaining \N moodle \N +91 core_files_get_files core_files_external get_files files/externallib.php moodle moodle_mobile_app +92 core_files_upload core_files_external upload files/externallib.php moodle \N +93 core_files_delete_draft_files core_files\\external\\delete\\draft execute \N moodle moodle_mobile_app +94 core_form_get_filetypes_browser_data core_form\\external get_filetypes_browser_data \N moodle \N +95 core_get_component_strings core_external get_component_strings lib/external/externallib.php moodle moodle_mobile_app +96 core_get_fragment core_external get_fragment lib/external/externallib.php moodle \N +97 core_get_string core_external get_string lib/external/externallib.php moodle \N +98 core_get_strings core_external get_strings lib/external/externallib.php moodle \N +99 core_get_user_dates core_external get_user_dates lib/external/externallib.php moodle \N +100 core_grades_get_grades core_grades_external get_grades \N moodle moodle/grade:view, moodle/grade:viewall, moodle/grade:viewhidden \N +101 core_grades_update_grades core_grades_external update_grades \N moodle \N +102 core_grades_grader_gradingpanel_point_fetch core_grades\\grades\\grader\\gradingpanel\\point\\external\\fetch execute \N moodle moodle_mobile_app +103 core_grades_grader_gradingpanel_point_store core_grades\\grades\\grader\\gradingpanel\\point\\external\\store execute \N moodle moodle_mobile_app +104 core_grades_grader_gradingpanel_scale_fetch core_grades\\grades\\grader\\gradingpanel\\scale\\external\\fetch execute \N moodle moodle_mobile_app +105 core_grades_grader_gradingpanel_scale_store core_grades\\grades\\grader\\gradingpanel\\scale\\external\\store execute \N moodle moodle_mobile_app +106 core_grades_create_gradecategory core_grades_external create_gradecategory \N moodle moodle/grade:manage \N +107 core_grading_get_definitions core_grading_external get_definitions \N moodle \N +108 core_grading_get_gradingform_instances core_grading_external get_gradingform_instances \N moodle \N +109 core_grading_save_definitions core_grading_external save_definitions \N moodle \N +110 core_group_add_group_members core_group_external add_group_members group/externallib.php moodle moodle/course:managegroups \N +111 core_group_assign_grouping core_group_external assign_grouping group/externallib.php moodle \N +112 core_group_create_groupings core_group_external create_groupings group/externallib.php moodle \N +113 core_group_create_groups core_group_external create_groups group/externallib.php moodle moodle/course:managegroups \N +114 core_group_delete_group_members core_group_external delete_group_members group/externallib.php moodle moodle/course:managegroups \N +115 core_group_delete_groupings core_group_external delete_groupings group/externallib.php moodle \N +116 core_group_delete_groups core_group_external delete_groups group/externallib.php moodle moodle/course:managegroups \N +117 core_group_get_activity_allowed_groups core_group_external get_activity_allowed_groups group/externallib.php moodle moodle_mobile_app +118 core_group_get_activity_groupmode core_group_external get_activity_groupmode group/externallib.php moodle moodle_mobile_app +119 core_group_get_course_groupings core_group_external get_course_groupings group/externallib.php moodle moodle_mobile_app +120 core_group_get_course_groups core_group_external get_course_groups group/externallib.php moodle moodle/course:managegroups moodle_mobile_app +121 core_group_get_course_user_groups core_group_external get_course_user_groups group/externallib.php moodle moodle/course:managegroups moodle_mobile_app +122 core_group_get_group_members core_group_external get_group_members group/externallib.php moodle moodle/course:managegroups \N +123 core_group_get_groupings core_group_external get_groupings group/externallib.php moodle \N +124 core_group_get_groups core_group_external get_groups group/externallib.php moodle moodle/course:managegroups \N +125 core_group_unassign_grouping core_group_external unassign_grouping group/externallib.php moodle \N +126 core_group_update_groupings core_group_external update_groupings group/externallib.php moodle \N +127 core_group_update_groups core_group_external update_groups group/externallib.php moodle moodle/course:managegroups \N +128 core_message_mute_conversations core_message_external mute_conversations message/externallib.php moodle moodle_mobile_app +129 core_message_unmute_conversations core_message_external unmute_conversations message/externallib.php moodle moodle_mobile_app +130 core_message_block_user core_message_external block_user message/externallib.php moodle moodle_mobile_app +131 core_message_get_contact_requests core_message_external get_contact_requests message/externallib.php moodle moodle_mobile_app +132 core_message_create_contact_request core_message_external create_contact_request message/externallib.php moodle moodle_mobile_app +133 core_message_confirm_contact_request core_message_external confirm_contact_request message/externallib.php moodle moodle_mobile_app +134 core_message_decline_contact_request core_message_external decline_contact_request message/externallib.php moodle moodle_mobile_app +135 core_message_get_received_contact_requests_count core_message_external get_received_contact_requests_count message/externallib.php moodle moodle_mobile_app +136 core_message_delete_contacts core_message_external delete_contacts message/externallib.php moodle moodle_mobile_app 137 core_message_delete_conversations_by_id core_message_external delete_conversations_by_id message/externallib.php moodle moodle/site:deleteownmessage moodle_mobile_app 138 core_message_delete_message core_message_external delete_message message/externallib.php moodle moodle/site:deleteownmessage moodle_mobile_app 139 core_message_get_blocked_users core_message_external get_blocked_users message/externallib.php moodle moodle_mobile_app 140 core_message_data_for_messagearea_search_messages core_message_external data_for_messagearea_search_messages message/externallib.php moodle moodle_mobile_app -141 core_message_data_for_messagearea_search_users core_message_external data_for_messagearea_search_users message/externallib.php moodle \N -142 core_message_data_for_messagearea_search_users_in_course core_message_external data_for_messagearea_search_users_in_course message/externallib.php moodle \N -143 core_message_message_search_users core_message_external message_search_users message/externallib.php moodle moodle_mobile_app -144 core_message_data_for_messagearea_conversations core_message_external data_for_messagearea_conversations message/externallib.php moodle moodle_mobile_app -145 core_message_data_for_messagearea_contacts core_message_external data_for_messagearea_contacts message/externallib.php moodle moodle_mobile_app -146 core_message_data_for_messagearea_messages core_message_external data_for_messagearea_messages message/externallib.php moodle moodle_mobile_app -147 core_message_data_for_messagearea_get_most_recent_message core_message_external data_for_messagearea_get_most_recent_message message/externallib.php moodle \N -148 core_message_data_for_messagearea_get_profile core_message_external data_for_messagearea_get_profile message/externallib.php moodle \N -149 core_message_get_contacts core_message_external get_contacts message/externallib.php moodle moodle_mobile_app -150 core_message_get_user_contacts core_message_external get_user_contacts message/externallib.php moodle moodle_mobile_app -151 core_message_get_conversations core_message_external get_conversations message/externallib.php moodle moodle_mobile_app -152 core_message_get_conversation core_message_external get_conversation message/externallib.php moodle moodle_mobile_app -153 core_message_get_conversation_between_users core_message_external get_conversation_between_users message/externallib.php moodle moodle_mobile_app -154 core_message_get_self_conversation core_message_external get_self_conversation message/externallib.php moodle moodle_mobile_app -155 core_message_get_messages core_message_external get_messages message/externallib.php moodle moodle_mobile_app -156 core_message_get_conversation_counts core_message_external get_conversation_counts message/externallib.php moodle moodle_mobile_app -157 core_message_get_unread_conversation_counts core_message_external get_unread_conversation_counts message/externallib.php moodle moodle_mobile_app -158 core_message_get_conversation_members core_message_external get_conversation_members message/externallib.php moodle moodle_mobile_app -159 core_message_get_member_info core_message_external get_member_info message/externallib.php moodle moodle_mobile_app -160 core_message_get_unread_conversations_count core_message_external get_unread_conversations_count message/externallib.php moodle moodle_mobile_app -161 core_message_mark_all_notifications_as_read core_message_external mark_all_notifications_as_read message/externallib.php moodle moodle_mobile_app -162 core_message_mark_all_messages_as_read core_message_external mark_all_messages_as_read message/externallib.php moodle moodle_mobile_app -163 core_message_mark_all_conversation_messages_as_read core_message_external mark_all_conversation_messages_as_read message/externallib.php moodle moodle_mobile_app -164 core_message_mark_message_read core_message_external mark_message_read message/externallib.php moodle moodle_mobile_app -165 core_message_mark_notification_read core_message_external mark_notification_read message/externallib.php moodle moodle_mobile_app -166 core_message_message_processor_config_form core_message_external message_processor_config_form message/externallib.php moodle moodle_mobile_app -167 core_message_get_message_processor core_message_external get_message_processor message/externallib.php moodle \N -168 core_message_search_contacts core_message_external search_contacts message/externallib.php moodle moodle_mobile_app -169 core_message_send_instant_messages core_message_external send_instant_messages message/externallib.php moodle moodle/site:sendmessage moodle_mobile_app -170 core_message_send_messages_to_conversation core_message_external send_messages_to_conversation message/externallib.php moodle moodle/site:sendmessage moodle_mobile_app -171 core_message_get_conversation_messages core_message_external get_conversation_messages message/externallib.php moodle moodle_mobile_app -172 core_message_unblock_user core_message_external unblock_user message/externallib.php moodle moodle_mobile_app -173 core_message_unblock_contacts core_message_external unblock_contacts message/externallib.php moodle moodle_mobile_app -174 core_message_get_user_notification_preferences core_message_external get_user_notification_preferences message/externallib.php moodle moodle/user:editownmessageprofile moodle_mobile_app -175 core_message_get_user_message_preferences core_message_external get_user_message_preferences message/externallib.php moodle moodle/user:editownmessageprofile moodle_mobile_app -176 core_message_set_favourite_conversations core_message_external set_favourite_conversations message/externallib.php moodle moodle_mobile_app -177 core_message_unset_favourite_conversations core_message_external unset_favourite_conversations message/externallib.php moodle moodle_mobile_app -178 core_message_delete_message_for_all_users core_message_external delete_message_for_all_users message/externallib.php moodle moodle/site:deleteanymessage moodle_mobile_app -179 core_notes_create_notes core_notes_external create_notes notes/externallib.php moodle moodle/notes:manage moodle_mobile_app -180 core_notes_delete_notes core_notes_external delete_notes notes/externallib.php moodle moodle/notes:manage moodle_mobile_app -181 core_notes_get_course_notes core_notes_external get_course_notes notes/externallib.php moodle moodle/notes:view moodle_mobile_app -182 core_notes_get_notes core_notes_external get_notes notes/externallib.php moodle moodle/notes:view \N -183 core_notes_update_notes core_notes_external update_notes notes/externallib.php moodle moodle/notes:manage \N -184 core_notes_view_notes core_notes_external view_notes notes/externallib.php moodle moodle/notes:view moodle_mobile_app -185 core_output_load_template core\\output\\external load_template \N moodle \N -186 core_output_load_template_with_dependencies core\\output\\external load_template_with_dependencies \N moodle \N -187 core_output_load_fontawesome_icon_map core\\output\\external load_fontawesome_icon_map \N moodle \N -188 core_output_load_fontawesome_icon_system_map core\\external\\output\\icon_system\\load_fontawesome_map execute \N moodle \N -189 core_question_update_flag core_question_external update_flag \N moodle moodle/question:flag moodle_mobile_app -190 core_question_submit_tags_form core_question_external submit_tags_form \N moodle \N -191 core_question_get_random_question_summaries core_question_external get_random_question_summaries \N moodle \N -192 core_rating_get_item_ratings core_rating_external get_item_ratings \N moodle moodle/rating:view moodle_mobile_app -193 core_rating_add_rating core_rating_external add_rating \N moodle moodle/rating:rate moodle_mobile_app -194 core_role_assign_roles core_role_external assign_roles enrol/externallib.php moodle moodle/role:assign \N -195 core_role_unassign_roles core_role_external unassign_roles enrol/externallib.php moodle moodle/role:assign \N -196 core_search_get_relevant_users \\core_search\\external get_relevant_users \N moodle \N -197 core_tag_get_tagindex core_tag_external get_tagindex \N moodle moodle_mobile_app -198 core_tag_get_tags core_tag_external get_tags \N moodle \N -199 core_tag_update_tags core_tag_external update_tags \N moodle \N -200 core_tag_get_tagindex_per_area core_tag_external get_tagindex_per_area \N moodle moodle_mobile_app -201 core_tag_get_tag_areas core_tag_external get_tag_areas \N moodle moodle_mobile_app -202 core_tag_get_tag_collections core_tag_external get_tag_collections \N moodle moodle_mobile_app -203 core_tag_get_tag_cloud core_tag_external get_tag_cloud \N moodle moodle_mobile_app -204 core_update_inplace_editable core_external update_inplace_editable lib/external/externallib.php moodle \N -205 core_user_add_user_device core_user_external add_user_device user/externallib.php moodle moodle_mobile_app -206 core_user_add_user_private_files core_user_external add_user_private_files user/externallib.php moodle moodle/user:manageownfiles moodle_mobile_app -207 core_user_create_users core_user_external create_users user/externallib.php moodle moodle/user:create \N -208 core_user_delete_users core_user_external delete_users user/externallib.php moodle moodle/user:delete \N -209 core_user_get_course_user_profiles core_user_external get_course_user_profiles user/externallib.php moodle moodle/user:viewdetails, moodle/user:viewhiddendetails, moodle/course:useremail, moodle/user:update, moodle/site:accessallgroups moodle_mobile_app -210 core_user_get_users core_user_external get_users user/externallib.php moodle moodle/user:viewdetails, moodle/user:viewhiddendetails, moodle/course:useremail, moodle/user:update \N -211 core_user_get_users_by_field core_user_external get_users_by_field user/externallib.php moodle moodle/user:viewdetails, moodle/user:viewhiddendetails, moodle/course:useremail, moodle/user:update moodle_mobile_app -212 core_user_remove_user_device core_user_external remove_user_device user/externallib.php moodle moodle_mobile_app -213 core_user_update_users core_user_external update_users user/externallib.php moodle moodle/user:update \N -214 core_user_update_user_preferences core_user_external update_user_preferences user/externallib.php moodle moodle/user:editownmessageprofile, moodle/user:editmessageprofile moodle_mobile_app -215 core_user_view_user_list core_user_external view_user_list user/externallib.php moodle moodle/course:viewparticipants moodle_mobile_app -216 core_user_view_user_profile core_user_external view_user_profile user/externallib.php moodle moodle/user:viewdetails moodle_mobile_app -217 core_user_get_user_preferences core_user_external get_user_preferences user/externallib.php moodle moodle_mobile_app -218 core_user_update_picture core_user_external update_picture user/externallib.php moodle moodle/user:editownprofile, moodle/user:editprofile moodle_mobile_app -219 core_user_set_user_preferences core_user_external set_user_preferences user/externallib.php moodle moodle/site:config moodle_mobile_app -220 core_user_agree_site_policy core_user_external agree_site_policy user/externallib.php moodle moodle_mobile_app -221 core_user_get_private_files_info core_user_external get_private_files_info user/externallib.php moodle moodle/user:manageownfiles moodle_mobile_app -222 core_competency_create_competency_framework core_competency\\external create_competency_framework \N moodle moodle/competency:competencymanage \N -223 core_competency_read_competency_framework core_competency\\external read_competency_framework \N moodle moodle/competency:competencyview \N -224 core_competency_duplicate_competency_framework core_competency\\external duplicate_competency_framework \N moodle moodle/competency:competencymanage \N -225 core_competency_delete_competency_framework core_competency\\external delete_competency_framework \N moodle moodle/competency:competencymanage \N -226 core_competency_update_competency_framework core_competency\\external update_competency_framework \N moodle moodle/competency:competencymanage \N -227 core_competency_list_competency_frameworks core_competency\\external list_competency_frameworks \N moodle moodle/competency:competencyview \N -228 core_competency_count_competency_frameworks core_competency\\external count_competency_frameworks \N moodle moodle/competency:competencyview \N -229 core_competency_competency_framework_viewed core_competency\\external competency_framework_viewed \N moodle moodle/competency:competencyview \N -230 core_competency_create_competency core_competency\\external create_competency \N moodle moodle/competency:competencymanage \N -231 core_competency_read_competency core_competency\\external read_competency \N moodle moodle/competency:competencyview \N -232 core_competency_competency_viewed core_competency\\external competency_viewed \N moodle moodle/competency:competencyview moodle_mobile_app -233 core_competency_delete_competency core_competency\\external delete_competency \N moodle moodle/competency:competencymanage \N -234 core_competency_update_competency core_competency\\external update_competency \N moodle moodle/competency:competencymanage \N -235 core_competency_list_competencies core_competency\\external list_competencies \N moodle moodle/competency:competencyview \N -236 core_competency_list_competencies_in_template core_competency\\external list_competencies_in_template \N moodle moodle/competency:competencyview \N -237 core_competency_count_competencies core_competency\\external count_competencies \N moodle moodle/competency:competencyview \N -238 core_competency_count_competencies_in_template core_competency\\external count_competencies_in_template \N moodle moodle/competency:competencyview \N -239 core_competency_search_competencies core_competency\\external search_competencies \N moodle moodle/competency:competencyview \N -240 core_competency_set_parent_competency core_competency\\external set_parent_competency \N moodle moodle/competency:competencymanage \N -241 core_competency_move_up_competency core_competency\\external move_up_competency \N moodle moodle/competency:competencymanage \N -438 mod_lesson_get_pages mod_lesson_external get_pages \N mod_lesson mod/lesson:view moodle_mobile_app -242 core_competency_move_down_competency core_competency\\external move_down_competency \N moodle moodle/competency:competencymanage \N -243 core_competency_list_course_module_competencies core_competency\\external list_course_module_competencies \N moodle moodle/competency:coursecompetencyview \N -244 core_competency_count_course_module_competencies core_competency\\external count_course_module_competencies \N moodle moodle/competency:coursecompetencyview \N -245 core_competency_list_course_competencies core_competency\\external list_course_competencies \N moodle moodle/competency:coursecompetencyview moodle_mobile_app -246 core_competency_count_competencies_in_course core_competency\\external count_competencies_in_course \N moodle moodle/competency:coursecompetencyview \N -247 core_competency_count_courses_using_competency core_competency\\external count_courses_using_competency \N moodle moodle/competency:coursecompetencyview \N -248 core_competency_add_competency_to_course core_competency\\external add_competency_to_course \N moodle moodle/competency:coursecompetencymanage \N -249 core_competency_add_competency_to_template core_competency\\external add_competency_to_template \N moodle moodle/competency:templatemanage \N -250 core_competency_remove_competency_from_course core_competency\\external remove_competency_from_course \N moodle moodle/competency:coursecompetencymanage \N -251 core_competency_set_course_competency_ruleoutcome core_competency\\external set_course_competency_ruleoutcome \N moodle moodle/competency:coursecompetencymanage \N -252 core_competency_remove_competency_from_template core_competency\\external remove_competency_from_template \N moodle moodle/competency:templatemanage \N -253 core_competency_reorder_course_competency core_competency\\external reorder_course_competency \N moodle moodle/competency:coursecompetencymanage \N -254 core_competency_reorder_template_competency core_competency\\external reorder_template_competency \N moodle moodle/competency:templatemanage \N -255 core_competency_create_template core_competency\\external create_template \N moodle moodle/competency:templatemanage \N -256 core_competency_duplicate_template core_competency\\external duplicate_template \N moodle moodle/competency:templatemanage \N -257 core_competency_read_template core_competency\\external read_template \N moodle moodle/competency:templateview \N -258 core_competency_delete_template core_competency\\external delete_template \N moodle moodle/competency:templatemanage \N -259 core_competency_update_template core_competency\\external update_template \N moodle moodle/competency:templatemanage \N -260 core_competency_list_templates core_competency\\external list_templates \N moodle moodle/competency:templateview \N -261 core_competency_list_templates_using_competency core_competency\\external list_templates_using_competency \N moodle moodle/competency:templateview \N -262 core_competency_count_templates core_competency\\external count_templates \N moodle moodle/competency:templateview \N -263 core_competency_count_templates_using_competency core_competency\\external count_templates_using_competency \N moodle moodle/competency:templateview \N -264 core_competency_create_plan core_competency\\external create_plan \N moodle moodle/competency:planmanage \N -265 core_competency_update_plan core_competency\\external update_plan \N moodle moodle/competency:planmanage \N -266 core_competency_complete_plan core_competency\\external complete_plan \N moodle moodle/competency:planmanage \N -267 core_competency_reopen_plan core_competency\\external reopen_plan \N moodle moodle/competency:planmanage \N -268 core_competency_read_plan core_competency\\external read_plan \N moodle moodle/competency:planviewown \N -269 core_competency_delete_plan core_competency\\external delete_plan \N moodle moodle/competency:planmanage \N -270 core_competency_list_user_plans core_competency\\external list_user_plans \N moodle moodle/competency:planviewown \N -271 core_competency_list_plan_competencies core_competency\\external list_plan_competencies \N moodle moodle/competency:planviewown \N -272 core_competency_add_competency_to_plan core_competency\\external add_competency_to_plan \N moodle moodle/competency:planmanage \N -273 core_competency_remove_competency_from_plan core_competency\\external remove_competency_from_plan \N moodle moodle/competency:planmanage \N -274 core_competency_reorder_plan_competency core_competency\\external reorder_plan_competency \N moodle moodle/competency:planmanage \N -275 core_competency_plan_request_review core_competency\\external plan_request_review \N moodle moodle/competency:planmanagedraft \N -276 core_competency_plan_start_review core_competency\\external plan_start_review \N moodle moodle/competency:planmanage \N -277 core_competency_plan_stop_review core_competency\\external plan_stop_review \N moodle moodle/competency:planmanage \N -278 core_competency_plan_cancel_review_request core_competency\\external plan_cancel_review_request \N moodle moodle/competency:planmanagedraft \N -279 core_competency_approve_plan core_competency\\external approve_plan \N moodle moodle/competency:planmanage \N -280 core_competency_unapprove_plan core_competency\\external unapprove_plan \N moodle moodle/competency:planmanage \N -281 core_competency_template_has_related_data core_competency\\external template_has_related_data \N moodle moodle/competency:templateview \N -282 core_competency_get_scale_values core_competency\\external get_scale_values \N moodle moodle/competency:competencymanage moodle_mobile_app -283 core_competency_add_related_competency core_competency\\external add_related_competency \N moodle moodle/competency:competencymanage \N -284 core_competency_remove_related_competency core_competency\\external remove_related_competency \N moodle moodle/competency:competencymanage \N -285 core_competency_read_user_evidence core_competency\\external read_user_evidence \N moodle moodle/competency:userevidenceview \N -286 core_competency_delete_user_evidence core_competency\\external delete_user_evidence \N moodle moodle/competency:userevidencemanageown \N -287 core_competency_create_user_evidence_competency core_competency\\external create_user_evidence_competency \N moodle moodle/competency:userevidencemanageown, moodle/competency:competencyview \N -288 core_competency_delete_user_evidence_competency core_competency\\external delete_user_evidence_competency \N moodle moodle/competency:userevidencemanageown \N -289 core_competency_user_competency_cancel_review_request core_competency\\external user_competency_cancel_review_request \N moodle moodle/competency:userevidencemanageown \N -290 core_competency_user_competency_request_review core_competency\\external user_competency_request_review \N moodle moodle/competency:userevidencemanageown \N -291 core_competency_user_competency_start_review core_competency\\external user_competency_start_review \N moodle moodle/competency:competencygrade \N -292 core_competency_user_competency_stop_review core_competency\\external user_competency_stop_review \N moodle moodle/competency:competencygrade \N -293 core_competency_user_competency_viewed core_competency\\external user_competency_viewed \N moodle moodle/competency:usercompetencyview moodle_mobile_app -294 core_competency_user_competency_viewed_in_plan core_competency\\external user_competency_viewed_in_plan \N moodle moodle/competency:usercompetencyview moodle_mobile_app -295 core_competency_user_competency_viewed_in_course core_competency\\external user_competency_viewed_in_course \N moodle moodle/competency:usercompetencyview moodle_mobile_app -296 core_competency_user_competency_plan_viewed core_competency\\external user_competency_plan_viewed \N moodle moodle/competency:usercompetencyview moodle_mobile_app -297 core_competency_grade_competency core_competency\\external grade_competency \N moodle moodle/competency:competencygrade \N -298 core_competency_grade_competency_in_plan core_competency\\external grade_competency_in_plan \N moodle moodle/competency:competencygrade \N -299 core_competency_grade_competency_in_course core_competency\\external grade_competency_in_course \N moodle moodle/competency:competencygrade moodle_mobile_app -300 core_competency_unlink_plan_from_template core_competency\\external unlink_plan_from_template \N moodle moodle/competency:planmanage \N -301 core_competency_template_viewed core_competency\\external template_viewed \N moodle moodle/competency:templateview \N -302 core_competency_request_review_of_user_evidence_linked_competencies core_competency\\external request_review_of_user_evidence_linked_competencies \N moodle moodle/competency:userevidencemanageown \N -303 core_competency_update_course_competency_settings core_competency\\external update_course_competency_settings \N moodle moodle/competency:coursecompetencyconfigure \N -304 core_competency_delete_evidence core_competency\\external delete_evidence \N moodle moodle/competency:evidencedelete moodle_mobile_app -305 core_webservice_get_site_info core_webservice_external get_site_info webservice/externallib.php moodle moodle_mobile_app -306 core_block_get_course_blocks core_block_external get_course_blocks \N moodle moodle_mobile_app -307 core_block_get_dashboard_blocks core_block_external get_dashboard_blocks \N moodle moodle_mobile_app -308 core_filters_get_available_in_context core_filters\\external get_available_in_context \N moodle moodle_mobile_app -309 core_customfield_delete_field core_customfield_external delete_field customfield/externallib.php moodle \N -310 core_customfield_reload_template core_customfield_external reload_template customfield/externallib.php moodle \N -311 core_customfield_create_category core_customfield_external create_category customfield/externallib.php moodle \N -312 core_customfield_delete_category core_customfield_external delete_category customfield/externallib.php moodle \N -313 core_customfield_move_field core_customfield_external move_field customfield/externallib.php moodle \N -314 core_customfield_move_category core_customfield_external move_category customfield/externallib.php moodle \N -315 core_h5p_get_trusted_h5p_file core_h5p\\external get_trusted_h5p_file \N moodle moodle_mobile_app -316 core_table_get_dynamic_table_content core_table\\external\\dynamic\\get execute \N moodle moodle_mobile_app -317 core_xapi_statement_post core_xapi\\external\\post_statement execute \N moodle moodle_mobile_app -318 core_contentbank_delete_content core_contentbank\\external\\delete_content execute \N moodle moodle/contentbank:deleteanycontent \N -319 core_contentbank_rename_content core_contentbank\\external\\rename_content execute \N moodle moodle/contentbank:manageowncontent \N -320 core_create_userfeedback_action_record core\\external\\record_userfeedback_action execute \N moodle \N -321 mod_assign_copy_previous_attempt mod_assign_external copy_previous_attempt mod/assign/externallib.php mod_assign mod/assign:view, mod/assign:submit \N -322 mod_assign_get_grades mod_assign_external get_grades mod/assign/externallib.php mod_assign moodle_mobile_app -323 mod_assign_get_assignments mod_assign_external get_assignments mod/assign/externallib.php mod_assign moodle_mobile_app -324 mod_assign_get_submissions mod_assign_external get_submissions mod/assign/externallib.php mod_assign moodle_mobile_app -325 mod_assign_get_user_flags mod_assign_external get_user_flags mod/assign/externallib.php mod_assign moodle_mobile_app -326 mod_assign_set_user_flags mod_assign_external set_user_flags mod/assign/externallib.php mod_assign mod/assign:grade moodle_mobile_app -327 mod_assign_get_user_mappings mod_assign_external get_user_mappings mod/assign/externallib.php mod_assign moodle_mobile_app -328 mod_assign_revert_submissions_to_draft mod_assign_external revert_submissions_to_draft mod/assign/externallib.php mod_assign moodle_mobile_app -329 mod_assign_lock_submissions mod_assign_external lock_submissions mod/assign/externallib.php mod_assign moodle_mobile_app -330 mod_assign_unlock_submissions mod_assign_external unlock_submissions mod/assign/externallib.php mod_assign moodle_mobile_app -331 mod_assign_save_submission mod_assign_external save_submission mod/assign/externallib.php mod_assign moodle_mobile_app -332 mod_assign_submit_for_grading mod_assign_external submit_for_grading mod/assign/externallib.php mod_assign moodle_mobile_app -333 mod_assign_save_grade mod_assign_external save_grade mod/assign/externallib.php mod_assign moodle_mobile_app -334 mod_assign_save_grades mod_assign_external save_grades mod/assign/externallib.php mod_assign moodle_mobile_app -335 mod_assign_save_user_extensions mod_assign_external save_user_extensions mod/assign/externallib.php mod_assign moodle_mobile_app -336 mod_assign_reveal_identities mod_assign_external reveal_identities mod/assign/externallib.php mod_assign moodle_mobile_app -337 mod_assign_view_grading_table mod_assign_external view_grading_table mod/assign/externallib.php mod_assign mod/assign:view, mod/assign:viewgrades moodle_mobile_app -338 mod_assign_view_submission_status mod_assign_external view_submission_status mod/assign/externallib.php mod_assign mod/assign:view moodle_mobile_app -339 mod_assign_get_submission_status mod_assign_external get_submission_status mod/assign/externallib.php mod_assign mod/assign:view moodle_mobile_app -340 mod_assign_list_participants mod_assign_external list_participants mod/assign/externallib.php mod_assign mod/assign:view, mod/assign:viewgrades moodle_mobile_app -341 mod_assign_submit_grading_form mod_assign_external submit_grading_form mod/assign/externallib.php mod_assign mod/assign:grade moodle_mobile_app -342 mod_assign_get_participant mod_assign_external get_participant mod/assign/externallib.php mod_assign mod/assign:view, mod/assign:viewgrades moodle_mobile_app -343 mod_assign_view_assign mod_assign_external view_assign mod/assign/externallib.php mod_assign mod/assign:view moodle_mobile_app -344 mod_book_view_book mod_book_external view_book \N mod_book mod/book:read moodle_mobile_app -345 mod_book_get_books_by_courses mod_book_external get_books_by_courses \N mod_book moodle_mobile_app -346 mod_chat_login_user mod_chat_external login_user \N mod_chat mod/chat:chat moodle_mobile_app -347 mod_chat_get_chat_users mod_chat_external get_chat_users \N mod_chat mod/chat:chat moodle_mobile_app -348 mod_chat_send_chat_message mod_chat_external send_chat_message \N mod_chat mod/chat:chat moodle_mobile_app -349 mod_chat_get_chat_latest_messages mod_chat_external get_chat_latest_messages \N mod_chat mod/chat:chat moodle_mobile_app -350 mod_chat_view_chat mod_chat_external view_chat \N mod_chat mod/chat:chat moodle_mobile_app -351 mod_chat_get_chats_by_courses mod_chat_external get_chats_by_courses \N mod_chat moodle_mobile_app -352 mod_chat_get_sessions mod_chat_external get_sessions \N mod_chat moodle_mobile_app -353 mod_chat_get_session_messages mod_chat_external get_session_messages \N mod_chat moodle_mobile_app -354 mod_choice_get_choice_results mod_choice_external get_choice_results \N mod_choice moodle_mobile_app -355 mod_choice_get_choice_options mod_choice_external get_choice_options \N mod_choice mod/choice:choose moodle_mobile_app -356 mod_choice_submit_choice_response mod_choice_external submit_choice_response \N mod_choice mod/choice:choose moodle_mobile_app -357 mod_choice_view_choice mod_choice_external view_choice \N mod_choice moodle_mobile_app -358 mod_choice_get_choices_by_courses mod_choice_external get_choices_by_courses \N mod_choice moodle_mobile_app -359 mod_choice_delete_choice_responses mod_choice_external delete_choice_responses \N mod_choice mod/choice:choose moodle_mobile_app -360 mod_data_get_databases_by_courses mod_data_external get_databases_by_courses \N mod_data mod/data:viewentry moodle_mobile_app -361 mod_data_view_database mod_data_external view_database \N mod_data mod/data:viewentry moodle_mobile_app -362 mod_data_get_data_access_information mod_data_external get_data_access_information \N mod_data mod/data:viewentry moodle_mobile_app -363 mod_data_get_entries mod_data_external get_entries \N mod_data mod/data:viewentry moodle_mobile_app -364 mod_data_get_entry mod_data_external get_entry \N mod_data mod/data:viewentry moodle_mobile_app -365 mod_data_get_fields mod_data_external get_fields \N mod_data mod/data:viewentry moodle_mobile_app -366 mod_data_search_entries mod_data_external search_entries \N mod_data mod/data:viewentry moodle_mobile_app -367 mod_data_approve_entry mod_data_external approve_entry \N mod_data mod/data:approve moodle_mobile_app -368 mod_data_delete_entry mod_data_external delete_entry \N mod_data mod/data:manageentries moodle_mobile_app -369 mod_data_add_entry mod_data_external add_entry \N mod_data mod/data:writeentry moodle_mobile_app -370 mod_data_update_entry mod_data_external update_entry \N mod_data mod/data:writeentry moodle_mobile_app -371 mod_feedback_get_feedbacks_by_courses mod_feedback_external get_feedbacks_by_courses \N mod_feedback mod/feedback:view moodle_mobile_app -372 mod_feedback_get_feedback_access_information mod_feedback_external get_feedback_access_information \N mod_feedback mod/feedback:view moodle_mobile_app -373 mod_feedback_view_feedback mod_feedback_external view_feedback \N mod_feedback mod/feedback:view moodle_mobile_app -374 mod_feedback_get_current_completed_tmp mod_feedback_external get_current_completed_tmp \N mod_feedback mod/feedback:view moodle_mobile_app -375 mod_feedback_get_items mod_feedback_external get_items \N mod_feedback mod/feedback:view moodle_mobile_app -376 mod_feedback_launch_feedback mod_feedback_external launch_feedback \N mod_feedback mod/feedback:complete moodle_mobile_app -377 mod_feedback_get_page_items mod_feedback_external get_page_items \N mod_feedback mod/feedback:complete moodle_mobile_app -378 mod_feedback_process_page mod_feedback_external process_page \N mod_feedback mod/feedback:complete moodle_mobile_app -379 mod_feedback_get_analysis mod_feedback_external get_analysis \N mod_feedback mod/feedback:viewanalysepage moodle_mobile_app -380 mod_feedback_get_unfinished_responses mod_feedback_external get_unfinished_responses \N mod_feedback mod/feedback:view moodle_mobile_app -381 mod_feedback_get_finished_responses mod_feedback_external get_finished_responses \N mod_feedback mod/feedback:view moodle_mobile_app -382 mod_feedback_get_non_respondents mod_feedback_external get_non_respondents \N mod_feedback mod/feedback:viewreports moodle_mobile_app -383 mod_feedback_get_responses_analysis mod_feedback_external get_responses_analysis \N mod_feedback mod/feedback:viewreports moodle_mobile_app -384 mod_feedback_get_last_completed mod_feedback_external get_last_completed \N mod_feedback mod/feedback:view moodle_mobile_app -385 mod_folder_view_folder mod_folder_external view_folder \N mod_folder mod/folder:view moodle_mobile_app -386 mod_folder_get_folders_by_courses mod_folder_external get_folders_by_courses \N mod_folder mod/folder:view moodle_mobile_app -387 mod_forum_get_forums_by_courses mod_forum_external get_forums_by_courses mod/forum/externallib.php mod_forum mod/forum:viewdiscussion moodle_mobile_app -388 mod_forum_get_discussion_posts mod_forum_external get_discussion_posts mod/forum/externallib.php mod_forum mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting moodle_mobile_app -389 mod_forum_get_forum_discussion_posts mod_forum_external get_forum_discussion_posts mod/forum/externallib.php mod_forum mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting moodle_mobile_app -594 tool_mobile_get_config tool_mobile\\external get_config \N tool_mobile moodle_mobile_app -390 mod_forum_get_forum_discussions_paginated mod_forum_external get_forum_discussions_paginated mod/forum/externallib.php mod_forum mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting moodle_mobile_app -391 mod_forum_get_forum_discussions mod_forum_external get_forum_discussions mod/forum/externallib.php mod_forum mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting moodle_mobile_app -392 mod_forum_view_forum mod_forum_external view_forum mod/forum/externallib.php mod_forum mod/forum:viewdiscussion moodle_mobile_app -393 mod_forum_view_forum_discussion mod_forum_external view_forum_discussion mod/forum/externallib.php mod_forum mod/forum:viewdiscussion moodle_mobile_app -394 mod_forum_add_discussion_post mod_forum_external add_discussion_post mod/forum/externallib.php mod_forum mod/forum:replypost moodle_mobile_app -395 mod_forum_add_discussion mod_forum_external add_discussion mod/forum/externallib.php mod_forum mod/forum:startdiscussion moodle_mobile_app -396 mod_forum_can_add_discussion mod_forum_external can_add_discussion mod/forum/externallib.php mod_forum moodle_mobile_app -397 mod_forum_get_forum_access_information mod_forum_external get_forum_access_information \N mod_forum moodle_mobile_app -398 mod_forum_set_subscription_state mod_forum_external set_subscription_state mod/forum/externallib.php mod_forum moodle_mobile_app -399 mod_forum_set_lock_state mod_forum_external set_lock_state mod/forum/externallib.php mod_forum moodle/course:manageactivities moodle_mobile_app -400 mod_forum_toggle_favourite_state mod_forum_external toggle_favourite_state mod/forum/externallib.php mod_forum moodle_mobile_app -401 mod_forum_set_pin_state mod_forum_external set_pin_state mod/forum/externallib.php mod_forum moodle_mobile_app -402 mod_forum_delete_post mod_forum_external delete_post mod/forum/externallib.php mod_forum moodle_mobile_app -403 mod_forum_get_discussion_posts_by_userid mod_forum_external get_discussion_posts_by_userid mod/forum/externallib.php mod_forum mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting \N -404 mod_forum_get_discussion_post mod_forum_external get_discussion_post mod/forum/externallib.php mod_forum moodle_mobile_app -405 mod_forum_prepare_draft_area_for_post mod_forum_external prepare_draft_area_for_post mod/forum/externallib.php mod_forum moodle_mobile_app -406 mod_forum_update_discussion_post mod_forum_external update_discussion_post mod/forum/externallib.php mod_forum moodle_mobile_app -407 mod_glossary_get_glossaries_by_courses mod_glossary_external get_glossaries_by_courses \N mod_glossary mod/glossary:view moodle_mobile_app -408 mod_glossary_view_glossary mod_glossary_external view_glossary \N mod_glossary mod/glossary:view moodle_mobile_app -409 mod_glossary_view_entry mod_glossary_external view_entry \N mod_glossary mod/glossary:view moodle_mobile_app -410 mod_glossary_get_entries_by_letter mod_glossary_external get_entries_by_letter \N mod_glossary mod/glossary:view moodle_mobile_app -411 mod_glossary_get_entries_by_date mod_glossary_external get_entries_by_date \N mod_glossary mod/glossary:view moodle_mobile_app -412 mod_glossary_get_categories mod_glossary_external get_categories \N mod_glossary mod/glossary:view moodle_mobile_app -413 mod_glossary_get_entries_by_category mod_glossary_external get_entries_by_category \N mod_glossary mod/glossary:view moodle_mobile_app -414 mod_glossary_get_authors mod_glossary_external get_authors \N mod_glossary mod/glossary:view moodle_mobile_app -415 mod_glossary_get_entries_by_author mod_glossary_external get_entries_by_author \N mod_glossary mod/glossary:view moodle_mobile_app -416 mod_glossary_get_entries_by_author_id mod_glossary_external get_entries_by_author_id \N mod_glossary mod/glossary:view moodle_mobile_app -417 mod_glossary_get_entries_by_search mod_glossary_external get_entries_by_search \N mod_glossary mod/glossary:view moodle_mobile_app -418 mod_glossary_get_entries_by_term mod_glossary_external get_entries_by_term \N mod_glossary mod/glossary:view moodle_mobile_app -419 mod_glossary_get_entries_to_approve mod_glossary_external get_entries_to_approve \N mod_glossary mod/glossary:approve moodle_mobile_app -420 mod_glossary_get_entry_by_id mod_glossary_external get_entry_by_id \N mod_glossary mod/glossary:view moodle_mobile_app -421 mod_glossary_add_entry mod_glossary_external add_entry \N mod_glossary mod/glossary:write moodle_mobile_app -422 mod_h5pactivity_get_h5pactivity_access_information mod_h5pactivity\\external\\get_h5pactivity_access_information execute \N mod_h5pactivity mod/h5pactivity:view moodle_mobile_app -423 mod_h5pactivity_view_h5pactivity mod_h5pactivity\\external\\view_h5pactivity execute \N mod_h5pactivity mod/h5pactivity:view moodle_mobile_app -424 mod_h5pactivity_get_attempts mod_h5pactivity\\external\\get_attempts execute \N mod_h5pactivity mod/h5pactivity:view moodle_mobile_app -425 mod_h5pactivity_get_results mod_h5pactivity\\external\\get_results execute \N mod_h5pactivity mod/h5pactivity:view moodle_mobile_app -426 mod_h5pactivity_get_h5pactivities_by_courses mod_h5pactivity\\external\\get_h5pactivities_by_courses execute \N mod_h5pactivity mod/h5pactivity:view moodle_mobile_app -427 mod_imscp_view_imscp mod_imscp_external view_imscp \N mod_imscp mod/imscp:view moodle_mobile_app -428 mod_imscp_get_imscps_by_courses mod_imscp_external get_imscps_by_courses \N mod_imscp mod/imscp:view moodle_mobile_app -429 mod_label_get_labels_by_courses mod_label_external get_labels_by_courses \N mod_label mod/label:view moodle_mobile_app -430 mod_lesson_get_lessons_by_courses mod_lesson_external get_lessons_by_courses \N mod_lesson mod/lesson:view moodle_mobile_app -431 mod_lesson_get_lesson_access_information mod_lesson_external get_lesson_access_information \N mod_lesson mod/lesson:view moodle_mobile_app -432 mod_lesson_view_lesson mod_lesson_external view_lesson \N mod_lesson mod/lesson:view moodle_mobile_app -433 mod_lesson_get_questions_attempts mod_lesson_external get_questions_attempts \N mod_lesson mod/lesson:view moodle_mobile_app -434 mod_lesson_get_user_grade mod_lesson_external get_user_grade \N mod_lesson mod/lesson:view moodle_mobile_app -435 mod_lesson_get_user_attempt_grade mod_lesson_external get_user_attempt_grade \N mod_lesson mod/lesson:view moodle_mobile_app -436 mod_lesson_get_content_pages_viewed mod_lesson_external get_content_pages_viewed \N mod_lesson mod/lesson:view moodle_mobile_app -437 mod_lesson_get_user_timers mod_lesson_external get_user_timers \N mod_lesson mod/lesson:view moodle_mobile_app -439 mod_lesson_launch_attempt mod_lesson_external launch_attempt \N mod_lesson mod/lesson:view moodle_mobile_app -440 mod_lesson_get_page_data mod_lesson_external get_page_data \N mod_lesson mod/lesson:view moodle_mobile_app -441 mod_lesson_process_page mod_lesson_external process_page \N mod_lesson mod/lesson:view moodle_mobile_app -442 mod_lesson_finish_attempt mod_lesson_external finish_attempt \N mod_lesson mod/lesson:view moodle_mobile_app -443 mod_lesson_get_attempts_overview mod_lesson_external get_attempts_overview \N mod_lesson mod/lesson:viewreports moodle_mobile_app -444 mod_lesson_get_user_attempt mod_lesson_external get_user_attempt \N mod_lesson mod/lesson:viewreports moodle_mobile_app -445 mod_lesson_get_pages_possible_jumps mod_lesson_external get_pages_possible_jumps \N mod_lesson mod/lesson:view moodle_mobile_app -446 mod_lesson_get_lesson mod_lesson_external get_lesson \N mod_lesson mod/lesson:view moodle_mobile_app -447 mod_lti_get_tool_launch_data mod_lti_external get_tool_launch_data \N mod_lti mod/lti:view moodle_mobile_app -448 mod_lti_get_ltis_by_courses mod_lti_external get_ltis_by_courses \N mod_lti mod/lti:view moodle_mobile_app -449 mod_lti_view_lti mod_lti_external view_lti \N mod_lti mod/lti:view moodle_mobile_app -450 mod_lti_get_tool_proxies mod_lti_external get_tool_proxies \N mod_lti moodle/site:config \N -451 mod_lti_create_tool_proxy mod_lti_external create_tool_proxy \N mod_lti moodle/site:config \N -452 mod_lti_delete_tool_proxy mod_lti_external delete_tool_proxy \N mod_lti moodle/site:config \N -453 mod_lti_get_tool_proxy_registration_request mod_lti_external get_tool_proxy_registration_request \N mod_lti moodle/site:config \N -454 mod_lti_get_tool_types mod_lti_external get_tool_types \N mod_lti moodle/site:config \N -455 mod_lti_create_tool_type mod_lti_external create_tool_type \N mod_lti moodle/site:config \N -456 mod_lti_update_tool_type mod_lti_external update_tool_type \N mod_lti moodle/site:config \N -457 mod_lti_delete_tool_type mod_lti_external delete_tool_type \N mod_lti moodle/site:config \N -458 mod_lti_is_cartridge mod_lti_external is_cartridge \N mod_lti moodle/site:config \N -459 mod_page_view_page mod_page_external view_page \N mod_page mod/page:view moodle_mobile_app -460 mod_page_get_pages_by_courses mod_page_external get_pages_by_courses \N mod_page mod/page:view moodle_mobile_app -461 mod_quiz_get_quizzes_by_courses mod_quiz_external get_quizzes_by_courses \N mod_quiz mod/quiz:view moodle_mobile_app -462 mod_quiz_view_quiz mod_quiz_external view_quiz \N mod_quiz mod/quiz:view moodle_mobile_app -463 mod_quiz_get_user_attempts mod_quiz_external get_user_attempts \N mod_quiz mod/quiz:view moodle_mobile_app -464 mod_quiz_get_user_best_grade mod_quiz_external get_user_best_grade \N mod_quiz mod/quiz:view moodle_mobile_app -465 mod_quiz_get_combined_review_options mod_quiz_external get_combined_review_options \N mod_quiz mod/quiz:view moodle_mobile_app -466 mod_quiz_start_attempt mod_quiz_external start_attempt \N mod_quiz mod/quiz:attempt moodle_mobile_app -467 mod_quiz_get_attempt_data mod_quiz_external get_attempt_data \N mod_quiz mod/quiz:attempt moodle_mobile_app -468 mod_quiz_get_attempt_summary mod_quiz_external get_attempt_summary \N mod_quiz mod/quiz:attempt moodle_mobile_app -469 mod_quiz_save_attempt mod_quiz_external save_attempt \N mod_quiz mod/quiz:attempt moodle_mobile_app -470 mod_quiz_process_attempt mod_quiz_external process_attempt \N mod_quiz mod/quiz:attempt moodle_mobile_app -471 mod_quiz_get_attempt_review mod_quiz_external get_attempt_review \N mod_quiz mod/quiz:reviewmyattempts moodle_mobile_app -472 mod_quiz_view_attempt mod_quiz_external view_attempt \N mod_quiz mod/quiz:attempt moodle_mobile_app -473 mod_quiz_view_attempt_summary mod_quiz_external view_attempt_summary \N mod_quiz mod/quiz:attempt moodle_mobile_app -474 mod_quiz_view_attempt_review mod_quiz_external view_attempt_review \N mod_quiz mod/quiz:reviewmyattempts moodle_mobile_app -475 mod_quiz_get_quiz_feedback_for_grade mod_quiz_external get_quiz_feedback_for_grade \N mod_quiz mod/quiz:view moodle_mobile_app -476 mod_quiz_get_quiz_access_information mod_quiz_external get_quiz_access_information \N mod_quiz mod/quiz:view moodle_mobile_app -477 mod_quiz_get_attempt_access_information mod_quiz_external get_attempt_access_information \N mod_quiz mod/quiz:view moodle_mobile_app -478 mod_quiz_get_quiz_required_qtypes mod_quiz_external get_quiz_required_qtypes \N mod_quiz mod/quiz:view moodle_mobile_app -479 mod_resource_view_resource mod_resource_external view_resource \N mod_resource mod/resource:view moodle_mobile_app -480 mod_resource_get_resources_by_courses mod_resource_external get_resources_by_courses \N mod_resource mod/resource:view moodle_mobile_app -481 mod_scorm_view_scorm mod_scorm_external view_scorm \N mod_scorm moodle_mobile_app -482 mod_scorm_get_scorm_attempt_count mod_scorm_external get_scorm_attempt_count \N mod_scorm moodle_mobile_app -483 mod_scorm_get_scorm_scoes mod_scorm_external get_scorm_scoes \N mod_scorm moodle_mobile_app -484 mod_scorm_get_scorm_user_data mod_scorm_external get_scorm_user_data \N mod_scorm moodle_mobile_app -485 mod_scorm_insert_scorm_tracks mod_scorm_external insert_scorm_tracks \N mod_scorm mod/scorm:savetrack moodle_mobile_app -486 mod_scorm_get_scorm_sco_tracks mod_scorm_external get_scorm_sco_tracks \N mod_scorm moodle_mobile_app -487 mod_scorm_get_scorms_by_courses mod_scorm_external get_scorms_by_courses \N mod_scorm moodle_mobile_app -488 mod_scorm_launch_sco mod_scorm_external launch_sco \N mod_scorm moodle_mobile_app -489 mod_scorm_get_scorm_access_information mod_scorm_external get_scorm_access_information \N mod_scorm moodle_mobile_app -490 mod_survey_get_surveys_by_courses mod_survey_external get_surveys_by_courses \N mod_survey moodle_mobile_app -491 mod_survey_view_survey mod_survey_external view_survey \N mod_survey mod/survey:participate moodle_mobile_app -492 mod_survey_get_questions mod_survey_external get_questions \N mod_survey mod/survey:participate moodle_mobile_app -493 mod_survey_submit_answers mod_survey_external submit_answers \N mod_survey mod/survey:participate moodle_mobile_app -494 mod_url_view_url mod_url_external view_url \N mod_url mod/url:view moodle_mobile_app -495 mod_url_get_urls_by_courses mod_url_external get_urls_by_courses \N mod_url mod/url:view moodle_mobile_app -496 mod_wiki_get_wikis_by_courses mod_wiki_external get_wikis_by_courses \N mod_wiki mod/wiki:viewpage moodle_mobile_app -497 mod_wiki_view_wiki mod_wiki_external view_wiki \N mod_wiki mod/wiki:viewpage moodle_mobile_app -498 mod_wiki_view_page mod_wiki_external view_page \N mod_wiki mod/wiki:viewpage moodle_mobile_app -499 mod_wiki_get_subwikis mod_wiki_external get_subwikis \N mod_wiki mod/wiki:viewpage moodle_mobile_app -500 mod_wiki_get_subwiki_pages mod_wiki_external get_subwiki_pages \N mod_wiki mod/wiki:viewpage moodle_mobile_app -501 mod_wiki_get_subwiki_files mod_wiki_external get_subwiki_files \N mod_wiki mod/wiki:viewpage moodle_mobile_app -502 mod_wiki_get_page_contents mod_wiki_external get_page_contents \N mod_wiki mod/wiki:viewpage moodle_mobile_app -503 mod_wiki_get_page_for_editing mod_wiki_external get_page_for_editing \N mod_wiki mod/wiki:editpage moodle_mobile_app -504 mod_wiki_new_page mod_wiki_external new_page \N mod_wiki mod/wiki:editpage moodle_mobile_app -505 mod_wiki_edit_page mod_wiki_external edit_page \N mod_wiki mod/wiki:editpage moodle_mobile_app -506 mod_workshop_get_workshops_by_courses mod_workshop_external get_workshops_by_courses \N mod_workshop mod/workshop:view moodle_mobile_app -507 mod_workshop_get_workshop_access_information mod_workshop_external get_workshop_access_information \N mod_workshop mod/workshop:view moodle_mobile_app -508 mod_workshop_get_user_plan mod_workshop_external get_user_plan \N mod_workshop mod/workshop:view moodle_mobile_app -509 mod_workshop_view_workshop mod_workshop_external view_workshop \N mod_workshop mod/workshop:view moodle_mobile_app -510 mod_workshop_add_submission mod_workshop_external add_submission \N mod_workshop mod/workshop:submit moodle_mobile_app -511 mod_workshop_update_submission mod_workshop_external update_submission \N mod_workshop mod/workshop:submit moodle_mobile_app -512 mod_workshop_delete_submission mod_workshop_external delete_submission \N mod_workshop mod/workshop:submit moodle_mobile_app -513 mod_workshop_get_submissions mod_workshop_external get_submissions \N mod_workshop moodle_mobile_app -514 mod_workshop_get_submission mod_workshop_external get_submission \N mod_workshop moodle_mobile_app -515 mod_workshop_get_submission_assessments mod_workshop_external get_submission_assessments \N mod_workshop moodle_mobile_app -516 mod_workshop_get_assessment mod_workshop_external get_assessment \N mod_workshop moodle_mobile_app -517 mod_workshop_get_assessment_form_definition mod_workshop_external get_assessment_form_definition \N mod_workshop moodle_mobile_app -518 mod_workshop_get_reviewer_assessments mod_workshop_external get_reviewer_assessments \N mod_workshop moodle_mobile_app -519 mod_workshop_update_assessment mod_workshop_external update_assessment \N mod_workshop moodle_mobile_app -520 mod_workshop_get_grades mod_workshop_external get_grades \N mod_workshop moodle_mobile_app -521 mod_workshop_evaluate_assessment mod_workshop_external evaluate_assessment \N mod_workshop moodle_mobile_app -522 mod_workshop_get_grades_report mod_workshop_external get_grades_report \N mod_workshop moodle_mobile_app -523 mod_workshop_view_submission mod_workshop_external view_submission \N mod_workshop mod/workshop:view moodle_mobile_app -524 mod_workshop_evaluate_submission mod_workshop_external evaluate_submission \N mod_workshop moodle_mobile_app -525 auth_email_get_signup_settings auth_email_external get_signup_settings \N auth_email \N -526 auth_email_signup_user auth_email_external signup_user \N auth_email \N -527 enrol_guest_get_instance_info enrol_guest_external get_instance_info \N enrol_guest moodle_mobile_app -528 enrol_manual_enrol_users enrol_manual_external enrol_users enrol/manual/externallib.php enrol_manual enrol/manual:enrol \N -529 enrol_manual_unenrol_users enrol_manual_external unenrol_users enrol/manual/externallib.php enrol_manual enrol/manual:unenrol \N -530 enrol_self_get_instance_info enrol_self_external get_instance_info enrol/self/externallib.php enrol_self moodle_mobile_app -531 enrol_self_enrol_user enrol_self_external enrol_user enrol/self/externallib.php enrol_self moodle_mobile_app -532 message_airnotifier_is_system_configured message_airnotifier_external is_system_configured message/output/airnotifier/externallib.php message_airnotifier moodle_mobile_app -533 message_airnotifier_are_notification_preferences_configured message_airnotifier_external are_notification_preferences_configured message/output/airnotifier/externallib.php message_airnotifier moodle_mobile_app -534 message_airnotifier_get_user_devices message_airnotifier_external get_user_devices message/output/airnotifier/externallib.php message_airnotifier moodle_mobile_app -535 message_airnotifier_enable_device message_airnotifier_external enable_device message/output/airnotifier/externallib.php message_airnotifier message/airnotifier:managedevice moodle_mobile_app -536 message_popup_get_popup_notifications message_popup_external get_popup_notifications message/output/popup/externallib.php message_popup moodle_mobile_app -537 message_popup_get_unread_popup_notification_count message_popup_external get_unread_popup_notification_count message/output/popup/externallib.php message_popup moodle_mobile_app -538 block_recentlyaccesseditems_get_recent_items block_recentlyaccesseditems\\external get_recent_items \N block_recentlyaccesseditems moodle_mobile_app -539 block_starredcourses_get_starred_courses block_starredcourses_external get_starred_courses block/starredcourses/classes/external.php block_starredcourses moodle_mobile_app -540 report_competency_data_for_report report_competency\\external data_for_report \N report_competency moodle/competency:coursecompetencyview \N -541 report_insights_set_notuseful_prediction report_insights\\external set_notuseful_prediction \N report_insights moodle_mobile_app -542 report_insights_set_fixed_prediction report_insights\\external set_fixed_prediction \N report_insights moodle_mobile_app -543 report_insights_action_executed report_insights\\external action_executed \N report_insights moodle_mobile_app -544 gradereport_overview_get_course_grades gradereport_overview_external get_course_grades \N gradereport_overview moodle_mobile_app -593 tool_mobile_get_public_config tool_mobile\\external get_public_config \N tool_mobile moodle_mobile_app -545 gradereport_overview_view_grade_report gradereport_overview_external view_grade_report \N gradereport_overview gradereport/overview:view moodle_mobile_app -546 gradereport_user_get_grades_table gradereport_user_external get_grades_table grade/report/user/externallib.php gradereport_user gradereport/user:view moodle_mobile_app -547 gradereport_user_view_grade_report gradereport_user_external view_grade_report grade/report/user/externallib.php gradereport_user gradereport/user:view moodle_mobile_app -548 gradereport_user_get_grade_items gradereport_user_external get_grade_items grade/report/user/externallib.php gradereport_user gradereport/user:view moodle_mobile_app -549 gradingform_guide_grader_gradingpanel_fetch gradingform_guide\\grades\\grader\\gradingpanel\\external\\fetch execute \N gradingform_guide \N -550 gradingform_guide_grader_gradingpanel_store gradingform_guide\\grades\\grader\\gradingpanel\\external\\store execute \N gradingform_guide \N -551 gradingform_rubric_grader_gradingpanel_fetch gradingform_rubric\\grades\\grader\\gradingpanel\\external\\fetch execute \N gradingform_rubric \N -552 gradingform_rubric_grader_gradingpanel_store gradingform_rubric\\grades\\grader\\gradingpanel\\external\\store execute \N gradingform_rubric \N -553 tool_analytics_potential_contexts tool_analytics\\external potential_contexts \N tool_analytics moodle_mobile_app -554 tool_dataprivacy_cancel_data_request tool_dataprivacy\\external cancel_data_request \N tool_dataprivacy \N -555 tool_dataprivacy_contact_dpo tool_dataprivacy\\external contact_dpo \N tool_dataprivacy \N -556 tool_dataprivacy_mark_complete tool_dataprivacy\\external mark_complete \N tool_dataprivacy tool/dataprivacy:managedatarequests \N -557 tool_dataprivacy_get_data_request tool_dataprivacy\\external get_data_request \N tool_dataprivacy tool/dataprivacy:managedatarequests \N -558 tool_dataprivacy_approve_data_request tool_dataprivacy\\external approve_data_request \N tool_dataprivacy tool/dataprivacy:managedatarequests \N -559 tool_dataprivacy_bulk_approve_data_requests tool_dataprivacy\\external bulk_approve_data_requests \N tool_dataprivacy tool/dataprivacy:managedatarequests \N -560 tool_dataprivacy_deny_data_request tool_dataprivacy\\external deny_data_request \N tool_dataprivacy tool/dataprivacy:managedatarequests \N -561 tool_dataprivacy_bulk_deny_data_requests tool_dataprivacy\\external bulk_deny_data_requests \N tool_dataprivacy tool/dataprivacy:managedatarequests \N -562 tool_dataprivacy_get_users tool_dataprivacy\\external get_users \N tool_dataprivacy tool/dataprivacy:managedatarequests \N -563 tool_dataprivacy_create_purpose_form tool_dataprivacy\\external create_purpose_form \N tool_dataprivacy \N -564 tool_dataprivacy_create_category_form tool_dataprivacy\\external create_category_form \N tool_dataprivacy \N -565 tool_dataprivacy_delete_purpose tool_dataprivacy\\external delete_purpose \N tool_dataprivacy \N -566 tool_dataprivacy_delete_category tool_dataprivacy\\external delete_category \N tool_dataprivacy \N -567 tool_dataprivacy_set_contextlevel_form tool_dataprivacy\\external set_contextlevel_form \N tool_dataprivacy \N -568 tool_dataprivacy_set_context_form tool_dataprivacy\\external set_context_form \N tool_dataprivacy \N -569 tool_dataprivacy_tree_extra_branches tool_dataprivacy\\external tree_extra_branches \N tool_dataprivacy \N -570 tool_dataprivacy_confirm_contexts_for_deletion tool_dataprivacy\\external confirm_contexts_for_deletion \N tool_dataprivacy \N -571 tool_dataprivacy_set_context_defaults tool_dataprivacy\\external set_context_defaults \N tool_dataprivacy tool/dataprivacy:managedataregistry \N -572 tool_dataprivacy_get_category_options tool_dataprivacy\\external get_category_options \N tool_dataprivacy tool/dataprivacy:managedataregistry \N -573 tool_dataprivacy_get_purpose_options tool_dataprivacy\\external get_purpose_options \N tool_dataprivacy tool/dataprivacy:managedataregistry \N -574 tool_dataprivacy_get_activity_options tool_dataprivacy\\external get_activity_options \N tool_dataprivacy tool/dataprivacy:managedataregistry \N -575 tool_lp_data_for_competency_frameworks_manage_page tool_lp\\external data_for_competency_frameworks_manage_page \N tool_lp moodle/competency:competencyview \N -576 tool_lp_data_for_competency_summary tool_lp\\external data_for_competency_summary \N tool_lp moodle/competency:competencyview \N -577 tool_lp_data_for_competencies_manage_page tool_lp\\external data_for_competencies_manage_page \N tool_lp moodle/competency:competencyview \N -578 tool_lp_list_courses_using_competency tool_lp\\external list_courses_using_competency \N tool_lp moodle/competency:coursecompetencyview \N -579 tool_lp_data_for_course_competencies_page tool_lp\\external data_for_course_competencies_page \N tool_lp moodle/competency:coursecompetencyview moodle_mobile_app -580 tool_lp_data_for_template_competencies_page tool_lp\\external data_for_template_competencies_page \N tool_lp moodle/competency:templateview \N -581 tool_lp_data_for_templates_manage_page tool_lp\\external data_for_templates_manage_page \N tool_lp moodle/competency:templateview \N -582 tool_lp_data_for_plans_page tool_lp\\external data_for_plans_page \N tool_lp moodle/competency:planviewown moodle_mobile_app -583 tool_lp_data_for_plan_page tool_lp\\external data_for_plan_page \N tool_lp moodle/competency:planview moodle_mobile_app -584 tool_lp_data_for_related_competencies_section tool_lp\\external data_for_related_competencies_section \N tool_lp moodle/competency:competencyview \N -585 tool_lp_search_users tool_lp\\external search_users \N tool_lp \N -586 tool_lp_search_cohorts core_cohort_external search_cohorts cohort/externallib.php tool_lp moodle/cohort:view \N -587 tool_lp_data_for_user_evidence_list_page tool_lp\\external data_for_user_evidence_list_page \N tool_lp moodle/competency:userevidenceview moodle_mobile_app -588 tool_lp_data_for_user_evidence_page tool_lp\\external data_for_user_evidence_page \N tool_lp moodle/competency:userevidenceview moodle_mobile_app -589 tool_lp_data_for_user_competency_summary tool_lp\\external data_for_user_competency_summary \N tool_lp moodle/competency:planview moodle_mobile_app -590 tool_lp_data_for_user_competency_summary_in_plan tool_lp\\external data_for_user_competency_summary_in_plan \N tool_lp moodle/competency:planview moodle_mobile_app -591 tool_lp_data_for_user_competency_summary_in_course tool_lp\\external data_for_user_competency_summary_in_course \N tool_lp moodle/competency:coursecompetencyview moodle_mobile_app -592 tool_mobile_get_plugins_supporting_mobile tool_mobile\\external get_plugins_supporting_mobile \N tool_mobile moodle_mobile_app -595 tool_mobile_get_autologin_key tool_mobile\\external get_autologin_key \N tool_mobile moodle_mobile_app -596 tool_mobile_get_content tool_mobile\\external get_content \N tool_mobile moodle_mobile_app -597 tool_mobile_call_external_functions tool_mobile\\external call_external_functions \N tool_mobile moodle_mobile_app -598 tool_mobile_validate_subscription_key tool_mobile\\external validate_subscription_key \N tool_mobile moodle_mobile_app -599 tool_mobile_get_tokens_for_qr_login tool_mobile\\external get_tokens_for_qr_login \N tool_mobile moodle_mobile_app -600 tool_moodlenet_verify_webfinger tool_moodlenet\\external verify_webfinger \N tool_moodlenet moodle_mobile_app -601 tool_moodlenet_search_courses tool_moodlenet\\external search_courses \N tool_moodlenet moodle_mobile_app -602 tool_policy_get_policy_version tool_policy\\external get_policy_version \N tool_policy \N -603 tool_policy_submit_accept_on_behalf tool_policy\\external submit_accept_on_behalf \N tool_policy \N -604 tool_templatelibrary_list_templates tool_templatelibrary\\external list_templates \N tool_templatelibrary \N -605 tool_templatelibrary_load_canonical_template tool_templatelibrary\\external load_canonical_template \N tool_templatelibrary \N -606 tool_usertours_fetch_and_start_tour tool_usertours\\external\\tour fetch_and_start_tour \N tool_usertours \N -607 tool_usertours_step_shown tool_usertours\\external\\tour step_shown \N tool_usertours \N -608 tool_usertours_complete_tour tool_usertours\\external\\tour complete_tour \N tool_usertours \N -609 tool_usertours_reset_tour tool_usertours\\external\\tour reset_tour \N tool_usertours \N -610 tool_xmldb_invoke_move_action tool_xmldb_external invoke_move_action \N tool_xmldb \N +141 core_message_message_search_users core_message_external message_search_users message/externallib.php moodle moodle_mobile_app +142 core_message_get_user_contacts core_message_external get_user_contacts message/externallib.php moodle moodle_mobile_app +143 core_message_get_conversations core_message_external get_conversations message/externallib.php moodle moodle_mobile_app +144 core_message_get_conversation core_message_external get_conversation message/externallib.php moodle moodle_mobile_app +145 core_message_get_conversation_between_users core_message_external get_conversation_between_users message/externallib.php moodle moodle_mobile_app +146 core_message_get_self_conversation core_message_external get_self_conversation message/externallib.php moodle moodle_mobile_app +147 core_message_get_messages core_message_external get_messages message/externallib.php moodle moodle_mobile_app +148 core_message_get_conversation_counts core_message_external get_conversation_counts message/externallib.php moodle moodle_mobile_app +149 core_message_get_unread_conversation_counts core_message_external get_unread_conversation_counts message/externallib.php moodle moodle_mobile_app +150 core_message_get_conversation_members core_message_external get_conversation_members message/externallib.php moodle moodle_mobile_app +151 core_message_get_member_info core_message_external get_member_info message/externallib.php moodle moodle_mobile_app +152 core_message_get_unread_conversations_count core_message_external get_unread_conversations_count message/externallib.php moodle moodle_mobile_app +153 core_message_mark_all_notifications_as_read core_message_external mark_all_notifications_as_read message/externallib.php moodle moodle_mobile_app +154 core_message_mark_all_conversation_messages_as_read core_message_external mark_all_conversation_messages_as_read message/externallib.php moodle moodle_mobile_app +155 core_message_mark_message_read core_message_external mark_message_read message/externallib.php moodle moodle_mobile_app +156 core_message_mark_notification_read core_message_external mark_notification_read message/externallib.php moodle moodle_mobile_app +157 core_message_message_processor_config_form core_message_external message_processor_config_form message/externallib.php moodle moodle_mobile_app +158 core_message_get_message_processor core_message_external get_message_processor message/externallib.php moodle \N +159 core_message_search_contacts core_message_external search_contacts message/externallib.php moodle moodle_mobile_app +160 core_message_send_instant_messages core_message_external send_instant_messages message/externallib.php moodle moodle/site:sendmessage moodle_mobile_app +161 core_message_send_messages_to_conversation core_message_external send_messages_to_conversation message/externallib.php moodle moodle/site:sendmessage moodle_mobile_app +162 core_message_get_conversation_messages core_message_external get_conversation_messages message/externallib.php moodle moodle_mobile_app +163 core_message_unblock_user core_message_external unblock_user message/externallib.php moodle moodle_mobile_app +164 core_message_get_user_notification_preferences core_message_external get_user_notification_preferences message/externallib.php moodle moodle/user:editownmessageprofile moodle_mobile_app +165 core_message_get_user_message_preferences core_message_external get_user_message_preferences message/externallib.php moodle moodle/user:editownmessageprofile moodle_mobile_app +166 core_message_set_favourite_conversations core_message_external set_favourite_conversations message/externallib.php moodle moodle_mobile_app +167 core_message_unset_favourite_conversations core_message_external unset_favourite_conversations message/externallib.php moodle moodle_mobile_app +168 core_message_delete_message_for_all_users core_message_external delete_message_for_all_users message/externallib.php moodle moodle/site:deleteanymessage moodle_mobile_app +169 core_notes_create_notes core_notes_external create_notes notes/externallib.php moodle moodle/notes:manage moodle_mobile_app +170 core_notes_delete_notes core_notes_external delete_notes notes/externallib.php moodle moodle/notes:manage moodle_mobile_app +171 core_notes_get_course_notes core_notes_external get_course_notes notes/externallib.php moodle moodle/notes:view moodle_mobile_app +172 core_notes_get_notes core_notes_external get_notes notes/externallib.php moodle moodle/notes:view \N +173 core_notes_update_notes core_notes_external update_notes notes/externallib.php moodle moodle/notes:manage \N +174 core_notes_view_notes core_notes_external view_notes notes/externallib.php moodle moodle/notes:view moodle_mobile_app +175 core_output_load_template core\\output\\external load_template \N moodle \N +176 core_output_load_template_with_dependencies core\\output\\external load_template_with_dependencies \N moodle \N +177 core_output_load_fontawesome_icon_map core\\output\\external load_fontawesome_icon_map \N moodle \N +178 core_output_load_fontawesome_icon_system_map core\\external\\output\\icon_system\\load_fontawesome_map execute \N moodle \N +179 core_question_update_flag core_question_external update_flag \N moodle moodle/question:flag moodle_mobile_app +180 core_question_submit_tags_form core_question_external submit_tags_form \N moodle \N +181 core_question_get_random_question_summaries core_question_external get_random_question_summaries \N moodle \N +182 core_rating_get_item_ratings core_rating_external get_item_ratings \N moodle moodle/rating:view moodle_mobile_app +183 core_rating_add_rating core_rating_external add_rating \N moodle moodle/rating:rate moodle_mobile_app +184 core_role_assign_roles core_role_external assign_roles enrol/externallib.php moodle moodle/role:assign \N +185 core_role_unassign_roles core_role_external unassign_roles enrol/externallib.php moodle moodle/role:assign \N +186 core_search_get_relevant_users \\core_search\\external get_relevant_users \N moodle \N +187 core_tag_get_tagindex core_tag_external get_tagindex \N moodle moodle_mobile_app +188 core_tag_get_tags core_tag_external get_tags \N moodle \N +189 core_tag_update_tags core_tag_external update_tags \N moodle \N +190 core_tag_get_tagindex_per_area core_tag_external get_tagindex_per_area \N moodle moodle_mobile_app +191 core_tag_get_tag_areas core_tag_external get_tag_areas \N moodle moodle_mobile_app +192 core_tag_get_tag_collections core_tag_external get_tag_collections \N moodle moodle_mobile_app +193 core_tag_get_tag_cloud core_tag_external get_tag_cloud \N moodle moodle_mobile_app +194 core_update_inplace_editable core_external update_inplace_editable lib/external/externallib.php moodle \N +195 core_user_add_user_device core_user_external add_user_device user/externallib.php moodle moodle_mobile_app +196 core_user_add_user_private_files core_user_external add_user_private_files user/externallib.php moodle moodle/user:manageownfiles moodle_mobile_app +197 core_user_create_users core_user_external create_users user/externallib.php moodle moodle/user:create \N +198 core_user_delete_users core_user_external delete_users user/externallib.php moodle moodle/user:delete \N +199 core_user_get_course_user_profiles core_user_external get_course_user_profiles user/externallib.php moodle moodle/user:viewdetails, moodle/user:viewhiddendetails, moodle/course:useremail, moodle/user:update, moodle/site:accessallgroups moodle_mobile_app +200 core_user_get_users core_user_external get_users user/externallib.php moodle moodle/user:viewdetails, moodle/user:viewhiddendetails, moodle/course:useremail, moodle/user:update \N +201 core_user_get_users_by_field core_user_external get_users_by_field user/externallib.php moodle moodle/user:viewdetails, moodle/user:viewhiddendetails, moodle/course:useremail, moodle/user:update moodle_mobile_app +202 core_user_remove_user_device core_user_external remove_user_device user/externallib.php moodle moodle_mobile_app +203 core_user_update_users core_user_external update_users user/externallib.php moodle moodle/user:update \N +204 core_user_update_user_preferences core_user_external update_user_preferences user/externallib.php moodle moodle/user:editownmessageprofile, moodle/user:editmessageprofile moodle_mobile_app +205 core_user_view_user_list core_user_external view_user_list user/externallib.php moodle moodle/course:viewparticipants moodle_mobile_app +206 core_user_view_user_profile core_user_external view_user_profile user/externallib.php moodle moodle/user:viewdetails moodle_mobile_app +207 core_user_get_user_preferences core_user_external get_user_preferences user/externallib.php moodle moodle_mobile_app +208 core_user_update_picture core_user_external update_picture user/externallib.php moodle moodle/user:editownprofile, moodle/user:editprofile moodle_mobile_app +209 core_user_set_user_preferences core_user_external set_user_preferences user/externallib.php moodle moodle/site:config moodle_mobile_app +210 core_user_agree_site_policy core_user_external agree_site_policy user/externallib.php moodle moodle_mobile_app +211 core_user_get_private_files_info core_user_external get_private_files_info user/externallib.php moodle moodle/user:manageownfiles moodle_mobile_app +212 core_competency_create_competency_framework core_competency\\external create_competency_framework \N moodle moodle/competency:competencymanage \N +213 core_competency_read_competency_framework core_competency\\external read_competency_framework \N moodle moodle/competency:competencyview \N +214 core_competency_duplicate_competency_framework core_competency\\external duplicate_competency_framework \N moodle moodle/competency:competencymanage \N +215 core_competency_delete_competency_framework core_competency\\external delete_competency_framework \N moodle moodle/competency:competencymanage \N +216 core_competency_update_competency_framework core_competency\\external update_competency_framework \N moodle moodle/competency:competencymanage \N +217 core_competency_list_competency_frameworks core_competency\\external list_competency_frameworks \N moodle moodle/competency:competencyview \N +218 core_competency_count_competency_frameworks core_competency\\external count_competency_frameworks \N moodle moodle/competency:competencyview \N +219 core_competency_competency_framework_viewed core_competency\\external competency_framework_viewed \N moodle moodle/competency:competencyview \N +220 core_competency_create_competency core_competency\\external create_competency \N moodle moodle/competency:competencymanage \N +221 core_competency_read_competency core_competency\\external read_competency \N moodle moodle/competency:competencyview \N +222 core_competency_competency_viewed core_competency\\external competency_viewed \N moodle moodle/competency:competencyview moodle_mobile_app +223 core_competency_delete_competency core_competency\\external delete_competency \N moodle moodle/competency:competencymanage \N +224 core_competency_update_competency core_competency\\external update_competency \N moodle moodle/competency:competencymanage \N +225 core_competency_list_competencies core_competency\\external list_competencies \N moodle moodle/competency:competencyview \N +226 core_competency_list_competencies_in_template core_competency\\external list_competencies_in_template \N moodle moodle/competency:competencyview \N +227 core_competency_count_competencies core_competency\\external count_competencies \N moodle moodle/competency:competencyview \N +228 core_competency_count_competencies_in_template core_competency\\external count_competencies_in_template \N moodle moodle/competency:competencyview \N +229 core_competency_search_competencies core_competency\\external search_competencies \N moodle moodle/competency:competencyview \N +230 core_competency_set_parent_competency core_competency\\external set_parent_competency \N moodle moodle/competency:competencymanage \N +231 core_competency_move_up_competency core_competency\\external move_up_competency \N moodle moodle/competency:competencymanage \N +232 core_competency_move_down_competency core_competency\\external move_down_competency \N moodle moodle/competency:competencymanage \N +233 core_competency_list_course_module_competencies core_competency\\external list_course_module_competencies \N moodle moodle/competency:coursecompetencyview \N +234 core_competency_count_course_module_competencies core_competency\\external count_course_module_competencies \N moodle moodle/competency:coursecompetencyview \N +235 core_competency_list_course_competencies core_competency\\external list_course_competencies \N moodle moodle/competency:coursecompetencyview moodle_mobile_app +236 core_competency_count_competencies_in_course core_competency\\external count_competencies_in_course \N moodle moodle/competency:coursecompetencyview \N +237 core_competency_count_courses_using_competency core_competency\\external count_courses_using_competency \N moodle moodle/competency:coursecompetencyview \N +238 core_competency_add_competency_to_course core_competency\\external add_competency_to_course \N moodle moodle/competency:coursecompetencymanage \N +239 core_competency_add_competency_to_template core_competency\\external add_competency_to_template \N moodle moodle/competency:templatemanage \N +240 core_competency_remove_competency_from_course core_competency\\external remove_competency_from_course \N moodle moodle/competency:coursecompetencymanage \N +241 core_competency_set_course_competency_ruleoutcome core_competency\\external set_course_competency_ruleoutcome \N moodle moodle/competency:coursecompetencymanage \N +341 mod_chat_view_chat mod_chat_external view_chat \N mod_chat mod/chat:chat moodle_mobile_app +242 core_competency_remove_competency_from_template core_competency\\external remove_competency_from_template \N moodle moodle/competency:templatemanage \N +243 core_competency_reorder_course_competency core_competency\\external reorder_course_competency \N moodle moodle/competency:coursecompetencymanage \N +244 core_competency_reorder_template_competency core_competency\\external reorder_template_competency \N moodle moodle/competency:templatemanage \N +245 core_competency_create_template core_competency\\external create_template \N moodle moodle/competency:templatemanage \N +246 core_competency_duplicate_template core_competency\\external duplicate_template \N moodle moodle/competency:templatemanage \N +247 core_competency_read_template core_competency\\external read_template \N moodle moodle/competency:templateview \N +248 core_competency_delete_template core_competency\\external delete_template \N moodle moodle/competency:templatemanage \N +249 core_competency_update_template core_competency\\external update_template \N moodle moodle/competency:templatemanage \N +250 core_competency_list_templates core_competency\\external list_templates \N moodle moodle/competency:templateview \N +251 core_competency_list_templates_using_competency core_competency\\external list_templates_using_competency \N moodle moodle/competency:templateview \N +252 core_competency_count_templates core_competency\\external count_templates \N moodle moodle/competency:templateview \N +253 core_competency_count_templates_using_competency core_competency\\external count_templates_using_competency \N moodle moodle/competency:templateview \N +254 core_competency_create_plan core_competency\\external create_plan \N moodle moodle/competency:planmanage \N +255 core_competency_update_plan core_competency\\external update_plan \N moodle moodle/competency:planmanage \N +256 core_competency_complete_plan core_competency\\external complete_plan \N moodle moodle/competency:planmanage \N +257 core_competency_reopen_plan core_competency\\external reopen_plan \N moodle moodle/competency:planmanage \N +258 core_competency_read_plan core_competency\\external read_plan \N moodle moodle/competency:planviewown \N +259 core_competency_delete_plan core_competency\\external delete_plan \N moodle moodle/competency:planmanage \N +260 core_competency_list_user_plans core_competency\\external list_user_plans \N moodle moodle/competency:planviewown \N +261 core_competency_list_plan_competencies core_competency\\external list_plan_competencies \N moodle moodle/competency:planviewown \N +262 core_competency_add_competency_to_plan core_competency\\external add_competency_to_plan \N moodle moodle/competency:planmanage \N +263 core_competency_remove_competency_from_plan core_competency\\external remove_competency_from_plan \N moodle moodle/competency:planmanage \N +264 core_competency_reorder_plan_competency core_competency\\external reorder_plan_competency \N moodle moodle/competency:planmanage \N +265 core_competency_plan_request_review core_competency\\external plan_request_review \N moodle moodle/competency:planmanagedraft \N +266 core_competency_plan_start_review core_competency\\external plan_start_review \N moodle moodle/competency:planmanage \N +267 core_competency_plan_stop_review core_competency\\external plan_stop_review \N moodle moodle/competency:planmanage \N +268 core_competency_plan_cancel_review_request core_competency\\external plan_cancel_review_request \N moodle moodle/competency:planmanagedraft \N +269 core_competency_approve_plan core_competency\\external approve_plan \N moodle moodle/competency:planmanage \N +270 core_competency_unapprove_plan core_competency\\external unapprove_plan \N moodle moodle/competency:planmanage \N +271 core_competency_template_has_related_data core_competency\\external template_has_related_data \N moodle moodle/competency:templateview \N +272 core_competency_get_scale_values core_competency\\external get_scale_values \N moodle moodle/competency:competencymanage moodle_mobile_app +273 core_competency_add_related_competency core_competency\\external add_related_competency \N moodle moodle/competency:competencymanage \N +274 core_competency_remove_related_competency core_competency\\external remove_related_competency \N moodle moodle/competency:competencymanage \N +275 core_competency_read_user_evidence core_competency\\external read_user_evidence \N moodle moodle/competency:userevidenceview \N +276 core_competency_delete_user_evidence core_competency\\external delete_user_evidence \N moodle moodle/competency:userevidencemanageown \N +277 core_competency_create_user_evidence_competency core_competency\\external create_user_evidence_competency \N moodle moodle/competency:userevidencemanageown, moodle/competency:competencyview \N +278 core_competency_delete_user_evidence_competency core_competency\\external delete_user_evidence_competency \N moodle moodle/competency:userevidencemanageown \N +279 core_competency_user_competency_cancel_review_request core_competency\\external user_competency_cancel_review_request \N moodle moodle/competency:userevidencemanageown \N +280 core_competency_user_competency_request_review core_competency\\external user_competency_request_review \N moodle moodle/competency:userevidencemanageown \N +281 core_competency_user_competency_start_review core_competency\\external user_competency_start_review \N moodle moodle/competency:competencygrade \N +282 core_competency_user_competency_stop_review core_competency\\external user_competency_stop_review \N moodle moodle/competency:competencygrade \N +283 core_competency_user_competency_viewed core_competency\\external user_competency_viewed \N moodle moodle/competency:usercompetencyview moodle_mobile_app +284 core_competency_user_competency_viewed_in_plan core_competency\\external user_competency_viewed_in_plan \N moodle moodle/competency:usercompetencyview moodle_mobile_app +285 core_competency_user_competency_viewed_in_course core_competency\\external user_competency_viewed_in_course \N moodle moodle/competency:usercompetencyview moodle_mobile_app +286 core_competency_user_competency_plan_viewed core_competency\\external user_competency_plan_viewed \N moodle moodle/competency:usercompetencyview moodle_mobile_app +287 core_competency_grade_competency core_competency\\external grade_competency \N moodle moodle/competency:competencygrade \N +288 core_competency_grade_competency_in_plan core_competency\\external grade_competency_in_plan \N moodle moodle/competency:competencygrade \N +289 core_competency_grade_competency_in_course core_competency\\external grade_competency_in_course \N moodle moodle/competency:competencygrade moodle_mobile_app +290 core_competency_unlink_plan_from_template core_competency\\external unlink_plan_from_template \N moodle moodle/competency:planmanage \N +291 core_competency_template_viewed core_competency\\external template_viewed \N moodle moodle/competency:templateview \N +292 core_competency_request_review_of_user_evidence_linked_competencies core_competency\\external request_review_of_user_evidence_linked_competencies \N moodle moodle/competency:userevidencemanageown \N +293 core_competency_update_course_competency_settings core_competency\\external update_course_competency_settings \N moodle moodle/competency:coursecompetencyconfigure \N +294 core_competency_delete_evidence core_competency\\external delete_evidence \N moodle moodle/competency:evidencedelete moodle_mobile_app +295 core_webservice_get_site_info core_webservice_external get_site_info webservice/externallib.php moodle moodle_mobile_app +296 core_block_get_course_blocks core_block_external get_course_blocks \N moodle moodle_mobile_app +297 core_block_get_dashboard_blocks core_block_external get_dashboard_blocks \N moodle moodle_mobile_app +298 core_filters_get_available_in_context core_filters\\external get_available_in_context \N moodle moodle_mobile_app +299 core_customfield_delete_field core_customfield_external delete_field customfield/externallib.php moodle \N +300 core_customfield_reload_template core_customfield_external reload_template customfield/externallib.php moodle \N +301 core_customfield_create_category core_customfield_external create_category customfield/externallib.php moodle \N +302 core_customfield_delete_category core_customfield_external delete_category customfield/externallib.php moodle \N +303 core_customfield_move_field core_customfield_external move_field customfield/externallib.php moodle \N +304 core_customfield_move_category core_customfield_external move_category customfield/externallib.php moodle \N +305 core_h5p_get_trusted_h5p_file core_h5p\\external get_trusted_h5p_file \N moodle moodle_mobile_app +306 core_table_get_dynamic_table_content core_table\\external\\dynamic\\get execute \N moodle moodle_mobile_app +307 core_xapi_statement_post core_xapi\\external\\post_statement execute \N moodle moodle_mobile_app +308 core_contentbank_delete_content core_contentbank\\external\\delete_content execute \N moodle moodle/contentbank:deleteanycontent \N +309 core_contentbank_rename_content core_contentbank\\external\\rename_content execute \N moodle moodle/contentbank:manageowncontent \N +310 core_create_userfeedback_action_record core\\external\\record_userfeedback_action execute \N moodle \N +311 core_payment_get_available_gateways core_payment\\external\\get_available_gateways execute \N moodle \N +312 mod_assign_copy_previous_attempt mod_assign_external copy_previous_attempt mod/assign/externallib.php mod_assign mod/assign:view, mod/assign:submit \N +313 mod_assign_get_grades mod_assign_external get_grades mod/assign/externallib.php mod_assign moodle_mobile_app +314 mod_assign_get_assignments mod_assign_external get_assignments mod/assign/externallib.php mod_assign moodle_mobile_app +315 mod_assign_get_submissions mod_assign_external get_submissions mod/assign/externallib.php mod_assign moodle_mobile_app +316 mod_assign_get_user_flags mod_assign_external get_user_flags mod/assign/externallib.php mod_assign moodle_mobile_app +317 mod_assign_set_user_flags mod_assign_external set_user_flags mod/assign/externallib.php mod_assign mod/assign:grade moodle_mobile_app +318 mod_assign_get_user_mappings mod_assign_external get_user_mappings mod/assign/externallib.php mod_assign moodle_mobile_app +319 mod_assign_revert_submissions_to_draft mod_assign_external revert_submissions_to_draft mod/assign/externallib.php mod_assign moodle_mobile_app +320 mod_assign_lock_submissions mod_assign_external lock_submissions mod/assign/externallib.php mod_assign moodle_mobile_app +321 mod_assign_unlock_submissions mod_assign_external unlock_submissions mod/assign/externallib.php mod_assign moodle_mobile_app +322 mod_assign_save_submission mod_assign_external save_submission mod/assign/externallib.php mod_assign moodle_mobile_app +323 mod_assign_submit_for_grading mod_assign_external submit_for_grading mod/assign/externallib.php mod_assign moodle_mobile_app +324 mod_assign_save_grade mod_assign_external save_grade mod/assign/externallib.php mod_assign moodle_mobile_app +325 mod_assign_save_grades mod_assign_external save_grades mod/assign/externallib.php mod_assign moodle_mobile_app +326 mod_assign_save_user_extensions mod_assign_external save_user_extensions mod/assign/externallib.php mod_assign moodle_mobile_app +327 mod_assign_reveal_identities mod_assign_external reveal_identities mod/assign/externallib.php mod_assign moodle_mobile_app +328 mod_assign_view_grading_table mod_assign_external view_grading_table mod/assign/externallib.php mod_assign mod/assign:view, mod/assign:viewgrades moodle_mobile_app +329 mod_assign_view_submission_status mod_assign_external view_submission_status mod/assign/externallib.php mod_assign mod/assign:view moodle_mobile_app +330 mod_assign_get_submission_status mod_assign_external get_submission_status mod/assign/externallib.php mod_assign mod/assign:view moodle_mobile_app +331 mod_assign_list_participants mod_assign_external list_participants mod/assign/externallib.php mod_assign mod/assign:view, mod/assign:viewgrades moodle_mobile_app +332 mod_assign_submit_grading_form mod_assign_external submit_grading_form mod/assign/externallib.php mod_assign mod/assign:grade moodle_mobile_app +333 mod_assign_get_participant mod_assign_external get_participant mod/assign/externallib.php mod_assign mod/assign:view, mod/assign:viewgrades moodle_mobile_app +334 mod_assign_view_assign mod_assign_external view_assign mod/assign/externallib.php mod_assign mod/assign:view moodle_mobile_app +335 mod_book_view_book mod_book_external view_book \N mod_book mod/book:read moodle_mobile_app +336 mod_book_get_books_by_courses mod_book_external get_books_by_courses \N mod_book moodle_mobile_app +337 mod_chat_login_user mod_chat_external login_user \N mod_chat mod/chat:chat moodle_mobile_app +338 mod_chat_get_chat_users mod_chat_external get_chat_users \N mod_chat mod/chat:chat moodle_mobile_app +339 mod_chat_send_chat_message mod_chat_external send_chat_message \N mod_chat mod/chat:chat moodle_mobile_app +340 mod_chat_get_chat_latest_messages mod_chat_external get_chat_latest_messages \N mod_chat mod/chat:chat moodle_mobile_app +342 mod_chat_get_chats_by_courses mod_chat_external get_chats_by_courses \N mod_chat moodle_mobile_app +343 mod_chat_get_sessions mod_chat_external get_sessions \N mod_chat moodle_mobile_app +344 mod_chat_get_session_messages mod_chat_external get_session_messages \N mod_chat moodle_mobile_app +345 mod_choice_get_choice_results mod_choice_external get_choice_results \N mod_choice moodle_mobile_app +346 mod_choice_get_choice_options mod_choice_external get_choice_options \N mod_choice mod/choice:choose moodle_mobile_app +347 mod_choice_submit_choice_response mod_choice_external submit_choice_response \N mod_choice mod/choice:choose moodle_mobile_app +348 mod_choice_view_choice mod_choice_external view_choice \N mod_choice moodle_mobile_app +349 mod_choice_get_choices_by_courses mod_choice_external get_choices_by_courses \N mod_choice moodle_mobile_app +350 mod_choice_delete_choice_responses mod_choice_external delete_choice_responses \N mod_choice mod/choice:choose moodle_mobile_app +351 mod_data_get_databases_by_courses mod_data_external get_databases_by_courses \N mod_data mod/data:viewentry moodle_mobile_app +352 mod_data_view_database mod_data_external view_database \N mod_data mod/data:viewentry moodle_mobile_app +353 mod_data_get_data_access_information mod_data_external get_data_access_information \N mod_data mod/data:viewentry moodle_mobile_app +354 mod_data_get_entries mod_data_external get_entries \N mod_data mod/data:viewentry moodle_mobile_app +355 mod_data_get_entry mod_data_external get_entry \N mod_data mod/data:viewentry moodle_mobile_app +356 mod_data_get_fields mod_data_external get_fields \N mod_data mod/data:viewentry moodle_mobile_app +357 mod_data_search_entries mod_data_external search_entries \N mod_data mod/data:viewentry moodle_mobile_app +358 mod_data_approve_entry mod_data_external approve_entry \N mod_data mod/data:approve moodle_mobile_app +359 mod_data_delete_entry mod_data_external delete_entry \N mod_data mod/data:manageentries moodle_mobile_app +360 mod_data_add_entry mod_data_external add_entry \N mod_data mod/data:writeentry moodle_mobile_app +361 mod_data_update_entry mod_data_external update_entry \N mod_data mod/data:writeentry moodle_mobile_app +362 mod_feedback_get_feedbacks_by_courses mod_feedback_external get_feedbacks_by_courses \N mod_feedback mod/feedback:view moodle_mobile_app +363 mod_feedback_get_feedback_access_information mod_feedback_external get_feedback_access_information \N mod_feedback mod/feedback:view moodle_mobile_app +364 mod_feedback_view_feedback mod_feedback_external view_feedback \N mod_feedback mod/feedback:view moodle_mobile_app +365 mod_feedback_get_current_completed_tmp mod_feedback_external get_current_completed_tmp \N mod_feedback mod/feedback:view moodle_mobile_app +366 mod_feedback_get_items mod_feedback_external get_items \N mod_feedback mod/feedback:view moodle_mobile_app +367 mod_feedback_launch_feedback mod_feedback_external launch_feedback \N mod_feedback mod/feedback:complete moodle_mobile_app +368 mod_feedback_get_page_items mod_feedback_external get_page_items \N mod_feedback mod/feedback:complete moodle_mobile_app +369 mod_feedback_process_page mod_feedback_external process_page \N mod_feedback mod/feedback:complete moodle_mobile_app +370 mod_feedback_get_analysis mod_feedback_external get_analysis \N mod_feedback mod/feedback:viewanalysepage moodle_mobile_app +371 mod_feedback_get_unfinished_responses mod_feedback_external get_unfinished_responses \N mod_feedback mod/feedback:view moodle_mobile_app +372 mod_feedback_get_finished_responses mod_feedback_external get_finished_responses \N mod_feedback mod/feedback:view moodle_mobile_app +373 mod_feedback_get_non_respondents mod_feedback_external get_non_respondents \N mod_feedback mod/feedback:viewreports moodle_mobile_app +374 mod_feedback_get_responses_analysis mod_feedback_external get_responses_analysis \N mod_feedback mod/feedback:viewreports moodle_mobile_app +375 mod_feedback_get_last_completed mod_feedback_external get_last_completed \N mod_feedback mod/feedback:view moodle_mobile_app +376 mod_folder_view_folder mod_folder_external view_folder \N mod_folder mod/folder:view moodle_mobile_app +377 mod_folder_get_folders_by_courses mod_folder_external get_folders_by_courses \N mod_folder mod/folder:view moodle_mobile_app +378 mod_forum_get_forums_by_courses mod_forum_external get_forums_by_courses mod/forum/externallib.php mod_forum mod/forum:viewdiscussion moodle_mobile_app +379 mod_forum_get_discussion_posts mod_forum_external get_discussion_posts mod/forum/externallib.php mod_forum mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting moodle_mobile_app +380 mod_forum_get_forum_discussion_posts mod_forum_external get_forum_discussion_posts mod/forum/externallib.php mod_forum mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting moodle_mobile_app +381 mod_forum_get_forum_discussions_paginated mod_forum_external get_forum_discussions_paginated mod/forum/externallib.php mod_forum mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting moodle_mobile_app +382 mod_forum_get_forum_discussions mod_forum_external get_forum_discussions mod/forum/externallib.php mod_forum mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting moodle_mobile_app +383 mod_forum_view_forum mod_forum_external view_forum mod/forum/externallib.php mod_forum mod/forum:viewdiscussion moodle_mobile_app +384 mod_forum_view_forum_discussion mod_forum_external view_forum_discussion mod/forum/externallib.php mod_forum mod/forum:viewdiscussion moodle_mobile_app +385 mod_forum_add_discussion_post mod_forum_external add_discussion_post mod/forum/externallib.php mod_forum mod/forum:replypost moodle_mobile_app +386 mod_forum_add_discussion mod_forum_external add_discussion mod/forum/externallib.php mod_forum mod/forum:startdiscussion moodle_mobile_app +387 mod_forum_can_add_discussion mod_forum_external can_add_discussion mod/forum/externallib.php mod_forum moodle_mobile_app +388 mod_forum_get_forum_access_information mod_forum_external get_forum_access_information \N mod_forum moodle_mobile_app +389 mod_forum_set_subscription_state mod_forum_external set_subscription_state mod/forum/externallib.php mod_forum moodle_mobile_app +390 mod_forum_set_lock_state mod_forum_external set_lock_state mod/forum/externallib.php mod_forum moodle/course:manageactivities moodle_mobile_app +441 mod_lti_get_tool_launch_data mod_lti_external get_tool_launch_data \N mod_lti mod/lti:view moodle_mobile_app +391 mod_forum_toggle_favourite_state mod_forum_external toggle_favourite_state mod/forum/externallib.php mod_forum moodle_mobile_app +392 mod_forum_set_pin_state mod_forum_external set_pin_state mod/forum/externallib.php mod_forum moodle_mobile_app +393 mod_forum_delete_post mod_forum_external delete_post mod/forum/externallib.php mod_forum moodle_mobile_app +394 mod_forum_get_discussion_posts_by_userid mod_forum_external get_discussion_posts_by_userid mod/forum/externallib.php mod_forum mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting \N +395 mod_forum_get_discussion_post mod_forum_external get_discussion_post mod/forum/externallib.php mod_forum moodle_mobile_app +396 mod_forum_prepare_draft_area_for_post mod_forum_external prepare_draft_area_for_post mod/forum/externallib.php mod_forum moodle_mobile_app +397 mod_forum_update_discussion_post mod_forum_external update_discussion_post mod/forum/externallib.php mod_forum moodle_mobile_app +398 mod_glossary_get_glossaries_by_courses mod_glossary_external get_glossaries_by_courses \N mod_glossary mod/glossary:view moodle_mobile_app +399 mod_glossary_view_glossary mod_glossary_external view_glossary \N mod_glossary mod/glossary:view moodle_mobile_app +400 mod_glossary_view_entry mod_glossary_external view_entry \N mod_glossary mod/glossary:view moodle_mobile_app +401 mod_glossary_get_entries_by_letter mod_glossary_external get_entries_by_letter \N mod_glossary mod/glossary:view moodle_mobile_app +402 mod_glossary_get_entries_by_date mod_glossary_external get_entries_by_date \N mod_glossary mod/glossary:view moodle_mobile_app +403 mod_glossary_get_categories mod_glossary_external get_categories \N mod_glossary mod/glossary:view moodle_mobile_app +404 mod_glossary_get_entries_by_category mod_glossary_external get_entries_by_category \N mod_glossary mod/glossary:view moodle_mobile_app +405 mod_glossary_get_authors mod_glossary_external get_authors \N mod_glossary mod/glossary:view moodle_mobile_app +406 mod_glossary_get_entries_by_author mod_glossary_external get_entries_by_author \N mod_glossary mod/glossary:view moodle_mobile_app +407 mod_glossary_get_entries_by_author_id mod_glossary_external get_entries_by_author_id \N mod_glossary mod/glossary:view moodle_mobile_app +408 mod_glossary_get_entries_by_search mod_glossary_external get_entries_by_search \N mod_glossary mod/glossary:view moodle_mobile_app +409 mod_glossary_get_entries_by_term mod_glossary_external get_entries_by_term \N mod_glossary mod/glossary:view moodle_mobile_app +410 mod_glossary_get_entries_to_approve mod_glossary_external get_entries_to_approve \N mod_glossary mod/glossary:approve moodle_mobile_app +411 mod_glossary_get_entry_by_id mod_glossary_external get_entry_by_id \N mod_glossary mod/glossary:view moodle_mobile_app +412 mod_glossary_add_entry mod_glossary_external add_entry \N mod_glossary mod/glossary:write moodle_mobile_app +413 mod_glossary_delete_entry mod_glossary\\external\\delete_entry execute \N mod_glossary moodle_mobile_app +414 mod_glossary_update_entry mod_glossary\\external\\update_entry execute \N mod_glossary moodle_mobile_app +415 mod_glossary_prepare_entry_for_edition mod_glossary\\external\\prepare_entry execute \N mod_glossary moodle_mobile_app +416 mod_h5pactivity_get_h5pactivity_access_information mod_h5pactivity\\external\\get_h5pactivity_access_information execute \N mod_h5pactivity mod/h5pactivity:view moodle_mobile_app +417 mod_h5pactivity_view_h5pactivity mod_h5pactivity\\external\\view_h5pactivity execute \N mod_h5pactivity mod/h5pactivity:view moodle_mobile_app +418 mod_h5pactivity_get_attempts mod_h5pactivity\\external\\get_attempts execute \N mod_h5pactivity mod/h5pactivity:view moodle_mobile_app +419 mod_h5pactivity_get_results mod_h5pactivity\\external\\get_results execute \N mod_h5pactivity mod/h5pactivity:view moodle_mobile_app +420 mod_h5pactivity_get_h5pactivities_by_courses mod_h5pactivity\\external\\get_h5pactivities_by_courses execute \N mod_h5pactivity mod/h5pactivity:view moodle_mobile_app +421 mod_imscp_view_imscp mod_imscp_external view_imscp \N mod_imscp mod/imscp:view moodle_mobile_app +422 mod_imscp_get_imscps_by_courses mod_imscp_external get_imscps_by_courses \N mod_imscp mod/imscp:view moodle_mobile_app +423 mod_label_get_labels_by_courses mod_label_external get_labels_by_courses \N mod_label mod/label:view moodle_mobile_app +424 mod_lesson_get_lessons_by_courses mod_lesson_external get_lessons_by_courses \N mod_lesson mod/lesson:view moodle_mobile_app +425 mod_lesson_get_lesson_access_information mod_lesson_external get_lesson_access_information \N mod_lesson mod/lesson:view moodle_mobile_app +426 mod_lesson_view_lesson mod_lesson_external view_lesson \N mod_lesson mod/lesson:view moodle_mobile_app +427 mod_lesson_get_questions_attempts mod_lesson_external get_questions_attempts \N mod_lesson mod/lesson:view moodle_mobile_app +428 mod_lesson_get_user_grade mod_lesson_external get_user_grade \N mod_lesson mod/lesson:view moodle_mobile_app +429 mod_lesson_get_user_attempt_grade mod_lesson_external get_user_attempt_grade \N mod_lesson mod/lesson:view moodle_mobile_app +430 mod_lesson_get_content_pages_viewed mod_lesson_external get_content_pages_viewed \N mod_lesson mod/lesson:view moodle_mobile_app +431 mod_lesson_get_user_timers mod_lesson_external get_user_timers \N mod_lesson mod/lesson:view moodle_mobile_app +432 mod_lesson_get_pages mod_lesson_external get_pages \N mod_lesson mod/lesson:view moodle_mobile_app +433 mod_lesson_launch_attempt mod_lesson_external launch_attempt \N mod_lesson mod/lesson:view moodle_mobile_app +434 mod_lesson_get_page_data mod_lesson_external get_page_data \N mod_lesson mod/lesson:view moodle_mobile_app +435 mod_lesson_process_page mod_lesson_external process_page \N mod_lesson mod/lesson:view moodle_mobile_app +436 mod_lesson_finish_attempt mod_lesson_external finish_attempt \N mod_lesson mod/lesson:view moodle_mobile_app +437 mod_lesson_get_attempts_overview mod_lesson_external get_attempts_overview \N mod_lesson mod/lesson:viewreports moodle_mobile_app +438 mod_lesson_get_user_attempt mod_lesson_external get_user_attempt \N mod_lesson mod/lesson:viewreports moodle_mobile_app +439 mod_lesson_get_pages_possible_jumps mod_lesson_external get_pages_possible_jumps \N mod_lesson mod/lesson:view moodle_mobile_app +440 mod_lesson_get_lesson mod_lesson_external get_lesson \N mod_lesson mod/lesson:view moodle_mobile_app +499 mod_wiki_edit_page mod_wiki_external edit_page \N mod_wiki mod/wiki:editpage moodle_mobile_app +442 mod_lti_get_ltis_by_courses mod_lti_external get_ltis_by_courses \N mod_lti mod/lti:view moodle_mobile_app +443 mod_lti_view_lti mod_lti_external view_lti \N mod_lti mod/lti:view moodle_mobile_app +444 mod_lti_get_tool_proxies mod_lti_external get_tool_proxies \N mod_lti moodle/site:config \N +445 mod_lti_create_tool_proxy mod_lti_external create_tool_proxy \N mod_lti moodle/site:config \N +446 mod_lti_delete_tool_proxy mod_lti_external delete_tool_proxy \N mod_lti moodle/site:config \N +447 mod_lti_get_tool_proxy_registration_request mod_lti_external get_tool_proxy_registration_request \N mod_lti moodle/site:config \N +448 mod_lti_get_tool_types mod_lti_external get_tool_types \N mod_lti moodle/site:config \N +449 mod_lti_create_tool_type mod_lti_external create_tool_type \N mod_lti moodle/site:config \N +450 mod_lti_update_tool_type mod_lti_external update_tool_type \N mod_lti moodle/site:config \N +451 mod_lti_delete_tool_type mod_lti_external delete_tool_type \N mod_lti moodle/site:config \N +452 mod_lti_is_cartridge mod_lti_external is_cartridge \N mod_lti moodle/site:config \N +453 mod_page_view_page mod_page_external view_page \N mod_page mod/page:view moodle_mobile_app +454 mod_page_get_pages_by_courses mod_page_external get_pages_by_courses \N mod_page mod/page:view moodle_mobile_app +455 mod_quiz_get_quizzes_by_courses mod_quiz_external get_quizzes_by_courses \N mod_quiz mod/quiz:view moodle_mobile_app +456 mod_quiz_view_quiz mod_quiz_external view_quiz \N mod_quiz mod/quiz:view moodle_mobile_app +457 mod_quiz_get_user_attempts mod_quiz_external get_user_attempts \N mod_quiz mod/quiz:view moodle_mobile_app +458 mod_quiz_get_user_best_grade mod_quiz_external get_user_best_grade \N mod_quiz mod/quiz:view moodle_mobile_app +459 mod_quiz_get_combined_review_options mod_quiz_external get_combined_review_options \N mod_quiz mod/quiz:view moodle_mobile_app +460 mod_quiz_start_attempt mod_quiz_external start_attempt \N mod_quiz mod/quiz:attempt moodle_mobile_app +461 mod_quiz_get_attempt_data mod_quiz_external get_attempt_data \N mod_quiz mod/quiz:attempt moodle_mobile_app +462 mod_quiz_get_attempt_summary mod_quiz_external get_attempt_summary \N mod_quiz mod/quiz:attempt moodle_mobile_app +463 mod_quiz_save_attempt mod_quiz_external save_attempt \N mod_quiz mod/quiz:attempt moodle_mobile_app +464 mod_quiz_process_attempt mod_quiz_external process_attempt \N mod_quiz mod/quiz:attempt moodle_mobile_app +465 mod_quiz_get_attempt_review mod_quiz_external get_attempt_review \N mod_quiz mod/quiz:reviewmyattempts moodle_mobile_app +466 mod_quiz_view_attempt mod_quiz_external view_attempt \N mod_quiz mod/quiz:attempt moodle_mobile_app +467 mod_quiz_view_attempt_summary mod_quiz_external view_attempt_summary \N mod_quiz mod/quiz:attempt moodle_mobile_app +468 mod_quiz_view_attempt_review mod_quiz_external view_attempt_review \N mod_quiz mod/quiz:reviewmyattempts moodle_mobile_app +469 mod_quiz_get_quiz_feedback_for_grade mod_quiz_external get_quiz_feedback_for_grade \N mod_quiz mod/quiz:view moodle_mobile_app +470 mod_quiz_get_quiz_access_information mod_quiz_external get_quiz_access_information \N mod_quiz mod/quiz:view moodle_mobile_app +471 mod_quiz_get_attempt_access_information mod_quiz_external get_attempt_access_information \N mod_quiz mod/quiz:view moodle_mobile_app +472 mod_quiz_get_quiz_required_qtypes mod_quiz_external get_quiz_required_qtypes \N mod_quiz mod/quiz:view moodle_mobile_app +473 mod_resource_view_resource mod_resource_external view_resource \N mod_resource mod/resource:view moodle_mobile_app +474 mod_resource_get_resources_by_courses mod_resource_external get_resources_by_courses \N mod_resource mod/resource:view moodle_mobile_app +475 mod_scorm_view_scorm mod_scorm_external view_scorm \N mod_scorm moodle_mobile_app +476 mod_scorm_get_scorm_attempt_count mod_scorm_external get_scorm_attempt_count \N mod_scorm moodle_mobile_app +477 mod_scorm_get_scorm_scoes mod_scorm_external get_scorm_scoes \N mod_scorm moodle_mobile_app +478 mod_scorm_get_scorm_user_data mod_scorm_external get_scorm_user_data \N mod_scorm moodle_mobile_app +479 mod_scorm_insert_scorm_tracks mod_scorm_external insert_scorm_tracks \N mod_scorm mod/scorm:savetrack moodle_mobile_app +480 mod_scorm_get_scorm_sco_tracks mod_scorm_external get_scorm_sco_tracks \N mod_scorm moodle_mobile_app +481 mod_scorm_get_scorms_by_courses mod_scorm_external get_scorms_by_courses \N mod_scorm moodle_mobile_app +482 mod_scorm_launch_sco mod_scorm_external launch_sco \N mod_scorm moodle_mobile_app +483 mod_scorm_get_scorm_access_information mod_scorm_external get_scorm_access_information \N mod_scorm moodle_mobile_app +484 mod_survey_get_surveys_by_courses mod_survey_external get_surveys_by_courses \N mod_survey moodle_mobile_app +485 mod_survey_view_survey mod_survey_external view_survey \N mod_survey mod/survey:participate moodle_mobile_app +486 mod_survey_get_questions mod_survey_external get_questions \N mod_survey mod/survey:participate moodle_mobile_app +487 mod_survey_submit_answers mod_survey_external submit_answers \N mod_survey mod/survey:participate moodle_mobile_app +488 mod_url_view_url mod_url_external view_url \N mod_url mod/url:view moodle_mobile_app +489 mod_url_get_urls_by_courses mod_url_external get_urls_by_courses \N mod_url mod/url:view moodle_mobile_app +490 mod_wiki_get_wikis_by_courses mod_wiki_external get_wikis_by_courses \N mod_wiki mod/wiki:viewpage moodle_mobile_app +491 mod_wiki_view_wiki mod_wiki_external view_wiki \N mod_wiki mod/wiki:viewpage moodle_mobile_app +492 mod_wiki_view_page mod_wiki_external view_page \N mod_wiki mod/wiki:viewpage moodle_mobile_app +493 mod_wiki_get_subwikis mod_wiki_external get_subwikis \N mod_wiki mod/wiki:viewpage moodle_mobile_app +494 mod_wiki_get_subwiki_pages mod_wiki_external get_subwiki_pages \N mod_wiki mod/wiki:viewpage moodle_mobile_app +495 mod_wiki_get_subwiki_files mod_wiki_external get_subwiki_files \N mod_wiki mod/wiki:viewpage moodle_mobile_app +496 mod_wiki_get_page_contents mod_wiki_external get_page_contents \N mod_wiki mod/wiki:viewpage moodle_mobile_app +497 mod_wiki_get_page_for_editing mod_wiki_external get_page_for_editing \N mod_wiki mod/wiki:editpage moodle_mobile_app +498 mod_wiki_new_page mod_wiki_external new_page \N mod_wiki mod/wiki:editpage moodle_mobile_app +500 mod_workshop_get_workshops_by_courses mod_workshop_external get_workshops_by_courses \N mod_workshop mod/workshop:view moodle_mobile_app +501 mod_workshop_get_workshop_access_information mod_workshop_external get_workshop_access_information \N mod_workshop mod/workshop:view moodle_mobile_app +502 mod_workshop_get_user_plan mod_workshop_external get_user_plan \N mod_workshop mod/workshop:view moodle_mobile_app +503 mod_workshop_view_workshop mod_workshop_external view_workshop \N mod_workshop mod/workshop:view moodle_mobile_app +504 mod_workshop_add_submission mod_workshop_external add_submission \N mod_workshop mod/workshop:submit moodle_mobile_app +505 mod_workshop_update_submission mod_workshop_external update_submission \N mod_workshop mod/workshop:submit moodle_mobile_app +506 mod_workshop_delete_submission mod_workshop_external delete_submission \N mod_workshop mod/workshop:submit moodle_mobile_app +507 mod_workshop_get_submissions mod_workshop_external get_submissions \N mod_workshop moodle_mobile_app +508 mod_workshop_get_submission mod_workshop_external get_submission \N mod_workshop moodle_mobile_app +509 mod_workshop_get_submission_assessments mod_workshop_external get_submission_assessments \N mod_workshop moodle_mobile_app +510 mod_workshop_get_assessment mod_workshop_external get_assessment \N mod_workshop moodle_mobile_app +511 mod_workshop_get_assessment_form_definition mod_workshop_external get_assessment_form_definition \N mod_workshop moodle_mobile_app +512 mod_workshop_get_reviewer_assessments mod_workshop_external get_reviewer_assessments \N mod_workshop moodle_mobile_app +513 mod_workshop_update_assessment mod_workshop_external update_assessment \N mod_workshop moodle_mobile_app +514 mod_workshop_get_grades mod_workshop_external get_grades \N mod_workshop moodle_mobile_app +515 mod_workshop_evaluate_assessment mod_workshop_external evaluate_assessment \N mod_workshop moodle_mobile_app +516 mod_workshop_get_grades_report mod_workshop_external get_grades_report \N mod_workshop moodle_mobile_app +517 mod_workshop_view_submission mod_workshop_external view_submission \N mod_workshop mod/workshop:view moodle_mobile_app +518 mod_workshop_evaluate_submission mod_workshop_external evaluate_submission \N mod_workshop moodle_mobile_app +519 auth_email_get_signup_settings auth_email_external get_signup_settings \N auth_email \N +520 auth_email_signup_user auth_email_external signup_user \N auth_email \N +521 enrol_guest_get_instance_info enrol_guest_external get_instance_info \N enrol_guest moodle_mobile_app +522 enrol_manual_enrol_users enrol_manual_external enrol_users enrol/manual/externallib.php enrol_manual enrol/manual:enrol \N +523 enrol_manual_unenrol_users enrol_manual_external unenrol_users enrol/manual/externallib.php enrol_manual enrol/manual:unenrol \N +524 enrol_self_get_instance_info enrol_self_external get_instance_info enrol/self/externallib.php enrol_self moodle_mobile_app +525 enrol_self_enrol_user enrol_self_external enrol_user enrol/self/externallib.php enrol_self moodle_mobile_app +526 message_airnotifier_is_system_configured message_airnotifier_external is_system_configured message/output/airnotifier/externallib.php message_airnotifier moodle_mobile_app +527 message_airnotifier_are_notification_preferences_configured message_airnotifier_external are_notification_preferences_configured message/output/airnotifier/externallib.php message_airnotifier moodle_mobile_app +528 message_airnotifier_get_user_devices message_airnotifier_external get_user_devices message/output/airnotifier/externallib.php message_airnotifier moodle_mobile_app +529 message_airnotifier_enable_device message_airnotifier_external enable_device message/output/airnotifier/externallib.php message_airnotifier message/airnotifier:managedevice moodle_mobile_app +530 message_popup_get_popup_notifications message_popup_external get_popup_notifications message/output/popup/externallib.php message_popup moodle_mobile_app +531 message_popup_get_unread_popup_notification_count message_popup_external get_unread_popup_notification_count message/output/popup/externallib.php message_popup moodle_mobile_app +532 block_recentlyaccesseditems_get_recent_items block_recentlyaccesseditems\\external get_recent_items \N block_recentlyaccesseditems moodle_mobile_app +533 block_starredcourses_get_starred_courses block_starredcourses_external get_starred_courses block/starredcourses/classes/external.php block_starredcourses moodle_mobile_app +534 media_videojs_get_language media_videojs\\external\\get_language execute \N media_videojs \N +535 report_competency_data_for_report report_competency\\external data_for_report \N report_competency moodle/competency:coursecompetencyview \N +536 report_insights_set_notuseful_prediction report_insights\\external set_notuseful_prediction \N report_insights moodle_mobile_app +537 report_insights_set_fixed_prediction report_insights\\external set_fixed_prediction \N report_insights moodle_mobile_app +538 report_insights_action_executed report_insights\\external action_executed \N report_insights moodle_mobile_app +539 gradereport_overview_get_course_grades gradereport_overview_external get_course_grades \N gradereport_overview moodle_mobile_app +540 gradereport_overview_view_grade_report gradereport_overview_external view_grade_report \N gradereport_overview gradereport/overview:view moodle_mobile_app +541 gradereport_user_get_grades_table gradereport_user_external get_grades_table grade/report/user/externallib.php gradereport_user gradereport/user:view moodle_mobile_app +542 gradereport_user_view_grade_report gradereport_user_external view_grade_report grade/report/user/externallib.php gradereport_user gradereport/user:view moodle_mobile_app +543 gradereport_user_get_grade_items gradereport_user_external get_grade_items grade/report/user/externallib.php gradereport_user gradereport/user:view moodle_mobile_app +544 gradingform_guide_grader_gradingpanel_fetch gradingform_guide\\grades\\grader\\gradingpanel\\external\\fetch execute \N gradingform_guide \N +545 gradingform_guide_grader_gradingpanel_store gradingform_guide\\grades\\grader\\gradingpanel\\external\\store execute \N gradingform_guide \N +546 gradingform_rubric_grader_gradingpanel_fetch gradingform_rubric\\grades\\grader\\gradingpanel\\external\\fetch execute \N gradingform_rubric \N +547 gradingform_rubric_grader_gradingpanel_store gradingform_rubric\\grades\\grader\\gradingpanel\\external\\store execute \N gradingform_rubric \N +548 tool_analytics_potential_contexts tool_analytics\\external potential_contexts \N tool_analytics moodle_mobile_app +549 tool_dataprivacy_cancel_data_request tool_dataprivacy\\external cancel_data_request \N tool_dataprivacy \N +550 tool_dataprivacy_contact_dpo tool_dataprivacy\\external contact_dpo \N tool_dataprivacy \N +551 tool_dataprivacy_mark_complete tool_dataprivacy\\external mark_complete \N tool_dataprivacy tool/dataprivacy:managedatarequests \N +552 tool_dataprivacy_get_data_request tool_dataprivacy\\external get_data_request \N tool_dataprivacy tool/dataprivacy:managedatarequests \N +553 tool_dataprivacy_approve_data_request tool_dataprivacy\\external approve_data_request \N tool_dataprivacy tool/dataprivacy:managedatarequests \N +554 tool_dataprivacy_bulk_approve_data_requests tool_dataprivacy\\external bulk_approve_data_requests \N tool_dataprivacy tool/dataprivacy:managedatarequests \N +555 tool_dataprivacy_deny_data_request tool_dataprivacy\\external deny_data_request \N tool_dataprivacy tool/dataprivacy:managedatarequests \N +556 tool_dataprivacy_bulk_deny_data_requests tool_dataprivacy\\external bulk_deny_data_requests \N tool_dataprivacy tool/dataprivacy:managedatarequests \N +557 tool_dataprivacy_get_users tool_dataprivacy\\external get_users \N tool_dataprivacy tool/dataprivacy:managedatarequests \N +558 tool_dataprivacy_create_purpose_form tool_dataprivacy\\external create_purpose_form \N tool_dataprivacy \N +559 tool_dataprivacy_create_category_form tool_dataprivacy\\external create_category_form \N tool_dataprivacy \N +560 tool_dataprivacy_delete_purpose tool_dataprivacy\\external delete_purpose \N tool_dataprivacy \N +561 tool_dataprivacy_delete_category tool_dataprivacy\\external delete_category \N tool_dataprivacy \N +562 tool_dataprivacy_set_contextlevel_form tool_dataprivacy\\external set_contextlevel_form \N tool_dataprivacy \N +563 tool_dataprivacy_set_context_form tool_dataprivacy\\external set_context_form \N tool_dataprivacy \N +564 tool_dataprivacy_tree_extra_branches tool_dataprivacy\\external tree_extra_branches \N tool_dataprivacy \N +565 tool_dataprivacy_confirm_contexts_for_deletion tool_dataprivacy\\external confirm_contexts_for_deletion \N tool_dataprivacy \N +566 tool_dataprivacy_set_context_defaults tool_dataprivacy\\external set_context_defaults \N tool_dataprivacy tool/dataprivacy:managedataregistry \N +567 tool_dataprivacy_get_category_options tool_dataprivacy\\external get_category_options \N tool_dataprivacy tool/dataprivacy:managedataregistry \N +568 tool_dataprivacy_get_purpose_options tool_dataprivacy\\external get_purpose_options \N tool_dataprivacy tool/dataprivacy:managedataregistry \N +569 tool_dataprivacy_get_activity_options tool_dataprivacy\\external get_activity_options \N tool_dataprivacy tool/dataprivacy:managedataregistry \N +570 tool_lp_data_for_competency_frameworks_manage_page tool_lp\\external data_for_competency_frameworks_manage_page \N tool_lp moodle/competency:competencyview \N +571 tool_lp_data_for_competency_summary tool_lp\\external data_for_competency_summary \N tool_lp moodle/competency:competencyview \N +572 tool_lp_data_for_competencies_manage_page tool_lp\\external data_for_competencies_manage_page \N tool_lp moodle/competency:competencyview \N +573 tool_lp_list_courses_using_competency tool_lp\\external list_courses_using_competency \N tool_lp moodle/competency:coursecompetencyview \N +574 tool_lp_data_for_course_competencies_page tool_lp\\external data_for_course_competencies_page \N tool_lp moodle/competency:coursecompetencyview moodle_mobile_app +575 tool_lp_data_for_template_competencies_page tool_lp\\external data_for_template_competencies_page \N tool_lp moodle/competency:templateview \N +576 tool_lp_data_for_templates_manage_page tool_lp\\external data_for_templates_manage_page \N tool_lp moodle/competency:templateview \N +577 tool_lp_data_for_plans_page tool_lp\\external data_for_plans_page \N tool_lp moodle/competency:planviewown moodle_mobile_app +578 tool_lp_data_for_plan_page tool_lp\\external data_for_plan_page \N tool_lp moodle/competency:planview moodle_mobile_app +579 tool_lp_data_for_related_competencies_section tool_lp\\external data_for_related_competencies_section \N tool_lp moodle/competency:competencyview \N +580 tool_lp_search_users tool_lp\\external search_users \N tool_lp \N +581 tool_lp_search_cohorts core_cohort_external search_cohorts cohort/externallib.php tool_lp moodle/cohort:view \N +582 tool_lp_data_for_user_evidence_list_page tool_lp\\external data_for_user_evidence_list_page \N tool_lp moodle/competency:userevidenceview moodle_mobile_app +583 tool_lp_data_for_user_evidence_page tool_lp\\external data_for_user_evidence_page \N tool_lp moodle/competency:userevidenceview moodle_mobile_app +584 tool_lp_data_for_user_competency_summary tool_lp\\external data_for_user_competency_summary \N tool_lp moodle/competency:planview moodle_mobile_app +585 tool_lp_data_for_user_competency_summary_in_plan tool_lp\\external data_for_user_competency_summary_in_plan \N tool_lp moodle/competency:planview moodle_mobile_app +586 tool_lp_data_for_user_competency_summary_in_course tool_lp\\external data_for_user_competency_summary_in_course \N tool_lp moodle/competency:coursecompetencyview moodle_mobile_app +587 tool_mobile_get_plugins_supporting_mobile tool_mobile\\external get_plugins_supporting_mobile \N tool_mobile moodle_mobile_app +588 tool_mobile_get_public_config tool_mobile\\external get_public_config \N tool_mobile moodle_mobile_app +589 tool_mobile_get_config tool_mobile\\external get_config \N tool_mobile moodle_mobile_app +590 tool_mobile_get_autologin_key tool_mobile\\external get_autologin_key \N tool_mobile moodle_mobile_app +591 tool_mobile_get_content tool_mobile\\external get_content \N tool_mobile moodle_mobile_app +592 tool_mobile_call_external_functions tool_mobile\\external call_external_functions \N tool_mobile moodle_mobile_app +593 tool_mobile_validate_subscription_key tool_mobile\\external validate_subscription_key \N tool_mobile moodle_mobile_app +594 tool_mobile_get_tokens_for_qr_login tool_mobile\\external get_tokens_for_qr_login \N tool_mobile moodle_mobile_app +595 tool_moodlenet_verify_webfinger tool_moodlenet\\external verify_webfinger \N tool_moodlenet moodle_mobile_app +596 tool_moodlenet_search_courses tool_moodlenet\\external search_courses \N tool_moodlenet moodle_mobile_app +597 tool_policy_get_policy_version tool_policy\\external get_policy_version \N tool_policy \N +598 tool_policy_submit_accept_on_behalf tool_policy\\external submit_accept_on_behalf \N tool_policy \N +599 tool_templatelibrary_list_templates tool_templatelibrary\\external list_templates \N tool_templatelibrary \N +600 tool_templatelibrary_load_canonical_template tool_templatelibrary\\external load_canonical_template \N tool_templatelibrary \N +601 tool_usertours_fetch_and_start_tour tool_usertours\\external\\tour fetch_and_start_tour \N tool_usertours \N +602 tool_usertours_step_shown tool_usertours\\external\\tour step_shown \N tool_usertours \N +603 tool_usertours_complete_tour tool_usertours\\external\\tour complete_tour \N tool_usertours \N +604 tool_usertours_reset_tour tool_usertours\\external\\tour reset_tour \N tool_usertours \N +605 tool_xmldb_invoke_move_action tool_xmldb_external invoke_move_action \N tool_xmldb \N +606 paygw_paypal_get_config_for_js paygw_paypal\\external\\get_config_for_js execute \N paygw_paypal \N +607 paygw_paypal_create_transaction_complete paygw_paypal\\external\\transaction_complete execute \N paygw_paypal \N \. @@ -30456,7 +30873,7 @@ COPY public.mdl_external_functions (id, name, classname, methodname, classpath, -- Name: mdl_external_functions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_external_functions_id_seq', 610, true); +SELECT pg_catalog.setval('public.mdl_external_functions_id_seq', 607, true); -- @@ -30464,7 +30881,7 @@ SELECT pg_catalog.setval('public.mdl_external_functions_id_seq', 610, true); -- COPY public.mdl_external_services (id, name, enabled, requiredcapability, restrictedusers, component, timecreated, timemodified, shortname, downloadfiles, uploadfiles) FROM stdin; -1 Moodle mobile web service 1 \N 0 moodle 1609808471 1609892624 moodle_mobile_app 1 1 +1 Moodle mobile web service 0 \N 0 moodle 1612889059 1612889145 moodle_mobile_app 1 1 \. @@ -30490,364 +30907,360 @@ COPY public.mdl_external_services_functions (id, externalserviceid, functionname 15 1 core_calendar_submit_create_update_form 16 1 core_calendar_get_calendar_access_information 17 1 core_calendar_get_allowed_event_types -18 1 core_comment_get_comments -19 1 core_comment_add_comments -20 1 core_comment_delete_comments -21 1 core_completion_get_activities_completion_status -22 1 core_completion_get_course_completion_status -23 1 core_completion_mark_course_self_completed -24 1 core_completion_update_activity_completion_status_manually -25 1 core_course_get_categories -26 1 core_course_get_contents -27 1 core_course_get_course_module -28 1 core_course_get_course_module_by_instance -29 1 core_course_get_courses -30 1 core_course_search_courses -31 1 core_course_view_course -32 1 core_course_get_user_navigation_options -33 1 core_course_get_user_administration_options -34 1 core_course_get_courses_by_field -35 1 core_course_check_updates -36 1 core_course_get_updates_since -37 1 core_course_get_enrolled_courses_by_timeline_classification -38 1 core_course_get_recent_courses -39 1 core_course_set_favourite_courses -40 1 core_enrol_get_course_enrolment_methods -41 1 core_enrol_get_enrolled_users -42 1 core_enrol_search_users -43 1 core_enrol_get_users_courses -44 1 core_files_get_files -45 1 core_get_component_strings -46 1 core_grades_grader_gradingpanel_point_fetch -47 1 core_grades_grader_gradingpanel_point_store -48 1 core_grades_grader_gradingpanel_scale_fetch -49 1 core_grades_grader_gradingpanel_scale_store -50 1 core_group_get_activity_allowed_groups -51 1 core_group_get_activity_groupmode -52 1 core_group_get_course_groupings -53 1 core_group_get_course_groups -54 1 core_group_get_course_user_groups -55 1 core_message_mute_conversations -56 1 core_message_unmute_conversations -57 1 core_message_block_user -58 1 core_message_block_contacts -59 1 core_message_create_contacts +18 1 core_calendar_get_calendar_export_token +19 1 core_comment_get_comments +20 1 core_comment_add_comments +21 1 core_comment_delete_comments +22 1 core_completion_get_activities_completion_status +23 1 core_completion_get_course_completion_status +24 1 core_completion_mark_course_self_completed +25 1 core_completion_update_activity_completion_status_manually +26 1 core_course_get_categories +27 1 core_course_get_contents +28 1 core_course_get_course_module +29 1 core_course_get_course_module_by_instance +30 1 core_course_get_courses +31 1 core_course_search_courses +32 1 core_course_view_course +33 1 core_course_get_user_navigation_options +34 1 core_course_get_user_administration_options +35 1 core_course_get_courses_by_field +36 1 core_course_check_updates +37 1 core_course_get_updates_since +38 1 core_course_get_enrolled_courses_by_timeline_classification +39 1 core_course_get_recent_courses +40 1 core_course_set_favourite_courses +41 1 core_enrol_get_course_enrolment_methods +42 1 core_enrol_get_enrolled_users +43 1 core_enrol_search_users +44 1 core_enrol_get_users_courses +45 1 core_files_get_files +46 1 core_files_delete_draft_files +47 1 core_get_component_strings +48 1 core_grades_grader_gradingpanel_point_fetch +49 1 core_grades_grader_gradingpanel_point_store +50 1 core_grades_grader_gradingpanel_scale_fetch +51 1 core_grades_grader_gradingpanel_scale_store +52 1 core_group_get_activity_allowed_groups +53 1 core_group_get_activity_groupmode +54 1 core_group_get_course_groupings +55 1 core_group_get_course_groups +56 1 core_group_get_course_user_groups +57 1 core_message_mute_conversations +58 1 core_message_unmute_conversations +59 1 core_message_block_user 60 1 core_message_get_contact_requests 61 1 core_message_create_contact_request 62 1 core_message_confirm_contact_request 63 1 core_message_decline_contact_request 64 1 core_message_get_received_contact_requests_count 65 1 core_message_delete_contacts -66 1 core_message_delete_conversation -67 1 core_message_delete_conversations_by_id -68 1 core_message_delete_message -69 1 core_message_get_blocked_users -70 1 core_message_data_for_messagearea_search_messages -71 1 core_message_message_search_users -72 1 core_message_data_for_messagearea_conversations -73 1 core_message_data_for_messagearea_contacts -74 1 core_message_data_for_messagearea_messages -75 1 core_message_get_contacts -76 1 core_message_get_user_contacts -77 1 core_message_get_conversations -78 1 core_message_get_conversation -79 1 core_message_get_conversation_between_users -80 1 core_message_get_self_conversation -81 1 core_message_get_messages -82 1 core_message_get_conversation_counts -83 1 core_message_get_unread_conversation_counts -84 1 core_message_get_conversation_members -85 1 core_message_get_member_info -86 1 core_message_get_unread_conversations_count -87 1 core_message_mark_all_notifications_as_read -88 1 core_message_mark_all_messages_as_read -89 1 core_message_mark_all_conversation_messages_as_read -90 1 core_message_mark_message_read -91 1 core_message_mark_notification_read -92 1 core_message_message_processor_config_form -93 1 core_message_search_contacts -94 1 core_message_send_instant_messages -95 1 core_message_send_messages_to_conversation -96 1 core_message_get_conversation_messages -97 1 core_message_unblock_user -98 1 core_message_unblock_contacts -99 1 core_message_get_user_notification_preferences -100 1 core_message_get_user_message_preferences -101 1 core_message_set_favourite_conversations -102 1 core_message_unset_favourite_conversations -103 1 core_message_delete_message_for_all_users -104 1 core_notes_create_notes -105 1 core_notes_delete_notes -106 1 core_notes_get_course_notes -107 1 core_notes_view_notes -108 1 core_question_update_flag -109 1 core_rating_get_item_ratings -110 1 core_rating_add_rating -111 1 core_tag_get_tagindex -112 1 core_tag_get_tagindex_per_area -113 1 core_tag_get_tag_areas -114 1 core_tag_get_tag_collections -115 1 core_tag_get_tag_cloud -116 1 core_user_add_user_device -117 1 core_user_add_user_private_files -118 1 core_user_get_course_user_profiles -119 1 core_user_get_users_by_field -120 1 core_user_remove_user_device -121 1 core_user_update_user_preferences -122 1 core_user_view_user_list -123 1 core_user_view_user_profile -124 1 core_user_get_user_preferences -125 1 core_user_update_picture -126 1 core_user_set_user_preferences -127 1 core_user_agree_site_policy -128 1 core_user_get_private_files_info -129 1 core_competency_competency_viewed -130 1 mod_lesson_get_pages -131 1 core_competency_list_course_competencies -132 1 core_competency_get_scale_values -133 1 core_competency_user_competency_viewed -134 1 core_competency_user_competency_viewed_in_plan -135 1 core_competency_user_competency_viewed_in_course -136 1 core_competency_user_competency_plan_viewed -137 1 core_competency_grade_competency_in_course -138 1 core_competency_delete_evidence -139 1 core_webservice_get_site_info -140 1 core_block_get_course_blocks -141 1 core_block_get_dashboard_blocks -142 1 core_filters_get_available_in_context -143 1 core_h5p_get_trusted_h5p_file -144 1 core_table_get_dynamic_table_content -145 1 core_xapi_statement_post -146 1 mod_assign_get_grades -147 1 mod_assign_get_assignments -148 1 mod_assign_get_submissions -149 1 mod_assign_get_user_flags -150 1 mod_assign_set_user_flags -151 1 mod_assign_get_user_mappings -152 1 mod_assign_revert_submissions_to_draft -153 1 mod_assign_lock_submissions -154 1 mod_assign_unlock_submissions -155 1 mod_assign_save_submission -156 1 mod_assign_submit_for_grading -157 1 mod_assign_save_grade -158 1 mod_assign_save_grades -159 1 mod_assign_save_user_extensions -160 1 mod_assign_reveal_identities -161 1 mod_assign_view_grading_table -162 1 mod_assign_view_submission_status -163 1 mod_assign_get_submission_status -164 1 mod_assign_list_participants -165 1 mod_assign_submit_grading_form -166 1 mod_assign_get_participant -167 1 mod_assign_view_assign -168 1 mod_book_view_book -169 1 mod_book_get_books_by_courses -170 1 mod_chat_login_user -171 1 mod_chat_get_chat_users -172 1 mod_chat_send_chat_message -173 1 mod_chat_get_chat_latest_messages -174 1 mod_chat_view_chat -175 1 mod_chat_get_chats_by_courses -176 1 mod_chat_get_sessions -177 1 mod_chat_get_session_messages -178 1 mod_choice_get_choice_results -179 1 mod_choice_get_choice_options -180 1 mod_choice_submit_choice_response -181 1 mod_choice_view_choice -182 1 mod_choice_get_choices_by_courses -183 1 mod_choice_delete_choice_responses -184 1 mod_data_get_databases_by_courses -185 1 mod_data_view_database -186 1 mod_data_get_data_access_information -187 1 mod_data_get_entries -188 1 mod_data_get_entry -189 1 mod_data_get_fields -190 1 mod_data_search_entries -191 1 mod_data_approve_entry -192 1 mod_data_delete_entry -193 1 mod_data_add_entry -194 1 mod_data_update_entry -195 1 mod_feedback_get_feedbacks_by_courses -196 1 mod_feedback_get_feedback_access_information -197 1 mod_feedback_view_feedback -198 1 mod_feedback_get_current_completed_tmp -199 1 mod_feedback_get_items -200 1 mod_feedback_launch_feedback -201 1 mod_feedback_get_page_items -202 1 mod_feedback_process_page -203 1 mod_feedback_get_analysis -308 1 mod_url_view_url -204 1 mod_feedback_get_unfinished_responses -205 1 mod_feedback_get_finished_responses -206 1 mod_feedback_get_non_respondents -207 1 mod_feedback_get_responses_analysis -208 1 mod_feedback_get_last_completed -209 1 mod_folder_view_folder -210 1 mod_folder_get_folders_by_courses -211 1 mod_forum_get_forums_by_courses -212 1 mod_forum_get_discussion_posts -213 1 mod_forum_get_forum_discussion_posts -214 1 tool_mobile_get_config -215 1 mod_forum_get_forum_discussions_paginated -216 1 mod_forum_get_forum_discussions -217 1 mod_forum_view_forum -218 1 mod_forum_view_forum_discussion -219 1 mod_forum_add_discussion_post -220 1 mod_forum_add_discussion -221 1 mod_forum_can_add_discussion -222 1 mod_forum_get_forum_access_information -223 1 mod_forum_set_subscription_state -224 1 mod_forum_set_lock_state -225 1 mod_forum_toggle_favourite_state -226 1 mod_forum_set_pin_state -227 1 mod_forum_delete_post -228 1 mod_forum_get_discussion_post -229 1 mod_forum_prepare_draft_area_for_post -230 1 mod_forum_update_discussion_post -231 1 mod_glossary_get_glossaries_by_courses -232 1 mod_glossary_view_glossary -233 1 mod_glossary_view_entry -234 1 mod_glossary_get_entries_by_letter -235 1 mod_glossary_get_entries_by_date -236 1 mod_glossary_get_categories -237 1 mod_glossary_get_entries_by_category -238 1 mod_glossary_get_authors -239 1 mod_glossary_get_entries_by_author -240 1 mod_glossary_get_entries_by_author_id -241 1 mod_glossary_get_entries_by_search -242 1 mod_glossary_get_entries_by_term -243 1 mod_glossary_get_entries_to_approve -244 1 mod_glossary_get_entry_by_id -245 1 mod_glossary_add_entry -246 1 mod_h5pactivity_get_h5pactivity_access_information -247 1 mod_h5pactivity_view_h5pactivity -248 1 mod_h5pactivity_get_attempts -249 1 mod_h5pactivity_get_results -250 1 mod_h5pactivity_get_h5pactivities_by_courses -251 1 mod_imscp_view_imscp -252 1 mod_imscp_get_imscps_by_courses -253 1 mod_label_get_labels_by_courses -254 1 mod_lesson_get_lessons_by_courses -255 1 mod_lesson_get_lesson_access_information -256 1 mod_lesson_view_lesson -257 1 mod_lesson_get_questions_attempts -258 1 mod_lesson_get_user_grade -259 1 mod_lesson_get_user_attempt_grade -260 1 mod_lesson_get_content_pages_viewed -261 1 mod_lesson_get_user_timers -262 1 mod_lesson_launch_attempt -263 1 mod_lesson_get_page_data -264 1 mod_lesson_process_page -265 1 mod_lesson_finish_attempt -266 1 mod_lesson_get_attempts_overview -267 1 mod_lesson_get_user_attempt -268 1 mod_lesson_get_pages_possible_jumps -269 1 mod_lesson_get_lesson -270 1 mod_lti_get_tool_launch_data -271 1 mod_lti_get_ltis_by_courses -272 1 mod_lti_view_lti -273 1 mod_page_view_page -274 1 mod_page_get_pages_by_courses -275 1 mod_quiz_get_quizzes_by_courses -276 1 mod_quiz_view_quiz -277 1 mod_quiz_get_user_attempts -278 1 mod_quiz_get_user_best_grade -279 1 mod_quiz_get_combined_review_options -280 1 mod_quiz_start_attempt -281 1 mod_quiz_get_attempt_data -282 1 mod_quiz_get_attempt_summary -283 1 mod_quiz_save_attempt -284 1 mod_quiz_process_attempt -285 1 mod_quiz_get_attempt_review -286 1 mod_quiz_view_attempt -287 1 mod_quiz_view_attempt_summary -288 1 mod_quiz_view_attempt_review -289 1 mod_quiz_get_quiz_feedback_for_grade -290 1 mod_quiz_get_quiz_access_information -291 1 mod_quiz_get_attempt_access_information -292 1 mod_quiz_get_quiz_required_qtypes -293 1 mod_resource_view_resource -294 1 mod_resource_get_resources_by_courses -295 1 mod_scorm_view_scorm -296 1 mod_scorm_get_scorm_attempt_count -297 1 mod_scorm_get_scorm_scoes -298 1 mod_scorm_get_scorm_user_data -299 1 mod_scorm_insert_scorm_tracks -300 1 mod_scorm_get_scorm_sco_tracks -301 1 mod_scorm_get_scorms_by_courses -302 1 mod_scorm_launch_sco -303 1 mod_scorm_get_scorm_access_information -304 1 mod_survey_get_surveys_by_courses -305 1 mod_survey_view_survey -306 1 mod_survey_get_questions -307 1 mod_survey_submit_answers -309 1 mod_url_get_urls_by_courses -310 1 mod_wiki_get_wikis_by_courses -311 1 mod_wiki_view_wiki -312 1 mod_wiki_view_page -313 1 mod_wiki_get_subwikis -314 1 mod_wiki_get_subwiki_pages -315 1 mod_wiki_get_subwiki_files -316 1 mod_wiki_get_page_contents -317 1 mod_wiki_get_page_for_editing -318 1 mod_wiki_new_page -319 1 mod_wiki_edit_page -320 1 mod_workshop_get_workshops_by_courses -321 1 mod_workshop_get_workshop_access_information -322 1 mod_workshop_get_user_plan -323 1 mod_workshop_view_workshop -324 1 mod_workshop_add_submission -325 1 mod_workshop_update_submission -326 1 mod_workshop_delete_submission -327 1 mod_workshop_get_submissions -328 1 mod_workshop_get_submission -329 1 mod_workshop_get_submission_assessments -330 1 mod_workshop_get_assessment -331 1 mod_workshop_get_assessment_form_definition -332 1 mod_workshop_get_reviewer_assessments -333 1 mod_workshop_update_assessment -334 1 mod_workshop_get_grades -335 1 mod_workshop_evaluate_assessment -336 1 mod_workshop_get_grades_report -337 1 mod_workshop_view_submission -338 1 mod_workshop_evaluate_submission -339 1 enrol_guest_get_instance_info -340 1 enrol_self_get_instance_info -341 1 enrol_self_enrol_user -342 1 message_airnotifier_is_system_configured -343 1 message_airnotifier_are_notification_preferences_configured -344 1 message_airnotifier_get_user_devices -345 1 message_airnotifier_enable_device -346 1 message_popup_get_popup_notifications -347 1 message_popup_get_unread_popup_notification_count -348 1 block_recentlyaccesseditems_get_recent_items -349 1 block_starredcourses_get_starred_courses -350 1 report_insights_set_notuseful_prediction -351 1 report_insights_set_fixed_prediction -352 1 report_insights_action_executed -353 1 gradereport_overview_get_course_grades -354 1 tool_mobile_get_public_config -355 1 gradereport_overview_view_grade_report -356 1 gradereport_user_get_grades_table -357 1 gradereport_user_view_grade_report -358 1 gradereport_user_get_grade_items -359 1 tool_analytics_potential_contexts -360 1 tool_lp_data_for_course_competencies_page -361 1 tool_lp_data_for_plans_page -362 1 tool_lp_data_for_plan_page -363 1 tool_lp_data_for_user_evidence_list_page -364 1 tool_lp_data_for_user_evidence_page -365 1 tool_lp_data_for_user_competency_summary -366 1 tool_lp_data_for_user_competency_summary_in_plan -367 1 tool_lp_data_for_user_competency_summary_in_course -368 1 tool_mobile_get_plugins_supporting_mobile -369 1 tool_mobile_get_autologin_key -370 1 tool_mobile_get_content -371 1 tool_mobile_call_external_functions -372 1 tool_mobile_validate_subscription_key -373 1 tool_mobile_get_tokens_for_qr_login -374 1 tool_moodlenet_verify_webfinger -375 1 tool_moodlenet_search_courses +66 1 core_message_delete_conversations_by_id +67 1 core_message_delete_message +68 1 core_message_get_blocked_users +69 1 core_message_data_for_messagearea_search_messages +70 1 core_message_message_search_users +71 1 core_message_get_user_contacts +72 1 core_message_get_conversations +73 1 core_message_get_conversation +74 1 core_message_get_conversation_between_users +75 1 core_message_get_self_conversation +76 1 core_message_get_messages +77 1 core_message_get_conversation_counts +78 1 core_message_get_unread_conversation_counts +79 1 core_message_get_conversation_members +80 1 core_message_get_member_info +81 1 core_message_get_unread_conversations_count +82 1 core_message_mark_all_notifications_as_read +83 1 core_message_mark_all_conversation_messages_as_read +84 1 core_message_mark_message_read +85 1 core_message_mark_notification_read +86 1 core_message_message_processor_config_form +87 1 core_message_search_contacts +88 1 core_message_send_instant_messages +89 1 core_message_send_messages_to_conversation +90 1 core_message_get_conversation_messages +91 1 core_message_unblock_user +92 1 core_message_get_user_notification_preferences +93 1 core_message_get_user_message_preferences +94 1 core_message_set_favourite_conversations +95 1 core_message_unset_favourite_conversations +96 1 core_message_delete_message_for_all_users +97 1 core_notes_create_notes +98 1 core_notes_delete_notes +99 1 core_notes_get_course_notes +100 1 core_notes_view_notes +101 1 core_question_update_flag +102 1 core_rating_get_item_ratings +103 1 core_rating_add_rating +104 1 core_tag_get_tagindex +105 1 core_tag_get_tagindex_per_area +106 1 core_tag_get_tag_areas +107 1 core_tag_get_tag_collections +108 1 core_tag_get_tag_cloud +109 1 core_user_add_user_device +110 1 core_user_add_user_private_files +111 1 core_user_get_course_user_profiles +112 1 core_user_get_users_by_field +113 1 core_user_remove_user_device +114 1 core_user_update_user_preferences +115 1 core_user_view_user_list +116 1 core_user_view_user_profile +117 1 core_user_get_user_preferences +118 1 core_user_update_picture +119 1 core_user_set_user_preferences +120 1 core_user_agree_site_policy +121 1 core_user_get_private_files_info +122 1 core_competency_competency_viewed +123 1 core_competency_list_course_competencies +124 1 mod_chat_view_chat +125 1 core_competency_get_scale_values +126 1 core_competency_user_competency_viewed +127 1 core_competency_user_competency_viewed_in_plan +128 1 core_competency_user_competency_viewed_in_course +129 1 core_competency_user_competency_plan_viewed +130 1 core_competency_grade_competency_in_course +131 1 core_competency_delete_evidence +132 1 core_webservice_get_site_info +133 1 core_block_get_course_blocks +134 1 core_block_get_dashboard_blocks +135 1 core_filters_get_available_in_context +136 1 core_h5p_get_trusted_h5p_file +137 1 core_table_get_dynamic_table_content +138 1 core_xapi_statement_post +139 1 mod_assign_get_grades +140 1 mod_assign_get_assignments +141 1 mod_assign_get_submissions +142 1 mod_assign_get_user_flags +143 1 mod_assign_set_user_flags +144 1 mod_assign_get_user_mappings +145 1 mod_assign_revert_submissions_to_draft +146 1 mod_assign_lock_submissions +147 1 mod_assign_unlock_submissions +148 1 mod_assign_save_submission +149 1 mod_assign_submit_for_grading +150 1 mod_assign_save_grade +151 1 mod_assign_save_grades +152 1 mod_assign_save_user_extensions +153 1 mod_assign_reveal_identities +154 1 mod_assign_view_grading_table +155 1 mod_assign_view_submission_status +156 1 mod_assign_get_submission_status +157 1 mod_assign_list_participants +158 1 mod_assign_submit_grading_form +159 1 mod_assign_get_participant +160 1 mod_assign_view_assign +161 1 mod_book_view_book +162 1 mod_book_get_books_by_courses +163 1 mod_chat_login_user +164 1 mod_chat_get_chat_users +165 1 mod_chat_send_chat_message +166 1 mod_chat_get_chat_latest_messages +167 1 mod_chat_get_chats_by_courses +168 1 mod_chat_get_sessions +169 1 mod_chat_get_session_messages +170 1 mod_choice_get_choice_results +171 1 mod_choice_get_choice_options +172 1 mod_choice_submit_choice_response +173 1 mod_choice_view_choice +174 1 mod_choice_get_choices_by_courses +175 1 mod_choice_delete_choice_responses +176 1 mod_data_get_databases_by_courses +177 1 mod_data_view_database +178 1 mod_data_get_data_access_information +179 1 mod_data_get_entries +180 1 mod_data_get_entry +181 1 mod_data_get_fields +182 1 mod_data_search_entries +183 1 mod_data_approve_entry +184 1 mod_data_delete_entry +185 1 mod_data_add_entry +186 1 mod_data_update_entry +187 1 mod_feedback_get_feedbacks_by_courses +188 1 mod_feedback_get_feedback_access_information +189 1 mod_feedback_view_feedback +190 1 mod_feedback_get_current_completed_tmp +191 1 mod_feedback_get_items +192 1 mod_feedback_launch_feedback +193 1 mod_feedback_get_page_items +194 1 mod_feedback_process_page +195 1 mod_feedback_get_analysis +196 1 mod_feedback_get_unfinished_responses +197 1 mod_feedback_get_finished_responses +198 1 mod_feedback_get_non_respondents +199 1 mod_feedback_get_responses_analysis +200 1 mod_feedback_get_last_completed +201 1 mod_folder_view_folder +202 1 mod_folder_get_folders_by_courses +203 1 mod_forum_get_forums_by_courses +204 1 mod_forum_get_discussion_posts +205 1 mod_forum_get_forum_discussion_posts +206 1 mod_forum_get_forum_discussions_paginated +207 1 mod_forum_get_forum_discussions +208 1 mod_forum_view_forum +209 1 mod_forum_view_forum_discussion +210 1 mod_forum_add_discussion_post +211 1 mod_forum_add_discussion +212 1 mod_forum_can_add_discussion +213 1 mod_forum_get_forum_access_information +214 1 mod_forum_set_subscription_state +215 1 mod_forum_set_lock_state +216 1 mod_lti_get_tool_launch_data +217 1 mod_forum_toggle_favourite_state +218 1 mod_forum_set_pin_state +219 1 mod_forum_delete_post +220 1 mod_forum_get_discussion_post +221 1 mod_forum_prepare_draft_area_for_post +222 1 mod_forum_update_discussion_post +223 1 mod_glossary_get_glossaries_by_courses +224 1 mod_glossary_view_glossary +225 1 mod_glossary_view_entry +226 1 mod_glossary_get_entries_by_letter +227 1 mod_glossary_get_entries_by_date +228 1 mod_glossary_get_categories +229 1 mod_glossary_get_entries_by_category +230 1 mod_glossary_get_authors +231 1 mod_glossary_get_entries_by_author +232 1 mod_glossary_get_entries_by_author_id +233 1 mod_glossary_get_entries_by_search +234 1 mod_glossary_get_entries_by_term +235 1 mod_glossary_get_entries_to_approve +236 1 mod_glossary_get_entry_by_id +237 1 mod_glossary_add_entry +238 1 mod_glossary_delete_entry +239 1 mod_glossary_update_entry +240 1 mod_glossary_prepare_entry_for_edition +241 1 mod_h5pactivity_get_h5pactivity_access_information +242 1 mod_h5pactivity_view_h5pactivity +243 1 mod_h5pactivity_get_attempts +244 1 mod_h5pactivity_get_results +245 1 mod_h5pactivity_get_h5pactivities_by_courses +246 1 mod_imscp_view_imscp +247 1 mod_imscp_get_imscps_by_courses +248 1 mod_label_get_labels_by_courses +249 1 mod_lesson_get_lessons_by_courses +250 1 mod_lesson_get_lesson_access_information +251 1 mod_lesson_view_lesson +252 1 mod_lesson_get_questions_attempts +253 1 mod_lesson_get_user_grade +254 1 mod_lesson_get_user_attempt_grade +255 1 mod_lesson_get_content_pages_viewed +256 1 mod_lesson_get_user_timers +257 1 mod_lesson_get_pages +258 1 mod_lesson_launch_attempt +259 1 mod_lesson_get_page_data +260 1 mod_lesson_process_page +261 1 mod_lesson_finish_attempt +262 1 mod_lesson_get_attempts_overview +263 1 mod_lesson_get_user_attempt +264 1 mod_lesson_get_pages_possible_jumps +265 1 mod_lesson_get_lesson +266 1 mod_wiki_edit_page +267 1 mod_lti_get_ltis_by_courses +268 1 mod_lti_view_lti +269 1 mod_page_view_page +270 1 mod_page_get_pages_by_courses +271 1 mod_quiz_get_quizzes_by_courses +272 1 mod_quiz_view_quiz +273 1 mod_quiz_get_user_attempts +274 1 mod_quiz_get_user_best_grade +275 1 mod_quiz_get_combined_review_options +276 1 mod_quiz_start_attempt +277 1 mod_quiz_get_attempt_data +278 1 mod_quiz_get_attempt_summary +279 1 mod_quiz_save_attempt +280 1 mod_quiz_process_attempt +281 1 mod_quiz_get_attempt_review +282 1 mod_quiz_view_attempt +283 1 mod_quiz_view_attempt_summary +284 1 mod_quiz_view_attempt_review +285 1 mod_quiz_get_quiz_feedback_for_grade +286 1 mod_quiz_get_quiz_access_information +287 1 mod_quiz_get_attempt_access_information +288 1 mod_quiz_get_quiz_required_qtypes +289 1 mod_resource_view_resource +290 1 mod_resource_get_resources_by_courses +291 1 mod_scorm_view_scorm +292 1 mod_scorm_get_scorm_attempt_count +293 1 mod_scorm_get_scorm_scoes +294 1 mod_scorm_get_scorm_user_data +295 1 mod_scorm_insert_scorm_tracks +296 1 mod_scorm_get_scorm_sco_tracks +297 1 mod_scorm_get_scorms_by_courses +298 1 mod_scorm_launch_sco +299 1 mod_scorm_get_scorm_access_information +300 1 mod_survey_get_surveys_by_courses +301 1 mod_survey_view_survey +302 1 mod_survey_get_questions +303 1 mod_survey_submit_answers +304 1 mod_url_view_url +305 1 mod_url_get_urls_by_courses +306 1 mod_wiki_get_wikis_by_courses +307 1 mod_wiki_view_wiki +308 1 mod_wiki_view_page +309 1 mod_wiki_get_subwikis +310 1 mod_wiki_get_subwiki_pages +311 1 mod_wiki_get_subwiki_files +312 1 mod_wiki_get_page_contents +313 1 mod_wiki_get_page_for_editing +314 1 mod_wiki_new_page +315 1 mod_workshop_get_workshops_by_courses +316 1 mod_workshop_get_workshop_access_information +317 1 mod_workshop_get_user_plan +318 1 mod_workshop_view_workshop +319 1 mod_workshop_add_submission +320 1 mod_workshop_update_submission +321 1 mod_workshop_delete_submission +322 1 mod_workshop_get_submissions +323 1 mod_workshop_get_submission +324 1 mod_workshop_get_submission_assessments +325 1 mod_workshop_get_assessment +326 1 mod_workshop_get_assessment_form_definition +327 1 mod_workshop_get_reviewer_assessments +328 1 mod_workshop_update_assessment +329 1 mod_workshop_get_grades +330 1 mod_workshop_evaluate_assessment +331 1 mod_workshop_get_grades_report +332 1 mod_workshop_view_submission +333 1 mod_workshop_evaluate_submission +334 1 enrol_guest_get_instance_info +335 1 enrol_self_get_instance_info +336 1 enrol_self_enrol_user +337 1 message_airnotifier_is_system_configured +338 1 message_airnotifier_are_notification_preferences_configured +339 1 message_airnotifier_get_user_devices +340 1 message_airnotifier_enable_device +341 1 message_popup_get_popup_notifications +342 1 message_popup_get_unread_popup_notification_count +343 1 block_recentlyaccesseditems_get_recent_items +344 1 block_starredcourses_get_starred_courses +345 1 report_insights_set_notuseful_prediction +346 1 report_insights_set_fixed_prediction +347 1 report_insights_action_executed +348 1 gradereport_overview_get_course_grades +349 1 gradereport_overview_view_grade_report +350 1 gradereport_user_get_grades_table +351 1 gradereport_user_view_grade_report +352 1 gradereport_user_get_grade_items +353 1 tool_analytics_potential_contexts +354 1 tool_lp_data_for_course_competencies_page +355 1 tool_lp_data_for_plans_page +356 1 tool_lp_data_for_plan_page +357 1 tool_lp_data_for_user_evidence_list_page +358 1 tool_lp_data_for_user_evidence_page +359 1 tool_lp_data_for_user_competency_summary +360 1 tool_lp_data_for_user_competency_summary_in_plan +361 1 tool_lp_data_for_user_competency_summary_in_course +362 1 tool_mobile_get_plugins_supporting_mobile +363 1 tool_mobile_get_public_config +364 1 tool_mobile_get_config +365 1 tool_mobile_get_autologin_key +366 1 tool_mobile_get_content +367 1 tool_mobile_call_external_functions +368 1 tool_mobile_validate_subscription_key +369 1 tool_mobile_get_tokens_for_qr_login +370 1 tool_moodlenet_verify_webfinger +371 1 tool_moodlenet_search_courses \. @@ -30855,7 +31268,7 @@ COPY public.mdl_external_services_functions (id, externalserviceid, functionname -- Name: mdl_external_services_functions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_external_services_functions_id_seq', 375, true); +SELECT pg_catalog.setval('public.mdl_external_services_functions_id_seq', 371, true); -- @@ -31050,11 +31463,11 @@ SELECT pg_catalog.setval('public.mdl_file_conversion_id_seq', 1, false); -- COPY public.mdl_files (id, contenthash, pathnamehash, contextid, component, filearea, itemid, filepath, filename, userid, filesize, mimetype, status, source, author, license, timecreated, timemodified, sortorder, referencefileid) FROM stdin; -1 5f8e911d0da441e36f47c5c46f4393269211ca56 508e674d49c30d4fde325fe6c7f6fd3d56b247e1 1 assignfeedback_editpdf stamps 0 / smile.png 2 1085 image/png 0 \N \N \N 1609808505 1609808505 0 \N -2 da39a3ee5e6b4b0d3255bfef95601890afd80709 70b7cdade7b4e27d4e83f0cdaad10d6a3c0cccb5 1 assignfeedback_editpdf stamps 0 / . 2 0 \N 0 \N \N \N 1609808505 1609808505 0 \N -3 75c101cb8cb34ea573cd25ac38f8157b1de901b8 68317eab56c67d32aeaee5acf509a0c4aa828b6b 1 assignfeedback_editpdf stamps 0 / sad.png 2 966 image/png 0 \N \N \N 1609808505 1609808505 0 \N -4 0c5190a24c3943966541401c883eacaa20ca20cb 695a55ff780e61c9e59428aa425430b0d6bde53b 1 assignfeedback_editpdf stamps 0 / tick.png 2 1039 image/png 0 \N \N \N 1609808505 1609808505 0 \N -5 8c96a486d5801e0f4ab8c411f561f1c687e1f865 373e63af262a9b8466ba8632551520be793c37ff 1 assignfeedback_editpdf stamps 0 / cross.png 2 861 image/png 0 \N \N \N 1609808505 1609808505 0 \N +1 5f8e911d0da441e36f47c5c46f4393269211ca56 508e674d49c30d4fde325fe6c7f6fd3d56b247e1 1 assignfeedback_editpdf stamps 0 / smile.png 2 1085 image/png 0 \N \N \N 1612889097 1612889097 0 \N +2 da39a3ee5e6b4b0d3255bfef95601890afd80709 70b7cdade7b4e27d4e83f0cdaad10d6a3c0cccb5 1 assignfeedback_editpdf stamps 0 / . 2 0 \N 0 \N \N \N 1612889097 1612889097 0 \N +3 75c101cb8cb34ea573cd25ac38f8157b1de901b8 68317eab56c67d32aeaee5acf509a0c4aa828b6b 1 assignfeedback_editpdf stamps 0 / sad.png 2 966 image/png 0 \N \N \N 1612889097 1612889097 0 \N +4 0c5190a24c3943966541401c883eacaa20ca20cb 695a55ff780e61c9e59428aa425430b0d6bde53b 1 assignfeedback_editpdf stamps 0 / tick.png 2 1039 image/png 0 \N \N \N 1612889097 1612889097 0 \N +5 8c96a486d5801e0f4ab8c411f561f1c687e1f865 373e63af262a9b8466ba8632551520be793c37ff 1 assignfeedback_editpdf stamps 0 / cross.png 2 861 image/png 0 \N \N \N 1612889097 1612889097 0 \N \. @@ -31120,7 +31533,7 @@ SELECT pg_catalog.setval('public.mdl_filter_config_id_seq', 1, false); -- Data for Name: mdl_folder; Type: TABLE DATA; Schema: public; Owner: postgres -- -COPY public.mdl_folder (id, course, name, intro, introformat, revision, timemodified, display, showexpanded, showdownloadfolder) FROM stdin; +COPY public.mdl_folder (id, course, name, intro, introformat, revision, timemodified, display, showexpanded, showdownloadfolder, forcedownload) FROM stdin; \. @@ -31802,7 +32215,7 @@ SELECT pg_catalog.setval('public.mdl_h5p_id_seq', 1, false); -- Data for Name: mdl_h5p_libraries; Type: TABLE DATA; Schema: public; Owner: postgres -- -COPY public.mdl_h5p_libraries (id, machinename, title, majorversion, minorversion, patchversion, runnable, fullscreen, embedtypes, preloadedjs, preloadedcss, droplibrarycss, semantics, addto, coremajor, coreminor, metadatasettings) FROM stdin; +COPY public.mdl_h5p_libraries (id, machinename, title, majorversion, minorversion, patchversion, runnable, fullscreen, embedtypes, preloadedjs, preloadedcss, droplibrarycss, semantics, addto, coremajor, coreminor, metadatasettings, tutorial, example) FROM stdin; \. @@ -31903,6 +32316,21 @@ COPY public.mdl_imscp (id, course, name, intro, introformat, revision, keepold, SELECT pg_catalog.setval('public.mdl_imscp_id_seq', 1, false); +-- +-- Data for Name: mdl_infected_files; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_infected_files (id, filename, quarantinedfile, userid, reason, timecreated) FROM stdin; +\. + + +-- +-- Name: mdl_infected_files_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_infected_files_id_seq', 1, false); + + -- -- Data for Name: mdl_label; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -32316,1028 +32744,1027 @@ SELECT pg_catalog.setval('public.mdl_log_queries_id_seq', 1, false); -- COPY public.mdl_logstore_standard_log (id, eventname, component, action, target, objecttable, objectid, crud, edulevel, contextid, contextlevel, contextinstanceid, userid, courseid, relateduserid, anonymous, other, timecreated, origin, ip, realuserid) FROM stdin; -1 \\core\\event\\user_loggedin core loggedin user user 2 r 0 1 10 0 2 0 \N 0 a:1:{s:8:"username";s:5:"admin";} 1609808513 web 67.182.30.218 \N -2 \\core\\event\\user_loggedin core loggedin user user 2 r 0 1 10 0 2 0 \N 0 a:1:{s:8:"username";s:5:"admin";} 1609883714 web 67.182.30.218 \N -3 \\core\\event\\user_password_updated core updated user_password \N \N u 0 5 30 2 2 0 2 0 a:1:{s:14:"forgottenreset";b:0;} 1609884654 web 67.182.30.218 \N -4 \\core\\event\\user_updated core updated user user 2 u 0 5 30 2 2 0 2 0 N; 1609884654 web 67.182.30.218 \N -5 \\core\\event\\config_log_created core created config_log config_log 592 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"notloggedinroleid";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -6 \\core\\event\\config_log_created core created config_log config_log 593 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"guestroleid";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -7 \\core\\event\\config_log_created core created config_log config_log 594 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"defaultuserroleid";s:8:"oldvalue";N;s:5:"value";s:1:"7";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -8 \\core\\event\\config_log_created core created config_log config_log 595 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"creatornewroleid";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -9 \\core\\event\\config_log_created core created config_log config_log 596 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"restorernewroleid";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -10 \\core\\event\\config_log_created core created config_log config_log 597 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"contactdataprotectionofficer";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"tool_dataprivacy";} 1609884655 web 67.182.30.218 \N -11 \\core\\event\\config_log_created core created config_log config_log 598 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"automaticdataexportapproval";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"tool_dataprivacy";} 1609884655 web 67.182.30.218 \N -12 \\core\\event\\config_log_created core created config_log config_log 599 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"automaticdatadeletionapproval";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"tool_dataprivacy";} 1609884655 web 67.182.30.218 \N -13 \\core\\event\\config_log_created core created config_log config_log 600 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"automaticdeletionrequests";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"tool_dataprivacy";} 1609884655 web 67.182.30.218 \N -14 \\core\\event\\config_log_created core created config_log config_log 601 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"privacyrequestexpiry";s:8:"oldvalue";N;s:5:"value";s:6:"604800";s:6:"plugin";s:16:"tool_dataprivacy";} 1609884655 web 67.182.30.218 \N -15 \\core\\event\\config_log_created core created config_log config_log 602 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:33:"requireallenddatesforuserdeletion";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"tool_dataprivacy";} 1609884655 web 67.182.30.218 \N -16 \\core\\event\\config_log_created core created config_log config_log 603 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"showdataretentionsummary";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"tool_dataprivacy";} 1609884655 web 67.182.30.218 \N -17 \\core\\event\\config_log_created core created config_log config_log 604 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"exportlog";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:8:"tool_log";} 1609884655 web 67.182.30.218 \N -18 \\core\\event\\config_log_created core created config_log config_log 605 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"sitepolicyhandler";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -19 \\core\\event\\config_log_created core created config_log config_log 606 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"gradebookroles";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -20 \\core\\event\\config_log_created core created config_log config_log 607 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"logstore";s:8:"oldvalue";N;s:5:"value";s:17:"logstore_standard";s:6:"plugin";s:9:"analytics";} 1609884655 web 67.182.30.218 \N -21 \\core\\event\\config_log_created core created config_log config_log 608 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"h5plibraryhandler";s:8:"oldvalue";N;s:5:"value";s:11:"h5plib_v124";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -22 \\core\\event\\config_log_created core created config_log config_log 609 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"jabberhost";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -23 \\core\\event\\config_log_created core created config_log config_log 610 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"jabberserver";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -24 \\core\\event\\config_log_created core created config_log config_log 611 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"jabberusername";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -25 \\core\\event\\config_log_created core created config_log config_log 612 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"jabberpassword";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -26 \\core\\event\\config_log_created core created config_log config_log 613 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"jabberport";s:8:"oldvalue";N;s:5:"value";s:4:"5222";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -27 \\core\\event\\config_log_created core created config_log config_log 614 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"airnotifierurl";s:8:"oldvalue";N;s:5:"value";s:27:"https://messages.moodle.net";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -28 \\core\\event\\config_log_created core created config_log config_log 615 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"airnotifierport";s:8:"oldvalue";N;s:5:"value";s:3:"443";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -29 \\core\\event\\config_log_created core created config_log config_log 616 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"airnotifiermobileappname";s:8:"oldvalue";N;s:5:"value";s:23:"com.moodle.moodlemobile";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -30 \\core\\event\\config_log_created core created config_log config_log 617 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"airnotifierappname";s:8:"oldvalue";N;s:5:"value";s:21:"commoodlemoodlemobile";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -31 \\core\\event\\config_log_created core created config_log config_log 618 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"airnotifieraccesskey";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -32 \\core\\event\\config_log_created core created config_log config_log 619 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"feedback_plugin_for_gradebook";s:8:"oldvalue";N;s:5:"value";s:23:"assignfeedback_comments";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -33 \\core\\event\\config_log_created core created config_log config_log 620 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"showrecentsubmissions";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -34 \\core\\event\\config_log_created core created config_log config_log 621 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"submissionreceipts";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -35 \\core\\event\\config_log_created core created config_log config_log 622 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"submissionstatement";s:8:"oldvalue";N;s:5:"value";s:102:"This submission is my own work, except where I have acknowledged the use of the works of other people.";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -36 \\core\\event\\config_log_created core created config_log config_log 623 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:33:"submissionstatementteamsubmission";s:8:"oldvalue";N;s:5:"value";s:112:"This submission is the work of my group, except where we have acknowledged the use of the works of other people.";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -37 \\core\\event\\config_log_created core created config_log config_log 624 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:42:"submissionstatementteamsubmissionallsubmit";s:8:"oldvalue";N;s:5:"value";s:120:"This submission is my own work as a group member, except where I have acknowledged the use of the works of other people.";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -38 \\core\\event\\config_log_created core created config_log config_log 625 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"maxperpage";s:8:"oldvalue";N;s:5:"value";s:2:"-1";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -39 \\core\\event\\config_log_created core created config_log config_log 626 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"alwaysshowdescription";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -40 \\core\\event\\config_log_created core created config_log config_log 627 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"alwaysshowdescription_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -41 \\core\\event\\config_log_created core created config_log config_log 628 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"alwaysshowdescription_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -42 \\core\\event\\config_log_created core created config_log config_log 629 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"allowsubmissionsfromdate";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -43 \\core\\event\\config_log_created core created config_log config_log 630 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:32:"allowsubmissionsfromdate_enabled";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -44 \\core\\event\\config_log_created core created config_log config_log 631 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"allowsubmissionsfromdate_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -45 \\core\\event\\config_log_created core created config_log config_log 632 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"duedate";s:8:"oldvalue";N;s:5:"value";s:6:"604800";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -46 \\core\\event\\config_log_created core created config_log config_log 633 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"duedate_enabled";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -47 \\core\\event\\config_log_created core created config_log config_log 634 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"duedate_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -48 \\core\\event\\config_log_created core created config_log config_log 635 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"cutoffdate";s:8:"oldvalue";N;s:5:"value";s:7:"1209600";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -49 \\core\\event\\config_log_created core created config_log config_log 636 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"cutoffdate_enabled";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -50 \\core\\event\\config_log_created core created config_log config_log 637 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"cutoffdate_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -51 \\core\\event\\config_log_created core created config_log config_log 638 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"gradingduedate";s:8:"oldvalue";N;s:5:"value";s:7:"1209600";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -52 \\core\\event\\config_log_created core created config_log config_log 639 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"gradingduedate_enabled";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -53 \\core\\event\\config_log_created core created config_log config_log 640 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"gradingduedate_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -54 \\core\\event\\config_log_created core created config_log config_log 641 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"submissiondrafts";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -55 \\core\\event\\config_log_created core created config_log config_log 642 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"submissiondrafts_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -56 \\core\\event\\config_log_created core created config_log config_log 643 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"submissiondrafts_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -57 \\core\\event\\config_log_created core created config_log config_log 644 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"requiresubmissionstatement";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -58 \\core\\event\\config_log_created core created config_log config_log 645 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"requiresubmissionstatement_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -59 \\core\\event\\config_log_created core created config_log config_log 646 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:33:"requiresubmissionstatement_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -60 \\core\\event\\config_log_created core created config_log config_log 647 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"attemptreopenmethod";s:8:"oldvalue";N;s:5:"value";s:4:"none";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -61 \\core\\event\\config_log_created core created config_log config_log 648 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"attemptreopenmethod_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -62 \\core\\event\\config_log_created core created config_log config_log 649 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"attemptreopenmethod_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -63 \\core\\event\\config_log_created core created config_log config_log 650 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"maxattempts";s:8:"oldvalue";N;s:5:"value";s:2:"-1";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -64 \\core\\event\\config_log_created core created config_log config_log 651 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"maxattempts_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -65 \\core\\event\\config_log_created core created config_log config_log 652 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"maxattempts_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -66 \\core\\event\\config_log_created core created config_log config_log 653 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"teamsubmission";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -67 \\core\\event\\config_log_created core created config_log config_log 654 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"teamsubmission_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -68 \\core\\event\\config_log_created core created config_log config_log 655 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"teamsubmission_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -69 \\core\\event\\config_log_created core created config_log config_log 656 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"preventsubmissionnotingroup";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -70 \\core\\event\\config_log_created core created config_log config_log 657 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"preventsubmissionnotingroup_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -71 \\core\\event\\config_log_created core created config_log config_log 658 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"preventsubmissionnotingroup_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -72 \\core\\event\\config_log_created core created config_log config_log 659 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"requireallteammemberssubmit";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -73 \\core\\event\\config_log_created core created config_log config_log 660 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"requireallteammemberssubmit_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -74 \\core\\event\\config_log_created core created config_log config_log 661 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"requireallteammemberssubmit_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -75 \\core\\event\\config_log_created core created config_log config_log 662 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"teamsubmissiongroupingid";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -76 \\core\\event\\config_log_created core created config_log config_log 663 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"teamsubmissiongroupingid_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -77 \\core\\event\\config_log_created core created config_log config_log 664 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"sendnotifications";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -78 \\core\\event\\config_log_created core created config_log config_log 665 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"sendnotifications_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -79 \\core\\event\\config_log_created core created config_log config_log 666 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"sendnotifications_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -80 \\core\\event\\config_log_created core created config_log config_log 667 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"sendlatenotifications";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -81 \\core\\event\\config_log_created core created config_log config_log 668 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"sendlatenotifications_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -82 \\core\\event\\config_log_created core created config_log config_log 669 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"sendlatenotifications_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -83 \\core\\event\\config_log_created core created config_log config_log 670 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"sendstudentnotifications";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -84 \\core\\event\\config_log_created core created config_log config_log 671 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"sendstudentnotifications_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -85 \\core\\event\\config_log_created core created config_log config_log 672 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"sendstudentnotifications_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -86 \\core\\event\\config_log_created core created config_log config_log 673 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"blindmarking";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -87 \\core\\event\\config_log_created core created config_log config_log 674 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"blindmarking_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -88 \\core\\event\\config_log_created core created config_log config_log 675 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"blindmarking_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -89 \\core\\event\\config_log_created core created config_log config_log 676 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"hidegrader";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -90 \\core\\event\\config_log_created core created config_log config_log 677 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"hidegrader_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -91 \\core\\event\\config_log_created core created config_log config_log 678 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"hidegrader_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -92 \\core\\event\\config_log_created core created config_log config_log 679 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"markingworkflow";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -93 \\core\\event\\config_log_created core created config_log config_log 680 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"markingworkflow_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -94 \\core\\event\\config_log_created core created config_log config_log 681 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"markingworkflow_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -95 \\core\\event\\config_log_created core created config_log config_log 682 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"markingallocation";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -96 \\core\\event\\config_log_created core created config_log config_log 683 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"markingallocation_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -97 \\core\\event\\config_log_created core created config_log config_log 684 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"markingallocation_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1609884655 web 67.182.30.218 \N -98 \\core\\event\\config_log_created core created config_log config_log 685 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:21:"assignsubmission_file";} 1609884655 web 67.182.30.218 \N -99 \\core\\event\\config_log_created core created config_log config_log 686 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"maxfiles";s:8:"oldvalue";N;s:5:"value";s:2:"20";s:6:"plugin";s:21:"assignsubmission_file";} 1609884655 web 67.182.30.218 \N -100 \\core\\event\\config_log_created core created config_log config_log 687 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"filetypes";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:21:"assignsubmission_file";} 1609884655 web 67.182.30.218 \N -101 \\core\\event\\config_log_created core created config_log config_log 688 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"maxbytes";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:21:"assignsubmission_file";} 1609884655 web 67.182.30.218 \N -1020 \\core\\event\\course_viewed core viewed course \N \N r 2 2 50 1 0 1 \N 0 null 1612797594 web 67.182.30.218 \N -102 \\core\\event\\config_log_created core created config_log config_log 689 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:27:"assignsubmission_onlinetext";} 1609884655 web 67.182.30.218 \N -103 \\core\\event\\config_log_created core created config_log config_log 690 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:23:"assignfeedback_comments";} 1609884655 web 67.182.30.218 \N -104 \\core\\event\\config_log_created core created config_log config_log 691 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"inline";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:23:"assignfeedback_comments";} 1609884655 web 67.182.30.218 \N -105 \\core\\event\\config_log_created core created config_log config_log 692 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"inline_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:23:"assignfeedback_comments";} 1609884655 web 67.182.30.218 \N -106 \\core\\event\\config_log_created core created config_log config_log 693 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"inline_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:23:"assignfeedback_comments";} 1609884655 web 67.182.30.218 \N -107 \\core\\event\\config_log_created core created config_log config_log 694 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:22:"assignfeedback_editpdf";} 1609884655 web 67.182.30.218 \N -108 \\core\\event\\config_log_created core created config_log config_log 695 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"stamps";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"assignfeedback_editpdf";} 1609884655 web 67.182.30.218 \N -109 \\core\\event\\config_log_created core created config_log config_log 696 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"assignfeedback_file";} 1609884655 web 67.182.30.218 \N -110 \\core\\event\\config_log_created core created config_log config_log 697 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:22:"assignfeedback_offline";} 1609884655 web 67.182.30.218 \N -111 \\core\\event\\config_log_created core created config_log config_log 698 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"numberingoptions";s:8:"oldvalue";N;s:5:"value";s:7:"0,1,2,3";s:6:"plugin";s:4:"book";} 1609884655 web 67.182.30.218 \N -112 \\core\\event\\config_log_created core created config_log config_log 699 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"navoptions";s:8:"oldvalue";N;s:5:"value";s:5:"0,1,2";s:6:"plugin";s:4:"book";} 1609884655 web 67.182.30.218 \N -113 \\core\\event\\config_log_created core created config_log config_log 700 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"numbering";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"book";} 1609884655 web 67.182.30.218 \N -114 \\core\\event\\config_log_created core created config_log config_log 701 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"navstyle";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"book";} 1609884655 web 67.182.30.218 \N -115 \\core\\event\\config_log_created core created config_log config_log 702 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"chat_method";s:8:"oldvalue";N;s:5:"value";s:4:"ajax";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -116 \\core\\event\\config_log_created core created config_log config_log 703 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"chat_refresh_userlist";s:8:"oldvalue";N;s:5:"value";s:2:"10";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -117 \\core\\event\\config_log_created core created config_log config_log 704 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"chat_old_ping";s:8:"oldvalue";N;s:5:"value";s:2:"35";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -118 \\core\\event\\config_log_created core created config_log config_log 705 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"chat_refresh_room";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -119 \\core\\event\\config_log_created core created config_log config_log 706 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"chat_normal_updatemode";s:8:"oldvalue";N;s:5:"value";s:8:"jsupdate";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -120 \\core\\event\\config_log_created core created config_log config_log 707 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"chat_serverhost";s:8:"oldvalue";N;s:5:"value";s:10:"connectbox";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -121 \\core\\event\\config_log_created core created config_log config_log 708 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"chat_serverip";s:8:"oldvalue";N;s:5:"value";s:9:"127.0.0.1";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -122 \\core\\event\\config_log_created core created config_log config_log 709 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"chat_serverport";s:8:"oldvalue";N;s:5:"value";s:4:"9111";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -123 \\core\\event\\config_log_created core created config_log config_log 710 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"chat_servermax";s:8:"oldvalue";N;s:5:"value";s:3:"100";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -124 \\core\\event\\config_log_created core created config_log config_log 711 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"data_enablerssfeeds";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -125 \\core\\event\\config_log_created core created config_log config_log 712 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"feedback_allowfullanonymous";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -126 \\core\\event\\config_log_created core created config_log config_log 713 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"framesize";s:8:"oldvalue";N;s:5:"value";s:3:"130";s:6:"plugin";s:8:"resource";} 1609884655 web 67.182.30.218 \N -127 \\core\\event\\config_log_created core created config_log config_log 714 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"displayoptions";s:8:"oldvalue";N;s:5:"value";s:9:"0,1,4,5,6";s:6:"plugin";s:8:"resource";} 1609884655 web 67.182.30.218 \N -128 \\core\\event\\config_log_created core created config_log config_log 715 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"printintro";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:8:"resource";} 1609884655 web 67.182.30.218 \N -129 \\core\\event\\config_log_created core created config_log config_log 716 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"display";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"resource";} 1609884655 web 67.182.30.218 \N -130 \\core\\event\\config_log_created core created config_log config_log 717 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"showsize";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"resource";} 1609884655 web 67.182.30.218 \N -131 \\core\\event\\config_log_created core created config_log config_log 718 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"showtype";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"resource";} 1609884655 web 67.182.30.218 \N -132 \\core\\event\\config_log_created core created config_log config_log 719 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"showdate";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"resource";} 1609884655 web 67.182.30.218 \N -133 \\core\\event\\config_log_created core created config_log config_log 720 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"popupwidth";s:8:"oldvalue";N;s:5:"value";s:3:"620";s:6:"plugin";s:8:"resource";} 1609884655 web 67.182.30.218 \N -134 \\core\\event\\config_log_created core created config_log config_log 721 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"popupheight";s:8:"oldvalue";N;s:5:"value";s:3:"450";s:6:"plugin";s:8:"resource";} 1609884655 web 67.182.30.218 \N -135 \\core\\event\\config_log_created core created config_log config_log 722 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"filterfiles";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"resource";} 1609884655 web 67.182.30.218 \N -136 \\core\\event\\config_log_created core created config_log config_log 723 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"showexpanded";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"folder";} 1609884655 web 67.182.30.218 \N -137 \\core\\event\\config_log_created core created config_log config_log 724 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"maxsizetodownload";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"folder";} 1609884655 web 67.182.30.218 \N -138 \\core\\event\\config_log_created core created config_log config_log 725 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"forum_displaymode";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -139 \\core\\event\\config_log_created core created config_log config_log 726 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"forum_shortpost";s:8:"oldvalue";N;s:5:"value";s:3:"300";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -140 \\core\\event\\config_log_created core created config_log config_log 727 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"forum_longpost";s:8:"oldvalue";N;s:5:"value";s:3:"600";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -141 \\core\\event\\config_log_created core created config_log config_log 728 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"forum_manydiscussions";s:8:"oldvalue";N;s:5:"value";s:3:"100";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -142 \\core\\event\\config_log_created core created config_log config_log 729 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"forum_maxbytes";s:8:"oldvalue";N;s:5:"value";s:6:"512000";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -143 \\core\\event\\config_log_created core created config_log config_log 730 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"forum_maxattachments";s:8:"oldvalue";N;s:5:"value";s:1:"9";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -144 \\core\\event\\config_log_created core created config_log config_log 731 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"forum_subscription";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -145 \\core\\event\\config_log_created core created config_log config_log 732 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"forum_trackingtype";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -146 \\core\\event\\config_log_created core created config_log config_log 733 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"forum_trackreadposts";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -147 \\core\\event\\config_log_created core created config_log config_log 734 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"forum_allowforcedreadtracking";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -148 \\core\\event\\config_log_created core created config_log config_log 735 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"forum_oldpostdays";s:8:"oldvalue";N;s:5:"value";s:2:"14";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -149 \\core\\event\\config_log_created core created config_log config_log 736 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"forum_usermarksread";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -150 \\core\\event\\config_log_created core created config_log config_log 737 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"forum_cleanreadtime";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -151 \\core\\event\\config_log_created core created config_log config_log 738 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"digestmailtime";s:8:"oldvalue";N;s:5:"value";s:2:"17";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -152 \\core\\event\\config_log_created core created config_log config_log 739 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"forum_enablerssfeeds";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -153 \\core\\event\\config_log_created core created config_log config_log 740 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"forum_enabletimedposts";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -154 \\core\\event\\config_log_created core created config_log config_log 741 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"glossary_entbypage";s:8:"oldvalue";N;s:5:"value";s:2:"10";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -155 \\core\\event\\config_log_created core created config_log config_log 742 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"glossary_dupentries";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -156 \\core\\event\\config_log_created core created config_log config_log 743 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"glossary_allowcomments";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -157 \\core\\event\\config_log_created core created config_log config_log 744 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"glossary_linkbydefault";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -158 \\core\\event\\config_log_created core created config_log config_log 745 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"glossary_defaultapproval";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -159 \\core\\event\\config_log_created core created config_log config_log 746 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"glossary_enablerssfeeds";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -160 \\core\\event\\config_log_created core created config_log config_log 747 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"glossary_linkentries";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -161 \\core\\event\\config_log_created core created config_log config_log 748 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"glossary_casesensitive";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -162 \\core\\event\\config_log_created core created config_log config_log 749 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"glossary_fullmatch";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884655 web 67.182.30.218 \N -163 \\core\\event\\config_log_created core created config_log config_log 750 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"keepold";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"imscp";} 1609884655 web 67.182.30.218 \N -164 \\core\\event\\config_log_created core created config_log config_log 751 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"keepold_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:5:"imscp";} 1609884655 web 67.182.30.218 \N -165 \\core\\event\\config_log_created core created config_log config_log 752 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"dndmedia";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"label";} 1609884655 web 67.182.30.218 \N -166 \\core\\event\\config_log_created core created config_log config_log 753 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"dndresizewidth";s:8:"oldvalue";N;s:5:"value";s:3:"400";s:6:"plugin";s:5:"label";} 1609884655 web 67.182.30.218 \N -167 \\core\\event\\config_log_created core created config_log config_log 754 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"dndresizeheight";s:8:"oldvalue";N;s:5:"value";s:3:"400";s:6:"plugin";s:5:"label";} 1609884655 web 67.182.30.218 \N -168 \\core\\event\\config_log_created core created config_log config_log 755 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"mediafile";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1609884655 web 67.182.30.218 \N -169 \\core\\event\\config_log_created core created config_log config_log 756 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"mediafile_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884655 web 67.182.30.218 \N -170 \\core\\event\\config_log_created core created config_log config_log 757 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"mediawidth";s:8:"oldvalue";N;s:5:"value";s:3:"640";s:6:"plugin";s:10:"mod_lesson";} 1609884655 web 67.182.30.218 \N -171 \\core\\event\\config_log_created core created config_log config_log 758 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"mediaheight";s:8:"oldvalue";N;s:5:"value";s:3:"480";s:6:"plugin";s:10:"mod_lesson";} 1609884655 web 67.182.30.218 \N -172 \\core\\event\\config_log_created core created config_log config_log 759 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"mediaclose";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884655 web 67.182.30.218 \N -173 \\core\\event\\config_log_created core created config_log config_log 760 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"progressbar";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884655 web 67.182.30.218 \N -174 \\core\\event\\config_log_created core created config_log config_log 761 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"progressbar_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1609884655 web 67.182.30.218 \N -175 \\core\\event\\config_log_created core created config_log config_log 762 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"ongoing";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884655 web 67.182.30.218 \N -176 \\core\\event\\config_log_created core created config_log config_log 763 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"ongoing_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -177 \\core\\event\\config_log_created core created config_log config_log 764 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"displayleftmenu";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -178 \\core\\event\\config_log_created core created config_log config_log 765 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"displayleftmenu_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -179 \\core\\event\\config_log_created core created config_log config_log 766 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"displayleftif";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -180 \\core\\event\\config_log_created core created config_log config_log 767 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"displayleftif_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -181 \\core\\event\\config_log_created core created config_log config_log 768 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"slideshow";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -182 \\core\\event\\config_log_created core created config_log config_log 769 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"slideshow_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -183 \\core\\event\\config_log_created core created config_log config_log 770 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"slideshowwidth";s:8:"oldvalue";N;s:5:"value";s:3:"640";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -184 \\core\\event\\config_log_created core created config_log config_log 771 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"slideshowheight";s:8:"oldvalue";N;s:5:"value";s:3:"480";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -185 \\core\\event\\config_log_created core created config_log config_log 772 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"slideshowbgcolor";s:8:"oldvalue";N;s:5:"value";s:7:"#FFFFFF";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -186 \\core\\event\\config_log_created core created config_log config_log 773 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"maxanswers";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -187 \\core\\event\\config_log_created core created config_log config_log 774 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"maxanswers_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -188 \\core\\event\\config_log_created core created config_log config_log 775 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"defaultfeedback";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -189 \\core\\event\\config_log_created core created config_log config_log 776 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"defaultfeedback_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -190 \\core\\event\\config_log_created core created config_log config_log 777 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"activitylink";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -191 \\core\\event\\config_log_created core created config_log config_log 778 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"activitylink_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -192 \\core\\event\\config_log_created core created config_log config_log 779 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"timelimit";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -193 \\core\\event\\config_log_created core created config_log config_log 780 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"timelimit_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -194 \\core\\event\\config_log_created core created config_log config_log 781 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"password";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -195 \\core\\event\\config_log_created core created config_log config_log 782 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"password_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -196 \\core\\event\\config_log_created core created config_log config_log 783 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"modattempts";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -197 \\core\\event\\config_log_created core created config_log config_log 784 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"modattempts_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -198 \\core\\event\\config_log_created core created config_log config_log 785 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"displayreview";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -199 \\core\\event\\config_log_created core created config_log config_log 786 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"displayreview_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -200 \\core\\event\\config_log_created core created config_log config_log 787 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"maximumnumberofattempts";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -201 \\core\\event\\config_log_created core created config_log config_log 788 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"maximumnumberofattempts_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -202 \\core\\event\\config_log_created core created config_log config_log 789 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"defaultnextpage";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -203 \\core\\event\\config_log_created core created config_log config_log 790 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"defaultnextpage_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -204 \\core\\event\\config_log_created core created config_log config_log 791 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"numberofpagestoshow";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -205 \\core\\event\\config_log_created core created config_log config_log 792 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"numberofpagestoshow_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -206 \\core\\event\\config_log_created core created config_log config_log 793 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"practice";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -207 \\core\\event\\config_log_created core created config_log config_log 794 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"practice_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -208 \\core\\event\\config_log_created core created config_log config_log 795 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"customscoring";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -209 \\core\\event\\config_log_created core created config_log config_log 796 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"customscoring_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -210 \\core\\event\\config_log_created core created config_log config_log 797 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"retakesallowed";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -211 \\core\\event\\config_log_created core created config_log config_log 798 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"retakesallowed_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -212 \\core\\event\\config_log_created core created config_log config_log 799 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"handlingofretakes";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -213 \\core\\event\\config_log_created core created config_log config_log 800 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"handlingofretakes_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -214 \\core\\event\\config_log_created core created config_log config_log 801 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"minimumnumberofquestions";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -215 \\core\\event\\config_log_created core created config_log config_log 802 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"minimumnumberofquestions_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1609884656 web 67.182.30.218 \N -216 \\core\\event\\config_log_created core created config_log config_log 803 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"displayoptions";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:4:"page";} 1609884656 web 67.182.30.218 \N -217 \\core\\event\\config_log_created core created config_log config_log 804 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"printheading";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"page";} 1609884656 web 67.182.30.218 \N -218 \\core\\event\\config_log_created core created config_log config_log 805 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"printintro";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"page";} 1609884656 web 67.182.30.218 \N -219 \\core\\event\\config_log_created core created config_log config_log 806 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"printlastmodified";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"page";} 1609884656 web 67.182.30.218 \N -220 \\core\\event\\config_log_created core created config_log config_log 807 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"display";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:4:"page";} 1609884656 web 67.182.30.218 \N -221 \\core\\event\\config_log_created core created config_log config_log 808 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"popupwidth";s:8:"oldvalue";N;s:5:"value";s:3:"620";s:6:"plugin";s:4:"page";} 1609884656 web 67.182.30.218 \N -222 \\core\\event\\config_log_created core created config_log config_log 809 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"popupheight";s:8:"oldvalue";N;s:5:"value";s:3:"450";s:6:"plugin";s:4:"page";} 1609884656 web 67.182.30.218 \N -223 \\core\\event\\config_log_created core created config_log config_log 810 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"timelimit";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -224 \\core\\event\\config_log_created core created config_log config_log 811 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"timelimit_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -225 \\core\\event\\config_log_created core created config_log config_log 812 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"overduehandling";s:8:"oldvalue";N;s:5:"value";s:10:"autosubmit";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -226 \\core\\event\\config_log_created core created config_log config_log 813 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"overduehandling_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -227 \\core\\event\\config_log_created core created config_log config_log 814 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"graceperiod";s:8:"oldvalue";N;s:5:"value";s:5:"86400";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -228 \\core\\event\\config_log_created core created config_log config_log 815 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"graceperiod_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -229 \\core\\event\\config_log_created core created config_log config_log 816 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"graceperiodmin";s:8:"oldvalue";N;s:5:"value";s:2:"60";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -230 \\core\\event\\config_log_created core created config_log config_log 817 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"attempts";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -231 \\core\\event\\config_log_created core created config_log config_log 818 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"attempts_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -232 \\core\\event\\config_log_created core created config_log config_log 819 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"grademethod";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -233 \\core\\event\\config_log_created core created config_log config_log 820 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"grademethod_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -234 \\core\\event\\config_log_created core created config_log config_log 821 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"maximumgrade";s:8:"oldvalue";N;s:5:"value";s:2:"10";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -235 \\core\\event\\config_log_created core created config_log config_log 822 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"questionsperpage";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -236 \\core\\event\\config_log_created core created config_log config_log 823 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"questionsperpage_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -237 \\core\\event\\config_log_created core created config_log config_log 824 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"navmethod";s:8:"oldvalue";N;s:5:"value";s:4:"free";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -238 \\core\\event\\config_log_created core created config_log config_log 825 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"navmethod_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -239 \\core\\event\\config_log_created core created config_log config_log 826 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"shuffleanswers";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -240 \\core\\event\\config_log_created core created config_log config_log 827 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"shuffleanswers_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -241 \\core\\event\\config_log_created core created config_log config_log 828 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"preferredbehaviour";s:8:"oldvalue";N;s:5:"value";s:16:"deferredfeedback";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -242 \\core\\event\\config_log_created core created config_log config_log 829 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"canredoquestions";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -243 \\core\\event\\config_log_created core created config_log config_log 830 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"canredoquestions_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -244 \\core\\event\\config_log_created core created config_log config_log 831 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"attemptonlast";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -245 \\core\\event\\config_log_created core created config_log config_log 832 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"attemptonlast_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -246 \\core\\event\\config_log_created core created config_log config_log 833 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"reviewattempt";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -247 \\core\\event\\config_log_created core created config_log config_log 834 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"reviewcorrectness";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -248 \\core\\event\\config_log_created core created config_log config_log 835 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"reviewmarks";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -249 \\core\\event\\config_log_created core created config_log config_log 836 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"reviewspecificfeedback";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -250 \\core\\event\\config_log_created core created config_log config_log 837 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"reviewgeneralfeedback";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -251 \\core\\event\\config_log_created core created config_log config_log 838 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"reviewrightanswer";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -252 \\core\\event\\config_log_created core created config_log config_log 839 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"reviewoverallfeedback";s:8:"oldvalue";N;s:5:"value";s:4:"4368";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -253 \\core\\event\\config_log_created core created config_log config_log 840 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"showuserpicture";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -254 \\core\\event\\config_log_created core created config_log config_log 841 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"showuserpicture_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -255 \\core\\event\\config_log_created core created config_log config_log 842 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"decimalpoints";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -256 \\core\\event\\config_log_created core created config_log config_log 843 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"decimalpoints_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -257 \\core\\event\\config_log_created core created config_log config_log 844 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"questiondecimalpoints";s:8:"oldvalue";N;s:5:"value";s:2:"-1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -258 \\core\\event\\config_log_created core created config_log config_log 845 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"questiondecimalpoints_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -259 \\core\\event\\config_log_created core created config_log config_log 846 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"showblocks";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -260 \\core\\event\\config_log_created core created config_log config_log 847 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"showblocks_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -261 \\core\\event\\config_log_created core created config_log config_log 848 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"quizpassword";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -262 \\core\\event\\config_log_created core created config_log config_log 849 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"quizpassword_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -263 \\core\\event\\config_log_created core created config_log config_log 850 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"quizpassword_required";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -264 \\core\\event\\config_log_created core created config_log config_log 851 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"subnet";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -265 \\core\\event\\config_log_created core created config_log config_log 852 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"subnet_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -266 \\core\\event\\config_log_created core created config_log config_log 853 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"delay1";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -267 \\core\\event\\config_log_created core created config_log config_log 854 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"delay1_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -268 \\core\\event\\config_log_created core created config_log config_log 855 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"delay2";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -269 \\core\\event\\config_log_created core created config_log config_log 856 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"delay2_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -270 \\core\\event\\config_log_created core created config_log config_log 857 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"browsersecurity";s:8:"oldvalue";N;s:5:"value";s:1:"-";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -271 \\core\\event\\config_log_created core created config_log config_log 858 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"browsersecurity_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -272 \\core\\event\\config_log_created core created config_log config_log 859 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"initialnumfeedbacks";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -273 \\core\\event\\config_log_created core created config_log config_log 860 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"autosaveperiod";s:8:"oldvalue";N;s:5:"value";s:2:"60";s:6:"plugin";s:4:"quiz";} 1609884656 web 67.182.30.218 \N -274 \\core\\event\\config_log_created core created config_log config_log 861 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"autoreconfigureseb";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:14:"quizaccess_seb";} 1609884656 web 67.182.30.218 \N -275 \\core\\event\\config_log_created core created config_log config_log 862 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"showseblinks";s:8:"oldvalue";N;s:5:"value";s:8:"seb,http";s:6:"plugin";s:14:"quizaccess_seb";} 1609884656 web 67.182.30.218 \N -276 \\core\\event\\config_log_created core created config_log config_log 863 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"downloadlink";s:8:"oldvalue";N;s:5:"value";s:44:"https://safeexambrowser.org/download_en.html";s:6:"plugin";s:14:"quizaccess_seb";} 1609884656 web 67.182.30.218 \N -277 \\core\\event\\config_log_created core created config_log config_log 864 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"quizpasswordrequired";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"quizaccess_seb";} 1609884656 web 67.182.30.218 \N -278 \\core\\event\\config_log_created core created config_log config_log 865 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"displayblocksbeforestart";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"quizaccess_seb";} 1609884656 web 67.182.30.218 \N -279 \\core\\event\\config_log_created core created config_log config_log 866 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"displayblockswhenfinished";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:14:"quizaccess_seb";} 1609884656 web 67.182.30.218 \N -280 \\core\\event\\config_log_created core created config_log config_log 867 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"displaycoursestructure";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -281 \\core\\event\\config_log_created core created config_log config_log 868 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"displaycoursestructure_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -1021 \\core\\event\\user_loggedin core loggedin user user 2 r 0 1 10 0 2 0 \N 0 {"username":"admin"} 1612797602 web 67.182.30.218 \N -282 \\core\\event\\config_log_created core created config_log config_log 869 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:5:"popup";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -283 \\core\\event\\config_log_created core created config_log config_log 870 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"popup_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -284 \\core\\event\\config_log_created core created config_log config_log 871 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"displayactivityname";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -285 \\core\\event\\config_log_created core created config_log config_log 872 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"framewidth";s:8:"oldvalue";N;s:5:"value";s:3:"100";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -286 \\core\\event\\config_log_created core created config_log config_log 873 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"framewidth_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -287 \\core\\event\\config_log_created core created config_log config_log 874 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"frameheight";s:8:"oldvalue";N;s:5:"value";s:3:"500";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -288 \\core\\event\\config_log_created core created config_log config_log 875 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"frameheight_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -289 \\core\\event\\config_log_created core created config_log config_log 876 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"winoptgrp_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -290 \\core\\event\\config_log_created core created config_log config_log 877 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"scrollbars";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -291 \\core\\event\\config_log_created core created config_log config_log 878 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"directories";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -292 \\core\\event\\config_log_created core created config_log config_log 879 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"location";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -293 \\core\\event\\config_log_created core created config_log config_log 880 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"menubar";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -294 \\core\\event\\config_log_created core created config_log config_log 881 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"toolbar";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -295 \\core\\event\\config_log_created core created config_log config_log 882 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"status";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -296 \\core\\event\\config_log_created core created config_log config_log 883 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"skipview";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -297 \\core\\event\\config_log_created core created config_log config_log 884 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"skipview_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -298 \\core\\event\\config_log_created core created config_log config_log 885 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"hidebrowse";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -299 \\core\\event\\config_log_created core created config_log config_log 886 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"hidebrowse_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -300 \\core\\event\\config_log_created core created config_log config_log 887 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"hidetoc";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -301 \\core\\event\\config_log_created core created config_log config_log 888 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"hidetoc_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -302 \\core\\event\\config_log_created core created config_log config_log 889 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:3:"nav";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -303 \\core\\event\\config_log_created core created config_log config_log 890 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"nav_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -304 \\core\\event\\config_log_created core created config_log config_log 891 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"navpositionleft";s:8:"oldvalue";N;s:5:"value";s:4:"-100";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -305 \\core\\event\\config_log_created core created config_log config_log 892 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"navpositionleft_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -306 \\core\\event\\config_log_created core created config_log config_log 893 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"navpositiontop";s:8:"oldvalue";N;s:5:"value";s:4:"-100";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -307 \\core\\event\\config_log_created core created config_log config_log 894 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"navpositiontop_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -308 \\core\\event\\config_log_created core created config_log config_log 895 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"collapsetocwinsize";s:8:"oldvalue";N;s:5:"value";s:3:"767";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -309 \\core\\event\\config_log_created core created config_log config_log 896 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"collapsetocwinsize_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -310 \\core\\event\\config_log_created core created config_log config_log 897 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"displayattemptstatus";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -311 \\core\\event\\config_log_created core created config_log config_log 898 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"displayattemptstatus_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -312 \\core\\event\\config_log_created core created config_log config_log 899 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"grademethod";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -313 \\core\\event\\config_log_created core created config_log config_log 900 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"maxgrade";s:8:"oldvalue";N;s:5:"value";s:3:"100";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -314 \\core\\event\\config_log_created core created config_log config_log 901 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"maxattempt";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -315 \\core\\event\\config_log_created core created config_log config_log 902 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"whatgrade";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -316 \\core\\event\\config_log_created core created config_log config_log 903 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"forcecompleted";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -317 \\core\\event\\config_log_created core created config_log config_log 904 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"forcenewattempt";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -318 \\core\\event\\config_log_created core created config_log config_log 905 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"autocommit";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -319 \\core\\event\\config_log_created core created config_log config_log 906 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"masteryoverride";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -320 \\core\\event\\config_log_created core created config_log config_log 907 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"lastattemptlock";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -321 \\core\\event\\config_log_created core created config_log config_log 908 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"auto";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -322 \\core\\event\\config_log_created core created config_log config_log 909 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"updatefreq";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -323 \\core\\event\\config_log_created core created config_log config_log 910 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"scormstandard";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -324 \\core\\event\\config_log_created core created config_log config_log 911 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"allowtypeexternal";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -325 \\core\\event\\config_log_created core created config_log config_log 912 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"allowtypelocalsync";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -326 \\core\\event\\config_log_created core created config_log config_log 913 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"allowtypeexternalaicc";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -327 \\core\\event\\config_log_created core created config_log config_log 914 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"allowaicchacp";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -328 \\core\\event\\config_log_created core created config_log config_log 915 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"aicchacptimeout";s:8:"oldvalue";N;s:5:"value";s:2:"30";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -329 \\core\\event\\config_log_created core created config_log config_log 916 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"aicchacpkeepsessiondata";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -330 \\core\\event\\config_log_created core created config_log config_log 917 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"aiccuserid";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -331 \\core\\event\\config_log_created core created config_log config_log 918 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"forcejavascript";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -332 \\core\\event\\config_log_created core created config_log config_log 919 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"allowapidebug";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -333 \\core\\event\\config_log_created core created config_log config_log 920 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"apidebugmask";s:8:"oldvalue";N;s:5:"value";s:2:".*";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -334 \\core\\event\\config_log_created core created config_log config_log 921 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"protectpackagedownloads";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1609884656 web 67.182.30.218 \N -335 \\core\\event\\config_log_created core created config_log config_log 922 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"framesize";s:8:"oldvalue";N;s:5:"value";s:3:"130";s:6:"plugin";s:3:"url";} 1609884656 web 67.182.30.218 \N -336 \\core\\event\\config_log_created core created config_log config_log 923 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"secretphrase";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:3:"url";} 1609884656 web 67.182.30.218 \N -337 \\core\\event\\config_log_created core created config_log config_log 924 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"rolesinparams";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:3:"url";} 1609884656 web 67.182.30.218 \N -338 \\core\\event\\config_log_created core created config_log config_log 925 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"displayoptions";s:8:"oldvalue";N;s:5:"value";s:7:"0,1,5,6";s:6:"plugin";s:3:"url";} 1609884656 web 67.182.30.218 \N -339 \\core\\event\\config_log_created core created config_log config_log 926 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"printintro";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:3:"url";} 1609884656 web 67.182.30.218 \N -340 \\core\\event\\config_log_created core created config_log config_log 927 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"display";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:3:"url";} 1609884656 web 67.182.30.218 \N -341 \\core\\event\\config_log_created core created config_log config_log 928 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"popupwidth";s:8:"oldvalue";N;s:5:"value";s:3:"620";s:6:"plugin";s:3:"url";} 1609884656 web 67.182.30.218 \N -342 \\core\\event\\config_log_created core created config_log config_log 929 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"popupheight";s:8:"oldvalue";N;s:5:"value";s:3:"450";s:6:"plugin";s:3:"url";} 1609884656 web 67.182.30.218 \N -343 \\core\\event\\config_log_created core created config_log config_log 930 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:5:"grade";s:8:"oldvalue";N;s:5:"value";s:2:"80";s:6:"plugin";s:8:"workshop";} 1609884656 web 67.182.30.218 \N -344 \\core\\event\\config_log_created core created config_log config_log 931 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"gradinggrade";s:8:"oldvalue";N;s:5:"value";s:2:"20";s:6:"plugin";s:8:"workshop";} 1609884656 web 67.182.30.218 \N -345 \\core\\event\\config_log_created core created config_log config_log 932 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"gradedecimals";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"workshop";} 1609884656 web 67.182.30.218 \N -346 \\core\\event\\config_log_created core created config_log config_log 933 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"maxbytes";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"workshop";} 1609884656 web 67.182.30.218 \N -347 \\core\\event\\config_log_created core created config_log config_log 934 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"strategy";s:8:"oldvalue";N;s:5:"value";s:12:"accumulative";s:6:"plugin";s:8:"workshop";} 1609884656 web 67.182.30.218 \N -348 \\core\\event\\config_log_created core created config_log config_log 935 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"examplesmode";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"workshop";} 1609884656 web 67.182.30.218 \N -349 \\core\\event\\config_log_created core created config_log config_log 936 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"numofreviews";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:25:"workshopallocation_random";} 1609884656 web 67.182.30.218 \N -350 \\core\\event\\config_log_created core created config_log config_log 937 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"grade0";s:8:"oldvalue";N;s:5:"value";s:2:"No";s:6:"plugin";s:22:"workshopform_numerrors";} 1609884656 web 67.182.30.218 \N -351 \\core\\event\\config_log_created core created config_log config_log 938 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"grade1";s:8:"oldvalue";N;s:5:"value";s:3:"Yes";s:6:"plugin";s:22:"workshopform_numerrors";} 1609884656 web 67.182.30.218 \N -352 \\core\\event\\config_log_created core created config_log config_log 939 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"comparison";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:17:"workshopeval_best";} 1609884656 web 67.182.30.218 \N -353 \\core\\event\\config_log_created core created config_log config_log 940 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"coursebinenable";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:15:"tool_recyclebin";} 1609884656 web 67.182.30.218 \N -354 \\core\\event\\config_log_created core created config_log config_log 941 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"coursebinexpiry";s:8:"oldvalue";N;s:5:"value";s:6:"604800";s:6:"plugin";s:15:"tool_recyclebin";} 1609884656 web 67.182.30.218 \N -355 \\core\\event\\config_log_created core created config_log config_log 942 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"categorybinenable";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:15:"tool_recyclebin";} 1609884656 web 67.182.30.218 \N -356 \\core\\event\\config_log_created core created config_log config_log 943 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"categorybinexpiry";s:8:"oldvalue";N;s:5:"value";s:6:"604800";s:6:"plugin";s:15:"tool_recyclebin";} 1609884656 web 67.182.30.218 \N -357 \\core\\event\\config_log_created core created config_log config_log 944 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"autohide";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:15:"tool_recyclebin";} 1609884656 web 67.182.30.218 \N -358 \\core\\event\\config_log_created core created config_log config_log 945 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"runningmethod";s:8:"oldvalue";N;s:5:"value";s:11:"commandline";s:6:"plugin";s:16:"antivirus_clamav";} 1609884656 web 67.182.30.218 \N -1022 \\core\\event\\dashboard_viewed core viewed dashboard \N \N r 0 5 30 2 2 0 2 0 null 1612797602 web 67.182.30.218 \N -359 \\core\\event\\config_log_created core created config_log config_log 946 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"pathtoclam";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"antivirus_clamav";} 1609884656 web 67.182.30.218 \N -360 \\core\\event\\config_log_created core created config_log config_log 947 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"pathtounixsocket";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"antivirus_clamav";} 1609884656 web 67.182.30.218 \N -361 \\core\\event\\config_log_created core created config_log config_log 948 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"tcpsockethost";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"antivirus_clamav";} 1609884656 web 67.182.30.218 \N -362 \\core\\event\\config_log_created core created config_log config_log 949 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"tcpsocketport";s:8:"oldvalue";N;s:5:"value";s:4:"3310";s:6:"plugin";s:16:"antivirus_clamav";} 1609884656 web 67.182.30.218 \N -363 \\core\\event\\config_log_created core created config_log config_log 950 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"clamfailureonupload";s:8:"oldvalue";N;s:5:"value";s:9:"donothing";s:6:"plugin";s:16:"antivirus_clamav";} 1609884656 web 67.182.30.218 \N -364 \\core\\event\\config_log_created core created config_log config_log 951 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:5:"tries";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"antivirus_clamav";} 1609884656 web 67.182.30.218 \N -365 \\core\\event\\config_log_created core created config_log config_log 952 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_map_firstname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -366 \\core\\event\\config_log_created core created config_log config_log 953 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updatelocal_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -367 \\core\\event\\config_log_created core created config_log config_log 954 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updateremote_firstname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -368 \\core\\event\\config_log_created core created config_log config_log 955 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -369 \\core\\event\\config_log_created core created config_log config_log 956 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_lastname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -370 \\core\\event\\config_log_created core created config_log config_log 957 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -371 \\core\\event\\config_log_created core created config_log config_log 958 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_lastname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -372 \\core\\event\\config_log_created core created config_log config_log 959 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -373 \\core\\event\\config_log_created core created config_log config_log 960 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_map_email";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -374 \\core\\event\\config_log_created core created config_log config_log 961 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updatelocal_email";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -375 \\core\\event\\config_log_created core created config_log config_log 962 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updateremote_email";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -376 \\core\\event\\config_log_created core created config_log config_log 963 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -377 \\core\\event\\config_log_created core created config_log config_log 964 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_city";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -378 \\core\\event\\config_log_created core created config_log config_log 965 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_city";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -379 \\core\\event\\config_log_created core created config_log config_log 966 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_city";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -380 \\core\\event\\config_log_created core created config_log config_log 967 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -381 \\core\\event\\config_log_created core created config_log config_log 968 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_country";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -382 \\core\\event\\config_log_created core created config_log config_log 969 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_country";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -383 \\core\\event\\config_log_created core created config_log config_log 970 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_country";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -384 \\core\\event\\config_log_created core created config_log config_log 971 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -385 \\core\\event\\config_log_created core created config_log config_log 972 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_lang";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -386 \\core\\event\\config_log_created core created config_log config_log 973 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_lang";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -387 \\core\\event\\config_log_created core created config_log config_log 974 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_lang";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -388 \\core\\event\\config_log_created core created config_log config_log 975 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -389 \\core\\event\\config_log_created core created config_log config_log 976 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_description";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -390 \\core\\event\\config_log_created core created config_log config_log 977 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_description";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -391 \\core\\event\\config_log_created core created config_log config_log 978 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_description";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -392 \\core\\event\\config_log_created core created config_log config_log 979 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -393 \\core\\event\\config_log_created core created config_log config_log 980 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"field_map_url";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -394 \\core\\event\\config_log_created core created config_log config_log 981 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_updatelocal_url";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -395 \\core\\event\\config_log_created core created config_log config_log 982 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updateremote_url";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -396 \\core\\event\\config_log_created core created config_log config_log 983 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -397 \\core\\event\\config_log_created core created config_log config_log 984 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_idnumber";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -398 \\core\\event\\config_log_created core created config_log config_log 985 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -399 \\core\\event\\config_log_created core created config_log config_log 986 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_idnumber";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -400 \\core\\event\\config_log_created core created config_log config_log 987 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -401 \\core\\event\\config_log_created core created config_log config_log 988 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_institution";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -402 \\core\\event\\config_log_created core created config_log config_log 989 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_institution";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -403 \\core\\event\\config_log_created core created config_log config_log 990 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_institution";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -404 \\core\\event\\config_log_created core created config_log config_log 991 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -405 \\core\\event\\config_log_created core created config_log config_log 992 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_department";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -406 \\core\\event\\config_log_created core created config_log config_log 993 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_department";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -407 \\core\\event\\config_log_created core created config_log config_log 994 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_department";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -1018 \\core\\event\\capability_assigned core assigned capability role_capabilities 7 u 0 1 10 0 2 0 \N 0 {"capability":"webservice\\/rest:use","oldpermission":0,"permission":1} 1609892624 web 67.182.30.218 \N -408 \\core\\event\\config_log_created core created config_log config_log 995 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -409 \\core\\event\\config_log_created core created config_log config_log 996 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone1";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -410 \\core\\event\\config_log_created core created config_log config_log 997 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -411 \\core\\event\\config_log_created core created config_log config_log 998 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone1";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -412 \\core\\event\\config_log_created core created config_log config_log 999 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -413 \\core\\event\\config_log_created core created config_log config_log 1000 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone2";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -414 \\core\\event\\config_log_created core created config_log config_log 1001 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -415 \\core\\event\\config_log_created core created config_log config_log 1002 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone2";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -416 \\core\\event\\config_log_created core created config_log config_log 1003 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -417 \\core\\event\\config_log_created core created config_log config_log 1004 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_address";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -418 \\core\\event\\config_log_created core created config_log config_log 1005 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_address";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -419 \\core\\event\\config_log_created core created config_log config_log 1006 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_address";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -420 \\core\\event\\config_log_created core created config_log config_log 1007 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -421 \\core\\event\\config_log_created core created config_log config_log 1008 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_map_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -422 \\core\\event\\config_log_created core created config_log config_log 1009 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updatelocal_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -423 \\core\\event\\config_log_created core created config_log config_log 1010 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:36:"field_updateremote_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -424 \\core\\event\\config_log_created core created config_log config_log 1011 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -425 \\core\\event\\config_log_created core created config_log config_log 1012 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_map_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -426 \\core\\event\\config_log_created core created config_log config_log 1013 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"field_updatelocal_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -427 \\core\\event\\config_log_created core created config_log config_log 1014 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updateremote_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -428 \\core\\event\\config_log_created core created config_log config_log 1015 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -429 \\core\\event\\config_log_created core created config_log config_log 1016 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_middlename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -430 \\core\\event\\config_log_created core created config_log config_log 1017 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -431 \\core\\event\\config_log_created core created config_log config_log 1018 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_middlename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -432 \\core\\event\\config_log_created core created config_log config_log 1019 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -433 \\core\\event\\config_log_created core created config_log config_log 1020 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_map_alternatename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -434 \\core\\event\\config_log_created core created config_log config_log 1021 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"field_updatelocal_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -435 \\core\\event\\config_log_created core created config_log config_log 1022 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:32:"field_updateremote_alternatename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -436 \\core\\event\\config_log_created core created config_log config_log 1023 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1609884656 web 67.182.30.218 \N -437 \\core\\event\\config_log_created core created config_log config_log 1024 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"recaptcha";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N -438 \\core\\event\\config_log_created core created config_log config_log 1025 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N -439 \\core\\event\\config_log_created core created config_log config_log 1026 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N -440 \\core\\event\\config_log_created core created config_log config_log 1027 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N -441 \\core\\event\\config_log_created core created config_log config_log 1028 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N -442 \\core\\event\\config_log_created core created config_log config_log 1029 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N -443 \\core\\event\\config_log_created core created config_log config_log 1030 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N -444 \\core\\event\\config_log_created core created config_log config_log 1031 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N -445 \\core\\event\\config_log_created core created config_log config_log 1032 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N -446 \\core\\event\\config_log_created core created config_log config_log 1033 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N -447 \\core\\event\\config_log_created core created config_log config_log 1034 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N -448 \\core\\event\\config_log_created core created config_log config_log 1035 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N -449 \\core\\event\\config_log_created core created config_log config_log 1036 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N -450 \\core\\event\\config_log_created core created config_log config_log 1037 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N -451 \\core\\event\\config_log_created core created config_log config_log 1038 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N -452 \\core\\event\\config_log_created core created config_log config_log 1039 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N -453 \\core\\event\\config_log_created core created config_log config_log 1040 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N -454 \\core\\event\\config_log_created core created config_log config_log 1041 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N -455 \\core\\event\\config_log_created core created config_log config_log 1042 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1609884656 web 67.182.30.218 \N -456 \\core\\event\\config_log_created core created config_log config_log 1043 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"host";s:8:"oldvalue";N;s:5:"value";s:9:"127.0.0.1";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -457 \\core\\event\\config_log_created core created config_log config_log 1044 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"type";s:8:"oldvalue";N;s:5:"value";s:6:"mysqli";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -458 \\core\\event\\config_log_created core created config_log config_log 1045 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"sybasequoting";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -459 \\core\\event\\config_log_created core created config_log config_log 1046 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"name";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -460 \\core\\event\\config_log_created core created config_log config_log 1047 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"user";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -461 \\core\\event\\config_log_created core created config_log config_log 1048 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"pass";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -462 \\core\\event\\config_log_created core created config_log config_log 1049 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:5:"table";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -463 \\core\\event\\config_log_created core created config_log config_log 1050 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"fielduser";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -464 \\core\\event\\config_log_created core created config_log config_log 1051 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"fieldpass";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -465 \\core\\event\\config_log_created core created config_log config_log 1052 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"passtype";s:8:"oldvalue";N;s:5:"value";s:9:"plaintext";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -466 \\core\\event\\config_log_created core created config_log config_log 1053 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"extencoding";s:8:"oldvalue";N;s:5:"value";s:5:"utf-8";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -467 \\core\\event\\config_log_created core created config_log config_log 1054 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"setupsql";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -468 \\core\\event\\config_log_created core created config_log config_log 1055 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"debugauthdb";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -469 \\core\\event\\config_log_created core created config_log config_log 1056 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"changepasswordurl";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -470 \\core\\event\\config_log_created core created config_log config_log 1057 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"removeuser";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -471 \\core\\event\\config_log_created core created config_log config_log 1058 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"updateusers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -472 \\core\\event\\config_log_created core created config_log config_log 1059 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_map_firstname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -473 \\core\\event\\config_log_created core created config_log config_log 1060 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updatelocal_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -474 \\core\\event\\config_log_created core created config_log config_log 1061 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updateremote_firstname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -475 \\core\\event\\config_log_created core created config_log config_log 1062 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -476 \\core\\event\\config_log_created core created config_log config_log 1063 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_lastname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -477 \\core\\event\\config_log_created core created config_log config_log 1064 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -478 \\core\\event\\config_log_created core created config_log config_log 1065 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_lastname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -479 \\core\\event\\config_log_created core created config_log config_log 1066 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -480 \\core\\event\\config_log_created core created config_log config_log 1067 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_map_email";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -481 \\core\\event\\config_log_created core created config_log config_log 1068 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updatelocal_email";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -482 \\core\\event\\config_log_created core created config_log config_log 1069 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updateremote_email";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -483 \\core\\event\\config_log_created core created config_log config_log 1070 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -484 \\core\\event\\config_log_created core created config_log config_log 1071 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_city";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -485 \\core\\event\\config_log_created core created config_log config_log 1072 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_city";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -486 \\core\\event\\config_log_created core created config_log config_log 1073 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_city";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -487 \\core\\event\\config_log_created core created config_log config_log 1074 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -488 \\core\\event\\config_log_created core created config_log config_log 1075 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_country";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -489 \\core\\event\\config_log_created core created config_log config_log 1076 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_country";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -490 \\core\\event\\config_log_created core created config_log config_log 1077 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_country";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -491 \\core\\event\\config_log_created core created config_log config_log 1078 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -492 \\core\\event\\config_log_created core created config_log config_log 1079 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_lang";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -493 \\core\\event\\config_log_created core created config_log config_log 1080 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_lang";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -494 \\core\\event\\config_log_created core created config_log config_log 1081 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_lang";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -495 \\core\\event\\config_log_created core created config_log config_log 1082 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -496 \\core\\event\\config_log_created core created config_log config_log 1083 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_description";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -497 \\core\\event\\config_log_created core created config_log config_log 1084 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_description";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -498 \\core\\event\\config_log_created core created config_log config_log 1085 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_description";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -499 \\core\\event\\config_log_created core created config_log config_log 1086 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -500 \\core\\event\\config_log_created core created config_log config_log 1087 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"field_map_url";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -501 \\core\\event\\config_log_created core created config_log config_log 1088 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_updatelocal_url";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -502 \\core\\event\\config_log_created core created config_log config_log 1089 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updateremote_url";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -503 \\core\\event\\config_log_created core created config_log config_log 1090 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -504 \\core\\event\\config_log_created core created config_log config_log 1091 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_idnumber";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -505 \\core\\event\\config_log_created core created config_log config_log 1092 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -506 \\core\\event\\config_log_created core created config_log config_log 1093 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_idnumber";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -507 \\core\\event\\config_log_created core created config_log config_log 1094 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -508 \\core\\event\\config_log_created core created config_log config_log 1095 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_institution";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -509 \\core\\event\\config_log_created core created config_log config_log 1096 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_institution";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -510 \\core\\event\\config_log_created core created config_log config_log 1097 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_institution";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -511 \\core\\event\\config_log_created core created config_log config_log 1098 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -512 \\core\\event\\config_log_created core created config_log config_log 1099 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_department";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -513 \\core\\event\\config_log_created core created config_log config_log 1100 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_department";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -514 \\core\\event\\config_log_created core created config_log config_log 1101 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_department";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -515 \\core\\event\\config_log_created core created config_log config_log 1102 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -516 \\core\\event\\config_log_created core created config_log config_log 1103 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone1";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -517 \\core\\event\\config_log_created core created config_log config_log 1104 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -518 \\core\\event\\config_log_created core created config_log config_log 1105 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone1";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -519 \\core\\event\\config_log_created core created config_log config_log 1106 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -520 \\core\\event\\config_log_created core created config_log config_log 1107 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone2";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -521 \\core\\event\\config_log_created core created config_log config_log 1108 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -522 \\core\\event\\config_log_created core created config_log config_log 1109 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone2";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -523 \\core\\event\\config_log_created core created config_log config_log 1110 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -524 \\core\\event\\config_log_created core created config_log config_log 1111 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_address";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -525 \\core\\event\\config_log_created core created config_log config_log 1112 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_address";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -526 \\core\\event\\config_log_created core created config_log config_log 1113 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_address";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -527 \\core\\event\\config_log_created core created config_log config_log 1114 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -528 \\core\\event\\config_log_created core created config_log config_log 1115 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_map_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -529 \\core\\event\\config_log_created core created config_log config_log 1116 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updatelocal_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -530 \\core\\event\\config_log_created core created config_log config_log 1117 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:36:"field_updateremote_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -531 \\core\\event\\config_log_created core created config_log config_log 1118 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -532 \\core\\event\\config_log_created core created config_log config_log 1119 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_map_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -533 \\core\\event\\config_log_created core created config_log config_log 1120 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"field_updatelocal_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -534 \\core\\event\\config_log_created core created config_log config_log 1121 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updateremote_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -535 \\core\\event\\config_log_created core created config_log config_log 1122 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -536 \\core\\event\\config_log_created core created config_log config_log 1123 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_middlename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -537 \\core\\event\\config_log_created core created config_log config_log 1124 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -538 \\core\\event\\config_log_created core created config_log config_log 1125 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_middlename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -539 \\core\\event\\config_log_created core created config_log config_log 1126 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -540 \\core\\event\\config_log_created core created config_log config_log 1127 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_map_alternatename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -541 \\core\\event\\config_log_created core created config_log config_log 1128 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"field_updatelocal_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -542 \\core\\event\\config_log_created core created config_log config_log 1129 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:32:"field_updateremote_alternatename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -543 \\core\\event\\config_log_created core created config_log config_log 1130 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1609884656 web 67.182.30.218 \N -544 \\core\\event\\config_log_created core created config_log config_log 1131 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_map_firstname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -545 \\core\\event\\config_log_created core created config_log config_log 1132 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updatelocal_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -546 \\core\\event\\config_log_created core created config_log config_log 1133 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updateremote_firstname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -547 \\core\\event\\config_log_created core created config_log config_log 1134 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -548 \\core\\event\\config_log_created core created config_log config_log 1135 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_lastname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -549 \\core\\event\\config_log_created core created config_log config_log 1136 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -550 \\core\\event\\config_log_created core created config_log config_log 1137 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_lastname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -551 \\core\\event\\config_log_created core created config_log config_log 1138 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -552 \\core\\event\\config_log_created core created config_log config_log 1139 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_map_email";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -553 \\core\\event\\config_log_created core created config_log config_log 1140 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updatelocal_email";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -554 \\core\\event\\config_log_created core created config_log config_log 1141 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updateremote_email";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -555 \\core\\event\\config_log_created core created config_log config_log 1142 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -556 \\core\\event\\config_log_created core created config_log config_log 1143 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_city";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -557 \\core\\event\\config_log_created core created config_log config_log 1144 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_city";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -558 \\core\\event\\config_log_created core created config_log config_log 1145 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_city";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -559 \\core\\event\\config_log_created core created config_log config_log 1146 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -560 \\core\\event\\config_log_created core created config_log config_log 1147 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_country";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -561 \\core\\event\\config_log_created core created config_log config_log 1148 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_country";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -562 \\core\\event\\config_log_created core created config_log config_log 1149 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_country";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -563 \\core\\event\\config_log_created core created config_log config_log 1150 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -564 \\core\\event\\config_log_created core created config_log config_log 1151 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_lang";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -565 \\core\\event\\config_log_created core created config_log config_log 1152 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_lang";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -566 \\core\\event\\config_log_created core created config_log config_log 1153 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_lang";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -567 \\core\\event\\config_log_created core created config_log config_log 1154 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -568 \\core\\event\\config_log_created core created config_log config_log 1155 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_description";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -569 \\core\\event\\config_log_created core created config_log config_log 1156 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_description";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -570 \\core\\event\\config_log_created core created config_log config_log 1157 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_description";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -571 \\core\\event\\config_log_created core created config_log config_log 1158 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884656 web 67.182.30.218 \N -572 \\core\\event\\config_log_created core created config_log config_log 1159 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"field_map_url";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -573 \\core\\event\\config_log_created core created config_log config_log 1160 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_updatelocal_url";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -574 \\core\\event\\config_log_created core created config_log config_log 1161 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updateremote_url";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -575 \\core\\event\\config_log_created core created config_log config_log 1162 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -576 \\core\\event\\config_log_created core created config_log config_log 1163 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_idnumber";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -577 \\core\\event\\config_log_created core created config_log config_log 1164 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -578 \\core\\event\\config_log_created core created config_log config_log 1165 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_idnumber";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -579 \\core\\event\\config_log_created core created config_log config_log 1166 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -580 \\core\\event\\config_log_created core created config_log config_log 1167 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_institution";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -581 \\core\\event\\config_log_created core created config_log config_log 1168 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_institution";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -582 \\core\\event\\config_log_created core created config_log config_log 1169 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_institution";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -583 \\core\\event\\config_log_created core created config_log config_log 1170 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -584 \\core\\event\\config_log_created core created config_log config_log 1171 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_department";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -585 \\core\\event\\config_log_created core created config_log config_log 1172 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_department";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -586 \\core\\event\\config_log_created core created config_log config_log 1173 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_department";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -587 \\core\\event\\config_log_created core created config_log config_log 1174 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -588 \\core\\event\\config_log_created core created config_log config_log 1175 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone1";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -589 \\core\\event\\config_log_created core created config_log config_log 1176 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -590 \\core\\event\\config_log_created core created config_log config_log 1177 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone1";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -591 \\core\\event\\config_log_created core created config_log config_log 1178 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -592 \\core\\event\\config_log_created core created config_log config_log 1179 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone2";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -593 \\core\\event\\config_log_created core created config_log config_log 1180 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -594 \\core\\event\\config_log_created core created config_log config_log 1181 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone2";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -595 \\core\\event\\config_log_created core created config_log config_log 1182 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -596 \\core\\event\\config_log_created core created config_log config_log 1183 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_address";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -597 \\core\\event\\config_log_created core created config_log config_log 1184 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_address";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -598 \\core\\event\\config_log_created core created config_log config_log 1185 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_address";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -599 \\core\\event\\config_log_created core created config_log config_log 1186 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -600 \\core\\event\\config_log_created core created config_log config_log 1187 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_map_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -601 \\core\\event\\config_log_created core created config_log config_log 1188 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updatelocal_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -602 \\core\\event\\config_log_created core created config_log config_log 1189 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:36:"field_updateremote_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -603 \\core\\event\\config_log_created core created config_log config_log 1190 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -604 \\core\\event\\config_log_created core created config_log config_log 1191 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_map_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -605 \\core\\event\\config_log_created core created config_log config_log 1192 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"field_updatelocal_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -606 \\core\\event\\config_log_created core created config_log config_log 1193 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updateremote_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -607 \\core\\event\\config_log_created core created config_log config_log 1194 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -608 \\core\\event\\config_log_created core created config_log config_log 1195 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_middlename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -609 \\core\\event\\config_log_created core created config_log config_log 1196 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -610 \\core\\event\\config_log_created core created config_log config_log 1197 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_middlename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -611 \\core\\event\\config_log_created core created config_log config_log 1198 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -612 \\core\\event\\config_log_created core created config_log config_log 1199 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_map_alternatename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -613 \\core\\event\\config_log_created core created config_log config_log 1200 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"field_updatelocal_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -614 \\core\\event\\config_log_created core created config_log config_log 1201 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:32:"field_updateremote_alternatename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -615 \\core\\event\\config_log_created core created config_log config_log 1202 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1609884657 web 67.182.30.218 \N -616 \\core\\event\\config_log_created core created config_log config_log 1203 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"expiration";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N -617 \\core\\event\\config_log_created core created config_log config_log 1204 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"expirationtime";s:8:"oldvalue";N;s:5:"value";s:2:"30";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N -618 \\core\\event\\config_log_created core created config_log config_log 1205 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"expiration_warning";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N -619 \\core\\event\\config_log_created core created config_log config_log 1206 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N -620 \\core\\event\\config_log_created core created config_log config_log 1207 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N -621 \\core\\event\\config_log_created core created config_log config_log 1208 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N -622 \\core\\event\\config_log_created core created config_log config_log 1209 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N -623 \\core\\event\\config_log_created core created config_log config_log 1210 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N -624 \\core\\event\\config_log_created core created config_log config_log 1211 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N -625 \\core\\event\\config_log_created core created config_log config_log 1212 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N -626 \\core\\event\\config_log_created core created config_log config_log 1213 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N -627 \\core\\event\\config_log_created core created config_log config_log 1214 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N -628 \\core\\event\\config_log_created core created config_log config_log 1215 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N -629 \\core\\event\\config_log_created core created config_log config_log 1216 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N -630 \\core\\event\\config_log_created core created config_log config_log 1217 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N -631 \\core\\event\\config_log_created core created config_log config_log 1218 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N -632 \\core\\event\\config_log_created core created config_log config_log 1219 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N -633 \\core\\event\\config_log_created core created config_log config_log 1220 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N -634 \\core\\event\\config_log_created core created config_log config_log 1221 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N -635 \\core\\event\\config_log_created core created config_log config_log 1222 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N -636 \\core\\event\\config_log_created core created config_log config_log 1223 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1609884657 web 67.182.30.218 \N -637 \\core\\event\\config_log_created core created config_log config_log 1224 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"rpc_negotiation_timeout";s:8:"oldvalue";N;s:5:"value";s:2:"30";s:6:"plugin";s:9:"auth_mnet";} 1609884657 web 67.182.30.218 \N -638 \\core\\event\\config_log_created core created config_log config_log 1225 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N -639 \\core\\event\\config_log_created core created config_log config_log 1226 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N -640 \\core\\event\\config_log_created core created config_log config_log 1227 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N -641 \\core\\event\\config_log_created core created config_log config_log 1228 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N -642 \\core\\event\\config_log_created core created config_log config_log 1229 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N -643 \\core\\event\\config_log_created core created config_log config_log 1230 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N -644 \\core\\event\\config_log_created core created config_log config_log 1231 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N -645 \\core\\event\\config_log_created core created config_log config_log 1232 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N -646 \\core\\event\\config_log_created core created config_log config_log 1233 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N -647 \\core\\event\\config_log_created core created config_log config_log 1234 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N -648 \\core\\event\\config_log_created core created config_log config_log 1235 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N -649 \\core\\event\\config_log_created core created config_log config_log 1236 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N -650 \\core\\event\\config_log_created core created config_log config_log 1237 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N -651 \\core\\event\\config_log_created core created config_log config_log 1238 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N -652 \\core\\event\\config_log_created core created config_log config_log 1239 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N -653 \\core\\event\\config_log_created core created config_log config_log 1240 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N -654 \\core\\event\\config_log_created core created config_log config_log 1241 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N -655 \\core\\event\\config_log_created core created config_log config_log 1242 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1609884657 web 67.182.30.218 \N -656 \\core\\event\\config_log_created core created config_log config_log 1243 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N -657 \\core\\event\\config_log_created core created config_log config_log 1244 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N -658 \\core\\event\\config_log_created core created config_log config_log 1245 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N -659 \\core\\event\\config_log_created core created config_log config_log 1246 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N -660 \\core\\event\\config_log_created core created config_log config_log 1247 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N -661 \\core\\event\\config_log_created core created config_log config_log 1248 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N -662 \\core\\event\\config_log_created core created config_log config_log 1249 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N -663 \\core\\event\\config_log_created core created config_log config_log 1250 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N -664 \\core\\event\\config_log_created core created config_log config_log 1251 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N -665 \\core\\event\\config_log_created core created config_log config_log 1252 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N -666 \\core\\event\\config_log_created core created config_log config_log 1253 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N -667 \\core\\event\\config_log_created core created config_log config_log 1254 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N -668 \\core\\event\\config_log_created core created config_log config_log 1255 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N -669 \\core\\event\\config_log_created core created config_log config_log 1256 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N -670 \\core\\event\\config_log_created core created config_log config_log 1257 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N -671 \\core\\event\\config_log_created core created config_log config_log 1258 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N -672 \\core\\event\\config_log_created core created config_log config_log 1259 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N -673 \\core\\event\\config_log_created core created config_log config_log 1260 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1609884657 web 67.182.30.218 \N -674 \\core\\event\\config_log_created core created config_log config_log 1261 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"user_attribute";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -675 \\core\\event\\config_log_created core created config_log config_log 1262 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"convert_data";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -676 \\core\\event\\config_log_created core created config_log config_log 1263 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"alt_login";s:8:"oldvalue";N;s:5:"value";s:3:"off";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -677 \\core\\event\\config_log_created core created config_log config_log 1264 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"organization_selection";s:8:"oldvalue";N;s:5:"value";s:259:"urn:mace:organization1:providerID, Example Organization 1\n https://another.idp-id.com/shibboleth, Other Example Organization, /Shibboleth.sso/DS/SWITCHaai\n urn:mace:organization2:providerID, Example Organization 2, /Shibboleth.sso/WAYF/SWITCHaai";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -678 \\core\\event\\config_log_created core created config_log config_log 1265 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"logout_handler";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -679 \\core\\event\\config_log_created core created config_log config_log 1266 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"logout_return_url";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -680 \\core\\event\\config_log_created core created config_log config_log 1267 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"login_name";s:8:"oldvalue";N;s:5:"value";s:16:"Shibboleth Login";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -681 \\core\\event\\config_log_created core created config_log config_log 1268 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"auth_logo";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -682 \\core\\event\\config_log_created core created config_log config_log 1269 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"auth_instructions";s:8:"oldvalue";N;s:5:"value";s:194:"Use the Shibboleth login to get access via Shibboleth, if your institution supports it. Otherwise, use the normal login form shown here.";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -683 \\core\\event\\config_log_created core created config_log config_log 1270 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"changepasswordurl";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -684 \\core\\event\\config_log_created core created config_log config_log 1271 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_map_firstname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -685 \\core\\event\\config_log_created core created config_log config_log 1272 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updatelocal_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -686 \\core\\event\\config_log_created core created config_log config_log 1273 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -687 \\core\\event\\config_log_created core created config_log config_log 1274 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_lastname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -688 \\core\\event\\config_log_created core created config_log config_log 1275 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -689 \\core\\event\\config_log_created core created config_log config_log 1276 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -690 \\core\\event\\config_log_created core created config_log config_log 1277 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_map_email";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -691 \\core\\event\\config_log_created core created config_log config_log 1278 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updatelocal_email";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -692 \\core\\event\\config_log_created core created config_log config_log 1279 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -693 \\core\\event\\config_log_created core created config_log config_log 1280 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_city";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -694 \\core\\event\\config_log_created core created config_log config_log 1281 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_city";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -695 \\core\\event\\config_log_created core created config_log config_log 1282 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -696 \\core\\event\\config_log_created core created config_log config_log 1283 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_country";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -697 \\core\\event\\config_log_created core created config_log config_log 1284 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_country";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -698 \\core\\event\\config_log_created core created config_log config_log 1285 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -699 \\core\\event\\config_log_created core created config_log config_log 1286 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_lang";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -700 \\core\\event\\config_log_created core created config_log config_log 1287 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_lang";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -701 \\core\\event\\config_log_created core created config_log config_log 1288 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -702 \\core\\event\\config_log_created core created config_log config_log 1289 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_description";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -703 \\core\\event\\config_log_created core created config_log config_log 1290 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_description";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -704 \\core\\event\\config_log_created core created config_log config_log 1291 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -705 \\core\\event\\config_log_created core created config_log config_log 1292 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"field_map_url";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -706 \\core\\event\\config_log_created core created config_log config_log 1293 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_updatelocal_url";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -707 \\core\\event\\config_log_created core created config_log config_log 1294 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -708 \\core\\event\\config_log_created core created config_log config_log 1295 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_idnumber";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -709 \\core\\event\\config_log_created core created config_log config_log 1296 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -710 \\core\\event\\config_log_created core created config_log config_log 1297 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -711 \\core\\event\\config_log_created core created config_log config_log 1298 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_institution";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -712 \\core\\event\\config_log_created core created config_log config_log 1299 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_institution";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -713 \\core\\event\\config_log_created core created config_log config_log 1300 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -714 \\core\\event\\config_log_created core created config_log config_log 1301 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_department";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -715 \\core\\event\\config_log_created core created config_log config_log 1302 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_department";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -716 \\core\\event\\config_log_created core created config_log config_log 1303 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -717 \\core\\event\\config_log_created core created config_log config_log 1304 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone1";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -718 \\core\\event\\config_log_created core created config_log config_log 1305 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -719 \\core\\event\\config_log_created core created config_log config_log 1306 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -720 \\core\\event\\config_log_created core created config_log config_log 1307 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone2";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -721 \\core\\event\\config_log_created core created config_log config_log 1308 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -722 \\core\\event\\config_log_created core created config_log config_log 1309 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -723 \\core\\event\\config_log_created core created config_log config_log 1310 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_address";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -724 \\core\\event\\config_log_created core created config_log config_log 1311 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_address";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -725 \\core\\event\\config_log_created core created config_log config_log 1312 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -726 \\core\\event\\config_log_created core created config_log config_log 1313 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_map_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -727 \\core\\event\\config_log_created core created config_log config_log 1314 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updatelocal_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -728 \\core\\event\\config_log_created core created config_log config_log 1315 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -729 \\core\\event\\config_log_created core created config_log config_log 1316 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_map_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -730 \\core\\event\\config_log_created core created config_log config_log 1317 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"field_updatelocal_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -731 \\core\\event\\config_log_created core created config_log config_log 1318 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -732 \\core\\event\\config_log_created core created config_log config_log 1319 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_middlename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -733 \\core\\event\\config_log_created core created config_log config_log 1320 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -734 \\core\\event\\config_log_created core created config_log config_log 1321 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -735 \\core\\event\\config_log_created core created config_log config_log 1322 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_map_alternatename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -736 \\core\\event\\config_log_created core created config_log config_log 1323 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"field_updatelocal_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -737 \\core\\event\\config_log_created core created config_log config_log 1324 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1609884657 web 67.182.30.218 \N -738 \\core\\event\\config_log_created core created config_log config_log 1325 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"config_showbest";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N -739 \\core\\event\\config_log_created core created config_log config_log 1326 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"config_showbest_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N -740 \\core\\event\\config_log_created core created config_log config_log 1327 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"config_showworst";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N -741 \\core\\event\\config_log_created core created config_log config_log 1328 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"config_showworst_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N -742 \\core\\event\\config_log_created core created config_log config_log 1329 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"config_usegroups";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N -743 \\core\\event\\config_log_created core created config_log config_log 1330 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"config_usegroups_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N -744 \\core\\event\\config_log_created core created config_log config_log 1331 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"config_nameformat";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N -745 \\core\\event\\config_log_created core created config_log config_log 1332 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"config_nameformat_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N -746 \\core\\event\\config_log_created core created config_log config_log 1333 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"config_gradeformat";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N -747 \\core\\event\\config_log_created core created config_log config_log 1334 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"config_gradeformat_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N -748 \\core\\event\\config_log_created core created config_log config_log 1335 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"config_decimalpoints";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N -749 \\core\\event\\config_log_created core created config_log config_log 1336 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"config_decimalpoints_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1609884657 web 67.182.30.218 \N -750 \\core\\event\\config_log_created core created config_log config_log 1337 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"displaycategories";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1609884657 web 67.182.30.218 \N -751 \\core\\event\\config_log_created core created config_log config_log 1338 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"layouts";s:8:"oldvalue";N;s:5:"value";s:17:"card,list,summary";s:6:"plugin";s:16:"block_myoverview";} 1609884657 web 67.182.30.218 \N -752 \\core\\event\\config_log_created core created config_log config_log 1339 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:33:"displaygroupingallincludinghidden";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"block_myoverview";} 1609884657 web 67.182.30.218 \N -753 \\core\\event\\config_log_created core created config_log config_log 1340 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"displaygroupingall";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1609884657 web 67.182.30.218 \N -754 \\core\\event\\config_log_created core created config_log config_log 1341 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"displaygroupinginprogress";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1609884657 web 67.182.30.218 \N -755 \\core\\event\\config_log_created core created config_log config_log 1342 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"displaygroupingpast";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1609884657 web 67.182.30.218 \N -756 \\core\\event\\config_log_created core created config_log config_log 1343 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"displaygroupingfuture";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1609884657 web 67.182.30.218 \N -757 \\core\\event\\config_log_created core created config_log config_log 1344 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"displaygroupingcustomfield";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"block_myoverview";} 1609884657 web 67.182.30.218 \N -758 \\core\\event\\config_log_created core created config_log config_log 1345 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"customfiltergrouping";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"block_myoverview";} 1609884657 web 67.182.30.218 \N -759 \\core\\event\\config_log_created core created config_log config_log 1346 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"displaygroupingfavourites";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1609884657 web 67.182.30.218 \N -760 \\core\\event\\config_log_created core created config_log config_log 1347 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"displaygroupinghidden";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1609884657 web 67.182.30.218 \N -761 \\core\\event\\config_log_created core created config_log config_log 1348 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"block_course_list_adminview";s:8:"oldvalue";N;s:5:"value";s:3:"all";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -762 \\core\\event\\config_log_created core created config_log config_log 1349 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:36:"block_course_list_hideallcourseslink";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -763 \\core\\event\\config_log_created core created config_log config_log 1350 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"block_html_allowcssclasses";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -764 \\core\\event\\config_log_created core created config_log config_log 1351 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"block_online_users_timetosee";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -765 \\core\\event\\config_log_created core created config_log config_log 1352 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:37:"block_online_users_onlinestatushiding";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -766 \\core\\event\\config_log_created core created config_log config_log 1353 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"displaycategories";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:29:"block_recentlyaccessedcourses";} 1609884657 web 67.182.30.218 \N -767 \\core\\event\\config_log_created core created config_log config_log 1354 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"block_rss_client_num_entries";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -768 \\core\\event\\config_log_created core created config_log config_log 1355 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"block_rss_client_timeout";s:8:"oldvalue";N;s:5:"value";s:2:"30";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -769 \\core\\event\\config_log_created core created config_log config_log 1356 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"numsections1";s:8:"oldvalue";N;s:5:"value";s:2:"22";s:6:"plugin";s:19:"block_section_links";} 1609884657 web 67.182.30.218 \N -770 \\core\\event\\config_log_created core created config_log config_log 1357 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"incby1";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";s:19:"block_section_links";} 1609884657 web 67.182.30.218 \N -771 \\core\\event\\config_log_created core created config_log config_log 1358 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"numsections2";s:8:"oldvalue";N;s:5:"value";s:2:"40";s:6:"plugin";s:19:"block_section_links";} 1609884657 web 67.182.30.218 \N -1019 \\core\\event\\config_log_created core created config_log config_log 1601 c 0 1 10 0 2 0 \N 0 {"name":"enablemobilewebservice","oldvalue":"0","value":"1","plugin":null} 1609892624 web 67.182.30.218 \N -772 \\core\\event\\config_log_created core created config_log config_log 1359 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"incby2";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:19:"block_section_links";} 1609884657 web 67.182.30.218 \N -773 \\core\\event\\config_log_created core created config_log config_log 1360 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"displaycategories";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:20:"block_starredcourses";} 1609884657 web 67.182.30.218 \N -774 \\core\\event\\config_log_created core created config_log config_log 1361 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"apikey";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"block_tag_youtube";} 1609884657 web 67.182.30.218 \N -775 \\core\\event\\config_log_created core created config_log config_log 1362 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"activitytype";s:8:"oldvalue";N;s:5:"value";s:5:"forum";s:6:"plugin";s:21:"format_singleactivity";} 1609884657 web 67.182.30.218 \N -776 \\core\\event\\config_log_created core created config_log config_log 1363 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"issuerid";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:25:"fileconverter_googledrive";} 1609884657 web 67.182.30.218 \N -777 \\core\\event\\config_log_created core created config_log config_log 1364 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"pathtounoconv";s:8:"oldvalue";N;s:5:"value";s:16:"/usr/bin/unoconv";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -778 \\core\\event\\config_log_created core created config_log config_log 1365 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"roleid";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:12:"enrol_cohort";} 1609884657 web 67.182.30.218 \N -779 \\core\\event\\config_log_created core created config_log config_log 1366 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"unenrolaction";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_cohort";} 1609884657 web 67.182.30.218 \N -780 \\core\\event\\config_log_created core created config_log config_log 1367 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"nosyncroleids";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"enrol_meta";} 1609884657 web 67.182.30.218 \N -781 \\core\\event\\config_log_created core created config_log config_log 1368 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"syncall";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_meta";} 1609884657 web 67.182.30.218 \N -782 \\core\\event\\config_log_created core created config_log config_log 1369 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"unenrolaction";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:10:"enrol_meta";} 1609884657 web 67.182.30.218 \N -783 \\core\\event\\config_log_created core created config_log config_log 1370 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"coursesort";s:8:"oldvalue";N;s:5:"value";s:9:"sortorder";s:6:"plugin";s:10:"enrol_meta";} 1609884657 web 67.182.30.218 \N -784 \\core\\event\\config_log_created core created config_log config_log 1371 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbtype";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -785 \\core\\event\\config_log_created core created config_log config_log 1372 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbhost";s:8:"oldvalue";N;s:5:"value";s:9:"localhost";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -786 \\core\\event\\config_log_created core created config_log config_log 1373 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbuser";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -787 \\core\\event\\config_log_created core created config_log config_log 1374 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbpass";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -788 \\core\\event\\config_log_created core created config_log config_log 1375 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -789 \\core\\event\\config_log_created core created config_log config_log 1376 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"dbencoding";s:8:"oldvalue";N;s:5:"value";s:5:"utf-8";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -790 \\core\\event\\config_log_created core created config_log config_log 1377 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"dbsetupsql";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -791 \\core\\event\\config_log_created core created config_log config_log 1378 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"dbsybasequoting";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -792 \\core\\event\\config_log_created core created config_log config_log 1379 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"debugdb";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -793 \\core\\event\\config_log_created core created config_log config_log 1380 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"localcoursefield";s:8:"oldvalue";N;s:5:"value";s:8:"idnumber";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -794 \\core\\event\\config_log_created core created config_log config_log 1381 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"localuserfield";s:8:"oldvalue";N;s:5:"value";s:8:"idnumber";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -795 \\core\\event\\config_log_created core created config_log config_log 1382 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"localrolefield";s:8:"oldvalue";N;s:5:"value";s:9:"shortname";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -796 \\core\\event\\config_log_created core created config_log config_log 1383 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"localcategoryfield";s:8:"oldvalue";N;s:5:"value";s:2:"id";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -797 \\core\\event\\config_log_created core created config_log config_log 1384 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"remoteenroltable";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -798 \\core\\event\\config_log_created core created config_log config_log 1385 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"remotecoursefield";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -799 \\core\\event\\config_log_created core created config_log config_log 1386 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"remoteuserfield";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -800 \\core\\event\\config_log_created core created config_log config_log 1387 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"remoterolefield";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -801 \\core\\event\\config_log_created core created config_log config_log 1388 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"remoteotheruserfield";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -802 \\core\\event\\config_log_created core created config_log config_log 1389 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"defaultrole";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -803 \\core\\event\\config_log_created core created config_log config_log 1390 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"ignorehiddencourses";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -804 \\core\\event\\config_log_created core created config_log config_log 1391 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"unenrolaction";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -805 \\core\\event\\config_log_created core created config_log config_log 1392 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"newcoursetable";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -806 \\core\\event\\config_log_created core created config_log config_log 1393 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"newcoursefullname";s:8:"oldvalue";N;s:5:"value";s:8:"fullname";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -807 \\core\\event\\config_log_created core created config_log config_log 1394 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"newcourseshortname";s:8:"oldvalue";N;s:5:"value";s:9:"shortname";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -808 \\core\\event\\config_log_created core created config_log config_log 1395 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"newcourseidnumber";s:8:"oldvalue";N;s:5:"value";s:8:"idnumber";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -809 \\core\\event\\config_log_created core created config_log config_log 1396 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"newcoursecategory";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -810 \\core\\event\\config_log_created core created config_log config_log 1397 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"defaultcategory";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -811 \\core\\event\\config_log_created core created config_log config_log 1398 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"templatecourse";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1609884657 web 67.182.30.218 \N -812 \\core\\event\\config_log_created core created config_log config_log 1399 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"location";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_flatfile";} 1609884657 web 67.182.30.218 \N -813 \\core\\event\\config_log_created core created config_log config_log 1400 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"encoding";s:8:"oldvalue";N;s:5:"value";s:5:"UTF-8";s:6:"plugin";s:14:"enrol_flatfile";} 1609884657 web 67.182.30.218 \N -814 \\core\\event\\config_log_created core created config_log config_log 1401 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"mailstudents";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_flatfile";} 1609884657 web 67.182.30.218 \N -815 \\core\\event\\config_log_created core created config_log config_log 1402 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"mailteachers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_flatfile";} 1609884657 web 67.182.30.218 \N -816 \\core\\event\\config_log_created core created config_log config_log 1403 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"mailadmins";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_flatfile";} 1609884657 web 67.182.30.218 \N -817 \\core\\event\\config_log_created core created config_log config_log 1404 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"unenrolaction";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:14:"enrol_flatfile";} 1609884657 web 67.182.30.218 \N -818 \\core\\event\\config_log_created core created config_log config_log 1405 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"expiredaction";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:14:"enrol_flatfile";} 1609884657 web 67.182.30.218 \N -819 \\core\\event\\config_log_created core created config_log config_log 1406 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"requirepassword";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"enrol_guest";} 1609884657 web 67.182.30.218 \N -820 \\core\\event\\config_log_created core created config_log config_log 1407 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"usepasswordpolicy";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"enrol_guest";} 1609884657 web 67.182.30.218 \N -821 \\core\\event\\config_log_created core created config_log config_log 1408 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"showhint";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"enrol_guest";} 1609884657 web 67.182.30.218 \N -822 \\core\\event\\config_log_created core created config_log config_log 1409 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"defaultenrol";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:11:"enrol_guest";} 1609884657 web 67.182.30.218 \N -823 \\core\\event\\config_log_created core created config_log config_log 1410 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"status";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:11:"enrol_guest";} 1609884657 web 67.182.30.218 \N -824 \\core\\event\\config_log_created core created config_log config_log 1411 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"status_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"enrol_guest";} 1609884657 web 67.182.30.218 \N -825 \\core\\event\\config_log_created core created config_log config_log 1412 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"imsfilelocation";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -826 \\core\\event\\config_log_created core created config_log config_log 1413 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"logtolocation";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -827 \\core\\event\\config_log_created core created config_log config_log 1414 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"mailadmins";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -828 \\core\\event\\config_log_created core created config_log config_log 1415 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"createnewusers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -829 \\core\\event\\config_log_created core created config_log config_log 1416 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"imsupdateusers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -830 \\core\\event\\config_log_created core created config_log config_log 1417 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"imsdeleteusers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -831 \\core\\event\\config_log_created core created config_log config_log 1418 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"fixcaseusernames";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -832 \\core\\event\\config_log_created core created config_log config_log 1419 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"fixcasepersonalnames";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -833 \\core\\event\\config_log_created core created config_log config_log 1420 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"imssourcedidfallback";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -834 \\core\\event\\config_log_created core created config_log config_log 1421 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap01";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -835 \\core\\event\\config_log_created core created config_log config_log 1422 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap02";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -836 \\core\\event\\config_log_created core created config_log config_log 1423 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap03";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -837 \\core\\event\\config_log_created core created config_log config_log 1424 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap04";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -838 \\core\\event\\config_log_created core created config_log config_log 1425 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap05";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -839 \\core\\event\\config_log_created core created config_log config_log 1426 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap06";s:8:"oldvalue";N;s:5:"value";s:1:"4";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -840 \\core\\event\\config_log_created core created config_log config_log 1427 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap07";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -841 \\core\\event\\config_log_created core created config_log config_log 1428 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap08";s:8:"oldvalue";N;s:5:"value";s:1:"4";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -842 \\core\\event\\config_log_created core created config_log config_log 1429 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"truncatecoursecodes";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -843 \\core\\event\\config_log_created core created config_log config_log 1430 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"createnewcourses";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -844 \\core\\event\\config_log_created core created config_log config_log 1431 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"updatecourses";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -845 \\core\\event\\config_log_created core created config_log config_log 1432 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"createnewcategories";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -846 \\core\\event\\config_log_created core created config_log config_log 1433 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"nestedcategories";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -847 \\core\\event\\config_log_created core created config_log config_log 1434 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"categoryidnumber";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -848 \\core\\event\\config_log_created core created config_log config_log 1435 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"categoryseparator";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -849 \\core\\event\\config_log_created core created config_log config_log 1436 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"imsunenrol";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -850 \\core\\event\\config_log_created core created config_log config_log 1437 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"imscoursemapshortname";s:8:"oldvalue";N;s:5:"value";s:10:"coursecode";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -851 \\core\\event\\config_log_created core created config_log config_log 1438 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"imscoursemapfullname";s:8:"oldvalue";N;s:5:"value";s:5:"short";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -852 \\core\\event\\config_log_created core created config_log config_log 1439 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"imscoursemapsummary";s:8:"oldvalue";N;s:5:"value";s:6:"ignore";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -853 \\core\\event\\config_log_created core created config_log config_log 1440 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"imsrestricttarget";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -854 \\core\\event\\config_log_created core created config_log config_log 1441 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imscapitafix";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1609884657 web 67.182.30.218 \N -855 \\core\\event\\config_log_created core created config_log config_log 1442 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"expiredaction";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:12:"enrol_manual";} 1609884657 web 67.182.30.218 \N -856 \\core\\event\\config_log_created core created config_log config_log 1443 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"expirynotifyhour";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";s:12:"enrol_manual";} 1609884657 web 67.182.30.218 \N -857 \\core\\event\\config_log_created core created config_log config_log 1444 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"defaultenrol";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:12:"enrol_manual";} 1609884657 web 67.182.30.218 \N -858 \\core\\event\\config_log_created core created config_log config_log 1445 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"status";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_manual";} 1609884657 web 67.182.30.218 \N -859 \\core\\event\\config_log_created core created config_log config_log 1446 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"roleid";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:12:"enrol_manual";} 1609884657 web 67.182.30.218 \N -860 \\core\\event\\config_log_created core created config_log config_log 1447 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"enrolstart";s:8:"oldvalue";N;s:5:"value";s:1:"4";s:6:"plugin";s:12:"enrol_manual";} 1609884657 web 67.182.30.218 \N -861 \\core\\event\\config_log_created core created config_log config_log 1448 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"enrolperiod";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_manual";} 1609884657 web 67.182.30.218 \N -862 \\core\\event\\config_log_created core created config_log config_log 1449 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"expirynotify";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_manual";} 1609884657 web 67.182.30.218 \N -863 \\core\\event\\config_log_created core created config_log config_log 1450 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"expirythreshold";s:8:"oldvalue";N;s:5:"value";s:5:"86400";s:6:"plugin";s:12:"enrol_manual";} 1609884657 web 67.182.30.218 \N -864 \\core\\event\\config_log_created core created config_log config_log 1451 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"roleid";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:10:"enrol_mnet";} 1609884657 web 67.182.30.218 \N -865 \\core\\event\\config_log_created core created config_log config_log 1452 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"roleid_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_mnet";} 1609884657 web 67.182.30.218 \N -866 \\core\\event\\config_log_created core created config_log config_log 1453 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"paypalbusiness";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:12:"enrol_paypal";} 1609884657 web 67.182.30.218 \N -867 \\core\\event\\config_log_created core created config_log config_log 1454 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"mailstudents";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_paypal";} 1609884657 web 67.182.30.218 \N -868 \\core\\event\\config_log_created core created config_log config_log 1455 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"mailteachers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_paypal";} 1609884657 web 67.182.30.218 \N -869 \\core\\event\\config_log_created core created config_log config_log 1456 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"mailadmins";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_paypal";} 1609884657 web 67.182.30.218 \N -870 \\core\\event\\config_log_created core created config_log config_log 1457 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"expiredaction";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:12:"enrol_paypal";} 1609884657 web 67.182.30.218 \N -871 \\core\\event\\config_log_created core created config_log config_log 1458 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"status";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:12:"enrol_paypal";} 1609884657 web 67.182.30.218 \N -872 \\core\\event\\config_log_created core created config_log config_log 1459 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"cost";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_paypal";} 1609884657 web 67.182.30.218 \N -873 \\core\\event\\config_log_created core created config_log config_log 1460 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"currency";s:8:"oldvalue";N;s:5:"value";s:3:"USD";s:6:"plugin";s:12:"enrol_paypal";} 1609884657 web 67.182.30.218 \N -874 \\core\\event\\config_log_created core created config_log config_log 1461 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"roleid";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:12:"enrol_paypal";} 1609884657 web 67.182.30.218 \N -875 \\core\\event\\config_log_created core created config_log config_log 1462 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"enrolperiod";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_paypal";} 1609884657 web 67.182.30.218 \N -876 \\core\\event\\config_log_created core created config_log config_log 1463 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"emaildisplay";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";s:9:"enrol_lti";} 1609884657 web 67.182.30.218 \N -877 \\core\\event\\config_log_created core created config_log config_log 1464 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"city";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"enrol_lti";} 1609884657 web 67.182.30.218 \N -878 \\core\\event\\config_log_created core created config_log config_log 1465 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"country";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"enrol_lti";} 1609884657 web 67.182.30.218 \N -879 \\core\\event\\config_log_created core created config_log config_log 1466 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"timezone";s:8:"oldvalue";N;s:5:"value";s:2:"99";s:6:"plugin";s:9:"enrol_lti";} 1609884657 web 67.182.30.218 \N -880 \\core\\event\\config_log_created core created config_log config_log 1467 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"lang";s:8:"oldvalue";N;s:5:"value";s:2:"en";s:6:"plugin";s:9:"enrol_lti";} 1609884657 web 67.182.30.218 \N -881 \\core\\event\\config_log_created core created config_log config_log 1468 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"institution";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"enrol_lti";} 1609884657 web 67.182.30.218 \N -882 \\core\\event\\config_log_created core created config_log config_log 1469 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"requirepassword";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N -883 \\core\\event\\config_log_created core created config_log config_log 1470 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"usepasswordpolicy";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N -884 \\core\\event\\config_log_created core created config_log config_log 1471 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"showhint";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N -885 \\core\\event\\config_log_created core created config_log config_log 1472 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"expiredaction";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N -886 \\core\\event\\config_log_created core created config_log config_log 1473 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"expirynotifyhour";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N -887 \\core\\event\\config_log_created core created config_log config_log 1474 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"defaultenrol";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N -888 \\core\\event\\config_log_created core created config_log config_log 1475 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"status";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N -889 \\core\\event\\config_log_created core created config_log config_log 1476 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"newenrols";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N -890 \\core\\event\\config_log_created core created config_log config_log 1477 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"groupkey";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N -891 \\core\\event\\config_log_created core created config_log config_log 1478 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"roleid";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N -892 \\core\\event\\config_log_created core created config_log config_log 1479 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"enrolperiod";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N -893 \\core\\event\\config_log_created core created config_log config_log 1480 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"expirynotify";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N -894 \\core\\event\\config_log_created core created config_log config_log 1481 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"expirythreshold";s:8:"oldvalue";N;s:5:"value";s:5:"86400";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N -895 \\core\\event\\config_log_created core created config_log config_log 1482 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"longtimenosee";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N -896 \\core\\event\\config_log_created core created config_log config_log 1483 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"maxenrolled";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N -897 \\core\\event\\config_log_created core created config_log config_log 1484 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"sendcoursewelcomemessage";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_self";} 1609884657 web 67.182.30.218 \N -898 \\core\\event\\config_log_created core created config_log config_log 1485 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"formats";s:8:"oldvalue";N;s:5:"value";s:5:"1,4,0";s:6:"plugin";s:16:"filter_urltolink";} 1609884657 web 67.182.30.218 \N -899 \\core\\event\\config_log_created core created config_log config_log 1486 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"embedimages";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"filter_urltolink";} 1609884657 web 67.182.30.218 \N -900 \\core\\event\\config_log_created core created config_log config_log 1487 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"formats";s:8:"oldvalue";N;s:5:"value";s:5:"1,4,0";s:6:"plugin";s:15:"filter_emoticon";} 1609884657 web 67.182.30.218 \N -901 \\core\\event\\config_log_created core created config_log config_log 1488 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"allowedsources";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"filter_displayh5p";} 1609884657 web 67.182.30.218 \N -902 \\core\\event\\config_log_created core created config_log config_log 1489 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"httpsurl";s:8:"oldvalue";N;s:5:"value";s:53:"https://cdn.jsdelivr.net/npm/mathjax@2.7.8/MathJax.js";s:6:"plugin";s:20:"filter_mathjaxloader";} 1609884657 web 67.182.30.218 \N -903 \\core\\event\\config_log_created core created config_log config_log 1490 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"texfiltercompatibility";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:20:"filter_mathjaxloader";} 1609884657 web 67.182.30.218 \N -904 \\core\\event\\config_log_created core created config_log config_log 1491 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"mathjaxconfig";s:8:"oldvalue";N;s:5:"value";s:162:"\nMathJax.Hub.Config({\n config: ["Accessible.js", "Safe.js"],\n errorSettings: { message: ["!"] },\n skipStartupTypeset: true,\n messageStyle: "none"\n});\n";s:6:"plugin";s:20:"filter_mathjaxloader";} 1609884657 web 67.182.30.218 \N -905 \\core\\event\\config_log_created core created config_log config_log 1492 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"additionaldelimiters";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:20:"filter_mathjaxloader";} 1609884657 web 67.182.30.218 \N -906 \\core\\event\\config_log_created core created config_log config_log 1493 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"filter_multilang_force_old";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -907 \\core\\event\\config_log_created core created config_log config_log 1494 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"latexpreamble";s:8:"oldvalue";N;s:5:"value";s:115:"\\usepackage[latin1]{inputenc}\n\\usepackage{amsmath}\n\\usepackage{amsfonts}\n\\RequirePackage{amsmath,amssymb,latexsym}\n";s:6:"plugin";s:10:"filter_tex";} 1609884657 web 67.182.30.218 \N -908 \\core\\event\\config_log_created core created config_log config_log 1495 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"latexbackground";s:8:"oldvalue";N;s:5:"value";s:7:"#FFFFFF";s:6:"plugin";s:10:"filter_tex";} 1609884657 web 67.182.30.218 \N -909 \\core\\event\\config_log_created core created config_log config_log 1496 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"density";s:8:"oldvalue";N;s:5:"value";s:3:"120";s:6:"plugin";s:10:"filter_tex";} 1609884657 web 67.182.30.218 \N -910 \\core\\event\\config_log_created core created config_log config_log 1497 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"pathlatex";s:8:"oldvalue";N;s:5:"value";s:14:"/usr/bin/latex";s:6:"plugin";s:10:"filter_tex";} 1609884657 web 67.182.30.218 \N -911 \\core\\event\\config_log_created core created config_log config_log 1498 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"pathdvips";s:8:"oldvalue";N;s:5:"value";s:14:"/usr/bin/dvips";s:6:"plugin";s:10:"filter_tex";} 1609884657 web 67.182.30.218 \N -912 \\core\\event\\config_log_created core created config_log config_log 1499 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"pathconvert";s:8:"oldvalue";N;s:5:"value";s:16:"/usr/bin/convert";s:6:"plugin";s:10:"filter_tex";} 1609884657 web 67.182.30.218 \N -913 \\core\\event\\config_log_created core created config_log config_log 1500 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"pathdvisvgm";s:8:"oldvalue";N;s:5:"value";s:16:"/usr/bin/dvisvgm";s:6:"plugin";s:10:"filter_tex";} 1609884657 web 67.182.30.218 \N -914 \\core\\event\\config_log_created core created config_log config_log 1501 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"pathmimetex";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"filter_tex";} 1609884657 web 67.182.30.218 \N -915 \\core\\event\\config_log_created core created config_log config_log 1502 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"convertformat";s:8:"oldvalue";N;s:5:"value";s:3:"gif";s:6:"plugin";s:10:"filter_tex";} 1609884657 web 67.182.30.218 \N -916 \\core\\event\\config_log_created core created config_log config_log 1503 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"filter_censor_badwords";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -917 \\core\\event\\config_log_created core created config_log config_log 1504 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"dbdriver";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N -918 \\core\\event\\config_log_created core created config_log config_log 1505 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbhost";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N -919 \\core\\event\\config_log_created core created config_log config_log 1506 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbuser";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N -920 \\core\\event\\config_log_created core created config_log config_log 1507 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbpass";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N -921 \\core\\event\\config_log_created core created config_log config_log 1508 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N -922 \\core\\event\\config_log_created core created config_log config_log 1509 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"dbtable";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N -923 \\core\\event\\config_log_created core created config_log config_log 1510 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"dbpersist";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N -924 \\core\\event\\config_log_created core created config_log config_log 1511 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"dbsocket";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N -925 \\core\\event\\config_log_created core created config_log config_log 1512 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbport";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N -926 \\core\\event\\config_log_created core created config_log config_log 1513 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"dbschema";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N -927 \\core\\event\\config_log_created core created config_log config_log 1514 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"dbcollation";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N -928 \\core\\event\\config_log_created core created config_log config_log 1515 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"dbhandlesoptions";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N -929 \\core\\event\\config_log_created core created config_log config_log 1516 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"buffersize";s:8:"oldvalue";N;s:5:"value";s:2:"50";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N -930 \\core\\event\\config_log_created core created config_log config_log 1517 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"jsonformat";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N -931 \\core\\event\\config_log_created core created config_log config_log 1518 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"logguests";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N -932 \\core\\event\\config_log_created core created config_log config_log 1519 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"includelevels";s:8:"oldvalue";N;s:5:"value";s:5:"1,2,0";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N -933 \\core\\event\\config_log_created core created config_log config_log 1520 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"includeactions";s:8:"oldvalue";N;s:5:"value";s:7:"c,r,u,d";s:6:"plugin";s:17:"logstore_database";} 1609884657 web 67.182.30.218 \N -934 \\core\\event\\config_log_created core created config_log config_log 1521 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"loglegacy";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:15:"logstore_legacy";} 1609884657 web 67.182.30.218 \N -935 \\core\\event\\config_log_created core created config_log config_log 1522 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"logguests";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -936 \\core\\event\\config_log_created core created config_log config_log 1523 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"loglifetime";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -937 \\core\\event\\config_log_created core created config_log config_log 1524 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"logguests";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:17:"logstore_standard";} 1609884657 web 67.182.30.218 \N -938 \\core\\event\\config_log_created core created config_log config_log 1525 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"jsonformat";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:17:"logstore_standard";} 1609884657 web 67.182.30.218 \N -939 \\core\\event\\config_log_created core created config_log config_log 1526 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"loglifetime";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:17:"logstore_standard";} 1609884657 web 67.182.30.218 \N -940 \\core\\event\\config_log_created core created config_log config_log 1527 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"buffersize";s:8:"oldvalue";N;s:5:"value";s:2:"50";s:6:"plugin";s:17:"logstore_standard";} 1609884657 web 67.182.30.218 \N -941 \\core\\event\\config_log_created core created config_log config_log 1528 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"useserver";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"mlbackend_python";} 1609884657 web 67.182.30.218 \N -942 \\core\\event\\config_log_created core created config_log config_log 1529 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"host";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"mlbackend_python";} 1609884657 web 67.182.30.218 \N -943 \\core\\event\\config_log_created core created config_log config_log 1530 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"port";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"mlbackend_python";} 1609884657 web 67.182.30.218 \N -944 \\core\\event\\config_log_created core created config_log config_log 1531 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"secure";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"mlbackend_python";} 1609884657 web 67.182.30.218 \N -945 \\core\\event\\config_log_created core created config_log config_log 1532 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"username";s:8:"oldvalue";N;s:5:"value";s:7:"default";s:6:"plugin";s:16:"mlbackend_python";} 1609884657 web 67.182.30.218 \N -946 \\core\\event\\config_log_created core created config_log config_log 1533 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"password";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"mlbackend_python";} 1609884657 web 67.182.30.218 \N -947 \\core\\event\\config_log_created core created config_log config_log 1534 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"videoextensions";s:8:"oldvalue";N;s:5:"value";s:33:"html_video,media_source,.f4v,.flv";s:6:"plugin";s:13:"media_videojs";} 1609884657 web 67.182.30.218 \N -948 \\core\\event\\config_log_created core created config_log config_log 1535 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"audioextensions";s:8:"oldvalue";N;s:5:"value";s:10:"html_audio";s:6:"plugin";s:13:"media_videojs";} 1609884657 web 67.182.30.218 \N -949 \\core\\event\\config_log_created core created config_log config_log 1536 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"rtmp";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:13:"media_videojs";} 1609884657 web 67.182.30.218 \N -950 \\core\\event\\config_log_created core created config_log config_log 1537 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"useflash";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:13:"media_videojs";} 1609884657 web 67.182.30.218 \N -951 \\core\\event\\config_log_created core created config_log config_log 1538 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"youtube";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:13:"media_videojs";} 1609884657 web 67.182.30.218 \N -952 \\core\\event\\config_log_created core created config_log config_log 1539 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"videocssclass";s:8:"oldvalue";N;s:5:"value";s:8:"video-js";s:6:"plugin";s:13:"media_videojs";} 1609884657 web 67.182.30.218 \N -953 \\core\\event\\config_log_created core created config_log config_log 1540 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"audiocssclass";s:8:"oldvalue";N;s:5:"value";s:8:"video-js";s:6:"plugin";s:13:"media_videojs";} 1609884657 web 67.182.30.218 \N -954 \\core\\event\\config_log_created core created config_log config_log 1541 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"limitsize";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:13:"media_videojs";} 1609884657 web 67.182.30.218 \N -955 \\core\\event\\config_log_created core created config_log config_log 1542 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"answerhowmany";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:17:"qtype_multichoice";} 1609884657 web 67.182.30.218 \N -956 \\core\\event\\config_log_created core created config_log config_log 1543 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"shuffleanswers";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:17:"qtype_multichoice";} 1609884657 web 67.182.30.218 \N -957 \\core\\event\\config_log_created core created config_log config_log 1544 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"answernumbering";s:8:"oldvalue";N;s:5:"value";s:3:"abc";s:6:"plugin";s:17:"qtype_multichoice";} 1609884657 web 67.182.30.218 \N -958 \\core\\event\\config_log_created core created config_log config_log 1545 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"toolbar";s:8:"oldvalue";N;s:5:"value";s:355:"collapse = collapse\nstyle1 = title, bold, italic\nlist = unorderedlist, orderedlist, indent\nlinks = link\nfiles = emojipicker, image, media, recordrtc, managefiles, h5p\nstyle2 = underline, strike, subscript, superscript\nalign = align\ninsert = equation, charmap, table, clear\nundo = undo\naccessibility = accessibilitychecker, accessibilityhelper\nother = html";s:6:"plugin";s:11:"editor_atto";} 1609884657 web 67.182.30.218 \N -959 \\core\\event\\config_log_created core created config_log config_log 1546 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"autosavefrequency";s:8:"oldvalue";N;s:5:"value";s:2:"60";s:6:"plugin";s:11:"editor_atto";} 1609884657 web 67.182.30.218 \N -960 \\core\\event\\config_log_created core created config_log config_log 1547 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"showgroups";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:13:"atto_collapse";} 1609884657 web 67.182.30.218 \N -961 \\core\\event\\config_log_created core created config_log config_log 1548 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"librarygroup1";s:8:"oldvalue";N;s:5:"value";s:244:"\n\\cdot\n\\times\n\\ast\n\\div\n\\diamond\n\\pm\n\\mp\n\\oplus\n\\ominus\n\\otimes\n\\oslash\n\\odot\n\\circ\n\\bullet\n\\asymp\n\\equiv\n\\subseteq\n\\supseteq\n\\leq\n\\geq\n\\preceq\n\\succeq\n\\sim\n\\simeq\n\\approx\n\\subset\n\\supset\n\\ll\n\\gg\n\\prec\n\\succ\n\\infty\n\\in\n\\ni\n\\forall\n\\exists\n\\neq\n";s:6:"plugin";s:13:"atto_equation";} 1609884657 web 67.182.30.218 \N -962 \\core\\event\\config_log_created core created config_log config_log 1549 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"librarygroup2";s:8:"oldvalue";N;s:5:"value";s:155:"\n\\leftarrow\n\\rightarrow\n\\uparrow\n\\downarrow\n\\leftrightarrow\n\\nearrow\n\\searrow\n\\swarrow\n\\nwarrow\n\\Leftarrow\n\\Rightarrow\n\\Uparrow\n\\Downarrow\n\\Leftrightarrow\n";s:6:"plugin";s:13:"atto_equation";} 1609884657 web 67.182.30.218 \N -963 \\core\\event\\config_log_created core created config_log config_log 1550 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"librarygroup3";s:8:"oldvalue";N;s:5:"value";s:210:"\n\\alpha\n\\beta\n\\gamma\n\\delta\n\\epsilon\n\\zeta\n\\eta\n\\theta\n\\iota\n\\kappa\n\\lambda\n\\mu\n\\nu\n\\xi\n\\pi\n\\rho\n\\sigma\n\\tau\n\\upsilon\n\\phi\n\\chi\n\\psi\n\\omega\n\\Gamma\n\\Delta\n\\Theta\n\\Lambda\n\\Xi\n\\Pi\n\\Sigma\n\\Upsilon\n\\Phi\n\\Psi\n\\Omega\n";s:6:"plugin";s:13:"atto_equation";} 1609884657 web 67.182.30.218 \N -964 \\core\\event\\config_log_created core created config_log config_log 1551 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"librarygroup4";s:8:"oldvalue";N;s:5:"value";s:239:"\n\\sum{a,b}\n\\sqrt[a]{b+c}\n\\int_{a}^{b}{c}\n\\iint_{a}^{b}{c}\n\\iiint_{a}^{b}{c}\n\\oint{a}\n(a)\n[a]\n\\lbrace{a}\\rbrace\n\\left| \\begin{matrix} a_1 & a_2 \\ a_3 & a_4 \\end{matrix} \\right|\n\\frac{a}{b+c}\n\\vec{a}\n\\binom {a} {b}\n{a \\brack b}\n{a \\brace b}\n";s:6:"plugin";s:13:"atto_equation";} 1609884657 web 67.182.30.218 \N -965 \\core\\event\\config_log_created core created config_log config_log 1552 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"allowedtypes";s:8:"oldvalue";N;s:5:"value";s:4:"both";s:6:"plugin";s:14:"atto_recordrtc";} 1609884657 web 67.182.30.218 \N -966 \\core\\event\\config_log_created core created config_log config_log 1553 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"audiobitrate";s:8:"oldvalue";N;s:5:"value";s:6:"128000";s:6:"plugin";s:14:"atto_recordrtc";} 1609884657 web 67.182.30.218 \N -967 \\core\\event\\config_log_created core created config_log config_log 1554 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"videobitrate";s:8:"oldvalue";N;s:5:"value";s:7:"2500000";s:6:"plugin";s:14:"atto_recordrtc";} 1609884657 web 67.182.30.218 \N -968 \\core\\event\\config_log_created core created config_log config_log 1555 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"timelimit";s:8:"oldvalue";N;s:5:"value";s:3:"120";s:6:"plugin";s:14:"atto_recordrtc";} 1609884657 web 67.182.30.218 \N -969 \\core\\event\\config_log_created core created config_log config_log 1556 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"allowborders";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"atto_table";} 1609884657 web 67.182.30.218 \N -970 \\core\\event\\config_log_created core created config_log config_log 1557 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"allowbackgroundcolour";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"atto_table";} 1609884657 web 67.182.30.218 \N -971 \\core\\event\\config_log_created core created config_log config_log 1558 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"allowwidth";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"atto_table";} 1609884657 web 67.182.30.218 \N -972 \\core\\event\\config_log_created core created config_log config_log 1559 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"customtoolbar";s:8:"oldvalue";N;s:5:"value";s:378:"wrap,formatselect,wrap,bold,italic,wrap,bullist,numlist,wrap,link,unlink,wrap,image\n\nundo,redo,wrap,underline,strikethrough,sub,sup,wrap,justifyleft,justifycenter,justifyright,wrap,outdent,indent,wrap,forecolor,backcolor,wrap,ltr,rtl\n\nfontselect,fontsizeselect,wrap,code,search,replace,wrap,nonbreaking,charmap,table,wrap,cleanup,removeformat,pastetext,pasteword,wrap,fullscreen";s:6:"plugin";s:14:"editor_tinymce";} 1609884657 web 67.182.30.218 \N -973 \\core\\event\\config_log_created core created config_log config_log 1560 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"fontselectlist";s:8:"oldvalue";N;s:5:"value";s:338:"Trebuchet=Trebuchet MS,Verdana,Arial,Helvetica,sans-serif;Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;Wingdings=wingdings";s:6:"plugin";s:14:"editor_tinymce";} 1609884657 web 67.182.30.218 \N -974 \\core\\event\\config_log_created core created config_log config_log 1561 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"customconfig";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"editor_tinymce";} 1609884657 web 67.182.30.218 \N -975 \\core\\event\\config_log_created core created config_log config_log 1562 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"requireemoticon";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:22:"tinymce_moodleemoticon";} 1609884657 web 67.182.30.218 \N -976 \\core\\event\\config_log_created core created config_log config_log 1563 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"spellengine";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:20:"tinymce_spellchecker";} 1609884657 web 67.182.30.218 \N -977 \\core\\event\\config_log_created core created config_log config_log 1564 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"spelllanguagelist";s:8:"oldvalue";N;s:5:"value";s:118:"+English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv";s:6:"plugin";s:20:"tinymce_spellchecker";} 1609884657 web 67.182.30.218 \N -978 \\core\\event\\config_log_created core created config_log config_log 1565 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"profileroles";s:8:"oldvalue";N;s:5:"value";s:5:"5,4,3";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -979 \\core\\event\\config_log_created core created config_log config_log 1566 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"coursecontact";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -980 \\core\\event\\config_log_created core created config_log config_log 1567 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"frontpage";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -981 \\core\\event\\config_log_created core created config_log config_log 1568 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"frontpageloggedin";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -982 \\core\\event\\config_log_created core created config_log config_log 1569 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"maxcategorydepth";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -983 \\core\\event\\config_log_created core created config_log config_log 1570 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"frontpagecourselimit";s:8:"oldvalue";N;s:5:"value";s:3:"200";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -984 \\core\\event\\config_log_created core created config_log config_log 1571 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"commentsperpage";s:8:"oldvalue";N;s:5:"value";s:2:"15";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -985 \\core\\event\\config_log_created core created config_log config_log 1572 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"defaultfrontpageroleid";s:8:"oldvalue";N;s:5:"value";s:1:"8";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -986 \\core\\event\\config_log_created core created config_log config_log 1573 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"messageinbound_enabled";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -987 \\core\\event\\config_log_created core created config_log config_log 1574 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"messageinbound_mailbox";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -988 \\core\\event\\config_log_created core created config_log config_log 1575 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"messageinbound_domain";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -989 \\core\\event\\config_log_created core created config_log config_log 1576 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"messageinbound_host";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -990 \\core\\event\\config_log_created core created config_log config_log 1577 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"messageinbound_hostssl";s:8:"oldvalue";N;s:5:"value";s:3:"ssl";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -991 \\core\\event\\config_log_created core created config_log config_log 1578 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"messageinbound_hostuser";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -992 \\core\\event\\config_log_created core created config_log config_log 1579 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"messageinbound_hostpass";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -993 \\core\\event\\config_log_created core created config_log config_log 1580 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"enablemobilewebservice";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1609884657 web 67.182.30.218 \N -994 \\core\\event\\config_log_created core created config_log config_log 1581 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"apppolicy";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N -995 \\core\\event\\config_log_created core created config_log config_log 1582 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"typeoflogin";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N -996 \\core\\event\\config_log_created core created config_log config_log 1583 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"qrcodetype";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N -997 \\core\\event\\config_log_created core created config_log config_log 1584 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"forcedurlscheme";s:8:"oldvalue";N;s:5:"value";s:12:"moodlemobile";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N -998 \\core\\event\\config_log_created core created config_log config_log 1585 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"minimumversion";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N -999 \\core\\event\\config_log_created core created config_log config_log 1586 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"mobilecssurl";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1609884658 web 67.182.30.218 \N -1000 \\core\\event\\config_log_created core created config_log config_log 1587 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"enablesmartappbanners";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N -1001 \\core\\event\\config_log_created core created config_log config_log 1588 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"iosappid";s:8:"oldvalue";N;s:5:"value";s:9:"633359593";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N -1002 \\core\\event\\config_log_created core created config_log config_log 1589 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"androidappid";s:8:"oldvalue";N;s:5:"value";s:23:"com.moodle.moodlemobile";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N -1003 \\core\\event\\config_log_created core created config_log config_log 1590 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"setuplink";s:8:"oldvalue";N;s:5:"value";s:34:"https://download.moodle.org/mobile";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N -1004 \\core\\event\\config_log_created core created config_log config_log 1591 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"forcelogout";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N -1005 \\core\\event\\config_log_created core created config_log config_log 1592 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"disabledfeatures";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N -1006 \\core\\event\\config_log_created core created config_log config_log 1593 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"custommenuitems";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N -1007 \\core\\event\\config_log_created core created config_log config_log 1594 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"customlangstrings";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"tool_mobile";} 1609884658 web 67.182.30.218 \N -1008 \\core\\event\\config_log_created core created config_log config_log 1595 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"enablemoodlenet";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"tool_moodlenet";} 1609884658 web 67.182.30.218 \N -1009 \\core\\event\\config_log_created core created config_log config_log 1596 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"defaultmoodlenetname";s:8:"oldvalue";N;s:5:"value";s:17:"MoodleNet Central";s:6:"plugin";s:14:"tool_moodlenet";} 1609884658 web 67.182.30.218 \N -1010 \\core\\event\\config_log_created core created config_log config_log 1597 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"defaultmoodlenet";s:8:"oldvalue";N;s:5:"value";s:18:"https://moodle.net";s:6:"plugin";s:14:"tool_moodlenet";} 1609884658 web 67.182.30.218 \N -1011 \\core\\event\\config_log_created core created config_log config_log 1598 c 0 1 10 0 2 0 \N 0 {"name":"timezone","oldvalue":null,"value":"America\\/Los_Angeles","plugin":null} 1609884709 web 67.182.30.218 \N -1012 \\core\\event\\config_log_created core created config_log config_log 1599 c 0 1 10 0 2 0 \N 0 {"name":"registerauth","oldvalue":null,"value":"","plugin":null} 1609884709 web 67.182.30.218 \N -1013 \\core\\event\\config_log_created core created config_log config_log 1600 c 0 1 10 0 2 0 \N 0 {"name":"noreplyaddress","oldvalue":null,"value":"noreply@email.com","plugin":null} 1609884719 web 67.182.30.218 \N -1014 \\core\\event\\dashboard_viewed core viewed dashboard \N \N r 0 5 30 2 2 0 2 0 null 1609884720 web 67.182.30.218 \N -1015 \\core\\event\\dashboard_viewed core viewed dashboard \N \N r 0 5 30 2 2 0 2 0 null 1609885379 web 67.182.30.218 \N -1016 \\core\\event\\dashboard_viewed core viewed dashboard \N \N r 0 5 30 2 2 0 2 0 null 1609885382 web 67.182.30.218 \N -1017 \\core\\event\\course_viewed core viewed course \N \N r 2 2 50 1 0 1 \N 0 null 1609888714 web 5.189.174.129 \N +1 \\core\\event\\user_loggedin core loggedin user user 2 r 0 1 10 0 2 0 \N 0 a:1:{s:8:"username";s:5:"admin";} 1612889108 web 67.182.30.218 \N +2 \\core\\event\\user_password_updated core updated user_password \N \N u 0 5 30 2 2 0 2 0 a:1:{s:14:"forgottenreset";b:0;} 1612889142 web 67.182.30.218 \N +3 \\core\\event\\user_updated core updated user user 2 u 0 5 30 2 2 0 2 0 N; 1612889142 web 67.182.30.218 \N +4 \\core\\event\\config_log_created core created config_log config_log 618 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"notloggedinroleid";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +5 \\core\\event\\config_log_created core created config_log config_log 619 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"guestroleid";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +6 \\core\\event\\config_log_created core created config_log config_log 620 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"defaultuserroleid";s:8:"oldvalue";N;s:5:"value";s:1:"7";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +7 \\core\\event\\config_log_created core created config_log config_log 621 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"creatornewroleid";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +8 \\core\\event\\config_log_created core created config_log config_log 622 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"restorernewroleid";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +9 \\core\\event\\config_log_created core created config_log config_log 623 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"contactdataprotectionofficer";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"tool_dataprivacy";} 1612889142 web 67.182.30.218 \N +10 \\core\\event\\config_log_created core created config_log config_log 624 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"automaticdataexportapproval";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"tool_dataprivacy";} 1612889142 web 67.182.30.218 \N +11 \\core\\event\\config_log_created core created config_log config_log 625 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"automaticdatadeletionapproval";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"tool_dataprivacy";} 1612889142 web 67.182.30.218 \N +12 \\core\\event\\config_log_created core created config_log config_log 626 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"automaticdeletionrequests";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"tool_dataprivacy";} 1612889142 web 67.182.30.218 \N +13 \\core\\event\\config_log_created core created config_log config_log 627 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"privacyrequestexpiry";s:8:"oldvalue";N;s:5:"value";s:6:"604800";s:6:"plugin";s:16:"tool_dataprivacy";} 1612889142 web 67.182.30.218 \N +14 \\core\\event\\config_log_created core created config_log config_log 628 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:33:"requireallenddatesforuserdeletion";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"tool_dataprivacy";} 1612889142 web 67.182.30.218 \N +15 \\core\\event\\config_log_created core created config_log config_log 629 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"showdataretentionsummary";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"tool_dataprivacy";} 1612889142 web 67.182.30.218 \N +16 \\core\\event\\config_log_created core created config_log config_log 630 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"exportlog";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:8:"tool_log";} 1612889142 web 67.182.30.218 \N +17 \\core\\event\\config_log_created core created config_log config_log 631 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"sitepolicyhandler";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +18 \\core\\event\\config_log_created core created config_log config_log 632 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"gradebookroles";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +19 \\core\\event\\config_log_created core created config_log config_log 633 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"logstore";s:8:"oldvalue";N;s:5:"value";s:17:"logstore_standard";s:6:"plugin";s:9:"analytics";} 1612889142 web 67.182.30.218 \N +20 \\core\\event\\config_log_created core created config_log config_log 634 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"h5plibraryhandler";s:8:"oldvalue";N;s:5:"value";s:11:"h5plib_v124";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +21 \\core\\event\\config_log_created core created config_log config_log 635 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"jabberhost";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +22 \\core\\event\\config_log_created core created config_log config_log 636 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"jabberserver";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +23 \\core\\event\\config_log_created core created config_log config_log 637 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"jabberusername";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +24 \\core\\event\\config_log_created core created config_log config_log 638 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"jabberpassword";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +25 \\core\\event\\config_log_created core created config_log config_log 639 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"jabberport";s:8:"oldvalue";N;s:5:"value";s:4:"5222";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +26 \\core\\event\\config_log_created core created config_log config_log 640 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"airnotifierurl";s:8:"oldvalue";N;s:5:"value";s:27:"https://messages.moodle.net";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +27 \\core\\event\\config_log_created core created config_log config_log 641 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"airnotifierport";s:8:"oldvalue";N;s:5:"value";s:3:"443";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +28 \\core\\event\\config_log_created core created config_log config_log 642 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"airnotifiermobileappname";s:8:"oldvalue";N;s:5:"value";s:23:"com.moodle.moodlemobile";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +29 \\core\\event\\config_log_created core created config_log config_log 643 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"airnotifierappname";s:8:"oldvalue";N;s:5:"value";s:21:"commoodlemoodlemobile";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +30 \\core\\event\\config_log_created core created config_log config_log 644 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"airnotifieraccesskey";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +31 \\core\\event\\config_log_created core created config_log config_log 645 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"feedback_plugin_for_gradebook";s:8:"oldvalue";N;s:5:"value";s:23:"assignfeedback_comments";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +32 \\core\\event\\config_log_created core created config_log config_log 646 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"showrecentsubmissions";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +33 \\core\\event\\config_log_created core created config_log config_log 647 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"submissionreceipts";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +34 \\core\\event\\config_log_created core created config_log config_log 648 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"submissionstatement";s:8:"oldvalue";N;s:5:"value";s:102:"This submission is my own work, except where I have acknowledged the use of the works of other people.";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +35 \\core\\event\\config_log_created core created config_log config_log 649 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:33:"submissionstatementteamsubmission";s:8:"oldvalue";N;s:5:"value";s:112:"This submission is the work of my group, except where we have acknowledged the use of the works of other people.";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +36 \\core\\event\\config_log_created core created config_log config_log 650 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:42:"submissionstatementteamsubmissionallsubmit";s:8:"oldvalue";N;s:5:"value";s:120:"This submission is my own work as a group member, except where I have acknowledged the use of the works of other people.";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +37 \\core\\event\\config_log_created core created config_log config_log 651 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"maxperpage";s:8:"oldvalue";N;s:5:"value";s:2:"-1";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +38 \\core\\event\\config_log_created core created config_log config_log 652 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"alwaysshowdescription";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +39 \\core\\event\\config_log_created core created config_log config_log 653 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"alwaysshowdescription_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +40 \\core\\event\\config_log_created core created config_log config_log 654 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"alwaysshowdescription_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +41 \\core\\event\\config_log_created core created config_log config_log 655 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"allowsubmissionsfromdate";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +42 \\core\\event\\config_log_created core created config_log config_log 656 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:32:"allowsubmissionsfromdate_enabled";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +43 \\core\\event\\config_log_created core created config_log config_log 657 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"allowsubmissionsfromdate_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +44 \\core\\event\\config_log_created core created config_log config_log 658 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"duedate";s:8:"oldvalue";N;s:5:"value";s:6:"604800";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +45 \\core\\event\\config_log_created core created config_log config_log 659 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"duedate_enabled";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +46 \\core\\event\\config_log_created core created config_log config_log 660 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"duedate_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +47 \\core\\event\\config_log_created core created config_log config_log 661 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"cutoffdate";s:8:"oldvalue";N;s:5:"value";s:7:"1209600";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +48 \\core\\event\\config_log_created core created config_log config_log 662 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"cutoffdate_enabled";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +49 \\core\\event\\config_log_created core created config_log config_log 663 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"cutoffdate_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +50 \\core\\event\\config_log_created core created config_log config_log 664 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"gradingduedate";s:8:"oldvalue";N;s:5:"value";s:7:"1209600";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +51 \\core\\event\\config_log_created core created config_log config_log 665 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"gradingduedate_enabled";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +52 \\core\\event\\config_log_created core created config_log config_log 666 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"gradingduedate_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +53 \\core\\event\\config_log_created core created config_log config_log 667 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"submissiondrafts";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +54 \\core\\event\\config_log_created core created config_log config_log 668 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"submissiondrafts_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +55 \\core\\event\\config_log_created core created config_log config_log 669 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"submissiondrafts_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +56 \\core\\event\\config_log_created core created config_log config_log 670 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"requiresubmissionstatement";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +57 \\core\\event\\config_log_created core created config_log config_log 671 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"requiresubmissionstatement_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +58 \\core\\event\\config_log_created core created config_log config_log 672 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:33:"requiresubmissionstatement_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +59 \\core\\event\\config_log_created core created config_log config_log 673 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"attemptreopenmethod";s:8:"oldvalue";N;s:5:"value";s:4:"none";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +60 \\core\\event\\config_log_created core created config_log config_log 674 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"attemptreopenmethod_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +61 \\core\\event\\config_log_created core created config_log config_log 675 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"attemptreopenmethod_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +62 \\core\\event\\config_log_created core created config_log config_log 676 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"maxattempts";s:8:"oldvalue";N;s:5:"value";s:2:"-1";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +63 \\core\\event\\config_log_created core created config_log config_log 677 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"maxattempts_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +64 \\core\\event\\config_log_created core created config_log config_log 678 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"maxattempts_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +65 \\core\\event\\config_log_created core created config_log config_log 679 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"teamsubmission";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +66 \\core\\event\\config_log_created core created config_log config_log 680 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"teamsubmission_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +67 \\core\\event\\config_log_created core created config_log config_log 681 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"teamsubmission_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +68 \\core\\event\\config_log_created core created config_log config_log 682 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"preventsubmissionnotingroup";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +69 \\core\\event\\config_log_created core created config_log config_log 683 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"preventsubmissionnotingroup_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +70 \\core\\event\\config_log_created core created config_log config_log 684 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"preventsubmissionnotingroup_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +71 \\core\\event\\config_log_created core created config_log config_log 685 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"requireallteammemberssubmit";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +72 \\core\\event\\config_log_created core created config_log config_log 686 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"requireallteammemberssubmit_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +73 \\core\\event\\config_log_created core created config_log config_log 687 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"requireallteammemberssubmit_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +74 \\core\\event\\config_log_created core created config_log config_log 688 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"teamsubmissiongroupingid";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +75 \\core\\event\\config_log_created core created config_log config_log 689 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"teamsubmissiongroupingid_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +76 \\core\\event\\config_log_created core created config_log config_log 690 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"sendnotifications";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +77 \\core\\event\\config_log_created core created config_log config_log 691 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"sendnotifications_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +78 \\core\\event\\config_log_created core created config_log config_log 692 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"sendnotifications_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +79 \\core\\event\\config_log_created core created config_log config_log 693 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"sendlatenotifications";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +80 \\core\\event\\config_log_created core created config_log config_log 694 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"sendlatenotifications_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +81 \\core\\event\\config_log_created core created config_log config_log 695 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"sendlatenotifications_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +82 \\core\\event\\config_log_created core created config_log config_log 696 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"sendstudentnotifications";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +83 \\core\\event\\config_log_created core created config_log config_log 697 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"sendstudentnotifications_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +84 \\core\\event\\config_log_created core created config_log config_log 698 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"sendstudentnotifications_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +85 \\core\\event\\config_log_created core created config_log config_log 699 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"blindmarking";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +86 \\core\\event\\config_log_created core created config_log config_log 700 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"blindmarking_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +87 \\core\\event\\config_log_created core created config_log config_log 701 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"blindmarking_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +88 \\core\\event\\config_log_created core created config_log config_log 702 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"hidegrader";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +89 \\core\\event\\config_log_created core created config_log config_log 703 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"hidegrader_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +90 \\core\\event\\config_log_created core created config_log config_log 704 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"hidegrader_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +91 \\core\\event\\config_log_created core created config_log config_log 705 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"markingworkflow";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +92 \\core\\event\\config_log_created core created config_log config_log 706 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"markingworkflow_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +93 \\core\\event\\config_log_created core created config_log config_log 707 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"markingworkflow_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +94 \\core\\event\\config_log_created core created config_log config_log 708 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"markingallocation";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +95 \\core\\event\\config_log_created core created config_log config_log 709 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"markingallocation_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +96 \\core\\event\\config_log_created core created config_log config_log 710 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"markingallocation_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N +97 \\core\\event\\config_log_created core created config_log config_log 711 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:21:"assignsubmission_file";} 1612889142 web 67.182.30.218 \N +98 \\core\\event\\config_log_created core created config_log config_log 712 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"maxfiles";s:8:"oldvalue";N;s:5:"value";s:2:"20";s:6:"plugin";s:21:"assignsubmission_file";} 1612889142 web 67.182.30.218 \N +99 \\core\\event\\config_log_created core created config_log config_log 713 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"filetypes";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:21:"assignsubmission_file";} 1612889142 web 67.182.30.218 \N +100 \\core\\event\\config_log_created core created config_log config_log 714 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"maxbytes";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:21:"assignsubmission_file";} 1612889142 web 67.182.30.218 \N +101 \\core\\event\\config_log_created core created config_log config_log 715 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:27:"assignsubmission_onlinetext";} 1612889142 web 67.182.30.218 \N +102 \\core\\event\\config_log_created core created config_log config_log 716 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:23:"assignfeedback_comments";} 1612889142 web 67.182.30.218 \N +103 \\core\\event\\config_log_created core created config_log config_log 717 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"inline";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:23:"assignfeedback_comments";} 1612889142 web 67.182.30.218 \N +104 \\core\\event\\config_log_created core created config_log config_log 718 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"inline_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:23:"assignfeedback_comments";} 1612889142 web 67.182.30.218 \N +105 \\core\\event\\config_log_created core created config_log config_log 719 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"inline_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:23:"assignfeedback_comments";} 1612889142 web 67.182.30.218 \N +106 \\core\\event\\config_log_created core created config_log config_log 720 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:22:"assignfeedback_editpdf";} 1612889142 web 67.182.30.218 \N +107 \\core\\event\\config_log_created core created config_log config_log 721 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"stamps";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"assignfeedback_editpdf";} 1612889142 web 67.182.30.218 \N +108 \\core\\event\\config_log_created core created config_log config_log 722 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"assignfeedback_file";} 1612889142 web 67.182.30.218 \N +109 \\core\\event\\config_log_created core created config_log config_log 723 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:22:"assignfeedback_offline";} 1612889142 web 67.182.30.218 \N +110 \\core\\event\\config_log_created core created config_log config_log 724 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"numberingoptions";s:8:"oldvalue";N;s:5:"value";s:7:"0,1,2,3";s:6:"plugin";s:4:"book";} 1612889142 web 67.182.30.218 \N +111 \\core\\event\\config_log_created core created config_log config_log 725 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"navoptions";s:8:"oldvalue";N;s:5:"value";s:5:"0,1,2";s:6:"plugin";s:4:"book";} 1612889142 web 67.182.30.218 \N +112 \\core\\event\\config_log_created core created config_log config_log 726 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"numbering";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"book";} 1612889142 web 67.182.30.218 \N +113 \\core\\event\\config_log_created core created config_log config_log 727 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"navstyle";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"book";} 1612889142 web 67.182.30.218 \N +114 \\core\\event\\config_log_created core created config_log config_log 728 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"chat_method";s:8:"oldvalue";N;s:5:"value";s:4:"ajax";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +115 \\core\\event\\config_log_created core created config_log config_log 729 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"chat_refresh_userlist";s:8:"oldvalue";N;s:5:"value";s:2:"10";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +116 \\core\\event\\config_log_created core created config_log config_log 730 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"chat_old_ping";s:8:"oldvalue";N;s:5:"value";s:2:"35";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +117 \\core\\event\\config_log_created core created config_log config_log 731 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"chat_refresh_room";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +118 \\core\\event\\config_log_created core created config_log config_log 732 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"chat_normal_updatemode";s:8:"oldvalue";N;s:5:"value";s:8:"jsupdate";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +119 \\core\\event\\config_log_created core created config_log config_log 733 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"chat_serverhost";s:8:"oldvalue";N;s:5:"value";s:19:"dev.derekmaxson.com";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +120 \\core\\event\\config_log_created core created config_log config_log 734 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"chat_serverip";s:8:"oldvalue";N;s:5:"value";s:9:"127.0.0.1";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +121 \\core\\event\\config_log_created core created config_log config_log 735 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"chat_serverport";s:8:"oldvalue";N;s:5:"value";s:4:"9111";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +122 \\core\\event\\config_log_created core created config_log config_log 736 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"chat_servermax";s:8:"oldvalue";N;s:5:"value";s:3:"100";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +123 \\core\\event\\config_log_created core created config_log config_log 737 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"data_enablerssfeeds";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +124 \\core\\event\\config_log_created core created config_log config_log 738 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"feedback_allowfullanonymous";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +125 \\core\\event\\config_log_created core created config_log config_log 739 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"framesize";s:8:"oldvalue";N;s:5:"value";s:3:"130";s:6:"plugin";s:8:"resource";} 1612889142 web 67.182.30.218 \N +126 \\core\\event\\config_log_created core created config_log config_log 740 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"displayoptions";s:8:"oldvalue";N;s:5:"value";s:9:"0,1,4,5,6";s:6:"plugin";s:8:"resource";} 1612889142 web 67.182.30.218 \N +127 \\core\\event\\config_log_created core created config_log config_log 741 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"printintro";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:8:"resource";} 1612889142 web 67.182.30.218 \N +128 \\core\\event\\config_log_created core created config_log config_log 742 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"display";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"resource";} 1612889142 web 67.182.30.218 \N +129 \\core\\event\\config_log_created core created config_log config_log 743 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"showsize";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"resource";} 1612889142 web 67.182.30.218 \N +130 \\core\\event\\config_log_created core created config_log config_log 744 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"showtype";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"resource";} 1612889142 web 67.182.30.218 \N +131 \\core\\event\\config_log_created core created config_log config_log 745 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"showdate";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"resource";} 1612889142 web 67.182.30.218 \N +132 \\core\\event\\config_log_created core created config_log config_log 746 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"popupwidth";s:8:"oldvalue";N;s:5:"value";s:3:"620";s:6:"plugin";s:8:"resource";} 1612889142 web 67.182.30.218 \N +133 \\core\\event\\config_log_created core created config_log config_log 747 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"popupheight";s:8:"oldvalue";N;s:5:"value";s:3:"450";s:6:"plugin";s:8:"resource";} 1612889142 web 67.182.30.218 \N +134 \\core\\event\\config_log_created core created config_log config_log 748 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"filterfiles";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"resource";} 1612889142 web 67.182.30.218 \N +135 \\core\\event\\config_log_created core created config_log config_log 749 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"showexpanded";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"folder";} 1612889142 web 67.182.30.218 \N +136 \\core\\event\\config_log_created core created config_log config_log 750 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"maxsizetodownload";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"folder";} 1612889142 web 67.182.30.218 \N +137 \\core\\event\\config_log_created core created config_log config_log 751 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"forum_displaymode";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +138 \\core\\event\\config_log_created core created config_log config_log 752 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"forum_shortpost";s:8:"oldvalue";N;s:5:"value";s:3:"300";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N +139 \\core\\event\\config_log_created core created config_log config_log 753 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"forum_longpost";s:8:"oldvalue";N;s:5:"value";s:3:"600";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N +140 \\core\\event\\config_log_created core created config_log config_log 754 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"forum_manydiscussions";s:8:"oldvalue";N;s:5:"value";s:3:"100";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N +141 \\core\\event\\config_log_created core created config_log config_log 755 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"forum_maxbytes";s:8:"oldvalue";N;s:5:"value";s:6:"512000";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N +142 \\core\\event\\config_log_created core created config_log config_log 756 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"forum_maxattachments";s:8:"oldvalue";N;s:5:"value";s:1:"9";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N +143 \\core\\event\\config_log_created core created config_log config_log 757 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"forum_subscription";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N +144 \\core\\event\\config_log_created core created config_log config_log 758 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"forum_trackingtype";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N +145 \\core\\event\\config_log_created core created config_log config_log 759 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"forum_trackreadposts";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N +146 \\core\\event\\config_log_created core created config_log config_log 760 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"forum_allowforcedreadtracking";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N +147 \\core\\event\\config_log_created core created config_log config_log 761 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"forum_oldpostdays";s:8:"oldvalue";N;s:5:"value";s:2:"14";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N +148 \\core\\event\\config_log_created core created config_log config_log 762 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"forum_usermarksread";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N +149 \\core\\event\\config_log_created core created config_log config_log 763 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"forum_cleanreadtime";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N +150 \\core\\event\\config_log_created core created config_log config_log 764 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"digestmailtime";s:8:"oldvalue";N;s:5:"value";s:2:"17";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N +151 \\core\\event\\config_log_created core created config_log config_log 765 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"forum_enablerssfeeds";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N +152 \\core\\event\\config_log_created core created config_log config_log 766 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"forum_enabletimedposts";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N +153 \\core\\event\\config_log_created core created config_log config_log 767 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"glossary_entbypage";s:8:"oldvalue";N;s:5:"value";s:2:"10";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N +154 \\core\\event\\config_log_created core created config_log config_log 768 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"glossary_dupentries";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N +155 \\core\\event\\config_log_created core created config_log config_log 769 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"glossary_allowcomments";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N +156 \\core\\event\\config_log_created core created config_log config_log 770 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"glossary_linkbydefault";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N +157 \\core\\event\\config_log_created core created config_log config_log 771 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"glossary_defaultapproval";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N +158 \\core\\event\\config_log_created core created config_log config_log 772 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"glossary_enablerssfeeds";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N +159 \\core\\event\\config_log_created core created config_log config_log 773 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"glossary_linkentries";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N +160 \\core\\event\\config_log_created core created config_log config_log 774 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"glossary_casesensitive";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N +161 \\core\\event\\config_log_created core created config_log config_log 775 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"glossary_fullmatch";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N +162 \\core\\event\\config_log_created core created config_log config_log 776 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"keepold";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"imscp";} 1612889143 web 67.182.30.218 \N +163 \\core\\event\\config_log_created core created config_log config_log 777 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"keepold_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:5:"imscp";} 1612889143 web 67.182.30.218 \N +164 \\core\\event\\config_log_created core created config_log config_log 778 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"dndmedia";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"label";} 1612889143 web 67.182.30.218 \N +165 \\core\\event\\config_log_created core created config_log config_log 779 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"dndresizewidth";s:8:"oldvalue";N;s:5:"value";s:3:"400";s:6:"plugin";s:5:"label";} 1612889143 web 67.182.30.218 \N +166 \\core\\event\\config_log_created core created config_log config_log 780 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"dndresizeheight";s:8:"oldvalue";N;s:5:"value";s:3:"400";s:6:"plugin";s:5:"label";} 1612889143 web 67.182.30.218 \N +167 \\core\\event\\config_log_created core created config_log config_log 781 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"mediafile";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +168 \\core\\event\\config_log_created core created config_log config_log 782 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"mediafile_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +169 \\core\\event\\config_log_created core created config_log config_log 783 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"mediawidth";s:8:"oldvalue";N;s:5:"value";s:3:"640";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +170 \\core\\event\\config_log_created core created config_log config_log 784 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"mediaheight";s:8:"oldvalue";N;s:5:"value";s:3:"480";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +171 \\core\\event\\config_log_created core created config_log config_log 785 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"mediaclose";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +172 \\core\\event\\config_log_created core created config_log config_log 786 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"progressbar";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +173 \\core\\event\\config_log_created core created config_log config_log 787 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"progressbar_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +174 \\core\\event\\config_log_created core created config_log config_log 788 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"ongoing";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +175 \\core\\event\\config_log_created core created config_log config_log 789 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"ongoing_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +176 \\core\\event\\config_log_created core created config_log config_log 790 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"displayleftmenu";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +177 \\core\\event\\config_log_created core created config_log config_log 791 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"displayleftmenu_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +178 \\core\\event\\config_log_created core created config_log config_log 792 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"displayleftif";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +179 \\core\\event\\config_log_created core created config_log config_log 793 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"displayleftif_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +180 \\core\\event\\config_log_created core created config_log config_log 794 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"slideshow";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +181 \\core\\event\\config_log_created core created config_log config_log 795 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"slideshow_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +182 \\core\\event\\config_log_created core created config_log config_log 796 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"slideshowwidth";s:8:"oldvalue";N;s:5:"value";s:3:"640";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +183 \\core\\event\\config_log_created core created config_log config_log 797 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"slideshowheight";s:8:"oldvalue";N;s:5:"value";s:3:"480";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +184 \\core\\event\\config_log_created core created config_log config_log 798 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"slideshowbgcolor";s:8:"oldvalue";N;s:5:"value";s:7:"#FFFFFF";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +185 \\core\\event\\config_log_created core created config_log config_log 799 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"maxanswers";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +186 \\core\\event\\config_log_created core created config_log config_log 800 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"maxanswers_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +187 \\core\\event\\config_log_created core created config_log config_log 801 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"defaultfeedback";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +188 \\core\\event\\config_log_created core created config_log config_log 802 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"defaultfeedback_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +189 \\core\\event\\config_log_created core created config_log config_log 803 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"activitylink";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +190 \\core\\event\\config_log_created core created config_log config_log 804 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"activitylink_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +191 \\core\\event\\config_log_created core created config_log config_log 805 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"timelimit";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +192 \\core\\event\\config_log_created core created config_log config_log 806 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"timelimit_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +193 \\core\\event\\config_log_created core created config_log config_log 807 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"password";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +194 \\core\\event\\config_log_created core created config_log config_log 808 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"password_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +195 \\core\\event\\config_log_created core created config_log config_log 809 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"modattempts";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +196 \\core\\event\\config_log_created core created config_log config_log 810 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"modattempts_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +197 \\core\\event\\config_log_created core created config_log config_log 811 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"displayreview";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +198 \\core\\event\\config_log_created core created config_log config_log 812 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"displayreview_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +199 \\core\\event\\config_log_created core created config_log config_log 813 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"maximumnumberofattempts";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +200 \\core\\event\\config_log_created core created config_log config_log 814 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"maximumnumberofattempts_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +201 \\core\\event\\config_log_created core created config_log config_log 815 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"defaultnextpage";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +202 \\core\\event\\config_log_created core created config_log config_log 816 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"defaultnextpage_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +203 \\core\\event\\config_log_created core created config_log config_log 817 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"numberofpagestoshow";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +204 \\core\\event\\config_log_created core created config_log config_log 818 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"numberofpagestoshow_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +205 \\core\\event\\config_log_created core created config_log config_log 819 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"practice";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +206 \\core\\event\\config_log_created core created config_log config_log 820 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"practice_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +207 \\core\\event\\config_log_created core created config_log config_log 821 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"customscoring";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +208 \\core\\event\\config_log_created core created config_log config_log 822 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"customscoring_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +209 \\core\\event\\config_log_created core created config_log config_log 823 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"retakesallowed";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +210 \\core\\event\\config_log_created core created config_log config_log 824 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"retakesallowed_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +211 \\core\\event\\config_log_created core created config_log config_log 825 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"handlingofretakes";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +212 \\core\\event\\config_log_created core created config_log config_log 826 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"handlingofretakes_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +213 \\core\\event\\config_log_created core created config_log config_log 827 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"minimumnumberofquestions";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +214 \\core\\event\\config_log_created core created config_log config_log 828 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"minimumnumberofquestions_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N +215 \\core\\event\\config_log_created core created config_log config_log 829 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"displayoptions";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:4:"page";} 1612889143 web 67.182.30.218 \N +216 \\core\\event\\config_log_created core created config_log config_log 830 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"printheading";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"page";} 1612889143 web 67.182.30.218 \N +217 \\core\\event\\config_log_created core created config_log config_log 831 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"printintro";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"page";} 1612889143 web 67.182.30.218 \N +218 \\core\\event\\config_log_created core created config_log config_log 832 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"printlastmodified";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"page";} 1612889143 web 67.182.30.218 \N +219 \\core\\event\\config_log_created core created config_log config_log 833 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"display";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:4:"page";} 1612889143 web 67.182.30.218 \N +220 \\core\\event\\config_log_created core created config_log config_log 834 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"popupwidth";s:8:"oldvalue";N;s:5:"value";s:3:"620";s:6:"plugin";s:4:"page";} 1612889143 web 67.182.30.218 \N +221 \\core\\event\\config_log_created core created config_log config_log 835 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"popupheight";s:8:"oldvalue";N;s:5:"value";s:3:"450";s:6:"plugin";s:4:"page";} 1612889143 web 67.182.30.218 \N +222 \\core\\event\\config_log_created core created config_log config_log 836 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"timelimit";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +223 \\core\\event\\config_log_created core created config_log config_log 837 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"timelimit_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +224 \\core\\event\\config_log_created core created config_log config_log 838 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"overduehandling";s:8:"oldvalue";N;s:5:"value";s:10:"autosubmit";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +225 \\core\\event\\config_log_created core created config_log config_log 839 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"overduehandling_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +226 \\core\\event\\config_log_created core created config_log config_log 840 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"graceperiod";s:8:"oldvalue";N;s:5:"value";s:5:"86400";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +227 \\core\\event\\config_log_created core created config_log config_log 841 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"graceperiod_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +228 \\core\\event\\config_log_created core created config_log config_log 842 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"graceperiodmin";s:8:"oldvalue";N;s:5:"value";s:2:"60";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +229 \\core\\event\\config_log_created core created config_log config_log 843 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"attempts";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +230 \\core\\event\\config_log_created core created config_log config_log 844 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"attempts_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +231 \\core\\event\\config_log_created core created config_log config_log 845 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"grademethod";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +232 \\core\\event\\config_log_created core created config_log config_log 846 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"grademethod_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +233 \\core\\event\\config_log_created core created config_log config_log 847 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"maximumgrade";s:8:"oldvalue";N;s:5:"value";s:2:"10";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +234 \\core\\event\\config_log_created core created config_log config_log 848 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"questionsperpage";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +235 \\core\\event\\config_log_created core created config_log config_log 849 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"questionsperpage_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +236 \\core\\event\\config_log_created core created config_log config_log 850 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"navmethod";s:8:"oldvalue";N;s:5:"value";s:4:"free";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +237 \\core\\event\\config_log_created core created config_log config_log 851 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"navmethod_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +238 \\core\\event\\config_log_created core created config_log config_log 852 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"shuffleanswers";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +239 \\core\\event\\config_log_created core created config_log config_log 853 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"shuffleanswers_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +240 \\core\\event\\config_log_created core created config_log config_log 854 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"preferredbehaviour";s:8:"oldvalue";N;s:5:"value";s:16:"deferredfeedback";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +241 \\core\\event\\config_log_created core created config_log config_log 855 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"canredoquestions";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +242 \\core\\event\\config_log_created core created config_log config_log 856 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"canredoquestions_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +243 \\core\\event\\config_log_created core created config_log config_log 857 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"attemptonlast";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +244 \\core\\event\\config_log_created core created config_log config_log 858 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"attemptonlast_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +245 \\core\\event\\config_log_created core created config_log config_log 859 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"reviewattempt";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +246 \\core\\event\\config_log_created core created config_log config_log 860 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"reviewcorrectness";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +247 \\core\\event\\config_log_created core created config_log config_log 861 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"reviewmarks";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +248 \\core\\event\\config_log_created core created config_log config_log 862 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"reviewspecificfeedback";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +249 \\core\\event\\config_log_created core created config_log config_log 863 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"reviewgeneralfeedback";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +250 \\core\\event\\config_log_created core created config_log config_log 864 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"reviewrightanswer";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +251 \\core\\event\\config_log_created core created config_log config_log 865 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"reviewoverallfeedback";s:8:"oldvalue";N;s:5:"value";s:4:"4368";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +252 \\core\\event\\config_log_created core created config_log config_log 866 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"showuserpicture";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +253 \\core\\event\\config_log_created core created config_log config_log 867 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"showuserpicture_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +254 \\core\\event\\config_log_created core created config_log config_log 868 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"decimalpoints";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +255 \\core\\event\\config_log_created core created config_log config_log 869 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"decimalpoints_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +256 \\core\\event\\config_log_created core created config_log config_log 870 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"questiondecimalpoints";s:8:"oldvalue";N;s:5:"value";s:2:"-1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +257 \\core\\event\\config_log_created core created config_log config_log 871 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"questiondecimalpoints_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +258 \\core\\event\\config_log_created core created config_log config_log 872 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"showblocks";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +259 \\core\\event\\config_log_created core created config_log config_log 873 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"showblocks_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +260 \\core\\event\\config_log_created core created config_log config_log 874 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"quizpassword";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +261 \\core\\event\\config_log_created core created config_log config_log 875 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"quizpassword_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +262 \\core\\event\\config_log_created core created config_log config_log 876 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"quizpassword_required";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +263 \\core\\event\\config_log_created core created config_log config_log 877 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"subnet";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +264 \\core\\event\\config_log_created core created config_log config_log 878 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"subnet_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +265 \\core\\event\\config_log_created core created config_log config_log 879 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"delay1";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +266 \\core\\event\\config_log_created core created config_log config_log 880 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"delay1_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +267 \\core\\event\\config_log_created core created config_log config_log 881 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"delay2";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +268 \\core\\event\\config_log_created core created config_log config_log 882 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"delay2_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +269 \\core\\event\\config_log_created core created config_log config_log 883 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"browsersecurity";s:8:"oldvalue";N;s:5:"value";s:1:"-";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +270 \\core\\event\\config_log_created core created config_log config_log 884 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"browsersecurity_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +271 \\core\\event\\config_log_created core created config_log config_log 885 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"initialnumfeedbacks";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +272 \\core\\event\\config_log_created core created config_log config_log 886 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"autosaveperiod";s:8:"oldvalue";N;s:5:"value";s:2:"60";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N +273 \\core\\event\\config_log_created core created config_log config_log 887 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"autoreconfigureseb";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:14:"quizaccess_seb";} 1612889143 web 67.182.30.218 \N +274 \\core\\event\\config_log_created core created config_log config_log 888 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"showseblinks";s:8:"oldvalue";N;s:5:"value";s:8:"seb,http";s:6:"plugin";s:14:"quizaccess_seb";} 1612889143 web 67.182.30.218 \N +275 \\core\\event\\config_log_created core created config_log config_log 889 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"downloadlink";s:8:"oldvalue";N;s:5:"value";s:44:"https://safeexambrowser.org/download_en.html";s:6:"plugin";s:14:"quizaccess_seb";} 1612889143 web 67.182.30.218 \N +276 \\core\\event\\config_log_created core created config_log config_log 890 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"quizpasswordrequired";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"quizaccess_seb";} 1612889143 web 67.182.30.218 \N +277 \\core\\event\\config_log_created core created config_log config_log 891 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"displayblocksbeforestart";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"quizaccess_seb";} 1612889143 web 67.182.30.218 \N +278 \\core\\event\\config_log_created core created config_log config_log 892 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"displayblockswhenfinished";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:14:"quizaccess_seb";} 1612889143 web 67.182.30.218 \N +279 \\core\\event\\config_log_created core created config_log config_log 893 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"displaycoursestructure";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +280 \\core\\event\\config_log_created core created config_log config_log 894 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"displaycoursestructure_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +281 \\core\\event\\config_log_created core created config_log config_log 895 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:5:"popup";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +282 \\core\\event\\config_log_created core created config_log config_log 896 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"popup_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +283 \\core\\event\\config_log_created core created config_log config_log 897 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"displayactivityname";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +284 \\core\\event\\config_log_created core created config_log config_log 898 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"framewidth";s:8:"oldvalue";N;s:5:"value";s:3:"100";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +285 \\core\\event\\config_log_created core created config_log config_log 899 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"framewidth_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +286 \\core\\event\\config_log_created core created config_log config_log 900 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"frameheight";s:8:"oldvalue";N;s:5:"value";s:3:"500";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +287 \\core\\event\\config_log_created core created config_log config_log 901 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"frameheight_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +288 \\core\\event\\config_log_created core created config_log config_log 902 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"winoptgrp_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +289 \\core\\event\\config_log_created core created config_log config_log 903 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"scrollbars";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +290 \\core\\event\\config_log_created core created config_log config_log 904 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"directories";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +291 \\core\\event\\config_log_created core created config_log config_log 905 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"location";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +292 \\core\\event\\config_log_created core created config_log config_log 906 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"menubar";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +293 \\core\\event\\config_log_created core created config_log config_log 907 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"toolbar";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +294 \\core\\event\\config_log_created core created config_log config_log 908 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"status";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +295 \\core\\event\\config_log_created core created config_log config_log 909 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"skipview";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +296 \\core\\event\\config_log_created core created config_log config_log 910 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"skipview_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +297 \\core\\event\\config_log_created core created config_log config_log 911 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"hidebrowse";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +298 \\core\\event\\config_log_created core created config_log config_log 912 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"hidebrowse_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +299 \\core\\event\\config_log_created core created config_log config_log 913 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"hidetoc";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +300 \\core\\event\\config_log_created core created config_log config_log 914 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"hidetoc_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +301 \\core\\event\\config_log_created core created config_log config_log 915 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:3:"nav";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +302 \\core\\event\\config_log_created core created config_log config_log 916 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"nav_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +303 \\core\\event\\config_log_created core created config_log config_log 917 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"navpositionleft";s:8:"oldvalue";N;s:5:"value";s:4:"-100";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +304 \\core\\event\\config_log_created core created config_log config_log 918 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"navpositionleft_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +305 \\core\\event\\config_log_created core created config_log config_log 919 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"navpositiontop";s:8:"oldvalue";N;s:5:"value";s:4:"-100";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +306 \\core\\event\\config_log_created core created config_log config_log 920 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"navpositiontop_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +307 \\core\\event\\config_log_created core created config_log config_log 921 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"collapsetocwinsize";s:8:"oldvalue";N;s:5:"value";s:3:"767";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +308 \\core\\event\\config_log_created core created config_log config_log 922 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"collapsetocwinsize_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +309 \\core\\event\\config_log_created core created config_log config_log 923 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"displayattemptstatus";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +310 \\core\\event\\config_log_created core created config_log config_log 924 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"displayattemptstatus_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +311 \\core\\event\\config_log_created core created config_log config_log 925 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"grademethod";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +312 \\core\\event\\config_log_created core created config_log config_log 926 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"maxgrade";s:8:"oldvalue";N;s:5:"value";s:3:"100";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +313 \\core\\event\\config_log_created core created config_log config_log 927 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"maxattempt";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +314 \\core\\event\\config_log_created core created config_log config_log 928 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"whatgrade";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +315 \\core\\event\\config_log_created core created config_log config_log 929 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"forcecompleted";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +316 \\core\\event\\config_log_created core created config_log config_log 930 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"forcenewattempt";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +317 \\core\\event\\config_log_created core created config_log config_log 931 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"autocommit";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +318 \\core\\event\\config_log_created core created config_log config_log 932 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"masteryoverride";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +319 \\core\\event\\config_log_created core created config_log config_log 933 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"lastattemptlock";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +320 \\core\\event\\config_log_created core created config_log config_log 934 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"auto";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +321 \\core\\event\\config_log_created core created config_log config_log 935 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"updatefreq";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +322 \\core\\event\\config_log_created core created config_log config_log 936 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"scormstandard";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +323 \\core\\event\\config_log_created core created config_log config_log 937 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"allowtypeexternal";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +324 \\core\\event\\config_log_created core created config_log config_log 938 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"allowtypelocalsync";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +325 \\core\\event\\config_log_created core created config_log config_log 939 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"allowtypeexternalaicc";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +326 \\core\\event\\config_log_created core created config_log config_log 940 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"allowaicchacp";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +327 \\core\\event\\config_log_created core created config_log config_log 941 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"aicchacptimeout";s:8:"oldvalue";N;s:5:"value";s:2:"30";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +328 \\core\\event\\config_log_created core created config_log config_log 942 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"aicchacpkeepsessiondata";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +329 \\core\\event\\config_log_created core created config_log config_log 943 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"aiccuserid";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +330 \\core\\event\\config_log_created core created config_log config_log 944 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"forcejavascript";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +331 \\core\\event\\config_log_created core created config_log config_log 945 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"allowapidebug";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +332 \\core\\event\\config_log_created core created config_log config_log 946 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"apidebugmask";s:8:"oldvalue";N;s:5:"value";s:2:".*";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +333 \\core\\event\\config_log_created core created config_log config_log 947 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"protectpackagedownloads";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N +334 \\core\\event\\config_log_created core created config_log config_log 948 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"framesize";s:8:"oldvalue";N;s:5:"value";s:3:"130";s:6:"plugin";s:3:"url";} 1612889143 web 67.182.30.218 \N +335 \\core\\event\\config_log_created core created config_log config_log 949 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"secretphrase";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:3:"url";} 1612889143 web 67.182.30.218 \N +336 \\core\\event\\config_log_created core created config_log config_log 950 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"rolesinparams";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:3:"url";} 1612889143 web 67.182.30.218 \N +337 \\core\\event\\config_log_created core created config_log config_log 951 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"displayoptions";s:8:"oldvalue";N;s:5:"value";s:7:"0,1,5,6";s:6:"plugin";s:3:"url";} 1612889143 web 67.182.30.218 \N +338 \\core\\event\\config_log_created core created config_log config_log 952 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"printintro";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:3:"url";} 1612889143 web 67.182.30.218 \N +339 \\core\\event\\config_log_created core created config_log config_log 953 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"display";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:3:"url";} 1612889143 web 67.182.30.218 \N +340 \\core\\event\\config_log_created core created config_log config_log 954 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"popupwidth";s:8:"oldvalue";N;s:5:"value";s:3:"620";s:6:"plugin";s:3:"url";} 1612889143 web 67.182.30.218 \N +341 \\core\\event\\config_log_created core created config_log config_log 955 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"popupheight";s:8:"oldvalue";N;s:5:"value";s:3:"450";s:6:"plugin";s:3:"url";} 1612889143 web 67.182.30.218 \N +342 \\core\\event\\config_log_created core created config_log config_log 956 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:5:"grade";s:8:"oldvalue";N;s:5:"value";s:2:"80";s:6:"plugin";s:8:"workshop";} 1612889143 web 67.182.30.218 \N +343 \\core\\event\\config_log_created core created config_log config_log 957 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"gradinggrade";s:8:"oldvalue";N;s:5:"value";s:2:"20";s:6:"plugin";s:8:"workshop";} 1612889143 web 67.182.30.218 \N +344 \\core\\event\\config_log_created core created config_log config_log 958 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"gradedecimals";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"workshop";} 1612889143 web 67.182.30.218 \N +345 \\core\\event\\config_log_created core created config_log config_log 959 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"maxbytes";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"workshop";} 1612889143 web 67.182.30.218 \N +346 \\core\\event\\config_log_created core created config_log config_log 960 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"strategy";s:8:"oldvalue";N;s:5:"value";s:12:"accumulative";s:6:"plugin";s:8:"workshop";} 1612889143 web 67.182.30.218 \N +347 \\core\\event\\config_log_created core created config_log config_log 961 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"examplesmode";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"workshop";} 1612889143 web 67.182.30.218 \N +348 \\core\\event\\config_log_created core created config_log config_log 962 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"numofreviews";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:25:"workshopallocation_random";} 1612889143 web 67.182.30.218 \N +349 \\core\\event\\config_log_created core created config_log config_log 963 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"grade0";s:8:"oldvalue";N;s:5:"value";s:2:"No";s:6:"plugin";s:22:"workshopform_numerrors";} 1612889143 web 67.182.30.218 \N +350 \\core\\event\\config_log_created core created config_log config_log 964 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"grade1";s:8:"oldvalue";N;s:5:"value";s:3:"Yes";s:6:"plugin";s:22:"workshopform_numerrors";} 1612889143 web 67.182.30.218 \N +351 \\core\\event\\config_log_created core created config_log config_log 965 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"comparison";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:17:"workshopeval_best";} 1612889143 web 67.182.30.218 \N +352 \\core\\event\\config_log_created core created config_log config_log 966 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"coursebinenable";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:15:"tool_recyclebin";} 1612889143 web 67.182.30.218 \N +353 \\core\\event\\config_log_created core created config_log config_log 967 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"coursebinexpiry";s:8:"oldvalue";N;s:5:"value";s:6:"604800";s:6:"plugin";s:15:"tool_recyclebin";} 1612889143 web 67.182.30.218 \N +354 \\core\\event\\config_log_created core created config_log config_log 968 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"categorybinenable";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:15:"tool_recyclebin";} 1612889143 web 67.182.30.218 \N +355 \\core\\event\\config_log_created core created config_log config_log 969 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"categorybinexpiry";s:8:"oldvalue";N;s:5:"value";s:6:"604800";s:6:"plugin";s:15:"tool_recyclebin";} 1612889143 web 67.182.30.218 \N +356 \\core\\event\\config_log_created core created config_log config_log 970 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"autohide";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:15:"tool_recyclebin";} 1612889143 web 67.182.30.218 \N +357 \\core\\event\\config_log_created core created config_log config_log 971 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"runningmethod";s:8:"oldvalue";N;s:5:"value";s:11:"commandline";s:6:"plugin";s:16:"antivirus_clamav";} 1612889143 web 67.182.30.218 \N +358 \\core\\event\\config_log_created core created config_log config_log 972 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"pathtoclam";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"antivirus_clamav";} 1612889143 web 67.182.30.218 \N +359 \\core\\event\\config_log_created core created config_log config_log 973 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"pathtounixsocket";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"antivirus_clamav";} 1612889143 web 67.182.30.218 \N +360 \\core\\event\\config_log_created core created config_log config_log 974 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"tcpsockethost";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"antivirus_clamav";} 1612889143 web 67.182.30.218 \N +361 \\core\\event\\config_log_created core created config_log config_log 975 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"tcpsocketport";s:8:"oldvalue";N;s:5:"value";s:4:"3310";s:6:"plugin";s:16:"antivirus_clamav";} 1612889143 web 67.182.30.218 \N +362 \\core\\event\\config_log_created core created config_log config_log 976 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"clamfailureonupload";s:8:"oldvalue";N;s:5:"value";s:9:"donothing";s:6:"plugin";s:16:"antivirus_clamav";} 1612889143 web 67.182.30.218 \N +363 \\core\\event\\config_log_created core created config_log config_log 977 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:5:"tries";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"antivirus_clamav";} 1612889143 web 67.182.30.218 \N +364 \\core\\event\\config_log_created core created config_log config_log 978 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_map_firstname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +365 \\core\\event\\config_log_created core created config_log config_log 979 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updatelocal_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +366 \\core\\event\\config_log_created core created config_log config_log 980 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updateremote_firstname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +367 \\core\\event\\config_log_created core created config_log config_log 981 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +368 \\core\\event\\config_log_created core created config_log config_log 982 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_lastname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +369 \\core\\event\\config_log_created core created config_log config_log 983 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +370 \\core\\event\\config_log_created core created config_log config_log 984 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_lastname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +371 \\core\\event\\config_log_created core created config_log config_log 985 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +372 \\core\\event\\config_log_created core created config_log config_log 986 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_map_email";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +373 \\core\\event\\config_log_created core created config_log config_log 987 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updatelocal_email";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +374 \\core\\event\\config_log_created core created config_log config_log 988 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updateremote_email";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +375 \\core\\event\\config_log_created core created config_log config_log 989 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +376 \\core\\event\\config_log_created core created config_log config_log 990 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_city";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +377 \\core\\event\\config_log_created core created config_log config_log 991 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_city";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +378 \\core\\event\\config_log_created core created config_log config_log 992 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_city";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +379 \\core\\event\\config_log_created core created config_log config_log 993 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +380 \\core\\event\\config_log_created core created config_log config_log 994 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_country";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +381 \\core\\event\\config_log_created core created config_log config_log 995 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_country";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +382 \\core\\event\\config_log_created core created config_log config_log 996 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_country";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +383 \\core\\event\\config_log_created core created config_log config_log 997 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +384 \\core\\event\\config_log_created core created config_log config_log 998 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_lang";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +385 \\core\\event\\config_log_created core created config_log config_log 999 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_lang";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +386 \\core\\event\\config_log_created core created config_log config_log 1000 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_lang";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +387 \\core\\event\\config_log_created core created config_log config_log 1001 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +388 \\core\\event\\config_log_created core created config_log config_log 1002 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_description";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +389 \\core\\event\\config_log_created core created config_log config_log 1003 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_description";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +390 \\core\\event\\config_log_created core created config_log config_log 1004 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_description";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +391 \\core\\event\\config_log_created core created config_log config_log 1005 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +392 \\core\\event\\config_log_created core created config_log config_log 1006 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"field_map_url";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +393 \\core\\event\\config_log_created core created config_log config_log 1007 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_updatelocal_url";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +394 \\core\\event\\config_log_created core created config_log config_log 1008 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updateremote_url";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +395 \\core\\event\\config_log_created core created config_log config_log 1009 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +396 \\core\\event\\config_log_created core created config_log config_log 1010 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_idnumber";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +397 \\core\\event\\config_log_created core created config_log config_log 1011 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +398 \\core\\event\\config_log_created core created config_log config_log 1012 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_idnumber";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +399 \\core\\event\\config_log_created core created config_log config_log 1013 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +400 \\core\\event\\config_log_created core created config_log config_log 1014 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_institution";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +401 \\core\\event\\config_log_created core created config_log config_log 1015 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_institution";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +402 \\core\\event\\config_log_created core created config_log config_log 1016 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_institution";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +403 \\core\\event\\config_log_created core created config_log config_log 1017 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +404 \\core\\event\\config_log_created core created config_log config_log 1018 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_department";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +405 \\core\\event\\config_log_created core created config_log config_log 1019 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_department";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +406 \\core\\event\\config_log_created core created config_log config_log 1020 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_department";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +407 \\core\\event\\config_log_created core created config_log config_log 1021 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +408 \\core\\event\\config_log_created core created config_log config_log 1022 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone1";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +409 \\core\\event\\config_log_created core created config_log config_log 1023 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +410 \\core\\event\\config_log_created core created config_log config_log 1024 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone1";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +411 \\core\\event\\config_log_created core created config_log config_log 1025 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +412 \\core\\event\\config_log_created core created config_log config_log 1026 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone2";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +413 \\core\\event\\config_log_created core created config_log config_log 1027 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +414 \\core\\event\\config_log_created core created config_log config_log 1028 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone2";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +415 \\core\\event\\config_log_created core created config_log config_log 1029 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +416 \\core\\event\\config_log_created core created config_log config_log 1030 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_address";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +417 \\core\\event\\config_log_created core created config_log config_log 1031 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_address";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +418 \\core\\event\\config_log_created core created config_log config_log 1032 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_address";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +419 \\core\\event\\config_log_created core created config_log config_log 1033 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +420 \\core\\event\\config_log_created core created config_log config_log 1034 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_map_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +421 \\core\\event\\config_log_created core created config_log config_log 1035 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updatelocal_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +422 \\core\\event\\config_log_created core created config_log config_log 1036 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:36:"field_updateremote_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +423 \\core\\event\\config_log_created core created config_log config_log 1037 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +424 \\core\\event\\config_log_created core created config_log config_log 1038 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_map_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +425 \\core\\event\\config_log_created core created config_log config_log 1039 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"field_updatelocal_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +426 \\core\\event\\config_log_created core created config_log config_log 1040 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updateremote_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +427 \\core\\event\\config_log_created core created config_log config_log 1041 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +428 \\core\\event\\config_log_created core created config_log config_log 1042 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_middlename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +429 \\core\\event\\config_log_created core created config_log config_log 1043 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +430 \\core\\event\\config_log_created core created config_log config_log 1044 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_middlename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +431 \\core\\event\\config_log_created core created config_log config_log 1045 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +432 \\core\\event\\config_log_created core created config_log config_log 1046 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_map_alternatename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +433 \\core\\event\\config_log_created core created config_log config_log 1047 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"field_updatelocal_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +434 \\core\\event\\config_log_created core created config_log config_log 1048 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:32:"field_updateremote_alternatename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +435 \\core\\event\\config_log_created core created config_log config_log 1049 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N +436 \\core\\event\\config_log_created core created config_log config_log 1050 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"recaptcha";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N +437 \\core\\event\\config_log_created core created config_log config_log 1051 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N +438 \\core\\event\\config_log_created core created config_log config_log 1052 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N +439 \\core\\event\\config_log_created core created config_log config_log 1053 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N +440 \\core\\event\\config_log_created core created config_log config_log 1054 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N +441 \\core\\event\\config_log_created core created config_log config_log 1055 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N +442 \\core\\event\\config_log_created core created config_log config_log 1056 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N +443 \\core\\event\\config_log_created core created config_log config_log 1057 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N +444 \\core\\event\\config_log_created core created config_log config_log 1058 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N +445 \\core\\event\\config_log_created core created config_log config_log 1059 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N +446 \\core\\event\\config_log_created core created config_log config_log 1060 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N +447 \\core\\event\\config_log_created core created config_log config_log 1061 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N +448 \\core\\event\\config_log_created core created config_log config_log 1062 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N +449 \\core\\event\\config_log_created core created config_log config_log 1063 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N +450 \\core\\event\\config_log_created core created config_log config_log 1064 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N +451 \\core\\event\\config_log_created core created config_log config_log 1065 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N +452 \\core\\event\\config_log_created core created config_log config_log 1066 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N +453 \\core\\event\\config_log_created core created config_log config_log 1067 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N +454 \\core\\event\\config_log_created core created config_log config_log 1068 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N +455 \\core\\event\\config_log_created core created config_log config_log 1069 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"host";s:8:"oldvalue";N;s:5:"value";s:9:"127.0.0.1";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +456 \\core\\event\\config_log_created core created config_log config_log 1070 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"type";s:8:"oldvalue";N;s:5:"value";s:6:"mysqli";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +457 \\core\\event\\config_log_created core created config_log config_log 1071 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"sybasequoting";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +458 \\core\\event\\config_log_created core created config_log config_log 1072 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"name";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +459 \\core\\event\\config_log_created core created config_log config_log 1073 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"user";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +460 \\core\\event\\config_log_created core created config_log config_log 1074 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"pass";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +461 \\core\\event\\config_log_created core created config_log config_log 1075 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:5:"table";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +462 \\core\\event\\config_log_created core created config_log config_log 1076 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"fielduser";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +463 \\core\\event\\config_log_created core created config_log config_log 1077 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"fieldpass";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +464 \\core\\event\\config_log_created core created config_log config_log 1078 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"passtype";s:8:"oldvalue";N;s:5:"value";s:9:"plaintext";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +465 \\core\\event\\config_log_created core created config_log config_log 1079 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"extencoding";s:8:"oldvalue";N;s:5:"value";s:5:"utf-8";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +466 \\core\\event\\config_log_created core created config_log config_log 1080 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"setupsql";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +467 \\core\\event\\config_log_created core created config_log config_log 1081 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"debugauthdb";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +468 \\core\\event\\config_log_created core created config_log config_log 1082 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"changepasswordurl";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +469 \\core\\event\\config_log_created core created config_log config_log 1083 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"removeuser";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +470 \\core\\event\\config_log_created core created config_log config_log 1084 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"updateusers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +471 \\core\\event\\config_log_created core created config_log config_log 1085 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_map_firstname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +472 \\core\\event\\config_log_created core created config_log config_log 1086 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updatelocal_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +473 \\core\\event\\config_log_created core created config_log config_log 1087 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updateremote_firstname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +474 \\core\\event\\config_log_created core created config_log config_log 1088 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +475 \\core\\event\\config_log_created core created config_log config_log 1089 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_lastname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +476 \\core\\event\\config_log_created core created config_log config_log 1090 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +477 \\core\\event\\config_log_created core created config_log config_log 1091 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_lastname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +478 \\core\\event\\config_log_created core created config_log config_log 1092 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +479 \\core\\event\\config_log_created core created config_log config_log 1093 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_map_email";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +480 \\core\\event\\config_log_created core created config_log config_log 1094 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updatelocal_email";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +481 \\core\\event\\config_log_created core created config_log config_log 1095 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updateremote_email";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +482 \\core\\event\\config_log_created core created config_log config_log 1096 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +483 \\core\\event\\config_log_created core created config_log config_log 1097 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_city";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +484 \\core\\event\\config_log_created core created config_log config_log 1098 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_city";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +485 \\core\\event\\config_log_created core created config_log config_log 1099 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_city";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +486 \\core\\event\\config_log_created core created config_log config_log 1100 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +487 \\core\\event\\config_log_created core created config_log config_log 1101 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_country";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +488 \\core\\event\\config_log_created core created config_log config_log 1102 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_country";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +489 \\core\\event\\config_log_created core created config_log config_log 1103 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_country";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +490 \\core\\event\\config_log_created core created config_log config_log 1104 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +491 \\core\\event\\config_log_created core created config_log config_log 1105 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_lang";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +492 \\core\\event\\config_log_created core created config_log config_log 1106 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_lang";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +493 \\core\\event\\config_log_created core created config_log config_log 1107 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_lang";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +494 \\core\\event\\config_log_created core created config_log config_log 1108 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +495 \\core\\event\\config_log_created core created config_log config_log 1109 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_description";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +496 \\core\\event\\config_log_created core created config_log config_log 1110 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_description";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +497 \\core\\event\\config_log_created core created config_log config_log 1111 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_description";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +498 \\core\\event\\config_log_created core created config_log config_log 1112 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +499 \\core\\event\\config_log_created core created config_log config_log 1113 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"field_map_url";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +500 \\core\\event\\config_log_created core created config_log config_log 1114 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_updatelocal_url";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +501 \\core\\event\\config_log_created core created config_log config_log 1115 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updateremote_url";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +502 \\core\\event\\config_log_created core created config_log config_log 1116 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +503 \\core\\event\\config_log_created core created config_log config_log 1117 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_idnumber";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +504 \\core\\event\\config_log_created core created config_log config_log 1118 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +505 \\core\\event\\config_log_created core created config_log config_log 1119 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_idnumber";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +506 \\core\\event\\config_log_created core created config_log config_log 1120 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +507 \\core\\event\\config_log_created core created config_log config_log 1121 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_institution";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +508 \\core\\event\\config_log_created core created config_log config_log 1122 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_institution";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +509 \\core\\event\\config_log_created core created config_log config_log 1123 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_institution";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +510 \\core\\event\\config_log_created core created config_log config_log 1124 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +511 \\core\\event\\config_log_created core created config_log config_log 1125 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_department";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +512 \\core\\event\\config_log_created core created config_log config_log 1126 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_department";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +513 \\core\\event\\config_log_created core created config_log config_log 1127 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_department";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N +514 \\core\\event\\config_log_created core created config_log config_log 1128 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +515 \\core\\event\\config_log_created core created config_log config_log 1129 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone1";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +516 \\core\\event\\config_log_created core created config_log config_log 1130 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +517 \\core\\event\\config_log_created core created config_log config_log 1131 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone1";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +518 \\core\\event\\config_log_created core created config_log config_log 1132 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +519 \\core\\event\\config_log_created core created config_log config_log 1133 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone2";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +520 \\core\\event\\config_log_created core created config_log config_log 1134 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +521 \\core\\event\\config_log_created core created config_log config_log 1135 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone2";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +522 \\core\\event\\config_log_created core created config_log config_log 1136 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +523 \\core\\event\\config_log_created core created config_log config_log 1137 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_address";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +524 \\core\\event\\config_log_created core created config_log config_log 1138 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_address";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +525 \\core\\event\\config_log_created core created config_log config_log 1139 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_address";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +526 \\core\\event\\config_log_created core created config_log config_log 1140 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +527 \\core\\event\\config_log_created core created config_log config_log 1141 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_map_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +528 \\core\\event\\config_log_created core created config_log config_log 1142 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updatelocal_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +529 \\core\\event\\config_log_created core created config_log config_log 1143 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:36:"field_updateremote_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +530 \\core\\event\\config_log_created core created config_log config_log 1144 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +531 \\core\\event\\config_log_created core created config_log config_log 1145 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_map_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +532 \\core\\event\\config_log_created core created config_log config_log 1146 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"field_updatelocal_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +533 \\core\\event\\config_log_created core created config_log config_log 1147 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updateremote_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +534 \\core\\event\\config_log_created core created config_log config_log 1148 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +535 \\core\\event\\config_log_created core created config_log config_log 1149 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_middlename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +536 \\core\\event\\config_log_created core created config_log config_log 1150 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +537 \\core\\event\\config_log_created core created config_log config_log 1151 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_middlename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +538 \\core\\event\\config_log_created core created config_log config_log 1152 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +539 \\core\\event\\config_log_created core created config_log config_log 1153 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_map_alternatename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +540 \\core\\event\\config_log_created core created config_log config_log 1154 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"field_updatelocal_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +541 \\core\\event\\config_log_created core created config_log config_log 1155 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:32:"field_updateremote_alternatename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +542 \\core\\event\\config_log_created core created config_log config_log 1156 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N +543 \\core\\event\\config_log_created core created config_log config_log 1157 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_map_firstname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +544 \\core\\event\\config_log_created core created config_log config_log 1158 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updatelocal_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +545 \\core\\event\\config_log_created core created config_log config_log 1159 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updateremote_firstname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +546 \\core\\event\\config_log_created core created config_log config_log 1160 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +547 \\core\\event\\config_log_created core created config_log config_log 1161 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_lastname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +548 \\core\\event\\config_log_created core created config_log config_log 1162 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +549 \\core\\event\\config_log_created core created config_log config_log 1163 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_lastname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +550 \\core\\event\\config_log_created core created config_log config_log 1164 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +551 \\core\\event\\config_log_created core created config_log config_log 1165 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_map_email";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +552 \\core\\event\\config_log_created core created config_log config_log 1166 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updatelocal_email";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +553 \\core\\event\\config_log_created core created config_log config_log 1167 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updateremote_email";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +554 \\core\\event\\config_log_created core created config_log config_log 1168 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +555 \\core\\event\\config_log_created core created config_log config_log 1169 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_city";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +556 \\core\\event\\config_log_created core created config_log config_log 1170 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_city";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +557 \\core\\event\\config_log_created core created config_log config_log 1171 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_city";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +558 \\core\\event\\config_log_created core created config_log config_log 1172 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +559 \\core\\event\\config_log_created core created config_log config_log 1173 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_country";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +560 \\core\\event\\config_log_created core created config_log config_log 1174 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_country";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +561 \\core\\event\\config_log_created core created config_log config_log 1175 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_country";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +562 \\core\\event\\config_log_created core created config_log config_log 1176 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +563 \\core\\event\\config_log_created core created config_log config_log 1177 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_lang";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +564 \\core\\event\\config_log_created core created config_log config_log 1178 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_lang";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +565 \\core\\event\\config_log_created core created config_log config_log 1179 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_lang";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +566 \\core\\event\\config_log_created core created config_log config_log 1180 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +567 \\core\\event\\config_log_created core created config_log config_log 1181 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_description";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +568 \\core\\event\\config_log_created core created config_log config_log 1182 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_description";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +569 \\core\\event\\config_log_created core created config_log config_log 1183 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_description";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +570 \\core\\event\\config_log_created core created config_log config_log 1184 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +571 \\core\\event\\config_log_created core created config_log config_log 1185 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"field_map_url";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +572 \\core\\event\\config_log_created core created config_log config_log 1186 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_updatelocal_url";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +573 \\core\\event\\config_log_created core created config_log config_log 1187 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updateremote_url";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +574 \\core\\event\\config_log_created core created config_log config_log 1188 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +575 \\core\\event\\config_log_created core created config_log config_log 1189 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_idnumber";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +576 \\core\\event\\config_log_created core created config_log config_log 1190 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +577 \\core\\event\\config_log_created core created config_log config_log 1191 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_idnumber";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +578 \\core\\event\\config_log_created core created config_log config_log 1192 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +579 \\core\\event\\config_log_created core created config_log config_log 1193 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_institution";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +580 \\core\\event\\config_log_created core created config_log config_log 1194 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_institution";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +581 \\core\\event\\config_log_created core created config_log config_log 1195 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_institution";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +582 \\core\\event\\config_log_created core created config_log config_log 1196 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +583 \\core\\event\\config_log_created core created config_log config_log 1197 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_department";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +584 \\core\\event\\config_log_created core created config_log config_log 1198 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_department";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +585 \\core\\event\\config_log_created core created config_log config_log 1199 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_department";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +586 \\core\\event\\config_log_created core created config_log config_log 1200 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +587 \\core\\event\\config_log_created core created config_log config_log 1201 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone1";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +588 \\core\\event\\config_log_created core created config_log config_log 1202 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +589 \\core\\event\\config_log_created core created config_log config_log 1203 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone1";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +590 \\core\\event\\config_log_created core created config_log config_log 1204 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +591 \\core\\event\\config_log_created core created config_log config_log 1205 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone2";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +592 \\core\\event\\config_log_created core created config_log config_log 1206 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +593 \\core\\event\\config_log_created core created config_log config_log 1207 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone2";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +594 \\core\\event\\config_log_created core created config_log config_log 1208 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +595 \\core\\event\\config_log_created core created config_log config_log 1209 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_address";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +596 \\core\\event\\config_log_created core created config_log config_log 1210 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_address";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +597 \\core\\event\\config_log_created core created config_log config_log 1211 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_address";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +598 \\core\\event\\config_log_created core created config_log config_log 1212 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +599 \\core\\event\\config_log_created core created config_log config_log 1213 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_map_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +600 \\core\\event\\config_log_created core created config_log config_log 1214 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updatelocal_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +601 \\core\\event\\config_log_created core created config_log config_log 1215 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:36:"field_updateremote_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +602 \\core\\event\\config_log_created core created config_log config_log 1216 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +603 \\core\\event\\config_log_created core created config_log config_log 1217 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_map_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +604 \\core\\event\\config_log_created core created config_log config_log 1218 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"field_updatelocal_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +605 \\core\\event\\config_log_created core created config_log config_log 1219 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updateremote_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +606 \\core\\event\\config_log_created core created config_log config_log 1220 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +607 \\core\\event\\config_log_created core created config_log config_log 1221 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_middlename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +608 \\core\\event\\config_log_created core created config_log config_log 1222 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +609 \\core\\event\\config_log_created core created config_log config_log 1223 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_middlename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +610 \\core\\event\\config_log_created core created config_log config_log 1224 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +611 \\core\\event\\config_log_created core created config_log config_log 1225 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_map_alternatename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +612 \\core\\event\\config_log_created core created config_log config_log 1226 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"field_updatelocal_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +613 \\core\\event\\config_log_created core created config_log config_log 1227 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:32:"field_updateremote_alternatename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +614 \\core\\event\\config_log_created core created config_log config_log 1228 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N +615 \\core\\event\\config_log_created core created config_log config_log 1229 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"expiration";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N +616 \\core\\event\\config_log_created core created config_log config_log 1230 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"expirationtime";s:8:"oldvalue";N;s:5:"value";s:2:"30";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N +617 \\core\\event\\config_log_created core created config_log config_log 1231 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"expiration_warning";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N +618 \\core\\event\\config_log_created core created config_log config_log 1232 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N +619 \\core\\event\\config_log_created core created config_log config_log 1233 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N +620 \\core\\event\\config_log_created core created config_log config_log 1234 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N +621 \\core\\event\\config_log_created core created config_log config_log 1235 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N +622 \\core\\event\\config_log_created core created config_log config_log 1236 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N +623 \\core\\event\\config_log_created core created config_log config_log 1237 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N +624 \\core\\event\\config_log_created core created config_log config_log 1238 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N +625 \\core\\event\\config_log_created core created config_log config_log 1239 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N +626 \\core\\event\\config_log_created core created config_log config_log 1240 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N +627 \\core\\event\\config_log_created core created config_log config_log 1241 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N +628 \\core\\event\\config_log_created core created config_log config_log 1242 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N +629 \\core\\event\\config_log_created core created config_log config_log 1243 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N +630 \\core\\event\\config_log_created core created config_log config_log 1244 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N +631 \\core\\event\\config_log_created core created config_log config_log 1245 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N +632 \\core\\event\\config_log_created core created config_log config_log 1246 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N +633 \\core\\event\\config_log_created core created config_log config_log 1247 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N +634 \\core\\event\\config_log_created core created config_log config_log 1248 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N +635 \\core\\event\\config_log_created core created config_log config_log 1249 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N +636 \\core\\event\\config_log_created core created config_log config_log 1250 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"rpc_negotiation_timeout";s:8:"oldvalue";N;s:5:"value";s:2:"30";s:6:"plugin";s:9:"auth_mnet";} 1612889144 web 67.182.30.218 \N +637 \\core\\event\\config_log_created core created config_log config_log 1251 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N +638 \\core\\event\\config_log_created core created config_log config_log 1252 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N +639 \\core\\event\\config_log_created core created config_log config_log 1253 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N +640 \\core\\event\\config_log_created core created config_log config_log 1254 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N +641 \\core\\event\\config_log_created core created config_log config_log 1255 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N +642 \\core\\event\\config_log_created core created config_log config_log 1256 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N +643 \\core\\event\\config_log_created core created config_log config_log 1257 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N +644 \\core\\event\\config_log_created core created config_log config_log 1258 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N +645 \\core\\event\\config_log_created core created config_log config_log 1259 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N +646 \\core\\event\\config_log_created core created config_log config_log 1260 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N +647 \\core\\event\\config_log_created core created config_log config_log 1261 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N +648 \\core\\event\\config_log_created core created config_log config_log 1262 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N +649 \\core\\event\\config_log_created core created config_log config_log 1263 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N +650 \\core\\event\\config_log_created core created config_log config_log 1264 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N +651 \\core\\event\\config_log_created core created config_log config_log 1265 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N +652 \\core\\event\\config_log_created core created config_log config_log 1266 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N +653 \\core\\event\\config_log_created core created config_log config_log 1267 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N +654 \\core\\event\\config_log_created core created config_log config_log 1268 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N +655 \\core\\event\\config_log_created core created config_log config_log 1269 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N +656 \\core\\event\\config_log_created core created config_log config_log 1270 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N +657 \\core\\event\\config_log_created core created config_log config_log 1271 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N +658 \\core\\event\\config_log_created core created config_log config_log 1272 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N +659 \\core\\event\\config_log_created core created config_log config_log 1273 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N +660 \\core\\event\\config_log_created core created config_log config_log 1274 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N +661 \\core\\event\\config_log_created core created config_log config_log 1275 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N +662 \\core\\event\\config_log_created core created config_log config_log 1276 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N +663 \\core\\event\\config_log_created core created config_log config_log 1277 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N +664 \\core\\event\\config_log_created core created config_log config_log 1278 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N +665 \\core\\event\\config_log_created core created config_log config_log 1279 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N +666 \\core\\event\\config_log_created core created config_log config_log 1280 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N +667 \\core\\event\\config_log_created core created config_log config_log 1281 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N +668 \\core\\event\\config_log_created core created config_log config_log 1282 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N +669 \\core\\event\\config_log_created core created config_log config_log 1283 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N +670 \\core\\event\\config_log_created core created config_log config_log 1284 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N +671 \\core\\event\\config_log_created core created config_log config_log 1285 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N +672 \\core\\event\\config_log_created core created config_log config_log 1286 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N +673 \\core\\event\\config_log_created core created config_log config_log 1287 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"user_attribute";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +674 \\core\\event\\config_log_created core created config_log config_log 1288 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"convert_data";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +675 \\core\\event\\config_log_created core created config_log config_log 1289 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"alt_login";s:8:"oldvalue";N;s:5:"value";s:3:"off";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +676 \\core\\event\\config_log_created core created config_log config_log 1290 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"organization_selection";s:8:"oldvalue";N;s:5:"value";s:259:"urn:mace:organization1:providerID, Example Organization 1\n https://another.idp-id.com/shibboleth, Other Example Organization, /Shibboleth.sso/DS/SWITCHaai\n urn:mace:organization2:providerID, Example Organization 2, /Shibboleth.sso/WAYF/SWITCHaai";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +677 \\core\\event\\config_log_created core created config_log config_log 1291 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"logout_handler";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +678 \\core\\event\\config_log_created core created config_log config_log 1292 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"logout_return_url";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +679 \\core\\event\\config_log_created core created config_log config_log 1293 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"login_name";s:8:"oldvalue";N;s:5:"value";s:16:"Shibboleth Login";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +680 \\core\\event\\config_log_created core created config_log config_log 1294 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"auth_logo";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +681 \\core\\event\\config_log_created core created config_log config_log 1295 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"auth_instructions";s:8:"oldvalue";N;s:5:"value";s:203:"Use the Shibboleth login to get access via Shibboleth, if your institution supports it. Otherwise, use the normal login form shown here.";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +682 \\core\\event\\config_log_created core created config_log config_log 1296 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"changepasswordurl";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +683 \\core\\event\\config_log_created core created config_log config_log 1297 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_map_firstname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +684 \\core\\event\\config_log_created core created config_log config_log 1298 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updatelocal_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +685 \\core\\event\\config_log_created core created config_log config_log 1299 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +686 \\core\\event\\config_log_created core created config_log config_log 1300 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_lastname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +687 \\core\\event\\config_log_created core created config_log config_log 1301 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +688 \\core\\event\\config_log_created core created config_log config_log 1302 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +689 \\core\\event\\config_log_created core created config_log config_log 1303 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_map_email";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +690 \\core\\event\\config_log_created core created config_log config_log 1304 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updatelocal_email";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +691 \\core\\event\\config_log_created core created config_log config_log 1305 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +692 \\core\\event\\config_log_created core created config_log config_log 1306 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_city";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +693 \\core\\event\\config_log_created core created config_log config_log 1307 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_city";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +694 \\core\\event\\config_log_created core created config_log config_log 1308 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +695 \\core\\event\\config_log_created core created config_log config_log 1309 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_country";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +696 \\core\\event\\config_log_created core created config_log config_log 1310 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_country";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +697 \\core\\event\\config_log_created core created config_log config_log 1311 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +698 \\core\\event\\config_log_created core created config_log config_log 1312 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_lang";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +699 \\core\\event\\config_log_created core created config_log config_log 1313 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_lang";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +700 \\core\\event\\config_log_created core created config_log config_log 1314 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +701 \\core\\event\\config_log_created core created config_log config_log 1315 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_description";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +702 \\core\\event\\config_log_created core created config_log config_log 1316 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_description";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +703 \\core\\event\\config_log_created core created config_log config_log 1317 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +704 \\core\\event\\config_log_created core created config_log config_log 1318 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"field_map_url";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +705 \\core\\event\\config_log_created core created config_log config_log 1319 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_updatelocal_url";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +706 \\core\\event\\config_log_created core created config_log config_log 1320 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +707 \\core\\event\\config_log_created core created config_log config_log 1321 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_idnumber";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +708 \\core\\event\\config_log_created core created config_log config_log 1322 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +709 \\core\\event\\config_log_created core created config_log config_log 1323 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +710 \\core\\event\\config_log_created core created config_log config_log 1324 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_institution";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +711 \\core\\event\\config_log_created core created config_log config_log 1325 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_institution";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +712 \\core\\event\\config_log_created core created config_log config_log 1326 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +713 \\core\\event\\config_log_created core created config_log config_log 1327 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_department";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +714 \\core\\event\\config_log_created core created config_log config_log 1328 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_department";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +715 \\core\\event\\config_log_created core created config_log config_log 1329 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +716 \\core\\event\\config_log_created core created config_log config_log 1330 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone1";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +717 \\core\\event\\config_log_created core created config_log config_log 1331 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +718 \\core\\event\\config_log_created core created config_log config_log 1332 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +719 \\core\\event\\config_log_created core created config_log config_log 1333 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone2";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +720 \\core\\event\\config_log_created core created config_log config_log 1334 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +721 \\core\\event\\config_log_created core created config_log config_log 1335 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +722 \\core\\event\\config_log_created core created config_log config_log 1336 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_address";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +723 \\core\\event\\config_log_created core created config_log config_log 1337 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_address";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +724 \\core\\event\\config_log_created core created config_log config_log 1338 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +725 \\core\\event\\config_log_created core created config_log config_log 1339 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_map_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +726 \\core\\event\\config_log_created core created config_log config_log 1340 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updatelocal_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +727 \\core\\event\\config_log_created core created config_log config_log 1341 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +728 \\core\\event\\config_log_created core created config_log config_log 1342 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_map_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +729 \\core\\event\\config_log_created core created config_log config_log 1343 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"field_updatelocal_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +730 \\core\\event\\config_log_created core created config_log config_log 1344 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +731 \\core\\event\\config_log_created core created config_log config_log 1345 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_middlename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +732 \\core\\event\\config_log_created core created config_log config_log 1346 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +733 \\core\\event\\config_log_created core created config_log config_log 1347 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +734 \\core\\event\\config_log_created core created config_log config_log 1348 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_map_alternatename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +735 \\core\\event\\config_log_created core created config_log config_log 1349 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"field_updatelocal_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +736 \\core\\event\\config_log_created core created config_log config_log 1350 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N +737 \\core\\event\\config_log_created core created config_log config_log 1351 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"config_showbest";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N +738 \\core\\event\\config_log_created core created config_log config_log 1352 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"config_showbest_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N +739 \\core\\event\\config_log_created core created config_log config_log 1353 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"config_showworst";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N +740 \\core\\event\\config_log_created core created config_log config_log 1354 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"config_showworst_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N +741 \\core\\event\\config_log_created core created config_log config_log 1355 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"config_usegroups";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N +742 \\core\\event\\config_log_created core created config_log config_log 1356 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"config_usegroups_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N +743 \\core\\event\\config_log_created core created config_log config_log 1357 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"config_nameformat";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N +744 \\core\\event\\config_log_created core created config_log config_log 1358 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"config_nameformat_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N +745 \\core\\event\\config_log_created core created config_log config_log 1359 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"config_gradeformat";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N +746 \\core\\event\\config_log_created core created config_log config_log 1360 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"config_gradeformat_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N +747 \\core\\event\\config_log_created core created config_log config_log 1361 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"config_decimalpoints";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N +748 \\core\\event\\config_log_created core created config_log config_log 1362 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"config_decimalpoints_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N +749 \\core\\event\\config_log_created core created config_log config_log 1363 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"displaycategories";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1612889144 web 67.182.30.218 \N +750 \\core\\event\\config_log_created core created config_log config_log 1364 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"layouts";s:8:"oldvalue";N;s:5:"value";s:17:"card,list,summary";s:6:"plugin";s:16:"block_myoverview";} 1612889144 web 67.182.30.218 \N +751 \\core\\event\\config_log_created core created config_log config_log 1365 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:33:"displaygroupingallincludinghidden";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"block_myoverview";} 1612889144 web 67.182.30.218 \N +752 \\core\\event\\config_log_created core created config_log config_log 1366 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"displaygroupingall";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1612889144 web 67.182.30.218 \N +753 \\core\\event\\config_log_created core created config_log config_log 1367 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"displaygroupinginprogress";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1612889144 web 67.182.30.218 \N +754 \\core\\event\\config_log_created core created config_log config_log 1368 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"displaygroupingpast";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1612889144 web 67.182.30.218 \N +755 \\core\\event\\config_log_created core created config_log config_log 1369 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"displaygroupingfuture";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1612889144 web 67.182.30.218 \N +756 \\core\\event\\config_log_created core created config_log config_log 1370 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"displaygroupingcustomfield";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"block_myoverview";} 1612889144 web 67.182.30.218 \N +757 \\core\\event\\config_log_created core created config_log config_log 1371 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"customfiltergrouping";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"block_myoverview";} 1612889144 web 67.182.30.218 \N +758 \\core\\event\\config_log_created core created config_log config_log 1372 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"displaygroupingfavourites";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1612889144 web 67.182.30.218 \N +759 \\core\\event\\config_log_created core created config_log config_log 1373 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"displaygroupinghidden";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1612889144 web 67.182.30.218 \N +760 \\core\\event\\config_log_created core created config_log config_log 1374 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"block_course_list_adminview";s:8:"oldvalue";N;s:5:"value";s:3:"all";s:6:"plugin";N;} 1612889144 web 67.182.30.218 \N +761 \\core\\event\\config_log_created core created config_log config_log 1375 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:36:"block_course_list_hideallcourseslink";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889144 web 67.182.30.218 \N +762 \\core\\event\\config_log_created core created config_log config_log 1376 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"block_html_allowcssclasses";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889144 web 67.182.30.218 \N +763 \\core\\event\\config_log_created core created config_log config_log 1377 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"block_online_users_timetosee";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";N;} 1612889144 web 67.182.30.218 \N +764 \\core\\event\\config_log_created core created config_log config_log 1378 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:37:"block_online_users_onlinestatushiding";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1612889144 web 67.182.30.218 \N +765 \\core\\event\\config_log_created core created config_log config_log 1379 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"displaycategories";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:29:"block_recentlyaccessedcourses";} 1612889144 web 67.182.30.218 \N +766 \\core\\event\\config_log_created core created config_log config_log 1380 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"block_rss_client_num_entries";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";N;} 1612889144 web 67.182.30.218 \N +767 \\core\\event\\config_log_created core created config_log config_log 1381 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"block_rss_client_timeout";s:8:"oldvalue";N;s:5:"value";s:2:"30";s:6:"plugin";N;} 1612889144 web 67.182.30.218 \N +768 \\core\\event\\config_log_created core created config_log config_log 1382 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"numsections1";s:8:"oldvalue";N;s:5:"value";s:2:"22";s:6:"plugin";s:19:"block_section_links";} 1612889144 web 67.182.30.218 \N +769 \\core\\event\\config_log_created core created config_log config_log 1383 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"incby1";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";s:19:"block_section_links";} 1612889144 web 67.182.30.218 \N +770 \\core\\event\\config_log_created core created config_log config_log 1384 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"numsections2";s:8:"oldvalue";N;s:5:"value";s:2:"40";s:6:"plugin";s:19:"block_section_links";} 1612889144 web 67.182.30.218 \N +771 \\core\\event\\config_log_created core created config_log config_log 1385 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"incby2";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:19:"block_section_links";} 1612889144 web 67.182.30.218 \N +772 \\core\\event\\config_log_created core created config_log config_log 1386 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"displaycategories";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:20:"block_starredcourses";} 1612889144 web 67.182.30.218 \N +773 \\core\\event\\config_log_created core created config_log config_log 1387 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"apikey";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"block_tag_youtube";} 1612889144 web 67.182.30.218 \N +774 \\core\\event\\config_log_created core created config_log config_log 1388 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"activitytype";s:8:"oldvalue";N;s:5:"value";s:5:"forum";s:6:"plugin";s:21:"format_singleactivity";} 1612889144 web 67.182.30.218 \N +775 \\core\\event\\config_log_created core created config_log config_log 1389 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"issuerid";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:25:"fileconverter_googledrive";} 1612889144 web 67.182.30.218 \N +776 \\core\\event\\config_log_created core created config_log config_log 1390 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"pathtounoconv";s:8:"oldvalue";N;s:5:"value";s:16:"/usr/bin/unoconv";s:6:"plugin";N;} 1612889144 web 67.182.30.218 \N +777 \\core\\event\\config_log_created core created config_log config_log 1391 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"roleid";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:12:"enrol_cohort";} 1612889144 web 67.182.30.218 \N +778 \\core\\event\\config_log_created core created config_log config_log 1392 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"unenrolaction";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_cohort";} 1612889144 web 67.182.30.218 \N +779 \\core\\event\\config_log_created core created config_log config_log 1393 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"nosyncroleids";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"enrol_meta";} 1612889144 web 67.182.30.218 \N +780 \\core\\event\\config_log_created core created config_log config_log 1394 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"syncall";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_meta";} 1612889144 web 67.182.30.218 \N +781 \\core\\event\\config_log_created core created config_log config_log 1395 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"unenrolaction";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:10:"enrol_meta";} 1612889144 web 67.182.30.218 \N +782 \\core\\event\\config_log_created core created config_log config_log 1396 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"coursesort";s:8:"oldvalue";N;s:5:"value";s:9:"sortorder";s:6:"plugin";s:10:"enrol_meta";} 1612889144 web 67.182.30.218 \N +783 \\core\\event\\config_log_created core created config_log config_log 1397 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"expiredaction";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:9:"enrol_fee";} 1612889144 web 67.182.30.218 \N +784 \\core\\event\\config_log_created core created config_log config_log 1398 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"status";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:9:"enrol_fee";} 1612889144 web 67.182.30.218 \N +785 \\core\\event\\config_log_created core created config_log config_log 1399 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"cost";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"enrol_fee";} 1612889144 web 67.182.30.218 \N +786 \\core\\event\\config_log_created core created config_log config_log 1400 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"currency";s:8:"oldvalue";N;s:5:"value";s:3:"USD";s:6:"plugin";s:9:"enrol_fee";} 1612889144 web 67.182.30.218 \N +787 \\core\\event\\config_log_created core created config_log config_log 1401 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"roleid";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:9:"enrol_fee";} 1612889144 web 67.182.30.218 \N +788 \\core\\event\\config_log_created core created config_log config_log 1402 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"enrolperiod";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"enrol_fee";} 1612889144 web 67.182.30.218 \N +789 \\core\\event\\config_log_created core created config_log config_log 1403 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbtype";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +790 \\core\\event\\config_log_created core created config_log config_log 1404 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbhost";s:8:"oldvalue";N;s:5:"value";s:9:"localhost";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +791 \\core\\event\\config_log_created core created config_log config_log 1405 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbuser";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +792 \\core\\event\\config_log_created core created config_log config_log 1406 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbpass";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +793 \\core\\event\\config_log_created core created config_log config_log 1407 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +794 \\core\\event\\config_log_created core created config_log config_log 1408 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"dbencoding";s:8:"oldvalue";N;s:5:"value";s:5:"utf-8";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +795 \\core\\event\\config_log_created core created config_log config_log 1409 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"dbsetupsql";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +796 \\core\\event\\config_log_created core created config_log config_log 1410 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"dbsybasequoting";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +797 \\core\\event\\config_log_created core created config_log config_log 1411 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"debugdb";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +798 \\core\\event\\config_log_created core created config_log config_log 1412 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"localcoursefield";s:8:"oldvalue";N;s:5:"value";s:8:"idnumber";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +799 \\core\\event\\config_log_created core created config_log config_log 1413 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"localuserfield";s:8:"oldvalue";N;s:5:"value";s:8:"idnumber";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +800 \\core\\event\\config_log_created core created config_log config_log 1414 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"localrolefield";s:8:"oldvalue";N;s:5:"value";s:9:"shortname";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +801 \\core\\event\\config_log_created core created config_log config_log 1415 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"localcategoryfield";s:8:"oldvalue";N;s:5:"value";s:2:"id";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +802 \\core\\event\\config_log_created core created config_log config_log 1416 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"remoteenroltable";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +803 \\core\\event\\config_log_created core created config_log config_log 1417 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"remotecoursefield";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +804 \\core\\event\\config_log_created core created config_log config_log 1418 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"remoteuserfield";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +805 \\core\\event\\config_log_created core created config_log config_log 1419 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"remoterolefield";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +806 \\core\\event\\config_log_created core created config_log config_log 1420 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"remoteotheruserfield";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +807 \\core\\event\\config_log_created core created config_log config_log 1421 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"defaultrole";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +808 \\core\\event\\config_log_created core created config_log config_log 1422 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"ignorehiddencourses";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +809 \\core\\event\\config_log_created core created config_log config_log 1423 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"unenrolaction";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +810 \\core\\event\\config_log_created core created config_log config_log 1424 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"newcoursetable";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +811 \\core\\event\\config_log_created core created config_log config_log 1425 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"newcoursefullname";s:8:"oldvalue";N;s:5:"value";s:8:"fullname";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +812 \\core\\event\\config_log_created core created config_log config_log 1426 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"newcourseshortname";s:8:"oldvalue";N;s:5:"value";s:9:"shortname";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +813 \\core\\event\\config_log_created core created config_log config_log 1427 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"newcourseidnumber";s:8:"oldvalue";N;s:5:"value";s:8:"idnumber";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +814 \\core\\event\\config_log_created core created config_log config_log 1428 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"newcoursecategory";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +815 \\core\\event\\config_log_created core created config_log config_log 1429 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"defaultcategory";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +816 \\core\\event\\config_log_created core created config_log config_log 1430 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"templatecourse";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N +817 \\core\\event\\config_log_created core created config_log config_log 1431 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"location";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_flatfile";} 1612889144 web 67.182.30.218 \N +818 \\core\\event\\config_log_created core created config_log config_log 1432 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"encoding";s:8:"oldvalue";N;s:5:"value";s:5:"UTF-8";s:6:"plugin";s:14:"enrol_flatfile";} 1612889144 web 67.182.30.218 \N +819 \\core\\event\\config_log_created core created config_log config_log 1433 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"mailstudents";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_flatfile";} 1612889144 web 67.182.30.218 \N +820 \\core\\event\\config_log_created core created config_log config_log 1434 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"mailteachers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_flatfile";} 1612889144 web 67.182.30.218 \N +821 \\core\\event\\config_log_created core created config_log config_log 1435 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"mailadmins";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_flatfile";} 1612889144 web 67.182.30.218 \N +822 \\core\\event\\config_log_created core created config_log config_log 1436 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"unenrolaction";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:14:"enrol_flatfile";} 1612889144 web 67.182.30.218 \N +823 \\core\\event\\config_log_created core created config_log config_log 1437 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"expiredaction";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:14:"enrol_flatfile";} 1612889144 web 67.182.30.218 \N +824 \\core\\event\\config_log_created core created config_log config_log 1438 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"requirepassword";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"enrol_guest";} 1612889144 web 67.182.30.218 \N +825 \\core\\event\\config_log_created core created config_log config_log 1439 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"usepasswordpolicy";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"enrol_guest";} 1612889144 web 67.182.30.218 \N +826 \\core\\event\\config_log_created core created config_log config_log 1440 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"showhint";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"enrol_guest";} 1612889144 web 67.182.30.218 \N +827 \\core\\event\\config_log_created core created config_log config_log 1441 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"defaultenrol";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:11:"enrol_guest";} 1612889144 web 67.182.30.218 \N +828 \\core\\event\\config_log_created core created config_log config_log 1442 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"status";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:11:"enrol_guest";} 1612889144 web 67.182.30.218 \N +829 \\core\\event\\config_log_created core created config_log config_log 1443 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"status_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"enrol_guest";} 1612889144 web 67.182.30.218 \N +830 \\core\\event\\config_log_created core created config_log config_log 1444 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"imsfilelocation";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +831 \\core\\event\\config_log_created core created config_log config_log 1445 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"logtolocation";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +832 \\core\\event\\config_log_created core created config_log config_log 1446 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"mailadmins";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +833 \\core\\event\\config_log_created core created config_log config_log 1447 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"createnewusers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +834 \\core\\event\\config_log_created core created config_log config_log 1448 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"imsupdateusers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +835 \\core\\event\\config_log_created core created config_log config_log 1449 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"imsdeleteusers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +836 \\core\\event\\config_log_created core created config_log config_log 1450 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"fixcaseusernames";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +837 \\core\\event\\config_log_created core created config_log config_log 1451 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"fixcasepersonalnames";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +838 \\core\\event\\config_log_created core created config_log config_log 1452 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"imssourcedidfallback";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +839 \\core\\event\\config_log_created core created config_log config_log 1453 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap01";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +840 \\core\\event\\config_log_created core created config_log config_log 1454 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap02";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +841 \\core\\event\\config_log_created core created config_log config_log 1455 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap03";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +842 \\core\\event\\config_log_created core created config_log config_log 1456 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap04";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +843 \\core\\event\\config_log_created core created config_log config_log 1457 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap05";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +844 \\core\\event\\config_log_created core created config_log config_log 1458 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap06";s:8:"oldvalue";N;s:5:"value";s:1:"4";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +845 \\core\\event\\config_log_created core created config_log config_log 1459 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap07";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +846 \\core\\event\\config_log_created core created config_log config_log 1460 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap08";s:8:"oldvalue";N;s:5:"value";s:1:"4";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +847 \\core\\event\\config_log_created core created config_log config_log 1461 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"truncatecoursecodes";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +848 \\core\\event\\config_log_created core created config_log config_log 1462 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"createnewcourses";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +849 \\core\\event\\config_log_created core created config_log config_log 1463 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"updatecourses";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +850 \\core\\event\\config_log_created core created config_log config_log 1464 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"createnewcategories";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +851 \\core\\event\\config_log_created core created config_log config_log 1465 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"nestedcategories";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +852 \\core\\event\\config_log_created core created config_log config_log 1466 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"categoryidnumber";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +853 \\core\\event\\config_log_created core created config_log config_log 1467 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"categoryseparator";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +854 \\core\\event\\config_log_created core created config_log config_log 1468 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"imsunenrol";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +855 \\core\\event\\config_log_created core created config_log config_log 1469 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"imscoursemapshortname";s:8:"oldvalue";N;s:5:"value";s:10:"coursecode";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +856 \\core\\event\\config_log_created core created config_log config_log 1470 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"imscoursemapfullname";s:8:"oldvalue";N;s:5:"value";s:5:"short";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +857 \\core\\event\\config_log_created core created config_log config_log 1471 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"imscoursemapsummary";s:8:"oldvalue";N;s:5:"value";s:6:"ignore";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +858 \\core\\event\\config_log_created core created config_log config_log 1472 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"imsrestricttarget";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +859 \\core\\event\\config_log_created core created config_log config_log 1473 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imscapitafix";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N +860 \\core\\event\\config_log_created core created config_log config_log 1474 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"expiredaction";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:12:"enrol_manual";} 1612889144 web 67.182.30.218 \N +861 \\core\\event\\config_log_created core created config_log config_log 1475 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"expirynotifyhour";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";s:12:"enrol_manual";} 1612889144 web 67.182.30.218 \N +862 \\core\\event\\config_log_created core created config_log config_log 1476 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"defaultenrol";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:12:"enrol_manual";} 1612889144 web 67.182.30.218 \N +863 \\core\\event\\config_log_created core created config_log config_log 1477 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"status";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_manual";} 1612889144 web 67.182.30.218 \N +864 \\core\\event\\config_log_created core created config_log config_log 1478 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"roleid";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:12:"enrol_manual";} 1612889144 web 67.182.30.218 \N +865 \\core\\event\\config_log_created core created config_log config_log 1479 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"enrolstart";s:8:"oldvalue";N;s:5:"value";s:1:"4";s:6:"plugin";s:12:"enrol_manual";} 1612889144 web 67.182.30.218 \N +866 \\core\\event\\config_log_created core created config_log config_log 1480 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"enrolperiod";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_manual";} 1612889144 web 67.182.30.218 \N +867 \\core\\event\\config_log_created core created config_log config_log 1481 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"expirynotify";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_manual";} 1612889144 web 67.182.30.218 \N +868 \\core\\event\\config_log_created core created config_log config_log 1482 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"expirythreshold";s:8:"oldvalue";N;s:5:"value";s:5:"86400";s:6:"plugin";s:12:"enrol_manual";} 1612889144 web 67.182.30.218 \N +869 \\core\\event\\config_log_created core created config_log config_log 1483 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"roleid";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:10:"enrol_mnet";} 1612889144 web 67.182.30.218 \N +870 \\core\\event\\config_log_created core created config_log config_log 1484 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"roleid_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_mnet";} 1612889144 web 67.182.30.218 \N +871 \\core\\event\\config_log_created core created config_log config_log 1485 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"paypalbusiness";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:12:"enrol_paypal";} 1612889144 web 67.182.30.218 \N +872 \\core\\event\\config_log_created core created config_log config_log 1486 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"mailstudents";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_paypal";} 1612889144 web 67.182.30.218 \N +873 \\core\\event\\config_log_created core created config_log config_log 1487 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"mailteachers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_paypal";} 1612889144 web 67.182.30.218 \N +874 \\core\\event\\config_log_created core created config_log config_log 1488 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"mailadmins";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_paypal";} 1612889144 web 67.182.30.218 \N +875 \\core\\event\\config_log_created core created config_log config_log 1489 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"expiredaction";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:12:"enrol_paypal";} 1612889144 web 67.182.30.218 \N +876 \\core\\event\\config_log_created core created config_log config_log 1490 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"status";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:12:"enrol_paypal";} 1612889144 web 67.182.30.218 \N +877 \\core\\event\\config_log_created core created config_log config_log 1491 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"cost";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_paypal";} 1612889144 web 67.182.30.218 \N +878 \\core\\event\\config_log_created core created config_log config_log 1492 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"currency";s:8:"oldvalue";N;s:5:"value";s:3:"USD";s:6:"plugin";s:12:"enrol_paypal";} 1612889144 web 67.182.30.218 \N +879 \\core\\event\\config_log_created core created config_log config_log 1493 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"roleid";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:12:"enrol_paypal";} 1612889144 web 67.182.30.218 \N +880 \\core\\event\\config_log_created core created config_log config_log 1494 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"enrolperiod";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_paypal";} 1612889144 web 67.182.30.218 \N +881 \\core\\event\\config_log_created core created config_log config_log 1495 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"emaildisplay";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";s:9:"enrol_lti";} 1612889144 web 67.182.30.218 \N +882 \\core\\event\\config_log_created core created config_log config_log 1496 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"city";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"enrol_lti";} 1612889144 web 67.182.30.218 \N +883 \\core\\event\\config_log_created core created config_log config_log 1497 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"country";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"enrol_lti";} 1612889144 web 67.182.30.218 \N +884 \\core\\event\\config_log_created core created config_log config_log 1498 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"timezone";s:8:"oldvalue";N;s:5:"value";s:2:"99";s:6:"plugin";s:9:"enrol_lti";} 1612889144 web 67.182.30.218 \N +885 \\core\\event\\config_log_created core created config_log config_log 1499 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"lang";s:8:"oldvalue";N;s:5:"value";s:2:"en";s:6:"plugin";s:9:"enrol_lti";} 1612889144 web 67.182.30.218 \N +886 \\core\\event\\config_log_created core created config_log config_log 1500 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"institution";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"enrol_lti";} 1612889144 web 67.182.30.218 \N +887 \\core\\event\\config_log_created core created config_log config_log 1501 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"requirepassword";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N +888 \\core\\event\\config_log_created core created config_log config_log 1502 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"usepasswordpolicy";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N +889 \\core\\event\\config_log_created core created config_log config_log 1503 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"showhint";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N +890 \\core\\event\\config_log_created core created config_log config_log 1504 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"expiredaction";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N +891 \\core\\event\\config_log_created core created config_log config_log 1505 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"expirynotifyhour";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N +892 \\core\\event\\config_log_created core created config_log config_log 1506 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"defaultenrol";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N +893 \\core\\event\\config_log_created core created config_log config_log 1507 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"status";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N +894 \\core\\event\\config_log_created core created config_log config_log 1508 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"newenrols";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N +895 \\core\\event\\config_log_created core created config_log config_log 1509 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"groupkey";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N +896 \\core\\event\\config_log_created core created config_log config_log 1510 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"roleid";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N +897 \\core\\event\\config_log_created core created config_log config_log 1511 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"enrolperiod";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N +898 \\core\\event\\config_log_created core created config_log config_log 1512 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"expirynotify";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N +899 \\core\\event\\config_log_created core created config_log config_log 1513 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"expirythreshold";s:8:"oldvalue";N;s:5:"value";s:5:"86400";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N +900 \\core\\event\\config_log_created core created config_log config_log 1514 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"longtimenosee";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N +901 \\core\\event\\config_log_created core created config_log config_log 1515 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"maxenrolled";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N +902 \\core\\event\\config_log_created core created config_log config_log 1516 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"sendcoursewelcomemessage";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N +903 \\core\\event\\config_log_created core created config_log config_log 1517 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"formats";s:8:"oldvalue";N;s:5:"value";s:5:"1,4,0";s:6:"plugin";s:16:"filter_urltolink";} 1612889144 web 67.182.30.218 \N +904 \\core\\event\\config_log_created core created config_log config_log 1518 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"embedimages";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"filter_urltolink";} 1612889144 web 67.182.30.218 \N +905 \\core\\event\\config_log_created core created config_log config_log 1519 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"formats";s:8:"oldvalue";N;s:5:"value";s:5:"1,4,0";s:6:"plugin";s:15:"filter_emoticon";} 1612889144 web 67.182.30.218 \N +906 \\core\\event\\config_log_created core created config_log config_log 1520 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"allowedsources";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"filter_displayh5p";} 1612889144 web 67.182.30.218 \N +907 \\core\\event\\config_log_created core created config_log config_log 1521 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"httpsurl";s:8:"oldvalue";N;s:5:"value";s:53:"https://cdn.jsdelivr.net/npm/mathjax@2.7.8/MathJax.js";s:6:"plugin";s:20:"filter_mathjaxloader";} 1612889144 web 67.182.30.218 \N +908 \\core\\event\\config_log_created core created config_log config_log 1522 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"texfiltercompatibility";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:20:"filter_mathjaxloader";} 1612889144 web 67.182.30.218 \N +909 \\core\\event\\config_log_created core created config_log config_log 1523 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"mathjaxconfig";s:8:"oldvalue";N;s:5:"value";s:162:"\nMathJax.Hub.Config({\n config: ["Accessible.js", "Safe.js"],\n errorSettings: { message: ["!"] },\n skipStartupTypeset: true,\n messageStyle: "none"\n});\n";s:6:"plugin";s:20:"filter_mathjaxloader";} 1612889144 web 67.182.30.218 \N +910 \\core\\event\\config_log_created core created config_log config_log 1524 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"additionaldelimiters";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:20:"filter_mathjaxloader";} 1612889144 web 67.182.30.218 \N +911 \\core\\event\\config_log_created core created config_log config_log 1525 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"filter_multilang_force_old";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889144 web 67.182.30.218 \N +912 \\core\\event\\config_log_created core created config_log config_log 1526 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"latexpreamble";s:8:"oldvalue";N;s:5:"value";s:115:"\\usepackage[latin1]{inputenc}\n\\usepackage{amsmath}\n\\usepackage{amsfonts}\n\\RequirePackage{amsmath,amssymb,latexsym}\n";s:6:"plugin";s:10:"filter_tex";} 1612889144 web 67.182.30.218 \N +913 \\core\\event\\config_log_created core created config_log config_log 1527 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"latexbackground";s:8:"oldvalue";N;s:5:"value";s:7:"#FFFFFF";s:6:"plugin";s:10:"filter_tex";} 1612889145 web 67.182.30.218 \N +914 \\core\\event\\config_log_created core created config_log config_log 1528 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"density";s:8:"oldvalue";N;s:5:"value";s:3:"120";s:6:"plugin";s:10:"filter_tex";} 1612889145 web 67.182.30.218 \N +915 \\core\\event\\config_log_created core created config_log config_log 1529 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"pathlatex";s:8:"oldvalue";N;s:5:"value";s:14:"/usr/bin/latex";s:6:"plugin";s:10:"filter_tex";} 1612889145 web 67.182.30.218 \N +916 \\core\\event\\config_log_created core created config_log config_log 1530 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"pathdvips";s:8:"oldvalue";N;s:5:"value";s:14:"/usr/bin/dvips";s:6:"plugin";s:10:"filter_tex";} 1612889145 web 67.182.30.218 \N +917 \\core\\event\\config_log_created core created config_log config_log 1531 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"pathconvert";s:8:"oldvalue";N;s:5:"value";s:16:"/usr/bin/convert";s:6:"plugin";s:10:"filter_tex";} 1612889145 web 67.182.30.218 \N +918 \\core\\event\\config_log_created core created config_log config_log 1532 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"pathdvisvgm";s:8:"oldvalue";N;s:5:"value";s:16:"/usr/bin/dvisvgm";s:6:"plugin";s:10:"filter_tex";} 1612889145 web 67.182.30.218 \N +919 \\core\\event\\config_log_created core created config_log config_log 1533 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"pathmimetex";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"filter_tex";} 1612889145 web 67.182.30.218 \N +920 \\core\\event\\config_log_created core created config_log config_log 1534 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"convertformat";s:8:"oldvalue";N;s:5:"value";s:3:"gif";s:6:"plugin";s:10:"filter_tex";} 1612889145 web 67.182.30.218 \N +921 \\core\\event\\config_log_created core created config_log config_log 1535 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"filter_censor_badwords";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N +922 \\core\\event\\config_log_created core created config_log config_log 1536 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"dbdriver";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N +923 \\core\\event\\config_log_created core created config_log config_log 1537 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbhost";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N +924 \\core\\event\\config_log_created core created config_log config_log 1538 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbuser";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N +925 \\core\\event\\config_log_created core created config_log config_log 1539 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbpass";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N +926 \\core\\event\\config_log_created core created config_log config_log 1540 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N +927 \\core\\event\\config_log_created core created config_log config_log 1541 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"dbtable";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N +928 \\core\\event\\config_log_created core created config_log config_log 1542 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"dbpersist";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N +929 \\core\\event\\config_log_created core created config_log config_log 1543 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"dbsocket";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N +930 \\core\\event\\config_log_created core created config_log config_log 1544 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbport";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N +931 \\core\\event\\config_log_created core created config_log config_log 1545 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"dbschema";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N +932 \\core\\event\\config_log_created core created config_log config_log 1546 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"dbcollation";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N +933 \\core\\event\\config_log_created core created config_log config_log 1547 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"dbhandlesoptions";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N +934 \\core\\event\\config_log_created core created config_log config_log 1548 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"buffersize";s:8:"oldvalue";N;s:5:"value";s:2:"50";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N +935 \\core\\event\\config_log_created core created config_log config_log 1549 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"jsonformat";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N +936 \\core\\event\\config_log_created core created config_log config_log 1550 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"logguests";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N +937 \\core\\event\\config_log_created core created config_log config_log 1551 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"includelevels";s:8:"oldvalue";N;s:5:"value";s:5:"1,2,0";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N +938 \\core\\event\\config_log_created core created config_log config_log 1552 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"includeactions";s:8:"oldvalue";N;s:5:"value";s:7:"c,r,u,d";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N +939 \\core\\event\\config_log_created core created config_log config_log 1553 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"loglegacy";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:15:"logstore_legacy";} 1612889145 web 67.182.30.218 \N +940 \\core\\event\\config_log_created core created config_log config_log 1554 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"logguests";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N +941 \\core\\event\\config_log_created core created config_log config_log 1555 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"loglifetime";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N +942 \\core\\event\\config_log_created core created config_log config_log 1556 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"logguests";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:17:"logstore_standard";} 1612889145 web 67.182.30.218 \N +943 \\core\\event\\config_log_created core created config_log config_log 1557 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"jsonformat";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:17:"logstore_standard";} 1612889145 web 67.182.30.218 \N +944 \\core\\event\\config_log_created core created config_log config_log 1558 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"loglifetime";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:17:"logstore_standard";} 1612889145 web 67.182.30.218 \N +945 \\core\\event\\config_log_created core created config_log config_log 1559 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"buffersize";s:8:"oldvalue";N;s:5:"value";s:2:"50";s:6:"plugin";s:17:"logstore_standard";} 1612889145 web 67.182.30.218 \N +946 \\core\\event\\config_log_created core created config_log config_log 1560 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"useserver";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"mlbackend_python";} 1612889145 web 67.182.30.218 \N +947 \\core\\event\\config_log_created core created config_log config_log 1561 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"host";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"mlbackend_python";} 1612889145 web 67.182.30.218 \N +948 \\core\\event\\config_log_created core created config_log config_log 1562 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"port";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"mlbackend_python";} 1612889145 web 67.182.30.218 \N +949 \\core\\event\\config_log_created core created config_log config_log 1563 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"secure";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"mlbackend_python";} 1612889145 web 67.182.30.218 \N +950 \\core\\event\\config_log_created core created config_log config_log 1564 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"username";s:8:"oldvalue";N;s:5:"value";s:7:"default";s:6:"plugin";s:16:"mlbackend_python";} 1612889145 web 67.182.30.218 \N +951 \\core\\event\\config_log_created core created config_log config_log 1565 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"password";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"mlbackend_python";} 1612889145 web 67.182.30.218 \N +952 \\core\\event\\config_log_created core created config_log config_log 1566 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"videoextensions";s:8:"oldvalue";N;s:5:"value";s:33:"html_video,media_source,.f4v,.flv";s:6:"plugin";s:13:"media_videojs";} 1612889145 web 67.182.30.218 \N +953 \\core\\event\\config_log_created core created config_log config_log 1567 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"audioextensions";s:8:"oldvalue";N;s:5:"value";s:10:"html_audio";s:6:"plugin";s:13:"media_videojs";} 1612889145 web 67.182.30.218 \N +954 \\core\\event\\config_log_created core created config_log config_log 1568 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"rtmp";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:13:"media_videojs";} 1612889145 web 67.182.30.218 \N +955 \\core\\event\\config_log_created core created config_log config_log 1569 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"useflash";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:13:"media_videojs";} 1612889145 web 67.182.30.218 \N +956 \\core\\event\\config_log_created core created config_log config_log 1570 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"youtube";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:13:"media_videojs";} 1612889145 web 67.182.30.218 \N +957 \\core\\event\\config_log_created core created config_log config_log 1571 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"videocssclass";s:8:"oldvalue";N;s:5:"value";s:8:"video-js";s:6:"plugin";s:13:"media_videojs";} 1612889145 web 67.182.30.218 \N +958 \\core\\event\\config_log_created core created config_log config_log 1572 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"audiocssclass";s:8:"oldvalue";N;s:5:"value";s:8:"video-js";s:6:"plugin";s:13:"media_videojs";} 1612889145 web 67.182.30.218 \N +959 \\core\\event\\config_log_created core created config_log config_log 1573 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"limitsize";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:13:"media_videojs";} 1612889145 web 67.182.30.218 \N +960 \\core\\event\\config_log_created core created config_log config_log 1574 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"surcharge";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"paygw_paypal";} 1612889145 web 67.182.30.218 \N +961 \\core\\event\\config_log_created core created config_log config_log 1575 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"answerhowmany";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:17:"qtype_multichoice";} 1612889145 web 67.182.30.218 \N +962 \\core\\event\\config_log_created core created config_log config_log 1576 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"shuffleanswers";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:17:"qtype_multichoice";} 1612889145 web 67.182.30.218 \N +963 \\core\\event\\config_log_created core created config_log config_log 1577 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"answernumbering";s:8:"oldvalue";N;s:5:"value";s:3:"abc";s:6:"plugin";s:17:"qtype_multichoice";} 1612889145 web 67.182.30.218 \N +964 \\core\\event\\config_log_created core created config_log config_log 1578 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"toolbar";s:8:"oldvalue";N;s:5:"value";s:355:"collapse = collapse\nstyle1 = title, bold, italic\nlist = unorderedlist, orderedlist, indent\nlinks = link\nfiles = emojipicker, image, media, recordrtc, managefiles, h5p\nstyle2 = underline, strike, subscript, superscript\nalign = align\ninsert = equation, charmap, table, clear\nundo = undo\naccessibility = accessibilitychecker, accessibilityhelper\nother = html";s:6:"plugin";s:11:"editor_atto";} 1612889145 web 67.182.30.218 \N +965 \\core\\event\\config_log_created core created config_log config_log 1579 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"autosavefrequency";s:8:"oldvalue";N;s:5:"value";s:2:"60";s:6:"plugin";s:11:"editor_atto";} 1612889145 web 67.182.30.218 \N +966 \\core\\event\\config_log_created core created config_log config_log 1580 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"showgroups";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:13:"atto_collapse";} 1612889145 web 67.182.30.218 \N +967 \\core\\event\\config_log_created core created config_log config_log 1581 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"librarygroup1";s:8:"oldvalue";N;s:5:"value";s:244:"\n\\cdot\n\\times\n\\ast\n\\div\n\\diamond\n\\pm\n\\mp\n\\oplus\n\\ominus\n\\otimes\n\\oslash\n\\odot\n\\circ\n\\bullet\n\\asymp\n\\equiv\n\\subseteq\n\\supseteq\n\\leq\n\\geq\n\\preceq\n\\succeq\n\\sim\n\\simeq\n\\approx\n\\subset\n\\supset\n\\ll\n\\gg\n\\prec\n\\succ\n\\infty\n\\in\n\\ni\n\\forall\n\\exists\n\\neq\n";s:6:"plugin";s:13:"atto_equation";} 1612889145 web 67.182.30.218 \N +968 \\core\\event\\config_log_created core created config_log config_log 1582 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"librarygroup2";s:8:"oldvalue";N;s:5:"value";s:155:"\n\\leftarrow\n\\rightarrow\n\\uparrow\n\\downarrow\n\\leftrightarrow\n\\nearrow\n\\searrow\n\\swarrow\n\\nwarrow\n\\Leftarrow\n\\Rightarrow\n\\Uparrow\n\\Downarrow\n\\Leftrightarrow\n";s:6:"plugin";s:13:"atto_equation";} 1612889145 web 67.182.30.218 \N +969 \\core\\event\\config_log_created core created config_log config_log 1583 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"librarygroup3";s:8:"oldvalue";N;s:5:"value";s:210:"\n\\alpha\n\\beta\n\\gamma\n\\delta\n\\epsilon\n\\zeta\n\\eta\n\\theta\n\\iota\n\\kappa\n\\lambda\n\\mu\n\\nu\n\\xi\n\\pi\n\\rho\n\\sigma\n\\tau\n\\upsilon\n\\phi\n\\chi\n\\psi\n\\omega\n\\Gamma\n\\Delta\n\\Theta\n\\Lambda\n\\Xi\n\\Pi\n\\Sigma\n\\Upsilon\n\\Phi\n\\Psi\n\\Omega\n";s:6:"plugin";s:13:"atto_equation";} 1612889145 web 67.182.30.218 \N +970 \\core\\event\\config_log_created core created config_log config_log 1584 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"librarygroup4";s:8:"oldvalue";N;s:5:"value";s:239:"\n\\sum{a,b}\n\\sqrt[a]{b+c}\n\\int_{a}^{b}{c}\n\\iint_{a}^{b}{c}\n\\iiint_{a}^{b}{c}\n\\oint{a}\n(a)\n[a]\n\\lbrace{a}\\rbrace\n\\left| \\begin{matrix} a_1 & a_2 \\ a_3 & a_4 \\end{matrix} \\right|\n\\frac{a}{b+c}\n\\vec{a}\n\\binom {a} {b}\n{a \\brack b}\n{a \\brace b}\n";s:6:"plugin";s:13:"atto_equation";} 1612889145 web 67.182.30.218 \N +971 \\core\\event\\config_log_created core created config_log config_log 1585 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"allowedtypes";s:8:"oldvalue";N;s:5:"value";s:4:"both";s:6:"plugin";s:14:"atto_recordrtc";} 1612889145 web 67.182.30.218 \N +972 \\core\\event\\config_log_created core created config_log config_log 1586 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"audiobitrate";s:8:"oldvalue";N;s:5:"value";s:6:"128000";s:6:"plugin";s:14:"atto_recordrtc";} 1612889145 web 67.182.30.218 \N +973 \\core\\event\\config_log_created core created config_log config_log 1587 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"videobitrate";s:8:"oldvalue";N;s:5:"value";s:7:"2500000";s:6:"plugin";s:14:"atto_recordrtc";} 1612889145 web 67.182.30.218 \N +974 \\core\\event\\config_log_created core created config_log config_log 1588 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"timelimit";s:8:"oldvalue";N;s:5:"value";s:3:"120";s:6:"plugin";s:14:"atto_recordrtc";} 1612889145 web 67.182.30.218 \N +975 \\core\\event\\config_log_created core created config_log config_log 1589 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"allowborders";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"atto_table";} 1612889145 web 67.182.30.218 \N +976 \\core\\event\\config_log_created core created config_log config_log 1590 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"allowbackgroundcolour";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"atto_table";} 1612889145 web 67.182.30.218 \N +977 \\core\\event\\config_log_created core created config_log config_log 1591 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"allowwidth";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"atto_table";} 1612889145 web 67.182.30.218 \N +978 \\core\\event\\config_log_created core created config_log config_log 1592 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"customtoolbar";s:8:"oldvalue";N;s:5:"value";s:378:"wrap,formatselect,wrap,bold,italic,wrap,bullist,numlist,wrap,link,unlink,wrap,image\n\nundo,redo,wrap,underline,strikethrough,sub,sup,wrap,justifyleft,justifycenter,justifyright,wrap,outdent,indent,wrap,forecolor,backcolor,wrap,ltr,rtl\n\nfontselect,fontsizeselect,wrap,code,search,replace,wrap,nonbreaking,charmap,table,wrap,cleanup,removeformat,pastetext,pasteword,wrap,fullscreen";s:6:"plugin";s:14:"editor_tinymce";} 1612889145 web 67.182.30.218 \N +979 \\core\\event\\config_log_created core created config_log config_log 1593 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"fontselectlist";s:8:"oldvalue";N;s:5:"value";s:338:"Trebuchet=Trebuchet MS,Verdana,Arial,Helvetica,sans-serif;Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;Wingdings=wingdings";s:6:"plugin";s:14:"editor_tinymce";} 1612889145 web 67.182.30.218 \N +980 \\core\\event\\config_log_created core created config_log config_log 1594 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"customconfig";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"editor_tinymce";} 1612889145 web 67.182.30.218 \N +981 \\core\\event\\config_log_created core created config_log config_log 1595 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"requireemoticon";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:22:"tinymce_moodleemoticon";} 1612889145 web 67.182.30.218 \N +982 \\core\\event\\config_log_created core created config_log config_log 1596 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"spellengine";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:20:"tinymce_spellchecker";} 1612889145 web 67.182.30.218 \N +983 \\core\\event\\config_log_created core created config_log config_log 1597 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"spelllanguagelist";s:8:"oldvalue";N;s:5:"value";s:118:"+English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv";s:6:"plugin";s:20:"tinymce_spellchecker";} 1612889145 web 67.182.30.218 \N +984 \\core\\event\\config_log_created core created config_log config_log 1598 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"profileroles";s:8:"oldvalue";N;s:5:"value";s:5:"5,4,3";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N +985 \\core\\event\\config_log_created core created config_log config_log 1599 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"coursecontact";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N +986 \\core\\event\\config_log_created core created config_log config_log 1600 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"frontpage";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N +987 \\core\\event\\config_log_created core created config_log config_log 1601 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"frontpageloggedin";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N +988 \\core\\event\\config_log_created core created config_log config_log 1602 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"maxcategorydepth";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N +989 \\core\\event\\config_log_created core created config_log config_log 1603 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"frontpagecourselimit";s:8:"oldvalue";N;s:5:"value";s:3:"200";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N +990 \\core\\event\\config_log_created core created config_log config_log 1604 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"commentsperpage";s:8:"oldvalue";N;s:5:"value";s:2:"15";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N +991 \\core\\event\\config_log_created core created config_log config_log 1605 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"defaultfrontpageroleid";s:8:"oldvalue";N;s:5:"value";s:1:"8";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N +992 \\core\\event\\config_log_created core created config_log config_log 1606 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"messageinbound_enabled";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N +993 \\core\\event\\config_log_created core created config_log config_log 1607 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"messageinbound_mailbox";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N +994 \\core\\event\\config_log_created core created config_log config_log 1608 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"messageinbound_domain";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N +995 \\core\\event\\config_log_created core created config_log config_log 1609 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"messageinbound_host";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N +996 \\core\\event\\config_log_created core created config_log config_log 1610 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"messageinbound_hostssl";s:8:"oldvalue";N;s:5:"value";s:3:"ssl";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N +997 \\core\\event\\config_log_created core created config_log config_log 1611 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"messageinbound_hostuser";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N +998 \\core\\event\\config_log_created core created config_log config_log 1612 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"messageinbound_hostpass";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N +999 \\core\\event\\config_log_created core created config_log config_log 1613 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"enablemobilewebservice";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N +1000 \\core\\event\\config_log_created core created config_log config_log 1614 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"apppolicy";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N +1001 \\core\\event\\config_log_created core created config_log config_log 1615 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"typeoflogin";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N +1002 \\core\\event\\config_log_created core created config_log config_log 1616 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"qrcodetype";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N +1003 \\core\\event\\config_log_created core created config_log config_log 1617 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"forcedurlscheme";s:8:"oldvalue";N;s:5:"value";s:12:"moodlemobile";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N +1004 \\core\\event\\config_log_created core created config_log config_log 1618 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"minimumversion";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N +1005 \\core\\event\\config_log_created core created config_log config_log 1619 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"mobilecssurl";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N +1006 \\core\\event\\config_log_created core created config_log config_log 1620 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"enablesmartappbanners";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N +1007 \\core\\event\\config_log_created core created config_log config_log 1621 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"iosappid";s:8:"oldvalue";N;s:5:"value";s:9:"633359593";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N +1008 \\core\\event\\config_log_created core created config_log config_log 1622 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"androidappid";s:8:"oldvalue";N;s:5:"value";s:23:"com.moodle.moodlemobile";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N +1009 \\core\\event\\config_log_created core created config_log config_log 1623 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"setuplink";s:8:"oldvalue";N;s:5:"value";s:34:"https://download.moodle.org/mobile";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N +1010 \\core\\event\\config_log_created core created config_log config_log 1624 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"forcelogout";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N +1011 \\core\\event\\config_log_created core created config_log config_log 1625 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"disabledfeatures";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N +1012 \\core\\event\\config_log_created core created config_log config_log 1626 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"custommenuitems";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N +1013 \\core\\event\\config_log_created core created config_log config_log 1627 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"filetypeexclusionlist";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N +1014 \\core\\event\\config_log_created core created config_log config_log 1628 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"customlangstrings";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N +1015 \\core\\event\\config_log_created core created config_log config_log 1629 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"enablemoodlenet";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"tool_moodlenet";} 1612889145 web 67.182.30.218 \N +1016 \\core\\event\\config_log_created core created config_log config_log 1630 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"defaultmoodlenetname";s:8:"oldvalue";N;s:5:"value";s:17:"MoodleNet Central";s:6:"plugin";s:14:"tool_moodlenet";} 1612889145 web 67.182.30.218 \N +1017 \\core\\event\\config_log_created core created config_log config_log 1631 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"defaultmoodlenet";s:8:"oldvalue";N;s:5:"value";s:18:"https://moodle.net";s:6:"plugin";s:14:"tool_moodlenet";} 1612889145 web 67.182.30.218 \N +1018 \\core\\event\\config_log_created core created config_log config_log 1632 c 0 1 10 0 2 0 \N 0 {"name":"timezone","oldvalue":null,"value":"Europe\\/London","plugin":null} 1612889167 web 67.182.30.218 \N +1019 \\core\\event\\config_log_created core created config_log config_log 1633 c 0 1 10 0 2 0 \N 0 {"name":"registerauth","oldvalue":null,"value":"","plugin":null} 1612889167 web 67.182.30.218 \N +1020 \\core\\event\\dashboard_viewed core viewed dashboard \N \N r 0 5 30 2 2 0 2 0 null 1612889167 web 67.182.30.218 \N +1021 \\core\\event\\user_created core created user user 3 c 0 25 30 3 2 0 3 0 null 1612889205 web 67.182.30.218 \N \. @@ -33345,7 +33772,7 @@ COPY public.mdl_logstore_standard_log (id, eventname, component, action, target, -- Name: mdl_logstore_standard_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_logstore_standard_log_id_seq', 1022, true); +SELECT pg_catalog.setval('public.mdl_logstore_standard_log_id_seq', 1021, true); -- @@ -33650,36 +34077,38 @@ COPY public.mdl_message_providers (id, name, component, capability) FROM stdin; 6 courserequested moodle moodle/site:approvecourse 7 courserequestapproved moodle moodle/course:request 8 courserequestrejected moodle moodle/course:request -9 badgerecipientnotice moodle moodle/badges:earnbadge -10 badgecreatornotice moodle \N -11 competencyplancomment moodle \N -12 competencyusercompcomment moodle \N -13 insights moodle \N -14 messagecontactrequests moodle \N -15 asyncbackupnotification moodle \N -16 gradenotifications moodle \N -17 assign_notification mod_assign \N -18 assignment_updates mod_assignment \N -19 submission mod_feedback \N -20 message mod_feedback \N -21 posts mod_forum \N -22 digests mod_forum \N -23 graded_essay mod_lesson \N -24 submission mod_quiz mod/quiz:emailnotifysubmission -25 confirmation mod_quiz mod/quiz:emailconfirmsubmission -26 attempt_overdue mod_quiz mod/quiz:emailwarnoverdue -27 flatfile_enrolment enrol_flatfile \N -28 imsenterprise_enrolment enrol_imsenterprise \N -29 expiry_notification enrol_manual \N -30 paypal_enrolment enrol_paypal \N -31 expiry_notification enrol_self \N -32 contactdataprotectionofficer tool_dataprivacy tool/dataprivacy:managedatarequests -33 datarequestprocessingresults tool_dataprivacy \N -34 notifyexceptions tool_dataprivacy tool/dataprivacy:managedatarequests -35 invalidrecipienthandler tool_messageinbound \N -36 messageprocessingerror tool_messageinbound \N -37 messageprocessingsuccess tool_messageinbound \N -38 notification tool_monitor tool/monitor:subscribe +9 coursecompleted moodle \N +10 badgerecipientnotice moodle moodle/badges:earnbadge +11 badgecreatornotice moodle \N +12 competencyplancomment moodle \N +13 competencyusercompcomment moodle \N +14 insights moodle \N +15 messagecontactrequests moodle \N +16 asyncbackupnotification moodle \N +17 gradenotifications moodle \N +18 infected moodle moodle/site:config +19 assign_notification mod_assign \N +20 assignment_updates mod_assignment \N +21 submission mod_feedback \N +22 message mod_feedback \N +23 posts mod_forum \N +24 digests mod_forum \N +25 graded_essay mod_lesson \N +26 submission mod_quiz mod/quiz:emailnotifysubmission +27 confirmation mod_quiz mod/quiz:emailconfirmsubmission +28 attempt_overdue mod_quiz mod/quiz:emailwarnoverdue +29 flatfile_enrolment enrol_flatfile \N +30 imsenterprise_enrolment enrol_imsenterprise \N +31 expiry_notification enrol_manual \N +32 paypal_enrolment enrol_paypal \N +33 expiry_notification enrol_self \N +34 contactdataprotectionofficer tool_dataprivacy tool/dataprivacy:managedatarequests +35 datarequestprocessingresults tool_dataprivacy \N +36 notifyexceptions tool_dataprivacy tool/dataprivacy:managedatarequests +37 invalidrecipienthandler tool_messageinbound \N +38 messageprocessingerror tool_messageinbound \N +39 messageprocessingsuccess tool_messageinbound \N +40 notification tool_monitor tool/monitor:subscribe \. @@ -33687,7 +34116,7 @@ COPY public.mdl_message_providers (id, name, component, capability) FROM stdin; -- Name: mdl_message_providers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_message_providers_id_seq', 38, true); +SELECT pg_catalog.setval('public.mdl_message_providers_id_seq', 40, true); -- @@ -33820,7 +34249,7 @@ SELECT pg_catalog.setval('public.mdl_mnet_application_id_seq', 2, true); -- COPY public.mdl_mnet_host (id, deleted, wwwroot, ip_address, name, public_key, public_key_expires, transport, portno, last_connect_time, last_log_id, force_theme, theme, applicationid, sslverification) FROM stdin; -1 0 http://dev.derekmaxson.com 172.30.2.144 0 0 0 0 0 0 \N 1 0 +1 0 http://dev.derekmaxson.com 172.30.2.17 0 0 0 0 0 0 \N 1 0 2 0 All Hosts 0 0 0 0 0 0 \N 1 0 \. @@ -34179,6 +34608,21 @@ COPY public.mdl_oauth2_issuer (id, timecreated, timemodified, usermodified, name SELECT pg_catalog.setval('public.mdl_oauth2_issuer_id_seq', 1, false); +-- +-- Data for Name: mdl_oauth2_refresh_token; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_oauth2_refresh_token (id, timecreated, timemodified, userid, issuerid, token, scopehash) FROM stdin; +\. + + +-- +-- Name: mdl_oauth2_refresh_token_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_oauth2_refresh_token_id_seq', 1, false); + + -- -- Data for Name: mdl_oauth2_system_account; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34224,6 +34668,66 @@ COPY public.mdl_page (id, course, name, intro, introformat, content, contentform SELECT pg_catalog.setval('public.mdl_page_id_seq', 1, false); +-- +-- Data for Name: mdl_paygw_paypal; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_paygw_paypal (id, paymentid, pp_orderid) FROM stdin; +\. + + +-- +-- Name: mdl_paygw_paypal_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_paygw_paypal_id_seq', 1, false); + + +-- +-- Data for Name: mdl_payment_accounts; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_payment_accounts (id, name, idnumber, contextid, enabled, archived, timecreated, timemodified) FROM stdin; +\. + + +-- +-- Name: mdl_payment_accounts_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_payment_accounts_id_seq', 1, false); + + +-- +-- Data for Name: mdl_payment_gateways; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_payment_gateways (id, accountid, gateway, enabled, config, timecreated, timemodified) FROM stdin; +\. + + +-- +-- Name: mdl_payment_gateways_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_payment_gateways_id_seq', 1, false); + + +-- +-- Data for Name: mdl_payments; Type: TABLE DATA; Schema: public; Owner: postgres +-- + +COPY public.mdl_payments (id, component, paymentarea, itemid, userid, amount, currency, accountid, gateway, timecreated, timemodified) FROM stdin; +\. + + +-- +-- Name: mdl_payments_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres +-- + +SELECT pg_catalog.setval('public.mdl_payments_id_seq', 1, false); + + -- -- Data for Name: mdl_portfolio_instance; Type: TABLE DATA; Schema: public; Owner: postgres -- @@ -34438,7 +34942,7 @@ SELECT pg_catalog.setval('public.mdl_qtype_ddmarker_id_seq', 1, false); -- Data for Name: mdl_qtype_essay_options; Type: TABLE DATA; Schema: public; Owner: postgres -- -COPY public.mdl_qtype_essay_options (id, questionid, responseformat, responserequired, responsefieldlines, attachments, attachmentsrequired, graderinfo, graderinfoformat, responsetemplate, responsetemplateformat, filetypeslist) FROM stdin; +COPY public.mdl_qtype_essay_options (id, questionid, responseformat, responserequired, responsefieldlines, attachments, attachmentsrequired, graderinfo, graderinfoformat, responsetemplate, responsetemplateformat, maxbytes, filetypeslist) FROM stdin; \. @@ -34873,7 +35377,7 @@ SELECT pg_catalog.setval('public.mdl_question_usages_id_seq', 1, false); -- Data for Name: mdl_quiz; Type: TABLE DATA; Schema: public; Owner: postgres -- -COPY public.mdl_quiz (id, course, name, intro, introformat, timeopen, timeclose, timelimit, overduehandling, graceperiod, preferredbehaviour, canredoquestions, attempts, attemptonlast, grademethod, decimalpoints, questiondecimalpoints, reviewattempt, reviewcorrectness, reviewmarks, reviewspecificfeedback, reviewgeneralfeedback, reviewrightanswer, reviewoverallfeedback, questionsperpage, navmethod, shuffleanswers, sumgrades, grade, timecreated, timemodified, password, subnet, browsersecurity, delay1, delay2, showuserpicture, showblocks, completionattemptsexhausted, completionpass, allowofflineattempts) FROM stdin; +COPY public.mdl_quiz (id, course, name, intro, introformat, timeopen, timeclose, timelimit, overduehandling, graceperiod, preferredbehaviour, canredoquestions, attempts, attemptonlast, grademethod, decimalpoints, questiondecimalpoints, reviewattempt, reviewcorrectness, reviewmarks, reviewspecificfeedback, reviewgeneralfeedback, reviewrightanswer, reviewoverallfeedback, questionsperpage, navmethod, shuffleanswers, sumgrades, grade, timecreated, timemodified, password, subnet, browsersecurity, delay1, delay2, showuserpicture, showblocks, completionattemptsexhausted, completionpass, completionminattempts, allowofflineattempts) FROM stdin; \. @@ -35141,14 +35645,14 @@ SELECT pg_catalog.setval('public.mdl_repository_instance_config_id_seq', 1, fals -- COPY public.mdl_repository_instances (id, name, typeid, userid, contextid, username, password, timecreated, timemodified, readonly) FROM stdin; -1 1 0 1 \N \N 1609808499 1609808499 0 -2 2 0 1 \N \N 1609808499 1609808499 0 -3 3 0 1 \N \N 1609808500 1609808500 0 -4 4 0 1 \N \N 1609808500 1609808500 0 -5 5 0 1 \N \N 1609808500 1609808500 0 -6 6 0 1 \N \N 1609808500 1609808500 0 -7 7 0 1 \N \N 1609808500 1609808500 0 -8 8 0 1 \N \N 1609808500 1609808500 0 +1 1 0 1 \N \N 1612889090 1612889090 0 +2 2 0 1 \N \N 1612889090 1612889090 0 +3 3 0 1 \N \N 1612889091 1612889091 0 +4 4 0 1 \N \N 1612889091 1612889091 0 +5 5 0 1 \N \N 1612889092 1612889092 0 +6 6 0 1 \N \N 1612889092 1612889092 0 +7 7 0 1 \N \N 1612889092 1612889092 0 +8 8 0 1 \N \N 1612889092 1612889092 0 \. @@ -35351,1424 +35855,1439 @@ SELECT pg_catalog.setval('public.mdl_role_assignments_id_seq', 1, false); -- COPY public.mdl_role_capabilities (id, contextid, roleid, capability, permission, timemodified, modifierid) FROM stdin; -1 1 1 moodle/site:configview 1 1609808466 0 -2 1 2 moodle/site:configview 1 1609808466 0 -3 1 1 moodle/site:readallmessages 1 1609808466 0 -4 1 3 moodle/site:readallmessages 1 1609808466 0 -5 1 1 moodle/site:manageallmessaging 1 1609808466 0 -6 1 1 moodle/site:deleteanymessage 1 1609808466 0 -7 1 1 moodle/site:sendmessage 1 1609808466 0 -8 1 7 moodle/site:sendmessage 1 1609808466 0 -9 1 7 moodle/site:deleteownmessage 1 1609808466 0 -10 1 1 moodle/site:approvecourse 1 1609808466 0 -11 1 3 moodle/backup:backupcourse 1 1609808466 0 -12 1 1 moodle/backup:backupcourse 1 1609808466 0 -13 1 3 moodle/backup:backupsection 1 1609808466 0 -14 1 1 moodle/backup:backupsection 1 1609808466 0 -15 1 3 moodle/backup:backupactivity 1 1609808466 0 -16 1 1 moodle/backup:backupactivity 1 1609808466 0 -17 1 3 moodle/backup:backuptargetimport 1 1609808466 0 -18 1 1 moodle/backup:backuptargetimport 1 1609808466 0 -19 1 3 moodle/backup:downloadfile 1 1609808466 0 -20 1 1 moodle/backup:downloadfile 1 1609808466 0 -21 1 3 moodle/backup:configure 1 1609808466 0 -22 1 1 moodle/backup:configure 1 1609808466 0 -23 1 1 moodle/backup:userinfo 1 1609808466 0 -24 1 1 moodle/backup:anonymise 1 1609808466 0 -25 1 3 moodle/restore:restorecourse 1 1609808466 0 -26 1 1 moodle/restore:restorecourse 1 1609808466 0 -27 1 3 moodle/restore:restoresection 1 1609808466 0 -28 1 1 moodle/restore:restoresection 1 1609808466 0 -29 1 3 moodle/restore:restoreactivity 1 1609808466 0 -30 1 1 moodle/restore:restoreactivity 1 1609808466 0 -31 1 3 moodle/restore:viewautomatedfilearea 1 1609808466 0 -32 1 1 moodle/restore:viewautomatedfilearea 1 1609808466 0 -33 1 3 moodle/restore:restoretargetimport 1 1609808466 0 -34 1 1 moodle/restore:restoretargetimport 1 1609808466 0 -35 1 3 moodle/restore:uploadfile 1 1609808466 0 -36 1 1 moodle/restore:uploadfile 1 1609808466 0 -37 1 3 moodle/restore:configure 1 1609808466 0 -38 1 1 moodle/restore:configure 1 1609808466 0 -39 1 2 moodle/restore:rolldates 1 1609808466 0 -40 1 1 moodle/restore:rolldates 1 1609808466 0 -41 1 1 moodle/restore:userinfo 1 1609808466 0 -42 1 1 moodle/restore:createuser 1 1609808466 0 -43 1 3 moodle/site:manageblocks 1 1609808466 0 -44 1 1 moodle/site:manageblocks 1 1609808466 0 -45 1 3 moodle/site:accessallgroups 1 1609808466 0 -46 1 1 moodle/site:accessallgroups 1 1609808466 0 -47 1 1 moodle/site:viewanonymousevents 1 1609808466 0 -48 1 4 moodle/site:viewfullnames 1 1609808466 0 -49 1 3 moodle/site:viewfullnames 1 1609808466 0 -50 1 1 moodle/site:viewfullnames 1 1609808466 0 -51 1 4 moodle/site:viewuseridentity 1 1609808466 0 -52 1 3 moodle/site:viewuseridentity 1 1609808466 0 -53 1 1 moodle/site:viewuseridentity 1 1609808466 0 -54 1 4 moodle/site:viewreports 1 1609808466 0 -55 1 3 moodle/site:viewreports 1 1609808466 0 -56 1 1 moodle/site:viewreports 1 1609808466 0 -57 1 3 moodle/site:trustcontent 1 1609808466 0 -58 1 1 moodle/site:trustcontent 1 1609808466 0 -59 1 1 moodle/site:uploadusers 1 1609808466 0 -60 1 3 moodle/filter:manage 1 1609808466 0 -61 1 1 moodle/filter:manage 1 1609808466 0 -62 1 1 moodle/user:create 1 1609808466 0 -63 1 1 moodle/user:delete 1 1609808466 0 -64 1 1 moodle/user:update 1 1609808466 0 -65 1 6 moodle/user:viewdetails 1 1609808466 0 -66 1 5 moodle/user:viewdetails 1 1609808466 0 -67 1 4 moodle/user:viewdetails 1 1609808466 0 -68 1 3 moodle/user:viewdetails 1 1609808466 0 -69 1 1 moodle/user:viewdetails 1 1609808467 0 -70 1 1 moodle/user:viewalldetails 1 1609808467 0 -71 1 1 moodle/user:viewlastip 1 1609808467 0 -72 1 4 moodle/user:viewhiddendetails 1 1609808467 0 -73 1 3 moodle/user:viewhiddendetails 1 1609808467 0 -74 1 1 moodle/user:viewhiddendetails 1 1609808467 0 -75 1 1 moodle/user:loginas 1 1609808467 0 -76 1 1 moodle/user:managesyspages 1 1609808467 0 -77 1 7 moodle/user:manageownblocks 1 1609808467 0 -78 1 7 moodle/user:manageownfiles 1 1609808467 0 -79 1 1 moodle/my:configsyspages 1 1609808467 0 -80 1 3 moodle/role:assign 1 1609808467 0 -81 1 1 moodle/role:assign 1 1609808467 0 -82 1 4 moodle/role:review 1 1609808467 0 -83 1 3 moodle/role:review 1 1609808467 0 -84 1 1 moodle/role:review 1 1609808467 0 -85 1 1 moodle/role:override 1 1609808467 0 -86 1 3 moodle/role:safeoverride 1 1609808467 0 -87 1 1 moodle/role:manage 1 1609808467 0 -88 1 3 moodle/role:switchroles 1 1609808467 0 -89 1 1 moodle/role:switchroles 1 1609808467 0 -90 1 1 moodle/category:manage 1 1609808467 0 -91 1 6 moodle/category:viewcourselist 1 1609808467 0 -92 1 7 moodle/category:viewcourselist 1 1609808467 0 -93 1 2 moodle/category:viewhiddencategories 1 1609808467 0 -94 1 1 moodle/category:viewhiddencategories 1 1609808467 0 -95 1 1 moodle/cohort:manage 1 1609808467 0 -96 1 1 moodle/cohort:assign 1 1609808467 0 -97 1 3 moodle/cohort:view 1 1609808467 0 -98 1 1 moodle/cohort:view 1 1609808467 0 -99 1 2 moodle/course:create 1 1609808467 0 -100 1 1 moodle/course:create 1 1609808467 0 -101 1 3 moodle/course:creategroupconversations 1 1609808467 0 -102 1 1 moodle/course:creategroupconversations 1 1609808467 0 -103 1 1 moodle/course:delete 1 1609808467 0 -104 1 3 moodle/course:update 1 1609808467 0 -105 1 1 moodle/course:update 1 1609808467 0 -106 1 1 moodle/course:view 1 1609808467 0 -107 1 3 moodle/course:enrolreview 1 1609808467 0 -108 1 1 moodle/course:enrolreview 1 1609808467 0 -109 1 3 moodle/course:enrolconfig 1 1609808467 0 -110 1 1 moodle/course:enrolconfig 1 1609808467 0 -111 1 3 moodle/course:reviewotherusers 1 1609808467 0 -112 1 1 moodle/course:reviewotherusers 1 1609808467 0 -113 1 4 moodle/course:bulkmessaging 1 1609808467 0 -114 1 3 moodle/course:bulkmessaging 1 1609808467 0 -115 1 1 moodle/course:bulkmessaging 1 1609808467 0 -116 1 4 moodle/course:viewhiddenuserfields 1 1609808467 0 -117 1 3 moodle/course:viewhiddenuserfields 1 1609808467 0 -118 1 1 moodle/course:viewhiddenuserfields 1 1609808467 0 -119 1 2 moodle/course:viewhiddencourses 1 1609808467 0 -120 1 4 moodle/course:viewhiddencourses 1 1609808467 0 -121 1 3 moodle/course:viewhiddencourses 1 1609808467 0 -122 1 1 moodle/course:viewhiddencourses 1 1609808467 0 -123 1 3 moodle/course:visibility 1 1609808467 0 -124 1 1 moodle/course:visibility 1 1609808467 0 -125 1 3 moodle/course:managefiles 1 1609808467 0 -126 1 1 moodle/course:managefiles 1 1609808467 0 -127 1 1 moodle/course:ignoreavailabilityrestrictions 1 1609808467 0 -128 1 2 moodle/course:ignoreavailabilityrestrictions 1 1609808467 0 -129 1 3 moodle/course:ignoreavailabilityrestrictions 1 1609808467 0 -130 1 4 moodle/course:ignoreavailabilityrestrictions 1 1609808467 0 -131 1 3 moodle/course:manageactivities 1 1609808467 0 -132 1 1 moodle/course:manageactivities 1 1609808467 0 -133 1 3 moodle/course:activityvisibility 1 1609808467 0 -134 1 1 moodle/course:activityvisibility 1 1609808467 0 -135 1 4 moodle/course:viewhiddenactivities 1 1609808467 0 -136 1 3 moodle/course:viewhiddenactivities 1 1609808467 0 -137 1 1 moodle/course:viewhiddenactivities 1 1609808467 0 -138 1 5 moodle/course:viewparticipants 1 1609808467 0 -139 1 4 moodle/course:viewparticipants 1 1609808467 0 -140 1 3 moodle/course:viewparticipants 1 1609808467 0 -141 1 1 moodle/course:viewparticipants 1 1609808467 0 -142 1 3 moodle/course:changefullname 1 1609808467 0 -143 1 1 moodle/course:changefullname 1 1609808467 0 -144 1 3 moodle/course:changeshortname 1 1609808467 0 -145 1 1 moodle/course:changeshortname 1 1609808467 0 -146 1 1 moodle/course:changelockedcustomfields 1 1609808467 0 -147 1 3 moodle/course:renameroles 1 1609808467 0 -148 1 1 moodle/course:renameroles 1 1609808467 0 -149 1 3 moodle/course:changeidnumber 1 1609808467 0 -150 1 1 moodle/course:changeidnumber 1 1609808467 0 -151 1 3 moodle/course:changecategory 1 1609808467 0 -152 1 1 moodle/course:changecategory 1 1609808467 0 -153 1 3 moodle/course:changesummary 1 1609808467 0 -154 1 1 moodle/course:changesummary 1 1609808467 0 -155 1 3 moodle/course:setforcedlanguage 1 1609808467 0 -156 1 1 moodle/course:setforcedlanguage 1 1609808467 0 -157 1 1 moodle/site:viewparticipants 1 1609808467 0 -158 1 5 moodle/course:isincompletionreports 1 1609808467 0 -159 1 5 moodle/course:viewscales 1 1609808467 0 -160 1 4 moodle/course:viewscales 1 1609808467 0 -161 1 3 moodle/course:viewscales 1 1609808467 0 -162 1 1 moodle/course:viewscales 1 1609808467 0 -163 1 3 moodle/course:managescales 1 1609808467 0 -164 1 1 moodle/course:managescales 1 1609808467 0 -165 1 3 moodle/course:managegroups 1 1609808467 0 -166 1 1 moodle/course:managegroups 1 1609808467 0 -167 1 3 moodle/course:reset 1 1609808467 0 -168 1 1 moodle/course:reset 1 1609808467 0 -169 1 3 moodle/course:viewsuspendedusers 1 1609808467 0 -170 1 1 moodle/course:viewsuspendedusers 1 1609808467 0 -171 1 1 moodle/course:tag 1 1609808467 0 -172 1 3 moodle/course:tag 1 1609808467 0 -173 1 6 moodle/blog:view 1 1609808467 0 -174 1 7 moodle/blog:view 1 1609808467 0 -175 1 5 moodle/blog:view 1 1609808467 0 -176 1 4 moodle/blog:view 1 1609808467 0 -177 1 3 moodle/blog:view 1 1609808467 0 -178 1 1 moodle/blog:view 1 1609808468 0 -179 1 6 moodle/blog:search 1 1609808468 0 -180 1 7 moodle/blog:search 1 1609808468 0 -181 1 5 moodle/blog:search 1 1609808468 0 -182 1 4 moodle/blog:search 1 1609808468 0 -183 1 3 moodle/blog:search 1 1609808468 0 -184 1 1 moodle/blog:search 1 1609808468 0 -185 1 1 moodle/blog:viewdrafts 1 1609808468 0 -186 1 7 moodle/blog:create 1 1609808468 0 -187 1 1 moodle/blog:create 1 1609808468 0 -188 1 4 moodle/blog:manageentries 1 1609808468 0 -189 1 3 moodle/blog:manageentries 1 1609808468 0 -190 1 1 moodle/blog:manageentries 1 1609808468 0 -191 1 5 moodle/blog:manageexternal 1 1609808468 0 -192 1 7 moodle/blog:manageexternal 1 1609808468 0 -193 1 4 moodle/blog:manageexternal 1 1609808468 0 -194 1 3 moodle/blog:manageexternal 1 1609808468 0 -195 1 1 moodle/blog:manageexternal 1 1609808468 0 -196 1 7 moodle/calendar:manageownentries 1 1609808468 0 -197 1 1 moodle/calendar:manageownentries 1 1609808468 0 -198 1 4 moodle/calendar:managegroupentries 1 1609808468 0 -199 1 3 moodle/calendar:managegroupentries 1 1609808468 0 -200 1 1 moodle/calendar:managegroupentries 1 1609808468 0 -201 1 4 moodle/calendar:manageentries 1 1609808468 0 -202 1 3 moodle/calendar:manageentries 1 1609808468 0 -203 1 1 moodle/calendar:manageentries 1 1609808468 0 -204 1 1 moodle/user:editprofile 1 1609808468 0 -205 1 6 moodle/user:editownprofile -1000 1609808468 0 -206 1 7 moodle/user:editownprofile 1 1609808468 0 -207 1 1 moodle/user:editownprofile 1 1609808468 0 -208 1 6 moodle/user:changeownpassword -1000 1609808468 0 -209 1 7 moodle/user:changeownpassword 1 1609808468 0 -210 1 1 moodle/user:changeownpassword 1 1609808468 0 -211 1 5 moodle/user:readuserposts 1 1609808468 0 -212 1 4 moodle/user:readuserposts 1 1609808468 0 -213 1 3 moodle/user:readuserposts 1 1609808468 0 -214 1 1 moodle/user:readuserposts 1 1609808468 0 -215 1 5 moodle/user:readuserblogs 1 1609808468 0 -216 1 4 moodle/user:readuserblogs 1 1609808468 0 -217 1 3 moodle/user:readuserblogs 1 1609808468 0 -218 1 1 moodle/user:readuserblogs 1 1609808468 0 -219 1 1 moodle/user:editmessageprofile 1 1609808468 0 -220 1 6 moodle/user:editownmessageprofile -1000 1609808468 0 -221 1 7 moodle/user:editownmessageprofile 1 1609808468 0 -222 1 1 moodle/user:editownmessageprofile 1 1609808468 0 -223 1 3 moodle/question:managecategory 1 1609808468 0 -224 1 1 moodle/question:managecategory 1 1609808468 0 -225 1 3 moodle/question:add 1 1609808468 0 -226 1 1 moodle/question:add 1 1609808468 0 -227 1 3 moodle/question:editmine 1 1609808468 0 -228 1 1 moodle/question:editmine 1 1609808468 0 -229 1 3 moodle/question:editall 1 1609808468 0 -230 1 1 moodle/question:editall 1 1609808468 0 -231 1 3 moodle/question:viewmine 1 1609808468 0 -232 1 1 moodle/question:viewmine 1 1609808468 0 -233 1 3 moodle/question:viewall 1 1609808468 0 -234 1 1 moodle/question:viewall 1 1609808468 0 -235 1 3 moodle/question:usemine 1 1609808468 0 -236 1 1 moodle/question:usemine 1 1609808468 0 -237 1 3 moodle/question:useall 1 1609808468 0 -238 1 1 moodle/question:useall 1 1609808468 0 -239 1 3 moodle/question:movemine 1 1609808468 0 -240 1 1 moodle/question:movemine 1 1609808468 0 -241 1 3 moodle/question:moveall 1 1609808468 0 -242 1 1 moodle/question:moveall 1 1609808468 0 -243 1 1 moodle/question:config 1 1609808468 0 -244 1 5 moodle/question:flag 1 1609808468 0 -245 1 4 moodle/question:flag 1 1609808468 0 -246 1 3 moodle/question:flag 1 1609808468 0 -247 1 1 moodle/question:flag 1 1609808468 0 -248 1 3 moodle/question:tagmine 1 1609808468 0 -249 1 1 moodle/question:tagmine 1 1609808468 0 -250 1 3 moodle/question:tagall 1 1609808468 0 -251 1 1 moodle/question:tagall 1 1609808468 0 -252 1 4 moodle/site:doclinks 1 1609808468 0 -253 1 3 moodle/site:doclinks 1 1609808468 0 -254 1 1 moodle/site:doclinks 1 1609808468 0 -255 1 3 moodle/course:sectionvisibility 1 1609808468 0 -256 1 1 moodle/course:sectionvisibility 1 1609808468 0 -257 1 3 moodle/course:useremail 1 1609808468 0 -258 1 1 moodle/course:useremail 1 1609808468 0 -259 1 3 moodle/course:viewhiddensections 1 1609808468 0 -260 1 1 moodle/course:viewhiddensections 1 1609808468 0 -261 1 3 moodle/course:setcurrentsection 1 1609808468 0 -262 1 1 moodle/course:setcurrentsection 1 1609808468 0 -263 1 3 moodle/course:movesections 1 1609808468 0 -264 1 1 moodle/course:movesections 1 1609808468 0 -265 1 4 moodle/grade:viewall 1 1609808468 0 -266 1 3 moodle/grade:viewall 1 1609808468 0 -267 1 1 moodle/grade:viewall 1 1609808468 0 -268 1 5 moodle/grade:view 1 1609808468 0 -269 1 4 moodle/grade:viewhidden 1 1609808468 0 -270 1 3 moodle/grade:viewhidden 1 1609808468 0 -271 1 1 moodle/grade:viewhidden 1 1609808468 0 -272 1 3 moodle/grade:import 1 1609808468 0 -273 1 1 moodle/grade:import 1 1609808468 0 -274 1 4 moodle/grade:export 1 1609808468 0 -275 1 3 moodle/grade:export 1 1609808468 0 -276 1 1 moodle/grade:export 1 1609808468 0 -277 1 3 moodle/grade:manage 1 1609808468 0 -278 1 1 moodle/grade:manage 1 1609808468 0 -279 1 3 moodle/grade:edit 1 1609808468 0 -280 1 1 moodle/grade:edit 1 1609808468 0 -281 1 3 moodle/grade:managegradingforms 1 1609808468 0 -282 1 1 moodle/grade:managegradingforms 1 1609808468 0 -283 1 1 moodle/grade:sharegradingforms 1 1609808468 0 -284 1 1 moodle/grade:managesharedforms 1 1609808468 0 -285 1 3 moodle/grade:manageoutcomes 1 1609808468 0 -286 1 1 moodle/grade:manageoutcomes 1 1609808469 0 -287 1 3 moodle/grade:manageletters 1 1609808469 0 -288 1 1 moodle/grade:manageletters 1 1609808469 0 -289 1 3 moodle/grade:hide 1 1609808469 0 -290 1 1 moodle/grade:hide 1 1609808469 0 -291 1 3 moodle/grade:lock 1 1609808469 0 -292 1 1 moodle/grade:lock 1 1609808469 0 -293 1 3 moodle/grade:unlock 1 1609808469 0 -294 1 1 moodle/grade:unlock 1 1609808469 0 -295 1 7 moodle/my:manageblocks 1 1609808469 0 -296 1 4 moodle/notes:view 1 1609808469 0 -297 1 3 moodle/notes:view 1 1609808469 0 -298 1 1 moodle/notes:view 1 1609808469 0 -299 1 4 moodle/notes:manage 1 1609808469 0 -300 1 3 moodle/notes:manage 1 1609808469 0 -301 1 1 moodle/notes:manage 1 1609808469 0 -302 1 1 moodle/tag:manage 1 1609808469 0 -303 1 1 moodle/tag:edit 1 1609808469 0 -304 1 7 moodle/tag:flag 1 1609808469 0 -305 1 4 moodle/tag:editblocks 1 1609808469 0 -306 1 3 moodle/tag:editblocks 1 1609808469 0 -307 1 1 moodle/tag:editblocks 1 1609808469 0 -308 1 6 moodle/block:view 1 1609808469 0 -309 1 7 moodle/block:view 1 1609808469 0 -310 1 5 moodle/block:view 1 1609808469 0 -311 1 4 moodle/block:view 1 1609808469 0 -312 1 3 moodle/block:view 1 1609808469 0 -313 1 3 moodle/block:edit 1 1609808469 0 -314 1 1 moodle/block:edit 1 1609808469 0 -315 1 7 moodle/portfolio:export 1 1609808469 0 -316 1 5 moodle/portfolio:export 1 1609808469 0 -317 1 4 moodle/portfolio:export 1 1609808469 0 -318 1 3 moodle/portfolio:export 1 1609808469 0 -319 1 8 moodle/comment:view 1 1609808469 0 -320 1 6 moodle/comment:view 1 1609808469 0 -321 1 7 moodle/comment:view 1 1609808469 0 -322 1 5 moodle/comment:view 1 1609808469 0 -323 1 4 moodle/comment:view 1 1609808469 0 -324 1 3 moodle/comment:view 1 1609808469 0 -325 1 1 moodle/comment:view 1 1609808469 0 -326 1 7 moodle/comment:post 1 1609808469 0 -327 1 5 moodle/comment:post 1 1609808469 0 -328 1 4 moodle/comment:post 1 1609808469 0 -329 1 3 moodle/comment:post 1 1609808469 0 -330 1 1 moodle/comment:post 1 1609808469 0 -331 1 3 moodle/comment:delete 1 1609808469 0 -332 1 1 moodle/comment:delete 1 1609808469 0 -333 1 1 moodle/webservice:createtoken 1 1609808469 0 -334 1 7 moodle/webservice:createmobiletoken 1 1609808469 0 -335 1 7 moodle/rating:view 1 1609808469 0 -336 1 5 moodle/rating:view 1 1609808469 0 -337 1 4 moodle/rating:view 1 1609808469 0 -338 1 3 moodle/rating:view 1 1609808469 0 -339 1 1 moodle/rating:view 1 1609808469 0 -340 1 7 moodle/rating:viewany 1 1609808469 0 -341 1 5 moodle/rating:viewany 1 1609808469 0 -342 1 4 moodle/rating:viewany 1 1609808469 0 -343 1 3 moodle/rating:viewany 1 1609808469 0 -344 1 1 moodle/rating:viewany 1 1609808469 0 -345 1 7 moodle/rating:viewall 1 1609808469 0 -346 1 5 moodle/rating:viewall 1 1609808469 0 -347 1 4 moodle/rating:viewall 1 1609808469 0 -348 1 3 moodle/rating:viewall 1 1609808469 0 -349 1 1 moodle/rating:viewall 1 1609808469 0 -350 1 7 moodle/rating:rate 1 1609808469 0 -351 1 5 moodle/rating:rate 1 1609808469 0 -352 1 4 moodle/rating:rate 1 1609808469 0 -353 1 3 moodle/rating:rate 1 1609808469 0 -354 1 1 moodle/rating:rate 1 1609808469 0 -355 1 4 moodle/course:markcomplete 1 1609808469 0 -356 1 3 moodle/course:markcomplete 1 1609808469 0 -357 1 1 moodle/course:markcomplete 1 1609808469 0 -358 1 4 moodle/course:overridecompletion 1 1609808469 0 -359 1 3 moodle/course:overridecompletion 1 1609808469 0 -360 1 1 moodle/course:overridecompletion 1 1609808469 0 -361 1 1 moodle/badges:manageglobalsettings 1 1609808469 0 -362 1 7 moodle/badges:viewbadges 1 1609808469 0 -363 1 7 moodle/badges:manageownbadges 1 1609808469 0 -364 1 7 moodle/badges:viewotherbadges 1 1609808469 0 -365 1 7 moodle/badges:earnbadge 1 1609808469 0 -366 1 1 moodle/badges:createbadge 1 1609808469 0 -367 1 3 moodle/badges:createbadge 1 1609808469 0 -368 1 1 moodle/badges:deletebadge 1 1609808469 0 -369 1 3 moodle/badges:deletebadge 1 1609808469 0 -370 1 1 moodle/badges:configuredetails 1 1609808469 0 -371 1 3 moodle/badges:configuredetails 1 1609808469 0 -372 1 1 moodle/badges:configurecriteria 1 1609808469 0 -373 1 3 moodle/badges:configurecriteria 1 1609808469 0 -374 1 1 moodle/badges:configuremessages 1 1609808469 0 -375 1 3 moodle/badges:configuremessages 1 1609808469 0 -376 1 1 moodle/badges:awardbadge 1 1609808469 0 -377 1 4 moodle/badges:awardbadge 1 1609808469 0 -378 1 3 moodle/badges:awardbadge 1 1609808469 0 -379 1 1 moodle/badges:revokebadge 1 1609808469 0 -380 1 4 moodle/badges:revokebadge 1 1609808469 0 -381 1 3 moodle/badges:revokebadge 1 1609808469 0 -382 1 1 moodle/badges:viewawarded 1 1609808469 0 -383 1 4 moodle/badges:viewawarded 1 1609808469 0 -384 1 3 moodle/badges:viewawarded 1 1609808469 0 -385 1 6 moodle/search:query 1 1609808469 0 -386 1 7 moodle/search:query 1 1609808469 0 -387 1 5 moodle/search:query 1 1609808469 0 -388 1 4 moodle/search:query 1 1609808469 0 -389 1 3 moodle/search:query 1 1609808469 0 -390 1 1 moodle/search:query 1 1609808469 0 -391 1 1 moodle/competency:competencymanage 1 1609808469 0 -392 1 7 moodle/competency:competencyview 1 1609808469 0 -393 1 3 moodle/competency:competencygrade 1 1609808469 0 -394 1 4 moodle/competency:competencygrade 1 1609808470 0 -395 1 1 moodle/competency:competencygrade 1 1609808470 0 -396 1 3 moodle/competency:coursecompetencymanage 1 1609808470 0 -397 1 1 moodle/competency:coursecompetencymanage 1 1609808470 0 -398 1 1 moodle/competency:coursecompetencyconfigure 1 1609808470 0 -399 1 5 moodle/competency:coursecompetencygradable 1 1609808470 0 -400 1 7 moodle/competency:coursecompetencyview 1 1609808470 0 -401 1 1 moodle/competency:planmanage 1 1609808470 0 -402 1 1 moodle/competency:planmanagedraft 1 1609808470 0 -403 1 1 moodle/competency:planview 1 1609808470 0 -404 1 1 moodle/competency:planviewdraft 1 1609808470 0 -405 1 7 moodle/competency:planviewown 1 1609808470 0 -406 1 1 moodle/competency:planrequestreview 1 1609808470 0 -407 1 7 moodle/competency:planrequestreviewown 1 1609808470 0 -408 1 1 moodle/competency:planreview 1 1609808470 0 -409 1 1 moodle/competency:plancomment 1 1609808470 0 -410 1 7 moodle/competency:plancommentown 1 1609808470 0 -411 1 1 moodle/competency:usercompetencyview 1 1609808470 0 -412 1 3 moodle/competency:usercompetencyview 1 1609808470 0 -413 1 4 moodle/competency:usercompetencyview 1 1609808470 0 -414 1 1 moodle/competency:usercompetencyrequestreview 1 1609808470 0 -415 1 7 moodle/competency:usercompetencyrequestreviewown 1 1609808470 0 -416 1 1 moodle/competency:usercompetencyreview 1 1609808470 0 -417 1 1 moodle/competency:usercompetencycomment 1 1609808470 0 -418 1 7 moodle/competency:usercompetencycommentown 1 1609808470 0 -419 1 1 moodle/competency:templatemanage 1 1609808470 0 -420 1 4 moodle/analytics:listinsights 1 1609808470 0 -421 1 3 moodle/analytics:listinsights 1 1609808470 0 -422 1 1 moodle/analytics:listinsights 1 1609808470 0 -423 1 1 moodle/analytics:managemodels 1 1609808470 0 -424 1 1 moodle/competency:templateview 1 1609808470 0 -425 1 1 moodle/competency:userevidencemanage 1 1609808470 0 -426 1 7 moodle/competency:userevidencemanageown 1 1609808470 0 -427 1 1 moodle/competency:userevidenceview 1 1609808470 0 -428 1 4 moodle/site:messageanyuser 1 1609808470 0 -429 1 3 moodle/site:messageanyuser 1 1609808470 0 -430 1 1 moodle/site:messageanyuser 1 1609808470 0 -431 1 7 moodle/course:togglecompletion 1 1609808470 0 -432 1 7 moodle/analytics:listowninsights 1 1609808470 0 -433 1 3 moodle/h5p:setdisplayoptions 1 1609808470 0 -434 1 1 moodle/h5p:deploy 1 1609808470 0 -435 1 3 moodle/h5p:deploy 1 1609808470 0 -436 1 1 moodle/h5p:updatelibraries 1 1609808470 0 -437 1 1 moodle/course:recommendactivity 1 1609808470 0 -438 1 1 moodle/contentbank:access 1 1609808470 0 -439 1 2 moodle/contentbank:access 1 1609808470 0 -440 1 3 moodle/contentbank:access 1 1609808470 0 -441 1 1 moodle/contentbank:upload 1 1609808470 0 -442 1 2 moodle/contentbank:upload 1 1609808470 0 -443 1 3 moodle/contentbank:upload 1 1609808470 0 -444 1 1 moodle/contentbank:deleteanycontent 1 1609808470 0 -445 1 2 moodle/contentbank:deleteanycontent 1 1609808470 0 -446 1 7 moodle/contentbank:deleteowncontent 1 1609808470 0 -447 1 1 moodle/contentbank:manageanycontent 1 1609808470 0 -448 1 2 moodle/contentbank:manageanycontent 1 1609808470 0 -449 1 1 moodle/contentbank:manageowncontent 1 1609808470 0 -450 1 2 moodle/contentbank:manageowncontent 1 1609808470 0 -451 1 3 moodle/contentbank:manageowncontent 1 1609808470 0 -452 1 1 moodle/contentbank:useeditor 1 1609808470 0 -453 1 2 moodle/contentbank:useeditor 1 1609808470 0 -454 1 3 moodle/contentbank:useeditor 1 1609808470 0 -455 1 6 mod/assign:view 1 1609808480 0 -456 1 5 mod/assign:view 1 1609808480 0 -457 1 4 mod/assign:view 1 1609808480 0 -458 1 3 mod/assign:view 1 1609808480 0 -459 1 1 mod/assign:view 1 1609808480 0 -460 1 5 mod/assign:submit 1 1609808480 0 -461 1 4 mod/assign:grade 1 1609808480 0 -462 1 3 mod/assign:grade 1 1609808480 0 -463 1 1 mod/assign:grade 1 1609808480 0 -464 1 4 mod/assign:exportownsubmission 1 1609808480 0 -465 1 3 mod/assign:exportownsubmission 1 1609808480 0 -466 1 1 mod/assign:exportownsubmission 1 1609808480 0 -467 1 5 mod/assign:exportownsubmission 1 1609808480 0 -468 1 1 mod/assign:addinstance 1 1609808480 0 -469 1 3 mod/assign:addinstance 1 1609808480 0 -470 1 4 mod/assign:grantextension 1 1609808480 0 -471 1 3 mod/assign:grantextension 1 1609808480 0 -472 1 1 mod/assign:grantextension 1 1609808480 0 -473 1 3 mod/assign:revealidentities 1 1609808480 0 -474 1 1 mod/assign:revealidentities 1 1609808480 0 -475 1 1 mod/assign:reviewgrades 1 1609808480 0 -476 1 3 mod/assign:reviewgrades 1 1609808480 0 -477 1 1 mod/assign:releasegrades 1 1609808480 0 -478 1 3 mod/assign:releasegrades 1 1609808480 0 -479 1 1 mod/assign:managegrades 1 1609808480 0 -480 1 3 mod/assign:managegrades 1 1609808480 0 -481 1 1 mod/assign:manageallocations 1 1609808480 0 -482 1 3 mod/assign:manageallocations 1 1609808480 0 -483 1 3 mod/assign:viewgrades 1 1609808480 0 -484 1 1 mod/assign:viewgrades 1 1609808480 0 -485 1 4 mod/assign:viewgrades 1 1609808480 0 -486 1 1 mod/assign:viewblinddetails 1 1609808480 0 -487 1 4 mod/assign:receivegradernotifications 1 1609808480 0 -488 1 3 mod/assign:receivegradernotifications 1 1609808480 0 -489 1 1 mod/assign:receivegradernotifications 1 1609808480 0 -490 1 3 mod/assign:manageoverrides 1 1609808480 0 -491 1 1 mod/assign:manageoverrides 1 1609808480 0 -492 1 4 mod/assign:showhiddengrader 1 1609808480 0 -493 1 3 mod/assign:showhiddengrader 1 1609808480 0 -494 1 1 mod/assign:showhiddengrader 1 1609808480 0 -495 1 6 mod/assignment:view 1 1609808481 0 -496 1 5 mod/assignment:view 1 1609808481 0 -497 1 4 mod/assignment:view 1 1609808481 0 -498 1 3 mod/assignment:view 1 1609808481 0 -499 1 1 mod/assignment:view 1 1609808481 0 -500 1 1 mod/assignment:addinstance 1 1609808481 0 -501 1 3 mod/assignment:addinstance 1 1609808481 0 -502 1 5 mod/assignment:submit 1 1609808481 0 -503 1 4 mod/assignment:grade 1 1609808481 0 -504 1 3 mod/assignment:grade 1 1609808481 0 -505 1 1 mod/assignment:grade 1 1609808481 0 -506 1 4 mod/assignment:exportownsubmission 1 1609808481 0 -507 1 3 mod/assignment:exportownsubmission 1 1609808481 0 -508 1 1 mod/assignment:exportownsubmission 1 1609808481 0 -509 1 5 mod/assignment:exportownsubmission 1 1609808481 0 -510 1 1 mod/book:addinstance 1 1609808481 0 -511 1 3 mod/book:addinstance 1 1609808481 0 -512 1 6 mod/book:read 1 1609808481 0 -513 1 8 mod/book:read 1 1609808481 0 -514 1 5 mod/book:read 1 1609808481 0 -515 1 4 mod/book:read 1 1609808481 0 -516 1 3 mod/book:read 1 1609808481 0 -517 1 1 mod/book:read 1 1609808481 0 -518 1 4 mod/book:viewhiddenchapters 1 1609808481 0 -519 1 3 mod/book:viewhiddenchapters 1 1609808481 0 -520 1 1 mod/book:viewhiddenchapters 1 1609808481 0 -521 1 3 mod/book:edit 1 1609808481 0 -522 1 1 mod/book:edit 1 1609808481 0 -523 1 1 mod/chat:addinstance 1 1609808481 0 -524 1 3 mod/chat:addinstance 1 1609808481 0 -525 1 5 mod/chat:chat 1 1609808481 0 -526 1 4 mod/chat:chat 1 1609808481 0 -527 1 3 mod/chat:chat 1 1609808481 0 -528 1 1 mod/chat:chat 1 1609808481 0 -529 1 5 mod/chat:readlog 1 1609808481 0 -530 1 4 mod/chat:readlog 1 1609808481 0 -531 1 3 mod/chat:readlog 1 1609808481 0 -532 1 1 mod/chat:readlog 1 1609808481 0 -533 1 4 mod/chat:deletelog 1 1609808481 0 -534 1 3 mod/chat:deletelog 1 1609808481 0 -535 1 1 mod/chat:deletelog 1 1609808481 0 -536 1 4 mod/chat:exportparticipatedsession 1 1609808481 0 -537 1 3 mod/chat:exportparticipatedsession 1 1609808481 0 -538 1 1 mod/chat:exportparticipatedsession 1 1609808481 0 -539 1 4 mod/chat:exportsession 1 1609808481 0 -540 1 3 mod/chat:exportsession 1 1609808481 0 -541 1 1 mod/chat:exportsession 1 1609808481 0 -542 1 7 mod/chat:view 1 1609808481 0 -543 1 6 mod/chat:view 1 1609808481 0 -544 1 1 mod/choice:addinstance 1 1609808481 0 -545 1 3 mod/choice:addinstance 1 1609808481 0 -546 1 5 mod/choice:choose 1 1609808482 0 -547 1 4 mod/choice:choose 1 1609808482 0 -548 1 3 mod/choice:choose 1 1609808482 0 -549 1 4 mod/choice:readresponses 1 1609808482 0 -550 1 3 mod/choice:readresponses 1 1609808482 0 -551 1 1 mod/choice:readresponses 1 1609808482 0 -552 1 4 mod/choice:deleteresponses 1 1609808482 0 -553 1 3 mod/choice:deleteresponses 1 1609808482 0 -554 1 1 mod/choice:deleteresponses 1 1609808482 0 -555 1 4 mod/choice:downloadresponses 1 1609808482 0 -556 1 3 mod/choice:downloadresponses 1 1609808482 0 -557 1 1 mod/choice:downloadresponses 1 1609808482 0 -558 1 7 mod/choice:view 1 1609808482 0 -559 1 6 mod/choice:view 1 1609808482 0 -560 1 1 mod/data:addinstance 1 1609808482 0 -561 1 3 mod/data:addinstance 1 1609808482 0 -562 1 8 mod/data:viewentry 1 1609808482 0 -563 1 6 mod/data:viewentry 1 1609808482 0 -564 1 5 mod/data:viewentry 1 1609808482 0 -565 1 4 mod/data:viewentry 1 1609808482 0 -566 1 3 mod/data:viewentry 1 1609808482 0 -567 1 1 mod/data:viewentry 1 1609808482 0 -568 1 5 mod/data:writeentry 1 1609808482 0 -569 1 4 mod/data:writeentry 1 1609808482 0 -570 1 3 mod/data:writeentry 1 1609808482 0 -571 1 1 mod/data:writeentry 1 1609808482 0 -572 1 5 mod/data:comment 1 1609808482 0 -573 1 4 mod/data:comment 1 1609808482 0 -574 1 3 mod/data:comment 1 1609808482 0 -575 1 1 mod/data:comment 1 1609808482 0 -576 1 4 mod/data:rate 1 1609808482 0 -577 1 3 mod/data:rate 1 1609808482 0 -578 1 1 mod/data:rate 1 1609808482 0 -579 1 4 mod/data:viewrating 1 1609808482 0 -580 1 3 mod/data:viewrating 1 1609808482 0 -581 1 1 mod/data:viewrating 1 1609808482 0 -582 1 4 mod/data:viewanyrating 1 1609808482 0 -583 1 3 mod/data:viewanyrating 1 1609808482 0 -584 1 1 mod/data:viewanyrating 1 1609808482 0 -585 1 4 mod/data:viewallratings 1 1609808482 0 -586 1 3 mod/data:viewallratings 1 1609808482 0 -587 1 1 mod/data:viewallratings 1 1609808482 0 -588 1 4 mod/data:approve 1 1609808482 0 -589 1 3 mod/data:approve 1 1609808482 0 -590 1 1 mod/data:approve 1 1609808482 0 -591 1 4 mod/data:manageentries 1 1609808482 0 -592 1 3 mod/data:manageentries 1 1609808482 0 -593 1 1 mod/data:manageentries 1 1609808482 0 -594 1 4 mod/data:managecomments 1 1609808482 0 -595 1 3 mod/data:managecomments 1 1609808482 0 -596 1 1 mod/data:managecomments 1 1609808482 0 -597 1 3 mod/data:managetemplates 1 1609808482 0 -598 1 1 mod/data:managetemplates 1 1609808482 0 -599 1 4 mod/data:viewalluserpresets 1 1609808482 0 -600 1 3 mod/data:viewalluserpresets 1 1609808482 0 -601 1 1 mod/data:viewalluserpresets 1 1609808482 0 -602 1 1 mod/data:manageuserpresets 1 1609808482 0 -603 1 1 mod/data:exportentry 1 1609808482 0 -604 1 4 mod/data:exportentry 1 1609808482 0 -605 1 3 mod/data:exportentry 1 1609808482 0 -606 1 1 mod/data:exportownentry 1 1609808482 0 -607 1 4 mod/data:exportownentry 1 1609808482 0 -608 1 3 mod/data:exportownentry 1 1609808482 0 -609 1 5 mod/data:exportownentry 1 1609808482 0 -610 1 1 mod/data:exportallentries 1 1609808482 0 -611 1 4 mod/data:exportallentries 1 1609808482 0 -612 1 3 mod/data:exportallentries 1 1609808482 0 -613 1 1 mod/data:exportuserinfo 1 1609808482 0 -614 1 4 mod/data:exportuserinfo 1 1609808482 0 -615 1 3 mod/data:exportuserinfo 1 1609808482 0 -616 1 6 mod/data:view 1 1609808482 0 -617 1 5 mod/data:view 1 1609808482 0 -618 1 4 mod/data:view 1 1609808482 0 -619 1 3 mod/data:view 1 1609808482 0 -620 1 1 mod/data:view 1 1609808482 0 -621 1 1 mod/feedback:addinstance 1 1609808483 0 -622 1 3 mod/feedback:addinstance 1 1609808483 0 -623 1 6 mod/feedback:view 1 1609808483 0 -624 1 8 mod/feedback:view 1 1609808483 0 -625 1 5 mod/feedback:view 1 1609808483 0 -626 1 4 mod/feedback:view 1 1609808483 0 -627 1 3 mod/feedback:view 1 1609808483 0 -628 1 1 mod/feedback:view 1 1609808483 0 -629 1 8 mod/feedback:complete 1 1609808483 0 -630 1 5 mod/feedback:complete 1 1609808483 0 -631 1 5 mod/feedback:viewanalysepage 1 1609808483 0 -632 1 3 mod/feedback:viewanalysepage 1 1609808483 0 -633 1 1 mod/feedback:viewanalysepage 1 1609808483 0 -634 1 3 mod/feedback:deletesubmissions 1 1609808483 0 -635 1 1 mod/feedback:deletesubmissions 1 1609808483 0 -636 1 1 mod/feedback:mapcourse 1 1609808483 0 -637 1 3 mod/feedback:edititems 1 1609808483 0 -638 1 1 mod/feedback:edititems 1 1609808483 0 -639 1 3 mod/feedback:createprivatetemplate 1 1609808483 0 -640 1 1 mod/feedback:createprivatetemplate 1 1609808483 0 -641 1 3 mod/feedback:createpublictemplate 1 1609808483 0 -642 1 1 mod/feedback:createpublictemplate 1 1609808483 0 -643 1 3 mod/feedback:deletetemplate 1 1609808483 0 -644 1 1 mod/feedback:deletetemplate 1 1609808483 0 -645 1 4 mod/feedback:viewreports 1 1609808483 0 -646 1 3 mod/feedback:viewreports 1 1609808483 0 -647 1 1 mod/feedback:viewreports 1 1609808483 0 -648 1 4 mod/feedback:receivemail 1 1609808483 0 -649 1 3 mod/feedback:receivemail 1 1609808483 0 -650 1 1 mod/folder:addinstance 1 1609808483 0 -651 1 3 mod/folder:addinstance 1 1609808483 0 -652 1 6 mod/folder:view 1 1609808483 0 -653 1 7 mod/folder:view 1 1609808483 0 -654 1 3 mod/folder:managefiles 1 1609808483 0 -655 1 1 mod/forum:addinstance 1 1609808483 0 -656 1 3 mod/forum:addinstance 1 1609808483 0 -657 1 8 mod/forum:viewdiscussion 1 1609808483 0 -658 1 6 mod/forum:viewdiscussion 1 1609808483 0 -659 1 5 mod/forum:viewdiscussion 1 1609808483 0 -660 1 4 mod/forum:viewdiscussion 1 1609808483 0 -661 1 3 mod/forum:viewdiscussion 1 1609808483 0 -662 1 1 mod/forum:viewdiscussion 1 1609808483 0 -663 1 4 mod/forum:viewhiddentimedposts 1 1609808483 0 -664 1 3 mod/forum:viewhiddentimedposts 1 1609808483 0 -665 1 1 mod/forum:viewhiddentimedposts 1 1609808483 0 -666 1 5 mod/forum:startdiscussion 1 1609808483 0 -667 1 4 mod/forum:startdiscussion 1 1609808483 0 -668 1 3 mod/forum:startdiscussion 1 1609808483 0 -669 1 1 mod/forum:startdiscussion 1 1609808483 0 -670 1 5 mod/forum:replypost 1 1609808483 0 -671 1 4 mod/forum:replypost 1 1609808483 0 -672 1 3 mod/forum:replypost 1 1609808483 0 -673 1 1 mod/forum:replypost 1 1609808483 0 -674 1 4 mod/forum:addnews 1 1609808483 0 -675 1 3 mod/forum:addnews 1 1609808483 0 -676 1 1 mod/forum:addnews 1 1609808483 0 -677 1 4 mod/forum:replynews 1 1609808483 0 -678 1 3 mod/forum:replynews 1 1609808483 0 -679 1 1 mod/forum:replynews 1 1609808483 0 -680 1 5 mod/forum:viewrating 1 1609808483 0 -681 1 4 mod/forum:viewrating 1 1609808483 0 -682 1 3 mod/forum:viewrating 1 1609808483 0 -683 1 1 mod/forum:viewrating 1 1609808483 0 -684 1 4 mod/forum:viewanyrating 1 1609808484 0 -685 1 3 mod/forum:viewanyrating 1 1609808484 0 -686 1 1 mod/forum:viewanyrating 1 1609808484 0 -687 1 4 mod/forum:viewallratings 1 1609808484 0 -688 1 3 mod/forum:viewallratings 1 1609808484 0 -689 1 1 mod/forum:viewallratings 1 1609808484 0 -690 1 4 mod/forum:rate 1 1609808484 0 -691 1 3 mod/forum:rate 1 1609808484 0 -692 1 1 mod/forum:rate 1 1609808484 0 -693 1 4 mod/forum:postprivatereply 1 1609808484 0 -694 1 3 mod/forum:postprivatereply 1 1609808484 0 -695 1 1 mod/forum:postprivatereply 1 1609808484 0 -696 1 4 mod/forum:readprivatereplies 1 1609808484 0 -697 1 3 mod/forum:readprivatereplies 1 1609808484 0 -698 1 1 mod/forum:readprivatereplies 1 1609808484 0 -699 1 5 mod/forum:createattachment 1 1609808484 0 -700 1 4 mod/forum:createattachment 1 1609808484 0 -701 1 3 mod/forum:createattachment 1 1609808484 0 -702 1 1 mod/forum:createattachment 1 1609808484 0 -703 1 5 mod/forum:deleteownpost 1 1609808484 0 -704 1 4 mod/forum:deleteownpost 1 1609808484 0 -705 1 3 mod/forum:deleteownpost 1 1609808484 0 -706 1 1 mod/forum:deleteownpost 1 1609808484 0 -707 1 4 mod/forum:deleteanypost 1 1609808484 0 -708 1 3 mod/forum:deleteanypost 1 1609808484 0 -709 1 1 mod/forum:deleteanypost 1 1609808484 0 -710 1 4 mod/forum:splitdiscussions 1 1609808484 0 -711 1 3 mod/forum:splitdiscussions 1 1609808484 0 -712 1 1 mod/forum:splitdiscussions 1 1609808484 0 -713 1 4 mod/forum:movediscussions 1 1609808484 0 -714 1 3 mod/forum:movediscussions 1 1609808484 0 -715 1 1 mod/forum:movediscussions 1 1609808484 0 -716 1 4 mod/forum:pindiscussions 1 1609808484 0 -717 1 3 mod/forum:pindiscussions 1 1609808484 0 -718 1 1 mod/forum:pindiscussions 1 1609808484 0 -719 1 4 mod/forum:editanypost 1 1609808484 0 -720 1 3 mod/forum:editanypost 1 1609808484 0 -721 1 1 mod/forum:editanypost 1 1609808484 0 -722 1 4 mod/forum:viewqandawithoutposting 1 1609808484 0 -723 1 3 mod/forum:viewqandawithoutposting 1 1609808484 0 -724 1 1 mod/forum:viewqandawithoutposting 1 1609808484 0 -725 1 4 mod/forum:viewsubscribers 1 1609808484 0 -726 1 3 mod/forum:viewsubscribers 1 1609808484 0 -727 1 1 mod/forum:viewsubscribers 1 1609808484 0 -728 1 4 mod/forum:managesubscriptions 1 1609808484 0 -729 1 3 mod/forum:managesubscriptions 1 1609808484 0 -730 1 1 mod/forum:managesubscriptions 1 1609808484 0 -731 1 4 mod/forum:postwithoutthrottling 1 1609808484 0 -732 1 3 mod/forum:postwithoutthrottling 1 1609808484 0 -733 1 1 mod/forum:postwithoutthrottling 1 1609808484 0 -734 1 4 mod/forum:exportdiscussion 1 1609808484 0 -735 1 3 mod/forum:exportdiscussion 1 1609808484 0 -736 1 1 mod/forum:exportdiscussion 1 1609808484 0 -737 1 4 mod/forum:exportforum 1 1609808484 0 -738 1 3 mod/forum:exportforum 1 1609808484 0 -739 1 1 mod/forum:exportforum 1 1609808484 0 -740 1 4 mod/forum:exportpost 1 1609808484 0 -741 1 3 mod/forum:exportpost 1 1609808484 0 -742 1 1 mod/forum:exportpost 1 1609808484 0 -743 1 4 mod/forum:exportownpost 1 1609808484 0 -744 1 3 mod/forum:exportownpost 1 1609808484 0 -745 1 1 mod/forum:exportownpost 1 1609808484 0 -746 1 5 mod/forum:exportownpost 1 1609808484 0 -747 1 4 mod/forum:addquestion 1 1609808484 0 -748 1 3 mod/forum:addquestion 1 1609808484 0 -749 1 1 mod/forum:addquestion 1 1609808484 0 -750 1 5 mod/forum:allowforcesubscribe 1 1609808484 0 -751 1 4 mod/forum:allowforcesubscribe 1 1609808484 0 -752 1 3 mod/forum:allowforcesubscribe 1 1609808484 0 -753 1 8 mod/forum:allowforcesubscribe 1 1609808484 0 -754 1 4 mod/forum:canposttomygroups 1 1609808484 0 -755 1 3 mod/forum:canposttomygroups 1 1609808484 0 -756 1 1 mod/forum:canposttomygroups 1 1609808484 0 -757 1 4 mod/forum:canoverridediscussionlock 1 1609808484 0 -758 1 3 mod/forum:canoverridediscussionlock 1 1609808484 0 -759 1 1 mod/forum:canoverridediscussionlock 1 1609808484 0 -760 1 4 mod/forum:canoverridecutoff 1 1609808484 0 -761 1 3 mod/forum:canoverridecutoff 1 1609808484 0 -762 1 1 mod/forum:canoverridecutoff 1 1609808484 0 -763 1 7 mod/forum:cantogglefavourite 1 1609808484 0 -764 1 4 mod/forum:grade 1 1609808484 0 -765 1 3 mod/forum:grade 1 1609808484 0 -766 1 1 mod/forum:grade 1 1609808484 0 -767 1 3 mod/glossary:addinstance 1 1609808485 0 -768 1 1 mod/glossary:addinstance 1 1609808485 0 -769 1 8 mod/glossary:view 1 1609808485 0 -770 1 6 mod/glossary:view 1 1609808485 0 -771 1 5 mod/glossary:view 1 1609808485 0 -772 1 4 mod/glossary:view 1 1609808485 0 -773 1 3 mod/glossary:view 1 1609808485 0 -774 1 1 mod/glossary:view 1 1609808485 0 -775 1 5 mod/glossary:write 1 1609808485 0 -776 1 4 mod/glossary:write 1 1609808485 0 -777 1 3 mod/glossary:write 1 1609808485 0 -778 1 1 mod/glossary:write 1 1609808485 0 -779 1 4 mod/glossary:manageentries 1 1609808485 0 -780 1 3 mod/glossary:manageentries 1 1609808485 0 -781 1 1 mod/glossary:manageentries 1 1609808485 0 -782 1 4 mod/glossary:managecategories 1 1609808485 0 -783 1 3 mod/glossary:managecategories 1 1609808485 0 -784 1 1 mod/glossary:managecategories 1 1609808485 0 -785 1 5 mod/glossary:comment 1 1609808485 0 -786 1 4 mod/glossary:comment 1 1609808485 0 -787 1 3 mod/glossary:comment 1 1609808485 0 -788 1 1 mod/glossary:comment 1 1609808485 0 -789 1 4 mod/glossary:managecomments 1 1609808485 0 -790 1 3 mod/glossary:managecomments 1 1609808485 0 -791 1 1 mod/glossary:managecomments 1 1609808485 0 -792 1 4 mod/glossary:import 1 1609808485 0 -793 1 3 mod/glossary:import 1 1609808485 0 -794 1 1 mod/glossary:import 1 1609808485 0 -795 1 4 mod/glossary:export 1 1609808485 0 -796 1 3 mod/glossary:export 1 1609808485 0 -797 1 1 mod/glossary:export 1 1609808485 0 -798 1 4 mod/glossary:approve 1 1609808485 0 -799 1 3 mod/glossary:approve 1 1609808485 0 -800 1 1 mod/glossary:approve 1 1609808485 0 -801 1 4 mod/glossary:rate 1 1609808485 0 -802 1 3 mod/glossary:rate 1 1609808485 0 -803 1 1 mod/glossary:rate 1 1609808485 0 -804 1 4 mod/glossary:viewrating 1 1609808485 0 -805 1 3 mod/glossary:viewrating 1 1609808485 0 -806 1 1 mod/glossary:viewrating 1 1609808485 0 -807 1 4 mod/glossary:viewanyrating 1 1609808485 0 -808 1 3 mod/glossary:viewanyrating 1 1609808485 0 -809 1 1 mod/glossary:viewanyrating 1 1609808485 0 -810 1 4 mod/glossary:viewallratings 1 1609808485 0 -811 1 3 mod/glossary:viewallratings 1 1609808485 0 -812 1 1 mod/glossary:viewallratings 1 1609808485 0 -813 1 4 mod/glossary:exportentry 1 1609808485 0 -814 1 3 mod/glossary:exportentry 1 1609808485 0 -815 1 1 mod/glossary:exportentry 1 1609808485 0 -816 1 4 mod/glossary:exportownentry 1 1609808485 0 -817 1 3 mod/glossary:exportownentry 1 1609808485 0 -818 1 1 mod/glossary:exportownentry 1 1609808485 0 -819 1 5 mod/glossary:exportownentry 1 1609808485 0 -820 1 6 mod/h5pactivity:view 1 1609808485 0 -821 1 5 mod/h5pactivity:view 1 1609808485 0 -822 1 4 mod/h5pactivity:view 1 1609808485 0 -823 1 3 mod/h5pactivity:view 1 1609808485 0 -824 1 1 mod/h5pactivity:view 1 1609808485 0 -825 1 3 mod/h5pactivity:addinstance 1 1609808485 0 -826 1 1 mod/h5pactivity:addinstance 1 1609808485 0 -827 1 5 mod/h5pactivity:submit 1 1609808485 0 -828 1 3 mod/h5pactivity:reviewattempts 1 1609808485 0 -829 1 1 mod/h5pactivity:reviewattempts 1 1609808485 0 -830 1 6 mod/imscp:view 1 1609808485 0 -831 1 7 mod/imscp:view 1 1609808485 0 -832 1 3 mod/imscp:addinstance 1 1609808485 0 -833 1 1 mod/imscp:addinstance 1 1609808485 0 -834 1 3 mod/label:addinstance 1 1609808486 0 -835 1 1 mod/label:addinstance 1 1609808486 0 -836 1 7 mod/label:view 1 1609808486 0 -837 1 6 mod/label:view 1 1609808486 0 -838 1 3 mod/lesson:addinstance 1 1609808486 0 -839 1 1 mod/lesson:addinstance 1 1609808486 0 -840 1 3 mod/lesson:edit 1 1609808486 0 -841 1 1 mod/lesson:edit 1 1609808486 0 -842 1 4 mod/lesson:grade 1 1609808486 0 -843 1 3 mod/lesson:grade 1 1609808486 0 -844 1 1 mod/lesson:grade 1 1609808486 0 -845 1 4 mod/lesson:viewreports 1 1609808486 0 -846 1 3 mod/lesson:viewreports 1 1609808486 0 -847 1 1 mod/lesson:viewreports 1 1609808486 0 -848 1 4 mod/lesson:manage 1 1609808486 0 -849 1 3 mod/lesson:manage 1 1609808486 0 -850 1 1 mod/lesson:manage 1 1609808486 0 -851 1 3 mod/lesson:manageoverrides 1 1609808486 0 -852 1 1 mod/lesson:manageoverrides 1 1609808486 0 -853 1 7 mod/lesson:view 1 1609808486 0 -854 1 6 mod/lesson:view 1 1609808486 0 -855 1 5 mod/lti:view 1 1609808486 0 -856 1 4 mod/lti:view 1 1609808486 0 -857 1 3 mod/lti:view 1 1609808486 0 -858 1 1 mod/lti:view 1 1609808486 0 -859 1 3 mod/lti:addinstance 1 1609808486 0 -860 1 1 mod/lti:addinstance 1 1609808486 0 -861 1 4 mod/lti:manage 1 1609808486 0 -862 1 3 mod/lti:manage 1 1609808486 0 -863 1 1 mod/lti:manage 1 1609808486 0 -864 1 3 mod/lti:addcoursetool 1 1609808486 0 -865 1 1 mod/lti:addcoursetool 1 1609808486 0 -866 1 3 mod/lti:addpreconfiguredinstance 1 1609808486 0 -867 1 1 mod/lti:addpreconfiguredinstance 1 1609808486 0 -868 1 3 mod/lti:addmanualinstance 1 1609808486 0 -869 1 1 mod/lti:addmanualinstance 1 1609808486 0 -870 1 3 mod/lti:requesttooladd 1 1609808486 0 -871 1 1 mod/lti:requesttooladd 1 1609808486 0 -872 1 6 mod/page:view 1 1609808487 0 -873 1 7 mod/page:view 1 1609808487 0 -874 1 3 mod/page:addinstance 1 1609808487 0 -875 1 1 mod/page:addinstance 1 1609808487 0 -876 1 6 mod/quiz:view 1 1609808487 0 -877 1 5 mod/quiz:view 1 1609808487 0 -878 1 4 mod/quiz:view 1 1609808487 0 -879 1 3 mod/quiz:view 1 1609808487 0 -880 1 1 mod/quiz:view 1 1609808487 0 -881 1 3 mod/quiz:addinstance 1 1609808487 0 -882 1 1 mod/quiz:addinstance 1 1609808487 0 -883 1 5 mod/quiz:attempt 1 1609808487 0 -884 1 5 mod/quiz:reviewmyattempts 1 1609808487 0 -885 1 3 mod/quiz:manage 1 1609808487 0 -886 1 1 mod/quiz:manage 1 1609808487 0 -887 1 3 mod/quiz:manageoverrides 1 1609808487 0 -888 1 1 mod/quiz:manageoverrides 1 1609808487 0 -889 1 4 mod/quiz:preview 1 1609808487 0 -890 1 3 mod/quiz:preview 1 1609808487 0 -891 1 1 mod/quiz:preview 1 1609808487 0 -892 1 4 mod/quiz:grade 1 1609808487 0 -893 1 3 mod/quiz:grade 1 1609808487 0 -894 1 1 mod/quiz:grade 1 1609808487 0 -895 1 4 mod/quiz:regrade 1 1609808487 0 -896 1 3 mod/quiz:regrade 1 1609808487 0 -897 1 1 mod/quiz:regrade 1 1609808487 0 -898 1 4 mod/quiz:viewreports 1 1609808487 0 -899 1 3 mod/quiz:viewreports 1 1609808487 0 -900 1 1 mod/quiz:viewreports 1 1609808487 0 -901 1 3 mod/quiz:deleteattempts 1 1609808487 0 -902 1 1 mod/quiz:deleteattempts 1 1609808487 0 -903 1 6 mod/resource:view 1 1609808487 0 -904 1 7 mod/resource:view 1 1609808487 0 -905 1 3 mod/resource:addinstance 1 1609808487 0 -906 1 1 mod/resource:addinstance 1 1609808487 0 -907 1 3 mod/scorm:addinstance 1 1609808488 0 -908 1 1 mod/scorm:addinstance 1 1609808488 0 -909 1 4 mod/scorm:viewreport 1 1609808488 0 -910 1 3 mod/scorm:viewreport 1 1609808488 0 -911 1 1 mod/scorm:viewreport 1 1609808488 0 -912 1 5 mod/scorm:skipview 1 1609808488 0 -913 1 5 mod/scorm:savetrack 1 1609808488 0 -914 1 4 mod/scorm:savetrack 1 1609808488 0 -915 1 3 mod/scorm:savetrack 1 1609808488 0 -916 1 1 mod/scorm:savetrack 1 1609808488 0 -917 1 5 mod/scorm:viewscores 1 1609808488 0 -918 1 4 mod/scorm:viewscores 1 1609808488 0 -919 1 3 mod/scorm:viewscores 1 1609808488 0 -920 1 1 mod/scorm:viewscores 1 1609808488 0 -921 1 4 mod/scorm:deleteresponses 1 1609808488 0 -922 1 3 mod/scorm:deleteresponses 1 1609808488 0 -923 1 1 mod/scorm:deleteresponses 1 1609808488 0 -924 1 3 mod/survey:addinstance 1 1609808488 0 -925 1 1 mod/survey:addinstance 1 1609808488 0 -926 1 5 mod/survey:participate 1 1609808488 0 -927 1 4 mod/survey:participate 1 1609808488 0 -928 1 3 mod/survey:participate 1 1609808488 0 -929 1 1 mod/survey:participate 1 1609808488 0 -930 1 4 mod/survey:readresponses 1 1609808488 0 -931 1 3 mod/survey:readresponses 1 1609808488 0 -932 1 1 mod/survey:readresponses 1 1609808488 0 -933 1 4 mod/survey:download 1 1609808488 0 -934 1 3 mod/survey:download 1 1609808488 0 -935 1 1 mod/survey:download 1 1609808488 0 -936 1 6 mod/url:view 1 1609808488 0 -937 1 7 mod/url:view 1 1609808488 0 -938 1 3 mod/url:addinstance 1 1609808488 0 -939 1 1 mod/url:addinstance 1 1609808488 0 -940 1 3 mod/wiki:addinstance 1 1609808488 0 -941 1 1 mod/wiki:addinstance 1 1609808488 0 -942 1 6 mod/wiki:viewpage 1 1609808488 0 -943 1 8 mod/wiki:viewpage 1 1609808488 0 -944 1 5 mod/wiki:viewpage 1 1609808488 0 -945 1 4 mod/wiki:viewpage 1 1609808488 0 -946 1 3 mod/wiki:viewpage 1 1609808488 0 -947 1 1 mod/wiki:viewpage 1 1609808488 0 -948 1 5 mod/wiki:editpage 1 1609808488 0 -949 1 4 mod/wiki:editpage 1 1609808488 0 -950 1 3 mod/wiki:editpage 1 1609808488 0 -951 1 1 mod/wiki:editpage 1 1609808488 0 -952 1 5 mod/wiki:createpage 1 1609808488 0 -953 1 4 mod/wiki:createpage 1 1609808488 0 -954 1 3 mod/wiki:createpage 1 1609808488 0 -955 1 1 mod/wiki:createpage 1 1609808489 0 -956 1 5 mod/wiki:viewcomment 1 1609808489 0 -957 1 4 mod/wiki:viewcomment 1 1609808489 0 -958 1 3 mod/wiki:viewcomment 1 1609808489 0 -959 1 1 mod/wiki:viewcomment 1 1609808489 0 -960 1 5 mod/wiki:editcomment 1 1609808489 0 -961 1 4 mod/wiki:editcomment 1 1609808489 0 -962 1 3 mod/wiki:editcomment 1 1609808489 0 -963 1 1 mod/wiki:editcomment 1 1609808489 0 -964 1 4 mod/wiki:managecomment 1 1609808489 0 -965 1 3 mod/wiki:managecomment 1 1609808489 0 -966 1 1 mod/wiki:managecomment 1 1609808489 0 -967 1 4 mod/wiki:managefiles 1 1609808489 0 -968 1 3 mod/wiki:managefiles 1 1609808489 0 -969 1 1 mod/wiki:managefiles 1 1609808489 0 -970 1 4 mod/wiki:overridelock 1 1609808489 0 -971 1 3 mod/wiki:overridelock 1 1609808489 0 -972 1 1 mod/wiki:overridelock 1 1609808489 0 -973 1 4 mod/wiki:managewiki 1 1609808489 0 -974 1 3 mod/wiki:managewiki 1 1609808489 0 -975 1 1 mod/wiki:managewiki 1 1609808489 0 -976 1 6 mod/workshop:view 1 1609808489 0 -977 1 5 mod/workshop:view 1 1609808489 0 -978 1 4 mod/workshop:view 1 1609808489 0 -979 1 3 mod/workshop:view 1 1609808489 0 -980 1 1 mod/workshop:view 1 1609808489 0 -981 1 3 mod/workshop:addinstance 1 1609808489 0 -982 1 1 mod/workshop:addinstance 1 1609808489 0 -983 1 4 mod/workshop:switchphase 1 1609808489 0 -984 1 3 mod/workshop:switchphase 1 1609808489 0 -985 1 1 mod/workshop:switchphase 1 1609808489 0 -986 1 3 mod/workshop:editdimensions 1 1609808489 0 -987 1 1 mod/workshop:editdimensions 1 1609808489 0 -988 1 5 mod/workshop:submit 1 1609808489 0 -989 1 5 mod/workshop:peerassess 1 1609808489 0 -990 1 4 mod/workshop:manageexamples 1 1609808489 0 -991 1 3 mod/workshop:manageexamples 1 1609808489 0 -992 1 1 mod/workshop:manageexamples 1 1609808489 0 -993 1 4 mod/workshop:allocate 1 1609808489 0 -994 1 3 mod/workshop:allocate 1 1609808489 0 -995 1 1 mod/workshop:allocate 1 1609808489 0 -996 1 4 mod/workshop:publishsubmissions 1 1609808489 0 -997 1 3 mod/workshop:publishsubmissions 1 1609808489 0 -998 1 1 mod/workshop:publishsubmissions 1 1609808489 0 -999 1 5 mod/workshop:viewauthornames 1 1609808489 0 -1000 1 4 mod/workshop:viewauthornames 1 1609808489 0 -1001 1 3 mod/workshop:viewauthornames 1 1609808489 0 -1002 1 1 mod/workshop:viewauthornames 1 1609808489 0 -1003 1 4 mod/workshop:viewreviewernames 1 1609808489 0 -1004 1 3 mod/workshop:viewreviewernames 1 1609808489 0 -1005 1 1 mod/workshop:viewreviewernames 1 1609808489 0 -1006 1 4 mod/workshop:viewallsubmissions 1 1609808489 0 -1007 1 3 mod/workshop:viewallsubmissions 1 1609808489 0 -1008 1 1 mod/workshop:viewallsubmissions 1 1609808489 0 -1009 1 5 mod/workshop:viewpublishedsubmissions 1 1609808489 0 -1010 1 4 mod/workshop:viewpublishedsubmissions 1 1609808489 0 -1011 1 3 mod/workshop:viewpublishedsubmissions 1 1609808489 0 -1012 1 1 mod/workshop:viewpublishedsubmissions 1 1609808489 0 -1013 1 5 mod/workshop:viewauthorpublished 1 1609808489 0 -1014 1 4 mod/workshop:viewauthorpublished 1 1609808489 0 -1015 1 3 mod/workshop:viewauthorpublished 1 1609808489 0 -1016 1 1 mod/workshop:viewauthorpublished 1 1609808489 0 -1017 1 4 mod/workshop:viewallassessments 1 1609808489 0 -1018 1 3 mod/workshop:viewallassessments 1 1609808489 0 -1019 1 1 mod/workshop:viewallassessments 1 1609808489 0 -1020 1 4 mod/workshop:overridegrades 1 1609808489 0 -1021 1 3 mod/workshop:overridegrades 1 1609808489 0 -1022 1 1 mod/workshop:overridegrades 1 1609808489 0 -1023 1 4 mod/workshop:ignoredeadlines 1 1609808489 0 -1024 1 3 mod/workshop:ignoredeadlines 1 1609808489 0 -1025 1 1 mod/workshop:ignoredeadlines 1 1609808489 0 -1026 1 4 mod/workshop:deletesubmissions 1 1609808489 0 -1027 1 3 mod/workshop:deletesubmissions 1 1609808489 0 -1028 1 1 mod/workshop:deletesubmissions 1 1609808489 0 -1029 1 1 mod/workshop:exportsubmissions 1 1609808489 0 -1030 1 4 mod/workshop:exportsubmissions 1 1609808489 0 -1031 1 3 mod/workshop:exportsubmissions 1 1609808489 0 -1032 1 5 mod/workshop:exportsubmissions 1 1609808489 0 -1033 1 7 auth/oauth2:managelinkedlogins 1 1609808490 0 -1034 1 1 enrol/category:config 1 1609808490 0 -1035 1 3 enrol/category:config 1 1609808490 0 -1036 1 3 enrol/cohort:config 1 1609808490 0 -1037 1 1 enrol/cohort:config 1 1609808490 0 -1038 1 1 enrol/cohort:unenrol 1 1609808490 0 -1039 1 1 enrol/database:unenrol 1 1609808491 0 -1040 1 1 enrol/database:config 1 1609808491 0 -1041 1 3 enrol/database:config 1 1609808491 0 -1042 1 1 enrol/guest:config 1 1609808491 0 -1043 1 3 enrol/guest:config 1 1609808491 0 -1044 1 1 enrol/imsenterprise:config 1 1609808491 0 -1045 1 3 enrol/imsenterprise:config 1 1609808491 0 -1046 1 1 enrol/ldap:manage 1 1609808491 0 -1047 1 1 enrol/lti:config 1 1609808491 0 -1048 1 3 enrol/lti:config 1 1609808491 0 -1049 1 1 enrol/lti:unenrol 1 1609808491 0 -1050 1 3 enrol/lti:unenrol 1 1609808491 0 -1051 1 1 enrol/manual:config 1 1609808491 0 -1052 1 1 enrol/manual:enrol 1 1609808491 0 -1053 1 3 enrol/manual:enrol 1 1609808491 0 -1054 1 1 enrol/manual:manage 1 1609808491 0 -1055 1 3 enrol/manual:manage 1 1609808491 0 -1056 1 1 enrol/manual:unenrol 1 1609808491 0 -1057 1 3 enrol/manual:unenrol 1 1609808491 0 -1058 1 1 enrol/meta:config 1 1609808491 0 -1059 1 3 enrol/meta:config 1 1609808491 0 -1060 1 1 enrol/meta:selectaslinked 1 1609808491 0 -1061 1 1 enrol/meta:unenrol 1 1609808491 0 -1062 1 1 enrol/mnet:config 1 1609808491 0 -1063 1 3 enrol/mnet:config 1 1609808491 0 -1064 1 1 enrol/paypal:config 1 1609808491 0 -1065 1 1 enrol/paypal:manage 1 1609808492 0 -1066 1 3 enrol/paypal:manage 1 1609808492 0 -1067 1 1 enrol/paypal:unenrol 1 1609808492 0 -1068 1 3 enrol/self:config 1 1609808492 0 -1069 1 1 enrol/self:config 1 1609808492 0 -1070 1 3 enrol/self:manage 1 1609808492 0 -1071 1 1 enrol/self:manage 1 1609808492 0 -1072 1 5 enrol/self:unenrolself 1 1609808492 0 -1073 1 3 enrol/self:unenrol 1 1609808492 0 -1074 1 1 enrol/self:unenrol 1 1609808492 0 -1075 1 7 message/airnotifier:managedevice 1 1609808492 0 -1076 1 3 block/activity_modules:addinstance 1 1609808492 0 -1077 1 1 block/activity_modules:addinstance 1 1609808492 0 -1078 1 3 block/activity_results:addinstance 1 1609808492 0 -1079 1 1 block/activity_results:addinstance 1 1609808492 0 -1080 1 7 block/admin_bookmarks:myaddinstance 1 1609808492 0 -1081 1 3 block/admin_bookmarks:addinstance 1 1609808492 0 -1082 1 1 block/admin_bookmarks:addinstance 1 1609808492 0 -1083 1 3 block/badges:addinstance 1 1609808492 0 -1084 1 1 block/badges:addinstance 1 1609808492 0 -1085 1 7 block/badges:myaddinstance 1 1609808493 0 -1086 1 3 block/blog_menu:addinstance 1 1609808493 0 -1087 1 1 block/blog_menu:addinstance 1 1609808493 0 -1088 1 3 block/blog_recent:addinstance 1 1609808493 0 -1089 1 1 block/blog_recent:addinstance 1 1609808493 0 -1090 1 3 block/blog_tags:addinstance 1 1609808493 0 -1091 1 1 block/blog_tags:addinstance 1 1609808493 0 -1092 1 7 block/calendar_month:myaddinstance 1 1609808493 0 -1093 1 1 block/calendar_month:addinstance 1 1609808493 0 -1094 1 3 block/calendar_month:addinstance 1 1609808493 0 -1095 1 7 block/calendar_upcoming:myaddinstance 1 1609808493 0 -1096 1 1 block/calendar_upcoming:addinstance 1 1609808493 0 -1097 1 3 block/calendar_upcoming:addinstance 1 1609808493 0 -1098 1 7 block/comments:myaddinstance 1 1609808493 0 -1099 1 1 block/comments:addinstance 1 1609808493 0 -1100 1 3 block/comments:addinstance 1 1609808493 0 -1101 1 1 block/completionstatus:addinstance 1 1609808493 0 -1102 1 3 block/completionstatus:addinstance 1 1609808493 0 -1103 1 7 block/course_list:myaddinstance 1 1609808493 0 -1104 1 1 block/course_list:addinstance 1 1609808493 0 -1105 1 3 block/course_list:addinstance 1 1609808493 0 -1106 1 1 block/course_summary:addinstance 1 1609808493 0 -1107 1 3 block/course_summary:addinstance 1 1609808493 0 -1108 1 1 block/feedback:addinstance 1 1609808493 0 -1109 1 3 block/feedback:addinstance 1 1609808493 0 -1110 1 7 block/globalsearch:myaddinstance 1 1609808493 0 -1111 1 1 block/globalsearch:addinstance 1 1609808493 0 -1112 1 3 block/globalsearch:addinstance 1 1609808493 0 -1113 1 7 block/glossary_random:myaddinstance 1 1609808493 0 -1114 1 1 block/glossary_random:addinstance 1 1609808493 0 -1115 1 3 block/glossary_random:addinstance 1 1609808493 0 -1116 1 7 block/html:myaddinstance 1 1609808493 0 -1117 1 1 block/html:addinstance 1 1609808493 0 -1118 1 3 block/html:addinstance 1 1609808493 0 -1119 1 1 block/login:addinstance 1 1609808493 0 -1120 1 3 block/login:addinstance 1 1609808493 0 -1121 1 1 block/lp:addinstance 1 1609808493 0 -1122 1 3 block/lp:addinstance 1 1609808493 0 -1123 1 7 block/lp:myaddinstance 1 1609808494 0 -1124 1 7 block/mentees:myaddinstance 1 1609808494 0 -1125 1 1 block/mentees:addinstance 1 1609808494 0 -1126 1 3 block/mentees:addinstance 1 1609808494 0 -1127 1 7 block/mnet_hosts:myaddinstance 1 1609808494 0 -1128 1 1 block/mnet_hosts:addinstance 1 1609808494 0 -1129 1 3 block/mnet_hosts:addinstance 1 1609808494 0 -1130 1 7 block/myoverview:myaddinstance 1 1609808494 0 -1131 1 7 block/myprofile:myaddinstance 1 1609808494 0 -1132 1 1 block/myprofile:addinstance 1 1609808494 0 -1133 1 3 block/myprofile:addinstance 1 1609808494 0 -1134 1 7 block/navigation:myaddinstance 1 1609808494 0 -1135 1 1 block/navigation:addinstance 1 1609808494 0 -1136 1 3 block/navigation:addinstance 1 1609808494 0 -1137 1 7 block/news_items:myaddinstance 1 1609808494 0 -1138 1 1 block/news_items:addinstance 1 1609808494 0 -1139 1 3 block/news_items:addinstance 1 1609808494 0 -1140 1 7 block/online_users:myaddinstance 1 1609808494 0 -1141 1 1 block/online_users:addinstance 1 1609808494 0 -1142 1 3 block/online_users:addinstance 1 1609808494 0 -1143 1 7 block/online_users:viewlist 1 1609808494 0 -1144 1 6 block/online_users:viewlist 1 1609808494 0 -1145 1 5 block/online_users:viewlist 1 1609808494 0 -1146 1 4 block/online_users:viewlist 1 1609808494 0 -1147 1 3 block/online_users:viewlist 1 1609808494 0 -1148 1 1 block/online_users:viewlist 1 1609808494 0 -1149 1 7 block/private_files:myaddinstance 1 1609808494 0 -1150 1 1 block/private_files:addinstance 1 1609808494 0 -1151 1 3 block/private_files:addinstance 1 1609808494 0 -1152 1 1 block/quiz_results:addinstance 1 1609808494 0 -1153 1 3 block/quiz_results:addinstance 1 1609808494 0 -1154 1 1 block/recent_activity:addinstance 1 1609808494 0 -1155 1 3 block/recent_activity:addinstance 1 1609808494 0 -1156 1 7 block/recent_activity:viewaddupdatemodule 1 1609808494 0 -1157 1 7 block/recent_activity:viewdeletemodule 1 1609808494 0 -1158 1 7 block/recentlyaccessedcourses:myaddinstance 1 1609808494 0 -1159 1 7 block/recentlyaccesseditems:myaddinstance 1 1609808494 0 -1160 1 7 block/rss_client:myaddinstance 1 1609808494 0 -1161 1 1 block/rss_client:addinstance 1 1609808494 0 -1162 1 3 block/rss_client:addinstance 1 1609808495 0 -1163 1 4 block/rss_client:manageownfeeds 1 1609808495 0 -1164 1 3 block/rss_client:manageownfeeds 1 1609808495 0 -1165 1 1 block/rss_client:manageownfeeds 1 1609808495 0 -1166 1 1 block/rss_client:manageanyfeeds 1 1609808495 0 -1167 1 1 block/search_forums:addinstance 1 1609808495 0 -1168 1 3 block/search_forums:addinstance 1 1609808495 0 -1169 1 1 block/section_links:addinstance 1 1609808495 0 -1170 1 3 block/section_links:addinstance 1 1609808495 0 -1171 1 1 block/selfcompletion:addinstance 1 1609808495 0 -1172 1 3 block/selfcompletion:addinstance 1 1609808495 0 -1173 1 7 block/settings:myaddinstance 1 1609808495 0 -1174 1 1 block/settings:addinstance 1 1609808495 0 -1175 1 3 block/settings:addinstance 1 1609808495 0 -1176 1 1 block/site_main_menu:addinstance 1 1609808495 0 -1177 1 3 block/site_main_menu:addinstance 1 1609808495 0 -1178 1 1 block/social_activities:addinstance 1 1609808495 0 -1179 1 3 block/social_activities:addinstance 1 1609808495 0 -1180 1 7 block/starredcourses:myaddinstance 1 1609808495 0 -1181 1 1 block/tag_flickr:addinstance 1 1609808495 0 -1182 1 3 block/tag_flickr:addinstance 1 1609808495 0 -1183 1 1 block/tag_youtube:addinstance 1 1609808495 0 -1184 1 3 block/tag_youtube:addinstance 1 1609808495 0 -1185 1 7 block/tags:myaddinstance 1 1609808495 0 -1186 1 1 block/tags:addinstance 1 1609808495 0 -1187 1 3 block/tags:addinstance 1 1609808495 0 -1188 1 7 block/timeline:myaddinstance 1 1609808495 0 -1189 1 4 report/completion:view 1 1609808497 0 -1190 1 3 report/completion:view 1 1609808497 0 -1191 1 1 report/completion:view 1 1609808497 0 -1192 1 1 report/courseoverview:view 1 1609808497 0 -1193 1 3 report/courseoverview:view 1 1609808497 0 -1194 1 4 report/courseoverview:view 1 1609808497 0 -1195 1 4 report/log:view 1 1609808497 0 -1196 1 3 report/log:view 1 1609808497 0 -1197 1 1 report/log:view 1 1609808497 0 -1198 1 4 report/log:viewtoday 1 1609808497 0 -1199 1 3 report/log:viewtoday 1 1609808497 0 -1200 1 1 report/log:viewtoday 1 1609808497 0 -1201 1 4 report/loglive:view 1 1609808497 0 -1202 1 3 report/loglive:view 1 1609808497 0 -1203 1 1 report/loglive:view 1 1609808497 0 -1204 1 4 report/outline:view 1 1609808497 0 -1205 1 3 report/outline:view 1 1609808497 0 -1206 1 1 report/outline:view 1 1609808497 0 -1207 1 4 report/outline:viewuserreport 1 1609808497 0 -1208 1 3 report/outline:viewuserreport 1 1609808497 0 -1209 1 1 report/outline:viewuserreport 1 1609808497 0 -1210 1 4 report/participation:view 1 1609808497 0 -1211 1 3 report/participation:view 1 1609808497 0 -1212 1 1 report/participation:view 1 1609808497 0 -1213 1 1 report/performance:view 1 1609808497 0 -1214 1 4 report/progress:view 1 1609808497 0 -1215 1 3 report/progress:view 1 1609808497 0 -1216 1 1 report/progress:view 1 1609808497 0 -1217 1 1 report/security:view 1 1609808498 0 -1218 1 4 report/stats:view 1 1609808498 0 -1219 1 3 report/stats:view 1 1609808498 0 -1220 1 1 report/stats:view 1 1609808498 0 -1221 1 1 report/status:view 1 1609808498 0 -1222 1 1 report/usersessions:manageownsessions 1 1609808498 0 -1223 1 7 report/usersessions:manageownsessions 1 1609808498 0 -1224 1 6 report/usersessions:manageownsessions -1000 1609808498 0 -1225 1 4 gradeexport/ods:view 1 1609808498 0 -1226 1 3 gradeexport/ods:view 1 1609808498 0 -1227 1 1 gradeexport/ods:view 1 1609808498 0 -1228 1 1 gradeexport/ods:publish 1 1609808498 0 -1229 1 4 gradeexport/txt:view 1 1609808498 0 -1230 1 3 gradeexport/txt:view 1 1609808498 0 -1231 1 1 gradeexport/txt:view 1 1609808498 0 -1232 1 1 gradeexport/txt:publish 1 1609808498 0 -1233 1 4 gradeexport/xls:view 1 1609808498 0 -1234 1 3 gradeexport/xls:view 1 1609808498 0 -1235 1 1 gradeexport/xls:view 1 1609808498 0 -1236 1 1 gradeexport/xls:publish 1 1609808498 0 -1237 1 4 gradeexport/xml:view 1 1609808498 0 -1238 1 3 gradeexport/xml:view 1 1609808498 0 -1239 1 1 gradeexport/xml:view 1 1609808498 0 -1240 1 1 gradeexport/xml:publish 1 1609808498 0 -1241 1 3 gradeimport/csv:view 1 1609808498 0 -1242 1 1 gradeimport/csv:view 1 1609808498 0 -1243 1 3 gradeimport/direct:view 1 1609808498 0 -1244 1 1 gradeimport/direct:view 1 1609808498 0 -1245 1 3 gradeimport/xml:view 1 1609808498 0 -1246 1 1 gradeimport/xml:view 1 1609808498 0 -1247 1 1 gradeimport/xml:publish 1 1609808498 0 -1248 1 4 gradereport/grader:view 1 1609808498 0 -1249 1 3 gradereport/grader:view 1 1609808498 0 -1250 1 1 gradereport/grader:view 1 1609808498 0 -1251 1 1 gradereport/history:view 1 1609808498 0 -1252 1 3 gradereport/history:view 1 1609808498 0 -1253 1 4 gradereport/history:view 1 1609808498 0 -1254 1 4 gradereport/outcomes:view 1 1609808498 0 -1255 1 3 gradereport/outcomes:view 1 1609808498 0 -1256 1 1 gradereport/outcomes:view 1 1609808498 0 -1257 1 7 gradereport/overview:view 1 1609808498 0 -1258 1 3 gradereport/singleview:view 1 1609808498 0 -1259 1 1 gradereport/singleview:view 1 1609808499 0 -1260 1 5 gradereport/user:view 1 1609808499 0 -1261 1 4 gradereport/user:view 1 1609808499 0 -1262 1 3 gradereport/user:view 1 1609808499 0 -1263 1 1 gradereport/user:view 1 1609808499 0 -1264 1 7 repository/areafiles:view 1 1609808499 0 -1265 1 7 repository/boxnet:view 1 1609808499 0 -1266 1 2 repository/contentbank:view 1 1609808499 0 -1267 1 3 repository/contentbank:view 1 1609808499 0 -1268 1 1 repository/contentbank:view 1 1609808499 0 -1269 1 2 repository/contentbank:accesscoursecontent 1 1609808499 0 -1270 1 3 repository/contentbank:accesscoursecontent 1 1609808499 0 -1271 1 1 repository/contentbank:accesscoursecontent 1 1609808499 0 -1272 1 2 repository/contentbank:accesscoursecategorycontent 1 1609808499 0 -1273 1 1 repository/contentbank:accesscoursecategorycontent 1 1609808499 0 -1274 1 7 repository/contentbank:accessgeneralcontent 1 1609808499 0 -1275 1 2 repository/coursefiles:view 1 1609808499 0 -1276 1 4 repository/coursefiles:view 1 1609808499 0 -1277 1 3 repository/coursefiles:view 1 1609808499 0 -1278 1 1 repository/coursefiles:view 1 1609808499 0 -1279 1 7 repository/dropbox:view 1 1609808499 0 -1280 1 7 repository/equella:view 1 1609808499 0 -1281 1 2 repository/filesystem:view 1 1609808499 0 -1282 1 4 repository/filesystem:view 1 1609808499 0 -1283 1 3 repository/filesystem:view 1 1609808500 0 -1284 1 1 repository/filesystem:view 1 1609808500 0 -1285 1 7 repository/flickr:view 1 1609808500 0 -1286 1 7 repository/flickr_public:view 1 1609808500 0 -1287 1 7 repository/googledocs:view 1 1609808500 0 -1288 1 2 repository/local:view 1 1609808500 0 -1289 1 4 repository/local:view 1 1609808500 0 -1290 1 3 repository/local:view 1 1609808500 0 -1291 1 1 repository/local:view 1 1609808500 0 -1292 1 7 repository/merlot:view 1 1609808500 0 -1293 1 7 repository/nextcloud:view 1 1609808500 0 -1294 1 7 repository/onedrive:view 1 1609808500 0 -1295 1 7 repository/picasa:view 1 1609808500 0 -1296 1 7 repository/recent:view 1 1609808500 0 -1297 1 7 repository/s3:view 1 1609808500 0 -1298 1 7 repository/skydrive:view 1 1609808500 0 -1299 1 7 repository/upload:view 1 1609808500 0 -1300 1 7 repository/url:view 1 1609808500 0 -1301 1 7 repository/user:view 1 1609808500 0 -1302 1 2 repository/webdav:view 1 1609808500 0 -1303 1 4 repository/webdav:view 1 1609808500 0 -1304 1 3 repository/webdav:view 1 1609808500 0 -1305 1 1 repository/webdav:view 1 1609808500 0 -1306 1 7 repository/wikimedia:view 1 1609808500 0 -1307 1 7 repository/youtube:view 1 1609808501 0 -1308 1 1 tool/customlang:view 1 1609808502 0 -1309 1 1 tool/customlang:edit 1 1609808502 0 -1310 1 7 tool/dataprivacy:downloadownrequest 1 1609808502 0 -1311 1 7 tool/dataprivacy:requestdelete 1 1609808502 0 -1312 1 1 tool/lpmigrate:frameworksmigrate 1 1609808503 0 -1313 1 4 tool/monitor:subscribe 1 1609808503 0 -1314 1 3 tool/monitor:subscribe 1 1609808503 0 -1315 1 1 tool/monitor:subscribe 1 1609808503 0 -1316 1 4 tool/monitor:managerules 1 1609808503 0 -1317 1 3 tool/monitor:managerules 1 1609808503 0 -1318 1 1 tool/monitor:managerules 1 1609808503 0 -1319 1 1 tool/monitor:managetool 1 1609808503 0 -1320 1 7 tool/policy:accept 1 1609808503 0 -1321 1 1 tool/policy:managedocs 1 1609808503 0 -1322 1 1 tool/policy:viewacceptances 1 1609808503 0 -1323 1 3 tool/recyclebin:deleteitems 1 1609808503 0 -1324 1 1 tool/recyclebin:deleteitems 1 1609808503 0 -1325 1 3 tool/recyclebin:restoreitems 1 1609808503 0 -1326 1 1 tool/recyclebin:restoreitems 1 1609808503 0 -1327 1 4 tool/recyclebin:viewitems 1 1609808503 0 -1328 1 3 tool/recyclebin:viewitems 1 1609808503 0 -1329 1 1 tool/recyclebin:viewitems 1 1609808503 0 -1330 1 1 tool/uploaduser:uploaduserpictures 1 1609808504 0 -1331 1 1 tool/usertours:managetours 1 1609808504 0 -1332 1 1 contenttype/h5p:access 1 1609808504 0 -1333 1 2 contenttype/h5p:access 1 1609808504 0 -1334 1 3 contenttype/h5p:access 1 1609808504 0 -1335 1 1 contenttype/h5p:upload 1 1609808504 0 -1336 1 2 contenttype/h5p:upload 1 1609808504 0 -1337 1 3 contenttype/h5p:upload 1 1609808504 0 -1338 1 1 contenttype/h5p:useeditor 1 1609808504 0 -1339 1 2 contenttype/h5p:useeditor 1 1609808504 0 -1340 1 3 contenttype/h5p:useeditor 1 1609808504 0 -1341 1 3 booktool/importhtml:import 1 1609808505 0 -1342 1 1 booktool/importhtml:import 1 1609808505 0 -1343 1 6 booktool/print:print 1 1609808505 0 -1344 1 8 booktool/print:print 1 1609808505 0 -1345 1 5 booktool/print:print 1 1609808505 0 -1346 1 4 booktool/print:print 1 1609808505 0 -1347 1 3 booktool/print:print 1 1609808505 0 -1348 1 1 booktool/print:print 1 1609808505 0 -1349 1 4 forumreport/summary:view 1 1609808506 0 -1350 1 3 forumreport/summary:view 1 1609808506 0 -1351 1 1 forumreport/summary:view 1 1609808506 0 -1352 1 4 forumreport/summary:viewall 1 1609808506 0 -1353 1 3 forumreport/summary:viewall 1 1609808506 0 -1354 1 1 forumreport/summary:viewall 1 1609808506 0 -1355 1 1 quiz/grading:viewstudentnames 1 1609808506 0 -1356 1 3 quiz/grading:viewstudentnames 1 1609808506 0 -1357 1 4 quiz/grading:viewstudentnames 1 1609808506 0 -1358 1 1 quiz/grading:viewidnumber 1 1609808506 0 -1359 1 3 quiz/grading:viewidnumber 1 1609808506 0 -1360 1 4 quiz/grading:viewidnumber 1 1609808506 0 -1361 1 1 quiz/statistics:view 1 1609808506 0 -1362 1 3 quiz/statistics:view 1 1609808506 0 -1363 1 4 quiz/statistics:view 1 1609808506 0 -1364 1 1 quizaccess/seb:managetemplates 1 1609808507 0 -1365 1 1 quizaccess/seb:bypassseb 1 1609808507 0 -1366 1 3 quizaccess/seb:bypassseb 1 1609808507 0 -1367 1 1 quizaccess/seb:manage_seb_requiresafeexambrowser 1 1609808507 0 -1368 1 3 quizaccess/seb:manage_seb_requiresafeexambrowser 1 1609808507 0 -1369 1 1 quizaccess/seb:manage_seb_templateid 1 1609808507 0 -1370 1 3 quizaccess/seb:manage_seb_templateid 1 1609808507 0 -1371 1 1 quizaccess/seb:manage_filemanager_sebconfigfile 1 1609808507 0 -1372 1 3 quizaccess/seb:manage_filemanager_sebconfigfile 1 1609808507 0 -1373 1 1 quizaccess/seb:manage_seb_showsebdownloadlink 1 1609808507 0 -1374 1 3 quizaccess/seb:manage_seb_showsebdownloadlink 1 1609808507 0 -1375 1 1 quizaccess/seb:manage_seb_allowedbrowserexamkeys 1 1609808507 0 -1376 1 3 quizaccess/seb:manage_seb_allowedbrowserexamkeys 1 1609808507 0 -1377 1 1 quizaccess/seb:manage_seb_linkquitseb 1 1609808507 0 -1378 1 3 quizaccess/seb:manage_seb_linkquitseb 1 1609808507 0 -1379 1 1 quizaccess/seb:manage_seb_userconfirmquit 1 1609808507 0 -1380 1 3 quizaccess/seb:manage_seb_userconfirmquit 1 1609808507 0 -1381 1 1 quizaccess/seb:manage_seb_allowuserquitseb 1 1609808507 0 -1382 1 3 quizaccess/seb:manage_seb_allowuserquitseb 1 1609808507 0 -1383 1 1 quizaccess/seb:manage_seb_quitpassword 1 1609808507 0 -1384 1 3 quizaccess/seb:manage_seb_quitpassword 1 1609808507 0 -1385 1 1 quizaccess/seb:manage_seb_allowreloadinexam 1 1609808507 0 -1386 1 3 quizaccess/seb:manage_seb_allowreloadinexam 1 1609808507 0 -1387 1 1 quizaccess/seb:manage_seb_showsebtaskbar 1 1609808507 0 -1388 1 3 quizaccess/seb:manage_seb_showsebtaskbar 1 1609808507 0 -1389 1 1 quizaccess/seb:manage_seb_showreloadbutton 1 1609808507 0 -1390 1 3 quizaccess/seb:manage_seb_showreloadbutton 1 1609808507 0 -1391 1 1 quizaccess/seb:manage_seb_showtime 1 1609808507 0 -1392 1 3 quizaccess/seb:manage_seb_showtime 1 1609808507 0 -1393 1 1 quizaccess/seb:manage_seb_showkeyboardlayout 1 1609808507 0 -1394 1 3 quizaccess/seb:manage_seb_showkeyboardlayout 1 1609808507 0 -1395 1 1 quizaccess/seb:manage_seb_showwificontrol 1 1609808507 0 -1396 1 3 quizaccess/seb:manage_seb_showwificontrol 1 1609808507 0 -1397 1 1 quizaccess/seb:manage_seb_enableaudiocontrol 1 1609808507 0 -1398 1 3 quizaccess/seb:manage_seb_enableaudiocontrol 1 1609808507 0 -1399 1 1 quizaccess/seb:manage_seb_muteonstartup 1 1609808507 0 -1400 1 3 quizaccess/seb:manage_seb_muteonstartup 1 1609808507 0 -1401 1 1 quizaccess/seb:manage_seb_allowspellchecking 1 1609808507 0 -1402 1 3 quizaccess/seb:manage_seb_allowspellchecking 1 1609808507 0 -1403 1 1 quizaccess/seb:manage_seb_activateurlfiltering 1 1609808507 0 -1404 1 3 quizaccess/seb:manage_seb_activateurlfiltering 1 1609808507 0 -1405 1 1 quizaccess/seb:manage_seb_filterembeddedcontent 1 1609808507 0 -1406 1 3 quizaccess/seb:manage_seb_filterembeddedcontent 1 1609808507 0 -1407 1 1 quizaccess/seb:manage_seb_expressionsallowed 1 1609808507 0 -1408 1 3 quizaccess/seb:manage_seb_expressionsallowed 1 1609808507 0 -1409 1 1 quizaccess/seb:manage_seb_regexallowed 1 1609808507 0 -1410 1 3 quizaccess/seb:manage_seb_regexallowed 1 1609808507 0 -1411 1 1 quizaccess/seb:manage_seb_expressionsblocked 1 1609808507 0 -1412 1 3 quizaccess/seb:manage_seb_expressionsblocked 1 1609808507 0 -1413 1 1 quizaccess/seb:manage_seb_regexblocked 1 1609808507 0 -1414 1 3 quizaccess/seb:manage_seb_regexblocked 1 1609808507 0 -1415 1 3 atto/h5p:addembed 1 1609808508 0 -1416 1 7 atto/recordrtc:recordaudio 1 1609808509 0 -1417 1 7 atto/recordrtc:recordvideo 1 1609808509 0 -1418 1 7 webservice/rest:use 1 1609892624 2 +1 1 1 moodle/site:configview 1 1612889053 0 +2 1 2 moodle/site:configview 1 1612889053 0 +3 1 1 moodle/site:readallmessages 1 1612889053 0 +4 1 3 moodle/site:readallmessages 1 1612889053 0 +5 1 1 moodle/site:manageallmessaging 1 1612889053 0 +6 1 1 moodle/site:deleteanymessage 1 1612889053 0 +7 1 1 moodle/site:sendmessage 1 1612889053 0 +8 1 7 moodle/site:sendmessage 1 1612889053 0 +9 1 7 moodle/site:senderrormessage 1 1612889053 0 +10 1 7 moodle/site:deleteownmessage 1 1612889053 0 +11 1 1 moodle/site:approvecourse 1 1612889053 0 +12 1 3 moodle/backup:backupcourse 1 1612889053 0 +13 1 1 moodle/backup:backupcourse 1 1612889053 0 +14 1 3 moodle/backup:backupsection 1 1612889053 0 +15 1 1 moodle/backup:backupsection 1 1612889053 0 +16 1 3 moodle/backup:backupactivity 1 1612889053 0 +17 1 1 moodle/backup:backupactivity 1 1612889053 0 +18 1 3 moodle/backup:backuptargetimport 1 1612889053 0 +19 1 1 moodle/backup:backuptargetimport 1 1612889053 0 +20 1 3 moodle/backup:downloadfile 1 1612889053 0 +21 1 1 moodle/backup:downloadfile 1 1612889053 0 +22 1 3 moodle/backup:configure 1 1612889053 0 +23 1 1 moodle/backup:configure 1 1612889053 0 +24 1 1 moodle/backup:userinfo 1 1612889053 0 +25 1 1 moodle/backup:anonymise 1 1612889053 0 +26 1 3 moodle/restore:restorecourse 1 1612889053 0 +27 1 1 moodle/restore:restorecourse 1 1612889053 0 +28 1 3 moodle/restore:restoresection 1 1612889053 0 +29 1 1 moodle/restore:restoresection 1 1612889053 0 +30 1 3 moodle/restore:restoreactivity 1 1612889053 0 +31 1 1 moodle/restore:restoreactivity 1 1612889053 0 +32 1 3 moodle/restore:viewautomatedfilearea 1 1612889053 0 +33 1 1 moodle/restore:viewautomatedfilearea 1 1612889053 0 +34 1 3 moodle/restore:restoretargetimport 1 1612889053 0 +35 1 1 moodle/restore:restoretargetimport 1 1612889053 0 +36 1 3 moodle/restore:uploadfile 1 1612889053 0 +37 1 1 moodle/restore:uploadfile 1 1612889053 0 +38 1 3 moodle/restore:configure 1 1612889053 0 +39 1 1 moodle/restore:configure 1 1612889053 0 +40 1 2 moodle/restore:rolldates 1 1612889053 0 +41 1 1 moodle/restore:rolldates 1 1612889053 0 +42 1 1 moodle/restore:userinfo 1 1612889053 0 +43 1 1 moodle/restore:createuser 1 1612889053 0 +44 1 3 moodle/site:manageblocks 1 1612889053 0 +45 1 1 moodle/site:manageblocks 1 1612889053 0 +46 1 3 moodle/site:accessallgroups 1 1612889053 0 +47 1 1 moodle/site:accessallgroups 1 1612889053 0 +48 1 1 moodle/site:viewanonymousevents 1 1612889053 0 +49 1 4 moodle/site:viewfullnames 1 1612889053 0 +50 1 3 moodle/site:viewfullnames 1 1612889053 0 +51 1 1 moodle/site:viewfullnames 1 1612889053 0 +52 1 4 moodle/site:viewuseridentity 1 1612889053 0 +53 1 3 moodle/site:viewuseridentity 1 1612889053 0 +54 1 1 moodle/site:viewuseridentity 1 1612889053 0 +55 1 4 moodle/site:viewreports 1 1612889053 0 +56 1 3 moodle/site:viewreports 1 1612889053 0 +57 1 1 moodle/site:viewreports 1 1612889053 0 +58 1 3 moodle/site:trustcontent 1 1612889053 0 +59 1 1 moodle/site:trustcontent 1 1612889053 0 +60 1 1 moodle/site:uploadusers 1 1612889053 0 +61 1 3 moodle/filter:manage 1 1612889053 0 +62 1 1 moodle/filter:manage 1 1612889053 0 +63 1 1 moodle/user:create 1 1612889053 0 +64 1 1 moodle/user:delete 1 1612889053 0 +65 1 1 moodle/user:update 1 1612889053 0 +66 1 6 moodle/user:viewdetails 1 1612889053 0 +67 1 5 moodle/user:viewdetails 1 1612889053 0 +68 1 4 moodle/user:viewdetails 1 1612889053 0 +69 1 3 moodle/user:viewdetails 1 1612889053 0 +70 1 1 moodle/user:viewdetails 1 1612889053 0 +71 1 1 moodle/user:viewalldetails 1 1612889053 0 +72 1 1 moodle/user:viewlastip 1 1612889053 0 +73 1 4 moodle/user:viewhiddendetails 1 1612889053 0 +74 1 3 moodle/user:viewhiddendetails 1 1612889053 0 +75 1 1 moodle/user:viewhiddendetails 1 1612889053 0 +76 1 1 moodle/user:loginas 1 1612889053 0 +77 1 1 moodle/user:managesyspages 1 1612889053 0 +78 1 7 moodle/user:manageownblocks 1 1612889053 0 +79 1 7 moodle/user:manageownfiles 1 1612889053 0 +80 1 1 moodle/my:configsyspages 1 1612889053 0 +81 1 3 moodle/role:assign 1 1612889053 0 +82 1 1 moodle/role:assign 1 1612889053 0 +83 1 4 moodle/role:review 1 1612889053 0 +84 1 3 moodle/role:review 1 1612889053 0 +85 1 1 moodle/role:review 1 1612889054 0 +86 1 1 moodle/role:override 1 1612889054 0 +87 1 3 moodle/role:safeoverride 1 1612889054 0 +88 1 1 moodle/role:manage 1 1612889054 0 +89 1 3 moodle/role:switchroles 1 1612889054 0 +90 1 1 moodle/role:switchroles 1 1612889054 0 +91 1 1 moodle/category:manage 1 1612889054 0 +92 1 6 moodle/category:viewcourselist 1 1612889054 0 +93 1 7 moodle/category:viewcourselist 1 1612889054 0 +94 1 2 moodle/category:viewhiddencategories 1 1612889054 0 +95 1 1 moodle/category:viewhiddencategories 1 1612889054 0 +96 1 1 moodle/cohort:manage 1 1612889054 0 +97 1 1 moodle/cohort:assign 1 1612889054 0 +98 1 3 moodle/cohort:view 1 1612889054 0 +99 1 1 moodle/cohort:view 1 1612889054 0 +100 1 2 moodle/course:create 1 1612889054 0 +101 1 1 moodle/course:create 1 1612889054 0 +102 1 3 moodle/course:creategroupconversations 1 1612889054 0 +103 1 1 moodle/course:creategroupconversations 1 1612889054 0 +104 1 1 moodle/course:delete 1 1612889054 0 +105 1 3 moodle/course:update 1 1612889054 0 +106 1 1 moodle/course:update 1 1612889054 0 +107 1 1 moodle/course:view 1 1612889054 0 +108 1 3 moodle/course:enrolreview 1 1612889054 0 +109 1 1 moodle/course:enrolreview 1 1612889054 0 +110 1 3 moodle/course:enrolconfig 1 1612889054 0 +111 1 1 moodle/course:enrolconfig 1 1612889054 0 +112 1 3 moodle/course:reviewotherusers 1 1612889054 0 +113 1 1 moodle/course:reviewotherusers 1 1612889054 0 +114 1 4 moodle/course:bulkmessaging 1 1612889054 0 +115 1 3 moodle/course:bulkmessaging 1 1612889054 0 +116 1 1 moodle/course:bulkmessaging 1 1612889054 0 +117 1 4 moodle/course:viewhiddenuserfields 1 1612889054 0 +118 1 3 moodle/course:viewhiddenuserfields 1 1612889054 0 +119 1 1 moodle/course:viewhiddenuserfields 1 1612889054 0 +120 1 2 moodle/course:viewhiddencourses 1 1612889054 0 +121 1 4 moodle/course:viewhiddencourses 1 1612889054 0 +122 1 3 moodle/course:viewhiddencourses 1 1612889054 0 +123 1 1 moodle/course:viewhiddencourses 1 1612889054 0 +124 1 3 moodle/course:visibility 1 1612889054 0 +125 1 1 moodle/course:visibility 1 1612889054 0 +126 1 3 moodle/course:managefiles 1 1612889054 0 +127 1 1 moodle/course:managefiles 1 1612889054 0 +128 1 1 moodle/course:ignoreavailabilityrestrictions 1 1612889054 0 +129 1 2 moodle/course:ignoreavailabilityrestrictions 1 1612889054 0 +130 1 3 moodle/course:ignoreavailabilityrestrictions 1 1612889054 0 +131 1 4 moodle/course:ignoreavailabilityrestrictions 1 1612889054 0 +132 1 3 moodle/course:manageactivities 1 1612889054 0 +133 1 1 moodle/course:manageactivities 1 1612889054 0 +134 1 3 moodle/course:activityvisibility 1 1612889054 0 +135 1 1 moodle/course:activityvisibility 1 1612889054 0 +136 1 4 moodle/course:viewhiddenactivities 1 1612889054 0 +137 1 3 moodle/course:viewhiddenactivities 1 1612889054 0 +138 1 1 moodle/course:viewhiddenactivities 1 1612889054 0 +139 1 5 moodle/course:viewparticipants 1 1612889054 0 +140 1 4 moodle/course:viewparticipants 1 1612889054 0 +141 1 3 moodle/course:viewparticipants 1 1612889054 0 +142 1 1 moodle/course:viewparticipants 1 1612889054 0 +143 1 3 moodle/course:changefullname 1 1612889054 0 +144 1 1 moodle/course:changefullname 1 1612889054 0 +145 1 3 moodle/course:changeshortname 1 1612889054 0 +146 1 1 moodle/course:changeshortname 1 1612889054 0 +147 1 1 moodle/course:changelockedcustomfields 1 1612889054 0 +148 1 3 moodle/course:renameroles 1 1612889054 0 +149 1 1 moodle/course:renameroles 1 1612889054 0 +150 1 3 moodle/course:changeidnumber 1 1612889054 0 +151 1 1 moodle/course:changeidnumber 1 1612889054 0 +152 1 3 moodle/course:changecategory 1 1612889054 0 +153 1 1 moodle/course:changecategory 1 1612889054 0 +154 1 3 moodle/course:changesummary 1 1612889054 0 +155 1 1 moodle/course:changesummary 1 1612889054 0 +156 1 3 moodle/course:setforcedlanguage 1 1612889054 0 +157 1 1 moodle/course:setforcedlanguage 1 1612889054 0 +158 1 1 moodle/site:viewparticipants 1 1612889054 0 +159 1 5 moodle/course:isincompletionreports 1 1612889054 0 +160 1 5 moodle/course:viewscales 1 1612889054 0 +161 1 4 moodle/course:viewscales 1 1612889054 0 +162 1 3 moodle/course:viewscales 1 1612889054 0 +163 1 1 moodle/course:viewscales 1 1612889054 0 +164 1 3 moodle/course:managescales 1 1612889054 0 +165 1 1 moodle/course:managescales 1 1612889054 0 +166 1 3 moodle/course:managegroups 1 1612889054 0 +167 1 1 moodle/course:managegroups 1 1612889054 0 +168 1 3 moodle/course:reset 1 1612889054 0 +169 1 1 moodle/course:reset 1 1612889054 0 +170 1 3 moodle/course:viewsuspendedusers 1 1612889054 0 +171 1 1 moodle/course:viewsuspendedusers 1 1612889054 0 +172 1 1 moodle/course:tag 1 1612889054 0 +173 1 3 moodle/course:tag 1 1612889054 0 +174 1 6 moodle/blog:view 1 1612889054 0 +175 1 7 moodle/blog:view 1 1612889054 0 +176 1 5 moodle/blog:view 1 1612889054 0 +177 1 4 moodle/blog:view 1 1612889054 0 +178 1 3 moodle/blog:view 1 1612889055 0 +179 1 1 moodle/blog:view 1 1612889055 0 +180 1 6 moodle/blog:search 1 1612889055 0 +181 1 7 moodle/blog:search 1 1612889055 0 +182 1 5 moodle/blog:search 1 1612889055 0 +183 1 4 moodle/blog:search 1 1612889055 0 +184 1 3 moodle/blog:search 1 1612889055 0 +185 1 1 moodle/blog:search 1 1612889055 0 +186 1 1 moodle/blog:viewdrafts 1 1612889055 0 +187 1 7 moodle/blog:create 1 1612889055 0 +188 1 1 moodle/blog:create 1 1612889055 0 +189 1 4 moodle/blog:manageentries 1 1612889055 0 +190 1 3 moodle/blog:manageentries 1 1612889055 0 +191 1 1 moodle/blog:manageentries 1 1612889055 0 +192 1 5 moodle/blog:manageexternal 1 1612889055 0 +193 1 7 moodle/blog:manageexternal 1 1612889055 0 +194 1 4 moodle/blog:manageexternal 1 1612889055 0 +195 1 3 moodle/blog:manageexternal 1 1612889055 0 +196 1 1 moodle/blog:manageexternal 1 1612889055 0 +197 1 7 moodle/calendar:manageownentries 1 1612889055 0 +198 1 1 moodle/calendar:manageownentries 1 1612889055 0 +199 1 4 moodle/calendar:managegroupentries 1 1612889055 0 +200 1 3 moodle/calendar:managegroupentries 1 1612889055 0 +201 1 1 moodle/calendar:managegroupentries 1 1612889055 0 +202 1 4 moodle/calendar:manageentries 1 1612889055 0 +203 1 3 moodle/calendar:manageentries 1 1612889055 0 +204 1 1 moodle/calendar:manageentries 1 1612889055 0 +205 1 1 moodle/user:editprofile 1 1612889055 0 +206 1 6 moodle/user:editownprofile -1000 1612889055 0 +207 1 7 moodle/user:editownprofile 1 1612889055 0 +208 1 1 moodle/user:editownprofile 1 1612889055 0 +209 1 6 moodle/user:changeownpassword -1000 1612889055 0 +210 1 7 moodle/user:changeownpassword 1 1612889055 0 +211 1 1 moodle/user:changeownpassword 1 1612889055 0 +212 1 5 moodle/user:readuserposts 1 1612889055 0 +213 1 4 moodle/user:readuserposts 1 1612889055 0 +214 1 3 moodle/user:readuserposts 1 1612889055 0 +215 1 1 moodle/user:readuserposts 1 1612889055 0 +216 1 5 moodle/user:readuserblogs 1 1612889055 0 +217 1 4 moodle/user:readuserblogs 1 1612889055 0 +218 1 3 moodle/user:readuserblogs 1 1612889055 0 +219 1 1 moodle/user:readuserblogs 1 1612889055 0 +220 1 1 moodle/user:editmessageprofile 1 1612889055 0 +221 1 6 moodle/user:editownmessageprofile -1000 1612889055 0 +222 1 7 moodle/user:editownmessageprofile 1 1612889055 0 +223 1 1 moodle/user:editownmessageprofile 1 1612889055 0 +224 1 3 moodle/question:managecategory 1 1612889055 0 +225 1 1 moodle/question:managecategory 1 1612889055 0 +226 1 3 moodle/question:add 1 1612889055 0 +227 1 1 moodle/question:add 1 1612889055 0 +228 1 3 moodle/question:editmine 1 1612889055 0 +229 1 1 moodle/question:editmine 1 1612889055 0 +230 1 3 moodle/question:editall 1 1612889055 0 +231 1 1 moodle/question:editall 1 1612889055 0 +232 1 3 moodle/question:viewmine 1 1612889055 0 +233 1 1 moodle/question:viewmine 1 1612889055 0 +234 1 3 moodle/question:viewall 1 1612889055 0 +235 1 1 moodle/question:viewall 1 1612889055 0 +236 1 3 moodle/question:usemine 1 1612889055 0 +237 1 1 moodle/question:usemine 1 1612889055 0 +238 1 3 moodle/question:useall 1 1612889055 0 +239 1 1 moodle/question:useall 1 1612889055 0 +240 1 3 moodle/question:movemine 1 1612889055 0 +241 1 1 moodle/question:movemine 1 1612889055 0 +242 1 3 moodle/question:moveall 1 1612889055 0 +243 1 1 moodle/question:moveall 1 1612889055 0 +244 1 1 moodle/question:config 1 1612889055 0 +245 1 5 moodle/question:flag 1 1612889055 0 +246 1 4 moodle/question:flag 1 1612889055 0 +247 1 3 moodle/question:flag 1 1612889055 0 +248 1 1 moodle/question:flag 1 1612889055 0 +249 1 3 moodle/question:tagmine 1 1612889055 0 +250 1 1 moodle/question:tagmine 1 1612889055 0 +251 1 3 moodle/question:tagall 1 1612889055 0 +252 1 1 moodle/question:tagall 1 1612889055 0 +253 1 4 moodle/site:doclinks 1 1612889055 0 +254 1 3 moodle/site:doclinks 1 1612889055 0 +255 1 1 moodle/site:doclinks 1 1612889055 0 +256 1 3 moodle/course:sectionvisibility 1 1612889055 0 +257 1 1 moodle/course:sectionvisibility 1 1612889055 0 +258 1 3 moodle/course:useremail 1 1612889055 0 +259 1 1 moodle/course:useremail 1 1612889055 0 +260 1 3 moodle/course:viewhiddensections 1 1612889055 0 +261 1 1 moodle/course:viewhiddensections 1 1612889055 0 +262 1 3 moodle/course:setcurrentsection 1 1612889055 0 +263 1 1 moodle/course:setcurrentsection 1 1612889055 0 +264 1 3 moodle/course:movesections 1 1612889055 0 +265 1 1 moodle/course:movesections 1 1612889055 0 +266 1 4 moodle/grade:viewall 1 1612889055 0 +267 1 3 moodle/grade:viewall 1 1612889055 0 +268 1 1 moodle/grade:viewall 1 1612889055 0 +269 1 5 moodle/grade:view 1 1612889056 0 +270 1 4 moodle/grade:viewhidden 1 1612889056 0 +271 1 3 moodle/grade:viewhidden 1 1612889056 0 +272 1 1 moodle/grade:viewhidden 1 1612889056 0 +273 1 3 moodle/grade:import 1 1612889056 0 +274 1 1 moodle/grade:import 1 1612889056 0 +275 1 4 moodle/grade:export 1 1612889056 0 +276 1 3 moodle/grade:export 1 1612889056 0 +277 1 1 moodle/grade:export 1 1612889056 0 +278 1 3 moodle/grade:manage 1 1612889056 0 +279 1 1 moodle/grade:manage 1 1612889056 0 +280 1 3 moodle/grade:edit 1 1612889056 0 +281 1 1 moodle/grade:edit 1 1612889056 0 +282 1 3 moodle/grade:managegradingforms 1 1612889056 0 +283 1 1 moodle/grade:managegradingforms 1 1612889056 0 +284 1 1 moodle/grade:sharegradingforms 1 1612889056 0 +285 1 1 moodle/grade:managesharedforms 1 1612889056 0 +286 1 3 moodle/grade:manageoutcomes 1 1612889056 0 +287 1 1 moodle/grade:manageoutcomes 1 1612889056 0 +288 1 3 moodle/grade:manageletters 1 1612889056 0 +289 1 1 moodle/grade:manageletters 1 1612889056 0 +290 1 3 moodle/grade:hide 1 1612889056 0 +291 1 1 moodle/grade:hide 1 1612889056 0 +292 1 3 moodle/grade:lock 1 1612889056 0 +293 1 1 moodle/grade:lock 1 1612889056 0 +294 1 3 moodle/grade:unlock 1 1612889056 0 +295 1 1 moodle/grade:unlock 1 1612889056 0 +296 1 7 moodle/my:manageblocks 1 1612889056 0 +297 1 4 moodle/notes:view 1 1612889056 0 +298 1 3 moodle/notes:view 1 1612889056 0 +299 1 1 moodle/notes:view 1 1612889056 0 +300 1 4 moodle/notes:manage 1 1612889056 0 +301 1 3 moodle/notes:manage 1 1612889056 0 +302 1 1 moodle/notes:manage 1 1612889056 0 +303 1 1 moodle/tag:manage 1 1612889056 0 +304 1 1 moodle/tag:edit 1 1612889056 0 +305 1 7 moodle/tag:flag 1 1612889056 0 +306 1 4 moodle/tag:editblocks 1 1612889056 0 +307 1 3 moodle/tag:editblocks 1 1612889056 0 +308 1 1 moodle/tag:editblocks 1 1612889056 0 +309 1 6 moodle/block:view 1 1612889056 0 +310 1 7 moodle/block:view 1 1612889056 0 +311 1 5 moodle/block:view 1 1612889056 0 +312 1 4 moodle/block:view 1 1612889056 0 +313 1 3 moodle/block:view 1 1612889056 0 +314 1 3 moodle/block:edit 1 1612889056 0 +315 1 1 moodle/block:edit 1 1612889056 0 +316 1 7 moodle/portfolio:export 1 1612889056 0 +317 1 5 moodle/portfolio:export 1 1612889056 0 +318 1 4 moodle/portfolio:export 1 1612889056 0 +319 1 3 moodle/portfolio:export 1 1612889056 0 +320 1 8 moodle/comment:view 1 1612889056 0 +321 1 6 moodle/comment:view 1 1612889056 0 +322 1 7 moodle/comment:view 1 1612889056 0 +323 1 5 moodle/comment:view 1 1612889056 0 +324 1 4 moodle/comment:view 1 1612889056 0 +325 1 3 moodle/comment:view 1 1612889056 0 +326 1 1 moodle/comment:view 1 1612889056 0 +327 1 7 moodle/comment:post 1 1612889056 0 +328 1 5 moodle/comment:post 1 1612889056 0 +329 1 4 moodle/comment:post 1 1612889056 0 +330 1 3 moodle/comment:post 1 1612889056 0 +331 1 1 moodle/comment:post 1 1612889056 0 +332 1 3 moodle/comment:delete 1 1612889056 0 +333 1 1 moodle/comment:delete 1 1612889056 0 +334 1 1 moodle/webservice:createtoken 1 1612889056 0 +335 1 7 moodle/webservice:createmobiletoken 1 1612889056 0 +336 1 7 moodle/rating:view 1 1612889056 0 +337 1 5 moodle/rating:view 1 1612889056 0 +338 1 4 moodle/rating:view 1 1612889056 0 +339 1 3 moodle/rating:view 1 1612889056 0 +340 1 1 moodle/rating:view 1 1612889056 0 +341 1 7 moodle/rating:viewany 1 1612889056 0 +342 1 5 moodle/rating:viewany 1 1612889056 0 +343 1 4 moodle/rating:viewany 1 1612889056 0 +344 1 3 moodle/rating:viewany 1 1612889056 0 +345 1 1 moodle/rating:viewany 1 1612889056 0 +346 1 7 moodle/rating:viewall 1 1612889056 0 +347 1 5 moodle/rating:viewall 1 1612889056 0 +348 1 4 moodle/rating:viewall 1 1612889056 0 +349 1 3 moodle/rating:viewall 1 1612889056 0 +350 1 1 moodle/rating:viewall 1 1612889056 0 +351 1 7 moodle/rating:rate 1 1612889056 0 +352 1 5 moodle/rating:rate 1 1612889056 0 +353 1 4 moodle/rating:rate 1 1612889056 0 +354 1 3 moodle/rating:rate 1 1612889056 0 +355 1 1 moodle/rating:rate 1 1612889056 0 +356 1 4 moodle/course:markcomplete 1 1612889056 0 +357 1 3 moodle/course:markcomplete 1 1612889056 0 +358 1 1 moodle/course:markcomplete 1 1612889056 0 +359 1 4 moodle/course:overridecompletion 1 1612889056 0 +360 1 3 moodle/course:overridecompletion 1 1612889056 0 +361 1 1 moodle/course:overridecompletion 1 1612889056 0 +362 1 1 moodle/badges:manageglobalsettings 1 1612889057 0 +363 1 7 moodle/badges:viewbadges 1 1612889057 0 +364 1 7 moodle/badges:manageownbadges 1 1612889057 0 +365 1 7 moodle/badges:viewotherbadges 1 1612889057 0 +366 1 7 moodle/badges:earnbadge 1 1612889057 0 +367 1 1 moodle/badges:createbadge 1 1612889057 0 +368 1 3 moodle/badges:createbadge 1 1612889057 0 +369 1 1 moodle/badges:deletebadge 1 1612889057 0 +370 1 3 moodle/badges:deletebadge 1 1612889057 0 +371 1 1 moodle/badges:configuredetails 1 1612889057 0 +372 1 3 moodle/badges:configuredetails 1 1612889057 0 +373 1 1 moodle/badges:configurecriteria 1 1612889057 0 +374 1 3 moodle/badges:configurecriteria 1 1612889057 0 +375 1 1 moodle/badges:configuremessages 1 1612889057 0 +376 1 3 moodle/badges:configuremessages 1 1612889057 0 +377 1 1 moodle/badges:awardbadge 1 1612889057 0 +378 1 4 moodle/badges:awardbadge 1 1612889057 0 +379 1 3 moodle/badges:awardbadge 1 1612889057 0 +380 1 1 moodle/badges:revokebadge 1 1612889057 0 +381 1 4 moodle/badges:revokebadge 1 1612889057 0 +382 1 3 moodle/badges:revokebadge 1 1612889057 0 +383 1 1 moodle/badges:viewawarded 1 1612889057 0 +384 1 4 moodle/badges:viewawarded 1 1612889057 0 +385 1 3 moodle/badges:viewawarded 1 1612889057 0 +386 1 6 moodle/search:query 1 1612889057 0 +387 1 7 moodle/search:query 1 1612889057 0 +388 1 5 moodle/search:query 1 1612889057 0 +389 1 4 moodle/search:query 1 1612889057 0 +390 1 3 moodle/search:query 1 1612889057 0 +391 1 1 moodle/search:query 1 1612889057 0 +392 1 1 moodle/competency:competencymanage 1 1612889057 0 +393 1 7 moodle/competency:competencyview 1 1612889057 0 +394 1 3 moodle/competency:competencygrade 1 1612889057 0 +395 1 4 moodle/competency:competencygrade 1 1612889057 0 +396 1 1 moodle/competency:competencygrade 1 1612889057 0 +397 1 3 moodle/competency:coursecompetencymanage 1 1612889057 0 +398 1 1 moodle/competency:coursecompetencymanage 1 1612889057 0 +399 1 1 moodle/competency:coursecompetencyconfigure 1 1612889057 0 +400 1 5 moodle/competency:coursecompetencygradable 1 1612889057 0 +401 1 7 moodle/competency:coursecompetencyview 1 1612889057 0 +402 1 1 moodle/competency:planmanage 1 1612889057 0 +403 1 1 moodle/competency:planmanagedraft 1 1612889057 0 +404 1 1 moodle/competency:planview 1 1612889057 0 +405 1 1 moodle/competency:planviewdraft 1 1612889057 0 +406 1 7 moodle/competency:planviewown 1 1612889057 0 +407 1 1 moodle/competency:planrequestreview 1 1612889057 0 +408 1 7 moodle/competency:planrequestreviewown 1 1612889057 0 +409 1 1 moodle/competency:planreview 1 1612889057 0 +410 1 1 moodle/competency:plancomment 1 1612889057 0 +411 1 7 moodle/competency:plancommentown 1 1612889057 0 +412 1 1 moodle/competency:usercompetencyview 1 1612889057 0 +413 1 3 moodle/competency:usercompetencyview 1 1612889057 0 +414 1 4 moodle/competency:usercompetencyview 1 1612889057 0 +415 1 1 moodle/competency:usercompetencyrequestreview 1 1612889057 0 +416 1 7 moodle/competency:usercompetencyrequestreviewown 1 1612889057 0 +417 1 1 moodle/competency:usercompetencyreview 1 1612889057 0 +418 1 1 moodle/competency:usercompetencycomment 1 1612889057 0 +419 1 7 moodle/competency:usercompetencycommentown 1 1612889057 0 +420 1 1 moodle/competency:templatemanage 1 1612889057 0 +421 1 4 moodle/analytics:listinsights 1 1612889057 0 +422 1 3 moodle/analytics:listinsights 1 1612889057 0 +423 1 1 moodle/analytics:listinsights 1 1612889057 0 +424 1 1 moodle/analytics:managemodels 1 1612889057 0 +425 1 1 moodle/competency:templateview 1 1612889057 0 +426 1 1 moodle/competency:userevidencemanage 1 1612889057 0 +427 1 7 moodle/competency:userevidencemanageown 1 1612889057 0 +428 1 1 moodle/competency:userevidenceview 1 1612889057 0 +429 1 4 moodle/site:messageanyuser 1 1612889057 0 +430 1 3 moodle/site:messageanyuser 1 1612889057 0 +431 1 1 moodle/site:messageanyuser 1 1612889057 0 +432 1 7 moodle/course:togglecompletion 1 1612889057 0 +433 1 7 moodle/analytics:listowninsights 1 1612889057 0 +434 1 3 moodle/h5p:setdisplayoptions 1 1612889057 0 +435 1 1 moodle/h5p:deploy 1 1612889057 0 +436 1 3 moodle/h5p:deploy 1 1612889057 0 +437 1 1 moodle/h5p:updatelibraries 1 1612889057 0 +438 1 1 moodle/course:recommendactivity 1 1612889057 0 +439 1 1 moodle/contentbank:access 1 1612889057 0 +440 1 2 moodle/contentbank:access 1 1612889057 0 +441 1 3 moodle/contentbank:access 1 1612889057 0 +442 1 1 moodle/contentbank:upload 1 1612889057 0 +443 1 2 moodle/contentbank:upload 1 1612889057 0 +444 1 3 moodle/contentbank:upload 1 1612889057 0 +445 1 1 moodle/contentbank:deleteanycontent 1 1612889057 0 +446 1 2 moodle/contentbank:deleteanycontent 1 1612889058 0 +447 1 7 moodle/contentbank:deleteowncontent 1 1612889058 0 +448 1 1 moodle/contentbank:manageanycontent 1 1612889058 0 +449 1 2 moodle/contentbank:manageanycontent 1 1612889058 0 +450 1 1 moodle/contentbank:manageowncontent 1 1612889058 0 +451 1 2 moodle/contentbank:manageowncontent 1 1612889058 0 +452 1 3 moodle/contentbank:manageowncontent 1 1612889058 0 +453 1 1 moodle/contentbank:useeditor 1 1612889058 0 +454 1 2 moodle/contentbank:useeditor 1 1612889058 0 +455 1 3 moodle/contentbank:useeditor 1 1612889058 0 +456 1 1 moodle/contentbank:downloadcontent 1 1612889058 0 +457 1 2 moodle/contentbank:downloadcontent 1 1612889058 0 +458 1 3 moodle/contentbank:downloadcontent 1 1612889058 0 +459 1 5 moodle/course:downloadcoursecontent 1 1612889058 0 +460 1 4 moodle/course:downloadcoursecontent 1 1612889058 0 +461 1 3 moodle/course:downloadcoursecontent 1 1612889058 0 +462 1 1 moodle/course:downloadcoursecontent 1 1612889058 0 +463 1 3 moodle/course:configuredownloadcontent 1 1612889058 0 +464 1 1 moodle/course:configuredownloadcontent 1 1612889058 0 +465 1 6 mod/assign:view 1 1612889068 0 +466 1 5 mod/assign:view 1 1612889068 0 +467 1 4 mod/assign:view 1 1612889068 0 +468 1 3 mod/assign:view 1 1612889068 0 +469 1 1 mod/assign:view 1 1612889068 0 +470 1 5 mod/assign:submit 1 1612889069 0 +471 1 4 mod/assign:grade 1 1612889069 0 +472 1 3 mod/assign:grade 1 1612889069 0 +473 1 1 mod/assign:grade 1 1612889069 0 +474 1 4 mod/assign:exportownsubmission 1 1612889069 0 +475 1 3 mod/assign:exportownsubmission 1 1612889069 0 +476 1 1 mod/assign:exportownsubmission 1 1612889069 0 +477 1 5 mod/assign:exportownsubmission 1 1612889069 0 +478 1 1 mod/assign:addinstance 1 1612889069 0 +479 1 3 mod/assign:addinstance 1 1612889069 0 +480 1 4 mod/assign:grantextension 1 1612889069 0 +481 1 3 mod/assign:grantextension 1 1612889069 0 +482 1 1 mod/assign:grantextension 1 1612889069 0 +483 1 3 mod/assign:revealidentities 1 1612889069 0 +484 1 1 mod/assign:revealidentities 1 1612889069 0 +485 1 1 mod/assign:reviewgrades 1 1612889069 0 +486 1 3 mod/assign:reviewgrades 1 1612889069 0 +487 1 1 mod/assign:releasegrades 1 1612889069 0 +488 1 3 mod/assign:releasegrades 1 1612889069 0 +489 1 1 mod/assign:managegrades 1 1612889069 0 +490 1 3 mod/assign:managegrades 1 1612889069 0 +491 1 1 mod/assign:manageallocations 1 1612889069 0 +492 1 3 mod/assign:manageallocations 1 1612889069 0 +493 1 3 mod/assign:viewgrades 1 1612889069 0 +494 1 1 mod/assign:viewgrades 1 1612889069 0 +495 1 4 mod/assign:viewgrades 1 1612889069 0 +496 1 1 mod/assign:viewblinddetails 1 1612889069 0 +497 1 4 mod/assign:receivegradernotifications 1 1612889069 0 +498 1 3 mod/assign:receivegradernotifications 1 1612889069 0 +499 1 1 mod/assign:receivegradernotifications 1 1612889069 0 +500 1 3 mod/assign:manageoverrides 1 1612889069 0 +501 1 1 mod/assign:manageoverrides 1 1612889069 0 +502 1 4 mod/assign:showhiddengrader 1 1612889069 0 +503 1 3 mod/assign:showhiddengrader 1 1612889069 0 +504 1 1 mod/assign:showhiddengrader 1 1612889069 0 +505 1 6 mod/assignment:view 1 1612889069 0 +506 1 5 mod/assignment:view 1 1612889069 0 +507 1 4 mod/assignment:view 1 1612889069 0 +508 1 3 mod/assignment:view 1 1612889069 0 +509 1 1 mod/assignment:view 1 1612889069 0 +510 1 1 mod/assignment:addinstance 1 1612889069 0 +511 1 3 mod/assignment:addinstance 1 1612889069 0 +512 1 5 mod/assignment:submit 1 1612889069 0 +513 1 4 mod/assignment:grade 1 1612889069 0 +514 1 3 mod/assignment:grade 1 1612889069 0 +515 1 1 mod/assignment:grade 1 1612889069 0 +516 1 4 mod/assignment:exportownsubmission 1 1612889069 0 +517 1 3 mod/assignment:exportownsubmission 1 1612889069 0 +518 1 1 mod/assignment:exportownsubmission 1 1612889069 0 +519 1 5 mod/assignment:exportownsubmission 1 1612889069 0 +520 1 1 mod/book:addinstance 1 1612889069 0 +521 1 3 mod/book:addinstance 1 1612889069 0 +522 1 6 mod/book:read 1 1612889069 0 +523 1 8 mod/book:read 1 1612889069 0 +524 1 5 mod/book:read 1 1612889069 0 +525 1 4 mod/book:read 1 1612889069 0 +526 1 3 mod/book:read 1 1612889069 0 +527 1 1 mod/book:read 1 1612889069 0 +528 1 4 mod/book:viewhiddenchapters 1 1612889069 0 +529 1 3 mod/book:viewhiddenchapters 1 1612889069 0 +530 1 1 mod/book:viewhiddenchapters 1 1612889070 0 +531 1 3 mod/book:edit 1 1612889070 0 +532 1 1 mod/book:edit 1 1612889070 0 +533 1 1 mod/chat:addinstance 1 1612889070 0 +534 1 3 mod/chat:addinstance 1 1612889070 0 +535 1 5 mod/chat:chat 1 1612889070 0 +536 1 4 mod/chat:chat 1 1612889070 0 +537 1 3 mod/chat:chat 1 1612889070 0 +538 1 1 mod/chat:chat 1 1612889070 0 +539 1 5 mod/chat:readlog 1 1612889070 0 +540 1 4 mod/chat:readlog 1 1612889070 0 +541 1 3 mod/chat:readlog 1 1612889070 0 +542 1 1 mod/chat:readlog 1 1612889070 0 +543 1 4 mod/chat:deletelog 1 1612889070 0 +544 1 3 mod/chat:deletelog 1 1612889070 0 +545 1 1 mod/chat:deletelog 1 1612889070 0 +546 1 4 mod/chat:exportparticipatedsession 1 1612889070 0 +547 1 3 mod/chat:exportparticipatedsession 1 1612889070 0 +548 1 1 mod/chat:exportparticipatedsession 1 1612889070 0 +549 1 4 mod/chat:exportsession 1 1612889070 0 +550 1 3 mod/chat:exportsession 1 1612889070 0 +551 1 1 mod/chat:exportsession 1 1612889070 0 +552 1 7 mod/chat:view 1 1612889070 0 +553 1 6 mod/chat:view 1 1612889070 0 +554 1 1 mod/choice:addinstance 1 1612889070 0 +555 1 3 mod/choice:addinstance 1 1612889070 0 +556 1 5 mod/choice:choose 1 1612889070 0 +557 1 4 mod/choice:choose 1 1612889070 0 +558 1 3 mod/choice:choose 1 1612889070 0 +559 1 4 mod/choice:readresponses 1 1612889070 0 +560 1 3 mod/choice:readresponses 1 1612889070 0 +561 1 1 mod/choice:readresponses 1 1612889070 0 +562 1 4 mod/choice:deleteresponses 1 1612889070 0 +563 1 3 mod/choice:deleteresponses 1 1612889070 0 +564 1 1 mod/choice:deleteresponses 1 1612889070 0 +565 1 4 mod/choice:downloadresponses 1 1612889070 0 +566 1 3 mod/choice:downloadresponses 1 1612889070 0 +567 1 1 mod/choice:downloadresponses 1 1612889070 0 +568 1 7 mod/choice:view 1 1612889070 0 +569 1 6 mod/choice:view 1 1612889070 0 +570 1 1 mod/data:addinstance 1 1612889070 0 +571 1 3 mod/data:addinstance 1 1612889070 0 +572 1 8 mod/data:viewentry 1 1612889070 0 +573 1 6 mod/data:viewentry 1 1612889070 0 +574 1 5 mod/data:viewentry 1 1612889070 0 +575 1 4 mod/data:viewentry 1 1612889071 0 +576 1 3 mod/data:viewentry 1 1612889071 0 +577 1 1 mod/data:viewentry 1 1612889071 0 +578 1 5 mod/data:writeentry 1 1612889071 0 +579 1 4 mod/data:writeentry 1 1612889071 0 +580 1 3 mod/data:writeentry 1 1612889071 0 +581 1 1 mod/data:writeentry 1 1612889071 0 +582 1 5 mod/data:comment 1 1612889071 0 +583 1 4 mod/data:comment 1 1612889071 0 +584 1 3 mod/data:comment 1 1612889071 0 +585 1 1 mod/data:comment 1 1612889071 0 +586 1 4 mod/data:rate 1 1612889071 0 +587 1 3 mod/data:rate 1 1612889071 0 +588 1 1 mod/data:rate 1 1612889071 0 +589 1 4 mod/data:viewrating 1 1612889071 0 +590 1 3 mod/data:viewrating 1 1612889071 0 +591 1 1 mod/data:viewrating 1 1612889071 0 +592 1 4 mod/data:viewanyrating 1 1612889071 0 +593 1 3 mod/data:viewanyrating 1 1612889071 0 +594 1 1 mod/data:viewanyrating 1 1612889071 0 +595 1 4 mod/data:viewallratings 1 1612889071 0 +596 1 3 mod/data:viewallratings 1 1612889071 0 +597 1 1 mod/data:viewallratings 1 1612889071 0 +598 1 4 mod/data:approve 1 1612889071 0 +599 1 3 mod/data:approve 1 1612889071 0 +600 1 1 mod/data:approve 1 1612889071 0 +601 1 4 mod/data:manageentries 1 1612889071 0 +602 1 3 mod/data:manageentries 1 1612889071 0 +603 1 1 mod/data:manageentries 1 1612889071 0 +604 1 4 mod/data:managecomments 1 1612889071 0 +605 1 3 mod/data:managecomments 1 1612889071 0 +606 1 1 mod/data:managecomments 1 1612889071 0 +607 1 3 mod/data:managetemplates 1 1612889071 0 +608 1 1 mod/data:managetemplates 1 1612889071 0 +609 1 4 mod/data:viewalluserpresets 1 1612889071 0 +610 1 3 mod/data:viewalluserpresets 1 1612889071 0 +611 1 1 mod/data:viewalluserpresets 1 1612889071 0 +612 1 1 mod/data:manageuserpresets 1 1612889071 0 +613 1 1 mod/data:exportentry 1 1612889071 0 +614 1 4 mod/data:exportentry 1 1612889071 0 +615 1 3 mod/data:exportentry 1 1612889071 0 +616 1 1 mod/data:exportownentry 1 1612889071 0 +617 1 4 mod/data:exportownentry 1 1612889071 0 +618 1 3 mod/data:exportownentry 1 1612889071 0 +619 1 5 mod/data:exportownentry 1 1612889071 0 +620 1 1 mod/data:exportallentries 1 1612889071 0 +621 1 4 mod/data:exportallentries 1 1612889071 0 +622 1 3 mod/data:exportallentries 1 1612889071 0 +623 1 1 mod/data:exportuserinfo 1 1612889071 0 +624 1 4 mod/data:exportuserinfo 1 1612889071 0 +625 1 3 mod/data:exportuserinfo 1 1612889071 0 +626 1 6 mod/data:view 1 1612889071 0 +627 1 5 mod/data:view 1 1612889071 0 +628 1 4 mod/data:view 1 1612889071 0 +629 1 3 mod/data:view 1 1612889071 0 +630 1 1 mod/data:view 1 1612889071 0 +631 1 1 mod/feedback:addinstance 1 1612889071 0 +632 1 3 mod/feedback:addinstance 1 1612889071 0 +633 1 6 mod/feedback:view 1 1612889071 0 +634 1 8 mod/feedback:view 1 1612889071 0 +635 1 5 mod/feedback:view 1 1612889071 0 +636 1 4 mod/feedback:view 1 1612889071 0 +637 1 3 mod/feedback:view 1 1612889071 0 +638 1 1 mod/feedback:view 1 1612889071 0 +639 1 8 mod/feedback:complete 1 1612889071 0 +640 1 5 mod/feedback:complete 1 1612889071 0 +641 1 5 mod/feedback:viewanalysepage 1 1612889071 0 +642 1 3 mod/feedback:viewanalysepage 1 1612889071 0 +643 1 1 mod/feedback:viewanalysepage 1 1612889071 0 +644 1 3 mod/feedback:deletesubmissions 1 1612889072 0 +645 1 1 mod/feedback:deletesubmissions 1 1612889072 0 +646 1 1 mod/feedback:mapcourse 1 1612889072 0 +647 1 3 mod/feedback:edititems 1 1612889072 0 +648 1 1 mod/feedback:edititems 1 1612889072 0 +649 1 3 mod/feedback:createprivatetemplate 1 1612889072 0 +650 1 1 mod/feedback:createprivatetemplate 1 1612889072 0 +651 1 3 mod/feedback:createpublictemplate 1 1612889072 0 +652 1 1 mod/feedback:createpublictemplate 1 1612889072 0 +653 1 3 mod/feedback:deletetemplate 1 1612889072 0 +654 1 1 mod/feedback:deletetemplate 1 1612889072 0 +655 1 4 mod/feedback:viewreports 1 1612889072 0 +656 1 3 mod/feedback:viewreports 1 1612889072 0 +657 1 1 mod/feedback:viewreports 1 1612889072 0 +658 1 4 mod/feedback:receivemail 1 1612889072 0 +659 1 3 mod/feedback:receivemail 1 1612889072 0 +660 1 1 mod/folder:addinstance 1 1612889072 0 +661 1 3 mod/folder:addinstance 1 1612889072 0 +662 1 6 mod/folder:view 1 1612889072 0 +663 1 7 mod/folder:view 1 1612889072 0 +664 1 3 mod/folder:managefiles 1 1612889072 0 +665 1 1 mod/forum:addinstance 1 1612889072 0 +666 1 3 mod/forum:addinstance 1 1612889072 0 +667 1 8 mod/forum:viewdiscussion 1 1612889072 0 +668 1 6 mod/forum:viewdiscussion 1 1612889072 0 +669 1 5 mod/forum:viewdiscussion 1 1612889072 0 +670 1 4 mod/forum:viewdiscussion 1 1612889072 0 +671 1 3 mod/forum:viewdiscussion 1 1612889072 0 +672 1 1 mod/forum:viewdiscussion 1 1612889072 0 +673 1 4 mod/forum:viewhiddentimedposts 1 1612889072 0 +674 1 3 mod/forum:viewhiddentimedposts 1 1612889072 0 +675 1 1 mod/forum:viewhiddentimedposts 1 1612889072 0 +676 1 5 mod/forum:startdiscussion 1 1612889072 0 +677 1 4 mod/forum:startdiscussion 1 1612889072 0 +678 1 3 mod/forum:startdiscussion 1 1612889072 0 +679 1 1 mod/forum:startdiscussion 1 1612889072 0 +680 1 5 mod/forum:replypost 1 1612889072 0 +681 1 4 mod/forum:replypost 1 1612889072 0 +682 1 3 mod/forum:replypost 1 1612889072 0 +683 1 1 mod/forum:replypost 1 1612889072 0 +684 1 4 mod/forum:addnews 1 1612889072 0 +685 1 3 mod/forum:addnews 1 1612889072 0 +686 1 1 mod/forum:addnews 1 1612889072 0 +687 1 4 mod/forum:replynews 1 1612889072 0 +688 1 3 mod/forum:replynews 1 1612889072 0 +689 1 1 mod/forum:replynews 1 1612889072 0 +690 1 5 mod/forum:viewrating 1 1612889072 0 +691 1 4 mod/forum:viewrating 1 1612889072 0 +692 1 3 mod/forum:viewrating 1 1612889072 0 +693 1 1 mod/forum:viewrating 1 1612889072 0 +694 1 4 mod/forum:viewanyrating 1 1612889072 0 +695 1 3 mod/forum:viewanyrating 1 1612889072 0 +696 1 1 mod/forum:viewanyrating 1 1612889072 0 +697 1 4 mod/forum:viewallratings 1 1612889072 0 +698 1 3 mod/forum:viewallratings 1 1612889072 0 +699 1 1 mod/forum:viewallratings 1 1612889072 0 +700 1 4 mod/forum:rate 1 1612889073 0 +701 1 3 mod/forum:rate 1 1612889073 0 +702 1 1 mod/forum:rate 1 1612889073 0 +703 1 4 mod/forum:postprivatereply 1 1612889073 0 +704 1 3 mod/forum:postprivatereply 1 1612889073 0 +705 1 1 mod/forum:postprivatereply 1 1612889073 0 +706 1 4 mod/forum:readprivatereplies 1 1612889073 0 +707 1 3 mod/forum:readprivatereplies 1 1612889073 0 +708 1 1 mod/forum:readprivatereplies 1 1612889073 0 +709 1 5 mod/forum:createattachment 1 1612889073 0 +710 1 4 mod/forum:createattachment 1 1612889073 0 +711 1 3 mod/forum:createattachment 1 1612889073 0 +712 1 1 mod/forum:createattachment 1 1612889073 0 +713 1 5 mod/forum:deleteownpost 1 1612889073 0 +714 1 4 mod/forum:deleteownpost 1 1612889073 0 +715 1 3 mod/forum:deleteownpost 1 1612889073 0 +716 1 1 mod/forum:deleteownpost 1 1612889073 0 +717 1 4 mod/forum:deleteanypost 1 1612889073 0 +718 1 3 mod/forum:deleteanypost 1 1612889073 0 +719 1 1 mod/forum:deleteanypost 1 1612889073 0 +720 1 4 mod/forum:splitdiscussions 1 1612889073 0 +721 1 3 mod/forum:splitdiscussions 1 1612889073 0 +722 1 1 mod/forum:splitdiscussions 1 1612889073 0 +723 1 4 mod/forum:movediscussions 1 1612889073 0 +724 1 3 mod/forum:movediscussions 1 1612889073 0 +725 1 1 mod/forum:movediscussions 1 1612889073 0 +726 1 4 mod/forum:pindiscussions 1 1612889073 0 +727 1 3 mod/forum:pindiscussions 1 1612889073 0 +728 1 1 mod/forum:pindiscussions 1 1612889073 0 +729 1 4 mod/forum:editanypost 1 1612889073 0 +730 1 3 mod/forum:editanypost 1 1612889073 0 +731 1 1 mod/forum:editanypost 1 1612889073 0 +732 1 4 mod/forum:viewqandawithoutposting 1 1612889073 0 +733 1 3 mod/forum:viewqandawithoutposting 1 1612889073 0 +734 1 1 mod/forum:viewqandawithoutposting 1 1612889073 0 +735 1 4 mod/forum:viewsubscribers 1 1612889073 0 +736 1 3 mod/forum:viewsubscribers 1 1612889073 0 +737 1 1 mod/forum:viewsubscribers 1 1612889073 0 +738 1 4 mod/forum:managesubscriptions 1 1612889073 0 +739 1 3 mod/forum:managesubscriptions 1 1612889073 0 +740 1 1 mod/forum:managesubscriptions 1 1612889073 0 +741 1 4 mod/forum:postwithoutthrottling 1 1612889073 0 +742 1 3 mod/forum:postwithoutthrottling 1 1612889073 0 +743 1 1 mod/forum:postwithoutthrottling 1 1612889073 0 +744 1 4 mod/forum:exportdiscussion 1 1612889073 0 +745 1 3 mod/forum:exportdiscussion 1 1612889073 0 +746 1 1 mod/forum:exportdiscussion 1 1612889073 0 +747 1 4 mod/forum:exportforum 1 1612889073 0 +748 1 3 mod/forum:exportforum 1 1612889073 0 +749 1 1 mod/forum:exportforum 1 1612889073 0 +750 1 4 mod/forum:exportpost 1 1612889073 0 +751 1 3 mod/forum:exportpost 1 1612889073 0 +752 1 1 mod/forum:exportpost 1 1612889073 0 +753 1 4 mod/forum:exportownpost 1 1612889073 0 +754 1 3 mod/forum:exportownpost 1 1612889073 0 +755 1 1 mod/forum:exportownpost 1 1612889073 0 +756 1 5 mod/forum:exportownpost 1 1612889073 0 +757 1 4 mod/forum:addquestion 1 1612889073 0 +758 1 3 mod/forum:addquestion 1 1612889073 0 +759 1 1 mod/forum:addquestion 1 1612889073 0 +760 1 5 mod/forum:allowforcesubscribe 1 1612889073 0 +761 1 4 mod/forum:allowforcesubscribe 1 1612889073 0 +762 1 3 mod/forum:allowforcesubscribe 1 1612889073 0 +763 1 8 mod/forum:allowforcesubscribe 1 1612889073 0 +764 1 4 mod/forum:canposttomygroups 1 1612889073 0 +765 1 3 mod/forum:canposttomygroups 1 1612889073 0 +766 1 1 mod/forum:canposttomygroups 1 1612889073 0 +767 1 4 mod/forum:canoverridediscussionlock 1 1612889073 0 +768 1 3 mod/forum:canoverridediscussionlock 1 1612889073 0 +769 1 1 mod/forum:canoverridediscussionlock 1 1612889073 0 +770 1 4 mod/forum:canoverridecutoff 1 1612889073 0 +771 1 3 mod/forum:canoverridecutoff 1 1612889073 0 +772 1 1 mod/forum:canoverridecutoff 1 1612889073 0 +773 1 7 mod/forum:cantogglefavourite 1 1612889073 0 +774 1 4 mod/forum:grade 1 1612889073 0 +775 1 3 mod/forum:grade 1 1612889073 0 +776 1 1 mod/forum:grade 1 1612889073 0 +777 1 1 mod/glossary:addinstance 1 1612889074 0 +778 1 3 mod/glossary:addinstance 1 1612889074 0 +779 1 8 mod/glossary:view 1 1612889074 0 +780 1 6 mod/glossary:view 1 1612889074 0 +781 1 5 mod/glossary:view 1 1612889074 0 +782 1 4 mod/glossary:view 1 1612889074 0 +783 1 3 mod/glossary:view 1 1612889074 0 +784 1 1 mod/glossary:view 1 1612889074 0 +785 1 5 mod/glossary:write 1 1612889074 0 +786 1 4 mod/glossary:write 1 1612889074 0 +787 1 3 mod/glossary:write 1 1612889074 0 +788 1 1 mod/glossary:write 1 1612889074 0 +789 1 4 mod/glossary:manageentries 1 1612889074 0 +790 1 3 mod/glossary:manageentries 1 1612889074 0 +791 1 1 mod/glossary:manageentries 1 1612889074 0 +792 1 4 mod/glossary:managecategories 1 1612889074 0 +793 1 3 mod/glossary:managecategories 1 1612889074 0 +794 1 1 mod/glossary:managecategories 1 1612889074 0 +795 1 5 mod/glossary:comment 1 1612889074 0 +796 1 4 mod/glossary:comment 1 1612889074 0 +797 1 3 mod/glossary:comment 1 1612889074 0 +798 1 1 mod/glossary:comment 1 1612889074 0 +799 1 4 mod/glossary:managecomments 1 1612889074 0 +800 1 3 mod/glossary:managecomments 1 1612889074 0 +801 1 1 mod/glossary:managecomments 1 1612889074 0 +802 1 4 mod/glossary:import 1 1612889074 0 +803 1 3 mod/glossary:import 1 1612889074 0 +804 1 1 mod/glossary:import 1 1612889074 0 +805 1 4 mod/glossary:export 1 1612889074 0 +806 1 3 mod/glossary:export 1 1612889074 0 +807 1 1 mod/glossary:export 1 1612889074 0 +808 1 4 mod/glossary:approve 1 1612889074 0 +809 1 3 mod/glossary:approve 1 1612889074 0 +810 1 1 mod/glossary:approve 1 1612889074 0 +811 1 4 mod/glossary:rate 1 1612889074 0 +812 1 3 mod/glossary:rate 1 1612889074 0 +813 1 1 mod/glossary:rate 1 1612889074 0 +814 1 4 mod/glossary:viewrating 1 1612889074 0 +815 1 3 mod/glossary:viewrating 1 1612889074 0 +816 1 1 mod/glossary:viewrating 1 1612889074 0 +817 1 4 mod/glossary:viewanyrating 1 1612889074 0 +818 1 3 mod/glossary:viewanyrating 1 1612889074 0 +819 1 1 mod/glossary:viewanyrating 1 1612889074 0 +820 1 4 mod/glossary:viewallratings 1 1612889074 0 +821 1 3 mod/glossary:viewallratings 1 1612889074 0 +822 1 1 mod/glossary:viewallratings 1 1612889074 0 +823 1 4 mod/glossary:exportentry 1 1612889074 0 +824 1 3 mod/glossary:exportentry 1 1612889074 0 +825 1 1 mod/glossary:exportentry 1 1612889074 0 +826 1 4 mod/glossary:exportownentry 1 1612889074 0 +827 1 3 mod/glossary:exportownentry 1 1612889074 0 +828 1 1 mod/glossary:exportownentry 1 1612889074 0 +829 1 5 mod/glossary:exportownentry 1 1612889074 0 +830 1 6 mod/h5pactivity:view 1 1612889074 0 +831 1 5 mod/h5pactivity:view 1 1612889074 0 +832 1 4 mod/h5pactivity:view 1 1612889074 0 +833 1 3 mod/h5pactivity:view 1 1612889074 0 +834 1 1 mod/h5pactivity:view 1 1612889074 0 +835 1 1 mod/h5pactivity:addinstance 1 1612889074 0 +836 1 3 mod/h5pactivity:addinstance 1 1612889074 0 +837 1 5 mod/h5pactivity:submit 1 1612889074 0 +838 1 1 mod/h5pactivity:reviewattempts 1 1612889074 0 +839 1 3 mod/h5pactivity:reviewattempts 1 1612889074 0 +840 1 6 mod/imscp:view 1 1612889075 0 +841 1 7 mod/imscp:view 1 1612889075 0 +842 1 1 mod/imscp:addinstance 1 1612889075 0 +843 1 3 mod/imscp:addinstance 1 1612889075 0 +844 1 1 mod/label:addinstance 1 1612889075 0 +845 1 3 mod/label:addinstance 1 1612889075 0 +846 1 7 mod/label:view 1 1612889075 0 +847 1 6 mod/label:view 1 1612889075 0 +848 1 1 mod/lesson:addinstance 1 1612889075 0 +849 1 3 mod/lesson:addinstance 1 1612889075 0 +850 1 3 mod/lesson:edit 1 1612889075 0 +851 1 1 mod/lesson:edit 1 1612889075 0 +852 1 4 mod/lesson:grade 1 1612889075 0 +853 1 3 mod/lesson:grade 1 1612889075 0 +854 1 1 mod/lesson:grade 1 1612889075 0 +855 1 4 mod/lesson:viewreports 1 1612889075 0 +856 1 3 mod/lesson:viewreports 1 1612889075 0 +857 1 1 mod/lesson:viewreports 1 1612889075 0 +858 1 4 mod/lesson:manage 1 1612889075 0 +859 1 3 mod/lesson:manage 1 1612889075 0 +860 1 1 mod/lesson:manage 1 1612889075 0 +861 1 3 mod/lesson:manageoverrides 1 1612889075 0 +862 1 1 mod/lesson:manageoverrides 1 1612889075 0 +863 1 7 mod/lesson:view 1 1612889075 0 +864 1 6 mod/lesson:view 1 1612889075 0 +865 1 5 mod/lti:view 1 1612889076 0 +866 1 4 mod/lti:view 1 1612889076 0 +867 1 3 mod/lti:view 1 1612889076 0 +868 1 1 mod/lti:view 1 1612889076 0 +869 1 1 mod/lti:addinstance 1 1612889076 0 +870 1 3 mod/lti:addinstance 1 1612889076 0 +871 1 4 mod/lti:manage 1 1612889076 0 +872 1 3 mod/lti:manage 1 1612889076 0 +873 1 1 mod/lti:manage 1 1612889076 0 +874 1 3 mod/lti:addcoursetool 1 1612889076 0 +875 1 1 mod/lti:addcoursetool 1 1612889076 0 +876 1 3 mod/lti:addpreconfiguredinstance 1 1612889076 0 +877 1 1 mod/lti:addpreconfiguredinstance 1 1612889076 0 +878 1 3 mod/lti:addmanualinstance 1 1612889076 0 +879 1 1 mod/lti:addmanualinstance 1 1612889076 0 +880 1 3 mod/lti:requesttooladd 1 1612889076 0 +881 1 1 mod/lti:requesttooladd 1 1612889076 0 +882 1 6 mod/page:view 1 1612889076 0 +883 1 7 mod/page:view 1 1612889076 0 +884 1 1 mod/page:addinstance 1 1612889076 0 +885 1 3 mod/page:addinstance 1 1612889076 0 +886 1 6 mod/quiz:view 1 1612889076 0 +887 1 5 mod/quiz:view 1 1612889076 0 +888 1 4 mod/quiz:view 1 1612889076 0 +889 1 3 mod/quiz:view 1 1612889076 0 +890 1 1 mod/quiz:view 1 1612889076 0 +891 1 1 mod/quiz:addinstance 1 1612889076 0 +892 1 3 mod/quiz:addinstance 1 1612889076 0 +893 1 5 mod/quiz:attempt 1 1612889076 0 +894 1 5 mod/quiz:reviewmyattempts 1 1612889076 0 +895 1 3 mod/quiz:manage 1 1612889076 0 +896 1 1 mod/quiz:manage 1 1612889076 0 +897 1 3 mod/quiz:manageoverrides 1 1612889076 0 +898 1 1 mod/quiz:manageoverrides 1 1612889076 0 +899 1 4 mod/quiz:preview 1 1612889076 0 +900 1 3 mod/quiz:preview 1 1612889076 0 +901 1 1 mod/quiz:preview 1 1612889076 0 +902 1 4 mod/quiz:grade 1 1612889076 0 +903 1 3 mod/quiz:grade 1 1612889076 0 +904 1 1 mod/quiz:grade 1 1612889076 0 +905 1 4 mod/quiz:regrade 1 1612889076 0 +906 1 3 mod/quiz:regrade 1 1612889076 0 +907 1 1 mod/quiz:regrade 1 1612889076 0 +908 1 4 mod/quiz:viewreports 1 1612889076 0 +909 1 3 mod/quiz:viewreports 1 1612889076 0 +910 1 1 mod/quiz:viewreports 1 1612889076 0 +911 1 3 mod/quiz:deleteattempts 1 1612889076 0 +912 1 1 mod/quiz:deleteattempts 1 1612889076 0 +913 1 6 mod/resource:view 1 1612889077 0 +914 1 7 mod/resource:view 1 1612889077 0 +915 1 1 mod/resource:addinstance 1 1612889077 0 +916 1 3 mod/resource:addinstance 1 1612889077 0 +917 1 1 mod/scorm:addinstance 1 1612889077 0 +918 1 3 mod/scorm:addinstance 1 1612889077 0 +919 1 4 mod/scorm:viewreport 1 1612889077 0 +920 1 3 mod/scorm:viewreport 1 1612889077 0 +921 1 1 mod/scorm:viewreport 1 1612889077 0 +922 1 5 mod/scorm:skipview 1 1612889077 0 +923 1 5 mod/scorm:savetrack 1 1612889077 0 +924 1 4 mod/scorm:savetrack 1 1612889077 0 +925 1 3 mod/scorm:savetrack 1 1612889077 0 +926 1 1 mod/scorm:savetrack 1 1612889077 0 +927 1 5 mod/scorm:viewscores 1 1612889077 0 +928 1 4 mod/scorm:viewscores 1 1612889077 0 +929 1 3 mod/scorm:viewscores 1 1612889077 0 +930 1 1 mod/scorm:viewscores 1 1612889077 0 +931 1 4 mod/scorm:deleteresponses 1 1612889077 0 +932 1 3 mod/scorm:deleteresponses 1 1612889077 0 +933 1 1 mod/scorm:deleteresponses 1 1612889077 0 +934 1 1 mod/survey:addinstance 1 1612889077 0 +935 1 3 mod/survey:addinstance 1 1612889077 0 +936 1 5 mod/survey:participate 1 1612889077 0 +937 1 4 mod/survey:participate 1 1612889077 0 +938 1 3 mod/survey:participate 1 1612889077 0 +939 1 1 mod/survey:participate 1 1612889077 0 +940 1 4 mod/survey:readresponses 1 1612889077 0 +941 1 3 mod/survey:readresponses 1 1612889077 0 +942 1 1 mod/survey:readresponses 1 1612889077 0 +943 1 4 mod/survey:download 1 1612889077 0 +944 1 3 mod/survey:download 1 1612889077 0 +945 1 1 mod/survey:download 1 1612889077 0 +946 1 6 mod/url:view 1 1612889078 0 +947 1 7 mod/url:view 1 1612889078 0 +948 1 1 mod/url:addinstance 1 1612889078 0 +949 1 3 mod/url:addinstance 1 1612889078 0 +950 1 1 mod/wiki:addinstance 1 1612889078 0 +951 1 3 mod/wiki:addinstance 1 1612889078 0 +952 1 6 mod/wiki:viewpage 1 1612889078 0 +953 1 8 mod/wiki:viewpage 1 1612889078 0 +954 1 5 mod/wiki:viewpage 1 1612889078 0 +955 1 4 mod/wiki:viewpage 1 1612889078 0 +956 1 3 mod/wiki:viewpage 1 1612889078 0 +957 1 1 mod/wiki:viewpage 1 1612889078 0 +958 1 5 mod/wiki:editpage 1 1612889078 0 +959 1 4 mod/wiki:editpage 1 1612889078 0 +960 1 3 mod/wiki:editpage 1 1612889078 0 +961 1 1 mod/wiki:editpage 1 1612889078 0 +962 1 5 mod/wiki:createpage 1 1612889078 0 +963 1 4 mod/wiki:createpage 1 1612889078 0 +964 1 3 mod/wiki:createpage 1 1612889078 0 +965 1 1 mod/wiki:createpage 1 1612889078 0 +966 1 5 mod/wiki:viewcomment 1 1612889078 0 +967 1 4 mod/wiki:viewcomment 1 1612889078 0 +968 1 3 mod/wiki:viewcomment 1 1612889078 0 +969 1 1 mod/wiki:viewcomment 1 1612889078 0 +970 1 5 mod/wiki:editcomment 1 1612889078 0 +971 1 4 mod/wiki:editcomment 1 1612889078 0 +972 1 3 mod/wiki:editcomment 1 1612889078 0 +973 1 1 mod/wiki:editcomment 1 1612889078 0 +974 1 4 mod/wiki:managecomment 1 1612889078 0 +975 1 3 mod/wiki:managecomment 1 1612889078 0 +976 1 1 mod/wiki:managecomment 1 1612889078 0 +977 1 4 mod/wiki:managefiles 1 1612889078 0 +978 1 3 mod/wiki:managefiles 1 1612889078 0 +979 1 1 mod/wiki:managefiles 1 1612889078 0 +980 1 4 mod/wiki:overridelock 1 1612889078 0 +981 1 3 mod/wiki:overridelock 1 1612889078 0 +982 1 1 mod/wiki:overridelock 1 1612889078 0 +983 1 4 mod/wiki:managewiki 1 1612889078 0 +984 1 3 mod/wiki:managewiki 1 1612889078 0 +985 1 1 mod/wiki:managewiki 1 1612889078 0 +986 1 6 mod/workshop:view 1 1612889078 0 +987 1 5 mod/workshop:view 1 1612889078 0 +988 1 4 mod/workshop:view 1 1612889078 0 +989 1 3 mod/workshop:view 1 1612889078 0 +990 1 1 mod/workshop:view 1 1612889078 0 +991 1 1 mod/workshop:addinstance 1 1612889078 0 +992 1 3 mod/workshop:addinstance 1 1612889078 0 +993 1 4 mod/workshop:switchphase 1 1612889078 0 +994 1 3 mod/workshop:switchphase 1 1612889078 0 +995 1 1 mod/workshop:switchphase 1 1612889078 0 +996 1 3 mod/workshop:editdimensions 1 1612889078 0 +997 1 1 mod/workshop:editdimensions 1 1612889079 0 +998 1 5 mod/workshop:submit 1 1612889079 0 +999 1 5 mod/workshop:peerassess 1 1612889079 0 +1000 1 4 mod/workshop:manageexamples 1 1612889079 0 +1001 1 3 mod/workshop:manageexamples 1 1612889079 0 +1002 1 1 mod/workshop:manageexamples 1 1612889079 0 +1003 1 4 mod/workshop:allocate 1 1612889079 0 +1004 1 3 mod/workshop:allocate 1 1612889079 0 +1005 1 1 mod/workshop:allocate 1 1612889079 0 +1006 1 4 mod/workshop:publishsubmissions 1 1612889079 0 +1007 1 3 mod/workshop:publishsubmissions 1 1612889079 0 +1008 1 1 mod/workshop:publishsubmissions 1 1612889079 0 +1009 1 5 mod/workshop:viewauthornames 1 1612889079 0 +1010 1 4 mod/workshop:viewauthornames 1 1612889079 0 +1011 1 3 mod/workshop:viewauthornames 1 1612889079 0 +1012 1 1 mod/workshop:viewauthornames 1 1612889079 0 +1013 1 4 mod/workshop:viewreviewernames 1 1612889079 0 +1014 1 3 mod/workshop:viewreviewernames 1 1612889079 0 +1015 1 1 mod/workshop:viewreviewernames 1 1612889079 0 +1016 1 4 mod/workshop:viewallsubmissions 1 1612889079 0 +1017 1 3 mod/workshop:viewallsubmissions 1 1612889079 0 +1018 1 1 mod/workshop:viewallsubmissions 1 1612889079 0 +1019 1 5 mod/workshop:viewpublishedsubmissions 1 1612889079 0 +1020 1 4 mod/workshop:viewpublishedsubmissions 1 1612889079 0 +1021 1 3 mod/workshop:viewpublishedsubmissions 1 1612889079 0 +1022 1 1 mod/workshop:viewpublishedsubmissions 1 1612889079 0 +1023 1 5 mod/workshop:viewauthorpublished 1 1612889079 0 +1024 1 4 mod/workshop:viewauthorpublished 1 1612889079 0 +1025 1 3 mod/workshop:viewauthorpublished 1 1612889079 0 +1026 1 1 mod/workshop:viewauthorpublished 1 1612889079 0 +1027 1 4 mod/workshop:viewallassessments 1 1612889079 0 +1028 1 3 mod/workshop:viewallassessments 1 1612889079 0 +1029 1 1 mod/workshop:viewallassessments 1 1612889079 0 +1030 1 4 mod/workshop:overridegrades 1 1612889079 0 +1031 1 3 mod/workshop:overridegrades 1 1612889079 0 +1032 1 1 mod/workshop:overridegrades 1 1612889079 0 +1033 1 4 mod/workshop:ignoredeadlines 1 1612889079 0 +1034 1 3 mod/workshop:ignoredeadlines 1 1612889079 0 +1035 1 1 mod/workshop:ignoredeadlines 1 1612889079 0 +1036 1 4 mod/workshop:deletesubmissions 1 1612889079 0 +1037 1 3 mod/workshop:deletesubmissions 1 1612889079 0 +1038 1 1 mod/workshop:deletesubmissions 1 1612889079 0 +1039 1 1 mod/workshop:exportsubmissions 1 1612889079 0 +1040 1 4 mod/workshop:exportsubmissions 1 1612889079 0 +1041 1 3 mod/workshop:exportsubmissions 1 1612889079 0 +1042 1 5 mod/workshop:exportsubmissions 1 1612889079 0 +1043 1 7 auth/oauth2:managelinkedlogins 1 1612889080 0 +1044 1 1 enrol/category:config 1 1612889080 0 +1045 1 3 enrol/category:config 1 1612889080 0 +1046 1 3 enrol/cohort:config 1 1612889080 0 +1047 1 1 enrol/cohort:config 1 1612889080 0 +1048 1 1 enrol/cohort:unenrol 1 1612889080 0 +1049 1 1 enrol/database:unenrol 1 1612889080 0 +1050 1 1 enrol/database:config 1 1612889080 0 +1051 1 3 enrol/database:config 1 1612889080 0 +1052 1 1 enrol/fee:config 1 1612889080 0 +1053 1 1 enrol/fee:manage 1 1612889080 0 +1054 1 3 enrol/fee:manage 1 1612889080 0 +1055 1 1 enrol/fee:unenrol 1 1612889080 0 +1056 1 1 enrol/guest:config 1 1612889081 0 +1057 1 3 enrol/guest:config 1 1612889081 0 +1058 1 1 enrol/imsenterprise:config 1 1612889081 0 +1059 1 3 enrol/imsenterprise:config 1 1612889081 0 +1060 1 1 enrol/ldap:manage 1 1612889081 0 +1061 1 1 enrol/lti:config 1 1612889081 0 +1062 1 3 enrol/lti:config 1 1612889081 0 +1063 1 1 enrol/lti:unenrol 1 1612889081 0 +1064 1 3 enrol/lti:unenrol 1 1612889081 0 +1065 1 1 enrol/manual:config 1 1612889081 0 +1066 1 1 enrol/manual:enrol 1 1612889081 0 +1067 1 3 enrol/manual:enrol 1 1612889081 0 +1068 1 1 enrol/manual:manage 1 1612889081 0 +1069 1 3 enrol/manual:manage 1 1612889081 0 +1070 1 1 enrol/manual:unenrol 1 1612889081 0 +1071 1 3 enrol/manual:unenrol 1 1612889081 0 +1072 1 1 enrol/meta:config 1 1612889081 0 +1073 1 3 enrol/meta:config 1 1612889081 0 +1074 1 1 enrol/meta:selectaslinked 1 1612889081 0 +1075 1 1 enrol/meta:unenrol 1 1612889081 0 +1076 1 1 enrol/mnet:config 1 1612889081 0 +1077 1 3 enrol/mnet:config 1 1612889081 0 +1078 1 1 enrol/paypal:config 1 1612889081 0 +1079 1 1 enrol/paypal:manage 1 1612889081 0 +1080 1 3 enrol/paypal:manage 1 1612889081 0 +1081 1 1 enrol/paypal:unenrol 1 1612889081 0 +1082 1 3 enrol/self:config 1 1612889081 0 +1083 1 1 enrol/self:config 1 1612889081 0 +1084 1 3 enrol/self:manage 1 1612889081 0 +1085 1 1 enrol/self:manage 1 1612889082 0 +1086 1 5 enrol/self:unenrolself 1 1612889082 0 +1087 1 3 enrol/self:unenrol 1 1612889082 0 +1088 1 1 enrol/self:unenrol 1 1612889082 0 +1089 1 7 enrol/self:enrolself 1 1612889082 0 +1090 1 7 message/airnotifier:managedevice 1 1612889082 0 +1091 1 1 block/activity_modules:addinstance 1 1612889082 0 +1092 1 3 block/activity_modules:addinstance 1 1612889082 0 +1093 1 1 block/activity_results:addinstance 1 1612889082 0 +1094 1 3 block/activity_results:addinstance 1 1612889082 0 +1095 1 7 block/admin_bookmarks:myaddinstance 1 1612889082 0 +1096 1 1 block/admin_bookmarks:addinstance 1 1612889082 0 +1097 1 3 block/admin_bookmarks:addinstance 1 1612889082 0 +1098 1 1 block/badges:addinstance 1 1612889083 0 +1099 1 3 block/badges:addinstance 1 1612889083 0 +1100 1 7 block/badges:myaddinstance 1 1612889083 0 +1101 1 1 block/blog_menu:addinstance 1 1612889083 0 +1102 1 3 block/blog_menu:addinstance 1 1612889083 0 +1103 1 1 block/blog_recent:addinstance 1 1612889083 0 +1104 1 3 block/blog_recent:addinstance 1 1612889083 0 +1105 1 1 block/blog_tags:addinstance 1 1612889083 0 +1106 1 3 block/blog_tags:addinstance 1 1612889083 0 +1107 1 7 block/calendar_month:myaddinstance 1 1612889083 0 +1108 1 1 block/calendar_month:addinstance 1 1612889083 0 +1109 1 3 block/calendar_month:addinstance 1 1612889083 0 +1110 1 7 block/calendar_upcoming:myaddinstance 1 1612889083 0 +1111 1 1 block/calendar_upcoming:addinstance 1 1612889083 0 +1112 1 3 block/calendar_upcoming:addinstance 1 1612889083 0 +1113 1 7 block/comments:myaddinstance 1 1612889083 0 +1114 1 1 block/comments:addinstance 1 1612889083 0 +1115 1 3 block/comments:addinstance 1 1612889083 0 +1116 1 1 block/completionstatus:addinstance 1 1612889083 0 +1117 1 3 block/completionstatus:addinstance 1 1612889083 0 +1118 1 7 block/course_list:myaddinstance 1 1612889083 0 +1119 1 1 block/course_list:addinstance 1 1612889083 0 +1120 1 3 block/course_list:addinstance 1 1612889083 0 +1121 1 1 block/course_summary:addinstance 1 1612889083 0 +1122 1 3 block/course_summary:addinstance 1 1612889083 0 +1123 1 1 block/feedback:addinstance 1 1612889083 0 +1124 1 3 block/feedback:addinstance 1 1612889083 0 +1125 1 7 block/globalsearch:myaddinstance 1 1612889083 0 +1126 1 1 block/globalsearch:addinstance 1 1612889083 0 +1127 1 3 block/globalsearch:addinstance 1 1612889083 0 +1128 1 7 block/glossary_random:myaddinstance 1 1612889083 0 +1129 1 1 block/glossary_random:addinstance 1 1612889083 0 +1130 1 3 block/glossary_random:addinstance 1 1612889083 0 +1131 1 7 block/html:myaddinstance 1 1612889083 0 +1132 1 1 block/html:addinstance 1 1612889083 0 +1133 1 3 block/html:addinstance 1 1612889084 0 +1134 1 1 block/login:addinstance 1 1612889084 0 +1135 1 3 block/login:addinstance 1 1612889084 0 +1136 1 1 block/lp:addinstance 1 1612889084 0 +1137 1 3 block/lp:addinstance 1 1612889084 0 +1138 1 7 block/lp:myaddinstance 1 1612889084 0 +1139 1 7 block/mentees:myaddinstance 1 1612889084 0 +1140 1 1 block/mentees:addinstance 1 1612889084 0 +1141 1 3 block/mentees:addinstance 1 1612889084 0 +1142 1 7 block/mnet_hosts:myaddinstance 1 1612889084 0 +1143 1 1 block/mnet_hosts:addinstance 1 1612889084 0 +1144 1 3 block/mnet_hosts:addinstance 1 1612889084 0 +1145 1 7 block/myoverview:myaddinstance 1 1612889084 0 +1146 1 7 block/myprofile:myaddinstance 1 1612889084 0 +1147 1 1 block/myprofile:addinstance 1 1612889084 0 +1148 1 3 block/myprofile:addinstance 1 1612889084 0 +1149 1 7 block/navigation:myaddinstance 1 1612889084 0 +1150 1 1 block/navigation:addinstance 1 1612889084 0 +1151 1 3 block/navigation:addinstance 1 1612889084 0 +1152 1 7 block/news_items:myaddinstance 1 1612889084 0 +1153 1 1 block/news_items:addinstance 1 1612889084 0 +1154 1 3 block/news_items:addinstance 1 1612889084 0 +1155 1 7 block/online_users:myaddinstance 1 1612889084 0 +1156 1 1 block/online_users:addinstance 1 1612889084 0 +1157 1 3 block/online_users:addinstance 1 1612889084 0 +1158 1 7 block/online_users:viewlist 1 1612889084 0 +1159 1 6 block/online_users:viewlist 1 1612889084 0 +1160 1 5 block/online_users:viewlist 1 1612889084 0 +1161 1 4 block/online_users:viewlist 1 1612889084 0 +1162 1 3 block/online_users:viewlist 1 1612889084 0 +1163 1 1 block/online_users:viewlist 1 1612889084 0 +1164 1 7 block/private_files:myaddinstance 1 1612889084 0 +1165 1 1 block/private_files:addinstance 1 1612889084 0 +1166 1 3 block/private_files:addinstance 1 1612889084 0 +1167 1 1 block/quiz_results:addinstance 1 1612889084 0 +1168 1 3 block/quiz_results:addinstance 1 1612889084 0 +1169 1 1 block/recent_activity:addinstance 1 1612889085 0 +1170 1 3 block/recent_activity:addinstance 1 1612889085 0 +1171 1 7 block/recent_activity:viewaddupdatemodule 1 1612889085 0 +1172 1 7 block/recent_activity:viewdeletemodule 1 1612889085 0 +1173 1 7 block/recentlyaccessedcourses:myaddinstance 1 1612889085 0 +1174 1 7 block/recentlyaccesseditems:myaddinstance 1 1612889085 0 +1175 1 7 block/rss_client:myaddinstance 1 1612889085 0 +1176 1 1 block/rss_client:addinstance 1 1612889085 0 +1177 1 3 block/rss_client:addinstance 1 1612889085 0 +1178 1 4 block/rss_client:manageownfeeds 1 1612889085 0 +1179 1 3 block/rss_client:manageownfeeds 1 1612889085 0 +1180 1 1 block/rss_client:manageownfeeds 1 1612889085 0 +1181 1 1 block/rss_client:manageanyfeeds 1 1612889085 0 +1182 1 1 block/search_forums:addinstance 1 1612889085 0 +1183 1 3 block/search_forums:addinstance 1 1612889085 0 +1184 1 1 block/section_links:addinstance 1 1612889085 0 +1185 1 3 block/section_links:addinstance 1 1612889085 0 +1186 1 1 block/selfcompletion:addinstance 1 1612889085 0 +1187 1 3 block/selfcompletion:addinstance 1 1612889085 0 +1188 1 7 block/settings:myaddinstance 1 1612889085 0 +1189 1 1 block/settings:addinstance 1 1612889085 0 +1190 1 3 block/settings:addinstance 1 1612889085 0 +1191 1 1 block/site_main_menu:addinstance 1 1612889085 0 +1192 1 3 block/site_main_menu:addinstance 1 1612889085 0 +1193 1 1 block/social_activities:addinstance 1 1612889085 0 +1194 1 3 block/social_activities:addinstance 1 1612889085 0 +1195 1 7 block/starredcourses:myaddinstance 1 1612889085 0 +1196 1 1 block/tag_flickr:addinstance 1 1612889085 0 +1197 1 3 block/tag_flickr:addinstance 1 1612889085 0 +1198 1 1 block/tag_youtube:addinstance 1 1612889085 0 +1199 1 3 block/tag_youtube:addinstance 1 1612889086 0 +1200 1 7 block/tags:myaddinstance 1 1612889086 0 +1201 1 1 block/tags:addinstance 1 1612889086 0 +1202 1 3 block/tags:addinstance 1 1612889086 0 +1203 1 7 block/timeline:myaddinstance 1 1612889086 0 +1204 1 4 report/completion:view 1 1612889087 0 +1205 1 3 report/completion:view 1 1612889087 0 +1206 1 1 report/completion:view 1 1612889088 0 +1207 1 1 report/courseoverview:view 1 1612889088 0 +1208 1 3 report/courseoverview:view 1 1612889088 0 +1209 1 4 report/courseoverview:view 1 1612889088 0 +1210 1 4 report/log:view 1 1612889088 0 +1211 1 3 report/log:view 1 1612889088 0 +1212 1 1 report/log:view 1 1612889088 0 +1213 1 4 report/log:viewtoday 1 1612889088 0 +1214 1 3 report/log:viewtoday 1 1612889088 0 +1215 1 1 report/log:viewtoday 1 1612889088 0 +1216 1 4 report/loglive:view 1 1612889088 0 +1217 1 3 report/loglive:view 1 1612889088 0 +1218 1 1 report/loglive:view 1 1612889088 0 +1219 1 4 report/outline:view 1 1612889088 0 +1220 1 3 report/outline:view 1 1612889088 0 +1221 1 1 report/outline:view 1 1612889088 0 +1222 1 4 report/outline:viewuserreport 1 1612889088 0 +1223 1 3 report/outline:viewuserreport 1 1612889088 0 +1224 1 1 report/outline:viewuserreport 1 1612889088 0 +1225 1 4 report/participation:view 1 1612889088 0 +1226 1 3 report/participation:view 1 1612889088 0 +1227 1 1 report/participation:view 1 1612889088 0 +1228 1 1 report/performance:view 1 1612889088 0 +1229 1 4 report/progress:view 1 1612889088 0 +1230 1 3 report/progress:view 1 1612889088 0 +1231 1 1 report/progress:view 1 1612889088 0 +1232 1 1 report/security:view 1 1612889088 0 +1233 1 4 report/stats:view 1 1612889088 0 +1234 1 3 report/stats:view 1 1612889088 0 +1235 1 1 report/stats:view 1 1612889088 0 +1236 1 1 report/status:view 1 1612889089 0 +1237 1 1 report/usersessions:manageownsessions 1 1612889089 0 +1238 1 7 report/usersessions:manageownsessions 1 1612889089 0 +1239 1 6 report/usersessions:manageownsessions -1000 1612889089 0 +1240 1 4 gradeexport/ods:view 1 1612889089 0 +1241 1 3 gradeexport/ods:view 1 1612889089 0 +1242 1 1 gradeexport/ods:view 1 1612889089 0 +1243 1 1 gradeexport/ods:publish 1 1612889089 0 +1244 1 4 gradeexport/txt:view 1 1612889089 0 +1245 1 3 gradeexport/txt:view 1 1612889089 0 +1246 1 1 gradeexport/txt:view 1 1612889089 0 +1247 1 1 gradeexport/txt:publish 1 1612889089 0 +1248 1 4 gradeexport/xls:view 1 1612889089 0 +1249 1 3 gradeexport/xls:view 1 1612889089 0 +1250 1 1 gradeexport/xls:view 1 1612889089 0 +1251 1 1 gradeexport/xls:publish 1 1612889089 0 +1252 1 4 gradeexport/xml:view 1 1612889089 0 +1253 1 3 gradeexport/xml:view 1 1612889089 0 +1254 1 1 gradeexport/xml:view 1 1612889089 0 +1255 1 1 gradeexport/xml:publish 1 1612889089 0 +1256 1 3 gradeimport/csv:view 1 1612889089 0 +1257 1 1 gradeimport/csv:view 1 1612889089 0 +1258 1 3 gradeimport/direct:view 1 1612889089 0 +1259 1 1 gradeimport/direct:view 1 1612889089 0 +1260 1 3 gradeimport/xml:view 1 1612889089 0 +1261 1 1 gradeimport/xml:view 1 1612889089 0 +1262 1 1 gradeimport/xml:publish 1 1612889089 0 +1263 1 4 gradereport/grader:view 1 1612889089 0 +1264 1 3 gradereport/grader:view 1 1612889089 0 +1265 1 1 gradereport/grader:view 1 1612889089 0 +1266 1 4 gradereport/history:view 1 1612889089 0 +1267 1 3 gradereport/history:view 1 1612889089 0 +1268 1 1 gradereport/history:view 1 1612889089 0 +1269 1 4 gradereport/outcomes:view 1 1612889089 0 +1270 1 3 gradereport/outcomes:view 1 1612889089 0 +1271 1 1 gradereport/outcomes:view 1 1612889089 0 +1272 1 7 gradereport/overview:view 1 1612889090 0 +1273 1 3 gradereport/singleview:view 1 1612889090 0 +1274 1 1 gradereport/singleview:view 1 1612889090 0 +1275 1 5 gradereport/user:view 1 1612889090 0 +1276 1 4 gradereport/user:view 1 1612889090 0 +1277 1 3 gradereport/user:view 1 1612889090 0 +1278 1 1 gradereport/user:view 1 1612889090 0 +1279 1 7 repository/areafiles:view 1 1612889090 0 +1280 1 7 repository/boxnet:view 1 1612889090 0 +1281 1 2 repository/contentbank:view 1 1612889090 0 +1282 1 3 repository/contentbank:view 1 1612889090 0 +1283 1 1 repository/contentbank:view 1 1612889090 0 +1284 1 2 repository/contentbank:accesscoursecontent 1 1612889090 0 +1285 1 3 repository/contentbank:accesscoursecontent 1 1612889090 0 +1286 1 1 repository/contentbank:accesscoursecontent 1 1612889090 0 +1287 1 2 repository/contentbank:accesscoursecategorycontent 1 1612889090 0 +1288 1 1 repository/contentbank:accesscoursecategorycontent 1 1612889090 0 +1289 1 7 repository/contentbank:accessgeneralcontent 1 1612889091 0 +1290 1 2 repository/coursefiles:view 1 1612889091 0 +1291 1 4 repository/coursefiles:view 1 1612889091 0 +1292 1 3 repository/coursefiles:view 1 1612889091 0 +1293 1 1 repository/coursefiles:view 1 1612889091 0 +1294 1 7 repository/dropbox:view 1 1612889091 0 +1295 1 7 repository/equella:view 1 1612889091 0 +1296 1 2 repository/filesystem:view 1 1612889091 0 +1297 1 4 repository/filesystem:view 1 1612889091 0 +1298 1 3 repository/filesystem:view 1 1612889091 0 +1299 1 1 repository/filesystem:view 1 1612889091 0 +1300 1 7 repository/flickr:view 1 1612889091 0 +1301 1 7 repository/flickr_public:view 1 1612889091 0 +1302 1 7 repository/googledocs:view 1 1612889091 0 +1303 1 2 repository/local:view 1 1612889091 0 +1304 1 4 repository/local:view 1 1612889091 0 +1305 1 3 repository/local:view 1 1612889091 0 +1306 1 1 repository/local:view 1 1612889091 0 +1307 1 7 repository/merlot:view 1 1612889091 0 +1308 1 7 repository/nextcloud:view 1 1612889091 0 +1309 1 7 repository/onedrive:view 1 1612889091 0 +1310 1 7 repository/picasa:view 1 1612889091 0 +1311 1 7 repository/recent:view 1 1612889091 0 +1312 1 7 repository/s3:view 1 1612889091 0 +1313 1 7 repository/skydrive:view 1 1612889092 0 +1314 1 7 repository/upload:view 1 1612889092 0 +1315 1 7 repository/url:view 1 1612889092 0 +1316 1 7 repository/user:view 1 1612889092 0 +1317 1 2 repository/webdav:view 1 1612889092 0 +1318 1 4 repository/webdav:view 1 1612889092 0 +1319 1 3 repository/webdav:view 1 1612889092 0 +1320 1 1 repository/webdav:view 1 1612889092 0 +1321 1 7 repository/wikimedia:view 1 1612889092 0 +1322 1 7 repository/youtube:view 1 1612889092 0 +1323 1 1 tool/customlang:view 1 1612889094 0 +1324 1 1 tool/customlang:edit 1 1612889094 0 +1325 1 1 tool/customlang:export 1 1612889094 0 +1326 1 7 tool/dataprivacy:downloadownrequest 1 1612889094 0 +1327 1 7 tool/dataprivacy:requestdelete 1 1612889094 0 +1328 1 1 tool/lpmigrate:frameworksmigrate 1 1612889095 0 +1329 1 4 tool/monitor:subscribe 1 1612889095 0 +1330 1 3 tool/monitor:subscribe 1 1612889095 0 +1331 1 1 tool/monitor:subscribe 1 1612889095 0 +1332 1 4 tool/monitor:managerules 1 1612889095 0 +1333 1 3 tool/monitor:managerules 1 1612889095 0 +1334 1 1 tool/monitor:managerules 1 1612889095 0 +1335 1 1 tool/monitor:managetool 1 1612889095 0 +1336 1 7 tool/policy:accept 1 1612889095 0 +1337 1 1 tool/policy:managedocs 1 1612889095 0 +1338 1 1 tool/policy:viewacceptances 1 1612889095 0 +1339 1 3 tool/recyclebin:deleteitems 1 1612889095 0 +1340 1 1 tool/recyclebin:deleteitems 1 1612889095 0 +1341 1 3 tool/recyclebin:restoreitems 1 1612889095 0 +1342 1 1 tool/recyclebin:restoreitems 1 1612889095 0 +1343 1 4 tool/recyclebin:viewitems 1 1612889095 0 +1344 1 3 tool/recyclebin:viewitems 1 1612889095 0 +1345 1 1 tool/recyclebin:viewitems 1 1612889095 0 +1346 1 1 tool/uploaduser:uploaduserpictures 1 1612889096 0 +1347 1 1 tool/usertours:managetours 1 1612889096 0 +1348 1 1 contenttype/h5p:access 1 1612889096 0 +1349 1 2 contenttype/h5p:access 1 1612889096 0 +1350 1 3 contenttype/h5p:access 1 1612889096 0 +1351 1 1 contenttype/h5p:upload 1 1612889096 0 +1352 1 2 contenttype/h5p:upload 1 1612889096 0 +1353 1 3 contenttype/h5p:upload 1 1612889096 0 +1354 1 1 contenttype/h5p:useeditor 1 1612889096 0 +1355 1 2 contenttype/h5p:useeditor 1 1612889096 0 +1356 1 3 contenttype/h5p:useeditor 1 1612889096 0 +1357 1 3 booktool/importhtml:import 1 1612889097 0 +1358 1 1 booktool/importhtml:import 1 1612889098 0 +1359 1 6 booktool/print:print 1 1612889098 0 +1360 1 8 booktool/print:print 1 1612889098 0 +1361 1 5 booktool/print:print 1 1612889098 0 +1362 1 4 booktool/print:print 1 1612889098 0 +1363 1 3 booktool/print:print 1 1612889098 0 +1364 1 1 booktool/print:print 1 1612889098 0 +1365 1 4 forumreport/summary:view 1 1612889098 0 +1366 1 3 forumreport/summary:view 1 1612889098 0 +1367 1 1 forumreport/summary:view 1 1612889098 0 +1368 1 4 forumreport/summary:viewall 1 1612889098 0 +1369 1 3 forumreport/summary:viewall 1 1612889098 0 +1370 1 1 forumreport/summary:viewall 1 1612889098 0 +1371 1 4 quiz/grading:viewstudentnames 1 1612889099 0 +1372 1 3 quiz/grading:viewstudentnames 1 1612889099 0 +1373 1 1 quiz/grading:viewstudentnames 1 1612889099 0 +1374 1 4 quiz/grading:viewidnumber 1 1612889099 0 +1375 1 3 quiz/grading:viewidnumber 1 1612889099 0 +1376 1 1 quiz/grading:viewidnumber 1 1612889099 0 +1377 1 4 quiz/statistics:view 1 1612889099 0 +1378 1 3 quiz/statistics:view 1 1612889099 0 +1379 1 1 quiz/statistics:view 1 1612889099 0 +1380 1 1 quizaccess/seb:managetemplates 1 1612889099 0 +1381 1 1 quizaccess/seb:bypassseb 1 1612889099 0 +1382 1 3 quizaccess/seb:bypassseb 1 1612889099 0 +1383 1 1 quizaccess/seb:manage_seb_requiresafeexambrowser 1 1612889099 0 +1384 1 3 quizaccess/seb:manage_seb_requiresafeexambrowser 1 1612889099 0 +1385 1 1 quizaccess/seb:manage_seb_templateid 1 1612889099 0 +1386 1 3 quizaccess/seb:manage_seb_templateid 1 1612889099 0 +1387 1 1 quizaccess/seb:manage_filemanager_sebconfigfile 1 1612889099 0 +1388 1 3 quizaccess/seb:manage_filemanager_sebconfigfile 1 1612889099 0 +1389 1 1 quizaccess/seb:manage_seb_showsebdownloadlink 1 1612889099 0 +1390 1 3 quizaccess/seb:manage_seb_showsebdownloadlink 1 1612889099 0 +1391 1 1 quizaccess/seb:manage_seb_allowedbrowserexamkeys 1 1612889099 0 +1392 1 3 quizaccess/seb:manage_seb_allowedbrowserexamkeys 1 1612889099 0 +1393 1 1 quizaccess/seb:manage_seb_linkquitseb 1 1612889099 0 +1394 1 3 quizaccess/seb:manage_seb_linkquitseb 1 1612889099 0 +1395 1 1 quizaccess/seb:manage_seb_userconfirmquit 1 1612889099 0 +1396 1 3 quizaccess/seb:manage_seb_userconfirmquit 1 1612889099 0 +1397 1 1 quizaccess/seb:manage_seb_allowuserquitseb 1 1612889099 0 +1398 1 3 quizaccess/seb:manage_seb_allowuserquitseb 1 1612889099 0 +1399 1 1 quizaccess/seb:manage_seb_quitpassword 1 1612889100 0 +1400 1 3 quizaccess/seb:manage_seb_quitpassword 1 1612889100 0 +1401 1 1 quizaccess/seb:manage_seb_allowreloadinexam 1 1612889100 0 +1402 1 3 quizaccess/seb:manage_seb_allowreloadinexam 1 1612889100 0 +1403 1 1 quizaccess/seb:manage_seb_showsebtaskbar 1 1612889100 0 +1404 1 3 quizaccess/seb:manage_seb_showsebtaskbar 1 1612889100 0 +1405 1 1 quizaccess/seb:manage_seb_showreloadbutton 1 1612889100 0 +1406 1 3 quizaccess/seb:manage_seb_showreloadbutton 1 1612889100 0 +1407 1 1 quizaccess/seb:manage_seb_showtime 1 1612889100 0 +1408 1 3 quizaccess/seb:manage_seb_showtime 1 1612889100 0 +1409 1 1 quizaccess/seb:manage_seb_showkeyboardlayout 1 1612889100 0 +1410 1 3 quizaccess/seb:manage_seb_showkeyboardlayout 1 1612889100 0 +1411 1 1 quizaccess/seb:manage_seb_showwificontrol 1 1612889100 0 +1412 1 3 quizaccess/seb:manage_seb_showwificontrol 1 1612889100 0 +1413 1 1 quizaccess/seb:manage_seb_enableaudiocontrol 1 1612889100 0 +1414 1 3 quizaccess/seb:manage_seb_enableaudiocontrol 1 1612889100 0 +1415 1 1 quizaccess/seb:manage_seb_muteonstartup 1 1612889100 0 +1416 1 3 quizaccess/seb:manage_seb_muteonstartup 1 1612889100 0 +1417 1 1 quizaccess/seb:manage_seb_allowspellchecking 1 1612889100 0 +1418 1 3 quizaccess/seb:manage_seb_allowspellchecking 1 1612889100 0 +1419 1 1 quizaccess/seb:manage_seb_activateurlfiltering 1 1612889100 0 +1420 1 3 quizaccess/seb:manage_seb_activateurlfiltering 1 1612889100 0 +1421 1 1 quizaccess/seb:manage_seb_filterembeddedcontent 1 1612889100 0 +1422 1 3 quizaccess/seb:manage_seb_filterembeddedcontent 1 1612889100 0 +1423 1 1 quizaccess/seb:manage_seb_expressionsallowed 1 1612889100 0 +1424 1 3 quizaccess/seb:manage_seb_expressionsallowed 1 1612889100 0 +1425 1 1 quizaccess/seb:manage_seb_regexallowed 1 1612889100 0 +1426 1 3 quizaccess/seb:manage_seb_regexallowed 1 1612889100 0 +1427 1 1 quizaccess/seb:manage_seb_expressionsblocked 1 1612889100 0 +1428 1 3 quizaccess/seb:manage_seb_expressionsblocked 1 1612889100 0 +1429 1 1 quizaccess/seb:manage_seb_regexblocked 1 1612889100 0 +1430 1 3 quizaccess/seb:manage_seb_regexblocked 1 1612889100 0 +1431 1 3 atto/h5p:addembed 1 1612889102 0 +1432 1 7 atto/recordrtc:recordaudio 1 1612889102 0 +1433 1 7 atto/recordrtc:recordvideo 1 1612889102 0 \. @@ -36776,7 +37295,7 @@ COPY public.mdl_role_capabilities (id, contextid, roleid, capability, permission -- Name: mdl_role_capabilities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_role_capabilities_id_seq', 1418, true); +SELECT pg_catalog.setval('public.mdl_role_capabilities_id_seq', 1433, true); -- @@ -36832,8 +37351,8 @@ SELECT pg_catalog.setval('public.mdl_role_names_id_seq', 1, false); -- COPY public.mdl_scale (id, courseid, userid, name, scale, description, descriptionformat, timemodified) FROM stdin; -1 0 0 Separate and Connected ways of knowing Mostly separate knowing,Separate and connected,Mostly connected knowing The scale based on the theory of separate and connected knowing. This theory describes two different ways that we can evaluate and learn about the things we see and hear.
  • Separate knowers remain as objective as possible without including feelings and emotions. In a discussion with other people, they like to defend their own ideas, using logic to find holes in opponent's ideas.
  • Connected knowers are more sensitive to other people. They are skilled at empathy and tend to listen and ask questions until they feel they can connect and "understand things from their point of view". They learn by trying to share the experiences that led to the knowledge they find in other people.
0 1609808470 -2 0 0 Default competence scale Not yet competent,Competent A binary rating scale that provides no further information beyond whether someone has demonstrated proficiency or not. 0 1609808470 +1 0 0 Separate and Connected ways of knowing Mostly separate knowing,Separate and connected,Mostly connected knowing The scale based on the theory of separate and connected knowing. This theory describes two different ways that we can evaluate and learn about the things we see and hear.
  • Separate knowers remain as objective as possible without including feelings and emotions. In a discussion with other people, they like to defend their own ideas, using logic to find holes in opponent's ideas.
  • Connected knowers are more sensitive to other people. They are skilled at empathy and tend to listen and ask questions until they feel they can connect and "understand things from their point of view". They learn by trying to share the experiences that led to the knowledge they find in other people.
0 1612889058 +2 0 0 Default competence scale Not yet competent,Competent A binary rating scale that provides no further information beyond whether someone has demonstrated proficiency or not. 0 1612889058 \. @@ -37059,51 +37578,7 @@ SELECT pg_catalog.setval('public.mdl_search_simpledb_index_id_seq', 1, false); -- COPY public.mdl_sessions (id, state, sid, userid, sessdata, timecreated, timemodified, firstip, lastip) FROM stdin; -48 0 hvvc4ec1f4a7vebg6qatmls3qr 0 \N 1609857857 1609857857 205.178.100.54 205.178.100.54 -50 0 jc87j6tl57nah95q5tr5udt5om 0 \N 1609858213 1609858213 74.120.14.53 74.120.14.53 -4 0 g390evscnnj46m1dik81objdqc 0 \N 1609809062 1609809063 52.147.4.242 52.147.4.242 -6 0 cd0g9e2qjl0k8qg84ms2c21b2t 0 \N 1609809102 1609809102 37.46.150.227 37.46.150.227 -8 0 5kulmlbb0os2t62010q3j5s8aj 0 \N 1609812059 1609812059 186.237.144.74 186.237.144.74 -10 0 7r5uc0b36j205t6r1gi1fuf41g 0 \N 1609814138 1609814138 192.35.168.96 192.35.168.96 -11 0 2anuu9v7p3m9olelilijnkhfop 0 \N 1609814138 1609814138 192.35.168.96 192.35.168.96 -12 0 p4hosuduuribnlt7prhu53ksbm 0 \N 1609814139 1609814139 192.35.168.96 192.35.168.96 -13 0 a3ir4gbtruvhv71m7r3dconhno 0 \N 1609814139 1609814139 192.35.168.96 192.35.168.96 -15 0 o9arou95l3q7qg20icb8nls361 0 \N 1609814355 1609814355 139.162.106.181 139.162.106.181 -17 0 apib2rq6cmj3t8s9bl3j18m246 0 \N 1609817323 1609817323 209.17.96.42 209.17.96.42 -19 0 vssvii2a9dkhfk77ne25jtvv18 0 \N 1609826929 1609826929 119.46.1.122 119.46.1.122 -21 0 64vnfmck17kogc31jo6g879n1q 0 \N 1609829356 1609829356 178.73.215.171 178.73.215.171 -23 0 d4ea49tp7v6nkfrr767mp5ha99 0 \N 1609831226 1609831226 45.155.205.108 45.155.205.108 -25 0 csf01fu5kt15845rkgqeiq4v3j 0 \N 1609831227 1609831227 45.155.205.108 45.155.205.108 -27 0 4dgjaqtcj83b9eb33vna6682nk 0 \N 1609831227 1609831227 45.155.205.108 45.155.205.108 -28 0 j7j1spfe2n22mdbnl9ucf2bs74 0 \N 1609831228 1609831228 45.155.205.108 45.155.205.108 -29 0 uhfne8ijftrke74aah7ds4209i 0 \N 1609831229 1609831229 45.155.205.108 45.155.205.108 -30 0 qnh199jaciuu5qjj9tuglo47ji 0 \N 1609831229 1609831229 45.155.205.108 45.155.205.108 -31 0 59992kis3k8msn7k878tcig9lp 0 \N 1609831230 1609831230 45.155.205.108 45.155.205.108 -32 0 p2369p23sfmo4svolaq3bod0fc 0 \N 1609831230 1609831230 45.155.205.108 45.155.205.108 -33 0 c2r65p2am25gc56sc2q1ctptkt 0 \N 1609831231 1609831231 45.155.205.108 45.155.205.108 -34 0 kvhd9lsk8vgt2j1gq8kves7nqo 0 \N 1609831231 1609831231 45.155.205.108 45.155.205.108 -35 0 l3fudt233n04poa4f5mps2bngc 0 \N 1609831232 1609831232 45.155.205.108 45.155.205.108 -36 0 i4042aj7lebn4gnctdd4kvci1b 0 \N 1609831232 1609831232 45.155.205.108 45.155.205.108 -38 0 gg256398arpas36ck2f9nr62c1 0 \N 1609837562 1609837562 85.12.201.205 85.12.201.205 -40 0 adtmna6n3e61se1aga4geo1rle 0 \N 1609838006 1609838006 51.143.32.186 51.143.32.186 -42 0 k0gsqcbc9hau0venrncodfhef3 0 \N 1609847022 1609847022 20.75.81.246 20.75.81.246 -44 0 knmcs34pvrthb1umeuo6tk71jb 0 \N 1609851488 1609851488 80.44.39.96 80.44.39.96 -46 0 ref8oi41tvuhtk9l8u678llmmn 0 \N 1609853098 1609853098 103.144.146.190 103.144.146.190 -52 0 4chivo1pt1hj4id8uj4ss8r92q 0 \N 1609858214 1609858214 74.120.14.53 74.120.14.53 -53 0 6r7qakqcgcn3rru8e423rc18bf 0 \N 1609858214 1609858214 74.120.14.53 74.120.14.53 -54 0 tq1gfcegjs3fm65pnqpj9ia97u 0 \N 1609858214 1609858214 74.120.14.53 74.120.14.53 -55 0 0n4tle4vfre9rq3vsr5ktmc5b0 0 \N 1609858215 1609858215 74.120.14.53 74.120.14.53 -56 0 ehqsv8efb7iu2f06h7ecfrjh9g 0 \N 1609858215 1609858215 74.120.14.53 74.120.14.53 -57 0 quqspa06mp8m51r88ap06ffv6i 0 \N 1609858215 1609858215 74.120.14.53 74.120.14.53 -59 0 ehrd7b8bk27s2dcv56hh5oj763 0 \N 1609859814 1609859814 128.14.133.58 128.14.133.58 -60 0 u17gkj7m0tg2ris4s9nhrfdub2 0 \N 1609859814 1609859814 128.14.133.58 128.14.133.58 -61 0 2n3oqsojgcfr0d1judvcnnabp1 0 \N 1609859814 1609859814 128.14.133.58 128.14.133.58 -62 0 786ufaikq4sf8jhsuhki9dlr1e 0 \N 1609859815 1609859815 128.14.133.58 128.14.133.58 -64 0 dsba0datl79pfg9jvvao8cou9c 0 \N 1609861812 1609861812 138.68.161.204 138.68.161.204 -68 0 oqoesti3mraj246rqa994umq56 0 \N 1609863506 1609863507 107.0.200.61 107.0.200.61 -72 0 9kq9sa57enerhq9dkqh9pq4nq4 0 \N 1609888714 1609888714 5.189.174.129 5.189.174.129 -71 0 sfv8r52dg34qrv0eon6bfhggon 2 \N 1609883714 1609892640 67.182.30.218 67.182.30.218 -74 0 ioki42g280aa1b41t9kr4m1vml 2 \N 1612797602 1612797632 67.182.30.218 67.182.30.218 +2 0 go7qg5ndk1hpkm9copnu9f9hcn 2 \N 1612889108 1612889205 67.182.30.218 67.182.30.218 \. @@ -37111,7 +37586,7 @@ COPY public.mdl_sessions (id, state, sid, userid, sessdata, timecreated, timemod -- Name: mdl_sessions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_sessions_id_seq', 74, true); +SELECT pg_catalog.setval('public.mdl_sessions_id_seq', 2, true); -- @@ -37433,7 +37908,7 @@ SELECT pg_catalog.setval('public.mdl_tag_instance_id_seq', 1, false); -- Data for Name: mdl_task_adhoc; Type: TABLE DATA; Schema: public; Owner: postgres -- -COPY public.mdl_task_adhoc (id, component, classname, nextruntime, faildelay, customdata, userid, blocking) FROM stdin; +COPY public.mdl_task_adhoc (id, component, classname, nextruntime, faildelay, customdata, userid, blocking, timecreated, timestarted, hostname, pid) FROM stdin; \. @@ -37448,7 +37923,35 @@ SELECT pg_catalog.setval('public.mdl_task_adhoc_id_seq', 1, false); -- Data for Name: mdl_task_log; Type: TABLE DATA; Schema: public; Owner: postgres -- -COPY public.mdl_task_log (id, type, component, classname, userid, timestart, timeend, dbreads, dbwrites, result, output) FROM stdin; +COPY public.mdl_task_log (id, type, component, classname, userid, timestart, timeend, dbreads, dbwrites, result, output, hostname, pid) FROM stdin; +1 0 moodle core\\task\\session_cleanup_task 0 1612889162.0509000000 1612889162.0663000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 16:46:02. Current memory use 15.8MB.\n... used 19 dbqueries\n... used 0.011183977127075 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 15251 +2 0 moodle core\\task\\send_new_user_passwords_task 0 1612889162.0744000000 1612889162.0755000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 16:46:02. Current memory use 17MB.\n... used 1 dbqueries\n... used 0.00054597854614258 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 15251 +3 0 moodle core\\task\\send_failed_login_notifications_task 0 1612889162.0813000000 1612889162.0829000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 16:46:02. Current memory use 17.1MB.\n... used 0 dbqueries\n... used 3.6954879760742E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 15251 +4 0 moodle core\\task\\legacy_plugin_cron_task 0 1612889162.0884000000 1612889162.2642000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 16:46:02. Current memory use 17.1MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.17531895637512 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 15251 +5 0 moodle core\\task\\grade_cron_task 0 1612889162.2702000000 1612889162.2733000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 16:46:02. Current memory use 38.8MB.\n... used 6 dbqueries\n... used 0.0025439262390137 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 15251 +6 0 moodle core\\task\\completion_regular_task 0 1612889162.2788000000 1612889162.3095000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 16:46:02. Current memory use 38.8MB.\n... used 18 dbqueries\n... used 0.030198097229004 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 15251 +7 0 moodle core\\task\\portfolio_cron_task 0 1612889162.3162000000 1612889162.3168000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 16:46:02. Current memory use 39MB.\n... used 0 dbqueries\n... used 3.9100646972656E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 15251 +8 0 moodle core\\task\\plagiarism_cron_task 0 1612889162.3226000000 1612889162.3230000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 16:46:02. Current memory use 39MB.\n... used 0 dbqueries\n... used 3.6954879760742E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 15251 +9 0 moodle core\\task\\calendar_cron_task 0 1612889162.3290000000 1612889162.3360000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 16:46:02. Current memory use 39MB.\n... used 1 dbqueries\n... used 0.0066220760345459 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 15251 +10 0 moodle core\\task\\blog_cron_task 0 1612889162.3415000000 1612889162.3454000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 16:46:02. Current memory use 39.4MB.\n... used 2 dbqueries\n... used 0.0033490657806396 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 15251 +11 0 moodle core\\task\\question_preview_cleanup_task 0 1612889162.3516000000 1612889162.3689000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 16:46:02. Current memory use 39.7MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016763925552368 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 15251 +12 0 moodle core\\task\\question_stats_cleanup_task 0 1612889162.3745000000 1612889162.3763000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 16:46:02. Current memory use 41.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00124192237854 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 15251 +13 0 moodle core\\task\\badges_cron_task 0 1612889162.3821000000 1612889162.3876000000 1 0 0 Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 16:46:02. Current memory use 41.3MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0040061473846436 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n dev.derekmaxson.com 15251 +14 0 moodle core\\task\\badges_message_task 0 1612889162.3932000000 1612889162.3942000000 1 0 0 Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 16:46:02. Current memory use 41.7MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00044918060302734 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n dev.derekmaxson.com 15251 +15 0 mod_assign mod_assign\\task\\cron_task 0 1612889162.4052000000 1612889162.4191000000 4 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 16:46:02. Current memory use 43MB.\n... used 4 dbqueries\n... used 0.013008832931519 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 15251 +16 0 mod_chat mod_chat\\task\\cron_task 0 1612889162.4276000000 1612889162.4306000000 2 2 0 Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 16:46:02. Current memory use 43.6MB.\n... used 4 dbqueries\n... used 0.0021100044250488 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n dev.derekmaxson.com 15251 +17 0 mod_forum mod_forum\\task\\cron_task 0 1612889162.4386000000 1612889162.4410000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 16:46:02. Current memory use 43.7MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015981197357178 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 15251 +18 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1612889162.4594000000 1612889162.4673000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 16:46:02. Current memory use 44.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0071179866790771 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 15251 +19 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1612889162.4744000000 1612889162.4753000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 16:46:02. Current memory use 44.5MB.\n... used 0 dbqueries\n... used 8.702278137207E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 15251 +20 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1612889162.4824000000 1612889162.4833000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 16:46:02. Current memory use 44.5MB.\n... used 0 dbqueries\n... used 8.4161758422852E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 15251 +21 0 mod_scorm mod_scorm\\task\\cron_task 0 1612889162.4891000000 1612889162.4998000000 3 2 0 Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 16:46:02. Current memory use 44.5MB.\nUpdating scorm packages which require daily update\n... used 5 dbqueries\n... used 0.0099549293518066 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n dev.derekmaxson.com 15251 +22 0 mod_workshop mod_workshop\\task\\cron_task 0 1612889162.5070000000 1612889162.5086000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 16:46:02. Current memory use 45MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00070786476135254 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 15251 +23 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1612889162.5145000000 1612889162.5154000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 16:46:02. Current memory use 45MB.\n... used 0 dbqueries\n... used 9.7036361694336E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 15251 +24 0 block_rss_client block_rss_client\\task\\refreshfeeds 0 1612889162.5285000000 1612889162.5398000000 3 0 0 Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 16:46:02. Current memory use 43.9MB.\n\n0 feeds refreshed (took 0.00073000000000001 seconds)\n... used 3 dbqueries\n... used 0.010790109634399 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n dev.derekmaxson.com 15251 +25 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1612889162.5510000000 1612889162.5537000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 16:46:02. Current memory use 45MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0021531581878662 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 15251 +26 0 tool_monitor tool_monitor\\task\\clean_events 0 1612889162.5636000000 1612889162.5643000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 16:46:02. Current memory use 45.1MB.\n... used 0 dbqueries\n... used 0.00011396408081055 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 15251 +27 0 assignfeedback_editpdf assignfeedback_editpdf\\task\\convert_submissions 0 1612889162.5728000000 1612889162.5738000000 1 0 0 Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 16:46:02. Current memory use 45.2MB.\n... used 1 dbqueries\n... used 0.00043487548828125 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n dev.derekmaxson.com 15251 +28 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1612889162.5822000000 1612889162.5836000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 16:46:02. Current memory use 45.2MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.0008080005645752 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 15251 \. @@ -37456,112 +37959,113 @@ COPY public.mdl_task_log (id, type, component, classname, userid, timestart, tim -- Name: mdl_task_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_task_log_id_seq', 1, false); +SELECT pg_catalog.setval('public.mdl_task_log_id_seq', 28, true); -- -- Data for Name: mdl_task_scheduled; Type: TABLE DATA; Schema: public; Owner: postgres -- -COPY public.mdl_task_scheduled (id, component, classname, lastruntime, nextruntime, blocking, minute, hour, day, month, dayofweek, faildelay, customised, disabled) FROM stdin; -1 moodle \\core\\task\\session_cleanup_task 0 1609808520 0 * * * * * 0 0 0 -2 moodle \\core\\task\\delete_unconfirmed_users_task 0 1609812000 0 0 * * * * 0 0 0 -3 moodle \\core\\task\\delete_incomplete_users_task 0 1609808700 0 5 * * * * 0 0 0 -4 moodle \\core\\task\\backup_cleanup_task 0 1609809000 0 10 * * * * 0 0 0 -5 moodle \\core\\task\\tag_cron_task 0 1609816380 0 13 3 * * * 0 0 0 -6 moodle \\core\\task\\context_cleanup_task 0 1609809900 0 25 * * * * 0 0 0 -7 moodle \\core\\task\\cache_cleanup_task 0 1609810200 0 30 * * * * 0 0 0 -8 moodle \\core\\task\\messaging_cleanup_task 0 1609810500 0 35 * * * * 0 0 0 -9 moodle \\core\\task\\send_new_user_passwords_task 0 1609808520 0 * * * * * 0 0 0 -10 moodle \\core\\task\\send_failed_login_notifications_task 0 1609808520 0 * * * * * 0 0 0 -11 moodle \\core\\task\\create_contexts_task 0 1609891200 1 0 0 * * * 0 0 0 -12 moodle \\core\\task\\legacy_plugin_cron_task 0 1609808520 0 * * * * * 0 0 0 -13 moodle \\core\\task\\grade_cron_task 0 1609808520 0 * * * * * 0 0 0 -14 moodle \\core\\task\\grade_history_cleanup_task 0 1609891320 0 * 0 * * * 0 0 0 -15 moodle \\core\\task\\completion_regular_task 0 1609808520 0 * * * * * 0 0 0 -16 moodle \\core\\task\\completion_daily_task 0 1609859880 0 18 15 * * * 0 0 0 -17 moodle \\core\\task\\portfolio_cron_task 0 1609808520 0 * * * * * 0 0 0 -18 moodle \\core\\task\\plagiarism_cron_task 0 1609808520 0 * * * * * 0 0 0 -19 moodle \\core\\task\\calendar_cron_task 0 1609808520 0 * * * * * 0 0 0 -20 moodle \\core\\task\\blog_cron_task 0 1609808520 0 * * * * * 0 0 0 -21 moodle \\core\\task\\question_preview_cleanup_task 0 1609808520 0 * * * * * 0 0 0 -22 moodle \\core\\task\\question_stats_cleanup_task 0 1609808520 0 * * * * * 0 0 0 -23 moodle \\core\\task\\registration_cron_task 0 1609941960 0 6 14 * * 3 0 0 0 -24 moodle \\core\\task\\check_for_updates_task 0 1609812000 0 0 */2 * * * 0 0 0 -25 moodle \\core\\task\\cache_cron_task 0 1609811400 0 50 * * * * 0 0 0 -26 moodle \\core\\task\\automated_backup_task 0 1609811400 0 50 * * * * 0 0 0 -27 moodle \\core\\task\\badges_cron_task 0 1609808700 0 */5 * * * * 0 0 0 -28 moodle \\core\\task\\badges_message_task 0 1609808700 0 */5 * * * * 0 0 0 -29 moodle \\core\\task\\file_temp_cleanup_task 0 1609829700 0 55 */6 * * * 0 0 0 -30 moodle \\core\\task\\file_trash_cleanup_task 0 1609829700 0 55 */6 * * * 0 0 0 -31 moodle \\core\\task\\search_index_task 0 1609810200 0 */30 * * * * 0 0 0 -32 moodle \\core\\task\\search_optimize_task 0 1609848900 0 15 */12 * * * 0 0 0 -33 moodle \\core\\task\\stats_cron_task 0 1609891200 0 0 0 * * * 0 0 0 -34 moodle \\core\\task\\password_reset_cleanup_task 0 1609826400 0 0 */6 * * * 0 0 0 -35 moodle \\core\\task\\complete_plans_task 0 1609808880 0 8 * * * * 0 0 0 -36 moodle \\core\\task\\sync_plans_from_template_cohorts_task 0 1609808700 0 5 * * * * 0 0 0 -37 moodle \\core_files\\task\\conversion_cleanup_task 0 1609812840 0 14 2 * * * 0 0 0 -38 moodle \\core\\oauth2\\refresh_system_tokens_task 0 1609810200 0 30 * * * * 0 0 0 -39 moodle \\core\\task\\analytics_cleanup_task 0 1609810920 0 42 * * * * 0 0 0 -40 moodle \\core\\task\\task_log_cleanup_task 0 1609874220 0 17 19 * * * 0 0 0 -41 moodle \\core\\task\\h5p_get_content_types_task 0 1612141200 0 0 1 1 * * 0 0 0 -42 qtype_random \\qtype_random\\task\\remove_unused_questions 0 1609809780 0 23 * * * * 0 0 0 -43 mod_assign \\mod_assign\\task\\cron_task 0 1609808520 0 * * * * * 0 0 0 -44 mod_chat \\mod_chat\\task\\cron_task 0 1609808700 0 */5 * * * * 0 0 0 -45 mod_forum \\mod_forum\\task\\cron_task 0 1609808520 0 * * * * * 0 0 0 -46 mod_lti \\mod_lti\\task\\clean_access_tokens 0 1609820400 0 20 4 * * * 0 0 0 -47 mod_quiz \\mod_quiz\\task\\update_overdue_attempts 0 1609808520 0 * * * * * 0 0 0 -48 mod_quiz \\mod_quiz\\task\\legacy_quiz_reports_cron 0 1609808520 0 * * * * * 0 0 0 -49 mod_quiz \\mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1609808520 0 * * * * * 0 0 0 -50 mod_scorm \\mod_scorm\\task\\cron_task 0 1609808700 0 */5 * * * * 0 0 0 -51 mod_workshop \\mod_workshop\\task\\cron_task 0 1609808520 0 * * * * * 0 0 0 -52 mod_workshop \\mod_workshop\\task\\legacy_workshop_allocation_cron 0 1609808520 0 * * * * * 0 0 0 -53 auth_cas \\auth_cas\\task\\sync_task 0 1609891200 0 0 0 * * * 0 0 1 -54 auth_db \\auth_db\\task\\sync_users 0 1609859040 0 4 15 * * * 0 0 1 -55 auth_ldap \\auth_ldap\\task\\sync_roles 0 1609891200 0 0 0 * * * 0 0 1 -56 auth_ldap \\auth_ldap\\task\\sync_task 0 1609891200 0 0 0 * * * 0 0 1 -57 auth_mnet \\auth_mnet\\task\\cron_task 0 1609808520 0 * * * * * 0 0 0 -58 enrol_category \\enrol_category\\task\\enrol_category_sync 0 1609808520 0 * * * * * 0 0 0 -59 enrol_cohort \\enrol_cohort\\task\\enrol_cohort_sync 0 1609809060 0 11 * * * * 0 0 0 -60 enrol_database \\enrol_database\\task\\sync_enrolments 0 1609873740 0 9 19 * * * 0 0 1 -61 enrol_flatfile \\enrol_flatfile\\task\\flatfile_sync_task 0 1609809300 0 15 * * * * 0 0 0 -62 enrol_imsenterprise \\enrol_imsenterprise\\task\\cron_task 0 1609809000 0 10 * * * * 0 0 0 -63 enrol_ldap \\enrol_ldap\\task\\sync_enrolments 0 1609840800 0 0 10 * * * 0 0 1 -64 enrol_lti \\enrol_lti\\task\\sync_grades 0 1609810200 0 */30 * * * * 0 0 0 -65 enrol_lti \\enrol_lti\\task\\sync_members 0 1609810200 0 */30 * * * * 0 0 0 -66 enrol_manual \\enrol_manual\\task\\sync_enrolments 0 1609809000 0 */10 * * * * 0 0 0 -67 enrol_manual \\enrol_manual\\task\\send_expiry_notifications 0 1609809000 0 */10 * * * * 0 0 0 -68 enrol_meta \\enrol_meta\\task\\enrol_meta_sync 0 1609809360 0 16 * * * * 0 0 0 -69 enrol_paypal \\enrol_paypal\\task\\process_expirations 0 1609808520 0 * * * * * 0 0 0 -70 enrol_self \\enrol_self\\task\\sync_enrolments 0 1609809000 0 */10 * * * * 0 0 0 -71 enrol_self \\enrol_self\\task\\send_expiry_notifications 0 1609809000 0 */10 * * * * 0 0 0 -72 message_email \\message_email\\task\\send_email_task 0 1609884000 0 0 22 * * * 0 0 0 -73 block_recent_activity \\block_recent_activity\\task\\cleanup 0 1609881060 0 11 21 * * * 0 0 0 -74 block_rss_client \\block_rss_client\\task\\refreshfeeds 0 1609808700 0 */5 * * * * 0 0 0 -75 editor_atto \\editor_atto\\task\\autosave_cleanup_task 0 1610374320 0 12 14 * * 1 0 0 0 -76 repository_dropbox \\repository_dropbox\\task\\cron_task 0 1609808520 0 * * * * * 0 0 0 -77 repository_filesystem \\repository_filesystem\\task\\cron_task 0 1609808520 0 * * * * * 0 0 0 -78 repository_onedrive \\repository_onedrive\\remove_temp_access_task 0 1609812360 0 6 2 * * 0 0 0 0 -79 tool_analytics \\tool_analytics\\task\\train_models 0 1609887600 0 0 23 * * * 0 0 0 -80 tool_analytics \\tool_analytics\\task\\predict_models 0 1609891200 0 0 0 * * * 0 0 0 -81 tool_cohortroles \\tool_cohortroles\\task\\cohort_role_sync 0 1609808940 0 9 * * * * 0 0 0 -82 tool_dataprivacy \\tool_dataprivacy\\task\\expired_retention_period 0 1609855200 0 0 14 * * * 0 0 0 -83 tool_dataprivacy \\tool_dataprivacy\\task\\delete_expired_contexts 0 1609819200 0 0 4 * * * 0 0 0 -84 tool_dataprivacy \\tool_dataprivacy\\task\\delete_expired_requests 0 1609859280 0 8 15 * * * 0 0 0 -85 tool_dataprivacy \\tool_dataprivacy\\task\\delete_existing_deleted_users 0 1609827600 0 20 6 * * * 0 0 1 -86 tool_langimport \\tool_langimport\\task\\update_langpacks_task 0 1609819800 0 10 4 * * * 0 0 0 -87 tool_messageinbound \\tool_messageinbound\\task\\pickup_task 0 1609808520 0 * * * * * 0 0 0 -88 tool_messageinbound \\tool_messageinbound\\task\\cleanup_task 0 1609811700 0 55 1 * * * 0 0 0 -89 tool_monitor \\tool_monitor\\task\\clean_events 0 1609808520 0 * * * * * 0 0 0 -90 tool_monitor \\tool_monitor\\task\\check_subscriptions 0 1609862640 0 4 16 * * * 0 0 0 -91 tool_recyclebin \\tool_recyclebin\\task\\cleanup_course_bin 0 1609810200 0 */30 * * * * 0 0 0 -92 tool_recyclebin \\tool_recyclebin\\task\\cleanup_category_bin 0 1609810200 0 */30 * * * * 0 0 0 -93 assignfeedback_editpdf \\assignfeedback_editpdf\\task\\convert_submissions 0 1609809300 0 */15 * * * * 0 0 0 -94 ltiservice_gradebookservices \\ltiservice_gradebookservices\\task\\cleanup_task 0 1609827660 0 21 6 * * * 0 0 0 -95 quiz_statistics \\quiz_statistics\\task\\quiz_statistics_cleanup 0 1609823220 0 7 */5 * * * 0 0 0 -96 workshopallocation_scheduled \\workshopallocation_scheduled\\task\\cron_task 0 1609808520 0 * * * * * 0 0 0 -97 logstore_legacy \\logstore_legacy\\task\\cleanup_task 0 1609823880 0 18 5 * * * 0 0 0 -98 logstore_standard \\logstore_standard\\task\\cleanup_task 0 1609820160 0 16 4 * * * 0 0 0 +COPY public.mdl_task_scheduled (id, component, classname, lastruntime, nextruntime, blocking, minute, hour, day, month, dayofweek, faildelay, customised, disabled, timestarted, hostname, pid) FROM stdin; +2 moodle \\core\\task\\delete_unconfirmed_users_task 0 1612890000 0 0 * * * * 0 0 0 \N \N \N +3 moodle \\core\\task\\delete_incomplete_users_task 0 1612890300 0 5 * * * * 0 0 0 \N \N \N +4 moodle \\core\\task\\backup_cleanup_task 0 1612890600 0 10 * * * * 0 0 0 \N \N \N +5 moodle \\core\\task\\tag_cron_task 0 1612926240 0 4 3 * * * 0 0 0 \N \N \N +6 moodle \\core\\task\\context_cleanup_task 0 1612891500 0 25 * * * * 0 0 0 \N \N \N +7 moodle \\core\\task\\cache_cleanup_task 0 1612891800 0 30 * * * * 0 0 0 \N \N \N +8 moodle \\core\\task\\messaging_cleanup_task 0 1612892100 0 35 * * * * 0 0 0 \N \N \N +11 moodle \\core\\task\\create_contexts_task 0 1612915200 1 0 0 * * * 0 0 0 \N \N \N +14 moodle \\core\\task\\grade_history_cleanup_task 0 1612917900 0 * 0 * * * 0 0 0 \N \N \N +16 moodle \\core\\task\\completion_daily_task 0 1612926540 0 9 3 * * * 0 0 0 \N \N \N +23 moodle \\core\\task\\registration_cron_task 0 1613398560 0 16 14 * * 1 0 0 0 \N \N \N +24 moodle \\core\\task\\check_for_updates_task 0 1612893600 0 0 */2 * * * 0 0 0 \N \N \N +25 moodle \\core\\task\\cache_cron_task 0 1612889400 0 50 * * * * 0 0 0 \N \N \N +26 moodle \\core\\task\\automated_backup_task 0 1612889400 0 50 * * * * 0 0 0 \N \N \N +29 moodle \\core\\task\\file_temp_cleanup_task 0 1612896900 0 55 */6 * * * 0 0 0 \N \N \N +30 moodle \\core\\task\\file_trash_cleanup_task 0 1612896900 0 55 */6 * * * 0 0 0 \N \N \N +31 moodle \\core\\task\\search_index_task 0 1612890000 0 */30 * * * * 0 0 0 \N \N \N +32 moodle \\core\\task\\search_optimize_task 0 1612916100 0 15 */12 * * * 0 0 0 \N \N \N +33 moodle \\core\\task\\stats_cron_task 0 1612915200 0 0 0 * * * 0 0 0 \N \N \N +34 moodle \\core\\task\\password_reset_cleanup_task 0 1612893600 0 0 */6 * * * 0 0 0 \N \N \N +35 moodle \\core\\task\\complete_plans_task 0 1612891380 0 23 * * * * 0 0 0 \N \N \N +36 moodle \\core\\task\\sync_plans_from_template_cohorts_task 0 1612890660 0 11 * * * * 0 0 0 \N \N \N +37 moodle \\core_files\\task\\conversion_cleanup_task 0 1612923240 0 14 2 * * * 0 0 0 \N \N \N +38 moodle \\core\\oauth2\\refresh_system_tokens_task 0 1612891800 0 30 * * * * 0 0 0 \N \N \N +39 moodle \\core\\task\\analytics_cleanup_task 0 1612892520 0 42 * * * * 0 0 0 \N \N \N +40 moodle \\core\\task\\task_log_cleanup_task 0 1612901220 0 7 20 * * * 0 0 0 \N \N \N +41 moodle \\core\\task\\h5p_get_content_types_task 0 1614607680 0 8 14 1 * * 0 0 0 \N \N \N +42 moodle \\core\\task\\antivirus_cleanup_task 0 1612915800 0 10 0 * * * 0 0 0 \N \N \N +43 qtype_random \\qtype_random\\task\\remove_unused_questions 0 1612890300 0 5 * * * * 0 0 0 \N \N \N +47 mod_lti \\mod_lti\\task\\clean_access_tokens 0 1612969560 0 6 15 * * * 0 0 0 \N \N \N +54 auth_cas \\auth_cas\\task\\sync_task 0 1612915200 0 0 0 * * * 0 0 1 \N \N \N +55 auth_db \\auth_db\\task\\sync_users 0 1612912020 0 7 23 * * * 0 0 1 \N \N \N +56 auth_ldap \\auth_ldap\\task\\sync_roles 0 1612915200 0 0 0 * * * 0 0 1 \N \N \N +57 auth_ldap \\auth_ldap\\task\\sync_task 0 1612915200 0 0 0 * * * 0 0 1 \N \N \N +58 auth_mnet \\auth_mnet\\task\\cron_task 0 1612889100 0 * * * * * 0 0 0 \N \N \N +59 enrol_category \\enrol_category\\task\\enrol_category_sync 0 1612889100 0 * * * * * 0 0 0 \N \N \N +9 moodle \\core\\task\\send_new_user_passwords_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N +10 moodle \\core\\task\\send_failed_login_notifications_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N +12 moodle \\core\\task\\legacy_plugin_cron_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N +13 moodle \\core\\task\\grade_cron_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N +15 moodle \\core\\task\\completion_regular_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N +17 moodle \\core\\task\\portfolio_cron_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N +18 moodle \\core\\task\\plagiarism_cron_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N +19 moodle \\core\\task\\calendar_cron_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N +20 moodle \\core\\task\\blog_cron_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N +21 moodle \\core\\task\\question_preview_cleanup_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N +22 moodle \\core\\task\\question_stats_cleanup_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N +27 moodle \\core\\task\\badges_cron_task 1612889162 1612889400 0 */5 * * * * 0 0 0 \N \N \N +28 moodle \\core\\task\\badges_message_task 1612889162 1612889400 0 */5 * * * * 0 0 0 \N \N \N +44 mod_assign \\mod_assign\\task\\cron_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N +46 mod_forum \\mod_forum\\task\\cron_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N +48 mod_quiz \\mod_quiz\\task\\update_overdue_attempts 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N +49 mod_quiz \\mod_quiz\\task\\legacy_quiz_reports_cron 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N +50 mod_quiz \\mod_quiz\\task\\legacy_quiz_accessrules_cron 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N +51 mod_scorm \\mod_scorm\\task\\cron_task 1612889162 1612889400 0 */5 * * * * 0 0 0 \N \N \N +52 mod_workshop \\mod_workshop\\task\\cron_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N +53 mod_workshop \\mod_workshop\\task\\legacy_workshop_allocation_cron 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N +60 enrol_cohort \\enrol_cohort\\task\\enrol_cohort_sync 0 1612890840 0 14 * * * * 0 0 0 \N \N \N +61 enrol_database \\enrol_database\\task\\sync_enrolments 0 1612973400 0 10 16 * * * 0 0 1 \N \N \N +62 enrol_flatfile \\enrol_flatfile\\task\\flatfile_sync_task 0 1612890900 0 15 * * * * 0 0 0 \N \N \N +63 enrol_imsenterprise \\enrol_imsenterprise\\task\\cron_task 0 1612890600 0 10 * * * * 0 0 0 \N \N \N +64 enrol_ldap \\enrol_ldap\\task\\sync_enrolments 0 1612894560 0 16 18 * * * 0 0 1 \N \N \N +65 enrol_lti \\enrol_lti\\task\\sync_grades 0 1612890000 0 */30 * * * * 0 0 0 \N \N \N +66 enrol_lti \\enrol_lti\\task\\sync_members 0 1612890000 0 */30 * * * * 0 0 0 \N \N \N +67 enrol_manual \\enrol_manual\\task\\sync_enrolments 0 1612889400 0 */10 * * * * 0 0 0 \N \N \N +68 enrol_manual \\enrol_manual\\task\\send_expiry_notifications 0 1612889400 0 */10 * * * * 0 0 0 \N \N \N +69 enrol_meta \\enrol_meta\\task\\enrol_meta_sync 0 1612890060 0 1 * * * * 0 0 0 \N \N \N +70 enrol_paypal \\enrol_paypal\\task\\process_expirations 0 1612889100 0 * * * * * 0 0 0 \N \N \N +71 enrol_self \\enrol_self\\task\\sync_enrolments 0 1612889400 0 */10 * * * * 0 0 0 \N \N \N +72 enrol_self \\enrol_self\\task\\send_expiry_notifications 0 1612889400 0 */10 * * * * 0 0 0 \N \N \N +73 message_email \\message_email\\task\\send_email_task 0 1612908000 0 0 22 * * * 0 0 0 \N \N \N +74 block_recent_activity \\block_recent_activity\\task\\cleanup 0 1612909320 0 22 22 * * * 0 0 0 \N \N \N +76 editor_atto \\editor_atto\\task\\autosave_cleanup_task 0 1613368920 0 2 6 * * 1 0 0 0 \N \N \N +77 repository_dropbox \\repository_dropbox\\task\\cron_task 0 1612889100 0 * * * * * 0 0 0 \N \N \N +78 repository_filesystem \\repository_filesystem\\task\\cron_task 0 1612889100 0 * * * * * 0 0 0 \N \N \N +79 repository_onedrive \\repository_onedrive\\remove_temp_access_task 0 1613416080 0 8 19 * * 1 0 0 0 \N \N \N +80 tool_analytics \\tool_analytics\\task\\train_models 0 1612911600 0 0 23 * * * 0 0 0 \N \N \N +81 tool_analytics \\tool_analytics\\task\\predict_models 0 1612904400 0 0 21 * * * 0 0 0 \N \N \N +82 tool_cohortroles \\tool_cohortroles\\task\\cohort_role_sync 0 1612890420 0 7 * * * * 0 0 0 \N \N \N +83 tool_dataprivacy \\tool_dataprivacy\\task\\expired_retention_period 0 1612940400 0 0 7 * * * 0 0 0 \N \N \N +84 tool_dataprivacy \\tool_dataprivacy\\task\\delete_expired_contexts 0 1612936800 0 0 6 * * * 0 0 0 \N \N \N +85 tool_dataprivacy \\tool_dataprivacy\\task\\delete_expired_requests 0 1612962900 0 15 13 * * * 0 0 0 \N \N \N +86 tool_dataprivacy \\tool_dataprivacy\\task\\delete_existing_deleted_users 0 1612973580 0 13 16 * * * 0 0 1 \N \N \N +87 tool_langimport \\tool_langimport\\task\\update_langpacks_task 0 1612930860 0 21 4 * * * 0 0 0 \N \N \N +89 tool_messageinbound \\tool_messageinbound\\task\\cleanup_task 0 1612922100 0 55 1 * * * 0 0 0 \N \N \N +91 tool_monitor \\tool_monitor\\task\\check_subscriptions 0 1612922640 0 4 2 * * * 0 0 0 \N \N \N +92 tool_recyclebin \\tool_recyclebin\\task\\cleanup_course_bin 0 1612890000 0 */30 * * * * 0 0 0 \N \N \N +93 tool_recyclebin \\tool_recyclebin\\task\\cleanup_category_bin 0 1612890000 0 */30 * * * * 0 0 0 \N \N \N +95 ltiservice_gradebookservices \\ltiservice_gradebookservices\\task\\cleanup_task 0 1612927020 0 17 3 * * * 0 0 0 \N \N \N +96 quiz_statistics \\quiz_statistics\\task\\quiz_statistics_cleanup 0 1612902060 0 21 */5 * * * 0 0 0 \N \N \N +98 logstore_legacy \\logstore_legacy\\task\\cleanup_task 0 1612933980 0 13 5 * * * 0 0 0 \N \N \N +99 logstore_standard \\logstore_standard\\task\\cleanup_task 0 1612930320 0 12 4 * * * 0 0 0 \N \N \N +1 moodle \\core\\task\\session_cleanup_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N +45 mod_chat \\mod_chat\\task\\cron_task 1612889162 1612889400 0 */5 * * * * 0 0 0 \N \N \N +90 tool_monitor \\tool_monitor\\task\\clean_events 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N +75 block_rss_client \\block_rss_client\\task\\refreshfeeds 1612889162 1612889400 0 */5 * * * * 0 0 0 \N \N \N +88 tool_messageinbound \\tool_messageinbound\\task\\pickup_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N +94 assignfeedback_editpdf \\assignfeedback_editpdf\\task\\convert_submissions 1612889162 1612890000 0 */15 * * * * 0 0 0 \N \N \N +97 workshopallocation_scheduled \\workshopallocation_scheduled\\task\\cron_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N \. @@ -37569,7 +38073,7 @@ COPY public.mdl_task_scheduled (id, component, classname, lastruntime, nextrunti -- Name: mdl_task_scheduled_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_task_scheduled_id_seq', 98, true); +SELECT pg_catalog.setval('public.mdl_task_scheduled_id_seq', 99, true); -- @@ -37892,1241 +38396,1250 @@ SELECT pg_catalog.setval('public.mdl_tool_usertours_tours_id_seq', 1, false); -- COPY public.mdl_upgrade_log (id, type, plugin, version, targetversion, info, details, backtrace, userid, timemodified) FROM stdin; -1 0 core 2020061503.07 2020061503.07 Upgrade savepoint reached \N 0 1609808470 -2 0 core 2020061503.07 2020061503.07 Core installed \N 0 1609808479 -3 0 antivirus_clamav \N 2020061500 Starting plugin installation \N 0 1609808479 -4 0 antivirus_clamav 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 -5 0 antivirus_clamav 2020061500 2020061500 Plugin installed \N 0 1609808479 -6 0 availability_completion \N 2020061500 Starting plugin installation \N 0 1609808479 -7 0 availability_completion 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 -8 0 availability_completion 2020061500 2020061500 Plugin installed \N 0 1609808479 -9 0 availability_date \N 2020061500 Starting plugin installation \N 0 1609808479 -10 0 availability_date 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 -11 0 availability_date 2020061500 2020061500 Plugin installed \N 0 1609808479 -12 0 availability_grade \N 2020061500 Starting plugin installation \N 0 1609808479 -13 0 availability_grade 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 -14 0 availability_grade 2020061500 2020061500 Plugin installed \N 0 1609808479 -15 0 availability_group \N 2020061500 Starting plugin installation \N 0 1609808479 -16 0 availability_group 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 -17 0 availability_group 2020061500 2020061500 Plugin installed \N 0 1609808479 -18 0 availability_grouping \N 2020061500 Starting plugin installation \N 0 1609808479 -19 0 availability_grouping 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 -20 0 availability_grouping 2020061500 2020061500 Plugin installed \N 0 1609808479 -21 0 availability_profile \N 2020061500 Starting plugin installation \N 0 1609808479 -22 0 availability_profile 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 -23 0 availability_profile 2020061500 2020061500 Plugin installed \N 0 1609808479 -24 0 qtype_calculated \N 2020061500 Starting plugin installation \N 0 1609808479 -25 0 qtype_calculated 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 -26 0 qtype_calculated 2020061500 2020061500 Plugin installed \N 0 1609808479 -27 0 qtype_calculatedmulti \N 2020061500 Starting plugin installation \N 0 1609808479 -28 0 qtype_calculatedmulti 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 -29 0 qtype_calculatedmulti 2020061500 2020061500 Plugin installed \N 0 1609808479 -30 0 qtype_calculatedsimple \N 2020061500 Starting plugin installation \N 0 1609808479 -31 0 qtype_calculatedsimple 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 -32 0 qtype_calculatedsimple 2020061500 2020061500 Plugin installed \N 0 1609808479 -33 0 qtype_ddimageortext \N 2020061500 Starting plugin installation \N 0 1609808479 -34 0 qtype_ddimageortext 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 -35 0 qtype_ddimageortext 2020061500 2020061500 Plugin installed \N 0 1609808479 -36 0 qtype_ddmarker \N 2020061500 Starting plugin installation \N 0 1609808479 -37 0 qtype_ddmarker 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 -38 0 qtype_ddmarker 2020061500 2020061500 Plugin installed \N 0 1609808479 -39 0 qtype_ddwtos \N 2020061500 Starting plugin installation \N 0 1609808479 -40 0 qtype_ddwtos 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 -41 0 qtype_ddwtos 2020061500 2020061500 Plugin installed \N 0 1609808479 -42 0 qtype_description \N 2020061500 Starting plugin installation \N 0 1609808479 -43 0 qtype_description 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 -44 0 qtype_description 2020061500 2020061500 Plugin installed \N 0 1609808479 -45 0 qtype_essay \N 2020061500 Starting plugin installation \N 0 1609808479 -46 0 qtype_essay 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 -47 0 qtype_essay 2020061500 2020061500 Plugin installed \N 0 1609808479 -48 0 qtype_gapselect \N 2020061500 Starting plugin installation \N 0 1609808479 -49 0 qtype_gapselect 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808479 -50 0 qtype_gapselect 2020061500 2020061500 Plugin installed \N 0 1609808479 -51 0 qtype_match \N 2020061500 Starting plugin installation \N 0 1609808479 -52 0 qtype_match 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808480 -53 0 qtype_match 2020061500 2020061500 Plugin installed \N 0 1609808480 -54 0 qtype_missingtype \N 2020061500 Starting plugin installation \N 0 1609808480 -55 0 qtype_missingtype 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808480 -56 0 qtype_missingtype 2020061500 2020061500 Plugin installed \N 0 1609808480 -57 0 qtype_multianswer \N 2020061500 Starting plugin installation \N 0 1609808480 -58 0 qtype_multianswer 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808480 -59 0 qtype_multianswer 2020061500 2020061500 Plugin installed \N 0 1609808480 -60 0 qtype_multichoice \N 2020061500 Starting plugin installation \N 0 1609808480 -61 0 qtype_multichoice 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808480 -62 0 qtype_multichoice 2020061500 2020061500 Plugin installed \N 0 1609808480 -63 0 qtype_numerical \N 2020061500 Starting plugin installation \N 0 1609808480 -64 0 qtype_numerical 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808480 -65 0 qtype_numerical 2020061500 2020061500 Plugin installed \N 0 1609808480 -66 0 qtype_random \N 2020061500 Starting plugin installation \N 0 1609808480 -67 0 qtype_random 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808480 -68 0 qtype_random 2020061500 2020061500 Plugin installed \N 0 1609808480 -69 0 qtype_randomsamatch \N 2020061500 Starting plugin installation \N 0 1609808480 -70 0 qtype_randomsamatch 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808480 -71 0 qtype_randomsamatch 2020061500 2020061500 Plugin installed \N 0 1609808480 -72 0 qtype_shortanswer \N 2020061500 Starting plugin installation \N 0 1609808480 -73 0 qtype_shortanswer 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808480 -74 0 qtype_shortanswer 2020061500 2020061500 Plugin installed \N 0 1609808480 -75 0 qtype_truefalse \N 2020061500 Starting plugin installation \N 0 1609808480 -76 0 qtype_truefalse 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808480 -77 0 qtype_truefalse 2020061500 2020061500 Plugin installed \N 0 1609808480 -78 0 mod_assign \N 2020061500 Starting plugin installation \N 0 1609808480 -79 0 mod_assign 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808480 -80 0 mod_assign 2020061500 2020061500 Plugin installed \N 0 1609808481 -81 0 mod_assignment \N 2020061500 Starting plugin installation \N 0 1609808481 -82 0 mod_assignment 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808481 -83 0 mod_assignment 2020061500 2020061500 Plugin installed \N 0 1609808481 -84 0 mod_book \N 2020061500 Starting plugin installation \N 0 1609808481 -85 0 mod_book 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808481 -86 0 mod_book 2020061500 2020061500 Plugin installed \N 0 1609808481 -87 0 mod_chat \N 2020061500 Starting plugin installation \N 0 1609808481 -88 0 mod_chat 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808481 -89 0 mod_chat 2020061500 2020061500 Plugin installed \N 0 1609808481 -90 0 mod_choice \N 2020061500 Starting plugin installation \N 0 1609808481 -91 0 mod_choice 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808481 -92 0 mod_choice 2020061500 2020061500 Plugin installed \N 0 1609808482 -93 0 mod_data \N 2020061500 Starting plugin installation \N 0 1609808482 -94 0 mod_data 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808482 -95 0 mod_data 2020061500 2020061500 Plugin installed \N 0 1609808482 -96 0 mod_feedback \N 2020061500 Starting plugin installation \N 0 1609808482 -97 0 mod_feedback 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808483 -98 0 mod_feedback 2020061500 2020061500 Plugin installed \N 0 1609808483 -99 0 mod_folder \N 2020061500 Starting plugin installation \N 0 1609808483 -100 0 mod_folder 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808483 -101 0 mod_folder 2020061500 2020061500 Plugin installed \N 0 1609808483 -102 0 mod_forum \N 2020061501 Starting plugin installation \N 0 1609808483 -103 0 mod_forum 2020061501 2020061501 Upgrade savepoint reached \N 0 1609808483 -104 0 mod_forum 2020061501 2020061501 Plugin installed \N 0 1609808484 -105 0 mod_glossary \N 2020061500 Starting plugin installation \N 0 1609808484 -106 0 mod_glossary 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808485 -107 0 mod_glossary 2020061500 2020061500 Plugin installed \N 0 1609808485 -108 0 mod_h5pactivity \N 2020061500 Starting plugin installation \N 0 1609808485 -109 0 mod_h5pactivity 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808485 -110 0 mod_h5pactivity 2020061500 2020061500 Plugin installed \N 0 1609808485 -111 0 mod_imscp \N 2020061500 Starting plugin installation \N 0 1609808485 -112 0 mod_imscp 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808485 -113 0 mod_imscp 2020061500 2020061500 Plugin installed \N 0 1609808485 -114 0 mod_label \N 2020061500 Starting plugin installation \N 0 1609808485 -115 0 mod_label 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808486 -116 0 mod_label 2020061500 2020061500 Plugin installed \N 0 1609808486 -117 0 mod_lesson \N 2020061500 Starting plugin installation \N 0 1609808486 -118 0 mod_lesson 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808486 -119 0 mod_lesson 2020061500 2020061500 Plugin installed \N 0 1609808486 -120 0 mod_lti \N 2020061501 Starting plugin installation \N 0 1609808486 -121 0 mod_lti 2020061501 2020061501 Upgrade savepoint reached \N 0 1609808486 -122 0 mod_lti 2020061501 2020061501 Plugin installed \N 0 1609808486 -123 0 mod_page \N 2020061500 Starting plugin installation \N 0 1609808486 -124 0 mod_page 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808487 -125 0 mod_page 2020061500 2020061500 Plugin installed \N 0 1609808487 -126 0 mod_quiz \N 2020061500 Starting plugin installation \N 0 1609808487 -127 0 mod_quiz 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808487 -128 0 mod_quiz 2020061500 2020061500 Plugin installed \N 0 1609808487 -129 0 mod_resource \N 2020061500 Starting plugin installation \N 0 1609808487 -130 0 mod_resource 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808487 -131 0 mod_resource 2020061500 2020061500 Plugin installed \N 0 1609808487 -132 0 mod_scorm \N 2020061500 Starting plugin installation \N 0 1609808487 -133 0 mod_scorm 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808488 -134 0 mod_scorm 2020061500 2020061500 Plugin installed \N 0 1609808488 -135 0 mod_survey \N 2020061500 Starting plugin installation \N 0 1609808488 -136 0 mod_survey 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808488 -137 0 mod_survey 2020061500 2020061500 Plugin installed \N 0 1609808488 -138 0 mod_url \N 2020061500 Starting plugin installation \N 0 1609808488 -139 0 mod_url 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808488 -140 0 mod_url 2020061500 2020061500 Plugin installed \N 0 1609808488 -141 0 mod_wiki \N 2020061500 Starting plugin installation \N 0 1609808488 -142 0 mod_wiki 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808488 -143 0 mod_wiki 2020061500 2020061500 Plugin installed \N 0 1609808489 -144 0 mod_workshop \N 2020061500 Starting plugin installation \N 0 1609808489 -145 0 mod_workshop 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808489 -146 0 mod_workshop 2020061500 2020061500 Plugin installed \N 0 1609808490 -147 0 auth_cas \N 2020061501 Starting plugin installation \N 0 1609808490 -148 0 auth_cas 2020061501 2020061501 Upgrade savepoint reached \N 0 1609808490 -149 0 auth_cas 2020061501 2020061501 Plugin installed \N 0 1609808490 -150 0 auth_db \N 2020061500 Starting plugin installation \N 0 1609808490 -151 0 auth_db 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 -152 0 auth_db 2020061500 2020061500 Plugin installed \N 0 1609808490 -153 0 auth_email \N 2020061500 Starting plugin installation \N 0 1609808490 -154 0 auth_email 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 -155 0 auth_email 2020061500 2020061500 Plugin installed \N 0 1609808490 -156 0 auth_ldap \N 2020061501 Starting plugin installation \N 0 1609808490 -157 0 auth_ldap 2020061501 2020061501 Upgrade savepoint reached \N 0 1609808490 -158 0 auth_ldap 2020061501 2020061501 Plugin installed \N 0 1609808490 -159 0 auth_lti \N 2020061500 Starting plugin installation \N 0 1609808490 -160 0 auth_lti 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 -161 0 auth_lti 2020061500 2020061500 Plugin installed \N 0 1609808490 -162 0 auth_manual \N 2020061500 Starting plugin installation \N 0 1609808490 -163 0 auth_manual 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 -164 0 auth_manual 2020061500 2020061500 Plugin installed \N 0 1609808490 -165 0 auth_mnet \N 2020061500 Starting plugin installation \N 0 1609808490 -166 0 auth_mnet 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 -167 0 auth_mnet 2020061500 2020061500 Plugin installed \N 0 1609808490 -168 0 auth_nologin \N 2020061500 Starting plugin installation \N 0 1609808490 -169 0 auth_nologin 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 -170 0 auth_nologin 2020061500 2020061500 Plugin installed \N 0 1609808490 -171 0 auth_none \N 2020061500 Starting plugin installation \N 0 1609808490 -172 0 auth_none 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 -173 0 auth_none 2020061500 2020061500 Plugin installed \N 0 1609808490 -174 0 auth_oauth2 \N 2020061500 Starting plugin installation \N 0 1609808490 -175 0 auth_oauth2 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 -176 0 auth_oauth2 2020061500 2020061500 Plugin installed \N 0 1609808490 -177 0 auth_shibboleth \N 2020061500 Starting plugin installation \N 0 1609808490 -178 0 auth_shibboleth 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 -179 0 auth_shibboleth 2020061500 2020061500 Plugin installed \N 0 1609808490 -180 0 auth_webservice \N 2020061500 Starting plugin installation \N 0 1609808490 -181 0 auth_webservice 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 -182 0 auth_webservice 2020061500 2020061500 Plugin installed \N 0 1609808490 -183 0 calendartype_gregorian \N 2020061500 Starting plugin installation \N 0 1609808490 -184 0 calendartype_gregorian 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 -185 0 calendartype_gregorian 2020061500 2020061500 Plugin installed \N 0 1609808490 -186 0 customfield_checkbox \N 2020061500 Starting plugin installation \N 0 1609808490 -187 0 customfield_checkbox 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 -188 0 customfield_checkbox 2020061500 2020061500 Plugin installed \N 0 1609808490 -189 0 customfield_date \N 2020061500 Starting plugin installation \N 0 1609808490 -190 0 customfield_date 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 -191 0 customfield_date 2020061500 2020061500 Plugin installed \N 0 1609808490 -192 0 customfield_select \N 2020061500 Starting plugin installation \N 0 1609808490 -193 0 customfield_select 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 -194 0 customfield_select 2020061500 2020061500 Plugin installed \N 0 1609808490 -195 0 customfield_text \N 2020061500 Starting plugin installation \N 0 1609808490 -196 0 customfield_text 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 -197 0 customfield_text 2020061500 2020061500 Plugin installed \N 0 1609808490 -198 0 customfield_textarea \N 2020061500 Starting plugin installation \N 0 1609808490 -199 0 customfield_textarea 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 -200 0 customfield_textarea 2020061500 2020061500 Plugin installed \N 0 1609808490 -201 0 enrol_category \N 2020061500 Starting plugin installation \N 0 1609808490 -202 0 enrol_category 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 -203 0 enrol_category 2020061500 2020061500 Plugin installed \N 0 1609808490 -204 0 enrol_cohort \N 2020061500 Starting plugin installation \N 0 1609808490 -205 0 enrol_cohort 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808490 -206 0 enrol_cohort 2020061500 2020061500 Plugin installed \N 0 1609808491 -207 0 enrol_database \N 2020061500 Starting plugin installation \N 0 1609808491 -208 0 enrol_database 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808491 -209 0 enrol_database 2020061500 2020061500 Plugin installed \N 0 1609808491 -210 0 enrol_flatfile \N 2020061500 Starting plugin installation \N 0 1609808491 -211 0 enrol_flatfile 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808491 -212 0 enrol_flatfile 2020061500 2020061500 Plugin installed \N 0 1609808491 -213 0 enrol_guest \N 2020061500 Starting plugin installation \N 0 1609808491 -214 0 enrol_guest 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808491 -215 0 enrol_guest 2020061500 2020061500 Plugin installed \N 0 1609808491 -216 0 enrol_imsenterprise \N 2020061500 Starting plugin installation \N 0 1609808491 -217 0 enrol_imsenterprise 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808491 -218 0 enrol_imsenterprise 2020061500 2020061500 Plugin installed \N 0 1609808491 -219 0 enrol_ldap \N 2020061500 Starting plugin installation \N 0 1609808491 -220 0 enrol_ldap 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808491 -221 0 enrol_ldap 2020061500 2020061500 Plugin installed \N 0 1609808491 -222 0 enrol_lti \N 2020061500 Starting plugin installation \N 0 1609808491 -223 0 enrol_lti 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808491 -224 0 enrol_lti 2020061500 2020061500 Plugin installed \N 0 1609808491 -225 0 enrol_manual \N 2020061500 Starting plugin installation \N 0 1609808491 -226 0 enrol_manual 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808491 -227 0 enrol_manual 2020061500 2020061500 Plugin installed \N 0 1609808491 -228 0 enrol_meta \N 2020061500 Starting plugin installation \N 0 1609808491 -229 0 enrol_meta 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808491 -230 0 enrol_meta 2020061500 2020061500 Plugin installed \N 0 1609808491 -231 0 enrol_mnet \N 2020061500 Starting plugin installation \N 0 1609808491 -232 0 enrol_mnet 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808491 -233 0 enrol_mnet 2020061500 2020061500 Plugin installed \N 0 1609808491 -234 0 enrol_paypal \N 2020061500 Starting plugin installation \N 0 1609808491 -235 0 enrol_paypal 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808491 -236 0 enrol_paypal 2020061500 2020061500 Plugin installed \N 0 1609808492 -237 0 enrol_self \N 2020061500 Starting plugin installation \N 0 1609808492 -238 0 enrol_self 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808492 -239 0 enrol_self 2020061500 2020061500 Plugin installed \N 0 1609808492 -240 0 message_airnotifier \N 2020061500 Starting plugin installation \N 0 1609808492 -241 0 message_airnotifier 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808492 -242 0 message_airnotifier 2020061500 2020061500 Plugin installed \N 0 1609808492 -243 0 message_email \N 2020061500 Starting plugin installation \N 0 1609808492 -244 0 message_email 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808492 -245 0 message_email 2020061500 2020061500 Plugin installed \N 0 1609808492 -246 0 message_jabber \N 2020061500 Starting plugin installation \N 0 1609808492 -247 0 message_jabber 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808492 -248 0 message_jabber 2020061500 2020061500 Plugin installed \N 0 1609808492 -249 0 message_popup \N 2020061500 Starting plugin installation \N 0 1609808492 -250 0 message_popup 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808492 -251 0 message_popup 2020061500 2020061500 Plugin installed \N 0 1609808492 -252 0 block_activity_modules \N 2020061500 Starting plugin installation \N 0 1609808492 -253 0 block_activity_modules 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808492 -254 0 block_activity_modules 2020061500 2020061500 Plugin installed \N 0 1609808492 -255 0 block_activity_results \N 2020061500 Starting plugin installation \N 0 1609808492 -256 0 block_activity_results 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808492 -257 0 block_activity_results 2020061500 2020061500 Plugin installed \N 0 1609808492 -258 0 block_admin_bookmarks \N 2020061500 Starting plugin installation \N 0 1609808492 -259 0 block_admin_bookmarks 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808492 -260 0 block_admin_bookmarks 2020061500 2020061500 Plugin installed \N 0 1609808492 -261 0 block_badges \N 2020061500 Starting plugin installation \N 0 1609808492 -262 0 block_badges 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808492 -263 0 block_badges 2020061500 2020061500 Plugin installed \N 0 1609808493 -264 0 block_blog_menu \N 2020061500 Starting plugin installation \N 0 1609808493 -265 0 block_blog_menu 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 -266 0 block_blog_menu 2020061500 2020061500 Plugin installed \N 0 1609808493 -267 0 block_blog_recent \N 2020061500 Starting plugin installation \N 0 1609808493 -268 0 block_blog_recent 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 -269 0 block_blog_recent 2020061500 2020061500 Plugin installed \N 0 1609808493 -270 0 block_blog_tags \N 2020061500 Starting plugin installation \N 0 1609808493 -271 0 block_blog_tags 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 -272 0 block_blog_tags 2020061500 2020061500 Plugin installed \N 0 1609808493 -273 0 block_calendar_month \N 2020061500 Starting plugin installation \N 0 1609808493 -274 0 block_calendar_month 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 -275 0 block_calendar_month 2020061500 2020061500 Plugin installed \N 0 1609808493 -276 0 block_calendar_upcoming \N 2020061500 Starting plugin installation \N 0 1609808493 -277 0 block_calendar_upcoming 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 -278 0 block_calendar_upcoming 2020061500 2020061500 Plugin installed \N 0 1609808493 -279 0 block_comments \N 2020061500 Starting plugin installation \N 0 1609808493 -280 0 block_comments 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 -281 0 block_comments 2020061500 2020061500 Plugin installed \N 0 1609808493 -282 0 block_completionstatus \N 2020061500 Starting plugin installation \N 0 1609808493 -283 0 block_completionstatus 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 -284 0 block_completionstatus 2020061500 2020061500 Plugin installed \N 0 1609808493 -285 0 block_course_list \N 2020061500 Starting plugin installation \N 0 1609808493 -286 0 block_course_list 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 -287 0 block_course_list 2020061500 2020061500 Plugin installed \N 0 1609808493 -288 0 block_course_summary \N 2020061500 Starting plugin installation \N 0 1609808493 -289 0 block_course_summary 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 -290 0 block_course_summary 2020061500 2020061500 Plugin installed \N 0 1609808493 -291 0 block_feedback \N 2020061500 Starting plugin installation \N 0 1609808493 -292 0 block_feedback 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 -293 0 block_feedback 2020061500 2020061500 Plugin installed \N 0 1609808493 -294 0 block_globalsearch \N 2020061500 Starting plugin installation \N 0 1609808493 -295 0 block_globalsearch 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 -296 0 block_globalsearch 2020061500 2020061500 Plugin installed \N 0 1609808493 -297 0 block_glossary_random \N 2020061500 Starting plugin installation \N 0 1609808493 -298 0 block_glossary_random 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 -299 0 block_glossary_random 2020061500 2020061500 Plugin installed \N 0 1609808493 -300 0 block_html \N 2020061500 Starting plugin installation \N 0 1609808493 -301 0 block_html 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 -302 0 block_html 2020061500 2020061500 Plugin installed \N 0 1609808493 -303 0 block_login \N 2020061500 Starting plugin installation \N 0 1609808493 -304 0 block_login 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 -305 0 block_login 2020061500 2020061500 Plugin installed \N 0 1609808493 -306 0 block_lp \N 2020061500 Starting plugin installation \N 0 1609808493 -307 0 block_lp 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808493 -308 0 block_lp 2020061500 2020061500 Plugin installed \N 0 1609808494 -309 0 block_mentees \N 2020061500 Starting plugin installation \N 0 1609808494 -310 0 block_mentees 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 -311 0 block_mentees 2020061500 2020061500 Plugin installed \N 0 1609808494 -312 0 block_mnet_hosts \N 2020061500 Starting plugin installation \N 0 1609808494 -313 0 block_mnet_hosts 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 -314 0 block_mnet_hosts 2020061500 2020061500 Plugin installed \N 0 1609808494 -315 0 block_myoverview \N 2020061500 Starting plugin installation \N 0 1609808494 -316 0 block_myoverview 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 -317 0 block_myoverview 2020061500 2020061500 Plugin installed \N 0 1609808494 -318 0 block_myprofile \N 2020061500 Starting plugin installation \N 0 1609808494 -319 0 block_myprofile 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 -320 0 block_myprofile 2020061500 2020061500 Plugin installed \N 0 1609808494 -321 0 block_navigation \N 2020061500 Starting plugin installation \N 0 1609808494 -322 0 block_navigation 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 -323 0 block_navigation 2020061500 2020061500 Plugin installed \N 0 1609808494 -324 0 block_news_items \N 2020061500 Starting plugin installation \N 0 1609808494 -325 0 block_news_items 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 -326 0 block_news_items 2020061500 2020061500 Plugin installed \N 0 1609808494 -327 0 block_online_users \N 2020061500 Starting plugin installation \N 0 1609808494 -328 0 block_online_users 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 -329 0 block_online_users 2020061500 2020061500 Plugin installed \N 0 1609808494 -330 0 block_private_files \N 2020061500 Starting plugin installation \N 0 1609808494 -331 0 block_private_files 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 -332 0 block_private_files 2020061500 2020061500 Plugin installed \N 0 1609808494 -333 0 block_quiz_results \N 2020061500 Starting plugin installation \N 0 1609808494 -334 0 block_quiz_results 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 -335 0 block_quiz_results 2020061500 2020061500 Plugin installed \N 0 1609808494 -336 0 block_recent_activity \N 2020061500 Starting plugin installation \N 0 1609808494 -337 0 block_recent_activity 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 -338 0 block_recent_activity 2020061500 2020061500 Plugin installed \N 0 1609808494 -339 0 block_recentlyaccessedcourses \N 2020061500 Starting plugin installation \N 0 1609808494 -340 0 block_recentlyaccessedcourses 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 -341 0 block_recentlyaccessedcourses 2020061500 2020061500 Plugin installed \N 0 1609808494 -342 0 block_recentlyaccesseditems \N 2020061500 Starting plugin installation \N 0 1609808494 -343 0 block_recentlyaccesseditems 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 -344 0 block_recentlyaccesseditems 2020061500 2020061500 Plugin installed \N 0 1609808494 -345 0 block_rss_client \N 2020061500 Starting plugin installation \N 0 1609808494 -346 0 block_rss_client 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808494 -347 0 block_rss_client 2020061500 2020061500 Plugin installed \N 0 1609808495 -348 0 block_search_forums \N 2020061500 Starting plugin installation \N 0 1609808495 -349 0 block_search_forums 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 -350 0 block_search_forums 2020061500 2020061500 Plugin installed \N 0 1609808495 -351 0 block_section_links \N 2020061500 Starting plugin installation \N 0 1609808495 -352 0 block_section_links 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 -353 0 block_section_links 2020061500 2020061500 Plugin installed \N 0 1609808495 -354 0 block_selfcompletion \N 2020061500 Starting plugin installation \N 0 1609808495 -355 0 block_selfcompletion 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 -356 0 block_selfcompletion 2020061500 2020061500 Plugin installed \N 0 1609808495 -357 0 block_settings \N 2020061500 Starting plugin installation \N 0 1609808495 -358 0 block_settings 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 -359 0 block_settings 2020061500 2020061500 Plugin installed \N 0 1609808495 -360 0 block_site_main_menu \N 2020061500 Starting plugin installation \N 0 1609808495 -361 0 block_site_main_menu 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 -362 0 block_site_main_menu 2020061500 2020061500 Plugin installed \N 0 1609808495 -363 0 block_social_activities \N 2020061500 Starting plugin installation \N 0 1609808495 -364 0 block_social_activities 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 -365 0 block_social_activities 2020061500 2020061500 Plugin installed \N 0 1609808495 -366 0 block_starredcourses \N 2020061500 Starting plugin installation \N 0 1609808495 -367 0 block_starredcourses 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 -368 0 block_starredcourses 2020061500 2020061500 Plugin installed \N 0 1609808495 -369 0 block_tag_flickr \N 2020061500 Starting plugin installation \N 0 1609808495 -370 0 block_tag_flickr 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 -371 0 block_tag_flickr 2020061500 2020061500 Plugin installed \N 0 1609808495 -372 0 block_tag_youtube \N 2020061501 Starting plugin installation \N 0 1609808495 -373 0 block_tag_youtube 2020061501 2020061501 Upgrade savepoint reached \N 0 1609808495 -374 0 block_tag_youtube 2020061501 2020061501 Plugin installed \N 0 1609808495 -375 0 block_tags \N 2020061500 Starting plugin installation \N 0 1609808495 -376 0 block_tags 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 -377 0 block_tags 2020061500 2020061500 Plugin installed \N 0 1609808495 -378 0 block_timeline \N 2020061500 Starting plugin installation \N 0 1609808495 -379 0 block_timeline 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 -380 0 block_timeline 2020061500 2020061500 Plugin installed \N 0 1609808495 -381 0 media_html5audio \N 2020061500 Starting plugin installation \N 0 1609808495 -382 0 media_html5audio 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 -383 0 media_html5audio 2020061500 2020061500 Plugin installed \N 0 1609808495 -384 0 media_html5video \N 2020061500 Starting plugin installation \N 0 1609808495 -385 0 media_html5video 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 -386 0 media_html5video 2020061500 2020061500 Plugin installed \N 0 1609808495 -387 0 media_swf \N 2020061500 Starting plugin installation \N 0 1609808495 -388 0 media_swf 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 -389 0 media_swf 2020061500 2020061500 Plugin installed \N 0 1609808495 -390 0 media_videojs \N 2020061500 Starting plugin installation \N 0 1609808495 -391 0 media_videojs 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 -392 0 media_videojs 2020061500 2020061500 Plugin installed \N 0 1609808495 -393 0 media_vimeo \N 2020061500 Starting plugin installation \N 0 1609808495 -394 0 media_vimeo 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 -395 0 media_vimeo 2020061500 2020061500 Plugin installed \N 0 1609808495 -396 0 media_youtube \N 2020061500 Starting plugin installation \N 0 1609808495 -397 0 media_youtube 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808495 -398 0 media_youtube 2020061500 2020061500 Plugin installed \N 0 1609808496 -399 0 filter_activitynames \N 2020061500 Starting plugin installation \N 0 1609808496 -400 0 filter_activitynames 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -401 0 filter_activitynames 2020061500 2020061500 Plugin installed \N 0 1609808496 -402 0 filter_algebra \N 2020061500 Starting plugin installation \N 0 1609808496 -403 0 filter_algebra 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -404 0 filter_algebra 2020061500 2020061500 Plugin installed \N 0 1609808496 -405 0 filter_censor \N 2020061500 Starting plugin installation \N 0 1609808496 -406 0 filter_censor 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -407 0 filter_censor 2020061500 2020061500 Plugin installed \N 0 1609808496 -408 0 filter_data \N 2020061500 Starting plugin installation \N 0 1609808496 -409 0 filter_data 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -410 0 filter_data 2020061500 2020061500 Plugin installed \N 0 1609808496 -411 0 filter_displayh5p \N 2020061500 Starting plugin installation \N 0 1609808496 -412 0 filter_displayh5p 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -413 0 filter_displayh5p 2020061500 2020061500 Plugin installed \N 0 1609808496 -414 0 filter_emailprotect \N 2020061500 Starting plugin installation \N 0 1609808496 -415 0 filter_emailprotect 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -416 0 filter_emailprotect 2020061500 2020061500 Plugin installed \N 0 1609808496 -417 0 filter_emoticon \N 2020061500 Starting plugin installation \N 0 1609808496 -418 0 filter_emoticon 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -419 0 filter_emoticon 2020061500 2020061500 Plugin installed \N 0 1609808496 -420 0 filter_glossary \N 2020061500 Starting plugin installation \N 0 1609808496 -421 0 filter_glossary 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -422 0 filter_glossary 2020061500 2020061500 Plugin installed \N 0 1609808496 -423 0 filter_mathjaxloader \N 2020061500 Starting plugin installation \N 0 1609808496 -424 0 filter_mathjaxloader 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -425 0 filter_mathjaxloader 2020061500 2020061500 Plugin installed \N 0 1609808496 -426 0 filter_mediaplugin \N 2020061500 Starting plugin installation \N 0 1609808496 -427 0 filter_mediaplugin 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -428 0 filter_mediaplugin 2020061500 2020061500 Plugin installed \N 0 1609808496 -429 0 filter_multilang \N 2020061500 Starting plugin installation \N 0 1609808496 -430 0 filter_multilang 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -431 0 filter_multilang 2020061500 2020061500 Plugin installed \N 0 1609808496 -432 0 filter_tex \N 2020061500 Starting plugin installation \N 0 1609808496 -433 0 filter_tex 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -434 0 filter_tex 2020061500 2020061500 Plugin installed \N 0 1609808496 -435 0 filter_tidy \N 2020061500 Starting plugin installation \N 0 1609808496 -436 0 filter_tidy 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -437 0 filter_tidy 2020061500 2020061500 Plugin installed \N 0 1609808496 -438 0 filter_urltolink \N 2020061500 Starting plugin installation \N 0 1609808496 -439 0 filter_urltolink 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -440 0 filter_urltolink 2020061500 2020061500 Plugin installed \N 0 1609808496 -441 0 editor_atto \N 2020061500 Starting plugin installation \N 0 1609808496 -442 0 editor_atto 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -443 0 editor_atto 2020061500 2020061500 Plugin installed \N 0 1609808496 -444 0 editor_textarea \N 2020061500 Starting plugin installation \N 0 1609808496 -445 0 editor_textarea 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -446 0 editor_textarea 2020061500 2020061500 Plugin installed \N 0 1609808496 -447 0 editor_tinymce \N 2020061500 Starting plugin installation \N 0 1609808496 -448 0 editor_tinymce 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -449 0 editor_tinymce 2020061500 2020061500 Plugin installed \N 0 1609808496 -450 0 format_singleactivity \N 2020061500 Starting plugin installation \N 0 1609808496 -451 0 format_singleactivity 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -452 0 format_singleactivity 2020061500 2020061500 Plugin installed \N 0 1609808496 -453 0 format_social \N 2020061500 Starting plugin installation \N 0 1609808496 -454 0 format_social 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -455 0 format_social 2020061500 2020061500 Plugin installed \N 0 1609808496 -456 0 format_topics \N 2020061500 Starting plugin installation \N 0 1609808496 -457 0 format_topics 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -458 0 format_topics 2020061500 2020061500 Plugin installed \N 0 1609808496 -459 0 format_weeks \N 2020061500 Starting plugin installation \N 0 1609808496 -460 0 format_weeks 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -461 0 format_weeks 2020061500 2020061500 Plugin installed \N 0 1609808496 -462 0 dataformat_csv \N 2020061500 Starting plugin installation \N 0 1609808496 -463 0 dataformat_csv 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -464 0 dataformat_csv 2020061500 2020061500 Plugin installed \N 0 1609808496 -465 0 dataformat_excel \N 2020061500 Starting plugin installation \N 0 1609808496 -466 0 dataformat_excel 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -467 0 dataformat_excel 2020061500 2020061500 Plugin installed \N 0 1609808496 -468 0 dataformat_html \N 2020061500 Starting plugin installation \N 0 1609808496 -469 0 dataformat_html 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -470 0 dataformat_html 2020061500 2020061500 Plugin installed \N 0 1609808496 -471 0 dataformat_json \N 2020061500 Starting plugin installation \N 0 1609808496 -472 0 dataformat_json 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -473 0 dataformat_json 2020061500 2020061500 Plugin installed \N 0 1609808496 -474 0 dataformat_ods \N 2020061500 Starting plugin installation \N 0 1609808496 -475 0 dataformat_ods 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808496 -476 0 dataformat_ods 2020061500 2020061500 Plugin installed \N 0 1609808497 -477 0 dataformat_pdf \N 2020061500 Starting plugin installation \N 0 1609808497 -478 0 dataformat_pdf 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 -479 0 dataformat_pdf 2020061500 2020061500 Plugin installed \N 0 1609808497 -480 0 profilefield_checkbox \N 2020061500 Starting plugin installation \N 0 1609808497 -481 0 profilefield_checkbox 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 -482 0 profilefield_checkbox 2020061500 2020061500 Plugin installed \N 0 1609808497 -483 0 profilefield_datetime \N 2020061500 Starting plugin installation \N 0 1609808497 -484 0 profilefield_datetime 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 -485 0 profilefield_datetime 2020061500 2020061500 Plugin installed \N 0 1609808497 -486 0 profilefield_menu \N 2020061500 Starting plugin installation \N 0 1609808497 -487 0 profilefield_menu 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 -488 0 profilefield_menu 2020061500 2020061500 Plugin installed \N 0 1609808497 -489 0 profilefield_text \N 2020061500 Starting plugin installation \N 0 1609808497 -490 0 profilefield_text 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 -491 0 profilefield_text 2020061500 2020061500 Plugin installed \N 0 1609808497 -492 0 profilefield_textarea \N 2020061500 Starting plugin installation \N 0 1609808497 -493 0 profilefield_textarea 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 -494 0 profilefield_textarea 2020061500 2020061500 Plugin installed \N 0 1609808497 -495 0 report_backups \N 2020061500 Starting plugin installation \N 0 1609808497 -496 0 report_backups 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 -497 0 report_backups 2020061500 2020061500 Plugin installed \N 0 1609808497 -498 0 report_competency \N 2020061500 Starting plugin installation \N 0 1609808497 -499 0 report_competency 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 -500 0 report_competency 2020061500 2020061500 Plugin installed \N 0 1609808497 -501 0 report_completion \N 2020061500 Starting plugin installation \N 0 1609808497 -502 0 report_completion 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 -503 0 report_completion 2020061500 2020061500 Plugin installed \N 0 1609808497 -504 0 report_configlog \N 2020061500 Starting plugin installation \N 0 1609808497 -505 0 report_configlog 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 -506 0 report_configlog 2020061500 2020061500 Plugin installed \N 0 1609808497 -507 0 report_courseoverview \N 2020061500 Starting plugin installation \N 0 1609808497 -508 0 report_courseoverview 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 -509 0 report_courseoverview 2020061500 2020061500 Plugin installed \N 0 1609808497 -510 0 report_eventlist \N 2020061500 Starting plugin installation \N 0 1609808497 -511 0 report_eventlist 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 -512 0 report_eventlist 2020061500 2020061500 Plugin installed \N 0 1609808497 -513 0 report_insights \N 2020061500 Starting plugin installation \N 0 1609808497 -514 0 report_insights 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 -515 0 report_insights 2020061500 2020061500 Plugin installed \N 0 1609808497 -516 0 report_log \N 2020061500 Starting plugin installation \N 0 1609808497 -517 0 report_log 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 -518 0 report_log 2020061500 2020061500 Plugin installed \N 0 1609808497 -519 0 report_loglive \N 2020061500 Starting plugin installation \N 0 1609808497 -520 0 report_loglive 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 -521 0 report_loglive 2020061500 2020061500 Plugin installed \N 0 1609808497 -522 0 report_outline \N 2020061500 Starting plugin installation \N 0 1609808497 -523 0 report_outline 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 -524 0 report_outline 2020061500 2020061500 Plugin installed \N 0 1609808497 -525 0 report_participation \N 2020061500 Starting plugin installation \N 0 1609808497 -526 0 report_participation 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 -527 0 report_participation 2020061500 2020061500 Plugin installed \N 0 1609808497 -528 0 report_performance \N 2020061500 Starting plugin installation \N 0 1609808497 -529 0 report_performance 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 -530 0 report_performance 2020061500 2020061500 Plugin installed \N 0 1609808497 -531 0 report_progress \N 2020061500 Starting plugin installation \N 0 1609808497 -532 0 report_progress 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 -533 0 report_progress 2020061500 2020061500 Plugin installed \N 0 1609808497 -534 0 report_questioninstances \N 2020061500 Starting plugin installation \N 0 1609808497 -535 0 report_questioninstances 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808497 -536 0 report_questioninstances 2020061500 2020061500 Plugin installed \N 0 1609808498 -537 0 report_security \N 2020061500 Starting plugin installation \N 0 1609808498 -538 0 report_security 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 -539 0 report_security 2020061500 2020061500 Plugin installed \N 0 1609808498 -540 0 report_stats \N 2020061500 Starting plugin installation \N 0 1609808498 -541 0 report_stats 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 -542 0 report_stats 2020061500 2020061500 Plugin installed \N 0 1609808498 -543 0 report_status \N 2020061500 Starting plugin installation \N 0 1609808498 -544 0 report_status 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 -545 0 report_status 2020061500 2020061500 Plugin installed \N 0 1609808498 -546 0 report_usersessions \N 2020061500 Starting plugin installation \N 0 1609808498 -547 0 report_usersessions 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 -548 0 report_usersessions 2020061500 2020061500 Plugin installed \N 0 1609808498 -549 0 gradeexport_ods \N 2020061500 Starting plugin installation \N 0 1609808498 -550 0 gradeexport_ods 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 -551 0 gradeexport_ods 2020061500 2020061500 Plugin installed \N 0 1609808498 -552 0 gradeexport_txt \N 2020061500 Starting plugin installation \N 0 1609808498 -553 0 gradeexport_txt 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 -554 0 gradeexport_txt 2020061500 2020061500 Plugin installed \N 0 1609808498 -555 0 gradeexport_xls \N 2020061500 Starting plugin installation \N 0 1609808498 -556 0 gradeexport_xls 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 -557 0 gradeexport_xls 2020061500 2020061500 Plugin installed \N 0 1609808498 -558 0 gradeexport_xml \N 2020061500 Starting plugin installation \N 0 1609808498 -559 0 gradeexport_xml 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 -560 0 gradeexport_xml 2020061500 2020061500 Plugin installed \N 0 1609808498 -561 0 gradeimport_csv \N 2020061500 Starting plugin installation \N 0 1609808498 -562 0 gradeimport_csv 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 -563 0 gradeimport_csv 2020061500 2020061500 Plugin installed \N 0 1609808498 -564 0 gradeimport_direct \N 2020061500 Starting plugin installation \N 0 1609808498 -565 0 gradeimport_direct 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 -566 0 gradeimport_direct 2020061500 2020061500 Plugin installed \N 0 1609808498 -567 0 gradeimport_xml \N 2020061500 Starting plugin installation \N 0 1609808498 -568 0 gradeimport_xml 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 -569 0 gradeimport_xml 2020061500 2020061500 Plugin installed \N 0 1609808498 -570 0 gradereport_grader \N 2020061500 Starting plugin installation \N 0 1609808498 -571 0 gradereport_grader 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 -572 0 gradereport_grader 2020061500 2020061500 Plugin installed \N 0 1609808498 -573 0 gradereport_history \N 2020061500 Starting plugin installation \N 0 1609808498 -574 0 gradereport_history 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 -575 0 gradereport_history 2020061500 2020061500 Plugin installed \N 0 1609808498 -576 0 gradereport_outcomes \N 2020061500 Starting plugin installation \N 0 1609808498 -577 0 gradereport_outcomes 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 -578 0 gradereport_outcomes 2020061500 2020061500 Plugin installed \N 0 1609808498 -579 0 gradereport_overview \N 2020061500 Starting plugin installation \N 0 1609808498 -580 0 gradereport_overview 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 -581 0 gradereport_overview 2020061500 2020061500 Plugin installed \N 0 1609808498 -582 0 gradereport_singleview \N 2020061500 Starting plugin installation \N 0 1609808498 -583 0 gradereport_singleview 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808498 -584 0 gradereport_singleview 2020061500 2020061500 Plugin installed \N 0 1609808499 -585 0 gradereport_user \N 2020061500 Starting plugin installation \N 0 1609808499 -586 0 gradereport_user 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 -587 0 gradereport_user 2020061500 2020061500 Plugin installed \N 0 1609808499 -588 0 gradingform_guide \N 2020061500 Starting plugin installation \N 0 1609808499 -589 0 gradingform_guide 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 -590 0 gradingform_guide 2020061500 2020061500 Plugin installed \N 0 1609808499 -591 0 gradingform_rubric \N 2020061500 Starting plugin installation \N 0 1609808499 -592 0 gradingform_rubric 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 -593 0 gradingform_rubric 2020061500 2020061500 Plugin installed \N 0 1609808499 -594 0 mlbackend_php \N 2020061500 Starting plugin installation \N 0 1609808499 -595 0 mlbackend_php 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 -596 0 mlbackend_php 2020061500 2020061500 Plugin installed \N 0 1609808499 -597 0 mlbackend_python \N 2020061500 Starting plugin installation \N 0 1609808499 -598 0 mlbackend_python 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 -599 0 mlbackend_python 2020061500 2020061500 Plugin installed \N 0 1609808499 -600 0 mnetservice_enrol \N 2020061500 Starting plugin installation \N 0 1609808499 -601 0 mnetservice_enrol 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 -602 0 mnetservice_enrol 2020061500 2020061500 Plugin installed \N 0 1609808499 -603 0 webservice_rest \N 2020061500 Starting plugin installation \N 0 1609808499 -604 0 webservice_rest 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 -605 0 webservice_rest 2020061500 2020061500 Plugin installed \N 0 1609808499 -606 0 webservice_soap \N 2020061500 Starting plugin installation \N 0 1609808499 -607 0 webservice_soap 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 -608 0 webservice_soap 2020061500 2020061500 Plugin installed \N 0 1609808499 -609 0 webservice_xmlrpc \N 2020061500 Starting plugin installation \N 0 1609808499 -610 0 webservice_xmlrpc 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 -611 0 webservice_xmlrpc 2020061500 2020061500 Plugin installed \N 0 1609808499 -612 0 repository_areafiles \N 2020061500 Starting plugin installation \N 0 1609808499 -613 0 repository_areafiles 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 -614 0 repository_areafiles 2020061500 2020061500 Plugin installed \N 0 1609808499 -615 0 repository_boxnet \N 2020061500 Starting plugin installation \N 0 1609808499 -616 0 repository_boxnet 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 -617 0 repository_boxnet 2020061500 2020061500 Plugin installed \N 0 1609808499 -618 0 repository_contentbank \N 2020061500 Starting plugin installation \N 0 1609808499 -619 0 repository_contentbank 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 -620 0 repository_contentbank 2020061500 2020061500 Plugin installed \N 0 1609808499 -621 0 repository_coursefiles \N 2020061500 Starting plugin installation \N 0 1609808499 -622 0 repository_coursefiles 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 -623 0 repository_coursefiles 2020061500 2020061500 Plugin installed \N 0 1609808499 -624 0 repository_dropbox \N 2020061500 Starting plugin installation \N 0 1609808499 -625 0 repository_dropbox 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 -626 0 repository_dropbox 2020061500 2020061500 Plugin installed \N 0 1609808499 -627 0 repository_equella \N 2020061500 Starting plugin installation \N 0 1609808499 -628 0 repository_equella 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 -629 0 repository_equella 2020061500 2020061500 Plugin installed \N 0 1609808499 -630 0 repository_filesystem \N 2020061500 Starting plugin installation \N 0 1609808499 -631 0 repository_filesystem 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808499 -632 0 repository_filesystem 2020061500 2020061500 Plugin installed \N 0 1609808500 -633 0 repository_flickr \N 2020061500 Starting plugin installation \N 0 1609808500 -634 0 repository_flickr 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 -635 0 repository_flickr 2020061500 2020061500 Plugin installed \N 0 1609808500 -636 0 repository_flickr_public \N 2020061500 Starting plugin installation \N 0 1609808500 -637 0 repository_flickr_public 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 -638 0 repository_flickr_public 2020061500 2020061500 Plugin installed \N 0 1609808500 -639 0 repository_googledocs \N 2020061500 Starting plugin installation \N 0 1609808500 -640 0 repository_googledocs 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 -641 0 repository_googledocs 2020061500 2020061500 Plugin installed \N 0 1609808500 -642 0 repository_local \N 2020061500 Starting plugin installation \N 0 1609808500 -643 0 repository_local 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 -644 0 repository_local 2020061500 2020061500 Plugin installed \N 0 1609808500 -645 0 repository_merlot \N 2020061500 Starting plugin installation \N 0 1609808500 -646 0 repository_merlot 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 -647 0 repository_merlot 2020061500 2020061500 Plugin installed \N 0 1609808500 -648 0 repository_nextcloud \N 2020061500 Starting plugin installation \N 0 1609808500 -649 0 repository_nextcloud 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 -650 0 repository_nextcloud 2020061500 2020061500 Plugin installed \N 0 1609808500 -651 0 repository_onedrive \N 2020061500 Starting plugin installation \N 0 1609808500 -652 0 repository_onedrive 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 -653 0 repository_onedrive 2020061500 2020061500 Plugin installed \N 0 1609808500 -654 0 repository_picasa \N 2020061500 Starting plugin installation \N 0 1609808500 -655 0 repository_picasa 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 -656 0 repository_picasa 2020061500 2020061500 Plugin installed \N 0 1609808500 -657 0 repository_recent \N 2020061500 Starting plugin installation \N 0 1609808500 -658 0 repository_recent 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 -659 0 repository_recent 2020061500 2020061500 Plugin installed \N 0 1609808500 -660 0 repository_s3 \N 2020061500 Starting plugin installation \N 0 1609808500 -661 0 repository_s3 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 -662 0 repository_s3 2020061500 2020061500 Plugin installed \N 0 1609808500 -663 0 repository_skydrive \N 2020061500 Starting plugin installation \N 0 1609808500 -664 0 repository_skydrive 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 -665 0 repository_skydrive 2020061500 2020061500 Plugin installed \N 0 1609808500 -666 0 repository_upload \N 2020061500 Starting plugin installation \N 0 1609808500 -667 0 repository_upload 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 -668 0 repository_upload 2020061500 2020061500 Plugin installed \N 0 1609808500 -669 0 repository_url \N 2020061500 Starting plugin installation \N 0 1609808500 -670 0 repository_url 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 -671 0 repository_url 2020061500 2020061500 Plugin installed \N 0 1609808500 -672 0 repository_user \N 2020061500 Starting plugin installation \N 0 1609808500 -673 0 repository_user 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 -674 0 repository_user 2020061500 2020061500 Plugin installed \N 0 1609808500 -675 0 repository_webdav \N 2020061500 Starting plugin installation \N 0 1609808500 -676 0 repository_webdav 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 -677 0 repository_webdav 2020061500 2020061500 Plugin installed \N 0 1609808500 -678 0 repository_wikimedia \N 2020061500 Starting plugin installation \N 0 1609808500 -679 0 repository_wikimedia 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808500 -680 0 repository_wikimedia 2020061500 2020061500 Plugin installed \N 0 1609808501 -681 0 repository_youtube \N 2020061500 Starting plugin installation \N 0 1609808501 -682 0 repository_youtube 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -683 0 repository_youtube 2020061500 2020061500 Plugin installed \N 0 1609808501 -684 0 portfolio_boxnet \N 2020061500 Starting plugin installation \N 0 1609808501 -685 0 portfolio_boxnet 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -686 0 portfolio_boxnet 2020061500 2020061500 Plugin installed \N 0 1609808501 -687 0 portfolio_download \N 2020061500 Starting plugin installation \N 0 1609808501 -688 0 portfolio_download 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -689 0 portfolio_download 2020061500 2020061500 Plugin installed \N 0 1609808501 -690 0 portfolio_flickr \N 2020061500 Starting plugin installation \N 0 1609808501 -691 0 portfolio_flickr 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -692 0 portfolio_flickr 2020061500 2020061500 Plugin installed \N 0 1609808501 -693 0 portfolio_googledocs \N 2020061500 Starting plugin installation \N 0 1609808501 -694 0 portfolio_googledocs 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -695 0 portfolio_googledocs 2020061500 2020061500 Plugin installed \N 0 1609808501 -696 0 portfolio_mahara \N 2020061500 Starting plugin installation \N 0 1609808501 -697 0 portfolio_mahara 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -698 0 portfolio_mahara 2020061500 2020061500 Plugin installed \N 0 1609808501 -699 0 portfolio_picasa \N 2020061500 Starting plugin installation \N 0 1609808501 -700 0 portfolio_picasa 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -701 0 portfolio_picasa 2020061500 2020061500 Plugin installed \N 0 1609808501 -702 0 search_simpledb \N 2020061500 Starting plugin installation \N 0 1609808501 -703 0 search_simpledb 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -704 0 search_simpledb 2020061500 2020061500 Plugin installed \N 0 1609808501 -705 0 search_solr \N 2020061500 Starting plugin installation \N 0 1609808501 -706 0 search_solr 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -707 0 search_solr 2020061500 2020061500 Plugin installed \N 0 1609808501 -708 0 qbehaviour_adaptive \N 2020061500 Starting plugin installation \N 0 1609808501 -709 0 qbehaviour_adaptive 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -710 0 qbehaviour_adaptive 2020061500 2020061500 Plugin installed \N 0 1609808501 -711 0 qbehaviour_adaptivenopenalty \N 2020061500 Starting plugin installation \N 0 1609808501 -712 0 qbehaviour_adaptivenopenalty 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -713 0 qbehaviour_adaptivenopenalty 2020061500 2020061500 Plugin installed \N 0 1609808501 -714 0 qbehaviour_deferredcbm \N 2020061500 Starting plugin installation \N 0 1609808501 -715 0 qbehaviour_deferredcbm 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -716 0 qbehaviour_deferredcbm 2020061500 2020061500 Plugin installed \N 0 1609808501 -717 0 qbehaviour_deferredfeedback \N 2020061500 Starting plugin installation \N 0 1609808501 -718 0 qbehaviour_deferredfeedback 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -719 0 qbehaviour_deferredfeedback 2020061500 2020061500 Plugin installed \N 0 1609808501 -720 0 qbehaviour_immediatecbm \N 2020061500 Starting plugin installation \N 0 1609808501 -721 0 qbehaviour_immediatecbm 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -722 0 qbehaviour_immediatecbm 2020061500 2020061500 Plugin installed \N 0 1609808501 -723 0 qbehaviour_immediatefeedback \N 2020061500 Starting plugin installation \N 0 1609808501 -724 0 qbehaviour_immediatefeedback 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -725 0 qbehaviour_immediatefeedback 2020061500 2020061500 Plugin installed \N 0 1609808501 -726 0 qbehaviour_informationitem \N 2020061500 Starting plugin installation \N 0 1609808501 -727 0 qbehaviour_informationitem 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -728 0 qbehaviour_informationitem 2020061500 2020061500 Plugin installed \N 0 1609808501 -729 0 qbehaviour_interactive \N 2020061500 Starting plugin installation \N 0 1609808501 -730 0 qbehaviour_interactive 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -731 0 qbehaviour_interactive 2020061500 2020061500 Plugin installed \N 0 1609808501 -732 0 qbehaviour_interactivecountback \N 2020061500 Starting plugin installation \N 0 1609808501 -733 0 qbehaviour_interactivecountback 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -734 0 qbehaviour_interactivecountback 2020061500 2020061500 Plugin installed \N 0 1609808501 -735 0 qbehaviour_manualgraded \N 2020061500 Starting plugin installation \N 0 1609808501 -736 0 qbehaviour_manualgraded 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -737 0 qbehaviour_manualgraded 2020061500 2020061500 Plugin installed \N 0 1609808501 -738 0 qbehaviour_missing \N 2020061500 Starting plugin installation \N 0 1609808501 -739 0 qbehaviour_missing 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -740 0 qbehaviour_missing 2020061500 2020061500 Plugin installed \N 0 1609808501 -741 0 qformat_aiken \N 2020061500 Starting plugin installation \N 0 1609808501 -742 0 qformat_aiken 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -743 0 qformat_aiken 2020061500 2020061500 Plugin installed \N 0 1609808501 -744 0 qformat_blackboard_six \N 2020061500 Starting plugin installation \N 0 1609808501 -745 0 qformat_blackboard_six 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -746 0 qformat_blackboard_six 2020061500 2020061500 Plugin installed \N 0 1609808501 -747 0 qformat_examview \N 2020061500 Starting plugin installation \N 0 1609808501 -748 0 qformat_examview 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -749 0 qformat_examview 2020061500 2020061500 Plugin installed \N 0 1609808501 -750 0 qformat_gift \N 2020061500 Starting plugin installation \N 0 1609808501 -751 0 qformat_gift 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -752 0 qformat_gift 2020061500 2020061500 Plugin installed \N 0 1609808501 -753 0 qformat_missingword \N 2020061500 Starting plugin installation \N 0 1609808501 -754 0 qformat_missingword 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -755 0 qformat_missingword 2020061500 2020061500 Plugin installed \N 0 1609808501 -756 0 qformat_multianswer \N 2020061500 Starting plugin installation \N 0 1609808501 -757 0 qformat_multianswer 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808501 -758 0 qformat_multianswer 2020061500 2020061500 Plugin installed \N 0 1609808502 -759 0 qformat_webct \N 2020061500 Starting plugin installation \N 0 1609808502 -760 0 qformat_webct 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 -761 0 qformat_webct 2020061500 2020061500 Plugin installed \N 0 1609808502 -762 0 qformat_xhtml \N 2020061500 Starting plugin installation \N 0 1609808502 -763 0 qformat_xhtml 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 -764 0 qformat_xhtml 2020061500 2020061500 Plugin installed \N 0 1609808502 -765 0 qformat_xml \N 2020061500 Starting plugin installation \N 0 1609808502 -766 0 qformat_xml 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 -767 0 qformat_xml 2020061500 2020061500 Plugin installed \N 0 1609808502 -768 0 tool_analytics \N 2020061500 Starting plugin installation \N 0 1609808502 -769 0 tool_analytics 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 -770 0 tool_analytics 2020061500 2020061500 Plugin installed \N 0 1609808502 -771 0 tool_availabilityconditions \N 2020061500 Starting plugin installation \N 0 1609808502 -772 0 tool_availabilityconditions 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 -773 0 tool_availabilityconditions 2020061500 2020061500 Plugin installed \N 0 1609808502 -774 0 tool_behat \N 2020061500 Starting plugin installation \N 0 1609808502 -775 0 tool_behat 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 -776 0 tool_behat 2020061500 2020061500 Plugin installed \N 0 1609808502 -777 0 tool_capability \N 2020061500 Starting plugin installation \N 0 1609808502 -778 0 tool_capability 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 -779 0 tool_capability 2020061500 2020061500 Plugin installed \N 0 1609808502 -780 0 tool_cohortroles \N 2020061500 Starting plugin installation \N 0 1609808502 -781 0 tool_cohortroles 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 -782 0 tool_cohortroles 2020061500 2020061500 Plugin installed \N 0 1609808502 -783 0 tool_customlang \N 2020061500 Starting plugin installation \N 0 1609808502 -784 0 tool_customlang 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 -785 0 tool_customlang 2020061500 2020061500 Plugin installed \N 0 1609808502 -786 0 tool_dataprivacy \N 2020061501 Starting plugin installation \N 0 1609808502 -787 0 tool_dataprivacy 2020061501 2020061501 Upgrade savepoint reached \N 0 1609808502 -788 0 tool_dataprivacy 2020061501 2020061501 Plugin installed \N 0 1609808502 -789 0 tool_dbtransfer \N 2020061500 Starting plugin installation \N 0 1609808502 -790 0 tool_dbtransfer 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 -791 0 tool_dbtransfer 2020061500 2020061500 Plugin installed \N 0 1609808502 -792 0 tool_filetypes \N 2020061500 Starting plugin installation \N 0 1609808502 -793 0 tool_filetypes 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 -794 0 tool_filetypes 2020061500 2020061500 Plugin installed \N 0 1609808502 -795 0 tool_generator \N 2020061500 Starting plugin installation \N 0 1609808502 -796 0 tool_generator 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 -797 0 tool_generator 2020061500 2020061500 Plugin installed \N 0 1609808502 -798 0 tool_health \N 2020061500 Starting plugin installation \N 0 1609808502 -799 0 tool_health 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 -800 0 tool_health 2020061500 2020061500 Plugin installed \N 0 1609808502 -801 0 tool_httpsreplace \N 2020061500 Starting plugin installation \N 0 1609808502 -802 0 tool_httpsreplace 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 -803 0 tool_httpsreplace 2020061500 2020061500 Plugin installed \N 0 1609808502 -804 0 tool_innodb \N 2020061500 Starting plugin installation \N 0 1609808502 -805 0 tool_innodb 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 -806 0 tool_innodb 2020061500 2020061500 Plugin installed \N 0 1609808502 -807 0 tool_installaddon \N 2020061500 Starting plugin installation \N 0 1609808502 -808 0 tool_installaddon 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 -809 0 tool_installaddon 2020061500 2020061500 Plugin installed \N 0 1609808502 -810 0 tool_langimport \N 2020061500 Starting plugin installation \N 0 1609808502 -811 0 tool_langimport 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 -812 0 tool_langimport 2020061500 2020061500 Plugin installed \N 0 1609808502 -813 0 tool_licensemanager \N 2020061500 Starting plugin installation \N 0 1609808502 -814 0 tool_licensemanager 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 -815 0 tool_licensemanager 2020061500 2020061500 Plugin installed \N 0 1609808502 -816 0 tool_log \N 2020061500 Starting plugin installation \N 0 1609808502 -817 0 tool_log 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808502 -818 0 tool_log 2020061500 2020061500 Plugin installed \N 0 1609808503 -819 0 tool_lp \N 2020061500 Starting plugin installation \N 0 1609808503 -820 0 tool_lp 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 -821 0 tool_lp 2020061500 2020061500 Plugin installed \N 0 1609808503 -822 0 tool_lpimportcsv \N 2020061500 Starting plugin installation \N 0 1609808503 -823 0 tool_lpimportcsv 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 -824 0 tool_lpimportcsv 2020061500 2020061500 Plugin installed \N 0 1609808503 -825 0 tool_lpmigrate \N 2020061500 Starting plugin installation \N 0 1609808503 -826 0 tool_lpmigrate 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 -827 0 tool_lpmigrate 2020061500 2020061500 Plugin installed \N 0 1609808503 -828 0 tool_messageinbound \N 2020061500 Starting plugin installation \N 0 1609808503 -829 0 tool_messageinbound 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 -830 0 tool_messageinbound 2020061500 2020061500 Plugin installed \N 0 1609808503 -831 0 tool_mobile \N 2020061500 Starting plugin installation \N 0 1609808503 -832 0 tool_mobile 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 -833 0 tool_mobile 2020061500 2020061500 Plugin installed \N 0 1609808503 -834 0 tool_monitor \N 2020061500 Starting plugin installation \N 0 1609808503 -835 0 tool_monitor 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 -836 0 tool_monitor 2020061500 2020061500 Plugin installed \N 0 1609808503 -837 0 tool_moodlenet \N 2020061503 Starting plugin installation \N 0 1609808503 -838 0 tool_moodlenet 2020061503 2020061503 Upgrade savepoint reached \N 0 1609808503 -839 0 tool_moodlenet 2020061503 2020061503 Plugin installed \N 0 1609808503 -840 0 tool_multilangupgrade \N 2020061500 Starting plugin installation \N 0 1609808503 -841 0 tool_multilangupgrade 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 -842 0 tool_multilangupgrade 2020061500 2020061500 Plugin installed \N 0 1609808503 -843 0 tool_oauth2 \N 2020061500 Starting plugin installation \N 0 1609808503 -844 0 tool_oauth2 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 -845 0 tool_oauth2 2020061500 2020061500 Plugin installed \N 0 1609808503 -846 0 tool_phpunit \N 2020061500 Starting plugin installation \N 0 1609808503 -847 0 tool_phpunit 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 -848 0 tool_phpunit 2020061500 2020061500 Plugin installed \N 0 1609808503 -849 0 tool_policy \N 2020061500 Starting plugin installation \N 0 1609808503 -850 0 tool_policy 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 -851 0 tool_policy 2020061500 2020061500 Plugin installed \N 0 1609808503 -852 0 tool_profiling \N 2020061500 Starting plugin installation \N 0 1609808503 -853 0 tool_profiling 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 -854 0 tool_profiling 2020061500 2020061500 Plugin installed \N 0 1609808503 -855 0 tool_recyclebin \N 2020061500 Starting plugin installation \N 0 1609808503 -856 0 tool_recyclebin 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 -857 0 tool_recyclebin 2020061500 2020061500 Plugin installed \N 0 1609808503 -858 0 tool_replace \N 2020061500 Starting plugin installation \N 0 1609808503 -859 0 tool_replace 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808503 -860 0 tool_replace 2020061500 2020061500 Plugin installed \N 0 1609808504 -861 0 tool_spamcleaner \N 2020061500 Starting plugin installation \N 0 1609808504 -862 0 tool_spamcleaner 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 -863 0 tool_spamcleaner 2020061500 2020061500 Plugin installed \N 0 1609808504 -864 0 tool_task \N 2020061500 Starting plugin installation \N 0 1609808504 -865 0 tool_task 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 -866 0 tool_task 2020061500 2020061500 Plugin installed \N 0 1609808504 -867 0 tool_templatelibrary \N 2020061500 Starting plugin installation \N 0 1609808504 -868 0 tool_templatelibrary 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 -869 0 tool_templatelibrary 2020061500 2020061500 Plugin installed \N 0 1609808504 -870 0 tool_unsuproles \N 2020061500 Starting plugin installation \N 0 1609808504 -871 0 tool_unsuproles 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 -872 0 tool_unsuproles 2020061500 2020061500 Plugin installed \N 0 1609808504 -873 0 tool_uploadcourse \N 2020061500 Starting plugin installation \N 0 1609808504 -874 0 tool_uploadcourse 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 -875 0 tool_uploadcourse 2020061500 2020061500 Plugin installed \N 0 1609808504 -876 0 tool_uploaduser \N 2020061500 Starting plugin installation \N 0 1609808504 -877 0 tool_uploaduser 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 -878 0 tool_uploaduser 2020061500 2020061500 Plugin installed \N 0 1609808504 -879 0 tool_usertours \N 2020061502 Starting plugin installation \N 0 1609808504 -880 0 tool_usertours 2020061502 2020061502 Upgrade savepoint reached \N 0 1609808504 -881 0 tool_usertours 2020061502 2020061502 Plugin installed \N 0 1609808504 -882 0 tool_xmldb \N 2020061500 Starting plugin installation \N 0 1609808504 -883 0 tool_xmldb 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 -884 0 tool_xmldb 2020061500 2020061500 Plugin installed \N 0 1609808504 -885 0 cachestore_apcu \N 2020061500 Starting plugin installation \N 0 1609808504 -886 0 cachestore_apcu 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 -887 0 cachestore_apcu 2020061500 2020061500 Plugin installed \N 0 1609808504 -888 0 cachestore_file \N 2020061500 Starting plugin installation \N 0 1609808504 -889 0 cachestore_file 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 -890 0 cachestore_file 2020061500 2020061500 Plugin installed \N 0 1609808504 -891 0 cachestore_memcached \N 2020061500 Starting plugin installation \N 0 1609808504 -892 0 cachestore_memcached 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 -893 0 cachestore_memcached 2020061500 2020061500 Plugin installed \N 0 1609808504 -894 0 cachestore_mongodb \N 2020061500 Starting plugin installation \N 0 1609808504 -895 0 cachestore_mongodb 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 -896 0 cachestore_mongodb 2020061500 2020061500 Plugin installed \N 0 1609808504 -897 0 cachestore_redis \N 2020061500 Starting plugin installation \N 0 1609808504 -898 0 cachestore_redis 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 -899 0 cachestore_redis 2020061500 2020061500 Plugin installed \N 0 1609808504 -900 0 cachestore_session \N 2020061500 Starting plugin installation \N 0 1609808504 -901 0 cachestore_session 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 -902 0 cachestore_session 2020061500 2020061500 Plugin installed \N 0 1609808504 -903 0 cachestore_static \N 2020061500 Starting plugin installation \N 0 1609808504 -904 0 cachestore_static 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 -905 0 cachestore_static 2020061500 2020061500 Plugin installed \N 0 1609808504 -906 0 cachelock_file \N 2020061500 Starting plugin installation \N 0 1609808504 -907 0 cachelock_file 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 -908 0 cachelock_file 2020061500 2020061500 Plugin installed \N 0 1609808504 -909 0 fileconverter_googledrive \N 2020061500 Starting plugin installation \N 0 1609808504 -910 0 fileconverter_googledrive 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 -911 0 fileconverter_googledrive 2020061500 2020061500 Plugin installed \N 0 1609808504 -912 0 fileconverter_unoconv \N 2020061500 Starting plugin installation \N 0 1609808504 -913 0 fileconverter_unoconv 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 -914 0 fileconverter_unoconv 2020061500 2020061500 Plugin installed \N 0 1609808504 -915 0 contenttype_h5p \N 2020061500 Starting plugin installation \N 0 1609808504 -916 0 contenttype_h5p 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 -917 0 contenttype_h5p 2020061500 2020061500 Plugin installed \N 0 1609808504 -918 0 theme_boost \N 2020061500 Starting plugin installation \N 0 1609808504 -919 0 theme_boost 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 -920 0 theme_boost 2020061500 2020061500 Plugin installed \N 0 1609808504 -921 0 theme_classic \N 2020061500 Starting plugin installation \N 0 1609808504 -922 0 theme_classic 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 -923 0 theme_classic 2020061500 2020061500 Plugin installed \N 0 1609808504 -924 0 h5plib_v124 \N 2020061500 Starting plugin installation \N 0 1609808504 -925 0 h5plib_v124 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 -926 0 h5plib_v124 2020061500 2020061500 Plugin installed \N 0 1609808504 -927 0 assignsubmission_comments \N 2020061500 Starting plugin installation \N 0 1609808504 -928 0 assignsubmission_comments 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808504 -929 0 assignsubmission_comments 2020061500 2020061500 Plugin installed \N 0 1609808505 -930 0 assignsubmission_file \N 2020061500 Starting plugin installation \N 0 1609808505 -931 0 assignsubmission_file 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 -932 0 assignsubmission_file 2020061500 2020061500 Plugin installed \N 0 1609808505 -933 0 assignsubmission_onlinetext \N 2020061500 Starting plugin installation \N 0 1609808505 -934 0 assignsubmission_onlinetext 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 -935 0 assignsubmission_onlinetext 2020061500 2020061500 Plugin installed \N 0 1609808505 -936 0 assignfeedback_comments \N 2020061500 Starting plugin installation \N 0 1609808505 -937 0 assignfeedback_comments 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 -938 0 assignfeedback_comments 2020061500 2020061500 Plugin installed \N 0 1609808505 -939 0 assignfeedback_editpdf \N 2020061500 Starting plugin installation \N 0 1609808505 -940 0 assignfeedback_editpdf 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 -941 0 assignfeedback_editpdf 2020061500 2020061500 Plugin installed \N 0 1609808505 -942 0 assignfeedback_file \N 2020061500 Starting plugin installation \N 0 1609808505 -943 0 assignfeedback_file 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 -944 0 assignfeedback_file 2020061500 2020061500 Plugin installed \N 0 1609808505 -945 0 assignfeedback_offline \N 2020061500 Starting plugin installation \N 0 1609808505 -946 0 assignfeedback_offline 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 -947 0 assignfeedback_offline 2020061500 2020061500 Plugin installed \N 0 1609808505 -948 0 assignment_offline \N 2020061500 Starting plugin installation \N 0 1609808505 -949 0 assignment_offline 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 -950 0 assignment_offline 2020061500 2020061500 Plugin installed \N 0 1609808505 -951 0 assignment_online \N 2020061500 Starting plugin installation \N 0 1609808505 -952 0 assignment_online 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 -953 0 assignment_online 2020061500 2020061500 Plugin installed \N 0 1609808505 -954 0 assignment_upload \N 2020061500 Starting plugin installation \N 0 1609808505 -955 0 assignment_upload 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 -956 0 assignment_upload 2020061500 2020061500 Plugin installed \N 0 1609808505 -957 0 assignment_uploadsingle \N 2020061500 Starting plugin installation \N 0 1609808505 -958 0 assignment_uploadsingle 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 -959 0 assignment_uploadsingle 2020061500 2020061500 Plugin installed \N 0 1609808505 -960 0 booktool_exportimscp \N 2020061500 Starting plugin installation \N 0 1609808505 -961 0 booktool_exportimscp 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 -962 0 booktool_exportimscp 2020061500 2020061500 Plugin installed \N 0 1609808505 -963 0 booktool_importhtml \N 2020061500 Starting plugin installation \N 0 1609808505 -964 0 booktool_importhtml 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 -965 0 booktool_importhtml 2020061500 2020061500 Plugin installed \N 0 1609808505 -966 0 booktool_print \N 2020061500 Starting plugin installation \N 0 1609808505 -967 0 booktool_print 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 -968 0 booktool_print 2020061500 2020061500 Plugin installed \N 0 1609808505 -969 0 datafield_checkbox \N 2020061500 Starting plugin installation \N 0 1609808505 -970 0 datafield_checkbox 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 -971 0 datafield_checkbox 2020061500 2020061500 Plugin installed \N 0 1609808505 -972 0 datafield_date \N 2020061500 Starting plugin installation \N 0 1609808505 -973 0 datafield_date 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 -974 0 datafield_date 2020061500 2020061500 Plugin installed \N 0 1609808505 -975 0 datafield_file \N 2020061500 Starting plugin installation \N 0 1609808505 -976 0 datafield_file 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 -977 0 datafield_file 2020061500 2020061500 Plugin installed \N 0 1609808505 -978 0 datafield_latlong \N 2020061500 Starting plugin installation \N 0 1609808505 -979 0 datafield_latlong 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808505 -980 0 datafield_latlong 2020061500 2020061500 Plugin installed \N 0 1609808506 -981 0 datafield_menu \N 2020061500 Starting plugin installation \N 0 1609808506 -982 0 datafield_menu 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 -983 0 datafield_menu 2020061500 2020061500 Plugin installed \N 0 1609808506 -984 0 datafield_multimenu \N 2020061500 Starting plugin installation \N 0 1609808506 -985 0 datafield_multimenu 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 -986 0 datafield_multimenu 2020061500 2020061500 Plugin installed \N 0 1609808506 -987 0 datafield_number \N 2020061500 Starting plugin installation \N 0 1609808506 -988 0 datafield_number 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 -989 0 datafield_number 2020061500 2020061500 Plugin installed \N 0 1609808506 -990 0 datafield_picture \N 2020061500 Starting plugin installation \N 0 1609808506 -991 0 datafield_picture 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 -992 0 datafield_picture 2020061500 2020061500 Plugin installed \N 0 1609808506 -993 0 datafield_radiobutton \N 2020061500 Starting plugin installation \N 0 1609808506 -994 0 datafield_radiobutton 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 -995 0 datafield_radiobutton 2020061500 2020061500 Plugin installed \N 0 1609808506 -996 0 datafield_text \N 2020061500 Starting plugin installation \N 0 1609808506 -997 0 datafield_text 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 -998 0 datafield_text 2020061500 2020061500 Plugin installed \N 0 1609808506 -999 0 datafield_textarea \N 2020061500 Starting plugin installation \N 0 1609808506 -1000 0 datafield_textarea 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 -1001 0 datafield_textarea 2020061500 2020061500 Plugin installed \N 0 1609808506 -1002 0 datafield_url \N 2020061500 Starting plugin installation \N 0 1609808506 -1003 0 datafield_url 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 -1004 0 datafield_url 2020061500 2020061500 Plugin installed \N 0 1609808506 -1005 0 datapreset_imagegallery \N 2020061500 Starting plugin installation \N 0 1609808506 -1006 0 datapreset_imagegallery 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 -1007 0 datapreset_imagegallery 2020061500 2020061500 Plugin installed \N 0 1609808506 -1008 0 forumreport_summary \N 2020061500 Starting plugin installation \N 0 1609808506 -1009 0 forumreport_summary 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 -1010 0 forumreport_summary 2020061500 2020061500 Plugin installed \N 0 1609808506 -1011 0 ltiservice_basicoutcomes \N 2020061500 Starting plugin installation \N 0 1609808506 -1012 0 ltiservice_basicoutcomes 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 -1013 0 ltiservice_basicoutcomes 2020061500 2020061500 Plugin installed \N 0 1609808506 -1014 0 ltiservice_gradebookservices \N 2020061500 Starting plugin installation \N 0 1609808506 -1015 0 ltiservice_gradebookservices 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 -1016 0 ltiservice_gradebookservices 2020061500 2020061500 Plugin installed \N 0 1609808506 -1017 0 ltiservice_memberships \N 2020061500 Starting plugin installation \N 0 1609808506 -1018 0 ltiservice_memberships 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 -1019 0 ltiservice_memberships 2020061500 2020061500 Plugin installed \N 0 1609808506 -1020 0 ltiservice_profile \N 2020061500 Starting plugin installation \N 0 1609808506 -1021 0 ltiservice_profile 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 -1022 0 ltiservice_profile 2020061500 2020061500 Plugin installed \N 0 1609808506 -1023 0 ltiservice_toolproxy \N 2020061500 Starting plugin installation \N 0 1609808506 -1024 0 ltiservice_toolproxy 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 -1025 0 ltiservice_toolproxy 2020061500 2020061500 Plugin installed \N 0 1609808506 -1026 0 ltiservice_toolsettings \N 2020061500 Starting plugin installation \N 0 1609808506 -1027 0 ltiservice_toolsettings 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 -1028 0 ltiservice_toolsettings 2020061500 2020061500 Plugin installed \N 0 1609808506 -1029 0 quiz_grading \N 2020061500 Starting plugin installation \N 0 1609808506 -1030 0 quiz_grading 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 -1031 0 quiz_grading 2020061500 2020061500 Plugin installed \N 0 1609808506 -1032 0 quiz_overview \N 2020061500 Starting plugin installation \N 0 1609808506 -1033 0 quiz_overview 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 -1034 0 quiz_overview 2020061500 2020061500 Plugin installed \N 0 1609808506 -1035 0 quiz_responses \N 2020061500 Starting plugin installation \N 0 1609808506 -1036 0 quiz_responses 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 -1037 0 quiz_responses 2020061500 2020061500 Plugin installed \N 0 1609808506 -1038 0 quiz_statistics \N 2020061500 Starting plugin installation \N 0 1609808506 -1039 0 quiz_statistics 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 -1040 0 quiz_statistics 2020061500 2020061500 Plugin installed \N 0 1609808506 -1041 0 quizaccess_delaybetweenattempts \N 2020061500 Starting plugin installation \N 0 1609808506 -1042 0 quizaccess_delaybetweenattempts 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808506 -1043 0 quizaccess_delaybetweenattempts 2020061500 2020061500 Plugin installed \N 0 1609808506 -1044 0 quizaccess_ipaddress \N 2020061500 Starting plugin installation \N 0 1609808507 -1045 0 quizaccess_ipaddress 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808507 -1046 0 quizaccess_ipaddress 2020061500 2020061500 Plugin installed \N 0 1609808507 -1047 0 quizaccess_numattempts \N 2020061500 Starting plugin installation \N 0 1609808507 -1048 0 quizaccess_numattempts 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808507 -1049 0 quizaccess_numattempts 2020061500 2020061500 Plugin installed \N 0 1609808507 -1050 0 quizaccess_offlineattempts \N 2020061500 Starting plugin installation \N 0 1609808507 -1051 0 quizaccess_offlineattempts 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808507 -1052 0 quizaccess_offlineattempts 2020061500 2020061500 Plugin installed \N 0 1609808507 -1053 0 quizaccess_openclosedate \N 2020061500 Starting plugin installation \N 0 1609808507 -1054 0 quizaccess_openclosedate 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808507 -1055 0 quizaccess_openclosedate 2020061500 2020061500 Plugin installed \N 0 1609808507 -1056 0 quizaccess_password \N 2020061500 Starting plugin installation \N 0 1609808507 -1057 0 quizaccess_password 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808507 -1058 0 quizaccess_password 2020061500 2020061500 Plugin installed \N 0 1609808507 -1059 0 quizaccess_seb \N 2020061500 Starting plugin installation \N 0 1609808507 -1060 0 quizaccess_seb 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808507 -1061 0 quizaccess_seb 2020061500 2020061500 Plugin installed \N 0 1609808507 -1062 0 quizaccess_securewindow \N 2020061500 Starting plugin installation \N 0 1609808507 -1063 0 quizaccess_securewindow 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808507 -1064 0 quizaccess_securewindow 2020061500 2020061500 Plugin installed \N 0 1609808507 -1065 0 quizaccess_timelimit \N 2020061500 Starting plugin installation \N 0 1609808507 -1066 0 quizaccess_timelimit 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808507 -1067 0 quizaccess_timelimit 2020061500 2020061500 Plugin installed \N 0 1609808507 -1068 0 scormreport_basic \N 2020061500 Starting plugin installation \N 0 1609808507 -1069 0 scormreport_basic 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808507 -1070 0 scormreport_basic 2020061500 2020061500 Plugin installed \N 0 1609808507 -1071 0 scormreport_graphs \N 2020061500 Starting plugin installation \N 0 1609808507 -1072 0 scormreport_graphs 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808507 -1073 0 scormreport_graphs 2020061500 2020061500 Plugin installed \N 0 1609808507 -1074 0 scormreport_interactions \N 2020061500 Starting plugin installation \N 0 1609808507 -1075 0 scormreport_interactions 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808507 -1076 0 scormreport_interactions 2020061500 2020061500 Plugin installed \N 0 1609808508 -1077 0 scormreport_objectives \N 2020061500 Starting plugin installation \N 0 1609808508 -1078 0 scormreport_objectives 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 -1079 0 scormreport_objectives 2020061500 2020061500 Plugin installed \N 0 1609808508 -1080 0 workshopform_accumulative \N 2020061500 Starting plugin installation \N 0 1609808508 -1081 0 workshopform_accumulative 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 -1082 0 workshopform_accumulative 2020061500 2020061500 Plugin installed \N 0 1609808508 -1083 0 workshopform_comments \N 2020061500 Starting plugin installation \N 0 1609808508 -1084 0 workshopform_comments 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 -1085 0 workshopform_comments 2020061500 2020061500 Plugin installed \N 0 1609808508 -1086 0 workshopform_numerrors \N 2020061500 Starting plugin installation \N 0 1609808508 -1087 0 workshopform_numerrors 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 -1088 0 workshopform_numerrors 2020061500 2020061500 Plugin installed \N 0 1609808508 -1089 0 workshopform_rubric \N 2020061500 Starting plugin installation \N 0 1609808508 -1090 0 workshopform_rubric 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 -1091 0 workshopform_rubric 2020061500 2020061500 Plugin installed \N 0 1609808508 -1092 0 workshopallocation_manual \N 2020061500 Starting plugin installation \N 0 1609808508 -1093 0 workshopallocation_manual 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 -1094 0 workshopallocation_manual 2020061500 2020061500 Plugin installed \N 0 1609808508 -1095 0 workshopallocation_random \N 2020061500 Starting plugin installation \N 0 1609808508 -1096 0 workshopallocation_random 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 -1097 0 workshopallocation_random 2020061500 2020061500 Plugin installed \N 0 1609808508 -1098 0 workshopallocation_scheduled \N 2020061500 Starting plugin installation \N 0 1609808508 -1099 0 workshopallocation_scheduled 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 -1100 0 workshopallocation_scheduled 2020061500 2020061500 Plugin installed \N 0 1609808508 -1101 0 workshopeval_best \N 2020061500 Starting plugin installation \N 0 1609808508 -1102 0 workshopeval_best 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 -1103 0 workshopeval_best 2020061500 2020061500 Plugin installed \N 0 1609808508 -1104 0 atto_accessibilitychecker \N 2020061500 Starting plugin installation \N 0 1609808508 -1105 0 atto_accessibilitychecker 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 -1106 0 atto_accessibilitychecker 2020061500 2020061500 Plugin installed \N 0 1609808508 -1107 0 atto_accessibilityhelper \N 2020061500 Starting plugin installation \N 0 1609808508 -1108 0 atto_accessibilityhelper 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 -1109 0 atto_accessibilityhelper 2020061500 2020061500 Plugin installed \N 0 1609808508 -1110 0 atto_align \N 2020061500 Starting plugin installation \N 0 1609808508 -1111 0 atto_align 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 -1112 0 atto_align 2020061500 2020061500 Plugin installed \N 0 1609808508 -1113 0 atto_backcolor \N 2020061500 Starting plugin installation \N 0 1609808508 -1114 0 atto_backcolor 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 -1115 0 atto_backcolor 2020061500 2020061500 Plugin installed \N 0 1609808508 -1116 0 atto_bold \N 2020061500 Starting plugin installation \N 0 1609808508 -1117 0 atto_bold 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 -1118 0 atto_bold 2020061500 2020061500 Plugin installed \N 0 1609808508 -1119 0 atto_charmap \N 2020061500 Starting plugin installation \N 0 1609808508 -1120 0 atto_charmap 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 -1121 0 atto_charmap 2020061500 2020061500 Plugin installed \N 0 1609808508 -1122 0 atto_clear \N 2020061500 Starting plugin installation \N 0 1609808508 -1123 0 atto_clear 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 -1124 0 atto_clear 2020061500 2020061500 Plugin installed \N 0 1609808508 -1125 0 atto_collapse \N 2020061500 Starting plugin installation \N 0 1609808508 -1126 0 atto_collapse 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 -1127 0 atto_collapse 2020061500 2020061500 Plugin installed \N 0 1609808508 -1128 0 atto_emojipicker \N 2020061500 Starting plugin installation \N 0 1609808508 -1129 0 atto_emojipicker 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 -1130 0 atto_emojipicker 2020061500 2020061500 Plugin installed \N 0 1609808508 -1131 0 atto_emoticon \N 2020061500 Starting plugin installation \N 0 1609808508 -1132 0 atto_emoticon 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 -1133 0 atto_emoticon 2020061500 2020061500 Plugin installed \N 0 1609808508 -1134 0 atto_equation \N 2020061500 Starting plugin installation \N 0 1609808508 -1135 0 atto_equation 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 -1136 0 atto_equation 2020061500 2020061500 Plugin installed \N 0 1609808508 -1137 0 atto_fontcolor \N 2020061500 Starting plugin installation \N 0 1609808508 -1138 0 atto_fontcolor 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 -1139 0 atto_fontcolor 2020061500 2020061500 Plugin installed \N 0 1609808508 -1140 0 atto_h5p \N 2020061500 Starting plugin installation \N 0 1609808508 -1141 0 atto_h5p 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 -1142 0 atto_h5p 2020061500 2020061500 Plugin installed \N 0 1609808508 -1143 0 atto_html \N 2020061500 Starting plugin installation \N 0 1609808508 -1144 0 atto_html 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808508 -1145 0 atto_html 2020061500 2020061500 Plugin installed \N 0 1609808509 -1146 0 atto_image \N 2020061500 Starting plugin installation \N 0 1609808509 -1147 0 atto_image 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1148 0 atto_image 2020061500 2020061500 Plugin installed \N 0 1609808509 -1149 0 atto_indent \N 2020061500 Starting plugin installation \N 0 1609808509 -1150 0 atto_indent 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1151 0 atto_indent 2020061500 2020061500 Plugin installed \N 0 1609808509 -1152 0 atto_italic \N 2020061500 Starting plugin installation \N 0 1609808509 -1153 0 atto_italic 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1154 0 atto_italic 2020061500 2020061500 Plugin installed \N 0 1609808509 -1155 0 atto_link \N 2020061500 Starting plugin installation \N 0 1609808509 -1156 0 atto_link 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1157 0 atto_link 2020061500 2020061500 Plugin installed \N 0 1609808509 -1158 0 atto_managefiles \N 2020061500 Starting plugin installation \N 0 1609808509 -1159 0 atto_managefiles 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1160 0 atto_managefiles 2020061500 2020061500 Plugin installed \N 0 1609808509 -1161 0 atto_media \N 2020061500 Starting plugin installation \N 0 1609808509 -1162 0 atto_media 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1163 0 atto_media 2020061500 2020061500 Plugin installed \N 0 1609808509 -1164 0 atto_noautolink \N 2020061500 Starting plugin installation \N 0 1609808509 -1165 0 atto_noautolink 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1166 0 atto_noautolink 2020061500 2020061500 Plugin installed \N 0 1609808509 -1167 0 atto_orderedlist \N 2020061500 Starting plugin installation \N 0 1609808509 -1168 0 atto_orderedlist 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1169 0 atto_orderedlist 2020061500 2020061500 Plugin installed \N 0 1609808509 -1170 0 atto_recordrtc \N 2020061500 Starting plugin installation \N 0 1609808509 -1171 0 atto_recordrtc 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1172 0 atto_recordrtc 2020061500 2020061500 Plugin installed \N 0 1609808509 -1173 0 atto_rtl \N 2020061500 Starting plugin installation \N 0 1609808509 -1174 0 atto_rtl 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1175 0 atto_rtl 2020061500 2020061500 Plugin installed \N 0 1609808509 -1176 0 atto_strike \N 2020061500 Starting plugin installation \N 0 1609808509 -1177 0 atto_strike 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1178 0 atto_strike 2020061500 2020061500 Plugin installed \N 0 1609808509 -1179 0 atto_subscript \N 2020061500 Starting plugin installation \N 0 1609808509 -1180 0 atto_subscript 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1181 0 atto_subscript 2020061500 2020061500 Plugin installed \N 0 1609808509 -1182 0 atto_superscript \N 2020061500 Starting plugin installation \N 0 1609808509 -1183 0 atto_superscript 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1184 0 atto_superscript 2020061500 2020061500 Plugin installed \N 0 1609808509 -1185 0 atto_table \N 2020061500 Starting plugin installation \N 0 1609808509 -1186 0 atto_table 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1187 0 atto_table 2020061500 2020061500 Plugin installed \N 0 1609808509 -1188 0 atto_title \N 2020061500 Starting plugin installation \N 0 1609808509 -1189 0 atto_title 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1190 0 atto_title 2020061500 2020061500 Plugin installed \N 0 1609808509 -1191 0 atto_underline \N 2020061500 Starting plugin installation \N 0 1609808509 -1192 0 atto_underline 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1193 0 atto_underline 2020061500 2020061500 Plugin installed \N 0 1609808509 -1194 0 atto_undo \N 2020061500 Starting plugin installation \N 0 1609808509 -1195 0 atto_undo 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1196 0 atto_undo 2020061500 2020061500 Plugin installed \N 0 1609808509 -1197 0 atto_unorderedlist \N 2020061500 Starting plugin installation \N 0 1609808509 -1198 0 atto_unorderedlist 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1199 0 atto_unorderedlist 2020061500 2020061500 Plugin installed \N 0 1609808509 -1200 0 tinymce_ctrlhelp \N 2020061500 Starting plugin installation \N 0 1609808509 -1201 0 tinymce_ctrlhelp 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1202 0 tinymce_ctrlhelp 2020061500 2020061500 Plugin installed \N 0 1609808509 -1203 0 tinymce_managefiles \N 2020061500 Starting plugin installation \N 0 1609808509 -1204 0 tinymce_managefiles 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1205 0 tinymce_managefiles 2020061500 2020061500 Plugin installed \N 0 1609808509 -1206 0 tinymce_moodleemoticon \N 2020061500 Starting plugin installation \N 0 1609808509 -1207 0 tinymce_moodleemoticon 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1208 0 tinymce_moodleemoticon 2020061500 2020061500 Plugin installed \N 0 1609808509 -1209 0 tinymce_moodleimage \N 2020061500 Starting plugin installation \N 0 1609808509 -1210 0 tinymce_moodleimage 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1211 0 tinymce_moodleimage 2020061500 2020061500 Plugin installed \N 0 1609808509 -1212 0 tinymce_moodlemedia \N 2020061500 Starting plugin installation \N 0 1609808509 -1213 0 tinymce_moodlemedia 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1214 0 tinymce_moodlemedia 2020061500 2020061500 Plugin installed \N 0 1609808509 -1215 0 tinymce_moodlenolink \N 2020061500 Starting plugin installation \N 0 1609808509 -1216 0 tinymce_moodlenolink 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1217 0 tinymce_moodlenolink 2020061500 2020061500 Plugin installed \N 0 1609808509 -1218 0 tinymce_pdw \N 2020061500 Starting plugin installation \N 0 1609808509 -1219 0 tinymce_pdw 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1220 0 tinymce_pdw 2020061500 2020061500 Plugin installed \N 0 1609808509 -1221 0 tinymce_spellchecker \N 2020061500 Starting plugin installation \N 0 1609808509 -1222 0 tinymce_spellchecker 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1223 0 tinymce_spellchecker 2020061500 2020061500 Plugin installed \N 0 1609808509 -1224 0 tinymce_wrap \N 2020061500 Starting plugin installation \N 0 1609808509 -1225 0 tinymce_wrap 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1226 0 tinymce_wrap 2020061500 2020061500 Plugin installed \N 0 1609808509 -1227 0 logstore_database \N 2020061500 Starting plugin installation \N 0 1609808509 -1228 0 logstore_database 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808509 -1229 0 logstore_database 2020061500 2020061500 Plugin installed \N 0 1609808510 -1230 0 logstore_legacy \N 2020061500 Starting plugin installation \N 0 1609808510 -1231 0 logstore_legacy 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808510 -1232 0 logstore_legacy 2020061500 2020061500 Plugin installed \N 0 1609808510 -1233 0 logstore_standard \N 2020061500 Starting plugin installation \N 0 1609808510 -1234 0 logstore_standard 2020061500 2020061500 Upgrade savepoint reached \N 0 1609808510 -1235 0 logstore_standard 2020061500 2020061500 Plugin installed \N 0 1609808510 +1 0 core 2020110901.04 2020110901.04 Upgrade savepoint reached \N 0 1612889058 +2 0 core 2020110901.04 2020110901.04 Core installed \N 0 1612889067 +3 0 antivirus_clamav \N 2020110900 Starting plugin installation \N 0 1612889067 +4 0 antivirus_clamav 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889067 +5 0 antivirus_clamav 2020110900 2020110900 Plugin installed \N 0 1612889067 +6 0 availability_completion \N 2020110900 Starting plugin installation \N 0 1612889067 +7 0 availability_completion 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889067 +8 0 availability_completion 2020110900 2020110900 Plugin installed \N 0 1612889067 +9 0 availability_date \N 2020110900 Starting plugin installation \N 0 1612889067 +10 0 availability_date 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889067 +11 0 availability_date 2020110900 2020110900 Plugin installed \N 0 1612889067 +12 0 availability_grade \N 2020110900 Starting plugin installation \N 0 1612889067 +13 0 availability_grade 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889067 +14 0 availability_grade 2020110900 2020110900 Plugin installed \N 0 1612889067 +15 0 availability_group \N 2020110900 Starting plugin installation \N 0 1612889067 +16 0 availability_group 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889067 +17 0 availability_group 2020110900 2020110900 Plugin installed \N 0 1612889067 +18 0 availability_grouping \N 2020110900 Starting plugin installation \N 0 1612889067 +19 0 availability_grouping 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889067 +20 0 availability_grouping 2020110900 2020110900 Plugin installed \N 0 1612889067 +21 0 availability_profile \N 2020110900 Starting plugin installation \N 0 1612889067 +22 0 availability_profile 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889067 +23 0 availability_profile 2020110900 2020110900 Plugin installed \N 0 1612889067 +24 0 qtype_calculated \N 2020110900 Starting plugin installation \N 0 1612889067 +25 0 qtype_calculated 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889067 +26 0 qtype_calculated 2020110900 2020110900 Plugin installed \N 0 1612889067 +27 0 qtype_calculatedmulti \N 2020110900 Starting plugin installation \N 0 1612889067 +28 0 qtype_calculatedmulti 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889067 +29 0 qtype_calculatedmulti 2020110900 2020110900 Plugin installed \N 0 1612889067 +30 0 qtype_calculatedsimple \N 2020110900 Starting plugin installation \N 0 1612889067 +31 0 qtype_calculatedsimple 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889067 +32 0 qtype_calculatedsimple 2020110900 2020110900 Plugin installed \N 0 1612889067 +33 0 qtype_ddimageortext \N 2020110900 Starting plugin installation \N 0 1612889067 +34 0 qtype_ddimageortext 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889067 +35 0 qtype_ddimageortext 2020110900 2020110900 Plugin installed \N 0 1612889067 +36 0 qtype_ddmarker \N 2020110900 Starting plugin installation \N 0 1612889067 +37 0 qtype_ddmarker 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889068 +38 0 qtype_ddmarker 2020110900 2020110900 Plugin installed \N 0 1612889068 +39 0 qtype_ddwtos \N 2020110900 Starting plugin installation \N 0 1612889068 +40 0 qtype_ddwtos 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889068 +41 0 qtype_ddwtos 2020110900 2020110900 Plugin installed \N 0 1612889068 +42 0 qtype_description \N 2020110900 Starting plugin installation \N 0 1612889068 +43 0 qtype_description 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889068 +44 0 qtype_description 2020110900 2020110900 Plugin installed \N 0 1612889068 +45 0 qtype_essay \N 2020110900 Starting plugin installation \N 0 1612889068 +46 0 qtype_essay 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889068 +47 0 qtype_essay 2020110900 2020110900 Plugin installed \N 0 1612889068 +48 0 qtype_gapselect \N 2020110900 Starting plugin installation \N 0 1612889068 +49 0 qtype_gapselect 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889068 +50 0 qtype_gapselect 2020110900 2020110900 Plugin installed \N 0 1612889068 +51 0 qtype_match \N 2020110900 Starting plugin installation \N 0 1612889068 +52 0 qtype_match 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889068 +53 0 qtype_match 2020110900 2020110900 Plugin installed \N 0 1612889068 +54 0 qtype_missingtype \N 2020110900 Starting plugin installation \N 0 1612889068 +55 0 qtype_missingtype 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889068 +56 0 qtype_missingtype 2020110900 2020110900 Plugin installed \N 0 1612889068 +57 0 qtype_multianswer \N 2020110900 Starting plugin installation \N 0 1612889068 +58 0 qtype_multianswer 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889068 +59 0 qtype_multianswer 2020110900 2020110900 Plugin installed \N 0 1612889068 +60 0 qtype_multichoice \N 2020110900 Starting plugin installation \N 0 1612889068 +61 0 qtype_multichoice 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889068 +62 0 qtype_multichoice 2020110900 2020110900 Plugin installed \N 0 1612889068 +63 0 qtype_numerical \N 2020110900 Starting plugin installation \N 0 1612889068 +64 0 qtype_numerical 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889068 +65 0 qtype_numerical 2020110900 2020110900 Plugin installed \N 0 1612889068 +66 0 qtype_random \N 2020110900 Starting plugin installation \N 0 1612889068 +67 0 qtype_random 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889068 +68 0 qtype_random 2020110900 2020110900 Plugin installed \N 0 1612889068 +69 0 qtype_randomsamatch \N 2020110900 Starting plugin installation \N 0 1612889068 +70 0 qtype_randomsamatch 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889068 +71 0 qtype_randomsamatch 2020110900 2020110900 Plugin installed \N 0 1612889068 +72 0 qtype_shortanswer \N 2020110900 Starting plugin installation \N 0 1612889068 +73 0 qtype_shortanswer 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889068 +74 0 qtype_shortanswer 2020110900 2020110900 Plugin installed \N 0 1612889068 +75 0 qtype_truefalse \N 2020110900 Starting plugin installation \N 0 1612889068 +76 0 qtype_truefalse 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889068 +77 0 qtype_truefalse 2020110900 2020110900 Plugin installed \N 0 1612889068 +78 0 mod_assign \N 2020110900 Starting plugin installation \N 0 1612889068 +79 0 mod_assign 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889068 +80 0 mod_assign 2020110900 2020110900 Plugin installed \N 0 1612889069 +81 0 mod_assignment \N 2020110900 Starting plugin installation \N 0 1612889069 +82 0 mod_assignment 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889069 +83 0 mod_assignment 2020110900 2020110900 Plugin installed \N 0 1612889069 +84 0 mod_book \N 2020110900 Starting plugin installation \N 0 1612889069 +85 0 mod_book 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889069 +86 0 mod_book 2020110900 2020110900 Plugin installed \N 0 1612889070 +87 0 mod_chat \N 2020110900 Starting plugin installation \N 0 1612889070 +88 0 mod_chat 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889070 +89 0 mod_chat 2020110900 2020110900 Plugin installed \N 0 1612889070 +90 0 mod_choice \N 2020110900 Starting plugin installation \N 0 1612889070 +91 0 mod_choice 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889070 +92 0 mod_choice 2020110900 2020110900 Plugin installed \N 0 1612889070 +93 0 mod_data \N 2020110900 Starting plugin installation \N 0 1612889070 +94 0 mod_data 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889070 +95 0 mod_data 2020110900 2020110900 Plugin installed \N 0 1612889071 +96 0 mod_feedback \N 2020110900 Starting plugin installation \N 0 1612889071 +97 0 mod_feedback 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889071 +98 0 mod_feedback 2020110900 2020110900 Plugin installed \N 0 1612889072 +99 0 mod_folder \N 2020110900 Starting plugin installation \N 0 1612889072 +100 0 mod_folder 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889072 +101 0 mod_folder 2020110900 2020110900 Plugin installed \N 0 1612889072 +102 0 mod_forum \N 2020110900 Starting plugin installation \N 0 1612889072 +103 0 mod_forum 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889072 +104 0 mod_forum 2020110900 2020110900 Plugin installed \N 0 1612889073 +105 0 mod_glossary \N 2020110900 Starting plugin installation \N 0 1612889073 +106 0 mod_glossary 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889074 +107 0 mod_glossary 2020110900 2020110900 Plugin installed \N 0 1612889074 +108 0 mod_h5pactivity \N 2020110900 Starting plugin installation \N 0 1612889074 +109 0 mod_h5pactivity 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889074 +110 0 mod_h5pactivity 2020110900 2020110900 Plugin installed \N 0 1612889075 +111 0 mod_imscp \N 2020110900 Starting plugin installation \N 0 1612889075 +112 0 mod_imscp 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889075 +113 0 mod_imscp 2020110900 2020110900 Plugin installed \N 0 1612889075 +114 0 mod_label \N 2020110900 Starting plugin installation \N 0 1612889075 +115 0 mod_label 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889075 +116 0 mod_label 2020110900 2020110900 Plugin installed \N 0 1612889075 +117 0 mod_lesson \N 2020110900 Starting plugin installation \N 0 1612889075 +118 0 mod_lesson 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889075 +119 0 mod_lesson 2020110900 2020110900 Plugin installed \N 0 1612889075 +120 0 mod_lti \N 2020110900 Starting plugin installation \N 0 1612889075 +121 0 mod_lti 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889075 +122 0 mod_lti 2020110900 2020110900 Plugin installed \N 0 1612889076 +123 0 mod_page \N 2020110900 Starting plugin installation \N 0 1612889076 +124 0 mod_page 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889076 +125 0 mod_page 2020110900 2020110900 Plugin installed \N 0 1612889076 +126 0 mod_quiz \N 2020110900 Starting plugin installation \N 0 1612889076 +127 0 mod_quiz 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889076 +128 0 mod_quiz 2020110900 2020110900 Plugin installed \N 0 1612889077 +129 0 mod_resource \N 2020110900 Starting plugin installation \N 0 1612889077 +130 0 mod_resource 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889077 +131 0 mod_resource 2020110900 2020110900 Plugin installed \N 0 1612889077 +132 0 mod_scorm \N 2020110900 Starting plugin installation \N 0 1612889077 +133 0 mod_scorm 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889077 +134 0 mod_scorm 2020110900 2020110900 Plugin installed \N 0 1612889077 +135 0 mod_survey \N 2020110900 Starting plugin installation \N 0 1612889077 +136 0 mod_survey 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889077 +137 0 mod_survey 2020110900 2020110900 Plugin installed \N 0 1612889078 +138 0 mod_url \N 2020110900 Starting plugin installation \N 0 1612889078 +139 0 mod_url 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889078 +140 0 mod_url 2020110900 2020110900 Plugin installed \N 0 1612889078 +141 0 mod_wiki \N 2020110900 Starting plugin installation \N 0 1612889078 +142 0 mod_wiki 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889078 +143 0 mod_wiki 2020110900 2020110900 Plugin installed \N 0 1612889078 +144 0 mod_workshop \N 2020110900 Starting plugin installation \N 0 1612889078 +145 0 mod_workshop 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889078 +146 0 mod_workshop 2020110900 2020110900 Plugin installed \N 0 1612889079 +147 0 auth_cas \N 2020110900 Starting plugin installation \N 0 1612889079 +148 0 auth_cas 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889079 +149 0 auth_cas 2020110900 2020110900 Plugin installed \N 0 1612889079 +150 0 auth_db \N 2020110900 Starting plugin installation \N 0 1612889079 +151 0 auth_db 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889079 +152 0 auth_db 2020110900 2020110900 Plugin installed \N 0 1612889079 +153 0 auth_email \N 2020110900 Starting plugin installation \N 0 1612889079 +154 0 auth_email 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889079 +155 0 auth_email 2020110900 2020110900 Plugin installed \N 0 1612889079 +156 0 auth_ldap \N 2020110900 Starting plugin installation \N 0 1612889079 +157 0 auth_ldap 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889079 +158 0 auth_ldap 2020110900 2020110900 Plugin installed \N 0 1612889079 +159 0 auth_lti \N 2020110900 Starting plugin installation \N 0 1612889079 +160 0 auth_lti 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889079 +161 0 auth_lti 2020110900 2020110900 Plugin installed \N 0 1612889079 +162 0 auth_manual \N 2020110900 Starting plugin installation \N 0 1612889079 +163 0 auth_manual 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889079 +164 0 auth_manual 2020110900 2020110900 Plugin installed \N 0 1612889079 +165 0 auth_mnet \N 2020110900 Starting plugin installation \N 0 1612889079 +166 0 auth_mnet 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889079 +167 0 auth_mnet 2020110900 2020110900 Plugin installed \N 0 1612889080 +168 0 auth_nologin \N 2020110900 Starting plugin installation \N 0 1612889080 +169 0 auth_nologin 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889080 +170 0 auth_nologin 2020110900 2020110900 Plugin installed \N 0 1612889080 +171 0 auth_none \N 2020110900 Starting plugin installation \N 0 1612889080 +172 0 auth_none 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889080 +173 0 auth_none 2020110900 2020110900 Plugin installed \N 0 1612889080 +174 0 auth_oauth2 \N 2020110900 Starting plugin installation \N 0 1612889080 +175 0 auth_oauth2 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889080 +176 0 auth_oauth2 2020110900 2020110900 Plugin installed \N 0 1612889080 +177 0 auth_shibboleth \N 2020110901 Starting plugin installation \N 0 1612889080 +178 0 auth_shibboleth 2020110901 2020110901 Upgrade savepoint reached \N 0 1612889080 +179 0 auth_shibboleth 2020110901 2020110901 Plugin installed \N 0 1612889080 +180 0 auth_webservice \N 2020110900 Starting plugin installation \N 0 1612889080 +181 0 auth_webservice 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889080 +182 0 auth_webservice 2020110900 2020110900 Plugin installed \N 0 1612889080 +183 0 calendartype_gregorian \N 2020110900 Starting plugin installation \N 0 1612889080 +184 0 calendartype_gregorian 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889080 +185 0 calendartype_gregorian 2020110900 2020110900 Plugin installed \N 0 1612889080 +186 0 customfield_checkbox \N 2020110900 Starting plugin installation \N 0 1612889080 +187 0 customfield_checkbox 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889080 +188 0 customfield_checkbox 2020110900 2020110900 Plugin installed \N 0 1612889080 +189 0 customfield_date \N 2020110900 Starting plugin installation \N 0 1612889080 +190 0 customfield_date 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889080 +191 0 customfield_date 2020110900 2020110900 Plugin installed \N 0 1612889080 +192 0 customfield_select \N 2020110900 Starting plugin installation \N 0 1612889080 +193 0 customfield_select 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889080 +194 0 customfield_select 2020110900 2020110900 Plugin installed \N 0 1612889080 +195 0 customfield_text \N 2020110900 Starting plugin installation \N 0 1612889080 +196 0 customfield_text 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889080 +197 0 customfield_text 2020110900 2020110900 Plugin installed \N 0 1612889080 +198 0 customfield_textarea \N 2020110900 Starting plugin installation \N 0 1612889080 +199 0 customfield_textarea 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889080 +200 0 customfield_textarea 2020110900 2020110900 Plugin installed \N 0 1612889080 +201 0 enrol_category \N 2020110900 Starting plugin installation \N 0 1612889080 +202 0 enrol_category 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889080 +203 0 enrol_category 2020110900 2020110900 Plugin installed \N 0 1612889080 +204 0 enrol_cohort \N 2020110900 Starting plugin installation \N 0 1612889080 +205 0 enrol_cohort 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889080 +206 0 enrol_cohort 2020110900 2020110900 Plugin installed \N 0 1612889080 +207 0 enrol_database \N 2020110900 Starting plugin installation \N 0 1612889080 +208 0 enrol_database 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889080 +209 0 enrol_database 2020110900 2020110900 Plugin installed \N 0 1612889080 +210 0 enrol_fee \N 2020110900 Starting plugin installation \N 0 1612889080 +211 0 enrol_fee 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889080 +212 0 enrol_fee 2020110900 2020110900 Plugin installed \N 0 1612889080 +213 0 enrol_flatfile \N 2020110900 Starting plugin installation \N 0 1612889080 +214 0 enrol_flatfile 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889080 +215 0 enrol_flatfile 2020110900 2020110900 Plugin installed \N 0 1612889080 +216 0 enrol_guest \N 2020110900 Starting plugin installation \N 0 1612889081 +217 0 enrol_guest 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889081 +218 0 enrol_guest 2020110900 2020110900 Plugin installed \N 0 1612889081 +219 0 enrol_imsenterprise \N 2020110900 Starting plugin installation \N 0 1612889081 +220 0 enrol_imsenterprise 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889081 +221 0 enrol_imsenterprise 2020110900 2020110900 Plugin installed \N 0 1612889081 +222 0 enrol_ldap \N 2020110900 Starting plugin installation \N 0 1612889081 +223 0 enrol_ldap 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889081 +224 0 enrol_ldap 2020110900 2020110900 Plugin installed \N 0 1612889081 +225 0 enrol_lti \N 2020110900 Starting plugin installation \N 0 1612889081 +226 0 enrol_lti 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889081 +227 0 enrol_lti 2020110900 2020110900 Plugin installed \N 0 1612889081 +228 0 enrol_manual \N 2020110900 Starting plugin installation \N 0 1612889081 +229 0 enrol_manual 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889081 +230 0 enrol_manual 2020110900 2020110900 Plugin installed \N 0 1612889081 +231 0 enrol_meta \N 2020110900 Starting plugin installation \N 0 1612889081 +232 0 enrol_meta 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889081 +233 0 enrol_meta 2020110900 2020110900 Plugin installed \N 0 1612889081 +234 0 enrol_mnet \N 2020110900 Starting plugin installation \N 0 1612889081 +235 0 enrol_mnet 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889081 +236 0 enrol_mnet 2020110900 2020110900 Plugin installed \N 0 1612889081 +237 0 enrol_paypal \N 2020110900 Starting plugin installation \N 0 1612889081 +238 0 enrol_paypal 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889081 +239 0 enrol_paypal 2020110900 2020110900 Plugin installed \N 0 1612889081 +240 0 enrol_self \N 2020110900 Starting plugin installation \N 0 1612889081 +241 0 enrol_self 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889081 +242 0 enrol_self 2020110900 2020110900 Plugin installed \N 0 1612889082 +243 0 message_airnotifier \N 2020110900 Starting plugin installation \N 0 1612889082 +244 0 message_airnotifier 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889082 +245 0 message_airnotifier 2020110900 2020110900 Plugin installed \N 0 1612889082 +246 0 message_email \N 2020110900 Starting plugin installation \N 0 1612889082 +247 0 message_email 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889082 +248 0 message_email 2020110900 2020110900 Plugin installed \N 0 1612889082 +249 0 message_jabber \N 2020110900 Starting plugin installation \N 0 1612889082 +250 0 message_jabber 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889082 +251 0 message_jabber 2020110900 2020110900 Plugin installed \N 0 1612889082 +252 0 message_popup \N 2020110900 Starting plugin installation \N 0 1612889082 +253 0 message_popup 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889082 +254 0 message_popup 2020110900 2020110900 Plugin installed \N 0 1612889082 +255 0 block_activity_modules \N 2020110900 Starting plugin installation \N 0 1612889082 +256 0 block_activity_modules 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889082 +257 0 block_activity_modules 2020110900 2020110900 Plugin installed \N 0 1612889082 +258 0 block_activity_results \N 2020110900 Starting plugin installation \N 0 1612889082 +259 0 block_activity_results 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889082 +260 0 block_activity_results 2020110900 2020110900 Plugin installed \N 0 1612889082 +261 0 block_admin_bookmarks \N 2020110900 Starting plugin installation \N 0 1612889082 +262 0 block_admin_bookmarks 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889082 +263 0 block_admin_bookmarks 2020110900 2020110900 Plugin installed \N 0 1612889082 +264 0 block_badges \N 2020110900 Starting plugin installation \N 0 1612889082 +265 0 block_badges 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889082 +266 0 block_badges 2020110900 2020110900 Plugin installed \N 0 1612889083 +267 0 block_blog_menu \N 2020110900 Starting plugin installation \N 0 1612889083 +268 0 block_blog_menu 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889083 +269 0 block_blog_menu 2020110900 2020110900 Plugin installed \N 0 1612889083 +270 0 block_blog_recent \N 2020110900 Starting plugin installation \N 0 1612889083 +271 0 block_blog_recent 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889083 +272 0 block_blog_recent 2020110900 2020110900 Plugin installed \N 0 1612889083 +273 0 block_blog_tags \N 2020110900 Starting plugin installation \N 0 1612889083 +274 0 block_blog_tags 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889083 +275 0 block_blog_tags 2020110900 2020110900 Plugin installed \N 0 1612889083 +276 0 block_calendar_month \N 2020110900 Starting plugin installation \N 0 1612889083 +277 0 block_calendar_month 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889083 +278 0 block_calendar_month 2020110900 2020110900 Plugin installed \N 0 1612889083 +279 0 block_calendar_upcoming \N 2020110900 Starting plugin installation \N 0 1612889083 +280 0 block_calendar_upcoming 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889083 +281 0 block_calendar_upcoming 2020110900 2020110900 Plugin installed \N 0 1612889083 +282 0 block_comments \N 2020110900 Starting plugin installation \N 0 1612889083 +283 0 block_comments 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889083 +284 0 block_comments 2020110900 2020110900 Plugin installed \N 0 1612889083 +285 0 block_completionstatus \N 2020110900 Starting plugin installation \N 0 1612889083 +286 0 block_completionstatus 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889083 +287 0 block_completionstatus 2020110900 2020110900 Plugin installed \N 0 1612889083 +288 0 block_course_list \N 2020110900 Starting plugin installation \N 0 1612889083 +289 0 block_course_list 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889083 +290 0 block_course_list 2020110900 2020110900 Plugin installed \N 0 1612889083 +291 0 block_course_summary \N 2020110900 Starting plugin installation \N 0 1612889083 +292 0 block_course_summary 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889083 +293 0 block_course_summary 2020110900 2020110900 Plugin installed \N 0 1612889083 +294 0 block_feedback \N 2020110900 Starting plugin installation \N 0 1612889083 +295 0 block_feedback 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889083 +296 0 block_feedback 2020110900 2020110900 Plugin installed \N 0 1612889083 +297 0 block_globalsearch \N 2020110900 Starting plugin installation \N 0 1612889083 +298 0 block_globalsearch 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889083 +299 0 block_globalsearch 2020110900 2020110900 Plugin installed \N 0 1612889083 +300 0 block_glossary_random \N 2020110900 Starting plugin installation \N 0 1612889083 +301 0 block_glossary_random 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889083 +302 0 block_glossary_random 2020110900 2020110900 Plugin installed \N 0 1612889083 +303 0 block_html \N 2020110900 Starting plugin installation \N 0 1612889083 +304 0 block_html 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889083 +305 0 block_html 2020110900 2020110900 Plugin installed \N 0 1612889084 +306 0 block_login \N 2020110900 Starting plugin installation \N 0 1612889084 +307 0 block_login 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889084 +308 0 block_login 2020110900 2020110900 Plugin installed \N 0 1612889084 +309 0 block_lp \N 2020110900 Starting plugin installation \N 0 1612889084 +310 0 block_lp 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889084 +311 0 block_lp 2020110900 2020110900 Plugin installed \N 0 1612889084 +312 0 block_mentees \N 2020110900 Starting plugin installation \N 0 1612889084 +313 0 block_mentees 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889084 +314 0 block_mentees 2020110900 2020110900 Plugin installed \N 0 1612889084 +315 0 block_mnet_hosts \N 2020110900 Starting plugin installation \N 0 1612889084 +316 0 block_mnet_hosts 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889084 +317 0 block_mnet_hosts 2020110900 2020110900 Plugin installed \N 0 1612889084 +318 0 block_myoverview \N 2020110900 Starting plugin installation \N 0 1612889084 +319 0 block_myoverview 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889084 +320 0 block_myoverview 2020110900 2020110900 Plugin installed \N 0 1612889084 +321 0 block_myprofile \N 2020110900 Starting plugin installation \N 0 1612889084 +322 0 block_myprofile 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889084 +323 0 block_myprofile 2020110900 2020110900 Plugin installed \N 0 1612889084 +324 0 block_navigation \N 2020110900 Starting plugin installation \N 0 1612889084 +325 0 block_navigation 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889084 +326 0 block_navigation 2020110900 2020110900 Plugin installed \N 0 1612889084 +327 0 block_news_items \N 2020110900 Starting plugin installation \N 0 1612889084 +328 0 block_news_items 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889084 +329 0 block_news_items 2020110900 2020110900 Plugin installed \N 0 1612889084 +330 0 block_online_users \N 2020110900 Starting plugin installation \N 0 1612889084 +331 0 block_online_users 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889084 +332 0 block_online_users 2020110900 2020110900 Plugin installed \N 0 1612889084 +333 0 block_private_files \N 2020110900 Starting plugin installation \N 0 1612889084 +334 0 block_private_files 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889084 +335 0 block_private_files 2020110900 2020110900 Plugin installed \N 0 1612889084 +336 0 block_quiz_results \N 2020110900 Starting plugin installation \N 0 1612889084 +337 0 block_quiz_results 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889084 +338 0 block_quiz_results 2020110900 2020110900 Plugin installed \N 0 1612889084 +339 0 block_recent_activity \N 2020110900 Starting plugin installation \N 0 1612889084 +340 0 block_recent_activity 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889084 +341 0 block_recent_activity 2020110900 2020110900 Plugin installed \N 0 1612889085 +342 0 block_recentlyaccessedcourses \N 2020110900 Starting plugin installation \N 0 1612889085 +343 0 block_recentlyaccessedcourses 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889085 +344 0 block_recentlyaccessedcourses 2020110900 2020110900 Plugin installed \N 0 1612889085 +345 0 block_recentlyaccesseditems \N 2020110900 Starting plugin installation \N 0 1612889085 +346 0 block_recentlyaccesseditems 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889085 +347 0 block_recentlyaccesseditems 2020110900 2020110900 Plugin installed \N 0 1612889085 +348 0 block_rss_client \N 2020110900 Starting plugin installation \N 0 1612889085 +349 0 block_rss_client 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889085 +350 0 block_rss_client 2020110900 2020110900 Plugin installed \N 0 1612889085 +351 0 block_search_forums \N 2020110900 Starting plugin installation \N 0 1612889085 +352 0 block_search_forums 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889085 +353 0 block_search_forums 2020110900 2020110900 Plugin installed \N 0 1612889085 +354 0 block_section_links \N 2020110900 Starting plugin installation \N 0 1612889085 +355 0 block_section_links 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889085 +356 0 block_section_links 2020110900 2020110900 Plugin installed \N 0 1612889085 +357 0 block_selfcompletion \N 2020110900 Starting plugin installation \N 0 1612889085 +358 0 block_selfcompletion 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889085 +359 0 block_selfcompletion 2020110900 2020110900 Plugin installed \N 0 1612889085 +360 0 block_settings \N 2020110900 Starting plugin installation \N 0 1612889085 +361 0 block_settings 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889085 +362 0 block_settings 2020110900 2020110900 Plugin installed \N 0 1612889085 +363 0 block_site_main_menu \N 2020110900 Starting plugin installation \N 0 1612889085 +364 0 block_site_main_menu 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889085 +365 0 block_site_main_menu 2020110900 2020110900 Plugin installed \N 0 1612889085 +366 0 block_social_activities \N 2020110900 Starting plugin installation \N 0 1612889085 +367 0 block_social_activities 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889085 +368 0 block_social_activities 2020110900 2020110900 Plugin installed \N 0 1612889085 +369 0 block_starredcourses \N 2020110900 Starting plugin installation \N 0 1612889085 +370 0 block_starredcourses 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889085 +371 0 block_starredcourses 2020110900 2020110900 Plugin installed \N 0 1612889085 +372 0 block_tag_flickr \N 2020110900 Starting plugin installation \N 0 1612889085 +373 0 block_tag_flickr 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889085 +374 0 block_tag_flickr 2020110900 2020110900 Plugin installed \N 0 1612889085 +375 0 block_tag_youtube \N 2020110901 Starting plugin installation \N 0 1612889085 +376 0 block_tag_youtube 2020110901 2020110901 Upgrade savepoint reached \N 0 1612889085 +377 0 block_tag_youtube 2020110901 2020110901 Plugin installed \N 0 1612889086 +378 0 block_tags \N 2020110900 Starting plugin installation \N 0 1612889086 +379 0 block_tags 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889086 +380 0 block_tags 2020110900 2020110900 Plugin installed \N 0 1612889086 +381 0 block_timeline \N 2020110900 Starting plugin installation \N 0 1612889086 +382 0 block_timeline 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889086 +383 0 block_timeline 2020110900 2020110900 Plugin installed \N 0 1612889086 +384 0 media_html5audio \N 2020110900 Starting plugin installation \N 0 1612889086 +385 0 media_html5audio 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889086 +386 0 media_html5audio 2020110900 2020110900 Plugin installed \N 0 1612889086 +387 0 media_html5video \N 2020110900 Starting plugin installation \N 0 1612889086 +388 0 media_html5video 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889086 +389 0 media_html5video 2020110900 2020110900 Plugin installed \N 0 1612889086 +390 0 media_swf \N 2020110900 Starting plugin installation \N 0 1612889086 +391 0 media_swf 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889086 +392 0 media_swf 2020110900 2020110900 Plugin installed \N 0 1612889086 +393 0 media_videojs \N 2020110900 Starting plugin installation \N 0 1612889086 +394 0 media_videojs 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889086 +395 0 media_videojs 2020110900 2020110900 Plugin installed \N 0 1612889086 +396 0 media_vimeo \N 2020110900 Starting plugin installation \N 0 1612889086 +397 0 media_vimeo 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889086 +398 0 media_vimeo 2020110900 2020110900 Plugin installed \N 0 1612889086 +399 0 media_youtube \N 2020110900 Starting plugin installation \N 0 1612889086 +400 0 media_youtube 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889086 +401 0 media_youtube 2020110900 2020110900 Plugin installed \N 0 1612889086 +402 0 filter_activitynames \N 2020110900 Starting plugin installation \N 0 1612889086 +403 0 filter_activitynames 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889086 +404 0 filter_activitynames 2020110900 2020110900 Plugin installed \N 0 1612889086 +405 0 filter_algebra \N 2020110900 Starting plugin installation \N 0 1612889086 +406 0 filter_algebra 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889086 +407 0 filter_algebra 2020110900 2020110900 Plugin installed \N 0 1612889086 +408 0 filter_censor \N 2020110900 Starting plugin installation \N 0 1612889086 +409 0 filter_censor 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889086 +410 0 filter_censor 2020110900 2020110900 Plugin installed \N 0 1612889086 +411 0 filter_data \N 2020110900 Starting plugin installation \N 0 1612889086 +412 0 filter_data 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889086 +413 0 filter_data 2020110900 2020110900 Plugin installed \N 0 1612889086 +414 0 filter_displayh5p \N 2020110900 Starting plugin installation \N 0 1612889086 +415 0 filter_displayh5p 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889086 +416 0 filter_displayh5p 2020110900 2020110900 Plugin installed \N 0 1612889086 +417 0 filter_emailprotect \N 2020110900 Starting plugin installation \N 0 1612889086 +418 0 filter_emailprotect 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889086 +419 0 filter_emailprotect 2020110900 2020110900 Plugin installed \N 0 1612889086 +420 0 filter_emoticon \N 2020110900 Starting plugin installation \N 0 1612889086 +421 0 filter_emoticon 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889086 +422 0 filter_emoticon 2020110900 2020110900 Plugin installed \N 0 1612889086 +423 0 filter_glossary \N 2020110900 Starting plugin installation \N 0 1612889086 +424 0 filter_glossary 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889086 +425 0 filter_glossary 2020110900 2020110900 Plugin installed \N 0 1612889086 +426 0 filter_mathjaxloader \N 2020110900 Starting plugin installation \N 0 1612889086 +427 0 filter_mathjaxloader 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889086 +428 0 filter_mathjaxloader 2020110900 2020110900 Plugin installed \N 0 1612889086 +429 0 filter_mediaplugin \N 2020110900 Starting plugin installation \N 0 1612889086 +430 0 filter_mediaplugin 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889086 +431 0 filter_mediaplugin 2020110900 2020110900 Plugin installed \N 0 1612889086 +432 0 filter_multilang \N 2020110900 Starting plugin installation \N 0 1612889086 +433 0 filter_multilang 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889086 +434 0 filter_multilang 2020110900 2020110900 Plugin installed \N 0 1612889086 +435 0 filter_tex \N 2020110900 Starting plugin installation \N 0 1612889086 +436 0 filter_tex 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889086 +437 0 filter_tex 2020110900 2020110900 Plugin installed \N 0 1612889087 +438 0 filter_tidy \N 2020110900 Starting plugin installation \N 0 1612889087 +439 0 filter_tidy 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889087 +440 0 filter_tidy 2020110900 2020110900 Plugin installed \N 0 1612889087 +441 0 filter_urltolink \N 2020110900 Starting plugin installation \N 0 1612889087 +442 0 filter_urltolink 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889087 +443 0 filter_urltolink 2020110900 2020110900 Plugin installed \N 0 1612889087 +444 0 editor_atto \N 2020110900 Starting plugin installation \N 0 1612889087 +445 0 editor_atto 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889087 +446 0 editor_atto 2020110900 2020110900 Plugin installed \N 0 1612889087 +447 0 editor_textarea \N 2020110900 Starting plugin installation \N 0 1612889087 +448 0 editor_textarea 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889087 +449 0 editor_textarea 2020110900 2020110900 Plugin installed \N 0 1612889087 +450 0 editor_tinymce \N 2020110900 Starting plugin installation \N 0 1612889087 +451 0 editor_tinymce 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889087 +452 0 editor_tinymce 2020110900 2020110900 Plugin installed \N 0 1612889087 +453 0 format_singleactivity \N 2020110900 Starting plugin installation \N 0 1612889087 +454 0 format_singleactivity 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889087 +455 0 format_singleactivity 2020110900 2020110900 Plugin installed \N 0 1612889087 +456 0 format_social \N 2020110900 Starting plugin installation \N 0 1612889087 +457 0 format_social 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889087 +458 0 format_social 2020110900 2020110900 Plugin installed \N 0 1612889087 +459 0 format_topics \N 2020110900 Starting plugin installation \N 0 1612889087 +460 0 format_topics 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889087 +461 0 format_topics 2020110900 2020110900 Plugin installed \N 0 1612889087 +462 0 format_weeks \N 2020110900 Starting plugin installation \N 0 1612889087 +463 0 format_weeks 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889087 +464 0 format_weeks 2020110900 2020110900 Plugin installed \N 0 1612889087 +465 0 dataformat_csv \N 2020110900 Starting plugin installation \N 0 1612889087 +466 0 dataformat_csv 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889087 +467 0 dataformat_csv 2020110900 2020110900 Plugin installed \N 0 1612889087 +468 0 dataformat_excel \N 2020110900 Starting plugin installation \N 0 1612889087 +469 0 dataformat_excel 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889087 +470 0 dataformat_excel 2020110900 2020110900 Plugin installed \N 0 1612889087 +471 0 dataformat_html \N 2020110900 Starting plugin installation \N 0 1612889087 +472 0 dataformat_html 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889087 +473 0 dataformat_html 2020110900 2020110900 Plugin installed \N 0 1612889087 +474 0 dataformat_json \N 2020110900 Starting plugin installation \N 0 1612889087 +475 0 dataformat_json 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889087 +476 0 dataformat_json 2020110900 2020110900 Plugin installed \N 0 1612889087 +477 0 dataformat_ods \N 2020110900 Starting plugin installation \N 0 1612889087 +478 0 dataformat_ods 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889087 +479 0 dataformat_ods 2020110900 2020110900 Plugin installed \N 0 1612889087 +480 0 dataformat_pdf \N 2020110900 Starting plugin installation \N 0 1612889087 +481 0 dataformat_pdf 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889087 +482 0 dataformat_pdf 2020110900 2020110900 Plugin installed \N 0 1612889087 +483 0 profilefield_checkbox \N 2020110900 Starting plugin installation \N 0 1612889087 +484 0 profilefield_checkbox 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889087 +485 0 profilefield_checkbox 2020110900 2020110900 Plugin installed \N 0 1612889087 +486 0 profilefield_datetime \N 2020110900 Starting plugin installation \N 0 1612889087 +487 0 profilefield_datetime 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889087 +488 0 profilefield_datetime 2020110900 2020110900 Plugin installed \N 0 1612889087 +489 0 profilefield_menu \N 2020110900 Starting plugin installation \N 0 1612889087 +490 0 profilefield_menu 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889087 +491 0 profilefield_menu 2020110900 2020110900 Plugin installed \N 0 1612889087 +492 0 profilefield_text \N 2020110900 Starting plugin installation \N 0 1612889087 +493 0 profilefield_text 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889087 +494 0 profilefield_text 2020110900 2020110900 Plugin installed \N 0 1612889087 +495 0 profilefield_textarea \N 2020110900 Starting plugin installation \N 0 1612889087 +496 0 profilefield_textarea 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889087 +497 0 profilefield_textarea 2020110900 2020110900 Plugin installed \N 0 1612889087 +498 0 report_backups \N 2020110900 Starting plugin installation \N 0 1612889087 +499 0 report_backups 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889087 +500 0 report_backups 2020110900 2020110900 Plugin installed \N 0 1612889087 +501 0 report_competency \N 2020110900 Starting plugin installation \N 0 1612889087 +502 0 report_competency 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889087 +503 0 report_competency 2020110900 2020110900 Plugin installed \N 0 1612889087 +504 0 report_completion \N 2020110900 Starting plugin installation \N 0 1612889087 +505 0 report_completion 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889087 +506 0 report_completion 2020110900 2020110900 Plugin installed \N 0 1612889088 +507 0 report_configlog \N 2020110900 Starting plugin installation \N 0 1612889088 +508 0 report_configlog 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889088 +509 0 report_configlog 2020110900 2020110900 Plugin installed \N 0 1612889088 +510 0 report_courseoverview \N 2020110900 Starting plugin installation \N 0 1612889088 +511 0 report_courseoverview 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889088 +512 0 report_courseoverview 2020110900 2020110900 Plugin installed \N 0 1612889088 +513 0 report_eventlist \N 2020110900 Starting plugin installation \N 0 1612889088 +514 0 report_eventlist 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889088 +515 0 report_eventlist 2020110900 2020110900 Plugin installed \N 0 1612889088 +516 0 report_infectedfiles \N 2020110900 Starting plugin installation \N 0 1612889088 +517 0 report_infectedfiles 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889088 +518 0 report_infectedfiles 2020110900 2020110900 Plugin installed \N 0 1612889088 +519 0 report_insights \N 2020110900 Starting plugin installation \N 0 1612889088 +520 0 report_insights 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889088 +521 0 report_insights 2020110900 2020110900 Plugin installed \N 0 1612889088 +522 0 report_log \N 2020110900 Starting plugin installation \N 0 1612889088 +523 0 report_log 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889088 +524 0 report_log 2020110900 2020110900 Plugin installed \N 0 1612889088 +525 0 report_loglive \N 2020110900 Starting plugin installation \N 0 1612889088 +526 0 report_loglive 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889088 +527 0 report_loglive 2020110900 2020110900 Plugin installed \N 0 1612889088 +528 0 report_outline \N 2020110900 Starting plugin installation \N 0 1612889088 +529 0 report_outline 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889088 +530 0 report_outline 2020110900 2020110900 Plugin installed \N 0 1612889088 +531 0 report_participation \N 2020110900 Starting plugin installation \N 0 1612889088 +532 0 report_participation 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889088 +533 0 report_participation 2020110900 2020110900 Plugin installed \N 0 1612889088 +534 0 report_performance \N 2020110900 Starting plugin installation \N 0 1612889088 +535 0 report_performance 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889088 +536 0 report_performance 2020110900 2020110900 Plugin installed \N 0 1612889088 +537 0 report_progress \N 2020110900 Starting plugin installation \N 0 1612889088 +538 0 report_progress 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889088 +539 0 report_progress 2020110900 2020110900 Plugin installed \N 0 1612889088 +540 0 report_questioninstances \N 2020110900 Starting plugin installation \N 0 1612889088 +541 0 report_questioninstances 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889088 +542 0 report_questioninstances 2020110900 2020110900 Plugin installed \N 0 1612889088 +543 0 report_security \N 2020110900 Starting plugin installation \N 0 1612889088 +544 0 report_security 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889088 +545 0 report_security 2020110900 2020110900 Plugin installed \N 0 1612889088 +546 0 report_stats \N 2020110900 Starting plugin installation \N 0 1612889088 +547 0 report_stats 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889088 +548 0 report_stats 2020110900 2020110900 Plugin installed \N 0 1612889089 +549 0 report_status \N 2020110900 Starting plugin installation \N 0 1612889089 +550 0 report_status 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889089 +551 0 report_status 2020110900 2020110900 Plugin installed \N 0 1612889089 +552 0 report_usersessions \N 2020110900 Starting plugin installation \N 0 1612889089 +553 0 report_usersessions 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889089 +554 0 report_usersessions 2020110900 2020110900 Plugin installed \N 0 1612889089 +555 0 gradeexport_ods \N 2020110900 Starting plugin installation \N 0 1612889089 +556 0 gradeexport_ods 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889089 +557 0 gradeexport_ods 2020110900 2020110900 Plugin installed \N 0 1612889089 +558 0 gradeexport_txt \N 2020110900 Starting plugin installation \N 0 1612889089 +559 0 gradeexport_txt 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889089 +560 0 gradeexport_txt 2020110900 2020110900 Plugin installed \N 0 1612889089 +561 0 gradeexport_xls \N 2020110900 Starting plugin installation \N 0 1612889089 +562 0 gradeexport_xls 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889089 +563 0 gradeexport_xls 2020110900 2020110900 Plugin installed \N 0 1612889089 +564 0 gradeexport_xml \N 2020110900 Starting plugin installation \N 0 1612889089 +565 0 gradeexport_xml 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889089 +566 0 gradeexport_xml 2020110900 2020110900 Plugin installed \N 0 1612889089 +567 0 gradeimport_csv \N 2020110900 Starting plugin installation \N 0 1612889089 +568 0 gradeimport_csv 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889089 +569 0 gradeimport_csv 2020110900 2020110900 Plugin installed \N 0 1612889089 +570 0 gradeimport_direct \N 2020110900 Starting plugin installation \N 0 1612889089 +571 0 gradeimport_direct 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889089 +572 0 gradeimport_direct 2020110900 2020110900 Plugin installed \N 0 1612889089 +573 0 gradeimport_xml \N 2020110900 Starting plugin installation \N 0 1612889089 +574 0 gradeimport_xml 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889089 +575 0 gradeimport_xml 2020110900 2020110900 Plugin installed \N 0 1612889089 +576 0 gradereport_grader \N 2020110900 Starting plugin installation \N 0 1612889089 +577 0 gradereport_grader 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889089 +578 0 gradereport_grader 2020110900 2020110900 Plugin installed \N 0 1612889089 +579 0 gradereport_history \N 2020110900 Starting plugin installation \N 0 1612889089 +580 0 gradereport_history 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889089 +581 0 gradereport_history 2020110900 2020110900 Plugin installed \N 0 1612889089 +582 0 gradereport_outcomes \N 2020110900 Starting plugin installation \N 0 1612889089 +583 0 gradereport_outcomes 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889089 +584 0 gradereport_outcomes 2020110900 2020110900 Plugin installed \N 0 1612889090 +585 0 gradereport_overview \N 2020110900 Starting plugin installation \N 0 1612889090 +586 0 gradereport_overview 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889090 +587 0 gradereport_overview 2020110900 2020110900 Plugin installed \N 0 1612889090 +588 0 gradereport_singleview \N 2020110900 Starting plugin installation \N 0 1612889090 +589 0 gradereport_singleview 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889090 +590 0 gradereport_singleview 2020110900 2020110900 Plugin installed \N 0 1612889090 +591 0 gradereport_user \N 2020110900 Starting plugin installation \N 0 1612889090 +592 0 gradereport_user 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889090 +593 0 gradereport_user 2020110900 2020110900 Plugin installed \N 0 1612889090 +594 0 gradingform_guide \N 2020110900 Starting plugin installation \N 0 1612889090 +595 0 gradingform_guide 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889090 +596 0 gradingform_guide 2020110900 2020110900 Plugin installed \N 0 1612889090 +597 0 gradingform_rubric \N 2020110900 Starting plugin installation \N 0 1612889090 +598 0 gradingform_rubric 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889090 +599 0 gradingform_rubric 2020110900 2020110900 Plugin installed \N 0 1612889090 +600 0 mlbackend_php \N 2020110900 Starting plugin installation \N 0 1612889090 +601 0 mlbackend_php 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889090 +602 0 mlbackend_php 2020110900 2020110900 Plugin installed \N 0 1612889090 +603 0 mlbackend_python \N 2020110900 Starting plugin installation \N 0 1612889090 +604 0 mlbackend_python 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889090 +605 0 mlbackend_python 2020110900 2020110900 Plugin installed \N 0 1612889090 +606 0 mnetservice_enrol \N 2020110900 Starting plugin installation \N 0 1612889090 +607 0 mnetservice_enrol 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889090 +608 0 mnetservice_enrol 2020110900 2020110900 Plugin installed \N 0 1612889090 +609 0 webservice_rest \N 2020110900 Starting plugin installation \N 0 1612889090 +610 0 webservice_rest 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889090 +611 0 webservice_rest 2020110900 2020110900 Plugin installed \N 0 1612889090 +612 0 webservice_soap \N 2020110900 Starting plugin installation \N 0 1612889090 +613 0 webservice_soap 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889090 +614 0 webservice_soap 2020110900 2020110900 Plugin installed \N 0 1612889090 +615 0 webservice_xmlrpc \N 2020110900 Starting plugin installation \N 0 1612889090 +616 0 webservice_xmlrpc 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889090 +617 0 webservice_xmlrpc 2020110900 2020110900 Plugin installed \N 0 1612889090 +618 0 repository_areafiles \N 2020110900 Starting plugin installation \N 0 1612889090 +619 0 repository_areafiles 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889090 +620 0 repository_areafiles 2020110900 2020110900 Plugin installed \N 0 1612889090 +621 0 repository_boxnet \N 2020110900 Starting plugin installation \N 0 1612889090 +622 0 repository_boxnet 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889090 +623 0 repository_boxnet 2020110900 2020110900 Plugin installed \N 0 1612889090 +624 0 repository_contentbank \N 2020110900 Starting plugin installation \N 0 1612889090 +625 0 repository_contentbank 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889090 +626 0 repository_contentbank 2020110900 2020110900 Plugin installed \N 0 1612889091 +627 0 repository_coursefiles \N 2020110900 Starting plugin installation \N 0 1612889091 +628 0 repository_coursefiles 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889091 +629 0 repository_coursefiles 2020110900 2020110900 Plugin installed \N 0 1612889091 +630 0 repository_dropbox \N 2020110900 Starting plugin installation \N 0 1612889091 +631 0 repository_dropbox 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889091 +632 0 repository_dropbox 2020110900 2020110900 Plugin installed \N 0 1612889091 +633 0 repository_equella \N 2020110900 Starting plugin installation \N 0 1612889091 +634 0 repository_equella 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889091 +635 0 repository_equella 2020110900 2020110900 Plugin installed \N 0 1612889091 +636 0 repository_filesystem \N 2020110900 Starting plugin installation \N 0 1612889091 +637 0 repository_filesystem 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889091 +638 0 repository_filesystem 2020110900 2020110900 Plugin installed \N 0 1612889091 +639 0 repository_flickr \N 2020110900 Starting plugin installation \N 0 1612889091 +640 0 repository_flickr 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889091 +641 0 repository_flickr 2020110900 2020110900 Plugin installed \N 0 1612889091 +642 0 repository_flickr_public \N 2020110900 Starting plugin installation \N 0 1612889091 +643 0 repository_flickr_public 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889091 +644 0 repository_flickr_public 2020110900 2020110900 Plugin installed \N 0 1612889091 +645 0 repository_googledocs \N 2020110900 Starting plugin installation \N 0 1612889091 +646 0 repository_googledocs 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889091 +647 0 repository_googledocs 2020110900 2020110900 Plugin installed \N 0 1612889091 +648 0 repository_local \N 2020110900 Starting plugin installation \N 0 1612889091 +649 0 repository_local 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889091 +650 0 repository_local 2020110900 2020110900 Plugin installed \N 0 1612889091 +651 0 repository_merlot \N 2020110900 Starting plugin installation \N 0 1612889091 +652 0 repository_merlot 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889091 +653 0 repository_merlot 2020110900 2020110900 Plugin installed \N 0 1612889091 +654 0 repository_nextcloud \N 2020110900 Starting plugin installation \N 0 1612889091 +655 0 repository_nextcloud 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889091 +656 0 repository_nextcloud 2020110900 2020110900 Plugin installed \N 0 1612889091 +657 0 repository_onedrive \N 2020110900 Starting plugin installation \N 0 1612889091 +658 0 repository_onedrive 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889091 +659 0 repository_onedrive 2020110900 2020110900 Plugin installed \N 0 1612889091 +660 0 repository_picasa \N 2020110900 Starting plugin installation \N 0 1612889091 +661 0 repository_picasa 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889091 +662 0 repository_picasa 2020110900 2020110900 Plugin installed \N 0 1612889091 +663 0 repository_recent \N 2020110900 Starting plugin installation \N 0 1612889091 +664 0 repository_recent 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889091 +665 0 repository_recent 2020110900 2020110900 Plugin installed \N 0 1612889091 +666 0 repository_s3 \N 2020110900 Starting plugin installation \N 0 1612889091 +667 0 repository_s3 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889091 +668 0 repository_s3 2020110900 2020110900 Plugin installed \N 0 1612889091 +669 0 repository_skydrive \N 2020110900 Starting plugin installation \N 0 1612889092 +670 0 repository_skydrive 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889092 +671 0 repository_skydrive 2020110900 2020110900 Plugin installed \N 0 1612889092 +672 0 repository_upload \N 2020110900 Starting plugin installation \N 0 1612889092 +673 0 repository_upload 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889092 +674 0 repository_upload 2020110900 2020110900 Plugin installed \N 0 1612889092 +675 0 repository_url \N 2020110900 Starting plugin installation \N 0 1612889092 +676 0 repository_url 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889092 +677 0 repository_url 2020110900 2020110900 Plugin installed \N 0 1612889092 +678 0 repository_user \N 2020110900 Starting plugin installation \N 0 1612889092 +679 0 repository_user 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889092 +680 0 repository_user 2020110900 2020110900 Plugin installed \N 0 1612889092 +681 0 repository_webdav \N 2020110900 Starting plugin installation \N 0 1612889092 +682 0 repository_webdav 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889092 +683 0 repository_webdav 2020110900 2020110900 Plugin installed \N 0 1612889092 +684 0 repository_wikimedia \N 2020110900 Starting plugin installation \N 0 1612889092 +685 0 repository_wikimedia 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889092 +686 0 repository_wikimedia 2020110900 2020110900 Plugin installed \N 0 1612889092 +687 0 repository_youtube \N 2020110900 Starting plugin installation \N 0 1612889092 +688 0 repository_youtube 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889092 +689 0 repository_youtube 2020110900 2020110900 Plugin installed \N 0 1612889092 +690 0 portfolio_boxnet \N 2020110900 Starting plugin installation \N 0 1612889092 +691 0 portfolio_boxnet 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889092 +692 0 portfolio_boxnet 2020110900 2020110900 Plugin installed \N 0 1612889092 +693 0 portfolio_download \N 2020110900 Starting plugin installation \N 0 1612889092 +694 0 portfolio_download 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889092 +695 0 portfolio_download 2020110900 2020110900 Plugin installed \N 0 1612889092 +696 0 portfolio_flickr \N 2020110900 Starting plugin installation \N 0 1612889092 +697 0 portfolio_flickr 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889092 +698 0 portfolio_flickr 2020110900 2020110900 Plugin installed \N 0 1612889092 +699 0 portfolio_googledocs \N 2020110900 Starting plugin installation \N 0 1612889092 +700 0 portfolio_googledocs 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889092 +701 0 portfolio_googledocs 2020110900 2020110900 Plugin installed \N 0 1612889092 +702 0 portfolio_mahara \N 2020110900 Starting plugin installation \N 0 1612889092 +703 0 portfolio_mahara 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889092 +704 0 portfolio_mahara 2020110900 2020110900 Plugin installed \N 0 1612889092 +705 0 portfolio_picasa \N 2020110900 Starting plugin installation \N 0 1612889092 +706 0 portfolio_picasa 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889092 +707 0 portfolio_picasa 2020110900 2020110900 Plugin installed \N 0 1612889092 +708 0 search_simpledb \N 2020110900 Starting plugin installation \N 0 1612889092 +709 0 search_simpledb 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889092 +710 0 search_simpledb 2020110900 2020110900 Plugin installed \N 0 1612889092 +711 0 search_solr \N 2020110900 Starting plugin installation \N 0 1612889092 +712 0 search_solr 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889092 +713 0 search_solr 2020110900 2020110900 Plugin installed \N 0 1612889092 +714 0 qbehaviour_adaptive \N 2020110900 Starting plugin installation \N 0 1612889092 +715 0 qbehaviour_adaptive 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889092 +716 0 qbehaviour_adaptive 2020110900 2020110900 Plugin installed \N 0 1612889092 +717 0 qbehaviour_adaptivenopenalty \N 2020110900 Starting plugin installation \N 0 1612889092 +718 0 qbehaviour_adaptivenopenalty 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889092 +719 0 qbehaviour_adaptivenopenalty 2020110900 2020110900 Plugin installed \N 0 1612889093 +720 0 qbehaviour_deferredcbm \N 2020110900 Starting plugin installation \N 0 1612889093 +721 0 qbehaviour_deferredcbm 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889093 +722 0 qbehaviour_deferredcbm 2020110900 2020110900 Plugin installed \N 0 1612889093 +723 0 qbehaviour_deferredfeedback \N 2020110900 Starting plugin installation \N 0 1612889093 +724 0 qbehaviour_deferredfeedback 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889093 +725 0 qbehaviour_deferredfeedback 2020110900 2020110900 Plugin installed \N 0 1612889093 +726 0 qbehaviour_immediatecbm \N 2020110900 Starting plugin installation \N 0 1612889093 +727 0 qbehaviour_immediatecbm 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889093 +728 0 qbehaviour_immediatecbm 2020110900 2020110900 Plugin installed \N 0 1612889093 +729 0 qbehaviour_immediatefeedback \N 2020110900 Starting plugin installation \N 0 1612889093 +730 0 qbehaviour_immediatefeedback 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889093 +731 0 qbehaviour_immediatefeedback 2020110900 2020110900 Plugin installed \N 0 1612889093 +732 0 qbehaviour_informationitem \N 2020110900 Starting plugin installation \N 0 1612889093 +733 0 qbehaviour_informationitem 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889093 +734 0 qbehaviour_informationitem 2020110900 2020110900 Plugin installed \N 0 1612889093 +735 0 qbehaviour_interactive \N 2020110900 Starting plugin installation \N 0 1612889093 +736 0 qbehaviour_interactive 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889093 +737 0 qbehaviour_interactive 2020110900 2020110900 Plugin installed \N 0 1612889093 +738 0 qbehaviour_interactivecountback \N 2020110900 Starting plugin installation \N 0 1612889093 +800 0 tool_filetypes 2020110900 2020110900 Plugin installed \N 0 1612889094 +739 0 qbehaviour_interactivecountback 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889093 +740 0 qbehaviour_interactivecountback 2020110900 2020110900 Plugin installed \N 0 1612889093 +741 0 qbehaviour_manualgraded \N 2020110900 Starting plugin installation \N 0 1612889093 +742 0 qbehaviour_manualgraded 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889093 +743 0 qbehaviour_manualgraded 2020110900 2020110900 Plugin installed \N 0 1612889093 +744 0 qbehaviour_missing \N 2020110900 Starting plugin installation \N 0 1612889093 +745 0 qbehaviour_missing 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889093 +746 0 qbehaviour_missing 2020110900 2020110900 Plugin installed \N 0 1612889093 +747 0 qformat_aiken \N 2020110900 Starting plugin installation \N 0 1612889093 +748 0 qformat_aiken 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889093 +749 0 qformat_aiken 2020110900 2020110900 Plugin installed \N 0 1612889093 +750 0 qformat_blackboard_six \N 2020110900 Starting plugin installation \N 0 1612889093 +751 0 qformat_blackboard_six 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889093 +752 0 qformat_blackboard_six 2020110900 2020110900 Plugin installed \N 0 1612889093 +753 0 qformat_examview \N 2020110900 Starting plugin installation \N 0 1612889093 +754 0 qformat_examview 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889093 +755 0 qformat_examview 2020110900 2020110900 Plugin installed \N 0 1612889093 +756 0 qformat_gift \N 2020110900 Starting plugin installation \N 0 1612889093 +757 0 qformat_gift 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889093 +758 0 qformat_gift 2020110900 2020110900 Plugin installed \N 0 1612889093 +759 0 qformat_missingword \N 2020110900 Starting plugin installation \N 0 1612889093 +760 0 qformat_missingword 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889093 +761 0 qformat_missingword 2020110900 2020110900 Plugin installed \N 0 1612889093 +762 0 qformat_multianswer \N 2020110900 Starting plugin installation \N 0 1612889093 +763 0 qformat_multianswer 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889093 +764 0 qformat_multianswer 2020110900 2020110900 Plugin installed \N 0 1612889093 +765 0 qformat_webct \N 2020110900 Starting plugin installation \N 0 1612889093 +766 0 qformat_webct 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889093 +767 0 qformat_webct 2020110900 2020110900 Plugin installed \N 0 1612889093 +768 0 qformat_xhtml \N 2020110900 Starting plugin installation \N 0 1612889093 +769 0 qformat_xhtml 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889093 +770 0 qformat_xhtml 2020110900 2020110900 Plugin installed \N 0 1612889093 +771 0 qformat_xml \N 2020110900 Starting plugin installation \N 0 1612889093 +772 0 qformat_xml 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889093 +773 0 qformat_xml 2020110900 2020110900 Plugin installed \N 0 1612889093 +774 0 tool_analytics \N 2020110900 Starting plugin installation \N 0 1612889093 +775 0 tool_analytics 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889093 +776 0 tool_analytics 2020110900 2020110900 Plugin installed \N 0 1612889093 +777 0 tool_availabilityconditions \N 2020110900 Starting plugin installation \N 0 1612889093 +778 0 tool_availabilityconditions 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889093 +779 0 tool_availabilityconditions 2020110900 2020110900 Plugin installed \N 0 1612889093 +780 0 tool_behat \N 2020110900 Starting plugin installation \N 0 1612889093 +781 0 tool_behat 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889093 +782 0 tool_behat 2020110900 2020110900 Plugin installed \N 0 1612889093 +783 0 tool_capability \N 2020110900 Starting plugin installation \N 0 1612889093 +784 0 tool_capability 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889093 +785 0 tool_capability 2020110900 2020110900 Plugin installed \N 0 1612889093 +786 0 tool_cohortroles \N 2020110900 Starting plugin installation \N 0 1612889093 +787 0 tool_cohortroles 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889093 +788 0 tool_cohortroles 2020110900 2020110900 Plugin installed \N 0 1612889093 +789 0 tool_customlang \N 2020110900 Starting plugin installation \N 0 1612889093 +790 0 tool_customlang 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889094 +791 0 tool_customlang 2020110900 2020110900 Plugin installed \N 0 1612889094 +792 0 tool_dataprivacy \N 2020110900 Starting plugin installation \N 0 1612889094 +793 0 tool_dataprivacy 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889094 +794 0 tool_dataprivacy 2020110900 2020110900 Plugin installed \N 0 1612889094 +795 0 tool_dbtransfer \N 2020110900 Starting plugin installation \N 0 1612889094 +796 0 tool_dbtransfer 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889094 +797 0 tool_dbtransfer 2020110900 2020110900 Plugin installed \N 0 1612889094 +798 0 tool_filetypes \N 2020110900 Starting plugin installation \N 0 1612889094 +799 0 tool_filetypes 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889094 +801 0 tool_generator \N 2020110900 Starting plugin installation \N 0 1612889094 +802 0 tool_generator 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889094 +803 0 tool_generator 2020110900 2020110900 Plugin installed \N 0 1612889094 +804 0 tool_health \N 2020110900 Starting plugin installation \N 0 1612889094 +805 0 tool_health 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889094 +806 0 tool_health 2020110900 2020110900 Plugin installed \N 0 1612889094 +807 0 tool_httpsreplace \N 2020110900 Starting plugin installation \N 0 1612889094 +808 0 tool_httpsreplace 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889094 +809 0 tool_httpsreplace 2020110900 2020110900 Plugin installed \N 0 1612889094 +810 0 tool_innodb \N 2020110900 Starting plugin installation \N 0 1612889094 +811 0 tool_innodb 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889094 +812 0 tool_innodb 2020110900 2020110900 Plugin installed \N 0 1612889094 +813 0 tool_installaddon \N 2020110900 Starting plugin installation \N 0 1612889094 +814 0 tool_installaddon 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889094 +815 0 tool_installaddon 2020110900 2020110900 Plugin installed \N 0 1612889094 +816 0 tool_langimport \N 2020110900 Starting plugin installation \N 0 1612889094 +817 0 tool_langimport 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889094 +818 0 tool_langimport 2020110900 2020110900 Plugin installed \N 0 1612889094 +819 0 tool_licensemanager \N 2020110900 Starting plugin installation \N 0 1612889094 +820 0 tool_licensemanager 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889094 +821 0 tool_licensemanager 2020110900 2020110900 Plugin installed \N 0 1612889094 +822 0 tool_log \N 2020110900 Starting plugin installation \N 0 1612889094 +823 0 tool_log 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889094 +824 0 tool_log 2020110900 2020110900 Plugin installed \N 0 1612889094 +825 0 tool_lp \N 2020110900 Starting plugin installation \N 0 1612889094 +826 0 tool_lp 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889094 +827 0 tool_lp 2020110900 2020110900 Plugin installed \N 0 1612889094 +828 0 tool_lpimportcsv \N 2020110900 Starting plugin installation \N 0 1612889094 +829 0 tool_lpimportcsv 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889094 +830 0 tool_lpimportcsv 2020110900 2020110900 Plugin installed \N 0 1612889095 +831 0 tool_lpmigrate \N 2020110900 Starting plugin installation \N 0 1612889095 +832 0 tool_lpmigrate 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889095 +833 0 tool_lpmigrate 2020110900 2020110900 Plugin installed \N 0 1612889095 +834 0 tool_messageinbound \N 2020110900 Starting plugin installation \N 0 1612889095 +835 0 tool_messageinbound 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889095 +836 0 tool_messageinbound 2020110900 2020110900 Plugin installed \N 0 1612889095 +837 0 tool_mobile \N 2020110900 Starting plugin installation \N 0 1612889095 +838 0 tool_mobile 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889095 +839 0 tool_mobile 2020110900 2020110900 Plugin installed \N 0 1612889095 +840 0 tool_monitor \N 2020110900 Starting plugin installation \N 0 1612889095 +841 0 tool_monitor 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889095 +842 0 tool_monitor 2020110900 2020110900 Plugin installed \N 0 1612889095 +843 0 tool_moodlenet \N 2020110900 Starting plugin installation \N 0 1612889095 +844 0 tool_moodlenet 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889095 +845 0 tool_moodlenet 2020110900 2020110900 Plugin installed \N 0 1612889095 +846 0 tool_multilangupgrade \N 2020110900 Starting plugin installation \N 0 1612889095 +847 0 tool_multilangupgrade 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889095 +848 0 tool_multilangupgrade 2020110900 2020110900 Plugin installed \N 0 1612889095 +849 0 tool_oauth2 \N 2020110900 Starting plugin installation \N 0 1612889095 +850 0 tool_oauth2 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889095 +851 0 tool_oauth2 2020110900 2020110900 Plugin installed \N 0 1612889095 +852 0 tool_phpunit \N 2020110900 Starting plugin installation \N 0 1612889095 +853 0 tool_phpunit 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889095 +854 0 tool_phpunit 2020110900 2020110900 Plugin installed \N 0 1612889095 +855 0 tool_policy \N 2020110900 Starting plugin installation \N 0 1612889095 +856 0 tool_policy 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889095 +857 0 tool_policy 2020110900 2020110900 Plugin installed \N 0 1612889095 +858 0 tool_profiling \N 2020110900 Starting plugin installation \N 0 1612889095 +859 0 tool_profiling 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889095 +860 0 tool_profiling 2020110900 2020110900 Plugin installed \N 0 1612889095 +861 0 tool_recyclebin \N 2020110900 Starting plugin installation \N 0 1612889095 +862 0 tool_recyclebin 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889095 +863 0 tool_recyclebin 2020110900 2020110900 Plugin installed \N 0 1612889095 +864 0 tool_replace \N 2020110900 Starting plugin installation \N 0 1612889095 +865 0 tool_replace 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889095 +866 0 tool_replace 2020110900 2020110900 Plugin installed \N 0 1612889096 +867 0 tool_spamcleaner \N 2020110900 Starting plugin installation \N 0 1612889096 +868 0 tool_spamcleaner 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889096 +869 0 tool_spamcleaner 2020110900 2020110900 Plugin installed \N 0 1612889096 +870 0 tool_task \N 2020110900 Starting plugin installation \N 0 1612889096 +871 0 tool_task 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889096 +872 0 tool_task 2020110900 2020110900 Plugin installed \N 0 1612889096 +873 0 tool_templatelibrary \N 2020110900 Starting plugin installation \N 0 1612889096 +874 0 tool_templatelibrary 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889096 +875 0 tool_templatelibrary 2020110900 2020110900 Plugin installed \N 0 1612889096 +876 0 tool_unsuproles \N 2020110900 Starting plugin installation \N 0 1612889096 +877 0 tool_unsuproles 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889096 +878 0 tool_unsuproles 2020110900 2020110900 Plugin installed \N 0 1612889096 +879 0 tool_uploadcourse \N 2020110900 Starting plugin installation \N 0 1612889096 +880 0 tool_uploadcourse 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889096 +881 0 tool_uploadcourse 2020110900 2020110900 Plugin installed \N 0 1612889096 +882 0 tool_uploaduser \N 2020110900 Starting plugin installation \N 0 1612889096 +883 0 tool_uploaduser 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889096 +884 0 tool_uploaduser 2020110900 2020110900 Plugin installed \N 0 1612889096 +885 0 tool_usertours \N 2020110900 Starting plugin installation \N 0 1612889096 +886 0 tool_usertours 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889096 +887 0 tool_usertours 2020110900 2020110900 Plugin installed \N 0 1612889096 +888 0 tool_xmldb \N 2020110900 Starting plugin installation \N 0 1612889096 +889 0 tool_xmldb 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889096 +890 0 tool_xmldb 2020110900 2020110900 Plugin installed \N 0 1612889096 +891 0 cachestore_apcu \N 2020110900 Starting plugin installation \N 0 1612889096 +892 0 cachestore_apcu 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889096 +893 0 cachestore_apcu 2020110900 2020110900 Plugin installed \N 0 1612889096 +894 0 cachestore_file \N 2020110900 Starting plugin installation \N 0 1612889096 +895 0 cachestore_file 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889096 +896 0 cachestore_file 2020110900 2020110900 Plugin installed \N 0 1612889096 +897 0 cachestore_memcached \N 2020110900 Starting plugin installation \N 0 1612889096 +898 0 cachestore_memcached 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889096 +899 0 cachestore_memcached 2020110900 2020110900 Plugin installed \N 0 1612889096 +900 0 cachestore_mongodb \N 2020110900 Starting plugin installation \N 0 1612889096 +901 0 cachestore_mongodb 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889096 +902 0 cachestore_mongodb 2020110900 2020110900 Plugin installed \N 0 1612889096 +903 0 cachestore_redis \N 2020110900 Starting plugin installation \N 0 1612889096 +904 0 cachestore_redis 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889096 +905 0 cachestore_redis 2020110900 2020110900 Plugin installed \N 0 1612889096 +906 0 cachestore_session \N 2020110900 Starting plugin installation \N 0 1612889096 +907 0 cachestore_session 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889096 +908 0 cachestore_session 2020110900 2020110900 Plugin installed \N 0 1612889096 +909 0 cachestore_static \N 2020110900 Starting plugin installation \N 0 1612889096 +910 0 cachestore_static 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889096 +911 0 cachestore_static 2020110900 2020110900 Plugin installed \N 0 1612889096 +912 0 cachelock_file \N 2020110900 Starting plugin installation \N 0 1612889096 +913 0 cachelock_file 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889096 +914 0 cachelock_file 2020110900 2020110900 Plugin installed \N 0 1612889096 +915 0 fileconverter_googledrive \N 2020110900 Starting plugin installation \N 0 1612889096 +916 0 fileconverter_googledrive 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889096 +917 0 fileconverter_googledrive 2020110900 2020110900 Plugin installed \N 0 1612889096 +918 0 fileconverter_unoconv \N 2020110900 Starting plugin installation \N 0 1612889096 +919 0 fileconverter_unoconv 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889096 +920 0 fileconverter_unoconv 2020110900 2020110900 Plugin installed \N 0 1612889096 +921 0 contenttype_h5p \N 2020110900 Starting plugin installation \N 0 1612889096 +922 0 contenttype_h5p 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889096 +923 0 contenttype_h5p 2020110900 2020110900 Plugin installed \N 0 1612889097 +924 0 theme_boost \N 2020110900 Starting plugin installation \N 0 1612889097 +925 0 theme_boost 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889097 +926 0 theme_boost 2020110900 2020110900 Plugin installed \N 0 1612889097 +927 0 theme_classic \N 2020110900 Starting plugin installation \N 0 1612889097 +928 0 theme_classic 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889097 +929 0 theme_classic 2020110900 2020110900 Plugin installed \N 0 1612889097 +930 0 h5plib_v124 \N 2020110900 Starting plugin installation \N 0 1612889097 +931 0 h5plib_v124 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889097 +932 0 h5plib_v124 2020110900 2020110900 Plugin installed \N 0 1612889097 +933 0 paygw_paypal \N 2020110901 Starting plugin installation \N 0 1612889097 +934 0 paygw_paypal 2020110901 2020110901 Upgrade savepoint reached \N 0 1612889097 +935 0 paygw_paypal 2020110901 2020110901 Plugin installed \N 0 1612889097 +936 0 assignsubmission_comments \N 2020110900 Starting plugin installation \N 0 1612889097 +937 0 assignsubmission_comments 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889097 +938 0 assignsubmission_comments 2020110900 2020110900 Plugin installed \N 0 1612889097 +939 0 assignsubmission_file \N 2020110900 Starting plugin installation \N 0 1612889097 +940 0 assignsubmission_file 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889097 +941 0 assignsubmission_file 2020110900 2020110900 Plugin installed \N 0 1612889097 +942 0 assignsubmission_onlinetext \N 2020110900 Starting plugin installation \N 0 1612889097 +943 0 assignsubmission_onlinetext 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889097 +944 0 assignsubmission_onlinetext 2020110900 2020110900 Plugin installed \N 0 1612889097 +945 0 assignfeedback_comments \N 2020110900 Starting plugin installation \N 0 1612889097 +946 0 assignfeedback_comments 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889097 +947 0 assignfeedback_comments 2020110900 2020110900 Plugin installed \N 0 1612889097 +948 0 assignfeedback_editpdf \N 2020110900 Starting plugin installation \N 0 1612889097 +949 0 assignfeedback_editpdf 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889097 +950 0 assignfeedback_editpdf 2020110900 2020110900 Plugin installed \N 0 1612889097 +951 0 assignfeedback_file \N 2020110900 Starting plugin installation \N 0 1612889097 +952 0 assignfeedback_file 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889097 +953 0 assignfeedback_file 2020110900 2020110900 Plugin installed \N 0 1612889097 +954 0 assignfeedback_offline \N 2020110900 Starting plugin installation \N 0 1612889097 +955 0 assignfeedback_offline 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889097 +956 0 assignfeedback_offline 2020110900 2020110900 Plugin installed \N 0 1612889097 +957 0 assignment_offline \N 2020110900 Starting plugin installation \N 0 1612889097 +958 0 assignment_offline 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889097 +959 0 assignment_offline 2020110900 2020110900 Plugin installed \N 0 1612889097 +960 0 assignment_online \N 2020110900 Starting plugin installation \N 0 1612889097 +961 0 assignment_online 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889097 +962 0 assignment_online 2020110900 2020110900 Plugin installed \N 0 1612889097 +963 0 assignment_upload \N 2020110900 Starting plugin installation \N 0 1612889097 +964 0 assignment_upload 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889097 +965 0 assignment_upload 2020110900 2020110900 Plugin installed \N 0 1612889097 +966 0 assignment_uploadsingle \N 2020110900 Starting plugin installation \N 0 1612889097 +967 0 assignment_uploadsingle 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889097 +968 0 assignment_uploadsingle 2020110900 2020110900 Plugin installed \N 0 1612889097 +969 0 booktool_exportimscp \N 2020110900 Starting plugin installation \N 0 1612889097 +970 0 booktool_exportimscp 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889097 +971 0 booktool_exportimscp 2020110900 2020110900 Plugin installed \N 0 1612889097 +972 0 booktool_importhtml \N 2020110900 Starting plugin installation \N 0 1612889097 +973 0 booktool_importhtml 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889097 +974 0 booktool_importhtml 2020110900 2020110900 Plugin installed \N 0 1612889098 +975 0 booktool_print \N 2020110900 Starting plugin installation \N 0 1612889098 +976 0 booktool_print 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889098 +977 0 booktool_print 2020110900 2020110900 Plugin installed \N 0 1612889098 +978 0 datafield_checkbox \N 2020110900 Starting plugin installation \N 0 1612889098 +979 0 datafield_checkbox 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889098 +980 0 datafield_checkbox 2020110900 2020110900 Plugin installed \N 0 1612889098 +981 0 datafield_date \N 2020110900 Starting plugin installation \N 0 1612889098 +982 0 datafield_date 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889098 +983 0 datafield_date 2020110900 2020110900 Plugin installed \N 0 1612889098 +984 0 datafield_file \N 2020110900 Starting plugin installation \N 0 1612889098 +985 0 datafield_file 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889098 +986 0 datafield_file 2020110900 2020110900 Plugin installed \N 0 1612889098 +987 0 datafield_latlong \N 2020110900 Starting plugin installation \N 0 1612889098 +988 0 datafield_latlong 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889098 +989 0 datafield_latlong 2020110900 2020110900 Plugin installed \N 0 1612889098 +990 0 datafield_menu \N 2020110900 Starting plugin installation \N 0 1612889098 +991 0 datafield_menu 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889098 +992 0 datafield_menu 2020110900 2020110900 Plugin installed \N 0 1612889098 +993 0 datafield_multimenu \N 2020110900 Starting plugin installation \N 0 1612889098 +994 0 datafield_multimenu 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889098 +995 0 datafield_multimenu 2020110900 2020110900 Plugin installed \N 0 1612889098 +996 0 datafield_number \N 2020110900 Starting plugin installation \N 0 1612889098 +997 0 datafield_number 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889098 +998 0 datafield_number 2020110900 2020110900 Plugin installed \N 0 1612889098 +999 0 datafield_picture \N 2020110900 Starting plugin installation \N 0 1612889098 +1000 0 datafield_picture 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889098 +1001 0 datafield_picture 2020110900 2020110900 Plugin installed \N 0 1612889098 +1002 0 datafield_radiobutton \N 2020110900 Starting plugin installation \N 0 1612889098 +1003 0 datafield_radiobutton 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889098 +1004 0 datafield_radiobutton 2020110900 2020110900 Plugin installed \N 0 1612889098 +1005 0 datafield_text \N 2020110900 Starting plugin installation \N 0 1612889098 +1006 0 datafield_text 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889098 +1007 0 datafield_text 2020110900 2020110900 Plugin installed \N 0 1612889098 +1008 0 datafield_textarea \N 2020110900 Starting plugin installation \N 0 1612889098 +1009 0 datafield_textarea 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889098 +1010 0 datafield_textarea 2020110900 2020110900 Plugin installed \N 0 1612889098 +1011 0 datafield_url \N 2020110900 Starting plugin installation \N 0 1612889098 +1012 0 datafield_url 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889098 +1013 0 datafield_url 2020110900 2020110900 Plugin installed \N 0 1612889098 +1014 0 datapreset_imagegallery \N 2020110900 Starting plugin installation \N 0 1612889098 +1015 0 datapreset_imagegallery 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889098 +1016 0 datapreset_imagegallery 2020110900 2020110900 Plugin installed \N 0 1612889098 +1017 0 forumreport_summary \N 2020110900 Starting plugin installation \N 0 1612889098 +1018 0 forumreport_summary 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889098 +1019 0 forumreport_summary 2020110900 2020110900 Plugin installed \N 0 1612889098 +1020 0 ltiservice_basicoutcomes \N 2020110900 Starting plugin installation \N 0 1612889098 +1021 0 ltiservice_basicoutcomes 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889098 +1022 0 ltiservice_basicoutcomes 2020110900 2020110900 Plugin installed \N 0 1612889098 +1023 0 ltiservice_gradebookservices \N 2020110900 Starting plugin installation \N 0 1612889098 +1024 0 ltiservice_gradebookservices 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889098 +1025 0 ltiservice_gradebookservices 2020110900 2020110900 Plugin installed \N 0 1612889098 +1026 0 ltiservice_memberships \N 2020110900 Starting plugin installation \N 0 1612889098 +1027 0 ltiservice_memberships 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889098 +1028 0 ltiservice_memberships 2020110900 2020110900 Plugin installed \N 0 1612889098 +1029 0 ltiservice_profile \N 2020110900 Starting plugin installation \N 0 1612889098 +1030 0 ltiservice_profile 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889098 +1031 0 ltiservice_profile 2020110900 2020110900 Plugin installed \N 0 1612889099 +1032 0 ltiservice_toolproxy \N 2020110900 Starting plugin installation \N 0 1612889099 +1033 0 ltiservice_toolproxy 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889099 +1034 0 ltiservice_toolproxy 2020110900 2020110900 Plugin installed \N 0 1612889099 +1035 0 ltiservice_toolsettings \N 2020110900 Starting plugin installation \N 0 1612889099 +1036 0 ltiservice_toolsettings 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889099 +1037 0 ltiservice_toolsettings 2020110900 2020110900 Plugin installed \N 0 1612889099 +1038 0 quiz_grading \N 2020110900 Starting plugin installation \N 0 1612889099 +1039 0 quiz_grading 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889099 +1040 0 quiz_grading 2020110900 2020110900 Plugin installed \N 0 1612889099 +1041 0 quiz_overview \N 2020110900 Starting plugin installation \N 0 1612889099 +1042 0 quiz_overview 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889099 +1043 0 quiz_overview 2020110900 2020110900 Plugin installed \N 0 1612889099 +1044 0 quiz_responses \N 2020110900 Starting plugin installation \N 0 1612889099 +1045 0 quiz_responses 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889099 +1046 0 quiz_responses 2020110900 2020110900 Plugin installed \N 0 1612889099 +1047 0 quiz_statistics \N 2020110900 Starting plugin installation \N 0 1612889099 +1048 0 quiz_statistics 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889099 +1049 0 quiz_statistics 2020110900 2020110900 Plugin installed \N 0 1612889099 +1050 0 quizaccess_delaybetweenattempts \N 2020110900 Starting plugin installation \N 0 1612889099 +1051 0 quizaccess_delaybetweenattempts 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889099 +1052 0 quizaccess_delaybetweenattempts 2020110900 2020110900 Plugin installed \N 0 1612889099 +1053 0 quizaccess_ipaddress \N 2020110900 Starting plugin installation \N 0 1612889099 +1054 0 quizaccess_ipaddress 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889099 +1055 0 quizaccess_ipaddress 2020110900 2020110900 Plugin installed \N 0 1612889099 +1056 0 quizaccess_numattempts \N 2020110900 Starting plugin installation \N 0 1612889099 +1057 0 quizaccess_numattempts 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889099 +1058 0 quizaccess_numattempts 2020110900 2020110900 Plugin installed \N 0 1612889099 +1059 0 quizaccess_offlineattempts \N 2020110900 Starting plugin installation \N 0 1612889099 +1060 0 quizaccess_offlineattempts 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889099 +1061 0 quizaccess_offlineattempts 2020110900 2020110900 Plugin installed \N 0 1612889099 +1062 0 quizaccess_openclosedate \N 2020110900 Starting plugin installation \N 0 1612889099 +1063 0 quizaccess_openclosedate 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889099 +1064 0 quizaccess_openclosedate 2020110900 2020110900 Plugin installed \N 0 1612889099 +1065 0 quizaccess_password \N 2020110900 Starting plugin installation \N 0 1612889099 +1066 0 quizaccess_password 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889099 +1067 0 quizaccess_password 2020110900 2020110900 Plugin installed \N 0 1612889099 +1068 0 quizaccess_seb \N 2020110900 Starting plugin installation \N 0 1612889099 +1069 0 quizaccess_seb 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889099 +1070 0 quizaccess_seb 2020110900 2020110900 Plugin installed \N 0 1612889100 +1071 0 quizaccess_securewindow \N 2020110900 Starting plugin installation \N 0 1612889100 +1072 0 quizaccess_securewindow 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889100 +1073 0 quizaccess_securewindow 2020110900 2020110900 Plugin installed \N 0 1612889100 +1074 0 quizaccess_timelimit \N 2020110900 Starting plugin installation \N 0 1612889100 +1075 0 quizaccess_timelimit 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889100 +1076 0 quizaccess_timelimit 2020110900 2020110900 Plugin installed \N 0 1612889100 +1077 0 scormreport_basic \N 2020110900 Starting plugin installation \N 0 1612889100 +1078 0 scormreport_basic 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889100 +1079 0 scormreport_basic 2020110900 2020110900 Plugin installed \N 0 1612889100 +1080 0 scormreport_graphs \N 2020110900 Starting plugin installation \N 0 1612889100 +1081 0 scormreport_graphs 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889100 +1082 0 scormreport_graphs 2020110900 2020110900 Plugin installed \N 0 1612889100 +1083 0 scormreport_interactions \N 2020110900 Starting plugin installation \N 0 1612889100 +1084 0 scormreport_interactions 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889100 +1085 0 scormreport_interactions 2020110900 2020110900 Plugin installed \N 0 1612889100 +1086 0 scormreport_objectives \N 2020110900 Starting plugin installation \N 0 1612889100 +1087 0 scormreport_objectives 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889100 +1088 0 scormreport_objectives 2020110900 2020110900 Plugin installed \N 0 1612889100 +1089 0 workshopform_accumulative \N 2020110900 Starting plugin installation \N 0 1612889100 +1090 0 workshopform_accumulative 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889100 +1091 0 workshopform_accumulative 2020110900 2020110900 Plugin installed \N 0 1612889100 +1092 0 workshopform_comments \N 2020110900 Starting plugin installation \N 0 1612889100 +1093 0 workshopform_comments 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889100 +1094 0 workshopform_comments 2020110900 2020110900 Plugin installed \N 0 1612889100 +1095 0 workshopform_numerrors \N 2020110900 Starting plugin installation \N 0 1612889100 +1096 0 workshopform_numerrors 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889100 +1097 0 workshopform_numerrors 2020110900 2020110900 Plugin installed \N 0 1612889100 +1098 0 workshopform_rubric \N 2020110900 Starting plugin installation \N 0 1612889100 +1099 0 workshopform_rubric 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889101 +1100 0 workshopform_rubric 2020110900 2020110900 Plugin installed \N 0 1612889101 +1101 0 workshopallocation_manual \N 2020110900 Starting plugin installation \N 0 1612889101 +1102 0 workshopallocation_manual 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889101 +1103 0 workshopallocation_manual 2020110900 2020110900 Plugin installed \N 0 1612889101 +1104 0 workshopallocation_random \N 2020110900 Starting plugin installation \N 0 1612889101 +1105 0 workshopallocation_random 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889101 +1106 0 workshopallocation_random 2020110900 2020110900 Plugin installed \N 0 1612889101 +1107 0 workshopallocation_scheduled \N 2020110900 Starting plugin installation \N 0 1612889101 +1108 0 workshopallocation_scheduled 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889101 +1109 0 workshopallocation_scheduled 2020110900 2020110900 Plugin installed \N 0 1612889101 +1110 0 workshopeval_best \N 2020110900 Starting plugin installation \N 0 1612889101 +1111 0 workshopeval_best 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889101 +1112 0 workshopeval_best 2020110900 2020110900 Plugin installed \N 0 1612889101 +1113 0 atto_accessibilitychecker \N 2020110900 Starting plugin installation \N 0 1612889101 +1114 0 atto_accessibilitychecker 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889101 +1115 0 atto_accessibilitychecker 2020110900 2020110900 Plugin installed \N 0 1612889101 +1116 0 atto_accessibilityhelper \N 2020110900 Starting plugin installation \N 0 1612889101 +1117 0 atto_accessibilityhelper 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889101 +1118 0 atto_accessibilityhelper 2020110900 2020110900 Plugin installed \N 0 1612889101 +1119 0 atto_align \N 2020110900 Starting plugin installation \N 0 1612889101 +1120 0 atto_align 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889101 +1121 0 atto_align 2020110900 2020110900 Plugin installed \N 0 1612889101 +1122 0 atto_backcolor \N 2020110900 Starting plugin installation \N 0 1612889101 +1123 0 atto_backcolor 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889101 +1124 0 atto_backcolor 2020110900 2020110900 Plugin installed \N 0 1612889101 +1125 0 atto_bold \N 2020110900 Starting plugin installation \N 0 1612889101 +1126 0 atto_bold 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889101 +1127 0 atto_bold 2020110900 2020110900 Plugin installed \N 0 1612889101 +1128 0 atto_charmap \N 2020110900 Starting plugin installation \N 0 1612889101 +1129 0 atto_charmap 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889101 +1130 0 atto_charmap 2020110900 2020110900 Plugin installed \N 0 1612889101 +1131 0 atto_clear \N 2020110900 Starting plugin installation \N 0 1612889101 +1132 0 atto_clear 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889101 +1133 0 atto_clear 2020110900 2020110900 Plugin installed \N 0 1612889101 +1134 0 atto_collapse \N 2020110900 Starting plugin installation \N 0 1612889101 +1135 0 atto_collapse 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889101 +1136 0 atto_collapse 2020110900 2020110900 Plugin installed \N 0 1612889101 +1137 0 atto_emojipicker \N 2020110900 Starting plugin installation \N 0 1612889101 +1138 0 atto_emojipicker 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889101 +1139 0 atto_emojipicker 2020110900 2020110900 Plugin installed \N 0 1612889101 +1140 0 atto_emoticon \N 2020110900 Starting plugin installation \N 0 1612889101 +1141 0 atto_emoticon 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889101 +1142 0 atto_emoticon 2020110900 2020110900 Plugin installed \N 0 1612889101 +1143 0 atto_equation \N 2020110900 Starting plugin installation \N 0 1612889101 +1144 0 atto_equation 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889101 +1145 0 atto_equation 2020110900 2020110900 Plugin installed \N 0 1612889102 +1146 0 atto_fontcolor \N 2020110900 Starting plugin installation \N 0 1612889102 +1147 0 atto_fontcolor 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889102 +1148 0 atto_fontcolor 2020110900 2020110900 Plugin installed \N 0 1612889102 +1149 0 atto_h5p \N 2020110900 Starting plugin installation \N 0 1612889102 +1150 0 atto_h5p 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889102 +1151 0 atto_h5p 2020110900 2020110900 Plugin installed \N 0 1612889102 +1152 0 atto_html \N 2020110900 Starting plugin installation \N 0 1612889102 +1153 0 atto_html 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889102 +1154 0 atto_html 2020110900 2020110900 Plugin installed \N 0 1612889102 +1155 0 atto_image \N 2020110900 Starting plugin installation \N 0 1612889102 +1156 0 atto_image 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889102 +1157 0 atto_image 2020110900 2020110900 Plugin installed \N 0 1612889102 +1158 0 atto_indent \N 2020110900 Starting plugin installation \N 0 1612889102 +1159 0 atto_indent 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889102 +1160 0 atto_indent 2020110900 2020110900 Plugin installed \N 0 1612889102 +1161 0 atto_italic \N 2020110900 Starting plugin installation \N 0 1612889102 +1162 0 atto_italic 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889102 +1163 0 atto_italic 2020110900 2020110900 Plugin installed \N 0 1612889102 +1164 0 atto_link \N 2020110900 Starting plugin installation \N 0 1612889102 +1165 0 atto_link 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889102 +1166 0 atto_link 2020110900 2020110900 Plugin installed \N 0 1612889102 +1167 0 atto_managefiles \N 2020110900 Starting plugin installation \N 0 1612889102 +1168 0 atto_managefiles 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889102 +1169 0 atto_managefiles 2020110900 2020110900 Plugin installed \N 0 1612889102 +1170 0 atto_media \N 2020110900 Starting plugin installation \N 0 1612889102 +1171 0 atto_media 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889102 +1172 0 atto_media 2020110900 2020110900 Plugin installed \N 0 1612889102 +1173 0 atto_noautolink \N 2020110900 Starting plugin installation \N 0 1612889102 +1174 0 atto_noautolink 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889102 +1175 0 atto_noautolink 2020110900 2020110900 Plugin installed \N 0 1612889102 +1176 0 atto_orderedlist \N 2020110900 Starting plugin installation \N 0 1612889102 +1177 0 atto_orderedlist 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889102 +1178 0 atto_orderedlist 2020110900 2020110900 Plugin installed \N 0 1612889102 +1179 0 atto_recordrtc \N 2020110900 Starting plugin installation \N 0 1612889102 +1180 0 atto_recordrtc 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889102 +1181 0 atto_recordrtc 2020110900 2020110900 Plugin installed \N 0 1612889102 +1182 0 atto_rtl \N 2020110900 Starting plugin installation \N 0 1612889102 +1183 0 atto_rtl 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889102 +1184 0 atto_rtl 2020110900 2020110900 Plugin installed \N 0 1612889102 +1185 0 atto_strike \N 2020110900 Starting plugin installation \N 0 1612889102 +1186 0 atto_strike 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889102 +1187 0 atto_strike 2020110900 2020110900 Plugin installed \N 0 1612889102 +1188 0 atto_subscript \N 2020110900 Starting plugin installation \N 0 1612889102 +1189 0 atto_subscript 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889102 +1190 0 atto_subscript 2020110900 2020110900 Plugin installed \N 0 1612889102 +1191 0 atto_superscript \N 2020110900 Starting plugin installation \N 0 1612889102 +1192 0 atto_superscript 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889102 +1193 0 atto_superscript 2020110900 2020110900 Plugin installed \N 0 1612889102 +1194 0 atto_table \N 2020110900 Starting plugin installation \N 0 1612889102 +1195 0 atto_table 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889102 +1196 0 atto_table 2020110900 2020110900 Plugin installed \N 0 1612889102 +1197 0 atto_title \N 2020110900 Starting plugin installation \N 0 1612889102 +1198 0 atto_title 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889102 +1199 0 atto_title 2020110900 2020110900 Plugin installed \N 0 1612889102 +1200 0 atto_underline \N 2020110900 Starting plugin installation \N 0 1612889102 +1201 0 atto_underline 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889102 +1202 0 atto_underline 2020110900 2020110900 Plugin installed \N 0 1612889102 +1203 0 atto_undo \N 2020110900 Starting plugin installation \N 0 1612889102 +1204 0 atto_undo 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889102 +1205 0 atto_undo 2020110900 2020110900 Plugin installed \N 0 1612889102 +1206 0 atto_unorderedlist \N 2020110900 Starting plugin installation \N 0 1612889102 +1207 0 atto_unorderedlist 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889102 +1208 0 atto_unorderedlist 2020110900 2020110900 Plugin installed \N 0 1612889102 +1209 0 tinymce_ctrlhelp \N 2020110900 Starting plugin installation \N 0 1612889102 +1210 0 tinymce_ctrlhelp 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889102 +1211 0 tinymce_ctrlhelp 2020110900 2020110900 Plugin installed \N 0 1612889102 +1212 0 tinymce_managefiles \N 2020110900 Starting plugin installation \N 0 1612889102 +1213 0 tinymce_managefiles 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889102 +1214 0 tinymce_managefiles 2020110900 2020110900 Plugin installed \N 0 1612889103 +1215 0 tinymce_moodleemoticon \N 2020110900 Starting plugin installation \N 0 1612889103 +1216 0 tinymce_moodleemoticon 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889103 +1217 0 tinymce_moodleemoticon 2020110900 2020110900 Plugin installed \N 0 1612889103 +1218 0 tinymce_moodleimage \N 2020110900 Starting plugin installation \N 0 1612889103 +1219 0 tinymce_moodleimage 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889103 +1220 0 tinymce_moodleimage 2020110900 2020110900 Plugin installed \N 0 1612889103 +1221 0 tinymce_moodlemedia \N 2020110900 Starting plugin installation \N 0 1612889103 +1222 0 tinymce_moodlemedia 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889103 +1223 0 tinymce_moodlemedia 2020110900 2020110900 Plugin installed \N 0 1612889103 +1224 0 tinymce_moodlenolink \N 2020110900 Starting plugin installation \N 0 1612889103 +1225 0 tinymce_moodlenolink 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889103 +1226 0 tinymce_moodlenolink 2020110900 2020110900 Plugin installed \N 0 1612889103 +1227 0 tinymce_pdw \N 2020110900 Starting plugin installation \N 0 1612889103 +1228 0 tinymce_pdw 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889103 +1229 0 tinymce_pdw 2020110900 2020110900 Plugin installed \N 0 1612889103 +1230 0 tinymce_spellchecker \N 2020110900 Starting plugin installation \N 0 1612889103 +1231 0 tinymce_spellchecker 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889103 +1232 0 tinymce_spellchecker 2020110900 2020110900 Plugin installed \N 0 1612889103 +1233 0 tinymce_wrap \N 2020110900 Starting plugin installation \N 0 1612889103 +1234 0 tinymce_wrap 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889103 +1235 0 tinymce_wrap 2020110900 2020110900 Plugin installed \N 0 1612889103 +1236 0 logstore_database \N 2020110900 Starting plugin installation \N 0 1612889103 +1237 0 logstore_database 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889103 +1238 0 logstore_database 2020110900 2020110900 Plugin installed \N 0 1612889103 +1239 0 logstore_legacy \N 2020110900 Starting plugin installation \N 0 1612889103 +1240 0 logstore_legacy 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889103 +1241 0 logstore_legacy 2020110900 2020110900 Plugin installed \N 0 1612889103 +1242 0 logstore_standard \N 2020110900 Starting plugin installation \N 0 1612889103 +1243 0 logstore_standard 2020110900 2020110900 Upgrade savepoint reached \N 0 1612889103 +1244 0 logstore_standard 2020110900 2020110900 Plugin installed \N 0 1612889103 \. @@ -39134,7 +39647,7 @@ COPY public.mdl_upgrade_log (id, type, plugin, version, targetversion, info, det -- Name: mdl_upgrade_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_upgrade_log_id_seq', 1235, true); +SELECT pg_catalog.setval('public.mdl_upgrade_log_id_seq', 1244, true); -- @@ -39157,9 +39670,9 @@ SELECT pg_catalog.setval('public.mdl_url_id_seq', 1, false); -- COPY public.mdl_user (id, auth, confirmed, policyagreed, deleted, suspended, mnethostid, username, password, idnumber, firstname, lastname, email, emailstop, icq, skype, yahoo, aim, msn, phone1, phone2, institution, department, address, city, country, lang, calendartype, theme, timezone, firstaccess, lastaccess, lastlogin, currentlogin, lastip, secret, picture, url, description, descriptionformat, mailformat, maildigest, maildisplay, autosubscribe, trackforums, timecreated, timemodified, trustbitmask, imagealt, lastnamephonetic, firstnamephonetic, middlename, alternatename, moodlenetprofile) FROM stdin; -1 manual 1 0 0 0 1 guest $2y$10$uqhnR2sWCxC8jN5iDUZh1uCs95LbjaXtf0rk/N7fufZ5BrTmUPUfq Guest user root@localhost 0 en gregorian 99 0 0 0 0 0 This user is a special user that allows read-only access to some courses. 1 1 0 2 1 0 0 1609808466 0 \N \N \N \N \N \N -3 manual 1 0 0 0 1 user $2y$10$7e.nO1HCZAUwOjjcB9PALumA9hz4sUd4UvKgo7x1nqty7wbP1BBlq Default User email2@email.com 0 en gregorian America/Los_Angeles 1609808513 1609892614 1609808513 1609883714 67.182.30.218 0 1 1 0 1 1 0 0 1609884654 0 \N -2 manual 1 0 0 0 1 admin $2y$10$7e.nO1HCZAUwOjjcB9PALumA9hz4sUd4UvKgo7x1nqty7wbP1BBlq Admin User email@email.com 0 en gregorian America/Los_Angeles 1609808513 1612797602 1609883714 1612797602 67.182.30.218 0 1 1 0 1 1 0 0 1609884654 0 \N +1 manual 1 0 0 0 1 guest $2y$10$kUowCQcP6CK4rthRvesKDO.QVRXnUfgAKl3I/fvAJv.zGltjWnDSq Guest user root@localhost 0 en gregorian 99 0 0 0 0 0 This user is a special user that allows read-only access to some courses. 1 1 0 2 1 0 0 1612889053 0 \N \N \N \N \N \N +2 manual 1 0 0 0 1 admin $2y$10$75u/DYN/ajTm7NobTnIkE.wFwnZBpN1bnd8L0nSnh9ZJGLyRKFBLu Admin User admin@email.com 0 en gregorian 99 1612889108 1612889174 0 1612889108 67.182.30.218 0 1 1 0 0 1 0 0 1612889141 0 \N +3 manual 1 0 0 0 1 user $2y$10$zo7Pb0Z.ki5s.X63jbgJlOEN6uVvQOUihe4CGrJz0eUhlAM.He6iG User User user@email.com 0 en gregorian 99 0 0 0 0 0 1 1 0 0 1 0 1612889205 1612889205 0 \. @@ -39197,7 +39710,7 @@ SELECT pg_catalog.setval('public.mdl_user_enrolments_id_seq', 1, false); -- Name: mdl_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_user_id_seq', 2, true); +SELECT pg_catalog.setval('public.mdl_user_id_seq', 3, true); -- @@ -39296,9 +39809,12 @@ SELECT pg_catalog.setval('public.mdl_user_password_resets_id_seq', 1, false); COPY public.mdl_user_preferences (id, userid, name, value) FROM stdin; 1 2 core_message_migrate_data 1 -2 2 auth_manual_passwordupdatetime 1609884654 +2 2 auth_manual_passwordupdatetime 1612889141 3 2 email_bounce_count 1 4 2 email_send_count 1 +5 3 auth_forcepasswordchange 0 +6 3 email_bounce_count 1 +7 3 email_send_count 1 \. @@ -39306,7 +39822,7 @@ COPY public.mdl_user_preferences (id, userid, name, value) FROM stdin; -- Name: mdl_user_preferences_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_user_preferences_id_seq', 4, true); +SELECT pg_catalog.setval('public.mdl_user_preferences_id_seq', 7, true); -- @@ -41255,6 +41771,14 @@ ALTER TABLE ONLY public.mdl_imscp ADD CONSTRAINT mdl_imsc_id_pk PRIMARY KEY (id); +-- +-- Name: mdl_infected_files mdl_infefile_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_infected_files + ADD CONSTRAINT mdl_infefile_id_pk PRIMARY KEY (id); + + -- -- Name: mdl_label mdl_labe_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -41743,6 +42267,14 @@ ALTER TABLE ONLY public.mdl_oauth2_issuer ADD CONSTRAINT mdl_oautissu_id_pk PRIMARY KEY (id); +-- +-- Name: mdl_oauth2_refresh_token mdl_oautrefrtoke_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_oauth2_refresh_token + ADD CONSTRAINT mdl_oautrefrtoke_id_pk PRIMARY KEY (id); + + -- -- Name: mdl_oauth2_system_account mdl_oautsystacco_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -41767,6 +42299,38 @@ ALTER TABLE ONLY public.mdl_page ADD CONSTRAINT mdl_page_id_pk PRIMARY KEY (id); +-- +-- Name: mdl_paygw_paypal mdl_paygpayp_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_paygw_paypal + ADD CONSTRAINT mdl_paygpayp_id_pk PRIMARY KEY (id); + + +-- +-- Name: mdl_payments mdl_paym_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_payments + ADD CONSTRAINT mdl_paym_id_pk PRIMARY KEY (id); + + +-- +-- Name: mdl_payment_accounts mdl_paymacco_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_payment_accounts + ADD CONSTRAINT mdl_paymacco_id_pk PRIMARY KEY (id); + + +-- +-- Name: mdl_payment_gateways mdl_paymgate_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres +-- + +ALTER TABLE ONLY public.mdl_payment_gateways + ADD CONSTRAINT mdl_paymgate_id_pk PRIMARY KEY (id); + + -- -- Name: mdl_portfolio_instance mdl_portinst_id_pk; Type: CONSTRAINT; Schema: public; Owner: postgres -- @@ -43658,6 +44222,13 @@ CREATE INDEX mdl_badgback_ext_ix ON public.mdl_badge_backpack USING btree (exter CREATE INDEX mdl_badgback_use_ix ON public.mdl_badge_backpack USING btree (userid); +-- +-- Name: mdl_badgback_useext_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_badgback_useext_uix ON public.mdl_badge_backpack USING btree (userid, externalbackpackid); + + -- -- Name: mdl_badgbackoaut_ext_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -43959,6 +44530,13 @@ CREATE INDEX mdl_blogasso_con_ix ON public.mdl_blog_association USING btree (con CREATE INDEX mdl_blogexte_use_ix ON public.mdl_blog_external USING btree (userid); +-- +-- Name: mdl_bookchap_boo_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_bookchap_boo_ix ON public.mdl_book_chapters USING btree (bookid); + + -- -- Name: mdl_cachfilt_filmd5_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -45010,10 +45588,10 @@ CREATE INDEX mdl_even_grocoucatvisuse_ix ON public.mdl_event USING btree (groupi -- --- Name: mdl_even_modins_ix; Type: INDEX; Schema: public; Owner: postgres +-- Name: mdl_even_modinseve_ix; Type: INDEX; Schema: public; Owner: postgres -- -CREATE INDEX mdl_even_modins_ix ON public.mdl_event USING btree (modulename, instance); +CREATE INDEX mdl_even_modinseve_ix ON public.mdl_event USING btree (modulename, instance, eventtype); -- @@ -45142,6 +45720,13 @@ CREATE INDEX mdl_extetoke_cre_ix ON public.mdl_external_tokens USING btree (crea CREATE INDEX mdl_extetoke_ext_ix ON public.mdl_external_tokens USING btree (externalserviceid); +-- +-- Name: mdl_extetoke_tok_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_extetoke_tok_ix ON public.mdl_external_tokens USING btree (token); + + -- -- Name: mdl_extetoke_use_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -46381,6 +46966,13 @@ CREATE INDEX mdl_h5plibrdepe_req_ix ON public.mdl_h5p_library_dependencies USING CREATE INDEX mdl_imsc_cou_ix ON public.mdl_imscp USING btree (course); +-- +-- Name: mdl_infefile_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_infefile_use_ix ON public.mdl_infected_files USING btree (userid); + + -- -- Name: mdl_labe_cou_ix; Type: INDEX; Schema: public; Owner: postgres -- @@ -47123,6 +47715,27 @@ CREATE UNIQUE INDEX mdl_oautaccetoke_iss_uix ON public.mdl_oauth2_access_token U CREATE INDEX mdl_oautendp_iss_ix ON public.mdl_oauth2_endpoint USING btree (issuerid); +-- +-- Name: mdl_oautrefrtoke_iss_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_oautrefrtoke_iss_ix ON public.mdl_oauth2_refresh_token USING btree (issuerid); + + +-- +-- Name: mdl_oautrefrtoke_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_oautrefrtoke_use_ix ON public.mdl_oauth2_refresh_token USING btree (userid); + + +-- +-- Name: mdl_oautrefrtoke_useisssco_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_oautrefrtoke_useisssco_uix ON public.mdl_oauth2_refresh_token USING btree (userid, issuerid, scopehash); + + -- -- Name: mdl_oautsystacco_iss_uix; Type: INDEX; Schema: public; Owner: postgres -- @@ -47151,6 +47764,48 @@ CREATE UNIQUE INDEX mdl_oautuserfielmapp_issin_uix ON public.mdl_oauth2_user_fie CREATE INDEX mdl_page_cou_ix ON public.mdl_page USING btree (course); +-- +-- Name: mdl_paygpayp_pay_uix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE UNIQUE INDEX mdl_paygpayp_pay_uix ON public.mdl_paygw_paypal USING btree (paymentid); + + +-- +-- Name: mdl_paym_acc_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_paym_acc_ix ON public.mdl_payments USING btree (accountid); + + +-- +-- Name: mdl_paym_compayite_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_paym_compayite_ix ON public.mdl_payments USING btree (component, paymentarea, itemid); + + +-- +-- Name: mdl_paym_gat_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_paym_gat_ix ON public.mdl_payments USING btree (gateway); + + +-- +-- Name: mdl_paym_use_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_paym_use_ix ON public.mdl_payments USING btree (userid); + + +-- +-- Name: mdl_paymgate_acc_ix; Type: INDEX; Schema: public; Owner: postgres +-- + +CREATE INDEX mdl_paymgate_acc_ix ON public.mdl_payment_gateways USING btree (accountid); + + -- -- Name: mdl_portinstconf_ins_ix; Type: INDEX; Schema: public; Owner: postgres -- From 2c9e0f3764a546b32b6bc35325bc024b0916b4b4 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 9 Feb 2021 14:01:11 -0800 Subject: [PATCH 046/129] Update .gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index a0072332..0de103df 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,6 @@ ghostdriver.log ci/terraform.tfstate* ansible/inventory makenewimage.sh +ansible/inventory-cbpi +ansible/inventory-aws +ansible/inventory-cb From 60a560f761ecb9db9860c6b2d1da5fe012a4cfc4 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 10 Feb 2021 14:26:34 -0800 Subject: [PATCH 047/129] Adjust tmpfs partitions for maximum upload space --- ansible/roles/moodle/tasks/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml index 79a25704..d2c0b6bf 100644 --- a/ansible/roles/moodle/tasks/main.yml +++ b/ansible/roles/moodle/tasks/main.yml @@ -42,9 +42,9 @@ passno: '0' state: 'mounted' with_items: - - { name: '/var/cache/moodle', size: '128M' } - - { name: '/var/www/moodledata/temp', size: '999M' } - - { name: '/var/www/moodledata/sessions', size: '256M' } + - { name: '/var/cache/moodle', size: '4M' } + - { name: '/var/www/moodledata/temp', size: '499M' } + - { name: '/var/www/moodledata/sessions', size: '4M' } - name: Copy config.php to working directory From 01e36558100465464edf85d9693466d325bb4bb1 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 15 Feb 2021 15:54:29 -0800 Subject: [PATCH 048/129] Update .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 0de103df..f9f436c1 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,4 @@ makenewimage.sh ansible/inventory-cbpi ansible/inventory-aws ansible/inventory-cb +ansible/inventory-cbMaster From c3bae0b6e627d69fe865193ef4e5132e38bee012 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 15 Feb 2021 15:55:12 -0800 Subject: [PATCH 049/129] Re-Enable Captive Portal, Admin & Local File Serving --- ansible/roles/nginx/tasks/main.yml | 35 +++++++++---------- .../templates/connectbox_icon-only.conf.j2 | 2 +- .../nginx/templates/connectbox_moodle.conf.j2 | 2 +- .../templates/connectbox_static-site.conf.j2 | 2 +- 4 files changed, 20 insertions(+), 21 deletions(-) diff --git a/ansible/roles/nginx/tasks/main.yml b/ansible/roles/nginx/tasks/main.yml index 5e6a7d4c..d35661b7 100644 --- a/ansible/roles/nginx/tasks/main.yml +++ b/ansible/roles/nginx/tasks/main.yml @@ -47,18 +47,17 @@ notify: restart nginx with_items: - { src: "{{ nginx_vhost_file_moodle }}.j2", dest: "{{ nginx_vhost_file_moodle }}" } -# - { src: "{{ nginx_vhost_file_captive_portal }}.j2", dest: "{{ nginx_vhost_file_captive_portal }}" } -# - { src: "{{ nginx_vhost_file_icon_only }}.j2", dest: "{{ nginx_vhost_file_icon_only }}" } -# - { src: "{{ nginx_vhost_file_static_site }}.j2", dest: "{{ nginx_vhost_file_static_site }}" } -# TODO: Need to reactivate the captive portal and content serving + - { src: "{{ nginx_vhost_file_captive_portal }}.j2", dest: "{{ nginx_vhost_file_captive_portal }}" } + - { src: "{{ nginx_vhost_file_icon_only }}.j2", dest: "{{ nginx_vhost_file_icon_only }}" } + - { src: "{{ nginx_vhost_file_static_site }}.j2", dest: "{{ nginx_vhost_file_static_site }}" } -#- name: Create nginx active vhost symlink for captive portal vhost -# file: -# src: "{{ nginx_available_vhosts_path }}/{{ nginx_vhost_file_captive_portal }}" -# dest: "{{ nginx_enabled_vhosts_path }}/{{ nginx_vhost_file_captive_portal }}" -# state: link -# force: yes -# notify: restart nginx +- name: Create nginx active vhost symlink for captive portal vhost + file: + src: "{{ nginx_available_vhosts_path }}/{{ nginx_vhost_file_captive_portal }}" + dest: "{{ nginx_enabled_vhosts_path }}/{{ nginx_vhost_file_captive_portal }}" + state: link + force: yes + notify: restart nginx - name: Create nginx active vhost symlink for Moodle vhost file: @@ -68,13 +67,13 @@ force: yes notify: restart nginx -#- name: Create nginx active vhost symlink for selected interface -# file: -# src: "{{ nginx_available_vhosts_path }}/{{ interface_type_files[interface_type] }}" -# dest: "{{ nginx_enabled_vhosts_path }}/connectbox_interface.conf" -# state: link -# force: yes -# notify: restart nginx +- name: Create nginx active vhost symlink for selected interface + file: + src: "{{ nginx_available_vhosts_path }}/{{ interface_type_files[interface_type] }}" + dest: "{{ nginx_enabled_vhosts_path }}/connectbox_interface.conf" + state: link + force: yes + notify: restart nginx - name: Ensure nginx is started and enabled to start at boot service: diff --git a/ansible/roles/nginx/templates/connectbox_icon-only.conf.j2 b/ansible/roles/nginx/templates/connectbox_icon-only.conf.j2 index 7f8d7345..f88b8c96 100644 --- a/ansible/roles/nginx/templates/connectbox_icon-only.conf.j2 +++ b/ansible/roles/nginx/templates/connectbox_icon-only.conf.j2 @@ -2,7 +2,7 @@ server { listen 80; # Wildcard .local i.e. respond to anything that comes in on that domain # which allows us to avoid calculating the mDNS name - server_name $hostname .local; + server_name {{connectbox_default_hostname}}.cb .local; root {{ connectbox_default_content_root }}; index index.html; error_page 404 /index.html; diff --git a/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 b/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 index af3ac7be..982be7d9 100644 --- a/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 +++ b/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 @@ -5,7 +5,7 @@ server { root /var/www/moodle/; index index.php index.html index.htm; - server_name your_domain; + server_name {{connectbox_default_hostname}}; location / { try_files $uri $uri/ =404; diff --git a/ansible/roles/nginx/templates/connectbox_static-site.conf.j2 b/ansible/roles/nginx/templates/connectbox_static-site.conf.j2 index bbdb906b..10b0d4ff 100644 --- a/ansible/roles/nginx/templates/connectbox_static-site.conf.j2 +++ b/ansible/roles/nginx/templates/connectbox_static-site.conf.j2 @@ -2,7 +2,7 @@ server { listen 80; # Wildcard .local i.e. respond to anything that comes in on that domain # which allows us to avoid calculating the mDNS name - server_name $hostname .local; + server_name {{connectbox_default_hostname}}.cb .local; root {{ connectbox_usb_files_root }}; index index.html index.htm; error_page 404 /index.html; From 28dad65243f10e9bfdaba72ab7c1434591febb29 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 15 Feb 2021 15:55:40 -0800 Subject: [PATCH 050/129] Fix overwrite sequence to not use old dump file --- ansible/roles/ansible-postgresql/tasks/overwrite.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/ansible/roles/ansible-postgresql/tasks/overwrite.yml b/ansible/roles/ansible-postgresql/tasks/overwrite.yml index 4305a0ec..1d3cdee5 100644 --- a/ansible/roles/ansible-postgresql/tasks/overwrite.yml +++ b/ansible/roles/ansible-postgresql/tasks/overwrite.yml @@ -15,6 +15,11 @@ command: psql -c "create database moodle;" become: true become_user: postgres + +- name: Remove Moodle Dump From /tmp + file: + path: /tmp/moodle_database_template.dump + state: absent - name: Copy Default Postgres Database Dump To /tmp template: @@ -30,3 +35,10 @@ command: psql -f /tmp/moodle_database_template.dump moodle become: true become_user: postgres + +- name: Recursively remove existing moodledata directory + file: + path: /var/www/moodledata/ + state: absent + become: true + ignore_errors: yes \ No newline at end of file From 50eac4768b21f6bdf4949cf901e4754b45b41245 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 15 Feb 2021 15:55:44 -0800 Subject: [PATCH 051/129] Update moodle_database_template.dump --- .../templates/moodle_database_template.dump | 2857 ++++++++++------- 1 file changed, 1726 insertions(+), 1131 deletions(-) diff --git a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump index 3e823943..a8442b00 100644 --- a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump +++ b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump @@ -23577,6 +23577,7 @@ SELECT pg_catalog.setval('public.mdl_analytics_models_log_id_seq', 1, false); -- COPY public.mdl_analytics_predict_samples (id, modelid, analysableid, timesplitting, rangeindex, sampleids, timecreated, timemodified) FROM stdin; +1 3 3 \\core\\analytics\\time_splitting\\upcoming_week 0 {"3":"3"} 1613080022 1613080022 \. @@ -23584,7 +23585,7 @@ COPY public.mdl_analytics_predict_samples (id, modelid, analysableid, timesplitt -- Name: mdl_analytics_predict_samples_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_analytics_predict_samples_id_seq', 1, false); +SELECT pg_catalog.setval('public.mdl_analytics_predict_samples_id_seq', 1, true); -- @@ -23637,6 +23638,8 @@ SELECT pg_catalog.setval('public.mdl_analytics_train_samples_id_seq', 1, false); -- COPY public.mdl_analytics_used_analysables (id, modelid, action, analysableid, firstanalysis, timeanalysed) FROM stdin; +1 2 prediction 1 1613080022 1613080022 +2 3 prediction 3 1613080022 1613080022 \. @@ -23644,7 +23647,7 @@ COPY public.mdl_analytics_used_analysables (id, modelid, action, analysableid, f -- Name: mdl_analytics_used_analysables_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_analytics_used_analysables_id_seq', 1, false); +SELECT pg_catalog.setval('public.mdl_analytics_used_analysables_id_seq', 2, true); -- @@ -24300,6 +24303,15 @@ COPY public.mdl_block_instances (id, blockname, parentcontextid, showinsubcontex 17 online_users 5 0 0 my-index 3 side-post 2 1612889167 1612889167 18 private_files 5 0 0 my-index 3 side-post 1 1612889167 1612889167 19 timeline 5 0 0 my-index 3 side-post 0 1612889167 1612889167 +20 timeline 25 0 0 my-index 4 side-post 0 1613080109 1613080109 +21 private_files 25 0 0 my-index 4 side-post 1 1613080110 1613080110 +22 online_users 25 0 0 my-index 4 side-post 2 1613080110 1613080110 +23 badges 25 0 0 my-index 4 side-post 3 1613080110 1613080110 +24 calendar_month 25 0 0 my-index 4 side-post 4 1613080110 1613080110 +25 calendar_upcoming 25 0 0 my-index 4 side-post 5 1613080110 1613080110 +26 lp 25 0 0 my-index 4 content 0 1613080110 1613080110 +27 recentlyaccessedcourses 25 0 0 my-index 4 content 1 1613080110 1613080110 +28 myoverview 25 0 0 my-index 4 content 2 1613080110 1613080110 \. @@ -24307,7 +24319,7 @@ COPY public.mdl_block_instances (id, blockname, parentcontextid, showinsubcontex -- Name: mdl_block_instances_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_block_instances_id_seq', 19, true); +SELECT pg_catalog.setval('public.mdl_block_instances_id_seq', 28, true); -- @@ -24450,8 +24462,8 @@ SELECT pg_catalog.setval('public.mdl_cache_filters_id_seq', 1, false); -- COPY public.mdl_cache_flags (id, flagtype, name, timemodified, value, expiry) FROM stdin; -1 userpreferenceschanged 2 1612889142 1 1612917942 -2 userpreferenceschanged 3 1612889205 1 1612918005 +4 userpreferenceschanged 2 1613081196 1 1613109996 +3 userpreferenceschanged 3 1613081313 1 1613110113 \. @@ -24459,7 +24471,7 @@ COPY public.mdl_cache_flags (id, flagtype, name, timemodified, value, expiry) FR -- Name: mdl_cache_flags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_cache_flags_id_seq', 2, true); +SELECT pg_catalog.setval('public.mdl_cache_flags_id_seq', 4, true); -- @@ -25692,7 +25704,6 @@ COPY public.mdl_config (id, name, value) FROM stdin; 14 texteditors atto,tinymce,textarea 2 rolesactive 1 24 themerev 1612889104 -40 enablewebservices 0 123 grade_report_showeyecons 0 124 grade_report_showaverages 1 125 grade_report_showlocks 0 @@ -26087,11 +26098,14 @@ COPY public.mdl_config (id, name, value) FROM stdin; 517 messageinbound_hostssl ssl 518 messageinbound_hostuser 519 messageinbound_hostpass -520 enablemobilewebservice 0 521 mobilecssurl -522 scorm_updatetimelast 1612889162 523 timezone Europe/London 524 registerauth +525 fileslastcleanup 1613080022 +522 scorm_updatetimelast 1613080201 +526 webserviceprotocols rest +520 enablemobilewebservice 1 +40 enablewebservices 1 \. @@ -26099,7 +26113,7 @@ COPY public.mdl_config (id, name, value) FROM stdin; -- Name: mdl_config_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_config_id_seq', 524, true); +SELECT pg_catalog.setval('public.mdl_config_id_seq', 526, true); -- @@ -26115,7 +26129,7 @@ COPY public.mdl_config_log (id, userid, timemodified, plugin, name, value, oldva 6 0 1612889060 \N usetags 1 \N 7 0 1612889060 \N enablenotes 1 \N 8 0 1612889060 \N enableportfolios 0 \N -9 0 1612889060 \N enablewebservices 0 \N +9 0 1612889060 \N enablewebservices 1 \N 10 0 1612889060 \N enablestats 0 \N 11 0 1612889060 \N enablerssfeeds 0 \N 12 0 1612889060 \N enableblogs 1 \N @@ -27719,7 +27733,7 @@ COPY public.mdl_config_log (id, userid, timemodified, plugin, name, value, oldva 1610 2 1612889145 \N messageinbound_hostssl ssl \N 1611 2 1612889145 \N messageinbound_hostuser \N 1612 2 1612889145 \N messageinbound_hostpass \N -1613 2 1612889145 \N enablemobilewebservice 0 \N +1613 2 1612889145 \N enablemobilewebservice 1 \N 1614 2 1612889145 tool_mobile apppolicy \N 1615 2 1612889145 tool_mobile typeoflogin 1 \N 1616 2 1612889145 tool_mobile qrcodetype 1 \N @@ -27740,6 +27754,8 @@ COPY public.mdl_config_log (id, userid, timemodified, plugin, name, value, oldva 1631 2 1612889145 tool_moodlenet defaultmoodlenet https://moodle.net \N 1632 2 1612889167 \N timezone Europe/London \N 1633 2 1612889167 \N registerauth \N +1634 2 1613080312 \N enablemobilewebservice 1 0 +1635 2 1613084183 tool_mobile qrcodetype 2 1 \. @@ -27747,7 +27763,7 @@ COPY public.mdl_config_log (id, userid, timemodified, plugin, name, value, oldva -- Name: mdl_config_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_config_log_id_seq', 1633, true); +SELECT pg_catalog.setval('public.mdl_config_log_id_seq', 1635, true); -- @@ -28057,6 +28073,7 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 316 enrol_flatfile map_8 frontpage 317 enrol_guest version 2020110900 318 enrol_imsenterprise version 2020110900 +796 tool_lp version 2020110900 652 report_security version 2020110900 320 enrol_ldap version 2020110900 653 report_stats version 2020110900 @@ -28140,6 +28157,7 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 672 mlbackend_php version 2020110900 673 mlbackend_python version 2020110900 674 mnetservice_enrol version 2020110900 +1011 assign cutoffdate 1209600 343 message message_provider_mod_quiz_attempt_overdue_loggedin email,airnotifier 344 message message_provider_mod_quiz_attempt_overdue_loggedoff email,airnotifier 398 message email_provider_mod_feedback_submission_permitted permitted @@ -28397,6 +28415,7 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 648 report_performance version 2020110900 649 report_progress version 2020110900 651 report_questioninstances version 2020110900 +1012 assign cutoffdate_enabled 690 repository_filesystem version 2020110900 691 repository_flickr version 2020110900 692 repository_flickr_public version 2020110900 @@ -28492,7 +28511,6 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 792 tool_licensemanager version 2020110900 793 tool_log version 2020110900 795 tool_log enabled_stores logstore_standard -796 tool_lp version 2020110900 797 tool_lpimportcsv version 2020110900 798 tool_lpmigrate version 2020110900 799 tool_messageinbound version 2020110900 @@ -28688,8 +28706,6 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 1008 assign duedate 604800 1009 assign duedate_enabled 1 1010 assign duedate_adv -1011 assign cutoffdate 1209600 -1012 assign cutoffdate_enabled 1013 assign cutoffdate_adv 1014 assign gradingduedate 1209600 1015 assign gradingduedate_enabled 1 @@ -29577,7 +29593,6 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 1899 tinymce_spellchecker spelllanguagelist +English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv 1900 tool_mobile apppolicy 1901 tool_mobile typeoflogin 1 -1902 tool_mobile qrcodetype 1 1903 tool_mobile forcedurlscheme moodlemobile 1904 tool_mobile minimumversion 1905 tool_mobile enablesmartappbanners 0 @@ -29592,7 +29607,9 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 1914 tool_moodlenet enablemoodlenet 0 1915 tool_moodlenet defaultmoodlenetname MoodleNet Central 1916 tool_moodlenet defaultmoodlenet https://moodle.net -1917 tool_task lastcronstart 1612889162 +1917 tool_task lastcronstart 1613084161 +1918 tool_task lastcroninterval 60 +1902 tool_mobile qrcodetype 2 \. @@ -29600,7 +29617,7 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; -- Name: mdl_config_plugins_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_config_plugins_id_seq', 1917, true); +SELECT pg_catalog.setval('public.mdl_config_plugins_id_seq', 1919, true); -- @@ -29648,6 +29665,15 @@ COPY public.mdl_context (id, contextlevel, instanceid, path, depth, locked) FROM 23 80 18 /1/5/23 3 0 24 80 19 /1/5/24 3 0 25 30 3 /1/25 2 0 +26 80 20 /1/25/26 3 0 +27 80 21 /1/25/27 3 0 +28 80 22 /1/25/28 3 0 +29 80 23 /1/25/29 3 0 +30 80 24 /1/25/30 3 0 +31 80 25 /1/25/31 3 0 +32 80 26 /1/25/32 3 0 +33 80 27 /1/25/33 3 0 +34 80 28 /1/25/34 3 0 \. @@ -29655,7 +29681,7 @@ COPY public.mdl_context (id, contextlevel, instanceid, path, depth, locked) FROM -- Name: mdl_context_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_context_id_seq', 25, true); +SELECT pg_catalog.setval('public.mdl_context_id_seq', 34, true); -- @@ -30881,7 +30907,7 @@ SELECT pg_catalog.setval('public.mdl_external_functions_id_seq', 607, true); -- COPY public.mdl_external_services (id, name, enabled, requiredcapability, restrictedusers, component, timecreated, timemodified, shortname, downloadfiles, uploadfiles) FROM stdin; -1 Moodle mobile web service 0 \N 0 moodle 1612889059 1612889145 moodle_mobile_app 1 1 +1 Moodle mobile web service 1 \N 0 moodle 1612889059 1613084183 moodle_mobile_app 1 1 \. @@ -31298,6 +31324,7 @@ SELECT pg_catalog.setval('public.mdl_external_services_users_id_seq', 1, false); -- COPY public.mdl_external_tokens (id, token, privatetoken, tokentype, userid, externalserviceid, sid, contextid, creatorid, iprestriction, validuntil, timecreated, lastaccess) FROM stdin; +1 c92fb3ce7e93f44a449e63e2e38254c7 1YkzEgmLpARsfObFcIrN2owh37B0Fhs74QPIREHmagGAqzPRDTPzj4KFb1JS7PEk 0 3 1 \N 1 3 \N 1620338913 1613081313 1613081313 \. @@ -31305,7 +31332,7 @@ COPY public.mdl_external_tokens (id, token, privatetoken, tokentype, userid, ext -- Name: mdl_external_tokens_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_external_tokens_id_seq', 1, false); +SELECT pg_catalog.setval('public.mdl_external_tokens_id_seq', 1, true); -- @@ -32745,1026 +32772,25 @@ SELECT pg_catalog.setval('public.mdl_log_queries_id_seq', 1, false); COPY public.mdl_logstore_standard_log (id, eventname, component, action, target, objecttable, objectid, crud, edulevel, contextid, contextlevel, contextinstanceid, userid, courseid, relateduserid, anonymous, other, timecreated, origin, ip, realuserid) FROM stdin; 1 \\core\\event\\user_loggedin core loggedin user user 2 r 0 1 10 0 2 0 \N 0 a:1:{s:8:"username";s:5:"admin";} 1612889108 web 67.182.30.218 \N -2 \\core\\event\\user_password_updated core updated user_password \N \N u 0 5 30 2 2 0 2 0 a:1:{s:14:"forgottenreset";b:0;} 1612889142 web 67.182.30.218 \N -3 \\core\\event\\user_updated core updated user user 2 u 0 5 30 2 2 0 2 0 N; 1612889142 web 67.182.30.218 \N -4 \\core\\event\\config_log_created core created config_log config_log 618 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"notloggedinroleid";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -5 \\core\\event\\config_log_created core created config_log config_log 619 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"guestroleid";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -6 \\core\\event\\config_log_created core created config_log config_log 620 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"defaultuserroleid";s:8:"oldvalue";N;s:5:"value";s:1:"7";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -7 \\core\\event\\config_log_created core created config_log config_log 621 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"creatornewroleid";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -8 \\core\\event\\config_log_created core created config_log config_log 622 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"restorernewroleid";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -9 \\core\\event\\config_log_created core created config_log config_log 623 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"contactdataprotectionofficer";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"tool_dataprivacy";} 1612889142 web 67.182.30.218 \N -10 \\core\\event\\config_log_created core created config_log config_log 624 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"automaticdataexportapproval";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"tool_dataprivacy";} 1612889142 web 67.182.30.218 \N -11 \\core\\event\\config_log_created core created config_log config_log 625 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"automaticdatadeletionapproval";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"tool_dataprivacy";} 1612889142 web 67.182.30.218 \N -12 \\core\\event\\config_log_created core created config_log config_log 626 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"automaticdeletionrequests";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"tool_dataprivacy";} 1612889142 web 67.182.30.218 \N -13 \\core\\event\\config_log_created core created config_log config_log 627 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"privacyrequestexpiry";s:8:"oldvalue";N;s:5:"value";s:6:"604800";s:6:"plugin";s:16:"tool_dataprivacy";} 1612889142 web 67.182.30.218 \N -14 \\core\\event\\config_log_created core created config_log config_log 628 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:33:"requireallenddatesforuserdeletion";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"tool_dataprivacy";} 1612889142 web 67.182.30.218 \N -15 \\core\\event\\config_log_created core created config_log config_log 629 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"showdataretentionsummary";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"tool_dataprivacy";} 1612889142 web 67.182.30.218 \N -16 \\core\\event\\config_log_created core created config_log config_log 630 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"exportlog";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:8:"tool_log";} 1612889142 web 67.182.30.218 \N -17 \\core\\event\\config_log_created core created config_log config_log 631 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"sitepolicyhandler";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -18 \\core\\event\\config_log_created core created config_log config_log 632 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"gradebookroles";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -19 \\core\\event\\config_log_created core created config_log config_log 633 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"logstore";s:8:"oldvalue";N;s:5:"value";s:17:"logstore_standard";s:6:"plugin";s:9:"analytics";} 1612889142 web 67.182.30.218 \N -20 \\core\\event\\config_log_created core created config_log config_log 634 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"h5plibraryhandler";s:8:"oldvalue";N;s:5:"value";s:11:"h5plib_v124";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -21 \\core\\event\\config_log_created core created config_log config_log 635 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"jabberhost";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -22 \\core\\event\\config_log_created core created config_log config_log 636 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"jabberserver";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -23 \\core\\event\\config_log_created core created config_log config_log 637 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"jabberusername";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -24 \\core\\event\\config_log_created core created config_log config_log 638 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"jabberpassword";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -25 \\core\\event\\config_log_created core created config_log config_log 639 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"jabberport";s:8:"oldvalue";N;s:5:"value";s:4:"5222";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -26 \\core\\event\\config_log_created core created config_log config_log 640 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"airnotifierurl";s:8:"oldvalue";N;s:5:"value";s:27:"https://messages.moodle.net";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -27 \\core\\event\\config_log_created core created config_log config_log 641 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"airnotifierport";s:8:"oldvalue";N;s:5:"value";s:3:"443";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -28 \\core\\event\\config_log_created core created config_log config_log 642 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"airnotifiermobileappname";s:8:"oldvalue";N;s:5:"value";s:23:"com.moodle.moodlemobile";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -29 \\core\\event\\config_log_created core created config_log config_log 643 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"airnotifierappname";s:8:"oldvalue";N;s:5:"value";s:21:"commoodlemoodlemobile";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -30 \\core\\event\\config_log_created core created config_log config_log 644 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"airnotifieraccesskey";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -31 \\core\\event\\config_log_created core created config_log config_log 645 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"feedback_plugin_for_gradebook";s:8:"oldvalue";N;s:5:"value";s:23:"assignfeedback_comments";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -32 \\core\\event\\config_log_created core created config_log config_log 646 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"showrecentsubmissions";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -33 \\core\\event\\config_log_created core created config_log config_log 647 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"submissionreceipts";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -34 \\core\\event\\config_log_created core created config_log config_log 648 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"submissionstatement";s:8:"oldvalue";N;s:5:"value";s:102:"This submission is my own work, except where I have acknowledged the use of the works of other people.";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -35 \\core\\event\\config_log_created core created config_log config_log 649 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:33:"submissionstatementteamsubmission";s:8:"oldvalue";N;s:5:"value";s:112:"This submission is the work of my group, except where we have acknowledged the use of the works of other people.";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -36 \\core\\event\\config_log_created core created config_log config_log 650 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:42:"submissionstatementteamsubmissionallsubmit";s:8:"oldvalue";N;s:5:"value";s:120:"This submission is my own work as a group member, except where I have acknowledged the use of the works of other people.";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -37 \\core\\event\\config_log_created core created config_log config_log 651 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"maxperpage";s:8:"oldvalue";N;s:5:"value";s:2:"-1";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -38 \\core\\event\\config_log_created core created config_log config_log 652 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"alwaysshowdescription";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -39 \\core\\event\\config_log_created core created config_log config_log 653 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"alwaysshowdescription_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -40 \\core\\event\\config_log_created core created config_log config_log 654 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"alwaysshowdescription_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -41 \\core\\event\\config_log_created core created config_log config_log 655 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"allowsubmissionsfromdate";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -42 \\core\\event\\config_log_created core created config_log config_log 656 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:32:"allowsubmissionsfromdate_enabled";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -43 \\core\\event\\config_log_created core created config_log config_log 657 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"allowsubmissionsfromdate_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -44 \\core\\event\\config_log_created core created config_log config_log 658 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"duedate";s:8:"oldvalue";N;s:5:"value";s:6:"604800";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -45 \\core\\event\\config_log_created core created config_log config_log 659 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"duedate_enabled";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -46 \\core\\event\\config_log_created core created config_log config_log 660 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"duedate_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -47 \\core\\event\\config_log_created core created config_log config_log 661 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"cutoffdate";s:8:"oldvalue";N;s:5:"value";s:7:"1209600";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -48 \\core\\event\\config_log_created core created config_log config_log 662 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"cutoffdate_enabled";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -49 \\core\\event\\config_log_created core created config_log config_log 663 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"cutoffdate_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -50 \\core\\event\\config_log_created core created config_log config_log 664 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"gradingduedate";s:8:"oldvalue";N;s:5:"value";s:7:"1209600";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -51 \\core\\event\\config_log_created core created config_log config_log 665 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"gradingduedate_enabled";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -52 \\core\\event\\config_log_created core created config_log config_log 666 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"gradingduedate_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -53 \\core\\event\\config_log_created core created config_log config_log 667 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"submissiondrafts";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -54 \\core\\event\\config_log_created core created config_log config_log 668 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"submissiondrafts_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -55 \\core\\event\\config_log_created core created config_log config_log 669 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"submissiondrafts_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -56 \\core\\event\\config_log_created core created config_log config_log 670 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"requiresubmissionstatement";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -57 \\core\\event\\config_log_created core created config_log config_log 671 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"requiresubmissionstatement_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -58 \\core\\event\\config_log_created core created config_log config_log 672 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:33:"requiresubmissionstatement_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -59 \\core\\event\\config_log_created core created config_log config_log 673 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"attemptreopenmethod";s:8:"oldvalue";N;s:5:"value";s:4:"none";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -60 \\core\\event\\config_log_created core created config_log config_log 674 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"attemptreopenmethod_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -61 \\core\\event\\config_log_created core created config_log config_log 675 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"attemptreopenmethod_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -62 \\core\\event\\config_log_created core created config_log config_log 676 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"maxattempts";s:8:"oldvalue";N;s:5:"value";s:2:"-1";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -63 \\core\\event\\config_log_created core created config_log config_log 677 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"maxattempts_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -64 \\core\\event\\config_log_created core created config_log config_log 678 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"maxattempts_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -65 \\core\\event\\config_log_created core created config_log config_log 679 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"teamsubmission";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -66 \\core\\event\\config_log_created core created config_log config_log 680 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"teamsubmission_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -67 \\core\\event\\config_log_created core created config_log config_log 681 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"teamsubmission_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -68 \\core\\event\\config_log_created core created config_log config_log 682 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"preventsubmissionnotingroup";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -69 \\core\\event\\config_log_created core created config_log config_log 683 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"preventsubmissionnotingroup_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -70 \\core\\event\\config_log_created core created config_log config_log 684 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"preventsubmissionnotingroup_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -71 \\core\\event\\config_log_created core created config_log config_log 685 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"requireallteammemberssubmit";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -72 \\core\\event\\config_log_created core created config_log config_log 686 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"requireallteammemberssubmit_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -73 \\core\\event\\config_log_created core created config_log config_log 687 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"requireallteammemberssubmit_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -74 \\core\\event\\config_log_created core created config_log config_log 688 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"teamsubmissiongroupingid";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -75 \\core\\event\\config_log_created core created config_log config_log 689 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"teamsubmissiongroupingid_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -76 \\core\\event\\config_log_created core created config_log config_log 690 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"sendnotifications";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -77 \\core\\event\\config_log_created core created config_log config_log 691 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"sendnotifications_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -78 \\core\\event\\config_log_created core created config_log config_log 692 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"sendnotifications_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -79 \\core\\event\\config_log_created core created config_log config_log 693 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"sendlatenotifications";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -80 \\core\\event\\config_log_created core created config_log config_log 694 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"sendlatenotifications_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -81 \\core\\event\\config_log_created core created config_log config_log 695 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"sendlatenotifications_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -82 \\core\\event\\config_log_created core created config_log config_log 696 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"sendstudentnotifications";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -83 \\core\\event\\config_log_created core created config_log config_log 697 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"sendstudentnotifications_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -84 \\core\\event\\config_log_created core created config_log config_log 698 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"sendstudentnotifications_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -85 \\core\\event\\config_log_created core created config_log config_log 699 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"blindmarking";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -86 \\core\\event\\config_log_created core created config_log config_log 700 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"blindmarking_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -87 \\core\\event\\config_log_created core created config_log config_log 701 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"blindmarking_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -88 \\core\\event\\config_log_created core created config_log config_log 702 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"hidegrader";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -89 \\core\\event\\config_log_created core created config_log config_log 703 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"hidegrader_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -90 \\core\\event\\config_log_created core created config_log config_log 704 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"hidegrader_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -91 \\core\\event\\config_log_created core created config_log config_log 705 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"markingworkflow";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -92 \\core\\event\\config_log_created core created config_log config_log 706 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"markingworkflow_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -93 \\core\\event\\config_log_created core created config_log config_log 707 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"markingworkflow_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -94 \\core\\event\\config_log_created core created config_log config_log 708 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"markingallocation";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -95 \\core\\event\\config_log_created core created config_log config_log 709 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"markingallocation_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -96 \\core\\event\\config_log_created core created config_log config_log 710 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"markingallocation_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:6:"assign";} 1612889142 web 67.182.30.218 \N -97 \\core\\event\\config_log_created core created config_log config_log 711 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:21:"assignsubmission_file";} 1612889142 web 67.182.30.218 \N -98 \\core\\event\\config_log_created core created config_log config_log 712 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"maxfiles";s:8:"oldvalue";N;s:5:"value";s:2:"20";s:6:"plugin";s:21:"assignsubmission_file";} 1612889142 web 67.182.30.218 \N -99 \\core\\event\\config_log_created core created config_log config_log 713 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"filetypes";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:21:"assignsubmission_file";} 1612889142 web 67.182.30.218 \N -100 \\core\\event\\config_log_created core created config_log config_log 714 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"maxbytes";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:21:"assignsubmission_file";} 1612889142 web 67.182.30.218 \N -101 \\core\\event\\config_log_created core created config_log config_log 715 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:27:"assignsubmission_onlinetext";} 1612889142 web 67.182.30.218 \N -102 \\core\\event\\config_log_created core created config_log config_log 716 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:23:"assignfeedback_comments";} 1612889142 web 67.182.30.218 \N -103 \\core\\event\\config_log_created core created config_log config_log 717 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"inline";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:23:"assignfeedback_comments";} 1612889142 web 67.182.30.218 \N -104 \\core\\event\\config_log_created core created config_log config_log 718 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"inline_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:23:"assignfeedback_comments";} 1612889142 web 67.182.30.218 \N -105 \\core\\event\\config_log_created core created config_log config_log 719 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"inline_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:23:"assignfeedback_comments";} 1612889142 web 67.182.30.218 \N -106 \\core\\event\\config_log_created core created config_log config_log 720 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:22:"assignfeedback_editpdf";} 1612889142 web 67.182.30.218 \N -107 \\core\\event\\config_log_created core created config_log config_log 721 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"stamps";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"assignfeedback_editpdf";} 1612889142 web 67.182.30.218 \N -108 \\core\\event\\config_log_created core created config_log config_log 722 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"assignfeedback_file";} 1612889142 web 67.182.30.218 \N -109 \\core\\event\\config_log_created core created config_log config_log 723 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"default";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:22:"assignfeedback_offline";} 1612889142 web 67.182.30.218 \N -110 \\core\\event\\config_log_created core created config_log config_log 724 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"numberingoptions";s:8:"oldvalue";N;s:5:"value";s:7:"0,1,2,3";s:6:"plugin";s:4:"book";} 1612889142 web 67.182.30.218 \N -111 \\core\\event\\config_log_created core created config_log config_log 725 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"navoptions";s:8:"oldvalue";N;s:5:"value";s:5:"0,1,2";s:6:"plugin";s:4:"book";} 1612889142 web 67.182.30.218 \N -112 \\core\\event\\config_log_created core created config_log config_log 726 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"numbering";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"book";} 1612889142 web 67.182.30.218 \N -113 \\core\\event\\config_log_created core created config_log config_log 727 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"navstyle";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"book";} 1612889142 web 67.182.30.218 \N -114 \\core\\event\\config_log_created core created config_log config_log 728 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"chat_method";s:8:"oldvalue";N;s:5:"value";s:4:"ajax";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -115 \\core\\event\\config_log_created core created config_log config_log 729 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"chat_refresh_userlist";s:8:"oldvalue";N;s:5:"value";s:2:"10";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -116 \\core\\event\\config_log_created core created config_log config_log 730 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"chat_old_ping";s:8:"oldvalue";N;s:5:"value";s:2:"35";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -117 \\core\\event\\config_log_created core created config_log config_log 731 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"chat_refresh_room";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -118 \\core\\event\\config_log_created core created config_log config_log 732 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"chat_normal_updatemode";s:8:"oldvalue";N;s:5:"value";s:8:"jsupdate";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -119 \\core\\event\\config_log_created core created config_log config_log 733 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"chat_serverhost";s:8:"oldvalue";N;s:5:"value";s:19:"dev.derekmaxson.com";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -120 \\core\\event\\config_log_created core created config_log config_log 734 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"chat_serverip";s:8:"oldvalue";N;s:5:"value";s:9:"127.0.0.1";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -121 \\core\\event\\config_log_created core created config_log config_log 735 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"chat_serverport";s:8:"oldvalue";N;s:5:"value";s:4:"9111";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -122 \\core\\event\\config_log_created core created config_log config_log 736 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"chat_servermax";s:8:"oldvalue";N;s:5:"value";s:3:"100";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -123 \\core\\event\\config_log_created core created config_log config_log 737 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"data_enablerssfeeds";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -124 \\core\\event\\config_log_created core created config_log config_log 738 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"feedback_allowfullanonymous";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -125 \\core\\event\\config_log_created core created config_log config_log 739 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"framesize";s:8:"oldvalue";N;s:5:"value";s:3:"130";s:6:"plugin";s:8:"resource";} 1612889142 web 67.182.30.218 \N -126 \\core\\event\\config_log_created core created config_log config_log 740 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"displayoptions";s:8:"oldvalue";N;s:5:"value";s:9:"0,1,4,5,6";s:6:"plugin";s:8:"resource";} 1612889142 web 67.182.30.218 \N -127 \\core\\event\\config_log_created core created config_log config_log 741 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"printintro";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:8:"resource";} 1612889142 web 67.182.30.218 \N -128 \\core\\event\\config_log_created core created config_log config_log 742 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"display";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"resource";} 1612889142 web 67.182.30.218 \N -129 \\core\\event\\config_log_created core created config_log config_log 743 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"showsize";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"resource";} 1612889142 web 67.182.30.218 \N -130 \\core\\event\\config_log_created core created config_log config_log 744 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"showtype";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"resource";} 1612889142 web 67.182.30.218 \N -131 \\core\\event\\config_log_created core created config_log config_log 745 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"showdate";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"resource";} 1612889142 web 67.182.30.218 \N -132 \\core\\event\\config_log_created core created config_log config_log 746 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"popupwidth";s:8:"oldvalue";N;s:5:"value";s:3:"620";s:6:"plugin";s:8:"resource";} 1612889142 web 67.182.30.218 \N -133 \\core\\event\\config_log_created core created config_log config_log 747 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"popupheight";s:8:"oldvalue";N;s:5:"value";s:3:"450";s:6:"plugin";s:8:"resource";} 1612889142 web 67.182.30.218 \N -134 \\core\\event\\config_log_created core created config_log config_log 748 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"filterfiles";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"resource";} 1612889142 web 67.182.30.218 \N -135 \\core\\event\\config_log_created core created config_log config_log 749 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"showexpanded";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:6:"folder";} 1612889142 web 67.182.30.218 \N -136 \\core\\event\\config_log_created core created config_log config_log 750 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"maxsizetodownload";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:6:"folder";} 1612889142 web 67.182.30.218 \N -137 \\core\\event\\config_log_created core created config_log config_log 751 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"forum_displaymode";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -138 \\core\\event\\config_log_created core created config_log config_log 752 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"forum_shortpost";s:8:"oldvalue";N;s:5:"value";s:3:"300";s:6:"plugin";N;} 1612889142 web 67.182.30.218 \N -139 \\core\\event\\config_log_created core created config_log config_log 753 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"forum_longpost";s:8:"oldvalue";N;s:5:"value";s:3:"600";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N -140 \\core\\event\\config_log_created core created config_log config_log 754 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"forum_manydiscussions";s:8:"oldvalue";N;s:5:"value";s:3:"100";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N -141 \\core\\event\\config_log_created core created config_log config_log 755 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"forum_maxbytes";s:8:"oldvalue";N;s:5:"value";s:6:"512000";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N -142 \\core\\event\\config_log_created core created config_log config_log 756 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"forum_maxattachments";s:8:"oldvalue";N;s:5:"value";s:1:"9";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N -143 \\core\\event\\config_log_created core created config_log config_log 757 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"forum_subscription";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N -144 \\core\\event\\config_log_created core created config_log config_log 758 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"forum_trackingtype";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N -145 \\core\\event\\config_log_created core created config_log config_log 759 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"forum_trackreadposts";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N -146 \\core\\event\\config_log_created core created config_log config_log 760 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"forum_allowforcedreadtracking";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N -147 \\core\\event\\config_log_created core created config_log config_log 761 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"forum_oldpostdays";s:8:"oldvalue";N;s:5:"value";s:2:"14";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N -148 \\core\\event\\config_log_created core created config_log config_log 762 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"forum_usermarksread";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N -149 \\core\\event\\config_log_created core created config_log config_log 763 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"forum_cleanreadtime";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N -150 \\core\\event\\config_log_created core created config_log config_log 764 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"digestmailtime";s:8:"oldvalue";N;s:5:"value";s:2:"17";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N -151 \\core\\event\\config_log_created core created config_log config_log 765 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"forum_enablerssfeeds";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N -152 \\core\\event\\config_log_created core created config_log config_log 766 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"forum_enabletimedposts";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N -153 \\core\\event\\config_log_created core created config_log config_log 767 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"glossary_entbypage";s:8:"oldvalue";N;s:5:"value";s:2:"10";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N -154 \\core\\event\\config_log_created core created config_log config_log 768 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"glossary_dupentries";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N -155 \\core\\event\\config_log_created core created config_log config_log 769 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"glossary_allowcomments";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N -156 \\core\\event\\config_log_created core created config_log config_log 770 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"glossary_linkbydefault";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N -157 \\core\\event\\config_log_created core created config_log config_log 771 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"glossary_defaultapproval";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N -158 \\core\\event\\config_log_created core created config_log config_log 772 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"glossary_enablerssfeeds";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N -159 \\core\\event\\config_log_created core created config_log config_log 773 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"glossary_linkentries";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N -160 \\core\\event\\config_log_created core created config_log config_log 774 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"glossary_casesensitive";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N -161 \\core\\event\\config_log_created core created config_log config_log 775 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"glossary_fullmatch";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889143 web 67.182.30.218 \N -162 \\core\\event\\config_log_created core created config_log config_log 776 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"keepold";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"imscp";} 1612889143 web 67.182.30.218 \N -163 \\core\\event\\config_log_created core created config_log config_log 777 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"keepold_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:5:"imscp";} 1612889143 web 67.182.30.218 \N -164 \\core\\event\\config_log_created core created config_log config_log 778 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"dndmedia";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"label";} 1612889143 web 67.182.30.218 \N -165 \\core\\event\\config_log_created core created config_log config_log 779 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"dndresizewidth";s:8:"oldvalue";N;s:5:"value";s:3:"400";s:6:"plugin";s:5:"label";} 1612889143 web 67.182.30.218 \N -166 \\core\\event\\config_log_created core created config_log config_log 780 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"dndresizeheight";s:8:"oldvalue";N;s:5:"value";s:3:"400";s:6:"plugin";s:5:"label";} 1612889143 web 67.182.30.218 \N -167 \\core\\event\\config_log_created core created config_log config_log 781 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"mediafile";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -168 \\core\\event\\config_log_created core created config_log config_log 782 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"mediafile_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -169 \\core\\event\\config_log_created core created config_log config_log 783 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"mediawidth";s:8:"oldvalue";N;s:5:"value";s:3:"640";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -170 \\core\\event\\config_log_created core created config_log config_log 784 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"mediaheight";s:8:"oldvalue";N;s:5:"value";s:3:"480";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -171 \\core\\event\\config_log_created core created config_log config_log 785 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"mediaclose";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -172 \\core\\event\\config_log_created core created config_log config_log 786 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"progressbar";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -173 \\core\\event\\config_log_created core created config_log config_log 787 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"progressbar_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -174 \\core\\event\\config_log_created core created config_log config_log 788 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"ongoing";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -175 \\core\\event\\config_log_created core created config_log config_log 789 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"ongoing_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -176 \\core\\event\\config_log_created core created config_log config_log 790 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"displayleftmenu";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -177 \\core\\event\\config_log_created core created config_log config_log 791 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"displayleftmenu_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -178 \\core\\event\\config_log_created core created config_log config_log 792 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"displayleftif";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -179 \\core\\event\\config_log_created core created config_log config_log 793 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"displayleftif_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -180 \\core\\event\\config_log_created core created config_log config_log 794 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"slideshow";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -181 \\core\\event\\config_log_created core created config_log config_log 795 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"slideshow_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -182 \\core\\event\\config_log_created core created config_log config_log 796 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"slideshowwidth";s:8:"oldvalue";N;s:5:"value";s:3:"640";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -183 \\core\\event\\config_log_created core created config_log config_log 797 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"slideshowheight";s:8:"oldvalue";N;s:5:"value";s:3:"480";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -184 \\core\\event\\config_log_created core created config_log config_log 798 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"slideshowbgcolor";s:8:"oldvalue";N;s:5:"value";s:7:"#FFFFFF";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -185 \\core\\event\\config_log_created core created config_log config_log 799 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"maxanswers";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -186 \\core\\event\\config_log_created core created config_log config_log 800 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"maxanswers_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -187 \\core\\event\\config_log_created core created config_log config_log 801 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"defaultfeedback";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -188 \\core\\event\\config_log_created core created config_log config_log 802 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"defaultfeedback_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -189 \\core\\event\\config_log_created core created config_log config_log 803 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"activitylink";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -190 \\core\\event\\config_log_created core created config_log config_log 804 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"activitylink_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -191 \\core\\event\\config_log_created core created config_log config_log 805 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"timelimit";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -192 \\core\\event\\config_log_created core created config_log config_log 806 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"timelimit_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -193 \\core\\event\\config_log_created core created config_log config_log 807 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"password";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -194 \\core\\event\\config_log_created core created config_log config_log 808 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"password_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -195 \\core\\event\\config_log_created core created config_log config_log 809 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"modattempts";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -196 \\core\\event\\config_log_created core created config_log config_log 810 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"modattempts_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -197 \\core\\event\\config_log_created core created config_log config_log 811 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"displayreview";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -198 \\core\\event\\config_log_created core created config_log config_log 812 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"displayreview_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -199 \\core\\event\\config_log_created core created config_log config_log 813 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"maximumnumberofattempts";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -200 \\core\\event\\config_log_created core created config_log config_log 814 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"maximumnumberofattempts_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -201 \\core\\event\\config_log_created core created config_log config_log 815 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"defaultnextpage";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -202 \\core\\event\\config_log_created core created config_log config_log 816 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"defaultnextpage_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -203 \\core\\event\\config_log_created core created config_log config_log 817 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"numberofpagestoshow";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -204 \\core\\event\\config_log_created core created config_log config_log 818 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"numberofpagestoshow_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -205 \\core\\event\\config_log_created core created config_log config_log 819 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"practice";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -206 \\core\\event\\config_log_created core created config_log config_log 820 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"practice_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -207 \\core\\event\\config_log_created core created config_log config_log 821 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"customscoring";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -208 \\core\\event\\config_log_created core created config_log config_log 822 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"customscoring_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -209 \\core\\event\\config_log_created core created config_log config_log 823 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"retakesallowed";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -210 \\core\\event\\config_log_created core created config_log config_log 824 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"retakesallowed_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -211 \\core\\event\\config_log_created core created config_log config_log 825 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"handlingofretakes";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -212 \\core\\event\\config_log_created core created config_log config_log 826 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"handlingofretakes_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -213 \\core\\event\\config_log_created core created config_log config_log 827 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"minimumnumberofquestions";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -214 \\core\\event\\config_log_created core created config_log config_log 828 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"minimumnumberofquestions_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"mod_lesson";} 1612889143 web 67.182.30.218 \N -215 \\core\\event\\config_log_created core created config_log config_log 829 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"displayoptions";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:4:"page";} 1612889143 web 67.182.30.218 \N -216 \\core\\event\\config_log_created core created config_log config_log 830 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"printheading";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"page";} 1612889143 web 67.182.30.218 \N -217 \\core\\event\\config_log_created core created config_log config_log 831 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"printintro";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"page";} 1612889143 web 67.182.30.218 \N -218 \\core\\event\\config_log_created core created config_log config_log 832 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"printlastmodified";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"page";} 1612889143 web 67.182.30.218 \N -219 \\core\\event\\config_log_created core created config_log config_log 833 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"display";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:4:"page";} 1612889143 web 67.182.30.218 \N -220 \\core\\event\\config_log_created core created config_log config_log 834 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"popupwidth";s:8:"oldvalue";N;s:5:"value";s:3:"620";s:6:"plugin";s:4:"page";} 1612889143 web 67.182.30.218 \N -221 \\core\\event\\config_log_created core created config_log config_log 835 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"popupheight";s:8:"oldvalue";N;s:5:"value";s:3:"450";s:6:"plugin";s:4:"page";} 1612889143 web 67.182.30.218 \N -222 \\core\\event\\config_log_created core created config_log config_log 836 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"timelimit";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -223 \\core\\event\\config_log_created core created config_log config_log 837 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"timelimit_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -224 \\core\\event\\config_log_created core created config_log config_log 838 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"overduehandling";s:8:"oldvalue";N;s:5:"value";s:10:"autosubmit";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -225 \\core\\event\\config_log_created core created config_log config_log 839 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"overduehandling_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -226 \\core\\event\\config_log_created core created config_log config_log 840 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"graceperiod";s:8:"oldvalue";N;s:5:"value";s:5:"86400";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -227 \\core\\event\\config_log_created core created config_log config_log 841 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"graceperiod_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -228 \\core\\event\\config_log_created core created config_log config_log 842 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"graceperiodmin";s:8:"oldvalue";N;s:5:"value";s:2:"60";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -229 \\core\\event\\config_log_created core created config_log config_log 843 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"attempts";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -230 \\core\\event\\config_log_created core created config_log config_log 844 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"attempts_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -231 \\core\\event\\config_log_created core created config_log config_log 845 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"grademethod";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -232 \\core\\event\\config_log_created core created config_log config_log 846 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"grademethod_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -233 \\core\\event\\config_log_created core created config_log config_log 847 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"maximumgrade";s:8:"oldvalue";N;s:5:"value";s:2:"10";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -234 \\core\\event\\config_log_created core created config_log config_log 848 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"questionsperpage";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -235 \\core\\event\\config_log_created core created config_log config_log 849 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"questionsperpage_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -236 \\core\\event\\config_log_created core created config_log config_log 850 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"navmethod";s:8:"oldvalue";N;s:5:"value";s:4:"free";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -237 \\core\\event\\config_log_created core created config_log config_log 851 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"navmethod_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -238 \\core\\event\\config_log_created core created config_log config_log 852 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"shuffleanswers";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -239 \\core\\event\\config_log_created core created config_log config_log 853 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"shuffleanswers_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -240 \\core\\event\\config_log_created core created config_log config_log 854 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"preferredbehaviour";s:8:"oldvalue";N;s:5:"value";s:16:"deferredfeedback";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -241 \\core\\event\\config_log_created core created config_log config_log 855 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"canredoquestions";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -242 \\core\\event\\config_log_created core created config_log config_log 856 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"canredoquestions_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -243 \\core\\event\\config_log_created core created config_log config_log 857 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"attemptonlast";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -244 \\core\\event\\config_log_created core created config_log config_log 858 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"attemptonlast_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -245 \\core\\event\\config_log_created core created config_log config_log 859 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"reviewattempt";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -246 \\core\\event\\config_log_created core created config_log config_log 860 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"reviewcorrectness";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -247 \\core\\event\\config_log_created core created config_log config_log 861 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"reviewmarks";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -248 \\core\\event\\config_log_created core created config_log config_log 862 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"reviewspecificfeedback";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -249 \\core\\event\\config_log_created core created config_log config_log 863 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"reviewgeneralfeedback";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -250 \\core\\event\\config_log_created core created config_log config_log 864 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"reviewrightanswer";s:8:"oldvalue";N;s:5:"value";s:5:"69904";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -251 \\core\\event\\config_log_created core created config_log config_log 865 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"reviewoverallfeedback";s:8:"oldvalue";N;s:5:"value";s:4:"4368";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -252 \\core\\event\\config_log_created core created config_log config_log 866 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"showuserpicture";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -253 \\core\\event\\config_log_created core created config_log config_log 867 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"showuserpicture_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -254 \\core\\event\\config_log_created core created config_log config_log 868 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"decimalpoints";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -255 \\core\\event\\config_log_created core created config_log config_log 869 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"decimalpoints_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -256 \\core\\event\\config_log_created core created config_log config_log 870 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"questiondecimalpoints";s:8:"oldvalue";N;s:5:"value";s:2:"-1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -257 \\core\\event\\config_log_created core created config_log config_log 871 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"questiondecimalpoints_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -258 \\core\\event\\config_log_created core created config_log config_log 872 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"showblocks";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -259 \\core\\event\\config_log_created core created config_log config_log 873 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"showblocks_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -260 \\core\\event\\config_log_created core created config_log config_log 874 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"quizpassword";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -261 \\core\\event\\config_log_created core created config_log config_log 875 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"quizpassword_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -262 \\core\\event\\config_log_created core created config_log config_log 876 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"quizpassword_required";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -263 \\core\\event\\config_log_created core created config_log config_log 877 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"subnet";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -264 \\core\\event\\config_log_created core created config_log config_log 878 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"subnet_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -265 \\core\\event\\config_log_created core created config_log config_log 879 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"delay1";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -266 \\core\\event\\config_log_created core created config_log config_log 880 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"delay1_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -267 \\core\\event\\config_log_created core created config_log config_log 881 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"delay2";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -268 \\core\\event\\config_log_created core created config_log config_log 882 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"delay2_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -269 \\core\\event\\config_log_created core created config_log config_log 883 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"browsersecurity";s:8:"oldvalue";N;s:5:"value";s:1:"-";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -270 \\core\\event\\config_log_created core created config_log config_log 884 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"browsersecurity_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -271 \\core\\event\\config_log_created core created config_log config_log 885 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"initialnumfeedbacks";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -272 \\core\\event\\config_log_created core created config_log config_log 886 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"autosaveperiod";s:8:"oldvalue";N;s:5:"value";s:2:"60";s:6:"plugin";s:4:"quiz";} 1612889143 web 67.182.30.218 \N -273 \\core\\event\\config_log_created core created config_log config_log 887 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"autoreconfigureseb";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:14:"quizaccess_seb";} 1612889143 web 67.182.30.218 \N -274 \\core\\event\\config_log_created core created config_log config_log 888 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"showseblinks";s:8:"oldvalue";N;s:5:"value";s:8:"seb,http";s:6:"plugin";s:14:"quizaccess_seb";} 1612889143 web 67.182.30.218 \N -275 \\core\\event\\config_log_created core created config_log config_log 889 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"downloadlink";s:8:"oldvalue";N;s:5:"value";s:44:"https://safeexambrowser.org/download_en.html";s:6:"plugin";s:14:"quizaccess_seb";} 1612889143 web 67.182.30.218 \N -276 \\core\\event\\config_log_created core created config_log config_log 890 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"quizpasswordrequired";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"quizaccess_seb";} 1612889143 web 67.182.30.218 \N -277 \\core\\event\\config_log_created core created config_log config_log 891 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"displayblocksbeforestart";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"quizaccess_seb";} 1612889143 web 67.182.30.218 \N -278 \\core\\event\\config_log_created core created config_log config_log 892 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"displayblockswhenfinished";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:14:"quizaccess_seb";} 1612889143 web 67.182.30.218 \N -279 \\core\\event\\config_log_created core created config_log config_log 893 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"displaycoursestructure";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -280 \\core\\event\\config_log_created core created config_log config_log 894 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"displaycoursestructure_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -281 \\core\\event\\config_log_created core created config_log config_log 895 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:5:"popup";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -282 \\core\\event\\config_log_created core created config_log config_log 896 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"popup_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -283 \\core\\event\\config_log_created core created config_log config_log 897 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"displayactivityname";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -284 \\core\\event\\config_log_created core created config_log config_log 898 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"framewidth";s:8:"oldvalue";N;s:5:"value";s:3:"100";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -285 \\core\\event\\config_log_created core created config_log config_log 899 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"framewidth_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -286 \\core\\event\\config_log_created core created config_log config_log 900 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"frameheight";s:8:"oldvalue";N;s:5:"value";s:3:"500";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -287 \\core\\event\\config_log_created core created config_log config_log 901 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"frameheight_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -288 \\core\\event\\config_log_created core created config_log config_log 902 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"winoptgrp_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -289 \\core\\event\\config_log_created core created config_log config_log 903 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"scrollbars";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -290 \\core\\event\\config_log_created core created config_log config_log 904 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"directories";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -291 \\core\\event\\config_log_created core created config_log config_log 905 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"location";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -292 \\core\\event\\config_log_created core created config_log config_log 906 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"menubar";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -293 \\core\\event\\config_log_created core created config_log config_log 907 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"toolbar";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -294 \\core\\event\\config_log_created core created config_log config_log 908 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"status";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -295 \\core\\event\\config_log_created core created config_log config_log 909 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"skipview";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -296 \\core\\event\\config_log_created core created config_log config_log 910 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"skipview_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -297 \\core\\event\\config_log_created core created config_log config_log 911 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"hidebrowse";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -298 \\core\\event\\config_log_created core created config_log config_log 912 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"hidebrowse_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -299 \\core\\event\\config_log_created core created config_log config_log 913 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"hidetoc";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -300 \\core\\event\\config_log_created core created config_log config_log 914 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"hidetoc_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -301 \\core\\event\\config_log_created core created config_log config_log 915 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:3:"nav";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -302 \\core\\event\\config_log_created core created config_log config_log 916 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"nav_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -303 \\core\\event\\config_log_created core created config_log config_log 917 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"navpositionleft";s:8:"oldvalue";N;s:5:"value";s:4:"-100";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -304 \\core\\event\\config_log_created core created config_log config_log 918 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"navpositionleft_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -305 \\core\\event\\config_log_created core created config_log config_log 919 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"navpositiontop";s:8:"oldvalue";N;s:5:"value";s:4:"-100";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -306 \\core\\event\\config_log_created core created config_log config_log 920 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"navpositiontop_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -307 \\core\\event\\config_log_created core created config_log config_log 921 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"collapsetocwinsize";s:8:"oldvalue";N;s:5:"value";s:3:"767";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -308 \\core\\event\\config_log_created core created config_log config_log 922 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"collapsetocwinsize_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -309 \\core\\event\\config_log_created core created config_log config_log 923 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"displayattemptstatus";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -310 \\core\\event\\config_log_created core created config_log config_log 924 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"displayattemptstatus_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -311 \\core\\event\\config_log_created core created config_log config_log 925 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"grademethod";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -312 \\core\\event\\config_log_created core created config_log config_log 926 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"maxgrade";s:8:"oldvalue";N;s:5:"value";s:3:"100";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -313 \\core\\event\\config_log_created core created config_log config_log 927 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"maxattempt";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -314 \\core\\event\\config_log_created core created config_log config_log 928 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"whatgrade";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -315 \\core\\event\\config_log_created core created config_log config_log 929 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"forcecompleted";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -316 \\core\\event\\config_log_created core created config_log config_log 930 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"forcenewattempt";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -317 \\core\\event\\config_log_created core created config_log config_log 931 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"autocommit";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -318 \\core\\event\\config_log_created core created config_log config_log 932 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"masteryoverride";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -319 \\core\\event\\config_log_created core created config_log config_log 933 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"lastattemptlock";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -320 \\core\\event\\config_log_created core created config_log config_log 934 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"auto";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -321 \\core\\event\\config_log_created core created config_log config_log 935 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"updatefreq";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -322 \\core\\event\\config_log_created core created config_log config_log 936 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"scormstandard";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -323 \\core\\event\\config_log_created core created config_log config_log 937 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"allowtypeexternal";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -324 \\core\\event\\config_log_created core created config_log config_log 938 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"allowtypelocalsync";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -325 \\core\\event\\config_log_created core created config_log config_log 939 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"allowtypeexternalaicc";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -326 \\core\\event\\config_log_created core created config_log config_log 940 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"allowaicchacp";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -327 \\core\\event\\config_log_created core created config_log config_log 941 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"aicchacptimeout";s:8:"oldvalue";N;s:5:"value";s:2:"30";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -328 \\core\\event\\config_log_created core created config_log config_log 942 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"aicchacpkeepsessiondata";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -329 \\core\\event\\config_log_created core created config_log config_log 943 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"aiccuserid";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -330 \\core\\event\\config_log_created core created config_log config_log 944 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"forcejavascript";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -331 \\core\\event\\config_log_created core created config_log config_log 945 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"allowapidebug";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -332 \\core\\event\\config_log_created core created config_log config_log 946 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"apidebugmask";s:8:"oldvalue";N;s:5:"value";s:2:".*";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -333 \\core\\event\\config_log_created core created config_log config_log 947 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"protectpackagedownloads";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:5:"scorm";} 1612889143 web 67.182.30.218 \N -334 \\core\\event\\config_log_created core created config_log config_log 948 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"framesize";s:8:"oldvalue";N;s:5:"value";s:3:"130";s:6:"plugin";s:3:"url";} 1612889143 web 67.182.30.218 \N -335 \\core\\event\\config_log_created core created config_log config_log 949 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"secretphrase";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:3:"url";} 1612889143 web 67.182.30.218 \N -336 \\core\\event\\config_log_created core created config_log config_log 950 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"rolesinparams";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:3:"url";} 1612889143 web 67.182.30.218 \N -337 \\core\\event\\config_log_created core created config_log config_log 951 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"displayoptions";s:8:"oldvalue";N;s:5:"value";s:7:"0,1,5,6";s:6:"plugin";s:3:"url";} 1612889143 web 67.182.30.218 \N -338 \\core\\event\\config_log_created core created config_log config_log 952 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"printintro";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:3:"url";} 1612889143 web 67.182.30.218 \N -339 \\core\\event\\config_log_created core created config_log config_log 953 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"display";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:3:"url";} 1612889143 web 67.182.30.218 \N -340 \\core\\event\\config_log_created core created config_log config_log 954 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"popupwidth";s:8:"oldvalue";N;s:5:"value";s:3:"620";s:6:"plugin";s:3:"url";} 1612889143 web 67.182.30.218 \N -341 \\core\\event\\config_log_created core created config_log config_log 955 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"popupheight";s:8:"oldvalue";N;s:5:"value";s:3:"450";s:6:"plugin";s:3:"url";} 1612889143 web 67.182.30.218 \N -342 \\core\\event\\config_log_created core created config_log config_log 956 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:5:"grade";s:8:"oldvalue";N;s:5:"value";s:2:"80";s:6:"plugin";s:8:"workshop";} 1612889143 web 67.182.30.218 \N -343 \\core\\event\\config_log_created core created config_log config_log 957 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"gradinggrade";s:8:"oldvalue";N;s:5:"value";s:2:"20";s:6:"plugin";s:8:"workshop";} 1612889143 web 67.182.30.218 \N -344 \\core\\event\\config_log_created core created config_log config_log 958 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"gradedecimals";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"workshop";} 1612889143 web 67.182.30.218 \N -345 \\core\\event\\config_log_created core created config_log config_log 959 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"maxbytes";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"workshop";} 1612889143 web 67.182.30.218 \N -346 \\core\\event\\config_log_created core created config_log config_log 960 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"strategy";s:8:"oldvalue";N;s:5:"value";s:12:"accumulative";s:6:"plugin";s:8:"workshop";} 1612889143 web 67.182.30.218 \N -347 \\core\\event\\config_log_created core created config_log config_log 961 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"examplesmode";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"workshop";} 1612889143 web 67.182.30.218 \N -348 \\core\\event\\config_log_created core created config_log config_log 962 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"numofreviews";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:25:"workshopallocation_random";} 1612889143 web 67.182.30.218 \N -349 \\core\\event\\config_log_created core created config_log config_log 963 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"grade0";s:8:"oldvalue";N;s:5:"value";s:2:"No";s:6:"plugin";s:22:"workshopform_numerrors";} 1612889143 web 67.182.30.218 \N -350 \\core\\event\\config_log_created core created config_log config_log 964 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"grade1";s:8:"oldvalue";N;s:5:"value";s:3:"Yes";s:6:"plugin";s:22:"workshopform_numerrors";} 1612889143 web 67.182.30.218 \N -351 \\core\\event\\config_log_created core created config_log config_log 965 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"comparison";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:17:"workshopeval_best";} 1612889143 web 67.182.30.218 \N -352 \\core\\event\\config_log_created core created config_log config_log 966 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"coursebinenable";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:15:"tool_recyclebin";} 1612889143 web 67.182.30.218 \N -353 \\core\\event\\config_log_created core created config_log config_log 967 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"coursebinexpiry";s:8:"oldvalue";N;s:5:"value";s:6:"604800";s:6:"plugin";s:15:"tool_recyclebin";} 1612889143 web 67.182.30.218 \N -354 \\core\\event\\config_log_created core created config_log config_log 968 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"categorybinenable";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:15:"tool_recyclebin";} 1612889143 web 67.182.30.218 \N -355 \\core\\event\\config_log_created core created config_log config_log 969 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"categorybinexpiry";s:8:"oldvalue";N;s:5:"value";s:6:"604800";s:6:"plugin";s:15:"tool_recyclebin";} 1612889143 web 67.182.30.218 \N -356 \\core\\event\\config_log_created core created config_log config_log 970 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"autohide";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:15:"tool_recyclebin";} 1612889143 web 67.182.30.218 \N -357 \\core\\event\\config_log_created core created config_log config_log 971 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"runningmethod";s:8:"oldvalue";N;s:5:"value";s:11:"commandline";s:6:"plugin";s:16:"antivirus_clamav";} 1612889143 web 67.182.30.218 \N -358 \\core\\event\\config_log_created core created config_log config_log 972 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"pathtoclam";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"antivirus_clamav";} 1612889143 web 67.182.30.218 \N -359 \\core\\event\\config_log_created core created config_log config_log 973 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"pathtounixsocket";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"antivirus_clamav";} 1612889143 web 67.182.30.218 \N -360 \\core\\event\\config_log_created core created config_log config_log 974 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"tcpsockethost";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"antivirus_clamav";} 1612889143 web 67.182.30.218 \N -361 \\core\\event\\config_log_created core created config_log config_log 975 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"tcpsocketport";s:8:"oldvalue";N;s:5:"value";s:4:"3310";s:6:"plugin";s:16:"antivirus_clamav";} 1612889143 web 67.182.30.218 \N -362 \\core\\event\\config_log_created core created config_log config_log 976 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"clamfailureonupload";s:8:"oldvalue";N;s:5:"value";s:9:"donothing";s:6:"plugin";s:16:"antivirus_clamav";} 1612889143 web 67.182.30.218 \N -363 \\core\\event\\config_log_created core created config_log config_log 977 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:5:"tries";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"antivirus_clamav";} 1612889143 web 67.182.30.218 \N -364 \\core\\event\\config_log_created core created config_log config_log 978 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_map_firstname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -365 \\core\\event\\config_log_created core created config_log config_log 979 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updatelocal_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -366 \\core\\event\\config_log_created core created config_log config_log 980 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updateremote_firstname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -367 \\core\\event\\config_log_created core created config_log config_log 981 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -368 \\core\\event\\config_log_created core created config_log config_log 982 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_lastname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -369 \\core\\event\\config_log_created core created config_log config_log 983 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -370 \\core\\event\\config_log_created core created config_log config_log 984 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_lastname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -371 \\core\\event\\config_log_created core created config_log config_log 985 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -372 \\core\\event\\config_log_created core created config_log config_log 986 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_map_email";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -373 \\core\\event\\config_log_created core created config_log config_log 987 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updatelocal_email";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -374 \\core\\event\\config_log_created core created config_log config_log 988 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updateremote_email";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -375 \\core\\event\\config_log_created core created config_log config_log 989 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -376 \\core\\event\\config_log_created core created config_log config_log 990 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_city";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -377 \\core\\event\\config_log_created core created config_log config_log 991 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_city";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -378 \\core\\event\\config_log_created core created config_log config_log 992 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_city";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -379 \\core\\event\\config_log_created core created config_log config_log 993 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -380 \\core\\event\\config_log_created core created config_log config_log 994 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_country";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -381 \\core\\event\\config_log_created core created config_log config_log 995 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_country";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -382 \\core\\event\\config_log_created core created config_log config_log 996 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_country";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -383 \\core\\event\\config_log_created core created config_log config_log 997 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -384 \\core\\event\\config_log_created core created config_log config_log 998 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_lang";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -385 \\core\\event\\config_log_created core created config_log config_log 999 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_lang";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -386 \\core\\event\\config_log_created core created config_log config_log 1000 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_lang";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -387 \\core\\event\\config_log_created core created config_log config_log 1001 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -388 \\core\\event\\config_log_created core created config_log config_log 1002 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_description";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -389 \\core\\event\\config_log_created core created config_log config_log 1003 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_description";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -390 \\core\\event\\config_log_created core created config_log config_log 1004 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_description";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -391 \\core\\event\\config_log_created core created config_log config_log 1005 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -392 \\core\\event\\config_log_created core created config_log config_log 1006 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"field_map_url";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -393 \\core\\event\\config_log_created core created config_log config_log 1007 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_updatelocal_url";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -394 \\core\\event\\config_log_created core created config_log config_log 1008 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updateremote_url";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -395 \\core\\event\\config_log_created core created config_log config_log 1009 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -396 \\core\\event\\config_log_created core created config_log config_log 1010 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_idnumber";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -397 \\core\\event\\config_log_created core created config_log config_log 1011 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -398 \\core\\event\\config_log_created core created config_log config_log 1012 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_idnumber";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -399 \\core\\event\\config_log_created core created config_log config_log 1013 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -400 \\core\\event\\config_log_created core created config_log config_log 1014 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_institution";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -401 \\core\\event\\config_log_created core created config_log config_log 1015 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_institution";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -402 \\core\\event\\config_log_created core created config_log config_log 1016 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_institution";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -403 \\core\\event\\config_log_created core created config_log config_log 1017 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -404 \\core\\event\\config_log_created core created config_log config_log 1018 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_department";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -405 \\core\\event\\config_log_created core created config_log config_log 1019 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_department";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -406 \\core\\event\\config_log_created core created config_log config_log 1020 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_department";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -407 \\core\\event\\config_log_created core created config_log config_log 1021 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -408 \\core\\event\\config_log_created core created config_log config_log 1022 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone1";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -409 \\core\\event\\config_log_created core created config_log config_log 1023 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -410 \\core\\event\\config_log_created core created config_log config_log 1024 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone1";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -411 \\core\\event\\config_log_created core created config_log config_log 1025 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -412 \\core\\event\\config_log_created core created config_log config_log 1026 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone2";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -413 \\core\\event\\config_log_created core created config_log config_log 1027 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -414 \\core\\event\\config_log_created core created config_log config_log 1028 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone2";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -415 \\core\\event\\config_log_created core created config_log config_log 1029 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -416 \\core\\event\\config_log_created core created config_log config_log 1030 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_address";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -417 \\core\\event\\config_log_created core created config_log config_log 1031 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_address";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -418 \\core\\event\\config_log_created core created config_log config_log 1032 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_address";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -419 \\core\\event\\config_log_created core created config_log config_log 1033 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -420 \\core\\event\\config_log_created core created config_log config_log 1034 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_map_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -421 \\core\\event\\config_log_created core created config_log config_log 1035 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updatelocal_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -422 \\core\\event\\config_log_created core created config_log config_log 1036 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:36:"field_updateremote_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -423 \\core\\event\\config_log_created core created config_log config_log 1037 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -424 \\core\\event\\config_log_created core created config_log config_log 1038 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_map_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -425 \\core\\event\\config_log_created core created config_log config_log 1039 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"field_updatelocal_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -426 \\core\\event\\config_log_created core created config_log config_log 1040 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updateremote_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -427 \\core\\event\\config_log_created core created config_log config_log 1041 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -428 \\core\\event\\config_log_created core created config_log config_log 1042 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_middlename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -429 \\core\\event\\config_log_created core created config_log config_log 1043 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -430 \\core\\event\\config_log_created core created config_log config_log 1044 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_middlename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -431 \\core\\event\\config_log_created core created config_log config_log 1045 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -432 \\core\\event\\config_log_created core created config_log config_log 1046 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_map_alternatename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -433 \\core\\event\\config_log_created core created config_log config_log 1047 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"field_updatelocal_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -434 \\core\\event\\config_log_created core created config_log config_log 1048 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:32:"field_updateremote_alternatename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -435 \\core\\event\\config_log_created core created config_log config_log 1049 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:8:"auth_cas";} 1612889143 web 67.182.30.218 \N -436 \\core\\event\\config_log_created core created config_log config_log 1050 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"recaptcha";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N -437 \\core\\event\\config_log_created core created config_log config_log 1051 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N -438 \\core\\event\\config_log_created core created config_log config_log 1052 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N -439 \\core\\event\\config_log_created core created config_log config_log 1053 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N -440 \\core\\event\\config_log_created core created config_log config_log 1054 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N -441 \\core\\event\\config_log_created core created config_log config_log 1055 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N -442 \\core\\event\\config_log_created core created config_log config_log 1056 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N -443 \\core\\event\\config_log_created core created config_log config_log 1057 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N -444 \\core\\event\\config_log_created core created config_log config_log 1058 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N -445 \\core\\event\\config_log_created core created config_log config_log 1059 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N -446 \\core\\event\\config_log_created core created config_log config_log 1060 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N -447 \\core\\event\\config_log_created core created config_log config_log 1061 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N -448 \\core\\event\\config_log_created core created config_log config_log 1062 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N -449 \\core\\event\\config_log_created core created config_log config_log 1063 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N -450 \\core\\event\\config_log_created core created config_log config_log 1064 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N -451 \\core\\event\\config_log_created core created config_log config_log 1065 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N -452 \\core\\event\\config_log_created core created config_log config_log 1066 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N -453 \\core\\event\\config_log_created core created config_log config_log 1067 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N -454 \\core\\event\\config_log_created core created config_log config_log 1068 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:10:"auth_email";} 1612889143 web 67.182.30.218 \N -455 \\core\\event\\config_log_created core created config_log config_log 1069 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"host";s:8:"oldvalue";N;s:5:"value";s:9:"127.0.0.1";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -456 \\core\\event\\config_log_created core created config_log config_log 1070 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"type";s:8:"oldvalue";N;s:5:"value";s:6:"mysqli";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -457 \\core\\event\\config_log_created core created config_log config_log 1071 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"sybasequoting";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -458 \\core\\event\\config_log_created core created config_log config_log 1072 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"name";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -459 \\core\\event\\config_log_created core created config_log config_log 1073 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"user";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -460 \\core\\event\\config_log_created core created config_log config_log 1074 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"pass";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -461 \\core\\event\\config_log_created core created config_log config_log 1075 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:5:"table";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -462 \\core\\event\\config_log_created core created config_log config_log 1076 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"fielduser";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -463 \\core\\event\\config_log_created core created config_log config_log 1077 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"fieldpass";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -464 \\core\\event\\config_log_created core created config_log config_log 1078 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"passtype";s:8:"oldvalue";N;s:5:"value";s:9:"plaintext";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -465 \\core\\event\\config_log_created core created config_log config_log 1079 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"extencoding";s:8:"oldvalue";N;s:5:"value";s:5:"utf-8";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -466 \\core\\event\\config_log_created core created config_log config_log 1080 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"setupsql";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -467 \\core\\event\\config_log_created core created config_log config_log 1081 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"debugauthdb";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -468 \\core\\event\\config_log_created core created config_log config_log 1082 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"changepasswordurl";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -469 \\core\\event\\config_log_created core created config_log config_log 1083 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"removeuser";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -470 \\core\\event\\config_log_created core created config_log config_log 1084 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"updateusers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -471 \\core\\event\\config_log_created core created config_log config_log 1085 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_map_firstname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -472 \\core\\event\\config_log_created core created config_log config_log 1086 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updatelocal_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -473 \\core\\event\\config_log_created core created config_log config_log 1087 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updateremote_firstname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -474 \\core\\event\\config_log_created core created config_log config_log 1088 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -475 \\core\\event\\config_log_created core created config_log config_log 1089 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_lastname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -476 \\core\\event\\config_log_created core created config_log config_log 1090 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -477 \\core\\event\\config_log_created core created config_log config_log 1091 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_lastname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -478 \\core\\event\\config_log_created core created config_log config_log 1092 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -479 \\core\\event\\config_log_created core created config_log config_log 1093 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_map_email";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -480 \\core\\event\\config_log_created core created config_log config_log 1094 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updatelocal_email";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -481 \\core\\event\\config_log_created core created config_log config_log 1095 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updateremote_email";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -482 \\core\\event\\config_log_created core created config_log config_log 1096 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -483 \\core\\event\\config_log_created core created config_log config_log 1097 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_city";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -484 \\core\\event\\config_log_created core created config_log config_log 1098 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_city";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -485 \\core\\event\\config_log_created core created config_log config_log 1099 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_city";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -486 \\core\\event\\config_log_created core created config_log config_log 1100 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -487 \\core\\event\\config_log_created core created config_log config_log 1101 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_country";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -488 \\core\\event\\config_log_created core created config_log config_log 1102 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_country";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -489 \\core\\event\\config_log_created core created config_log config_log 1103 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_country";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -490 \\core\\event\\config_log_created core created config_log config_log 1104 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -491 \\core\\event\\config_log_created core created config_log config_log 1105 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_lang";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -492 \\core\\event\\config_log_created core created config_log config_log 1106 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_lang";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -493 \\core\\event\\config_log_created core created config_log config_log 1107 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_lang";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -494 \\core\\event\\config_log_created core created config_log config_log 1108 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -495 \\core\\event\\config_log_created core created config_log config_log 1109 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_description";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -496 \\core\\event\\config_log_created core created config_log config_log 1110 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_description";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -497 \\core\\event\\config_log_created core created config_log config_log 1111 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_description";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -498 \\core\\event\\config_log_created core created config_log config_log 1112 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -499 \\core\\event\\config_log_created core created config_log config_log 1113 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"field_map_url";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -500 \\core\\event\\config_log_created core created config_log config_log 1114 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_updatelocal_url";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -501 \\core\\event\\config_log_created core created config_log config_log 1115 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updateremote_url";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -502 \\core\\event\\config_log_created core created config_log config_log 1116 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -503 \\core\\event\\config_log_created core created config_log config_log 1117 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_idnumber";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -504 \\core\\event\\config_log_created core created config_log config_log 1118 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -505 \\core\\event\\config_log_created core created config_log config_log 1119 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_idnumber";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -506 \\core\\event\\config_log_created core created config_log config_log 1120 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -507 \\core\\event\\config_log_created core created config_log config_log 1121 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_institution";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -508 \\core\\event\\config_log_created core created config_log config_log 1122 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_institution";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -509 \\core\\event\\config_log_created core created config_log config_log 1123 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_institution";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -510 \\core\\event\\config_log_created core created config_log config_log 1124 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -511 \\core\\event\\config_log_created core created config_log config_log 1125 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_department";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -512 \\core\\event\\config_log_created core created config_log config_log 1126 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_department";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -513 \\core\\event\\config_log_created core created config_log config_log 1127 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_department";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889143 web 67.182.30.218 \N -514 \\core\\event\\config_log_created core created config_log config_log 1128 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -515 \\core\\event\\config_log_created core created config_log config_log 1129 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone1";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -516 \\core\\event\\config_log_created core created config_log config_log 1130 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -517 \\core\\event\\config_log_created core created config_log config_log 1131 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone1";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -518 \\core\\event\\config_log_created core created config_log config_log 1132 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -519 \\core\\event\\config_log_created core created config_log config_log 1133 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone2";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -520 \\core\\event\\config_log_created core created config_log config_log 1134 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -521 \\core\\event\\config_log_created core created config_log config_log 1135 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone2";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -522 \\core\\event\\config_log_created core created config_log config_log 1136 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -523 \\core\\event\\config_log_created core created config_log config_log 1137 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_address";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -524 \\core\\event\\config_log_created core created config_log config_log 1138 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_address";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -525 \\core\\event\\config_log_created core created config_log config_log 1139 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_address";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -526 \\core\\event\\config_log_created core created config_log config_log 1140 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -527 \\core\\event\\config_log_created core created config_log config_log 1141 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_map_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -528 \\core\\event\\config_log_created core created config_log config_log 1142 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updatelocal_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -529 \\core\\event\\config_log_created core created config_log config_log 1143 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:36:"field_updateremote_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -530 \\core\\event\\config_log_created core created config_log config_log 1144 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -531 \\core\\event\\config_log_created core created config_log config_log 1145 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_map_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -532 \\core\\event\\config_log_created core created config_log config_log 1146 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"field_updatelocal_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -533 \\core\\event\\config_log_created core created config_log config_log 1147 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updateremote_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -534 \\core\\event\\config_log_created core created config_log config_log 1148 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -535 \\core\\event\\config_log_created core created config_log config_log 1149 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_middlename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -536 \\core\\event\\config_log_created core created config_log config_log 1150 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -537 \\core\\event\\config_log_created core created config_log config_log 1151 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_middlename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -538 \\core\\event\\config_log_created core created config_log config_log 1152 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -539 \\core\\event\\config_log_created core created config_log config_log 1153 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_map_alternatename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -540 \\core\\event\\config_log_created core created config_log config_log 1154 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"field_updatelocal_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -541 \\core\\event\\config_log_created core created config_log config_log 1155 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:32:"field_updateremote_alternatename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -542 \\core\\event\\config_log_created core created config_log config_log 1156 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:7:"auth_db";} 1612889144 web 67.182.30.218 \N -543 \\core\\event\\config_log_created core created config_log config_log 1157 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_map_firstname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -544 \\core\\event\\config_log_created core created config_log config_log 1158 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updatelocal_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -545 \\core\\event\\config_log_created core created config_log config_log 1159 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updateremote_firstname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -546 \\core\\event\\config_log_created core created config_log config_log 1160 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -547 \\core\\event\\config_log_created core created config_log config_log 1161 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_lastname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -548 \\core\\event\\config_log_created core created config_log config_log 1162 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -549 \\core\\event\\config_log_created core created config_log config_log 1163 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_lastname";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -550 \\core\\event\\config_log_created core created config_log config_log 1164 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -551 \\core\\event\\config_log_created core created config_log config_log 1165 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_map_email";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -552 \\core\\event\\config_log_created core created config_log config_log 1166 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updatelocal_email";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -553 \\core\\event\\config_log_created core created config_log config_log 1167 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updateremote_email";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -554 \\core\\event\\config_log_created core created config_log config_log 1168 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -555 \\core\\event\\config_log_created core created config_log config_log 1169 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_city";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -556 \\core\\event\\config_log_created core created config_log config_log 1170 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_city";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -557 \\core\\event\\config_log_created core created config_log config_log 1171 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_city";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -558 \\core\\event\\config_log_created core created config_log config_log 1172 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -559 \\core\\event\\config_log_created core created config_log config_log 1173 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_country";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -560 \\core\\event\\config_log_created core created config_log config_log 1174 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_country";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -561 \\core\\event\\config_log_created core created config_log config_log 1175 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_country";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -562 \\core\\event\\config_log_created core created config_log config_log 1176 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -563 \\core\\event\\config_log_created core created config_log config_log 1177 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_lang";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -564 \\core\\event\\config_log_created core created config_log config_log 1178 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_lang";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -565 \\core\\event\\config_log_created core created config_log config_log 1179 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updateremote_lang";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -566 \\core\\event\\config_log_created core created config_log config_log 1180 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -567 \\core\\event\\config_log_created core created config_log config_log 1181 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_description";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -568 \\core\\event\\config_log_created core created config_log config_log 1182 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_description";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -569 \\core\\event\\config_log_created core created config_log config_log 1183 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_description";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -570 \\core\\event\\config_log_created core created config_log config_log 1184 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -571 \\core\\event\\config_log_created core created config_log config_log 1185 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"field_map_url";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -572 \\core\\event\\config_log_created core created config_log config_log 1186 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_updatelocal_url";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -573 \\core\\event\\config_log_created core created config_log config_log 1187 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updateremote_url";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -574 \\core\\event\\config_log_created core created config_log config_log 1188 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -575 \\core\\event\\config_log_created core created config_log config_log 1189 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_idnumber";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -576 \\core\\event\\config_log_created core created config_log config_log 1190 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -577 \\core\\event\\config_log_created core created config_log config_log 1191 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updateremote_idnumber";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -578 \\core\\event\\config_log_created core created config_log config_log 1192 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -579 \\core\\event\\config_log_created core created config_log config_log 1193 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_institution";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -580 \\core\\event\\config_log_created core created config_log config_log 1194 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_institution";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -581 \\core\\event\\config_log_created core created config_log config_log 1195 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:30:"field_updateremote_institution";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -582 \\core\\event\\config_log_created core created config_log config_log 1196 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -583 \\core\\event\\config_log_created core created config_log config_log 1197 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_department";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -584 \\core\\event\\config_log_created core created config_log config_log 1198 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_department";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -585 \\core\\event\\config_log_created core created config_log config_log 1199 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_department";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -586 \\core\\event\\config_log_created core created config_log config_log 1200 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -587 \\core\\event\\config_log_created core created config_log config_log 1201 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone1";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -588 \\core\\event\\config_log_created core created config_log config_log 1202 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -589 \\core\\event\\config_log_created core created config_log config_log 1203 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone1";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -590 \\core\\event\\config_log_created core created config_log config_log 1204 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -591 \\core\\event\\config_log_created core created config_log config_log 1205 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone2";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -592 \\core\\event\\config_log_created core created config_log config_log 1206 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -593 \\core\\event\\config_log_created core created config_log config_log 1207 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updateremote_phone2";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -594 \\core\\event\\config_log_created core created config_log config_log 1208 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -595 \\core\\event\\config_log_created core created config_log config_log 1209 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_address";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -596 \\core\\event\\config_log_created core created config_log config_log 1210 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_address";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -597 \\core\\event\\config_log_created core created config_log config_log 1211 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updateremote_address";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -598 \\core\\event\\config_log_created core created config_log config_log 1212 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -599 \\core\\event\\config_log_created core created config_log config_log 1213 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_map_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -600 \\core\\event\\config_log_created core created config_log config_log 1214 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updatelocal_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -601 \\core\\event\\config_log_created core created config_log config_log 1215 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:36:"field_updateremote_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -602 \\core\\event\\config_log_created core created config_log config_log 1216 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -603 \\core\\event\\config_log_created core created config_log config_log 1217 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_map_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -604 \\core\\event\\config_log_created core created config_log config_log 1218 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"field_updatelocal_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -605 \\core\\event\\config_log_created core created config_log config_log 1219 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updateremote_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -606 \\core\\event\\config_log_created core created config_log config_log 1220 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -607 \\core\\event\\config_log_created core created config_log config_log 1221 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_middlename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -608 \\core\\event\\config_log_created core created config_log config_log 1222 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -609 \\core\\event\\config_log_created core created config_log config_log 1223 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updateremote_middlename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -610 \\core\\event\\config_log_created core created config_log config_log 1224 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -611 \\core\\event\\config_log_created core created config_log config_log 1225 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_map_alternatename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -612 \\core\\event\\config_log_created core created config_log config_log 1226 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"field_updatelocal_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -613 \\core\\event\\config_log_created core created config_log config_log 1227 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:32:"field_updateremote_alternatename";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -614 \\core\\event\\config_log_created core created config_log config_log 1228 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_ldap";} 1612889144 web 67.182.30.218 \N -615 \\core\\event\\config_log_created core created config_log config_log 1229 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"expiration";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N -616 \\core\\event\\config_log_created core created config_log config_log 1230 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"expirationtime";s:8:"oldvalue";N;s:5:"value";s:2:"30";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N -617 \\core\\event\\config_log_created core created config_log config_log 1231 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"expiration_warning";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N -618 \\core\\event\\config_log_created core created config_log config_log 1232 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N -619 \\core\\event\\config_log_created core created config_log config_log 1233 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N -620 \\core\\event\\config_log_created core created config_log config_log 1234 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N -621 \\core\\event\\config_log_created core created config_log config_log 1235 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N -622 \\core\\event\\config_log_created core created config_log config_log 1236 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N -623 \\core\\event\\config_log_created core created config_log config_log 1237 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N -624 \\core\\event\\config_log_created core created config_log config_log 1238 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N -625 \\core\\event\\config_log_created core created config_log config_log 1239 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N -626 \\core\\event\\config_log_created core created config_log config_log 1240 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N -627 \\core\\event\\config_log_created core created config_log config_log 1241 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N -628 \\core\\event\\config_log_created core created config_log config_log 1242 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N -629 \\core\\event\\config_log_created core created config_log config_log 1243 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N -630 \\core\\event\\config_log_created core created config_log config_log 1244 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N -631 \\core\\event\\config_log_created core created config_log config_log 1245 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N -632 \\core\\event\\config_log_created core created config_log config_log 1246 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N -633 \\core\\event\\config_log_created core created config_log config_log 1247 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N -634 \\core\\event\\config_log_created core created config_log config_log 1248 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N -635 \\core\\event\\config_log_created core created config_log config_log 1249 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_manual";} 1612889144 web 67.182.30.218 \N -636 \\core\\event\\config_log_created core created config_log config_log 1250 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"rpc_negotiation_timeout";s:8:"oldvalue";N;s:5:"value";s:2:"30";s:6:"plugin";s:9:"auth_mnet";} 1612889144 web 67.182.30.218 \N -637 \\core\\event\\config_log_created core created config_log config_log 1251 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N -638 \\core\\event\\config_log_created core created config_log config_log 1252 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N -639 \\core\\event\\config_log_created core created config_log config_log 1253 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N -640 \\core\\event\\config_log_created core created config_log config_log 1254 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N -641 \\core\\event\\config_log_created core created config_log config_log 1255 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N -642 \\core\\event\\config_log_created core created config_log config_log 1256 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N -643 \\core\\event\\config_log_created core created config_log config_log 1257 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N -644 \\core\\event\\config_log_created core created config_log config_log 1258 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N -645 \\core\\event\\config_log_created core created config_log config_log 1259 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N -646 \\core\\event\\config_log_created core created config_log config_log 1260 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N -647 \\core\\event\\config_log_created core created config_log config_log 1261 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N -648 \\core\\event\\config_log_created core created config_log config_log 1262 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N -649 \\core\\event\\config_log_created core created config_log config_log 1263 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N -650 \\core\\event\\config_log_created core created config_log config_log 1264 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N -651 \\core\\event\\config_log_created core created config_log config_log 1265 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N -652 \\core\\event\\config_log_created core created config_log config_log 1266 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N -653 \\core\\event\\config_log_created core created config_log config_log 1267 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N -654 \\core\\event\\config_log_created core created config_log config_log 1268 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:9:"auth_none";} 1612889144 web 67.182.30.218 \N -655 \\core\\event\\config_log_created core created config_log config_log 1269 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N -656 \\core\\event\\config_log_created core created config_log config_log 1270 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N -657 \\core\\event\\config_log_created core created config_log config_log 1271 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N -658 \\core\\event\\config_log_created core created config_log config_log 1272 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N -659 \\core\\event\\config_log_created core created config_log config_log 1273 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N -660 \\core\\event\\config_log_created core created config_log config_log 1274 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N -661 \\core\\event\\config_log_created core created config_log config_log 1275 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N -662 \\core\\event\\config_log_created core created config_log config_log 1276 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N -663 \\core\\event\\config_log_created core created config_log config_log 1277 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N -664 \\core\\event\\config_log_created core created config_log config_log 1278 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N -665 \\core\\event\\config_log_created core created config_log config_log 1279 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N -666 \\core\\event\\config_log_created core created config_log config_log 1280 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N -667 \\core\\event\\config_log_created core created config_log config_log 1281 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N -668 \\core\\event\\config_log_created core created config_log config_log 1282 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N -669 \\core\\event\\config_log_created core created config_log config_log 1283 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N -670 \\core\\event\\config_log_created core created config_log config_log 1284 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N -671 \\core\\event\\config_log_created core created config_log config_log 1285 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N -672 \\core\\event\\config_log_created core created config_log config_log 1286 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:11:"auth_oauth2";} 1612889144 web 67.182.30.218 \N -673 \\core\\event\\config_log_created core created config_log config_log 1287 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"user_attribute";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -674 \\core\\event\\config_log_created core created config_log config_log 1288 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"convert_data";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -675 \\core\\event\\config_log_created core created config_log config_log 1289 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"alt_login";s:8:"oldvalue";N;s:5:"value";s:3:"off";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -676 \\core\\event\\config_log_created core created config_log config_log 1290 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"organization_selection";s:8:"oldvalue";N;s:5:"value";s:259:"urn:mace:organization1:providerID, Example Organization 1\n https://another.idp-id.com/shibboleth, Other Example Organization, /Shibboleth.sso/DS/SWITCHaai\n urn:mace:organization2:providerID, Example Organization 2, /Shibboleth.sso/WAYF/SWITCHaai";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -677 \\core\\event\\config_log_created core created config_log config_log 1291 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"logout_handler";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -678 \\core\\event\\config_log_created core created config_log config_log 1292 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"logout_return_url";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -679 \\core\\event\\config_log_created core created config_log config_log 1293 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"login_name";s:8:"oldvalue";N;s:5:"value";s:16:"Shibboleth Login";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -680 \\core\\event\\config_log_created core created config_log config_log 1294 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"auth_logo";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -681 \\core\\event\\config_log_created core created config_log config_log 1295 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"auth_instructions";s:8:"oldvalue";N;s:5:"value";s:203:"Use the Shibboleth login to get access via Shibboleth, if your institution supports it. Otherwise, use the normal login form shown here.";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -682 \\core\\event\\config_log_created core created config_log config_log 1296 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"changepasswordurl";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -683 \\core\\event\\config_log_created core created config_log config_log 1297 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_map_firstname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -684 \\core\\event\\config_log_created core created config_log config_log 1298 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_updatelocal_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -685 \\core\\event\\config_log_created core created config_log config_log 1299 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_lock_firstname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -686 \\core\\event\\config_log_created core created config_log config_log 1300 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_lastname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -687 \\core\\event\\config_log_created core created config_log config_log 1301 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -688 \\core\\event\\config_log_created core created config_log config_log 1302 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_lastname";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -689 \\core\\event\\config_log_created core created config_log config_log 1303 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_map_email";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -690 \\core\\event\\config_log_created core created config_log config_log 1304 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_updatelocal_email";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -691 \\core\\event\\config_log_created core created config_log config_log 1305 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_lock_email";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -692 \\core\\event\\config_log_created core created config_log config_log 1306 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_city";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -693 \\core\\event\\config_log_created core created config_log config_log 1307 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_city";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -694 \\core\\event\\config_log_created core created config_log config_log 1308 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_city";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -695 \\core\\event\\config_log_created core created config_log config_log 1309 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_country";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -696 \\core\\event\\config_log_created core created config_log config_log 1310 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_country";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -697 \\core\\event\\config_log_created core created config_log config_log 1311 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_country";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -698 \\core\\event\\config_log_created core created config_log config_log 1312 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_map_lang";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -699 \\core\\event\\config_log_created core created config_log config_log 1313 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_updatelocal_lang";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -700 \\core\\event\\config_log_created core created config_log config_log 1314 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"field_lock_lang";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -701 \\core\\event\\config_log_created core created config_log config_log 1315 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_description";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -702 \\core\\event\\config_log_created core created config_log config_log 1316 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_description";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -703 \\core\\event\\config_log_created core created config_log config_log 1317 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_description";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -704 \\core\\event\\config_log_created core created config_log config_log 1318 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"field_map_url";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -705 \\core\\event\\config_log_created core created config_log config_log 1319 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_updatelocal_url";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -706 \\core\\event\\config_log_created core created config_log config_log 1320 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"field_lock_url";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -707 \\core\\event\\config_log_created core created config_log config_log 1321 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_map_idnumber";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -708 \\core\\event\\config_log_created core created config_log config_log 1322 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_updatelocal_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -709 \\core\\event\\config_log_created core created config_log config_log 1323 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"field_lock_idnumber";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -710 \\core\\event\\config_log_created core created config_log config_log 1324 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_map_institution";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -711 \\core\\event\\config_log_created core created config_log config_log 1325 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:29:"field_updatelocal_institution";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -712 \\core\\event\\config_log_created core created config_log config_log 1326 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"field_lock_institution";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -713 \\core\\event\\config_log_created core created config_log config_log 1327 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_department";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -714 \\core\\event\\config_log_created core created config_log config_log 1328 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_department";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -715 \\core\\event\\config_log_created core created config_log config_log 1329 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_department";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -716 \\core\\event\\config_log_created core created config_log config_log 1330 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone1";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -717 \\core\\event\\config_log_created core created config_log config_log 1331 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -718 \\core\\event\\config_log_created core created config_log config_log 1332 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone1";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -719 \\core\\event\\config_log_created core created config_log config_log 1333 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"field_map_phone2";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -720 \\core\\event\\config_log_created core created config_log config_log 1334 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_updatelocal_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -721 \\core\\event\\config_log_created core created config_log config_log 1335 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_lock_phone2";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -722 \\core\\event\\config_log_created core created config_log config_log 1336 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"field_map_address";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -723 \\core\\event\\config_log_created core created config_log config_log 1337 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"field_updatelocal_address";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -724 \\core\\event\\config_log_created core created config_log config_log 1338 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"field_lock_address";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -725 \\core\\event\\config_log_created core created config_log config_log 1339 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_map_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -726 \\core\\event\\config_log_created core created config_log config_log 1340 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:35:"field_updatelocal_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -727 \\core\\event\\config_log_created core created config_log config_log 1341 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_lock_firstnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -728 \\core\\event\\config_log_created core created config_log config_log 1342 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"field_map_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -729 \\core\\event\\config_log_created core created config_log config_log 1343 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:34:"field_updatelocal_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -730 \\core\\event\\config_log_created core created config_log config_log 1344 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"field_lock_lastnamephonetic";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -731 \\core\\event\\config_log_created core created config_log config_log 1345 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"field_map_middlename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -732 \\core\\event\\config_log_created core created config_log config_log 1346 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"field_updatelocal_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -733 \\core\\event\\config_log_created core created config_log config_log 1347 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"field_lock_middlename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -734 \\core\\event\\config_log_created core created config_log config_log 1348 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"field_map_alternatename";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -735 \\core\\event\\config_log_created core created config_log config_log 1349 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:31:"field_updatelocal_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"oncreate";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -736 \\core\\event\\config_log_created core created config_log config_log 1350 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"field_lock_alternatename";s:8:"oldvalue";N;s:5:"value";s:8:"unlocked";s:6:"plugin";s:15:"auth_shibboleth";} 1612889144 web 67.182.30.218 \N -737 \\core\\event\\config_log_created core created config_log config_log 1351 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"config_showbest";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N -738 \\core\\event\\config_log_created core created config_log config_log 1352 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"config_showbest_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N -739 \\core\\event\\config_log_created core created config_log config_log 1353 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"config_showworst";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N -740 \\core\\event\\config_log_created core created config_log config_log 1354 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"config_showworst_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N -741 \\core\\event\\config_log_created core created config_log config_log 1355 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"config_usegroups";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N -742 \\core\\event\\config_log_created core created config_log config_log 1356 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"config_usegroups_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N -743 \\core\\event\\config_log_created core created config_log config_log 1357 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"config_nameformat";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N -744 \\core\\event\\config_log_created core created config_log config_log 1358 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"config_nameformat_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N -745 \\core\\event\\config_log_created core created config_log config_log 1359 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"config_gradeformat";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N -746 \\core\\event\\config_log_created core created config_log config_log 1360 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"config_gradeformat_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N -747 \\core\\event\\config_log_created core created config_log config_log 1361 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"config_decimalpoints";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N -748 \\core\\event\\config_log_created core created config_log config_log 1362 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"config_decimalpoints_locked";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:22:"block_activity_results";} 1612889144 web 67.182.30.218 \N -749 \\core\\event\\config_log_created core created config_log config_log 1363 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"displaycategories";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1612889144 web 67.182.30.218 \N -750 \\core\\event\\config_log_created core created config_log config_log 1364 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"layouts";s:8:"oldvalue";N;s:5:"value";s:17:"card,list,summary";s:6:"plugin";s:16:"block_myoverview";} 1612889144 web 67.182.30.218 \N -751 \\core\\event\\config_log_created core created config_log config_log 1365 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:33:"displaygroupingallincludinghidden";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"block_myoverview";} 1612889144 web 67.182.30.218 \N -752 \\core\\event\\config_log_created core created config_log config_log 1366 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"displaygroupingall";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1612889144 web 67.182.30.218 \N -753 \\core\\event\\config_log_created core created config_log config_log 1367 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"displaygroupinginprogress";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1612889144 web 67.182.30.218 \N -754 \\core\\event\\config_log_created core created config_log config_log 1368 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"displaygroupingpast";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1612889144 web 67.182.30.218 \N -755 \\core\\event\\config_log_created core created config_log config_log 1369 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"displaygroupingfuture";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1612889144 web 67.182.30.218 \N -756 \\core\\event\\config_log_created core created config_log config_log 1370 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"displaygroupingcustomfield";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"block_myoverview";} 1612889144 web 67.182.30.218 \N -757 \\core\\event\\config_log_created core created config_log config_log 1371 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"customfiltergrouping";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"block_myoverview";} 1612889144 web 67.182.30.218 \N -758 \\core\\event\\config_log_created core created config_log config_log 1372 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:25:"displaygroupingfavourites";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1612889144 web 67.182.30.218 \N -759 \\core\\event\\config_log_created core created config_log config_log 1373 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"displaygroupinghidden";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"block_myoverview";} 1612889144 web 67.182.30.218 \N -760 \\core\\event\\config_log_created core created config_log config_log 1374 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:27:"block_course_list_adminview";s:8:"oldvalue";N;s:5:"value";s:3:"all";s:6:"plugin";N;} 1612889144 web 67.182.30.218 \N -761 \\core\\event\\config_log_created core created config_log config_log 1375 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:36:"block_course_list_hideallcourseslink";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889144 web 67.182.30.218 \N -762 \\core\\event\\config_log_created core created config_log config_log 1376 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"block_html_allowcssclasses";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889144 web 67.182.30.218 \N -763 \\core\\event\\config_log_created core created config_log config_log 1377 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"block_online_users_timetosee";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";N;} 1612889144 web 67.182.30.218 \N -764 \\core\\event\\config_log_created core created config_log config_log 1378 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:37:"block_online_users_onlinestatushiding";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1612889144 web 67.182.30.218 \N -765 \\core\\event\\config_log_created core created config_log config_log 1379 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"displaycategories";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:29:"block_recentlyaccessedcourses";} 1612889144 web 67.182.30.218 \N -766 \\core\\event\\config_log_created core created config_log config_log 1380 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:28:"block_rss_client_num_entries";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";N;} 1612889144 web 67.182.30.218 \N -767 \\core\\event\\config_log_created core created config_log config_log 1381 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"block_rss_client_timeout";s:8:"oldvalue";N;s:5:"value";s:2:"30";s:6:"plugin";N;} 1612889144 web 67.182.30.218 \N -768 \\core\\event\\config_log_created core created config_log config_log 1382 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"numsections1";s:8:"oldvalue";N;s:5:"value";s:2:"22";s:6:"plugin";s:19:"block_section_links";} 1612889144 web 67.182.30.218 \N -769 \\core\\event\\config_log_created core created config_log config_log 1383 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"incby1";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";s:19:"block_section_links";} 1612889144 web 67.182.30.218 \N -770 \\core\\event\\config_log_created core created config_log config_log 1384 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"numsections2";s:8:"oldvalue";N;s:5:"value";s:2:"40";s:6:"plugin";s:19:"block_section_links";} 1612889144 web 67.182.30.218 \N -771 \\core\\event\\config_log_created core created config_log config_log 1385 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"incby2";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:19:"block_section_links";} 1612889144 web 67.182.30.218 \N -772 \\core\\event\\config_log_created core created config_log config_log 1386 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"displaycategories";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:20:"block_starredcourses";} 1612889144 web 67.182.30.218 \N -773 \\core\\event\\config_log_created core created config_log config_log 1387 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"apikey";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"block_tag_youtube";} 1612889144 web 67.182.30.218 \N -774 \\core\\event\\config_log_created core created config_log config_log 1388 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"activitytype";s:8:"oldvalue";N;s:5:"value";s:5:"forum";s:6:"plugin";s:21:"format_singleactivity";} 1612889144 web 67.182.30.218 \N -775 \\core\\event\\config_log_created core created config_log config_log 1389 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"issuerid";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:25:"fileconverter_googledrive";} 1612889144 web 67.182.30.218 \N -776 \\core\\event\\config_log_created core created config_log config_log 1390 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"pathtounoconv";s:8:"oldvalue";N;s:5:"value";s:16:"/usr/bin/unoconv";s:6:"plugin";N;} 1612889144 web 67.182.30.218 \N -777 \\core\\event\\config_log_created core created config_log config_log 1391 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"roleid";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:12:"enrol_cohort";} 1612889144 web 67.182.30.218 \N -778 \\core\\event\\config_log_created core created config_log config_log 1392 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"unenrolaction";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_cohort";} 1612889144 web 67.182.30.218 \N -779 \\core\\event\\config_log_created core created config_log config_log 1393 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"nosyncroleids";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"enrol_meta";} 1612889144 web 67.182.30.218 \N -780 \\core\\event\\config_log_created core created config_log config_log 1394 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"syncall";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_meta";} 1612889144 web 67.182.30.218 \N -781 \\core\\event\\config_log_created core created config_log config_log 1395 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"unenrolaction";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:10:"enrol_meta";} 1612889144 web 67.182.30.218 \N -782 \\core\\event\\config_log_created core created config_log config_log 1396 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"coursesort";s:8:"oldvalue";N;s:5:"value";s:9:"sortorder";s:6:"plugin";s:10:"enrol_meta";} 1612889144 web 67.182.30.218 \N -783 \\core\\event\\config_log_created core created config_log config_log 1397 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"expiredaction";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:9:"enrol_fee";} 1612889144 web 67.182.30.218 \N -784 \\core\\event\\config_log_created core created config_log config_log 1398 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"status";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:9:"enrol_fee";} 1612889144 web 67.182.30.218 \N -785 \\core\\event\\config_log_created core created config_log config_log 1399 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"cost";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"enrol_fee";} 1612889144 web 67.182.30.218 \N -786 \\core\\event\\config_log_created core created config_log config_log 1400 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"currency";s:8:"oldvalue";N;s:5:"value";s:3:"USD";s:6:"plugin";s:9:"enrol_fee";} 1612889144 web 67.182.30.218 \N -787 \\core\\event\\config_log_created core created config_log config_log 1401 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"roleid";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:9:"enrol_fee";} 1612889144 web 67.182.30.218 \N -788 \\core\\event\\config_log_created core created config_log config_log 1402 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"enrolperiod";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:9:"enrol_fee";} 1612889144 web 67.182.30.218 \N -789 \\core\\event\\config_log_created core created config_log config_log 1403 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbtype";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -790 \\core\\event\\config_log_created core created config_log config_log 1404 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbhost";s:8:"oldvalue";N;s:5:"value";s:9:"localhost";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -791 \\core\\event\\config_log_created core created config_log config_log 1405 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbuser";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -792 \\core\\event\\config_log_created core created config_log config_log 1406 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbpass";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -793 \\core\\event\\config_log_created core created config_log config_log 1407 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -794 \\core\\event\\config_log_created core created config_log config_log 1408 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"dbencoding";s:8:"oldvalue";N;s:5:"value";s:5:"utf-8";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -795 \\core\\event\\config_log_created core created config_log config_log 1409 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"dbsetupsql";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -796 \\core\\event\\config_log_created core created config_log config_log 1410 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"dbsybasequoting";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -797 \\core\\event\\config_log_created core created config_log config_log 1411 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"debugdb";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -798 \\core\\event\\config_log_created core created config_log config_log 1412 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"localcoursefield";s:8:"oldvalue";N;s:5:"value";s:8:"idnumber";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -799 \\core\\event\\config_log_created core created config_log config_log 1413 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"localuserfield";s:8:"oldvalue";N;s:5:"value";s:8:"idnumber";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -800 \\core\\event\\config_log_created core created config_log config_log 1414 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"localrolefield";s:8:"oldvalue";N;s:5:"value";s:9:"shortname";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -801 \\core\\event\\config_log_created core created config_log config_log 1415 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"localcategoryfield";s:8:"oldvalue";N;s:5:"value";s:2:"id";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -802 \\core\\event\\config_log_created core created config_log config_log 1416 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"remoteenroltable";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -803 \\core\\event\\config_log_created core created config_log config_log 1417 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"remotecoursefield";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -804 \\core\\event\\config_log_created core created config_log config_log 1418 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"remoteuserfield";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -805 \\core\\event\\config_log_created core created config_log config_log 1419 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"remoterolefield";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -806 \\core\\event\\config_log_created core created config_log config_log 1420 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"remoteotheruserfield";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -807 \\core\\event\\config_log_created core created config_log config_log 1421 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"defaultrole";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -808 \\core\\event\\config_log_created core created config_log config_log 1422 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"ignorehiddencourses";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -809 \\core\\event\\config_log_created core created config_log config_log 1423 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"unenrolaction";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -810 \\core\\event\\config_log_created core created config_log config_log 1424 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"newcoursetable";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -811 \\core\\event\\config_log_created core created config_log config_log 1425 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"newcoursefullname";s:8:"oldvalue";N;s:5:"value";s:8:"fullname";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -812 \\core\\event\\config_log_created core created config_log config_log 1426 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:18:"newcourseshortname";s:8:"oldvalue";N;s:5:"value";s:9:"shortname";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -813 \\core\\event\\config_log_created core created config_log config_log 1427 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"newcourseidnumber";s:8:"oldvalue";N;s:5:"value";s:8:"idnumber";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -814 \\core\\event\\config_log_created core created config_log config_log 1428 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"newcoursecategory";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -815 \\core\\event\\config_log_created core created config_log config_log 1429 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"defaultcategory";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -816 \\core\\event\\config_log_created core created config_log config_log 1430 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"templatecourse";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_database";} 1612889144 web 67.182.30.218 \N -817 \\core\\event\\config_log_created core created config_log config_log 1431 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"location";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"enrol_flatfile";} 1612889144 web 67.182.30.218 \N -818 \\core\\event\\config_log_created core created config_log config_log 1432 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"encoding";s:8:"oldvalue";N;s:5:"value";s:5:"UTF-8";s:6:"plugin";s:14:"enrol_flatfile";} 1612889144 web 67.182.30.218 \N -819 \\core\\event\\config_log_created core created config_log config_log 1433 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"mailstudents";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_flatfile";} 1612889144 web 67.182.30.218 \N -820 \\core\\event\\config_log_created core created config_log config_log 1434 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"mailteachers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_flatfile";} 1612889144 web 67.182.30.218 \N -821 \\core\\event\\config_log_created core created config_log config_log 1435 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"mailadmins";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"enrol_flatfile";} 1612889144 web 67.182.30.218 \N -822 \\core\\event\\config_log_created core created config_log config_log 1436 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"unenrolaction";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:14:"enrol_flatfile";} 1612889144 web 67.182.30.218 \N -823 \\core\\event\\config_log_created core created config_log config_log 1437 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"expiredaction";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:14:"enrol_flatfile";} 1612889144 web 67.182.30.218 \N -824 \\core\\event\\config_log_created core created config_log config_log 1438 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"requirepassword";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"enrol_guest";} 1612889144 web 67.182.30.218 \N -825 \\core\\event\\config_log_created core created config_log config_log 1439 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"usepasswordpolicy";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"enrol_guest";} 1612889144 web 67.182.30.218 \N -826 \\core\\event\\config_log_created core created config_log config_log 1440 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"showhint";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"enrol_guest";} 1612889144 web 67.182.30.218 \N -827 \\core\\event\\config_log_created core created config_log config_log 1441 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"defaultenrol";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:11:"enrol_guest";} 1612889144 web 67.182.30.218 \N -828 \\core\\event\\config_log_created core created config_log config_log 1442 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"status";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:11:"enrol_guest";} 1612889144 web 67.182.30.218 \N -829 \\core\\event\\config_log_created core created config_log config_log 1443 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"status_adv";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"enrol_guest";} 1612889144 web 67.182.30.218 \N -830 \\core\\event\\config_log_created core created config_log config_log 1444 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"imsfilelocation";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -831 \\core\\event\\config_log_created core created config_log config_log 1445 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"logtolocation";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -832 \\core\\event\\config_log_created core created config_log config_log 1446 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"mailadmins";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -833 \\core\\event\\config_log_created core created config_log config_log 1447 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"createnewusers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -834 \\core\\event\\config_log_created core created config_log config_log 1448 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"imsupdateusers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -835 \\core\\event\\config_log_created core created config_log config_log 1449 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"imsdeleteusers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -836 \\core\\event\\config_log_created core created config_log config_log 1450 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"fixcaseusernames";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -837 \\core\\event\\config_log_created core created config_log config_log 1451 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"fixcasepersonalnames";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -838 \\core\\event\\config_log_created core created config_log config_log 1452 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"imssourcedidfallback";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -839 \\core\\event\\config_log_created core created config_log config_log 1453 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap01";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -840 \\core\\event\\config_log_created core created config_log config_log 1454 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap02";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -841 \\core\\event\\config_log_created core created config_log config_log 1455 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap03";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -842 \\core\\event\\config_log_created core created config_log config_log 1456 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap04";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -843 \\core\\event\\config_log_created core created config_log config_log 1457 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap05";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -844 \\core\\event\\config_log_created core created config_log config_log 1458 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap06";s:8:"oldvalue";N;s:5:"value";s:1:"4";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -845 \\core\\event\\config_log_created core created config_log config_log 1459 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap07";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -846 \\core\\event\\config_log_created core created config_log config_log 1460 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imsrolemap08";s:8:"oldvalue";N;s:5:"value";s:1:"4";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -847 \\core\\event\\config_log_created core created config_log config_log 1461 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"truncatecoursecodes";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -848 \\core\\event\\config_log_created core created config_log config_log 1462 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"createnewcourses";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -849 \\core\\event\\config_log_created core created config_log config_log 1463 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"updatecourses";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -850 \\core\\event\\config_log_created core created config_log config_log 1464 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"createnewcategories";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -851 \\core\\event\\config_log_created core created config_log config_log 1465 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"nestedcategories";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -852 \\core\\event\\config_log_created core created config_log config_log 1466 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"categoryidnumber";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -853 \\core\\event\\config_log_created core created config_log config_log 1467 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"categoryseparator";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -854 \\core\\event\\config_log_created core created config_log config_log 1468 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"imsunenrol";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -855 \\core\\event\\config_log_created core created config_log config_log 1469 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"imscoursemapshortname";s:8:"oldvalue";N;s:5:"value";s:10:"coursecode";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -856 \\core\\event\\config_log_created core created config_log config_log 1470 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"imscoursemapfullname";s:8:"oldvalue";N;s:5:"value";s:5:"short";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -857 \\core\\event\\config_log_created core created config_log config_log 1471 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"imscoursemapsummary";s:8:"oldvalue";N;s:5:"value";s:6:"ignore";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -858 \\core\\event\\config_log_created core created config_log config_log 1472 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"imsrestricttarget";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -859 \\core\\event\\config_log_created core created config_log config_log 1473 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"imscapitafix";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:19:"enrol_imsenterprise";} 1612889144 web 67.182.30.218 \N -860 \\core\\event\\config_log_created core created config_log config_log 1474 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"expiredaction";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:12:"enrol_manual";} 1612889144 web 67.182.30.218 \N -861 \\core\\event\\config_log_created core created config_log config_log 1475 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"expirynotifyhour";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";s:12:"enrol_manual";} 1612889144 web 67.182.30.218 \N -862 \\core\\event\\config_log_created core created config_log config_log 1476 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"defaultenrol";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:12:"enrol_manual";} 1612889144 web 67.182.30.218 \N -863 \\core\\event\\config_log_created core created config_log config_log 1477 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"status";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_manual";} 1612889144 web 67.182.30.218 \N -864 \\core\\event\\config_log_created core created config_log config_log 1478 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"roleid";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:12:"enrol_manual";} 1612889144 web 67.182.30.218 \N -865 \\core\\event\\config_log_created core created config_log config_log 1479 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"enrolstart";s:8:"oldvalue";N;s:5:"value";s:1:"4";s:6:"plugin";s:12:"enrol_manual";} 1612889144 web 67.182.30.218 \N -866 \\core\\event\\config_log_created core created config_log config_log 1480 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"enrolperiod";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_manual";} 1612889144 web 67.182.30.218 \N -867 \\core\\event\\config_log_created core created config_log config_log 1481 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"expirynotify";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_manual";} 1612889144 web 67.182.30.218 \N -868 \\core\\event\\config_log_created core created config_log config_log 1482 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"expirythreshold";s:8:"oldvalue";N;s:5:"value";s:5:"86400";s:6:"plugin";s:12:"enrol_manual";} 1612889144 web 67.182.30.218 \N -869 \\core\\event\\config_log_created core created config_log config_log 1483 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"roleid";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:10:"enrol_mnet";} 1612889144 web 67.182.30.218 \N -870 \\core\\event\\config_log_created core created config_log config_log 1484 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"roleid_adv";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_mnet";} 1612889144 web 67.182.30.218 \N -871 \\core\\event\\config_log_created core created config_log config_log 1485 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"paypalbusiness";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:12:"enrol_paypal";} 1612889144 web 67.182.30.218 \N -872 \\core\\event\\config_log_created core created config_log config_log 1486 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"mailstudents";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_paypal";} 1612889144 web 67.182.30.218 \N -873 \\core\\event\\config_log_created core created config_log config_log 1487 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"mailteachers";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_paypal";} 1612889144 web 67.182.30.218 \N -874 \\core\\event\\config_log_created core created config_log config_log 1488 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"mailadmins";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_paypal";} 1612889144 web 67.182.30.218 \N -875 \\core\\event\\config_log_created core created config_log config_log 1489 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"expiredaction";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";s:12:"enrol_paypal";} 1612889144 web 67.182.30.218 \N -876 \\core\\event\\config_log_created core created config_log config_log 1490 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"status";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:12:"enrol_paypal";} 1612889144 web 67.182.30.218 \N -877 \\core\\event\\config_log_created core created config_log config_log 1491 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"cost";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_paypal";} 1612889144 web 67.182.30.218 \N -878 \\core\\event\\config_log_created core created config_log config_log 1492 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"currency";s:8:"oldvalue";N;s:5:"value";s:3:"USD";s:6:"plugin";s:12:"enrol_paypal";} 1612889144 web 67.182.30.218 \N -879 \\core\\event\\config_log_created core created config_log config_log 1493 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"roleid";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:12:"enrol_paypal";} 1612889144 web 67.182.30.218 \N -880 \\core\\event\\config_log_created core created config_log config_log 1494 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"enrolperiod";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"enrol_paypal";} 1612889144 web 67.182.30.218 \N -881 \\core\\event\\config_log_created core created config_log config_log 1495 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"emaildisplay";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";s:9:"enrol_lti";} 1612889144 web 67.182.30.218 \N -882 \\core\\event\\config_log_created core created config_log config_log 1496 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"city";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"enrol_lti";} 1612889144 web 67.182.30.218 \N -883 \\core\\event\\config_log_created core created config_log config_log 1497 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"country";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"enrol_lti";} 1612889144 web 67.182.30.218 \N -884 \\core\\event\\config_log_created core created config_log config_log 1498 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"timezone";s:8:"oldvalue";N;s:5:"value";s:2:"99";s:6:"plugin";s:9:"enrol_lti";} 1612889144 web 67.182.30.218 \N -885 \\core\\event\\config_log_created core created config_log config_log 1499 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"lang";s:8:"oldvalue";N;s:5:"value";s:2:"en";s:6:"plugin";s:9:"enrol_lti";} 1612889144 web 67.182.30.218 \N -886 \\core\\event\\config_log_created core created config_log config_log 1500 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"institution";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:9:"enrol_lti";} 1612889144 web 67.182.30.218 \N -887 \\core\\event\\config_log_created core created config_log config_log 1501 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"requirepassword";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N -888 \\core\\event\\config_log_created core created config_log config_log 1502 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"usepasswordpolicy";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N -889 \\core\\event\\config_log_created core created config_log config_log 1503 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"showhint";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N -890 \\core\\event\\config_log_created core created config_log config_log 1504 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"expiredaction";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N -891 \\core\\event\\config_log_created core created config_log config_log 1505 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"expirynotifyhour";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N -892 \\core\\event\\config_log_created core created config_log config_log 1506 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"defaultenrol";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N -893 \\core\\event\\config_log_created core created config_log config_log 1507 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"status";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N -894 \\core\\event\\config_log_created core created config_log config_log 1508 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"newenrols";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N -895 \\core\\event\\config_log_created core created config_log config_log 1509 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"groupkey";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N -896 \\core\\event\\config_log_created core created config_log config_log 1510 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"roleid";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N -897 \\core\\event\\config_log_created core created config_log config_log 1511 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"enrolperiod";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N -898 \\core\\event\\config_log_created core created config_log config_log 1512 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"expirynotify";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N -899 \\core\\event\\config_log_created core created config_log config_log 1513 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"expirythreshold";s:8:"oldvalue";N;s:5:"value";s:5:"86400";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N -900 \\core\\event\\config_log_created core created config_log config_log 1514 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"longtimenosee";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N -901 \\core\\event\\config_log_created core created config_log config_log 1515 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"maxenrolled";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N -902 \\core\\event\\config_log_created core created config_log config_log 1516 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:24:"sendcoursewelcomemessage";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:10:"enrol_self";} 1612889144 web 67.182.30.218 \N -903 \\core\\event\\config_log_created core created config_log config_log 1517 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"formats";s:8:"oldvalue";N;s:5:"value";s:5:"1,4,0";s:6:"plugin";s:16:"filter_urltolink";} 1612889144 web 67.182.30.218 \N -904 \\core\\event\\config_log_created core created config_log config_log 1518 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"embedimages";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:16:"filter_urltolink";} 1612889144 web 67.182.30.218 \N -905 \\core\\event\\config_log_created core created config_log config_log 1519 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"formats";s:8:"oldvalue";N;s:5:"value";s:5:"1,4,0";s:6:"plugin";s:15:"filter_emoticon";} 1612889144 web 67.182.30.218 \N -906 \\core\\event\\config_log_created core created config_log config_log 1520 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"allowedsources";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"filter_displayh5p";} 1612889144 web 67.182.30.218 \N -907 \\core\\event\\config_log_created core created config_log config_log 1521 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"httpsurl";s:8:"oldvalue";N;s:5:"value";s:53:"https://cdn.jsdelivr.net/npm/mathjax@2.7.8/MathJax.js";s:6:"plugin";s:20:"filter_mathjaxloader";} 1612889144 web 67.182.30.218 \N -908 \\core\\event\\config_log_created core created config_log config_log 1522 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"texfiltercompatibility";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:20:"filter_mathjaxloader";} 1612889144 web 67.182.30.218 \N -909 \\core\\event\\config_log_created core created config_log config_log 1523 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"mathjaxconfig";s:8:"oldvalue";N;s:5:"value";s:162:"\nMathJax.Hub.Config({\n config: ["Accessible.js", "Safe.js"],\n errorSettings: { message: ["!"] },\n skipStartupTypeset: true,\n messageStyle: "none"\n});\n";s:6:"plugin";s:20:"filter_mathjaxloader";} 1612889144 web 67.182.30.218 \N -910 \\core\\event\\config_log_created core created config_log config_log 1524 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"additionaldelimiters";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:20:"filter_mathjaxloader";} 1612889144 web 67.182.30.218 \N -911 \\core\\event\\config_log_created core created config_log config_log 1525 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:26:"filter_multilang_force_old";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889144 web 67.182.30.218 \N -912 \\core\\event\\config_log_created core created config_log config_log 1526 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"latexpreamble";s:8:"oldvalue";N;s:5:"value";s:115:"\\usepackage[latin1]{inputenc}\n\\usepackage{amsmath}\n\\usepackage{amsfonts}\n\\RequirePackage{amsmath,amssymb,latexsym}\n";s:6:"plugin";s:10:"filter_tex";} 1612889144 web 67.182.30.218 \N -913 \\core\\event\\config_log_created core created config_log config_log 1527 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"latexbackground";s:8:"oldvalue";N;s:5:"value";s:7:"#FFFFFF";s:6:"plugin";s:10:"filter_tex";} 1612889145 web 67.182.30.218 \N -914 \\core\\event\\config_log_created core created config_log config_log 1528 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"density";s:8:"oldvalue";N;s:5:"value";s:3:"120";s:6:"plugin";s:10:"filter_tex";} 1612889145 web 67.182.30.218 \N -915 \\core\\event\\config_log_created core created config_log config_log 1529 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"pathlatex";s:8:"oldvalue";N;s:5:"value";s:14:"/usr/bin/latex";s:6:"plugin";s:10:"filter_tex";} 1612889145 web 67.182.30.218 \N -916 \\core\\event\\config_log_created core created config_log config_log 1530 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"pathdvips";s:8:"oldvalue";N;s:5:"value";s:14:"/usr/bin/dvips";s:6:"plugin";s:10:"filter_tex";} 1612889145 web 67.182.30.218 \N -917 \\core\\event\\config_log_created core created config_log config_log 1531 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"pathconvert";s:8:"oldvalue";N;s:5:"value";s:16:"/usr/bin/convert";s:6:"plugin";s:10:"filter_tex";} 1612889145 web 67.182.30.218 \N -918 \\core\\event\\config_log_created core created config_log config_log 1532 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"pathdvisvgm";s:8:"oldvalue";N;s:5:"value";s:16:"/usr/bin/dvisvgm";s:6:"plugin";s:10:"filter_tex";} 1612889145 web 67.182.30.218 \N -919 \\core\\event\\config_log_created core created config_log config_log 1533 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"pathmimetex";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:10:"filter_tex";} 1612889145 web 67.182.30.218 \N -920 \\core\\event\\config_log_created core created config_log config_log 1534 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"convertformat";s:8:"oldvalue";N;s:5:"value";s:3:"gif";s:6:"plugin";s:10:"filter_tex";} 1612889145 web 67.182.30.218 \N -921 \\core\\event\\config_log_created core created config_log config_log 1535 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"filter_censor_badwords";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N -922 \\core\\event\\config_log_created core created config_log config_log 1536 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"dbdriver";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N -923 \\core\\event\\config_log_created core created config_log config_log 1537 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbhost";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N -924 \\core\\event\\config_log_created core created config_log config_log 1538 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbuser";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N -925 \\core\\event\\config_log_created core created config_log config_log 1539 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbpass";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N -926 \\core\\event\\config_log_created core created config_log config_log 1540 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbname";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N -927 \\core\\event\\config_log_created core created config_log config_log 1541 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"dbtable";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N -928 \\core\\event\\config_log_created core created config_log config_log 1542 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"dbpersist";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N -929 \\core\\event\\config_log_created core created config_log config_log 1543 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"dbsocket";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N -930 \\core\\event\\config_log_created core created config_log config_log 1544 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"dbport";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N -931 \\core\\event\\config_log_created core created config_log config_log 1545 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"dbschema";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N -932 \\core\\event\\config_log_created core created config_log config_log 1546 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"dbcollation";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N -933 \\core\\event\\config_log_created core created config_log config_log 1547 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"dbhandlesoptions";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N -934 \\core\\event\\config_log_created core created config_log config_log 1548 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"buffersize";s:8:"oldvalue";N;s:5:"value";s:2:"50";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N -935 \\core\\event\\config_log_created core created config_log config_log 1549 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"jsonformat";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N -936 \\core\\event\\config_log_created core created config_log config_log 1550 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"logguests";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N -937 \\core\\event\\config_log_created core created config_log config_log 1551 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"includelevels";s:8:"oldvalue";N;s:5:"value";s:5:"1,2,0";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N -938 \\core\\event\\config_log_created core created config_log config_log 1552 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"includeactions";s:8:"oldvalue";N;s:5:"value";s:7:"c,r,u,d";s:6:"plugin";s:17:"logstore_database";} 1612889145 web 67.182.30.218 \N -939 \\core\\event\\config_log_created core created config_log config_log 1553 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"loglegacy";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:15:"logstore_legacy";} 1612889145 web 67.182.30.218 \N -940 \\core\\event\\config_log_created core created config_log config_log 1554 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"logguests";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N -941 \\core\\event\\config_log_created core created config_log config_log 1555 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"loglifetime";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N -942 \\core\\event\\config_log_created core created config_log config_log 1556 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"logguests";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:17:"logstore_standard";} 1612889145 web 67.182.30.218 \N -943 \\core\\event\\config_log_created core created config_log config_log 1557 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"jsonformat";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:17:"logstore_standard";} 1612889145 web 67.182.30.218 \N -944 \\core\\event\\config_log_created core created config_log config_log 1558 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"loglifetime";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:17:"logstore_standard";} 1612889145 web 67.182.30.218 \N -945 \\core\\event\\config_log_created core created config_log config_log 1559 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"buffersize";s:8:"oldvalue";N;s:5:"value";s:2:"50";s:6:"plugin";s:17:"logstore_standard";} 1612889145 web 67.182.30.218 \N -946 \\core\\event\\config_log_created core created config_log config_log 1560 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"useserver";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"mlbackend_python";} 1612889145 web 67.182.30.218 \N -947 \\core\\event\\config_log_created core created config_log config_log 1561 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"host";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"mlbackend_python";} 1612889145 web 67.182.30.218 \N -948 \\core\\event\\config_log_created core created config_log config_log 1562 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"port";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"mlbackend_python";} 1612889145 web 67.182.30.218 \N -949 \\core\\event\\config_log_created core created config_log config_log 1563 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:6:"secure";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:16:"mlbackend_python";} 1612889145 web 67.182.30.218 \N -950 \\core\\event\\config_log_created core created config_log config_log 1564 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"username";s:8:"oldvalue";N;s:5:"value";s:7:"default";s:6:"plugin";s:16:"mlbackend_python";} 1612889145 web 67.182.30.218 \N -951 \\core\\event\\config_log_created core created config_log config_log 1565 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"password";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:16:"mlbackend_python";} 1612889145 web 67.182.30.218 \N -952 \\core\\event\\config_log_created core created config_log config_log 1566 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"videoextensions";s:8:"oldvalue";N;s:5:"value";s:33:"html_video,media_source,.f4v,.flv";s:6:"plugin";s:13:"media_videojs";} 1612889145 web 67.182.30.218 \N -953 \\core\\event\\config_log_created core created config_log config_log 1567 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"audioextensions";s:8:"oldvalue";N;s:5:"value";s:10:"html_audio";s:6:"plugin";s:13:"media_videojs";} 1612889145 web 67.182.30.218 \N -954 \\core\\event\\config_log_created core created config_log config_log 1568 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:4:"rtmp";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:13:"media_videojs";} 1612889145 web 67.182.30.218 \N -955 \\core\\event\\config_log_created core created config_log config_log 1569 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"useflash";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:13:"media_videojs";} 1612889145 web 67.182.30.218 \N -956 \\core\\event\\config_log_created core created config_log config_log 1570 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"youtube";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:13:"media_videojs";} 1612889145 web 67.182.30.218 \N -957 \\core\\event\\config_log_created core created config_log config_log 1571 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"videocssclass";s:8:"oldvalue";N;s:5:"value";s:8:"video-js";s:6:"plugin";s:13:"media_videojs";} 1612889145 web 67.182.30.218 \N -958 \\core\\event\\config_log_created core created config_log config_log 1572 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"audiocssclass";s:8:"oldvalue";N;s:5:"value";s:8:"video-js";s:6:"plugin";s:13:"media_videojs";} 1612889145 web 67.182.30.218 \N -959 \\core\\event\\config_log_created core created config_log config_log 1573 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"limitsize";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:13:"media_videojs";} 1612889145 web 67.182.30.218 \N -960 \\core\\event\\config_log_created core created config_log config_log 1574 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"surcharge";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:12:"paygw_paypal";} 1612889145 web 67.182.30.218 \N -961 \\core\\event\\config_log_created core created config_log config_log 1575 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"answerhowmany";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:17:"qtype_multichoice";} 1612889145 web 67.182.30.218 \N -962 \\core\\event\\config_log_created core created config_log config_log 1576 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"shuffleanswers";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:17:"qtype_multichoice";} 1612889145 web 67.182.30.218 \N -963 \\core\\event\\config_log_created core created config_log config_log 1577 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"answernumbering";s:8:"oldvalue";N;s:5:"value";s:3:"abc";s:6:"plugin";s:17:"qtype_multichoice";} 1612889145 web 67.182.30.218 \N -964 \\core\\event\\config_log_created core created config_log config_log 1578 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:7:"toolbar";s:8:"oldvalue";N;s:5:"value";s:355:"collapse = collapse\nstyle1 = title, bold, italic\nlist = unorderedlist, orderedlist, indent\nlinks = link\nfiles = emojipicker, image, media, recordrtc, managefiles, h5p\nstyle2 = underline, strike, subscript, superscript\nalign = align\ninsert = equation, charmap, table, clear\nundo = undo\naccessibility = accessibilitychecker, accessibilityhelper\nother = html";s:6:"plugin";s:11:"editor_atto";} 1612889145 web 67.182.30.218 \N -965 \\core\\event\\config_log_created core created config_log config_log 1579 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"autosavefrequency";s:8:"oldvalue";N;s:5:"value";s:2:"60";s:6:"plugin";s:11:"editor_atto";} 1612889145 web 67.182.30.218 \N -966 \\core\\event\\config_log_created core created config_log config_log 1580 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"showgroups";s:8:"oldvalue";N;s:5:"value";s:1:"5";s:6:"plugin";s:13:"atto_collapse";} 1612889145 web 67.182.30.218 \N -967 \\core\\event\\config_log_created core created config_log config_log 1581 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"librarygroup1";s:8:"oldvalue";N;s:5:"value";s:244:"\n\\cdot\n\\times\n\\ast\n\\div\n\\diamond\n\\pm\n\\mp\n\\oplus\n\\ominus\n\\otimes\n\\oslash\n\\odot\n\\circ\n\\bullet\n\\asymp\n\\equiv\n\\subseteq\n\\supseteq\n\\leq\n\\geq\n\\preceq\n\\succeq\n\\sim\n\\simeq\n\\approx\n\\subset\n\\supset\n\\ll\n\\gg\n\\prec\n\\succ\n\\infty\n\\in\n\\ni\n\\forall\n\\exists\n\\neq\n";s:6:"plugin";s:13:"atto_equation";} 1612889145 web 67.182.30.218 \N -968 \\core\\event\\config_log_created core created config_log config_log 1582 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"librarygroup2";s:8:"oldvalue";N;s:5:"value";s:155:"\n\\leftarrow\n\\rightarrow\n\\uparrow\n\\downarrow\n\\leftrightarrow\n\\nearrow\n\\searrow\n\\swarrow\n\\nwarrow\n\\Leftarrow\n\\Rightarrow\n\\Uparrow\n\\Downarrow\n\\Leftrightarrow\n";s:6:"plugin";s:13:"atto_equation";} 1612889145 web 67.182.30.218 \N -969 \\core\\event\\config_log_created core created config_log config_log 1583 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"librarygroup3";s:8:"oldvalue";N;s:5:"value";s:210:"\n\\alpha\n\\beta\n\\gamma\n\\delta\n\\epsilon\n\\zeta\n\\eta\n\\theta\n\\iota\n\\kappa\n\\lambda\n\\mu\n\\nu\n\\xi\n\\pi\n\\rho\n\\sigma\n\\tau\n\\upsilon\n\\phi\n\\chi\n\\psi\n\\omega\n\\Gamma\n\\Delta\n\\Theta\n\\Lambda\n\\Xi\n\\Pi\n\\Sigma\n\\Upsilon\n\\Phi\n\\Psi\n\\Omega\n";s:6:"plugin";s:13:"atto_equation";} 1612889145 web 67.182.30.218 \N -970 \\core\\event\\config_log_created core created config_log config_log 1584 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"librarygroup4";s:8:"oldvalue";N;s:5:"value";s:239:"\n\\sum{a,b}\n\\sqrt[a]{b+c}\n\\int_{a}^{b}{c}\n\\iint_{a}^{b}{c}\n\\iiint_{a}^{b}{c}\n\\oint{a}\n(a)\n[a]\n\\lbrace{a}\\rbrace\n\\left| \\begin{matrix} a_1 & a_2 \\ a_3 & a_4 \\end{matrix} \\right|\n\\frac{a}{b+c}\n\\vec{a}\n\\binom {a} {b}\n{a \\brack b}\n{a \\brace b}\n";s:6:"plugin";s:13:"atto_equation";} 1612889145 web 67.182.30.218 \N -971 \\core\\event\\config_log_created core created config_log config_log 1585 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"allowedtypes";s:8:"oldvalue";N;s:5:"value";s:4:"both";s:6:"plugin";s:14:"atto_recordrtc";} 1612889145 web 67.182.30.218 \N -972 \\core\\event\\config_log_created core created config_log config_log 1586 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"audiobitrate";s:8:"oldvalue";N;s:5:"value";s:6:"128000";s:6:"plugin";s:14:"atto_recordrtc";} 1612889145 web 67.182.30.218 \N -973 \\core\\event\\config_log_created core created config_log config_log 1587 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"videobitrate";s:8:"oldvalue";N;s:5:"value";s:7:"2500000";s:6:"plugin";s:14:"atto_recordrtc";} 1612889145 web 67.182.30.218 \N -974 \\core\\event\\config_log_created core created config_log config_log 1588 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"timelimit";s:8:"oldvalue";N;s:5:"value";s:3:"120";s:6:"plugin";s:14:"atto_recordrtc";} 1612889145 web 67.182.30.218 \N -975 \\core\\event\\config_log_created core created config_log config_log 1589 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"allowborders";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"atto_table";} 1612889145 web 67.182.30.218 \N -976 \\core\\event\\config_log_created core created config_log config_log 1590 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"allowbackgroundcolour";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"atto_table";} 1612889145 web 67.182.30.218 \N -977 \\core\\event\\config_log_created core created config_log config_log 1591 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"allowwidth";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:10:"atto_table";} 1612889145 web 67.182.30.218 \N -978 \\core\\event\\config_log_created core created config_log config_log 1592 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"customtoolbar";s:8:"oldvalue";N;s:5:"value";s:378:"wrap,formatselect,wrap,bold,italic,wrap,bullist,numlist,wrap,link,unlink,wrap,image\n\nundo,redo,wrap,underline,strikethrough,sub,sup,wrap,justifyleft,justifycenter,justifyright,wrap,outdent,indent,wrap,forecolor,backcolor,wrap,ltr,rtl\n\nfontselect,fontsizeselect,wrap,code,search,replace,wrap,nonbreaking,charmap,table,wrap,cleanup,removeformat,pastetext,pasteword,wrap,fullscreen";s:6:"plugin";s:14:"editor_tinymce";} 1612889145 web 67.182.30.218 \N -979 \\core\\event\\config_log_created core created config_log config_log 1593 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"fontselectlist";s:8:"oldvalue";N;s:5:"value";s:338:"Trebuchet=Trebuchet MS,Verdana,Arial,Helvetica,sans-serif;Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;Wingdings=wingdings";s:6:"plugin";s:14:"editor_tinymce";} 1612889145 web 67.182.30.218 \N -980 \\core\\event\\config_log_created core created config_log config_log 1594 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"customconfig";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:14:"editor_tinymce";} 1612889145 web 67.182.30.218 \N -981 \\core\\event\\config_log_created core created config_log config_log 1595 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"requireemoticon";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:22:"tinymce_moodleemoticon";} 1612889145 web 67.182.30.218 \N -982 \\core\\event\\config_log_created core created config_log config_log 1596 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"spellengine";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:20:"tinymce_spellchecker";} 1612889145 web 67.182.30.218 \N -983 \\core\\event\\config_log_created core created config_log config_log 1597 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"spelllanguagelist";s:8:"oldvalue";N;s:5:"value";s:118:"+English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv";s:6:"plugin";s:20:"tinymce_spellchecker";} 1612889145 web 67.182.30.218 \N -984 \\core\\event\\config_log_created core created config_log config_log 1598 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"profileroles";s:8:"oldvalue";N;s:5:"value";s:5:"5,4,3";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N -985 \\core\\event\\config_log_created core created config_log config_log 1599 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:13:"coursecontact";s:8:"oldvalue";N;s:5:"value";s:1:"3";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N -986 \\core\\event\\config_log_created core created config_log config_log 1600 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"frontpage";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N -987 \\core\\event\\config_log_created core created config_log config_log 1601 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"frontpageloggedin";s:8:"oldvalue";N;s:5:"value";s:1:"6";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N -988 \\core\\event\\config_log_created core created config_log config_log 1602 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"maxcategorydepth";s:8:"oldvalue";N;s:5:"value";s:1:"2";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N -989 \\core\\event\\config_log_created core created config_log config_log 1603 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"frontpagecourselimit";s:8:"oldvalue";N;s:5:"value";s:3:"200";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N -990 \\core\\event\\config_log_created core created config_log config_log 1604 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"commentsperpage";s:8:"oldvalue";N;s:5:"value";s:2:"15";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N -991 \\core\\event\\config_log_created core created config_log config_log 1605 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"defaultfrontpageroleid";s:8:"oldvalue";N;s:5:"value";s:1:"8";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N -992 \\core\\event\\config_log_created core created config_log config_log 1606 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"messageinbound_enabled";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N -993 \\core\\event\\config_log_created core created config_log config_log 1607 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"messageinbound_mailbox";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N -994 \\core\\event\\config_log_created core created config_log config_log 1608 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"messageinbound_domain";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N -995 \\core\\event\\config_log_created core created config_log config_log 1609 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:19:"messageinbound_host";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N -996 \\core\\event\\config_log_created core created config_log config_log 1610 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"messageinbound_hostssl";s:8:"oldvalue";N;s:5:"value";s:3:"ssl";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N -997 \\core\\event\\config_log_created core created config_log config_log 1611 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"messageinbound_hostuser";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N -998 \\core\\event\\config_log_created core created config_log config_log 1612 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:23:"messageinbound_hostpass";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N -999 \\core\\event\\config_log_created core created config_log config_log 1613 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:22:"enablemobilewebservice";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N -1000 \\core\\event\\config_log_created core created config_log config_log 1614 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"apppolicy";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N -1001 \\core\\event\\config_log_created core created config_log config_log 1615 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"typeoflogin";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N -1002 \\core\\event\\config_log_created core created config_log config_log 1616 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:10:"qrcodetype";s:8:"oldvalue";N;s:5:"value";s:1:"1";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N -1003 \\core\\event\\config_log_created core created config_log config_log 1617 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"forcedurlscheme";s:8:"oldvalue";N;s:5:"value";s:12:"moodlemobile";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N -1004 \\core\\event\\config_log_created core created config_log config_log 1618 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:14:"minimumversion";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N -1005 \\core\\event\\config_log_created core created config_log config_log 1619 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"mobilecssurl";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";N;} 1612889145 web 67.182.30.218 \N -1006 \\core\\event\\config_log_created core created config_log config_log 1620 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"enablesmartappbanners";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N -1007 \\core\\event\\config_log_created core created config_log config_log 1621 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:8:"iosappid";s:8:"oldvalue";N;s:5:"value";s:9:"633359593";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N -1008 \\core\\event\\config_log_created core created config_log config_log 1622 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:12:"androidappid";s:8:"oldvalue";N;s:5:"value";s:23:"com.moodle.moodlemobile";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N -1009 \\core\\event\\config_log_created core created config_log config_log 1623 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:9:"setuplink";s:8:"oldvalue";N;s:5:"value";s:34:"https://download.moodle.org/mobile";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N -1010 \\core\\event\\config_log_created core created config_log config_log 1624 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:11:"forcelogout";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N -1011 \\core\\event\\config_log_created core created config_log config_log 1625 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"disabledfeatures";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N -1012 \\core\\event\\config_log_created core created config_log config_log 1626 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"custommenuitems";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N -1013 \\core\\event\\config_log_created core created config_log config_log 1627 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:21:"filetypeexclusionlist";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N -1014 \\core\\event\\config_log_created core created config_log config_log 1628 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:17:"customlangstrings";s:8:"oldvalue";N;s:5:"value";s:0:"";s:6:"plugin";s:11:"tool_mobile";} 1612889145 web 67.182.30.218 \N -1015 \\core\\event\\config_log_created core created config_log config_log 1629 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:15:"enablemoodlenet";s:8:"oldvalue";N;s:5:"value";s:1:"0";s:6:"plugin";s:14:"tool_moodlenet";} 1612889145 web 67.182.30.218 \N -1016 \\core\\event\\config_log_created core created config_log config_log 1630 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:20:"defaultmoodlenetname";s:8:"oldvalue";N;s:5:"value";s:17:"MoodleNet Central";s:6:"plugin";s:14:"tool_moodlenet";} 1612889145 web 67.182.30.218 \N -1017 \\core\\event\\config_log_created core created config_log config_log 1631 c 0 1 10 0 2 0 \N 0 a:4:{s:4:"name";s:16:"defaultmoodlenet";s:8:"oldvalue";N;s:5:"value";s:18:"https://moodle.net";s:6:"plugin";s:14:"tool_moodlenet";} 1612889145 web 67.182.30.218 \N -1018 \\core\\event\\config_log_created core created config_log config_log 1632 c 0 1 10 0 2 0 \N 0 {"name":"timezone","oldvalue":null,"value":"Europe\\/London","plugin":null} 1612889167 web 67.182.30.218 \N -1019 \\core\\event\\config_log_created core created config_log config_log 1633 c 0 1 10 0 2 0 \N 0 {"name":"registerauth","oldvalue":null,"value":"","plugin":null} 1612889167 web 67.182.30.218 \N -1020 \\core\\event\\dashboard_viewed core viewed dashboard \N \N r 0 5 30 2 2 0 2 0 null 1612889167 web 67.182.30.218 \N -1021 \\core\\event\\user_created core created user user 3 c 0 25 30 3 2 0 3 0 null 1612889205 web 67.182.30.218 \N +1030 \\core\\event\\user_loggedout core loggedout user user 2 r 0 1 10 0 2 0 \N 0 {"sessionid":"op5p204lful3r5fkk84q99pa5f"} 1613081095 web 67.182.30.218 \N +1031 \\core\\event\\course_viewed core viewed course \N \N r 2 2 50 1 0 1 \N 0 null 1613081095 web 67.182.30.218 \N +1032 \\core\\event\\user_loggedin core loggedin user user 2 r 0 1 10 0 2 0 \N 0 {"username":"admin"} 1613081196 web 67.182.30.218 \N +1033 \\core\\event\\dashboard_viewed core viewed dashboard \N \N r 0 5 30 2 2 0 2 0 null 1613081197 web 67.182.30.218 \N +1034 \\core\\event\\webservice_login_failed core failed webservice_login \N \N r 0 1 10 0 0 0 \N 0 {"method":1,"reason":"invalid_token"} 1613081299 ws 67.182.30.218 \N +1035 \\core\\event\\webservice_token_created core created webservice_token external_tokens 1 c 0 1 10 0 3 0 3 0 {"auto":true} 1613081313 web 67.182.30.218 \N +1036 \\core\\event\\webservice_token_sent core sent webservice_token external_tokens 1 r 0 1 10 0 3 0 \N 0 null 1613081313 web 67.182.30.218 \N +1037 \\core\\event\\webservice_function_called core called webservice_function \N \N r 0 1 10 0 3 0 \N 0 {"function":"core_webservice_get_site_info"} 1613081313 ws 67.182.30.218 \N +1038 \\core\\event\\webservice_function_called core called webservice_function \N \N r 0 1 10 0 3 0 \N 0 {"function":"tool_mobile_get_config"} 1613081313 ws 67.182.30.218 \N +1039 \\core\\event\\webservice_function_called core called webservice_function \N \N r 0 1 10 0 3 0 \N 0 {"function":"tool_mobile_call_external_functions"} 1613081314 ws 67.182.30.218 \N +1040 \\core\\event\\webservice_function_called core called webservice_function \N \N r 0 1 10 0 3 0 \N 0 {"function":"tool_mobile_call_external_functions"} 1613081314 ws 67.182.30.218 \N +1041 \\core\\event\\webservice_function_called core called webservice_function \N \N r 0 1 10 0 3 0 \N 0 {"function":"message_airnotifier_get_user_devices"} 1613081314 ws 67.182.30.218 \N +1042 \\core\\event\\webservice_function_called core called webservice_function \N \N r 0 1 10 0 3 0 \N 0 {"function":"tool_mobile_call_external_functions"} 1613081314 ws 67.182.30.218 \N +1043 \\core\\event\\webservice_function_called core called webservice_function \N \N r 0 1 10 0 3 0 \N 0 {"function":"tool_mobile_call_external_functions"} 1613081315 ws 67.182.30.218 \N +1044 \\core\\event\\course_viewed core viewed course \N \N r 2 2 50 1 3 1 \N 0 null 1613081315 ws 67.182.30.218 \N +1045 \\core\\event\\webservice_function_called core called webservice_function \N \N r 0 1 10 0 3 0 \N 0 {"function":"tool_mobile_call_external_functions"} 1613081315 ws 67.182.30.218 \N +1046 \\core\\event\\webservice_function_called core called webservice_function \N \N r 0 1 10 0 3 0 \N 0 {"function":"core_course_view_course"} 1613081372 ws 67.182.30.218 \N +1047 \\core\\event\\course_viewed core viewed course \N \N r 2 2 50 1 3 1 \N 0 null 1613081372 ws 67.182.30.218 \N +1048 \\core\\event\\config_log_created core created config_log config_log 1635 c 0 1 10 0 2 0 \N 0 {"name":"qrcodetype","oldvalue":"1","value":"2","plugin":"tool_mobile"} 1613084183 web 67.182.30.218 \N \. @@ -33772,7 +32798,7 @@ COPY public.mdl_logstore_standard_log (id, eventname, component, action, target, -- Name: mdl_logstore_standard_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_logstore_standard_log_id_seq', 1021, true); +SELECT pg_catalog.setval('public.mdl_logstore_standard_log_id_seq', 1048, true); -- @@ -34538,6 +33564,7 @@ COPY public.mdl_my_pages (id, userid, name, private, sortorder) FROM stdin; 1 \N __default 0 0 2 \N __default 1 0 3 2 __default 1 0 +4 3 __default 1 0 \. @@ -34545,7 +33572,7 @@ COPY public.mdl_my_pages (id, userid, name, private, sortorder) FROM stdin; -- Name: mdl_my_pages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_my_pages_id_seq', 3, true); +SELECT pg_catalog.setval('public.mdl_my_pages_id_seq', 4, true); -- @@ -37288,6 +36315,7 @@ COPY public.mdl_role_capabilities (id, contextid, roleid, capability, permission 1431 1 3 atto/h5p:addembed 1 1612889102 0 1432 1 7 atto/recordrtc:recordaudio 1 1612889102 0 1433 1 7 atto/recordrtc:recordvideo 1 1612889102 0 +1434 1 7 webservice/rest:use 1 1613080312 2 \. @@ -37295,7 +36323,7 @@ COPY public.mdl_role_capabilities (id, contextid, roleid, capability, permission -- Name: mdl_role_capabilities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_role_capabilities_id_seq', 1433, true); +SELECT pg_catalog.setval('public.mdl_role_capabilities_id_seq', 1434, true); -- @@ -37578,7 +36606,7 @@ SELECT pg_catalog.setval('public.mdl_search_simpledb_index_id_seq', 1, false); -- COPY public.mdl_sessions (id, state, sid, userid, sessdata, timecreated, timemodified, firstip, lastip) FROM stdin; -2 0 go7qg5ndk1hpkm9copnu9f9hcn 2 \N 1612889108 1612889205 67.182.30.218 67.182.30.218 +8 0 f17969mq2rpmvep7vhc6hhigdh 2 \N 1613081196 1613084183 67.182.30.218 67.182.30.218 \. @@ -37586,7 +36614,7 @@ COPY public.mdl_sessions (id, state, sid, userid, sessdata, timecreated, timemod -- Name: mdl_sessions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_sessions_id_seq', 2, true); +SELECT pg_catalog.setval('public.mdl_sessions_id_seq', 9, true); -- @@ -37952,6 +36980,1570 @@ COPY public.mdl_task_log (id, type, component, classname, userid, timestart, tim 26 0 tool_monitor tool_monitor\\task\\clean_events 0 1612889162.5636000000 1612889162.5643000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 16:46:02. Current memory use 45.1MB.\n... used 0 dbqueries\n... used 0.00011396408081055 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 15251 27 0 assignfeedback_editpdf assignfeedback_editpdf\\task\\convert_submissions 0 1612889162.5728000000 1612889162.5738000000 1 0 0 Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 16:46:02. Current memory use 45.2MB.\n... used 1 dbqueries\n... used 0.00043487548828125 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n dev.derekmaxson.com 15251 28 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1612889162.5822000000 1612889162.5836000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 16:46:02. Current memory use 45.2MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.0008080005645752 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 15251 +29 0 moodle core\\task\\delete_unconfirmed_users_task 0 1613080021.9495000000 1613080021.9573000000 3 0 0 Execute scheduled task: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n... started 21:47:01. Current memory use 15.9MB.\n... used 3 dbqueries\n... used 0.0048320293426514 seconds\nScheduled task complete: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n dev.derekmaxson.com 20064 +30 0 moodle core\\task\\delete_incomplete_users_task 0 1613080021.9657000000 1613080021.9662000000 0 0 0 Execute scheduled task: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n... started 21:47:01. Current memory use 16.8MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n dev.derekmaxson.com 20064 +31 0 moodle core\\task\\backup_cleanup_task 0 1613080021.9724000000 1613080021.9758000000 1 0 0 Execute scheduled task: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n... started 21:47:01. Current memory use 16.8MB.\n... used 1 dbqueries\n... used 0.0029468536376953 seconds\nScheduled task complete: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n dev.derekmaxson.com 20064 +32 0 moodle core\\task\\tag_cron_task 0 1613080021.9819000000 1613080022.0088000000 9 1 0 Execute scheduled task: Background processing for tags (core\\task\\tag_cron_task)\n... started 21:47:01. Current memory use 16.8MB.\n... used 10 dbqueries\n... used 0.02640700340271 seconds\nScheduled task complete: Background processing for tags (core\\task\\tag_cron_task)\n dev.derekmaxson.com 20064 +33 0 moodle core\\task\\context_cleanup_task 0 1613080022.0149000000 1613080022.0273000000 10 1 0 Execute scheduled task: Cleanup contexts (core\\task\\context_cleanup_task)\n... started 21:47:02. Current memory use 16.9MB.\n Cleaned up context instances\n... used 11 dbqueries\n... used 0.011847019195557 seconds\nScheduled task complete: Cleanup contexts (core\\task\\context_cleanup_task)\n dev.derekmaxson.com 20064 +34 0 moodle core\\task\\cache_cleanup_task 0 1613080022.0333000000 1613080022.0366000000 0 1 0 Execute scheduled task: Remove expired cache entries (core\\task\\cache_cleanup_task)\n... started 21:47:02. Current memory use 17MB.\n... used 1 dbqueries\n... used 0.0028519630432129 seconds\nScheduled task complete: Remove expired cache entries (core\\task\\cache_cleanup_task)\n dev.derekmaxson.com 20064 +35 0 moodle core\\task\\messaging_cleanup_task 0 1613080022.0427000000 1613080022.0524000000 1 4 0 Execute scheduled task: Background processing for messaging (core\\task\\messaging_cleanup_task)\n... started 21:47:02. Current memory use 17MB.\n... used 5 dbqueries\n... used 0.0092020034790039 seconds\nScheduled task complete: Background processing for messaging (core\\task\\messaging_cleanup_task)\n dev.derekmaxson.com 20064 +36 0 moodle core\\task\\create_contexts_task 0 1613080022.0581000000 1613080022.0622000000 20 1 0 Execute scheduled task: Create missing contexts (core\\task\\create_contexts_task)\n... started 21:47:02. Current memory use 17.5MB.\n Created missing context instances\n... used 21 dbqueries\n... used 0.0036630630493164 seconds\nScheduled task complete: Create missing contexts (core\\task\\create_contexts_task)\n dev.derekmaxson.com 20064 +37 0 moodle core\\task\\grade_history_cleanup_task 0 1613080022.0686000000 1613080022.0691000000 0 0 0 Execute scheduled task: Background processing for cleaning grade history tables (core\\task\\grade_history_cleanup_task)\n... started 21:47:02. Current memory use 17.5MB.\n... used 0 dbqueries\n... used 3.8862228393555E-5 seconds\nScheduled task complete: Background processing for cleaning grade history tables (core\\task\\grade_history_cleanup_task)\n dev.derekmaxson.com 20064 +38 0 moodle core\\task\\completion_daily_task 0 1613080022.0747000000 1613080022.0963000000 3 0 0 Execute scheduled task: Completion mark as started (core\\task\\completion_daily_task)\n... started 21:47:02. Current memory use 17.5MB.\n... used 3 dbqueries\n... used 0.02112603187561 seconds\nScheduled task complete: Completion mark as started (core\\task\\completion_daily_task)\n dev.derekmaxson.com 20064 +39 0 moodle core\\task\\check_for_updates_task 0 1613080022.1025000000 1613080022.1051000000 0 0 0 Execute scheduled task: Check for updates (core\\task\\check_for_updates_task)\n... started 21:47:02. Current memory use 17.7MB.\nRecently fetched info about available updates is still fresh enough, skipping.\n... used 0 dbqueries\n... used 0.0021529197692871 seconds\nScheduled task complete: Check for updates (core\\task\\check_for_updates_task)\n dev.derekmaxson.com 20064 +40 0 moodle core\\task\\cache_cron_task 0 1613080022.1111000000 1613080022.1119000000 0 0 0 Execute scheduled task: Background processing for caches (core\\task\\cache_cron_task)\n... started 21:47:02. Current memory use 17.8MB.\nCleaning up stale session data from cache stores.\n... used 0 dbqueries\n... used 0.00027894973754883 seconds\nScheduled task complete: Background processing for caches (core\\task\\cache_cron_task)\n dev.derekmaxson.com 20064 +41 0 moodle core\\task\\automated_backup_task 0 1613080022.1176000000 1613080022.2737000000 0 0 0 Execute scheduled task: Automated backups (core\\task\\automated_backup_task)\n... started 21:47:02. Current memory use 17.8MB.\nChecking automated backup status...INACTIVE\n... used 0 dbqueries\n... used 0.15556883811951 seconds\nScheduled task complete: Automated backups (core\\task\\automated_backup_task)\n dev.derekmaxson.com 20064 +42 0 moodle core\\task\\file_temp_cleanup_task 0 1613080022.2806000000 1613080022.2814000000 0 0 0 Execute scheduled task: Delete stale temp files (core\\task\\file_temp_cleanup_task)\n... started 21:47:02. Current memory use 37.7MB.\n... used 0 dbqueries\n... used 0.00026798248291016 seconds\nScheduled task complete: Delete stale temp files (core\\task\\file_temp_cleanup_task)\n dev.derekmaxson.com 20064 +43 0 moodle core\\task\\file_trash_cleanup_task 0 1613080022.2870000000 1613080022.2976000000 10 1 0 Execute scheduled task: Cleanup files in trash (core\\task\\file_trash_cleanup_task)\n... started 21:47:02. Current memory use 37.7MB.\nDeleting old draft files... ... started 21:47:02. Current memory use 37.8MB.\ndone.\nDeleting orphaned preview, and document conversion files... ... started 21:47:02. Current memory use 37.8MB.\ndone.\nCleaning up files from deleted contexts... ... started 21:47:02. Current memory use 37.8MB.\ndone.\nCall filesystem cron tasks.... started 21:47:02. Current memory use 37.8MB.\ndone.\n... used 11 dbqueries\n... used 0.010032892227173 seconds\nScheduled task complete: Cleanup files in trash (core\\task\\file_trash_cleanup_task)\n dev.derekmaxson.com 20064 +44 0 moodle core\\task\\search_index_task 0 1613080022.3033000000 1613080022.3058000000 0 0 0 Execute scheduled task: Global search indexing (core\\task\\search_index_task)\n... started 21:47:02. Current memory use 37.7MB.\n... used 0 dbqueries\n... used 0.0019540786743164 seconds\nScheduled task complete: Global search indexing (core\\task\\search_index_task)\n dev.derekmaxson.com 20064 +45 0 moodle core\\task\\search_optimize_task 0 1613080022.3114000000 1613080022.3119000000 0 0 0 Execute scheduled task: Global search index optimization (core\\task\\search_optimize_task)\n... started 21:47:02. Current memory use 38MB.\n... used 0 dbqueries\n... used 3.9815902709961E-5 seconds\nScheduled task complete: Global search index optimization (core\\task\\search_optimize_task)\n dev.derekmaxson.com 20064 +46 0 moodle core\\task\\stats_cron_task 0 1613080022.3172000000 1613080022.3177000000 0 0 0 Execute scheduled task: Background processing for statistics (core\\task\\stats_cron_task)\n... started 21:47:02. Current memory use 38MB.\n... used 0 dbqueries\n... used 3.9100646972656E-5 seconds\nScheduled task complete: Background processing for statistics (core\\task\\stats_cron_task)\n dev.derekmaxson.com 20064 +47 0 moodle core\\task\\password_reset_cleanup_task 0 1613080022.3236000000 1613080022.3256000000 0 1 0 Execute scheduled task: Cleanup password reset attempts (core\\task\\password_reset_cleanup_task)\n... started 21:47:02. Current memory use 38MB.\n Cleaned up old password reset records\n... used 1 dbqueries\n... used 0.001535177230835 seconds\nScheduled task complete: Cleanup password reset attempts (core\\task\\password_reset_cleanup_task)\n dev.derekmaxson.com 20064 +48 0 moodle core\\task\\complete_plans_task 0 1613080022.3310000000 1613080022.3410000000 3 0 0 Execute scheduled task: Complete learning plans which are due (core\\task\\complete_plans_task)\n... started 21:47:02. Current memory use 38.1MB.\n... used 3 dbqueries\n... used 0.0093638896942139 seconds\nScheduled task complete: Complete learning plans which are due (core\\task\\complete_plans_task)\n dev.derekmaxson.com 20064 +49 0 moodle core\\task\\sync_plans_from_template_cohorts_task 0 1613080022.3468000000 1613080022.3527000000 1 0 0 Execute scheduled task: Sync plans from learning plan template cohorts (core\\task\\sync_plans_from_template_cohorts_task)\n... started 21:47:02. Current memory use 38.8MB.\n... used 1 dbqueries\n... used 0.0054390430450439 seconds\nScheduled task complete: Sync plans from learning plan template cohorts (core\\task\\sync_plans_from_template_cohorts_task)\n dev.derekmaxson.com 20064 +50 0 moodle core_files\\task\\conversion_cleanup_task 0 1613080022.3584000000 1613080022.3615000000 1 1 0 Execute scheduled task: Cleanup of temporary records for file conversions (core_files\\task\\conversion_cleanup_task)\n... started 21:47:02. Current memory use 38.9MB.\n... used 2 dbqueries\n... used 0.0026218891143799 seconds\nScheduled task complete: Cleanup of temporary records for file conversions (core_files\\task\\conversion_cleanup_task)\n dev.derekmaxson.com 20064 +51 0 moodle core\\oauth2\\refresh_system_tokens_task 0 1613080022.3670000000 1613080022.3694000000 1 0 0 Execute scheduled task: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n... started 21:47:02. Current memory use 38.9MB.\n... used 1 dbqueries\n... used 0.0018830299377441 seconds\nScheduled task complete: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n dev.derekmaxson.com 20064 +52 0 moodle core\\task\\analytics_cleanup_task 0 1613080022.3751000000 1613080022.4157000000 28 3 0 Execute scheduled task: Analytics cleanup (core\\task\\analytics_cleanup_task)\n... started 21:47:02. Current memory use 39.1MB.\n... used 31 dbqueries\n... used 0.040173053741455 seconds\nScheduled task complete: Analytics cleanup (core\\task\\analytics_cleanup_task)\n dev.derekmaxson.com 20064 +53 0 moodle core\\task\\task_log_cleanup_task 0 1613080022.4213000000 1613080022.4225000000 2 0 0 Execute scheduled task: Cleanup of task logs (core\\task\\task_log_cleanup_task)\n... started 21:47:02. Current memory use 41MB.\n... used 2 dbqueries\n... used 0.00073695182800293 seconds\nScheduled task complete: Cleanup of task logs (core\\task\\task_log_cleanup_task)\n dev.derekmaxson.com 20064 +54 0 moodle core\\task\\antivirus_cleanup_task 0 1613080022.4283000000 1613080022.4308000000 0 1 0 Execute scheduled task: Clean up quarantined files. (core\\task\\antivirus_cleanup_task)\n... started 21:47:02. Current memory use 41MB.\n... used 1 dbqueries\n... used 0.0018329620361328 seconds\nScheduled task complete: Clean up quarantined files. (core\\task\\antivirus_cleanup_task)\n dev.derekmaxson.com 20064 +55 0 qtype_random qtype_random\\task\\remove_unused_questions 0 1613080022.4386000000 1613080022.4451000000 1 0 0 Execute scheduled task: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n... started 21:47:02. Current memory use 41.5MB.\nCleaned up 0 unused random questions.\n... used 1 dbqueries\n... used 0.0058250427246094 seconds\nScheduled task complete: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n dev.derekmaxson.com 20064 +56 0 mod_lti mod_lti\\task\\clean_access_tokens 0 1613080022.4543000000 1613080022.4566000000 0 1 0 Execute scheduled task: External tool removal of expired access tokens (mod_lti\\task\\clean_access_tokens)\n... started 21:47:02. Current memory use 41.9MB.\n... used 1 dbqueries\n... used 0.0016191005706787 seconds\nScheduled task complete: External tool removal of expired access tokens (mod_lti\\task\\clean_access_tokens)\n dev.derekmaxson.com 20064 +57 0 enrol_cohort enrol_cohort\\task\\enrol_cohort_sync 0 1613080022.4653000000 1613080022.4832000000 19 0 0 Execute scheduled task: Cohort enrolment sync task (enrol_cohort\\task\\enrol_cohort_sync)\n... started 21:47:02. Current memory use 41.5MB.\n... used 19 dbqueries\n... used 0.017320871353149 seconds\nScheduled task complete: Cohort enrolment sync task (enrol_cohort\\task\\enrol_cohort_sync)\n dev.derekmaxson.com 20064 +58 0 enrol_manual enrol_manual\\task\\sync_enrolments 0 1613080022.4916000000 1613080022.4931000000 0 0 0 Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 21:47:02. Current memory use 42.1MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00096702575683594 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n dev.derekmaxson.com 20064 +59 0 enrol_manual enrol_manual\\task\\send_expiry_notifications 0 1613080022.5000000000 1613080022.5008000000 0 0 0 Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 21:47:02. Current memory use 42.2MB.\nmanual enrolment expiry notifications were already sent today at Thursday, 11 February 2021, 6:00 AM.\n... used 0 dbqueries\n... used 0.00018620491027832 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n dev.derekmaxson.com 20064 +60 0 enrol_self enrol_self\\task\\sync_enrolments 0 1613080022.5087000000 1613080022.5151000000 6 0 0 Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 21:47:02. Current memory use 42.2MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 6 dbqueries\n... used 0.005810022354126 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n dev.derekmaxson.com 20064 +61 0 enrol_self enrol_self\\task\\send_expiry_notifications 0 1613080022.5227000000 1613080022.5234000000 0 0 0 Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 21:47:02. Current memory use 42.3MB.\nself enrolment expiry notifications were already sent today at Thursday, 11 February 2021, 6:00 AM.\n... used 0 dbqueries\n... used 0.00017499923706055 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n dev.derekmaxson.com 20064 +62 0 message_email message_email\\task\\send_email_task 0 1613080022.5314000000 1613080022.5509000000 8 0 0 Execute scheduled task: Messages digest mailings (message_email\\task\\send_email_task)\n... started 21:47:02. Current memory use 42.2MB.\n... used 8 dbqueries\n... used 0.018979072570801 seconds\nScheduled task complete: Messages digest mailings (message_email\\task\\send_email_task)\n dev.derekmaxson.com 20064 +63 0 block_recent_activity block_recent_activity\\task\\cleanup 0 1613080022.5607000000 1613080022.5628000000 0 1 0 Execute scheduled task: Cleanup task for recent activity block (block_recent_activity\\task\\cleanup)\n... started 21:47:02. Current memory use 43MB.\n... used 1 dbqueries\n... used 0.0014529228210449 seconds\nScheduled task complete: Cleanup task for recent activity block (block_recent_activity\\task\\cleanup)\n dev.derekmaxson.com 20064 +64 0 tool_analytics tool_analytics\\task\\train_models 0 1613080022.5829000000 1613080022.5843000000 1 0 0 Execute scheduled task: Train models (tool_analytics\\task\\train_models)\n... started 21:47:02. Current memory use 43.4MB.\n... used 1 dbqueries\n... used 0.00074601173400879 seconds\nScheduled task complete: Train models (tool_analytics\\task\\train_models)\n dev.derekmaxson.com 20064 +65 0 tool_analytics tool_analytics\\task\\predict_models 0 1613080022.5929000000 1613080022.6476000000 47 4 0 Execute scheduled task: Predict models (tool_analytics\\task\\predict_models)\n... started 21:47:02. Current memory use 43.4MB.\nAnalysing id "1" with "From start to end" time splitting method...\n-->Courses at risk of not starting results\nPrediction results\n!! No new elements to get predictions for. !!\n-->Students who have not accessed the course recently results\nPrediction results\n!! No new elements to get predictions for. !!\n-->Students who have not accessed the course yet results\nPrediction results\n!! No new elements to get predictions for. !!\nAnalysing id "3" with "Upcoming week" time splitting method...\n.\n.-->Upcoming activities due results\nPrediction results\n++ Prediction process finished ++\n... used 51 dbqueries\n... used 0.054188966751099 seconds\nScheduled task complete: Predict models (tool_analytics\\task\\predict_models)\n dev.derekmaxson.com 20064 +66 0 tool_cohortroles tool_cohortroles\\task\\cohort_role_sync 0 1613080022.6576000000 1613080022.6629000000 2 1 0 Execute scheduled task: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n... started 21:47:02. Current memory use 45.3MB.\nSync cohort roles...\nAdded 0\nRemoved 0\n... used 3 dbqueries\n... used 0.0040369033813477 seconds\nScheduled task complete: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n dev.derekmaxson.com 20064 +67 0 tool_dataprivacy tool_dataprivacy\\task\\expired_retention_period 0 1613080022.6729000000 1613080022.6773000000 0 0 0 Execute scheduled task: Expired retention period (tool_dataprivacy\\task\\expired_retention_period)\n... started 21:47:02. Current memory use 45.4MB.\nChecking requirements\n Requirements not met. Cannot process expired retentions.\nFlagged 0 course contexts, and 0 user contexts as expired\n... used 0 dbqueries\n... used 0.0032119750976562 seconds\nScheduled task complete: Expired retention period (tool_dataprivacy\\task\\expired_retention_period)\n dev.derekmaxson.com 20064 +68 0 tool_dataprivacy tool_dataprivacy\\task\\delete_expired_contexts 0 1613080022.6869000000 1613080022.6880000000 0 0 0 Execute scheduled task: Delete expired contexts (tool_dataprivacy\\task\\delete_expired_contexts)\n... started 21:47:02. Current memory use 45.6MB.\nChecking requirements\n Requirements not met. Cannot process expired retentions.\nProcessed deletions for 0 course contexts, and 0 user contexts as expired\n... used 0 dbqueries\n... used 7.9870223999023E-5 seconds\nScheduled task complete: Delete expired contexts (tool_dataprivacy\\task\\delete_expired_contexts)\n dev.derekmaxson.com 20064 +69 0 tool_dataprivacy tool_dataprivacy\\task\\delete_expired_requests 0 1613080022.6973000000 1613080022.7059000000 1 0 0 Execute scheduled task: Delete expired data request export files (tool_dataprivacy\\task\\delete_expired_requests)\n... started 21:47:02. Current memory use 45.6MB.\n... used 1 dbqueries\n... used 0.0077178478240967 seconds\nScheduled task complete: Delete expired data request export files (tool_dataprivacy\\task\\delete_expired_requests)\n dev.derekmaxson.com 20064 +70 0 tool_langimport tool_langimport\\task\\update_langpacks_task 0 1613080022.7141000000 1613080024.1945000000 0 0 0 Execute scheduled task: Update all installed language packs (tool_langimport\\task\\update_langpacks_task)\n... started 21:47:02. Current memory use 45.8MB.\nAll your language packs are up to date, no update is needed\n... used 0 dbqueries\n... used 1.4794428348541 seconds\nScheduled task complete: Update all installed language packs (tool_langimport\\task\\update_langpacks_task)\n dev.derekmaxson.com 20064 +71 0 tool_messageinbound tool_messageinbound\\task\\cleanup_task 0 1613080024.2043000000 1613080024.2085000000 0 1 0 Execute scheduled task: Cleanup of unverified incoming email (tool_messageinbound\\task\\cleanup_task)\n... started 21:47:04. Current memory use 45.9MB.\nInbound Message not fully configured - exiting early.\n... used 1 dbqueries\n... used 0.0034229755401611 seconds\nScheduled task complete: Cleanup of unverified incoming email (tool_messageinbound\\task\\cleanup_task)\n dev.derekmaxson.com 20064 +72 0 tool_monitor tool_monitor\\task\\check_subscriptions 0 1613080024.2178000000 1613080024.2186000000 0 0 0 Execute scheduled task: Activate/deactivate invalid rule subscriptions (tool_monitor\\task\\check_subscriptions)\n... started 21:47:04. Current memory use 46.1MB.\n... used 0 dbqueries\n... used 0.00012397766113281 seconds\nScheduled task complete: Activate/deactivate invalid rule subscriptions (tool_monitor\\task\\check_subscriptions)\n dev.derekmaxson.com 20064 +73 0 tool_recyclebin tool_recyclebin\\task\\cleanup_course_bin 0 1613080024.2271000000 1613080024.2322000000 3 0 0 Execute scheduled task: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n... started 21:47:04. Current memory use 46.1MB.\n... used 3 dbqueries\n... used 0.0041890144348145 seconds\nScheduled task complete: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n dev.derekmaxson.com 20064 +74 0 tool_recyclebin tool_recyclebin\\task\\cleanup_category_bin 0 1613080024.2407000000 1613080024.2451000000 3 0 0 Execute scheduled task: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n... started 21:47:04. Current memory use 46.1MB.\n... used 3 dbqueries\n... used 0.0034739971160889 seconds\nScheduled task complete: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n dev.derekmaxson.com 20064 +75 0 ltiservice_gradebookservices ltiservice_gradebookservices\\task\\cleanup_task 0 1613080024.2570000000 1613080024.2718000000 0 1 0 Execute scheduled task: LTI Assignment and Grade Services table cleanup (ltiservice_gradebookservices\\task\\cleanup_task)\n... started 21:47:04. Current memory use 46.1MB.\n... used 1 dbqueries\n... used 0.01381516456604 seconds\nScheduled task complete: LTI Assignment and Grade Services table cleanup (ltiservice_gradebookservices\\task\\cleanup_task)\n dev.derekmaxson.com 20064 +76 0 quiz_statistics quiz_statistics\\task\\quiz_statistics_cleanup 0 1613080024.2808000000 1613080024.2825000000 0 1 0 Execute scheduled task: Clean up old quiz statistics cache records (quiz_statistics\\task\\quiz_statistics_cleanup)\n... started 21:47:04. Current memory use 47.1MB.\n... used 1 dbqueries\n... used 0.0010161399841309 seconds\nScheduled task complete: Clean up old quiz statistics cache records (quiz_statistics\\task\\quiz_statistics_cleanup)\n dev.derekmaxson.com 20064 +77 0 logstore_standard logstore_standard\\task\\cleanup_task 0 1613080024.2957000000 1613080024.2968000000 0 0 0 Execute scheduled task: Log table cleanup (logstore_standard\\task\\cleanup_task)\n... started 21:47:04. Current memory use 47.1MB.\n... used 0 dbqueries\n... used 0.00011920928955078 seconds\nScheduled task complete: Log table cleanup (logstore_standard\\task\\cleanup_task)\n dev.derekmaxson.com 20064 +78 0 moodle core\\task\\session_cleanup_task 0 1613080024.3053000000 1613080024.3223000000 18 2 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 21:47:04. Current memory use 47.3MB.\n... used 20 dbqueries\n... used 0.014991044998169 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 20064 +79 0 moodle core\\task\\send_new_user_passwords_task 0 1613080024.3306000000 1613080024.3319000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 21:47:04. Current memory use 47.5MB.\n... used 1 dbqueries\n... used 0.00034999847412109 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 20064 +80 0 moodle core\\task\\send_failed_login_notifications_task 0 1613080024.3407000000 1613080024.3418000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 21:47:04. Current memory use 47.5MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 20064 +81 0 moodle core\\task\\legacy_plugin_cron_task 0 1613080024.3503000000 1613080024.3657000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 21:47:04. Current memory use 47.5MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.014342069625854 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 20064 +82 0 moodle core\\task\\grade_cron_task 0 1613080024.3743000000 1613080024.3803000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 21:47:04. Current memory use 48.7MB.\n... used 6 dbqueries\n... used 0.0049149990081787 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 20064 +83 0 moodle core\\task\\completion_regular_task 0 1613080024.3888000000 1613080024.4174000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 21:47:04. Current memory use 48.7MB.\n... used 18 dbqueries\n... used 0.027596950531006 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 20064 +84 0 moodle core\\task\\portfolio_cron_task 0 1613080024.4255000000 1613080024.4266000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 21:47:04. Current memory use 48.9MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 20064 +85 0 moodle core\\task\\plagiarism_cron_task 0 1613080024.4351000000 1613080024.4361000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 21:47:04. Current memory use 49MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 20064 +86 0 moodle core\\task\\calendar_cron_task 0 1613080024.4445000000 1613080024.4497000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 21:47:04. Current memory use 49MB.\n... used 1 dbqueries\n... used 0.0042300224304199 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 20064 +87 0 moodle core\\task\\blog_cron_task 0 1613080024.4673000000 1613080024.4745000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 21:47:04. Current memory use 49.4MB.\n... used 2 dbqueries\n... used 0.0061180591583252 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 20064 +88 0 moodle core\\task\\question_preview_cleanup_task 0 1613080024.4840000000 1613080024.4959000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 21:47:04. Current memory use 49.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.010902166366577 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 20064 +89 0 moodle core\\task\\question_stats_cleanup_task 0 1613080024.5060000000 1613080024.5100000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 21:47:04. Current memory use 49.6MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.002918004989624 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 20064 +90 0 moodle core\\task\\badges_cron_task 0 1613080024.5192000000 1613080024.5267000000 1 0 0 Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 21:47:04. Current memory use 49.6MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0065059661865234 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n dev.derekmaxson.com 20064 +91 0 moodle core\\task\\badges_message_task 0 1613080024.5376000000 1613080024.5393000000 1 0 0 Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 21:47:04. Current memory use 50MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00057578086853027 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n dev.derekmaxson.com 20064 +92 0 mod_assign mod_assign\\task\\cron_task 0 1613080024.5494000000 1613080024.5693000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 21:47:04. Current memory use 50.1MB.\n... used 3 dbqueries\n... used 0.018461942672729 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 20064 +93 0 mod_chat mod_chat\\task\\cron_task 0 1613080024.5776000000 1613080024.5878000000 2 2 0 Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 21:47:04. Current memory use 50.6MB.\n... used 4 dbqueries\n... used 0.0090031623840332 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n dev.derekmaxson.com 20064 +94 0 mod_forum mod_forum\\task\\cron_task 0 1613080024.5969000000 1613080024.6082000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 21:47:04. Current memory use 50.8MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0098350048065186 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 20064 +95 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613080024.6237000000 1613080024.6360000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 21:47:04. Current memory use 51.7MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.010682106018066 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 20064 +96 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613080024.6445000000 1613080024.6457000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 21:47:04. Current memory use 51.8MB.\n... used 0 dbqueries\n... used 9.1075897216797E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 20064 +97 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613080024.6538000000 1613080024.6564000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 21:47:04. Current memory use 51.8MB.\n... used 0 dbqueries\n... used 9.2983245849609E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 20064 +98 0 mod_scorm mod_scorm\\task\\cron_task 0 1613080024.6664000000 1613080024.6713000000 0 0 0 Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 21:47:04. Current memory use 51.8MB.\n... used 0 dbqueries\n... used 0.0035009384155273 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n dev.derekmaxson.com 20064 +99 0 mod_workshop mod_workshop\\task\\cron_task 0 1613080024.6802000000 1613080024.6832000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 21:47:04. Current memory use 51.9MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.0016689300537109 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 20064 +100 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613080024.6916000000 1613080024.6927000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 21:47:04. Current memory use 51.9MB.\n... used 0 dbqueries\n... used 8.8930130004883E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 20064 +101 0 block_rss_client block_rss_client\\task\\refreshfeeds 0 1613080024.7009000000 1613080024.7120000000 3 0 0 Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 21:47:04. Current memory use 51.9MB.\n\n0 feeds refreshed (took 0.002054 seconds)\n... used 3 dbqueries\n... used 0.010004997253418 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n dev.derekmaxson.com 20064 +102 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613080024.7210000000 1613080024.7221000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 21:47:04. Current memory use 55.1MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 4.8160552978516E-5 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 20064 +103 0 tool_monitor tool_monitor\\task\\clean_events 0 1613080024.7306000000 1613080024.7317000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 21:47:04. Current memory use 55.2MB.\n... used 0 dbqueries\n... used 5.1975250244141E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 20064 +104 0 assignfeedback_editpdf assignfeedback_editpdf\\task\\convert_submissions 0 1613080024.7400000000 1613080024.7426000000 1 0 0 Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 21:47:04. Current memory use 55.1MB.\n... used 1 dbqueries\n... used 0.0015668869018555 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n dev.derekmaxson.com 20064 +105 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613080024.7508000000 1613080024.7535000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 21:47:04. Current memory use 55.2MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.0016319751739502 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 20064 +106 0 moodle core\\task\\session_cleanup_task 0 1613080082.0928000000 1613080082.1097000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 21:48:02. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.012383937835693 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 20458 +107 0 moodle core\\task\\send_new_user_passwords_task 0 1613080082.1185000000 1613080082.1197000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 21:48:02. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00056314468383789 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 20458 +108 0 moodle core\\task\\send_failed_login_notifications_task 0 1613080082.1281000000 1613080082.1288000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 21:48:02. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.3869018554688E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 20458 +109 0 moodle core\\task\\legacy_plugin_cron_task 0 1613080082.1374000000 1613080082.1977000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 21:48:02. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.05964183807373 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 20458 +110 0 moodle core\\task\\grade_cron_task 0 1613080082.2068000000 1613080082.2099000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 21:48:02. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025138854980469 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 20458 +111 0 moodle core\\task\\completion_regular_task 0 1613080082.2191000000 1613080082.2532000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 21:48:02. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.033414125442505 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 20458 +112 0 moodle core\\task\\portfolio_cron_task 0 1613080082.2635000000 1613080082.2642000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 21:48:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.6968460083008E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 20458 +113 0 moodle core\\task\\plagiarism_cron_task 0 1613080082.2746000000 1613080082.2752000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 21:48:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 20458 +114 0 moodle core\\task\\calendar_cron_task 0 1613080082.2912000000 1613080082.2985000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 21:48:02. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0066919326782227 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 20458 +115 0 moodle core\\task\\blog_cron_task 0 1613080082.3081000000 1613080082.3135000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 21:48:02. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0046629905700684 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 20458 +116 0 moodle core\\task\\question_preview_cleanup_task 0 1613080082.3248000000 1613080082.3420000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 21:48:02. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016517877578735 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 20458 +117 0 moodle core\\task\\question_stats_cleanup_task 0 1613080082.3597000000 1613080082.3616000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 21:48:02. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012280941009521 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 20458 +118 0 mod_assign mod_assign\\task\\cron_task 0 1613080082.3815000000 1613080082.4163000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 21:48:02. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.033918142318726 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 20458 +119 0 mod_forum mod_forum\\task\\cron_task 0 1613080082.4401000000 1613080082.4426000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 21:48:02. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015480518341064 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 20458 +120 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613080082.4627000000 1613080082.4694000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 21:48:02. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0058891773223877 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 20458 +121 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613080082.4779000000 1613080082.4789000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 21:48:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.4175338745117E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 20458 +122 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613080082.4876000000 1613080082.4885000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 21:48:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.702278137207E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 20458 +123 0 mod_workshop mod_workshop\\task\\cron_task 0 1613080082.4971000000 1613080082.4986000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 21:48:02. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00068807601928711 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 20458 +124 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613080082.5072000000 1613080082.5082000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 21:48:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2029571533203E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 20458 +125 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613080082.5212000000 1613080082.5237000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 21:48:02. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0019161701202393 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 20458 +126 0 tool_monitor tool_monitor\\task\\clean_events 0 1613080082.5395000000 1613080082.5402000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 21:48:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00012087821960449 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 20458 +127 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613080082.5589000000 1613080082.5603000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 21:48:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.0007932186126709 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 20458 +128 0 moodle core\\task\\session_cleanup_task 0 1613080141.7548000000 1613080141.7690000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 21:49:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011128902435303 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 20499 +129 0 moodle core\\task\\send_new_user_passwords_task 0 1613080141.7782000000 1613080141.7794000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 21:49:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00058603286743164 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 20499 +130 0 moodle core\\task\\send_failed_login_notifications_task 0 1613080141.7883000000 1613080141.7890000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 21:49:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 20499 +131 0 moodle core\\task\\legacy_plugin_cron_task 0 1613080141.7974000000 1613080141.8410000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 21:49:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.042974948883057 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 20499 +132 0 moodle core\\task\\grade_cron_task 0 1613080141.8495000000 1613080141.8527000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 21:49:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025420188903809 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 20499 +133 0 moodle core\\task\\completion_regular_task 0 1613080141.8615000000 1613080141.8869000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 21:49:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024730920791626 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 20499 +134 0 moodle core\\task\\portfolio_cron_task 0 1613080141.8954000000 1613080141.8961000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 21:49:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 20499 +135 0 moodle core\\task\\plagiarism_cron_task 0 1613080141.9047000000 1613080141.9053000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 21:49:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 20499 +136 0 moodle core\\task\\calendar_cron_task 0 1613080141.9182000000 1613080141.9222000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 21:49:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033338069915771 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 20499 +137 0 moodle core\\task\\blog_cron_task 0 1613080141.9306000000 1613080141.9346000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 21:49:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0033841133117676 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 20499 +138 0 moodle core\\task\\question_preview_cleanup_task 0 1613080141.9432000000 1613080141.9602000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 21:49:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016395092010498 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 20499 +139 0 moodle core\\task\\question_stats_cleanup_task 0 1613080141.9683000000 1613080141.9702000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 21:49:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011928081512451 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 20499 +140 0 mod_assign mod_assign\\task\\cron_task 0 1613080141.9822000000 1613080142.0146000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 21:49:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031410932540894 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 20499 +141 0 mod_forum mod_forum\\task\\cron_task 0 1613080142.0334000000 1613080142.0357000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 21:49:02. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014870166778564 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 20499 +173 0 mod_assign mod_assign\\task\\cron_task 0 1613080201.8650000000 1613080201.8784000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 21:50:01. Current memory use 41.8MB.\n... used 3 dbqueries\n... used 0.012362003326416 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 20515 +142 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613080142.0536000000 1613080142.0605000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 21:49:02. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0059440135955811 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 20499 +143 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613080142.0696000000 1613080142.0706000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 21:49:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.1075897216797E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 20499 +144 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613080142.0788000000 1613080142.0797000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 21:49:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.702278137207E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 20499 +145 0 mod_workshop mod_workshop\\task\\cron_task 0 1613080142.0884000000 1613080142.0899000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 21:49:02. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00068092346191406 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 20499 +146 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613080142.0978000000 1613080142.0988000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 21:49:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 20499 +147 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613080142.1099000000 1613080142.1119000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 21:49:02. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.001460075378418 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 20499 +148 0 tool_monitor tool_monitor\\task\\clean_events 0 1613080142.1205000000 1613080142.1212000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 21:49:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011801719665527 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 20499 +149 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613080142.1296000000 1613080142.1310000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 21:49:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00079703330993652 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 20499 +150 0 moodle core\\task\\cache_cron_task 0 1613080201.3215000000 1613080201.3290000000 0 0 0 Execute scheduled task: Background processing for caches (core\\task\\cache_cron_task)\n... started 21:50:01. Current memory use 16.8MB.\nCleaning up stale session data from cache stores.\n... used 0 dbqueries\n... used 0.0043032169342041 seconds\nScheduled task complete: Background processing for caches (core\\task\\cache_cron_task)\n dev.derekmaxson.com 20515 +151 0 moodle core\\task\\automated_backup_task 0 1613080201.3392000000 1613080201.5674000000 0 0 0 Execute scheduled task: Automated backups (core\\task\\automated_backup_task)\n... started 21:50:01. Current memory use 17.7MB.\nChecking automated backup status...INACTIVE\n... used 0 dbqueries\n... used 0.22753810882568 seconds\nScheduled task complete: Automated backups (core\\task\\automated_backup_task)\n dev.derekmaxson.com 20515 +152 0 enrol_manual enrol_manual\\task\\sync_enrolments 0 1613080201.5768000000 1613080201.5785000000 0 0 0 Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 21:50:01. Current memory use 37.6MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00099492073059082 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n dev.derekmaxson.com 20515 +153 0 enrol_manual enrol_manual\\task\\send_expiry_notifications 0 1613080201.5873000000 1613080201.5882000000 0 0 0 Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 21:50:01. Current memory use 37.7MB.\nmanual enrolment expiry notifications were already sent today at Thursday, 11 February 2021, 6:00 AM.\n... used 0 dbqueries\n... used 0.00018882751464844 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n dev.derekmaxson.com 20515 +154 0 enrol_self enrol_self\\task\\sync_enrolments 0 1613080201.5969000000 1613080201.6021000000 6 0 0 Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 21:50:01. Current memory use 37.7MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 6 dbqueries\n... used 0.0044710636138916 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n dev.derekmaxson.com 20515 +155 0 enrol_self enrol_self\\task\\send_expiry_notifications 0 1613080201.6112000000 1613080201.6120000000 0 0 0 Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 21:50:01. Current memory use 37.9MB.\nself enrolment expiry notifications were already sent today at Thursday, 11 February 2021, 6:00 AM.\n... used 0 dbqueries\n... used 0.00017285346984863 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n dev.derekmaxson.com 20515 +156 0 moodle core\\task\\badges_cron_task 0 1613080201.6212000000 1613080201.6258000000 1 0 0 Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 21:50:01. Current memory use 37.9MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0040161609649658 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n dev.derekmaxson.com 20515 +157 0 moodle core\\task\\badges_message_task 0 1613080201.6350000000 1613080201.6363000000 1 0 0 Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 21:50:01. Current memory use 38.2MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.000579833984375 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n dev.derekmaxson.com 20515 +158 0 mod_chat mod_chat\\task\\cron_task 0 1613080201.6484000000 1613080201.6512000000 2 2 0 Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 21:50:01. Current memory use 39.2MB.\n... used 4 dbqueries\n... used 0.0019919872283936 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n dev.derekmaxson.com 20515 +159 0 mod_scorm mod_scorm\\task\\cron_task 0 1613080201.6596000000 1613080201.6673000000 2 1 0 Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 21:50:01. Current memory use 39.2MB.\nUpdating scorm packages which require daily update\n... used 3 dbqueries\n... used 0.0068659782409668 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n dev.derekmaxson.com 20515 +160 0 block_rss_client block_rss_client\\task\\refreshfeeds 0 1613080201.6788000000 1613080201.6859000000 3 0 0 Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 21:50:01. Current memory use 38.3MB.\n\n0 feeds refreshed (took 0.00070099999999995 seconds)\n... used 3 dbqueries\n... used 0.0065598487854004 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n dev.derekmaxson.com 20515 +161 0 moodle core\\task\\session_cleanup_task 0 1613080201.6947000000 1613080201.7031000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 21:50:01. Current memory use 39.2MB.\n... used 19 dbqueries\n... used 0.0070071220397949 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 20515 +162 0 moodle core\\task\\send_new_user_passwords_task 0 1613080201.7117000000 1613080201.7129000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 21:50:01. Current memory use 39.5MB.\n... used 1 dbqueries\n... used 0.0005650520324707 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 20515 +163 0 moodle core\\task\\send_failed_login_notifications_task 0 1613080201.7218000000 1613080201.7225000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 21:50:01. Current memory use 39.5MB.\n... used 0 dbqueries\n... used 7.2956085205078E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 20515 +164 0 moodle core\\task\\legacy_plugin_cron_task 0 1613080201.7309000000 1613080201.7446000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 21:50:01. Current memory use 39.6MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.013100862503052 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 20515 +165 0 moodle core\\task\\grade_cron_task 0 1613080201.7532000000 1613080201.7564000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 21:50:01. Current memory use 40.8MB.\n... used 6 dbqueries\n... used 0.0026450157165527 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 20515 +166 0 moodle core\\task\\completion_regular_task 0 1613080201.7654000000 1613080201.7890000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 21:50:01. Current memory use 40.8MB.\n... used 18 dbqueries\n... used 0.022942066192627 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 20515 +167 0 moodle core\\task\\portfolio_cron_task 0 1613080201.7977000000 1613080201.7983000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 21:50:01. Current memory use 41MB.\n... used 0 dbqueries\n... used 4.3153762817383E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 20515 +168 0 moodle core\\task\\plagiarism_cron_task 0 1613080201.8065000000 1613080201.8071000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 21:50:01. Current memory use 41.1MB.\n... used 0 dbqueries\n... used 4.1007995605469E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 20515 +169 0 moodle core\\task\\calendar_cron_task 0 1613080201.8159000000 1613080201.8200000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 21:50:01. Current memory use 41.1MB.\n... used 1 dbqueries\n... used 0.0034859180450439 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 20515 +170 0 moodle core\\task\\blog_cron_task 0 1613080201.8285000000 1613080201.8326000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 21:50:01. Current memory use 41.5MB.\n... used 2 dbqueries\n... used 0.0035068988800049 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 20515 +171 0 moodle core\\task\\question_preview_cleanup_task 0 1613080201.8410000000 1613080201.8463000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 21:50:01. Current memory use 41.7MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.0046799182891846 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 20515 +172 0 moodle core\\task\\question_stats_cleanup_task 0 1613080201.8550000000 1613080201.8568000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 21:50:01. Current memory use 41.7MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011909008026123 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 20515 +174 0 mod_forum mod_forum\\task\\cron_task 0 1613080201.8882000000 1613080201.8908000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 21:50:01. Current memory use 42.6MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.001492977142334 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 20515 +175 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613080201.9071000000 1613080201.9141000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 21:50:01. Current memory use 43.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0057251453399658 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 20515 +176 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613080201.9224000000 1613080201.9232000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 21:50:01. Current memory use 43.5MB.\n... used 0 dbqueries\n... used 8.9168548583984E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 20515 +177 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613080201.9319000000 1613080201.9327000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 21:50:01. Current memory use 43.5MB.\n... used 0 dbqueries\n... used 8.9168548583984E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 20515 +178 0 mod_workshop mod_workshop\\task\\cron_task 0 1613080201.9415000000 1613080201.9432000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 21:50:01. Current memory use 43.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.0006868839263916 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 20515 +179 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613080201.9516000000 1613080201.9524000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 21:50:01. Current memory use 43.6MB.\n... used 0 dbqueries\n... used 8.702278137207E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 20515 +180 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613080201.9638000000 1613080201.9658000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 21:50:01. Current memory use 43.5MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.001431941986084 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 20515 +181 0 tool_monitor tool_monitor\\task\\clean_events 0 1613080201.9748000000 1613080201.9756000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 21:50:01. Current memory use 43.6MB.\n... used 0 dbqueries\n... used 0.00010895729064941 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 20515 +182 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613080201.9842000000 1613080201.9856000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 21:50:01. Current memory use 43.6MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00077700614929199 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 20515 +183 0 moodle core\\task\\session_cleanup_task 0 1613080261.1809000000 1613080261.1952000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 21:51:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011242866516113 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 20531 +184 0 moodle core\\task\\send_new_user_passwords_task 0 1613080261.2041000000 1613080261.2053000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 21:51:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00057506561279297 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 20531 +185 0 moodle core\\task\\send_failed_login_notifications_task 0 1613080261.2137000000 1613080261.2144000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 21:51:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.3869018554688E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 20531 +186 0 moodle core\\task\\legacy_plugin_cron_task 0 1613080261.2224000000 1613080261.2663000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 21:51:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043255090713501 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 20531 +187 0 moodle core\\task\\grade_cron_task 0 1613080261.2747000000 1613080261.2779000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 21:51:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025138854980469 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 20531 +188 0 moodle core\\task\\completion_regular_task 0 1613080261.2861000000 1613080261.3114000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 21:51:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024621963500977 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 20531 +205 0 moodle core\\task\\session_cleanup_task 0 1613080321.7426000000 1613080321.7566000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 21:52:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011051177978516 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 20552 +189 0 moodle core\\task\\portfolio_cron_task 0 1613080261.3194000000 1613080261.3201000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 21:51:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.3869018554688E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 20531 +190 0 moodle core\\task\\plagiarism_cron_task 0 1613080261.3283000000 1613080261.3290000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 21:51:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 20531 +191 0 moodle core\\task\\calendar_cron_task 0 1613080261.3419000000 1613080261.3459000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 21:51:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033121109008789 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 20531 +192 0 moodle core\\task\\blog_cron_task 0 1613080261.3542000000 1613080261.3582000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 21:51:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.003338098526001 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 20531 +193 0 moodle core\\task\\question_preview_cleanup_task 0 1613080261.3664000000 1613080261.3834000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 21:51:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016382932662964 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 20531 +194 0 moodle core\\task\\question_stats_cleanup_task 0 1613080261.3919000000 1613080261.3937000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 21:51:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011980533599854 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 20531 +195 0 mod_assign mod_assign\\task\\cron_task 0 1613080261.4066000000 1613080261.4391000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 21:51:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031575202941895 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 20531 +196 0 mod_forum mod_forum\\task\\cron_task 0 1613080261.4576000000 1613080261.4601000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 21:51:01. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015060901641846 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 20531 +197 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613080261.4783000000 1613080261.4852000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 21:51:01. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0059590339660645 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 20531 +198 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613080261.4939000000 1613080261.4949000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 21:51:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2983245849609E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 20531 +199 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613080261.5032000000 1613080261.5041000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 21:51:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 20531 +200 0 mod_workshop mod_workshop\\task\\cron_task 0 1613080261.5119000000 1613080261.5135000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 21:51:01. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00067996978759766 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 20531 +201 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613080261.5213000000 1613080261.5223000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 21:51:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 20531 +202 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613080261.5329000000 1613080261.5349000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 21:51:01. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014519691467285 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 20531 +203 0 tool_monitor tool_monitor\\task\\clean_events 0 1613080261.5431000000 1613080261.5438000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 21:51:01. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011205673217773 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 20531 +204 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613080261.5520000000 1613080261.5533000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 21:51:01. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00078105926513672 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 20531 +206 0 moodle core\\task\\send_new_user_passwords_task 0 1613080321.7705000000 1613080321.7718000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 21:52:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00064277648925781 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 20552 +207 0 moodle core\\task\\send_failed_login_notifications_task 0 1613080321.7821000000 1613080321.7828000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 21:52:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.3869018554688E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 20552 +208 0 moodle core\\task\\legacy_plugin_cron_task 0 1613080321.7915000000 1613080321.8358000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 21:52:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043661832809448 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 20552 +209 0 moodle core\\task\\grade_cron_task 0 1613080321.8444000000 1613080321.8476000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 21:52:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.002532958984375 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 20552 +210 0 moodle core\\task\\completion_regular_task 0 1613080321.8561000000 1613080321.8817000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 21:52:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024976015090942 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 20552 +211 0 moodle core\\task\\portfolio_cron_task 0 1613080321.8900000000 1613080321.8907000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 21:52:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.3869018554688E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 20552 +212 0 moodle core\\task\\plagiarism_cron_task 0 1613080321.8990000000 1613080321.8997000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 21:52:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.6014785766602E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 20552 +213 0 moodle core\\task\\calendar_cron_task 0 1613080321.9127000000 1613080321.9168000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 21:52:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033669471740723 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 20552 +214 0 moodle core\\task\\blog_cron_task 0 1613080321.9249000000 1613080321.9289000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 21:52:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0034110546112061 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 20552 +215 0 moodle core\\task\\question_preview_cleanup_task 0 1613080321.9370000000 1613080321.9542000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 21:52:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016515970230103 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 20552 +216 0 moodle core\\task\\question_stats_cleanup_task 0 1613080321.9625000000 1613080321.9644000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 21:52:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012011528015137 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 20552 +217 0 mod_assign mod_assign\\task\\cron_task 0 1613080321.9766000000 1613080322.0091000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 21:52:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031614065170288 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 20552 +218 0 mod_forum mod_forum\\task\\cron_task 0 1613080322.0282000000 1613080322.0306000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 21:52:02. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015029907226562 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 20552 +219 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613080322.0489000000 1613080322.0557000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 21:52:02. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0058689117431641 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 20552 +220 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613080322.0643000000 1613080322.0653000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 21:52:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.1075897216797E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 20552 +221 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613080322.0736000000 1613080322.0746000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 21:52:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 20552 +222 0 mod_workshop mod_workshop\\task\\cron_task 0 1613080322.0831000000 1613080322.0847000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 21:52:02. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00068306922912598 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 20552 +223 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613080322.0929000000 1613080322.0939000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 21:52:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2029571533203E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 20552 +224 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613080322.1045000000 1613080322.1065000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 21:52:02. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014340877532959 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 20552 +225 0 tool_monitor tool_monitor\\task\\clean_events 0 1613080322.1151000000 1613080322.1158000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 21:52:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011515617370605 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 20552 +226 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613080322.1241000000 1613080322.1255000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 21:52:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00077199935913086 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 20552 +227 0 moodle core\\task\\session_cleanup_task 0 1613080381.3153000000 1613080381.3295000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 21:53:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011168956756592 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 20570 +228 0 moodle core\\task\\send_new_user_passwords_task 0 1613080381.3379000000 1613080381.3391000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 21:53:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00057888031005859 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 20570 +229 0 moodle core\\task\\send_failed_login_notifications_task 0 1613080381.3473000000 1613080381.3480000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 21:53:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.3869018554688E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 20570 +230 0 moodle core\\task\\legacy_plugin_cron_task 0 1613080381.3570000000 1613080381.4008000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 21:53:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043145895004272 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 20570 +231 0 moodle core\\task\\grade_cron_task 0 1613080381.4093000000 1613080381.4125000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 21:53:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025250911712646 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 20570 +232 0 moodle core\\task\\completion_regular_task 0 1613080381.4214000000 1613080381.4467000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 21:53:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024695873260498 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 20570 +233 0 moodle core\\task\\portfolio_cron_task 0 1613080381.4556000000 1613080381.4563000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 21:53:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.3153762817383E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 20570 +234 0 moodle core\\task\\plagiarism_cron_task 0 1613080381.4643000000 1613080381.4650000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 21:53:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 20570 +235 0 moodle core\\task\\calendar_cron_task 0 1613080381.4782000000 1613080381.4822000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 21:53:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0032958984375 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 20570 +236 0 moodle core\\task\\blog_cron_task 0 1613080381.4902000000 1613080381.4943000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 21:53:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0033969879150391 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 20570 +237 0 moodle core\\task\\question_preview_cleanup_task 0 1613080381.5022000000 1613080381.5198000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 21:53:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016877889633179 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 20570 +238 0 moodle core\\task\\question_stats_cleanup_task 0 1613080381.5279000000 1613080381.5297000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 21:53:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011980533599854 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 20570 +239 0 mod_assign mod_assign\\task\\cron_task 0 1613080381.5427000000 1613080381.5750000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 21:53:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031447887420654 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 20570 +240 0 mod_forum mod_forum\\task\\cron_task 0 1613080381.5937000000 1613080381.5961000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 21:53:01. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015039443969727 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 20570 +241 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613080381.6135000000 1613080381.6203000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 21:53:01. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0059130191802979 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 20570 +242 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613080381.6283000000 1613080381.6292000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 21:53:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.0122222900391E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 20570 +243 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613080381.6371000000 1613080381.6380000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 21:53:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.8930130004883E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 20570 +244 0 mod_workshop mod_workshop\\task\\cron_task 0 1613080381.6468000000 1613080381.6483000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 21:53:01. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00068283081054688 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 20570 +245 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613080381.6562000000 1613080381.6572000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 21:53:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.702278137207E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 20570 +246 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613080381.6683000000 1613080381.6703000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 21:53:01. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014150142669678 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 20570 +247 0 tool_monitor tool_monitor\\task\\clean_events 0 1613080381.6784000000 1613080381.6791000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 21:53:01. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011205673217773 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 20570 +248 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613080381.6870000000 1613080381.6883000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 21:53:01. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00079894065856934 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 20570 +249 0 moodle core\\task\\session_cleanup_task 0 1613080441.8764000000 1613080441.8904000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 21:54:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.010968923568726 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 20584 +250 0 moodle core\\task\\send_new_user_passwords_task 0 1613080441.8992000000 1613080441.9005000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 21:54:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00059986114501953 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 20584 +251 0 moodle core\\task\\send_failed_login_notifications_task 0 1613080441.9104000000 1613080441.9111000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 21:54:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 20584 +252 0 moodle core\\task\\legacy_plugin_cron_task 0 1613080441.9195000000 1613080441.9628000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 21:54:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.042731046676636 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 20584 +253 0 moodle core\\task\\grade_cron_task 0 1613080441.9710000000 1613080441.9741000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 21:54:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0024800300598145 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 20584 +254 0 moodle core\\task\\completion_regular_task 0 1613080441.9823000000 1613080442.0074000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 21:54:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024463176727295 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 20584 +255 0 moodle core\\task\\portfolio_cron_task 0 1613080442.0155000000 1613080442.0162000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 21:54:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.3869018554688E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 20584 +256 0 moodle core\\task\\plagiarism_cron_task 0 1613080442.0240000000 1613080442.0247000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 21:54:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.1007995605469E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 20584 +257 0 moodle core\\task\\calendar_cron_task 0 1613080442.0376000000 1613080442.0415000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 21:54:02. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0032529830932617 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 20584 +258 0 moodle core\\task\\blog_cron_task 0 1613080442.0498000000 1613080442.0538000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 21:54:02. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0033590793609619 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 20584 +259 0 moodle core\\task\\question_preview_cleanup_task 0 1613080442.0616000000 1613080442.0785000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 21:54:02. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.01619815826416 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 20584 +260 0 moodle core\\task\\question_stats_cleanup_task 0 1613080442.0881000000 1613080442.0900000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 21:54:02. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012140274047852 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 20584 +261 0 mod_assign mod_assign\\task\\cron_task 0 1613080442.1036000000 1613080442.1355000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 21:54:02. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.03101921081543 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 20584 +262 0 mod_forum mod_forum\\task\\cron_task 0 1613080442.1539000000 1613080442.1562000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 21:54:02. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014448165893555 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 20584 +263 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613080442.1732000000 1613080442.1799000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 21:54:02. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.005791187286377 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 20584 +264 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613080442.1880000000 1613080442.1890000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 21:54:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.1075897216797E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 20584 +265 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613080442.1969000000 1613080442.1979000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 21:54:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.8930130004883E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 20584 +266 0 mod_workshop mod_workshop\\task\\cron_task 0 1613080442.2056000000 1613080442.2072000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 21:54:02. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00068187713623047 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 20584 +267 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613080442.2150000000 1613080442.2160000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 21:54:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.8930130004883E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 20584 +268 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613080442.2267000000 1613080442.2286000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 21:54:02. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014030933380127 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 20584 +269 0 tool_monitor tool_monitor\\task\\clean_events 0 1613080442.2368000000 1613080442.2374000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 21:54:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00010895729064941 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 20584 +270 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613080442.2455000000 1613080442.2469000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 21:54:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00077414512634277 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 20584 +271 0 moodle core\\task\\badges_cron_task 0 1613080501.4443000000 1613080501.4553000000 1 0 0 Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 21:55:01. Current memory use 16.8MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0078310966491699 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n dev.derekmaxson.com 20605 +272 0 moodle core\\task\\badges_message_task 0 1613080501.4639000000 1613080501.4651000000 1 0 0 Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 21:55:01. Current memory use 18MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00058603286743164 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n dev.derekmaxson.com 20605 +273 0 mod_chat mod_chat\\task\\cron_task 0 1613080501.4766000000 1613080501.4855000000 2 2 0 Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 21:55:01. Current memory use 19MB.\n... used 4 dbqueries\n... used 0.0080471038818359 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n dev.derekmaxson.com 20605 +274 0 mod_scorm mod_scorm\\task\\cron_task 0 1613080501.4935000000 1613080501.5123000000 0 0 0 Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 21:55:01. Current memory use 19.7MB.\n... used 0 dbqueries\n... used 0.017860889434814 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n dev.derekmaxson.com 20605 +275 0 block_rss_client block_rss_client\\task\\refreshfeeds 0 1613080501.5229000000 1613080501.5309000000 3 0 0 Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 21:55:01. Current memory use 20.6MB.\n\n0 feeds refreshed (took 0.00075400000000003 seconds)\n... used 3 dbqueries\n... used 0.0074770450592041 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n dev.derekmaxson.com 20605 +276 0 moodle core\\task\\session_cleanup_task 0 1613080501.5390000000 1613080501.5475000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 21:55:01. Current memory use 22.8MB.\n... used 19 dbqueries\n... used 0.0071041584014893 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 20605 +277 0 moodle core\\task\\send_new_user_passwords_task 0 1613080501.5561000000 1613080501.5573000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 21:55:01. Current memory use 23.1MB.\n... used 1 dbqueries\n... used 0.00059390068054199 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 20605 +278 0 moodle core\\task\\send_failed_login_notifications_task 0 1613080501.5656000000 1613080501.5662000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 21:55:01. Current memory use 23.1MB.\n... used 0 dbqueries\n... used 4.3869018554688E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 20605 +279 0 moodle core\\task\\legacy_plugin_cron_task 0 1613080501.5748000000 1613080501.6061000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 21:55:01. Current memory use 23.1MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.030637979507446 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 20605 +280 0 moodle core\\task\\grade_cron_task 0 1613080501.6146000000 1613080501.6178000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 21:55:01. Current memory use 26.5MB.\n... used 6 dbqueries\n... used 0.0025191307067871 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 20605 +281 0 moodle core\\task\\completion_regular_task 0 1613080501.6262000000 1613080501.6517000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 21:55:01. Current memory use 26.6MB.\n... used 18 dbqueries\n... used 0.024860143661499 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 20605 +282 0 moodle core\\task\\portfolio_cron_task 0 1613080501.6599000000 1613080501.6606000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 21:55:01. Current memory use 27MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 20605 +283 0 moodle core\\task\\plagiarism_cron_task 0 1613080501.6686000000 1613080501.6692000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 21:55:01. Current memory use 27MB.\n... used 0 dbqueries\n... used 4.3869018554688E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 20605 +284 0 moodle core\\task\\calendar_cron_task 0 1613080501.6773000000 1613080501.6814000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 21:55:01. Current memory use 27MB.\n... used 1 dbqueries\n... used 0.0035231113433838 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 20605 +285 0 moodle core\\task\\blog_cron_task 0 1613080501.6895000000 1613080501.6935000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 21:55:01. Current memory use 27.4MB.\n... used 2 dbqueries\n... used 0.0034191608428955 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 20605 +286 0 moodle core\\task\\question_preview_cleanup_task 0 1613080501.7020000000 1613080501.7190000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 21:55:01. Current memory use 27.7MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016349077224731 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 20605 +287 0 moodle core\\task\\question_stats_cleanup_task 0 1613080501.7282000000 1613080501.7300000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 21:55:01. Current memory use 29.4MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011789798736572 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 20605 +288 0 mod_assign mod_assign\\task\\cron_task 0 1613080501.7445000000 1613080501.7774000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 21:55:01. Current memory use 29.5MB.\n... used 3 dbqueries\n... used 0.031916856765747 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 20605 +289 0 mod_forum mod_forum\\task\\cron_task 0 1613080501.7974000000 1613080501.8000000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 21:55:01. Current memory use 33.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015010833740234 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 20605 +290 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613080501.8184000000 1613080501.8255000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 21:55:01. Current memory use 34.7MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0057828426361084 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 20605 +291 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613080501.8336000000 1613080501.8345000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 21:55:01. Current memory use 34.7MB.\n... used 0 dbqueries\n... used 0.00011515617370605 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 20605 +292 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613080501.8423000000 1613080501.8431000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 21:55:01. Current memory use 34.7MB.\n... used 0 dbqueries\n... used 8.8930130004883E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 20605 +293 0 mod_workshop mod_workshop\\task\\cron_task 0 1613080501.8512000000 1613080501.8529000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 21:55:01. Current memory use 34.7MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00069618225097656 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 20605 +294 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613080501.8616000000 1613080501.8625000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 21:55:01. Current memory use 34.8MB.\n... used 0 dbqueries\n... used 0.00011992454528809 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 20605 +295 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613080501.8738000000 1613080501.8759000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 21:55:01. Current memory use 34.5MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014650821685791 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 20605 +296 0 tool_monitor tool_monitor\\task\\clean_events 0 1613080501.8844000000 1613080501.8851000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 21:55:01. Current memory use 34.7MB.\n... used 0 dbqueries\n... used 0.00011301040649414 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 20605 +297 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613080501.8934000000 1613080501.8948000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 21:55:01. Current memory use 34.7MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00082898139953613 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 20605 +298 0 moodle core\\task\\session_cleanup_task 0 1613080562.0848000000 1613080562.0990000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 21:56:02. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.01109504699707 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 20622 +299 0 moodle core\\task\\send_new_user_passwords_task 0 1613080562.1080000000 1613080562.1093000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 21:56:02. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.0005791187286377 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 20622 +300 0 moodle core\\task\\send_failed_login_notifications_task 0 1613080562.1179000000 1613080562.1186000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 21:56:02. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.6014785766602E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 20622 +301 0 moodle core\\task\\legacy_plugin_cron_task 0 1613080562.1267000000 1613080562.1706000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 21:56:02. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.0432448387146 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 20622 +302 0 moodle core\\task\\grade_cron_task 0 1613080562.1789000000 1613080562.1821000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 21:56:02. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0024900436401367 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 20622 +303 0 moodle core\\task\\completion_regular_task 0 1613080562.1907000000 1613080562.2160000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 21:56:02. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024586915969849 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 20622 +304 0 moodle core\\task\\portfolio_cron_task 0 1613080562.2245000000 1613080562.2252000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 21:56:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 20622 +305 0 moodle core\\task\\plagiarism_cron_task 0 1613080562.2346000000 1613080562.2353000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 21:56:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.3869018554688E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 20622 +306 0 moodle core\\task\\calendar_cron_task 0 1613080562.2483000000 1613080562.2523000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 21:56:02. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033538341522217 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 20622 +307 0 moodle core\\task\\blog_cron_task 0 1613080562.2644000000 1613080562.2685000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 21:56:02. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0034329891204834 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 20622 +308 0 moodle core\\task\\question_preview_cleanup_task 0 1613080562.2777000000 1613080562.2948000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 21:56:02. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016389131546021 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 20622 +309 0 moodle core\\task\\question_stats_cleanup_task 0 1613080562.3085000000 1613080562.3104000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 21:56:02. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012049674987793 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 20622 +310 0 mod_assign mod_assign\\task\\cron_task 0 1613080562.3316000000 1613080562.3638000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 21:56:02. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031335115432739 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 20622 +311 0 mod_forum mod_forum\\task\\cron_task 0 1613080562.3889000000 1613080562.3914000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 21:56:02. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015480518341064 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 20622 +312 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613080562.4185000000 1613080562.4254000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 21:56:02. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0059070587158203 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 20622 +313 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613080562.4350000000 1613080562.4360000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 21:56:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.4890594482422E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 20622 +314 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613080562.4441000000 1613080562.4451000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 21:56:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.9168548583984E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 20622 +315 0 mod_workshop mod_workshop\\task\\cron_task 0 1613080562.4536000000 1613080562.4552000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 21:56:02. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00067305564880371 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 20622 +474 0 mod_chat mod_chat\\task\\cron_task 0 1613081401.6162000000 1613081401.6253000000 2 2 0 Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 22:10:01. Current memory use 19MB.\n... used 4 dbqueries\n... used 0.0081899166107178 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n dev.derekmaxson.com 23578 +316 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613080562.4630000000 1613080562.4639000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 21:56:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.0122222900391E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 20622 +317 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613080562.4747000000 1613080562.4767000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 21:56:02. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014359951019287 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 20622 +318 0 tool_monitor tool_monitor\\task\\clean_events 0 1613080562.4853000000 1613080562.4860000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 21:56:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011587142944336 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 20622 +319 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613080562.4946000000 1613080562.4960000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 21:56:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00077390670776367 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 20622 +320 0 moodle core\\task\\session_cleanup_task 0 1613080621.6860000000 1613080621.7002000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 21:57:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011153936386108 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 20640 +321 0 moodle core\\task\\send_new_user_passwords_task 0 1613080621.7093000000 1613080621.7107000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 21:57:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00069499015808105 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 20640 +322 0 moodle core\\task\\send_failed_login_notifications_task 0 1613080621.7193000000 1613080621.7200000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 21:57:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.3153762817383E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 20640 +323 0 moodle core\\task\\legacy_plugin_cron_task 0 1613080621.7281000000 1613080621.7722000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 21:57:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.04346489906311 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 20640 +324 0 moodle core\\task\\grade_cron_task 0 1613080621.7820000000 1613080621.7853000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 21:57:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025410652160645 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 20640 +325 0 moodle core\\task\\completion_regular_task 0 1613080621.7955000000 1613080621.8210000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 21:57:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.02477502822876 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 20640 +326 0 moodle core\\task\\portfolio_cron_task 0 1613080621.8314000000 1613080621.8321000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 21:57:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.6014785766602E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 20640 +327 0 moodle core\\task\\plagiarism_cron_task 0 1613080621.8405000000 1613080621.8412000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 21:57:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 20640 +328 0 moodle core\\task\\calendar_cron_task 0 1613080621.8541000000 1613080621.8582000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 21:57:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033771991729736 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 20640 +329 0 moodle core\\task\\blog_cron_task 0 1613080621.8663000000 1613080621.8704000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 21:57:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0034301280975342 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 20640 +330 0 moodle core\\task\\question_preview_cleanup_task 0 1613080621.8782000000 1613080621.8954000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 21:57:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.01646900177002 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 20640 +331 0 moodle core\\task\\question_stats_cleanup_task 0 1613080621.9037000000 1613080621.9056000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 21:57:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012178421020508 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 20640 +332 0 mod_assign mod_assign\\task\\cron_task 0 1613080621.9176000000 1613080621.9500000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 21:57:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031543970108032 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 20640 +333 0 mod_forum mod_forum\\task\\cron_task 0 1613080621.9692000000 1613080621.9716000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 21:57:01. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015208721160889 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 20640 +334 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613080621.9895000000 1613080621.9964000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 21:57:01. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0060021877288818 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 20640 +335 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613080622.0048000000 1613080622.0057000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 21:57:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.3936920166016E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 20640 +336 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613080622.0135000000 1613080622.0145000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 21:57:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 0.00011301040649414 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 20640 +337 0 mod_workshop mod_workshop\\task\\cron_task 0 1613080622.0224000000 1613080622.0240000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 21:57:02. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00069212913513184 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 20640 +338 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613080622.0320000000 1613080622.0330000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 21:57:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.608268737793E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 20640 +339 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613080622.0437000000 1613080622.0458000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 21:57:02. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014588832855225 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 20640 +340 0 tool_monitor tool_monitor\\task\\clean_events 0 1613080622.0540000000 1613080622.0547000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 21:57:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.0001220703125 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 20640 +341 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613080622.0630000000 1613080622.0644000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 21:57:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00078082084655762 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 20640 +342 0 moodle core\\task\\delete_unconfirmed_users_task 0 1613081101.2332000000 1613081101.2412000000 3 0 0 Execute scheduled task: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n... started 22:05:01. Current memory use 16.8MB.\n... used 3 dbqueries\n... used 0.0049030780792236 seconds\nScheduled task complete: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n dev.derekmaxson.com 23130 +343 0 moodle core\\task\\delete_incomplete_users_task 0 1613081101.2533000000 1613081101.2539000000 0 0 0 Execute scheduled task: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n... started 22:05:01. Current memory use 17.7MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n dev.derekmaxson.com 23130 +344 0 moodle core\\task\\check_for_updates_task 0 1613081101.2629000000 1613081101.2647000000 0 0 0 Execute scheduled task: Check for updates (core\\task\\check_for_updates_task)\n... started 22:05:01. Current memory use 17.7MB.\nRecently fetched info about available updates is still fresh enough, skipping.\n... used 0 dbqueries\n... used 0.001154899597168 seconds\nScheduled task complete: Check for updates (core\\task\\check_for_updates_task)\n dev.derekmaxson.com 23130 +345 0 moodle core\\task\\search_index_task 0 1613081101.2735000000 1613081101.2761000000 0 0 0 Execute scheduled task: Global search indexing (core\\task\\search_index_task)\n... started 22:05:01. Current memory use 17.8MB.\n... used 0 dbqueries\n... used 0.0019481182098389 seconds\nScheduled task complete: Global search indexing (core\\task\\search_index_task)\n dev.derekmaxson.com 23130 +346 0 qtype_random qtype_random\\task\\remove_unused_questions 0 1613081101.2907000000 1613081101.3222000000 1 0 0 Execute scheduled task: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n... started 22:05:01. Current memory use 18.1MB.\nCleaned up 0 unused random questions.\n... used 1 dbqueries\n... used 0.030761957168579 seconds\nScheduled task complete: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n dev.derekmaxson.com 23130 +347 0 message_email message_email\\task\\send_email_task 0 1613081101.3314000000 1613081101.3494000000 8 0 0 Execute scheduled task: Messages digest mailings (message_email\\task\\send_email_task)\n... started 22:05:01. Current memory use 21.4MB.\n... used 8 dbqueries\n... used 0.017335891723633 seconds\nScheduled task complete: Messages digest mailings (message_email\\task\\send_email_task)\n dev.derekmaxson.com 23130 +348 0 tool_recyclebin tool_recyclebin\\task\\cleanup_course_bin 0 1613081101.3610000000 1613081101.3644000000 3 0 0 Execute scheduled task: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n... started 22:05:01. Current memory use 21.9MB.\n... used 3 dbqueries\n... used 0.0027189254760742 seconds\nScheduled task complete: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n dev.derekmaxson.com 23130 +349 0 tool_recyclebin tool_recyclebin\\task\\cleanup_category_bin 0 1613081101.3729000000 1613081101.3759000000 3 0 0 Execute scheduled task: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n... started 22:05:01. Current memory use 21.9MB.\n... used 3 dbqueries\n... used 0.0023660659790039 seconds\nScheduled task complete: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n dev.derekmaxson.com 23130 +350 0 assignfeedback_editpdf assignfeedback_editpdf\\task\\convert_submissions 0 1613081101.3847000000 1613081101.4260000000 1 0 0 Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 22:05:01. Current memory use 22MB.\n... used 1 dbqueries\n... used 0.040699005126953 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n dev.derekmaxson.com 23130 +351 0 enrol_manual enrol_manual\\task\\sync_enrolments 0 1613081101.4347000000 1613081101.4364000000 0 0 0 Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 22:05:01. Current memory use 27.6MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00097298622131348 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n dev.derekmaxson.com 23130 +352 0 enrol_manual enrol_manual\\task\\send_expiry_notifications 0 1613081101.4445000000 1613081101.4453000000 0 0 0 Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 22:05:01. Current memory use 27.8MB.\nmanual enrolment expiry notifications were already sent today at Thursday, 11 February 2021, 6:00 AM.\n... used 0 dbqueries\n... used 0.00020098686218262 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n dev.derekmaxson.com 23130 +353 0 enrol_self enrol_self\\task\\sync_enrolments 0 1613081101.4534000000 1613081101.4640000000 6 0 0 Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 22:05:01. Current memory use 27.8MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 6 dbqueries\n... used 0.0098690986633301 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n dev.derekmaxson.com 23130 +354 0 enrol_self enrol_self\\task\\send_expiry_notifications 0 1613081101.4722000000 1613081101.4730000000 0 0 0 Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 22:05:01. Current memory use 27.9MB.\nself enrolment expiry notifications were already sent today at Thursday, 11 February 2021, 6:00 AM.\n... used 0 dbqueries\n... used 0.00017905235290527 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n dev.derekmaxson.com 23130 +355 0 moodle core\\task\\badges_cron_task 0 1613081101.4817000000 1613081101.4894000000 1 0 0 Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 22:05:01. Current memory use 28.2MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0062839984893799 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n dev.derekmaxson.com 23130 +356 0 moodle core\\task\\badges_message_task 0 1613081101.4981000000 1613081101.4994000000 1 0 0 Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 22:05:01. Current memory use 28.5MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00059199333190918 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n dev.derekmaxson.com 23130 +357 0 mod_chat mod_chat\\task\\cron_task 0 1613081101.5132000000 1613081101.5272000000 2 2 0 Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 22:05:01. Current memory use 29.3MB.\n... used 4 dbqueries\n... used 0.013150930404663 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n dev.derekmaxson.com 23130 +358 0 mod_scorm mod_scorm\\task\\cron_task 0 1613081101.5353000000 1613081101.5417000000 0 0 0 Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 22:05:01. Current memory use 29.9MB.\n... used 0 dbqueries\n... used 0.0055210590362549 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n dev.derekmaxson.com 23130 +359 0 block_rss_client block_rss_client\\task\\refreshfeeds 0 1613081101.5525000000 1613081101.5603000000 3 0 0 Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 22:05:01. Current memory use 29.6MB.\n\n0 feeds refreshed (took 0.001143 seconds)\n... used 3 dbqueries\n... used 0.0072400569915771 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n dev.derekmaxson.com 23130 +360 0 moodle core\\task\\session_cleanup_task 0 1613081101.5687000000 1613081101.5761000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:05:01. Current memory use 30.5MB.\n... used 19 dbqueries\n... used 0.0059599876403809 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 23130 +361 0 moodle core\\task\\send_new_user_passwords_task 0 1613081101.5842000000 1613081101.5861000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:05:01. Current memory use 30.7MB.\n... used 1 dbqueries\n... used 0.0011818408966064 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 23130 +362 0 moodle core\\task\\send_failed_login_notifications_task 0 1613081101.5945000000 1613081101.5952000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:05:01. Current memory use 30.7MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 23130 +378 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613081101.9017000000 1613081101.9026000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:05:01. Current memory use 36.1MB.\n... used 0 dbqueries\n... used 9.0122222900391E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 23130 +363 0 moodle core\\task\\legacy_plugin_cron_task 0 1613081101.6034000000 1613081101.6241000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:05:01. Current memory use 30.7MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.020014047622681 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 23130 +364 0 moodle core\\task\\grade_cron_task 0 1613081101.6328000000 1613081101.6440000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:05:01. Current memory use 31.9MB.\n... used 6 dbqueries\n... used 0.010577201843262 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 23130 +365 0 moodle core\\task\\completion_regular_task 0 1613081101.6532000000 1613081101.6879000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:05:01. Current memory use 32MB.\n... used 18 dbqueries\n... used 0.033998966217041 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 23130 +366 0 moodle core\\task\\portfolio_cron_task 0 1613081101.6960000000 1613081101.6967000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:05:01. Current memory use 32.2MB.\n... used 0 dbqueries\n... used 4.4822692871094E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 23130 +367 0 moodle core\\task\\plagiarism_cron_task 0 1613081101.7050000000 1613081101.7057000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:05:01. Current memory use 32.2MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 23130 +368 0 moodle core\\task\\calendar_cron_task 0 1613081101.7142000000 1613081101.7190000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:05:01. Current memory use 32.2MB.\n... used 1 dbqueries\n... used 0.0041000843048096 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 23130 +369 0 moodle core\\task\\blog_cron_task 0 1613081101.7279000000 1613081101.7342000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:05:01. Current memory use 32.6MB.\n... used 2 dbqueries\n... used 0.005634069442749 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 23130 +370 0 moodle core\\task\\question_preview_cleanup_task 0 1613081101.7427000000 1613081101.7538000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:05:01. Current memory use 32.9MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.010490894317627 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 23130 +371 0 moodle core\\task\\question_stats_cleanup_task 0 1613081101.7621000000 1613081101.7661000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:05:01. Current memory use 32.9MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0033280849456787 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 23130 +372 0 mod_assign mod_assign\\task\\cron_task 0 1613081101.7749000000 1613081101.7977000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:05:01. Current memory use 33MB.\n... used 3 dbqueries\n... used 0.021793127059937 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 23130 +373 0 mod_forum mod_forum\\task\\cron_task 0 1613081101.8168000000 1613081101.8259000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:05:01. Current memory use 34.8MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0080661773681641 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 23130 +374 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613081101.8480000000 1613081101.8624000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:05:01. Current memory use 36MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.013167858123779 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 23130 +375 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613081101.8711000000 1613081101.8720000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:05:01. Current memory use 36MB.\n... used 0 dbqueries\n... used 9.9897384643555E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 23130 +376 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613081101.8805000000 1613081101.8814000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:05:01. Current memory use 36MB.\n... used 0 dbqueries\n... used 9.2029571533203E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 23130 +377 0 mod_workshop mod_workshop\\task\\cron_task 0 1613081101.8899000000 1613081101.8927000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:05:01. Current memory use 36.1MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.0016331672668457 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 23130 +457 0 moodle core\\task\\calendar_cron_task 0 1613081342.1671000000 1613081342.1711000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:09:02. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033941268920898 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 23559 +379 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613081101.9112000000 1613081101.9143000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:05:01. Current memory use 36.1MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0022618770599365 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 23130 +380 0 tool_monitor tool_monitor\\task\\clean_events 0 1613081101.9234000000 1613081101.9244000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:05:01. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 0.0001068115234375 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 23130 +381 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613081101.9325000000 1613081101.9356000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:05:01. Current memory use 36.3MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.0022709369659424 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 23130 +382 0 moodle core\\task\\session_cleanup_task 0 1613081162.2493000000 1613081162.2661000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:06:02. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011210918426514 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 23437 +383 0 moodle core\\task\\send_new_user_passwords_task 0 1613081162.2750000000 1613081162.2762000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:06:02. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00058484077453613 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 23437 +384 0 moodle core\\task\\send_failed_login_notifications_task 0 1613081162.2856000000 1613081162.2863000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:06:02. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.7922134399414E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 23437 +385 0 moodle core\\task\\legacy_plugin_cron_task 0 1613081162.2952000000 1613081162.3439000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:06:02. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.048062801361084 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 23437 +386 0 moodle core\\task\\grade_cron_task 0 1613081162.3526000000 1613081162.3558000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:06:02. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025761127471924 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 23437 +387 0 moodle core\\task\\completion_regular_task 0 1613081162.3644000000 1613081162.3954000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:06:02. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.030265092849731 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 23437 +388 0 moodle core\\task\\portfolio_cron_task 0 1613081162.4042000000 1613081162.4049000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:06:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.6968460083008E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 23437 +389 0 moodle core\\task\\plagiarism_cron_task 0 1613081162.4136000000 1613081162.4143000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:06:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.3869018554688E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 23437 +390 0 moodle core\\task\\calendar_cron_task 0 1613081162.4276000000 1613081162.4351000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:06:02. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0069038867950439 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 23437 +391 0 moodle core\\task\\blog_cron_task 0 1613081162.4439000000 1613081162.4480000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:06:02. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0033931732177734 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 23437 +392 0 moodle core\\task\\question_preview_cleanup_task 0 1613081162.4567000000 1613081162.4739000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:06:02. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016551971435547 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 23437 +393 0 moodle core\\task\\question_stats_cleanup_task 0 1613081162.4823000000 1613081162.4842000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:06:02. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.001201868057251 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 23437 +394 0 mod_assign mod_assign\\task\\cron_task 0 1613081162.4969000000 1613081162.5300000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:06:02. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.032256841659546 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 23437 +395 0 mod_forum mod_forum\\task\\cron_task 0 1613081162.5499000000 1613081162.5524000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:06:02. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015199184417725 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 23437 +396 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613081162.5706000000 1613081162.5774000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:06:02. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0059058666229248 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 23437 +397 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613081162.5856000000 1613081162.5866000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:06:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2983245849609E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 23437 +398 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613081162.5945000000 1613081162.5955000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:06:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.0122222900391E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 23437 +399 0 mod_workshop mod_workshop\\task\\cron_task 0 1613081162.6035000000 1613081162.6050000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:06:02. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00068402290344238 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 23437 +400 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613081162.6129000000 1613081162.6139000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:06:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.0837478637695E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 23437 +401 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613081162.6250000000 1613081162.6281000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:06:02. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.002514123916626 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 23437 +402 0 tool_monitor tool_monitor\\task\\clean_events 0 1613081162.6371000000 1613081162.6378000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:06:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011706352233887 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 23437 +403 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613081162.6462000000 1613081162.6476000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:06:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00077295303344727 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 23437 +404 0 tool_cohortroles tool_cohortroles\\task\\cohort_role_sync 0 1613081221.8408000000 1613081221.8579000000 2 1 0 Execute scheduled task: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n... started 22:07:01. Current memory use 16.8MB.\nSync cohort roles...\nAdded 0\nRemoved 0\n... used 3 dbqueries\n... used 0.014585018157959 seconds\nScheduled task complete: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n dev.derekmaxson.com 23466 +405 0 moodle core\\task\\session_cleanup_task 0 1613081221.8673000000 1613081221.8761000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:07:01. Current memory use 18.6MB.\n... used 19 dbqueries\n... used 0.0070919990539551 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 23466 +406 0 moodle core\\task\\send_new_user_passwords_task 0 1613081221.8842000000 1613081221.8856000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:07:01. Current memory use 18.8MB.\n... used 1 dbqueries\n... used 0.00057697296142578 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 23466 +407 0 moodle core\\task\\send_failed_login_notifications_task 0 1613081221.8941000000 1613081221.8950000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:07:01. Current memory use 18.9MB.\n... used 0 dbqueries\n... used 4.1007995605469E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 23466 +408 0 moodle core\\task\\legacy_plugin_cron_task 0 1613081221.9033000000 1613081221.9471000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:07:01. Current memory use 18.9MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.042927026748657 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 23466 +409 0 moodle core\\task\\grade_cron_task 0 1613081221.9554000000 1613081221.9588000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:07:01. Current memory use 23.9MB.\n... used 6 dbqueries\n... used 0.0025041103363037 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 23466 +410 0 moodle core\\task\\completion_regular_task 0 1613081221.9668000000 1613081221.9923000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:07:01. Current memory use 23.9MB.\n... used 18 dbqueries\n... used 0.024604082107544 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 23466 +411 0 moodle core\\task\\portfolio_cron_task 0 1613081222.0008000000 1613081222.0017000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:07:02. Current memory use 24.3MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 23466 +412 0 moodle core\\task\\plagiarism_cron_task 0 1613081222.0098000000 1613081222.0108000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:07:02. Current memory use 24.3MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 23466 +413 0 moodle core\\task\\calendar_cron_task 0 1613081222.0234000000 1613081222.0276000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:07:02. Current memory use 24.8MB.\n... used 1 dbqueries\n... used 0.0033018589019775 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 23466 +414 0 moodle core\\task\\blog_cron_task 0 1613081222.0358000000 1613081222.0401000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:07:02. Current memory use 25.2MB.\n... used 2 dbqueries\n... used 0.0033669471740723 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 23466 +415 0 moodle core\\task\\question_preview_cleanup_task 0 1613081222.0484000000 1613081222.0661000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:07:02. Current memory use 25.5MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.01676082611084 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 23466 +416 0 moodle core\\task\\question_stats_cleanup_task 0 1613081222.0741000000 1613081222.0763000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:07:02. Current memory use 28.4MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011928081512451 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 23466 +417 0 mod_assign mod_assign\\task\\cron_task 0 1613081222.0889000000 1613081222.1216000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:07:02. Current memory use 29.3MB.\n... used 3 dbqueries\n... used 0.031597852706909 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 23466 +418 0 mod_forum mod_forum\\task\\cron_task 0 1613081222.1406000000 1613081222.1432000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:07:02. Current memory use 33.1MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015158653259277 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 23466 +419 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613081222.1621000000 1613081222.1689000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:07:02. Current memory use 34.3MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0056970119476318 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 23466 +420 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613081222.1772000000 1613081222.1784000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:07:02. Current memory use 34.3MB.\n... used 0 dbqueries\n... used 8.9883804321289E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 23466 +421 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613081222.1866000000 1613081222.1878000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:07:02. Current memory use 34.3MB.\n... used 0 dbqueries\n... used 8.9883804321289E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 23466 +422 0 mod_workshop mod_workshop\\task\\cron_task 0 1613081222.1962000000 1613081222.1980000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:07:02. Current memory use 34.3MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00070405006408691 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 23466 +423 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613081222.2062000000 1613081222.2074000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:07:02. Current memory use 34.3MB.\n... used 0 dbqueries\n... used 8.8930130004883E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 23466 +424 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613081222.2153000000 1613081222.2180000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:07:02. Current memory use 34.3MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014619827270508 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 23466 +425 0 tool_monitor tool_monitor\\task\\clean_events 0 1613081222.2263000000 1613081222.2277000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:07:02. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 0.0001060962677002 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 23466 +426 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613081222.2362000000 1613081222.2380000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:07:02. Current memory use 34.2MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00078701972961426 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 23466 +427 0 moodle core\\task\\session_cleanup_task 0 1613081281.4298000000 1613081281.4442000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:08:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011336088180542 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 23482 +428 0 moodle core\\task\\send_new_user_passwords_task 0 1613081281.4537000000 1613081281.4550000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:08:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00060105323791504 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 23482 +429 0 moodle core\\task\\send_failed_login_notifications_task 0 1613081281.4633000000 1613081281.4640000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:08:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 23482 +430 0 moodle core\\task\\legacy_plugin_cron_task 0 1613081281.4723000000 1613081281.5173000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:08:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.044305801391602 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 23482 +431 0 moodle core\\task\\grade_cron_task 0 1613081281.5261000000 1613081281.5293000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:08:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025568008422852 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 23482 +432 0 moodle core\\task\\completion_regular_task 0 1613081281.5386000000 1613081281.5641000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:08:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024889945983887 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 23482 +433 0 moodle core\\task\\portfolio_cron_task 0 1613081281.5728000000 1613081281.5735000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:08:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 23482 +434 0 moodle core\\task\\plagiarism_cron_task 0 1613081281.5818000000 1613081281.5825000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:08:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.6014785766602E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 23482 +435 0 moodle core\\task\\calendar_cron_task 0 1613081281.5957000000 1613081281.5998000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:08:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0034101009368896 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 23482 +436 0 moodle core\\task\\blog_cron_task 0 1613081281.6080000000 1613081281.6120000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:08:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0034439563751221 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 23482 +437 0 moodle core\\task\\question_preview_cleanup_task 0 1613081281.6203000000 1613081281.6377000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:08:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016729116439819 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 23482 +438 0 moodle core\\task\\question_stats_cleanup_task 0 1613081281.6459000000 1613081281.6479000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:08:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012171268463135 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 23482 +439 0 mod_assign mod_assign\\task\\cron_task 0 1613081281.6602000000 1613081281.6929000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:08:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031805992126465 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 23482 +440 0 mod_forum mod_forum\\task\\cron_task 0 1613081281.7119000000 1613081281.7143000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:08:01. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.001474142074585 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 23482 +458 0 moodle core\\task\\blog_cron_task 0 1613081342.1793000000 1613081342.1835000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:09:02. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.003464937210083 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 23559 +441 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613081281.7321000000 1613081281.7389000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:08:01. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0059309005737305 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 23482 +442 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613081281.7470000000 1613081281.7480000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:08:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2983245849609E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 23482 +443 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613081281.7559000000 1613081281.7569000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:08:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.9168548583984E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 23482 +444 0 mod_workshop mod_workshop\\task\\cron_task 0 1613081281.7649000000 1613081281.7665000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:08:01. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00069618225097656 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 23482 +445 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613081281.7742000000 1613081281.7751000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:08:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2983245849609E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 23482 +446 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613081281.7859000000 1613081281.7880000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:08:01. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014710426330566 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 23482 +447 0 tool_monitor tool_monitor\\task\\clean_events 0 1613081281.7961000000 1613081281.7968000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:08:01. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011706352233887 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 23482 +448 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613081281.8052000000 1613081281.8066000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:08:01. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.0007941722869873 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 23482 +449 0 moodle core\\task\\session_cleanup_task 0 1613081341.9991000000 1613081342.0133000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:09:02. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011157989501953 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 23559 +450 0 moodle core\\task\\send_new_user_passwords_task 0 1613081342.0248000000 1613081342.0261000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:09:02. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.0005950927734375 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 23559 +451 0 moodle core\\task\\send_failed_login_notifications_task 0 1613081342.0369000000 1613081342.0377000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:09:02. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.6968460083008E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 23559 +452 0 moodle core\\task\\legacy_plugin_cron_task 0 1613081342.0466000000 1613081342.0908000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:09:02. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043507099151611 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 23559 +453 0 moodle core\\task\\grade_cron_task 0 1613081342.0995000000 1613081342.1026000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:09:02. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025219917297363 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 23559 +454 0 moodle core\\task\\completion_regular_task 0 1613081342.1115000000 1613081342.1368000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:09:02. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024627923965454 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 23559 +455 0 moodle core\\task\\portfolio_cron_task 0 1613081342.1448000000 1613081342.1454000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:09:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 23559 +456 0 moodle core\\task\\plagiarism_cron_task 0 1613081342.1534000000 1613081342.1541000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:09:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 23559 +459 0 moodle core\\task\\question_preview_cleanup_task 0 1613081342.1914000000 1613081342.2085000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:09:02. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016417026519775 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 23559 +460 0 moodle core\\task\\question_stats_cleanup_task 0 1613081342.2168000000 1613081342.2186000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:09:02. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011970996856689 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 23559 +461 0 mod_assign mod_assign\\task\\cron_task 0 1613081342.2307000000 1613081342.2636000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:09:02. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031968116760254 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 23559 +462 0 mod_forum mod_forum\\task\\cron_task 0 1613081342.2830000000 1613081342.2855000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:09:02. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015649795532227 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 23559 +463 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613081342.3046000000 1613081342.3116000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:09:02. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0060391426086426 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 23559 +464 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613081342.3199000000 1613081342.3209000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:09:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.7036361694336E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 23559 +465 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613081342.3295000000 1613081342.3304000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:09:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.5830688476562E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 23559 +466 0 mod_workshop mod_workshop\\task\\cron_task 0 1613081342.3386000000 1613081342.3401000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:09:02. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00068187713623047 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 23559 +467 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613081342.3481000000 1613081342.3490000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:09:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.702278137207E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 23559 +468 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613081342.3596000000 1613081342.3617000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:09:02. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014398097991943 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 23559 +469 0 tool_monitor tool_monitor\\task\\clean_events 0 1613081342.3708000000 1613081342.3714000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:09:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011587142944336 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 23559 +470 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613081342.3794000000 1613081342.3807000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:09:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00075912475585938 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 23559 +471 0 moodle core\\task\\backup_cleanup_task 0 1613081401.5710000000 1613081401.5807000000 1 0 0 Execute scheduled task: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n... started 22:10:01. Current memory use 16.8MB.\n... used 1 dbqueries\n... used 0.0067121982574463 seconds\nScheduled task complete: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n dev.derekmaxson.com 23578 +472 0 moodle core\\task\\badges_cron_task 0 1613081401.5900000000 1613081401.5946000000 1 0 0 Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 22:10:01. Current memory use 17.7MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0039510726928711 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n dev.derekmaxson.com 23578 +473 0 moodle core\\task\\badges_message_task 0 1613081401.6033000000 1613081401.6046000000 1 0 0 Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 22:10:01. Current memory use 18MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.0005950927734375 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n dev.derekmaxson.com 23578 +490 0 moodle core\\task\\blog_cron_task 0 1613081401.8725000000 1613081401.8766000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:10:01. Current memory use 27.5MB.\n... used 2 dbqueries\n... used 0.0034201145172119 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 23578 +475 0 mod_scorm mod_scorm\\task\\cron_task 0 1613081401.6336000000 1613081401.6525000000 0 0 0 Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 22:10:01. Current memory use 19.7MB.\n... used 0 dbqueries\n... used 0.017985105514526 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n dev.derekmaxson.com 23578 +476 0 enrol_manual enrol_manual\\task\\sync_enrolments 0 1613081401.6612000000 1613081401.6632000000 0 0 0 Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 22:10:01. Current memory use 21.8MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.0010221004486084 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n dev.derekmaxson.com 23578 +477 0 enrol_manual enrol_manual\\task\\send_expiry_notifications 0 1613081401.6719000000 1613081401.6730000000 0 0 0 Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 22:10:01. Current memory use 21.9MB.\nmanual enrolment expiry notifications were already sent today at Thursday, 11 February 2021, 6:00 AM.\n... used 0 dbqueries\n... used 0.00018811225891113 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n dev.derekmaxson.com 23578 +478 0 enrol_self enrol_self\\task\\sync_enrolments 0 1613081401.6816000000 1613081401.6870000000 6 0 0 Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 22:10:01. Current memory use 21.9MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 6 dbqueries\n... used 0.0043621063232422 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n dev.derekmaxson.com 23578 +479 0 enrol_self enrol_self\\task\\send_expiry_notifications 0 1613081401.6957000000 1613081401.6967000000 0 0 0 Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 22:10:01. Current memory use 22.1MB.\nself enrolment expiry notifications were already sent today at Thursday, 11 February 2021, 6:00 AM.\n... used 0 dbqueries\n... used 0.00018095970153809 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n dev.derekmaxson.com 23578 +480 0 block_rss_client block_rss_client\\task\\refreshfeeds 0 1613081401.7076000000 1613081401.7158000000 3 0 0 Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 22:10:01. Current memory use 20.8MB.\n\n0 feeds refreshed (took 0.00070300000000001 seconds)\n... used 3 dbqueries\n... used 0.0076529979705811 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n dev.derekmaxson.com 23578 +481 0 moodle core\\task\\session_cleanup_task 0 1613081401.7238000000 1613081401.7322000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:10:01. Current memory use 23.1MB.\n... used 19 dbqueries\n... used 0.0070550441741943 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 23578 +482 0 moodle core\\task\\send_new_user_passwords_task 0 1613081401.7403000000 1613081401.7415000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:10:01. Current memory use 23.3MB.\n... used 1 dbqueries\n... used 0.00056600570678711 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 23578 +483 0 moodle core\\task\\send_failed_login_notifications_task 0 1613081401.7496000000 1613081401.7503000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:10:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 23578 +484 0 moodle core\\task\\legacy_plugin_cron_task 0 1613081401.7588000000 1613081401.7886000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:10:01. Current memory use 23.4MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.029230117797852 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 23578 +485 0 moodle core\\task\\grade_cron_task 0 1613081401.7970000000 1613081401.8001000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:10:01. Current memory use 26.6MB.\n... used 6 dbqueries\n... used 0.0024881362915039 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 23578 +486 0 moodle core\\task\\completion_regular_task 0 1613081401.8085000000 1613081401.8341000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:10:01. Current memory use 26.6MB.\n... used 18 dbqueries\n... used 0.024930000305176 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 23578 +487 0 moodle core\\task\\portfolio_cron_task 0 1613081401.8428000000 1613081401.8435000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:10:01. Current memory use 27.1MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 23578 +488 0 moodle core\\task\\plagiarism_cron_task 0 1613081401.8517000000 1613081401.8523000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:10:01. Current memory use 27.1MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 23578 +489 0 moodle core\\task\\calendar_cron_task 0 1613081401.8604000000 1613081401.8645000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:10:01. Current memory use 27.1MB.\n... used 1 dbqueries\n... used 0.0035028457641602 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 23578 +491 0 moodle core\\task\\question_preview_cleanup_task 0 1613081401.8847000000 1613081401.9018000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:10:01. Current memory use 27.7MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016425848007202 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 23578 +492 0 moodle core\\task\\question_stats_cleanup_task 0 1613081401.9103000000 1613081401.9122000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:10:01. Current memory use 29.4MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011968612670898 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 23578 +493 0 mod_assign mod_assign\\task\\cron_task 0 1613081401.9201000000 1613081401.9526000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:10:01. Current memory use 29.5MB.\n... used 3 dbqueries\n... used 0.031562089920044 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 23578 +494 0 mod_forum mod_forum\\task\\cron_task 0 1613081401.9717000000 1613081401.9742000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:10:01. Current memory use 33.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014810562133789 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 23578 +495 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613081401.9921000000 1613081401.9992000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:10:01. Current memory use 34.7MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.005997896194458 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 23578 +496 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613081402.0119000000 1613081402.0127000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:10:02. Current memory use 34.7MB.\n... used 0 dbqueries\n... used 9.3936920166016E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 23578 +497 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613081402.0206000000 1613081402.0214000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:10:02. Current memory use 34.7MB.\n... used 0 dbqueries\n... used 9.2029571533203E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 23578 +498 0 mod_workshop mod_workshop\\task\\cron_task 0 1613081402.0293000000 1613081402.0310000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:10:02. Current memory use 34.8MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00071001052856445 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 23578 +499 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613081402.0388000000 1613081402.0396000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:10:02. Current memory use 34.8MB.\n... used 0 dbqueries\n... used 8.9883804321289E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 23578 +500 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613081402.0503000000 1613081402.0524000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:10:02. Current memory use 34.6MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014438629150391 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 23578 +501 0 tool_monitor tool_monitor\\task\\clean_events 0 1613081402.0606000000 1613081402.0613000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:10:02. Current memory use 34.8MB.\n... used 0 dbqueries\n... used 0.00010895729064941 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 23578 +502 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613081402.0697000000 1613081402.0711000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:10:02. Current memory use 34.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00078415870666504 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 23578 +503 0 moodle core\\task\\sync_plans_from_template_cohorts_task 0 1613081461.2599000000 1613081461.2793000000 1 0 0 Execute scheduled task: Sync plans from learning plan template cohorts (core\\task\\sync_plans_from_template_cohorts_task)\n... started 22:11:01. Current memory use 16.5MB.\n... used 1 dbqueries\n... used 0.016909122467041 seconds\nScheduled task complete: Sync plans from learning plan template cohorts (core\\task\\sync_plans_from_template_cohorts_task)\n dev.derekmaxson.com 23592 +504 0 moodle core\\task\\session_cleanup_task 0 1613081461.2890000000 1613081461.2974000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:11:01. Current memory use 18.5MB.\n... used 19 dbqueries\n... used 0.007051944732666 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 23592 +505 0 moodle core\\task\\send_new_user_passwords_task 0 1613081461.3058000000 1613081461.3070000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:11:01. Current memory use 18.8MB.\n... used 1 dbqueries\n... used 0.00056099891662598 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 23592 +552 0 moodle core\\task\\grade_cron_task 0 1613081581.5057000000 1613081581.5088000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:13:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025081634521484 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 23624 +506 0 moodle core\\task\\send_failed_login_notifications_task 0 1613081461.3150000000 1613081461.3157000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:11:01. Current memory use 18.8MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 23592 +507 0 moodle core\\task\\legacy_plugin_cron_task 0 1613081461.3243000000 1613081461.3677000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:11:01. Current memory use 18.9MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.042780876159668 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 23592 +508 0 moodle core\\task\\grade_cron_task 0 1613081461.3764000000 1613081461.3796000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:11:01. Current memory use 23.8MB.\n... used 6 dbqueries\n... used 0.0025219917297363 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 23592 +509 0 moodle core\\task\\completion_regular_task 0 1613081461.3878000000 1613081461.4135000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:11:01. Current memory use 23.9MB.\n... used 18 dbqueries\n... used 0.024975061416626 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 23592 +510 0 moodle core\\task\\portfolio_cron_task 0 1613081461.4216000000 1613081461.4223000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:11:01. Current memory use 24.3MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 23592 +511 0 moodle core\\task\\plagiarism_cron_task 0 1613081461.4302000000 1613081461.4310000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:11:01. Current memory use 24.3MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 23592 +512 0 moodle core\\task\\calendar_cron_task 0 1613081461.4437000000 1613081461.4476000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:11:01. Current memory use 24.8MB.\n... used 1 dbqueries\n... used 0.0032958984375 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 23592 +513 0 moodle core\\task\\blog_cron_task 0 1613081461.4558000000 1613081461.4598000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:11:01. Current memory use 25.2MB.\n... used 2 dbqueries\n... used 0.0032870769500732 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 23592 +514 0 moodle core\\task\\question_preview_cleanup_task 0 1613081461.4678000000 1613081461.4848000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:11:01. Current memory use 25.5MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016303062438965 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 23592 +515 0 moodle core\\task\\question_stats_cleanup_task 0 1613081461.4930000000 1613081461.4948000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:11:01. Current memory use 27.2MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011839866638184 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 23592 +516 0 mod_assign mod_assign\\task\\cron_task 0 1613081461.5067000000 1613081461.5385000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:11:01. Current memory use 29.4MB.\n... used 3 dbqueries\n... used 0.030936002731323 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 23592 +517 0 mod_forum mod_forum\\task\\cron_task 0 1613081461.5574000000 1613081461.5599000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:11:01. Current memory use 33.3MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015320777893066 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 23592 +518 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613081461.5781000000 1613081461.5847000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:11:01. Current memory use 34.4MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0056681632995605 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 23592 +519 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613081461.5934000000 1613081461.5944000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:11:01. Current memory use 34.4MB.\n... used 0 dbqueries\n... used 9.9897384643555E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 23592 +520 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613081461.6102000000 1613081461.6113000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:11:01. Current memory use 34.4MB.\n... used 0 dbqueries\n... used 9.3936920166016E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 23592 +647 0 moodle core\\task\\grade_cron_task 0 1613081822.1574000000 1613081822.1606000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:17:02. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0024991035461426 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 23848 +521 0 mod_workshop mod_workshop\\task\\cron_task 0 1613081461.6276000000 1613081461.6291000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:11:01. Current memory use 34.5MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00069379806518555 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 23592 +522 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613081461.6372000000 1613081461.6382000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:11:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 8.9883804321289E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 23592 +523 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613081461.6489000000 1613081461.6509000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:11:01. Current memory use 33.5MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.001521110534668 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 23592 +524 0 tool_monitor tool_monitor\\task\\clean_events 0 1613081461.6589000000 1613081461.6596000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:11:01. Current memory use 33.7MB.\n... used 0 dbqueries\n... used 0.0001070499420166 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 23592 +525 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613081461.6681000000 1613081461.6694000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:11:01. Current memory use 33.7MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00076913833618164 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 23592 +526 0 moodle core\\task\\session_cleanup_task 0 1613081521.8585000000 1613081521.8734000000 18 2 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:12:01. Current memory use 16.8MB.\n... used 20 dbqueries\n... used 0.011950016021729 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 23608 +527 0 moodle core\\task\\send_new_user_passwords_task 0 1613081521.8821000000 1613081521.8833000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:12:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.0005648136138916 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 23608 +528 0 moodle core\\task\\send_failed_login_notifications_task 0 1613081521.8920000000 1613081521.8927000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:12:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 5.1021575927734E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 23608 +529 0 moodle core\\task\\legacy_plugin_cron_task 0 1613081521.9009000000 1613081521.9449000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:12:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043386936187744 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 23608 +530 0 moodle core\\task\\grade_cron_task 0 1613081521.9531000000 1613081521.9562000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:12:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0024759769439697 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 23608 +531 0 moodle core\\task\\completion_regular_task 0 1613081521.9640000000 1613081521.9891000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:12:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024372100830078 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 23608 +532 0 moodle core\\task\\portfolio_cron_task 0 1613081521.9970000000 1613081521.9977000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:12:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.4822692871094E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 23608 +533 0 moodle core\\task\\plagiarism_cron_task 0 1613081522.0053000000 1613081522.0059000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:12:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 23608 +534 0 moodle core\\task\\calendar_cron_task 0 1613081522.0183000000 1613081522.0222000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:12:02. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0032670497894287 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 23608 +535 0 moodle core\\task\\blog_cron_task 0 1613081522.0298000000 1613081522.0338000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:12:02. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0033090114593506 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 23608 +536 0 moodle core\\task\\question_preview_cleanup_task 0 1613081522.0419000000 1613081522.0589000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:12:02. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016397953033447 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 23608 +537 0 moodle core\\task\\question_stats_cleanup_task 0 1613081522.0670000000 1613081522.0688000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:12:02. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011990070343018 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 23608 +538 0 mod_assign mod_assign\\task\\cron_task 0 1613081522.0810000000 1613081522.1130000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:12:02. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.0311279296875 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 23608 +539 0 mod_forum mod_forum\\task\\cron_task 0 1613081522.1316000000 1613081522.1339000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:12:02. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014629364013672 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 23608 +540 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613081522.1512000000 1613081522.1579000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:12:02. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0058228969573975 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 23608 +541 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613081522.1656000000 1613081522.1666000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:12:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.9883804321289E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 23608 +542 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613081522.1742000000 1613081522.1751000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:12:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 23608 +543 0 mod_workshop mod_workshop\\task\\cron_task 0 1613081522.1828000000 1613081522.1843000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:12:02. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00067496299743652 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 23608 +544 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613081522.1920000000 1613081522.1930000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:12:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 23608 +545 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613081522.2038000000 1613081522.2058000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:12:02. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014247894287109 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 23608 +546 0 tool_monitor tool_monitor\\task\\clean_events 0 1613081522.2137000000 1613081522.2144000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:12:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011301040649414 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 23608 +547 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613081522.2225000000 1613081522.2239000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:12:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.0007631778717041 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 23608 +548 0 moodle core\\task\\session_cleanup_task 0 1613081581.4123000000 1613081581.4265000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:13:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011074781417847 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 23624 +549 0 moodle core\\task\\send_new_user_passwords_task 0 1613081581.4352000000 1613081581.4364000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:13:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00057315826416016 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 23624 +550 0 moodle core\\task\\send_failed_login_notifications_task 0 1613081581.4447000000 1613081581.4454000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:13:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.0054321289062E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 23624 +551 0 moodle core\\task\\legacy_plugin_cron_task 0 1613081581.4537000000 1613081581.4971000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:13:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.042768955230713 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 23624 +553 0 moodle core\\task\\completion_regular_task 0 1613081581.5172000000 1613081581.5424000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:13:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.02448296546936 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 23624 +554 0 moodle core\\task\\portfolio_cron_task 0 1613081581.5506000000 1613081581.5513000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:13:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 23624 +555 0 moodle core\\task\\plagiarism_cron_task 0 1613081581.5594000000 1613081581.5600000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:13:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.1007995605469E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 23624 +556 0 moodle core\\task\\calendar_cron_task 0 1613081581.5725000000 1613081581.5765000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:13:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033330917358398 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 23624 +557 0 moodle core\\task\\blog_cron_task 0 1613081581.5844000000 1613081581.5885000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:13:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0034260749816895 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 23624 +558 0 moodle core\\task\\question_preview_cleanup_task 0 1613081581.5964000000 1613081581.6135000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:13:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016484022140503 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 23624 +559 0 moodle core\\task\\question_stats_cleanup_task 0 1613081581.6215000000 1613081581.6234000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:13:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.001190185546875 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 23624 +560 0 mod_assign mod_assign\\task\\cron_task 0 1613081581.6352000000 1613081581.6672000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:13:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031056880950928 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 23624 +561 0 mod_forum mod_forum\\task\\cron_task 0 1613081581.6857000000 1613081581.6880000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:13:01. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014681816101074 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 23624 +562 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613081581.7057000000 1613081581.7126000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:13:01. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0059008598327637 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 23624 +563 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613081581.7204000000 1613081581.7214000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:13:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2029571533203E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 23624 +564 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613081581.7292000000 1613081581.7301000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:13:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.702278137207E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 23624 +565 0 mod_workshop mod_workshop\\task\\cron_task 0 1613081581.7379000000 1613081581.7395000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:13:01. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.0006868839263916 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 23624 +566 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613081581.7476000000 1613081581.7485000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:13:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.8930130004883E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 23624 +567 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613081581.7588000000 1613081581.7607000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:13:01. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014169216156006 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 23624 +568 0 tool_monitor tool_monitor\\task\\clean_events 0 1613081581.7685000000 1613081581.7692000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:13:01. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011086463928223 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 23624 +569 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613081581.7770000000 1613081581.7783000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:13:01. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00075483322143555 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 23624 +570 0 enrol_cohort enrol_cohort\\task\\enrol_cohort_sync 0 1613081641.9672000000 1613081641.9900000000 19 0 0 Execute scheduled task: Cohort enrolment sync task (enrol_cohort\\task\\enrol_cohort_sync)\n... started 22:14:01. Current memory use 16.5MB.\n... used 19 dbqueries\n... used 0.020421028137207 seconds\nScheduled task complete: Cohort enrolment sync task (enrol_cohort\\task\\enrol_cohort_sync)\n dev.derekmaxson.com 23640 +571 0 moodle core\\task\\session_cleanup_task 0 1613081641.9999000000 1613081642.0082000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:14:02. Current memory use 18.1MB.\n... used 19 dbqueries\n... used 0.0069589614868164 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 23640 +572 0 moodle core\\task\\send_new_user_passwords_task 0 1613081642.0161000000 1613081642.0173000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:14:02. Current memory use 18.5MB.\n... used 1 dbqueries\n... used 0.0005640983581543 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 23640 +573 0 moodle core\\task\\send_failed_login_notifications_task 0 1613081642.0253000000 1613081642.0260000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:14:02. Current memory use 18.5MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 23640 +574 0 moodle core\\task\\legacy_plugin_cron_task 0 1613081642.0339000000 1613081642.0768000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:14:02. Current memory use 18.5MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.042290925979614 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 23640 +575 0 moodle core\\task\\grade_cron_task 0 1613081642.0850000000 1613081642.0882000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:14:02. Current memory use 23.4MB.\n... used 6 dbqueries\n... used 0.0025081634521484 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 23640 +576 0 moodle core\\task\\completion_regular_task 0 1613081642.0963000000 1613081642.1208000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:14:02. Current memory use 23.4MB.\n... used 18 dbqueries\n... used 0.023783922195435 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 23640 +577 0 moodle core\\task\\portfolio_cron_task 0 1613081642.1291000000 1613081642.1299000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:14:02. Current memory use 23.9MB.\n... used 0 dbqueries\n... used 4.3153762817383E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 23640 +578 0 moodle core\\task\\plagiarism_cron_task 0 1613081642.1377000000 1613081642.1384000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:14:02. Current memory use 23.9MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 23640 +579 0 moodle core\\task\\calendar_cron_task 0 1613081642.1508000000 1613081642.1548000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:14:02. Current memory use 24.3MB.\n... used 1 dbqueries\n... used 0.0033259391784668 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 23640 +580 0 moodle core\\task\\blog_cron_task 0 1613081642.1631000000 1613081642.1671000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:14:02. Current memory use 24.7MB.\n... used 2 dbqueries\n... used 0.0033588409423828 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 23640 +581 0 moodle core\\task\\question_preview_cleanup_task 0 1613081642.1753000000 1613081642.1924000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:14:02. Current memory use 25.1MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016440868377686 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 23640 +582 0 moodle core\\task\\question_stats_cleanup_task 0 1613081642.2007000000 1613081642.2026000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:14:02. Current memory use 26.7MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011851787567139 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 23640 +583 0 mod_assign mod_assign\\task\\cron_task 0 1613081642.2151000000 1613081642.2472000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:14:02. Current memory use 28.9MB.\n... used 3 dbqueries\n... used 0.031289100646973 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 23640 +584 0 mod_forum mod_forum\\task\\cron_task 0 1613081642.2660000000 1613081642.2684000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:14:02. Current memory use 32.8MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014858245849609 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 23640 +585 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613081642.2866000000 1613081642.2931000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:14:02. Current memory use 33.9MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0056469440460205 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 23640 +586 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613081642.3015000000 1613081642.3025000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:14:02. Current memory use 33.9MB.\n... used 0 dbqueries\n... used 0.00011086463928223 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 23640 +587 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613081642.3107000000 1613081642.3116000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:14:02. Current memory use 34MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 23640 +588 0 mod_workshop mod_workshop\\task\\cron_task 0 1613081642.3197000000 1613081642.3213000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:14:02. Current memory use 34MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00068306922912598 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 23640 +589 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613081642.3304000000 1613081642.3314000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:14:02. Current memory use 34MB.\n... used 0 dbqueries\n... used 9.1075897216797E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 23640 +590 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613081642.3483000000 1613081642.3504000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:14:02. Current memory use 33.1MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0015020370483398 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 23640 +591 0 tool_monitor tool_monitor\\task\\clean_events 0 1613081642.3622000000 1613081642.3629000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:14:02. Current memory use 33.3MB.\n... used 0 dbqueries\n... used 0.00010895729064941 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 23640 +592 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613081642.3726000000 1613081642.3739000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:14:02. Current memory use 33.3MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00076389312744141 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 23640 +593 0 assignfeedback_editpdf assignfeedback_editpdf\\task\\convert_submissions 0 1613081701.8469000000 1613081701.9046000000 1 0 0 Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 22:15:01. Current memory use 16.5MB.\n... used 1 dbqueries\n... used 0.055254936218262 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n dev.derekmaxson.com 23777 +594 0 moodle core\\task\\badges_cron_task 0 1613081701.9132000000 1613081701.9188000000 1 0 0 Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 22:15:01. Current memory use 23.7MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0040102005004883 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n dev.derekmaxson.com 23777 +595 0 moodle core\\task\\badges_message_task 0 1613081701.9269000000 1613081701.9282000000 1 0 0 Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 22:15:01. Current memory use 24MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00059914588928223 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n dev.derekmaxson.com 23777 +596 0 mod_chat mod_chat\\task\\cron_task 0 1613081701.9409000000 1613081701.9498000000 2 2 0 Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 22:15:01. Current memory use 26.3MB.\n... used 4 dbqueries\n... used 0.0080029964447021 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n dev.derekmaxson.com 23777 +597 0 mod_scorm mod_scorm\\task\\cron_task 0 1613081701.9583000000 1613081701.9646000000 0 0 0 Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 22:15:01. Current memory use 26.9MB.\n... used 0 dbqueries\n... used 0.0053601264953613 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n dev.derekmaxson.com 23777 +598 0 block_rss_client block_rss_client\\task\\refreshfeeds 0 1613081701.9753000000 1613081701.9825000000 3 0 0 Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 22:15:01. Current memory use 26.2MB.\n\n0 feeds refreshed (took 0.00074099999999999 seconds)\n... used 3 dbqueries\n... used 0.0066211223602295 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n dev.derekmaxson.com 23777 +599 0 moodle core\\task\\session_cleanup_task 0 1613081701.9909000000 1613081701.9996000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:15:01. Current memory use 27.2MB.\n... used 19 dbqueries\n... used 0.0071649551391602 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 23777 +600 0 moodle core\\task\\send_new_user_passwords_task 0 1613081702.0080000000 1613081702.0092000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:15:02. Current memory use 27.5MB.\n... used 1 dbqueries\n... used 0.00058794021606445 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 23777 +601 0 moodle core\\task\\send_failed_login_notifications_task 0 1613081702.0174000000 1613081702.0181000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:15:02. Current memory use 27.5MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 23777 +602 0 moodle core\\task\\legacy_plugin_cron_task 0 1613081702.0265000000 1613081702.0421000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:15:02. Current memory use 27.5MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.015038013458252 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 23777 +603 0 moodle core\\task\\grade_cron_task 0 1613081702.0502000000 1613081702.0534000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:15:02. Current memory use 29MB.\n... used 6 dbqueries\n... used 0.0024988651275635 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 23777 +604 0 moodle core\\task\\completion_regular_task 0 1613081702.0615000000 1613081702.0855000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:15:02. Current memory use 29MB.\n... used 18 dbqueries\n... used 0.023430824279785 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 23777 +605 0 moodle core\\task\\portfolio_cron_task 0 1613081702.0937000000 1613081702.0943000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:15:02. Current memory use 29.2MB.\n... used 0 dbqueries\n... used 4.3153762817383E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 23777 +606 0 moodle core\\task\\plagiarism_cron_task 0 1613081702.1021000000 1613081702.1028000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:15:02. Current memory use 29.2MB.\n... used 0 dbqueries\n... used 4.7206878662109E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 23777 +607 0 moodle core\\task\\calendar_cron_task 0 1613081702.1110000000 1613081702.1151000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:15:02. Current memory use 29.2MB.\n... used 1 dbqueries\n... used 0.0035350322723389 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 23777 +608 0 moodle core\\task\\blog_cron_task 0 1613081702.1230000000 1613081702.1270000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:15:02. Current memory use 29.6MB.\n... used 2 dbqueries\n... used 0.0034317970275879 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 23777 +609 0 moodle core\\task\\question_preview_cleanup_task 0 1613081702.1348000000 1613081702.1522000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:15:02. Current memory use 29.9MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016741037368774 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 23777 +610 0 moodle core\\task\\question_stats_cleanup_task 0 1613081702.1603000000 1613081702.1622000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:15:02. Current memory use 31.6MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012578964233398 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 23777 +611 0 mod_assign mod_assign\\task\\cron_task 0 1613081702.1701000000 1613081702.1834000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:15:02. Current memory use 31.7MB.\n... used 3 dbqueries\n... used 0.012265920639038 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 23777 +612 0 mod_forum mod_forum\\task\\cron_task 0 1613081702.2024000000 1613081702.2049000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:15:02. Current memory use 33.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014939308166504 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 23777 +613 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613081702.2230000000 1613081702.2298000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:15:02. Current memory use 34.7MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.005634069442749 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 23777 +614 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613081702.2388000000 1613081702.2396000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:15:02. Current memory use 34.7MB.\n... used 0 dbqueries\n... used 9.2983245849609E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 23777 +615 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613081702.2473000000 1613081702.2480000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:15:02. Current memory use 34.7MB.\n... used 0 dbqueries\n... used 8.702278137207E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 23777 +695 0 moodle core\\task\\calendar_cron_task 0 1613081941.3680000000 1613081941.3720000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:19:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033571720123291 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 23883 +616 0 mod_workshop mod_workshop\\task\\cron_task 0 1613081702.2560000000 1613081702.2576000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:15:02. Current memory use 34.8MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00068283081054688 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 23777 +617 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613081702.2652000000 1613081702.2660000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:15:02. Current memory use 34.8MB.\n... used 0 dbqueries\n... used 8.9168548583984E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 23777 +618 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613081702.2765000000 1613081702.2786000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:15:02. Current memory use 34.6MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014688968658447 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 23777 +619 0 tool_monitor tool_monitor\\task\\clean_events 0 1613081702.2869000000 1613081702.2876000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:15:02. Current memory use 34.7MB.\n... used 0 dbqueries\n... used 0.00011086463928223 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 23777 +620 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613081702.2960000000 1613081702.2974000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:15:02. Current memory use 34.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00075197219848633 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 23777 +621 0 moodle core\\task\\session_cleanup_task 0 1613081761.4867000000 1613081761.5007000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:16:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.010992050170898 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 23832 +622 0 moodle core\\task\\send_new_user_passwords_task 0 1613081761.5094000000 1613081761.5106000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:16:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00058388710021973 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 23832 +623 0 moodle core\\task\\send_failed_login_notifications_task 0 1613081761.5194000000 1613081761.5200000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:16:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 23832 +624 0 moodle core\\task\\legacy_plugin_cron_task 0 1613081761.5282000000 1613081761.5717000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:16:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.042865991592407 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 23832 +625 0 moodle core\\task\\grade_cron_task 0 1613081761.5798000000 1613081761.5830000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:16:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025069713592529 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 23832 +626 0 moodle core\\task\\completion_regular_task 0 1613081761.5910000000 1613081761.6161000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:16:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024442911148071 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 23832 +627 0 moodle core\\task\\portfolio_cron_task 0 1613081761.6245000000 1613081761.6252000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:16:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 23832 +628 0 moodle core\\task\\plagiarism_cron_task 0 1613081761.6330000000 1613081761.6337000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:16:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.7922134399414E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 23832 +629 0 moodle core\\task\\calendar_cron_task 0 1613081761.6462000000 1613081761.6501000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:16:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0032720565795898 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 23832 +630 0 moodle core\\task\\blog_cron_task 0 1613081761.6580000000 1613081761.6621000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:16:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0033459663391113 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 23832 +631 0 moodle core\\task\\question_preview_cleanup_task 0 1613081761.6699000000 1613081761.6869000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:16:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016376972198486 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 23832 +632 0 moodle core\\task\\question_stats_cleanup_task 0 1613081761.6954000000 1613081761.6973000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:16:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011730194091797 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 23832 +633 0 mod_assign mod_assign\\task\\cron_task 0 1613081761.7117000000 1613081761.7436000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:16:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031023025512695 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 23832 +634 0 mod_forum mod_forum\\task\\cron_task 0 1613081761.7628000000 1613081761.7652000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:16:01. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014820098876953 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 23832 +635 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613081761.7826000000 1613081761.7894000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:16:01. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0059089660644531 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 23832 +636 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613081761.7975000000 1613081761.7985000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:16:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 0.00011420249938965 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 23832 +637 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613081761.8062000000 1613081761.8072000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:16:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.9883804321289E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 23832 +638 0 mod_workshop mod_workshop\\task\\cron_task 0 1613081761.8153000000 1613081761.8168000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:16:01. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00067615509033203 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 23832 +639 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613081761.8254000000 1613081761.8263000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:16:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 23832 +640 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613081761.8381000000 1613081761.8402000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:16:01. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014669895172119 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 23832 +641 0 tool_monitor tool_monitor\\task\\clean_events 0 1613081761.8501000000 1613081761.8508000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:16:01. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00012588500976562 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 23832 +642 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613081761.8609000000 1613081761.8622000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:16:01. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00076603889465332 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 23832 +643 0 moodle core\\task\\session_cleanup_task 0 1613081822.0588000000 1613081822.0728000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:17:02. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011032819747925 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 23848 +644 0 moodle core\\task\\send_new_user_passwords_task 0 1613081822.0849000000 1613081822.0861000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:17:02. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00058197975158691 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 23848 +645 0 moodle core\\task\\send_failed_login_notifications_task 0 1613081822.0964000000 1613081822.0971000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:17:02. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 23848 +646 0 moodle core\\task\\legacy_plugin_cron_task 0 1613081822.1053000000 1613081822.1491000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:17:02. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043147087097168 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 23848 +648 0 moodle core\\task\\completion_regular_task 0 1613081822.1692000000 1613081822.1943000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:17:02. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024527788162231 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 23848 +649 0 moodle core\\task\\portfolio_cron_task 0 1613081822.2052000000 1613081822.2059000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:17:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 23848 +650 0 moodle core\\task\\plagiarism_cron_task 0 1613081822.2141000000 1613081822.2148000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:17:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 23848 +651 0 moodle core\\task\\calendar_cron_task 0 1613081822.2277000000 1613081822.2317000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:17:02. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033471584320068 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 23848 +652 0 moodle core\\task\\blog_cron_task 0 1613081822.2404000000 1613081822.2444000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:17:02. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.003385066986084 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 23848 +653 0 moodle core\\task\\question_preview_cleanup_task 0 1613081822.2522000000 1613081822.2692000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:17:02. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016329050064087 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 23848 +654 0 moodle core\\task\\question_stats_cleanup_task 0 1613081822.2771000000 1613081822.2790000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:17:02. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011980533599854 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 23848 +655 0 mod_assign mod_assign\\task\\cron_task 0 1613081822.2911000000 1613081822.3233000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:17:02. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031345129013062 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 23848 +656 0 mod_forum mod_forum\\task\\cron_task 0 1613081822.3474000000 1613081822.3498000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:17:02. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015430450439453 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 23848 +657 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613081822.3758000000 1613081822.3826000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:17:02. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0058951377868652 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 23848 +658 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613081822.3925000000 1613081822.3935000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:17:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2029571533203E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 23848 +659 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613081822.4021000000 1613081822.4031000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:17:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.8930130004883E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 23848 +660 0 mod_workshop mod_workshop\\task\\cron_task 0 1613081822.4118000000 1613081822.4134000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:17:02. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00067901611328125 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 23848 +661 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613081822.4214000000 1613081822.4223000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:17:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.6069107055664E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 23848 +662 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613081822.4329000000 1613081822.4349000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:17:02. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014560222625732 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 23848 +663 0 tool_monitor tool_monitor\\task\\clean_events 0 1613081822.4430000000 1613081822.4436000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:17:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011396408081055 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 23848 +664 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613081822.4517000000 1613081822.4531000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:17:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00076389312744141 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 23848 +665 0 moodle core\\task\\session_cleanup_task 0 1613081881.6457000000 1613081881.6600000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:18:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011228084564209 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 23867 +666 0 moodle core\\task\\send_new_user_passwords_task 0 1613081881.6688000000 1613081881.6701000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:18:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00057601928710938 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 23867 +667 0 moodle core\\task\\send_failed_login_notifications_task 0 1613081881.6787000000 1613081881.6794000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:18:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 23867 +668 0 moodle core\\task\\legacy_plugin_cron_task 0 1613081881.6877000000 1613081881.7315000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:18:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043163061141968 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 23867 +669 0 moodle core\\task\\grade_cron_task 0 1613081881.7401000000 1613081881.7432000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:18:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025279521942139 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 23867 +670 0 moodle core\\task\\completion_regular_task 0 1613081881.7515000000 1613081881.7768000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:18:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.02462911605835 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 23867 +671 0 moodle core\\task\\portfolio_cron_task 0 1613081881.7858000000 1613081881.7865000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:18:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.6014785766602E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 23867 +672 0 moodle core\\task\\plagiarism_cron_task 0 1613081881.7954000000 1613081881.7961000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:18:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 23867 +673 0 moodle core\\task\\calendar_cron_task 0 1613081881.8090000000 1613081881.8130000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:18:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033879280090332 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 23867 +674 0 moodle core\\task\\blog_cron_task 0 1613081881.8218000000 1613081881.8259000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:18:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0034639835357666 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 23867 +675 0 moodle core\\task\\question_preview_cleanup_task 0 1613081881.8344000000 1613081881.8514000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:18:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016373872756958 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 23867 +676 0 moodle core\\task\\question_stats_cleanup_task 0 1613081881.8600000000 1613081881.8619000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:18:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012071132659912 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 23867 +677 0 mod_assign mod_assign\\task\\cron_task 0 1613081881.8743000000 1613081881.9064000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:18:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031198978424072 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 23867 +678 0 mod_forum mod_forum\\task\\cron_task 0 1613081881.9249000000 1613081881.9272000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:18:01. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014870166778564 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 23867 +696 0 moodle core\\task\\blog_cron_task 0 1613081941.3801000000 1613081941.3841000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:19:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0033919811248779 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 23883 +679 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613081881.9455000000 1613081881.9523000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:18:01. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0059430599212646 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 23867 +680 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613081881.9605000000 1613081881.9615000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:18:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.4175338745117E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 23867 +681 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613081881.9693000000 1613081881.9702000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:18:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.5115432739258E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 23867 +682 0 mod_workshop mod_workshop\\task\\cron_task 0 1613081881.9782000000 1613081881.9798000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:18:01. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00066995620727539 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 23867 +683 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613081881.9876000000 1613081881.9886000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:18:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2029571533203E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 23867 +684 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613081881.9990000000 1613081882.0011000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:18:01. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014472007751465 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 23867 +685 0 tool_monitor tool_monitor\\task\\clean_events 0 1613081882.0093000000 1613081882.0100000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:18:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011587142944336 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 23867 +686 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613081882.0179000000 1613081882.0193000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:18:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00076484680175781 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 23867 +687 0 moodle core\\task\\session_cleanup_task 0 1613081941.2081000000 1613081941.2224000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:19:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011209964752197 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 23883 +688 0 moodle core\\task\\send_new_user_passwords_task 0 1613081941.2313000000 1613081941.2325000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:19:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00056982040405273 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 23883 +689 0 moodle core\\task\\send_failed_login_notifications_task 0 1613081941.2406000000 1613081941.2413000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:19:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 23883 +690 0 moodle core\\task\\legacy_plugin_cron_task 0 1613081941.2499000000 1613081941.2936000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:19:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043039083480835 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 23883 +691 0 moodle core\\task\\grade_cron_task 0 1613081941.3017000000 1613081941.3049000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:19:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025179386138916 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 23883 +692 0 moodle core\\task\\completion_regular_task 0 1613081941.3131000000 1613081941.3382000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:19:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.02450704574585 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 23883 +693 0 moodle core\\task\\portfolio_cron_task 0 1613081941.3463000000 1613081941.3470000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:19:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 23883 +694 0 moodle core\\task\\plagiarism_cron_task 0 1613081941.3549000000 1613081941.3556000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:19:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 23883 +697 0 moodle core\\task\\question_preview_cleanup_task 0 1613081941.3919000000 1613081941.4089000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:19:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016292095184326 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 23883 +698 0 moodle core\\task\\question_stats_cleanup_task 0 1613081941.4168000000 1613081941.4186000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:19:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011851787567139 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 23883 +699 0 mod_assign mod_assign\\task\\cron_task 0 1613081941.4305000000 1613081941.4623000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:19:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.030942916870117 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 23883 +700 0 mod_forum mod_forum\\task\\cron_task 0 1613081941.4806000000 1613081941.4829000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:19:01. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014898777008057 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 23883 +701 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613081941.5006000000 1613081941.5074000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:19:01. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0058720111846924 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 23883 +702 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613081941.5152000000 1613081941.5162000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:19:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2983245849609E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 23883 +703 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613081941.5243000000 1613081941.5252000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:19:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 23883 +704 0 mod_workshop mod_workshop\\task\\cron_task 0 1613081941.5333000000 1613081941.5348000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:19:01. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00069403648376465 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 23883 +705 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613081941.5425000000 1613081941.5434000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:19:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.0122222900391E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 23883 +706 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613081941.5542000000 1613081941.5563000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:19:01. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014369487762451 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 23883 +707 0 tool_monitor tool_monitor\\task\\clean_events 0 1613081941.5649000000 1613081941.5656000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:19:01. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011515617370605 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 23883 +708 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613081941.5741000000 1613081941.5755000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:19:01. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00075078010559082 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 23883 +709 0 enrol_manual enrol_manual\\task\\sync_enrolments 0 1613082001.7660000000 1613082001.7733000000 0 0 0 Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 22:20:01. Current memory use 16.5MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.0048859119415283 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n dev.derekmaxson.com 23899 +710 0 enrol_manual enrol_manual\\task\\send_expiry_notifications 0 1613082001.7821000000 1613082001.7829000000 0 0 0 Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 22:20:01. Current memory use 17.5MB.\nmanual enrolment expiry notifications were already sent today at Thursday, 11 February 2021, 6:00 AM.\n... used 0 dbqueries\n... used 0.00018715858459473 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n dev.derekmaxson.com 23899 +711 0 enrol_self enrol_self\\task\\sync_enrolments 0 1613082001.7917000000 1613082001.7969000000 6 0 0 Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 22:20:01. Current memory use 17.5MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 6 dbqueries\n... used 0.0045099258422852 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n dev.derekmaxson.com 23899 +712 0 enrol_self enrol_self\\task\\send_expiry_notifications 0 1613082001.8053000000 1613082001.8060000000 0 0 0 Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 22:20:01. Current memory use 17.6MB.\nself enrolment expiry notifications were already sent today at Thursday, 11 February 2021, 6:00 AM.\n... used 0 dbqueries\n... used 0.00018000602722168 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n dev.derekmaxson.com 23899 +713 0 moodle core\\task\\badges_cron_task 0 1613082001.8143000000 1613082001.8195000000 1 0 0 Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 22:20:01. Current memory use 17.9MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0038869380950928 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n dev.derekmaxson.com 23899 +714 0 moodle core\\task\\badges_message_task 0 1613082001.8283000000 1613082001.8295000000 1 0 0 Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 22:20:01. Current memory use 18.3MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00057482719421387 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n dev.derekmaxson.com 23899 +715 0 mod_chat mod_chat\\task\\cron_task 0 1613082001.8420000000 1613082001.8514000000 2 2 0 Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 22:20:01. Current memory use 19.3MB.\n... used 4 dbqueries\n... used 0.0084280967712402 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n dev.derekmaxson.com 23899 +716 0 mod_scorm mod_scorm\\task\\cron_task 0 1613082001.8599000000 1613082001.8789000000 0 0 0 Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 22:20:01. Current memory use 19.9MB.\n... used 0 dbqueries\n... used 0.018188953399658 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n dev.derekmaxson.com 23899 +717 0 block_rss_client block_rss_client\\task\\refreshfeeds 0 1613082001.8908000000 1613082001.8989000000 3 0 0 Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 22:20:01. Current memory use 20.8MB.\n\n0 feeds refreshed (took 0.00071900000000003 seconds)\n... used 3 dbqueries\n... used 0.0076239109039307 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n dev.derekmaxson.com 23899 +718 0 moodle core\\task\\session_cleanup_task 0 1613082001.9079000000 1613082001.9165000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:20:01. Current memory use 23MB.\n... used 19 dbqueries\n... used 0.0071728229522705 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 23899 +719 0 moodle core\\task\\send_new_user_passwords_task 0 1613082001.9252000000 1613082001.9264000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:20:01. Current memory use 23.3MB.\n... used 1 dbqueries\n... used 0.00059890747070312 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 23899 +720 0 moodle core\\task\\send_failed_login_notifications_task 0 1613082001.9349000000 1613082001.9356000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:20:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.3153762817383E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 23899 +721 0 moodle core\\task\\legacy_plugin_cron_task 0 1613082001.9445000000 1613082001.9739000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:20:01. Current memory use 23.4MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.028795003890991 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 23899 +722 0 moodle core\\task\\grade_cron_task 0 1613082001.9824000000 1613082001.9855000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:20:01. Current memory use 26.6MB.\n... used 6 dbqueries\n... used 0.0025069713592529 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 23899 +723 0 moodle core\\task\\completion_regular_task 0 1613082001.9943000000 1613082002.0201000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:20:01. Current memory use 26.6MB.\n... used 18 dbqueries\n... used 0.025102138519287 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 23899 +724 0 moodle core\\task\\portfolio_cron_task 0 1613082002.0286000000 1613082002.0293000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:20:02. Current memory use 27MB.\n... used 0 dbqueries\n... used 4.3153762817383E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 23899 +725 0 moodle core\\task\\plagiarism_cron_task 0 1613082002.0374000000 1613082002.0380000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:20:02. Current memory use 27.1MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 23899 +726 0 moodle core\\task\\calendar_cron_task 0 1613082002.0462000000 1613082002.0503000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:20:02. Current memory use 27.1MB.\n... used 1 dbqueries\n... used 0.003486156463623 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 23899 +727 0 moodle core\\task\\blog_cron_task 0 1613082002.0587000000 1613082002.0629000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:20:02. Current memory use 27.5MB.\n... used 2 dbqueries\n... used 0.0035660266876221 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 23899 +728 0 moodle core\\task\\question_preview_cleanup_task 0 1613082002.0712000000 1613082002.0883000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:20:02. Current memory use 27.7MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.01639199256897 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 23899 +729 0 moodle core\\task\\question_stats_cleanup_task 0 1613082002.0963000000 1613082002.0982000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:20:02. Current memory use 29.4MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012118816375732 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 23899 +730 0 mod_assign mod_assign\\task\\cron_task 0 1613082002.1068000000 1613082002.1400000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:20:02. Current memory use 29.5MB.\n... used 3 dbqueries\n... used 0.032243967056274 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 23899 +731 0 mod_forum mod_forum\\task\\cron_task 0 1613082002.1592000000 1613082002.1617000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:20:02. Current memory use 33.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014960765838623 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 23899 +732 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613082002.1799000000 1613082002.1867000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:20:02. Current memory use 34.7MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0056371688842773 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 23899 +733 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613082002.1952000000 1613082002.1960000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:20:02. Current memory use 34.7MB.\n... used 0 dbqueries\n... used 9.2029571533203E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 23899 +734 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613082002.2045000000 1613082002.2053000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:20:02. Current memory use 34.7MB.\n... used 0 dbqueries\n... used 9.4890594482422E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 23899 +735 0 mod_workshop mod_workshop\\task\\cron_task 0 1613082002.2138000000 1613082002.2155000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:20:02. Current memory use 34.8MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00072503089904785 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 23899 +736 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613082002.2239000000 1613082002.2247000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:20:02. Current memory use 34.8MB.\n... used 0 dbqueries\n... used 9.1075897216797E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 23899 +737 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613082002.2353000000 1613082002.2373000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:20:02. Current memory use 34.6MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014419555664062 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 23899 +738 0 tool_monitor tool_monitor\\task\\clean_events 0 1613082002.2456000000 1613082002.2463000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:20:02. Current memory use 34.7MB.\n... used 0 dbqueries\n... used 0.00011301040649414 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 23899 +739 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613082002.2545000000 1613082002.2559000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:20:02. Current memory use 34.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00076603889465332 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 23899 +740 0 moodle core\\task\\session_cleanup_task 0 1613082061.4455000000 1613082061.4596000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:21:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011080026626587 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 23915 +741 0 moodle core\\task\\send_new_user_passwords_task 0 1613082061.4681000000 1613082061.4693000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:21:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00055718421936035 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 23915 +742 0 moodle core\\task\\send_failed_login_notifications_task 0 1613082061.4772000000 1613082061.4779000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:21:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.2200088500977E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 23915 +837 0 moodle core\\task\\send_new_user_passwords_task 0 1613082301.8876000000 1613082301.8888000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:25:01. Current memory use 23.2MB.\n... used 1 dbqueries\n... used 0.00056195259094238 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 23980 +743 0 moodle core\\task\\legacy_plugin_cron_task 0 1613082061.4856000000 1613082061.5291000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:21:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.042930126190186 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 23915 +744 0 moodle core\\task\\grade_cron_task 0 1613082061.5371000000 1613082061.5402000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:21:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.002457857131958 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 23915 +745 0 moodle core\\task\\completion_regular_task 0 1613082061.5481000000 1613082061.5735000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:21:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024703979492188 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 23915 +746 0 moodle core\\task\\portfolio_cron_task 0 1613082061.5816000000 1613082061.5823000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:21:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.3869018554688E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 23915 +747 0 moodle core\\task\\plagiarism_cron_task 0 1613082061.5903000000 1613082061.5909000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:21:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.3153762817383E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 23915 +748 0 moodle core\\task\\calendar_cron_task 0 1613082061.6032000000 1613082061.6072000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:21:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0032989978790283 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 23915 +749 0 moodle core\\task\\blog_cron_task 0 1613082061.6149000000 1613082061.6190000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:21:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0034148693084717 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 23915 +750 0 moodle core\\task\\question_preview_cleanup_task 0 1613082061.6268000000 1613082061.6440000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:21:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016623973846436 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 23915 +751 0 moodle core\\task\\question_stats_cleanup_task 0 1613082061.6521000000 1613082061.6539000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:21:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012040138244629 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 23915 +752 0 mod_assign mod_assign\\task\\cron_task 0 1613082061.6658000000 1613082061.6979000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:21:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.03121018409729 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 23915 +753 0 mod_forum mod_forum\\task\\cron_task 0 1613082061.7164000000 1613082061.7187000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:21:01. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00148606300354 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 23915 +754 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613082061.7362000000 1613082061.7430000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:21:01. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0059421062469482 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 23915 +755 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613082061.7513000000 1613082061.7523000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:21:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2029571533203E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 23915 +756 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613082061.7604000000 1613082061.7613000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:21:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.0122222900391E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 23915 +757 0 mod_workshop mod_workshop\\task\\cron_task 0 1613082061.7694000000 1613082061.7709000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:21:01. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00069403648376465 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 23915 +884 0 moodle core\\task\\grade_cron_task 0 1613082422.0510000000 1613082422.0541000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:27:02. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0024738311767578 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24024 +758 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613082061.7789000000 1613082061.7799000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:21:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.9883804321289E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 23915 +759 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613082061.7905000000 1613082061.7925000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:21:01. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014059543609619 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 23915 +760 0 tool_monitor tool_monitor\\task\\clean_events 0 1613082061.8006000000 1613082061.8013000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:21:01. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011706352233887 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 23915 +761 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613082061.8096000000 1613082061.8110000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:21:01. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00077700614929199 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 23915 +762 0 block_recent_activity block_recent_activity\\task\\cleanup 0 1613082122.0014000000 1613082122.0315000000 0 1 0 Execute scheduled task: Cleanup task for recent activity block (block_recent_activity\\task\\cleanup)\n... started 22:22:02. Current memory use 16.5MB.\n... used 1 dbqueries\n... used 0.027740001678467 seconds\nScheduled task complete: Cleanup task for recent activity block (block_recent_activity\\task\\cleanup)\n dev.derekmaxson.com 23931 +763 0 moodle core\\task\\session_cleanup_task 0 1613082122.0409000000 1613082122.0493000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:22:02. Current memory use 20.2MB.\n... used 19 dbqueries\n... used 0.0070240497589111 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 23931 +764 0 moodle core\\task\\send_new_user_passwords_task 0 1613082122.0579000000 1613082122.0592000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:22:02. Current memory use 20.6MB.\n... used 1 dbqueries\n... used 0.00056314468383789 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 23931 +765 0 moodle core\\task\\send_failed_login_notifications_task 0 1613082122.0678000000 1613082122.0684000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:22:02. Current memory use 20.6MB.\n... used 0 dbqueries\n... used 3.8862228393555E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 23931 +766 0 moodle core\\task\\legacy_plugin_cron_task 0 1613082122.0780000000 1613082122.1091000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:22:02. Current memory use 20.6MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.03043794631958 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 23931 +767 0 moodle core\\task\\grade_cron_task 0 1613082122.1183000000 1613082122.1214000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:22:02. Current memory use 24MB.\n... used 6 dbqueries\n... used 0.0024440288543701 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 23931 +768 0 moodle core\\task\\completion_regular_task 0 1613082122.1300000000 1613082122.1535000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:22:02. Current memory use 24MB.\n... used 18 dbqueries\n... used 0.022817134857178 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 23931 +769 0 moodle core\\task\\portfolio_cron_task 0 1613082122.1626000000 1613082122.1633000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:22:02. Current memory use 24.2MB.\n... used 0 dbqueries\n... used 4.3153762817383E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 23931 +770 0 moodle core\\task\\plagiarism_cron_task 0 1613082122.1718000000 1613082122.1725000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:22:02. Current memory use 24.2MB.\n... used 0 dbqueries\n... used 4.0054321289062E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 23931 +771 0 moodle core\\task\\calendar_cron_task 0 1613082122.1853000000 1613082122.1893000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:22:02. Current memory use 24.7MB.\n... used 1 dbqueries\n... used 0.0032889842987061 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 23931 +772 0 moodle core\\task\\blog_cron_task 0 1613082122.1974000000 1613082122.2014000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:22:02. Current memory use 25.1MB.\n... used 2 dbqueries\n... used 0.0032739639282227 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 23931 +773 0 moodle core\\task\\question_preview_cleanup_task 0 1613082122.2101000000 1613082122.2278000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:22:02. Current memory use 25.4MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.017090082168579 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 23931 +774 0 moodle core\\task\\question_stats_cleanup_task 0 1613082122.2378000000 1613082122.2397000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:22:02. Current memory use 28.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011861324310303 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 23931 +775 0 mod_assign mod_assign\\task\\cron_task 0 1613082122.2533000000 1613082122.2851000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:22:02. Current memory use 29.3MB.\n... used 3 dbqueries\n... used 0.030920028686523 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 23931 +776 0 mod_forum mod_forum\\task\\cron_task 0 1613082122.3034000000 1613082122.3058000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:22:02. Current memory use 33.2MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014450550079346 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 23931 +777 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613082122.3229000000 1613082122.3297000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:22:02. Current memory use 34.3MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0058438777923584 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 23931 +778 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613082122.3374000000 1613082122.3384000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:22:02. Current memory use 34.4MB.\n... used 0 dbqueries\n... used 9.0122222900391E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 23931 +779 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613082122.3460000000 1613082122.3470000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:22:02. Current memory use 34.4MB.\n... used 0 dbqueries\n... used 8.6069107055664E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 23931 +780 0 mod_workshop mod_workshop\\task\\cron_task 0 1613082122.3546000000 1613082122.3561000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:22:02. Current memory use 34.4MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00066709518432617 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 23931 +781 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613082122.3638000000 1613082122.3648000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:22:02. Current memory use 34.4MB.\n... used 0 dbqueries\n... used 8.702278137207E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 23931 +782 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613082122.3756000000 1613082122.3776000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:22:02. Current memory use 33.5MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014429092407227 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 23931 +783 0 tool_monitor tool_monitor\\task\\clean_events 0 1613082122.3858000000 1613082122.3865000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:22:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 0.0001530647277832 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 23931 +784 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613082122.3946000000 1613082122.3960000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:22:02. Current memory use 33.6MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00074505805969238 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 23931 +785 0 moodle core\\task\\complete_plans_task 0 1613082181.5850000000 1613082181.5988000000 3 0 0 Execute scheduled task: Complete learning plans which are due (core\\task\\complete_plans_task)\n... started 22:23:01. Current memory use 16.5MB.\n... used 3 dbqueries\n... used 0.011293172836304 seconds\nScheduled task complete: Complete learning plans which are due (core\\task\\complete_plans_task)\n dev.derekmaxson.com 23945 +786 0 moodle core\\task\\session_cleanup_task 0 1613082181.6090000000 1613082181.6175000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:23:01. Current memory use 18.4MB.\n... used 19 dbqueries\n... used 0.00711989402771 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 23945 +787 0 moodle core\\task\\send_new_user_passwords_task 0 1613082181.6261000000 1613082181.6274000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:23:01. Current memory use 18.8MB.\n... used 1 dbqueries\n... used 0.00057506561279297 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 23945 +788 0 moodle core\\task\\send_failed_login_notifications_task 0 1613082181.6357000000 1613082181.6364000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:23:01. Current memory use 18.8MB.\n... used 0 dbqueries\n... used 4.3153762817383E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 23945 +804 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613082181.9456000000 1613082181.9466000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:23:01. Current memory use 34.4MB.\n... used 0 dbqueries\n... used 8.9883804321289E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 23945 +789 0 moodle core\\task\\legacy_plugin_cron_task 0 1613082181.6451000000 1613082181.6888000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:23:01. Current memory use 18.8MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043056011199951 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 23945 +790 0 moodle core\\task\\grade_cron_task 0 1613082181.6974000000 1613082181.7006000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:23:01. Current memory use 23.8MB.\n... used 6 dbqueries\n... used 0.0024809837341309 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 23945 +791 0 moodle core\\task\\completion_regular_task 0 1613082181.7095000000 1613082181.7356000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:23:01. Current memory use 23.8MB.\n... used 18 dbqueries\n... used 0.025381088256836 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 23945 +792 0 moodle core\\task\\portfolio_cron_task 0 1613082181.7448000000 1613082181.7455000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:23:01. Current memory use 24.3MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 23945 +793 0 moodle core\\task\\plagiarism_cron_task 0 1613082181.7539000000 1613082181.7546000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:23:01. Current memory use 24.3MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 23945 +794 0 moodle core\\task\\calendar_cron_task 0 1613082181.7676000000 1613082181.7715000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:23:01. Current memory use 24.7MB.\n... used 1 dbqueries\n... used 0.0033149719238281 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 23945 +795 0 moodle core\\task\\blog_cron_task 0 1613082181.7795000000 1613082181.7835000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:23:01. Current memory use 25.1MB.\n... used 2 dbqueries\n... used 0.0033268928527832 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 23945 +796 0 moodle core\\task\\question_preview_cleanup_task 0 1613082181.7919000000 1613082181.8090000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:23:01. Current memory use 25.4MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016438961029053 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 23945 +797 0 moodle core\\task\\question_stats_cleanup_task 0 1613082181.8172000000 1613082181.8191000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:23:01. Current memory use 27.1MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012168884277344 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 23945 +798 0 mod_assign mod_assign\\task\\cron_task 0 1613082181.8308000000 1613082181.8628000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:23:01. Current memory use 29.3MB.\n... used 3 dbqueries\n... used 0.031055927276611 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 23945 +799 0 mod_forum mod_forum\\task\\cron_task 0 1613082181.8819000000 1613082181.8843000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:23:01. Current memory use 33.2MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014669895172119 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 23945 +800 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613082181.9025000000 1613082181.9092000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:23:01. Current memory use 34.4MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0058131217956543 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 23945 +801 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613082181.9174000000 1613082181.9183000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:23:01. Current memory use 34.4MB.\n... used 0 dbqueries\n... used 9.2983245849609E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 23945 +802 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613082181.9265000000 1613082181.9275000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:23:01. Current memory use 34.4MB.\n... used 0 dbqueries\n... used 9.0122222900391E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 23945 +803 0 mod_workshop mod_workshop\\task\\cron_task 0 1613082181.9362000000 1613082181.9378000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:23:01. Current memory use 34.4MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00072693824768066 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 23945 +932 0 moodle core\\task\\calendar_cron_task 0 1613082542.3135000000 1613082542.3175000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:29:02. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033118724822998 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24056 +805 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613082181.9574000000 1613082181.9595000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:23:01. Current memory use 33.5MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0015370845794678 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 23945 +806 0 tool_monitor tool_monitor\\task\\clean_events 0 1613082181.9681000000 1613082181.9688000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:23:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 0.0001060962677002 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 23945 +807 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613082181.9772000000 1613082181.9786000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:23:01. Current memory use 33.7MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00079703330993652 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 23945 +808 0 moodle core\\task\\session_cleanup_task 0 1613082242.1684000000 1613082242.1826000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:24:02. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011141061782837 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 23961 +809 0 moodle core\\task\\send_new_user_passwords_task 0 1613082242.1916000000 1613082242.1929000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:24:02. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00057578086853027 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 23961 +810 0 moodle core\\task\\send_failed_login_notifications_task 0 1613082242.2032000000 1613082242.2039000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:24:02. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.6968460083008E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 23961 +811 0 moodle core\\task\\legacy_plugin_cron_task 0 1613082242.2125000000 1613082242.2565000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:24:02. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043316125869751 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 23961 +812 0 moodle core\\task\\grade_cron_task 0 1613082242.2650000000 1613082242.2682000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:24:02. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025510787963867 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 23961 +813 0 moodle core\\task\\completion_regular_task 0 1613082242.2764000000 1613082242.3019000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:24:02. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.02487587928772 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 23961 +814 0 moodle core\\task\\portfolio_cron_task 0 1613082242.3102000000 1613082242.3109000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:24:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.3869018554688E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 23961 +815 0 moodle core\\task\\plagiarism_cron_task 0 1613082242.3192000000 1613082242.3199000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:24:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 23961 +816 0 moodle core\\task\\calendar_cron_task 0 1613082242.3325000000 1613082242.3365000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:24:02. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033731460571289 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 23961 +817 0 moodle core\\task\\blog_cron_task 0 1613082242.3445000000 1613082242.3485000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:24:02. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0033879280090332 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 23961 +818 0 moodle core\\task\\question_preview_cleanup_task 0 1613082242.3563000000 1613082242.3733000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:24:02. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016363143920898 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 23961 +819 0 moodle core\\task\\question_stats_cleanup_task 0 1613082242.3814000000 1613082242.3832000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:24:02. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012049674987793 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 23961 +820 0 mod_assign mod_assign\\task\\cron_task 0 1613082242.3951000000 1613082242.4271000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:24:02. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031121969223022 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 23961 +821 0 mod_forum mod_forum\\task\\cron_task 0 1613082242.4455000000 1613082242.4479000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:24:02. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015151500701904 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 23961 +822 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613082242.4655000000 1613082242.4723000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:24:02. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0059700012207031 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 23961 +823 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613082242.4803000000 1613082242.4813000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:24:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2029571533203E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 23961 +824 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613082242.4889000000 1613082242.4898000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:24:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 23961 +825 0 mod_workshop mod_workshop\\task\\cron_task 0 1613082242.4976000000 1613082242.4991000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:24:02. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.0007171630859375 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 23961 +826 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613082242.5068000000 1613082242.5078000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:24:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.6069107055664E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 23961 +827 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613082242.5182000000 1613082242.5202000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:24:02. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014030933380127 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 23961 +828 0 tool_monitor tool_monitor\\task\\clean_events 0 1613082242.5283000000 1613082242.5290000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:24:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011086463928223 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 23961 +829 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613082242.5368000000 1613082242.5382000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:24:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00076794624328613 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 23961 +830 0 moodle core\\task\\context_cleanup_task 0 1613082301.7306000000 1613082301.7441000000 10 1 0 Execute scheduled task: Cleanup contexts (core\\task\\context_cleanup_task)\n... started 22:25:01. Current memory use 16.8MB.\n Cleaned up context instances\n... used 11 dbqueries\n... used 0.010334968566895 seconds\nScheduled task complete: Cleanup contexts (core\\task\\context_cleanup_task)\n dev.derekmaxson.com 23980 +831 0 moodle core\\task\\badges_cron_task 0 1613082301.7531000000 1613082301.7577000000 1 0 0 Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 22:25:01. Current memory use 17.8MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0039222240447998 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n dev.derekmaxson.com 23980 +832 0 moodle core\\task\\badges_message_task 0 1613082301.7716000000 1613082301.7727000000 1 0 0 Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 22:25:01. Current memory use 18.1MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00050210952758789 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n dev.derekmaxson.com 23980 +833 0 mod_chat mod_chat\\task\\cron_task 0 1613082301.7941000000 1613082301.8030000000 2 2 0 Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 22:25:01. Current memory use 19.1MB.\n... used 4 dbqueries\n... used 0.0080580711364746 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n dev.derekmaxson.com 23980 +834 0 mod_scorm mod_scorm\\task\\cron_task 0 1613082301.8239000000 1613082301.8428000000 0 0 0 Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 22:25:01. Current memory use 19.7MB.\n... used 0 dbqueries\n... used 0.018022060394287 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n dev.derekmaxson.com 23980 +835 0 block_rss_client block_rss_client\\task\\refreshfeeds 0 1613082301.8539000000 1613082301.8620000000 3 0 0 Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 22:25:01. Current memory use 20.7MB.\n\n0 feeds refreshed (took 0.00069200000000003 seconds)\n... used 3 dbqueries\n... used 0.0076160430908203 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n dev.derekmaxson.com 23980 +836 0 moodle core\\task\\session_cleanup_task 0 1613082301.8705000000 1613082301.8789000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:25:01. Current memory use 22.9MB.\n... used 19 dbqueries\n... used 0.0070300102233887 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 23980 +838 0 moodle core\\task\\send_failed_login_notifications_task 0 1613082301.8975000000 1613082301.8981000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:25:01. Current memory use 23.2MB.\n... used 0 dbqueries\n... used 4.3869018554688E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 23980 +839 0 moodle core\\task\\legacy_plugin_cron_task 0 1613082301.9074000000 1613082301.9385000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:25:01. Current memory use 23.2MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.030519008636475 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 23980 +840 0 moodle core\\task\\grade_cron_task 0 1613082301.9473000000 1613082301.9503000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:25:01. Current memory use 26.6MB.\n... used 6 dbqueries\n... used 0.0024769306182861 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 23980 +841 0 moodle core\\task\\completion_regular_task 0 1613082301.9587000000 1613082301.9848000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:25:01. Current memory use 26.7MB.\n... used 18 dbqueries\n... used 0.025547027587891 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 23980 +842 0 moodle core\\task\\portfolio_cron_task 0 1613082301.9933000000 1613082301.9939000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:25:01. Current memory use 27.1MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 23980 +843 0 moodle core\\task\\plagiarism_cron_task 0 1613082302.0019000000 1613082302.0026000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:25:02. Current memory use 27.1MB.\n... used 0 dbqueries\n... used 5.6028366088867E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 23980 +844 0 moodle core\\task\\calendar_cron_task 0 1613082302.0107000000 1613082302.0149000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:25:02. Current memory use 27.1MB.\n... used 1 dbqueries\n... used 0.0035400390625 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 23980 +845 0 moodle core\\task\\blog_cron_task 0 1613082302.0229000000 1613082302.0269000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:25:02. Current memory use 27.5MB.\n... used 2 dbqueries\n... used 0.0034160614013672 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 23980 +846 0 moodle core\\task\\question_preview_cleanup_task 0 1613082302.0354000000 1613082302.0524000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:25:02. Current memory use 27.8MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016319036483765 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 23980 +847 0 moodle core\\task\\question_stats_cleanup_task 0 1613082302.0613000000 1613082302.0631000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:25:02. Current memory use 29.5MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.001215934753418 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 23980 +848 0 mod_assign mod_assign\\task\\cron_task 0 1613082302.0711000000 1613082302.1036000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:25:02. Current memory use 29.6MB.\n... used 3 dbqueries\n... used 0.031546115875244 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 23980 +849 0 mod_forum mod_forum\\task\\cron_task 0 1613082302.1220000000 1613082302.1245000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:25:02. Current memory use 33.5MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014629364013672 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 23980 +850 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613082302.1419000000 1613082302.1487000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:25:02. Current memory use 34.7MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0056190490722656 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 23980 +851 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613082302.1565000000 1613082302.1573000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:25:02. Current memory use 34.8MB.\n... used 0 dbqueries\n... used 8.8214874267578E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 23980 +852 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613082302.1651000000 1613082302.1659000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:25:02. Current memory use 34.8MB.\n... used 0 dbqueries\n... used 8.5830688476562E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 23980 +933 0 moodle core\\task\\blog_cron_task 0 1613082542.3318000000 1613082542.3359000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:29:02. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0033810138702393 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24056 +853 0 mod_workshop mod_workshop\\task\\cron_task 0 1613082302.1739000000 1613082302.1756000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:25:02. Current memory use 34.8MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00070381164550781 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 23980 +854 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613082302.1834000000 1613082302.1842000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:25:02. Current memory use 34.8MB.\n... used 0 dbqueries\n... used 9.1075897216797E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 23980 +855 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613082302.1949000000 1613082302.1970000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:25:02. Current memory use 34.6MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014681816101074 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 23980 +856 0 tool_monitor tool_monitor\\task\\clean_events 0 1613082302.2052000000 1613082302.2059000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:25:02. Current memory use 34.8MB.\n... used 0 dbqueries\n... used 0.00010991096496582 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 23980 +857 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613082302.2142000000 1613082302.2156000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:25:02. Current memory use 34.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00075387954711914 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 23980 +858 0 moodle core\\task\\session_cleanup_task 0 1613082361.4026000000 1613082361.4165000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:26:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.010962009429932 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 23996 +859 0 moodle core\\task\\send_new_user_passwords_task 0 1613082361.4247000000 1613082361.4259000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:26:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00056004524230957 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 23996 +860 0 moodle core\\task\\send_failed_login_notifications_task 0 1613082361.4345000000 1613082361.4352000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:26:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 23996 +861 0 moodle core\\task\\legacy_plugin_cron_task 0 1613082361.4441000000 1613082361.4875000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:26:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.042866945266724 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 23996 +862 0 moodle core\\task\\grade_cron_task 0 1613082361.4958000000 1613082361.4989000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:26:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0024929046630859 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 23996 +863 0 moodle core\\task\\completion_regular_task 0 1613082361.5068000000 1613082361.5320000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:26:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024527072906494 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 23996 +864 0 moodle core\\task\\portfolio_cron_task 0 1613082361.5403000000 1613082361.5410000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:26:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 23996 +865 0 moodle core\\task\\plagiarism_cron_task 0 1613082361.5490000000 1613082361.5496000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:26:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.1007995605469E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 23996 +866 0 moodle core\\task\\calendar_cron_task 0 1613082361.5622000000 1613082361.5662000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:26:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0032851696014404 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 23996 +867 0 moodle core\\task\\blog_cron_task 0 1613082361.5746000000 1613082361.5785000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:26:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0033059120178223 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 23996 +868 0 moodle core\\task\\question_preview_cleanup_task 0 1613082361.5863000000 1613082361.6032000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:26:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016203880310059 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 23996 +869 0 moodle core\\task\\question_stats_cleanup_task 0 1613082361.6113000000 1613082361.6132000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:26:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011651515960693 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 23996 +870 0 mod_assign mod_assign\\task\\cron_task 0 1613082361.6255000000 1613082361.6576000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:26:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031316041946411 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 23996 +871 0 mod_forum mod_forum\\task\\cron_task 0 1613082361.6759000000 1613082361.6782000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:26:01. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014610290527344 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 23996 +872 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613082361.6958000000 1613082361.7025000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:26:01. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0058901309967041 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 23996 +873 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613082361.7105000000 1613082361.7115000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:26:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2983245849609E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 23996 +874 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613082361.7191000000 1613082361.7201000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:26:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.6069107055664E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 23996 +875 0 mod_workshop mod_workshop\\task\\cron_task 0 1613082361.7278000000 1613082361.7293000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:26:01. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00066900253295898 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 23996 +876 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613082361.7369000000 1613082361.7379000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:26:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.9168548583984E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 23996 +877 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613082361.7483000000 1613082361.7503000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:26:01. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014147758483887 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 23996 +878 0 tool_monitor tool_monitor\\task\\clean_events 0 1613082361.7581000000 1613082361.7589000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:26:01. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011491775512695 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 23996 +879 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613082361.7666000000 1613082361.7679000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:26:01. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00075101852416992 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 23996 +880 0 moodle core\\task\\session_cleanup_task 0 1613082421.9573000000 1613082421.9714000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:27:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011087894439697 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24024 +881 0 moodle core\\task\\send_new_user_passwords_task 0 1613082421.9800000000 1613082421.9812000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:27:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00057101249694824 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24024 +882 0 moodle core\\task\\send_failed_login_notifications_task 0 1613082421.9895000000 1613082421.9902000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:27:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24024 +883 0 moodle core\\task\\legacy_plugin_cron_task 0 1613082421.9982000000 1613082422.0425000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:27:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043570041656494 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24024 +885 0 moodle core\\task\\completion_regular_task 0 1613082422.0626000000 1613082422.0878000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:27:02. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024549961090088 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24024 +886 0 moodle core\\task\\portfolio_cron_task 0 1613082422.0960000000 1613082422.0967000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:27:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24024 +887 0 moodle core\\task\\plagiarism_cron_task 0 1613082422.1050000000 1613082422.1057000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:27:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24024 +888 0 moodle core\\task\\calendar_cron_task 0 1613082422.1192000000 1613082422.1232000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:27:02. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033440589904785 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24024 +889 0 moodle core\\task\\blog_cron_task 0 1613082422.1319000000 1613082422.1361000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:27:02. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0034561157226562 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24024 +890 0 moodle core\\task\\question_preview_cleanup_task 0 1613082422.1444000000 1613082422.1615000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:27:02. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016470193862915 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24024 +891 0 moodle core\\task\\question_stats_cleanup_task 0 1613082422.1700000000 1613082422.1719000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:27:02. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011770725250244 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24024 +892 0 mod_assign mod_assign\\task\\cron_task 0 1613082422.1850000000 1613082422.2172000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:27:02. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031286001205444 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24024 +893 0 mod_forum mod_forum\\task\\cron_task 0 1613082422.2371000000 1613082422.2395000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:27:02. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015199184417725 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24024 +894 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613082422.2589000000 1613082422.2657000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:27:02. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0058891773223877 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24024 +895 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613082422.2738000000 1613082422.2748000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:27:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2983245849609E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24024 +896 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613082422.2825000000 1613082422.2834000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:27:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24024 +897 0 mod_workshop mod_workshop\\task\\cron_task 0 1613082422.2914000000 1613082422.2930000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:27:02. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00067806243896484 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24024 +898 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613082422.3011000000 1613082422.3020000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:27:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.9168548583984E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24024 +899 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613082422.3125000000 1613082422.3145000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:27:02. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014619827270508 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24024 +900 0 tool_monitor tool_monitor\\task\\clean_events 0 1613082422.3227000000 1613082422.3234000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:27:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011396408081055 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24024 +901 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613082422.3317000000 1613082422.3330000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:27:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00075888633728027 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24024 +902 0 moodle core\\task\\session_cleanup_task 0 1613082481.5220000000 1613082481.5363000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:28:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011178016662598 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24040 +903 0 moodle core\\task\\send_new_user_passwords_task 0 1613082481.5454000000 1613082481.5467000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:28:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00059700012207031 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24040 +904 0 moodle core\\task\\send_failed_login_notifications_task 0 1613082481.5550000000 1613082481.5557000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:28:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24040 +905 0 moodle core\\task\\legacy_plugin_cron_task 0 1613082481.5651000000 1613082481.6092000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:28:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043462991714478 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24040 +906 0 moodle core\\task\\grade_cron_task 0 1613082481.6174000000 1613082481.6205000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:28:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025160312652588 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24040 +907 0 moodle core\\task\\completion_regular_task 0 1613082481.6290000000 1613082481.6541000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:28:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.02442479133606 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24040 +908 0 moodle core\\task\\portfolio_cron_task 0 1613082481.6624000000 1613082481.6631000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:28:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.6014785766602E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24040 +909 0 moodle core\\task\\plagiarism_cron_task 0 1613082481.6711000000 1613082481.6718000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:28:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24040 +910 0 moodle core\\task\\calendar_cron_task 0 1613082481.6850000000 1613082481.6891000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:28:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.003493070602417 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24040 +911 0 moodle core\\task\\blog_cron_task 0 1613082481.6972000000 1613082481.7012000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:28:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0034060478210449 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24040 +912 0 moodle core\\task\\question_preview_cleanup_task 0 1613082481.7090000000 1613082481.7260000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:28:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016375064849854 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24040 +913 0 moodle core\\task\\question_stats_cleanup_task 0 1613082481.7343000000 1613082481.7362000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:28:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011589527130127 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24040 +914 0 mod_assign mod_assign\\task\\cron_task 0 1613082481.7483000000 1613082481.7803000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:28:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031126976013184 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24040 +915 0 mod_forum mod_forum\\task\\cron_task 0 1613082481.7988000000 1613082481.8011000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:28:01. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014729499816895 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24040 +950 0 tool_recyclebin tool_recyclebin\\task\\cleanup_category_bin 0 1613082602.0912000000 1613082602.0934000000 3 0 0 Execute scheduled task: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n... started 22:30:02. Current memory use 19.5MB.\n... used 3 dbqueries\n... used 0.001615047454834 seconds\nScheduled task complete: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n dev.derekmaxson.com 24223 +916 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613082481.8186000000 1613082481.8253000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:28:01. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0058610439300537 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24040 +917 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613082481.8334000000 1613082481.8344000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:28:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.1075897216797E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24040 +918 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613082481.8423000000 1613082481.8433000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:28:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.702278137207E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24040 +919 0 mod_workshop mod_workshop\\task\\cron_task 0 1613082481.8510000000 1613082481.8525000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:28:01. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.0006709098815918 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24040 +920 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613082481.8601000000 1613082481.8611000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:28:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2983245849609E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24040 +921 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613082481.8716000000 1613082481.8736000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:28:01. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014419555664062 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24040 +922 0 tool_monitor tool_monitor\\task\\clean_events 0 1613082481.8819000000 1613082481.8826000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:28:01. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011491775512695 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24040 +923 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613082481.8909000000 1613082481.8923000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:28:01. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00075101852416992 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24040 +924 0 moodle core\\task\\session_cleanup_task 0 1613082542.0884000000 1613082542.1026000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:29:02. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011111974716187 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24056 +925 0 moodle core\\task\\send_new_user_passwords_task 0 1613082542.1363000000 1613082542.1376000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:29:02. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.0006568431854248 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24056 +926 0 moodle core\\task\\send_failed_login_notifications_task 0 1613082542.1720000000 1613082542.1727000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:29:02. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.6014785766602E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24056 +927 0 moodle core\\task\\legacy_plugin_cron_task 0 1613082542.1891000000 1613082542.2331000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:29:02. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043355941772461 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24056 +928 0 moodle core\\task\\grade_cron_task 0 1613082542.2424000000 1613082542.2456000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:29:02. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.002485990524292 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24056 +929 0 moodle core\\task\\completion_regular_task 0 1613082542.2549000000 1613082542.2801000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:29:02. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024586915969849 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24056 +930 0 moodle core\\task\\portfolio_cron_task 0 1613082542.2891000000 1613082542.2897000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:29:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24056 +931 0 moodle core\\task\\plagiarism_cron_task 0 1613082542.2983000000 1613082542.2990000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:29:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.2200088500977E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24056 +934 0 moodle core\\task\\question_preview_cleanup_task 0 1613082542.3454000000 1613082542.3624000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:29:02. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016317129135132 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24056 +935 0 moodle core\\task\\question_stats_cleanup_task 0 1613082542.3716000000 1613082542.3735000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:29:02. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011658668518066 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24056 +936 0 mod_assign mod_assign\\task\\cron_task 0 1613082542.3859000000 1613082542.4180000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:29:02. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031182050704956 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24056 +937 0 mod_forum mod_forum\\task\\cron_task 0 1613082542.4369000000 1613082542.4392000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:29:02. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014588832855225 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24056 +938 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613082542.4572000000 1613082542.4640000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:29:02. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0058319568634033 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24056 +939 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613082542.4729000000 1613082542.4739000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:29:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2029571533203E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24056 +940 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613082542.4824000000 1613082542.4833000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:29:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24056 +941 0 mod_workshop mod_workshop\\task\\cron_task 0 1613082542.4917000000 1613082542.4932000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:29:02. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00067496299743652 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24056 +942 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613082542.5022000000 1613082542.5031000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:29:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2983245849609E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24056 +943 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613082542.5147000000 1613082542.5168000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:29:02. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014410018920898 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24056 +944 0 tool_monitor tool_monitor\\task\\clean_events 0 1613082542.5281000000 1613082542.5288000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:29:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00012612342834473 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24056 +945 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613082542.5402000000 1613082542.5416000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:29:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00079107284545898 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24056 +946 0 moodle core\\task\\cache_cleanup_task 0 1613082602.0228000000 1613082602.0304000000 0 1 0 Execute scheduled task: Remove expired cache entries (core\\task\\cache_cleanup_task)\n... started 22:30:02. Current memory use 16.8MB.\n... used 1 dbqueries\n... used 0.0045278072357178 seconds\nScheduled task complete: Remove expired cache entries (core\\task\\cache_cleanup_task)\n dev.derekmaxson.com 24223 +947 0 moodle core\\oauth2\\refresh_system_tokens_task 0 1613082602.0401000000 1613082602.0556000000 1 0 0 Execute scheduled task: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n... started 22:30:02. Current memory use 17.7MB.\n... used 1 dbqueries\n... used 0.014945983886719 seconds\nScheduled task complete: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n dev.derekmaxson.com 24223 +948 0 moodle core\\task\\search_index_task 0 1613082602.0646000000 1613082602.0673000000 0 0 0 Execute scheduled task: Global search indexing (core\\task\\search_index_task)\n... started 22:30:02. Current memory use 19.4MB.\n... used 0 dbqueries\n... used 0.0019729137420654 seconds\nScheduled task complete: Global search indexing (core\\task\\search_index_task)\n dev.derekmaxson.com 24223 +949 0 tool_recyclebin tool_recyclebin\\task\\cleanup_course_bin 0 1613082602.0791000000 1613082602.0820000000 3 0 0 Execute scheduled task: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n... started 22:30:02. Current memory use 19.4MB.\n... used 3 dbqueries\n... used 0.0022189617156982 seconds\nScheduled task complete: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n dev.derekmaxson.com 24223 +951 0 assignfeedback_editpdf assignfeedback_editpdf\\task\\convert_submissions 0 1613082602.1021000000 1613082602.1418000000 1 0 0 Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 22:30:02. Current memory use 19.6MB.\n... used 1 dbqueries\n... used 0.039003133773804 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n dev.derekmaxson.com 24223 +952 0 enrol_manual enrol_manual\\task\\sync_enrolments 0 1613082602.1504000000 1613082602.1521000000 0 0 0 Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 22:30:02. Current memory use 24MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00096893310546875 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n dev.derekmaxson.com 24223 +953 0 enrol_manual enrol_manual\\task\\send_expiry_notifications 0 1613082602.1603000000 1613082602.1611000000 0 0 0 Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 22:30:02. Current memory use 24.1MB.\nmanual enrolment expiry notifications were already sent today at Thursday, 11 February 2021, 6:00 AM.\n... used 0 dbqueries\n... used 0.00020408630371094 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n dev.derekmaxson.com 24223 +954 0 enrol_self enrol_self\\task\\sync_enrolments 0 1613082602.1696000000 1613082602.1748000000 6 0 0 Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 22:30:02. Current memory use 24.1MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 6 dbqueries\n... used 0.004478931427002 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n dev.derekmaxson.com 24223 +955 0 enrol_self enrol_self\\task\\send_expiry_notifications 0 1613082602.1835000000 1613082602.1842000000 0 0 0 Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 22:30:02. Current memory use 24.2MB.\nself enrolment expiry notifications were already sent today at Thursday, 11 February 2021, 6:00 AM.\n... used 0 dbqueries\n... used 0.00017905235290527 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n dev.derekmaxson.com 24223 +956 0 moodle core\\task\\badges_cron_task 0 1613082602.1925000000 1613082602.1981000000 1 0 0 Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 22:30:02. Current memory use 24.5MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0040531158447266 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n dev.derekmaxson.com 24223 +957 0 moodle core\\task\\badges_message_task 0 1613082602.2065000000 1613082602.2078000000 1 0 0 Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 22:30:02. Current memory use 24.8MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00058579444885254 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n dev.derekmaxson.com 24223 +958 0 mod_chat mod_chat\\task\\cron_task 0 1613082602.2203000000 1613082602.2290000000 2 2 0 Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 22:30:02. Current memory use 26.9MB.\n... used 4 dbqueries\n... used 0.0079059600830078 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n dev.derekmaxson.com 24223 +959 0 mod_scorm mod_scorm\\task\\cron_task 0 1613082602.2372000000 1613082602.2435000000 0 0 0 Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 22:30:02. Current memory use 27.6MB.\n... used 0 dbqueries\n... used 0.0054149627685547 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n dev.derekmaxson.com 24223 +960 0 block_rss_client block_rss_client\\task\\refreshfeeds 0 1613082602.2547000000 1613082602.2620000000 3 0 0 Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 22:30:02. Current memory use 27.1MB.\n\n0 feeds refreshed (took 0.00069000000000002 seconds)\n... used 3 dbqueries\n... used 0.006688117980957 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n dev.derekmaxson.com 24223 +961 0 moodle core\\task\\session_cleanup_task 0 1613082602.2705000000 1613082602.2793000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:30:02. Current memory use 28.1MB.\n... used 19 dbqueries\n... used 0.0071940422058105 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24223 +962 0 moodle core\\task\\send_new_user_passwords_task 0 1613082602.2878000000 1613082602.2890000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:30:02. Current memory use 28.4MB.\n... used 1 dbqueries\n... used 0.00056099891662598 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24223 +963 0 moodle core\\task\\send_failed_login_notifications_task 0 1613082602.2977000000 1613082602.2984000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:30:02. Current memory use 28.4MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24223 +964 0 moodle core\\task\\legacy_plugin_cron_task 0 1613082602.3069000000 1613082602.3204000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:30:02. Current memory use 28.4MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.012913942337036 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24223 +965 0 moodle core\\task\\grade_cron_task 0 1613082602.3290000000 1613082602.3321000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:30:02. Current memory use 29.7MB.\n... used 6 dbqueries\n... used 0.0024709701538086 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24223 +966 0 moodle core\\task\\completion_regular_task 0 1613082602.3406000000 1613082602.3636000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:30:02. Current memory use 29.7MB.\n... used 18 dbqueries\n... used 0.022408008575439 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24223 +967 0 moodle core\\task\\portfolio_cron_task 0 1613082602.3724000000 1613082602.3731000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:30:02. Current memory use 29.9MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24223 +968 0 moodle core\\task\\plagiarism_cron_task 0 1613082602.3850000000 1613082602.3856000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:30:02. Current memory use 29.9MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24223 +969 0 moodle core\\task\\calendar_cron_task 0 1613082602.4078000000 1613082602.4120000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:30:02. Current memory use 29.9MB.\n... used 1 dbqueries\n... used 0.0035741329193115 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24223 +970 0 moodle core\\task\\blog_cron_task 0 1613082602.4318000000 1613082602.4359000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:30:02. Current memory use 30.3MB.\n... used 2 dbqueries\n... used 0.0034270286560059 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24223 +971 0 moodle core\\task\\question_preview_cleanup_task 0 1613082602.4534000000 1613082602.4704000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:30:02. Current memory use 30.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016410112380981 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24223 +972 0 moodle core\\task\\question_stats_cleanup_task 0 1613082602.4910000000 1613082602.4929000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:30:02. Current memory use 32.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012388229370117 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24223 +973 0 mod_assign mod_assign\\task\\cron_task 0 1613082602.5254000000 1613082602.5390000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:30:02. Current memory use 32.4MB.\n... used 3 dbqueries\n... used 0.012523889541626 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24223 +974 0 mod_forum mod_forum\\task\\cron_task 0 1613082602.5929000000 1613082602.5956000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:30:02. Current memory use 34.1MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015268325805664 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24223 +975 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613082602.6398000000 1613082602.6470000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:30:02. Current memory use 35.4MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0058629512786865 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24223 +976 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613082602.6908000000 1613082602.6916000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:30:02. Current memory use 35.4MB.\n... used 0 dbqueries\n... used 9.2029571533203E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24223 +977 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613082602.7413000000 1613082602.7421000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:30:02. Current memory use 35.4MB.\n... used 0 dbqueries\n... used 9.1075897216797E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24223 +978 0 mod_workshop mod_workshop\\task\\cron_task 0 1613082602.7898000000 1613082602.7916000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:30:02. Current memory use 35.5MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00073504447937012 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24223 +979 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613082602.8432000000 1613082602.8440000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:30:02. Current memory use 35.5MB.\n... used 0 dbqueries\n... used 9.7990036010742E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24223 +980 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613082602.8845000000 1613082602.8868000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:30:02. Current memory use 35.5MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014400482177734 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24223 +981 0 tool_monitor tool_monitor\\task\\clean_events 0 1613082602.9294000000 1613082602.9305000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:30:02. Current memory use 35.7MB.\n... used 0 dbqueries\n... used 0.00011396408081055 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24223 +982 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613082602.9739000000 1613082602.9756000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:30:02. Current memory use 35.7MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00082015991210938 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24223 +983 0 moodle core\\task\\session_cleanup_task 0 1613082661.1889000000 1613082661.2030000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:31:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011014938354492 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24243 +984 0 moodle core\\task\\send_new_user_passwords_task 0 1613082661.2115000000 1613082661.2127000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:31:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00057291984558105 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24243 +985 0 moodle core\\task\\send_failed_login_notifications_task 0 1613082661.2215000000 1613082661.2221000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:31:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24243 +986 0 moodle core\\task\\legacy_plugin_cron_task 0 1613082661.2321000000 1613082661.2759000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:31:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.04315710067749 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24243 +987 0 moodle core\\task\\grade_cron_task 0 1613082661.2862000000 1613082661.2895000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:31:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0026659965515137 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24243 +988 0 moodle core\\task\\completion_regular_task 0 1613082661.2987000000 1613082661.3243000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:31:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024966955184937 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24243 +989 0 moodle core\\task\\portfolio_cron_task 0 1613082661.3329000000 1613082661.3336000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:31:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.57763671875E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24243 +990 0 moodle core\\task\\plagiarism_cron_task 0 1613082661.3418000000 1613082661.3425000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:31:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.57763671875E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24243 +991 0 moodle core\\task\\calendar_cron_task 0 1613082661.3554000000 1613082661.3595000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:31:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033831596374512 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24243 +992 0 moodle core\\task\\blog_cron_task 0 1613082661.3677000000 1613082661.3717000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:31:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0033919811248779 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24243 +993 0 moodle core\\task\\question_preview_cleanup_task 0 1613082661.3798000000 1613082661.3969000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:31:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016433000564575 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24243 +994 0 moodle core\\task\\question_stats_cleanup_task 0 1613082661.4059000000 1613082661.4077000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:31:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011789798736572 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24243 +995 0 mod_assign mod_assign\\task\\cron_task 0 1613082661.4203000000 1613082661.4528000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:31:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031565189361572 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24243 +996 0 mod_forum mod_forum\\task\\cron_task 0 1613082661.4722000000 1613082661.4746000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:31:01. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00152587890625 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24243 +1013 0 moodle core\\task\\calendar_cron_task 0 1613082721.9195000000 1613082721.9234000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:32:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033130645751953 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24265 +997 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613082661.4932000000 1613082661.5000000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:31:01. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0059170722961426 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24243 +998 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613082661.5083000000 1613082661.5093000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:31:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2029571533203E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24243 +999 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613082661.5174000000 1613082661.5183000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:31:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.702278137207E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24243 +1000 0 mod_workshop mod_workshop\\task\\cron_task 0 1613082661.5262000000 1613082661.5278000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:31:01. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00067591667175293 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24243 +1001 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613082661.5356000000 1613082661.5366000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:31:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.4175338745117E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24243 +1002 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613082661.5477000000 1613082661.5498000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:31:01. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014588832855225 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24243 +1003 0 tool_monitor tool_monitor\\task\\clean_events 0 1613082661.5579000000 1613082661.5586000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:31:01. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00012087821960449 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24243 +1004 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613082661.5667000000 1613082661.5681000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:31:01. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00075697898864746 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24243 +1005 0 moodle core\\task\\session_cleanup_task 0 1613082721.7578000000 1613082721.7718000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:32:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011008024215698 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24265 +1006 0 moodle core\\task\\send_new_user_passwords_task 0 1613082721.7810000000 1613082721.7822000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:32:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00057697296142578 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24265 +1007 0 moodle core\\task\\send_failed_login_notifications_task 0 1613082721.7911000000 1613082721.7918000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:32:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24265 +1008 0 moodle core\\task\\legacy_plugin_cron_task 0 1613082721.8001000000 1613082721.8438000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:32:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043029069900513 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24265 +1009 0 moodle core\\task\\grade_cron_task 0 1613082721.8522000000 1613082721.8554000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:32:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025498867034912 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24265 +1010 0 moodle core\\task\\completion_regular_task 0 1613082721.8637000000 1613082721.8892000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:32:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024793148040771 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24265 +1011 0 moodle core\\task\\portfolio_cron_task 0 1613082721.8973000000 1613082721.8980000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:32:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24265 +1012 0 moodle core\\task\\plagiarism_cron_task 0 1613082721.9060000000 1613082721.9067000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:32:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24265 +1014 0 moodle core\\task\\blog_cron_task 0 1613082721.9316000000 1613082721.9356000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:32:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0033330917358398 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24265 +1015 0 moodle core\\task\\question_preview_cleanup_task 0 1613082721.9437000000 1613082721.9606000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:32:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016288995742798 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24265 +1016 0 moodle core\\task\\question_stats_cleanup_task 0 1613082721.9686000000 1613082721.9705000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:32:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012078285217285 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24265 +1017 0 mod_assign mod_assign\\task\\cron_task 0 1613082721.9826000000 1613082722.0149000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:32:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031461000442505 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24265 +1018 0 mod_forum mod_forum\\task\\cron_task 0 1613082722.0339000000 1613082722.0363000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:32:02. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014801025390625 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24265 +1019 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613082722.0555000000 1613082722.0623000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:32:02. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0058929920196533 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24265 +1020 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613082722.0732000000 1613082722.0741000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:32:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.9168548583984E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24265 +1021 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613082722.0823000000 1613082722.0833000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:32:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24265 +1022 0 mod_workshop mod_workshop\\task\\cron_task 0 1613082722.0914000000 1613082722.0930000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:32:02. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00069093704223633 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24265 +1023 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613082722.1010000000 1613082722.1019000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:32:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.702278137207E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24265 +1024 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613082722.1125000000 1613082722.1145000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:32:02. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014369487762451 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24265 +1025 0 tool_monitor tool_monitor\\task\\clean_events 0 1613082722.1227000000 1613082722.1234000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:32:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011491775512695 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24265 +1026 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613082722.1317000000 1613082722.1330000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:32:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00076484680175781 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24265 +1027 0 moodle core\\task\\session_cleanup_task 0 1613082781.3248000000 1613082781.3426000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:33:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.014639139175415 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24278 +1028 0 moodle core\\task\\send_new_user_passwords_task 0 1613082781.3522000000 1613082781.3535000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:33:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00059604644775391 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24278 +1029 0 moodle core\\task\\send_failed_login_notifications_task 0 1613082781.3621000000 1613082781.3628000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:33:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24278 +1030 0 moodle core\\task\\legacy_plugin_cron_task 0 1613082781.3717000000 1613082781.4160000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:33:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.04358696937561 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24278 +1031 0 moodle core\\task\\grade_cron_task 0 1613082781.4249000000 1613082781.4282000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:33:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0026009082794189 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24278 +1032 0 moodle core\\task\\completion_regular_task 0 1613082781.4363000000 1613082781.4619000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:33:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024935007095337 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24278 +1033 0 moodle core\\task\\portfolio_cron_task 0 1613082781.4701000000 1613082781.4708000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:33:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 5.4836273193359E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24278 +1034 0 moodle core\\task\\plagiarism_cron_task 0 1613082781.4789000000 1613082781.4796000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:33:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.3869018554688E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24278 +1035 0 moodle core\\task\\calendar_cron_task 0 1613082781.4924000000 1613082781.4965000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:33:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0034389495849609 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24278 +1036 0 moodle core\\task\\blog_cron_task 0 1613082781.5046000000 1613082781.5087000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:33:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0034301280975342 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24278 +1037 0 moodle core\\task\\question_preview_cleanup_task 0 1613082781.5165000000 1613082781.5338000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:33:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016576051712036 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24278 +1038 0 moodle core\\task\\question_stats_cleanup_task 0 1613082781.5423000000 1613082781.5442000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:33:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012140274047852 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24278 +1039 0 mod_assign mod_assign\\task\\cron_task 0 1613082781.5567000000 1613082781.5893000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:33:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031627893447876 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24278 +1040 0 mod_forum mod_forum\\task\\cron_task 0 1613082781.6083000000 1613082781.6107000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:33:01. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015430450439453 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24278 +1041 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613082781.6289000000 1613082781.6358000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:33:01. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0059690475463867 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24278 +1042 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613082781.6441000000 1613082781.6451000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:33:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.608268737793E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24278 +1043 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613082781.6533000000 1613082781.6543000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:33:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.4890594482422E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24278 +1044 0 mod_workshop mod_workshop\\task\\cron_task 0 1613082781.6623000000 1613082781.6639000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:33:01. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00071191787719727 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24278 +1077 0 moodle core\\task\\session_cleanup_task 0 1613082901.5852000000 1613082901.5939000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:35:01. Current memory use 23.2MB.\n... used 19 dbqueries\n... used 0.0073630809783936 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24315 +1045 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613082781.6724000000 1613082781.6734000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:33:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2983245849609E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24278 +1046 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613082781.6845000000 1613082781.6866000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:33:01. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.00148606300354 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24278 +1047 0 tool_monitor tool_monitor\\task\\clean_events 0 1613082781.6949000000 1613082781.6956000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:33:01. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011706352233887 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24278 +1048 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613082781.7038000000 1613082781.7052000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:33:01. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00078606605529785 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24278 +1049 0 moodle core\\task\\session_cleanup_task 0 1613082841.8978000000 1613082841.9123000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:34:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011317014694214 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24297 +1050 0 moodle core\\task\\send_new_user_passwords_task 0 1613082841.9213000000 1613082841.9226000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:34:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00060677528381348 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24297 +1051 0 moodle core\\task\\send_failed_login_notifications_task 0 1613082841.9308000000 1613082841.9315000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:34:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.7922134399414E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24297 +1052 0 moodle core\\task\\legacy_plugin_cron_task 0 1613082841.9399000000 1613082841.9841000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:34:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043506145477295 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24297 +1053 0 moodle core\\task\\grade_cron_task 0 1613082841.9927000000 1613082841.9959000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:34:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.002551794052124 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24297 +1054 0 moodle core\\task\\completion_regular_task 0 1613082842.0044000000 1613082842.0304000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:34:02. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.025264024734497 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24297 +1055 0 moodle core\\task\\portfolio_cron_task 0 1613082842.0390000000 1613082842.0397000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:34:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24297 +1056 0 moodle core\\task\\plagiarism_cron_task 0 1613082842.0477000000 1613082842.0484000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:34:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.1007995605469E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24297 +1057 0 moodle core\\task\\calendar_cron_task 0 1613082842.0610000000 1613082842.0651000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:34:02. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0034241676330566 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24297 +1058 0 moodle core\\task\\blog_cron_task 0 1613082842.0732000000 1613082842.0774000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:34:02. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0034618377685547 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24297 +1059 0 moodle core\\task\\question_preview_cleanup_task 0 1613082842.0855000000 1613082842.1027000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:34:02. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.01656699180603 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24297 +1060 0 moodle core\\task\\question_stats_cleanup_task 0 1613082842.1110000000 1613082842.1129000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:34:02. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012261867523193 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24297 +1061 0 mod_assign mod_assign\\task\\cron_task 0 1613082842.1265000000 1613082842.1592000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:34:02. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031800031661987 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24297 +1062 0 mod_forum mod_forum\\task\\cron_task 0 1613082842.1782000000 1613082842.1806000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:34:02. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015089511871338 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24297 +1063 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613082842.1987000000 1613082842.2057000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:34:02. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0060489177703857 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24297 +1064 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613082842.2141000000 1613082842.2151000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:34:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.7036361694336E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24297 +1065 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613082842.2234000000 1613082842.2244000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:34:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2029571533203E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24297 +1066 0 mod_workshop mod_workshop\\task\\cron_task 0 1613082842.2324000000 1613082842.2340000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:34:02. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00071096420288086 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24297 +1067 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613082842.2423000000 1613082842.2433000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:34:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.4890594482422E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24297 +1068 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613082842.2538000000 1613082842.2559000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:34:02. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014951229095459 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24297 +1069 0 tool_monitor tool_monitor\\task\\clean_events 0 1613082842.2641000000 1613082842.2648000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:34:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.0001220703125 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24297 +1070 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613082842.2733000000 1613082842.2748000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:34:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00080204010009766 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24297 +1071 0 moodle core\\task\\messaging_cleanup_task 0 1613082901.4711000000 1613082901.4843000000 1 4 0 Execute scheduled task: Background processing for messaging (core\\task\\messaging_cleanup_task)\n... started 22:35:01. Current memory use 16.8MB.\n... used 5 dbqueries\n... used 0.0099861621856689 seconds\nScheduled task complete: Background processing for messaging (core\\task\\messaging_cleanup_task)\n dev.derekmaxson.com 24315 +1072 0 moodle core\\task\\badges_cron_task 0 1613082901.4937000000 1613082901.4983000000 1 0 0 Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 22:35:01. Current memory use 18.1MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0039758682250977 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n dev.derekmaxson.com 24315 +1073 0 moodle core\\task\\badges_message_task 0 1613082901.5069000000 1613082901.5082000000 1 0 0 Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 22:35:01. Current memory use 18.4MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00060105323791504 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n dev.derekmaxson.com 24315 +1074 0 mod_chat mod_chat\\task\\cron_task 0 1613082901.5199000000 1613082901.5291000000 2 2 0 Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 22:35:01. Current memory use 19.5MB.\n... used 4 dbqueries\n... used 0.0083160400390625 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n dev.derekmaxson.com 24315 +1075 0 mod_scorm mod_scorm\\task\\cron_task 0 1613082901.5375000000 1613082901.5567000000 0 0 0 Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 22:35:01. Current memory use 20.1MB.\n... used 0 dbqueries\n... used 0.018311023712158 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n dev.derekmaxson.com 24315 +1076 0 block_rss_client block_rss_client\\task\\refreshfeeds 0 1613082901.5680000000 1613082901.5764000000 3 0 0 Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 22:35:01. Current memory use 21MB.\n\n0 feeds refreshed (took 0.00075900000000007 seconds)\n... used 3 dbqueries\n... used 0.0078508853912354 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n dev.derekmaxson.com 24315 +1078 0 moodle core\\task\\send_new_user_passwords_task 0 1613082901.6029000000 1613082901.6041000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:35:01. Current memory use 23.6MB.\n... used 1 dbqueries\n... used 0.00059199333190918 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24315 +1079 0 moodle core\\task\\send_failed_login_notifications_task 0 1613082901.6123000000 1613082901.6130000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:35:01. Current memory use 23.6MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24315 +1080 0 moodle core\\task\\legacy_plugin_cron_task 0 1613082901.6215000000 1613082901.6532000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:35:01. Current memory use 23.6MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.031042098999023 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24315 +1081 0 moodle core\\task\\grade_cron_task 0 1613082901.6619000000 1613082901.6651000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:35:01. Current memory use 27MB.\n... used 6 dbqueries\n... used 0.002572774887085 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24315 +1082 0 moodle core\\task\\completion_regular_task 0 1613082901.6735000000 1613082901.6998000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:35:01. Current memory use 27MB.\n... used 18 dbqueries\n... used 0.025665998458862 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24315 +1083 0 moodle core\\task\\portfolio_cron_task 0 1613082901.7083000000 1613082901.7090000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:35:01. Current memory use 27.4MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24315 +1084 0 moodle core\\task\\plagiarism_cron_task 0 1613082901.7177000000 1613082901.7185000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:35:01. Current memory use 27.4MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24315 +1085 0 moodle core\\task\\calendar_cron_task 0 1613082901.7267000000 1613082901.7308000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:35:01. Current memory use 27.4MB.\n... used 1 dbqueries\n... used 0.0035059452056885 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24315 +1086 0 moodle core\\task\\blog_cron_task 0 1613082901.7395000000 1613082901.7436000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:35:01. Current memory use 27.8MB.\n... used 2 dbqueries\n... used 0.0034811496734619 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24315 +1087 0 moodle core\\task\\question_preview_cleanup_task 0 1613082901.7521000000 1613082901.7694000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:35:01. Current memory use 28.2MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016677856445312 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24315 +1088 0 moodle core\\task\\question_stats_cleanup_task 0 1613082901.7784000000 1613082901.7803000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:35:01. Current memory use 29.8MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012350082397461 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24315 +1089 0 mod_assign mod_assign\\task\\cron_task 0 1613082901.7888000000 1613082901.8222000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:35:01. Current memory use 29.9MB.\n... used 3 dbqueries\n... used 0.032392024993896 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24315 +1090 0 mod_forum mod_forum\\task\\cron_task 0 1613082901.8415000000 1613082901.8440000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:35:01. Current memory use 33.9MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015029907226562 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24315 +1091 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613082901.8625000000 1613082901.8695000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:35:01. Current memory use 35.1MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0057759284973145 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24315 +1092 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613082901.8782000000 1613082901.8790000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:35:01. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 9.2983245849609E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24315 +1093 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613082901.8870000000 1613082901.8877000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:35:01. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 8.8930130004883E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24315 +1094 0 mod_workshop mod_workshop\\task\\cron_task 0 1613082901.8964000000 1613082901.8981000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:35:01. Current memory use 35.2MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00072097778320312 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24315 +1095 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613082901.9066000000 1613082901.9074000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:35:01. Current memory use 35.2MB.\n... used 0 dbqueries\n... used 0.0001070499420166 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24315 +1096 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613082901.9187000000 1613082901.9208000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:35:01. Current memory use 35MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014760494232178 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24315 +1097 0 tool_monitor tool_monitor\\task\\clean_events 0 1613082901.9297000000 1613082901.9304000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:35:01. Current memory use 35.2MB.\n... used 0 dbqueries\n... used 0.0001380443572998 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24315 +1098 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613082901.9390000000 1613082901.9405000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:35:01. Current memory use 35.2MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00078988075256348 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24315 +1099 0 moodle core\\task\\session_cleanup_task 0 1613082962.1314000000 1613082962.1455000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:36:02. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.010977983474731 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24335 +1100 0 moodle core\\task\\send_new_user_passwords_task 0 1613082962.1540000000 1613082962.1552000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:36:02. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00057196617126465 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24335 +1101 0 moodle core\\task\\send_failed_login_notifications_task 0 1613082962.1633000000 1613082962.1639000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:36:02. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.3153762817383E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24335 +1102 0 moodle core\\task\\legacy_plugin_cron_task 0 1613082962.1719000000 1613082962.2154000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:36:02. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.042940855026245 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24335 +1103 0 moodle core\\task\\grade_cron_task 0 1613082962.2238000000 1613082962.2269000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:36:02. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025310516357422 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24335 +1104 0 moodle core\\task\\completion_regular_task 0 1613082962.2348000000 1613082962.2601000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:36:02. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024640083312988 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24335 +1105 0 moodle core\\task\\portfolio_cron_task 0 1613082962.2681000000 1613082962.2688000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:36:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.3869018554688E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24335 +1106 0 moodle core\\task\\plagiarism_cron_task 0 1613082962.2769000000 1613082962.2776000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:36:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24335 +1107 0 moodle core\\task\\calendar_cron_task 0 1613082962.2903000000 1613082962.2943000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:36:02. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033040046691895 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24335 +1108 0 moodle core\\task\\blog_cron_task 0 1613082962.3024000000 1613082962.3065000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:36:02. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0033791065216064 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24335 +1109 0 moodle core\\task\\question_preview_cleanup_task 0 1613082962.3143000000 1613082962.3312000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:36:02. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016283988952637 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24335 +1110 0 moodle core\\task\\question_stats_cleanup_task 0 1613082962.3397000000 1613082962.3416000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:36:02. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011849403381348 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24335 +1111 0 mod_assign mod_assign\\task\\cron_task 0 1613082962.3541000000 1613082962.3861000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:36:02. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031160116195679 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24335 +1112 0 mod_forum mod_forum\\task\\cron_task 0 1613082962.4046000000 1613082962.4070000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:36:02. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015039443969727 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24335 +1113 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613082962.4242000000 1613082962.4310000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:36:02. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0058720111846924 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24335 +1114 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613082962.4389000000 1613082962.4398000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:36:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.9883804321289E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24335 +1115 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613082962.4475000000 1613082962.4484000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:36:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.702278137207E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24335 +1116 0 mod_workshop mod_workshop\\task\\cron_task 0 1613082962.4561000000 1613082962.4576000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:36:02. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00067400932312012 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24335 +1117 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613082962.4655000000 1613082962.4665000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:36:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 0.0001070499420166 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24335 +1118 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613082962.4774000000 1613082962.4794000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:36:02. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014469623565674 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24335 +1119 0 tool_monitor tool_monitor\\task\\clean_events 0 1613082962.4873000000 1613082962.4880000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:36:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011587142944336 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24335 +1120 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613082962.4957000000 1613082962.4971000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:36:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00076103210449219 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24335 +1121 0 moodle core\\task\\session_cleanup_task 0 1613083021.6867000000 1613083021.7009000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:37:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011270046234131 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24351 +1122 0 moodle core\\task\\send_new_user_passwords_task 0 1613083021.7103000000 1613083021.7116000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:37:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00058794021606445 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24351 +1123 0 moodle core\\task\\send_failed_login_notifications_task 0 1613083021.7202000000 1613083021.7209000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:37:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.4822692871094E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24351 +1124 0 moodle core\\task\\legacy_plugin_cron_task 0 1613083021.7295000000 1613083021.7731000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:37:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.042943954467773 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24351 +1125 0 moodle core\\task\\grade_cron_task 0 1613083021.7818000000 1613083021.7850000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:37:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025169849395752 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24351 +1126 0 moodle core\\task\\completion_regular_task 0 1613083021.7935000000 1613083021.8189000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:37:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024756908416748 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24351 +1127 0 moodle core\\task\\portfolio_cron_task 0 1613083021.8272000000 1613083021.8279000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:37:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24351 +1128 0 moodle core\\task\\plagiarism_cron_task 0 1613083021.8362000000 1613083021.8369000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:37:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24351 +1129 0 moodle core\\task\\calendar_cron_task 0 1613083021.8494000000 1613083021.8533000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:37:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0032761096954346 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24351 +1130 0 moodle core\\task\\blog_cron_task 0 1613083021.8616000000 1613083021.8656000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:37:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0033330917358398 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24351 +1131 0 moodle core\\task\\question_preview_cleanup_task 0 1613083021.8738000000 1613083021.8907000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:37:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016323089599609 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24351 +1132 0 moodle core\\task\\question_stats_cleanup_task 0 1613083021.8993000000 1613083021.9012000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:37:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012130737304688 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24351 +1133 0 mod_assign mod_assign\\task\\cron_task 0 1613083021.9136000000 1613083021.9460000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:37:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031288862228394 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24351 +1134 0 mod_forum mod_forum\\task\\cron_task 0 1613083021.9646000000 1613083021.9670000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:37:01. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014898777008057 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24351 +1135 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613083021.9849000000 1613083021.9917000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:37:01. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0059030055999756 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24351 +1136 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613083021.9996000000 1613083022.0006000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:37:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24351 +1137 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613083022.0087000000 1613083022.0097000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:37:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 0.00010514259338379 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24351 +1138 0 mod_workshop mod_workshop\\task\\cron_task 0 1613083022.0180000000 1613083022.0196000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:37:02. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00068092346191406 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24351 +1139 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613083022.0274000000 1613083022.0284000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:37:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24351 +1140 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613083022.0388000000 1613083022.0408000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:37:02. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014159679412842 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24351 +1141 0 tool_monitor tool_monitor\\task\\clean_events 0 1613083022.0491000000 1613083022.0498000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:37:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011014938354492 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24351 +1142 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613083022.0580000000 1613083022.0594000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:37:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00076913833618164 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24351 +1143 0 moodle core\\task\\session_cleanup_task 0 1613083081.2498000000 1613083081.2645000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:38:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011369228363037 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24366 +1144 0 moodle core\\task\\send_new_user_passwords_task 0 1613083081.2730000000 1613083081.2742000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:38:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00057411193847656 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24366 +1145 0 moodle core\\task\\send_failed_login_notifications_task 0 1613083081.2830000000 1613083081.2837000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:38:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.57763671875E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24366 +1146 0 moodle core\\task\\legacy_plugin_cron_task 0 1613083081.2923000000 1613083081.3360000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:38:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043100833892822 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24366 +1147 0 moodle core\\task\\grade_cron_task 0 1613083081.3444000000 1613083081.3476000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:38:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025599002838135 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24366 +1148 0 moodle core\\task\\completion_regular_task 0 1613083081.3560000000 1613083081.3814000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:38:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024755001068115 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24366 +1149 0 moodle core\\task\\portfolio_cron_task 0 1613083081.3895000000 1613083081.3902000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:38:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.3153762817383E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24366 +1150 0 moodle core\\task\\plagiarism_cron_task 0 1613083081.3982000000 1613083081.3989000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:38:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.3869018554688E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24366 +1151 0 moodle core\\task\\calendar_cron_task 0 1613083081.4118000000 1613083081.4157000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:38:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.003324031829834 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24366 +1152 0 moodle core\\task\\blog_cron_task 0 1613083081.4252000000 1613083081.4296000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:38:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0037648677825928 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24366 +1153 0 moodle core\\task\\question_preview_cleanup_task 0 1613083081.4390000000 1613083081.4566000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:38:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016932964324951 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24366 +1154 0 moodle core\\task\\question_stats_cleanup_task 0 1613083081.4647000000 1613083081.4665000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:38:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012059211730957 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24366 +1155 0 mod_assign mod_assign\\task\\cron_task 0 1613083081.4793000000 1613083081.5115000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:38:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031406879425049 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24366 +1156 0 mod_forum mod_forum\\task\\cron_task 0 1613083081.5314000000 1613083081.5337000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:38:01. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015008449554443 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24366 +1157 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613083081.5520000000 1613083081.5589000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:38:01. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.005950927734375 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24366 +1158 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613083081.5680000000 1613083081.5690000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:38:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.0122222900391E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24366 +1159 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613083081.5776000000 1613083081.5785000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:38:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 0.00011301040649414 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24366 +1160 0 mod_workshop mod_workshop\\task\\cron_task 0 1613083081.5871000000 1613083081.5886000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:38:01. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00069403648376465 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24366 +1161 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613083081.5973000000 1613083081.5983000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:38:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.1075897216797E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24366 +1162 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613083081.6095000000 1613083081.6115000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:38:01. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014810562133789 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24366 +1163 0 tool_monitor tool_monitor\\task\\clean_events 0 1613083081.6203000000 1613083081.6221000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:38:01. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011706352233887 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24366 +1164 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613083081.6306000000 1613083081.6320000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:38:01. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.0007789134979248 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24366 +1165 0 moodle core\\task\\session_cleanup_task 0 1613083141.8269000000 1613083141.8419000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:39:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011964797973633 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24385 +1166 0 moodle core\\task\\send_new_user_passwords_task 0 1613083141.8527000000 1613083141.8540000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:39:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00063300132751465 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24385 +1167 0 moodle core\\task\\send_failed_login_notifications_task 0 1613083141.8638000000 1613083141.8645000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:39:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.6014785766602E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24385 +1168 0 moodle core\\task\\legacy_plugin_cron_task 0 1613083141.8742000000 1613083141.9186000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:39:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043746948242188 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24385 +1169 0 moodle core\\task\\grade_cron_task 0 1613083141.9277000000 1613083141.9309000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:39:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025479793548584 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24385 +1170 0 moodle core\\task\\completion_regular_task 0 1613083141.9397000000 1613083141.9651000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:39:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024823904037476 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24385 +1171 0 moodle core\\task\\portfolio_cron_task 0 1613083141.9733000000 1613083141.9740000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:39:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24385 +1172 0 moodle core\\task\\plagiarism_cron_task 0 1613083141.9820000000 1613083141.9828000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:39:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.6968460083008E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24385 +1173 0 moodle core\\task\\calendar_cron_task 0 1613083141.9958000000 1613083141.9999000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:39:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033960342407227 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24385 +1174 0 moodle core\\task\\blog_cron_task 0 1613083142.0087000000 1613083142.0128000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:39:02. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0034267902374268 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24385 +1175 0 moodle core\\task\\question_preview_cleanup_task 0 1613083142.0211000000 1613083142.0382000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:39:02. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016426801681519 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24385 +1176 0 moodle core\\task\\question_stats_cleanup_task 0 1613083142.0464000000 1613083142.0483000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:39:02. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011670589447021 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24385 +1177 0 mod_assign mod_assign\\task\\cron_task 0 1613083142.0609000000 1613083142.0934000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:39:02. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031537055969238 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24385 +1178 0 mod_forum mod_forum\\task\\cron_task 0 1613083142.1130000000 1613083142.1157000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:39:02. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0018050670623779 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24385 +1179 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613083142.1341000000 1613083142.1411000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:39:02. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0059750080108643 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24385 +1180 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613083142.1498000000 1613083142.1508000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:39:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 0.00010895729064941 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24385 +1181 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613083142.1589000000 1613083142.1598000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:39:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.8930130004883E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24385 +1182 0 mod_workshop mod_workshop\\task\\cron_task 0 1613083142.1680000000 1613083142.1695000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:39:02. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.0006859302520752 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24385 +1183 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613083142.1778000000 1613083142.1788000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:39:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.3936920166016E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24385 +1184 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613083142.1897000000 1613083142.1918000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:39:02. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0015478134155273 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24385 +1185 0 tool_monitor tool_monitor\\task\\clean_events 0 1613083142.2005000000 1613083142.2012000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:39:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011801719665527 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24385 +1186 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613083142.2097000000 1613083142.2111000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:39:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.0007779598236084 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24385 +1187 0 enrol_manual enrol_manual\\task\\sync_enrolments 0 1613083201.4036000000 1613083201.4111000000 0 0 0 Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 22:40:01. Current memory use 16.5MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.0051629543304443 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n dev.derekmaxson.com 24446 +1410 0 moodle core\\task\\blog_cron_task 0 1613083742.2585000000 1613083742.2626000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:49:02. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0034101009368896 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24756 +1188 0 enrol_manual enrol_manual\\task\\send_expiry_notifications 0 1613083201.4219000000 1613083201.4227000000 0 0 0 Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 22:40:01. Current memory use 17.5MB.\nmanual enrolment expiry notifications were already sent today at Thursday, 11 February 2021, 6:00 AM.\n... used 0 dbqueries\n... used 0.00020408630371094 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n dev.derekmaxson.com 24446 +1189 0 enrol_self enrol_self\\task\\sync_enrolments 0 1613083201.4315000000 1613083201.4367000000 6 0 0 Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 22:40:01. Current memory use 17.5MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 6 dbqueries\n... used 0.0045170783996582 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n dev.derekmaxson.com 24446 +1190 0 enrol_self enrol_self\\task\\send_expiry_notifications 0 1613083201.4450000000 1613083201.4458000000 0 0 0 Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 22:40:01. Current memory use 17.6MB.\nself enrolment expiry notifications were already sent today at Thursday, 11 February 2021, 6:00 AM.\n... used 0 dbqueries\n... used 0.00017714500427246 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n dev.derekmaxson.com 24446 +1191 0 moodle core\\task\\badges_cron_task 0 1613083201.4541000000 1613083201.4594000000 1 0 0 Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 22:40:01. Current memory use 17.9MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0039379596710205 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n dev.derekmaxson.com 24446 +1192 0 moodle core\\task\\badges_message_task 0 1613083201.4687000000 1613083201.4700000000 1 0 0 Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 22:40:01. Current memory use 18.3MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00064206123352051 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n dev.derekmaxson.com 24446 +1193 0 mod_chat mod_chat\\task\\cron_task 0 1613083201.4839000000 1613083201.4931000000 2 2 0 Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 22:40:01. Current memory use 19.3MB.\n... used 4 dbqueries\n... used 0.0083479881286621 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n dev.derekmaxson.com 24446 +1194 0 mod_scorm mod_scorm\\task\\cron_task 0 1613083201.5019000000 1613083201.5206000000 0 0 0 Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 22:40:01. Current memory use 19.9MB.\n... used 0 dbqueries\n... used 0.017876148223877 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n dev.derekmaxson.com 24446 +1195 0 block_rss_client block_rss_client\\task\\refreshfeeds 0 1613083201.5328000000 1613083201.5412000000 3 0 0 Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 22:40:01. Current memory use 20.8MB.\n\n0 feeds refreshed (took 0.00079200000000001 seconds)\n... used 3 dbqueries\n... used 0.007800817489624 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n dev.derekmaxson.com 24446 +1196 0 moodle core\\task\\session_cleanup_task 0 1613083201.5498000000 1613083201.5587000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:40:01. Current memory use 23MB.\n... used 19 dbqueries\n... used 0.0074281692504883 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24446 +1197 0 moodle core\\task\\send_new_user_passwords_task 0 1613083201.5672000000 1613083201.5685000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:40:01. Current memory use 23.3MB.\n... used 1 dbqueries\n... used 0.00062799453735352 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24446 +1198 0 moodle core\\task\\send_failed_login_notifications_task 0 1613083201.5773000000 1613083201.5781000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:40:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24446 +1199 0 moodle core\\task\\legacy_plugin_cron_task 0 1613083201.5865000000 1613083201.6161000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:40:01. Current memory use 23.4MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.028981924057007 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24446 +1200 0 moodle core\\task\\grade_cron_task 0 1613083201.6248000000 1613083201.6280000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:40:01. Current memory use 26.6MB.\n... used 6 dbqueries\n... used 0.002608060836792 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24446 +1201 0 moodle core\\task\\completion_regular_task 0 1613083201.6366000000 1613083201.6622000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:40:01. Current memory use 26.6MB.\n... used 18 dbqueries\n... used 0.024983882904053 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24446 +1202 0 moodle core\\task\\portfolio_cron_task 0 1613083201.6706000000 1613083201.6713000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:40:01. Current memory use 27MB.\n... used 0 dbqueries\n... used 4.4822692871094E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24446 +1203 0 moodle core\\task\\plagiarism_cron_task 0 1613083201.6795000000 1613083201.6801000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:40:01. Current memory use 27.1MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24446 +1204 0 moodle core\\task\\calendar_cron_task 0 1613083201.6883000000 1613083201.6925000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:40:01. Current memory use 27.1MB.\n... used 1 dbqueries\n... used 0.0035820007324219 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24446 +1205 0 moodle core\\task\\blog_cron_task 0 1613083201.7017000000 1613083201.7057000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:40:01. Current memory use 27.5MB.\n... used 2 dbqueries\n... used 0.0033810138702393 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24446 +1206 0 moodle core\\task\\question_preview_cleanup_task 0 1613083201.7145000000 1613083201.7313000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:40:01. Current memory use 27.7MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016215085983276 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24446 +1207 0 moodle core\\task\\question_stats_cleanup_task 0 1613083201.7406000000 1613083201.7425000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:40:01. Current memory use 29.4MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012490749359131 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24446 +1208 0 mod_assign mod_assign\\task\\cron_task 0 1613083201.7544000000 1613083201.7870000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:40:01. Current memory use 29.5MB.\n... used 3 dbqueries\n... used 0.031627178192139 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24446 +1209 0 mod_forum mod_forum\\task\\cron_task 0 1613083201.8069000000 1613083201.8094000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:40:01. Current memory use 33.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015170574188232 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24446 +1210 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613083201.8279000000 1613083201.8348000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:40:01. Current memory use 34.7MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0057511329650879 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24446 +1211 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613083201.8439000000 1613083201.8447000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:40:01. Current memory use 34.7MB.\n... used 0 dbqueries\n... used 9.1075897216797E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24446 +1212 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613083201.8529000000 1613083201.8537000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:40:01. Current memory use 34.7MB.\n... used 0 dbqueries\n... used 8.6069107055664E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24446 +1213 0 mod_workshop mod_workshop\\task\\cron_task 0 1613083201.8620000000 1613083201.8637000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:40:01. Current memory use 34.8MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00069999694824219 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24446 +1214 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613083201.8726000000 1613083201.8734000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:40:01. Current memory use 34.8MB.\n... used 0 dbqueries\n... used 8.8930130004883E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24446 +1215 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613083201.8847000000 1613083201.8868000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:40:01. Current memory use 34.6MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0015139579772949 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24446 +1216 0 tool_monitor tool_monitor\\task\\clean_events 0 1613083201.8957000000 1613083201.8964000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:40:01. Current memory use 34.7MB.\n... used 0 dbqueries\n... used 0.00011610984802246 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24446 +1217 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613083201.9049000000 1613083201.9063000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:40:01. Current memory use 34.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.0007779598236084 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24446 +1218 0 moodle core\\task\\session_cleanup_task 0 1613083262.0968000000 1613083262.1109000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:41:02. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011152029037476 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24463 +1219 0 moodle core\\task\\send_new_user_passwords_task 0 1613083262.1193000000 1613083262.1205000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:41:02. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00057506561279297 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24463 +1220 0 moodle core\\task\\send_failed_login_notifications_task 0 1613083262.1290000000 1613083262.1297000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:41:02. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24463 +1221 0 moodle core\\task\\legacy_plugin_cron_task 0 1613083262.1383000000 1613083262.1815000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:41:02. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.042587041854858 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24463 +1222 0 moodle core\\task\\grade_cron_task 0 1613083262.1915000000 1613083262.1947000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:41:02. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025320053100586 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24463 +1223 0 moodle core\\task\\completion_regular_task 0 1613083262.2114000000 1613083262.2367000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:41:02. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024710178375244 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24463 +1224 0 moodle core\\task\\portfolio_cron_task 0 1613083262.2566000000 1613083262.2573000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:41:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24463 +1225 0 moodle core\\task\\plagiarism_cron_task 0 1613083262.2656000000 1613083262.2662000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:41:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24463 +1226 0 moodle core\\task\\calendar_cron_task 0 1613083262.2792000000 1613083262.2831000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:41:02. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033109188079834 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24463 +1227 0 moodle core\\task\\blog_cron_task 0 1613083262.2915000000 1613083262.2955000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:41:02. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.003331184387207 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24463 +1228 0 moodle core\\task\\question_preview_cleanup_task 0 1613083262.3040000000 1613083262.3208000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:41:02. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016211986541748 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24463 +1229 0 moodle core\\task\\question_stats_cleanup_task 0 1613083262.3292000000 1613083262.3310000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:41:02. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012109279632568 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24463 +1230 0 mod_assign mod_assign\\task\\cron_task 0 1613083262.3438000000 1613083262.3759000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:41:02. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031254768371582 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24463 +1231 0 mod_forum mod_forum\\task\\cron_task 0 1613083262.3980000000 1613083262.4004000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:41:02. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014979839324951 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24463 +1232 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613083262.4187000000 1613083262.4254000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:41:02. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0058798789978027 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24463 +1233 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613083262.4336000000 1613083262.4346000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:41:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.8930130004883E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24463 +1234 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613083262.4422000000 1613083262.4432000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:41:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.392333984375E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24463 +1235 0 mod_workshop mod_workshop\\task\\cron_task 0 1613083262.4510000000 1613083262.4525000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:41:02. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00067687034606934 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24463 +1236 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613083262.4600000000 1613083262.4610000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:41:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24463 +1237 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613083262.4717000000 1613083262.4737000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:41:02. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014181137084961 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24463 +1238 0 tool_monitor tool_monitor\\task\\clean_events 0 1613083262.4818000000 1613083262.4825000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:41:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.0001380443572998 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24463 +1239 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613083262.4906000000 1613083262.4919000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:41:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00075888633728027 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24463 +1240 0 moodle core\\task\\analytics_cleanup_task 0 1613083321.6809000000 1613083321.7816000000 28 3 0 Execute scheduled task: Analytics cleanup (core\\task\\analytics_cleanup_task)\n... started 22:42:01. Current memory use 16.8MB.\n... used 31 dbqueries\n... used 0.097644090652466 seconds\nScheduled task complete: Analytics cleanup (core\\task\\analytics_cleanup_task)\n dev.derekmaxson.com 24477 +1241 0 moodle core\\task\\session_cleanup_task 0 1613083321.7906000000 1613083321.7984000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:42:01. Current memory use 23.4MB.\n... used 19 dbqueries\n... used 0.0070490837097168 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24477 +1242 0 moodle core\\task\\send_new_user_passwords_task 0 1613083321.8067000000 1613083321.8079000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:42:01. Current memory use 23.7MB.\n... used 1 dbqueries\n... used 0.0005650520324707 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24477 +1243 0 moodle core\\task\\send_failed_login_notifications_task 0 1613083321.8167000000 1613083321.8174000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:42:01. Current memory use 23.8MB.\n... used 0 dbqueries\n... used 5.1021575927734E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24477 +1244 0 moodle core\\task\\legacy_plugin_cron_task 0 1613083321.8262000000 1613083321.8502000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:42:01. Current memory use 23.8MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.023321151733398 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24477 +1245 0 moodle core\\task\\grade_cron_task 0 1613083321.8583000000 1613083321.8615000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:42:01. Current memory use 26.4MB.\n... used 6 dbqueries\n... used 0.0025148391723633 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24477 +1246 0 moodle core\\task\\completion_regular_task 0 1613083321.8702000000 1613083321.8941000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:42:01. Current memory use 26.4MB.\n... used 18 dbqueries\n... used 0.023223161697388 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24477 +1247 0 moodle core\\task\\portfolio_cron_task 0 1613083321.9032000000 1613083321.9040000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:42:01. Current memory use 26.6MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24477 +1248 0 moodle core\\task\\plagiarism_cron_task 0 1613083321.9126000000 1613083321.9133000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:42:01. Current memory use 26.6MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24477 +1249 0 moodle core\\task\\calendar_cron_task 0 1613083321.9220000000 1613083321.9263000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:42:01. Current memory use 26.6MB.\n... used 1 dbqueries\n... used 0.0035510063171387 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24477 +1250 0 moodle core\\task\\blog_cron_task 0 1613083321.9353000000 1613083321.9394000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:42:01. Current memory use 27MB.\n... used 2 dbqueries\n... used 0.0034399032592773 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24477 +1251 0 moodle core\\task\\question_preview_cleanup_task 0 1613083321.9478000000 1613083321.9651000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:42:01. Current memory use 27.3MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016685962677002 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24477 +1252 0 moodle core\\task\\question_stats_cleanup_task 0 1613083321.9733000000 1613083321.9751000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:42:01. Current memory use 30.2MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011489391326904 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24477 +1253 0 mod_assign mod_assign\\task\\cron_task 0 1613083321.9868000000 1613083322.0191000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:42:01. Current memory use 31.2MB.\n... used 3 dbqueries\n... used 0.031383037567139 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24477 +1254 0 mod_forum mod_forum\\task\\cron_task 0 1613083322.0381000000 1613083322.0406000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:42:02. Current memory use 35.1MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.001568078994751 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24477 +1255 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613083322.0583000000 1613083322.0649000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:42:02. Current memory use 36.2MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0057268142700195 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24477 +1256 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613083322.0732000000 1613083322.0742000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:42:02. Current memory use 36.2MB.\n... used 0 dbqueries\n... used 9.2983245849609E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24477 +1257 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613083322.0820000000 1613083322.0830000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:42:02. Current memory use 36.2MB.\n... used 0 dbqueries\n... used 8.9168548583984E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24477 +1258 0 mod_workshop mod_workshop\\task\\cron_task 0 1613083322.0909000000 1613083322.0924000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:42:02. Current memory use 36.2MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00068187713623047 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24477 +1259 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613083322.1005000000 1613083322.1015000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:42:02. Current memory use 36.2MB.\n... used 0 dbqueries\n... used 9.5129013061523E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24477 +1260 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613083322.1121000000 1613083322.1142000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:42:02. Current memory use 35.3MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014898777008057 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24477 +1261 0 tool_monitor tool_monitor\\task\\clean_events 0 1613083322.1229000000 1613083322.1236000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:42:02. Current memory use 35.5MB.\n... used 0 dbqueries\n... used 0.00013995170593262 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24477 +1262 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613083322.1317000000 1613083322.1332000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:42:02. Current memory use 35.5MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00088095664978027 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24477 +1263 0 moodle core\\task\\session_cleanup_task 0 1613083381.3221000000 1613083381.3360000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:43:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.010967016220093 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24493 +1264 0 moodle core\\task\\send_new_user_passwords_task 0 1613083381.3446000000 1613083381.3458000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:43:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.0005638599395752 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24493 +1265 0 moodle core\\task\\send_failed_login_notifications_task 0 1613083381.3543000000 1613083381.3550000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:43:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24493 +1297 0 mod_assign mod_assign\\task\\cron_task 0 1613083442.1114000000 1613083442.1437000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:44:02. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031423091888428 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24510 +1266 0 moodle core\\task\\legacy_plugin_cron_task 0 1613083381.3629000000 1613083381.4064000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:43:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.042890071868896 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24493 +1267 0 moodle core\\task\\grade_cron_task 0 1613083381.4150000000 1613083381.4181000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:43:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0024979114532471 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24493 +1268 0 moodle core\\task\\completion_regular_task 0 1613083381.4263000000 1613083381.4522000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:43:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.025163173675537 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24493 +1269 0 moodle core\\task\\portfolio_cron_task 0 1613083381.4601000000 1613083381.4608000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:43:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 5.5074691772461E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24493 +1270 0 moodle core\\task\\plagiarism_cron_task 0 1613083381.4686000000 1613083381.4692000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:43:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.3869018554688E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24493 +1271 0 moodle core\\task\\calendar_cron_task 0 1613083381.4817000000 1613083381.4856000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:43:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033040046691895 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24493 +1272 0 moodle core\\task\\blog_cron_task 0 1613083381.4934000000 1613083381.4973000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:43:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0033509731292725 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24493 +1273 0 moodle core\\task\\question_preview_cleanup_task 0 1613083381.5050000000 1613083381.5219000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:43:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.01625394821167 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24493 +1274 0 moodle core\\task\\question_stats_cleanup_task 0 1613083381.5299000000 1613083381.5318000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:43:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011558532714844 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24493 +1275 0 mod_assign mod_assign\\task\\cron_task 0 1613083381.5435000000 1613083381.5756000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:43:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031299829483032 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24493 +1276 0 mod_forum mod_forum\\task\\cron_task 0 1613083381.5941000000 1613083381.5965000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:43:01. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014889240264893 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24493 +1277 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613083381.6179000000 1613083381.6248000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:43:01. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.005993127822876 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24493 +1278 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613083381.6329000000 1613083381.6338000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:43:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.608268737793E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24493 +1279 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613083381.6418000000 1613083381.6427000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:43:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2029571533203E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24493 +1280 0 mod_workshop mod_workshop\\task\\cron_task 0 1613083381.6505000000 1613083381.6521000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:43:01. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00068283081054688 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24493 +1361 0 moodle core\\task\\grade_cron_task 0 1613083622.0475000000 1613083622.0506000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:47:02. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0024888515472412 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24717 +1281 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613083381.6595000000 1613083381.6604000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:43:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.5115432739258E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24493 +1282 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613083381.6709000000 1613083381.6729000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:43:01. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014059543609619 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24493 +1283 0 tool_monitor tool_monitor\\task\\clean_events 0 1613083381.6808000000 1613083381.6815000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:43:01. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011086463928223 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24493 +1284 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613083381.6894000000 1613083381.6908000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:43:01. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.0007779598236084 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24493 +1285 0 moodle core\\task\\session_cleanup_task 0 1613083441.8815000000 1613083441.8956000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:44:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.01107382774353 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24510 +1286 0 moodle core\\task\\send_new_user_passwords_task 0 1613083441.9046000000 1613083441.9059000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:44:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00057697296142578 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24510 +1287 0 moodle core\\task\\send_failed_login_notifications_task 0 1613083441.9147000000 1613083441.9154000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:44:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.6968460083008E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24510 +1288 0 moodle core\\task\\legacy_plugin_cron_task 0 1613083441.9238000000 1613083441.9683000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:44:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043837070465088 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24510 +1289 0 moodle core\\task\\grade_cron_task 0 1613083441.9775000000 1613083441.9808000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:44:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0026531219482422 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24510 +1290 0 moodle core\\task\\completion_regular_task 0 1613083441.9896000000 1613083442.0150000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:44:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024755954742432 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24510 +1291 0 moodle core\\task\\portfolio_cron_task 0 1613083442.0235000000 1613083442.0241000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:44:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24510 +1292 0 moodle core\\task\\plagiarism_cron_task 0 1613083442.0323000000 1613083442.0330000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:44:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.6014785766602E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24510 +1293 0 moodle core\\task\\calendar_cron_task 0 1613083442.0458000000 1613083442.0498000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:44:02. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0032980442047119 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24510 +1294 0 moodle core\\task\\blog_cron_task 0 1613083442.0582000000 1613083442.0623000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:44:02. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0033559799194336 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24510 +1295 0 moodle core\\task\\question_preview_cleanup_task 0 1613083442.0707000000 1613083442.0878000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:44:02. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016401052474976 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24510 +1296 0 moodle core\\task\\question_stats_cleanup_task 0 1613083442.0963000000 1613083442.0982000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:44:02. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012211799621582 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24510 +1298 0 mod_forum mod_forum\\task\\cron_task 0 1613083442.1629000000 1613083442.1652000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:44:02. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014848709106445 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24510 +1299 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613083442.1832000000 1613083442.1900000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:44:02. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0059101581573486 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24510 +1300 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613083442.1982000000 1613083442.1992000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:44:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.4175338745117E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24510 +1301 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613083442.2072000000 1613083442.2082000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:44:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2029571533203E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24510 +1302 0 mod_workshop mod_workshop\\task\\cron_task 0 1613083442.2162000000 1613083442.2177000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:44:02. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00067996978759766 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24510 +1303 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613083442.2257000000 1613083442.2267000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:44:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.1075897216797E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24510 +1304 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613083442.2375000000 1613083442.2395000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:44:02. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014610290527344 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24510 +1305 0 tool_monitor tool_monitor\\task\\clean_events 0 1613083442.2481000000 1613083442.2488000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:44:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011491775512695 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24510 +1306 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613083442.2574000000 1613083442.2588000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:44:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00078296661376953 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24510 +1307 0 assignfeedback_editpdf assignfeedback_editpdf\\task\\convert_submissions 0 1613083501.7189000000 1613083501.7763000000 1 0 0 Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 22:45:01. Current memory use 16.5MB.\n... used 1 dbqueries\n... used 0.05498480796814 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n dev.derekmaxson.com 24654 +1308 0 moodle core\\task\\badges_cron_task 0 1613083501.7855000000 1613083501.7912000000 1 0 0 Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 22:45:01. Current memory use 23.7MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0042018890380859 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n dev.derekmaxson.com 24654 +1309 0 moodle core\\task\\badges_message_task 0 1613083501.7996000000 1613083501.8009000000 1 0 0 Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 22:45:01. Current memory use 24MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00060820579528809 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n dev.derekmaxson.com 24654 +1310 0 mod_chat mod_chat\\task\\cron_task 0 1613083501.8137000000 1613083501.8227000000 2 2 0 Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 22:45:01. Current memory use 26.3MB.\n... used 4 dbqueries\n... used 0.0081079006195068 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n dev.derekmaxson.com 24654 +1311 0 mod_scorm mod_scorm\\task\\cron_task 0 1613083501.8313000000 1613083501.8375000000 0 0 0 Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 22:45:01. Current memory use 26.9MB.\n... used 0 dbqueries\n... used 0.0052359104156494 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n dev.derekmaxson.com 24654 +1312 0 block_rss_client block_rss_client\\task\\refreshfeeds 0 1613083501.8481000000 1613083501.8553000000 3 0 0 Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 22:45:01. Current memory use 26.2MB.\n\n0 feeds refreshed (took 0.00070800000000004 seconds)\n... used 3 dbqueries\n... used 0.0066699981689453 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n dev.derekmaxson.com 24654 +1313 0 moodle core\\task\\session_cleanup_task 0 1613083501.8640000000 1613083501.8726000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:45:01. Current memory use 27.2MB.\n... used 19 dbqueries\n... used 0.0072507858276367 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24654 +1314 0 moodle core\\task\\send_new_user_passwords_task 0 1613083501.8810000000 1613083501.8822000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:45:01. Current memory use 27.5MB.\n... used 1 dbqueries\n... used 0.00058293342590332 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24654 +1315 0 moodle core\\task\\send_failed_login_notifications_task 0 1613083501.8908000000 1613083501.8914000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:45:01. Current memory use 27.5MB.\n... used 0 dbqueries\n... used 4.3869018554688E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24654 +1316 0 moodle core\\task\\legacy_plugin_cron_task 0 1613083501.8999000000 1613083501.9157000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:45:01. Current memory use 27.5MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.015177011489868 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24654 +1317 0 moodle core\\task\\grade_cron_task 0 1613083501.9243000000 1613083501.9274000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:45:01. Current memory use 29MB.\n... used 6 dbqueries\n... used 0.002586841583252 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24654 +1318 0 moodle core\\task\\completion_regular_task 0 1613083501.9365000000 1613083501.9610000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:45:01. Current memory use 29MB.\n... used 18 dbqueries\n... used 0.023854970932007 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24654 +1319 0 moodle core\\task\\portfolio_cron_task 0 1613083501.9695000000 1613083501.9702000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:45:01. Current memory use 29.2MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24654 +1320 0 moodle core\\task\\plagiarism_cron_task 0 1613083501.9790000000 1613083501.9796000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:45:01. Current memory use 29.2MB.\n... used 0 dbqueries\n... used 4.6014785766602E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24654 +1321 0 moodle core\\task\\calendar_cron_task 0 1613083501.9883000000 1613083501.9925000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:45:01. Current memory use 29.2MB.\n... used 1 dbqueries\n... used 0.0036580562591553 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24654 +1322 0 moodle core\\task\\blog_cron_task 0 1613083502.0016000000 1613083502.0058000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:45:02. Current memory use 29.6MB.\n... used 2 dbqueries\n... used 0.0035660266876221 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24654 +1323 0 moodle core\\task\\question_preview_cleanup_task 0 1613083502.0141000000 1613083502.0313000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:45:02. Current memory use 29.9MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.01655387878418 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24654 +1324 0 moodle core\\task\\question_stats_cleanup_task 0 1613083502.0400000000 1613083502.0419000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:45:02. Current memory use 31.6MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012331008911133 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24654 +1325 0 mod_assign mod_assign\\task\\cron_task 0 1613083502.0520000000 1613083502.0655000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:45:02. Current memory use 31.7MB.\n... used 3 dbqueries\n... used 0.012449026107788 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24654 +1326 0 mod_forum mod_forum\\task\\cron_task 0 1613083502.0851000000 1613083502.0876000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:45:02. Current memory use 33.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015499591827393 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24654 +1327 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613083502.1066000000 1613083502.1137000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:45:02. Current memory use 34.7MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0057940483093262 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24654 +1328 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613083502.1218000000 1613083502.1226000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:45:02. Current memory use 34.7MB.\n... used 0 dbqueries\n... used 9.2983245849609E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24654 +1329 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613083502.1309000000 1613083502.1317000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:45:02. Current memory use 34.7MB.\n... used 0 dbqueries\n... used 8.8214874267578E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24654 +1330 0 mod_workshop mod_workshop\\task\\cron_task 0 1613083502.1402000000 1613083502.1419000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:45:02. Current memory use 34.8MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00072407722473145 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24654 +1331 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613083502.1503000000 1613083502.1511000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:45:02. Current memory use 34.8MB.\n... used 0 dbqueries\n... used 9.2983245849609E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24654 +1332 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613083502.1625000000 1613083502.1646000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:45:02. Current memory use 34.6MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014610290527344 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24654 +1333 0 tool_monitor tool_monitor\\task\\clean_events 0 1613083502.1731000000 1613083502.1739000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:45:02. Current memory use 34.7MB.\n... used 0 dbqueries\n... used 0.00011706352233887 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24654 +1334 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613083502.1825000000 1613083502.1839000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:45:02. Current memory use 34.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00078201293945312 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24654 +1335 0 moodle core\\task\\session_cleanup_task 0 1613083561.3738000000 1613083561.3879000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:46:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011053085327148 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24700 +1336 0 moodle core\\task\\send_new_user_passwords_task 0 1613083561.3967000000 1613083561.3979000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:46:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00056695938110352 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24700 +1337 0 moodle core\\task\\send_failed_login_notifications_task 0 1613083561.4078000000 1613083561.4085000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:46:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24700 +1338 0 moodle core\\task\\legacy_plugin_cron_task 0 1613083561.4177000000 1613083561.4617000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:46:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043301105499268 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24700 +1339 0 moodle core\\task\\grade_cron_task 0 1613083561.4708000000 1613083561.4740000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:46:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0024850368499756 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24700 +1340 0 moodle core\\task\\completion_regular_task 0 1613083561.4822000000 1613083561.5075000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:46:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024670839309692 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24700 +1341 0 moodle core\\task\\portfolio_cron_task 0 1613083561.5155000000 1613083561.5162000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:46:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24700 +1342 0 moodle core\\task\\plagiarism_cron_task 0 1613083561.5242000000 1613083561.5249000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:46:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24700 +1343 0 moodle core\\task\\calendar_cron_task 0 1613083561.5373000000 1613083561.5413000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:46:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033400058746338 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24700 +1344 0 moodle core\\task\\blog_cron_task 0 1613083561.5493000000 1613083561.5534000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:46:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0033829212188721 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24700 +1345 0 moodle core\\task\\question_preview_cleanup_task 0 1613083561.5614000000 1613083561.5787000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:46:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016695976257324 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24700 +1346 0 moodle core\\task\\question_stats_cleanup_task 0 1613083561.5867000000 1613083561.5885000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:46:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011551380157471 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24700 +1347 0 mod_assign mod_assign\\task\\cron_task 0 1613083561.6004000000 1613083561.6329000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:46:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031582117080688 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24700 +1348 0 mod_forum mod_forum\\task\\cron_task 0 1613083561.6527000000 1613083561.6551000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:46:01. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015089511871338 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24700 +1349 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613083561.6728000000 1613083561.6796000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:46:01. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.005889892578125 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24700 +1350 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613083561.6881000000 1613083561.6890000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:46:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.9883804321289E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24700 +1351 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613083561.6986000000 1613083561.6996000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:46:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.3221664428711E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24700 +1352 0 mod_workshop mod_workshop\\task\\cron_task 0 1613083561.7095000000 1613083561.7111000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:46:01. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00072407722473145 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24700 +1353 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613083561.7221000000 1613083561.7231000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:46:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.9883804321289E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24700 +1354 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613083561.7354000000 1613083561.7375000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:46:01. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014469623565674 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24700 +1355 0 tool_monitor tool_monitor\\task\\clean_events 0 1613083561.7462000000 1613083561.7469000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:46:01. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011301040649414 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24700 +1356 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613083561.7570000000 1613083561.7583000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:46:01. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00075697898864746 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24700 +1357 0 moodle core\\task\\session_cleanup_task 0 1613083621.9535000000 1613083621.9675000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:47:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.01100492477417 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24717 +1358 0 moodle core\\task\\send_new_user_passwords_task 0 1613083621.9764000000 1613083621.9777000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:47:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00065898895263672 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24717 +1359 0 moodle core\\task\\send_failed_login_notifications_task 0 1613083621.9860000000 1613083621.9867000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:47:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.4822692871094E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24717 +1360 0 moodle core\\task\\legacy_plugin_cron_task 0 1613083621.9948000000 1613083622.0389000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:47:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043476104736328 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24717 +1362 0 moodle core\\task\\completion_regular_task 0 1613083622.0589000000 1613083622.0840000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:47:02. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024502992630005 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24717 +1363 0 moodle core\\task\\portfolio_cron_task 0 1613083622.0942000000 1613083622.0949000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:47:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.6968460083008E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24717 +1364 0 moodle core\\task\\plagiarism_cron_task 0 1613083622.1069000000 1613083622.1076000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:47:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24717 +1365 0 moodle core\\task\\calendar_cron_task 0 1613083622.1207000000 1613083622.1246000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:47:02. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033061504364014 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24717 +1366 0 moodle core\\task\\blog_cron_task 0 1613083622.1328000000 1613083622.1372000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:47:02. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0033819675445557 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24717 +1367 0 moodle core\\task\\question_preview_cleanup_task 0 1613083622.1456000000 1613083622.1627000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:47:02. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016417026519775 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24717 +1368 0 moodle core\\task\\question_stats_cleanup_task 0 1613083622.1714000000 1613083622.1732000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:47:02. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011658668518066 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24717 +1369 0 mod_assign mod_assign\\task\\cron_task 0 1613083622.1861000000 1613083622.2183000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:47:02. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031298875808716 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24717 +1370 0 mod_forum mod_forum\\task\\cron_task 0 1613083622.2377000000 1613083622.2401000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:47:02. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014729499816895 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24717 +1371 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613083622.2581000000 1613083622.2649000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:47:02. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0058410167694092 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24717 +1372 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613083622.2731000000 1613083622.2741000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:47:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.1075897216797E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24717 +1373 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613083622.2823000000 1613083622.2832000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:47:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.8930130004883E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24717 +1374 0 mod_workshop mod_workshop\\task\\cron_task 0 1613083622.2917000000 1613083622.2932000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:47:02. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00067400932312012 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24717 +1375 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613083622.3010000000 1613083622.3019000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:47:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.6784362792969E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24717 +1376 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613083622.3128000000 1613083622.3148000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:47:02. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014410018920898 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24717 +1377 0 tool_monitor tool_monitor\\task\\clean_events 0 1613083622.3233000000 1613083622.3239000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:47:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011086463928223 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24717 +1378 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613083622.3318000000 1613083622.3331000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:47:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00074410438537598 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24717 +1379 0 moodle core\\task\\session_cleanup_task 0 1613083681.5212000000 1613083681.5355000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:48:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011162996292114 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24739 +1380 0 moodle core\\task\\send_new_user_passwords_task 0 1613083681.5444000000 1613083681.5457000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:48:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00056600570678711 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24739 +1381 0 moodle core\\task\\send_failed_login_notifications_task 0 1613083681.5541000000 1613083681.5548000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:48:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24739 +1382 0 moodle core\\task\\legacy_plugin_cron_task 0 1613083681.5635000000 1613083681.6075000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:48:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043348073959351 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24739 +1383 0 moodle core\\task\\grade_cron_task 0 1613083681.6160000000 1613083681.6192000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:48:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025150775909424 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24739 +1384 0 moodle core\\task\\completion_regular_task 0 1613083681.6274000000 1613083681.6526000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:48:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024507999420166 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24739 +1385 0 moodle core\\task\\portfolio_cron_task 0 1613083681.6605000000 1613083681.6612000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:48:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.4822692871094E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24739 +1386 0 moodle core\\task\\plagiarism_cron_task 0 1613083681.6689000000 1613083681.6696000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:48:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24739 +1387 0 moodle core\\task\\calendar_cron_task 0 1613083681.6826000000 1613083681.6865000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:48:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033040046691895 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24739 +1388 0 moodle core\\task\\blog_cron_task 0 1613083681.6950000000 1613083681.6992000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:48:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0034878253936768 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24739 +1389 0 moodle core\\task\\question_preview_cleanup_task 0 1613083681.7083000000 1613083681.7255000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:48:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016512870788574 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24739 +1390 0 moodle core\\task\\question_stats_cleanup_task 0 1613083681.7337000000 1613083681.7356000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:48:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012240409851074 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24739 +1391 0 mod_assign mod_assign\\task\\cron_task 0 1613083681.7475000000 1613083681.7792000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:48:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.030932903289795 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24739 +1392 0 mod_forum mod_forum\\task\\cron_task 0 1613083681.7975000000 1613083681.7999000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:48:01. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014898777008057 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24739 +1409 0 moodle core\\task\\calendar_cron_task 0 1613083742.2450000000 1613083742.2494000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:49:02. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0034279823303223 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24756 +1393 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613083681.8174000000 1613083681.8242000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:48:01. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0059120655059814 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24739 +1394 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613083681.8325000000 1613083681.8335000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:48:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.3936920166016E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24739 +1395 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613083681.8416000000 1613083681.8426000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:48:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.608268737793E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24739 +1396 0 mod_workshop mod_workshop\\task\\cron_task 0 1613083681.8505000000 1613083681.8522000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:48:01. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00073909759521484 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24739 +1397 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613083681.8602000000 1613083681.8612000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:48:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2029571533203E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24739 +1398 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613083681.8718000000 1613083681.8738000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:48:01. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014231204986572 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24739 +1399 0 tool_monitor tool_monitor\\task\\clean_events 0 1613083681.8822000000 1613083681.8829000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:48:01. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011396408081055 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24739 +1400 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613083681.8910000000 1613083681.8923000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:48:01. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00076794624328613 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24739 +1401 0 moodle core\\task\\session_cleanup_task 0 1613083742.0819000000 1613083742.0962000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:49:02. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011229038238525 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24756 +1402 0 moodle core\\task\\send_new_user_passwords_task 0 1613083742.1054000000 1613083742.1066000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:49:02. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00059890747070312 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24756 +1403 0 moodle core\\task\\send_failed_login_notifications_task 0 1613083742.1152000000 1613083742.1159000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:49:02. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.3153762817383E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24756 +1404 0 moodle core\\task\\legacy_plugin_cron_task 0 1613083742.1244000000 1613083742.1684000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:49:02. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043329954147339 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24756 +1405 0 moodle core\\task\\grade_cron_task 0 1613083742.1770000000 1613083742.1802000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:49:02. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025699138641357 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24756 +1406 0 moodle core\\task\\completion_regular_task 0 1613083742.1885000000 1613083742.2139000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:49:02. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024736881256104 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24756 +1407 0 moodle core\\task\\portfolio_cron_task 0 1613083742.2225000000 1613083742.2232000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:49:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.3869018554688E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24756 +1408 0 moodle core\\task\\plagiarism_cron_task 0 1613083742.2313000000 1613083742.2319000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:49:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.6014785766602E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24756 +1411 0 moodle core\\task\\question_preview_cleanup_task 0 1613083742.2709000000 1613083742.2881000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:49:02. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016510009765625 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24756 +1412 0 moodle core\\task\\question_stats_cleanup_task 0 1613083742.2964000000 1613083742.2982000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:49:02. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011839866638184 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24756 +1413 0 mod_assign mod_assign\\task\\cron_task 0 1613083742.3105000000 1613083742.3426000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:49:02. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031214952468872 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24756 +1414 0 mod_forum mod_forum\\task\\cron_task 0 1613083742.3613000000 1613083742.3637000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:49:02. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015048980712891 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24756 +1415 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613083742.3813000000 1613083742.3881000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:49:02. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0058829784393311 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24756 +1416 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613083742.3963000000 1613083742.3973000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:49:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.1075897216797E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24756 +1417 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613083742.4053000000 1613083742.4062000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:49:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.9883804321289E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24756 +1418 0 mod_workshop mod_workshop\\task\\cron_task 0 1613083742.4143000000 1613083742.4159000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:49:02. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00068187713623047 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24756 +1419 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613083742.4237000000 1613083742.4246000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:49:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2029571533203E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24756 +1420 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613083742.4350000000 1613083742.4370000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:49:02. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014190673828125 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24756 +1421 0 tool_monitor tool_monitor\\task\\clean_events 0 1613083742.4452000000 1613083742.4459000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:49:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011491775512695 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24756 +1422 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613083742.4542000000 1613083742.4556000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:49:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00077295303344727 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24756 +1423 0 moodle core\\task\\cache_cron_task 0 1613083801.6480000000 1613083801.6554000000 0 0 0 Execute scheduled task: Background processing for caches (core\\task\\cache_cron_task)\n... started 22:50:01. Current memory use 16.8MB.\nCleaning up stale session data from cache stores.\n... used 0 dbqueries\n... used 0.0042672157287598 seconds\nScheduled task complete: Background processing for caches (core\\task\\cache_cron_task)\n dev.derekmaxson.com 24769 +1424 0 moodle core\\task\\automated_backup_task 0 1613083801.6650000000 1613083801.8915000000 0 0 0 Execute scheduled task: Automated backups (core\\task\\automated_backup_task)\n... started 22:50:01. Current memory use 17.7MB.\nChecking automated backup status...INACTIVE\n... used 0 dbqueries\n... used 0.22584700584412 seconds\nScheduled task complete: Automated backups (core\\task\\automated_backup_task)\n dev.derekmaxson.com 24769 +1425 0 enrol_manual enrol_manual\\task\\sync_enrolments 0 1613083801.9002000000 1613083801.9020000000 0 0 0 Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 22:50:01. Current memory use 37.6MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.0010058879852295 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n dev.derekmaxson.com 24769 +1426 0 enrol_manual enrol_manual\\task\\send_expiry_notifications 0 1613083801.9103000000 1613083801.9112000000 0 0 0 Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 22:50:01. Current memory use 37.7MB.\nmanual enrolment expiry notifications were already sent today at Thursday, 11 February 2021, 6:00 AM.\n... used 0 dbqueries\n... used 0.00020313262939453 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n dev.derekmaxson.com 24769 +1427 0 enrol_self enrol_self\\task\\sync_enrolments 0 1613083801.9194000000 1613083801.9250000000 6 0 0 Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 22:50:01. Current memory use 37.7MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 6 dbqueries\n... used 0.0048148632049561 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n dev.derekmaxson.com 24769 +1428 0 enrol_self enrol_self\\task\\send_expiry_notifications 0 1613083801.9335000000 1613083801.9344000000 0 0 0 Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 22:50:01. Current memory use 37.9MB.\nself enrolment expiry notifications were already sent today at Thursday, 11 February 2021, 6:00 AM.\n... used 0 dbqueries\n... used 0.00018692016601562 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n dev.derekmaxson.com 24769 +1429 0 moodle core\\task\\badges_cron_task 0 1613083801.9429000000 1613083801.9477000000 1 0 0 Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 22:50:01. Current memory use 37.9MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0041079521179199 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n dev.derekmaxson.com 24769 +1430 0 moodle core\\task\\badges_message_task 0 1613083801.9559000000 1613083801.9572000000 1 0 0 Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 22:50:01. Current memory use 38.2MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00059604644775391 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n dev.derekmaxson.com 24769 +1431 0 mod_chat mod_chat\\task\\cron_task 0 1613083801.9691000000 1613083801.9721000000 2 2 0 Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 22:50:01. Current memory use 39.2MB.\n... used 4 dbqueries\n... used 0.0020909309387207 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n dev.derekmaxson.com 24769 +1432 0 mod_scorm mod_scorm\\task\\cron_task 0 1613083801.9804000000 1613083801.9850000000 0 0 0 Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 22:50:01. Current memory use 39.2MB.\n... used 0 dbqueries\n... used 0.0036270618438721 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n dev.derekmaxson.com 24769 +1433 0 block_rss_client block_rss_client\\task\\refreshfeeds 0 1613083801.9959000000 1613083802.0032000000 3 0 0 Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 22:50:01. Current memory use 38.3MB.\n\n0 feeds refreshed (took 0.000714 seconds)\n... used 3 dbqueries\n... used 0.0067110061645508 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n dev.derekmaxson.com 24769 +1434 0 moodle core\\task\\session_cleanup_task 0 1613083802.0120000000 1613083802.0206000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:50:02. Current memory use 39.3MB.\n... used 19 dbqueries\n... used 0.0072059631347656 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24769 +1435 0 moodle core\\task\\send_new_user_passwords_task 0 1613083802.0288000000 1613083802.0301000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:50:02. Current memory use 39.5MB.\n... used 1 dbqueries\n... used 0.00060296058654785 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24769 +1436 0 moodle core\\task\\send_failed_login_notifications_task 0 1613083802.0386000000 1613083802.0393000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:50:02. Current memory use 39.6MB.\n... used 0 dbqueries\n... used 4.6014785766602E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24769 +1437 0 moodle core\\task\\legacy_plugin_cron_task 0 1613083802.0479000000 1613083802.0620000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:50:02. Current memory use 39.6MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.013506174087524 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24769 +1438 0 moodle core\\task\\grade_cron_task 0 1613083802.0703000000 1613083802.0735000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:50:02. Current memory use 40.8MB.\n... used 6 dbqueries\n... used 0.0025539398193359 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24769 +1439 0 moodle core\\task\\completion_regular_task 0 1613083802.0822000000 1613083802.1060000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:50:02. Current memory use 40.8MB.\n... used 18 dbqueries\n... used 0.023103952407837 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24769 +1440 0 moodle core\\task\\portfolio_cron_task 0 1613083802.1144000000 1613083802.1151000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:50:02. Current memory use 41.1MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24769 +1441 0 moodle core\\task\\plagiarism_cron_task 0 1613083802.1237000000 1613083802.1243000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:50:02. Current memory use 41.1MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24769 +1442 0 moodle core\\task\\calendar_cron_task 0 1613083802.1328000000 1613083802.1370000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:50:02. Current memory use 41.1MB.\n... used 1 dbqueries\n... used 0.0035998821258545 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24769 +1443 0 moodle core\\task\\blog_cron_task 0 1613083802.1453000000 1613083802.1495000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:50:02. Current memory use 41.5MB.\n... used 2 dbqueries\n... used 0.0035429000854492 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24769 +1444 0 moodle core\\task\\question_preview_cleanup_task 0 1613083802.1579000000 1613083802.1633000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:50:02. Current memory use 41.8MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.0047309398651123 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24769 +1445 0 moodle core\\task\\question_stats_cleanup_task 0 1613083802.1714000000 1613083802.1732000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:50:02. Current memory use 41.8MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011968612670898 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24769 +1446 0 mod_assign mod_assign\\task\\cron_task 0 1613083802.1812000000 1613083802.1945000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:50:02. Current memory use 41.9MB.\n... used 3 dbqueries\n... used 0.012295961380005 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24769 +1447 0 mod_forum mod_forum\\task\\cron_task 0 1613083802.2033000000 1613083802.2059000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:50:02. Current memory use 42.6MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014798641204834 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24769 +1448 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613083802.2211000000 1613083802.2281000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:50:02. Current memory use 43.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0057451725006104 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24769 +1449 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613083802.2364000000 1613083802.2372000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:50:02. Current memory use 43.6MB.\n... used 0 dbqueries\n... used 9.7990036010742E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24769 +1450 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613083802.2452000000 1613083802.2460000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:50:02. Current memory use 43.6MB.\n... used 0 dbqueries\n... used 8.9883804321289E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24769 +1451 0 mod_workshop mod_workshop\\task\\cron_task 0 1613083802.2541000000 1613083802.2558000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:50:02. Current memory use 43.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00068998336791992 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24769 +1452 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613083802.2641000000 1613083802.2649000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:50:02. Current memory use 43.6MB.\n... used 0 dbqueries\n... used 9.1075897216797E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24769 +1453 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613083802.2756000000 1613083802.2776000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:50:02. Current memory use 43.5MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.001439094543457 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24769 +1454 0 tool_monitor tool_monitor\\task\\clean_events 0 1613083802.2858000000 1613083802.2866000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:50:02. Current memory use 43.6MB.\n... used 0 dbqueries\n... used 0.00011277198791504 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24769 +1455 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613083802.2956000000 1613083802.2970000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:50:02. Current memory use 43.7MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00078797340393066 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24769 +1456 0 moodle core\\task\\session_cleanup_task 0 1613083861.4903000000 1613083861.5045000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:51:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011127948760986 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24785 +1457 0 moodle core\\task\\send_new_user_passwords_task 0 1613083861.5132000000 1613083861.5145000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:51:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00058984756469727 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24785 +1458 0 moodle core\\task\\send_failed_login_notifications_task 0 1613083861.5232000000 1613083861.5239000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:51:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.6968460083008E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24785 +1459 0 moodle core\\task\\legacy_plugin_cron_task 0 1613083861.5321000000 1613083861.5766000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:51:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043846130371094 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24785 +1460 0 moodle core\\task\\grade_cron_task 0 1613083861.5850000000 1613083861.5882000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:51:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025551319122314 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24785 +1461 0 moodle core\\task\\completion_regular_task 0 1613083861.5964000000 1613083861.6219000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:51:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024821043014526 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24785 +1462 0 moodle core\\task\\portfolio_cron_task 0 1613083861.6300000000 1613083861.6307000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:51:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.6014785766602E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24785 +1463 0 moodle core\\task\\plagiarism_cron_task 0 1613083861.6385000000 1613083861.6392000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:51:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.6014785766602E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24785 +1464 0 moodle core\\task\\calendar_cron_task 0 1613083861.6518000000 1613083861.6558000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:51:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.00337815284729 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24785 +1465 0 moodle core\\task\\blog_cron_task 0 1613083861.6640000000 1613083861.6681000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:51:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0034329891204834 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24785 +1466 0 moodle core\\task\\question_preview_cleanup_task 0 1613083861.6764000000 1613083861.6935000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:51:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016486167907715 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24785 +1467 0 moodle core\\task\\question_stats_cleanup_task 0 1613083861.7016000000 1613083861.7034000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:51:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012099742889404 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24785 +1468 0 mod_assign mod_assign\\task\\cron_task 0 1613083861.7156000000 1613083861.7480000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:51:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031512022018433 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24785 +1469 0 mod_forum mod_forum\\task\\cron_task 0 1613083861.7675000000 1613083861.7700000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:51:01. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0016109943389893 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24785 +1470 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613083861.7887000000 1613083861.7956000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:51:01. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0060369968414307 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24785 +1471 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613083861.8042000000 1613083861.8052000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:51:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.4175338745117E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24785 +1472 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613083861.8164000000 1613083861.8174000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:51:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.9883804321289E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24785 +1473 0 mod_workshop mod_workshop\\task\\cron_task 0 1613083861.8255000000 1613083861.8271000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:51:01. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00073695182800293 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24785 +1474 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613083861.8360000000 1613083861.8369000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:51:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.0837478637695E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24785 +1475 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613083861.8477000000 1613083861.8497000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:51:01. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014548301696777 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24785 +1476 0 tool_monitor tool_monitor\\task\\clean_events 0 1613083861.8629000000 1613083861.8636000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:51:01. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011801719665527 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24785 +1477 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613083861.8733000000 1613083861.8747000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:51:01. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00078511238098145 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24785 +1478 0 moodle core\\task\\session_cleanup_task 0 1613083922.0664000000 1613083922.0807000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:52:02. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011187076568604 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24802 +1479 0 moodle core\\task\\send_new_user_passwords_task 0 1613083922.0895000000 1613083922.0908000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:52:02. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00059700012207031 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24802 +1480 0 moodle core\\task\\send_failed_login_notifications_task 0 1613083922.0994000000 1613083922.1001000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:52:02. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24802 +1481 0 moodle core\\task\\legacy_plugin_cron_task 0 1613083922.1087000000 1613083922.1529000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:52:02. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.0436110496521 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24802 +1482 0 moodle core\\task\\grade_cron_task 0 1613083922.1615000000 1613083922.1647000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:52:02. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025439262390137 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24802 +1483 0 moodle core\\task\\completion_regular_task 0 1613083922.1731000000 1613083922.1983000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:52:02. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024573087692261 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24802 +1484 0 moodle core\\task\\portfolio_cron_task 0 1613083922.2070000000 1613083922.2078000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:52:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24802 +1485 0 moodle core\\task\\plagiarism_cron_task 0 1613083922.2159000000 1613083922.2165000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:52:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24802 +1486 0 moodle core\\task\\calendar_cron_task 0 1613083922.2301000000 1613083922.2342000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:52:02. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033879280090332 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24802 +1487 0 moodle core\\task\\blog_cron_task 0 1613083922.2431000000 1613083922.2472000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:52:02. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0034458637237549 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24802 +1488 0 moodle core\\task\\question_preview_cleanup_task 0 1613083922.2554000000 1613083922.2726000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:52:02. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016605138778687 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24802 +1489 0 moodle core\\task\\question_stats_cleanup_task 0 1613083922.2808000000 1613083922.2827000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:52:02. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012180805206299 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24802 +1490 0 mod_assign mod_assign\\task\\cron_task 0 1613083922.2950000000 1613083922.3271000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:52:02. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031210899353027 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24802 +1491 0 mod_forum mod_forum\\task\\cron_task 0 1613083922.3461000000 1613083922.3484000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:52:02. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014810562133789 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24802 +1492 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613083922.3661000000 1613083922.3730000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:52:02. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0059511661529541 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24802 +1493 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613083922.3811000000 1613083922.3820000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:52:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.0122222900391E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24802 +1494 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613083922.3899000000 1613083922.3909000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:52:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2029571533203E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24802 +1495 0 mod_workshop mod_workshop\\task\\cron_task 0 1613083922.3988000000 1613083922.4003000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:52:02. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00068402290344238 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24802 +1496 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613083922.4082000000 1613083922.4091000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:52:02. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.0122222900391E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24802 +1497 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613083922.4196000000 1613083922.4216000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:52:02. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.001439094543457 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24802 +1498 0 tool_monitor tool_monitor\\task\\clean_events 0 1613083922.4301000000 1613083922.4308000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:52:02. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00012707710266113 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24802 +1499 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613083922.4396000000 1613083922.4409000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:52:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.0007779598236084 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24802 +1500 0 moodle core\\task\\session_cleanup_task 0 1613083981.6302000000 1613083981.6444000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:53:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011122941970825 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24817 +1501 0 moodle core\\task\\send_new_user_passwords_task 0 1613083981.6528000000 1613083981.6540000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:53:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00057101249694824 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24817 +1502 0 moodle core\\task\\send_failed_login_notifications_task 0 1613083981.6624000000 1613083981.6631000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:53:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24817 +1503 0 moodle core\\task\\legacy_plugin_cron_task 0 1613083981.6708000000 1613083981.7150000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:53:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.043620109558105 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24817 +1504 0 moodle core\\task\\grade_cron_task 0 1613083981.7235000000 1613083981.7267000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:53:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025699138641357 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24817 +1505 0 moodle core\\task\\completion_regular_task 0 1613083981.7351000000 1613083981.7604000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:53:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.02458381652832 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24817 +1506 0 moodle core\\task\\portfolio_cron_task 0 1613083981.7685000000 1613083981.7692000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:53:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.4822692871094E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24817 +1507 0 moodle core\\task\\plagiarism_cron_task 0 1613083981.7776000000 1613083981.7783000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:53:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.3869018554688E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24817 +1508 0 moodle core\\task\\calendar_cron_task 0 1613083981.7910000000 1613083981.7950000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:53:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.003389835357666 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24817 +1509 0 moodle core\\task\\blog_cron_task 0 1613083981.8033000000 1613083981.8074000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:53:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0035121440887451 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24817 +1510 0 moodle core\\task\\question_preview_cleanup_task 0 1613083981.8175000000 1613083981.8350000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:53:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016801118850708 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24817 +1511 0 moodle core\\task\\question_stats_cleanup_task 0 1613083981.8438000000 1613083981.8457000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:53:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012638568878174 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24817 +1512 0 mod_assign mod_assign\\task\\cron_task 0 1613083981.8583000000 1613083981.8908000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:53:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031588077545166 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24817 +1513 0 mod_forum mod_forum\\task\\cron_task 0 1613083981.9098000000 1613083981.9123000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:53:01. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0014770030975342 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24817 +1514 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613083981.9300000000 1613083981.9368000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:53:01. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0058748722076416 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24817 +1515 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613083981.9454000000 1613083981.9464000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:53:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.2029571533203E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24817 +1516 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613083981.9547000000 1613083981.9557000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:53:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.9168548583984E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24817 +1517 0 mod_workshop mod_workshop\\task\\cron_task 0 1613083981.9641000000 1613083981.9657000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:53:01. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.0006859302520752 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24817 +1518 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613083981.9735000000 1613083981.9745000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:53:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 0.00011396408081055 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24817 +1519 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613083981.9856000000 1613083981.9877000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:53:01. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014920234680176 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24817 +1520 0 tool_monitor tool_monitor\\task\\clean_events 0 1613083981.9961000000 1613083981.9968000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:53:01. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011992454528809 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24817 +1521 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613083982.0051000000 1613083982.0065000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:53:02. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00080490112304688 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24817 +1522 0 moodle core\\task\\session_cleanup_task 0 1613084041.1958000000 1613084041.2100000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:54:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011117935180664 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24845 +1523 0 moodle core\\task\\send_new_user_passwords_task 0 1613084041.2191000000 1613084041.2203000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:54:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00058603286743164 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24845 +1524 0 moodle core\\task\\send_failed_login_notifications_task 0 1613084041.2286000000 1613084041.2292000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:54:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24845 +1525 0 moodle core\\task\\legacy_plugin_cron_task 0 1613084041.2392000000 1613084041.2829000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:54:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.042989015579224 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24845 +1526 0 moodle core\\task\\grade_cron_task 0 1613084041.2920000000 1613084041.2951000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:54:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025348663330078 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24845 +1527 0 moodle core\\task\\completion_regular_task 0 1613084041.3036000000 1613084041.3288000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:54:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024603843688965 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24845 +1528 0 moodle core\\task\\portfolio_cron_task 0 1613084041.3372000000 1613084041.3379000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:54:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.3869018554688E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24845 +1529 0 moodle core\\task\\plagiarism_cron_task 0 1613084041.3466000000 1613084041.3473000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:54:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24845 +1530 0 moodle core\\task\\calendar_cron_task 0 1613084041.3602000000 1613084041.3642000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:54:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0033540725708008 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24845 +1531 0 moodle core\\task\\blog_cron_task 0 1613084041.3723000000 1613084041.3763000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:54:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0033628940582275 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24845 +1532 0 moodle core\\task\\question_preview_cleanup_task 0 1613084041.3842000000 1613084041.4012000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:54:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016406059265137 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24845 +1533 0 moodle core\\task\\question_stats_cleanup_task 0 1613084041.4094000000 1613084041.4113000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:54:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0012118816375732 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24845 +1534 0 mod_assign mod_assign\\task\\cron_task 0 1613084041.4237000000 1613084041.4557000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:54:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031143188476562 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24845 +1535 0 mod_forum mod_forum\\task\\cron_task 0 1613084041.4742000000 1613084041.4765000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:54:01. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00148606300354 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24845 +1536 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613084041.4941000000 1613084041.5010000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:54:01. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0059430599212646 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24845 +1537 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613084041.5091000000 1613084041.5101000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:54:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.8930130004883E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24845 +1538 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613084041.5180000000 1613084041.5189000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:54:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.702278137207E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24845 +1539 0 mod_workshop mod_workshop\\task\\cron_task 0 1613084041.5281000000 1613084041.5296000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:54:01. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00069212913513184 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24845 +1540 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613084041.5372000000 1613084041.5382000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:54:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.702278137207E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24845 +1541 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613084041.5485000000 1613084041.5504000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:54:01. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0013999938964844 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24845 +1542 0 tool_monitor tool_monitor\\task\\clean_events 0 1613084041.5588000000 1613084041.5595000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:54:01. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011396408081055 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24845 +1543 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613084041.5674000000 1613084041.5687000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:54:01. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00075507164001465 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24845 +1544 0 moodle core\\task\\badges_cron_task 0 1613084101.7604000000 1613084101.7713000000 1 0 0 Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 22:55:01. Current memory use 16.8MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0077810287475586 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n dev.derekmaxson.com 24863 +1545 0 moodle core\\task\\badges_message_task 0 1613084101.7803000000 1613084101.7816000000 1 0 0 Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 22:55:01. Current memory use 18MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00058197975158691 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n dev.derekmaxson.com 24863 +1546 0 mod_chat mod_chat\\task\\cron_task 0 1613084101.7935000000 1613084101.8026000000 2 2 0 Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 22:55:01. Current memory use 19MB.\n... used 4 dbqueries\n... used 0.0082619190216064 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n dev.derekmaxson.com 24863 +1547 0 mod_scorm mod_scorm\\task\\cron_task 0 1613084101.8106000000 1613084101.8292000000 0 0 0 Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 22:55:01. Current memory use 19.7MB.\n... used 0 dbqueries\n... used 0.017794132232666 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n dev.derekmaxson.com 24863 +1548 0 block_rss_client block_rss_client\\task\\refreshfeeds 0 1613084101.8416000000 1613084101.8504000000 3 0 0 Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 22:55:01. Current memory use 20.6MB.\n\n0 feeds refreshed (took 0.00078800000000001 seconds)\n... used 3 dbqueries\n... used 0.0081839561462402 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n dev.derekmaxson.com 24863 +1549 0 moodle core\\task\\session_cleanup_task 0 1613084101.8602000000 1613084101.8687000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:55:01. Current memory use 22.8MB.\n... used 19 dbqueries\n... used 0.0071640014648438 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24863 +1550 0 moodle core\\task\\send_new_user_passwords_task 0 1613084101.8769000000 1613084101.8781000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:55:01. Current memory use 23.1MB.\n... used 1 dbqueries\n... used 0.00059700012207031 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24863 +1551 0 moodle core\\task\\send_failed_login_notifications_task 0 1613084101.8866000000 1613084101.8873000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:55:01. Current memory use 23.1MB.\n... used 0 dbqueries\n... used 4.3869018554688E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24863 +1552 0 moodle core\\task\\legacy_plugin_cron_task 0 1613084101.8956000000 1613084101.9277000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:55:01. Current memory use 23.1MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.031533002853394 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24863 +1553 0 moodle core\\task\\grade_cron_task 0 1613084101.9364000000 1613084101.9395000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:55:01. Current memory use 26.5MB.\n... used 6 dbqueries\n... used 0.0025579929351807 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24863 +1554 0 moodle core\\task\\completion_regular_task 0 1613084101.9478000000 1613084101.9736000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:55:01. Current memory use 26.6MB.\n... used 18 dbqueries\n... used 0.025174140930176 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24863 +1555 0 moodle core\\task\\portfolio_cron_task 0 1613084101.9815000000 1613084101.9822000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:55:01. Current memory use 27MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24863 +1556 0 moodle core\\task\\plagiarism_cron_task 0 1613084101.9902000000 1613084101.9909000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:55:01. Current memory use 27MB.\n... used 0 dbqueries\n... used 4.4107437133789E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24863 +1557 0 moodle core\\task\\calendar_cron_task 0 1613084101.9987000000 1613084102.0029000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:55:01. Current memory use 27MB.\n... used 1 dbqueries\n... used 0.0035769939422607 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24863 +1558 0 moodle core\\task\\blog_cron_task 0 1613084102.0110000000 1613084102.0150000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:55:02. Current memory use 27.4MB.\n... used 2 dbqueries\n... used 0.0033822059631348 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24863 +1559 0 moodle core\\task\\question_preview_cleanup_task 0 1613084102.0229000000 1613084102.0396000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:55:02. Current memory use 27.7MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016080141067505 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24863 +1560 0 moodle core\\task\\question_stats_cleanup_task 0 1613084102.0477000000 1613084102.0495000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:55:02. Current memory use 29.4MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.0011780261993408 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24863 +1561 0 mod_assign mod_assign\\task\\cron_task 0 1613084102.0573000000 1613084102.0900000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:55:02. Current memory use 29.5MB.\n... used 3 dbqueries\n... used 0.031759023666382 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24863 +1562 0 mod_forum mod_forum\\task\\cron_task 0 1613084102.1095000000 1613084102.1120000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:55:02. Current memory use 33.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00148606300354 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24863 +1563 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613084102.1296000000 1613084102.1366000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:55:02. Current memory use 34.7MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0057499408721924 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24863 +1564 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613084102.1446000000 1613084102.1454000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:55:02. Current memory use 34.7MB.\n... used 0 dbqueries\n... used 8.6784362792969E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24863 +1565 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613084102.1531000000 1613084102.1539000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:55:02. Current memory use 34.7MB.\n... used 0 dbqueries\n... used 8.5115432739258E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24863 +1566 0 mod_workshop mod_workshop\\task\\cron_task 0 1613084102.1618000000 1613084102.1634000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:55:02. Current memory use 34.7MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00067305564880371 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24863 +1567 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613084102.1713000000 1613084102.1721000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:55:02. Current memory use 34.8MB.\n... used 0 dbqueries\n... used 8.6069107055664E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24863 +1568 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613084102.1830000000 1613084102.1851000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:55:02. Current memory use 34.5MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014688968658447 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24863 +1569 0 tool_monitor tool_monitor\\task\\clean_events 0 1613084102.1935000000 1613084102.1942000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:55:02. Current memory use 34.7MB.\n... used 0 dbqueries\n... used 0.00011110305786133 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24863 +1570 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613084102.2023000000 1613084102.2037000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:55:02. Current memory use 34.7MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00077009201049805 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24863 +1571 0 moodle core\\task\\session_cleanup_task 0 1613084161.3944000000 1613084161.4084000000 18 1 0 Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 22:56:01. Current memory use 16.8MB.\n... used 19 dbqueries\n... used 0.011051177978516 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n dev.derekmaxson.com 24882 +1572 0 moodle core\\task\\send_new_user_passwords_task 0 1613084161.4170000000 1613084161.4183000000 1 0 0 Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 22:56:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.00057220458984375 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n dev.derekmaxson.com 24882 +1573 0 moodle core\\task\\send_failed_login_notifications_task 0 1613084161.4262000000 1613084161.4269000000 0 0 0 Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 22:56:01. Current memory use 18MB.\n... used 0 dbqueries\n... used 4.3153762817383E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n dev.derekmaxson.com 24882 +1574 0 moodle core\\task\\legacy_plugin_cron_task 0 1613084161.4351000000 1613084161.4787000000 2 0 0 Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 22:56:01. Current memory use 18MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.042965173721313 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n dev.derekmaxson.com 24882 +1575 0 moodle core\\task\\grade_cron_task 0 1613084161.4873000000 1613084161.4905000000 6 0 0 Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 22:56:01. Current memory use 23MB.\n... used 6 dbqueries\n... used 0.0025560855865479 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n dev.derekmaxson.com 24882 +1576 0 moodle core\\task\\completion_regular_task 0 1613084161.4993000000 1613084161.5246000000 18 0 0 Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 22:56:01. Current memory use 23MB.\n... used 18 dbqueries\n... used 0.024685859680176 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n dev.derekmaxson.com 24882 +1577 0 moodle core\\task\\portfolio_cron_task 0 1613084161.5328000000 1613084161.5335000000 0 0 0 Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 22:56:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.5061111450195E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n dev.derekmaxson.com 24882 +1578 0 moodle core\\task\\plagiarism_cron_task 0 1613084161.5416000000 1613084161.5423000000 0 0 0 Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 22:56:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 4.1961669921875E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n dev.derekmaxson.com 24882 +1579 0 moodle core\\task\\calendar_cron_task 0 1613084161.5547000000 1613084161.5587000000 1 0 0 Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 22:56:01. Current memory use 23.9MB.\n... used 1 dbqueries\n... used 0.0032839775085449 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n dev.derekmaxson.com 24882 +1580 0 moodle core\\task\\blog_cron_task 0 1613084161.5668000000 1613084161.5708000000 1 1 0 Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 22:56:01. Current memory use 24.3MB.\n... used 2 dbqueries\n... used 0.0033299922943115 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n dev.derekmaxson.com 24882 +1581 0 moodle core\\task\\question_preview_cleanup_task 0 1613084161.5787000000 1613084161.5956000000 1 4 0 Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 22:56:01. Current memory use 24.6MB.\n\n Cleaning up old question previews...done.\n... used 5 dbqueries\n... used 0.016278982162476 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n dev.derekmaxson.com 24882 +1582 0 moodle core\\task\\question_stats_cleanup_task 0 1613084161.6039000000 1613084161.6058000000 1 3 0 Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 22:56:01. Current memory use 26.3MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.001183032989502 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n dev.derekmaxson.com 24882 +1583 0 mod_assign mod_assign\\task\\cron_task 0 1613084161.6182000000 1613084161.6503000000 3 0 0 Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 22:56:01. Current memory use 28.5MB.\n... used 3 dbqueries\n... used 0.031234979629517 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n dev.derekmaxson.com 24882 +1584 0 mod_forum mod_forum\\task\\cron_task 0 1613084161.6694000000 1613084161.6718000000 1 1 0 Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 22:56:01. Current memory use 32.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0015020370483398 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n dev.derekmaxson.com 24882 +1585 0 mod_quiz mod_quiz\\task\\update_overdue_attempts 0 1613084161.6893000000 1613084161.6961000000 3 0 0 Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 22:56:01. Current memory use 33.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 3 dbqueries\n... used 0.0059020519256592 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n dev.derekmaxson.com 24882 +1586 0 mod_quiz mod_quiz\\task\\legacy_quiz_reports_cron 0 1613084161.7042000000 1613084161.7051000000 0 0 0 Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 22:56:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 9.0837478637695E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n dev.derekmaxson.com 24882 +1587 0 mod_quiz mod_quiz\\task\\legacy_quiz_accessrules_cron 0 1613084161.7131000000 1613084161.7141000000 0 0 0 Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 22:56:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n dev.derekmaxson.com 24882 +1588 0 mod_workshop mod_workshop\\task\\cron_task 0 1613084161.7225000000 1613084161.7241000000 1 0 0 Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 22:56:01. Current memory use 33.6MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00069499015808105 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n dev.derekmaxson.com 24882 +1589 0 mod_workshop mod_workshop\\task\\legacy_workshop_allocation_cron 0 1613084161.7322000000 1613084161.7332000000 0 0 0 Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 22:56:01. Current memory use 33.6MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n dev.derekmaxson.com 24882 +1590 0 tool_messageinbound tool_messageinbound\\task\\pickup_task 0 1613084161.7446000000 1613084161.7466000000 0 0 0 Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 22:56:01. Current memory use 32.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014519691467285 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n dev.derekmaxson.com 24882 +1591 0 tool_monitor tool_monitor\\task\\clean_events 0 1613084161.7551000000 1613084161.7558000000 0 0 0 Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 22:56:01. Current memory use 32.8MB.\n... used 0 dbqueries\n... used 0.00011491775512695 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n dev.derekmaxson.com 24882 +1592 0 workshopallocation_scheduled workshopallocation_scheduled\\task\\cron_task 0 1613084161.7640000000 1613084161.7654000000 1 0 0 Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 22:56:01. Current memory use 32.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00076985359191895 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n dev.derekmaxson.com 24882 \. @@ -37959,7 +38551,7 @@ COPY public.mdl_task_log (id, type, component, classname, userid, timestart, tim -- Name: mdl_task_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_task_log_id_seq', 28, true); +SELECT pg_catalog.setval('public.mdl_task_log_id_seq', 1592, true); -- @@ -37967,105 +38559,105 @@ SELECT pg_catalog.setval('public.mdl_task_log_id_seq', 28, true); -- COPY public.mdl_task_scheduled (id, component, classname, lastruntime, nextruntime, blocking, minute, hour, day, month, dayofweek, faildelay, customised, disabled, timestarted, hostname, pid) FROM stdin; -2 moodle \\core\\task\\delete_unconfirmed_users_task 0 1612890000 0 0 * * * * 0 0 0 \N \N \N -3 moodle \\core\\task\\delete_incomplete_users_task 0 1612890300 0 5 * * * * 0 0 0 \N \N \N -4 moodle \\core\\task\\backup_cleanup_task 0 1612890600 0 10 * * * * 0 0 0 \N \N \N -5 moodle \\core\\task\\tag_cron_task 0 1612926240 0 4 3 * * * 0 0 0 \N \N \N -6 moodle \\core\\task\\context_cleanup_task 0 1612891500 0 25 * * * * 0 0 0 \N \N \N -7 moodle \\core\\task\\cache_cleanup_task 0 1612891800 0 30 * * * * 0 0 0 \N \N \N -8 moodle \\core\\task\\messaging_cleanup_task 0 1612892100 0 35 * * * * 0 0 0 \N \N \N -11 moodle \\core\\task\\create_contexts_task 0 1612915200 1 0 0 * * * 0 0 0 \N \N \N -14 moodle \\core\\task\\grade_history_cleanup_task 0 1612917900 0 * 0 * * * 0 0 0 \N \N \N -16 moodle \\core\\task\\completion_daily_task 0 1612926540 0 9 3 * * * 0 0 0 \N \N \N 23 moodle \\core\\task\\registration_cron_task 0 1613398560 0 16 14 * * 1 0 0 0 \N \N \N -24 moodle \\core\\task\\check_for_updates_task 0 1612893600 0 0 */2 * * * 0 0 0 \N \N \N -25 moodle \\core\\task\\cache_cron_task 0 1612889400 0 50 * * * * 0 0 0 \N \N \N -26 moodle \\core\\task\\automated_backup_task 0 1612889400 0 50 * * * * 0 0 0 \N \N \N -29 moodle \\core\\task\\file_temp_cleanup_task 0 1612896900 0 55 */6 * * * 0 0 0 \N \N \N -30 moodle \\core\\task\\file_trash_cleanup_task 0 1612896900 0 55 */6 * * * 0 0 0 \N \N \N -31 moodle \\core\\task\\search_index_task 0 1612890000 0 */30 * * * * 0 0 0 \N \N \N -32 moodle \\core\\task\\search_optimize_task 0 1612916100 0 15 */12 * * * 0 0 0 \N \N \N -33 moodle \\core\\task\\stats_cron_task 0 1612915200 0 0 0 * * * 0 0 0 \N \N \N -34 moodle \\core\\task\\password_reset_cleanup_task 0 1612893600 0 0 */6 * * * 0 0 0 \N \N \N -35 moodle \\core\\task\\complete_plans_task 0 1612891380 0 23 * * * * 0 0 0 \N \N \N -36 moodle \\core\\task\\sync_plans_from_template_cohorts_task 0 1612890660 0 11 * * * * 0 0 0 \N \N \N -37 moodle \\core_files\\task\\conversion_cleanup_task 0 1612923240 0 14 2 * * * 0 0 0 \N \N \N -38 moodle \\core\\oauth2\\refresh_system_tokens_task 0 1612891800 0 30 * * * * 0 0 0 \N \N \N -39 moodle \\core\\task\\analytics_cleanup_task 0 1612892520 0 42 * * * * 0 0 0 \N \N \N -40 moodle \\core\\task\\task_log_cleanup_task 0 1612901220 0 7 20 * * * 0 0 0 \N \N \N 41 moodle \\core\\task\\h5p_get_content_types_task 0 1614607680 0 8 14 1 * * 0 0 0 \N \N \N -42 moodle \\core\\task\\antivirus_cleanup_task 0 1612915800 0 10 0 * * * 0 0 0 \N \N \N -43 qtype_random \\qtype_random\\task\\remove_unused_questions 0 1612890300 0 5 * * * * 0 0 0 \N \N \N -47 mod_lti \\mod_lti\\task\\clean_access_tokens 0 1612969560 0 6 15 * * * 0 0 0 \N \N \N 54 auth_cas \\auth_cas\\task\\sync_task 0 1612915200 0 0 0 * * * 0 0 1 \N \N \N 55 auth_db \\auth_db\\task\\sync_users 0 1612912020 0 7 23 * * * 0 0 1 \N \N \N 56 auth_ldap \\auth_ldap\\task\\sync_roles 0 1612915200 0 0 0 * * * 0 0 1 \N \N \N 57 auth_ldap \\auth_ldap\\task\\sync_task 0 1612915200 0 0 0 * * * 0 0 1 \N \N \N 58 auth_mnet \\auth_mnet\\task\\cron_task 0 1612889100 0 * * * * * 0 0 0 \N \N \N 59 enrol_category \\enrol_category\\task\\enrol_category_sync 0 1612889100 0 * * * * * 0 0 0 \N \N \N -9 moodle \\core\\task\\send_new_user_passwords_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N -10 moodle \\core\\task\\send_failed_login_notifications_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N -12 moodle \\core\\task\\legacy_plugin_cron_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N -13 moodle \\core\\task\\grade_cron_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N -15 moodle \\core\\task\\completion_regular_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N -17 moodle \\core\\task\\portfolio_cron_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N -18 moodle \\core\\task\\plagiarism_cron_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N -19 moodle \\core\\task\\calendar_cron_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N -20 moodle \\core\\task\\blog_cron_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N -21 moodle \\core\\task\\question_preview_cleanup_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N -22 moodle \\core\\task\\question_stats_cleanup_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N -27 moodle \\core\\task\\badges_cron_task 1612889162 1612889400 0 */5 * * * * 0 0 0 \N \N \N -28 moodle \\core\\task\\badges_message_task 1612889162 1612889400 0 */5 * * * * 0 0 0 \N \N \N -44 mod_assign \\mod_assign\\task\\cron_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N -46 mod_forum \\mod_forum\\task\\cron_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N -48 mod_quiz \\mod_quiz\\task\\update_overdue_attempts 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N -49 mod_quiz \\mod_quiz\\task\\legacy_quiz_reports_cron 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N -50 mod_quiz \\mod_quiz\\task\\legacy_quiz_accessrules_cron 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N -51 mod_scorm \\mod_scorm\\task\\cron_task 1612889162 1612889400 0 */5 * * * * 0 0 0 \N \N \N -52 mod_workshop \\mod_workshop\\task\\cron_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N -53 mod_workshop \\mod_workshop\\task\\legacy_workshop_allocation_cron 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N -60 enrol_cohort \\enrol_cohort\\task\\enrol_cohort_sync 0 1612890840 0 14 * * * * 0 0 0 \N \N \N 61 enrol_database \\enrol_database\\task\\sync_enrolments 0 1612973400 0 10 16 * * * 0 0 1 \N \N \N +5 moodle \\core\\task\\tag_cron_task 1613080022 1613099040 0 4 3 * * * 0 0 0 \N \N \N +11 moodle \\core\\task\\create_contexts_task 1613080022 1613088000 1 0 0 * * * 0 0 0 \N \N \N +16 moodle \\core\\task\\completion_daily_task 1613080022 1613099340 0 9 3 * * * 0 0 0 \N \N \N +29 moodle \\core\\task\\file_temp_cleanup_task 1613080022 1613091300 0 55 */6 * * * 0 0 0 \N \N \N +30 moodle \\core\\task\\file_trash_cleanup_task 1613080022 1613091300 0 55 */6 * * * 0 0 0 \N \N \N +32 moodle \\core\\task\\search_optimize_task 1613080022 1613088900 0 15 */12 * * * 0 0 0 \N \N \N +33 moodle \\core\\task\\stats_cron_task 1613080022 1613088000 0 0 0 * * * 0 0 0 \N \N \N +34 moodle \\core\\task\\password_reset_cleanup_task 1613080022 1613088000 0 0 */6 * * * 0 0 0 \N \N \N +37 moodle \\core_files\\task\\conversion_cleanup_task 1613080022 1613096040 0 14 2 * * * 0 0 0 \N \N \N +40 moodle \\core\\task\\task_log_cleanup_task 1613080022 1613160420 0 7 20 * * * 0 0 0 \N \N \N +42 moodle \\core\\task\\antivirus_cleanup_task 1613080022 1613088600 0 10 0 * * * 0 0 0 \N \N \N +47 mod_lti \\mod_lti\\task\\clean_access_tokens 1613080022 1613142360 0 6 15 * * * 0 0 0 \N \N \N 62 enrol_flatfile \\enrol_flatfile\\task\\flatfile_sync_task 0 1612890900 0 15 * * * * 0 0 0 \N \N \N 63 enrol_imsenterprise \\enrol_imsenterprise\\task\\cron_task 0 1612890600 0 10 * * * * 0 0 0 \N \N \N 64 enrol_ldap \\enrol_ldap\\task\\sync_enrolments 0 1612894560 0 16 18 * * * 0 0 1 \N \N \N +24 moodle \\core\\task\\check_for_updates_task 1613081101 1613088000 0 0 */2 * * * 0 0 0 \N \N \N +31 moodle \\core\\task\\search_index_task 1613082602 1613084400 0 */30 * * * * 0 0 0 \N \N \N +27 moodle \\core\\task\\badges_cron_task 1613084101 1613084400 0 */5 * * * * 0 0 0 \N \N \N +28 moodle \\core\\task\\badges_message_task 1613084101 1613084400 0 */5 * * * * 0 0 0 \N \N \N +51 mod_scorm \\mod_scorm\\task\\cron_task 1613084101 1613084400 0 */5 * * * * 0 0 0 \N \N \N +9 moodle \\core\\task\\send_new_user_passwords_task 1613084161 1613084220 0 * * * * * 0 0 0 \N \N \N +10 moodle \\core\\task\\send_failed_login_notifications_task 1613084161 1613084220 0 * * * * * 0 0 0 \N \N \N +12 moodle \\core\\task\\legacy_plugin_cron_task 1613084161 1613084220 0 * * * * * 0 0 0 \N \N \N +13 moodle \\core\\task\\grade_cron_task 1613084161 1613084220 0 * * * * * 0 0 0 \N \N \N +15 moodle \\core\\task\\completion_regular_task 1613084161 1613084220 0 * * * * * 0 0 0 \N \N \N +17 moodle \\core\\task\\portfolio_cron_task 1613084161 1613084220 0 * * * * * 0 0 0 \N \N \N +18 moodle \\core\\task\\plagiarism_cron_task 1613084161 1613084220 0 * * * * * 0 0 0 \N \N \N +19 moodle \\core\\task\\calendar_cron_task 1613084161 1613084220 0 * * * * * 0 0 0 \N \N \N +20 moodle \\core\\task\\blog_cron_task 1613084161 1613084220 0 * * * * * 0 0 0 \N \N \N +21 moodle \\core\\task\\question_preview_cleanup_task 1613084161 1613084220 0 * * * * * 0 0 0 \N \N \N +50 mod_quiz \\mod_quiz\\task\\legacy_quiz_accessrules_cron 1613084161 1613084220 0 * * * * * 0 0 0 \N \N \N +52 mod_workshop \\mod_workshop\\task\\cron_task 1613084161 1613084220 0 * * * * * 0 0 0 \N \N \N +53 mod_workshop \\mod_workshop\\task\\legacy_workshop_allocation_cron 1613084161 1613084220 0 * * * * * 0 0 0 \N \N \N +25 moodle \\core\\task\\cache_cron_task 1613083801 1613087400 0 50 * * * * 0 0 0 \N \N \N +4 moodle \\core\\task\\backup_cleanup_task 1613081401 1613085000 0 10 * * * * 0 0 0 \N \N \N +36 moodle \\core\\task\\sync_plans_from_template_cohorts_task 1613081461 1613085060 0 11 * * * * 0 0 0 \N \N \N +60 enrol_cohort \\enrol_cohort\\task\\enrol_cohort_sync 1613081641 1613085240 0 14 * * * * 0 0 0 \N \N \N +35 moodle \\core\\task\\complete_plans_task 1613082181 1613085780 0 23 * * * * 0 0 0 \N \N \N +6 moodle \\core\\task\\context_cleanup_task 1613082301 1613085900 0 25 * * * * 0 0 0 \N \N \N +7 moodle \\core\\task\\cache_cleanup_task 1613082602 1613086200 0 30 * * * * 0 0 0 \N \N \N +38 moodle \\core\\oauth2\\refresh_system_tokens_task 1613082602 1613086200 0 30 * * * * 0 0 0 \N \N \N +8 moodle \\core\\task\\messaging_cleanup_task 1613082901 1613086500 0 35 * * * * 0 0 0 \N \N \N +39 moodle \\core\\task\\analytics_cleanup_task 1613083321 1613086920 0 42 * * * * 0 0 0 \N \N \N +26 moodle \\core\\task\\automated_backup_task 1613083801 1613087400 0 50 * * * * 0 0 0 \N \N \N 65 enrol_lti \\enrol_lti\\task\\sync_grades 0 1612890000 0 */30 * * * * 0 0 0 \N \N \N 66 enrol_lti \\enrol_lti\\task\\sync_members 0 1612890000 0 */30 * * * * 0 0 0 \N \N \N -67 enrol_manual \\enrol_manual\\task\\sync_enrolments 0 1612889400 0 */10 * * * * 0 0 0 \N \N \N -68 enrol_manual \\enrol_manual\\task\\send_expiry_notifications 0 1612889400 0 */10 * * * * 0 0 0 \N \N \N 69 enrol_meta \\enrol_meta\\task\\enrol_meta_sync 0 1612890060 0 1 * * * * 0 0 0 \N \N \N 70 enrol_paypal \\enrol_paypal\\task\\process_expirations 0 1612889100 0 * * * * * 0 0 0 \N \N \N -71 enrol_self \\enrol_self\\task\\sync_enrolments 0 1612889400 0 */10 * * * * 0 0 0 \N \N \N -72 enrol_self \\enrol_self\\task\\send_expiry_notifications 0 1612889400 0 */10 * * * * 0 0 0 \N \N \N -73 message_email \\message_email\\task\\send_email_task 0 1612908000 0 0 22 * * * 0 0 0 \N \N \N -74 block_recent_activity \\block_recent_activity\\task\\cleanup 0 1612909320 0 22 22 * * * 0 0 0 \N \N \N 76 editor_atto \\editor_atto\\task\\autosave_cleanup_task 0 1613368920 0 2 6 * * 1 0 0 0 \N \N \N 77 repository_dropbox \\repository_dropbox\\task\\cron_task 0 1612889100 0 * * * * * 0 0 0 \N \N \N 78 repository_filesystem \\repository_filesystem\\task\\cron_task 0 1612889100 0 * * * * * 0 0 0 \N \N \N 79 repository_onedrive \\repository_onedrive\\remove_temp_access_task 0 1613416080 0 8 19 * * 1 0 0 0 \N \N \N -80 tool_analytics \\tool_analytics\\task\\train_models 0 1612911600 0 0 23 * * * 0 0 0 \N \N \N -81 tool_analytics \\tool_analytics\\task\\predict_models 0 1612904400 0 0 21 * * * 0 0 0 \N \N \N -82 tool_cohortroles \\tool_cohortroles\\task\\cohort_role_sync 0 1612890420 0 7 * * * * 0 0 0 \N \N \N -83 tool_dataprivacy \\tool_dataprivacy\\task\\expired_retention_period 0 1612940400 0 0 7 * * * 0 0 0 \N \N \N -84 tool_dataprivacy \\tool_dataprivacy\\task\\delete_expired_contexts 0 1612936800 0 0 6 * * * 0 0 0 \N \N \N -85 tool_dataprivacy \\tool_dataprivacy\\task\\delete_expired_requests 0 1612962900 0 15 13 * * * 0 0 0 \N \N \N 86 tool_dataprivacy \\tool_dataprivacy\\task\\delete_existing_deleted_users 0 1612973580 0 13 16 * * * 0 0 1 \N \N \N -87 tool_langimport \\tool_langimport\\task\\update_langpacks_task 0 1612930860 0 21 4 * * * 0 0 0 \N \N \N -89 tool_messageinbound \\tool_messageinbound\\task\\cleanup_task 0 1612922100 0 55 1 * * * 0 0 0 \N \N \N -91 tool_monitor \\tool_monitor\\task\\check_subscriptions 0 1612922640 0 4 2 * * * 0 0 0 \N \N \N -92 tool_recyclebin \\tool_recyclebin\\task\\cleanup_course_bin 0 1612890000 0 */30 * * * * 0 0 0 \N \N \N -93 tool_recyclebin \\tool_recyclebin\\task\\cleanup_category_bin 0 1612890000 0 */30 * * * * 0 0 0 \N \N \N -95 ltiservice_gradebookservices \\ltiservice_gradebookservices\\task\\cleanup_task 0 1612927020 0 17 3 * * * 0 0 0 \N \N \N -96 quiz_statistics \\quiz_statistics\\task\\quiz_statistics_cleanup 0 1612902060 0 21 */5 * * * 0 0 0 \N \N \N 98 logstore_legacy \\logstore_legacy\\task\\cleanup_task 0 1612933980 0 13 5 * * * 0 0 0 \N \N \N -99 logstore_standard \\logstore_standard\\task\\cleanup_task 0 1612930320 0 12 4 * * * 0 0 0 \N \N \N -1 moodle \\core\\task\\session_cleanup_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N -45 mod_chat \\mod_chat\\task\\cron_task 1612889162 1612889400 0 */5 * * * * 0 0 0 \N \N \N -90 tool_monitor \\tool_monitor\\task\\clean_events 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N -75 block_rss_client \\block_rss_client\\task\\refreshfeeds 1612889162 1612889400 0 */5 * * * * 0 0 0 \N \N \N -88 tool_messageinbound \\tool_messageinbound\\task\\pickup_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N -94 assignfeedback_editpdf \\assignfeedback_editpdf\\task\\convert_submissions 1612889162 1612890000 0 */15 * * * * 0 0 0 \N \N \N -97 workshopallocation_scheduled \\workshopallocation_scheduled\\task\\cron_task 1612889162 1612889220 0 * * * * * 0 0 0 \N \N \N +14 moodle \\core\\task\\grade_history_cleanup_task 1613080022 1613090880 0 * 0 * * * 0 0 0 \N \N \N +83 tool_dataprivacy \\tool_dataprivacy\\task\\expired_retention_period 1613080022 1613113200 0 0 7 * * * 0 0 0 \N \N \N +80 tool_analytics \\tool_analytics\\task\\train_models 1613080022 1613084400 0 0 23 * * * 0 0 0 \N \N \N +87 tool_langimport \\tool_langimport\\task\\update_langpacks_task 1613080024 1613103660 0 21 4 * * * 0 0 0 \N \N \N +81 tool_analytics \\tool_analytics\\task\\predict_models 1613080022 1613163600 0 0 21 * * * 0 0 0 \N \N \N +84 tool_dataprivacy \\tool_dataprivacy\\task\\delete_expired_contexts 1613080022 1613109600 0 0 6 * * * 0 0 0 \N \N \N +89 tool_messageinbound \\tool_messageinbound\\task\\cleanup_task 1613080024 1613094900 0 55 1 * * * 0 0 0 \N \N \N +85 tool_dataprivacy \\tool_dataprivacy\\task\\delete_expired_requests 1613080022 1613135700 0 15 13 * * * 0 0 0 \N \N \N +96 quiz_statistics \\quiz_statistics\\task\\quiz_statistics_cleanup 1613080024 1613089260 0 21 */5 * * * 0 0 0 \N \N \N +91 tool_monitor \\tool_monitor\\task\\check_subscriptions 1613080024 1613095440 0 4 2 * * * 0 0 0 \N \N \N +99 logstore_standard \\logstore_standard\\task\\cleanup_task 1613080024 1613103120 0 12 4 * * * 0 0 0 \N \N \N +95 ltiservice_gradebookservices \\ltiservice_gradebookservices\\task\\cleanup_task 1613080024 1613099820 0 17 3 * * * 0 0 0 \N \N \N +93 tool_recyclebin \\tool_recyclebin\\task\\cleanup_category_bin 1613082602 1613084400 0 */30 * * * * 0 0 0 \N \N \N +2 moodle \\core\\task\\delete_unconfirmed_users_task 1613081101 1613084400 0 0 * * * * 0 0 0 \N \N \N +3 moodle \\core\\task\\delete_incomplete_users_task 1613081101 1613084700 0 5 * * * * 0 0 0 \N \N \N +43 qtype_random \\qtype_random\\task\\remove_unused_questions 1613081101 1613084700 0 5 * * * * 0 0 0 \N \N \N +88 tool_messageinbound \\tool_messageinbound\\task\\pickup_task 1613084161 1613084220 0 * * * * * 0 0 0 \N \N \N +73 message_email \\message_email\\task\\send_email_task 1613081101 1613167200 0 0 22 * * * 0 0 0 \N \N \N +1 moodle \\core\\task\\session_cleanup_task 1613084161 1613084220 0 * * * * * 0 0 0 \N \N \N +71 enrol_self \\enrol_self\\task\\sync_enrolments 1613083801 1613084400 0 */10 * * * * 0 0 0 \N \N \N +46 mod_forum \\mod_forum\\task\\cron_task 1613084161 1613084220 0 * * * * * 0 0 0 \N \N \N +67 enrol_manual \\enrol_manual\\task\\sync_enrolments 1613083801 1613084400 0 */10 * * * * 0 0 0 \N \N \N +82 tool_cohortroles \\tool_cohortroles\\task\\cohort_role_sync 1613081221 1613084820 0 7 * * * * 0 0 0 \N \N \N +45 mod_chat \\mod_chat\\task\\cron_task 1613084101 1613084400 0 */5 * * * * 0 0 0 \N \N \N +22 moodle \\core\\task\\question_stats_cleanup_task 1613084161 1613084220 0 * * * * * 0 0 0 \N \N \N +48 mod_quiz \\mod_quiz\\task\\update_overdue_attempts 1613084161 1613084220 0 * * * * * 0 0 0 \N \N \N +74 block_recent_activity \\block_recent_activity\\task\\cleanup 1613082122 1613168520 0 22 22 * * * 0 0 0 \N \N \N +72 enrol_self \\enrol_self\\task\\send_expiry_notifications 1613083801 1613084400 0 */10 * * * * 0 0 0 \N \N \N +94 assignfeedback_editpdf \\assignfeedback_editpdf\\task\\convert_submissions 1613083501 1613084400 0 */15 * * * * 0 0 0 \N \N \N +92 tool_recyclebin \\tool_recyclebin\\task\\cleanup_course_bin 1613082602 1613084400 0 */30 * * * * 0 0 0 \N \N \N +97 workshopallocation_scheduled \\workshopallocation_scheduled\\task\\cron_task 1613084161 1613084220 0 * * * * * 0 0 0 \N \N \N +68 enrol_manual \\enrol_manual\\task\\send_expiry_notifications 1613083801 1613084400 0 */10 * * * * 0 0 0 \N \N \N +44 mod_assign \\mod_assign\\task\\cron_task 1613084161 1613084220 0 * * * * * 0 0 0 \N \N \N +75 block_rss_client \\block_rss_client\\task\\refreshfeeds 1613084101 1613084400 0 */5 * * * * 0 0 0 \N \N \N +90 tool_monitor \\tool_monitor\\task\\clean_events 1613084161 1613084220 0 * * * * * 0 0 0 \N \N \N +49 mod_quiz \\mod_quiz\\task\\legacy_quiz_reports_cron 1613084161 1613084220 0 * * * * * 0 0 0 \N \N \N \. @@ -39670,9 +40262,9 @@ SELECT pg_catalog.setval('public.mdl_url_id_seq', 1, false); -- COPY public.mdl_user (id, auth, confirmed, policyagreed, deleted, suspended, mnethostid, username, password, idnumber, firstname, lastname, email, emailstop, icq, skype, yahoo, aim, msn, phone1, phone2, institution, department, address, city, country, lang, calendartype, theme, timezone, firstaccess, lastaccess, lastlogin, currentlogin, lastip, secret, picture, url, description, descriptionformat, mailformat, maildigest, maildisplay, autosubscribe, trackforums, timecreated, timemodified, trustbitmask, imagealt, lastnamephonetic, firstnamephonetic, middlename, alternatename, moodlenetprofile) FROM stdin; -1 manual 1 0 0 0 1 guest $2y$10$kUowCQcP6CK4rthRvesKDO.QVRXnUfgAKl3I/fvAJv.zGltjWnDSq Guest user root@localhost 0 en gregorian 99 0 0 0 0 0 This user is a special user that allows read-only access to some courses. 1 1 0 2 1 0 0 1612889053 0 \N \N \N \N \N \N -2 manual 1 0 0 0 1 admin $2y$10$75u/DYN/ajTm7NobTnIkE.wFwnZBpN1bnd8L0nSnh9ZJGLyRKFBLu Admin User admin@email.com 0 en gregorian 99 1612889108 1612889174 0 1612889108 67.182.30.218 0 1 1 0 0 1 0 0 1612889141 0 \N -3 manual 1 0 0 0 1 user $2y$10$zo7Pb0Z.ki5s.X63jbgJlOEN6uVvQOUihe4CGrJz0eUhlAM.He6iG User User user@email.com 0 en gregorian 99 0 0 0 0 0 1 1 0 0 1 0 1612889205 1612889205 0 +1 manual 1 0 0 0 1 guest $2y$10$kUowCQcP6CK4rthRvesKDO.QVRXnUfgAKl3I/fvAJv.zGltjWnDSq Guest user guest@email.com 0 en gregorian 99 0 0 0 0 0 This user is a special user that allows read-only access to some courses. 1 1 0 2 1 0 0 1612889053 0 \N \N \N \N \N \N +3 manual 1 0 0 0 1 user $2y$10$zo7Pb0Z.ki5s.X63jbgJlOEN6uVvQOUihe4CGrJz0eUhlAM.He6iG User User user@email.com 0 en gregorian 99 1613080106 1613081315 0 1613080106 67.182.30.218 0 1 1 0 0 1 0 1612889205 1612889205 0 +2 manual 1 0 0 0 1 admin $2y$10$75u/DYN/ajTm7NobTnIkE.wFwnZBpN1bnd8L0nSnh9ZJGLyRKFBLu Admin User admin@email.com 0 en gregorian 99 1612889108 1613084183 1613080121 1613081196 67.182.30.218 0 1 1 0 0 1 0 0 1612889141 0 \N \. @@ -39681,6 +40273,7 @@ COPY public.mdl_user (id, auth, confirmed, policyagreed, deleted, suspended, mne -- COPY public.mdl_user_devices (id, userid, appid, name, model, platform, version, pushid, uuid, timecreated, timemodified) FROM stdin; +1 3 com.moodle.moodlemobile Apple iPhone11,8 iOS-fcm 14.4 dF7UA2thT4c:APA91bF12YAGeJZ4ITdhf8MovgkHlmOcdGO_xUe1cutQlZoWRda-P4MuBaDbzGI4KL0ftjvceiqB5h9Dud-oaIla4BbxeNfsSROd8GwSARXHPPETPJ898bQUSOL8E8surqnzVfsFtib3 11497743-23C7-42A5-9265-9C489CF9222B 1613081314 1613081314 \. @@ -39688,7 +40281,7 @@ COPY public.mdl_user_devices (id, userid, appid, name, model, platform, version, -- Name: mdl_user_devices_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_user_devices_id_seq', 1, false); +SELECT pg_catalog.setval('public.mdl_user_devices_id_seq', 1, true); -- @@ -39815,6 +40408,7 @@ COPY public.mdl_user_preferences (id, userid, name, value) FROM stdin; 5 3 auth_forcepasswordchange 0 6 3 email_bounce_count 1 7 3 email_send_count 1 +8 3 core_message_migrate_data 1 \. @@ -39822,7 +40416,7 @@ COPY public.mdl_user_preferences (id, userid, name, value) FROM stdin; -- Name: mdl_user_preferences_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_user_preferences_id_seq', 7, true); +SELECT pg_catalog.setval('public.mdl_user_preferences_id_seq', 8, true); -- @@ -39830,6 +40424,7 @@ SELECT pg_catalog.setval('public.mdl_user_preferences_id_seq', 7, true); -- COPY public.mdl_user_private_key (id, script, value, userid, instance, iprestriction, validuntil, timecreated) FROM stdin; +1 core_files 56451189e253534fbc8e9d7d5b2e8253 3 \N \N \N 1613081313 \. @@ -39837,7 +40432,7 @@ COPY public.mdl_user_private_key (id, script, value, userid, instance, iprestric -- Name: mdl_user_private_key_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_user_private_key_id_seq', 1, false); +SELECT pg_catalog.setval('public.mdl_user_private_key_id_seq', 1, true); -- From 17c4b89c64651830c3e512ed636b26a18b416419 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 15 Feb 2021 15:57:08 -0800 Subject: [PATCH 052/129] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7faf2343..5f9b18c2 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ Summary Of Changes: * ConnectBox Ansible roles are updated to build ConnectBox with Moodle, PHP and PostgreSQL * Refer to Relay Trust Moodle Repo for Documentation Of Changes * Default Moodle PostgreSQL database is located in this repo under ansible/roles/ansible-postgresql/templates/ +* Legacy Connectbox File Serving is now at {{{hostname}}}.cb such that Moodle is http://connectbox and Admin is http://connectbox.cb/admin * (There will be more as this gets built out) # ConnectBox From c2864de9c925513d35594aa23d0055bf15abc5cc Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Fri, 26 Feb 2021 07:27:36 -0800 Subject: [PATCH 053/129] Update .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index f9f436c1..2de10e4d 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ ansible/inventory-cbpi ansible/inventory-aws ansible/inventory-cb ansible/inventory-cbMaster +ansible/inventory-brianward From 7850e8f0277b1fcdf7df706e913752377f1a1869 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Fri, 26 Feb 2021 07:27:49 -0800 Subject: [PATCH 054/129] Set cron to every 15 minutes --- ansible/roles/moodle/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml index d2c0b6bf..51ec6d3e 100644 --- a/ansible/roles/moodle/tasks/main.yml +++ b/ansible/roles/moodle/tasks/main.yml @@ -73,7 +73,7 @@ - name: Setup Moodle's Cron To Run Every Minute as Per Moodle ansible.builtin.cron: name: "moodle cron" - minute: "*" + minute: "1,16,31,46" hour: "*" user: www-data job: "/usr/bin/php /var/www/moodle/admin/cli/cron.php >/dev/null" From 6c0f184d7711eca5c712f1c63bda8708cea0d7e2 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 22 Mar 2021 14:28:12 -0700 Subject: [PATCH 055/129] Fix some overwrite_database issues --- ansible/roles/ansible-postgresql/tasks/main.yml | 4 +++- ansible/roles/image-preparation/defaults/main.yml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ansible/roles/ansible-postgresql/tasks/main.yml b/ansible/roles/ansible-postgresql/tasks/main.yml index 9d069562..c051de20 100644 --- a/ansible/roles/ansible-postgresql/tasks/main.yml +++ b/ansible/roles/ansible-postgresql/tasks/main.yml @@ -105,7 +105,9 @@ - debug: msg="Build Database? {{buildDatabase.rc}}" -- include_tasks: overwrite.yml +- debug: msg="Overwrite Database? {{overwrite_database}}" + +- include_tasks: overwrite.yml when: buildDatabase.rc > 0 or overwrite_database - name: Ensure PostgreSQL is running diff --git a/ansible/roles/image-preparation/defaults/main.yml b/ansible/roles/image-preparation/defaults/main.yml index 54558f76..f7732fe8 100644 --- a/ansible/roles/image-preparation/defaults/main.yml +++ b/ansible/roles/image-preparation/defaults/main.yml @@ -1,3 +1,3 @@ --- shutdown_in_image_preparation: True -overwrite_database: True +overwrite_database: false From 93a8d64115606d29597e285daaaa6886d3ce9c33 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 22 Mar 2021 14:28:24 -0700 Subject: [PATCH 056/129] Add from_rocketchat field --- .../ansible-postgresql/templates/moodle_database_template.dump | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump index a8442b00..2575db62 100644 --- a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump +++ b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump @@ -10825,7 +10825,8 @@ CREATE TABLE public.mdl_message ( timeusertodeleted bigint DEFAULT 0 NOT NULL, component character varying(100), eventtype character varying(100), - customdata text + customdata text, + from_rocketchat smallint DEFAULT 0 ); From 1b7f7fcc8d89b0c2963bb1509f02e63870baa902 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 22 Mar 2021 14:28:44 -0700 Subject: [PATCH 057/129] WHen AWS, don't setup RAM drive --- ansible/roles/moodle/tasks/main.yml | 1 + ansible/site.yml | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml index 51ec6d3e..482108d1 100644 --- a/ansible/roles/moodle/tasks/main.yml +++ b/ansible/roles/moodle/tasks/main.yml @@ -33,6 +33,7 @@ mode: 0775 - name: configure temporary storage for Moodle cache + when: not aws_instance mount: path: '{{ item.name }}' src: 'tmpfs' diff --git a/ansible/site.yml b/ansible/site.yml index e807a842..938f977f 100644 --- a/ansible/site.yml +++ b/ansible/site.yml @@ -24,6 +24,10 @@ stat: path: "/etc/armbian-release" register: armbian_release_file + - name: Check for AWS + stat: + path: "/usr/bin/aws" + register: aws_instance - name: Include Armbian specific variables include_vars: "group_vars/armbian" when: armbian_file.stat.exists == True or armbian_release_file.stat.exists == True From 9df527d9361ac8d43fbd1b03485f11db1613bbd1 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 24 Mar 2021 07:00:11 -0700 Subject: [PATCH 058/129] Add from_rocketchat field to mdl_messages table --- .../templates/moodle_database_template.dump | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump index 2575db62..cc6a034a 100644 --- a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump +++ b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump @@ -10825,8 +10825,7 @@ CREATE TABLE public.mdl_message ( timeusertodeleted bigint DEFAULT 0 NOT NULL, component character varying(100), eventtype character varying(100), - customdata text, - from_rocketchat smallint DEFAULT 0 + customdata text ); @@ -11611,7 +11610,8 @@ CREATE TABLE public.mdl_messages ( smallmessage text, timecreated bigint NOT NULL, fullmessagetrust smallint DEFAULT 0 NOT NULL, - customdata text + customdata text, + from_rocketchat smallint DEFAULT 0 ); From 558aba8daf6bf72cb6dc2029b24de2b3abab9813 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Sat, 27 Mar 2021 11:38:54 -0700 Subject: [PATCH 059/129] Add Buster repo for PHP --- ansible/roles/php/tasks/main.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/ansible/roles/php/tasks/main.yml b/ansible/roles/php/tasks/main.yml index ca65c470..ee6d2c4d 100644 --- a/ansible/roles/php/tasks/main.yml +++ b/ansible/roles/php/tasks/main.yml @@ -19,12 +19,18 @@ state: present ignore_errors: yes -- name: Add sury repo into sources list -- This may fail on Pi but error ignored is ok as long as PHP install completes below +- name: Add Debian Stretch sury repo into sources list -- This may fail on Pi but error ignored is ok as long as PHP install completes below ansible.builtin.apt_repository: repo: deb https://packages.sury.org/php/ stretch main state: present ignore_errors: yes +- name: Add Debian Buster sury repo into sources list -- This may fail on Pi but error ignored is ok as long as PHP install completes below + ansible.builtin.apt_repository: + repo: deb https://packages.sury.org/php/ buster main + state: present + ignore_errors: yes + # These are all required by Moodle - name: Install PHP & Libraries apt: From 89bb0786231121376a12eba3f1e3b4107486426f Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Sat, 27 Mar 2021 11:40:41 -0700 Subject: [PATCH 060/129] Update .gitignore --- .gitignore | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 2de10e4d..b9c68858 100644 --- a/.gitignore +++ b/.gitignore @@ -9,8 +9,4 @@ ghostdriver.log ci/terraform.tfstate* ansible/inventory makenewimage.sh -ansible/inventory-cbpi -ansible/inventory-aws -ansible/inventory-cb -ansible/inventory-cbMaster -ansible/inventory-brianward +ansible/inventory-* From eb598a57d7efbbee5d0537277096c9dd7e7d866e Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Sat, 27 Mar 2021 18:09:26 -0700 Subject: [PATCH 061/129] Fix for debian vs stretch --- ansible/roles/php/tasks/main.yml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/ansible/roles/php/tasks/main.yml b/ansible/roles/php/tasks/main.yml index ee6d2c4d..0c53d8d4 100644 --- a/ansible/roles/php/tasks/main.yml +++ b/ansible/roles/php/tasks/main.yml @@ -19,17 +19,16 @@ state: present ignore_errors: yes -- name: Add Debian Stretch sury repo into sources list -- This may fail on Pi but error ignored is ok as long as PHP install completes below - ansible.builtin.apt_repository: - repo: deb https://packages.sury.org/php/ stretch main - state: present - ignore_errors: yes +#- name: Add Debian Stretch sury repo into sources list -- This may fail on Pi but error ignored is ok as long as PHP install completes below +# ansible.builtin.apt_repository: +# repo: deb https://packages.sury.org/php/ $(lsb_release -sc) main +# state: present +# ignore_errors: yes + +- name: Add the packages in sources lists + shell: sh -c 'echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list' + when: ansible_os_family == 'Debian' -- name: Add Debian Buster sury repo into sources list -- This may fail on Pi but error ignored is ok as long as PHP install completes below - ansible.builtin.apt_repository: - repo: deb https://packages.sury.org/php/ buster main - state: present - ignore_errors: yes # These are all required by Moodle - name: Install PHP & Libraries From 42e2b2644756f656f8a94e428438de44fa3c1884 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 29 Mar 2021 15:50:42 -0700 Subject: [PATCH 062/129] Ensure that we are set to pi for raspian --- ansible/group_vars/raspbian | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible/group_vars/raspbian b/ansible/group_vars/raspbian index 934b85b7..0a037c51 100644 --- a/ansible/group_vars/raspbian +++ b/ansible/group_vars/raspbian @@ -1,3 +1,4 @@ --- connectbox_os: raspbian ansible_user: pi + From bc2d595bda730cbc5a084939a289ee323f7bbe19 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 13 Apr 2021 15:25:30 -0700 Subject: [PATCH 063/129] Change domain name for moodle to learn.SERVERNAME and regular content is SERVERNAME --- ansible/roles/nginx/templates/connectbox_icon-only.conf.j2 | 2 +- ansible/roles/nginx/templates/connectbox_moodle.conf.j2 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/roles/nginx/templates/connectbox_icon-only.conf.j2 b/ansible/roles/nginx/templates/connectbox_icon-only.conf.j2 index f88b8c96..13fc2c95 100644 --- a/ansible/roles/nginx/templates/connectbox_icon-only.conf.j2 +++ b/ansible/roles/nginx/templates/connectbox_icon-only.conf.j2 @@ -2,7 +2,7 @@ server { listen 80; # Wildcard .local i.e. respond to anything that comes in on that domain # which allows us to avoid calculating the mDNS name - server_name {{connectbox_default_hostname}}.cb .local; + server_name {{connectbox_default_hostname}} .local; root {{ connectbox_default_content_root }}; index index.html; error_page 404 /index.html; diff --git a/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 b/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 index 982be7d9..b1364bd9 100644 --- a/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 +++ b/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 @@ -5,7 +5,7 @@ server { root /var/www/moodle/; index index.php index.html index.htm; - server_name {{connectbox_default_hostname}}; + server_name learn.{{connectbox_default_hostname}}; location / { try_files $uri $uri/ =404; From 9abb3b68b462e73d153660dd0c52eed03dfc7055 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Fri, 16 Apr 2021 12:18:45 -0700 Subject: [PATCH 064/129] Raspbian uses pi as the username --- ansible/group_vars/raspbian | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/group_vars/raspbian b/ansible/group_vars/raspbian index 53d2cff0..de306733 100644 --- a/ansible/group_vars/raspbian +++ b/ansible/group_vars/raspbian @@ -1,6 +1,6 @@ --- connectbox_os: raspbian -ansible_user: root +ansible_user: pi client_facing_if: "wlan1" eth_facing_if: "wlan0" From 0100fe12d2bcfc35504660c1962e430a55380e70 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Fri, 16 Apr 2021 12:19:07 -0700 Subject: [PATCH 065/129] Check for Raspbian --- ansible/site.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ansible/site.yml b/ansible/site.yml index 938f977f..464e6faf 100644 --- a/ansible/site.yml +++ b/ansible/site.yml @@ -28,6 +28,10 @@ stat: path: "/usr/bin/aws" register: aws_instance + - name: Check for Raspbian + stat: + path: "/usr/bin/raspi-config" + register: raspbian - name: Include Armbian specific variables include_vars: "group_vars/armbian" when: armbian_file.stat.exists == True or armbian_release_file.stat.exists == True From 873ec557c61ded17bf231c7557dd6431b7998e6b Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Fri, 16 Apr 2021 12:19:31 -0700 Subject: [PATCH 066/129] More flexible installation of PHP. Currently version 7.4 --- ansible/group_vars/all | 2 + .../nginx/templates/connectbox_moodle.conf.j2 | 2 +- ansible/roles/php/defaults/main.yml | 1 - ansible/roles/php/tasks/main.yml | 43 ++++++++----------- 4 files changed, 22 insertions(+), 26 deletions(-) diff --git a/ansible/group_vars/all b/ansible/group_vars/all index f3677410..f8ad46b0 100644 --- a/ansible/group_vars/all +++ b/ansible/group_vars/all @@ -51,6 +51,8 @@ access_log_analyzer_repo: https://github.com/ConnectBox/access-log-analyzer.git connectbox_client_repo: https://github.com/ConnectBox/connectbox-react-icon-client.git connectbox_client_path: published/ +php_version: "7.4" + nginx_admin_block: | location /admin/api { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; diff --git a/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 b/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 index b1364bd9..4526871d 100644 --- a/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 +++ b/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 @@ -18,6 +18,6 @@ server { fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; - fastcgi_pass unix:/var/run/php/php7.3-fpm.sock; + fastcgi_pass unix:/var/run/php/php{{ php_version }}-fpm.sock; } } diff --git a/ansible/roles/php/defaults/main.yml b/ansible/roles/php/defaults/main.yml index 17359900..40d7253d 100644 --- a/ansible/roles/php/defaults/main.yml +++ b/ansible/roles/php/defaults/main.yml @@ -1,3 +1,2 @@ --- -php_version: "7.4" moodle_base_directory: "/var/www/moodle" \ No newline at end of file diff --git a/ansible/roles/php/tasks/main.yml b/ansible/roles/php/tasks/main.yml index 0c53d8d4..878c3021 100644 --- a/ansible/roles/php/tasks/main.yml +++ b/ansible/roles/php/tasks/main.yml @@ -12,19 +12,13 @@ command: apt install -y curl wget gnupg2 ca-certificates lsb-release apt-transport-https become: true -# Pi does not require this -- but other OS do so we are ignoring the error. The install will fail if PHP 7.3 is not found +# Pi does not require this -- but other OS do so we are ignoring the error. The install will fail if PHP {{ php_version }} is not found - name: Add sury apt key -- This may fail on Pi but error ignored is ok as long as PHP install completes below ansible.builtin.apt_key: url: https://packages.sury.org/php/apt.gpg state: present ignore_errors: yes -#- name: Add Debian Stretch sury repo into sources list -- This may fail on Pi but error ignored is ok as long as PHP install completes below -# ansible.builtin.apt_repository: -# repo: deb https://packages.sury.org/php/ $(lsb_release -sc) main -# state: present -# ignore_errors: yes - - name: Add the packages in sources lists shell: sh -c 'echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list' when: ansible_os_family == 'Debian' @@ -34,25 +28,26 @@ - name: Install PHP & Libraries apt: pkg: - - php7.3 - - php7.3-cli - - php7.3-common - - php7.3-curl - - php7.3-mbstring - - php7.3-pgsql - - php7.3-xml - - php7.3-zip - - php7.3-intl - - php7.3-xmlrpc - - php7.3-soap - - php7.3-fpm - - php7.3-gd + - php{{ php_version }} + - php{{ php_version }}-cli + - php{{ php_version }}-common + - php{{ php_version }}-curl + - php{{ php_version }}-mbstring + - php{{ php_version }}-pgsql + - php{{ php_version }}-mysql + - php{{ php_version }}-xml + - php{{ php_version }}-zip + - php{{ php_version }}-intl + - php{{ php_version }}-xmlrpc + - php{{ php_version }}-soap + - php{{ php_version }}-fpm + - php{{ php_version }}-gd # Set larger uploads configs for PHP - name: Update php.ini post_max_size replace: - dest: /etc/php/7.3/fpm/php.ini + dest: /etc/php/{{ php_version }}/fpm/php.ini regexp: '^post_max_size.*$' replace: 'post_max_size = 512M' backup: yes @@ -60,7 +55,7 @@ - name: Update php.ini upload_max_filesize replace: - dest: /etc/php/7.3/fpm/php.ini + dest: /etc/php/{{ php_version }}/fpm/php.ini regexp: '^upload_max_filesize.*$' replace: 'upload_max_filesize = 512M' backup: yes @@ -69,12 +64,12 @@ - name: Update php.ini max_execution_time replace: - dest: /etc/php/7.3/fpm/php.ini + dest: /etc/php/{{ php_version }}/fpm/php.ini regexp: '^max_execution_time.*$' replace: 'max_execution_time = 601' backup: yes become: true - name: Restart PHP FPM - command: /etc/init.d/php7.3-fpm restart + command: /etc/init.d/php{{ php_version }}-fpm restart become: true \ No newline at end of file From 1e2dab87aa6b7d06c0ca4d8be4634dc1719f2e19 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Fri, 16 Apr 2021 12:21:06 -0700 Subject: [PATCH 067/129] Creating /var/www/moodledata directory at beginning --- ansible/roles/ansible-postgresql/tasks/overwrite.yml | 6 ++---- ansible/roles/moodle/tasks/main.yml | 3 ++- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/ansible/roles/ansible-postgresql/tasks/overwrite.yml b/ansible/roles/ansible-postgresql/tasks/overwrite.yml index 1d3cdee5..1ec2182b 100644 --- a/ansible/roles/ansible-postgresql/tasks/overwrite.yml +++ b/ansible/roles/ansible-postgresql/tasks/overwrite.yml @@ -36,9 +36,7 @@ become: true become_user: postgres -- name: Recursively remove existing moodledata directory - file: - path: /var/www/moodledata/ - state: absent +- name: Recursively empty existing moodledata directory + shell: rm -rf /var/www/moodledata/* become: true ignore_errors: yes \ No newline at end of file diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml index 482108d1..715efd5d 100644 --- a/ansible/roles/moodle/tasks/main.yml +++ b/ansible/roles/moodle/tasks/main.yml @@ -23,8 +23,9 @@ dest: /var/www/moodle/ clone: yes update: yes + version: origin/connectboxadmin -- name: Make moodledata directory that Moodle requires for all its functions +- name: Restore moodledata directory that Moodle requires for all its functions file: state: directory path: /var/www/moodledata/ From 1737ac48d416939b01549e998051ce26fd1a0716 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Fri, 16 Apr 2021 14:27:24 -0700 Subject: [PATCH 068/129] Revert "Check for Raspbian" This reverts commit 0100fe12d2bcfc35504660c1962e430a55380e70. --- ansible/site.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ansible/site.yml b/ansible/site.yml index 464e6faf..938f977f 100644 --- a/ansible/site.yml +++ b/ansible/site.yml @@ -28,10 +28,6 @@ stat: path: "/usr/bin/aws" register: aws_instance - - name: Check for Raspbian - stat: - path: "/usr/bin/raspi-config" - register: raspbian - name: Include Armbian specific variables include_vars: "group_vars/armbian" when: armbian_file.stat.exists == True or armbian_release_file.stat.exists == True From 821df5e14acc8aded77cc48d25a6231e98021e30 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 19 Apr 2021 15:26:34 -0700 Subject: [PATCH 069/129] Partitioning: full code implementation --- ansible/roles/bootstrap/tasks/main.yml | 65 +++++++++++++++++++ .../bootstrap/templates/home_pi_resizer_pl.j2 | 38 +++++++++++ .../roles/image-preparation/tasks/main.yml | 19 +++--- 3 files changed, 114 insertions(+), 8 deletions(-) create mode 100644 ansible/roles/bootstrap/templates/home_pi_resizer_pl.j2 diff --git a/ansible/roles/bootstrap/tasks/main.yml b/ansible/roles/bootstrap/tasks/main.yml index 071ef74b..d1b0e915 100644 --- a/ansible/roles/bootstrap/tasks/main.yml +++ b/ansible/roles/bootstrap/tasks/main.yml @@ -1,4 +1,69 @@ --- + + +# Needs to happen prior to partitioning +- name: Create moodledata directory that Moodle requires for all its functions + file: + state: directory + path: /var/www/moodledata/ + owner: www-data + group: www-data + mode: 0775 + +########################################### +# Raspberry Pi partitioning +- name: Get Name of SD card + shell: lsblk -d | grep disk | awk '{print $1;}' + register: sdcard_name + when: connectbox_os == "raspbian" + +- name: Read SD card information + community.general.parted: device=/dev/{{ sdcard_name.stdout }} unit=MiB + register: sdcard_info + when: connectbox_os == "raspbian" + +- name: Extend the existing OS partition to 4 GB so we have enough space to load all The Well software + community.general.parted: + device: /dev/{{ sdcard_name.stdout }} + number: "{{ sdcard_info.partitions | length }}" + part_end: "4GB" + resize: true + state: present + when: connectbox_os == "raspbian" and sdcard_info.partitions | length < 3 + +- name: Complete the resize filesystem of OS partition + command: resize2fs /dev/{{ sdcard_name.stdout }}p2 + become: true + when: connectbox_os == "raspbian" and sdcard_info.partitions | length < 3 + +- name: Re-Read SD card information + community.general.parted: device=/dev/{{ sdcard_name.stdout }} unit=MiB + register: sdcard_info + when: connectbox_os == "raspbian" + + +########################################## +# These next 3 tasks handle the partitioning of the extra space on Pi SD Card. Only run if not building an image +- name: Copy resizer.pl to /home/pi + template: + src: home_pi_resizer_pl.j2 + dest: /boot/resizer.pl + owner: root + group: root + mode: 0700 + when: connectbox_os == "raspbian" and sdcard_info.partitions | length < 3 and not do_image_preparation + +- name: Run resizer.pl + command: /boot/resizer.pl + become: true + when: connectbox_os == "raspbian" and sdcard_info.partitions | length < 3 and not do_image_preparation + +- name: Mount All Partitions + command: mount -a + become: true + when: connectbox_os == "raspbian" and sdcard_info.partitions | length < 3 and not do_image_preparation + + # Check early on to see if the style of interface names need to be changed # (only applicable to Ubuntu, and not when we're running virtualised) # We do this before the check for the Armbian reboot oracle. If we need diff --git a/ansible/roles/bootstrap/templates/home_pi_resizer_pl.j2 b/ansible/roles/bootstrap/templates/home_pi_resizer_pl.j2 new file mode 100644 index 00000000..00a2287f --- /dev/null +++ b/ansible/roles/bootstrap/templates/home_pi_resizer_pl.j2 @@ -0,0 +1,38 @@ +#!/usr/bin/perl + +print "Setting Up The Well Raspberry Pi Partitions\n"; + +my $partitions = `lsblk |grep part |wc -l`; +if ($partitions >= 3) { + print "\nPartitions Already Configured\n"; + my $partitions = `lsblk `; + print $partitions; + die; +} + +my $disk = "/dev/" . `lsblk -d | grep disk | awk '{print \$1;}'`; + +print "\nSD Card is Named: $disk\n"; +chop ($disk); + +print "\nResize OS partition\n"; +my $command = "parted $disk resizepart 2 8GB"; +print "$command\n"; +system ($command); + +print "\nExtend File System\n"; +my $command = "resize2fs $disk" . "p2"; +print "$command\n"; +system ($command); + +print "\nMake Data Partition\n"; +my $command = "parted $disk mkpart primary ext4 8GB 100%"; +print "$command\n"; +system ($command); + +print "\nMount Data Partition\n"; +system ("cp /etc/fstab /etc/fstab.bak"); +open (SAVE, ">>/etc/fstab"); +print SAVE $disk . "p3 /var/www/moodledata ext4 defaults,noatime 0 0\n"; +close (SAVE); + diff --git a/ansible/roles/image-preparation/tasks/main.yml b/ansible/roles/image-preparation/tasks/main.yml index e32a5843..f8051213 100644 --- a/ansible/roles/image-preparation/tasks/main.yml +++ b/ansible/roles/image-preparation/tasks/main.yml @@ -208,15 +208,18 @@ # not rebooted after the playbook is run) # This is deliberately placed after the forced-reboot operations -- name: Schedule a resize of the root partition after the next boot (Armbian) - service: - name: armbian-resize-filesystem - enabled: yes - when: connectbox_os == "armbian" -- name: Schedule a resize of the root partition after the next boot (Raspbian) - command: /usr/bin/raspi-config --expand-rootfs - when: connectbox_os == "raspbian" +# In The Well, we run this at boot from rc.local +- name: Add resizer.pl to rc.local (startup) + lineinfile: + path: /etc/rc.local + insertbefore: '^exit 0' + line: '/boot/resizer.pl' + +- name: Remove mysql remote access + command: "iptables -D INPUT -p tcp --dport 3306 -j ACCEPT" + become: true + - name: Schedule Final Handlers assert: From da3e57f1c4045ffff11815dd5d46695a022ef271 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 19 Apr 2021 15:27:01 -0700 Subject: [PATCH 070/129] MYSQL runs Moodle fully --- ansible/roles/connectbox-pi/meta/main.yml | 1 - ansible/roles/moodle/tasks/main.yml | 50 +++++++++++++++++++ .../templates/var_www_moodle_config_php.j2 | 8 +-- ansible/roles/php/tasks/main.yml | 3 +- 4 files changed, 55 insertions(+), 7 deletions(-) diff --git a/ansible/roles/connectbox-pi/meta/main.yml b/ansible/roles/connectbox-pi/meta/main.yml index 98fae8b7..54dd0883 100644 --- a/ansible/roles/connectbox-pi/meta/main.yml +++ b/ansible/roles/connectbox-pi/meta/main.yml @@ -8,7 +8,6 @@ dependencies: - mikegleasonjr.firewall - nginx - php - - ansible-postgresql - moodle - captive-portal - webserver-content diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml index 715efd5d..e5b4be75 100644 --- a/ansible/roles/moodle/tasks/main.yml +++ b/ansible/roles/moodle/tasks/main.yml @@ -3,6 +3,56 @@ # Moodle installation presumes previously installed PHP and PostgreSQL as per the playbooks +###################################################### +# mysql Installation + +- name: Add mariadb (mysql) apt key + ansible.builtin.apt_key: + url: https://mariadb.org/mariadb_release_signing_key.asc + state: present + ignore_errors: yes + +- name: Add the packages in sources lists + shell: sh -c 'echo "deb https://mirror.nodesdirect.com/mariadb/repo/10.3/debian $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list' + when: ansible_os_family == 'Debian' + +- name: Install mariadb (mysql) package + apt: + update_cache: yes + pkg: mariadb-server-10.3 + state: present + +- name: Start mariadb service + command: systemctl restart mysql + become: true + +- name: Remove Existing Moodle database + command: mysql -e 'drop database if exists moodle;' + become: true + when: overwrite_database + +- name: Create Empty Moodle database + command: mysql -e 'CREATE DATABASE moodle DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;' + become: true + when: overwrite_database + +- name: Create Empty Moodle database + command: mysql -e 'GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,CREATE TEMPORARY TABLES,DROP,INDEX,ALTER ON moodle.* TO 'moodleuser'@'%' IDENTIFIED BY '!1TheWell';' + become: true + when: overwrite_database + +- name: Install Default Moodle database + command: ls + when: overwrite_database + +- name: Add mysql remote access + command: "iptables -F INPUT -p tcp --dport 3306 -j ACCEPT" + become: true + when: developer_mode + +###################################################### +# Moodle Software Installation + - name: Recursively remove existing Moodle directory file: path: /var/www/moodle/ diff --git a/ansible/roles/moodle/templates/var_www_moodle_config_php.j2 b/ansible/roles/moodle/templates/var_www_moodle_config_php.j2 index ab68bec8..4954f98b 100644 --- a/ansible/roles/moodle/templates/var_www_moodle_config_php.j2 +++ b/ansible/roles/moodle/templates/var_www_moodle_config_php.j2 @@ -4,12 +4,12 @@ unset($CFG); global $CFG; $CFG = new stdClass(); -$CFG->dbtype = 'pgsql'; +$CFG->dbtype = 'mariadb'; $CFG->dblibrary = 'native'; $CFG->dbhost = 'localhost'; $CFG->dbname = 'moodle'; -$CFG->dbuser = 'postgres'; -$CFG->dbpass = 'mypassword'; +$CFG->dbuser = 'moodleuser'; +$CFG->dbpass = '!1TheWell'; $CFG->prefix = 'mdl_'; $CFG->dboptions = array ( 'dbpersist' => 0, @@ -17,7 +17,7 @@ $CFG->dboptions = array ( 'dbsocket' => '', ); -$CFG->wwwroot = 'http://{{connectbox_default_hostname}}'; +$CFG->wwwroot = 'http://learn.{{connectbox_default_hostname}}'; $CFG->dataroot = '/var/www/moodledata'; $CFG->admin = 'admin'; diff --git a/ansible/roles/php/tasks/main.yml b/ansible/roles/php/tasks/main.yml index 878c3021..80a4fced 100644 --- a/ansible/roles/php/tasks/main.yml +++ b/ansible/roles/php/tasks/main.yml @@ -33,8 +33,7 @@ - php{{ php_version }}-common - php{{ php_version }}-curl - php{{ php_version }}-mbstring - - php{{ php_version }}-pgsql - - php{{ php_version }}-mysql + - php{{ php_version }}-mysqli - php{{ php_version }}-xml - php{{ php_version }}-zip - php{{ php_version }}-intl From 8ddd1c54e7a875bae3e97b3b4f22f711bc151037 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 19 Apr 2021 15:27:26 -0700 Subject: [PATCH 071/129] Autorun course restore on courses found on USB --- ansible/roles/usb-content/files/etc_udev_rules.d_automount.rules | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible/roles/usb-content/files/etc_udev_rules.d_automount.rules b/ansible/roles/usb-content/files/etc_udev_rules.d_automount.rules index 1f7eca44..455b4846 100644 --- a/ansible/roles/usb-content/files/etc_udev_rules.d_automount.rules +++ b/ansible/roles/usb-content/files/etc_udev_rules.d_automount.rules @@ -1,3 +1,4 @@ ACTION=="add",KERNEL=="sda1",RUN+="/bin/mount -o sync,noexec,nodev,noatime,nodiratime,utf8 /dev/%k /media/usb0" ACTION=="add",KERNEL=="sda1",RUN+="/bin/sh -c '/usr/bin/test -f /media/usb0/.connectbox/enable-ssh && (/bin/systemctl is-active ssh.service || /bin/systemctl enable ssh.service && /bin/systemctl start ssh.service)'" +ACTION=="add",KERNEL=="sda1",RUN+="/bin/sh -c '/usr/bin/test -f /media/usb0/*.mbz && /var/www/moodle/admin/cli/restore_all_courses.php /media/usb0/'" ACTION=="remove", KERNEL=="sda1", RUN+="/bin/umount /dev/%k" From c4ea496266786554e6df942954c4ad0742ff6691 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 19 Apr 2021 16:25:16 -0700 Subject: [PATCH 072/129] Fix the quotes around this command the wrong flag on the ipTables --- ansible/roles/moodle/tasks/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml index e5b4be75..02037857 100644 --- a/ansible/roles/moodle/tasks/main.yml +++ b/ansible/roles/moodle/tasks/main.yml @@ -36,8 +36,8 @@ become: true when: overwrite_database -- name: Create Empty Moodle database - command: mysql -e 'GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,CREATE TEMPORARY TABLES,DROP,INDEX,ALTER ON moodle.* TO 'moodleuser'@'%' IDENTIFIED BY '!1TheWell';' +- name: Create moodleuser + command: mysql -e "GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,CREATE TEMPORARY TABLES,DROP,INDEX,ALTER ON moodle.* TO 'moodleuser'@'%' IDENTIFIED BY '!1TheWell';" become: true when: overwrite_database @@ -46,7 +46,7 @@ when: overwrite_database - name: Add mysql remote access - command: "iptables -F INPUT -p tcp --dport 3306 -j ACCEPT" + command: "iptables -A INPUT -p tcp --dport 3306 -j ACCEPT" become: true when: developer_mode From b7fb5fabbbcd4958492f9eab6581e34e8e55abca Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 21 Apr 2021 07:05:39 -0700 Subject: [PATCH 073/129] Updated Readme for recent Well changes with MySQL --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5f9b18c2..13da5401 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,15 @@ [![Build Status](https://travis-ci.org/ConnectBox/connectbox-pi.svg?branch=master)](https://travis-ci.org/ConnectBox/connectbox-pi) -# The Well version of ConnectBox +# TheWell version of ConnectBox -The Well is a variant of ConnectBox that adds Moodle Learning Management System (v. 3.9.3), PHP (v. 7.4) and PostgreSQL (vv 9.6) to bring training system and learning content to the ConnectBox platform. +TheWell is a variant of ConnectBox that adds Moodle Learning Management System (v. 3.9.3), PHP (v. 7.4) and MySQL (MariaDB) (vv 10.3) to bring training system and learning content to the ConnectBox platform. Summary Of Changes: -* ConnectBox Ansible roles are updated to build ConnectBox with Moodle, PHP and PostgreSQL +* ConnectBox Ansible roles are updated to build ConnectBox with Moodle, PHP and MySQL +* TheWell is for Debian OS (Raspbian) on Raspberry Pi (with modifications) or other Linux host * Refer to Relay Trust Moodle Repo for Documentation Of Changes -* Default Moodle PostgreSQL database is located in this repo under ansible/roles/ansible-postgresql/templates/ -* Legacy Connectbox File Serving is now at {{{hostname}}}.cb such that Moodle is http://connectbox and Admin is http://connectbox.cb/admin +* Default Moodle MySQL database is located in this repo under ansible/roles/moodle/templates/ +* Legacy Connectbox File Serving is now at {{{hostname}}} such that Connectbox is http://thewell, Moodle is http://learn.thewell and Admin is http://thewell/admin * (There will be more as this gets built out) # ConnectBox From 2813d0d9f26c0603882580cfa92a837f6edc71d2 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 28 Apr 2021 14:37:45 -0700 Subject: [PATCH 074/129] Fixes an issue on new OS --- ansible/roles/bootstrap/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/roles/bootstrap/tasks/main.yml b/ansible/roles/bootstrap/tasks/main.yml index d1b0e915..6858d919 100644 --- a/ansible/roles/bootstrap/tasks/main.yml +++ b/ansible/roles/bootstrap/tasks/main.yml @@ -160,9 +160,9 @@ when: connectbox_os == "armbian" # Needed for package upgrades via ansible (aptitude safe-upgrade) -- name: Install aptitude +- name: Install apt apt: - name: aptitude + name: apt state: present # mikegleasonjr.firewall assumes iptables but Armbian doesn't ship with it From 3ee49b1156744b7dc78ef5cb31d1fdfbd5c822e5 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 28 Apr 2021 14:50:26 -0700 Subject: [PATCH 075/129] Make sure that we update the apt cache prior to installation --- ansible/roles/php/tasks/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ansible/roles/php/tasks/main.yml b/ansible/roles/php/tasks/main.yml index 80a4fced..0168246f 100644 --- a/ansible/roles/php/tasks/main.yml +++ b/ansible/roles/php/tasks/main.yml @@ -23,6 +23,10 @@ shell: sh -c 'echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list' when: ansible_os_family == 'Debian' +# Only repopulate daily so we don't slow runs down unnecessarily +- name: Populate apt cache + apt: + update-cache: yes # These are all required by Moodle - name: Install PHP & Libraries From 2618fd8d027c108dcc0272a253f0b025df01da36 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 28 Apr 2021 14:50:34 -0700 Subject: [PATCH 076/129] Only do crda on pi --- ansible/roles/wifi-ap/tasks/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible/roles/wifi-ap/tasks/main.yml b/ansible/roles/wifi-ap/tasks/main.yml index baf736f8..a23c255d 100644 --- a/ansible/roles/wifi-ap/tasks/main.yml +++ b/ansible/roles/wifi-ap/tasks/main.yml @@ -35,6 +35,7 @@ apt: name: crda state: present + when: connectbox_os == "raspbian" - name: Copy hostapd config template: From 1d7ed997fd0d57476d070c592ee94df11bd11756 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 28 Apr 2021 14:50:53 -0700 Subject: [PATCH 077/129] Default Moodle Database and Files --- .../roles/moodle/templates/customcert.tar.gz | Bin 0 -> 138311 bytes ansible/roles/moodle/templates/filedir.tar.gz | Bin 0 -> 361313 bytes .../templates/moodle_database_template.txt | 14272 ++++++++++++++++ 3 files changed, 14272 insertions(+) create mode 100644 ansible/roles/moodle/templates/customcert.tar.gz create mode 100644 ansible/roles/moodle/templates/filedir.tar.gz create mode 100644 ansible/roles/moodle/templates/moodle_database_template.txt diff --git a/ansible/roles/moodle/templates/customcert.tar.gz b/ansible/roles/moodle/templates/customcert.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..213347f4ecb9c4e5e127a522cb69a0a46820af81 GIT binary patch literal 138311 zcmV(zK<2+6iwFQD$%$Y91MFLEZyPz1&gcFW93fcC16h7aW`ap3zI7aD#tX;x+0JHz z+l4`OQxey$ZcVe>if)nreos}A?3OGi_hI%9i#s8RB{f+r*6UM6Ds5a{&Qep=yHEaE zuRXk8y!e6t?mgdM{VT60`_K2DA3WQ8cJRZqCwu$P4qiNeqJH?NanyNX|GHA@$zrkC z$#ktB8~3f}|Dvz7)&ISz?09)g@9o&8x;Df4bpAW6K??ry$LEjefB)dw{_{2czxeS7 z=zs5bSo@o=|Ks}q`QM=9WOrBHOs!L6n;V6{b6wS{9IJY2RBIt>R%Q(bjLS;BFUt&X zcht15=P!46XZ(3sR+C*&BZ7VeQLT(ot{m43U743^SvD%wg{n+uU0vBxQ)5`Ibdl|X zG8Tau5(RwM6q%`*joMT*7kK*R{Db<%6sFR-x@<gL+qju&!-c43x2WUMX0=!)Ns@tlCLhpb3|1dcZ+^Y_aHEdSKdFyLS64^pH=kZ% za6K*Y)Z7~(WoPr;f--hg>7rhOabEu9>iAboIeK$?c6##(?5lUDH|HnU*XrHHl{!+F zM^`te#~;p)uGHm+tILb)lc7@AhS)Mh;48u%vwk4J%+%WEE^PS|RO-N8o~fz6H&AVA z>^*qXDlO;BZ>x=n=)5c@yiG4cuys0CMOhD&1A9MvQ-dcCCq=`ymdkXvdpJyz-S59o z)c5LF7*cMWl6Yo8lg+rygnzKqiEx-ebN)Ej>7AY!rO5tnTbt*Hw1>)0rnNdiY*O!a zb*Iiv?qDuI&+wu6qc{JwoE`EE&lkvTV4BF~W?b)1=J{}1&vFsW<(ayFM(Sd#0-4=p z)iJXYyMj1WVIbPd{MOjY+~(y3wly-Th8e-J=6Ymv3v;MTF9P;9nAwEP1T*nq(im4e z$o0<7Sv2X?q<64oxPl?A(xx-W?z)CFb(Oi(Ndd*5*}^1Y<+4ake``40#lN&H#&$vp zV{7|Wl03!d+I+5Ure1rG(fKXHik|hi;a1*`EfYjDj7=Cni2@m-2e*2YT0d};{rqJqNEf6ta&(T(f$kl zExzb)A;f08-%Quwj>5sRD`oZiP<583we48-S)AMI9|^2fg@tzxSA{BrUL{|c-;2A! zs{bJPIOXOh#b=WZ16^Kf=g_~&5wddi-D`Dxaej01mz&$`PuDjm@8i)!(!Dx5D=TH=W%+y*&EmWarS4EzYo+*&x_Ym?7GET3c8(X}&AKLeGphkEziVJuw17 zXQmO~00fFjUnWK)A|a4k$IjM7j->`?>+;pEb$xmR=71FPjVsB($4J*zW7v)Vx|-nr zN{)X!H90KgL zvOc+!7uwb)Rd#)BTLP4hyj$c@LK$N zWXI76b@3QUc;&Y}Y@O}{FOx{Kd5u5(L4Efq2i-UXfKsZbK*g6IZgvjI=uOq{gqDZT z+1>n`M+ZW@vKs7o#pJ*fo;|k1b>rJid|a0G8ke7K-H)NH;zpq20)mC z699ww_moEpI9PY&hk)RgMn^~9ocAl^n!NTTU7a20+PT1^e~N_VT*D?I$*hy5Rs*^n zw_qC{b+2<9?3TOV&xzi2aiO_PjNHC4SS3jIGF*fHLJA36TrMwRqfm4JfQ*ea8Vc zJTI0ln($cYzY&J$#U?p~O`<@5+to4lv)^l-{Ywig7*mto|A*jekH|Cgx5t3U+8Qj* zmtEC%7J8igN~DSav;$de_O}&aLwU014p0fOID(k_)ODClRa4~l&g1}x+`XWl3A;E6 z*^vXp5{nHr+W_2HzcG@mfo6A$E%#~PgRr6PuH<7Va!r~dZ$?P-U_iTqyn95%gs^q7 zRim~>zPCU(NW)vGX7m!Dwj}AZZf(fDkMQA9n}`vDd@NUeGe?1?wrJr-|nUUE514ng|pM+ zlk@A7;Vk=|*Z6Axe}C`!5BtwL{r`g}d;8B{>^=Mc{{R2PYdwS0i@T90=ONwy_ES(Cg2kc|K4FKdC=8g;584doPevj$`Yzf4t3Kex((ETBO6+<{i5+cS{cw zb%N-@Ee}de)X1oP8cYXu|*At(CypJntRV?eZ}O#iUi#JfeP!#a-xI{Qf!sMn(J;;O}NKn8g?6f>FS-`#+ z#l@*Krenr&c}yp5gSS+;BO(QXmxTFjdMPmcRCfo@j%x*Yl}Cf+|wnp&IG9~5%f zbF7Wfm7P~~dRL2OIKgq5Dfp0zHX$@+BJru+oqxpM*;Imtct0{~$Z-LhE=ln;kd%^8 zLWgfad~Oa$vRogLGQ5~KYN;zFZW`M$S)f0Wg_vGGqzAU>JKA*D5XeP%k1UyYpk+Sm z8OpZ7S2+Ntp0*wj(M=6eN${z*ED<@u8ymmb8Pd0!Yrt@1pSl#mnACz`QMbiO;`wq9 z3@h`V$As2QoSJa#bb~ND>6o5KD_SM!9Kl>7Q*EEm8w#IaJ7#g2geIR2X2NoMOI^}( zPNu;O_@ESz2RE3PFM}7bj@r!K%cQ@*4YP4{Fwq`cmc^QK$+G(g+mJazgxD7arf?cN zvG>95ax71^0vZuIR5fBvBeZ|vO@ebpHZL1s-Ey3_e!pNS3y)xa68?G7BrfWp<90cJj^O3Z{L_(oOh6-}=zy0_vRxv< zBpZkpg)PhR88BexvG0Iv+0H? zOwmI2rL@$a_>zy4ur~HxHAV7p8*9!@6Kuw|1t-(FFY#%}Oc%`<@BvOxB|g%*lA{de zbO@VrCc!5x2vrv-N#}6RQMV(bEk%GN=ogmcHPOiv8zQsBG9^dBpqVD148JMb&@dvG zDATm5T)0tziCTnNW=&cPGy-~p31SBR@{ylI~h%kU+w%k#NBQCdFaCoFYU@jPPhI96y(EufVEYaNwOqBhnRE!*?S( zA*`*Jvd0pT9XSPaL(l0JfX=w@Wj+(!60Sh(-UesoCBsZ2HEu||(KwQp_W^Y=DOZJT zCE;c*unVYS54Q#JH=sKy)iQ)_=?Z}{FhqTzk`FuUoH0){!8tvqxOZK1Z_ZyIiTFDV z@EHc)1WtS?A@k!XNys73TH_m5sxMAf4?z7R9&PVvHf^>!+Csuv1j;vvtUZbCFl!g_KP;qM7$B9Djy!qP=q><}-pQt(FZ^A01fvXBEiaS;mQaLrB}Cxf9_ zDe*%NMKF}K@pvtCb8_|mn!A+87w2zJZ%!}HuW9h!5b11e3t5rp_ij2lrYG>!`JV0S z-K)n@xDbj}WlsS2%;>_k`EG|=l`7W@AJ+v^W1-dBD&fjz;6n>c(9A3e39d=W4B#vB zZBXv9pu21n#*b@ij(~*qeT|mI%WKvpfqSJ+G#2wiq%zDhsN8XiQ9Y#G9!B;21mk+F zl3ojHdf;qH*3gY{;1{*BF6@8mR^BkPo}^?D5#B^lp>k&YNq{QTb9OtvDbTt5M{^Rm z4D4LHDXB;jCWZ7CU9{j};3W*H7e1XZfTcRFNB{v-K_x!YOHYpmFmsk{JdV^vdp#XX=T^ zQT}lhGI_V2z+E58Ib$>7DnariX9bNq#oy;ky3$*44CDYJ7#V7(zzIH_A=5;5z{lLO zwNdS4i!o`#a7Yw`Fh*n2%288L)l-uyfq)qL69^~^$2$Cv-IKF3sAY$*eAav5% zrQatR0y2NzWX8oflB~p$K5rJ}!nMV2P(gv`4MX2+n=`8d-V?sNnF>IK;klAe7McQ- zsYGC9Q9iww@&hijFnJy|0U6z!b#o^_C7<^wA#Q)@T()-&Fu{V)4ug2{PR6Dve}|t z=ic8(;4gsCjPhN51dXG)5g4d6AMp8pbuDw+8El}?xY2O>Hw~g*5`~>SEG9wtYW09j>jW5JS!oaPCSd?T z)0qTkzDn51H9CREHUlYkMdDBl^+6=WFr}F>T*OjftnjqrTgEVq{UNFZEGnA*6aF~EyqL2}$;G5l8gH8@7$a(l22B2gsvn6#e20@gm z7L*tl>fBiLLSna1n_S0k8=te~K!1&%P&1?u_7dve!O-%hfH6IzJIif_%iHG2>cdMQ z(dy`$%NrQfsL~YFdXgP|RBmB}_tBU>d~Qu*Zsk#AN+@H>+<43H>uu@2^6Yr;yr64n zc~E*H*PSKEzt?|<5RMV9$|APKW3j{+kRl|&0z5qF3}+u7Z6iZf_Y_DA!CDenJw$IA z_C+E@`Cwgg{gSV>OFGl)q2aK?ggGFJIM(MR_aLFjj{#E2C2b3lVgcwrMZp;6<(5ink#M)a^W?8G1Hsp~qz< zeLlWeD1l}roY+;GY*b!Id7i8_#ySP1)Mhm`0i|Q%jb|);wtM9;z0HgfweDivlPyE5 zsokm=Jj)ZYa?XWg!siub?n}NFH$e5jmJ6y{2b2!u9lzjnf$Ww`*4>qbx?W_~Who%s zKY$0chRDYgp{X2fxAN6o2XsQJun7{T+yz`^nY=P-C$GAta64StN%NW?mg ze`i3b%9SZ)^i15A&q&l$tm5k&@(!i%9lxQ3u>#mW)wve zP(iE)g0rwdyInBfwi_fNoziIvoN`7egidKW`8Gu;V!7NEQy5ckVFXBKjBf=bT^>58 zXppX35pQsiO>&hMf7ga0><_Kn$|dr%r{D(E2`#zN#T%4r?BUug%O$eh*LhiW)%Cb1 z{TT#czP1y0b}&?Lv_oXN>|Pb81dh7UH=DyRNFD+xHp=igfH>+sP_}u{h`tOBe(nbo z3dAn%ODS3cmJ_?8?ogI=dKWZ&X6n$A4C_E6=J5{=a!c8Dzx zt3F?x%EcAY3I-RPER${x$px$bJX)@bgR`K&4JnicYGUc9Tefx_mpJ8dbIjIF?Xh@E ze0_gN*hRTOaXc}yvm_i7jZvIiInyGf$p%FJaj$d9&#o2eXt`PwvV!^i12B2Ut#J~J zuLPv1U16(pf`ZbP&JqP&$9lHgW2kmQ% zm+|b(+n6iKWF!t#D|4#v<5g-d;a0IMDvG>u(v%|-;7fiVArg|KM2dNcjNy!HEPeH& z4a>f9)UniX=7^k3ePvKcf(N+uB7&SU7JA%vp}199!Dl{0h=dbg6msZ_nq%9LCT8Pe zkEP4xn$i-#RXLjCmi~$);1aB$k(ugzJn;U_Ur7%FvP*mqkysh9BlF&*HQH%-&%|Xy zfiFEWIp34>?6?h+wHt@!gd+($6EnH!Yij3`f-sY9^*GASH#_1vdupq+naS^J-0Dpc zvJpb;G$Rq=v^L5C20N!Nr&8Ap7ojBv@hkU1UQrK*)5-oGH+h}>LbafCWJjG{V({6J z;z&66_#o#VQj}kb!@eW&93fln95c(*2PUd#-W|`&73EPXm7j@b23R+XX`c{NXfZ<> z>9i>6M>t3(s4X=gW41EtG=<>yYTV?=<~iF9Hazj(;m1=k1Q52rA5zfA)60ua;Has& z51JXuTJE{2gFW>YVwjCEegCJQe&k=xIs{%SskjjvOeC19Z|QRbqqY*M)+~@wF)^ zx^fYTkWS#c3vn5n4E(Q~neR%h%+e2IM3{bOQJN2wmTZ#@Oa_Lv0?V-M2*qMz~c0FJC%eqJ?W8tbEhJm_U^irIgm~2p#NT)r#nY-U3NjK4awA|nY@ZMf z`~3ikUKlG1W8;C?CWJs(*OBdwKqK>8XD}fk;j?E+DqBn6Ysd#Xwt2v5k=AVd;nf;uk7OSkuI5H-A`P4vOy#QI`ni zkXK|eJRoliFOrr7ZhS|UXn-tC2GS^jNkB#4kBOsRQ47Y6*kO~9t|F-iL9HJjLNF6n zlq8K-#FAaQAx2jqjJ=YcihQ9@5fs`QX}%vjfCjAibo;TT#nOTk`AHNG5Q~8U$wwY5xrvWnJ+)6mCTEm z=QuY)zhoR<$)3c3lxA9(B@o{!ddlvF&unUfMxk^NB=`_7&gMI;hi8SM;uTCDit&eM zUe27jg=>3#G&txD04YLqAiGfLRg8=?hq#jI-2KlvotT ziO@a^@d+3KWyZ;0&pZgV3%xFEOu(IGG=w6WXVr*V;|OWje}qpxFFsg-_-IG!p6V~5 zOee+w#2z?ph*zTvy{p@Zcwk}XMU9kW{j^rXf}=|n;`h3Jx93Z}5>pAgs?Yz-+=}b8 zhav0FWb51@pJ3$X!`1_Yv!tVq%>iLn*dQ-H+8=bxE)%s7<@X+Qffe>9W^ND8VPG9_ zzo7lqt>=cUy48yC$*Jj|Bs1CP(<)>WYn~a6$z;V6D>c+mfSthW9lXO3LZ&>$#nCM| z4SlA>O(q%S@*-%Vkh1l*!f{nw9EAY_BEd&xDjzF$eBgo5gy+YHio78u&Rv}16atFw zA=wfcmLlj0gA=|0mwl4Eu6Cy(_?cMyrPyM^Dl|!s&02+cFbezG5mH!K@C_tkM=uZ} zNX)?reAcL|DP8JICoDR&1xw?ju#mhKS}QAnIuGY|(3I6B_QH>(Qi&DCL969P#F?=; zidX7*gMo?#wy;DQ6v+l!)cGTIk!vH1`!WI>>_;$gdvxv`PR-~7RXUV@>%L4L;YAgjCRAH2a2K4 zMj5%(Dw|p(L+A6AVdm_@6rLDj260AWkXJxpqLI}rVs9X{Qn|@Y8qh{%#uQ7T+C?oL z8|ui2@2w-mWEF}-lO`jvYrM=|!_hqYo)<0;f@SjKRLtH4npqtSYN;wfgTx^ z@Z4E$!p*xuY(ikDp$mk{=N?nr3py~wGKt%2X(JKu8lk=svbIJh+Cr3I34u-*KqF20 zr~!y_0$x(+Y7bxBz~F$DzQn%8aB~=!??46B#ywXT*=_SSB}ED~GbB{Tqa223=puol zozP@E7!A8DWKa<)=qO94g#r4C(x_osIPy`5yKZo+8_b}kjef4m!Wb2+3ny*`-H5IN z_zrS+TV7s8@d+qzj@6Yn9nPJ$aBTo84zupEF1kl%=xwxuM6*E@5->U=iVQum?`V*& z;vRfq_Gb*Xvd|8O=Yxx3hwP=I_|^fICg@!AJYTri0huil=iy#TZyVi$N_scM#}nCV zX(m=E_EeljW1V?5=pLoT9t>^%~lo=5qX{+N#k>>JINvI{{z41`_HY7TCco4Kf zTyn374Q>)e7tj|*Ldi?yeMTidoos~8eZC0*z{$;ot?URev@lX^q;=X8kjur=+8~92 z<_@wD^96XQw};40^HiZ0S#`kR4tvxz@dEe;`V;1gbOS-$1mYMeHCb)u2?ItsLvk!+ z34h3TJ1ig{_Bgm1S!eShuWvEULa+_U@=f`bJ zg4@I8wY+5 zL!w*^dqhVC;~OiKaf=htT98x{9Z~}}T@AQc4ONhjoW9>Es)LBB_s+6tjO%uY14oCO} zobdk%gJW;OdW7+~P5ri$y z3-|(9;{&1gfSkejQb>hPl6xzGlfvnmId5ae$#74Zo9W8b1;RVgAfFv4$8VOD*^&;w zCP!rrJ#C@qE+m?eyG(CRiuA}kk~zA(JtBl2_ECk*wh`j)hxTl|ZPYx3+EBzQDZHu( zR9Z+)kHThuT%&kUC;`Y_kTQW__uC$+MQ*M{;Adl#1EKOd7s`-AUT3zEmU(OpMW+>! z`}pdZsgLXkV7c~#4msk{;D#MG*&`p$poP|r7veCEt?JxX7(|iYkTB60u@{&sWUjO1 zhDjl(-+Nj&4|^t2Wu+5gUKaL&4D$gqM*#=K{fLvW8O}BsUPv0w3E7o;my#n8Y3VD7 zZs<1%FiaGjW`q;N9$t&k#d|0Mb;hoDG+UchJ&@*^Cl#uTdU(y)B5#qndCl|&aa`C- zr_`I$?F?~N*yFHA1v>$fyPS!O{-D!D|KgxwbwQsyCOJjVx+9JYM~nFcYetg@NL z;4sYi^*}zmfiRb`cO&n!-GOjXLNZ4RAH3A(X z_a^MN2Dpsmi6TwkWI!J2kDa`C;Gi zlF=o=aYx<~nh|z*GV!tnku70W7lJT@!(%%}A%4&`LRa7#mS899gaRq^}nI&ll zw3B7?=CZIT8BW)+3?wGl;+*9L@W|^7d6QH$ItAZ?YS7UdB+h~j0Z{sjZIs!y#juIi zSwHRkw;e1oQko;zF6DK9S}k^-c{7hSY*3@zMmFrx5H{YmFxbh0U)NC(xXk9JfF26odkryMp+|s2 zgW&zKN&<@CV||2f_aWlc3y+aF7F1&8ghMyMfQMlO%(TL!v>6};)k4-4R;WMF{6<*F zSG_H$$Ws(`Jn)5_N%nH4m(@TFz%!y~N!I{v$LrP$L`ujUTm@iExf@DW6h_QD+COs0LlVEOEaE_L!r_978OisqnyNa<06L^2BK-mjz)K5?3FQlA zp&2HH8VD;LD<5fiRrT5n7aZ^>oV47RHaI!YeMKXzft7?8%_4!>879RjkUkT0(6f5^)`hZ_kd(2eiD79X^D{;ouCPU?~h{%E5l$l#h zns2BMXrMTn^lq-ob43-Vwn!tV`fdx;i-Eq>8U|D}w>RfMz(0{(8mI^%82;J_&?>DG z7St(gST7?tgLC#%m9&3-a$Q16LolP_`tTKdv?bgnr0t}BIl{5aOk^NK$u^s-NI-#L zl9!)hkraDB?)F+hH(fU6R?$+@CWoZWCze^sc1T zj3kH3I2B`uT@QJZQx2vTVGz*fTw8>`@f@V~J%<|-=Dx@&@5+-;6cNnyesBXAjp2&{ z(WK!ERifZjit=RmTA8;h#_1~QRHQMuY57tK6BXfzTT$EsYn;WZaG)3JGaB+$1o2Cp)@cfKSVaFELdeXK}?wI$Zc2V0t;ajq(Wc00I5V|p(A4fw8wFWYZR6p^t_UX-kc zp-WDXB7jJ@SwO(JdZdYq*)0`3Q*m6tK6i!)m+(?d`c-6J)agS|=$Zi&vNH?G?_|_J zNCYMpE`RE%_bx8b@^1iKyIf>iia!nC4fHB*T#8z~&S+Y#}PyJX!Yv|f5p zIP51jd=g$I^?KELE5lmKkaIoOItJmQG`vZ$jJT(iMwfg7EMk1(kk$gz8PQ_i#t}Hl zjg1eU1+m|TQ5>5vc7%{73Ia^njXKmS{GRe5F-pe4aP(;xw^T^qjMocr@OW)48i#hD zsx@4Rjg~qb-_&ghCI?mr4^n3J<=cupDKK~*T?=X}P7F6Nb3J5tl}q?S+GP47i5#RZ zWFKj9EtZ^=$^vR-1Vboqrg^BDAkoDW1prGhN^asqssg%dNSvMr?A{qetubLP=`~dN0gQSW zcG?(KOHrL=j+tYK+#2aOkuU=Xk-1plkQQW@g=;A`I$OKbF6S*ChkfCw6eCy??p+K# z3o%%cCA~jo-cEK_P{$Q%pBBwQGLh)rO7+MB6!nC5im%`O0qfs{e;FDF1VVhNuqYJ> zzQ-f!mM%`qD(qZOww&UHMU-M$hx@zsdM-P1QnH4j(ED=(q;rIKDG=!z0lFcCM6NYt^gSE@V}GDA_EsH&5XE7QNei}j_!&F zgH!<|P|FcfP&AX}g_L@md7hB@FR623z}Run=3BX7*5uPi39P!QhmY=@aLlj?w+J*X zE=3na1CH{!6M7fqWEmYgzIW}#Mi^q(Rqz@x8oF$d#cVSSv*#IMQt@!@m_~JQj){e4 z+NMPV&;?|Y-Oz$`C}k}uAtd2SN^~aob-F*a(IH|Bbn9R*62hx3fR19&RA?b-?W_EXn(q-l#-@<7A&E}8w|c5B~;jq%0lIX!MS4Z6|)Ow{74Z_H`OY%fnZp7 zlM@47En@tU(5E9M2ye+V))pd<@98+$AB;}39%9Szii-FWCB+x!t)n=oR~&DFIfGcx zNth=o?j<%sGR;x5rI4yAbR`c5o+_cqA?7s}gYjUB(NkRlY6g|!E^tBIHJu{|DU3*C zcSq8b$pjn>U~Ft<*~# z>K|V(@!^4&5C8|cII@XnuWjpEZBdm!f>{sgrX5L|NVl_=4J+iIwT;Y z0VG-;sAz1GcL32rscDS3;=(WmXq#e@(R5k2oK$Le{iah6R0OuFH>w!i>QtpMg7rSe z7NZhn=4uCB$-gDy{jrLoE#j0pWhoz0IJ+T5hT-cBjem@R6)8*E@S*Lulv%#)!gl3$ zE92Y2MB;Ia{VLs1cHL^sesbCdNodR?J_;L1EPY^j%u%w?zqWQY{$ zDTbN~8hTt!94{%oysrKc0Ada^3VxDQ6-k4GBA)sO?lOa-ip9Dq15E-fa33(bBnJ0vOsx_^~ zNbnuuPR2aiLL8SPj`gYsUq~cy5WX>X6J)xI*Nyaz2oz+fqg?1xM0P>i)k<6IG`pW; zbd?2l@wQ6#KrJt1vpp@CzmmF?h{Z+(8nj|wg#9>sS24bl_3e{!0N4VUCS287YR2AB^wc9g*JMWbSQ@or!%20R8k}6iE+BMdnSpVFgF|-m6!*_rXdU+ z*F~1-4Kc8wviw?5#^u5WRC0sLgqSOs9$ksKT1d>*qEPFi6GW`_RCygK27bIt2@JNR zCf%K;7NvQ3pV&Pyp~714q<8m0b@Sja)w3tf?@{I1WsACaP67-%toL-HX#i6 zr9D43U5bP<#WedeFID4d(oH@z9lbp6cuJ^sSwqVF`Z4mF7F4oZY7jW9mqKTvTT2FE zY@NHH+x=_yL%qPLp)m>xb_uIK;-Y1;sgy#7~nEu1NUMeB@?^#sxl2{ zRQgpIhck(Lb#QXv9G*Hy$Ih?2Cnvi{XYZXC$0zu~d3$pF@?`f-#W_2s-v_^)9UPrG zZx2r19G;yW>^r}_U)X*7_VwZ3?k}$ooY%X*V&0f-Oa zv#JAOU3yGS~xmBb6y|9$e`HSab*E}6J=%V2n@9U=HO)S75v=&1Jp!y^L5{d(V+6r897XaC^E!QR>7zYZ!`61q8k_vS#%_vsll zy0H8DwR3c^2k`Emymw9yPX2YcNAqxU@OJm`1ZQdQ_~ZmzIX+@E+NiQ|xw`OpEv=TB zVjLj`9sCRNid&furI(UD&pw9}-bBwaPzZ~Pl`~rX+5j2Kpx${_B$Hv z7M+R4gT;oVhHp^pSYS>>?C#7rpege+hmsbSz^n=YBJBoA7+BF)U6^R+}qM$84`zl1hZi)v^F zC8n0B36UO@cyAf~jl`ct#nUXJuq@OfPCp=_j`a&Ndd|gA#df7sw#b_blj_SD zZ`$}v5xEnIrq4s)yTBV1R|O{$3i9fXh)N{6tn%KH^D{=L+kqaai9ovV?Qp+mB44XC z+c1`UOXV9k7TF(2c~D$Au-}mVMsXyU>_&!sAsl|PdH9MHV^XSx*p7nTkIJUI=~7y< zsoEzX9;eD(b%oap(n*J;apvq{IXNmV%A=B9!xKcZY|oWnEk@9wwxseiCRXfrmE^o& zajU4P$ z57>)=YlO?{&!XR*+&eLaha8%j=5+U$)8p6g&JJF`*CmJm2_nT5R zZZ5f>*w?`=S~LiKb({r3X7uyIC9>&4`4$KVr(2_2 zFN}c15x^w6#5~?&e2uTdx?_YDmGk3;x>Gkd4rg}O(n>OihA)Ivtu{Ai-iA%OFm{u& z=5Pe1Q7Rv{bkl={0g=$xha-peqgw8tYQ@uY6#ogZ|a+%FWg7GEDPw=d$0aUJbe(Se?Io ziw_5aMJls$JM>rXrH>jso15$O-`ZN;{4YO$sjt=68mqO{#`@}CYW1~xt??IU{a&C+ zJVQKE9Oo~v(94)PF00(Q@89T?SpO(&%^nA)SpSX9da?fVcr5D=^pC9;W`zlpum8rz z>SnS2^LR$C|M}4Gw5$J)g5I6_zy;peSj$}h#@d>>{*BtkD(wH-jK(AznW@c+Mln~c>r@{HX7U0~B^a0pCJ|2Nk+)(iSSk7xY)>-%%MgJ3NEuO;b! zW3ACB=>I&PiHSH-Y%;zw={S99x0l;qhf^w5(w{>2a#6jNG`^tk5BZGT|No9=A_7c7 z|M5Qs{hz}#ZvA!YKW!hQ>3;*3zLB8+_4W0Qg8t9rS^56^1?PL`L@qPl>~v#qFi&KP zqI(E-OZK2VR{1BVVR&DCQ#Fr`s=^sA#$E}n0p1LLzp`)*(;auWt%Bm0m&6&PK31b) zpS=E~sH(M6B}ICf_3Izp@RB0ZMIV=*FMNHz@V?6KQDxOk1z`Ne#rugbd_hEG#^-xs zuiWk9&7^~lZ2W#j1TEzcetXNQRjhU6Q9FIiJ9xuhaUx16g|yRK#4>PbejL@9KGpGR zpvIdUHCvPg?5&;-0&(^Io6`!&poD^Ui94M^(04lCg^J_UZ==7`bpq!0#b@jI>vp%C)#~QvPwS1% z_4S`>>+2O~WktUFv6|}Qkm7`N{76lu{PIuqqVGCic43R(ekGs!Ze(=oi@N{kgHPx6L0M+7#KGZ%wx3z@(JW-p-gQ{1z*OR+B zQCCp`RlfoCZ4JELe*w$c75P^a%|zbdZTn(heJ(HA8xhM+(Z-Su{Gz@YwdLo25b-TF zelQ`Rt)2~#vcS2vP=kSY8 zfhE!0R}1=k!u_;GPG%nmyb;f(AF3X;$;2Dw zGM9VS*jN4@u0?^dh#bu59fQqGth7=$x}B*YtTTLB3_ zON7+Fr6?lpD@)1uwvr=ulBzg%-^j)UCp1xOT&I+W)~3#ncpBs5W6T`tjEzpq;=$k^ zRwru}%XeLjjF;S4))s#dV?XQ-tc|28NX4nw41`L7Y_LoT`fDs>))=UP(StDiShkKr zYbM7qG8S_W&s*5U!A->R=-|YqgAIKF<73oZ;PfFqYL#v5NV0&*ZX~~^xDDGt*dCh@ z^S@3VWG%0?FkoND{t&Hg zV=5~)UKNWe2+jvR=L6dLZAZiNu0Qw)dlLFAwK{(5Q>hX|;aM@oXbZ|{3(ovhg7eD; zo{iSVLr>-IAAEegs>q19?_IdV&Y(PYc>5R=Ee_u0`WV+t26&1^Y?;&u_0*Rbz#twb zavN>01G^eM0p3^l_pAFt(OotNpgP!cn3$S+a6CByi%OD*E5)EEfTj#TH`1)0U_xa5 z zvzmt369A3K-6&&Pyk2{TlcMOm9|glfaKWGwx0%UZ65sQ_Y|iIWl9Ni$C;v*(zY}t% z!PJOD&taQaBk7eSez>!bdAYtI~XlQM%Bm?$#EXO(n!>oP{8oz zJP10T+xu!t>iXPh1eRtgA#n)_mAN6Ztu>T7G=IjX&5%MQa*k!0WE(b?DWegMQ!=D$ zrHN6bO*zX@;IPawkVZ(`P~`-Cp#Y7_{SXh?EQR{GxRLkCM$Ur)Dj&D0+z;BA%~3F4 zz%ijPyZeylp4ZMH|7fItoz87M1l$B=g6(H3Gq&XX@rP69LG0K$oz!L#E@Ft(R-SAe zq}QlpZCT*N(Z^s4*u>oINM?-%Vw0O*nixju=7!rUbNjyaLQ3%A_MF}S+Wn1!wz7i3 zy|!SJO{J0CprmK{>UhQ`G>+V@i~|}u1rFBXb}_{?N3fA$^%Q(2_Oiwb5G!%eqgFkk zS2K^wYqvA>NUi;KZG(9%DbUdy6Ch`>g8WdnxRphOvEsV(XyLA7Kj z^CjfAv~8q19W5;;voZQYoMBK@Z-!-KlIm`4AP;wkt#-c@2sVF5iRH#db=Q3e|CMiX zch>Id=ztCeir-t5;k2r=db_;s+nHPWQSVceHlnf=hcw>5dAQIPQRuHar3dc#OMY&z z&4llI0Vk@zOJIaTmWWJDZZQ#liVBSOGF2&pgWp%GNr$77z5!RE72vdWBuqh7q=`;; z3wLyYP>JOOPC-YPR~ z&Mxx&0lGQl@b>*WR{b$fQ~seX%E5EUOR5}v0wK~~O>mE_NqX7ntP77@e@zIq$3Z}~ z-Q9!Eb&_aF2%qO%XPy-aJToj8NC1_8B)|%!XqwltB(GPTu$>1vt+Y;lNmmmTdgcQj zPIuPVoAOEHvWe%WaW>S5RlT>{?az+&teC#-ub#z3j|hANRFGf!*pTr%v6Zm}-(qWV zxS&{zPOqDO#TT9bHXNBDI9N8pD*)n2Q#zrHio_ROUF9dp+&x$Bhnh=AEs;#Jw3*8g z(@J|+lUmr4kZjh4dh0jXJOZPOJ1cUmKG}91mvk@ur{*eQ(PYxVxTx+v-*r+wfaK^$ z+c!|&0noNvj{all>Ro*$IEv$?@|EuOjay}VHS#fcl40{b_DeA{Dy|8zEmaG!DNf-ag3g#ud}3+Z4bU_cay z0$2P+``_^Y(){1z#~}LuXNud1?tdOsdQAQ^KfS2<&!?)Z=6}8}%9x1M1z|uJ2LqRF zggWbiSlll106bjW{Col*lq%MwVx`#VtZ^ZKk;fk9Uj^Tc0pLaaga)G;MoC)%HMO|v@WpwW$`Cul7jf3~O7-#8i=nZo zMy20<6RG7I#8reJh+8-Fd4u<*8p<+^{*LMG^SDbK;07bFX0KWIGcXt7dZ>_;4QJ9AH0m9C94ZZCrjE-*_ zICI*`g=z3!9XE_`{#L(ceup~beV0r|+}%wrENW)@Jb7qk`LnxkHR8WFP%(zk+H5Z7 z?b+s8Z?{6Ll{A&kEGx?|f~{$xwU_K{=}440E@0^%!k6e*5Atl-eAn|o@^FMIykv54 z1ru1U+sNfX#Cix<2AMWD+67BiS%RP2j<^74X4mp2AX*vrMJ?-KM01}aI43e3U|gUm z@FJ1%vpMcS%;O_tc7TrRKgh59m?xNwi-*reX6;BYFt9Oh9(J*hZo%x8(#!a?K+$DL zDh+Gu;ZXg?aY(9$N*I0Ph?bq3`AoeD>hAp0l-~jyzAILfnI;HIqy_p(9)EsiJJOA^ zaQ5d+Vrwi|d25eQQ{~2`_}~xCOKTBfw@g1{0z${u0OF79z>cKg7RNndz_Uj+??t@e zWKbn=pPu^lD`XN6aS3ztyv?@oBc3bmjZDBN>}5g{jadQv&;7#{nx%fT{%ad6RWI4* z6m!tkzc+K#@|12moneJA=8180yPEZt?LoW_JEuTrAz|xQMG>r_|4kMRZ#r~Hqev!K z7Yx0Q^wqx9i3Q`XEGD3{xN}E=W})~8Zd_c2`gO=8RmQI2QJiW3Lm9GFi?~Iz59PVF zS89TD^e2kaDzdiz5y?ITXL9t-4pO_aRD9W;PUA;M^!QEwdx7LC9wW^v7Mjqc2I=~0 zS8y`;hTzT%=e^M6xcC&5V}XR)8Y2LU&K|fG`v$H&=K&tB92oI0T*Yxe^?RopG~Ki6 z8dh<|D5eS&Tu47)s1P*aVzCeH9Ww0SXYa37!_Sqb-ji0Q;dJULrgrAuYFhIlqu)R( z=>sT4XL*QoKO%LMBRQC}C_;c0^Ys9My(0W)z5SMaUvxFhbxp<#v&4^~zTrRSGhk0k zm;M;g!6yg+)$j?rHUA#(xaT!PE86n3B9Iwu0Ct4mOX%#^_Ne_|;3i55T0QvQ1zcwc zLLAzT{h5yvh5>?;fri8}xM0b}SK++nTWVgm+tkzd2HgsqC+G=CH_+3m*o)W~)Z18d zN2!m`=d4?dcgK3x`lj-FFUMGY5Y#CwID~Kr@1}htLSeFRAf-5&3 zg4(Mf{<^t|<`W5CBb#VgV)7P<7%?aCd=-V-Gtpd0y{aN;?8sKuvArt)t^pZE2l;PK zoa-(3(0CV?2aOgs3~wJnZV!*Y=jk;;kEj0*KlcVdk1qfZW{4ZoFwsm^RiK_up!t{R zuyY^*_wx6^#4c@l>{q_0&^Rl<|ufuB|M^D9Bgty(EU4G}?Ufv+n zr~FH7V^C6xx8JLf^xJ&YfhM;z}OE4d8M``f5 z&b-2Rf5NCsk@|VmJhXD3nuOTbBUh$&6P#*>R*F(`DqX~rH$6)&%Uva#5`DqSjc^n(Bc&VC1miz9?I-6Lxjlt2%Ozbtbj zL3cJ%-!Ny+IY2Z#Y^UykwLt~IrzWE4+wO8d@dKP_d-yd2m0w%i^HfF>Za3IoBr-oK%7HJ^)xDSPgp|=ylvegqXUvasa7N0|JC)0 z0`shL_tGW9-8*tM0-a{rQOndM0u(ga zHQ9b~lIlrom%k&p5q`gm7#A-fg6}Y*6&UEjz!1H=V!w*-5*Lvra6J%s4Rdeod+7Pz z;LtS)HhSyoScpAusfM1}X47MP<558`m4eg&8>^?$Y=YoH>$n^XN~UyUJQf7`aDkD| ztEQ^o8zSW8rmN{BhjuQs2t1ASn;=W7D4JP!FpWbW0CJ4(@KzB2su#~uwjz9P5bWf( zbu-->&-`Ur)Xbpt;@qnhJg&=wX}C|J3y322z=nc?@G?(C*Ti$)D&zVXaH3RyS6 ztu;HZ5*IdZi%=>4uv~Ko^ls(T^K=TV?-X+hSmw3u5^45jct0%f}JN2sd;)U@axl;f&B zdg71ug{!fueak&H)dOU9Y5QJ;SaldW6#@6#&G1`t7wwH#)JP{)w-*%f8Bn!c`PM-g zDEHv;cD?d?*u?U@{-`Yg10^pwn1f$d_c!E^Ru>A&fsc3j}Zh>rarc@nZhH zu}RNcznY&2OGf`?qgEVzNBv?V0ZpA9yYsUEh-`o@ZkG5@TL<4Bx9>1buv$lbJ**{2 z#1>T*_wQhfPeV0m=t4$!jGKJ%QaqIw;$}&8OXCA5E~EA7bsRizO)vj?ZT=jj#lrRY z!U8xT6?X)Ns#(vM*t~W)_vk@4u*K&R!FHTn(xv)Edq9_DWBU%6b?9b{Mt%;>J;!=t6m)=C&&GeC)JzxO=zh3&k*u&<}Ok#LNg~>Em7e|44(LHeWLx(8@t)#BA`j0Zn64yXRieV)dc%w- zM=V6{8vS517$6}-Tij*Lq05)Se9@aGOTt{fbCCrLPW9ZKR*bLk{BLDjV1){#P#n6L z0K<2KGWpajpOicsS@m2x3FORLR7B7vA=IASa7~JHaXCrCd)y(Y6ngTzCRn|g@T`*K zdZ94=JIDy#xHb20gg_`b@EAcNd84(Pf@}Fr33?CY{`v_}On2bH)UscbKwg7GSp-q$ z23;cI0!;1=lF(PIzW6S?$B~Hy6DN07me_n_`!)jj)3fOR?HdS>b8KxZ|5mf>BO`AoG8Y5!GD z8wuq|j?U3E18sI={F>`_^7YXdlS4|w|A&=%m7Hz4+vzu4>y-s!=8c~13h{^kZ5cl# zi`*&(rh``sb0NA1Yiy+CpVJ2M48NsqFlH0Cm>A(6s*q(?Om;?WkiEigklpr6e1r~d zP3amvDFKR0`k4Cyw}|NTB6G_blOjB}OKsN)_z#O5Q!9Ze^~)azJf0X0RB*6$glcD1;({zrzi7hK9K0`93J#)eH z?*7CbR9$bpTgnxZ^&~or8wJa-;_d)C!ODPaiKMreabfs6xJ=XYUjhc9u<1f1@yqv zImT_2@hl`<#JBIGqnUh<*(f$WnO>7mkg^|`L?G@E{(Yv4 z_QEkvu+{X)K8J&~V?}$_t1IWWxKl6kSLe=x6I}i=58cho)V6lD)|MT!9SIHxt4=^< z0zl!?0sRxA$3lX%{>}F5syrk2QPd$vy;ULx^Vl7V@`>(#*IZT#>s?Up;%R~4Yk$U2 znOQ+PGa`mWb#zHm1xr)G@&c!y(^e3jxgzS!i!zXEsLwY$|P zk#Mbr1eBDiV8CsGVoV+r>dZQJ`@CnKLF3JyYt736c(2xL*Hw`{)dXO3u_WY!%sdCS z%~^R>^x%@Ptm8volj`pB>ydT<1Xm^w@>xz$!_g;G*6s#`(oVWtQegZ5J9<8%t!~K$L2okY^t`SHOaMC9#HlE&U%Q9O} z5H-46bk?aU6lEFV$C|?x#@}VzK6yS1)1pxjp=7unstmYGeEt?NOQ>RTJ?5HuPphI) zd%PHEp917l&k>3sLklygM4ybl|L;p-FYe^cV0&C!w><|z zl5Io`wCP?ADPsY?x3aXlcdthzvvN>Uh>Q9b<)29?s`qipTHX#_oU0<-?x^o~XYun( zweWIf!xavO>AtxqQb&n&-2_M?SJ*RQT{{L7M>X@p8fbZtY;Gaaph(g<)8}Km%~=xy z?D_&eD`a03_zeh=)UwX227y8{Q&8w#VS<*1(qd}vz&}HmxwI;xM6Ir4D7y23ip?OT zzbgXoj5`{76`-0l;y=Yq)qtP}hFtT>;LO#|zEq+yP@laF5<0|@L(RcfpmIz3Lu%xo za~DpPq~0Seg!m(Y9sBi~19xtjNawCXYNgr%z=^bO&fu!+;xHkW1x%8OE9tZtS4zl` ze69~Pr!Rm-Y~)G}(XcMt zpDJ7t1i|Pzd_0Uz9TDU>B?^gyWQDqYROexVOBSFLnP%NpFw_|vygo{v1h9mnrh-`M z=%}aN^|yB%a7z&yE-7V6y~2cS2a)EzL?9w=?Ir2;OcLXknUfEjOhYuiJ8_}y18|jZ zDW~q2P8F)`@BvDp_CPLXH63_BpC@j(nBXELS)JB%7s_$b%E@ z1EhFd9hjmxZipR>)zE_)!CNuMSRxJy&+!8rsk*-8_#O)Zk0RUcYiv7k!!as5v46`@ ze!L|IyLKB=0_Pt_ueYp;g(3)gEIsT>%wxLHSI9X%5*PMt{_Z?(h`5jKJ~Xkx11l}$ z+fCO#$~mr}%=Lsqk9D*s_uh|tDUjuy2~NQ z^PxKX%%K2uI0mC6qkDt`uB*X;CE$tdat5Sc6at45Ef6=x`H+SqkS*}Vf-@GIpXLHj zZO+c^`Sy5o?}^w*;Mu3SbZ306usm^H$co5DFn5bdTEx`tmcMcD56d8?yHCQ|YpV0Ck1W(i6K(X1MHo_ugNpE?(pDUu85_{G^X;RVksD)EFOMk z)CtMh^xGD~>!q-klyNj6JWfD8~>%3aglLfQusOgiI`>@wuZ=*%BJ~W!0PHDXL z=)6-y{?hjt_DHQx`n!A0VyN>?_?GVDQ ztMLk!KXpd%Sx8W2ggT*{fos@l6GD=~u~g+$yK|xevp-!CatVBaw0=+(`>;HQEz!ZM zvQ~3%`AEWgq}Y{(36ny|a8_R;>KDnRNYDjoRFI^!SBg;Dw=y|Uy{~q%mCw<7tNVaLf}DZUZ)~E}0cXiD!eayt>YcA4KHMj3 z91hiC?pe`Nj=7&u4~kRi*P;mLBsyqJW*C+hai$06RJMn=bGDSSojgQ$T%D3VOlLMj zLv_-}P1R>!MD8=c9<0K$5Pi+DNY;+KIdeg*~B z@S8&&i$Qa%i&xSn8p`a(bik+jb3PpEo>beOPccF7jTpBi8$}q~aUyH}qgv4<^&uRo zHb6~Pv^WM_4y}P0L}>vOcH~F#*MQq7;%aH!rAfvH^isqLDHw>o$nA`hp^MvyAvBb| zi;SKf7OtJmNp1Pi^3IIf|O)=i%-z5=HcuM9bh z5WS(|yID_{HDU&tAo8aKk&=(-$~?Zd-1LU3neJ9g8kU00q-{tCF7u^{e|f_F>j}x! zei0#dLhhHLEmcS1d!x1v~*tZz>I7xwAqnf1l1CQJOfeNoe`q)(^_* zYsf2!e!+rdhT*MZ{w$5&uesH7Nb4c_gV4 z0@775Y#jk(K>hg<&kzQc0e)yEMtLh)4l^-?;iUnAkj^#M1kYY6;ELJ&)!Hd-6OVV( z(ySm19=dqrybgw~le2DiIv09e6z-g2N)p!?j;6*E``O)~brW=kfQdO2)pY_=$htUW zau8)A-(ihmDBTniG@_2gxsU~8Sy8JdO&JdPn;D0V^QlWnwz9au0ATG}BO!}Ck<>QV z>v%7lR#co$GJ^bt(DOcM6LBUGq#^CLcr`3e ztK|i)MVMs|V>q(?1_g$OJo33ZZboSZqW`$aCx)guygFvz@Yl^g$^oJ?uo3NIP(Mwh zO&D^`C~M1{=Iz)hQVky`=UUU3;Jx&FK(&M2GT^X!50UHiiLwpAwnivkXjR&~_a5^C z*pT`QsODUS`P}p7EBfw(WxN}l`b_lkzN5`ej$u0_0x$gy*^yVg*EVy5oBGZI<%nOI zd=EA@^ovFEzUyxgYS&H66#0RthnJg&lS}hwr`QD8X7AYU9vh$Kmhf;peG>um4{9EY zxT%?L@C|-v>%5;wL(rb|;BpIx{I44DB!(PN%&=KyOKUmW=2rCGtN|UM{rt<+^5E=WqHq@=?qy5C)_3zHE(xZ$X&`2z zt!o%+@fx?+&CSKLWpG?MtZP+ZIxT@=?FmZPV|C?v?8s{|^PL`;FIvi5d8dS1`%+?gF7@RFG=o z?`t8186U+g6oxgVVskrb#M&Gq0;0iP-Yu2RD5IFGzwZLKF8~8@DI8sg7-w*py=puf z7dIET+vDHU6XCEDJ$o?#=;r0xpsGS zZ$5R9cka`Cw)tNFZ3_`xt^ql`W%Ic?X!fGop0#Pmn^4T?Crj1HZ*+Cptf0Eb+9>Mg zD{BXVTz4l1eiL);@1)`@G3WU&GAaZh|9JcetGl;#(d@N=I6&%LHV5+AqXzHwT|b9PN=bWC9t?8D1YBe;*59GQ~09V^;!>} zH^#EPzg9oah=WPZG#T6_HsCo%SewKKeWG3Ir6#BSCM?kzoS9Ebx%KKPm}c3h&VwG& zq*n`g+LvJUc{*Y@O$v02kel!O?$oiYEK?ifIZPUNgX)Un88X+QncVIE_+Cc* zH4gZEZ#L6+>`p-evH1^{^zcwB2`-tM*t=MSubzX$o4xDX%hi$LjNB2q2eC}DvUsW+ z6!28H021mmF|-fzD0kwjb24h^40UV!$oh+1dY<|8;EX(vc!7n>RKrCNu_$3NflS-nzg(_iXQ8#Z`aE$@a?%rk9A{cM-29 zy~o-jKK44QBg^Tw`JQ}aTAt0dbH|?98&$!;Zd6Au$NrKa9xQ3XU$1kl&5 z;#Bz&j9n1{@Wz+j1L&K(6~(4#hxUu0D@Lw7yFEOQoUJ|c6a`l2M~>q_&$Q>QWz{eT zM$YeW<5lsM?4wS>C^1*ydj^=UxzB{>gUAbozLK|4h1G=mu;8ywL^G;m3+&s=Y_hzuWLyn@6&i3*3YuCo-9;v`DIbrj8n=HPXolD9{FE|5R z)-iD*L#9PpB8>qwJ9xV3(6;DgY9j@(KcYmkOw208lg0ZOj&m?d(AuY((^0?3PQ@cW zN2~MUjBY!g`y#c!B~D2YxlNnCpgpqJdQnxBT}m8He=LMp)+i}5vb3r+)+B+PoS1|U zagOT4u{N`wsI6Mjt_8)4sxIk~2;&xR7`uVtLT3EFIaoD;M_BB@jdd*;NF?ZPX*PtD z9dMt}pJlj|-40dr`2}OdLMy`zfSjvDnG@P_Mlk=?>%dcOSKu#$tV4XA&92>}{k$Q! zd_w~~Z=r{OC(+<|`TM%5#);zlOWy?667T`%*=UPKL z&APvUW+A>1z!L#s64?QXFCM4(im2dpY3|vGy~*E582gD@mpSjmy`mn)0yIscLi}5Y zy&_DJzNi>XtV*vE=$k}e=_$z*w_-Mp?NWFJ2_=pe2UL_=*Dj>(kZv#n7mW!BlBt3$;i|M@4cZl&ixJ>(oAl%YkZC@kn-LNvkBY@P6z#!WA@Ek z0a+h7h^ZtH+Zdk_iOs|Ub@X9(zxUXQ`3kjeRq=&qS-&R<@AhqT*RqJOhdRxKk)uW7 zAIS)^k9`jx{~zxsIO<85@zMFB!(COyv_f9mk=2^qf(k{6%;p?dd_}|%3g18G$}ae) z4{?{%5HAn!Us6d1#BsX26lTyRa^M0C-&X}`5D}l)#U9tChAPz*VT#!TGAf7722utX zs*=y}{X>i4`1C9NEg*Z@viFD3>(254P>%T)@Z=Ts*?0JJm(>kO0>%<2VA;RUuVHd* zH{@@mqZw`1u14-a5EV z;vjnhIVg_my$z*l{z{NIH>uW|EJaxOg& zcW@2WEpIhiWla@BQn4w?&AkEtWVA<@NjD`Q?On4NMNjODyzLNIAj{}bB1PGJDj1d# z60u8EEHz_^gGPH->U@USJYx=JCYE(7c#a^Q0>SSV@of>xhf1~7F{7XQn=r~gX+`eP zE}5E4)-$utTWVJw2C4)kI<{hTQ|XHhG1Mzi@0E!8z84=qDsWpNNC6;(pA%oLxa>P% z%2p;ceFy0DG-Nabw)D2>-T~fx)x=uI>XfRRBlPn2`Ju51i7u^pF@WzbiH`uo#Jv!& zZ%g#jzJalAK+e9)=|;fl89>`mb`wy$w#FItEf`-G0Z_7n$St%GGKT>9BcaL>kt^2^ ziS>v5PBHSWEWrc*VK_F&S%$2O^i4j~UDvu3?g;T0t!73yX4_6LKq1VJx_sMF5G9ZD z_Tqu-!;BC5XAiaxIKvVT*k<}~UuWVZpnahn^Dp4^5$ywTm<*s${A<|bDw#kF?4)a| zp7$GoNcgIfmBsad$_XNGJjO-hA(ss^kE~-R%6jbwG4A6qCN(1|W2p>%h1H{m68ok< zeKZChE9P&o4D;>(D-%XkVH#UrVjgcuE1sfo#X{2fLF+qoC!j0u1;q>$Dd69xOaD5J zL{9SmIvhFJJ-EF(%`#n=f}B|jP71)k#V=35YORp44K8Jo?5wNc@X7G0TnM2aOkQP} zbD3*ksZHXw&Yt+l|sf!q8&6!$w3jRF>Ix797 zGN_S>#Q#@6uqzfGC^u4ywO>2BFEfToSJ&cgir0=~&@dGJf^}uiV{%%=e{=IN;jIzd zOpm5=?*!j4BO5jxf17-`20A$5+Yqc=Pq4K@T#@E)^moOVhqlOQ=n)Yg1{Ax4uPtm2 z#o;1c^+qa24(_YzIBKly?2o3oY5~Q;JmvUFw*txve59fw z8VAv6BTaXpkPJ8o&i5q!LmXP<(*`=4DKWm@08~}ryj&;bt@TEWdP{XzT}^8UC-YwW zw22sL8n;1gTJkJ}R>+Xwn|0ek(Dv(xK^;6Fgd3+69WVF_(Vr9piRQ8RFtOhUXmfgM)Vx*V;+Wd5)Ncme z)#+k4`Izvbp}ApMcDIJ={$v4urG9c9S`?+aRK0$yYNTjkMS)oO=6y`lC+u~~rD2b5 z>bLr44(_htvXZ7H?5>$>OSc-F2mD{hC!+g!@nFoS6?twIzr03#P7evnwd zcH5J}xtcWmK`tC(+P{w%eB>+Ju>&d6JN1!SV8x~0x`2fPq34aFP5J~Be z*FxNWF%Iko&CMH(RnKYa1~v<3IB9TVWH4ecWUKiQ;8dIpd^Sd9*?}@&y<+Z?QbMoZ ziCMBv1~@d9eMPU|gA&+wxSe#^vo)+~3io80rA^pdTnyP8w$*m8mObsWhR3kHX%-fB zr<>H5`HnX3|0{d(k7__PN#??5Nqxw^A*YIIzL1)2+0)_T({5(wD8%@(?T@%+p6x!T z+*I7mK_S9@ha`*?o9NH8c+`J@1?U*f{tAKD7VIC~+G1H@F`2*Qy#)b52wQmYC8Ed% z;I>M(27;Ss6;@}@!vw1n6VdpjZ9sy{aaKnf<&v>IMo61sjW2T$4!QnUGe0x$DsB3N;{x3pwe8eAEfe7zrL<@lII}DA;!tP)7F_ z@S#Gn@oh%1uZ(iwgqp`%J7EbB_VN0D-pa-Iz8jriw$y?^&p#p{-BIjL!A;@_s3dk< zU8~_Yt0^vHz~yVU?z=Qnf@0N`HQQ3#l@0L=`j3_WiYico16GQV7?xIr;v*MQj47(A zebs?sROx22K|&E2ic>;b5MU1Yo`z>6y`jJ0&jtS7+U?=AbOq)hL;naF_H0A}vk>Kw zVq{>1ir^cFfE5(uKh;#_DXXBUh7rv*HQQ%=nhjN|4@Pxm=1P9u6)4_pKYuyuvns>a z34>Vn2P;qBO0RdLUllvI8RCXU= z=kHYtF8k57%}ETN;)6=DiApiJ`wbeBB{WoG{mcW2Vf(CEqgaJH&Vc3qK#%`_r`Gq@|;xwYw#9pu~sFt7ES3fAsU2tu;u?@G;4m zrlg%7fPnqa)&0JvEo0Xws`m0+JL}YFejxQaYj{X8%iY&I~jK4My2{vQ)AEcu~c>M@ufGj14-v z9Lpv>DjxKDQ_{4R?%B;Iqcn<}(~L?lJ6jZn*&Hs*7>g+_WDM#)M^v>cP#0D#2W?*h zuEo=OJm!64f!LdhF_Ms9VVjyAWFlnLlSjDq4R)A7CC-9BnC_mJj){pgNZ^DfaOJXi ztPtk*jzFIx9OH?7gT{z;-e39f*{Gu*uDatDi`rA3Wz`36I>eb4W3bVF?B&IlOmdyuKCkgC=zxZz|DDcP@&<2R9Nz&&j zn|ZDm_mXSakR^akGUmpR(@q~HB-M~Q9k>Si_n4Fty{?9uk1>+gN3-cENe zw4e6dhL%_-==q0eH;vbkS=j2dQ4Nw+fgu9rMMTqNqZH9RH`98eeo{TT{&uLKB!-Rp z_XW9@OhY#4X%7}|+)?k{_VPJVm4gu-#g0XN=0g%P|BIuccF!Y~O8&wy zHdVpP@8aQkejtGHKn`tZ6@v#hQw4p@_*Ib-Ey(HHpL0P%^fSBd&qpjT%XyNhuQ~c+ zmE!5#Nw#Zjr6uOnghT3kHF?);%+3s?jatN6uAAkGh%ttWys+GHKb>}Ig9S}NP9lMo zST!6pMIuTrHZ344=>|(Lx-!Y+z^*+pe|E0FbcWdS@3xPME!+IP>+f{Qje9)UxS~a$ zkTo?14bf3hWd>O!8M|BVD`^N@`996&m{=@1oX+M~6Z7s0{fH_`Tz48n3n7wrLk2>v zimyKuD4ULbM(XSrILCz&c9XFzdm;Bst0OxkZA3kIdNHtpU2jPfVsU6@1lA0)@g~U0 z?1lhTPjcU^#$rL;!8o4{0iap>QfGUX9&5o1X1usAFjcnvBi_U=XtFa}gUz|NTz3(R zj<#Q#sMt3t|H?h%QVL96B3Z~tw-Y?=V18npR*kr{YyW{M-@C@9AlSS^xD#UPRq4!D0sE^vyQK-mT?l8>sD!;wdoq$SkK1s!f7we?z0~oI9}-)|#~uh`N~E z2~@Rq(az6^wb-Nm#t|lr2x6{xfAPuc$4Kh|6sM}KJNQNBywcB(AcDb7azrQzZ=s0n zOisI@69aX!-;ldl)%X?fIeEU8*a-Oj=D(!^e0s5Y0|(C!MBJRs+9wIT7C}<qwh4|3WIJvgW%dTWVlnudNX6rXK1dL86vrJk zav$4_{(v`Ln=VXGxoR6PmtxcgKk+tfjH^yhAGS&n5d9W@)61!^lsRT2*c7cY{AJIP zZ-e4TT_tZITo${-nG7O*XJ2ex)2lo)`y81d!!SIiOjea0BdpB~Ej@x|L4FXL!M;ys z_O)7ACNTi~7pLs%_0vonMuY`o+t9l~NK>$Vf&1sXn``BfWNqC7yxKb7W_Hc;w7%SKPnw+ETfu%54FL$0DBkIL6QSia;7HZn_)T-nb7QhSG8dYi+{>~55HW2LM`%D zQnVCP;@qX-(OcUq*j=$<#}HG(butV$3P|MsL)Kefnc_kA1If46DswAdTZJHhBoLm# z&6f3;V8oM+ZuF+_rk*)xncr#T_<49Hhafk|D!3G9b+ny`mOv;>NIB+$8>wBl)Zc{D z%iiA;)G~2fJS>8-3o3(!N>VwD z%*r{#@&n0hdOe&FRnVZ>jHJ?jO|nPY=k?!!A5-yNcfQ^`s(w zHdg;`P{Zg=zepTyjYpw(%GI*5H;^zL{?|nI8wBO0i$Bofd_l^;7Sd)#B7RFv5;L#T zD^DY{_HrQ(9>!EK5a_e~Y-}zDXAB#NUoJ8O!__!U{*@7EVEb0rJj_(k=E;qD7?7bd zf1GYQ&5D%+dZ1H6kdGM@n*AdTl34rfm=*l50oSh1l=BcJ!IpwL==*@L_&4n?zT|HC&h7I$o(BlDK}t zk=sxt7dr`yolT(-^=AfoUBnkBQ*+~_(eL=Jch)9n<{$;X<5Z0$#QlVL*z36t_A&T+ zU>v0CiH41bfO?f#Zdx~*pe{^4{&oI5j8_9*aG}uKIcM=RCFY>FIR&M_vM9n7W+Jj8 z&^hGHTUZlsx-gCTu{8DbBP{@IR6EvUeB^oah5nSy1NfA`5i@%xqm6Rvtsf|u^-*@| z{Xh>yo~(k^D*qPyOX$509X#JY?}sp2!M!AOPuDN2zu`S<5axs=b?&PaC;r8D+Ln5mE-78b(Y@>vrL1L zAitkU^e08_*!Gj!ut$RAnFYTqBIZM=71_^cOP&AReze+{B;THB4qXtu+J0Krng*)b zgwN?-P-OU(XAgo3Gho>dVyV8*sAOrjT*$8#cEsrmNohIL21zMzMwz5fMF0?hGcP_K z0#z#osfTd^`icvXDt!q_#FQVE2G!J;qCQ6XD8`M)9CWYUL9hcF#cg%kT)i&QvJVVM zF%6MAqGdxEeh%YbBC}>2FO6}Y1dmuHuAo(w?|mJojS)NlK`g=t=)a9V;E8Z-?bl988)%DbU! zq8Vwo0VA1bZD75PaGA$+Z2Ytx>jX;sz@;JS%Iubbnxf358)d1-Mkk2ID_8%ZFs z-h9sy&F*5tGc7|_n)Za-kny)wLu<0Q6!`RSHM+cqe88X9ntz^FzP2aoa z@F}Oxtw2zLU3nDZU_37w<|(Zb8Cw?tLSf7nX_Bg8R0y4+^gFNI-Uh_Gnj*9<4BY;6 zjWlx}R7^KjAs>e!z4!$kos&ZJIUodrWRn`olt7I3Z5|Ta+pgB~6i`+27*JhPg9`-ekkKJ!E0)r$@Zz_+NkS9={WeM0@%ho+P3 zs514GdXY?ekt}*_OCvrT0=<7%K922jtajuRG4|MnH}%xLVJtBl+8OPC%qn6;0q;>W zhSX6YOQ@3?c(S|@5ulj%L&C>UqJt&tct@@QxM<#9Fke5%XVe@GMUw;P~RyzHq7fw93TPNWm;=rVA|(7oWe#V95yNIYd+a_x+@%hAa; z`i>btn2eqG2}v=+j>5bPZyzlE#a&~0tG0^5w9l^z<}6`%`x4zAA`h4%TNsc1hfQjk z3e+qeasuQl(+n-~2IY+FP-{URSY^qD;%7lZjVaLn@=Qee8gASD%tWbe zDYG9dd`*V>7B;5|XJ;CN!O%1q?uAMGVDY0okxU-^XjbC;I#y&nHoC8uJ$}j&dAluX z>;(=t49ZRQsm&R}7-@8@e>~$bnXu^CDK+A3sg>;aXzTP+@?F;AFsmP8NnX8bqI^+R zVlk_^VLB2KrSM_ogxRh5vw$fObDWy2@!QiqXCVs9AH>0(X)zdunrpOI<sfX7Q`HQE2;jVGH|Fc*r}=MP_y_m zZ=xChX`3N&_HED%hbza6l#!-{DLT{NZmrus@8jR>wtuuavzc>UeeA5=E7+ey)mSD` z-l7SZQS=B!4Id;Fy1WpZ`2}x{ni<7Z4*yrTY&~`NmPi2ua`>0jXL92(e!g`Kx3z!4 zz7B~f&aT{!*Jz2%Q0ZfgX=ov;(WpyXf`g1M=?61U#%eg8MQ~AzNo>?PJF~=ru|zVV zz4s6AIa?9x5u#?cu#!4ZVMX8hRVq_jDTe5U;-DqD zs-m%yn802=uX+j9%+#sI85Ib^6soFtK6(#|F5~EBv(;cxU>S4bCxnFbYmEdy0y$Qu zyEw5+q3wR#1G$T1^#&mtlWYU5_~L@++5`fpJVaXMlkHxahf@2&8D>L}+-P*t9+#fn zbcb8Q&c39h6K$<*3Ne!MkkA)=HJZHGz3{8br|lGMTPw6~+fwclV(omD%{RXlHA5;_ zQ$69P&MFjhtuBiwGe)0LJcG9u!bZpzUZQFLowrxA<*tYqd{AZ7`FZa#5tu@xgs;c?U`OK&F?M>F}Iqh@D zlD4eO#jWJ+sdMYY@wbQ)NnexYH-i}-shUMARwC?8P+XKKN~-NrzT*kr=88nv%w1$j zM%jO4U8g>%2f?#pOQMFBV+Zi9s6(9TR99fg*e?)uD1&SvyGVE~jEx7)Y2ylKK4s4H ziX63Er2%cRXirp(V&T~Ta+TP#neA#mSJ1E+jdbb%)vtd_E6VwBXSMK>&dx8}?SO$caP&7C#<0 z4QG#^Qnb)+h|N(ZKg<&N_Kl zT1We6&b_RjQ3fOhyrqFoP!1CNj4>F0{M8&be`v4kxF^<6&}TPSPb%b$NfbtA4w z_hFA1Uz}60rhqrIp(sFu=eFBWTsVAg@ke3t=1OGhP4R zC(z1Wy=U@9t3xgnEG);A@k^}IYx2CK?ZYkg($OcXP3f*G$w~Xjt)4HS=`@*a4s^ZKY@~IoBB?Cn7y~-5R^K~ z0;H3XdFpGF9|~XCf{SPlM#NZH$_?z7xn4xu`4*3gqg>vTA}l)*r6{tDBl9itIB4Bz zRSg}J4Wuqpy0Ti`4z1^vN~*uh_qE7MBa=nfdbjE`R;)9j8-D0_msbuT(nGxcc5-D~ z0^TT4;5Jy0cVD^frNwZ&#!&3^b#axl8&+>RyY`f%y#&CMUN|pf0){*;uK-}OHzugq zvP}eU(_z&sX9s(f;=mWEjU_6X6VWTGoDBv6(cf@mi+^#l+)9qQJ53NOVM{4Ek$rueuB;c2@?ZkZNB6R# z9x~cBbi{p5Ja(8dVV13|3Zna{QaliyB+pH>G3)+&5Fj_|`{y+w#48cY6eNKj6lj-H zLd1|biyjF_HxgNIn#PuFE`O0N$*4#?7GKO-W#8DF_U5I!(ts7B; z=dI{Z{bPC}cQoqYrDrLv-R-Ys*?Sny^BH+2Q(V8Vl}%Y5TPUyE*4vWtO44Gltzo_{kt z$j!qZNwr9thax`4%Xenncy@CQ6ZWUg23qA?(s*u{e=qsXBbmEOH;Y+-SG{>r1^u^KQ;CB8pyDc znX{*6vba(p{{nqHv@fMHwKK#OQXNmW-!OQqQ9&7@AZ#IBoWZO`sES}~OvSXPaqskr zTaJC_^7UPrGIEk9_yFKa{nx0MGda#$jXiAxfT1*!-ztqWHUiMlPTN*nl6y~rCLYFH zF%GOslri7g+G>fWnJ2|aFuaA%~o7&SAF5v~Iq1;z`*91C!-8m1z^+ZqrXS zT;`)SC&@CBNX1s;MdZ*eWMQv7QrX18@rg_4Q@5rny-`)vn!33`P`MS27pYZ&jWUR5p zMQlU2`)N2Eeq_)$4wL;L$dEYpO&P+rq?)s{aBg|g9FZE@$C@CyU_Rf|+r89gRk14m zU{ufhPgi4TeJJxSoKz|Gd{XdMMafqG8V=tLWDqY)Vg^y}BG#Ni{48@8BU<{Rkc~gm z$Sp%G^IiG*wB(1vlF|-T8^?U2?I+1;Tm9ZqK-XxV@b>DcUB;ASqFVR+4P#NbKp z`>cY#Xc`Ij%B{7GDNR|3_Q+72BK(8WD<`WiQehxk$;TLP^Xz8@Fd&a8w~5N}>WEvda|KwzY|OApgf* z%3(RyR69>;3i}(?|Fp;xjrAshglR?*KM!ZY5ze>}9*vFIfk!$6Uu_TtsZjf|I)+B& zjI!=8R$YnOz{!OK8?#WMz$!^sg`+=u7Wu~~wXf5mtUwP!IK-4EY${b$OlK%UEuz4TPR>A{<{dV`U-vdi9l|i|7(2 z!pL;rB5qdgk%cjJ?^VZf>kWUN=h?-X$h7qg-;JpjNNTx}f6 z)WmbU$yX|van=YRV4zZ@cv(cUOdcRSD*+Q2x^Mj2kfmrl>;$;a5W^Sy?&+mU=_1(0 zZOm~qC?e^AfTcYaQDya|1p&?QyedxcY~;cd+{xg76`6Qmyye9|lGPAZ)R*-t(2%|b zic^xlY2erD%)0t}cT!xee%t|M-vD}lgxZ)I`Q|45oSb+E0eSd~fZm?^74?s(Mm}aJ zF&;lh008M?=Wez%=2f4s=zxD|#q!D1@QaPOf@XPPO3Pi#C8HHIi^ z94?NHWhjRL(;omLuzwyD9;2y+4QgvFF3+X?_>5@8Vu?hWD2OB`DpEHjoX&zffD0;| z{l!T>j7=z%V?zxC76=`LT9~U!hzA!)))1aZ4&6UOn!v_ytATY)>)c7p^G!4y!Y?m) z&12NEsF?`MFdU%_jf9}Y#;gcUEV8bSdaxZ|LUG0ORMdf38zX>TA(UYRIVXHx};Z4NfrG^H!hE2X%%N`5zBxHXR*a(mJ^*)x)QJ6xMH z&Mj%dJ6UhukldL0;Y7aG5~90y^!{mKbZ;{8b@Bl_@h=?D)PA`b>LQ$_Lwp zpURlx&(M5|Bw3ZMa--Fe#^tDT&mBtI2h8&7%bHSr>@l~0w)Sk7Vch>W?(G0VZ9kiW5ULO$8!AlqtN9%jKPUINuTC*OvJ;o~>AZ(Sqf z15473Nl^_jK(kS9FYL>3pLcKAb_8GmL<(_D&Xji}) zQFvQIKC)eA>>-kSj9sUttG43#sg;s|8&{o(NL$G@Kh_s081mZCz5P#*HNLE9Rupk62eH=1;wTuD( zsl`fB7)C@8R2u3dTqu}1*Qmt;ve|Wza={a%IIT>0@)Xhgh3A(4`}7i(l$ZT6i0(v> z%`pGtsce|DI7`)8COTWRy(;RTS$wX*tw!>OgTl<6%G}c}gc!|46r2g&;$QZ43Y@-S zzrCj}RdYsQWd_`}{^T;xS^eitE5O3h(o>Y-Pg@95_6matRzU64rt9iWL1HASZ*_@; zcCPjh&ml&jrGTx))7iV_qjqaG?89sH1G0sxQ1=Nz=yx!7_Ap7);2?6(>dItU((oi^ z@!evb{k(jiK-m_s?$fV^8SoLhD-nhK*MwOkGXbqCIIK{-i9}Knc73 zAumpzHluI8nTk%^Rg482s zLbt<@P$;ukFE&E+-KW)aw~_mBedscBHwr-uZ$V7l;XeE}fS%w!BwoPLz=fw{o_{dR zBTKF&5j@wBWgmE#$OorDGOaek>4xmf$g_e}Zlb2K0f)9(XrO3MVSRni$~RpoDSJF$ zwVtkY^_`|%@rAz^X^OmoFZWrbJv=%n#GCpcnuVKrCK^!f?lN$p{+H#v^)y`eMa3B! zQQS=?W9}b%S<{eW-9H9@s6Ha?4uj4hfv8UK0{a@-_R(YSfvr{2h?r&OSB**Ql;mCI zhM7(2*C{XFiBV>2r@zEcfsvaSY47r#$&v04)g2jnR^6~*mbaEdX!fWJIK8Z2M+pa04_JCZ+5zvD zVHNn_iCAHPSVh1HN{5^T+$T<(ciRnY7+5b2du_Nz`OV(wjAbk;-ccdHBg2U^YXNhy z<3k+XoWz*ehwdm&d@5xOEqKl6nFAU9-1%#@9GF_O3`gT-5M~#YxEQKrX}PFHVl^wU zu!w0X76f~$$A++0#|%5L#axh))u{|9O{oLJo{u?wv-|bMcswAP-x*`>RCYwq4~qs+ zU9*~auV-Xa6#wJ=lqLptI8^Tec9@y}qC3`?Rb}^Q z!g9}O+>UY)aIW95bckkUwofA@qoTNmG6OfPeleegMW2Q_mjYJoZcifzT4Hd$X$av_3b+jc6euOn8ii(6^n3j z3SCDR=$DI+mrAQwz*|KS+qZe+5JMMs{yqyMg)nZ*`C_%RN~@s+O;m_NJeV!`+`H|{ zV}ofg#*ASr7H7IHX?q!EcWc4oRaEaPMzmX0GX{eqIbt-tmK61}tMEpV8pXj~RU}zb zl8gQGC2Lk3l~eRFN^7hp>9(fJy!B&kJhK^*T!`&Paz~^_6oI)uL8tqQYxJ-!v<-y; zIjb1VoHzV;6;ZFoBZ-y5d$u%mR8I8^afT(;VF8-w>(i7G!?n7n)a3sZ~-X@8# z(r6?~77VOh7S9XNSz^P3qOJ3N7uX4QL9k{DeXSDGrc=un5Q7@C1RYyFBc_?h!_lW= z=17!}Y(w^cK$8|HYs$S5$ZN*KMMCaZqq_xipsldEdLt}HFjMEv-g95oqW3=1H6Ti! zu%rl)$;1&OM8>6s3MOPEX_dbspv1f*xbJ|K;-dqNd5{wC5Thjot?nb}E{BKdSbPo1}bX-$W8*-0+SO!D$$1^kVFS%HfpI=bd31!Sx2v)Vli6I`W` zSC26AQ`Cmt0ogP=>f?8c{yO8piSu4;SI!WJ>}9SI&nY&Xud0}d9j~ky4BFY-ibXeP ztgP_xlwPXz@V@PQ@>WTDWfrWZ!p*Fp9;TdLzc3;eeWH?>59i7#HW$f(Q%vq_g{DgC z?oCLx@Zp*;zOmpj!Pc7nlYw8Lr8V+p=cZb}bBkpLXzlnXu?=8bxfuSs;mPg%@H61J zS?}=kXwA6R3#_7xb^~yEfA;8UN;>|sG)~Rlk$F03Se!I-GW)$;m-_CsNp)i5=Z)Da zR#6hV926yVprzebY$5To;+?~A;F(O%-B8|Y;2(jMj00gnYueG2>|+$`#MIcWtU;z3 z7bUMRD{mw#h=A`KC?-84oL99ok~9n`kPiyDGYKv4wD&K1>ur9T9?_imwksL~Fr}Fx zf5(yOWMIj7nwxjZlB+c~`XQG(vM^*6iTk$U<3PUt(jbhSjS&HjQ3l=df9PRLoev?v zXdP?!9FEg@7nFo*&hI$3YGk&l+f>{dU-cc__BGP}h!OdC8NZqtva}&r6Ax{%ow`a8 zmD@56I@1h=M(pvd54?7@8)PGNm<6sb&@IcjjoGHZ8%m+15WEZ*icQp~E6 zR*)d|QNHE7-x7y+1IL^ooTRL_KSRu=v9XqZ14`mxznAJNV$8{HhL1MShlec>ZN7#& zZ~aZ1c}fX(eWWQ6`!9Ac5#HfVcOCzV?hV0g!ID$Fr$Y;2Ttws<{D!z<)RGUSqjlXT z+3;v$cxl`#J2T9icFsex`oqj-+B*y$<@2&jW47V;4zjiQz1T_lym$Gs=RU(suXZ^A zsnA zpSX-Yp4w#DeoL%Fhv8dXc{GsZ+^qeYSd$8CH)V;k80b@;mBov+``4`D12+4QiWdvV zFv~df-Lm?`&~Ojl`=N9U#>`ULo^%Y}%o5bTbPS2uG=^=d(=|v)I0R8m$jV9D@1{qY zjz+6(Puth0O4UU>c8h-wD_PB^8{I0bI94PDGE0{O#5xgjqt$};*CCu%#L{32q)C z`Hv!E1^l$lj11>8h%HB9Kojlky1@X}9u2F?7&1g47|51x+gdzNThenyo12P#ZFju2 z+HZY&t_JKhpC31IUo*67+#h~OH}Oi*Y`n>?x=k>2Ofi_( zTZZ@L+9&xDMlP>sgCMt;^BPspr=sdu`Ki&_Mr*!#+FG}wWoFGWFrs*e>3zetrw*#$ z4h#`Gii{W(QJOK}yn=35(#s4Jn#WgMn|d-|8fu^5O&dC+Lh^jwUcOe;nSr`@jpmv@ z_m-?IQUab`xw6$ry7;Tqbf#AH-fS1|avu084s=Khq%R7(NlR7mWTFu)>s|t3DxM&h zOJjy30RzfOZRk@(z*_}%{oQ?ce62hQqBold(c=uExv~6A=))1K2*i03$=SkEee~z} z2NF$O0a&#gAOvW^FPOrNNNgT?3-d;Y#u2R;M7u}f`lxchPlvphGo6+JH}Kli++3U-b_5dnH-ArGVNP-}EkG#Hhb-j?XQT05o-D3lQx;^w&)B5)TmkD$rRX8 zX%U`WXY)eD-xybHDD!CF2kZpDgbb|O92u}lHO0l`8(MRSE=6XHh3U*p>lBDIhex7T z2Rt)#D{wiZ@Oob)oq}76>FNlIBk-4xTku-4cV*G*$)oovKgAPiw0NGFEu;6E$RlY? zT^-{B-#s;%nN$SoEdouqUI<}%6I=M==>8O#7X2 z8IwYBv)$@iKcKZZXbiQ2t2^BWGFLP;*2)68GqK!~A*-NW=*it2AZ3)`_qm#^zA%FcQ<2(WtKNKHnwc(H!=J4e?Ii47-l%ar% z(A{I_55)785)s?d`4*$DehKtyzK9#|#j$6oOa;+L4r#E~GF2JIb(V+`6M!tb@Zw$Q zju26OzlFtfE(nsHnJZcn)Own_8|E`9n%;JFtnIfIQ=Dt5Z0d~&#=$m!!E5E|Z|hcR zdPT1Xt7nn8a#|$iUgoQATI90SerQ}CzcGScGXqk(bt0R?I137nUn!8 z!fPiA_Ka-~3eJ5|P{wt_YYLdZZoDN7AQPBs{r&qqmg~XYA*Yxf0csLv1Gc1R3zJ1| zGg7rDA-1C)+&p12=UvZxBEi*Qk8N>wg*5tCv*mbIcOV8FXbc>`<7p@w)E#*8M3SuZ zLml+0C-_8y(BcK^5*oO7m0N(2gTH%rTRGKrf-FbRiijma>^@=;6@A9vmvz;a) zVLpAqX@m_sy0CM0$c#@%T?h5z>4yhF-e=T$hR*uNu#XSI5K14P$54@t^w^H{xG}sES2EY1J83SFl z2jJWPwk^n-47&;KvJTQu2I5}mI~V1Rs^$Rqa|$2Cq~G;62Hlt&EHOSHPHGa2T078No|bu`g2H8R7`c%OiGjeF4}U_pqRftQVS z)oV;)#Kuy4eUEE#!8p8i(ryC4eZ{-R2rJ`%clQlHdsWZGr%MABx$Wr@cZa>9qh$)# z9;Iac%$Jf(7t6UyQY=}&^+x&GWn-P#@9TUm&e}EW8$Z;`6eb^UD~AS~@%|EOz<23t z`3}7~_Ru1N3M_`qzKlJIbIs0LC!joaquZM@2o6p3_c)=2siL`=FD(Ki>atsl zho$kVU#ekcm$+keDW=gh#!Y{`@XFTt~j@IWL*4c0o9(_fDn z>N;>;c0WU3|3ep3LqEF#+*!VWD0!^uIU9-Bd z@XL-7tx(t^B3fF$D8Ue#;QMt3lBntpx=W59@-pOKtbe)|1;=ohKG*sqlNkZ2C1w52H$*F{z~2OK*LJhIVi%u8UaMCz=H1HBc`4Dq~` z+@sf|l44)KsqOvw+ihZPmKIF^jiJzqaakG%$b;5QK46j;f15ZmF8uCkb4@y(-H$d0 zXim5M5yl1+{>ab+SB8{`Dc{5A;ojku7^|_kf0%R>OT5`h$2AsS

j4|x+odD8HNuczZeryBT>iH=q*|N<(tP^ zYGWe*;mkUmomXN!rjFwRdm%1KS;gnf7o2E`?l*NZtpCEYBIK7bcvN^;104t#0egPq zIG&F4?y=vOL_QuGtSdU*8%lN-I!_;uATn=acb>}x!k+J9p^{eU8x?u}i&0yJN|_p3 zwPksTuIjjP=D`k6^JxD)QIcXir#nyIF@#ifz*Iqv2G`c9uUBI7`>DUd#UQ*?z*>KP zLTZw`DO-_9(Dj0{9=>J*YX4rA0heW~EP{Xw>|jB<#jMomnqu1c%(fFmOFo>B4CVmR zy0nVqd`tBbUv2LqZwTHc8^C`?c5V3imRA3qSBYZ*@cY!>1kCJZ3;^=v1EUQaq(#KQ z!7!D$7xR@eAL-PEz@mf93m6t@r&y-3Jd;f`9gBBz*VhACyWfH`{L znQU1UKUtf5GajQ$0Jas?H$wVAARuc}X$^q(?6*_=wF4`%oN5ckaan*38j-%BwdsD+ z7pp7$G-kNZ{%>T~lrQwzh+o!}-&LHMzajGB-;v_LNNv+k(F|mMu9_Hl`qIl)w>#Fx zMz>esLqCKIdA7{KSfQV$xhw_U<>oW%yKd{jZwq1WNbR_7sKK74k5Zy@l}XNM9Vh`XgbY`>+#e|A-#V%g ziXJ!`)n(@qT6JqHm=+%na1TF(K*VM1stY^E`OCkHa5?#@XR=0b)N-T#@Pn~w^7?+1 z4vj)N(tZazE8^VVL0SGHs}i6jhAXwXu;B&iE5=tNBF!#i@bY6L(C3bG>=()=t

# zZL}#Qd$9aAY*pAxJTk1-GG}uH$hs(xC%}kaI*ir*HwTyBwzj7`%?(;w!AB8U2r9|~ z1#z=&q&8D^PhyVAh9j?z*Sq|}ttcrtXgzo426f&JCrIn`CTY>B{+@8$ps;m`EjBh- zS$w~WcO+>0YIQGPr&c3_1q;|QLwWb24x4`Zgh-mTF`MMSh1u%}DbU>c^ zOSp5=Gg{^(Y5m!hefagU8SdAJ!NT2NvV-FXgR0zq>CX7-KEb&xw-L`yE{mFs~YHRR`?6 zN>%st=vJb=|D^kio&X|c2S%}R3=8Dw?4ZNbeI(sjYb0`!bKS}Gi&esD=&?-`8f`gB zRJN3TY9~cNvt9)9hCvFWHj*Lm!$9Fb6m^0*SGWPE-e2AVDP0eFPgGNj_p#YHkQ^~$ zzaUg=zmzL^OG$E$Bd7Vnkm5@wKgN7GZuUGLO#J|@JE;{8N&BaFLf}8p8?ItfIhh9S0{d3T~eM6aVL{$y@`j+^>2{N9VBsKGE>3hgQ3?m zM+P(=Yh6Qg6i4@U&v@%RAiJ{O_$>@bMdGa2GbaW#ZYGaCzB=*dA95z_w)n^Eq}GD@ z+?mCLmXatcv}N_dp&;@rCly}ifxDvh^q?o_y|U}?uU;omYq0d;6BMI(a8RsFlQ$ra zO`_xSsG^4{!=j~^9*5eU1#y2vBaWja%eK;6r%+C}l#ZiX+j@3-E8l0+7s8SC{h z`1bXfc6!}u2{GMv>aOAp;Q_h6`VdT$s*Df8l5+g~_g!#2zX+3Upi)tAAgH&l9<*`m z3OY!->a*{A18#Kp6-NIYif(y(NPP$pe6e+DRsGJ4tsdyY<7Z9G8~aA#yW}d^V4DN& z{bbe1rtNO;f|n>v=5tYZFKQ`+@vb&EI%DdKaj6aw)ogrRt7F{rl?>9h`)upbsI;^F zw-JkhBZV+f0Dn~Ye&2sObg7uNaMs6X{i=Q~nl|Y9<(YVCH3wPqxMWPuN_r5$)}N!{$^BxPO)_VxQ2fZ7AF5&!jZ((9Af=X^zi=8v9g;L^ce{`OZc ztzbviPcd(BcjQ|o#T*^e{&BUw{?n8> zIVg_2@YuInJ#n_T2anUL=xa1JZ9y1jbk9DGX5c+BwW12YkJy&woe>PQgCLU?du-LL z>?oldTK5>;(rqg4s2{KQOLtS}~5s;^D{T4pd`G zEzd&^W>qH!@)lSm`%L2*1sbduAhYy6JJxovM6>o)4T1y)N3MZfFEd~PnAUfxN$OHx zBvq$skl!~Kvov4aaM*mLvyk~}D`iDJZBS}(r`BZ7*NOOY>ZT$KKD%r*YEab zVI9))!2jZ*^hTM4L1)CqdR@DSSu>?#YFlzcqYe(xt!bV7lg0YpCXpK{xf(Vg$be2P z@(Q}g5RuyFS6bB?R-S74HpWSM<{n5+K)R6{zF$-=2#+HAtDTN_ITm4LVpz}J7bkHKPciHPtbF$wLlDmxvfF1 zCc08p2jUlOSG`X!`;8ZPkxP`m;Riy2(Z~hVEk#T~-N#52u{y^o_e0x}M+sx(pK)Qg z`)%PH;>W_ugYC0;TBH_@)f57sTS-G6e^ecr*z2XGV9LDxHZk_xD7aWe?1F-)MpxOqQCDp9~3G@!J3h6~A%3A-v zoz{LIjgRgn$4E2S5uM790L9d;W0K&G@AY0E=k1TRG#fUD+z@c}1Ghs{cAjgqqpSt| zq#nzxo4Xm{28_4D$jf(@nAhL@2%i0#mz$NpUz$gbEggPJXQ^fY`=0=%96);^oQoDHvAp;4#{ zq9Rm5z0qK5e0jIgd?wViGMJ-8v}0MO_VJ7`iSqHB^9m&Myktq_&}u0gsj3mf`9nBT zLbG-`rtnxh{*JJ-bDw%UI6a{IapJ-m1TJyYA}#*kXPVcQD(lAIyfD0S4RM{>`#OwY zw%q<4_Xq|4AMFP>pK#8wuKVx}{-F9rq{(A4dpFg2Y9i1lW~=Qm-LOkUzKkc&7pt}I z_4#u6y7+C}{DZmE*HI@X(sGtHq7=u*$LHj^i;>4yCTA~`X+xhz4{MLJG=npXD&!h( z{4mrubFz<;S+Q>)lkQ)$$NxM70a`k>>@eSU_;US#pSl;NL%=2JWjT`{%Rear-$R;5 zw-dn+RY3JG94EKf*I)+eAxA6*!iR=9jIPe^NrRtFMeDcSJjdTe%D7vkBIf+0l9-Q( zmb@N5GVQt_y+BJrGK2|D?V@DS!2L=Ow6Hyyx%JVAjyMcY{mrUl`=;zHF&+waGHo!0TfuC>g+xUb(`LTR_bOwr205-O72B{4CovYD`-bSE69QAl1 z%LS~C@s2?C;z{{4Zn}AT|1)n?X$U~Q@5fvJs#gn?aJzO1DbV2{Y0^NRf$((o4SVv> zEywj#*Rgnl;q+uW><+P@SA-rB>y7=ix$A#=ixS$eOQu3Q2n}5nl%pQMhoz_L+=&PA zLx=A-P+zpc)<{229ig{Vsl&-T?HGD6A)yD+#myc{Xrs@hd%mKpx|t=Aqj_Ve;XkG6 z0O^SL4ceOsEqRz?U`|K6J>lUkYq?UTdlZ!aJ7sDkqoTUySaufA=g{c*y*F=XRgU* zcos=a>>*!egTro0=>OW3_RqmEwjR}1ky3QLT(fh!J})0Ns4S0@Aj%LUjS+-4=D2L; z8e~g~2XGC8LOR7On>;Y#AKuSg&8Z>Hd%*m3Vd$vp7^>Y=+Aa95A>VxEA|y>!fM=3V zUY_=gK@G=XI4V10GHr7G$v9*gh){@c?sto9L=>;8f_^- z*5wwPVA(Iipn|3@2rD;;2twX;LW|g@!*eU4L1^EjD?L;u6CSDEbt~WSi5(4WrImWR zrM${#Sj5-HN;!=wQv!((NE7qx+uX8`dip*&nGvP1htwKV=2z2lp?TDI6eKSgseVYP zm$88UL;3!DG~09~QKe~Nzpn{Hl|Thgp=QZW56V!raNf!0-N^ztHR6>z7Z{g#Hi=6F z%_5LQ?F`aG}3E#>Lk0=O&}7ez*qnFmgf~j=B1}7u4Z#rl=hp1~Tuwl8*avQy?Uq z`U;fOidBFAE&8ZNi-pWn);z}GJXcMB#oGSvg&Y+0<9OAvv#`22eZ9OL{y47fq!14i z|EAwIiE`_fxP&b7+EW!sq@?t|Z`K1u%>A;6$SH~+-Vlai_k+6fg1JbNpAQ6FX2 zA$}r*Rd0s(<&*h(W0e*2MEw21gFpG6Cu1CS8qhc&MA6FUpQY|S@0Gla!CwV)oX$d zatMzUs&kKA-JNP$2mMy2;3J|cq&@CuWdTwwmLi2<7ly7O@Mf7->DeEu%cOL58 zH$J1+UUaX%>6{;YgbvMrNJ7q4J@2e*eEn#^>WFD|?k+&>BIMhT?|(l9^CJKoUrOq? z4p2B{7cIpj()Pelw62$z6XDif{vT0@yPTQnwb*M1zz| zZ;dtA6q+EycTiU<7)1bP1XJQ#X9DW^80NWtgS?e+m8o@LN~QTj?taF}_oVxdU%2<_ z44mz?O6n>x!+L{&UvR~w8Bw3F z$T+ol)X9kKW(|w=1{hVHdCIh{qWp;I>R-3niNaaoMWG9MS>I%)*K14;>hA(UI>%t! zh%=ah{d@?~ejpjra|&FV%$SY0Eg}%f zvy-ASx^!siL#MU<6Qme1Z2`M>ScA5mhGYfz>Z;xbJ6SDDwO$x)BME!NQ*?{3PKBN8 z_63ap`8uJS?ubMFXOUZl=TRTutB^;>aCA=L^1=KN0;8n+5M4Z;x)2Zy{7vtM#!+aM z33N`y*6BC$JKH88_noN-0h+6B-?Ncx1j7=+&c6!vYYWG<8xcsfLyCRAEWSL$_3Nnj zozMdgQ@sR9qp%UWmsOPH8RS^%#H{azR5wE5bOPNc2^;$_PddI)x(ieAz7<;|QM2Xx zVghA?JGZA0OHPi782Q@gGu2yK-=D#h8c#PNqWSwUYd=Iu<|-WFB5V#V*Vo||L?7PS zeDWbsL^r>m5sUv-@7_TkRPf=)Johg$&^>0U9Zf;AwJT@`!4|VSMK=gcT*@fPa0nY1 z-C_mOWuL^3+jm7QxYGmoZq+%lZ9MiDiTA);_Ap)mzi@2?T~tJ)0%|;v`>8I^yPyCb z>^KyEUS~q-JeI#cVqK53*2_p@+**e_L+UtZ*gFP1%wO>kk#l7Y-`a`uCg~{z**{4X zB~<}U$<41!-(UpNj+RGM#PBJ;AH-HyyGajl0HmYr-On9et9Z&#kG*{LQv+OLNTtfX z86+58@h%Jnpll$~O&tFFhPzW{yaB z0|g_2a8kW1BApV1eu%6r$A)$y-Vjz9H`W&zBM@jQd0?QZ5wZ(iS|6F37>`o=V8+FO z(RxwVr%?E#ZZU!=f){{E>ijX-OE3SCsQn8bIiC;IU!hUv*;3G5OO`Ho+e(|}O4js_ z>BCaXA$r(fL{mFod)K~Pa;;8x-~h2x3Xd;G04#pPwd0y%iVaAa5&P6g;G`@i0H<)V z1{#?)qQ&}4>lrR&(Ht>ZrAR7bzpg*k4IXK!4KCC~ek?+qRNQh-Z)<@jWFt`?yEYyF zJd7Z$T|bO*dx61y-)2)6dLEq|+J~(^28OB*>{!u0ub+cJD9VLAXtZ#3-TF&eMY}W}s z>DuuzH_SQo;Xw$)K_E}E4sd~U4~97wkXV-cUPGZR`}|d8#+);aA?4%C8fgk>F@OxA zjP`lE1x@)qtpgtsMcV>MuOcdO5@49l;|Ts33dPjlGTbnr@~#Y^lFV0>LJH;g5UuI+ z^TYXTDCHPl`N?tHe(2oy$LQ!4)eXmNTNTUksns-Tifuqmkv9{2+~ zS!j^xpy+$&p9~Q4(arRgUW@yg`d^F<$d>UN%opshtc*1$a=4u^)N$SbLaG;?T?v1B zz*$y)S`ELA@MnWBb`XNB2;BQ3-~>nh`Pq?P@vpG0Mt#OPd5CTJp{nACq>Pd@-@8wu zj&tJWivQ9x3Hy)p1aF$OH6-m^lHh z_4S%Vfb>ab$FCdgS5cm%T7YTMEg*ZA+4k$|(S@mA9~ZD=Ui=8S5dH3b;{gZg-2&vI z0ke1jQ4R|kq}L;bIzR@n)J!_)&o%gvHr0z9R$fTS>?*n{_u!ONMD>$0wE^k{`mTh` zJUgWxN`UEw;^On?%@OXT`+scWHmLvgzdBs_mG%+rV+{gqtl1XsdT~TQm->b*-@i3nydR=}4#WQ^9&>j?1@Z;>AyUHlO+xrUAfvOETaR!ARK z%CY|C;=KgDzR{+eS4vkVF4M2{uz5Vq3PLdQVJWrh`W$6CVUSlmFzAsT<}{N}Hn6JH z5=Qv{xcbVVIJUK2EVxT>3GPlH!3pkeArRby69_W6ySqzp*Wm8%5Zv9J={tL$d%o}1 z{W)DV-K$nj^{n?%g7wf0dwv`pAYmeC#)WPJHQqluZC{4&k=S)BbqvM4K03Uhx{V0%(CEc~1j0&0VU$>9qenx#E+JoFgFJsGS{?N)~sBQVH(ww?W%+xOA00+VE z!l(J-AWnW^r97@xYVPyFPJH?7;A^r2=FU}f-?17mTH!!?je0_x+c z0T-)O@o1vFO$ubSod_rHM7s?ff;6oo?@V47=OM|$cC1QUfSQGShYZVP0$A8jI7R>4 zm79P!X4i}B-3QI$%PR&?&#(haAx-e4ZMRNn!NJzG@FFsh-6CMT0OVc^_g47<5O87* zcpuk|6OUSS4X9AtiSbfsT;$q)M6t_3wWDYd3v|fcBXj}_tAh`I#R5Ntl(OzXKChGi z9B|E9l_u`UWwb9+fR^bc8)}GT2$H@8Y1RJk?2$Qgl)0jn*5E1B-#dBYrRp!Wy| zEH14vzjhv6u9!EY;v6*;6QK2Ewyql*49LAAOtfNXA7G#SIF;I5Iz8KfYiW2ufrX>r%CN5{sNV zUryF~R@oK&c@pk_!>v?`c8fLN3QaUFQ4e!a#+Vm6~)G@N&Oa?Zgx(7X}wv37g`d-?eM*Z&D;5s1K zG|dRJ6!0t(RpG;DMlBYd!m1cqZN?x_&;2NAZ2sdMcgRP_z~N%3u??FLk_fC6;32;fu#ZPy^%@_+GHWS~=Q z^hLqSz4#soA5SvNN%fRp_d%X``H37M(bvOUeTl}LW%p2X398=Ya(u;^?0W@yc^Ow! z16iZ-4PcB6pe*QK_#FTOlnenCX?P`h&XgViLuOq(3Z%W2i-w0BEnGH8&Z=NYmhmwB z86f8a7M~?^fy{qiUF58Q7U@nW-U$epY`$xnT}<5vbiWyt(cD4Y8Gvwh@g{%*212iZ zmNy_oEo0>B0`l4#$wWt3zQSa(6yH^DDqjEO_hBI{-z#C!`lRqGaVOUyz2VmMu(4g; z{a3mQ?C>##hW~nzRg5i$Vmb7jucvjO+`No4?qcl&jW|9U=Z8^hlx@2t+!m6NkCgIt z?b<>7RG@^fKGX_-)QoF2K$|WNl}E*e(zRcgE0>9}?=WrOug+8=UM+WCehoEzQQ^L= z*WfGIC|Q>Im3mIsY5ptue6aT3M8B}z@PR}KosIQ%a$NtBuhA2)8yezsS3Y(z}Llc+`m8C>^Z*A81)C9-Ev@&}VE5M+BRe8Hf9wimKN zoxrPIS$adH$?L^4QI2RgFuBF>2>1aYqgRkOpk!oqzTNmpzw4u-DT=sRU?$R+!@|!% zmi=odX{50IXR-O9-95VEMB2+AbA<8sou72Y2;=`I1{^wRF%^EL)^s#s3N9|b`2Fno zS5-L4a=_<$|LnxSu6KvZs>INiAxZKY_2d@y9<`w{?JtougZs*7zLnyn1sfL2+M&b7 z^~?+sk}C`=+rKkJp<-#w+_nAw`SCl8cGcr<)x-;u2&MB5R8gx5{_6$r`!$rgM2Zv5 zJ=pYFFY4deQAIF+f2LWQJ75ZMtwtG=GQ|7VzVKvZ8qd9bvyJ}C|Zfj9>b@BM;=Ao0{l%r~9`1JPjbkm+(3E}R8j>1VqTZ1ZT(VDj; zy1vTU+?2wdX5}&Z!3uLD5{_R8N4YuU{AQj~b8+hzQ;mNUbVWtS z=QO1jzl9D^I2#W;ihSe1v)yoGf09O<6(%H8ee$@ZT_Btb}0n5~*2|t&m z2+0;&&PCc7U1oL$#hI|Hf4P&{Eeg2@Pz<+TC=8eIWa;qvGYk&_#*FWpO zh~Qy9k^XmMq=HcaZc$ujDw1SJp)~f<-NEs7;HgKwmhdN;my7OlgSVH9z2jzmX#_9S z_3?TeE*u;fKn* zF&GS%n!wi!G-Lh?3S^wP!qO~A4iM3I!M$hiaMw6H)q3PYKgda^PKy%zL^cSUPYm51 zA_m%*sxujP&t2@E_WrRO2QTTaf-(wv2?@-1`(6)&Nx-ui{YqcB*lOTB<6=$~4f+&{ z-?3;Z_l8qS=KNRJ?^{H%^@_1x=}HkSi)Oz9ymo6j}ZZAVY;SJnb@d%nLrf7xGtX}a9m>}RzPUv|O$YQ<8MFd%2EBieO@pdw&eO~8%) z>QPn?$JKl`Cpn4pzA%yuZ8G;$d&RHu84o?K1JuFRF^8M7ZZ4zN(=ej^p#-kau+BY{ zE%uhL^!xsDDEERx#^9F?QW=w@Kx}ZJxaz#q_%K!^Yfr{`g&{+V^Kc2}FghFy^O=|goJ~I+2WMtE7t>g(6jNQ`vxNEf zjPdq4+`V?wk~lPXyhU=}uUz~)f3j7}&Ex6J)B@>CELWC`4R3;&)z)gVv91w=e!SVp z@FzqV^Cdf!@!AkL=5fu$F9DRZSTSd zKIMILrN(QL8m=C8GALd8fnUpOs0YvS&8MM_3VewpMlQn_OS@H2rPQBT z{Z$or{#U9@CR^mxNxY&kf?5nIBtV*qNgj7`^~qS{q`~I5G0LNinZ)D|aHuC0^~mKw-&?x4sAVl&`Bq;8&W~C?&GJ``uEl{8zxDW0JPhVnU{y&v z{}flk^j7hW)1t}MB(G)=0XF}*`Sgg^+X1{#$p`Yt9@Cv3V%2vnMLsT7+g>TXmNK^S zx5t&IdGz*05E?yQ-e4EvVNtFW<25R=FO<|ESfvF2Tzk-iM8Ynd9kw)+Vl18!#Qc!b zxPYm0bvbD<)P%10zc6i_FmRx$l~q2_v}R?NyE&@%f0(Fo|7E=HoAJ*NoP|X^Rx0EekWGI2}Id zVQQ5V9>m%@hwsz$LQC{@(BCaq@$|^%CN>j&pm&6@F9K6aUF`5p#*L@48b4%L+mS^A zXYO8bP&(=+UOzT}M;vnEMlCsY!j@++SU<+{`HuwgC27wgM#-!+E%W1Mzn3mm^ct3a!QuZ}3k6A9Rfajdz*UNNQ48q!6NA1KIZH`#L39g^y_h2)5X{kXXNsk_1-o zs^K1XFIVvXoHY*(#o`HG@wyLSpujX&?-W&Lsy9&g#x$YQZ+W{pq>HwCWc{czn45w{ z>Lu0hIJAfS{Wjf!B z6M)Vxbeb6OXNCT@)5+bj0wBGCQpgAFY;aG6qvC#d`~Bl4!bkS~6O zbbdCh{<+r8c3aT!q}2*yQE|G^?|rH$#I+xD`=saTE|sJde9T@cUzdkE(tpKJ?<7O7 zTRsin(7`FDELY4)vP*nRDS+=iP@Nnjyvw&R%)X4o?r@jqq>tIxp6uYWB4 zkP#eA9+&_q$Udn(g9w@y>M-TVqlH7z54~Oj32ZdB$W!Wx00K;V+AQ){ z`7vOTm&oED{OAENse(8$gdZX1=Z4m#dZ4u8$9wRehTgMYuC3JG*7=S2oK{)IE5{&`3Z_yl6o5>7UMeKyBh zeD&+r26ray0*hM2>5w@v`u~{&h2i4)5)THcw!n!@gNebI)v$w1;1~C6Cc^kb36ft| z0;^8qLlRG(lJXxIlbb@U?gs2IDw|6TjwW|`(OjQdL_rqMPZh%dU5X#Ds{NPwvC~~( zXAxk9EG1$eI3{iwZ-4_3oa;3&A*E}`;Hpg^ivUR80KU}n{=Cw4qmJ05@5O}YXkrMN zn*QjoKguM$>T%`hUc8gt^oChiS&pjvcK;4o75G`Q_j}o5=SrFAg8ACn?6s1N5@-uD zmLf3NGzo2ShHvtk9NUA^CPB+Ea8MqYJZmmg43Ob;D4){CXsYdgWX#2nDN?{U)?51qMXwY0=L*qzI{>0w8#K>CE& z7(Szqy|J3Wmj0q-Lb1A686m*E7N5i#Z}7cwDEgx?rnbfatm3R-m&wV{%+yA^;UWsO zG_{R0kJ~#No$*^lm69aPDecK>aVdCjn=nmIS?cxA!gjFli`!(}aD#}xYy^2n7qJak z;9$tfX-c7^Jc>=mptb9Cd47Vw*A6y>&J%k;fg;Xxk6mL*?Bk^MLQd;s3YyQghx;D`O#t zkwon%*}(K@`MHhnllPA2bd=2ZET2g*@;s;2>*Cc`tUhd*S%P!M4%M-KB2Bh69H;rJ z!qHAR6q=-~TB1ZtbT?e)Ep%_SKX?fJxy9r0ZoYdM8l8lf7;k;Mvvy@eaAokmgMd(kl`OBH#Ny!l|1GzLqEnJAFk0U zl|pm37O$dqnyL>NOFkrau$j6!;RqC5ExotTRUt1a!KTXG1H+MNa#`qXnWgClDbE-e z4qkP)YST2-xXI43@4Akb&fgadx~-1VQ&T&u(iO;ha<8w2?pyR}l;-sHWuCSF1x+sj zfg4FXNsN?0T~XZ39kzIWjrBCyhfs?>+Y85R0?IRP{D|l~pXjd=56pR5NrtB0Q#g$_niNY)*-NrskZfD$=LDToL?$N3 zRsA^9m@u^D0?eaTuE(A5aqQt*T=&Z#@^Kqj{#?y3r!O8=9G3IlrJ*?-^)}(I<+%+A z?OXsCS=ESTj{I`*pMMnYCj&Y(aO?*H+$Vixj)6ru=QaM|D2%+L%k*87Fy1{w7x|k(!pUyWE#>%4W=MDAX61=OOv6kjF5{C z;0fY%l{U7hdE3i;v?bFvKhiK8qvyv?8u*lQG~wGLA=}6MYRXi=(3$c~Zd`+3S$RE1Uee}Ye zX;i2nqMu^oe>p(4Tiz}j%)F%K7A0ycO4_3+e%z0Pf%eG5&v6u**n9C1^P=#@Y^+rU^zZ(#gIde(<|+!0fiJ*H8Pv5tyY^5uA8YEH+B4#0Muj=wBB z4wsY~yNkf`>U`}W*I6ca`|CXT>S|NPhu^4w^|mx(l3`O4aUrD{<)5zh=rE{99#xa_ z?Q6KzkFtsEig}hH|LB&5{GIgTW9--*Uyn@J_Y4fNtVMYb>JD*1h%lpX_i=?)RVeoc zD}ua|B0N>N`S%6j4Q&)*m;=QsvGo?J}YISE@OU_$+6BZBL|05Ies9GW8SSx=kwm z9Ko_=9y>TnMX9@qat?{yyB>Qh#b1mYNYcOBD5+XeZVBm=;mF9EJ=4VcD}o7q3Wo?x zqWFh7w-Wa}=ci_dQ}lLLd|>^u>Z9xbpe#*s#Y^Q|5!U(Px>T=)IyG}=4J$r{??&fT8#r_w!9USbah)Xr8m+2 zYwKR{zjCmJEQlQJi2V67t2=%e7-xqX!hHo+bPWNXWb@PKNeZYT3rMh;ei_Y<@FK63 z#B0<4@`IBQZkI6PPhY(oiDMT%+Xp{;$qyn~L!N(m5Ql`Tw)!Z-QPb$f8Y)-)V`Yvh z&I$^O6$wz=-m5}$g0M^_R7|<3zil*R-EY27kQjN-mWNO}Bw!#_lTkn^mB&`TDAe2FI#I!LB2t&flfps3*9E19)yAJtN9^$Wu1Voze5L82 z2@BC|6F>+_k7ujyHveXotXX-6k#;Mm3*JL&_rXiRQ%OzdqU4xL-y`+8^N~xGvzZCG z|J)qnO$-*RV}74GLQ_IIte(L<+?H=5E(z}wI`%tBak>wU*fe+iRHcJ>KA$}x45B1# ziM4J;N;u`XhBx;ib%?j$KkE=pGiPhN`1Vg*!!{Vv>*THPn77;(gZ`OLiUF=& z8Mt?jL3Md6WBe?oVo~m)&=b(DLR_t8VcaUxvSWR#g+ypoNfby8R+$@G@qKxkwjpeh zbIBT4raX713Z6Q0UOM;&3u*=*`;sA-6|PLV?)Idv_6FyYv-^^>u?>zx12)MkMh%y@ zgMy~|s{4vn+{|?HRos#+QftooPj>z~JSP3tCXaR*7TqONr<6^s?rXnf!x2rA?b=xX zetfZ7f8{!X$n!b&#|WlCoc1c0>emHzeur^i8NZ6Ev+50`wZ_1N9jhel&~vWn+cBr> z3Vcc*EbI5nMUs#2rO^XwsCOt#Xpad~eT`}O9{zx#2x%f6WN;-f^TaKGCEup*Uzyi|Hm*ePA(kr&#|RCR}>5;Nb} zp`7#!7FXoxV!iq#5Q_e~)@0N_Y&GquTNzwNE=mfoSt6MnGB{|bFdfqF^EC5BION5s zOB^k>*h(btUl~f)e#U%QspPL5IcY{#urBC9iA{rTC#4ivG~YBPQK>d1LnPEOF@1NF_9#DGmZFlTVt&g`3GqRNAVbf1nGz1yyl4RcQGGoE9Cl( z%cBZ7Ei~-%*_V6pr?O^y>tN$;GGwEP?#W~xxnwv-?f6$$^)lPwXFd>=d~Br;6;Ahj zSJyyO7*ivPZyR|jk+l#4uR^=PC0ngMevm9FAr%z2GqbBrY3Afk=OCnsn*kF<-68AF z;p8Pb5>YVyXB&ERucU{f@TAvOg;+W%g$!ig$Ux~Vq{$j)8tOPbZTejcJGcwEXpsDdcqniEIGFOoAr(!!)?6?KV5k35}Z zb%fv;D=8A%shEjR#2ym-Y(5(^&4b)`5rgI}?ra87=mUZ$8x@GrUg^f)E!Xxx4B5cP zkR0(A#~}OUZgL9-svrDFK=n);MX@gk&)6V?HF10cNmKgh_8h%!7Tx=%j{vq-8%-sz z>q2SahA!*aU)}0&bna!o2Cz;be?#RzjS0g4HTILpYA(!C{T=PCEZ`}A<(oY_`jJ&L!p_A-f{T1DEch!IqXH4bd$^S*6V^Jk<}_;;b*{k(hJ9R1aL z^|JptmQTxcg@1S6ZNdzopwE4{9qB^LO;n|unecU z4Hx%O{(^eUn?@>)BKLzJJa2zyoB{~{r zuA4_1l@qGO7n6lO&s}Ag?coLSkstxVQPkn!fxKonU4AHGW)5$h(nu*bx&0V z%jb_vBQZfJY@>v)1*QbYSxop+76-uT+BZ%_!J09mfg{q9MHyu9={}=)9$k2uUk%I; znmdW(eAO+%%SNJ$5LDP9X?Ps0p5FB%hSR%MMb%$9KP|rK)RJ(@sGx>7ir-L% z_v{wxf?t0BK>6e_%Fw->&11ib{G6T5k7SR1W}kc?l&~J9%cwJ1fR*o$6(WOIBq-3z z`W=7RB#XuwDFK+@q2%m@X$sla{pz@tN28srl(kr_74R-enSOzg=_~DtPlXpL7|QisjHWz(SKl~bGl6*A_gv$Md4 z5fAc659P1C@H=yR&g5iU3lQPyt*G#oYlKavX*E#goi&u(eMaQ}oi0iL`0lMG!QT+( zoH0zp%xGA;TS6XVMInYz($0GT-$YHqQ*E~0XBs6?d*s;&MzB&@71>*({N1$;(m~i5 zg-olEB{PT{3!y-3&STi=$LQylJ+XJWCYVk0ru6EZtY6+-Eg2$@ewnuFf${alk0YS> zE(pnm=z=fl5|Z6kkO(9O5whPbFlD}C{n6w5<&#%rO80dj3C42wz9Cw|O1Tb!Dr($P zlB!HmAVZ)>7rooF?>DN%Ikzzvaf(|2RU%XpmhkwWY*^8LK|Q<$i}1^zqc$?-Le+#& zfAf9xJUB#R7w5$(eho(mh)DQBf18j^_oc;)Dfb?U5c7{YzW)*p^WwlV!+G*8Wl@%D zFGAO}JXZqUh8VgEZJJxzb|97tqt;V0PRJ@LUkJ5F7+(m+8H3gZ{=<=q_WU9SY?vfv zUrfZ!vz9}r!_IvOzM{AjvxM1HZ~0CZ|9$-rH6Z?py?Qa4G49JE9-D;HAhi^>qEd5s3(|ugHD(k1uK9w{i57=B}86E_5 zs%w|gWT|ZvQ$jTGG|W+tvOe&?8~Aj51S{gPQo$AhsUDkwycXX|G;Udv>*8egIs49D zMU$yl!c#_|_h^xe%aJ@CeF#F+IB*ILdK3#+M>I)FC}+xzvt;v;a3zS5%%$A zl!QZ4GzqO@%HKs)44ZiApk=!2+64Ng>8$E5J332;9|;WHJ2-1oePrI~+M9kkV#$3U zB1MHaEY@4WEv6f;9HXQ=Zlhp*;(~drF{CY%N@duHm2#kR{cIWI1xbgT05d7I``f`@#DUH-X9FTwJ9)om8fu za&U!sS-S(#qkA@^wxvu`v6rG{Tj}2$4;lVw0_1eHdW+G06Zo{3*(H}kj{e+Sis=u_ zIEGB477W2J(BGa zMrMC2y0o!#p0HL~Z7}2h!mqQWqVEG@n3f8OGO;VpOi8iPtUS*%tUp5Cs%r{kY|GRW`8ddOMow01X>mWbfm7qexSU9b_Xc0w4Dok6uxl_d$p5D$hPAgnM`=b%`2SjTz5;*tpwq|e_Nw?ld*z-Zc>}upTT7hlBXb7?C%+;%hhoVf#zCZ{3UbCs2(Co#Le#p%r?5unxL7CmEqY zqHO5rn)#mIOZGZh3|bWE%T=bM&tF^}Ha4=diz$4%$DLaNr`$3n(v>pye%T=;!hw-@ zTyne!e%tej49U1j-F<#-R`e2Se}pX;-@?!3VL4 zFBS=pDP3s}&2(mFx+YA_GZ#0*6+pW``Qh#}FfgFI1$;_2-@eQ4!Elav8?>_JIs#hO ze^>k)<`M{)=k5Wt4X+T=EKSmyYg$H_45SP@^Ky^EW4n(6O!WxYyLGe=_5j1mlKRDh zC>N6@ufoJ-5aKG?eC&C$>xC;CIFOtHoNQg%|3Sxa?}Y7PFltqHKh8!-5x_%;!>`+E>>!CoQ_iHxVc4d!D{!m$57;sjFt z>zO5R0^)^yTmX4NkXQ&j>+~jtJ?Ah3VbDMgv6}$z;_-jz+)Lmc0Q5ZqYvAn9N_>eA z2gW7uM^+*#(JW7H-plmJ0vnBf6Xa-$w0wfDKka*fWZ4nKJ&TYB1ptA z#8a2;`*5KCx-l>y`A>}Ya0~e7C79#{Sk_j00WBcEU3g~s0ZfmbbOXTN12Fd#|Hq9* zNK(i?Au|O20&*T8x1vSSQgY;VFoT$AX;^7DYP|`jlJW|taRRKE-XE}VqqfVX{Eps@ zF=74kXzh_7XWK5aYvJ1w6RdWco%lpO27<~MK$=z zX^KA)gR`YVDQ$E8vts?CM^G$bZDqSaOOh${he;Wy5>dy;45jUYR7r)gOc_v-o+9>_ zr>_3rUe^gZeW@#>v<7*Gly~+09b3llohN=@7{8|0_b!}4h`P7@=z?$*k#{{x(9o;eADXLlPvY)hx7v|x zgFSKamv{W{qTN;k=)tV*ixYNE=q8h1+QspVO)CSjRFzjHvequM*6waeFVcwx*9w|leLKqv8(3$ek{Q0dezR_r`WyfNbJ zF@vOO_k>7bEr8@NT5Uv4(R5{`BEV?Gc9~M2xt=KGg~nHIsng9KTomj3oJe`MnP;6{ zeypuZo0dji?*5d}F&fB&iYA>y%-rdd4U3cCBf+5cZC*>*RUB+)D4S{JztGC361J+1 zp&*c3W8~}O6$!u;XK0c+>cWh~ZZR_Nc~g_4+-V+ul5_mvipnc-6q8z-YD?{3hDZzK z3)0o4X|^9;M?JJ)2sDYbor?c4y1rwjao#WQ_>R6NEm`j5$Y4KaRvVX6cDmEj49oaU z(PVlap6(+YMorF0N^9)LjF{c2e!% zibr4|l!kdjBZSsASS`ng@C6X`yR)BVlGlBds}QLA(fBxb;d;IbtNoCcvIIPITsR_| zZ}coTK}eGK;HpS|q!?G)7K5u)h}FZ+=07)p@DjfGXy+C$!IKbZyg_mc5KN{Ud^UK@ z-tuYo$2#0SG1ypwXyYMS`?X;FbGilY87=p#&-!@mn&7G`x;Ky&B)Sv~5&AEI-lzG} z6%o2Yn~bQK$o{pDuM)=O#`M0H0f(XM=4+k(^wR#i;l3jps8ro5-1MaIkj?U8iSuUc8y=zu4@%A~Fq~G5{oQKcWpsr@9-wrav;c(X^1Rnx3x3U*&vQ*$F5zN3DB zc&QGgRCDery!};?bB5&cB0e0RGw7;ai2s ziAZR1`R5I8*!U`=lpD>cFR+k?<*SD-mYw=&>p_Um;6k3L*!V>9j6S;H1?`t;l?DFc z`k)Od#Dpt9ai1auVxOq5DY%vdGgZ5)C_WZJgI4skCjs!q^2{Siw$|qh7=^zY^s9QF zI(@UOIkcm4vY1!c$d@YVBGw-kjjYeqzP0HzE|}!h_Cgiuxh`97`_Lxe_k` zw}E@6ho1q}NuFDCDT3fZ^GEm}Bb)b31L|1BeO}T7f(1;&^oL&OT(SHyplY%o^}w8o zPu)lr_Rl2hz-3_plac%+bs`J9MqB#tJPfW5C#x2(bH ztoT${TY^6X%e=$0J9+%;BwD9;gQ>DworuN|>jr&7*9gO)Zk2+NW=gKcI<@=2GgA~# zO~E*dFdXV;cU6HfY_L$u_}t;sU*{_JS%A(#x}UxloJ~h6;xAXlb>qHo6Q}uI)*S&q)yq|(`oCc`#z>E1qD1}*;RPbKkS7g zMzKoQ*G1q8Nh~%j5(ySJ;gEXaY})ABq_LD+T3Y&@8RB#d*bta3TJsq9(g#@+2Y#i$ zC%Z?~(AE_*JuHANKsWOaiX>b#OT*kHz+cz`Ug^EZ$?R>caPf}bO<`Ex$3ydb&73n) z`tACAN)&&f%uA-dpAkS1)xDp&WlNj0Qp-~n)gbdJ9m~X=3Mz@_{}hkhk!sj}>pN+- zgS5f5?6z|`?h7oxO~s}yM>{+hH3fJx7jRfF`)Q5lOW=>1e{*&hnvSa9Tk%#V(@n1{ zX3CzhiTP=sH8|ztvJf1(ljYEw)Gr*lQahD9ez-|Xut4i?7zs`#MU5QZ-;#PgC?=fz zVqEJkLO@g&KLPs@MZJaHbo3>n9y&$lzEj`{h`TqqTlw`bS7ZoiEP(`hUaE#~fN5VI znQdVSD)Ph{)!3KGv==27%~(9@y9fcmJnqe|^mUT>vJ~RJ>*ex(yGVPpV+8CTJB{8B zu6A_+ENY%;8%VyuMwdx8EznuhsI&V|aOM9T$DRPA4*Swm5QvOWr0B?L)i#SwcCu-8 zfQcU&?Lzuqcl0pWu*tqSrbEXBh`*5Dl%<18Sg{n;%2~8FPw0R&hbA*B*>PF*={mK; zw<|1u_myN~q0TVrZscYtRyBc=7G{x%YeCxsYf;kUz@zF1i7seJe(C!R^w{bAdVjy` zu(2(Xmol}k#<5QR3n|4I>^#La!}-gQAmHnH&Q6QZs~`tf^YR}8l+?!0Q1aQ(njDCY z@1U1odOAs9VwIXw0;C)0nOO=;Ob+iv;khZFOG;!7NqB8@rhL0de+XD~r+vmX%&7Cz zUd&7nW#jmri!(csu-aQ@tu0WXJ4Z=kc?TaexV|}(0t9@8=6Mur!=V~y%@QZ%;3E8a z^bAv-h;D0_ysj0SrfT9`=OoTIa(D!tOR9Hu1jDU=4?W(~G8>$aus~Ew#2{pRdB5xT z<>&H=l#~UksruWKfU~CSqk&I!NBGxHDD;J>Rs89-=`I;vWQ*PeW#oKnSUyOsY*r9P z@GXDC?lYQ2#@j9Bp|c+`NsuLczrzSaq95PvS$<$QEp6*@7yF)e-H&7U9A{W&MTOph zQZWUSwS%210Szg=$*3R^TmKIHXHovT{^k>5|$5vuO%z!brtSRzDeZ;m}Mr2C;(i z=Cwnj-2Ik(G#U$H&+w^h!I~-`)p}nPKOEUHvNv{F3fsg%G_a1vI@tl2DmYu_exu}8 zxa_V$4B(2UTYTPNc)8$vo0RmjWg!GAY8q>F4ng}@xX;;Qz)jz+@XifjB`}SHsKUWX z(gySN)B}^VoZ`vXLfNlWDnx`6TCkH{6*FV@u4NqhyJG?}({)1fMP*6wMsv2BAFgV8 zNLvPWQ7?D@Kdyx|Is}gkMMd;z{f`@D86;#Euw@;(kj|aQk{VIoOW8yfg}dfrB%@Y) z8=i#&vYIOY{JQ-Y|G)8&r0PE&2vt!A7vvdBuL`o0YJwdh5~{L$3kx)50&lQrUhY$# z4sMQV@4o2bHg;XDWWFP)`Z*|KNF+Y#&1rv>{;9|$AZt^IRtna74mYx%ObMo;j3N#h zx&*yiq`K3?HD^v6z-_3w;1s);)25HpQzqvk`JSf~8KH5C&l?aih zAbiXWUFk*iwvAOJDCk+LV@llRy?xH&??TfjPu}8XWu&a#JD$#x{&+9U?K%H=7aXly zYooYId_jo$WN!xQK>jK3$kSNKLA0WyKr1Yof-3o&6m9^4H20CwY>l$)_yNA`voz-i z39f*auH{yUz;?oaQU-H}xXFg1f%66`(NgkP+FsOXfEpY3Ii#oeNtrSd&Lia{i3rjk z4VYgT~iROmTg-H^^-!Kjaw zaqn((N%L(wwpmQjIOSj#Pz2_Z_I82`g?19$aAeyY4$i%;1TEV*Rawrm++KfGmyvBo z`8JThFTNQpK|Ab=KO{WEI?9|4`Jm(O^z)%nNZ4jHKI-^$jkJFQ);(Xt*DhcA0SCC5 zAQpdDe1(8GXynHZHI86a=te*C9Gvnmr`dsF3#L>W9^K8^xHouq2RlL-PYf8vWQYE0 zJMdIVMY+-|#iFZ~>9LKJY<}$A>I3_Xh$~pPSe<^1kA|Ud_{iPl(Q=jqzG_SxL(>+1 z5e&))E$ylA1Mg!)j4~GA3Q}TDIR?m!#7swZ+B3+Ajo1zcd%VZ-i@f+8e#=8yeX$ig zxOPVTeTuPVPI|WORzDMf4c*tI6@N_}x#)4mbD`1w((7htKZX8+TD(_)Tm1BRbB!96 zkh*&%`8Dbn53az*)mMKCr6O4R&#-J$%`_ufWhh6vvYUps2;MtOOtdLIf%~`d-$Q)y zFB2m*PP602n*6_jrs9mMj6WS4QT1eD34}vqW;4S@tcR$QXe(S|9Q^2tu`mBP*W|>T zZx^7+bR9oGq_(IdM$*T%s7G|sjDNf7ahmy9Q9X=?8tRW&D+FCCFDaq`=SdqcQ6n8o z*n-lFXJwN(@bjZx;q{?$*{@*NdI#EvtwPwZ4A9?7FYhCLxZ%`BUDXl&N^aI*j&KOl z44dU2aP7khZ_70OljLLB!^lJlVIL0mj$%YJI`?Zp8$}H6^b!Gsm(P*Br!D(%&L4wb!jK0V6WK5qQc@=%k?&Rz;%*{isk%Ou6sRwJ{n`fMXzUzz?)%OJ? z`%t3zIdBa>%{%2syO>_cENQHGgvkx)hRvqcVsRp`be~e3qQVd#EUQ^bkCt$S)vC(= zcEJCN`t3DZi3+BUrv?e-Z9A{dIDr-m(EyzS8c%UX+YyGx$m}j3_eg*N1Ce3Vc$??~Q&HV)2Wmm=>74u4I`kU6K1g zMu@JzYp{U;id*TTOMm#Qzvha=S#08gL>58Bw^hC@LqfhBw*-np9f}0u+fJdw0CM!( zSA>CuQJ-6?T3!6-=mJ$)vxTl_SzNXlbALt?v(>3{f}F6*PKN5iuy_wWi(u12yfUSO z0c55k-uI=wafYk*1ZIaH*V8ti35U)!aQL^0 zw`q|!9einq2z1b7aHT)OZ`I)U=!PuE`Eg;#(2SrMeH)%_H_z&mprzm;E^)kN(Hr3C z6u=*q2$|B$JO79=yFm4_tI!K_`^5DplHL_lf<-feKf>o1!XcCR4xjX_?*$XC((D(6 zky-Y}JC2nVggQLS&h1S2q0PGwG1K4niHf&P4?QLBE5xe5-NUS=7p=*67`OYh^+%9s z;2mPGc!eof+4MA1*y&Nq zw`EYNmxNwXQWSM(GzP<(ruZ9xrz*9{-1` zcL0v;i@HbSWMbRK#I}=(Ik9cq6Wg{Y$;7tJi8Zlp z5Z=o45;K{WaUh-MR-1XOr(=YWNn)4(y@vh3PTN_j^ z6+^~#(8t)#8rB(l{ZZc_h!(V|`;@y_v|Da|?5l15S4J9G#zC%kV?5)r2O%~S^VZ?s z85a?<_!D~fw;oy7Qb&u`leJ!vG{mr1gG3L@+6~90T?6g{@&dAs^LUK$zRECh;-J2H z88x^-Hu{WZm>%fr9TfN2T~8wKuMN2JkR{#$OXWg7I2gXf!iM}-X3!axBdn+O-G%b# zZl}}&p*KV9#>{>f*lDqLt>xW4*uEoOv3@O^fASSUn++GFnHeQ6iIWNq`_P7DOWe`p z=a~6BeR>Nm?vIxnn;t#gz$gEsbqn0fei$Tw3 z;hXsFuTA)0Zb#P4b}t)vT!a%VnkQ5i#d1<5IcMmRciO^vE!{5YjKHvuHJzDqo#kwp z&PsURBhj^n0kyh<_UEM1joA*~qPw+zD70@s!()CG#%JS_7rast2a{)F_hH^2(((|h zJVZXBP_{!BaC$Bbz+vm_ewSIBP=8R#d3)BMV=TQ9P-HuF6d1W}S$9h3ir|*1bNOK; zwE3q9F>=?Vd|lwuKg^$W)aV}(qKOqWNE0b;+*-!ZJc`R~x@Hita_UX>wNiGEqENw2 zJ%zf+v0i&zyQ!>RER2auTMD?Xc@l2V)t22H;WrR`JufA^J}T$9`bczeh8D9>M|7cI z-WP>T3w&9(xHVJc?L5TQgak{gm4y?QYi=>xQP}**nfS=a>Ce}X?Z-vdK|Avh?&#&p zW!BboOOFqZ>+<$z7v`MPgP6at*oLr*Q(|ySoVP@O@PR;0nt^^2vAJ*`^e<&3HP5ZP zGO-t%$g)~sEn$T{oqCy#IXCcR`tZ+X#dt-NDq}y*;0c~DI0pON_;c3^ktD_RDh-zs z9-mIg^4j?54=1Y__>W@l63o)fLsrDBXnudpL?Hyp6vi4JL4ad&Dk<|CH%=2#B~(62 zHY$`k+1~Na*=B1H{80&3IE=}hLi_uUHiLNw2ZHP--`A8;XiJT?)soJqAC&4=HM5RG z;AJSE*7qi=>^Dsz==iLjNfo;8j|nUd6>^SEca^GQJkB4s5U0Ah^tE!B&~8O^8M}p0 zkR9V>kK?hHthx){ZrVd@^3v{A0~ZV$)~Zu!Eis7S z>Z~SCK=YUPbV@8(1HTEA`Pe*SbaE_vZTQfrPe)A+-kFORwDo2mt591{%O8>-EjTBP z)|!t!aC%zp~+G#aqk(9Vv|u%HHRbWXI44!W+u*E3j8Vj zd{u@QfzaGAf<1eu=r$v`6%r|9U*V-8Uj`ZsWl7NF~EO}Wj>~z1+nhBxe6i>UC>I5fxiJ66EDHt@9|06*4eOe#7k$Sog+7wYb=Z+(KWbooIPx@Z35 zTU7X6dHESP@jO_bP4FCfOa1^F-`~x_=QWjR=AGi$)xT2N58Rcdv zta=qNT0Mmy6nn&((~(#aMsVtv^CzCnrv@01)k!)lQ?c8Y#M}iz<;DFn-?~n~s0JtN z%x31=hZz6Do7H_d9@PuUE-{<22^OEW9sQKBz+xb==_YxrQ}>fL1QFWqoe=Ux@)e7cf!@W(nL$1UvU ze@um3f^?-~!k%eoatgj&lH!~BGQ5PP^}^n6xurt5_&@qh_$Xm{eFZ3@6Rxq}!Pw-r z_OSVZL0ix;sSnwQ`Te}6@D0~Il5O&Hq%&VZKd@+68Iw7@p`dMwi9+dWcg&Yiv-BYy z)-teZ`5;f0tnF!V}us12``=n(a&<8WlJ8>DN&N_L-Stnz$DN zuc;1J?;HSze%`y0B92}Awit~*PVR(GTF%jO%E3Y8h%$|SZ$6FNRjJ^ek#A_R)iXe1 z256{lZ)X|ZR$X;w00w32WBC4w zSf6uZnvtenuQ1f)G-V$SFFi|THX%~m86O3*_$=>XhM$VPL$*3sBPz{pTh+|WSfKkU3gYp(I) zY_u5z&Vg$AePF_a@?cR435T&rhE%zh6i{bBq=NaMkUP#DG%i$3-J9)`ov5R#! zMflu-?NS^2mG9%fwuY{cO>fqpkcnADBZ%=&LsaJk`ogHk%C3fb(Bu>r4*l{OSyIC< zA_}LUNK{F1s9+=UfSNGCnE>Q|B=G~nUoG8jADPyj)6BXuR8L63u zNpeF?MG2ZBBhH(DLH-@Ei>A3@bKQIt1*=e%J1Wh?Z1a>C#25r>XxGPoOE@RCTH&}B?=&t6Kl&`b?8zp>jr5}Z*2T4i^QO=++T?ng zNL>9 zG}%vuS-{%mJAA)Xa=(r$C^zb}2}Yfx{gF5iv`GfIA(A9JC~2SLQjswPhseW3N!1rr z?r?9mdU~Q6kH9jY>h^DizI@-H({J7t^E_sSAg9)o*_Y;%IWZ|kpD&S$`nVRzYy%dtFE7x7g1?x;&8#QmOxv3?c#Ai99 zo7;Fa3azRTp=RRmRQh8cx|smRiM7%+-Xs%eA_OLH(SSfWl8jSqZYdV$QG`A_NViCvoj<*w2EQv|FlD|WeQOjRM z&qt|)k@$&XjCRD)=8DM+XF<4GXQPALL~tx`S!Z?lPN$_%#1p4wf1g*(7%9f~`oQof z-N)E44W8V@gi#^MWZ-C(*(bpuK*kl#Of>sS;n|AFQa7`r9NO$`Yud<07+^wT z1<|#NPiw8fz1H!ZIxu4*QT~|8#}$^7Il8^4D^nk!Q2Kq10w2l9}^Z86DwS%tQFoP_8a?>A*1^BURGd^+){>z8(_NzboPoE{a~qwY{TCX02qG z6OD#l#awP{Mllm~tx-l_i)6=G@)?02kx8TT%SCFZsNkieha-`hMzf#v`x{mQN)`FF z+R;WzGRQ-Xs4h8%ZqY)Bq)?$3aP)CX8{#SqSQ;&6ib%=!g#0S#^YgWLu+j#3F|%ky>(fEcc3< z{oUZ!1K+?B4|MBTP#bXgAHLeE-Wner(CmL%#}O{5BK{e1j}bxAtoh(% z7p#X}S#%USOp7{Nk@^%15Yk2-{2Yd1?@%d5|7ryC4x>tr7b(*?qKpnV4#_+Fj-q|{ zhMT8@haVIp5P$!~^w}eUL|;68{V-M}69RkQ6T0K*)y^GA-`WN_=7F}wqtCEtVxnFR z))PID*((bQHh-Qs6)*9O2p=`-*TU08$jft)f#%K@Dx*nM?_S|K%)KT^_28Nc-*gp% zm1Ei6H_(8dOmSUlScX*FNn$0VbEBFG)bW?Lm~>jgYN`CoGvDFb!NL{$JGt5Z{U_9WvjNT1b;2)cJ&<h4>cRq!hR)A${?r|k?z}pgO+2OD1S@hjG zk7e~~9knJU8RJm0u6qv?#PpGLX$t(70?24n#O(=cUi95oh&aeJH$cx&weljklHuS4 zxYNuG0{%`cK4bEs#)E(yezwFn$ZS8e&R3rtoSyGNpm3hXsQ<=aOwIu;Oi+*LX9Z+b zi$b6$n9BZ>kreD2`_A9h(~<>9yFpI}RCBfNP2#Bl#_wNWuclTlzYFM%vnBvkw}1>K zfE5eSi4D||f(SAy`&<23l{=GF`EF9FYmLhPc;LtK2*5>w@P@v(w6oL!ZOOlT-}89E zY?|L&n0nglt;YPL;F8{F((YvUdm`SS636_9_IlQ=ww#A3eDxsuzlWi0jwtDhD;u?S zM<2_4JI_34)I9US5%-uvT>ExLZ=-d?GjucV__!+pfF&+*h&M8>vfU|b9F zu#mkAI>?UhHY?UoXuc%TlCXaO*8<`C2S_;z|0N{M9 zktYE#y{V`P)G?#ql6sRE-L|E4G>RnPr4d1XSnbD7G+Pe!H*-pFAvg;z>UyZihZ=#7 z2xphL)?5gFJ9Y5J8ALutU{Eb0EV8KG&o(yy232A*WK7b*u@WrSS>Yu}E0gc$LB_v; zc52|Ev&{8Qja<0Ub%7@F&|m%9Myo!3gQRpT~6a=+_2ZzzMGI)2+x}7Pc3axOtDB!HbpbW37VyTy)pPw zXyth1Fxb_Xc6zUk=61v)$LW!PpC#u}?dAL&;ihPzkD+qk(LsY&7HU-$K}1#RcDkow zH$7`x^lQ3W8d?Mq8(f*zS_KDR$jJ8DYX(;YAG7fY2kidZ>EDe;uRP1wlm#@YgoA`* zuU$8en3c3NFFh$G3(yt}(hlQ4;j&q9yqtqShUsl9sLL`)1b+Ka0R7l%BLj)41ax&Y za`%C*Z1dn3B3>}X=?`GehZIg9b91l2ES zh6@(i-V7Dm;%nS?ip7b3T8By+ZrKm*D2+v=a)l^I#7?i z`0um$qCm%2I&tUzN+*J0WZVDEKtI?2W?(c6@bZ1pS8Q|57O3tK(_4UGBm=f=owG? zxxV>yCKn?7N++bl4?j<$t5jFG+x;i%p}8By%jVAr)oVA5&!wNBNYx0@V&==cdDqx~ zmMLV+pOOW8?Z;FY{^*+kf;C@1@OJC#4$gnIr=J8`V*^%ix90lC=ORl0-Q2uU|NlLs zKY;l8kl|PlLagQ^dDO{zygFWQVS!&#ID4l3$0453euu%fJp1`gj7IU!d92e0MxNZi zx^2Tqk{C^6P3`Vyqh5u<(noRQj2vh^N2LDtv0Q6WQSYg`A)g{GlymA($M;Q! z?2P`nQBO-l0q1Nma)juy-`sns2S*#skamz&mxuXVaXeb~cOAOORD6BG5$G?sV0EO1 znBq~DiXe;?1CZ_2hEUn~ZLGV79>v~QJMG-D@*PS(9I|E|o+dosVM*HkCV3z)9S{wR z8FY+86n7tSeeD9JqUTDAqZ7wj9NT?XOu%vFGDm_8C1`hm-pZfR^H2sN?9POwEH3uaIoZQ8l$5X$Hnw3ojGr=1q`ig!gQ_S;w3}mAnLwxPNeLXNfY`qLGsT##Ki8OgVHQ2 z44P{ocawp%pqcD@K~)$(!e6Q*ca617X;?dGCtxsXQrfUjE2Q)0XixjI{xm;sfEBP< zc8wR|EB^Em-1F5k8J*kovfk{36rU(F4J<(V#`O;+7u1RNr-=^9aI`oJm(-fg_$>Gz zGO4%TICiR!`$jh?I`%gy>A+yI#0(q;o5O|XlY4|LMT*a11%Sitw54vYJ0|DWw$jBu zZoa75M7E^l*>R>^iQ3!gZo5y#CN<`uOs-{CWY&|DmIlnBcf15bQnieCgyA|!`=DTS8ytiF>f%p0Aaq;HUq?TezmDt@JbK86{MBtQ;0=Uoo23d%xsGK9M3rT$ zrlt(Z>BJ3?6USE*`N#|thF}d>hkXijV(ik!Xo`P&P&Q^^p4)$E%BR_r?)H3(yO7^? zGIkMcj&3h?XNkcvvRr{$qWfnWF2|c!(=x?5icg(7gU&7@YgkWH-BT+~L)TfGGHjc* zL)V1vtzS&NmoZqJ8_eq|T9M4_m=7bi`m{X5HiE8C3@ZZ5DbcGui-awLaG4Be zPMCyN(lk_bFeQ>$kG!uH+Y!=lPs42{uIt2DP$2bnn5~Nd)1S-Msc7VIRmn1=9$YFe z)Fjb&I%r?^2;WdCo$cgVl9&H5vfu5C^Ji3tNG2KNMEL!83vw-;C_!`Y z^6o!?PNlp>*7h$nUfar+05I&0WdP1%zG^ercRlrA@WYoz;q(2sONc67bCXypQW~d8N3Hg ze&bPp^|UXhlHp)14{$6J_(P@rsh!@_ZgA$0bwmPuK_BnOua~S*|1bQb&iBcR1u}zH z@XVb6&dM5WjKxUZeJ2xCpR722x$TVT9hb)7#i;%3ie+{q3}yzUEjO`f%u;!JiBFD! zftsAE${Y>DDcT~gP*5r@yKEj;xeP%eM4LD`BzskieuYjRQe^QPq=MK9$w;IaFZs4- zwQABax#z4@>C5*j@3_a7OWUn7`-{!ZuAY|W;YWn#-%s`zTWwuKk@t^97x@KmT-P}1 zV#_!ZJW$ktgo9Ax8C?K%TJkhLV^- zGTharXtJS(JiOsPjwViW98H(&g;|R-1OeKbKq2M);NdiRo?;D$@4!fTSWNBRm>M@=UWvpzM zmpnSz1l!)!~$C>!@%V6m0!nOGpO&G}nyIp=NytBso(&87EeF{ZSSX}8N776tAy6u*3a1c}utykqz zSUuARtNam~Rw%WYGIwZ=#na0`%-O^5+=PdoC^#9o3AB$ZQ@)`if7Kenhy8y*gJ#PI zkXl_W`wlQ1WIO|Mjh&3esqV6XV0jNuT;c7@%|j7`fHjh!W1GOuS=RG|TyEN_+|8wwLAmn0_<41hDqOxV{$ZjeK=L zYx3{E?|Ji(OkWdELr=5mLU6?&i}H5Mln?F2o)qXZxz%?B1Sx8=NAfOS62Ke2i<>Yq zj-p&s3~US%Fr6S$%jzqVUOkfPsBmeww*+U4955TEXQd$y=>1DO>FE0oS+Q^eAMoPa zNUFwgjhdC3-CiH8iy>{Mo-^vhh^a6{1m_?#neT5q@rDS<|d}Xm?M2Sk{N6mN-?;rX@Rc+a6{f1Sz zT`prp&tEv2GqT^!YvFh8q+@n^$Pdoz=i!rZSJs>YGF5(=;S~ zO6-Qb>}oCHtiBe_<7#H^ptq^~-$M6&%LT~MwyjbKPyK~6*=6<3I>C$E_$+&4zFQH& zAf0_$7Mnw%e=KXB;hC+&T1aoQ(wcQtD;bHnj2Tz59;MS=Chw-nQ^bhq4Z-B#M(o&ev|$NpdU2*f6|`|U<|Of~vd8d-_!X@ z#nOXj;7nK&)~v?YCgCF6VQG9(-L*9^{<3$3zMY$mPL_UhlS@(abemeTt!nyWCL2f9=QzLyJ7k_r2yod zyPVQM^SR-`BnFY%k-w;T^=ztkIjXQ*{XyD8oOxuHNzxsI;!!vN+~|bW5M=^2Rj~&g z3%kUGH-L>#S+QMb-1J-wjPIXU9idX`!DMw)Ke)|&!jix@SZ!CVY|4j)c23i5zf+=h zGC!UaFrmLYM8FfJM=DicjCVnTFj$oY>jjyk4`Y2^nF5(dBNFjQ9luQf?d$< z7a-Tge!Cz~J7CQ7+192J#Rl%a8Cd#~{d!+m}~<-$f;fCfC? zeGZ@*TmbiJWRRjQfMI&zV{8BOX;qMH3P>jbaXJT557jX%-?k1){vc=`8~G^2nHvN~Z-03-AwC1(UG`!#a0fUlV7=nrxa4}XL<0W`OMv3;G% zROX+I>f6*zOsjrchFf1%1Xu&lB90|lhfE3XlBj~pt16)J#36iuIG zB&h+={{a#3RRWHwM)jiqKLkq*2-EO;O{M&D(kbHTXKcFmqhO(PFcoS?X4BsbFgA5l$U{))z1@<>)9>4 zLN&vk8+iNWlmj9m_(j<2cJXk31$@@s_qYSlc;`>;%%05JFDuFCt)#oH27k&&AW3Bt z&T|}Z{!_oFxicVX>~0S{|KU#48}xWd8BH)Cf~a@j(~&6bec9kmA73Z?1>kxF?!L59 zr`+?Go^*%+&qqNSn`!ztVCWCp+kdjeli>fCjz0D4I=^}<|7=otoij4}xN7`VM`L4F za1vboI-48>f8f*HFA;cg$_2agzk~=do&;_OKffNJ(Ouq<<{c8W=dIx0XY&W}e)^S* z{<}s0qe(K_05wu!#u+DZnqBpSC)D6mjmI8yLojchc?p;FSFB&zX4>zx+6}2JDb-UNMowR zf@~8sqJVm``MDvJN}AB4e>&6%&Hb^3n}7Gr+;M^!6N?9rQzoJJ4QhU{?z4D<+btDFU-0WL|3LzT?S6-tRkA6OQ!-a4Sg>z}Wn~9M! z2j)~Pl8*NZ?H|sC)35bXjjX-R)@mEC_lA9ass{b95@pDSu-7TKm2$WgJQ~Lec#}{}PLYDDmCdQ|KmNra^nD~?eB+@OgRGq?h zl=iqR__)KTUH;-*`u!;>h+z)~OBA?Ic4|jawk$Ph@?s6gQ`7xh`J{#4|K1h``7QB3 z3dsdt{4I6aS94+UpmTa{T)E+{HlBdBV28#PGnz#$tv>2^oYA0~fzKfNsm8W8Ib%k%kCV&DMHYtN~R!I8P5!5Z7-z{dHpAVk>4qcT$kU`K^Wx(zjFfGQHT~ zcjd)M(Q7}#1~Im)MZy*%ATlw}72rX9ymhjVhJ@)X?qebl*ND3m@xhnVtFAPYY|)20 za!g)4hie~x;bm=k>YG1O#iuR%fS+7?7s78N;&4)l=|(a<1=-^fgyY1647Pk zbUB>!>UYugakrCYKS8kkn7;j4sj-0L`ny2-vfwXRTQB$awEL9bikl<1@^zo28k0A^ z#H`C{fu}+L=~p4(IL*7jSA1@C&*?6DGVtofBn7fZ+#lvVMJ6C!v*lY(__4O&+;SrI zmA7`v5;vV+wQ9E%x%6ch6i7>->7asf&$(-cV_1W4Rm;E z!>v9ME&-{TX#Zs?x09->I(y%qd6;olmyMZ;<)Q&E{}lxM91wRMHycQXixdhU!N+HN z!%vbfBPBv)E^0JbT0|rm?B4r2q7jlT!(x!7ITf*EzrR)qa#-o@jT(DXB%+Gz2wGJUD!p*m7H}WE_Ix-ljMRrwpI@?SU2SJQ-_3uygBx&J(C8H6 z!S?;EVVGo;KLl8E?_YikHVrrvzRT<={dIMsc7L zXBHj&7<__oI+RnCY?I^qa-7FGhAgKROffe)KH`s(dTCTb420G>(RGhZfpm;)^ybP! z!rSn0SjaUKL4Z|MLYiB<>RxQ;U@}e$t;9Cl)@0Yv_^;7=7P(EfsuEEfQ>D70ZnBlD z!o7+;(qg&t6SqOslij{e9GH!zt(uAt48CvagZm{SICe)%s;J6>B?694bC(O4YvB-~ zYKozt=5YfnQ@VYVMJ$zYWsxK5@!m}8YF%rC$TG| zPatW~3iY!?spg7^=}`lb2jTD1%r?Jg_HN1`!cb{jTDa}6CB&J)Lo5O_i+`V!kJ<$s zAv53f`UXuw|D{X@-e6AQ7`^sNGDh1ma#i?q8KCKNRJYS@F8oWrM zV@Z+``5ZW17iJOt*4n!MCg@In!nvDKx$G;I@Zm-VLe7LH4eWgNN;aF?2+2d_jvPIM zF+JsS#2p-(H$(pQ#M}vjqzI2}TapEuJ?*tfO2r*3Q9+96Ldo&lRDX$or6kn!1DUu- zz-JO60CHS5eQAgvlr|*Ck5NR0=mS>ZBN_!uh@ctnUnwU@6&f-%p(0MdfwPDJy5^4< zkgPt>6D9j6@MUy{VdHUu=j5#dT>aTFEhX82D%~eTdq`F2aUp|kvwu7xLg;VR({Tjyr&S6rbbl~Jvj_HXz?|9(WtGNXqvO>9|m`no}_ij{bc z^6BF4uQCP>MJ`e*aAzFcDWpC;3#%Hpj^?H-$i?LYs)v8AJ>DbpW{nKnd=Fqn&(j+n zO>dj#?(UbkLwzb?DHl9K-kX=YOSH+o7JM5Oy{eR>U;FbBG+JmU0Tct#H&)Gq4eh2k zb~UJ|YMN(5m3h0+Fg;H#cpRPI&75N_arFIV%h6}>VWvXG==?51=w_1QS15s?5;qyM zRLYZhFvwjN4lb2pDUm-JP^aJq%l^oMm=e^2!k=@9@q(7A@)_Du%L}o1;8|UvVtm8F z>5D>K1u5E$FT{#Sn=4It7+xgsC|Y@*!kK=*@ap1)|Xs(l>~PIt5!1 zdZ$igKKvX4y+QW#me+=K%xLFD(yUrDw!BA%{cl}lNrkae68+7nIvkabkWr>zK+Ccr z*w4S{a~i@Azip5d@V>meez>eDiDWtRDD!A5C@rxIt4R7|&*@4-D0mPZaegBo-bXM@28n_;!w4dzsBmNa;`6ZMthG?+(OoSq=jOYMeV%!N3;o1M%py_5gbAm0UI$x`PhgJCxP#g?Kp=AL1<{ zt`_$GHXK3f_N@p+vYy?q8*(VR7I&EZOgFX<8dYXt){QA;B8Vfn)XnxHC+6)Trs^Zd zJsrEf!FEsA#y3z7)dL!Q%C4(=BnkNyXN>sb(&l0l(*Js4lh|11KA0)vi_J)=hsM=z z=;$51THClMgy|NguiN`p<})bM9x5_Bg(Vy%M&+52?Pryn*ZC)#8RLR7Y1H%ju6F)w z!$dPY_=u>Uu7(5wVRv)KgTd}HX|I72BJ%R?KBP1(vNib|gs><{zSC5qXTuD-i z#Zfu)973W7I0jxGXygtL%-&uSu@S3y^R`FR*G6AUMO<&E8Sbun~2M4t!D7ZgAmbB_Y_;el|pp z2Cj2BSJO-TWRB2Aq6{Iks>LV(>q< zZg&?kw1E~MSIffxDEUGl>lo0p``8-%ymMj?z)xTdgRN~v&~K+Wq?Q&Menrgi_?8j5 zf^pU3n;GfkVB{w1qb; zX8Q}nI8b*>oQISS(XOE+SPozQ#SG316fGpD@(c~O{a~|bV%Yx9z55(2GS1I)O7Ni~ z%`asIO{@h!b6XiiUwm|$NORiCUqru`(Y%6aub9Ar7;MkzZ1%s$QV0RVZbDm!T^xn;E{`%CUN=MWVIjGSM=RYc18GXb)(m#i@x+VVw?$ z^kKXRe!(M{e%S>^RSJzQo8{E@d!1?1leF&QB$v)VfU_YU9!XT|BW8^c%6oo^pZ2iI zbiXapo&tUY!XYH#|zyonk95>mKG06zH>!i_<4Sn zLO6d0FS?drlxX?yW*QAPjfl$~wc|w{i;29bW?JiTO?}(Byd9O-;>RN4CMoDq-7g)% zA&A*ssN3BQM=ZIYFmYblHigAlOIgO&o`0dS`%apGTT-j_QoGT`oNi3%Jj=Z^hH`dm?T0BFkF z!{(fuqPzsnStGFxf>cLG0PQ&ZfO3uf)xVl$W)PVsSfJ?d2TLie#jt*g`>%kI*UhDm z9Pc-29C`hzIE)|5EwMt9 z{Q0Mmw3(#k0=qmpER&fk$R%zhzpog#a?itX)}lz3o*qwWeVJh*A_Ftiih9Wc&XyxW zAP`;)B`JQq-eQRNUc0wU12SE}t<_BIsjdiC-VSWYV$Dr9_OBBzPT1uuv?1I_4LkXy z9u_f8fq2H=#g}x6(4#i4Rq3PlG8r^N``d_M#Bl%Bd(DGRe;@{Y?F){hmK}aCB%dS1g2D z!7AHHOihP!O<6=P4hnl<8q{rv7uA@=eV8lbtQ{u?)ZV&9S*LVcoER@#+Y* z=lJVBlCsHy*<<$oRzB{LpmsEP<5!Vh9B;$o)w!KutFDUVkBxW|W877A{^UC-4P;Ed zI9;?K(m;Gutfb0RBz|fRMSUD(2%pNIC0cP-+Xt(`%W2%Oeq)O4c*ys;dta&zbTE{luI=8l8m zS~J3(q#u_P9f};OOJ!vrLMvFDYK9nRR^9Z7o&IXv)_u-eDSj+{yp?YJ+>)D9~0zy zxrft@UO|?0^z@{g!)*#A(;_p@^5&cOTN7`hweM1ZiCB zJwydFL2?Pf5Xn>)p&TVV@RkB(e$dK3x!v1Paop54Cs3sg$!GS+khIT+88 z&-(To?nnaXl)UZ};rWan^eowNpIV|%+$}r+8kI7S%X`M`#v=PwQCcX__gXyjS}i%C z`;RE_L5eJvu{Gx38-OtZxEq>UdioUtZP7<6*z18+g_?53VL$hOW`T0O62QOu4o_Q5 z^)m>Zwe%NFXNF0d=qIpZLl)NYDM??o;u)sUae`+`_S4% zx~O)dL?W`mLE9~j`#gOo01M%LtT?~kyy8B43-WW3^N;aGy_(-Cln#yQfc;m6H$=@k z1pOgT(E^pZ7NZu@tgV)ev{Q@mQkldQERus>nX8Y8Mx|}cD?)b;(Ewdlb`u;=+&+Zt z&`W9m_sG0Sg`=)vd!g}=fT>l%Y-fmCu7*H}M^cK)Z*NQq$;G9?g17k)w88(m7B9Cd zgLejNb=TB;YHuXF!J2(_A1WY3e$Zd}TP}jZRMsv@z=1=PBQA_smAug1r&`(;tx+dM ze$9(M=NwmDQBwX$*jQ|?YIDRyPslTa_*!G=i$g1c-6!^L%b0q5*DP=O}X9OUlZHbuxb?Jj#7W* zuhurdXN?rGr^G+@Na@)Jk`&5+SeRvH&)3;;76}~Y8~nSLQYzCDV@Labz~4YcHEMgRE%Lq#@g zO;pNOrnS93njgzbgBa)n?6O!Ztg`wqmgjIathaLO=*4wZRSwboc94D=9k`!=1`>tC z5vDlRn++$m{x+vnGo;;*Mp`7{H+FoG{N`*YBG13xvfC1jOzPwD*h;r)7CeWlcWtl! z#S6iI7+NJc6;|uo(d_uN^qI3Raf}FUc4<6Ju9xEilAsligLuj0`i-8o6SyCv*0 zd%J8MseM)f=QF$F>HcXj7V9M2>j3ekSZw&F1aM*hNUdCEz{_K4 zf_o{bIgWJ%^E{e6l|nLOPfYfu@e?z{xXP}N`%w0$H}{_J+GRwGnQ8}!Nc^w65lZm7 zk@RiUh8oiQqjRo_J2JVfz^qwWVOUnLJYoG#9jF7VV&Y#soE<1MzrZ^bdHy;x>Y%g! zH9RdAx|(gsQ7)<@RiYvZN6+#nvlJ5^eMvTO-;jf@P-Vb42ALUwM=yq>0HMPfY2*F{ zsgUQ-liUlfRtCbVK`RaCCXz52dK=Np48ci&4e2b^2j(qc#T1}REsV{rI!p=8cE}e_ z-4zn7arH?3Cqy0-Uf66Cvqe1KgnRiaBPv%e5>A(;hgt@LH>+ZwxzrVkB zZ8{JCR)7=Eo*iCZUZBv*495J-+9T_-D=10CmYF@ctpGQ`y-+bh7r4su2>Qu^FjNRWFJHU?iL654v2;S8mgFV( zqPQ>k2rWr+8K=({t9WF_=dufd~>(UQ#Sjmk8*T4k3{+ zNALq~FKUI@^{l0ihMSBlClgBv%h9#<@5L zb|s9p5MNkx#(V8G?^R0*)Ib%K_Y}1$&{>2Ak3Ek&MeRNEY zuwS-V+Bn;S4TyNxSbKpD3NI$d+yGKo+FsO#w4E_yG>nagbiQ@>3$( zf6(hiJ(15Mz}yRiPBW9|sXo!tuJA@oi)@0sF8N$)Em!b%?2h672B%C9?Y`g=Jf=>- zs)74&#+Sq=R?oNNyX!3Rp?Pj~i%Y<{>YYLRAn2vkf-6(!7w>Iv-n{?`BZ>0s#`#PC z*opc$%It%aPEPWt2=h*DritNbvG29Q7>zU_b|K#eXde}O0o|oL9TDj!AJ`IXOL~sE z%sdk&c_qUj7T=LRwuk)CK#p~DfjXTcH%|^AN(r6~M5*2#K!pA@8-!5VngBHITWWPp z*JoBXl{KmLO$Ct&B6)~S1*30KsX(~=cupuNCKiGrK|D@d50t{w*EVq4w%HjEoE8sS z0s18deG%1?8!MQEE&{<~;8=ZQyr+J~D8{+Ofy9E5B5U5FN!f0-E!Or8a=1L21)Q7j z{I!fia%0Ub#rMp4y*)#M2+q1K2+yC10A9OCB1jd;E zs|%}>`M-?EG5_k-1$hEw+y5^ut}fc~pI28FC-J{7<(b(3Pwf9+GW-AAjE@a4HVIi5 zztEwdr)dxmOXAW1HBY4t@z*u2M6(H9#zZnysM*Bu7FHn<;6s)XFZ5!JsG32uAMsN3 zCp$jtg&LU9m8&jVE$yTdQ#BxqW&|@xWP$N%*g6hlTx#qvPL)xGrB{a-98fq8`$5%c zQWc^mwzL;|Id%x;1>l$QgGHz8XIyw^RA}I?m<~US$?nB8-gtmh( z!7Er?A<4uhT8ztNSA-ROCu6i3#g&o<tqYyk;1 z^-^101e9(npaIe}LfKF_jZz{XzTof;%zy60pM=3F)p{p{Th-zu12rl3gI1rfDgHja zqLb564=gU01|*$fzLU=mGl3@9qX3wX6h2eDBU{NuEDLDWDMX05>ulq@#Kyym!Xm5NV*B zNh;u@q|d1oMKA!(=j$CnaCA;=0OtcPpjZtkM<+gD^+GQ;$}f-345R+ISY%sRe6<4_v{=CiSFtHymIAUD*yw+4h~e$vW^kudI6ki#fgx$ zhv7D=SP*~W;h443IEEk{7&v1Pi%i|@tOu4(o!|`V(YU#Fj1R+((D2^HpD9H&H0*VQ z22E%{QEu#jaI@Z{()^>6*ADznEN}dKc;f9uybfDVtQ|kJy9Gi|2fm>=b`Ukifu`RF znW`x!KwnvpN*_-{c0=_FNbo7^0-WslS1{)h0c6D|O;i>z@Gq@gUhmjEhiIPj{B~1o zuoZTmsLqmDqxCQ;+gPBEdO?8l8rHuRW)zJF7`&NEx;nk)Inj{-nMn$$aVd`Eu`pR| zwlA?Kg(ox(fH{rZf!~9>AH-}9`OzBo zepFq63qPt9r7dTod1r?yvL+-zAz3%&BK2RT(-sOL2g(%)37X#>b;%kcN zOdnm8&xCqZcDAb!K!p+w2N*=A<83T^-7ui&!(G42Rz3r__||H>?Hx0Ca5)4fk8Bz6 zPpfb7PX;c+4q9F+_3sY7@ZgOM|L?A%=3Q07No^cQanPx-g9gg=6vWWymaGsxL==Qw zk-|f>xjUO}hDRZVi|!w@9hv@S_&H+}&+*Gh3(i!`3~SySiYAC1%to zhwCH&lv+d$6c=0|b-LJBlZ{C)$k>jfg#$f8Z89K$&GEboB847Q5P2xVb3oK^wlB{x zY@P_N#CJx0+4U|#Q5U8_{5az@Re(QU%gFnugW@q`j` zAH^4+U)CAwcPV3`qbS$QvN`3Z1NZWSxS3l6tz|=E9qRNtRSIU6l1#<-9uZY=n70PC*NoVMZ7B#dH5gN zcXfkt4^A7eiLqSL9?X@$F;J}VhJ!s*DR=OdVa_^+IAherN>^hzi{nXZ!g0)v#+V^bFR$tL9VHj z1D)!c+*<1(0M;A}2a>e)TA%^>CTyyPcD5Z---wWL8xmab-QxiFCdSj@f+e8}0M9#K zezaD=N`UM}wC zrC+d_p*V_g2ru+lcz_mV9LJO(`pt!KSFX6 zu91RY))zLvjaC$EC2-2=ouh2jVJEmjqPTc%)u7c9!&V~gc(4-xfR)8ptFAfaSj%-* zjTvb*j@L}fNr$vHD%4;f6#?8LLAS!ek z5sGJI)o^ZZGzOp}Zw+Cc$(v=tWU5!La60ZhD)p85S$K%ZVRPDnvByyhAgFurroo2c z(yn(1Ie_FLraS0C&Uph#eLsGJyI#Uh>J|gl3izG~ZKNJo1)(VseqSW7wNGDqQB-h9 ziN#lz8e~oZGb#&rwXSq`fU~fv6#2Zg=DKhPgCi! z5jb8)`FD>4&RMv9ACO{za(ojtbBqUpoqIX#G+G1HY!F&Ns+4BQ zGq~rSgmKvC<}++o@!lKm!(mH8!xqipyJP5SbOXnV$JoWO(8wP9C%EJz?+!&a7$`hSwvbkzru*dvZ#iU6wjRxiy4WW)^9Zau?v^Ie85%(vSBFGya7EnMZFpwA=ue`)@IOimBZE2>zu&V#-EdhNZPy?vfEoIBBh?HSv2L$*#t$MMfHZ;h9>QrXM2){NFfs&X$s547CN zl0Bu?APF}_#IwV#Kohu?2fej5`~x%GYiZJXxIP|WcWq6jw+0+w;1nzVvw7|6$hX3V zz0qvq0h_H195%MfW9wE$MtJtJ4qsb7<3xQnqz<2s{G{>4yP=^TtcbYG&6ygTG1ePW zR5;Rr!}~|nCw^ZmvwzoNG1dWO&|F)iLsXfj260y6c*RLd$FVkhSD@3>7m8v`G+K{4 zewQ($zDBHy#6)?97AF5;TJ9@62fDf0#TB0CUfz~=q~SkE)e&PC0VTeFRSS&>k@EoW zjOoas$Ltp$iXGmP_e+HCNy|bG->5}nQqAk#L{$95BH^jMU=s4z25&YknK^zt3;Sit zpAH;^dyc|pEzT7JVW_eR4^hVLI~?_3byFo;+raqh_yT7L6VJ0L=Hn5wA42d%U5M z8USuinx$Aq=_;{Pf(j<96E6gcReuY-$?%S0LL`KUjv-oV;(CcAt~&((6dz7n3}1|C z;wbS;i0_+WyDj2^=_>9)`>1odm-c-UhDg8{5~!ttu`6qal$@k=PD%a zybVLG2_uGU$F)b;{nkTwAj23?a|p_N$?qe>lg3P@*VV7F;|IKH>I z0PJtnfGFVDX`ku&U*i+^Ya82lYSni0qT9&P|12#mB;tRqEKl@5m-2iH{Z1V*JH(YJ zzn_ygq}<@MxUnal=#_T~HWkKH{v`BCO&T0{2jJNX9P`SjK1B&;TP-XFT@Ye;|1_e5 zJpaaTcDNrZ?oY~}=E{{D5h|oXb{8HhJhnSK$xu8MRO;~K4c`6`Q`b!Rz@Wd=)UG#x zNNRn62C`^InnZw0V;ro zsO$22A=!WL4&1Szy*tL*L8B9oCum+;tnck_Y~HRZ2susZ_z=Cffzb#bu*v^6DAygd zTHi*OpiLQ%K*N5Q$qW$~-n7^pDz_^+*=S7+DLCK&0cHmXCgudY&1nXUeH3=DTzN-P z93KJqyH66IrVHj}=FGYCrraQ=X6Q=aYJ9BOt9rFFws;$T2?Y&GaGv0eE~>x;gPxh| zXo0@f8=dkc)f1Dt1FBHXWW>PIY4{{W-k=cEj2dxO!%ondOEq-&rrs3*7+MmFS8szY zjS8HmfH`~6SOrdBoIe}}L5uY6F!c}_BJ5YawHfTT(79gWKbo4F{h`n{@^94nJRRjs z^^@MmCeL_}CjSAMJd5kU9Qki?abZ&~>%6cIO}rDkF?$QspXj@itrK zrX0``O45GH)us&|)Ufu2nD|_l1$jj+HzmL8;{D}+A(~|+BTrb^EGL2B8FbL&`IAPt zC>5K&8h2kGxOPS1@morn#!gKP@66qRVuGQY{ZJoV*mMlfrXu;xk>U8+3{|zrZ@>7T z^5TSE;B6EBQa6$HgJGS`gjR>I8vX(l>iDC@_%-X@y0^7^7jn2m29XE1YjRmN+MdXN zrzLC!^KXEkxGvmqtlq6I35Gb{k*=I+yw@3vE@ zj$uh4AXYp%%z`wu_x|2~?T*F=-zDvs%;@DSb~p=xUYPjR22=Bs@JLHamuE9z`PHZ9 z*Unpc1V}Mi+Q|64(G9xB)(iB^3ajYOd!1C}p9iRU`!)ivd1!Fd$20m}0h_rSE&qrj zXmYF1#otw*0=3;6vUc+AmXTi^KM96q<60LL5POup0=B{MKw4!U*%Ja`V+{{7@yT9cp% zI#;6zV3cNqQAa95bDnFk!RUi^w>$E9*&0B!Ww#5)HBhYV06ncX-$&;YG;GLlJ_L1J z8JZYnP%1L6Yg~F_Nxn2-Md&#!gCQMb_-F29N-Iw$^h`$=wNDt6v*Q@RvqfJK6gt!8 ziidA7V) zJJCf6(N6HgARZOI6A(O_C0*KMbSfPZ7UgF{GCxtvDX*4jK(eIl@?!R&&O%OEzI$O= zxs#<-+ljJPC51Gv6gc-$jcVN zxtiD~{R5f=sFcYlaf_nbu?*d?eIp1xKP^Imob!m8F~NPt$ubyDe!~+r|KTje8!L;& zSrKGh;mc(-qhR}BGTp}f)NWlFECV#>)lSG6>rK-Lp$D}Hfu&OWQfp*2k12IIG_;~6 zaE5*j-j`>RR=J~fS{pe})hqgOB>FLRakI_o-P^N2aMF zrR_aW4@*X;h8|18Q!JH}y)A`N?wu&Fm)GIu^L5jEqbH7iWZoJ!vy=SIO0-K zD{MR=9Wv;w^w<({MAlpA5<@XUa9M!uNUNnN0&^+HY{?7y<`C-hGoTAGKB-)2>}$f7 zSj4?yQzJ?_=Mf7lP*7e2oL+?^PF1rz>@IJ#7_M8rWc)OoCwi7c9Vxxf1L46e3q!>lL0s$2mLK(hC{$l-#)GcHr}1 zqQpz0o^dT?-3PI4ffc6~1as11AiIN)&U*Z8Z&kh>MO_h4LNYa~ue>d=bKqvdDkm3&~7X`WZn+OK-XYxZgip$VI#iYdOMc|x zO;|%oQ!LqQQWvL14kaGciN`ZaSRQNg4L?hZJoZ@apl@cnH?WR&$ZT~s56f^!)jB4m zQnP#ab$S5uzi>HAx=Kt#A@?`!m<8jQt zjDI@ov!B%u;`6qVYyZ2rWZM5O;^&F|?e;@YzBW@#7 zvWD6W*<>6I0$En~Xw(H^{K$x07BsEF;En%*e^z>|>KqO_c)Tr7SG@Ntp6Erz+vbf{ z4FAarC=@DEO~V9l1`kdd=4l?LUVmO^XE#1w8*H{b43}VC^d+i%2G6qI$9s6g@|5R7 zVu+<^*c={uu!>I>h&ki$6Si}h-B?${7Z7Ys3p{Z2t=2mbU7j7-Rng@26_t#GehuQ* z#I{P|sip2SdQ*ik#1VvVt!_Qo+uyyjRlC1mzhApizqh+{cfY>Bd+&Db#y;zUrE44& z%2tgX5$`iN3+ID#f9K{c=+0s>F!y%etKHt)xqIghtFu&HU43h1adl8|4TMJL{2!>LHgZB;oN7>?VFg1EE?TQ*xh4*cy+KdK@goon3&cIn`L7PC)(9tP404|(Kr1}G@62Wn^EeGJi?qy%l z!&7>@8J>7ybN!K+KtwC#R=NH*+f`1k=U5P6TlP8;-P|HC7rAOGiZUvmoSys!K&XW6 zF~>Rq`_dZ(nT1lUJK%YmzP<|s!>JGXt z8e@XoJ?TWvXI}`vLaay{+(@+_zd5+e_({3+DU*mw+AKR3zPd3)85APGA8`XJaVH?} z1;c(RmO<;2-2p!%@`snV&6pq%oyL$?dV}t4Kbl3?dKIfaF)Xn=i$q2{og1KllqgLZ z2ZY%RPGokwQ-0$QS4$O2us~rIz^S68`54%sfYUFIo$z3aNE6{|3yCiaI zoBAPeAh{A}OWqrvPQ7_>MQRxalx?eVumfg^Wh5$@r)H+ghU}!qG-z8O&GSHYS#{tB zL-l}ChHdEJ4#=Ic9Uc|fdfn9HLhxYvq^P?u;jt&GVnACG$nn@ zl~s|@@=@L5%s#wLq^DK|9+3j3vbZZ z*NJMC!Xk+WzCIFA-WO1YMWDb?U|SdFfw(8%U?*iM)sTSL?t;>KuRm^=c=VBo!Y&K%#4F*|D7j-w1L)XMU~f+P zdT7&j=FP5aU7fSlSNh{{E-Bs@+=_F$vd(*?b?A*TI^@8qnEV(h8ya!Yi&p0SvV-@I zv$*L<IS9^*65{e`)nW@0N7W`ITstmWNmBcYMYQ1YuHP9_KDox*(s;Hb6t$5B#$#gsdz-bT2@P_6j~LYqrWAP$z6x>u@Se zQAPW`qj)W2eXCKgX}{A|$#Pz@E;8Ur9&w*OPQmN_pg-u5PL*RPiMk$@5!ib;|9ITJ zR;j+8Cwg-M2|J9b$L<}OZ9otw-EV~-u_1DU?NNv}_VW(N7fG$?Mv(1xc^QOc_k!8~z1suTe@}Y&z5if`-xyYPEh;w&^EN19!2q)U zLiGX9!4A~~QLxDatHK7{jt$th*y4e;`E7Nxfc2o@nlFgmptKfztm%5+mv(p3-tKj8 zE9x*RA1Gru`NcM;qX2yS_+K$Or(vfVomSJT2m^wB&6psks_5-gx=6+l3n0=RFr0hA zS%H)R!`P<%o=;x| z*?474iNj=901V+2n|`lZL4E-Rc{*&07K6(48PP7;B!X-zfoWnqS@sCzRus}IYPc0_ zLKlxvKxgE!tsr&=t(KB@xQ!Q`8KAW3+RYXIWZeMcglz)+PEA);IDjzTfh8cLleFAP zq;{erBIKQtx#UlW{gi3c3K3G;Y`te0QNgHWNP*=y=euXtwIy`g#+BAZs`%!7vZAF9 zA=KFzW^yQJWMU@E$!5sskK1^xrCDyl^^PnfCO=UMZD`=|wuY8a$pSnT+ZqoSn)puF z&S|w7@AF$}9}!(^^pA-u`v{RlRuxINT;ko^LL-sfTPv76wnqe~@A#=U6G*!vLsdg? zfd(EKMLdc#cJK`wPnhHYlErBlqj=N6Z1r#{E%*P>eQaWFNVakSK7)Z_Jq6PxI4(cq zq=Ybn0f{xFnBl9|O3Jo6jH9Tag$q2gl`>6A&fThG=7?gXWn$JvYTE5-@=TT$>nedH zWbn@%Nzh6@l13Qg$ZG_gmv#J#w!|@7-{aBb3>~t~U6=M2c_LI=BQjD;F`Bk_kLocX zL+eVSKr>(zA4wm3M;Afe#QB)$oZNT$BJn;3oheskJ&MUxD; zwAj6awv1NCc~#NuwJT4bQ^kOF{y!Lmtqb=89^Lb|ZadZ?vg+m7WJLOC)O6mf+c*pp@ z_$htM#0yZcPd%?RZaFc1;B-||$a%f+xKyppCWnNCS2 zF7#5W4WF>g(3#;zR5@O^uXLtNKcT6aYYo$5$08QiYwbd3ip}rG>b@d)YTG^gmB!4+ zN4i6fS>1+i*FT*3_yA9gQ<)w&Qxy%_a6W664=Yo`3&wJS5k4>utf#uT1Qi%bS@!qvu?~>Yg&fTO=aOM;&ypcZye$W#R4RTDgjZ-@jBox%_2)6vJz$$8;W8{vSef( z;O=nkNLZ(ivWys;vW-?vQ`#g^lhLe3&OWdvVHxWu;n{0d>;1aU;n?a7h%yh?575*~ zr$?V5TE6Z!52u73*Bi~(ZOhCcS@3;UFh~@H#*WrCLz=^+HPsaAY^G*_?H`gcXaWu+ zzT?+kJGy?%P_cgelnkt3ofS5pYR;}7%`ILd6QiQWP0jV@?9m&d*3(0>R%G1kkZclz z4Ac`pTTe2DY;vsxIfM$hXmVq}*Io;R*;t_eoG(-bDZzmIE2@~J~< zS~sP5)lB7sqH}zWPhB{|)E&LC{=vvo2bILU9j&{qx{l_O23^M~Wse* zcsT#qren1Y8uBo@a~J8glgy`*HZ_dgiwsXUZ*dH*p$+Yz!c9$@`WOQoBmMC)8gz(Z zp?L?)2*_g}updvKf_7zY?o(bI4SJ2>4%@PrMEKzT?RDo#w%Yc)&!sZv6L^ZB{{d^` zwUK@Phgfe{?eqWY!qVjYe;LomQ~VBmYHg`9Me8S?T6;KEt-6DOvGe#8tavO$+5;vA zO|$=hpZ&k43)ohNf9u>&M}EN#*iSs?SEdXbEGWmVu-H%JUGT3w1+zaS`(wYer0k5( zv|(iwz`comSKA2t14p5su-Kmf8&MgeySyFFVd!{W4E}Fh5M(h29Bq7qAF^TW>Z8)-`pX-$|}!pPWm z4z0`W9I(Q+Y@k)N{=^RGasc6a5Kxh@4_u*5+b&}aQyUwD&5e!9?#9NQO1QPLu~otU ze12nN8-Bf8d9bnZ9{d_?R)URXsnT4z|eU8}U&ADtTeV{40*--eo7e&uL$ zWBUMpzOh+(cVl}FtHQTht+KbVv4^$y;Xm)=&o97#0{nRh{~2!L?~kxvdkg>Q;D5ty z{O1GgVoZPZ@sFb#{&8HxFYw>pR;_Y#V`B&3vyrm@`tYBdRv+5X%oc@@uD|=!98%-#?fkkV8q1%<(#?~$N@)msl+{P{0%+?OH(?qPX@hk({a6khDbb`3z zO(n|LDsRg2LoELhmA~sQf3tE`mOsVvXH@>4yZjFHor-_BRcUN&^kAU1jr;E6+eYyR zKphPD3ZZOUqU_yWh7BT`1`t-0lg|S|K5c>I_j!#c3^O|$8?8-Vaz~WJ=|;rffPw4~ z)MU@@04R>vEu7ezoY*6Pw>7t=5dco)O+?V=5LT_?ZxB)=))m(KF7L`#<&NmfoA}?i z;J@2##1n@}&~QkH3JKUO^_Tr*YhmLUs@}k=yPa+7?dP%i;U@GSdmB^PzF23zSZ0Im z8Qb`GH9^R-=QcLB%$hP}|V)kXCF)(u)-H?be{I7y$ylF;%Y zA2;-f4V-~L+P($gj}dntZX@^|9n}ox2Q^yiv}lgDVEJL+?^NE{>y(K z{6G)3cCK!Uq1ASPH{F1rH+T4|o8RP^KH56OE^TqT+~H)rvABguSlS{k@p;81mWgGo zz#q3h%b3$Hkl6hg-hRHf^&W$9|3m!a7~tJM!r~|J-#sY#P6Ra{bhbCx*LT|Z$6HYH zoj0*$58k{BCBN_{^x^&08kGFPRs7?u2ER|Sb8|I@)%P1nEMEX(e!sm**n3}KZ*SuZ zI5r>PbvFTYyt%Qm>0Swpe&!_);1hHpCn(xPED&|i6MtRc)V(XodjrQ_>))8uXq5Hj zT@K~L%}U7H=y4jwcSNLb(u#Ns*3b^|$GyrEF;l0Tw8GDTlx}X|w70csM?$)Jwxx&% zJHpo}GON2lggA$=TWrx!thaT71bUl#%-9Yxv2YWc|3C~2&@tSU_y8o=R=2bkw<-*| zM6R&^z#nXd++<8K!Lw-Pw6NK$oAbEdSMl8wN!_)N1g{Hty$?5+uuPBE)7Gv*yw-9B z&b6`?X*haUF`E;$OTBx#rE?qB$HuD0u8?)rR<_<$^LZ2Zc$(Vowi-X|0{G`P4U&=2 zO)*G#bpx??bA@omchcI%tz~$TG5pEf=s7+fxl9}jg10o!_!J#Mpc z5DQB{VXOL03FSkCa<+Y{Lt#|O!Q25b8%{9YE!-su3@+rYlkI^H=173q+P*DuzI6v` ze*wl9(Y8RVXpzt75}>HIL32elJ`XDfYHSfP(%U^i{1^B-dY5zXjTS5!E(p9U=y``1 z3{m#_fYTPyFIG4_0)&T~D_ftpm(h|wsf(NXtiHi#bq>1x!6q)UCk)1}s=ZRMc8hAa zH;-}u|J>)b^+5}nmi*OCqPA9yQd-?Y{Lx-ZE1nJXbF}191n6%@P%_@^ zY%Kw~_cz=0_gkCz7qx)Af3OJ^KH3c7kKyL=7LdY6n@9BL(kA}3sPH)4Bo_S9W)n*| znD9po3Mm7|hZNhrFA$mARJ$!@pa0PleM?HLldN`+gSleLx*@v6?%?-UJWi%s}4*u1AI zBCReVmtMfmZ7geGmvX_@GQh4Vu%EpOwLkY!4cUw#d}5&o*u-s#3&vwW)WXSUlesGn zKT!KN^36LR(E*2e_&rtg^UyX{JVGk?+!;vgcah0{o}-?Q9LNekcT08UrdpWDO}DyR z*4Hf%1Z&&Sq0iG?+y`RX0W5qDup)Rf9F~~i#&HQOcTYi*Gs#xtosF%}YPGkKB~xvE zCNzGAFmS*mGAu|)cVXCjB(@SV_5d^;VvvvzkhgwL6?l*+z>gUxC||L|Z8v2_ERsM$ zOX4amiI!TF5gs-^+K#mer!9M_rie;%)NNcEwU4%!YpUdmtK7S-oc8FZ?@bujMI+s56!*5A?>pN7sFq4OrNtPg4_Fzq#2+qltSUvBod z?kb==3g}G@Xe$?JO#r72|-7jxbYru;$jXpIqO6(w95VdBOm@;fBSS>Q6+H%LfA6W?`;Vg`EY+z5nT;Vz}pXS8IrbShhDRC z>|iX5LFcw%_G&j)==3LF-+;l~IFba4gmZflnrg6}lu^{~Rc(ZymrD+1WMp!OC@*Ys z^+FPlPqq^B!bdh9JLkb8GN79R1QNu}{td+(kU1+^HQpTD0NJMxL~{#S=$+2??Xl;8 zEw>ApgPS+n$h5KhHR%1VyN;>3i@WjB<_XQsXS1i~1Elfx<^~o<^550E$dIsid_ztJ zX@7dSaCWrmz($^ID#@KBMi}Dfpie8eQ8c(aC2yd_{lePAsWCj1A9d#N|Ig{8j36$; zNf`m1+e;at6mU~^jDAE%WvqQZPi5-Bd0dqd!YIDVa@^7MhcU(qIwP!v&_?LHpa$IV{$$)S{{@00aA%fiowas zWKtA2skuzD=5EYnCgaXuUOtm#S4U20;s!BVMiVy-mC_{n9Uga1lVsT>y5PBlv?lIu zUrb&TH*9#uNNkc03?3u1Np?|q$U#28oXTyINN%EKH!0BGIn$fux1jQy6zENF5M-Bf zk-K=FW~}<6Wkv{geGzPB%seN_eiuq~;^3_#XF73lgYk2nIAM*G>?C6!PtSIeGL|v( zow)gMX2O$XmC-Yvxas`DQl7ZMkM94J+D$X*iM!ZnSx?eA#HeXc(jkqN_avLOog?u{ zKH!lupA-kDr9R27G*0f5{QV*?`AIf}b7em{Pv=DXlZ)@3$bWL4-thz|Ii1V?oSOnA zyLwsCX{SwW28dKMUTvdl3miw z{&9g4y7$Iwld!|NYS!p0f%A1l2 zrg-9%bTA`lPDuxK9{!i2KrG5f;JE-^0*^a=N_L$ro>Hu9d3?p$vvc&y$ysD0BWF=b zg*8SRm8_m66RD)PoXn)+WU$7c#hGHUY${HbReE|0H}@MgzeS3sY}AY@DXiF?q{2N7 zqvcd_!{DhZGPFDHTovgRT*)d@S4ra4<5UDY5>X_}IWkdLtby4H}WSvIq^RimY3}KpX~D_{>P;}Y4JZ*=+1{K;OFB?G9Z!_ zO)#h&@}PTK#N>6%9YCSQFjqi$Se}x%*i-B4JUsUygra+O;i;dD%xHxWp-}!tbVdp- zH-%CAF#sQf#{R}&{8LYl%>K9{?VEx14=Q>HeKs^1D*x5_iU^DU>OzG_z-KQh+CBS0 zk?oJ4LIk>G(E2GOXuURsgPD(6uMb3k`j1T{y(*B@ocY+d1CoE-grHVOnSs`y&OF7q zfN5|87uQF}t%q@aQc?YRcqAY&* z%~H@)JGT{C{C_X<^ak|5q1QC;b01p1k-^S~56y?P0=EvZh@SggvN1GC%fR1SloO#)ykpw&9A$f=)B_idV%1AljmB$@U9_aoi zfgRX}{pa1)O*;S$`JPy1kI3tSywHr;H-0^n+R1gZY-&9twBA0W~{ zkO5>KpeJ^XJVtqtCakK(^TBVcH6-(i=h(z^tokx~j-4adCDtD++2x}Gj%PyTd-MXi zoTcWx6lzZ8sAZ(R6z}A>5fWdf)+vzrGEw*3sW0;&j-LB60r9euUy6pgL)(R7&i~5*^(;}rddMEgqhUW+o>=u^}T(q zP&^xEvMFaeOt)=cA|Gb5n4J*QaXn>b#7q`2Qeq}Q>p3w~5XX~ZT1ZP?_KcYq(`|U8 zCB}5$*j#XC%+y9kPL1h?R5&+g`n{YZ?_;(tM>0ERj;%<6^qA=o5;mgpgX02?XUHsw ztF#oE7mX_;N#+HObev_wQ)Ox_Rs5muKn>v_kuTHQjtXYXOy6*XqCBI7%9)wfRXuNJ zQjl?G&deW6YVJ(c-O-X~+9R;@XFlpYwQhJV9rfgHcf3av>DzvX$?$aTK%w74+Q|6j)Q_NUn_UrE!HkdLUK5D~)!B-#ue3WIj#+!~ZC7ofXLFDMS z>UjPxmsA`J862V>4`YUcwY9JVXKMy`X7)Px0WnJ0xKrP`yU(Cb`wi|fWJ9D6aBwV% zDjT=&-P(Xk*faDsaP$MduqyLbL+BBmtN^cFrGs8t1^UA3ELfGUfI!O!Boca06S_Eh zn*sM|6gFP)<98s^yFr>^B_1Hu{T2_`= z3*P#5?7$2|{p;+@ods-8O_+9@XY=!+HhANp;jjxe7!MZI#A?cE;jA3JMXTLUkow2;Xh4P$2<`d$H;m%y}o4px=%{f>lDP1;=-eCj2f@W)xF@0cDEcV22Gs zBmn)VOftfKyA|{);+zarBFpQu1ZRIN9F+9Q5yf5=oZtS)+eKxIFD9DqC}{oKg>%S_ z`k*!wo7fWI+6+OoUnIeZA*X;#LJJzlkvGj`v3n2pXRnj0v0SJev?^FyZUx?-vgmw8 z&~AmVhFl1TQPfZA+F97Q-#@)#{7IU*IxGd|G#-ZG25`7N>f1qlR zYXxa>DH+T`2R&Y|JT?cDBU2F`3`!m_Q5k|Ne!|2ox^aGb7LX<+O;3`fw|W6cMt%o% z(USgvEb&Yt0_3n47O68Tv<0iU-xQHAQp>`;w^6oHZ(z>gZF$D4dL^%1V*ju?>_@HW zlnu@~r3tElsxzgmhV=u1)w=wY-F3JVY9PkYeJE@P`Q`DX9%6-5VCgWZvmg{R(G!H= z9JyGp>)<_G)|~PiiPL<32GmgRM|CAF8@+r!`P>!yF9`E}xUWh%0oZ`*Sh%c-U2Yw79uatdZ^l2<3mqiHJ(V$-z2e}GeoWa*(!WlTB!T3KdDR~`Mk#RsVdlIwO z88iy+Rh~wsqpvg~O@WhyJnfZO;Zg#s;zysf&h8=~4bfqz(Hb;^cPnjb z4?LFscV%II@fC07qC4VxzRdN%uK91U-D%M4h8TYC0xkh^{J*X)*!urP_V2|1>r$SH z{(qwXf64U!ijqM@@R@X}0-uV=Fffo~MsO_vn?Pj0(1lQdSKxUbXL{pY6D(coH37HE zD3|W+?rz_%feN~I|L(?ZcEJ7O7a8FN<&8tc6NbGWlX~F%!7zO=2Pi~&Eb7V22#)j{FB5jrnwATt3@ME#7=2Yc zm*_hr7&Hc*X0kjX%KMm(4~QptUI(3a%tJf027y={I(_nzq5`+AB>B~w#%lcA9RAy- z#Uv~-KoO0F%2d`+uL2d!UZ*%B8-327;xfN>!1AQ8q^kVT@iZ}tn?*HF_CZ{ShzWHJY*D&X9rVLimEIs})rq#`b&wMy5XPf|cB%T& zaJnHab4qWw{DYuH*5T_@#0k)64d!Wm3eQn#kYUwNdDqP{w*ek0Gv1y<;MYrzrmO2X z2ldll2)2-GAY-x9ybo%Q@I+m5VaJf#NGRu3Bx z)iIod(E4n4OXhJp9@)R!yAO8A%R`V_u3%v zHVrd`Fnt;M9@+QSASFx7$As*Y%}Uc9Sn7jJ%ETkP~kxK zwTV5UF;s2-BQ=d*#7WL%L<9mtgDc&Yv)2ayS9iaBVjW@}|945xIa|E?|+u(SC=REKbP@X^A88vYPWNAp>5>F|64NR|Ka`L z%F_Hq{=1Clx81vY^XspC3oxy(-?_DYpZ)ty@c&=))$G52?{xiNvwyz1Uwf}FWT#g) znh_IOcG_$=yC3+?;fMeC;O$pl`HGKswm0_Ae*AB~^VfHO#l|=O++TS7<3E1?gEv0= zEkE>X?MGkh{p{5A*Z-nl@!MYe*0;}o=XZCPzWP`E*Wca!|NOn*@b`B9#@W)hym>bD zYyZY~{C@AXv!6ZqfnWItf7y@!*uj%;|FPfF`3*nwX7n#_ZZv*)`d|FL>A64mfBfB_ z_-B9Z-~HY1{oB9qn;OUe@89`_U-Owi@Wns)L(9MEPyDg3d-tn<{0m?4bFDx772orN zU-*h2JZRT{j&hYF1=-2(b$5;N_Pqps;u0Qpq|L%YO13&ZRtA73MA9?@1 z#ldI)-OfM!=zqBPGjAXL)Ym+`xBd72*pGhA&qaH0{@&mJ?WNu?`yGGkm+jTR^*{d4 z|H=RH_}^doAO6hWz4qGtPk-Z&d`s=0{`q%*cJ9;vVRZbBf8jfS)n|U@4}|f*{w>}w zee@k`KmSd?ZudX<(m(gVbL#WW!|$B>XMg11b-(}3Up#Z|7yl=};V=KhcYp71-GA_# zzwh7wjcb*~Kl6iYt2h4hU;W#D?{E8&Z~mIkJg)!dFEoC`FaBG<=llNs4}HtMul~3H z^m~JEn|tl^vw!^Ce&5^g{lVYycfa*l{`wz#=XXax<^94xdh|Dr_kZ#y|LB9Wzx4X| ze(^8<{J;Ej|NI~S!+-R%C-GnXO*ekm|MKVl+8_GwAO6{IsQ-dTul}wd{r=65{>$I< z{eR^Teap}Mp+EXP-}u-6&gQ@U?-sxNi(l0}`6qw>`~TNJRJ!(WzWMvYZ~c|;{P++3 zo%q*&@BjX*|MkD^{qi6AxnFYj9e?EZPrUQlji34lr{DPRqAQ>NrhoJs|M#Exb07Wg z&wa-~c<-a1`%Z{TAHR9Ly!ea%U$>^; z{at_KZ~dC5pZ|w{x$;fJzw-Y*`Ig`M2S2s;hyUoe|CT?o_~dtg_s75STmEw6R`cf< zwqHB^(bhlypE{4Oee}vt*Q&w0U9bNw-}k@#@gMl(zvEl~z&CvK`@=h|1o{ndZ;ou^Cx)qnOACx7?re(d{7-}9gR z`o;g^=YQ@`|NX!C%2&R!)cc{>h*G$$$3Ge)gNc`J2D@d;ixT_<wWsC|K;#2K3HhHdHpMY`7i(a|M<6m=P&;yU-y6dRbTac zf8X!>Rln!!UU~JEYo7pypYO+7|IO&M19uwL_~hbbz&!bHVP(-;|5ukM_CJ^Ny#4C- z?$-YM_i7%Saqr%P&D%R$-qh^e+`CI#b93AK+uq(gH@$`G!rWZ#?vyvB=^9R#P}Oj= z=Xa08Mm)y~&Ot#|X^sI~Sg1Dp%_;BU*I)VCw_mN@-3MhvHyqM8qqFs? zd2ilZxaz^XE~HcKodg?km!0$PgAQg-O~dH+t>^x8qtpYo!Upa;ENmmx&2zuoow z$6j-N>JEeR*2&ezyjNYBt*&?rvkTtBt%U~so}XP{|FHioyz^FLp8bSBpv3V)13r5T z9@Ov_PL_`s=5xw?)Sg|cUS?iyGC6C6v06kiQGP78Q z)m#FA&}en}qbX1%x7MdV_10T&P0d|@8)oVHCr#;-$MvM~|BKWCd0}zF z|1aZlod3T8{{O4KlKuCe{N&$<7t{A{@7LJB-;?+J*x~;Mm49*n{@uM-zG411e%JT^ z>A(Ef|F?g(dH?_Sn7!Ub4Z$yHyz&)4{nx(k8}9w3U-OH;;EzyI{$s`D_{G{Z~O)DH#^m_Q`#@M^2#ruQyP4E=Rd;Kr4-}d=$Wo3D?|6j`U_NUqTN?0(kV^ej0 z$_qM;2&@{{rw0AQ**B*?%?@L4zdAe1@9z6iZ_VSk0Ie3oAHMPyR@kv%zJlk)8X4%_ zYYmQOcRHRoJBuKm#KIJVR^;@FMb^$*Vdsgf-~u}Y&EZ#3)L(aY2~o;M z_6|F?2E7_sl|x_Rxh3c&c7`2gyJu70kpIiiy^G86hdBAtU)tGscF|j0X8)V=V#w&a zJ|)h#Yy5b7E$E=1CU~?1u#&T_wSMb-`Ve=j&#N8XUhpAPo%i~wh?eg1m=ET7(^dRBY z;7q>;))1c(vpI83qd|=V=Luda9W0JP2MZ25Sa@qhI;gGQSiZ3}!i;X$YByws(Pq?W zD}6>+#;=^)<g+BVvpa9-O|xfrx!~+xt%`-aSY24Yy22-zUeoNp zxw16E?7q3ZygI)<5;tDjp3j}4{I*7&-9nXfyX>0XZqyncfqR#GQkQX3F$a5$2)bh%EA)-TCOhhcWk9q7FMfQJ@#Q0el5XQR^!d;TfD|{^-YicxlHfaXc)g;qN0mT zKBDS57gozdjdUmkTvZ`3w7+~S)XJvZLmtSzpNH=}x6 zBhP4&%DG*3E`7LvN}12AIG=Pmh3j@}fvs6s==^_da`)KZ>=S%n*;`zwtX9~6@cmm@ zlq!CdGxw{b&i&QI+%Jth_ghQzqX^+QRyJz+ygR?G(dWKE<=ifhI`^yA+%Gj|fwRxg zF2UU&ULdZ(|L-Alze*E*b#HOL!kBl3{ev`sOn!+|!4jteytVuK7t5S^@{IUs`ag79 zeFouw#nO->coPLlhnu+seFSWWsHj0qrZQkk~s6 zgH}^!=+ueb89hXV@$jZWXmCdv(xNA^0Z?o(aWD`VS6@DB~> zI`^Q}Lv~;^Yz#O1NMA?1%lJ9X2V7GW-oG1AGxhPY^7~h_MTV3PRl%Ic?ASBJlw03MYB+ zsc#b_NQrL-Env$blm0ru#DiEijeV*XSqy}lI`+4$53r*3wW2l0I0N>qpU) zT44_a9oZ{JT}+@0&X~j(%g{rOK@U<5wuXY~DXi)wkRNxCwZQ(h6I{USdd#{}N4Rx> zn>*Z+xmTAo1XR5FobYNm2qs(O;h-DEXg9{D)@3IU^94jW5S>^5(56|N=l%<0$Wn?HF%;*3i(46d^1G)nXgH{WbqwC(I{jGc3H|jTb@9yud zt<~AQ0Vw#0(dt~SC!65;hETMDQ2sKeAqgZ9X|F;@FA9}R8E^T)hrRDeiNpmOclrwF z6c|>d&&%@z9Ws(;6woKp2F0<5$bEiqh+)ngc_(=00nAbD99GokoLj>6rGN#M&pR$P zEVK=RRNEn*-KaiwFoe|f6d;9Su=C`;svC}>@y~@u$R`YG!5S|8g`64oBj}mzX&k{e zg(ug3smafNSWvDO}AL_H>A!@(2c7FN8YUayxN&}Vp$%8Gm$C$o9G z);OMlIR=Fc4;u=Mi1qzR*kzbcwgbyOjO&1~GFDE=H{yZaA?yqatvNlX5a>+;qGV$d z&8;AyU_*&Dhip_9uiZoZSP4F~yD?>?Fysj~_hv;>~*WE!h=# zEYe~#d{k%0k`_B*m#5~+5B=GX9?z5?Zp?n+@yy&*#haR5@TM21Dl`|4$tnmG0nVzQ z0`@G2u4BeEC&@J;w!4QeK8I2IG?;ecl;p1`F*}--B~({XKk;o`dBKASl4A)Cb*yPf z4v>ls&N2WF1Wn>ASWeCSG_~kD_JG7(o(|c!g=-%B_w99Waef|tzVSxlP=H__PKSur z&?){4Bw^8v__?Im4BOOSxJkuOQgIh=T{~QkhCoGGqC1rco33vFQ~M&08~ps}o-pY(W8D)yqz-x!i#4>Ove(5LE%s8jgKC{EV0O;wAh**Of4%B6l3wV)w5 z$?<}9B*|Fk?%F6#Xo=DC8Jl;VXp=n&&crzquKXn93uD zYs7E86&(4EA^iOaUpVDv_En_IDZwl`5^fO@le!1>U>I-AQ4nZe7K1+=g$`JcpI8i6 zOHt++PlI)x2JvC5&K7FWgS?~I>AD+}_P{t)B47yth@YTPKB}T451WO?&eJ^=L_vzq zWC!yUHp6D8)F%*FHs9Bgzp=M9 zrJrtr@vAMaMD0>=I{IDFrj^3x@xOEihuZ?~3hO%3kYZuECByQ8-jU(449KjAekA5W zF$;tOEQ0-Tk+U_eVJAmI57~K+=B+e78w5^E+vWZFS9~t|u~WiH z7!6{4FZ8!~2yYA4*wk9)kt+%TKt*{;TAuMU?$Iih1CbZMBc5NjD zYM)LYT!=3$JkzaN*}z9d8$HG)t!Uk?sNPkmC$RrI_0`*(mb}N08z9|_q}6+$zpY3M zrVfOL~b2HMe;#FDE*b zvfIm3o`b$Ab+-#08tYP10>?_sYXX8YDzLEWfN>}NeCdNWhi|}%ZhCLX+z=XMz6Wb> zEL>^FXu_}79%BzZAD6s1gy5SxkYJtOmmhJ>f1TEXO7mXEfVptI(l-8qg!Tx5bVJ6i zdaM?QRvO^3Lba<`HsvS*tKv1nDnp?k(*S_L*_#GZH~XQH^yR5HFuw2Hz00Jb z&+hKr^*+`T^AM7rGRRH_zI)djR8b~lO{Ym^Tzacgo?|@2ripGa5}i;$dQ0%O+uUY zP%Db`*~e%%AuU%h+mpNqZF{h}X!c{;GEsSr@`WBVqmd#gl%|~@E!B#xOf4`b%^Y!r zL9tp~AuSuPKM960rjEzv>IcJm!|(bBA((5*)ZS$2q2(-CBRHU#hLvn(?Q*r#4ths` zGwoZ&?gFMai_0@QG}>4URgkVS3On_vR}Vg9=U^K+TQ_ygD6v<+yK$$s4eBaP%AGo4 zAlU#vxx2eh3<}xhqs~;;EW+WPep)vVZh|Httdp2OkIgfd0z4i2v5tG5HEu2r`@x!3 zx}?l-EZyrgSCi0UUZ+JJ*Acs9o;94EV)!k#u2R~b9v0nWa=((g7hX+ zHHQVe!SQ#K@w7f)y3GhNa}b~{Iv}MpE9j}%A7NCE{*SV8sLnXIjia8^oF--WP&>y|W*x`=;hv=A5t`?5 z%{^{qnG2{xg6@#PPsxCbtdnu7DZuDwRK0b~8;Pt>T-fKGO`Qjt*Jn}>F-nACr<030 z$~5FrCi~Dq2O4?eQFnPGo;*_T;|io#PE57n_#;gAvsQfUz{cJ)fJqZb2~g%` zVa6Aysn1 zp$F-gJi1ioLVN9E5=8iwu?f)7fJhhSXPeBgZ(=@y;;C)9!^I* zKrmspPF^=|1Piq+111b!*x}wOzd8od@7Y$-srCT{21s+PekF(oKnPN}q%_%%_zyBM z`bA}e&W``Eytpub)sFwLcy$v0;ZmOL_z#mP50fYl&uNqgx<2Uz+=(YPGB|sZhduYf z3NARR!;6m)irygln-;nOWoa%)vwt}0X`|F-9CD{-ggOnvq!XSv;^I+m-*5m7Rd3S3 zl3PuBN0n>zzUCS&`dy#_2_V@DhsXvnX!N7BV~cj<=x&P^suTe0bqTX9YZ##fpx>Ya z260^!Fr6`Y5$*}46*9e$crk?|qpUV^O=@z*ZSYTE1~muCoS+N_#dunn1~*2)(K;DX zAw|Q*%3>2)ha*u)B9SB1SwtXF{pBnM=NH^sL-%n8#pXe`38KB@Tq3Z6M-u@xHwJ;< z0tPNW-K z1ndX^hRxs$rb80uG;RM(hn8xmacASbvH*sb8myukoAKBRARHcOcDktwmTpyGmXs{& zFWZ`oH=DHCPpVWD5IQOef=nKlbTo+;X0MB;-q2BJ8s^+(s{za4ksHM+36pm-eZf#G z#=u>RhKgZqYtZzu<3%a)mBL-)=eJgqpY`F1-^q?RH3yDD+Ja10P1Q9($x-zRNH`cl zg#E}}x13`l-k&Mkr1e^icWR54JR?CLC#+U9YT?cjE`^O)s;CzbBP0b$EP{5}gBHt$ ziY6UgoM=v2H-Z&A77pv(?I`L>*E_R|=53*Jm*M@7`Mf%`589}W$OUB2dm2zsC23~@ z_HGWR0=Z_O8T_MO0%K7k+R))HF|8I76r#U!D}f-$gh=wqz>4ZkZefEdwRw=x{60}iXr^Fi%L9;vh>1T*ubx-pkBHw znRpeow72eRHiI*rN;I@TQ0O&Tn}n7vn<(Cvp;Dv&rZGIUOB8X8@W*|V4g1q0^Kku$*Q+1;a9A6XRke7j>=Z?xQp58wt|Dk?L?<@x!`E#Mj(8A} z7;S{wVH~ryfwn9kunsfYZ%2H$WL@bE)%LNynPN!n}#=qDeDRMyh zI&^cTSlg+(GRWv%&aR$LSDZ;$Hy)PY8=Y3brP*(_hJ5ww{(u%UD%xfJyk=qa9NpEJ zUY-akIVz9HC`lxhyJ}aVoNE~JWbW~gV}m40f-s6Vgt_&IGl#`xvdBW7+E-r2tV_`owxl0;P5py*nTakyX3*s#DjI~C;E}Wz2TeRf%^fJLzJ{N7<%v#PjSvB<M zG^`+@j$p_(lpXV0UH37vtY*Ps>@>i`1)e9+LFp8DYB%WN-Vt?B5e>nZ09$s*QbLm+ zo?hY#wb(kQz=u&49p}g{S`-1{wTSDf0=>~W6=}~Mu{~KE!b$H1{d-z?{>)moM4gyB zV7?3-V{x}IMp~H`@U@JBHzL+xRzcRm{jlF+i%8wwrxn~7^rL%>WH%weTNxO%3Lq{X zbaF>I0qo>wF@GO-S_?W&5e%86wF;6Ia>S`>m9+vPU4aFPOE!?^=nWG~*f@AL7q%2T zbrJW}B60B=3^N%&ZR_J=GgmD+h<;y->kc}DaTTIT0(+6yXo-NHid=x)^V-D!GE`q+hW;X-Cw^G2``PsMXkE*ke5taoi zv84I>l11Fn%vGDP-ns2;NnKq zEqtFp*R7q1RG}M9FhWbwSLj#U@@PjlL8)vj>Ome!pYyHKZAXa4?4V~BfO{?g$vH(X z!A5rv6?Ga6!L9YdRIIT$@6<%5b`}nxP?#ZYgE83!0^) z$e1X}PPKzSBpFKCFa-WCX5-N3G5u5nPm*|yeZYE|#cDN8sYOkqayp;2l}Oq4Fv(iQ zNXuPMr!p77bU19{cb`kXNPK$^^Kv5k|O44RE3WNROpD%!&sY#i6NLSkwD7~r&Or$GNp-T z*yE}aTqxqNOmP9!1a*K}mOZS9mMa>_eDix5;$K@_+NlL8TOwhd8xbZ_VR0~3{yo;? z186Z}?!aXT2pknn}DZbtQnm;;;rX_ej@=op}`R%qo8f!fft|pU5Hae z#+}|B{|S2s*M@Yf&LtA;}Q{KZy8lprGzSn3}0qE&R4M#%3q>_Mi?^=bm!9{ zBE=5vZws6XQJQp}KLu$->uggOMpS#;5GKtglctm*K8LDBYci6idEsQ=Gg%X#h>1ms zsRVaqGYTE9;L%xo3H>4$P2JenT!;|YOoSBS!${t8U^rc=sup8XW2h(`C{j)=WrftF zkwuXvlB*@rgzANTsj6W#B}i|&pPk$VQr&tAIh|pUr>0>QD+AUWejeHV)Ggrida7mO zbydslF2znx?XYsx%I>mq3Cu&ODw*3i={lFu!Cd#c(RwLDZ|cR1_S4l%0Z+y7gm9N( zvut<2P?YK7{pX=WzX*4vMpb%W!OK%C2VN(iS{iL*kXp=AJ{|)dmc+u}%R#q-lc2@6 zjdgEp_wIh}y?sc2{NQ#i#okk8>!LB#!CnJUXMKqB#9#wf7 zlT$*rIoH>@SK*`9Fi} z70B+K3@B%x7Nr1XTqM(dvGSKrH8HjDg zekeqKiY9}GXuaqpY@)D)ERG8y6bgbee;f==g8*Ug(H-=<5gFTz9zAFEg$yUO|7D0g z8gF9%ON&9oWop0_;Y2e)8!1N6VJq?}pl8oNC0MCo@N0GuBh{h4Ow67Jj(^UADuRuo z`!;YbpX10jMAo3PqEuwuctv_VChHSnix81|{h&tWI?Sm4WuEAaAV~b+fz>Kz6BQkz zBS?}sQaIxt(M+w&nYBLa?Re|8eZ6Vx?12flcZD1KM7)vM;O2{SkQo&2#k(mS7YvagvVV@UGpMjF6>}tyqLjkF{s_J@g(R;=evh-a*jS!ypq*}dRkl7VftmGKRPTYgarsU5_Fm|Tp$QyNIO8MSQZ+wObpM( z}YCK#Ap%!N{HS~ZeXWq}YvG?n*37Hp1sNXGN0TH!qqtCg0TsEyPN`NKa zQ>aifg16|=2zWDu6A(8Z3Zt>oW78~NI1ZsXh&1ceZ}WJ?3b$H~#VsV2hHQV1cw&4& zezVEf6POyEp~oe_X8-CQS{wlXVt8ml{z?C=6?BgJ$LmvzD=Sk*7DwJr9PkCpL0}fI zI$UPE3vZJnT-ntb3R#fsi=a-73@8n9rCn*V9X9y;OwMsOB5;TUlz&vXGj*xa0zW6$ zNEy&uL94qt==T|w3D8*>H105wE)=1h(jS&M^i7kZ-AJ@=Ojho~ zX=G)b=5SpJZ^0UceDujQhpi2^&I#5-qU^^r-gS>H`eYyy1S?8e4xjL{A4MPsraOG< zxw&{J-&jvf86RU{)1)!pm~#XA4bPwsy& z>6zqznVj-p&{MuhmrjW08uOSE+%=7~na_XHlXD&BSs5)? z#LI)*hDeMfcQtiJ#XljYaAuwvBRk=~)QK7qaBO>QEq9AnJLQU13$fp5^BYo3v`HG* z)YEUHodS>oRmp7j=2>f(O5d)iCpPf3D6*qT@0%KrNH19IcxEt0-iaF6MT6Zg2 z`xJFcmx@_$nPj@Qro$_l3#hKsu6Zt02IQ9Ix-yuj)a{0c&NPOE<;ej^1jjcRX^R|8 zVrg$~wbvT7J5cH2<71@Hwf~5kcu13F&Y} zs|Qb>T{u60G@!y(kndqT@H>Xjyj%}@6fp8WXe57Q zC%B|vmq9b4s1*Pwokqe|Fh(c9)o)y-pVGKuq4ci4dy;2cO8?g-`(~$7qxCG2=+gB3# z92C56qBjQoGQ2~I1!Bc)#g{M`%paXL3f}ofQTmtL#wB!Iv^4_#PlpW*kwy_U!?Qa4 ztuY?+CPDF|^v$^ycAf};bUdmLdaZKez7hgo(eZa8-va0eU&} ze9Sp^COPBq!dW2>;`m80#KQb{d1id_KumG+Kr{;4cv!+CJYA(y;aNm8^%#Gb9;Xt| z=LbP=$aNYZjO3*xiNlWq5C0P#s>osNN7%tFfNMh_P=tO0HV>-|cX(yQB%1>td`(dy zD&*e*4^S?Oc&tqJrPYTphROTDEbObhyqEqmZ;Z!r z|92Af!oy)*o4a#b0q5BNF0=nx_kW8^OAC|xzsq*x!I$o4kW+G;VgO7Gj$2+T zF8BQVCw}54zuGM#U^8~yBJRHwn5H|!l%24kiR-0Wpt=k;xe7l|tDj|-$;*>j=Em)N zjIlhpGn3PPJUD2F*aJeK)d%^~)r&753p#EthZug0VVp|I5R}4PPLwhb8FsKA?wc9` zA{m%kFXMyxWh{EUaPVZds~X)zKMa3S&4RV9~TXa_CSThyw$qAB1#PgZ+nLn0(u zGI0limRHHMOzO#Y6Tx^FJ1Q@&m53UkCF%@TO>ZJ4*Fiu zLtPH0MzwDS$y!WBa}~j&ZH0g}g(5(3zVUCK)l?qfco?(ZX@HZ#7#vE?Sjz5M;wxWIXd&2u29;kcr^o(<0wRE}mar#LLWJ>>Wz2Y9%KVr23oL)} zXF{z*`^Gx|EW9Bt>r84iQI__Q$4(8;bCYmhs+wl6BUf>FVP@*6@FKTJ;47VHvC1)I zNkt6h%XV07WND7T6cFX~J$-X`_cmuDmR@-Z0HIB8#s$(;-*8FW0jpNXMluXesXD`)TyqtYhySyG@ z<1;;5ox3Tw3oZ;2%b#y2MeHRaW+C8AKU5tBUUGO&eFPt#r*}QEor10JsMB6H`%{rk zjj)rNM&6D&w%Ra@>oX@Bmn9w--$ql3*}aA8NYC8dN?`Ks9LVF$os*_1d*39pQ=aww-wFbpc)M<8uicvgF!v2-r&Na-;3aNYlly*OxfDeB=l@0hdi z|5sKPuP)f}f0mb*CinlB@l5Q0Czb&(nPtE|k*b8yDw(d4;8zQM`J5XFoIj&WwjnRZ z@SnrrBR(LcSkPXorP==$Dvw@lsiBAXhQnv%C7VWW$6)NOSwV-8=SAIFfDY@2*EEC+ zoHTEXNs7C7wrcnH>-TFn>i2dT71Z~4@7=E5*k_{Nd`4Oq(FhwNFtV|l*{T82v4$23 zG&KHb?(f{Z1;bfPwz3tq+iU_40>*nnV9~&)NDl&s#kddjWWI9up5P>0yc_@4@POf z(I5CNgaQ?CD- z|H-vcF-Yuqd=z?fz+&y%&j^i-2|5~k=BRvXFM|ZZpF&LG`6`&FJA-Zs{KAMfHGrZkGtnJd;SqF`erZcVswMF zE%4I!HtUj-j!R6W8e!|h>jSy}J(HaeH?%$z`Y_ZT`(yUdZ-=en8ip#u&({ppJ6y9 z8kiWl4gmnbrrF~taPHJpjM`!1fUBqy6`*jpf30L9(z$IWhNgz)VG&nLye>4;ZaXn5 zGCSAoNbZ+(E7t(`Q0?^Xqzs95X{8?#E`oUL z2!Z?YFQLwLIvu7g9^FQV(?3PC-5dkwv^7^T=? zU_HV9vM`@X4ID_(RnCjg=TE5UovWAG%upM$?Fi0aoqNc`(S|%MJmjI)@e80`I$s4c z!Ph59wtT z1Vn3&!ebO!fX*aSQc6T8hwOkL;u90t-cf>DkdVtTvU0)>M>X?MNL-JT2VxaMgi53Z z5lNTPX!67_cNCHHO>I%B?m3uUCGi!QUwwjQxO|YIKnRCy6KrXMfdT&R4BA1DbpWmn zF+kI?-|^;6A}GHa#;lH*bri>7&cFCY4?fj74Ci;_9jbCuX@!?@Qi?!;MJw#D_uK?y zjeU4=V;|;>edrkbu)x@dqmTXlkz(!?UoDQsQbde=4i*X*F~?mcG)hJ)sq|n_0||7G zF?oXd%5`ZWCtH+p&UU`6IM!tAwuY$j8^l3V1zyMzBhRUpPs}*>04@aRhfHBxWa5*G zat+V8r}aY2wSU;@W3+bCrnKS*@k(fNb?&W|<#H4kuiuxX`AF|QO=xgGuXfUYf*Gm#w7 z=z}Rf5cePw@*8nq;{q&=VF}SR*2Qo-;snhUKBX@HptQ|?Fh+V$@Ih|EtN{y#*re_X4&B*`ON75gWNk9u@Wc7XQ&X zY(=L*PeNdC;;@CCZ1lo*4C0XmYUpD(nttzzs0P3F_eW8y8FYHoMSQ{VYy+bA!BCY6 z0tw;CvHv6#f3*E0wxjqi08uME35=R-aGj$-{na=QWj8RrcM?d9^B@Yvfo}ke0dM+9 z@kQE*_(wG?wk|##L}0qlU#KZ<20^zQcAg~Qu=nwkp=>j3Q)~PuhaEMK)WjWzz2JZe z%n4X*e%WkG0*1H-abJ$_aL_o8LnP@Vh^>1N^&%U>(Qy>_B>(LK>O4&Q4hK?2Oy0~%{N*%;(idcj1h|w*Z|wSNITGa(4il4dBV?Llw=w0pcxL@CeNgI zqHX$1Emr!wJLq*=iP6zF9T)tKzE1h8E^J&*WK#iSandVVo}2*NVY8!CMLX>DAvIGw z0gmlJ!(PMzMU93ZhuF7{f8u`-$>qcTMD#O?VVglfKN$&p*HtlBLlv-Z_P? zuHOo@1!;o9j{;TjhcRe)VGOzJcm1KyI&3GSDRm(tN_TL0h{b~50RQFm+HDQmbi;Dm zRBTDiAgB`)9b@Pk%3ZA&4Sh+9vEOXA0{KlXgP0v|L>&{DP7myNe9QL)oxKOj~D=fXbWgq`dBeuTgDDN!55>2cum zA4oqYM0^>yqbFEP@gDj`9g{U|bJ1=uII6Se8^`6++_!!JZ9tO0>eJA6xx2u*2@>LBtt1?R9+CjpDekNpVc3@N`=3{k8g=+Pp}B=j(F zY2MS$>v6#3GW7Fj60~k*r%v25V~|v{bb`~?P-c+JKHtkML?PvGVgK+WBf{mOj>zKB z&=+|9$dAu+ zqvJk9A9#C)xOD(qN(SE1VFJmRap=-Aeic|i|hLh4s}MHjgxS+|VW#0a^6F)OQIeO{N8#F<2qz8EOyc=5H67NWu;3l& z%hrkEnQNyM66!nu{4&ng}haLUEBc7xznj{)n zmQBCc^hAtxm|~QkVU(wkZ`lO}Kk`JTJQpg4Z-^lf8j&shA>tcg@u>I2c{u~4w8E;2 zp|izygHayl@OIqQ=)yC0Kji`lKk_C@j~*#%7t5Es?Z}=~p&0*Ia<*IR$nZOz0HUt= zKsQg&Ng6^l^|G>Q$WcG7o8`o*?Ktbv#HR4eRgN3WurBLb-- z03mN%*KUp-Q0uFHCEn}d2kK4AE(ja|?*CE!*G$K5N6E4!d0r-*X^xE2C&~F^q z*>sh`V2+M=JQ5g}@F9wny++jbqCtkOe=Mash zj{L?D5?jY0EXXQ2>i1e3v`uN69YW-O{V#TQul1 zhL=Yb5G`#0VKr7_HcSn`@|Ghsj2nECfsk0QAum zr$dU#Q;h%9;f_aL3g6-lx&$@u2VE4}d3*t-r4Q&>gOCK6+ZLi_@`367kp^Q-yK8{M)51N&sL z(dr)i2SGoK1LUUW1aTR`=zX>^piy*m(Lr069pX{&on!~Ts_74P83CeUW;|5BvAMos zQ`C;@Gk{L2fcOro`u9aN@Nsq>O@7I$M_1^v{kxdci`rf4s@bv}Q^goUMfBLPK;>nD z%{jM!eNUEv?aQ!NH83e!LG7x^q7CY!IQmi#@V{lDlZWllkUZcG#Rx6Ykmw^HoALa`%iJ+zyuUQb_0)Fhuc zN3$92&0eREW3-wYh#3eQ6nWSNG@h_Sl5(#UA=z&(Y9@;cF;?|i%E)G6>#WiiHxUk) zbPJ3H=jB)3%31DKPVQKCgm#8m2-@BLP&)vPfmOj2IX@KV$=GIEX`@TxI|IKN*ff@= zm$ZWrekhzhkpwgUm{A^f_aU#JJSP@J0bB7;1TJzL(eFYOlZ35h&}x~A+*kEEl8ww> zSJjetzXr&Rn(pCn^`JSiX@P^t%U-(U3VM@d z^%wl4$A7=D^zS+G-op@ZZx{fZcoKB`jypL^rtL+2beoioWdu#f)Kj))k^%sh zfthvDZa4z~nUJLb;SQYp{MsTF24Qh|s9DRA)M zIL$VbQyBEn+hf1f;NE*5FKQ(R|8!a_5F1jwPo-e4La&0ZG+TxTqro%{7b%XZPMwA@re zdRM4Yg0opAa}s#-QaoR{Dn$&+DwT*`VMcz|N&!1blq4Qwm6j@hYA->~B}H#hV} zVbhgdO;T8q4p^J%IK3dM%;g6by-Q?Sg4yk%pVkqL$!GV(mgvUmjLKY-+8=W# zNp^`8RA%f`LD`x_=$#%19dSbQ9p_t_#CMClKfp`07dD%$R(MF-4bh4ZDNONlA_$tP zp>8f9vTIgI*Vqxt72^kKG14&?NK)Do@-1Z>TU*Nu^nY!nnr1X~^QzGn0_MxX*D$Ide&!sK}-lL|A55EV;^`nrGE zXE?!4+DU~8Hym~Z>q4Fa73xfSBXpV&@==5t9EcEe1V|{Gqh2qFyHTgfEu7`TM!%G> zpY(6iT1?nup!)z`o+-J;4t4|S9ke1C5Gz?k#;~?_-h>?nhEdfD(i=N02E^CY3c=sW zB15al&<^H+feE!T_`;5uA!71s<-|K#QZxThw(J^W!Iqu>IYc-(f%c;2wh?u(JSdAI zAnEhS!F(ob+yh1cbXv|%t0SVQ&h`-zU|H351aXsR6Gm@c4(1>mgk_S3vQG?NBuNq11p4hTw{o7UBK z&_9lv4hV0oCzyJH2+gByTqCz-#S3KNl#m0 z>LG?_#Md`ePr%#&VnPvRsGgt{r%D*XpabCr`JQail&NE474;yw^pbJgPkY+m-kN18 zmef-@;lKwQ78Xv2C)HafG#M&L!r}#ONX6Ett`SSL1uylMu#nwO0?yC{XK2A0Cg41E z;6NzbOmLKSQ-epv(ow1D;!H>~_ofC+7EXr;NwM(aJw!u4_%l5+GhKoWx=jq;gZ5lZ zt^`p5k6b|f&IlaB{!pmhVB^;VV+e>02HEe5OLG_o+(fz^$%T&C)aHptFh#Ho#s&gq zlbj5`P*VA8byn?&;vr9%FkEH3mgt)%$IxuZd%qNNliF-fS(Yl>EUks+Nr?wYLnM_hBGhyWl8?EN0GIC27q##C z9dfu8bj=TLF>GgG`u-e<39i7xL?Awn2zVS9Ar1%VSzjQ^utYJSM374=dQ}v<6axuq7hXobD)(PDf|J0&I~*M^`~DLuEkgqJqE?zxFBOpjy57gJ!Zgc> z1EXP2h_5Qwt=_Bj%7e2foMZ zgA8>~egm`8-o;WQiVX0wGuX&X@}gSPCCWHY9n8HuIu=beE&Gkx4a}5T(wqjAV?vyW z`CJM>W~Sm0ay=b_9TfN$3q^gHs+2B}LpTj>m_@kkK$9RnNDRUCc|*>c^+1emcH~7X zxDZxYbI?$%?E;vhzCJk<)0YjvqyE8ekaAAS4I*0{q_-!}pua=Y8GiQokM0|@(c zco_8fdKCd7vtx-+bAcu))`cs2z3<0Qz(5B}WD*JKg?Y)cs4^pL?2=P?$3J5AnG6aB zvxk_g+y}$L*3k2jNOSTCzyUe4M|E%*D`PpGbeqA!;OGdw$M3ZQv-P z&=|!w#Bw9&=J}B$V%z0mCleV*PGs2rNyb^(MvF}~a07EnTBk+?=Tb&=jQ|bR%cUBO zS!_<`*i|O3YEDWcXFnvSCvG_}>f`YLp>qRxlFeOA8{p-$y1J6$|AUY1|FbZ^^oqA~ zG0kT`U*`Tl+4G+W@ivxIShoMy{K~@BMRWcamzLP8iT~FnJlXzV6EClcm)CRZ<+V3B z;0i9_RH?2>nVw0bJ0_jWFDcEJ>yhHP?0h|l(F`Wg-adlMk5N6oUO)tqzgA+?@gN3U zrx}x1U($_hoBR(j5-O_CP~AD`pqNXCJyuV;wP9%529j~ZM{LUmu_F30Wa(WprTZ|h z%a-drIIBy?nVE;=cI30+^66vJIcS?mhl@!y#NUkDr7AHQ2d_tmb-&pTJ9Q}OP2+Ef z`xm1*$KPA&Cak$Q%@3&HYeB(CF%>zpEjW}R(-bsiMa5pI{LBO}(4IRk9@ylTYf=GJKgMtohr ze+;SU36CJTmC|AzxdT_k0nLZJTg6y>9A2G&O#~90mh{Q(AZXtBTexN{3&<5|=1;Ly zX#Pq`$|?L=3|Nw?7=VF|dhUOj5W@qwIQJr{6~Hteh^j|&ZbAV z1}!GyR?s=>A5+>kG#+6;>-4f*YE-q7CF4|S=6S2WUg4?Mz*IseTEmw(rP^yc-|4C0 z*k2K^D+7lcXBh2aCE*MufKqw!1_3d0>GjR;@|6Q>UQS1P68YiMQ`L#bk=GG0lnxxb z%D^SlJV|geX(A#lS&q`pmHE8IeRd)Tb3@2Hr@u%;uE+K&Ubhc!XOs|Z&3KVj*G*X0 z*S)0~D~s8y)4G~35h^-%WWLh}fF?@|Y(W}bqqiezRZ!FtmVGc>w2uP@6bIz>NbPEi z2Uw&i4?TyKD*8@u%XS(F(NXvT)#(p?J;6da2T-V<0IGZkbzFnMAro+|UV*Y3t>V{tGBJ2Tt`;5k zXSX%PH)TgB_9*|AV0wo_?y*|XxFXsOb$StMk@1>C=F(J3Q{vZaWM){h+nu&{Cr92R z1BXW8tW-!Td61^f-Lgn?YG)mzHN`OUn;W4Kd+r`^lV);=Aq!I^m3V-r;?^AU8v?^A z@LIBnz<}@!w9tQzCj{iX#pYH8!f(-a*XeOY@)#OuQ5Hb1b8beRQr~MuJe!T33O&)f zP8*3Xq*v3X*qU^ArNm6xljmNxzD(yT1k*5%2Z5bp6xSu>vlZ(GF5}=O%HovjHZIfL zmj)%9j?C?4Pz8Z;P=)&ZszAYq4>@|)Fs(9wO zXH?pc_@REje*Dm)%g4#_i4-@p*8v>w^F^U)8(Fo;=1DtB{}?zoPi-G)H|S8L?RP+J zV`0=y1&n0ss&?6?Spr3=R=G%Fq3xnZxeGS`1qR2pi^WFwYR>RDFr@Cw7^InLnfn8E z;eMsbeN{djggy8pbY(5py`^=U6xE8QN-}8=i|M-DvNfK>k}SI9HYodbTkIed z=7u8F3U(8;9h0dyr{7M(}-r!!4MSsfT5+wW2E2Q5jlb2Ox}r z1km=M1gP(+OL&Z9sI@TX_xo(xF!Q{HI&Mxzpj<<;RgUffp;#?fgVznBZVQw5au>y- zWRylYbTZP8`}}8FxE?1e(0S0RW`MbtCR5S@fzN|uVGAu;RzRLaVG&J4=SoW5mRV7r zWF1xADRQ;Sx~9&p$;zlMMrdCj^3P>i&^2aj*612yb!wLA~2NETaJ)Kl>7+ z<_UIPv$N;Oc#OscE@hiz>Y!|j5(4u5l0{lVV~_=g^mC**WFrkBu3fz!)d&51%u|nn)AXI8JUHvNq9)skDkY1ubU1lv z=ipG?3DvStP9-4B7;c?Z-ray0ri_z`g+-mLMzEm^Ud5S>VS|Y)wF_U(vZ-gbs$~o3 zU)?sS5mtGQdJ2Y#s`3J|zq=+s2+S@NuOR4_-euRb_=<$`tT_wzIfuKzljJb&w{B&O zkpEFD21*!V3@dKcU6&PP4VI%zzR=pK=#x(nv zPp<#}s_p;3u(Yr+vH!n}XOjPQ;u-Lgc?OXF1MLV0UGOEQphrA3r1ZZ8E4}AGm+AQv z!1AlOdW0qnTQ_dbUT=j5&9GN35vyl^kw<7ETP!!Q$5H}uJgF)e$AfeGoMyF2*yd>m zo_oyFIFg&4@+&aEktZ@5A*N)K)x3Oh*W@1)xhdgec79O-B0J$JlyIkC1q)-x$Qro` zDIMYV>`&b2A)|zJuZTJ+B}C7y&zLgqi+UleK-lSj5&VjwjYEIX>hs~HG=qOZP-5#l zfq-cBCTg>?Yx1+0Hu{P&(ux`t|5>qnSwJwCJ!Yo}#-}&#)bDS+TcN(LL$@6f@o;L_ z1z9;h3Prl27g30O;Mdkh9jP@gt>3(_slF<^c%W7U&M#{@qYm4^DmZ6$(I=%8o_1tG z5p(|GAm|O{x8jaEbke8TuOg)h!eW>!m8`rb>RxcrZVx@SazkIlB&A5bc z^72yR{5L=G|Gt!Ga{il~|6a25pQ2|3ZQCBD7&xG~{-w;rBN_)_c09-NasTB(H=PobTcSE8Qp@-*c`n3!uqvNs zwu`nZmmhtfXZKuxO~_t#3dpQWsi_`ynm3)OO&Es_PWt+l9w*wv&{-l0W9c|xVrvhS z@_-+K9{EZ38x6A2E7S3g-{WK; zom)I(VpnftZ;Py}E2t;Y&8jF>oM<#LQ%AjM(A6_eCcl!!E=L+U`YF5xEq-a*f9};D>?paob~ zB^F2DXG3a+C)Oa@mY+t|%Bc((Gm=ZmZ;ejyRug~$)5&6{;}`bV^p6TddEPLQDtVoRWomNh0Z}!S>EW zg`Xgukyb-&@T$)gYwJ-KeThny)S?2T6drwq3NnHYOjup^E~!(Kn z-^T;{F!lpIPPs``>%^O8GvAIe>ojK5Yp5s$s!$(Y5l#0$ft3G$d*A-t#E~uh{hYsI zl5$1zUSY6#_1zF82J6|5>_RAt@iVeQ zL!C=|h>4E-4$Bm?xO57<4g?a?ce%&Qx}%4<6STL(#Y4$P=;++0Ij2&r(Q=%(Zwv}Y z8qp@FZQC&>s$o+ijdttiWF5E3x9*=U8ta(~5uGt@lcwnRIvfk5b&dw9j~?1wgYh`1 zpEUwRyQ_JAMCs*4NDu!|LX!G54qKxgpNnzic$pg|J|rFuh@H)V%t&Paji*gF3F6fu z4W}j40xgcbw0|OZ{Q_yS)IM^Fk zk3|EdMGrO-lf^Ljrnx(gNaaOTa)uK&!hx9lMob7NMx5VCkvyImkiWWUxo1I1I7WJQ zc=%qdHkQ?r@;{zGdG-6AS6YUtpx?HDh?TP@55z8~q&07xR3YL$-A>@`AOcA76l1u` zp(^1+Gsg15C~$t><*7njBTq@XD&662o%6k%9u~7v zQcDy=PT2ggm}xB44~Oa4iwU)l{!VgxUEj&CLZObhiat7OQbs&a`)sw?r@!P&MW{hw z3qPoZOu!n18u77d{G8Mv*cRCHqPQ(YWQoAPpAw73d-zOPj3KmhG;N8opkR-Fi_nWU zP?sN$sK-F=QH3~$bJUl1zdL9~ z-X17RBNc{X0YML8B%!#)7UFm*)|rcdMfW%5UzSu`HgjNu@)(;48 z%{e%Kd;vZeRaG7pxKt*r+vpHt89Ax!oz)W=;s4pk=5*%)JXU>Q2Z_)||@ zj220aH3euq)y0g@wNzHCdsET$`9ID^lfDRr7#)z>GW&o1eTdr5{o%7mf9ySxbd14k z)Xp?tK$bJzE5uLsX(x;?D4Sr_dA^M3(=q=Su=R1D$nP8^O_Rn;DWD!*EV`zLC)v_L zrfPs@T?~%a!VYFqmUGNwM;M`R2k!?ggS{F%ZB!x9%iF^eku(@yo@>K#97nue9e&+N z3U_wS^J-T1O=TU@ss)!W8UaBL1F^lw%^83( z2$s#HPdu2ZZRxf1)(_vM+r>+7HzQfC4kt+6;I$y4D@LL|tsN^ecfxJ-OY~}9cMgsT zMk@M)GsGJnw*b8J$EOFx_mmzJD7C7FL1}{oKw5?xHg|&BEYu`U4|cSjgftmQk_}JP z>0MGhH$yR48klc;Dm4Ht!T$cP-&bR3ORJBWQVZ``fR+}KLPuo zgRgQ(1G-VD6}k)x$7x)|`IJ}gO4lPGVg?Z7xHt-a9gEXAwcWmLvo-K8b|^|$Xf{ah zlX5I0+G;$7xH;p8W!4T4+Uy3%gI8|#E1Q=;X3RMU-{ve@7j0G+gvKH{G zfw|D_M|lV#;zAN1q+E5u_$6Vlham#=3lU4xm6ZL59KC2FJl?hJ2M@eic*1I1d*wW~ zOZfCjl}**wCmvs2a>c@B8C8kYQN}>OECo0?&4YSXpg^K3PiNLKM2*HJei>d0Bc=SW zqw1n&UR4ga@j$Q0#!{>GylP64idim5boXdKgN8!+UL%nElKp;B}D)=YMHk&4M!xe1{v136IK4Mm~_0ghb5@hqLl)A1PuQ-LcoG(1IM2^f|@K#()IcL%{`GvsEVbg!wX> zjh&nnG^cd03~;|wejV==wMHX_7BN2$EtZ9(9s$=2@EJInx5QFuDNfzW5A0wDW?fv# zNdWah01`(T#S#GBm^exR2fX+wg?xkMD0MEiBwGAv{TP1ONZ+2M;>?|Lb@<`~S}V|3=#X6LHBD zl>+pb+=hdUaFv@iZF#yV&rT4;C`m1r7YhRS;Kum;t1_CkeEiF=jXwQ|?UNzlv|#$r z0(ml&kKTwj0s#IA>{%)>oHT3IW@A~BV&{@!RJZ+nS!HK)LX>zZ$5}YhU6e)BA=Jtb zGmN@*pfg2K05ANi2*nS%F~877n}TRLam3g}P;^8Ty(Bne0m!_x(?i;81av3V)!I=x zIh)Q5)9o3vBc~l0Jn9Uq{+G0sH7TCWD=AB%SOqdXJUTKG?S1p1TrvjzPeFnlb4X6#WWu&s6#Q%RcKbY5K$(O0n=XsE`#Du6xC4d zEnD0f@-5l{z4fT{mNO&8nhSXw-Z5xm(9=b|+$DNdv5*8NfFUsm695g6@sNAz>+YPq z>#`vC)Yn~x1;L+VG{-<~ecvyii&P3W=*z+Rc)ZWEatI~tcBn66fD#rH(3So9#jJ`= zBQgOj$2^y^3)w_L1g?}|N{4WFLgf3BkQR~tR4+q{uP)kg?PP1T7}|cq*JaqIysULC ztudxt%@+gu8LVYLGKKZ)X!h!~-r0dZOU$o%5iByk`AcEvay1KL+r|{3oN9c0jjJOr z#N_gDi*U}zl*>`VL|R6*+=k=p-GAfs&NJp(?kbP-Rx>dd;`Pl&cbS}#<^mMc`Qp`q z#M_11oH|j)y!beTzr{`924}Gsghy9M2`)uKY7Tqk64uCbL<0m#Ljifq#6s%IjEY9_ z>EeWFH9aw$4QgmM-QZMuOAr8WJsctMhZG={LZjMnryTSYK$+b9f5rH+#81KfUq{bF zyeo*To8kWys|_!ZA5%ZTaYP{p=EOjUD%k_w&S6O; zRGBJMAGHj_x(>&OeKW*C(8(_43Up!@m&*|-BE`y(DdFsFdYCVU<+00i8G9mU{UhXu z9)&X=>@8AwG5Wyr_+T6@dN+Y@p*-|91YzQ`?-ArdAsF4dQyFx7K!WxCXlRf~MXSCP zBrA`+cHx{NvZ(}A?=##V+6~pl;6`IJt%GWaW2Z5Z91nVTzp3&HglKOl-WV8Mg5l-R zC@QXgdw8%Y&z1~>FwRx}u`s@53J9NDG_0u&lfqAUO{tbaEU(*^(lT2j z@P>|-!lCp%4H=EklW0CQmL=Mol>%o9XXcqMfnq`os-%OplQq6DJy2-p10&QKYm(m= zCo+yw);5XTI%HnJH}G{~m0r#dhVt z_u!w7|GS2#v;Xh7yc@~oJ=VGXi1r=qb8C(d3_2D$957&ZC=5PR)AYjS3BMu`(#A+$V1CZmR8?c5S(M!;iIpL76hM64rRMLu!p&99IV_e_6v-YDMv<(thm< z%vXg;jNN-tW)q6seqZDt$P!Om-)Sp4J;0dlopxbx3er1pG7b!Jh4~h=4mLUlH^uf#|tZ5a}-#4$W9&5o?W^tU12_!j-Q*yd2ICjK=h2`te~qXPPe#-haA3$8Jp?5$CW)4`HIB z*n*MM5~&pI+~|%@R&+)vaDG@k*t+pO9Wk1vCaihg=VpAm2cI$9+bsxb6M_>Eb^@0%$+~^XB%Qt?vH6j;Fi-yZis^ zx&QG_xjDDoHQxU>3^MNh|JB|4F!#@S>)WT{{+FY^FbU8Q|MAY)zIOcmH3< z)7}5w{r{ER|5k7R<=<~tX5O(1G(P)%9$YEX2IGw#@gRF6EHYA77#Pmv(E@_iQOi2} zZnZoct0sSn8VVE@e{QxtKyraMHHK`2WVPjoSrF;+D$Fw27DJscg?gLpC$Q8??ZQAB zn{5~^#G&zQGA?70;kN1I?65iCy*8(@xR}kR9TfS-EPb0@c(^iWZx1cd=GjKsY2;emEXFUieF`zNI@rF2r zq22>;VCPuYxw=gY4$hZ4Lrt448pb zB~UCtw-LcIM%l4QFL*gq5W}b)7y}fx@W8&Hak4>K>QjkFG->LA?cl&6fYv!S00xd| z%@Pdq(k3DL&sZLdz$8TaJiXGhgDD-BYNR4HS%z8Mj>}rR5-6~uaR^muZ?fT647YW3 zzb7g-8>5(d=$+-A&%g@{z|2WoPZX7p8^jIIir=`pF5<<$9mGK9`*4Y#aH-P0z~`_B zfI>r?YI_yhl&`LFQ*Py6#Ok&U#+SC8vj}CqU6&10^9C20V51XS%k40O8>VhYTww8S zo1bR=-S)q>EnsK2+Aat!%AnsbLWXvepS1jMS{@dc%lo3A2KnFi_I42eYwN-NPX2ct zPbdHDX&iOCq3WjPsA z3qzAod8Ur>zR#UfBflN|@%teApV9kKb+jnvlt8*fBm~z;j2HF8e{gRwClkf2kAq8x z^&UXpQ1!o8`+F~?3lL6eH|v*&|C1jn?h0Qxxl~wO0Pl&=6O7%-qCA`9cg`J1rSSE7 z_EUBz+sWj+AAsro`CK88^7@gS7Kg8F!`UQq4QCKs}G+hq%pEITc}MbWD?z5;rJIJ=AYGX(3tN z^)tYFlNRaQWmac3yub7k$=k#15ux)@P$bBG?Z#4{Ef-~wbOBycyO63FwD*hIXfouk zIGjw_jLTP~nshRUk7+rE4rqE<+Fz1iAzi4t&M9#<3BBg(QiqeK4lG=0QX&JT06Y*R z+RaM7#w`RZRK*iyzjngc!^z}ysx zhPV3|nw{oL4%IIA%xFf@y49!CQ6SyBo{(-yT0|=e&O22KPkGpmxV|I17bCC=C}ZabjM)g`nQhf*-gV;4$_K^jKU+cSiDsS3HuM55|?_sH9wa!|lw> zk}ezAxAclH8NO);7VtjYvBb2*a8Xnh=@CsJ49$0F(W@K>8tkjvkdJR?baa$g)o3!I zhU>rCePT=dZUO z^1?>^lXU};M9`xCXFI;|I7e6vDm=$=w8ct|*G^G6nqVxxH~7?{PJCx^TwD5%KfTXz zBzX%$8J)43UU}IydZHkb-a|~GUZskgONNK1|MZG^*jYo;dFfT*6{n*7M`U7*lCYHh z+bgI}sol5^5bSGzW?lss80l)9)*j}hXvpatE8{I{Qw6>aJ$k*pVIuTl_1D3!4Buci z-X*=M;^ljZy^Pk92riv@hZJ$d4H#{mM+e@Hu}>JnucvdGhy8g3m-lDSvU44UexVfp zqn?q0Nu%m>(=}HuCyS9WcO$bqElyRIHgNY%a5wlrVnQYqz? z@fCvUwiE$J8*Nv}M|Nulqj%KnJ8x0Y;x-u8`gib#XvVWSVXYGW(M2{xVHw@P0)%` zHCl0K8cZSOR|sK?Tn#4UfVGswD#W)6bckgEt!`xhor40T2j(=BNg7XJ*0n^33c3Zj zZBB~3(%mRjM#_oNWQh2*PZUru+t}cRgz&f}^o(M96pW&zsht$mqH#nA7LnthCU);2 z%TG44XU_>q3|ySibTg=bSX;m_09^@W2|vu$VD%pHTG7&3!j8NF@qVB;=Hi5fz)J-b zP=uZ?bg}6xrFajk<6kH%oI_{GbQ~iR-2J`%{in~Lxf!l66!GZ_`Mf$F&&$Fr(4gYS zymnBr3+Dp<|?O%|2c>!Q~5ciA%VA z$0ivy3xV%MC{V~>&l?V+4+dhcC;2gXAT;?g#Qn~bv4tzj7~@N{_|8W#Xz86O7k5lx zS!cShe$y~w?h5$f*29?B1KRpJWCac$VnWZBU?0&!_L?4&5xyqFm7t!1iWh%7s&rnt;!KJ(EsCjx4#9@(AJrw&e_%9$|2B@%V}oHI!9|+`H-M@h zvqhEy;*kcqT%tj%L>Dlq$Od*y#}Ji5qvg>l^bFI9_e17bpFgn%QKt+>po?{IdIMQq zRQMJ1w?Mf;Up1&*&9Gj_Rb5l-+Ei$+MYH~7t-Z0Ht6mH$94! zIKwZLGqgMTNcso^M#Bl5s*Pr%eo;E_$X?gxH5XEx-2EbA3ASPqdryi5m;ka(4Q2)e zN|2mZ3uO5Yi}5(0ZJEL@7@T8slJ3S_QBV@5jn`CCLd(fX1yCyEVT{;Xzc<`(B{J&Km_ugl%@CD60Lw| ziu-PeGPo?43iZs+ria9YfD){-5upKy$xc))D!!X-hTXsh$ndlkOJN%tXGUzfe#{OK z9k|KWLD~XN5rDhjYo-B#92B_qa5NtC5$N}HP#r)K>R*QyrB@CQ3eL2nkCS|MvOL}W zZtMR2?<8NUJE(F#T-=1ZP#*m;JlOmDL8P!6%}Yfzn8L711M6NBbJB(7Pp%QsAlBdy zn0&>3fS)Uag(d{F+Up)T*1ipG8mT00n`E`nb#6^>fLgy_EMy}n>5c40Qc^ttv?~P$ z@Wu$8c*Quy&Qs`BEh~*9V$p4RLaG4FVA>*^T2~7+^hQ6-Su&>DiS&{*wPtY$tmC6G zT>ijhda?t%)Q{1LS(WM?kKW}yisB$VDp9SgMRe-a+yYV{I|s-5(R)i#J^9&lv78fY zUF%T5>hGBM0DsaeL&tq}xPjh1%JQn2{|@1})J#VJq!|T;fC>Y$iPZoA3h|VQJ%bL7 zku>{&U-BfVAwbV<1B3x`r|U1+6|~)>JFT}2Hh;p^Ys3XNQ{NGRl6MskJ>@k9R{HPq zb1cihg+rTu+&BI%DHH_>$6foK&5Msic&ASF?MhLqN2kO2@azUVP-N5U4Ia2M8i}zrwAx3CW8ea77 zBCM|`cRQd0wBJ2DoT@FYIGklU6DHeaIvf*m(HD|4@z`nCo8eQNFmL*GxSV;50l4Bw zQCfhL*Du)ie363}VQu4FCcII3R&2i;zadSZ2*S@0W6mBf=-vUO=g5pa7-r@u8J4aOA-Ak48lTpTv}M}6S~??2Tfj9`mf(4# z_SDI#9b%o+R|~3wW8Xk?AByqvG;9u6gl|f5`qVVdzJ-3U_7Dw{<_X6|*%EHhzk#!J zAIf9xL=`c_(;Qf(3y+biUwDvIy?KzL+vJtOVASd@!O-$ z4$fxdTKs6o)W?1Y+=-*p;&yk9MQ5^>=TY`X;ULObxU-{fK*c6f`PanTyLtWhE9*k@x&+0qrGvHbDgj3!3?YVcSv>s%KHVUspbd~^6b->{NQ>I2 z6@}Rporw4oi^hDn)yU_iBJov0pbadlTF<`S<+wIcZjKofRbSzAg{zNp2h;H#ubPcT z7QsTuuLRi9(Hsgm{f*X@<;?~olaDGcI>946pD@k-x6Dl766^kfh4|OMGWa-De5pF3 zM~M>N+w4bh3QY2%yhm(tcb61194~&YkKjz(CH+@?1vMhS=o0Gs^=n9_>>@hXM*;2? z5$gL@OPQ@)&gjf2WT@cRn*`BCb{e{ z;5NfmSDa>!W{9fE@`Iq3RH^4uKuO^w-UF{pWnt+HyqQ2$i#w=TR6e)t30PxWBOW-- zEW{vKlmF23mlDD`434BHTCiw#(+a{dBmSedNdgE%9MA}*R1kZU`;>>U?g_{mK{_r! z%u+yA=%N9pKl-|ZPYGcd>UF}H`}3iUuYEYzipR8eEJ9F+2q#K=)``@Tt+ti2B^&5% zZQhAV^Ng-7S<~0PnKwrhhz*x$^tXI6{~5)$b%RO}=dD-3r-s8Nh|`QsYY=aDl|_iR z(A)aI+l{LbuX;7hkQi2qvTnT)fv70D7`D`^3zBYsl|@Ona;F{m(hbziZ3Qrf(yJ&O zMX^-@S<}NRkgRE@B`9lJsGDC*1W&Pk79@k0bhPT$yYtM~20^(lXJzFuyx_7D>iFzY zEUvZ?=KF>ux(iPg4V<+dBrEUr8}D+I8gVkhcXi=ap6Z24^JR{TJbV-Ayz#ACza<+b z3aU|P^iIe?j~dlI;$K0sEN&2p_RO@^Y-1uzEY)U?SfQl4QoP;C%nlpQX^+pV`8R~C zqv!xh;fPg|KA*Pae7WMW5<*iLq=fuOR7k|%IM^Vr3P?_M)PQ1!f}AphucC%_oH&B&-^I7HW`Ustn1iaYf@gIK(kD8Ytm$U_i-M5@HV3OJfSi zUTn@iJ=_D6577}tRQA}{Ei@&72JlyOoC4fqHFXvWTnyeTFcs7ncat*j7)92k2G$!Z z0-MI*ftz1m2H@00Ey$m#GpO-CC^HmqW0`TjAJ6f61b?Ymluo=I<=qouu|u z@~BTn`Vrf;Mr%UV6S%INE;7vEu_bUT95uQP-bMrnr9_Qdphb`c(r!aoWs zt*T@1QbP)D?tm1e1q;m-HzF2#nKsb_VAqJ+B(s(padMb(S=wbR_As`ufL<^Z^-X^| zRYQmAV$|gKqhf;OsQwDPL)E{iQJ;cLVg#Obr6EMT1$5wjF)KfAy0wiTZ(MRgbI3Au z+B?ZD`;4aY3)IuivT{a>si@gnosK3>0lH1$Ea~f&5`bF6(=1l5Gt;dhSM;aD9ti`hVwn{U>{3{@?G_e!G2zeSnwu_V)c${4aPs z|L+HP?r;5{?EV#wA^H5t{lAmz&)M`i?_o1Zar=c6U=Pwj2L#YkT`%=l_2l zPZ$5K^YXuuUj9!0Zzp+2M#u_5xV+&}p>YnYCj1W4ncO^xkSlrY4zgb5s8hiyy@?hK zUCp0TzVM>TIlS&W~ADKw-+A$Vi z>eG_`(?KYPkOF*FYOsO++qxIT|GmGx*~S08mZzitI{NQxqyIFr$^cp2Jlf}zQ-e1g zJ~7%bc0aYC6r4GQL@>zu`+xJ!U0?pUwY9mq+1>xw@pSip zcmLnW`~Scy?*Yzi_EI^)k}3*veNq50IS1mGp9t$x@f=kd?cn$LmtW)Y8Yji!xL9Dg zLxiCE+k{ngvH|EERbMBZiH?Zhc9wP^3)t!(lT_%!R6fxlfFOSkV+Zc%%PPYp$gTx) z;3`_*Q(YW=od8q_aI{EDmh&u;hjHMzUJys+*0h2RST2R9FrFJ1A7k+{$4J~qK9*| zhE3?i&URnG=g_m5P$^qppiMbVpxK{TFPkaRK5v=of^vSDMk1m|^NkG3TTOsBz;(@m zyNgdlBg&W)v}a}>q(I1AH{uln=Y@{C28ym}3%2i@wm9~Q)~sd)WAXL)M8{`}&N$M` z6q&6l(00l`@`%I@OvDU~!zQ!=bd84e_#&2~ErJ2szvL2_Mr+r>0Zn8v;7;-_kj!Y~ z*5nOV4wKhXC`8b!B*Ns-nR zk5iD6tvXb+(YQoD@PlGpU_WB=Dd1_iNT$lv2mJd7Oky}b?3*DDf=+fR4|-z|K=RpR zUqST6i+T&19d1!I-_UMk1%9cqwtvCv@j4^NAw&u!ID8ow?#C zcw+iLwu(L;K~Asp%V&XU%Kxdpdh)+J54O7eFW2&P`CmH8;8!LYbTosE#4?>-zM3m` zu+S;)&^ZLt9^xiRH_if-b^_N;&J;@(M#iX}b~q0aJvkjW zfy-*%!W6_8saYJCUbFb3t~7Fuehqw?szv#coI3m}xf*5l(OnC8QB(TdFMXaYO<{3m zae9*~zsQg0W#K`|yfn4sQP`VRXA73$=8$P?WKgVg_%h;`@XL_C^zBgzLeenifK6{p zQ6SCQgqxjhX7}I|;s4I&lX5g37E|E$uObg<1OIpL!CjyK+uYph{C}?H>G;2n|NF}L zzeN5|x@-~jn0PSFDF(IcO(P z6@mLjzw+!gsx#O|RV>w84|eBVfr-LxoBc%eFk zkYppNUxt^(GM^$74W);;0vLe>78nZ*sYE|mFR|KKcfQEMWQl7*Uwzrdz?er3tMf{| z0%toGPporfnJ~_x-T-&nFSsdFpTDSPI%V<(>wd@oUB}be|94#8jpXw7^TqqT zVj@HvsuK#!M)UaveAxc;I(__j7LWex(cg#rk6%80aiC6F{t-xD*q?gOD3azq=my3_ zXZ_dy^Jg2_0C9W$o@hXkG1}OeTYvU^$jsp5=gw2`Ceoh-c-G?6pD1sdc$j@6egSI4eq<=Gd)#2}ty*lZp%Ybt(j=eG zm*@RhyGCyULEt}lGar&XWN1!bzxUtyp&7k1Y~XvQ3WvbigOFe`Q}|9-QiMJ5 zNEK`u#rLfpO*u~)`Jb};>G7hRS|zHN%F0=L;7~|uGsymUwSO?&`}@;<+y(5~8(0p4 zX&`*Drh?i=@MwzWkLsJY{PS8AD*afqa+I%at8%z+qYaxJ_O-1#R*up3Z#}fRj-x%{ zHXO}I>M~HwthygCGw6mv8b|uuIeNSZGv^)7;ca+HS}DOxBKXMUQyVtIDg0K=>DB(; zOZ>*0tz~zLuPqUntvda8mV;`adH_OT^bS(1FDxcfmvfa(bsk>E4Vhv?S^JK|cEG6% zK^ZA7z@)F9QG%#Qaaq};8tQt@@+QlEtm{u*QxC#afB8onCx@6}%@TjJR#eql(;mVy zw1EU89^0yF|1iG9Z}j^uZz4sQa5nI9iL#KTAvGrD$q5~PggGE9D637KX^<$`vAu2J zmid-uux{7zDG^Q>Y=@cy%M7@rkUaIXgkvKOPdNhVkx9HD94b&!fW=5=X=S%7y|0=Gn(U3i}EN#aRWcWX(6=B z!SuzloJe1!7f*iKaIg|PK{%k$pM?vNKxME2sm0-ZeB5UY%`2b^YFK}6HZS>v{C~AP z2Z8-jRb5pd4gA0Q?eqT+9^ARp@&DKHYyb{kULFiz?7bYmc=YR@FS)Ce9{CcPwQCj@+1sH>RupMj3pnC!UqD{u_hCv&nNhU2 zZ(Jj74eQB_x;3+h87+JR=s*rB-eM} zV-s5rrD*<%M89U8ZHSzl^X1vRue-G)46Jw`VAQVve}cxXET(Zid_5esF9qe^Wt z$mjzCv1$%hCB=+G9Fow;>Bf@#P)pwKw%vrheHn&o85?z|M z&hu*3#vC!M8-@uU(NiQghrE%olz0&-t}o(<86bXd4)yU?hWc>A5uBDEkov?Pkkt3m zRv}`6Bm4evv_QMPek5O$Ar;bzxxtwSk!DyOC!T1-Hjy8lmNp^@>mqBvLl-U3P`m*i zPhXFGp!dmuH(#>mu{u)T&_Y?V0{#;lcZN?2LJID1f=e{Ig^}5NSX=I)EGEtuGZ(Qq z)Hq%$4ihb&4@XDubdoCEULAY6j)sc&E$GzhXvC72JZ*=VkKwWXl>taQD;ysMuye~Ef(GoGB#7LmGO z#qKf|1#eTSOdUBFAxh*4HA>zEuQ-QS5XuwdWXcA#m_HAa-;Jfd3*W*!IHy?|Qok~SD6dR-;s0O_* zxTv3>Jf%R4u22Ey9z>wemYgM5dS$Lr0h`enw#vNZmA1jiC85)a(V@@9D8~B8*b_FwdEG89P!Ds}}q1;E&(MM#N@}tcT_U z)j1EM2FDuj;D+!;K7yBeSFJy6iQ&!G;hy6}uy;CxhcMXq=P-J{&|^ak%?j|$LourY?EbMJq!Q`*VE+Z*68MinErq_C(Wa_J@* z2mLVUo$Vw?5Nrm{=L-NJhXm3Wv%!rk;pH{fU%9-y?*+T*Y;*{l#t!fj1nReIav!IG zWbXLOFn6j0Dc6E8h@l+^dVhMzyQtBsPU)Ra3vVWcCvVwv(0!yWMO>j9(S`z9HobLt zYqR$Q>%#MCrOw=80XqGocSUuoCUBZhH)@7u)>xflAPKz^!Ad_rTh7mxAhIx7TG5k) z`lzEaFGXQeWkf~J3%y(AOLqo#Q>nsmwghT-v8cM-4324JYw0E&mdA{78ZWd)T3c>t zNEJ{X8(ik0Z8K1XtnZ3;nTnXJHUu4^c-b=|BgEb44#m0c$}))qQy>9h+;lI-tY}N*uLaFc&-4w@j-QJ%w#NS=Sw-%c4GWuEEf&h7wAPC zUk{HnCPVuWdv_6fruzn3fLzBWu*qlw!4KJK$qljaE#6g3A~Lc<*R4Uo<94vx9-M0zBGTR zMUbBT6=o;_5r+ck8+JL{*}*K&!=p)A<$b}{Hrg~H1TSLO>kOJ>Ani-P1kY(>>kOJ>Ani-P1kY(>>kOJ>Ani-P1kY(>>ku`JVp|F~w(~0H6;5 D!D78C literal 0 HcmV?d00001 diff --git a/ansible/roles/moodle/templates/filedir.tar.gz b/ansible/roles/moodle/templates/filedir.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..b073b0ead99a846c79867c357200b4cfa63cb257 GIT binary patch literal 361313 zcmV(=K-s?^iwFP-(urUI1MK|;RFz-%HjLhcqM`z#pdcYCsB|N(Y(i4HLAtve3kd-M z0RaI40RaK&4g={1X^`&j+-I$=zvut_zw_o9-}|2No%1qui0u1bG1r{eyslLkn^_te zn%OfW{|moZz!x_+H|Ad!4%Ywt@1HM(m4k(Yjh%&^je`SWVP)fF<3Ol6|5rBZpD!l| zM?HILYQ)9Gh0##YQSZO@+<))$|A&4V{~do9J$q|2YZE3%SI7U`>wp8y#l`hs9e*~? zzvIus&Bo3Je$L9l&CZ5Uv;5!QlK;Zj|DTV)lBt;kHE;kU14kQsH);bLYezjZYX@pa zQzOiOjI150ZH%d%Y%Oi{42=w_p}#m#>scF8gZJPA_BNKlgQ)f0sAX(y3@zbXhDJ=( zC>v^P8%Js@J!>aDOG`IuD;sAc25JLSJ!=yqY8!iMdn0Q-Dl8!R5y_8%oXIO+e> zA~WzKQzLsLrvGo->Hk;1{)vB9*8g=W;C}-DS-DubA^vl7aQ`3t|KIWTZ{yF(^}omk z{^!S^ot2yO|BV0tj<5eb{;aI5T2JAdAER8^L z8gTv3)$!lV|7@(B>@3{>dHmT}IJh|fPyYYk@fGk`R{X*_vUA|u3y&mF3J8LWz`tis zgMWM|=%0gs&e}?-J0J)?G5m{##J<0ZAg6ZCl++y6WTbfwY^<2{3~ls{m|U%FF=g@# zx!UR(SQt4{>l>MvSqsptR@Bf?n;8nwsB+4%$k>V)nVLzs+Z!pm%PJYTTNvCoq!ALN z=6B@<1y~t5>QTE|Sz0^rx(d)>%H;*$!yhx#P-7l(v=E?q06(BslX*-nVqF|Ptj>~CG* ze*!e7j*hmx%*#S?}KmWw0@`u`z-t7#-XIJ91^TcDVUZ2`D261A8-D zM>891YWROWeH$l70UDZrx?pAduVSqo{+bCGjM-JsmYJ1_h54Tc4GsSFoUN0+C8lyi z17;&jBP+nb9Kf@z|9aNe)W*@q!PMrzQuMz*{!bNvmdMEbx7%W6^{=NL97UZS|JzSH zD7o1hF)J83*f`l67>PQAX5NIa+wzLo8|eY+retGd`OiQ-{-;gUY~Wq$J2H9(X4dd0 zcmM4bBNX^6K*I(gfsuusk&R1szx%ME0k5%*y_Fv5vYC~hi4n7{wFwRNzYNJMVqbqdABl)O zwzq*0DnR3)ApVg0k*Ek4>wPXRMm8o^OdDimcpq58a2T*Ma&dt|?{o988|m}>Q<|K;83;)|%YQEww#pEc z$jz!}Xw1cFz{t&Is0UhQ%*J@1o7I?6&%l_4L(do#%)$m8|4&I0W)4s?{0#&}BfG!f zS(;H}+=o}s0EUGCjR9tG4Qc-V*zCVxkN=^X|Gw{HYGnQ2^pZc1IoKFG0#R%9zy$R2 zf4~o!|7*>6&~yH8H~xQYF#q2h|6g>)|IZr#_q9Lr3g9d=raR34F)+;k*D+)Mzo6GY zKLU`5dHf$N2LJgNnj2YzqU`}zpP-)IN3bqCKSDiFa(%ya?D1M_*K5|xd-0dHS4MUI zBd*4%p0_Az{e>>1@HF=fdvsiT(q^GnoA2UtGHIC%ZkFmH+ci$EiDizL~?m{O21-taE?9 zDMwEI`9|9p8}qL(lQ0(M8)4E9e?Iwu|M>qD^Z$@yZYkq|e}^_F7MdoRa~RN_76ZYJ zZZgq+ixRqQcV*fmMo|whoeRD_dH6 zsj$A)Yi?xU$ntTpP!#oX-i?MvzbvPaU+%QRqia&>iLF~7^Q!`WaIa8M<|)qr!n6SU zK*+{y^EvS-mwV>qAXtm5N{3z4hD&IpZyb67gLZ4M1d6kRnl#9!KCeTwt zOr;I5QWw%0^pS@Y{(P{;GOf4#Eclae9vd!8o46=*D^u>e+iwEryYM|~%zHnw z@t#)3GzTu1>)Pz=%%C@7Vscj=O9QheL9?EDn(euPw%Z8yJNiDD zxkVe^o<4DQ5p6s5)Msqw9WdW>7%v^;D^n5Z#GT0qB;oLovAy|7m+HM99W?wiV0hn) zJH||Whhw0nL%K{%AGsHY4yVxRS3ZM67Xr6_5VxmZvfD(vPO-no{byi1lG+TpL(%)g zMK#A?4>Z#BOLljvg;AqTCaLpoHDeoC+P!@eCx@5m>wOX?wXu6#5#G6|V`*V}jVwR6uJOIyY#rB&NL&bO!o) z*14Od(9OEcjKMjvKXa;gx6PGxhKBbR!jl{x5+c55Cdl~_gkmCCYo}kAsSUk9mdy~# zbnPIg2Hh(udSY(2p5e%*9#2VjQc^()3SGJb9hvt>q~v};jjndguxYoGk7jC7?1s(_ zW{)l}-D}G-?Z*e>9%$)Dgb4EGCLFRk#3VniUROiYYsWtIGlNL;=0{WYji#CMty>d5 zyl*5)&;vaqV~Ql8pM_WWzzdI;wwGq|Y}&QaLnWJTz49p3$Br*k@t!(4O84YGwE?RQ zzJlRX2S%jk;M<0R@q<1kaUvq3A%|&=BAPK>ZLbNm$8uAj(kuwB<*yJ^&mEf@98XP4 z?sq2lKBkzaE3Ia>nJ!RpiJv_TZ(OJ;Uv2Pt9Df!;hOf!OAZ*y}Q=vL;I~sNwYn)A; z;mMpldLfJgt}mpe8v(}gWV~0>=%EuWg4mkCK0bb;)7O=2ZSA>i6BW&#m6pWYMpv$p z(EtWUw?-xVbtY_eaVQ*cZLVC4c}x*PpL1H6uDREH9iY2&ROmONgYeVG=r4PVJCOj} zdBMDEx)(h? zm7(I$(idH=9451X z|Fg$!$M)-N2_Dx>*Oy>3v$g1#e232U|jxOEuW$Hi?_prcA*qzb(F%21RG{{8^Enx*}rFo?~|nCG^HqDbUw zG#iAf<+B224>Kp1GEZqoM|1x|kC2xwvG%HiwzVfiPnYp7t#)2`Ih`ux#g|B0)%&_9 z(kGFYmL@ChF7S17FWCOfP0*o4QP3gbxE8bC`q8%8@Bw!jr?=Xq{u0f*hIJfM$NJ-) zH99(;3NR+tBEmCqKpr{eQ<8tQ7s~Z3v0C9S9OQcWZv@z^8jNmqiP3qE2ch-dUJf;- zJ{wlOWuQSa??HopUyN_GrbGjmLoa%~tSr^$+C|HAEpob*ylJ=WF(=4?);J-8y>yxL z%y2z8w8)w#kEPY=kcmK3WsjHJmuW?@546tOm}+2r)0P*l_|(Oy$vxe%VAh3XSnwBF0?Qv*$>%QX;26hlw#ajGjB^Jcm&-C!94qf<-xC^E zJ9L5gsceFUe2BxuyD0ig@kT#Ds2cAKh48f5jF9ei6=@OgFU4H$v=#gB7Z?ELV2ANr zJm;5oJUH<1LH>66!kwhwd)1$NrSI!92m;jXih#q~kzEQ}>C3pcI9*4lJJ9dC01z~) zc^y48j`#Fxc2uQeLt{d9wGi3-vNo@v+wa#4TA*-p2$HsOn2b2mv_Vy)%K-d9x&CZ? zu!hWNJiDbF?y)rt~u$H6YfNV}`TD zte1nT@z>%d+^3+eMs7I_WCvk2+Unj9G0$AUJTorTuI;e`yv_fY<+)JwP~QfB+2ebS zx{ORmxnsJTUP^Gt%g@4R6ESHGSY0>1nz$pG3#bOrd&%)Y3+=+>SxXX5Qc>B zw*dqBL8A-4TO;QJs9K?W69kiCwz1%62*M+fCHjVb`Cu`>ncAh;m!+JirRwxvV&j=G zAV8Ix4T*crbuZIlnxkI8H1N!0@I$x`Kv~sGv7|H_&ZB zh-K|n%KX*@^Gc$prW4?P$$l_|Jbz0&Z|)KN>N`m!mAb9BwCI)7>yH+Ix*d-d9tOG=~2a_FO*jKJ_GsKnzTzIPy={l=kBbJI^zAx)G+ zyNqP#x{lZxc6NkTeyQC0*ah$rMF@wSW@8p4JC7Q*cNtt(pvZ(2qAWD!oI7cAYB$KfAN!;go!;i` zj%y>c1E3ONO=!IG!Q>n|Qm13pJ_}Aeuf$1o;K;!Nx0X1G<8lL9O@lw14UWk}SdfM) zePqBYBjeFNXaYw8I)3^WlkX~13)<(z+GyVn(%mOEv;=k~8bk3PeWsnpHLVDiUUZq89B@Tp4QMzkzRL|h;C ziK)SIL#qA$BiO#bkE-X!5dcWI#l66J_71|UK}{32*p!^p9G;Y@1V@Smf}LahX5EC1 zc9zNydu=ZCD_;PLg$(yq?@>-_2><0u9m*&A<3HKC9j(fz_cK$T;Oo=mf3UCz7&lz8 z1U`SF37uYhayocB!l$NuLmaq}nS0IxPk*w} zu>hS!LLBBM6VX>NFbgm*G!sV5JIEwxR_l5r>(TCR>!C5np?*f)Z>Vx|Date$g>qn6 z>%rmnuiONf$ZfAa@TrgIfXe=RxR2bSy;_x_C5j=a&WFg@Bj-KymFZPg z)#`N>Chjaum9K$)3GbH}qjOcWE`_olQyHvqZ@r< zoEF!4XV926B8&;_QWe~u4WL&p`%8Rxnzk=vApP@hGUnaI8#C)I!Q^hOjOAl8iQ#XFZEEyXY8M7UZO$%1y|9%*t4MFiL^pLH0$Mtdr!*LY| zK#3U4&tcXeG#^VitRL_ZJg#Rfo^1m3=I(s1?ypG=yw<(-XyT9LQqwDUKOnBA5%XLhIL8$2)Z1Xfh=Z>UJqc{ zeXfmU(fc%j7yr^rj9b;iEgwNF#uUXYw601 z@B!NYfN%F<-fjv{qKiI1Ic1#Pwj^X72fWa9j@_rA^3NlZ7~fZ^3~TnDu6lT4+F0zm zS8r7ypxPE4m|x@bJM?GQe3@>)kedo*rq1MW5+G?^jL8FvOb2cb84xMdO5Tz9O_zh#;=RJ=UG z{kM;S3X`i$7-?ZS40Wym9hZCw+{$<50ZdYAQhs*f13pW)hMbHZ^o5)N_BRPr&X;Z& zEEMyQo`rzVIhviOwKDE7=j0r%$CWX_(!((6k|)=MJ2ZY^_-Nt1iqQ@gpY=d#8UB-O z<9q;&gk~7iI238PO>7SvySEyG2k76#r6c{P{xU1@sm0D1KDIGBkKVE`(oLK1fV)`= zGb>Ol`v~I;uSQ~znKelW(EXes?Ud=u@9YvBb-I?@tRx*Dwr95CBEl7Ru%oQd4w$A~ zkcn`8J@2!WbEW&uuJsBw4+f|CFlmAHk2!{G^~U~EB+{!+g2%4RCR9`dyh@z7pPRS6@Y zj}!*I9Me_$dit$~zyql@Fdu2>yiEk3#s8*r#(FD-5h;IPVq`xIy=YL8(_%3w4}mHf z4*G|l#CC0;m8yr{egi&^;ULN|Y(}$e_%lo=g*cFs#6Xb=SbIX80jSj!)C$n4OauSi8W|0B_A&HW zSV$6dt$wHGG&}nO021F)#>?4q&BP(doMCr{6B)fe2^BlTfH-vKTWzj|cEC`lKF0%J zz7M#XtqI*K4rygfF>?_P~ zg(o=#UP1`rbgQqnUAD%x_`V|Dq0fE5E~e@^^gy|{4Cs%WL3ilC2TWI+Q>w%yaus}teYAJq}_zgIxb&86|oMoP^eI3WUWARU?9#HqDF*;}{tH^8;VQ}UgtTcpPEjR@* zohw5m?LeSm6)&rJrE+VATlG*Wkevp?4?@k-r~BElWok_EI;u+kcf&Wa3t-)Jp}{wLL!Jcm{@z)UJo{ZgrR z&eOUy1cX1<;Lmk0b=C`RRt^Re=0!)P&?$#6Vw$MV8caMZB?=@E16pK?rmVG&c`g2Ye{eL{8p> z5?{?5JYF8<)u@%Ozs5Xz9rI{aM7t25YHu1CG46nReQp;l!-Dpz`1U*yJRM;$0kgjjn4Y>yeH2+Wk)Dk;8rHq-m#RVmu(grpn$!+WLtJY2LMhX=RQcrU*# z1z938c)Jm@H%#q%k9t7}jl0lRxE=Mj2G24_Np@}V_u4s+e0}=B&2_`~I@$Hh-DZs* zFQ2`&k}5r$bT~YC>Wd{={)feM)YKRR=~_lO9WgGllo`ErS$Oq?9*Xmf1g1{dsk6&~ z{CV{2unxO|6{NSPm|_5c`s^-yTBliRY8UL+2*tdePtw~rQFIwX55c19=?LBv5t+G< z{th&gDArkx%{?VJ2m}Yv<^}`qUMetmprCDCe*aoRL$aQ?vVY{Gi}vNWU;A*>?lN-R zl6yVYef<|2U9RGG1UTn_yA1XWx&qK)_pI9k?%J8HGsn=-)R07$;s9pN4On`);Z6-* z*qio{;AWwk!vvqh{&5fV(s#6_Y&T_GH-}j%6CG0io(gy30L}xIsbur#z{sJ2uwxaA zezH^ZgcF4-pLy!SA0HKymzT=C6tfrb3LP}vrIe$C4*ylCEGmM>romXIlbwH_5a}Q) zJxz#wF_Q92@N{yRv;aW5oa449#KLl?#&hn?dmh(07a?|DmE$#`to|LM>;Y+REmdWH z#}9w<0qwy-HEU;|%l5D8GYF#e8yASRW&mG5EaJ#@LF+z+4MvL16o2d$YEhhvY73|wP z-T3O zCFGcCJ`kCXbP)5bG}*SMfI?CQ{6kTNl(8a?k}{lG_Gs!CnqU)K=vrvqEs~*Dr85!K zX8?PBGQa{k(qqWrY==~&H-AViX0>bIi>_OFhW(^8UDexrOwi4AY>Mh=3lz}YORn3* zO*Y~9RS?&*9rz|l986JCau6ctWT8I{73;85RVy(`jhZ{weLmb;dvmm)z58CE+@zgb zXr)gpS4EtAvB-dYI}V>H1+Dxw-qurhhI6?=mtoiyPOb^>V%XT3SM-q^KMw0Ax~2S> z7~2&oOzJPBDQq}+>@*40m>kSAua3A(PkL)N78^?zbE><%A9?-iO}-Xn?`)lYyRV4n zPw+#p^Y7&Yy5PI=^(-(wp0O^7kPede`#-T*V_&~HI%qzQDp2e z=q&K)=YCY+P=N|NAXkEA`ebx)64jB^TLTO6%+yK|JOt1-AQidt?pTNixUA#v4@XC% z$LR40?~#`ZW()ddTT>dXZ$IFR(b&!&QNIBSvNEk%tjbv$M6j?6OeCK7s(RmR^f=ws zP*H6ul_R*&D0JWU_pacwt8^xm$+lmTr5zall7>s*ySb}&Bu8+`wXqveJCd}e!dI& zkY_SL#vid}g8CJmx<@V+J3j8Fd#N{Xrp%-tAEeD1A5jwu5sCqC^d@YWmQ)9+&GjT$ zD@q#z!sO;adS%wDej$yk7^MlHS*P&&3yITM?Jadp{AvphSpQQqRp|H z_b&npPa<^Yqow+W^$nqBAiip?F)jZHed<}xu|{XUlK6lfRl;$NkKvS}30f4j5&SdS zTvkfKt~yfx@X~rIX!8_IKtS@Fz}P~O3l#x9`}0{&s_xLR=gG)J@AARdCw_<7Z6`Il z4A+4eMK5k^1k0iA#E%Fd$;{?Y0;oVe*bf@Lca6O0K*VMyzrDpwxmVt~PQ@71DOtSz z`+^Lgoy7@NKNF;m&cv{9LN{%CO>$M}LDzyv$MJ^WS$gg0qCOf9urG2d-Yah1_9-=> z8a=hPd>`}9MG(HfO?s}I z=A9fe+kAGo^v^P@(71jXhf|rBce1JaC4ZFr&*R^}Kk(cCesh=_;DxrMN9%wX%MW%} z)e80>8OMA2xlh`SFHtI|&zt~GtoYMHp6qQ2=m6-SE?|Q)G1*ZIJbc#frfS~vwO?}u z?ALxbYwqu67JE&pJisn|j{a&EmuwW!X+D|?Effpc^j;o$`Ocz{nl4;lWVit6i;4J! zj|yz;Tq<6s=#!y@V^Siwo6!PMC1l-B^#d8Ea|%!Wm12uq77tRS{Mue|Ail*=^&jc^&K1>oDC_wi%lvf=rQ^!lN@FGP@7+iVN4PqLM9JESVcwu`c-{0 zIP()T!P*J)DIrl96zkao{KFS^2Ypx$(H@%d$J`p(8AY*fpY?|@FYkV3t1YPWv@bFS z+=<|?Xk$xPW?#K*->#MOwyV|OrWmBuvEhZK8h^kCuWPegC=@fwB2UEk9#G4)N4UvE zaFPG?UOz z;9p8gnDnr((zyQ(PD${=j5TFmv_WnX1XmI!_N&3b&D0m5J$Ahe_|V?H#i53aPIfd$ zoDWUD0O9dgYU8-5SIE=IU=lJ)U(*k8D~e0C();Qpvzi1Oj$5>s<_C5Ft#O;GO&U8) z$0MjJjQ6PlIkDGR5tV%G^vwOKzh#g4hIbw{eVUyD1VoOy89_bhBB#!S1Ie&lUf(4?|TjW39Y35vj&$lyNEB~SNYT$uDzzgXM#>E1M zHHLGIFp&ZXnaI22liFc6TpL{!dmpnm29EeQI89uxmeaY{)oU)wwYV+8jIQV&K<8Ug z#q<@;ZUmnmLg!^!0(G8!k5sa*Ta`ZYEF9-?C>XUr4;HTWY0B7n33U+^zk2029rhfr zrhH@oT|Oxt#ULe}er2BZtYey1)eZde6VoCyIk*&i25S2`1;~h@Hk={9u>PDnoS>MM z=$dq@p|RyKf3Xc3ZBdaMVbNm}Eh7>bb!9#oH@+Sp`>xuB`?~j~N$evUr%Nrb0&R;C zGk==$aI<`8F7#JlVzt&?shi(4m+A0MPl29HOL^=bH^x`W77bJik*^D!oznusq_KDk zP}d!_%kkhQWRMt{Ti%hMlvt^C_tD)6@xk<0epAsGuOBT0Shbyub!}Bjx0dbC`#9EU z%o(y00bbTbAGfH>7cqiikJRt)z%4RXJ&X0fEI92vg~AC6mt$d+vq#5|eCiDuOz2Cn zt>r4MW(Ke~+B7}oUUcvd)Bj}H|4p46LMfu2ajrHrcU_G9rq2@7>A6Zx z6Q^PD7z5NhX?%*K>oN8FYxL@rlSTr!nuA8y)SeJ;1EB1fbQ&2POpNhDC@;zzQtjs( z3+kR-W|ZO=DnC_wa)Pygw3lErGQVi~YmtC)uKcYfeR#zsLO~$=dZzTtZk@`qgX@*T zr7S|H5$%b1&y%?eG9I4|HEAx5SnW_TAcc5}8B6iizl^J#EeBXo7F^e`gvHOGP|t+T z8O0Yu*dbq~)`GaJ{R9BFNzncnpln84#)?kwDcIjhHk#DePqU{OjKxrrIj?SQZ>d=D zYUT!!cMe@5lzr+CTAHImUz7L20yD!i4rlnZKNxDVtKN%D@3Y_x5Os|^o~rddnmEDP z_}$-MGPLfVu$peU8sdTbVR<3vW_0uPO`92eUHSM^2q7i3B?3SZ~)^z^O-yne5CU!LtiBRbn?*?uWbtk99(3W3A!`(zSyK`PAB2e z=8w=h1`mFchzfR*js10jvC8hga+U1Y)v7H*RhC!71X-WjHgl4})%l{>eg6dp;8GCB z{5?wEB$hp9N@(L=2=m%&-`Z+0ssA~R??GFApPfqwl)|pr*5jVNqcl)FL_}c92Pnq0 zTmGj-`)Z}5R`S>=`S`O)$3Adt>TffJ<}!PHHQ6k-&Q|75`$Hq(;s*(=f`;2DCwzyAewex{wDnk_ch>y2_ff@WnJeTo7Nb*A)N|-bn{V%r9}I57EkBu1jT8WE7k-f)`}3yiy(=00 z&W1vbvOo0gRgEPCxdl(MovUUvT0N&UifD|6LYDe*lW!1)S*9?7V$}c61n_DqIDzK0 z!K#{mEl!{uH_^6oxzYp#jihw6C!Z+_&?R%NGfKtspFp_>Gn z4Apa3_btr4J0WD_(jm@s9DC0V-~E`*ykdY&6L=4rCda96Ozc%(X0(_I*4lwfL%wZr zuLzN2szQP*(1rV(sS~E`UCrpzQ=~g`Ctsnq&C|}^7i03U?Bxg*-R{9nZrtH7(_o|n zDLOHsuc#2>LmS+yL{w;aH5~@qhCYP=e5@@+OmOJlf$6~z64SJJ4oNsP5>lK$tPvvb2 ziCLn0BYu(cbDQkaVT5z_igDFRN3W!)WO3cL&zX2(R8ukI>XZXJoQ{D6ZH^zr7vYV* z%*alcjWUy&!c1HuZ{I2tQ;85c%Dr76lKOuUBUx$dknIPOoI<|crKRc1QodhMwjZg= z#f4c~m}9^cBIRedAWpt0*QQ(~!GxCjq0iPeM4w1O&g^ZrT5VH!xE-uwaj)-F5c$_! zit_K-tiCSiFeKGm4EmDrA;|poOwr8>`Ptz0MJd|pwT>^tLTm@$yuRPG8tWnT|2UDS zR-sGM&-v6}f>5Hm^G#7~Bh+qkP~@W;fQI5f{7Tm^&tL2P&{@luAgn78-p z3A(>63yp$%$cW+Qtb!+|6Q?dCXKGxfKX#ZlJj(%j!%@}~8$rS8a+-1bRQ`QX=qh0S z#<2}Rt}SSa0dmA2C_wa37FBsL_uJ{xu%#3w^1|nIPXm22jSh)qVsE7d3Wg39$?rd zh%EmXts2Mub@u98DvFh7yr0F-&xf@KuZG3st=kCkaH&}CE&`THpq;Js(NsOGT99bu zCSh3AY-4g#^S;7-22g%4;QaYEbSvyFl}+1Lvy6~DgNx_SH!v@a*|fb5_VS?9@#*ED z1VsK(XFiSkhYue2tC>~lryEN)229{&1;olX9-sqzy^_=N1y@F}e}iE>>VB?>-qjW4 z*q)HBte)pl6wSI}jhicraw*VO1%zkg`}X$ijMK6_91L?97yjBgZ|TMwj1ntUvQZm@ zLPTMXGiAVtOj~w~vpy_ai`O~V{*uv41cdjBY`hgO5 z1yr4Mf}UX6+CF*gZHIn35f;|Dy8L5NH{&fGW^Wal`z`#- zzk#X*$uzzFN>De<-#w5>5NhVe5X_QuoAjmdV6$}g(dqUV%(i2+tZb!ss~zoT@Xv_e zG)BQ@G@)McV&k-=+t#w@%7AFRkuTDb4M*Z5%x>I^+pi{ws!O~-rK|4j61*SD=-Yix z?Pjs)!|+X4ycXXRFetcD8mK@(LNUvY!e_MaMbr6|=ItD=UfDEjc2cf4s{k+sq0ZH{ z)OB^OA;j{8l&BH9M8?}xAnQ3zQFB@G^*J=-?nQ#;?-6(>$8i6T2i;ix`mwYeO9m5nQ?4^ z7W$R-#6dN{B>Pl_maEAVPC=Spa@Ptt2TuR6bnYlHjh@H;O|}x?dRL3gjgyy z-4)TCcBA#o%40-OmJnCpBjNJ0-&+O`xOuR41txJqm^yg@F1d+x)9nA|9qy(lc>TI* zt7ANj%&CqZC1Y3MFe9{9ZHaWxf}L#D`sQvgG_tD$nMCZsmqtTaa}^X>Gj zMT>SO@}C&wtboY*aH6+0n3z7zjV6t^;o>}WjWyeCd=F>m{X~C>VjYh;`&5S8&4E*o z&i(GjeL($EOoZue5LCq@nAd;nmvL;T1aJH7THi>tM6DgvgpKO#e@i&KKao)7<2-he z30(nV5SoLM01d@GPc<`r+TB^Hy7V>}ZtPfyGu+GiqSigz`3P_;fIj!bo6+z@gUBIW z(C&rM$}i-rCLW`vHZ*zUHm4jpgwB9OY&_Zq7bVK!4%`>Q)$&5_B3Y8(oo>1vk0n$W zdU|`db5q@SU7L>g&W+~&C1>4ZULen);G1pkmcTGq4g`5(#$fABjAy{j3@?0tS<04F z&I#;|vAtc0^g2E!bw2R2Hr1E`@&o`<;IgRATkQUe*=ADJorK+HGH?fXzdEG2h~x$me~q|YtK#;6+CA%bUr`{# z!U1M6f)6S#-hN1`RJpkmY92F*+VA*KM}{BziBCadDZs+3F*3i~tQnjF@^@n|`K2!i zA)(NjADdnSpL&5UP7YG-V-!Iu(Sz;zY9IV_iM(uSom_)6{8a5o%bW`FYA4NrwOAnThl5d+huF=%T9_Gdlx=IB^3`Hj6&LmEB%*6S`P(X z_-^kQ@UMD00`KM7-Q}V6eSqTJYlrX8tSTTYKZ+#bDFRpX#tu1*S*~H45hXKen4~AV zQGKAq&-Cgv`wZ#M(*BHfz=yjR7BdMCG*vDsT2WdePM?R zQsmgyYq{rHPW;9*Q*V8Np6;6|RaM-8W4Rbnpy70VxSn*$(Oj?s;&P8L>>Y@wVx>5) zJ}hiu6hu(GawR6Y6H|lZUASR?Tx_+xJSl-P<{EkQp}3ff=VpyRU;wF7QJg6yu@m{n zRC^Ln{pVWKhC2$y;j|E3k}rga<@f>43tQh1@~F~?RKbl#Q(V9PmU(p~I-Ziu-Hv;- z9sk)|^1XI3yHM;7>&@~g&yqLjcsFe+I5S|%4E2jJdC}ndDQ#fzo7`wB;;@@HQ#P7k zrFrirUgvQ&<{o9&%%!SOyVn?KhFV!XTd3H)JMCUXBc!G4<1XJP2e)1REeEK>!YiFt z+c+6-hxz!!k4d{<)s$(jmg!^(9C_zaH~Zb7youD-Z+Pn32m5K=AvJ1*8T}K?WfwO= z4+>P+skq?Ot`#>xtVHs$n}Fe=e_2=CjM&lU2bY7u^gJQ(tQ1CRjYV&3$Y55wnXjZP zn_we_1ke`mM74#A)U!gx>~?(Yp9lkwN_1=Q=#Z+|udc>z9Pt#QUOJ+Fb4t6pQuPjh zRV`3G{^w!SsaLOTVCKPea^BX3Ji%f~kZqo=-}T&7y(qKXv>_B0$Bi(M|7?t%T>7Pn zoiq#R)ncsHz36HMD=y4rq$vTWm@+Yg9sLZBBEz|`_sUd&6#(^NvpVCUb0^ZN*LWzN5qXHe$ssY3EfZD+|5Z;FODqc%|Igh$GX^OI|>B8QC5Z?f*rReaL zxNd*;u6ED1VXE0!E@#{X>dRv+=Ri{2WbQcoY>lu});Nf71GMEuxKGGZr`x;LQq*Q& zmo_rI{dGv=a|44hwuPOm!ifKA*a;-4 zJfTwIu8^Hbcb7cq#j;E@RHG;3fS1f18e^8K!au+B+auzY$6E6HCq88`zMKoVEJVze z^Kdwj>|XxLPmAp{WKO;E&OcmrH9&aOl%z9z8F7!fR9Ooi>D*v$_9JSHKUZsA3Rs3k z9J$=*cQcqRDK2n%oY!~MQdT!x#jr{xXzKGp($m*R!#{o`0=h`*vgu{PXp;YglV+du zl=Ji1L!g$*l$fLd(n1~jyUmuF4K`tbzfy<2&Xn_}i;@>hWOxNz%u-`Ug|pTE7^BYb z-P`((Bel*W2i*;(MW{(G1UVz%eGl9BB1^h5RWlHur#dxMxj_3kVPzTHa0Q z&Wtho&U39UHL%v2T|)+#Pw+%mu>CH0ne`kz4P+A)olvTEH_;rmmT&+k1ElaSYVWno z^}9G9Rxw96%Q2B1IJTClBd82DEax~XT>Byo+3JKL&lUF~UfB329sps4lYk7}vKVNc z9izYek@D*@+Qo=%qv7duU4dd7^ve;?u~XVo(N>4vRRiH9o9J2!i~VY?T$SnR;BC67 z^N{2bDgd1O@VGPInCWdG5S>icxKv8J+q=zxRaFQct{yx{ob+gSf6AOU;_X2FjDIXT z->MlXIslBS5MV4}P~9n%&!W)fI-jSdT6u;ME%kFUKRs9O;sxV2X@U!@2bLl^@`(bf z_nI=z#H=%DK0KtR0cz5?ini}wWIc0~lp=J8Vt8`waudi8GVO{KDa&jblx|N9m3DS_ z6P4Fb;YJsPQ_+S;-ysYR}OudU3hD{i0kW%Z7!aRr-I^pg>$A}UMvG2m3K{(C z-g&jqqoDYD`~(1Pt3@nNHC4uKCy#@JDJhTL#+LrQ66H#CcoJQ6u@g`SsaL*sp8G(I zO9Mb@x>d`00&pqxibfGzCNDAad*?AcN9B?GCQ&^rCbUOe-05v`1t0sZPyq5f1(TCw z3hO6~?d@tghwmp3FNM}Ap^);Qz!%yKxv6x)8*o=msQ?&^FU=qorspctr#R8MpQ?TO z6zjhC@8315MMunipV|}Xuaun-^y}rU2926Gy;q40H)@AE{?DsHZ6x^OIV#O^pJUTd z>-&y!<#HDZF4TNlI4;;eSSr((SCNST>G_mXeWZD};AdXEf7*Rd{nv8`Wh-;Q3%LE; zHflh^Cie1Ti)?&f$gsZX2gUj9Gyu(so_vXXnY{SOZ@4w4mMIeq zDo}<_^+e1M2{J?k1U7#6zmvXTtfLZ>GVd0n^xnp**4oTHLF>+yZlK;gmlewR;cVsa zh;_wF$WrpQ#J8PHa zC{G6u&lsG_`U-|{&K7oE3X(~XY4c*c6(~}dR~pYZGs{x$Js$|Da>!(BSv<(ij{W(1 zv=V~C6D;0HDqMvkD|NQ>8GoHo@EVB4rEmZVHrm-Lv?+zhaOcGFF%BC$7njRIPDM@1 zy?Q7f;yqVfa#XXrw)mAJM?muM`^ztTYb1Gf*dF{$GR_W~@ z6*g+;J`HoTZ9HqbUM4mv72PyVyjT?5bXB;|-b9_~8Esx>vDY1$tI^C24nhes} zedZG=(|z5vbnz9cYhh+DRnYv?Pla~Yys2@CMc-j z9$e?IaAF+73b(>;cj$K7^h!%d^W=PC{s5qE^}F3N?N|DCZ~J%jk)FXH+MJS1rO7qn zrqa&srG&z9t@92%msb_p+zRAEW4@K>!gvkTTd%~Ynmu-p>zS8g)D&WjdO76YT4`eI z?Nfbtws@#ttYM$06_phUvJ|u_8MNt_+af~hU&tEY{ZJA&i+kt)dM9oABrJ@+#(h_y zDGD7h%%B!^{~3th%sD6di+<44|SdMl|o8~8Fk>b%GuEM)uoSoD?dHvr2NoBc4$U$t^j zDpEjn?-P6{6WV28-uM)2e|T@NB;@t$*n19^Jr?z2j8k$7_jxG531odrRe5w zS3z#4gk8S@^>0?1+c(Q1XuAZ|!yS-aOvLJEPB2GgR%4j<~=;Lz6&tYk!JrPI^GhD;%hY z4t4kjp4OenG$69&Mmspn_B#hogaGvx7Zc;tKLngP(Cj@JF4qUtSfWS=Yit5tbhD8g zccRaX0@NQJcQGX>#qNZW$8r_uWQm&JA2GGjSh+^#?j~2h8o0n%$Myuy zUblr1cC%s)I5i@UwWbJCYwTo0ueoTB3VkRfjHPe^bZi7wG+kSjuSxeVMZ83^CWQ)BEoQ2)`#U$ z#;HVj5G9Mts#ku{7$~#n&vEQsjOT9ms-sYC(Sh9{;>UD29M_+jzW;(GOW1HtFMBfW z!vo)c7Z^VbK~X|prP|P58PP7}0K~){D>Nj3<4Hs@bBh(3yg~jAPysJ{u1r;?1=Mc{ zeK0sh!DeHQBao#n$eOu8~5A^>4P zp1(3HZ9{eDgM0-Ib5?7NG^ID(sQXR0Q7g<7BbYKiSq`!HrZE=JK6<;74)?w3zVAOY zA$T340!vswqP|8P=K6Zyhx$B2Uu3up2!>2d^QXz-?hTP6YX2XY90611$#__*?tPB! zZH*!{`2$Pae`Df-^HJ0hGXHezj#w!4_Q4TS-5Kfe_+4PzOt2l>eg-o6>gS5MPB*rhkGellf?HEyC&m(O@@Z7IP&&Hs6}S6e68VPf)$+B z_sUj?H%HCs9E>OE?6=Il1I4VolSAW#DK&4_?Iaf%VEOY7Z5rxyPbrjnYFYfz5+i}o z1ivlwY^OZ)_B8SRXmwr`qvf`?8^by~Nq2V%-YdsXMO&!ixj_Y^|-kh4Av5I{Hf=;NkHNw@gm^z8k{Ze;<_nN1-x2f z=i^~cX4{4yXMGHVM%2}8m0N)%ABOfGP)qsUAZ-ofSi!ZalQ>|D&u~pN_j3)&5J%T)}-}cJjvQp}-} zveQU8Assv)jG5`8kGyHYsi;9z7A<%!wE5%&tBj9*D;&J-T%|$5sgYf=rJ@M9uFEIO z0sCS#*Ns(GRZ2zZlkiy8@Y7@?3eeIFz7SU;o^VRyuz+g80U;LKX@|*4^JR!LDM42knWp zQ&ggJk;ZP;F&F+~M&j!abid*(g;v$4tB_}Rg#ZUtZoE#VRibtNt_GS9Y>5F{1 z09H1sCBFZ4>bm|-z`b$&4-ajXRWvOOf& zM-vRhF97-TJOyG|b>D>uS#=2gm&-sAh9K3$g*_An@CM7y0sV1_oX&SeBWqO0HAcy~ za+FuE9XI3E|Kv5_PxSX+#4}@FtHUonA@I)xzMz%D%9m>aH}+FE!TcALqtt|U*XgEZ zXji64WpuxEHs<=(H}gs3q{=4ycf_*XRI{%H%i|+d*(*G7%Z_`7mbZcv3F6NNbN(}j zx{0kw$>{(iMbbV3G+kGttJco;c5}~@nQxr}9>0`k_wSU68K_urzMS=;E(dbXO*_J& z?wbvC9*9n#An#yo&Nr}J8^6Iw( zA?k9CYG!)ByEfAf^&}UL;Z}A+Wf-BS_Qj6pG+Hlrn~6?H94Hw-hBwQ!wV2K_qKS#_ zs{QH&glQ?$%%AirF)1P#yLgyf5(}+4&{1{)@Gp1`gXLG_D(}yx>R|&XH6^*afIJ=Q z&@qA6Sv6WS!mZA7BS_~g-qW{MQe2DMudM%^(f6l;&?2)+vcW#!eynymx6qS zE~;~M^nS0ppzL=iI)0%yY7A+-=X|vZBi>#9{BtWm0}TiULMRHMEiOkHvymai8TXv8 zD+6tek|f|x%rY0x19+dEgbSAW!R4jZ%nwkq+Q^=3@odv!-LuN_y!BqpIafD?+8o9- z*L#q4a+R|}b7PHxA=8P^-e+OCgLnG$Xe=e!O2gs#c98z}#SC_SHJl1X3vU(i%jKxt z+Yn>ot1!H}gpK%eNx^NedS6u7Llc=vLUVdsBrMTm-FRcCV){EY3(HIaS~DZNlU8=?}|3aVXwbj#4)^v}NK z6>`cvW#CJ2uXc@^tGj$(-R5^RC*BuMr~0tP-i4)?3iE}~oVTGl$u$zVuRb*a(&5_t zd}IZ?h^n_9+OVDpt(n^!QWMrJ=%bzGPyWJZ7TY&_{kgEUsWKo;C%-U@M_@eR(UZN) za2BvR%`Si5X)33Zv2kmwVMOHGUz|?-VLuWUZWQp#GXI!r?qSGkbD&wng=}|e8%|8t zmWMOaiEvZPDru0McCLze{25C$)uK%E@%NN`pAR(#LdT>;>(4%fwxWf1H=YT<^9*pXnITZm()WJ3G1n30VB+h^c}P7W2y8 z{CWCh`W4o+I*Jc1cJRApc2*8C&o{W3e%bqxNeR#o;%h$ky!$dlyuGGc#fQ1LN?q^~AV(mE+jIKN8PGV?G&E2B zmEvST_KA1L9IFL`+5!jlCR|9%G?VDee^_&r3pD$Bb)odf!`x488)nk!oRQgmsa=J4 z5#;FIpJY+>@T3HDDa$4ztOlnp#P1CJYSI6jx#&hpb~;XuO#o7JBv5_SsHS6NK1ydo z3gwzN4Ldug%~S0aECyde8u|s|Y^bfnVa@HQ5}!%{G&~v@6QVvmIAs3RX3tkiEfM5@ zOW)H2do2{mvP>(fV)^KBE1^%&1XqOguxjO?v6nQ84oc?>mBh;oB5-i*Eyuj~k6dSM z(4<7_xiJLH*Zg|4>3Zt$eRnpV3xi^=e1FqC-4y|XRw@20^35L(si96^7rb*Is665I zxAO-hF|XkST<~9&W6uXqP&~_d^xdu>3;AuL6kDvt5G_}!%Wx6}!y8`6v35hIoxC@; zHT^>RwF8SeeHwdHmYceR6}xguCS??x*9Jhg+aQ7?*`V_g)=hKr!Y(}(8DtR}H!Wg{qId&CBn)GhVHBgG z;nXw$yretG5w!%DfZX*lMT%3xukcYnOpE@62KHYYxVjk}Pvz^qKTq@JnRQ`_>Ppl3 zD!5V20@iKFZw(x*EAICbGG95;h<6O+2Q7c@5&)qI2^h){L>An-nV&>w#eJ0caCLDt z8o-lHR-0Xgeel7Odp4~`_r>E4QG~DEUfZok?JW>iKF7ZMHRa4|Y{n+ga~Ed96W%NUn@d6qq7Z7D+s*E4 z4>N87jMKO=dLr~jvT>{9%W%ZCi*-9_&DSc6Imx~LwQHw*M+h5QU;0|4HL?jK{n)Z_ zj~xKohUBD2MFW?)f1Iivt@hq83#hV}lgL3=q)xj%*JIK_K8+7olB~^zCv7H?Aj5Dm zgfJ|2Qu^0*x~=;5)oWzoKJIfJRQ&GkTP48lwDHTMinUxgTI%o-P9Q^1X~$KmWDCNB zxR_g){QW!4Wp5jdpWI}n3 zMf$yD+9O1@qot<1QmzbPws>P^`?ReZJ0eswr|D*#tO{3nGAAuHb=mF$>JCIbe(Q`6 z5#ZcB?qv$z_Prbcg)Czh4;Atm)!EKBa+7J{ok0=-Zx>c=<|Y##V z8#bx~xV!X9;|q&@U1|LsD%^=vEohwna$(dFfi+I4)?J~pPX*@*5ka6|d~;Namt)9d zY00-^d2Z-DECEEz_~*~|VTycgYNF6Guf~rbi680VA->C9nlfctOjI5dUSmd^MM??AU`I! zl}*Yh3JbfoJ_$iOdNr!K`#1P|Sy%c;PrS=a?r0^R1o^`iJ^IMNw+ulPKwdDu5tfX) zZIR|C`4>NBfr|c+l^r`1py3~lzOB!CO)7o5w)S@<^U~SAbTkc(aTcd~G2?hARc$=n zFlAmu(`&p5v-t-_d3ZgFkeV(ZCjcU=(s4%QK=E!F9s8|_V;q3p10lk<8ovwq@=c$5 z%5hy>MOx$>NeLG6r?HVBb9sqm2^Je()vp+*z`D9JABHC;F5-5ii@J3sG!9D~jaB#n z?lZfKU+!%VGzY{ex@7q3mN6#0;8SIx7oS0dWy!l1&;FIz8i*>Dqshch3;64JV3wX%8voYq}f$C;}>@xIT`f0Vp%UDGK? z?Y(#U8#K3rhO(9zf)qaL-UP@trIq()^mAVbTt$xegPwLzeMh?0?4|ReCmUt-x}(O$ zix=Cxygl1v7x*=Mw<_hU2KaScw0h+c)N3l-aH}4p6dex<=qd0Di*kjp=GQN5;3W4x3JCKf7H(FASK+&pQ5{PN)1TY2K19GC^DY(*t^?+4UN$b^4R`B= zg>{w?Trk#AjW^XQcACqynkmC`7%$ci{;sXq+uGW${Fz-S27FCDgld%dD#EKvO>-*i2026q zA-EeX3kaLeE8T=u09Rj}sujL>`_-#g(;dH`+%ZAhJo-85d@tcK1&;6!P64@J7Dbbo z*+%GZ&~{{iCA{x0te1?sGH5XSU7*T-wZnfnvJvB|+F2@MQc;|fuXbFpgw=-2FFYCG zkcFE!;sHq&?km;FJ~>Fvp|bIF-5*oqW!w#Z{a%2FWv_UFVaTaS!A(EgSk`YH_q4CA znOnl=KIxdgLh)SHtl`thhehb?WKMlCpZP*cy+$f2%ka zx)wSl5b)xbJ}dBU#{gjzkO!YJhn=whRCi9anb*Bq>3wCAnSMpi0?!cJ8_7q!VV{|< zxdUpxED5X)puH;K#g98!$WnOJYGbBZLa7oHX3xt#ObLwb(6a3B8KknQ`O@{ zWqc8CX6~ju?=SfIzqMNYx*dC0wE0pZ5rR~F952r|j%CkEvx66!!K0$Ws$W3Hqnwa? zzx(lU3g3fvs$p(!7bHXCxS|6Qxc7&10eFPFd>(TGPst3Fu7d6tB!r?)40Ek5dFhv^xQzt_-(sao8RC?+4x zLi@S98|nI>2is+q;uYhkWm^_C%2#-Z8+pdukx!i)0_v=-;!JRny8!V$cXatQbr)RW zY>Nz()9$<1we?LE8=84-?aOfdHFtHVD86l-8|aqG92q`AIs}wps|{GR_%G?rQb2V- zV1wpL&=3834%l*ln@mI+Y4yee;DR}H0Z*DF=imdDp&Xk)M_v>Q zS5YuqxA72Xa#%`%mP?Oi(XBVOO!4F(ZEa3^=$tv+@u}bKy3iMI=1w_;#=2urku%)E z38yx>G#G#Wy$mKy#o>LUD?=I_s7LA34GnX;eqM(@ay0Vf5~;W1r6m}C)KDScmVa3x zeMNz9t>T9Md9m2?D&3zE{$aoh*hO>&TZ}634Ml%4|c#9V4QRj~hi>|d{KjEPnLW`m*YgZkf3wws3apsWX#m4ZY#PY`zz?(*1 z0&g-jYn{=n8VHXftxk0SWWLPBRW0q6pRPiDDh1qJb|L%TfLQz`#Mj=bFAQkje9T2P z*hmHR;aiLg?)ig-tGV|Xd*zFb01pm%{kkdX>sR*7g2L~yW`dp>T2ZYUGW^y6-_-u` zWS_0SB6o=dc2>!15DdIzdz)D-Kme!rjEhpVMhx*$VWXqKwFVzpa1zXtZFh|RM5r|w z;I%IiL8)ED8U^>W|Dy=A!Cjz40jvHvUj}%YI&aw9&e72VoD3xurzmGzFCmJb^5>CG z$3-sRQ`*GYz5JiyyHOt(5abK7IpeJFIETog*`|a|uBWwUdkLI10q8ZD#2xl2qYcn~ z5`X`B9{pksc)w?@^*AnY3pS1H$2QKRKn4O8JEjt!q75_y?Ide2EApET_W|{501~ut zNX$||M$G%}a;)pacGtzkZ|Wp03_p>aD)h%X8g7V?^0VvG+o$rqm{OvVufi_ZV%GZ_ zxbPQv3m2-*B96SiPkQskFU!o3e52t*#Iq=VTEGyu=psa6?^bw;Uy4m;WLgE0zHqvU z|yqGlSGQ3 zpV+nUehj1dnF7?LOL0I32l)x^1lG=y=+r-t2yX$L_P-2Rj%A_71m1%?;z;;<>Fb>| zQsr6G=<-Er6)PZgg5cc_cL~ERt02>bx1&CRmt*+9H7~fod}^HUz()!=lOaDz^&!5H z*g$azL!93WCpsM8mB%hx>Kt2&aFtWp1j{%6trFnAgVTO#M!(Ew0s<+jXJ?;cW+LGp zA=RH<^Y?q*25-Y1fI8WMqvi_mMx~I|fa!8##`b0yQhYF^45!GqQ-G{_H)@%I8SuBm zLi{wlp|3q{+)ewH0&4{Yo z`Q|e0NgWf8gY%rNv(E*NFvz4_qzLw$W5R0CFUzJ_Gs$9|bf5;|Zd#foQ+4sN*4e~T zEv8rYqn<#Nt&m@H8~^?L_YiFHh#l>BPkLZ!TMOG3)1nu|z$aeAI$gcraA+{HYA~)p zEVc4x!R(&Z*<0#&g~9Fym3d`Oyrp}>!X3mG46#&Gu@hWRfUzqJSRUco;@J?_r_6b3 zJfU%+TRVRM%b~D&TGDOfSbsbNFvDUgEQIAIQ4{vq{Mx~?$PaUuE5c(r%zV{+NIu8q!`^a z4YzZD7y;1mLg!ur3&;-VCcQRsGTvUle*Mk!=g)0M`1tj++PaxCT!$$oQa^Hs5d!Qb zBneq4*EjT76K!9P@VFF%iTDP}NnD7FyTestR_PfIm6fjg5|icdMN^=4Mu-IsoK7ZD_B z9PcR)d_AhN_X!cTZ$lEimoA!qx)E-=-z=xqtF&$-z_#r#b z^~Uv9q+?_u$Mikax zj70yQV(_)K_mqn|F9J`c>oP=_UI1|j-J=L3NXG&lV(vAO`xYyE)vncv3gESa@J9Ws zxkk7M5fS&9TbjAe?%B?t=iT7y#RqNZ4!_Fu?cD1)WG#O!CQ)Gd2l!7OJ_k-6N4_^t zxWfu8LIXl@zVM@^rh?1+NB??Fg*T=ne0}dN=?j~EU7!>5fKEJrzRA{RHGF}8x$uL< zJlw8@sW~i8wQw+p{#0{#u=_GR#@oSk-W2;xHuW0-j}eCap4!F$%z-Qi1GCk&^kWnP z-n>HD(bTgXiXtslr^`rxlqTN0LSscP^P)+~?}#w@%hhyaWUn^Td_Ulnb_9!e*L&Gp zhCl((9vm=3S9H+eg!dRJ6*AZztsPe*wXb?9#2NZ1-ZmTP4A zQ+$()Ra}2@{-Z)yw6uz{iCKEuY;e!@*}Kh7btZU-?;8vEgm0sF3c)D(H} zO?m#jQy&hYpWIIAjXk#rCr=I!4yUDv4^O6|31mbw5nHdC+fu;r#caG+Lg=Dn>AR2BjUEpORK4xEP@&8(YM7BV zy$6I6&AWh9b!}BX06z0u_O>#xV|KY3lZ@3bbAl_M#Z0N#i1SLfXfJX0-XF9A+Idea z<4&_5AgIW29%h@8-y%qNn5||jmjP9OA$yN9x6UBXEYxF$H>A^iG}4CS2f?$)2`z{( z0sb>#t+8kTIaz=1LbXl5^XH8c_e*CV{rr9?{*D;{OCsP~BbC$=yw&Nvr;$QYYVKX+ zGNV-f_CYk8MJb)%~%Z(xch zQjQNXO}%FuV4B7!?$%w}OW}d_GN3PvL_uX4t`D8gBc@p>erJd4)c&K5jDJ}3C%AK} zE&3mA;?h&e9rmX2Db{^{4olgsZEgAZ^b!5Mcf>&%vRKHnQAL7Qw#t-N-rif_b+&Y{ zOM#%{MIS80Rb>=4ZZIMjFP?9z`u?5SQ?LC;INX;eXHu2}Z{{C)coOq>mGVgid{L60 z#6jPFGnWOV*6{iHu%v`h&R%urhjRS#L9e!UPa}dMqtyAsj`z zGR*9xhl9Y7WO!lHI+^zlXp6IYTSNLDE1&AOeGr;EghVHN_XW%H3 zGM}L-dgR{N5iu)OH&&ix7UA>?n2w{YnwhbE@|-G?Bnon@64zppL7BTY7?E(@nD<Kq&c0Nwk)_z!e zw5tsn?-$OfMM=Oqa+T@BcDIG_d=%W_h^T7n*9d$$lK^89&jRvQ+)g;NB4 zemUyAz&`wq27s&#+JE;rV57a%IGM8kjwirX`kN;&4k8%5cnFt9bla^l+g^&FL%4Zs zbqH^zQ)P;j(yvHZ;2E0PtL~vNdFT}4Y*D&`>a_+Pzx4x;;}6xF;be4x6WM=eL~B)` z1D&eh#cPead7 z2>aqd*n(U7tQ8pn7W^ysN}^5RkKz;mx%=gtxv| z9t$l1q7TUHrw}ZJ?;d3k&?|4N4HYisxlYMCVEGF|A9$SqIVRaCVAL{zbb{u?G{DP~ z4-3~3-{rH|Vefw2A_*GhA@!Y0frSo;9rwGpUasmrzx~=xj)thw0ui-75k8N|&)_}f z5Kw)sqGH(THLI?;IU#AmO`r5h#ZuEL|(#Slc69X#c(kI6C5X}}c#%&m|VtE1yYe84*c z)LczkJSOa}Ej@bV!=|hRJjK=ofb4ugeXGY^N30j;VPCFFqz0}Nk|HIj-$LUzw{J(( zq4<;0cE}nl@WTw?ZI-9tW2SC8v}dLdYT}NBf2@1jdDX}{MaBQ#^ZrS&zWo~cLeVYq zJ*=|#l&~YFuR>b7d_^A?(=GcHDNa!tRH=BBuDo!0bQ7@@l}0J7^VFlUUR(slhQJM7 zUNvg23zDe}#r1fM@pEwQYL;`^74CaRKBU0nOr82-`aktiwR4kA>{T!D?48*cJ2o9C z-aE$X;5-ukIPVrC8c*@(rVe3o2QMLQ2Mv9<92SF7x0yoowDEF}*o6930^gkRgX$@= zV1vb?L3oq%6M8tWTuA+93J*;hzc??vCxG1{VA&qo9GPFK+JbJ|Hg|$Ic$8`byyVrO zp)By2I6MF7$8B0I_CB+Tymt|S^|!ADiS7i7AbVyq?Gb?A&_`}e_NEEIi3`ky7ZfnZ za8t2N@;|{wcpp-8*CW@*qJ>`w00f3nD~>O?#f>2G)U-4}wx7SH82;Lhg4%ZtPE~gT z+O1!fqsAnKKycs#;PD|v+3L`?5nyoP4|tIhf)v9EL-C$8 z6e|Qu@V8Xercb7uBmKAY)TBYGOW_sggW6;Fc0_N2>q8zK@I=P|+#?l@`+)iZ;YUC( z(#d0^ST(aBH9Nh0Z~>It25;i2s9hHT^rSz5I~f3^RgXpeC^JcdItz!Lde4~;Qa`MZ z>pJO>8{Zibn-aOt1Q3_Z(gB`|V&!{hn8tJm#1+2)3 zAwEG7hy#Yc_>Nc^BBFI1KQN@Bt_-vwuZORjUa3HmF$M~%)6ZErzsxci7lkKQALw%7 zVijym-L098uR^}o#1d;?O`~r{Er!5F@RA_-%Ayo)mOPJ!AUxjov%Y4#;p=l|IK5oT zjybQ zy)yXPK0*N7dGtg766skq_gzFA<3sRtq)x61m1d8V8PLQ$R$oIr5r2{sEj&WFGn6-c zx|}#}`yk+1FCjPEO)xBX0v;8Y(x1U8noFpu-<7k6T^p6JK`TM~ zb>OZu{4EtJk_*Q@$vK$&`4C|jxYI)WaX!O+-Ft$ZxfY?A-=5^V0(a?G2-|QPJ?Jw^ z(c#0~(TtSCyBLbX{ z-#2jGH185%hc~ynl^su{5acOt*xgT9j__P2MFw30%PS9$+Yt+4DE_0+w)J-sazN|2 ze*2R@u!(?+0mfzhJN+MHe7I@kt}x*7>J|FQy@)UX4NmWi*PaXWdq2kYm5}%`5$<1q zi-}bg)B)OdetWCI)JDVo(t7Ma zhIRbRygcH9xs>J3d*q9@s$|sdeX&WYzN}u%NtvNOVz~zGnAdPQFE}Y7K^dwUXN;?? zJrmAsP5a#2GN0W04r-(?Uh{?z;mHm0-KG7Rsz1r}Pc0nHPU6RBKCACM7hVXtd8+wR zb}!~vM11keaMem{?p|*GaddC0n-PBYi9S650khw8KT;=9+!O|C;jn`6}8u(m>Vz#Q_3E^arV@8 zdR-h4AOZA%(k$?}#L4}MgOitMmOh>8Fv8@nr-p2N?*h_io^JX^*FAJYV7-1-Lj{uc z4c*P*E5XO{=03Xs2SZH4+gmg&mS!Fam{rh=fT!FBj6x!HDk14c8GVGCI^^8VTc%Y3C?`4Hv6r2rj)qZ4+9kV3KPTZHDc@|V+Y`V5wyE^K zkI$jyx)GY?xdZ_Vp&FYppS`0!N&pySi5@}Mt+RqhkTkm^BpQ;wJ}9GO-*Qe% zr_1_>3Wn@5r>`E*JU1|4-n~up82KTnW_mR^@-)(+4A@$kkE@a(clE4hBGp(y+P~@^fz9TK8X@PJ@SF40gZTE<*9 zt{LH9Z}_pqWqp=*rwv+mi0C9S4a@OmK=lc}$KinuWuhv@%*Fl$I*YWs4zW9n@FqLR zN{0pOH&f@`Qt-=vUhzd9!infROH^}0eD_(X1=e5u5aAad+u*;ec0rwM%dj(_68_o_ z+e3wbQe2veJwa6j`%LPZO%Ha*mD7p>1EZ*i6XRYx=(8ZJQQ_VN%JBwG&23~YPv71l zU=gL8xU{%fvli2tm$@JfxZ!)qu|)&~EIhir*kWa+*sv=QDE8~XfLvexjW2Zp3#G|G z5&?um#4(P&sqLB*Mht&LD{}beunc!s?9|T9m8>?NeIQ7FZ4x%Jf00_E}P>UKDy^e;NYOm7~(H(ui_z|Flh_&aWTOIyW{}e)ZrZr z#gNZ@f+yu{pF9zEzZCFTSEz48fK`(*<36Ai3@#H-J3AMI*_0QgZiyTpVj+pQ;-#B_ z#Ml_X99F+T4B()pfK@~vA9Pi+z`&vaR^9B{x+B53;y_3zHRYfes|FaSe6KmN0 zJ_5`f{@+p!D_2N?x*-!S*!3(=o^-9f{Xoso@| zaDweK@Hkt#Z-?FNzBya9bEezy(1xS2rPk^2yS;YBt?OQQhl)Sv0vL|j8Baq45_{1>5Nq}clzoo@HJxVFJ`-qK_ zVEcGev>6^$Rm2?lR4=9{IUqZY2x8!lU=ShMekgTeOQWa%hVrlTn@>Ilg$kxyE z{CIT!-H(e`3B`(y7QGX951m?A+o9%L z6dq(b)wWzjXflbzscWs+zFKg7XLxkBYLk$N@e1bkYpA>U3=AJF)O9kb74BGe@zqC8 zDEp$6MU5YQqYWkPJ4KeTV&~zC>+8QDwk*g!fyv6?L($eY4H@(yaz)nstPk|1*m2h%XnH3L(4w{!DZ&dI3lbn-y z8yN3yQl`M^dKQPMQ}lkYSRvnaX3L!e~H&?W2U^y5tCc@aeV#FQoLBC3=u`!RjI%KW+D$Q8$18C^CEm zr9?``@ayTtbm9vn^ykAry1Z{rGbdx4W}_{*CT(26x83GYW+;E>-L11U?O25J7eJ58 zwV1Zts}8lqxIS@){>aYW1HgeLr=TMq_B{G)}qJ%2Vs;*$<=Ypfxy&UH+e}d%jyC z8TMztXIxHm7>L_yv%l|Yy!kk~`K4Ia1$`M=J!%^4>tZ*5-H(4&b|{D14um5|-|Bq0 zt^t~^nZeM4)nI7d&DT8rrO|KTL+`oJ#vhAFz^54oS+q^wQ0I*8^-ewlqE34~EZ||1 zwffg=$z%vEwzv>50Q8qxquY1i2iD_&NKhi1*2L?XN&s?B*=|7hrbL;G) zwl#2@1gDtSaOg+$VeNtK`jo>p8CL6QvWc%f(CGZgn@gL6hksCXXs; z4Y?S-`8aea;!m?PM$!#vl7rM%?MZXD@e)RtHox9$cCRnf@6^Z2^_yM2ekfZP*PhQ`2HQCW4~6(!d|tRt@fGL59^>MDoLZ->#6^* zgwt797T>phAF<|6M-$7BOe&HQ^=4BfrHR{^TVA)lCgUz%rk|%zl>1_Ky?*UT1R%#{ zmFL&PaJ?;VB=^c8zu96trtKXLgov`Qc}m_)E-z|a40bHj!n3HlEuel+k0N&KH74+sIgeCeDVsA*iB-twW*AjV+MuNhlPv*LjpLHaTmad1gaW6K({ z@en1Tzcs2cd~`|JRg}-VsDmSc%8F+QJfp_YKe3rqzkL6L3nfi*cRu!mG3ue%>Cm;|6i{My~se6<61|U8ESr6 z56BjzS~~rF)GkLYP3z}lwx{d?KeXLV_NmGGv4l}salKD!jdKb5aF2w3uL;p;Nd0N` zv^}ZIi`Z&6?GJhldMpbNmz#}1yxDnruOvkqr@73<&sKq<^vF@bAm1UIKh5CvkV%)q z;sV%+%P^m;Y`c4f3Htnw@vT!Ra6kf;PqCLVoUm{QjmgLzmpnBsR9=-PH3}?cg6zC_?2r@zOdwack9tAk1B&Q z(|F_>e@J_~z(<#;ATT_kx|0MSI*ngyeHS4O_#~)qgj0NQRGOVJ%?kQq$~e(|jVSvp z@H|;d0!{(vU?C(+tKvI?MXh{q+>l}LfO*zWMVqMB{LM|lf@>F_6FqFDETv9%H)6lq zF}oRRP4JR(*|z*L#NccWSYT^uQO0~6C@-W!hPEn2>&k`N7(;9!DvIN__Ik0EUcUC1 zh7TCXZl4uBq98B3o;kZPap59BQ=I)*zpXN(p2HR3Nl&e9ZqQ9DO z5m*tttabx7gpl?=iz}{q+$81ZUfo{5A_P;7U|d8n=voPf-)X^~o}&xUYV!dgd1xr| zzGpH51!`(~ojfSes_4VgxueK58EkrMtKCG_M`o1)^fvf3wP~LI^ZJ6C`sGH9rQ|S{ zDj1z+(jhh7JK=pr>_?V(>dTxoO$g4-@1dW6W?=>RZ|M_?a%fo1*_aBKG&}t1YsB_N zVbsT0Bo)VVB#BhrWehVLZf~=ct8QvXN+kIjY!-ZJ*lO?Lgx003h z#+Pac_#VoHj`sAsKExCR!Ryz@IC2p>KgEpP_8I%okImhjy2u^ntalBDYe!Q&=K?pZ zD8cqR8TS_g3_#|4I_S!Xb^BNAk~kA|fImdp zY&~rzm%P5kky&=l1^tT%qQrS2V&J^D!2PF*7ZVS6s*@ravF~J>Gi50&^$f0jqD~&% z*%?3!v|y|@9vxOOie7tOA5f%AdNMt60i{O7{2 zqKE_wUczx0#ewKH<5aFCSu%92mC{=b3Vez57!e`J%%)oMfP=UlVe?~znYb$g2x3HFz z>!21CQm&owoSOreDyDgM%02d!E$jG0O7N%l+qdIE;SaeW;Xbc(H)M$ScCH%ovMuQ2 z_TY+ftn9OBNPgVGL9NW>Bx_VK6x!M@;Am-GY(q^ZDypoyWB}sz7P6+<(obp5n|HJ4 z=o1Wfm74(M{E^|S=P#bWO&t2#s4KK*k-;}8rhRrz1NB{v_d*uK>e2V%r8eM~BN(ByW8#XnKhB7X4S|0VP`y~N)$@OxO zVu-5PiHLf!;b<`FYksl&{hg7KK$rYXZ3ApiCQT5{LoV_Iax&Xsp*2TfkGc2&KxSY7 zNkF#0hqfqBAgWQBnT?E1+kd4Fe2*uLDwI^iB*y;UuARC1!M^1_z|G{dpTO35ZS5bm zZ{d-3SeA&8?B9;?H|6~FN!hVNAS{lIoT?iTQhCPlZU(><`g;eR*HW^V33m6fzcih$ zngm(V3>zu9Wf0N#ik$43oaL4)vAYQkP3CP7a713dR$qTl##N5qc>aSq2B7JsHo0Ro z%A_w$um*h%W`|xf!PZOQIVK=$Ku4rsbvLR56mjD7&jPwrf ztOb9iJ|e-d0QOXQBN~6xP&P;~^wi z;9>teXZlGj8N5BU>wS!2!I79DyyV2A-IOiUI#zl2s={9{lR%-Itn#*fvf4vK3k&&& zsZ6hS@eu>-VcuY~#OJy=JlL}(k=uu-JjsF3Bu@iA;#*Pii)wgcyI>o5G` z&I=R^^f*>F8b7~vhW{KGzw@^q2p5cm3~6fMtuD+REYaq2C%e$nBx}?|e=u6GFAIvR zsy6Yc666V{J%cR;>?HLFc>-w6~dYmAU# zwDZ?V9i!mbX9yn)r}$t69VCf1J5i74@|dE@Ps>j+fUag0@@&_%&(^oi%;b)B5MJ+r zh7o|AWbR(!AcZ*aP1C}`T0UU%9G%3m(3*ug{vW?U0H$I(s9ajc>Ns(eF`K{!pX-|m zR{=hF@!X?lz9bbmB_)LyPMpO1VCQ9z>1Z_cq4Q~{wr^RwI*KcHpS%gy2Hj9?vSvx{ zTdd>sMzdFLg!-Gh!DuPOwYD%n`I(($oLXo7>QVSs2yg~PEivL8eB8CX9jC*bb-aXM zFj%T!l$)LfeZD?CQoZuj>Z{nh+d5w!q8#sIli&*u4mwXU4-VFp{-t@Jbl_MPqE=Rx z+z(Q+t>j!P+~`41QduM~f#(4R*@|l(lDe%Vf|g(&eZl2kd6;_v*A+f?nNN#5-x-;o0<<&6>4mUJVX`V%ZT*@6kKq$dS$Kn$)pd2giZ|%cCzht ze9J}v)4YHA4alDPcarO@>z5g`Q#^h-dFKdquzbW6{0wC3WFuP<5!@N zh`aT`cgXOe54C@2i3`7j_J{F92qhX8Ffuj7`nYiuCEf;73`p)LjJ3Be0H>88#YSFr z`db`f4G(m#FNtdoRrdf^z11d)D*S~R+}Fi>o&~4nj}Be)`q?9zx7(-kA1g(w;$G^E z)#tqW25Ar=p*M2C-|bgV95&E&t75se^O~kK9e}`8ssQAUhC*8m*(iLHWZ*E z5MILCR^|uR)YP+iZ#_5~Y%XAb*JQjEfWqtI)%< zYJCR#51k@z88w-24-H733Q&-T31HP?y#-zT6axJkkjb0eqd<-i`V^^nQ z03K?5hXH!eUdmw3weaztmU6fETJt(a?Dnb;@6W<#2LC*>sY(&w{Jn74DMZ|-ME0^m+UTrp%%+urDLG%mnZ^6LqTd8Arr7CMHEZ|qHA|{3;oecX z(uPZ&d}VXR483bJgXuRMsNUB;

GA{YS$hc@L9z2ZeuUY%}eSEykOrejx^Qb8sRC z4Kjx($Q1mWK1tlkVIh;74g^L`(;ZGv{nCZHy4)pT>!KlYWu8UzdagY6p}4NFyiz8VPR!&2qr_C^ z<|hXL<1Q}5hx*S|L43>l#av&%b8@)Xk3MScc`<9qa2lE0J^+BcChSAK=M_IWKhwSF zK^c1aTva-8z#(WdB_4Hh7A?Xe(eW6=PAs_xm^)ev-S7p*W zR&00b17A{M?VX1+G#UZ!cz__in-%k0MR#_@_}u4Uow+8HK6c`k#qiyLE7-AOV{a(q*sTUe<0TmUr&GQe>*w)f8FQqCgT~Qoh(0P~O zd?aM@%KN0CbNp~iMgrw%w}en9E6=JDPr4j?I!uO zD{b4MyQKnn))v-+$u4OcUq+{yGz{s+yN+v^^MQFI@63N z!vCiHy@#Dj&e))zaJn-4Tzl~OF?24-DXV#V>AO2&QBki1jJrR5e{!?}{0z=6?%ocf z5$x%C4QD$XJwDCLS8evtTwwXMYPTebLr70Da27ZvocQ}#F-up!dN9zirq~|*UZh;> z7oV&QB&pg=yToweXUxman9NO7?}o4cC@thIxCOT+$!e$)HO7wn(Zw0j-%oPhWSZss zy+mujPR?8cXrTNGqEauMW;<>ya}e^>GY$+w-(JheS)s!{6Q~|u<6`eo>SKDQsq(frG;_T99j}r(Nt75i`kl zh$1(P&qo(xwI09Sj7P5g$yOhU)h~~8kabSmj~Ay!H3Ax5v$5_(F&vH%Nsurq{3!*^zRoUCE%q`La8?VaL9sKyvQY(tuBXa(Pm$M$6j3%wywJB3; zd|x_^V||WG-{r8}tHdw1+RaPE_VKE;MXNqt?dq)YjdR~>-e&f;kAW~P94+%VU51R= zaowEfsCK+DK)|NXpt8a{#xvRCID*Vqq3EEB)FdrzdKp1k_#w5o8rR;*%n@+>&S}e` z6RdGtB;9T+in^N_*geaKh44?8sL3t^dDP2CN|enA{XOvTczCH8uq*Fvt$Q!KjF==& zJ=iOtkDjaY$_F)I14`qwI#$m^>}#6cfp82h125N8l^ROni;bo1%<4=N4lWTT-g@m=vqJevF8H9{G7B&fqT6=v0x{#G18!XZ|v~5l&1p)6&+dR@)W6=d)_ z=)9kj3@26$HXZoHy6(QsY%;2;x^sp_Qo;CIa&M8GW42FzrkQ=#$og_0jov1C=b4SB zY4kpE=YlbzD3D|?V9o&A;E>hjU3BP!%lN0|U)<61CZf*0j5ZS7g9U;F55e6fSa5fDcMTp0ZowS_1PBly zxO;%$7Tg_zyVLL9{QgtlOx1k#>YJ*0^5^PpA|z@oFS$EdcDNC3W1nv6@?!WxpUOYEjg$1Q z(L#NiV~ZXStym@Px0welsHipI!G)y=of;67Dk?tqX2)+U<=-#pg*8AAtD4wsI~jG) zW`O8@8ZlTsw5U9hRVZ*)!To&lIy+tThn7f*&bA(K`_Ai0&;wZXxtfa2eSV$Aj$fnS zlUWmo>@$aU1@>L;BHJBoARO{NYFxpZ-51dDgR7%WKtt*v|C@P2MN5xZ%gI#1E9i1$ zWRTOFxDR>bp7f-ccIV!dvbfG8cbLn9aZy2E;Tci_1o+rDd6UBnI-4NkoT6~!$8Ku? z^#!*Fz#Km5=0?Cal}vArSCyAU3zT3`o!*OD;AGFGsr@ep5!64pKT#_`{J%_$u?5^b zX~oG2aH8?NQiYafgqoFnp4VeyG5mdFA9QnyBd%9-U2)={KVc)d&Y9lv@~2jP8)*!= zHod-kUTAnq4iys15F4P-m{L&}i8CoYJ>2|{0cB`+XDC`JML|MqS_OuEJ^L}W5}n=w zEnIo7MM1ykPIh7eQqmXX`R4ydQP!|gH7;AjZsF`hhxsdM}FM&8dMaTGQj7bR`fyaC2*r_?a% zzfyHWrGOKEQ_?!G*^UPy=kBhDXN%wsaP?fhNdm*3Y)sUU6r`N3}n@ zvq(J*i3nejxUYm>b^Oi#6#jSa-TGa}^YpJ@B(iPcKfcqe6tcBixO#?7-PO+8?OZlf zSC8($UdFb$?Ni&RAM$X)Jh7?Pd{;k9P{bx zbjA$-s*XEgy^r258~lJv@mZ$c-m4YRbu$bJRnBL1^pV{jCA9NkPrLv({f2D#GMDRL z!)*^v(^G`Nj#4KIPR%dL>oakWbum?SEdM;q)XcKbbC`Xxs0o(|M3 zv&Z?DJ%`_zHOH~AuS%Uro*nW+~tO@RNW zT3TKMs`FU;#6`Hq?!*ecrTq;L9ZGk=u~U-X|@NQyVYReHZN$D{=Q8a+$p| zFDF%&Z%dPe-ak6>)}@bOD=~Ieq%UOIrwn~4iI9Iq^_su+r!S3^Yl=?S!`EIx04^I2 zZcN}8>?dW>C+kjaZ)a2F(j`0j`je6<%r-RZ9gAhQz0Rq9U4hDhrcYqyRlB&&+vx9q z{idbMY4so;X`_$=B@$MB(+!e8M2!qhdgXj6+u2yypTJ?zkSL^@eEF5nfPzKNu=r4-Ru+zj z3V;`xjVn((+?p%{EJH4Fa2HJKz-_N&+0ie_u_ZCkx)j8_0Tk7T38phH8;b*Yj3VHU zcg?FNuUh-a2mvbaG@!(`?nQ}n_gEJHk!nbG^&aX_P5vJD^I&xcC52867}Cv6aSNkG zlgJrX@5zYpM-_6Sd&!Zz1@W~N?5^*h{qI&NuNno@NgH+}m{JeEOj$kVYG|+U62=v1 zsVgZZnIGMfmzo14oneSY76+JvW<92*l}V4a(b(8AdoY8%TOfRsSuy|}12BZ&!c~_4 z3fe{}j-5c~l!K1VNDLan{Ew|d=Y1Dszyxw|~ zeEKNdiWm2BC0r6qf8!ll#NQC*1R$cAM9sztbp#lu4*6NN4f%bEf==&0&?2_qbSR(; zIdLWb;YY!qNcdO4@?L!k&=#j*O}v1Sb!@Y}5}x{(Wl}#G9YeUimyGj-lJ&S^a%nN# zXrJA@_SHBM zuyPrg8*lltx*~&3gR1i1?ME=f&Y=9w`ayb^nt!b%|3ri&6tFd9jqU+D) zb%EC2eqQRb`2j74%gN#4+5SoEwt_z)vlQz&0DG!%Y9F^uDg5P~`aq7TkFyW5ZIV`e zc!&f`L-sR7qhodiZu|YE4FR6*pZPghJl+5YTmQl2D_*HmGqfNhX($s zBM-8r=>?B*%lfS9S7@tGn~wrGg%p$9Z0E^?D5NNFCi^#d1H!t(9U6!MRZF@A;O0*M ztoz{@!_`y4n(l$}yFBW;Hvp;kVoXQqYiCf!a8M%I@s$1fU9JM_1lA z&U@4ogQhTnRv}l2Ji{=%kpq>YQ;!sxIJG&g&W` zanu*BYH0|8J|ophw~rPcus>=^@`?)h-^)uO=11wkuWGZt%sDN zR?~G;N&g%`Xq2Y`sF1Ut*y&zaMn=ck`c6s@;8L>eNpd_nxv!zeilJj*q?@)stArV^ zz5ggg1}K$%ml94LI&uU0e7$lC9Xcbr^iJXltFK?_gxO?Nc05Rt$#q!WFJ6RN)jjmi z?Fk}Eh6P+MmJE2xNppu&MCZe6<3{N{GPkLo5kAlEt778gdBE-!j-BMHaa^6u@MhoS zAcb|DY6#$aQ4)!MZg`}-@GWF`SfqAXMS%It5+@3(k>-sbsq`!JnItyczj0u)APe<28b}TW?8N=Eo5Tw zdnPlBc-j2Kd^(9R8Szusn4~02YQV03H@JZ*!(rrA>x0btP^{yd4t6!xV1Vb!gz6}^qJ;TkZCj+RL#3r)X4bK zq5XDXMdcHES3v_OXMicK=cDbY$s+W5J+DQf&*b-h<1N9@pKr-gzGsdEg05jzlWkQ! z?+y3@PNA^hgSr|Xt*P>_ND1wbYi0!HR##2iMNyJXoN|!smInfAuH(98U)r^`)?+4{ zvLq=>6E{FqSxNnh?1_soZhfA;nDn&_&GGTo{q-`D&9gh$q_=-SsIGjFHF z*#<|3>;*uAc|&!pwAQYy(nw%x|5`(c%DHO!N#?fB-nJQ>v;%Ct{p++xP~wyASln37 z-Ff`}zLY`S=MiA$mkFRjOH1=gtyAz~>woa+GxZX4<+^9e zeUT77;Q@uCu{V)egxLY7KQuKeaswM)pfP6|^3I`cNMG;7g-p_QXkD}CV(gh!0E#JE zcJ)a$f~TnZ6)v6!{P>V4Kqh+5@S~tbyj);G9`J$X15PUqJ6{%4V{{*O+XX{mTzx%>0A8H%Ls-+ik8^xAU}3C;ac>Oh z-%p)V2Gdyx4JttL&3j-W6KviN|H%tIt<0O93kE2vtHx{M;^OuSCddqASKOz={hZ%j zywUmf6asJ)pUcr|IvoaJ?%@%Xn>+GLcRK7&ZhZj%*!7j_Oy&C6D*Q^e*s~2gX2}!a zpH-BB8gRjMd9w#SoX?Q^$7f5hCMrf_5jk~&qp53CdM`VUY4rm=HFRJFdkG8F%{KEs4$wzbd4ke(>|T3l#ay3VUR zBev$3rj6}7n^~aj%j_GVfALgbZ2xtw|HR+{e`wdY{xbfQ9pEs}vcc2mo%`aju6M6X zOGAV5zbdIKRcKtr%DT(oOQcaFTWE)h;;yq0P8@ldN`2oyWy~v*;+^QY&X%SU=t$4F zy#|2lNU&pEk8^kz6|(Fw=9<~M629^=B||xhjqDF<;~X;9JN!3Dx1VP1gjy*7xVcHd z;*`GuJcltDOxmqk7WAz03kipbS0SnUoD^10S-sC?{xW}fHNBnAo!cw0$C(Mkkman0 zE&+l3P8srghcBi+eauS|chc5Ycl9pUVD+MLrD>)aKmw4(s5A`uIZK{&y;PY@ARKcu7YoPI3QIfFpj+@JehKb00XhwuY!ow z{_N4R7UG9S>CsRE{BdmNKwG6_o^5X1Wxd=BZQteN^x+zlfEli{ zn+F11)%Vwo`0a_6bf1oZ>HSD0Vz|o>ivi1n1Oe0T{mZVI9%UdAKBS_Y+Q*o`%?-?Ju!@eGg)1~XG;ZI93RBZ zDxc7Vh#4S6_mohbqd+tE&VfP6lQM&45nETJcC`x%@Z~d_nReHk0vKw-&pg7bHygu$ zW-%1yk4eHMR&RK6R?I|y@r7NSf&{azh9S%%^J!Zl71c5!LUsY|LyC--u?0$gAQ>zq z3L-8W2Hp}IR!luW6`q$3;RZC=7l5ycX$s@~dO19|1B1_w+f#OlBjm09svs$z= z2Q65WM>gCjR=mrFPq%#~kO6xBF)ixT^t!KR=NYhso4~RucD#yO;ZKqSqxcc=*f)SO z=6$83(^OaEOy)+yf{5V4r%@pzC<{Qvf|iX$8Wv-K|47Nr$tC13W%~fr<~ljamnxHC z7$+_S)uDO}S(R73!VstY{nx8^^#S{*6P!p{&nE?dx&yu@TQK5nlHG$GH}KiF@cdII z44!)L2l^0SiBFuekH$$$T4|3Oxax zd!|F>3mx!cV98OS)MhGQ;4;+FP9Xo;bEKR20&v^^scF@y~ok%S{RX(?} z2)14Hrk4Z=unD%g(xmp<356}u>p#MwMnS*!0_2pKsi4H61;$*IA&qK3Tspxcvb)d_ z{q;M1Coh-xTrwMRK^h0429=e^2vj)bwao@@Smj9oF8bu=rrnN;aCpzRpb-U@7Nw`s z&i@@h^04%7YxlFq=%)lcb`UWOI;E;U#gaQ_DwNxA8~^h)BW}B@T4|2%`#i^T&!&TV z)dGC|P0VOm!WT|XHDfo2XLn6uKyt$MEr>w=?Gwdx z8R_Rh5d#%cWwBp~#!Fy#o8v+NIqOnfe{Ki#4`Ru{N23sH1ziQ`Z8AowSk}>q$ zhY80bnvafm4_0;j27AsvEIHDYDs&=cpStWnN_3I!SYiWc;z5D)+$|Yr2}MWm3TOtz z_IFP%?_y%2pkStgec8pJm^cEw-j{E2?*XH>|5t7w*-!E^9Sx^&gBpG3+d@s_)T&io zJ`kxhdsyfGI=!~8;Wt2OXE4`#WmP`R)~ zF<8ySiw156e9Kr^uk-EsbXvnGaZ;XCnH7T3T~-f&1Ca_9V@r`3>=)}tB>vJ^Zz5o$ z39|M(`p870me1r`rkuS%amoL5<;X&ciY8uggZ?Z3=E=dP`Xn6G;#yNZ^4GZOIl+5cMJH@BMs>13UwM?Hq{{QOs%j zh?OT#7m2bj$FT3ug^LMnti& zero-k*c441@s~RhcqiKP{>_?h*~Vg5y{9{{(<(3UlNEeT z(~|zWZ#%O(lkn2E3&~dYdfDuYY?xpO2AtRVjcbh}pgqV40h*jSw#ynXO{u{^p*gO;{ z-J|b5`k;$6>GUeG!SsBdJ77&GJ<}fcIcReYvf>3-G$d4YVA(QJ`kPFlZ2S31n^llf&;GF9CZ<45?{2_#N*@+K ztW76lOx~t{&Gw&qqs`5E8Qvs@WWLQplN&d#7JI(bW$aO~n3pAc#DpnVtR6vF(H1Pb zuFGFu|E!*}&H)~tKzDCiLOep~`7uo{)k<@rT{$mcmherEfb4NL>0b&Q2tGGDR4&jG z@z-Jz@Ee>0QmO2w;)-MnW3yC{ zzsYQmR>|F8SGn0peNz%KP*zgI-NJi8S%Rw~dwTWNU?4x7rUm^!=O7ZuyRA7)g8SJU zyEgA4BvM{VDi6Xlq`-9ay2#-FdS4tR#x+|F$WzaDz#4#?a)D~`#hl3zt^4K`5kMhd zztaQE^j1mrVs=)gU#m#ZA&MZ1f1{9MaQd%$$BG_PoMCL7;1*Z9r113g(=QxxDjjyv z|K(^Y))5WT(pNYM;|iML`Tf<^#S}{5Q^KwMWa^1xpW-*nN`LNOS92Ly@I#FZDzWqEZ&I6V zoe7=y{a$hxKdYpakMbOLPEVm zMOpo!Jg=zz?tOb@sSUm~F3JlD) zCPJqvTVC(6NTc!xK-1;{r!uxBu$*P9y(A0YT3e3r#Da! z(My}RrIBVOpYzOM3-&J^z$qXBU?X+UjpF!j;219`xb_AC$=RFVYD)EV3@uKQxX2U4{t+@o+p;EOL=) ze2;MgWC##Nn)M``_553cMS8jeQU^B5=z!I0qFuf)q<$ruNF}&pRg<&l)QsVHeQ%Mmw<*?-!n^d!DjAI{>U18JI9??MG%6H9X3FT!WnKJDbd&Gg#C^ z@zhX2gvjCoRBR<$vLVKDl8&+Ku1?}(VG!V}FVim-Ahx9t2n3*Pa0tqeX;etidg#)8 zj`v%L9-W`4ROf)!rH?+-jb{Zqe9lHW%+*QH2xHjdVJxM({6i=eQV75=Ur85kl?y@H z8whkB&heQ3mr2A57;&SbyoG1DjQp3rqd2*#{wZ6CX3jZAEoZ3ZQ>oeMXY3qE32?1b>p?~(L zTT`^@MNKS5@kIxy@n&^ssV9<+U;_7W(ECgST=}r2ydwy{7uw*(zbCCSsq*2-PT`WAb4Dc!PfXeHor+CMrLyULWs8iTGm|F;RkNZ1I#L*Zg6B=25+= zT||ZAEXl}lHdeP9C-%J6{Ix&^?{ z@mPDdYA5m$!jhpd0C1oybN78NMSMKm7qq6VuU$uv+5o0J=bf4<;hvA#2@9E^<`EK} z_2i46%Pe7dIih@csaD>L@MoZ)p$`_OQT3hIx@C?!GGp&zk;kw@G z^@Cjeh=ZtVWn01S)XU$+RBZDlH$pI3Bg?nCyxD`OOK-opm~SfQE{7GB)A^L;SwKkV zSLn+Rc(7pbcC1x$8{T#WcXWq#zx>z)7Kw$uVBVs?Tz&-6(cVVKb@!Q|4Lb%T6~3DJ zwU^w5-!nq<^U1Tu3e?KIQyxjMrr&_B-vv$wz%*g!Wy}W*TS~3z=ui?0Rr*W31b(Iz z_pZ+TIgj~}H=bFZ-7v-*OTnV>y zZLUAn3+i1YmTZvAd%mSUayN z49WKf8R^f*__-$?SKfZY$1Y8nFBnojff=clR}tYWL*O|gliv4ZPV{w_bm@(@bm^yN zgXX^?CB#wgIO}c^1Kky9g(jMw_w=*%bKCyy@x|qE$S;=LEF@q+d>a7I0JP78zc6=8 zT#bA93K@W}WNYAFuh@V%)Q&0a90voc`|Ufu$~F!VH3+4PXCBqLKpjCMxoMz2m7~g8 z9>9<-DXOegI5%vAfUoiu`{{{HF4@!adgu~tX16)%d!u4*xkYw?IV zw<9+v{DUSydHcm_{D6qnvS~-(WXY6zz@I3$X2uY?#a8Px3)?X8*(2lng$8EV{j`0?dxDem=(&3b)+bqb7lJj}x34;f&|JEgnVa|QyxDnf^YSrgTj%263q^}}$%sodQ>j2e1u0ArK*CP6-qEWw8MBb~ z$T6XoG2FC77x@=YggZ3QPJqYBT$(Tt%4a?u%)Js3f45inq0v$(_oT(CSXiHlQk_0e zNgdE8Uvvth0w4gIJ9%2pPPFjP23V9cKf{n~)4KzJg|vGyR2@-GSE=U2l-_M5P`}H( zIQs%3$F#^#S?UZ7ye$r7uI;2TzW(%?`qw3wyoEsx8&&$5FRK*YTb9Qd4*1JpKyO{0 zB)oSkn7*FYXxSWM9+vwkscQXg&~~@$ygN2fqJL*spv_>_k61A0A;a$aW#atsOX8&! zxGVw@@u6)1Vt}YwKeprgw3{%%Uku9h4QI5OJ6x!&dAzyThy{m^{q4}T`_f%U=Lh;a z01x|IhLxI?{uP_BCVemhoCFBks|`O+zI+d@f{0uS0b2iPYW_!4ZM6D<1TfzNb_i4R zhZvACh6ny1*tz@jr&bM%ex2qV&!>h`qgTZyw#5)9)`3ZWemH}u&jElVq=PBAIrPwU zuCR*`@a(2WZf*;ixSIr+iu2@3o-45al31v+J8xz(ro@H~Fk9fq@3(kVvW3mL8v!Lc zhaSG)3h`#|;S?P)IsE`wdl7u5WyFxUlB}uW@YV4@Z8138asldV}zt5i{2m}Vycq*ofZ5u7lqAvw9apE)#=rfB8>iw2ldb;A-O zS`txA9&8YbDsfvvcogW2ZO8o*ce{3f@Ydmb$>M%0N3X;k|f!5V|sT@u(NkMN^-E zcmq3D+169{sq;JenrSti(9P2CruMoOWT!l>s=zFjPs+Hg@dIngr;iw66OG{J37{w4 znwG-AJqZU_p4gv+BH~fN>iDcg_CM3;&|Qx1xNyr`u#>3HGvxQeCKTdu*suFc>5%N* zhQhQexN>Gwgo?$U=R}#po-x8Kr8W!2L(_km&6N*C9pNLCBvpd;u<_(KV9A*cP#9kxgZR+0P?mzN8y(+XO48` z-pyW6z7bz)uNha(%g!!5pMG)9&%p4bZjb(K9lH)}Z+-grVU$o#C}tW^K90$ z^)dIso_#?STAJZunb~u<4Zy2U0Jq@VTM5SDsIX%+ zhyfLsN0WKfxN7ohY3uCyGdBv>bgE|0MH?7T0PWTr)tgi0c7J^)x1e0A5wD3$B`YD0 ziYoCZS)f>dXgC2pd9eg&ic887MyMmxGqVF%>Va^o93M_E4t;5}$w|XkIzm}yyKjKK z!+5k|Kkd;q=WXf?by{cPDKmwt+Z~ln&*Z;TeP$l_d1+d*Dg542>-lMqi7els>1k?uXUNp z82s8yLQPkp&jhfy@v`rwAKSm2@Z-g;y3&)L3~3AkOG`NR?PCfQB|Hcc)`e90?}Wx2 zDauhxLHUzxX4@mtM^-RI0AUz$tWbqcL(_w-;41@~8mV+~z4>6W1_VS*&x z<~1OFy8w6VgxV{DHRoI7_;nUBZ%0y8nF`MM<+&bmG$}7W;L8418&u+yKk+Klkx(Bq z+*a?lW4ehowEd|iDDSaIiVce^-)m9nIOav;ryD%Y2Z7jo^rJR#agt3_^Gpx{y8DGm zuZg3m^3uiK<5f?|*0E~DZM}Ha=cdQ*SN_MR%rU(+&;C&_^cA>08XCwNUG;Z&xx57I z?gGdh`|`_~M-&2%l1~NL-f@WSzXwz0Z&cqFe5cF7!xT}21L;tBX;C_!dPvSt|GpkR z^Vo=g-Gl}I#8}Pz$pJvNzeuDAw=mAl1$en^ECObC2<>^z&t56ns^;6`t_lZCk`qmQ zV?V{v4MZff=aZp)bnZ_gG;GLe#<19%%%fj?#TP7yufp3;GR*_E!3!{Ne?=2 zHu;hfSL5;!+JX!jEd4vq2$`Vo1K6~LoY`caQ(oXXiXQaFz`~XHbxzjaMVj2I2T{z; z56gqA2LMoLxV&4#h#6+$cw>r+hpT;Oo#-Rx?sQ?jIM&YTO7CNdS^hN>3i#{w)RPs+ z6;`uK&+JQV{Zq%YVS!}Nxh1X@Cr8*Jek&YB-l2-updHL#M+QK|Irn~F{;2@8e+v~- z?|XG*Im?>G(1eKWnx@x9uG*h3J^~9xsf@M8ma)d3>Fg(lwHVa(&lhx z_UP|W13|~4pJ%AAhA>(c#e=m$R`(3R^Ot>`!;00m5g$}v~K8uYWd_hH$CZbNy%6a zl?v|V>(qzJ-gtBPLeK8*vLhx3bDshlw5q}zOsWtiM3o$@ko=`j1jNgb!JA}FQ8-v= zMqoJX?2D3U#gABgMLz{3)Wg?RlRJ;H<*Hpk5S5&FfAka*XO1yZ zhZ%J|H+zRCt_)e>#6P%g4c7=OSfw9wgl1L~M>jHI&GBa_2p(~zOQA$=V85WVkXESW zd(C`;#OYiQnN9}NX9^bVi|X=;sF66~cu|6Y!2(f*ilzn?_1Q(eSBrfcnPb7?6y=d8&zLN_g z=6hF|Uz#?+O?0bIlq!m z6ePWI^{lNY8^17pb59P!wj5K-5fEK0DH2!SM&#!M_|KDknEBi6t8reVE)d1a)xOZD zekoHUhbVFW$T;D*4Pl6!+qlXbBU7qCh0n2Z58EjPb?v4YcOps>`z@Y4Iqm0gIbqf4vE)VYqi!tk~Jnz3(aaw~hhV z3=0e~PJbbREN8~%*@hRluE&O~jjKGZ1|WHsShY+V^(&787?`LR2l@_R=57s4*z?bu zd-gsP<~)QMDnu{)&|}X&9YQITv5au338~+fdE)0!gY-$g;)e$ITijDgj*X9;0#HnD z4tS`+iCo=ZFg+8K?{$OFu)FdvMe>WnixFqSeU7qCRYILLb4U~i{yPzQ1nkbm$KlT1(^(;V86HMVp~F^$Cth13J3-!}X+ z`z~)GK)B2R{0JZ|)5`ml%YY1aQJ>oC{ZvL-k|dBLeZrS1cN~F_+SVjP4G#$-r;9Aj z0ExRA7iAdgU4x;RGN;*?;*MhK5Ei*ea9=N!9;a5v*;e(X2Uml@#IX}8z&#D-_Rgvq z59!gw3v&6fF*;1082)oAtK6lu2%x;D8VsRe4jF(r$rC_aq^&gBOkXQa{o5m7Ry__r z=s8A&vpC3!cSET%f%zCh0#nw-@A0Kn1Otys=0x~ziDBSWceqVb`u)EhAb^2X4lFJH zbvm41yY?-gUY~PJ-u_Uc;|?Gc{tMBwbVkcyjf1inU?zlwY5giCKm$)Vd#nIiU}=#y zT7DXTwXps zuCDUofq&LrsLZq8`xH?BH*GjMCuu{wm$C1~Q^SFUCW>cDJ(KYQD~!d61#;j(UU@mH zHUypqp#u~~M<3Z7XNtnIKLw8eS_~aOtc`kADY+h<$Y%&15r=#*Insw@86<*po>aMR z3zoxV2^e+t;LwnetP!KYelyA7X+U9fyhSz1E44;I&p?B~!uJ|;j9z-T2_IkGf<<|h zVgsMW05b>#oDD_4HQ!a8C-H++TTH^<#Gqz{^+p8e1zl;VTT?VZGJOkSw}ZOBmO5*8Xv~?x0o-8@-)5S@+Eu=*3o3+-9eEsJZe1!ty8*X0$$P6uyfCg5#hox|5dO2{Bx$Bhr=fl% z*wK(usvf7Dz(y>X^91sqC7P-42)`-dC3<~2mSx^)mSGf7nREI0)ucYu11p?YS~`$G zr{|I<_W7$Cr@V&R^y{}f4+{M+eWWH!mhtLrxFQ3De#zp(7nWM@w5lNgijojVc|j#h zZ8c7g(!Jr>B8wxQRElEKO9A{SEk#*Z?7)D0ccJZYAf!gtXCipCK=ocCHLn@FvCCyX zmFqNlW!B}ppCwB@5|Ebpa6VMS?zfqa7FlLy#fGh)p?>jGR6LbNoBoY|&Bz)d?*h zTpc~I&^|Cnt&WWfJw}~PJScqb`R#N{raS@!`R|hQ<~6tAZit`75LTtIu6IL2EvXHk zFr^Vk_JSZ*%!(&Hc4}AxGF2qCTG`UsS5KJ~8LSsD3l9t|Wf`GCU)Rh8Lg#%kXr#Tz zR?CV@OGR-)^Z_|hVUhXNg8y;ddEM9cDL)z@ngDZuS(tC?Owg{S{?+DWE&?h7i;qH1 z!~yWb2ovNI7i(jrzdj77oJQ(+@>big#IZBmg!DEs>1JQRDl#rz8v|6f5Z=<2A#U@+ z)el(Er}GFW!g&+|sCeB!wBt-2TfZAP!zg1ArjF>geBi}(8qlA^b~5v}StXwM?FSx_ zq6`s`oO}xy)z&){TzLs)SOJ( zFkAwRED9W%x)LtfDC%nK7Z>`ivih`8ze3=4O-<9bQ{ssKV@h99KU=cPo*9Gp2>^wF zXvYO8(`aGB?=u;eQnB9Bpp83L!jqi%p9`@}N>6~?;PMt|oLL1J|K^9xp0oGBm;C5; z2>4jgpE=HN*yh8Cb37k#eAw}9=ho;Mqza9&0sDw@mX)b_rJ2To&l*WR(Cy}rz_wV1;$l9s@)Nb0b zRavr-c34s+bL1*ev80aW4HCnLhciW~r%Y_S^q8{c4Q=<~=bp^lK7O(!VwizZxG>ZP z55x(-5_(v2rQE%@vEMZeMv&JPY$(Gj$A6R(RYPPWaDxpGI!$7T%tHS8eufz>BV&2v z;%IewrXAXwzHg~OyOB#2E=l%!>>F#2G^K6{xuLRBsfMx=ZqhWpr$R*dPbav~5-G;) zghnZ5@C^7rJXVv&^^~wy=(!IAV3wi*{V{I$YUPK7M!fLY;)ls~l1_Xh|uC^~kuzW5hkv^O{c1fNXoF2RzBo6+41Z>c6b zb^CRl375Ki%h_<8a(A#=K)jr31fL&favR4IcJKStwhEtq1q{P5Dh~t#M$IgFnrlGD z_!{#hUq%;B{eFi6z+R+|gn{-RmXUE__}_RsBo^t(ZrlKAow=)2bgdJQO`U+XJ+Pb6 z*8KDI=JtHLJs5w41BCgb%u2wnw-)S#Sk?36b`4-Zs0kae2wH-!wAAzSJBPAxE_xECzrY6eU?<`GwO>RIaYy_j^H^xRw!OQV)BKb$Jtg1n%osdQ;`d9W405ua0iRE@bxM)%G!e~R zh2GXZcTRa*zR|J&msP-TApyiM3a59&LoOf8;8PI!qX^dNJn!QG;I{9EYLCK_+?_=7Q+OJR%oxBu>?OvpugZXTi?d@@9jD5NxYzMnE-@YYJ+wiYx9; z;}08p^bu}NKRmPEsVJ*Qn@<85BHmGIEv&+MRO7p*;|DgnbHrS~rHS)2tkv4f9<=ZP znE8|H{NZ)F-i$LFevcD3yi z>M42eN=vbx1GWK76?uw@V!Y+`bi#^nhiJswYZdGbJL&Xb=x43_B+L>q$2uQM+&? zl~`z!t6drwK#}h9DgbSaQuXakR8Z$4jLq*BemH})oE6^0A%_E(5Hg-uQ68UBU;NGw zR4a)#EBPFh4@7n43JqHq{}V@&YPM!8_)I{a=F9Fm#1Hw>v9RCyN!Q7G_^wY#T*|VKl zqbEh;1pjCPt1MfF9T(uNQa(#L_jjG)DOjM|u40_y`BJWS%{^~-lPgONgv4eZ{GY&( zO4a@nz^@|`)s8u{7}+;}WjC5g1P{Bpv*EXR0!zprFHNaVZ`%GvtW-@>Tfb5I>vuJ< z=3Jv}oTHpcs4`-2Fam6z)WaZ+1rJkA-fhhBb-+R@xHl4`_+>dpKRehSSg6K4od2or zNRQq+XJE(Se*4$ljlavW-HB2*3AHO>3^3W44(DD0`JiHs1UDRvxCt#Xk34wLB+clz zGjc+G@?7d7tK^6}UXvXtrpR<;4q8Ct4q!hO^JOtP5X?4$xz$?!td0TAq{^)%8C7NF zrI&ymR=Ig=wrU-YsnY{U#*(36%9JZsf^gzNlV3;;(b{#&@8A4{1mlp1EJ!-mB~N#Wv;YvV|v{H;w^mbZf^sq)MYyWX5N@g z1=cRXi>_PfQf9kWd@*w9s|cqKQP~jorXRF=zXKfEGMkR-i*_8rvgt{FV*Tt3#<*9H zCH!k^>Ehil8S%Yql4bV5xJ#Gb=*X8TVW7;CJ4R{1kaL0rp4)w4zFq|5frK^P?s;-b zEP)IRm#F}oo`XZ{$KC}Zf_K}BUjjLuLCwd#*qLiM@7D(Q#4>~X`*My!klfgmVI)40E!VA0`hub}l}) zQ8E(OPyu1{7ed_4*C{I#)~J8S<1d9A9MH18D2YCfQb}X(Wt%s}6i(glpEl{&+%1*O zio=dAfdvu{4J|?qD0?Kp1(5=gAVBDqs((RD#!M$8G8H)CW^xsuUy0#}Y&d zy550F`g1Td?0Wb5JTl0wDH;%Y-tCkC<@=&ZucU_8eHVff*btB%&ZK|?Z>43m+%U+- zaNb>zL5KA71KSeK%PdLC*OHWwuM;+60bkc6z|&5+@|;6KS^@$3bmgJ|5&1}wIDa>E zRz(}Y#W$%OxBJB0XU}FDHOt*RvAJ9cqD(A+GMGl}gciXX?}n?R^Yj1s4Y{^z{j!Zm zD$Ve4EY-6a(M)1q{?}Sq?_2JL#Mj>U0lwH8KAi$vdG}jm!dRGd@lDF26O}jB8`PztAp7vcf^dy zFw@oRI*P9ydpo@IW@YPrM{efw^{ZjAnj<+TbC9x!hyIo z>!IK~ydr$zgsU~@9*G~>7FndDCZC9yKk>kqRq>GD3mcse4^iU4ySNjuaM4!dM28J@ zQJ2UoZ532p>&^?lT5=Y9ZU1 zQ;P9{1uvR=qkoyDi}b0E=lxS{S3%5)kKDx*;a^5VzfMQ$Gulg? zSlL1+{}Z6|ryY5cIr^gtb5zuw!-JGy0!xdu0a@oWN`>Q@TslpvjSH4i^CWizNFi4k zEu$X7fC4DZFfZ~z0#AgG`ft69dthNTA&vUZV2I%Ud9z2{nt zkSsg;JZnd)!Z~7;@a^-g87ZHk6J_&vu!brpmk>I-UNT_6?n_#8r?>2=ruW;J!=z?5 z3_8AC13ezC82c$AdD#V0U~#DL&gE?TL!WJ2D^ZSNB7Y*-Y(smNwW-B^8ID9@cm2Y$ zH-c&LApV1tb~&G!GJ}E{TSKGDf$e!s&57-%>ya3_BkTZ$q} z^S{#3(V?;<{_-3lG@1ykNTNatxW1!80TWqKR6XPoSZBqCvtLC6A)=5U)iCm0#6;y> z;Xx1yRppXW7HJ&7!xmo0iV+K}JlSLPqf&g9kx(azEXqL7PrFK!qkPPeN!wtXOPD+S)>i6kmFK`>lNFcPE zDDB0m!^?Cue=fF3z6=?tudeB47bbUuz_4Sz8#Pm_MYZraiyPniopgl?vbx&z51R}I zl%RYV7vPV8Kx*k@+t)8Fouoyjh@7Se5HBL9N~BLm!j!hiu0J%vRnVX?9It&ZXxT4*>#w8W-VdzvGdD*QzOmBm;9 z=}X4Unt^Yd;%3jN;LhQrw@dzJjFs7lf3{95wQ1RE+=#)dP}>F8G!7{Yc{3XG*r=V) z_3%FB!x(xxWk}G9v)d+H#<*2YKA=U97|W%E7Z$DykMd|n5x(NN(!`&B8`{>8P#sAi zZ`BW^r&m|ZS3ArZwD26>b@ek>KT4Irt|k|m=J*vU0X7(sFUDfpQdTQvk=az606;`3xoTdbKwZ`%5}D44b$ zr{Qh@z?c?0>@~a+P z>8(CosRzt-gZwCvs0%~@pDkQ@sbnOQ%Kk1|wyoMb7i$HF4n7RiG^$KrME#lm*si$@fUoL%i#pHGvBVA;8p+iv8IuAk+S784;Ulou#SADtS(F)dpLcj**t&@ zC>2b5zsH4_P*!)9P(PAX9&|YOrX)M92zPU4O6I^UR`GncF?npUz54-exnsol{ayl= z4c#d-Jx4HMf|D=>ZfZi^y-y2+O$%b@^&Cb{a2C)JIOY$vcHK;}ry{aP7%`#!IWcj6 zv!nK&TJhpSP$D-~jBUHlN}-0x^GYDUEo~NS{++Lh3vUHJ zKxm_vLZR1`CsPK1HWpb;15<(*BGZ9#g{^;MiSLFj(keDgTa?sQ-yl<%DF?3Fby?(M z3ObBo2h-upPM4B&#@_fmRF`%$NK1ijU$PZu^LjgmE{GqiORcM^P$U2nSAVOO^=-k$ z&Y=S8IhDA|CnVhPFrtOa-t^ifIdY{+BcxnNxZO=3T5w~(@c45@`#-&{HPp#nz1@Jvz{gJ1#b;n)dm^=5I=ZMFhk`PVU8}7szwji5fP8>KHwCp^lzx$6%PBp#Z~7drhdD)??&?1sTo5yU+E8ryut9t!pase zcoAIqUWNhW`i&_a4+@-PUM}v3?JloJM+6gWDV`1|+_&mX`y}?$rx_!+2eC|#N1-vE z{SUspbc+hBw1VMR`4|3v24E_AkZ%Cb?oQOaLj))3eWFkoQ^bk6L#zc<2*V0$uO zNPZc6g3N&Tp$8y_M-DzNB2H9;J7wUuxeq&j+eu;ietY5>VZN=`_-QW?8*8Z6`-~__ zTXzQv)|F(8rKO_$=sd*99P!#}CGMgm3CZNT5 zGi+Y_gWL8u=)EDdY~@wBjRpYJ)q3SSv~218Ko}@}41MBKpZcPSD~|Fa+I$i~MuzzJ z>wQ7_hvE3BT#!w4d|Qo^EOBx1cSj>ywO4WLO&!lSRaMZFF-a-!xUsP}Ds-)WQAlm7 z;}*Su$%4&ZJ06r&FQUA6-;|oSB7E7ScW+t>yN5$J1mGC%WjY7qRcn}d$!Bg;WiaW* zET?$oc=gcH2i}&BZ0yL$RR?y=(v6JQb61rck!d<^7_uR3>craxnh(u12fA7YIk4lo6yXa$Oav1Pv z$Bdc*<|Z&@rLg zfOhxumat+PWw4Jy&EJ81q|}LUgfcvss293^&%+j#C;ebwIa4VJHuiKd*j%zws^_MI z2t$}9L&2CL5p06jsipc}Gg71Jnx3O6cBQCDygOEQl6Ax&%6H80dXH&2CO|bIHm#NVV z7Sb{iE_lFq3SF4InE)RuFvI^+xor&%l1~k2s3Gp6>Uk1CY$U%397+@rrZi&8JrHJN zpYE96g-UtAV__>Z-t{cmL5U}R|10eQpX)YkhQ*8*zs=rdj{O3Lc!_jr97|x_uEupY z*9y4`F3>9C$->6v25cX)-BqRh3q=CA?47^4r@oh`RHsF*8j z0sa7Cz#BCiHv`mvR7azeGGG5VAOzg7Vr+#F4P!4m;(HFDYHQKJtXorn*PbEN-t8AV zc#gN22AKDTfzN;+0zYgYKmEe5gwB)3?FROn5jFiQai_$_F1H6+197;-i4Ug$w9|_3 z={h#xhtk?B=)2mk&8{4Gz$K<9?zHQlUor}U?Meo~j+(2&yr&n2v2kxSOHM`C=wC44 zU*5sZZJl*na*?ebUK}m1T_2zPYiTYiE^a%NS!Hzqh|kefOUw3q8?W{&U;(N@fVWAZ zLt>G|0c5goVzQJ$06^4rXe@D%#{hGB9s(w7-kl9Ucrd_L)4YnZ)10G= zF2V{x#Uqz@-0;DQ0MzHssX0EGE3J}JvvL`4Ukw*6)zmhHlPiGr2xRgTG z0n?q~&2B6xXRNZ+-wjwxmz7EDrXAa-*6xoG*#T3w z%|0V6u%y7j3h7xjam0hcst$a9lSEq$Hny^#mmtnQp#ts6YsF$mA4;NS{v^3IHGx>Q zrf;6L%@ZaKo3S$ucOTrUf(#xTi&fK{ z+{Q78`plXmebdUp{-hr_5KS6q=@GnG11;+7>*u8n3=gmP6Y-&O_ok-C&<}u2PZrWd z)omPro3d@Au;F3c>dH7IB7@Tc&g3IFlNK%b?dg6MrPji1(uuM0YLVFx*>9!RV978p z3QsURgq*NGl*`8tb9AekJLa3p7;tmK4ZmHg7mr5wUZ;kKYc%DVbt^03f*FKS?)>-% z!?g6jKI}wd`M>(Aw~gY>IkbM;-4ZxCQx`eSle$_`z1SWPBu+H z<(a)d;c*`V1YNoulFkpSpE?s}HC>MN;uXm7IrCt%J+P?mBwAd&w)u5t<^fr_#4&NW zTpbJo=ovLWw8AZra;PJUwGDk6XntHaPKhXc0+JYHa7m+Svm5tcnb`vMqo{MV*G zG;Y>?AUvb+d`QhyPrw~tiZbldkgrpa^3%7?vvtuX%zB1 zAE|NxEp8qj_!V%w7}66vFnh4mH*N|@Ywb369PEj6z(DrF5;n1cU;4$HXKlqeXClpd z25DP{^c2brE)4-M+?w@n#dq%q6e~}f9*X)Tj~`!_laB(cXbc{P>?DtrkWhv8Qb}ha z|AfU=muUPV)%YdgVOK%CJ5R`PEpOh}VX;Z=JRNK)Cy_#V@G%&It-Sp49Vu$IG}SRF z5ND%sQ5F$4S+k=1u^4eLW9y6N&=GDK@c{`OzqXP4f$R`MJ~?1Q3$cXV>-nd?Pjwki z(;2O5_{Yr}OEQd2&yPhrW4&JzM~l39v`NlvTFb zaMh>zcQUHy4|;OkNeXiJbUIQkpCc~2U?K6bJTHx|upk`sN8p!R)vPy*^h_93-t-^n zALr_tizQtENT|^P*j{`k-Lq@SRyHlb*bJk@>qoX-3CF&%=8grNqK+rj46?!Ezaz5O zSejT60?(6JR_uxxP%MMJ;%a&o0s(gX$+hI$it`LdB2^bXu~7=Omz;%{98E2MmR0?t z)FPk|{Aa>0-&iG9mycx93Z8MpVh~oAq{r2kGBH ztg86OkKOXSOuFhmg%$wPB*5Ur1-fLjHVlMwK>!Cx=4E&}vSf~gz(d2{9M$$hx&7ia z!RdM$CtmQK7A!_>Loso+wUXe0r77@Hp}rmg;%?6bo0<(P@@>OHo5ITMc|$+f2_*j}Az0{|nP5z-RDiq(fa#w>%B9 z(*5^()2)YhT)01nx%)JNXv$*K{l%@vd$CI`OK$Jhhk5YA z)}aZ={Z@Q!59L~yj-!Pto(g7@J1TXNdWAs%)iNvj47_hu5slz~Dw{-zL-d((AN6nb zTi*3_215BX*l{SCkB`4*Gptzg>6pN@z$ITzyk2F3A4fkQqZsuF0}-%Et_R=#mgVDJ z@Yz%jiPlLC$XM8IQ{bWJ)UhjCnckduHJckJ`nrc0D|pI%+_;`;qynlgYmWS>{cb?S z)C4R~+|2_jE)49&9RTJ|)ephr!T;-Ox4Qt{fNR_quzv|<&qA$9sZ@bC#mX1hIA@;Q|(^|wK4 zvv+t@vZzpX9;^l$j{h9eCn-M~(<49z$?zV}*p+##dY+URQdyU^Yh=Nq6+JHO>zmyomVT9$lpBQly7W z4cvZYX~yn(({s(h*0R`uctE{gm+zafGdG0w_Xa25-Ch8U=gUZJ_Q=TX2ib$!ljWcL znckKZ`8WNr5M^{8K*1ZtNghL&FSi=}IayPgMk}C$fn-TiF44U7wP5$P zK-D?C{!lRDL19*xeX2bieDJ!WN7t7D2}}9t9_-RrDba11Hn0trr~!K5L#piWq<7%) z05v=b^K}8?%Jy>kBMe%hx^|!Im)ZKc?R6!0;A6n{f&rgX69XooYPTugRTxmOyMPvm zr%%2eS3`t{h?b$paJ|d0^SB)W3n$|0=Si49+tr(L1;6>rl`i?C`t`ok`ELkzxeyqD z)VON=xN;8&-q2ly_(F-}e+yQA-epZ4d(&O>=-xvy;zdc+2GxAIc|($&E&1d3;?CbsqPWKK=2}}Jx-Sk9D1TI=#SNh4_C|m0 zMX8+kt({)?Y8tQ*Ua|0eJ->A&c{wUCZaZcqfKNDP<{@v+4z`1+q(hP^QbEp+?SH^` ztaz&d7zQhb^Aq`8m2T&^o#^{8Bo)AHp+b0O`i$V5_PHn$0o(geS*v$)R zf(iXjhm`zf#G|#>As}4>h5|MaV7Lq-O7x|F!QRg!J1&cA^6Xnlk;2;a?y*IxE&Y?$ z(ce@K*>rmV9{{Z1!PcP<@M1&gB04eecJB8+&}?b{rQ0+Ft{XaDlliOxiugl{jJH%i zo*9+|p*S{Iu`GyqcgB z@a7E|J*G{8Ss4}Z+4(c;&ntBOn`~$2%XS5NHZ3x&4hcr1JWU$)tIRebyR*CNCb^=4 zpnR|B{G=*kv>JfKoqe6=Gs5bPMv&LwB!qljJhIpY(IHcg4<07Dv{ZWs0GM<=2i>Yt zFPCJQuV3jt4cJ)##tsl+6iI3Ee-B{%X&ViJrsMx1e5p&aJOVA ze@8 zJNk@(PDG9xIJx6Q3N|Vyl6Z@1w5|y`{SY?8DVls`q0IXLkC z0H@L$9A^`FtRn~D8h+LmJI~zt*sXYR`y>$>yopr*itoR^4-O0wRU%D%Wufiee_{`) zy>+)Pi!XWBBJS%xGT*vPURinaVS4iDhdo&gz17A=QI}7gZCR2K6r#zWKGvhRp5Y** z5~Twl3#G)io;I>wk6x_OV(Bt(e`exb{I8_6``?C}*}LS1I4`_16dX`Ov4L9=XSW3U z30z@tWHvT^?w>;8z-1YC64$D7*(OonTeU5adLr= zFF$`-{+T`EGa>{YCK3XpE}vYJEJK$yb~Cc&vba%bf*B}C@fnUrdT=XQ20T^l$Ccix z#ucSig(Quuq|OO2Q>NqnNMy*NB;_FjoX!!((l{2wvxM$Lu&29+U^zJL{$SjGQ@nB3 zIpB4<(vz6D`h4`~n?RNf)A1aRKC3hqc@zaiL=bvsmSR3<1_ykNT*BqGwrTMMQb#Xr z$2@GyMBqh-;M9Nm8VbysG<4Xp6Iz%nGpMPLP(;1Yi_(WvgH!0;gu%;TKsA{lk4&%D zaR+91+>EB?0z9_Pme?de%@HPw`zC^d-Ue^q<<+_`>6r@l{CW2ogQynaFAa50+)@-^ z5l|wldE(%RI_v$L>8t5XqQ=6&M`k(Nd7IRX-E4wAe!X`o@{_@WB%;fMfe68loUGf? z60cTEy7XIUgC}!`d# zF9bT><|R;ZU!ZV^K!ccwzQSaL5E$@Sq5bN$TKB*eITjCAw$mx1p2wj+cptg@I_KfY z^C&2F?wm1}DeTY34hSRF8P?cIIL?)C&dJS#-RjxWg#bP5sg~JmDe1)(478llZTBBq ze^lqQ*kUOcIq*K`*-iQKZ}PlT+&w=LNFK?lL3bsWE;7Ddk_+tLckyc@l&F^PIW3I& zNFa(!J%bqBbTG1$zLY&%LANpybqAc?$rGks7dBTQ1nycclR!+>Hu=L>L zU)Dg(xULyDXj@5bEG~+-vG?j-Vxp=r^lYl8GS1r`LdpyaF_QCBDjWTA<&Aox`A)b^ zt*q@a?ndL%xu8p3$%{d*=ZiVv;wRMwkE9r0nR((&XnCT-)ErOwLh7g$P2zHU9l7~p z!{ETyq+Z_bOrGBJ$yBT=34*A_!3Cmn8Vh=l;^OFFo^K8b{xjWdrhLnR&y=ok9EElH zs_yMqji>!&?4;DvNAL3ZI&+s(;^2K97IaB; zvK-^6S2IxUNri@q%vjsuoO;n>Ya<+V4hW8EUN`u)>g z?C$fGrD4s&!G7D{jFg#KU}ZN_7^mh4z4pWM?%NgL;dx}0m+4=ejqE@7Cd4MoL=|HW zKZcQ!rt$Lsy@DYmfrUU4zC|V1HN_EMbqIOxj*j^^G$-8pna3o)J*1nlR8U}?QtPfx zT7GS2PP~)q(EWN!tZFl66c8eSxE|TKIwF^C+%o@OrWFF1L2`w*e zAu7}LFEt)@ql%SZ`RE+EPha?cyipfLhc%2@S7Mxf>PGgb^4p(%$zsDg1T6m7fF@6! zG5I7zsKUqd)NM1D{dt_Jr%%pO5XhSA^ZMw~)JetCQylP%pkLXPM&YVv|HU6?eOQ=7 zn|Up{8H@evr&jVLdm_ND_MC(&gXgm%BR-oHy@kpO3w<%qkY!IFZV9^xS(T$nB3P2W zN%$eE7^9sNSfV*zBnZT}3%Jg;Ma$Jjf6Tq2zo+9>9cHOI<4ox=VrPW~QQx)Qr-zVC z+7{#?m4*2<39OpoqeawX0tw=&1=O=fn#8x;rd3Cir-*m;MAn;;Ox$Qm9e1!s*Q zJ*{Q~bRGYjY$gkB5^f|m&*p40Jx8vwrF}OAPJK_d@b~kfcjdyX8j60aH`9a|YQ$)N z+`<+EFbvHP#vBRZ7vXL~MZeNTn)&V=d{Xs2^Z?do;=MAn+{s05CS6Cn5)-sK>jM)B zb29zvqYY&9GX&B(>;2GoUiQ!VogA+&M?7S0+u9d$WF;V{uXKwCc6KDM6zkmIAKN29 zP`9Q199>kjX=%98YHeX5QQ zNThnb-ZyE<^~+KV>Si>a?mk>Y4=;yR9pk+HARbJB*{|-|6y&r`J9Ky@M?%)#2}W-~ z%TWSjh_RxNTnu*KSr8nm>8hSTv{zQ_mXO^pdd>>}eyH_Xfmxea;5&nMT?#>e?LXxwzX#|=T-smEHC=KDdqsrE-wKN)%FLiL&+he9IGnTH0paA=<)?To;9F}Jw6 zD>|CB${og#8fObAAdo=BD$eN+LPa{_sC}=hZ!cfIBrsSC2z(g;!31X*uBC%wEm%iA z)n=M`sTdssX`i?BdE`AqJY~U#K)k;DyKdeC3qW7lW?0^?wtrJQc~H9f(FQH-ulLIL zR76N;tjUMLK9fNn)@>8kUPf6dlox`!8^6dpdqD5XYgzbic@VrFU&NoKty9@{E?Ry+ zc$eJLtW!CK4_w`HuBap=q8fiN@&0&gi&%Bw&&DUYon;q_Cbw3#(r926au@)}ByFn6 zUGcqJ%3g$S_vqL^%b4oxkEzaHY=?fjZ|^9p;D&>&i2`Bl6)jCahq~M^&di~MKRInD zz6}C*Q60YC*D=bKn4O6+z!go;*1he$%V%{PfoRfPYv5yEVo)>d?Wga^*>Hl02w9W1 zAPNPbSBEZDU4iBRaO;}>s6uWF*E^`|Hzh03FmimsA+lVsx?%Om|XKb5S z>>O4|*MQhoiwuEy2u`si)!G9y@~U5X(8H}(>rc1%-Np?~u|I3N+&}l-m1R&Zw$!9V|7^VDj2)r-P}oJ_j1qz`{Ex6dtev(vmbOXQ9lq@sH7zt186`p;oL;UpM&0t6ZsXZIt4=zbgZ}o0D!5Enl5FUowWw+RzSmf zXmYA4%fj`eAh)tX&dBx(uMR_7Q|gL8qy+*43Dn;P?5Ef^xNGU;oo&F4e_gdx`TQRi zq(3fzE$7^~j{*J@7}m`tPt713;-v>5!^5OC-b-YX!R=Ix?F-8e)ttxPjhjN(06;nx za?0Arutb4bca>8`Ues9d*h(v^u1Xsm_>8fO;?0-J4}JWTlMB7wpPvOS%1a3_g&ab% z@=C>-u;BT7Cmzq1DgSkchKHvc`s75iidna|`LCP+z!b_ve8#YFO%mco2&|+)71OlM)QS46!NXUbCvHvRtNE0JQZB;pyN+rI zZUUNu^l%U(JG<=5Vmn>dDHSICDK+{+%kvi`!xm#Cj4A${fXTPjLOb~j4BkNmP{09t z$sW`VTy+^a`0?<#G%O0bSI+u8w+$|o$kt^DS#wFY2>{NjqCn$Lo;bmN7j*qi<*4Vb zd%o%YSvg$#@Lkf8S{yD))+L-*J}}XQ{NT5(YSIVX00{GU`~DuB!K0h$8^1a|3j|1~ zLu$3XxhZQQiBv+;PdoYIDS%py15mRBQo|fIoA^Y3$Yv<8q;vOHety-HCu6e+Pj|@% zH)e&ahF%>yymeaTZ0vxGy%n2e4+(15&6%7qQI4vp8{S!wUhoJ8za|m@ zbuPy8S(?={4FjJJmAl1vG52<+JZgSC981i*ZB3k=vHhw#AUIpr2!Er28Yj&Xls z+qUw4@uJAFUZ>cxRyX2cq^LBwz4Qt2RAh*08CKj7rr42m;nmWw&+Xj2?(JD}{v6pd zhFKq|QfU$g3O5T?%>Nv~2WA5|4|zs{I_+NXZ);o(*I8W1)vX#f&e&Pi&8n|r;!4Ih z=M=~84le&dJ1xNi!iot|=tc_l5KGcedum2qz+(VIUr3aB8%}W~U6evFm>(KMShTp`>(n?~__3s2bf0b|OX{cEs4pK}QAsn-lAOuF7#^wUNvDsu>1s zs{o5{Q_0UPUDlR!?7^=?h6eZ$dT@-)Cu1zSwN-t{m)eOT#}ARZDU-1UKVGU1SF0(| z)G}vJsHXpzjCJ*=$@KH&N)>*nOk2SG7at*{3Gc4Fow061SR%9P`~%i4%C0s{%Fm~U zuDm_!7Ly4=n-`D1gHT2fIYa_5qv*|%d?BYM!{7PIUnacidJDOut^C;vh77$gHSMQf zv(%A6NHM^1e;!?K^1Cm%zhC{~(K6;^?Dbc&tZ-XHm2p=6TZ}f0!)=%@0>GEZ(MoV2 zr{X{5U0YIxt>+(z~x)Rb3uf%D${*uL8auL=-Qy3a-EN zbO~)UCyc%e4jpsXOZ&hL^f~e9?%yaH+H$$oEKk}r6#K80jiA9m6a(K2RHRv3JMtBZ zHMIhhJ=kxuTclFb`?NpY;xn}$6>ELHnKGUB4wrWuF;FTRm>0>tL<`EQnFB^WTQ2Bd z$(E~vWQQ9>lCfzZ;>dJV=5(+Mf8B-V@pZDGq5J02!$2s_GmCIi3O}d}*CxgFC)H;k zt!By;)e0vnPu6p0E944ijdl1@8T#^*#WB{*BL+?Y6ey5nV^flH@uJOT^(JasG@yO* zgc+op<=4&3fYzy-JSyGwsYX-vY$0(Vg0QFnXp6}9DkPF4S#IAaQ8n4LcOx^NYKY~r zt>m&-u;fqgXY<*_`sJ^2WDvEBLW|Ucj|sk$3vyDV3pTJVrw{_27UA zz8&pVraCMT817vtk8s2OwtUPdyyizhkJ zTcT!j2H1W;0HA6^lq<;~r_%t48l~PgPW(ntwjyS8s{{zhyhFA}54q{9zBPviADgCW z0l%7Q4L=^G0N2fcmZ_Z?;94>Ol75oY2>k}cMvC}xJEqFurlon{PD}_TJeI2eBGxpm z9s?vmGXAij*TnD70RqIA9bA7{-$^?vAYxlO)an!;^mOU1-i*O3e*?gwg5$4Cut?~e zD?da1v03s{;JzM5Y(9x%(QQ4zoQkufi%Bo0SQA!r1yI@PS}!Vh*W*g4ELFSx(3;Hi z^?wK9(N&;H1?W%>V$HlOK##h<=fXiwi$M>k1yF+$TRi@yMD+=v*&Fzd2-;XaEELUm z%-du?e{X-DTz1fe1Ju=`6>;OVwJjlhfdOBj6rK5E#()K014E&`ly(0EaKEl0-TdtH zhrGgQiLusKmTdE@$MVHYG708{q?!H@FBdETs0o_@YALK^2%Yt8$v(O9>li<4O$CVf zL3t5y-!45Op=d9Z>9~=mm$TkseU6vw`9ckUHsrpi`{j1nrw*|zgBi$owP>$wdv7mROa()Z0(+f09R`<5~+F&{v zU@a@J?or>hjlN|@dzoT&$c{PG_lZcqF8%6HF-X5D^_F(bD}hf z(nqqE00^6ZIPXz%AOu!oAyei+NhrWMfX}r(Eu0x#q!K+FMFj=@xQRra)h*)(8gGr>XySgHe|g-X5te5Q<{K+;&Q zUp+?^+uvPyh`=jwfN>+j%PkE*7Y=e>BZ$s$jkH_;j-!|t#pSi1&AxL2CTY^!zW%65 zMyCK#K(4<&dV~v>8|jamzP=-uI+;snL^h@QB45&&ElpywdD?lmh(GQCtGs!3+O;KH zGG$1&E+Sj{1z>sxgfu~PatopJW4$H~C}+1WT=)-{uN019AaO7-0QmIZ7W>@br_9(^ z)(U#^8PB^=Td zE=_PP#JGX%N2CR zLa}4B#qL^T@gsrg{&-pjg}$^gMaq36rdsk%K`v>PM~CitkZa_b{4`3LYLNqNm373U z&sih#?AQ63O367P*$YUZFfuSxYY}IQ{GJBQ)7Bkx7i|NL=A8BZ%WQJY(G2`upAolXHDjNtH z(6_y6_|Z%jI#B7oJoB|J20~uvwNn!8DD=7i1;l6zG%M3>nKlDEw6Gd^PoB*XW5BQ+ z58FKCYL3E;H>Nxu3d>^dJ6dKBN)A4r7bwllQbC-D5(q-?8z;uM@A=dbZ{AYl@MVpa zWqqJG=U<$aUSSTWm=7&UGPPBtF9eu&2MIuHo#kBDLXEG>gaU9S*wDm82^WwTD^gz$ z6o$Cm%~1N$0b!KI=MO3{an5`?3^UZz)cTM0m2Fzu4|LXxSNzMPH~ba+fSv6ez<&O0 zKF!Vjofd#;nT`&>gHLzvg>Z_E05>z9&luU})TFafq;E^8Kf(iylROgVCZLrp6uF;+ z-@3o#aLjC!j5)>s3J^Pm%0EaTfy>b-kbkefPHt`?Snyq-e%yclDv(v=KW{n-$^Y}l z2o38$Z&(nJ{_}x%%L`0r&J__Scs@$~d$G&6QH{=fU&|GR(x|IycfxBjf$|C>zU ze_{REIJy7N`u~68^*^pZhcPR+iJ376uc?_S53d;)n=u;?7b~X;w<#N|IS;G3DTgr! zhlwf6|Fdg=3(UpE^*>#IRu*nfPFC*!asAm?0fT{%|3AFU|Jv*S&(~i`77iX40s#W9 z0+)~SfB!E4vxArdv*T!QYVP93{NFx^1d#(i$kP`x2 z#?{e5J+=!Yhy_dh%=FP zH&Ypd`4W0UD$@|~*raOS(9HdRe^WUB<5=w-O#u7<@9s?=_&ml0KVtn02*eT{0wMpO ze%{H>-O}0tbR8xqE2kI@d&h+jSkI%CX^9jt*mG@VZhR9-?+T@5nPGlKEqpKk(M#Gx zUq9Pm@OAGG)Sum!I5Vjzrj%wS`{T}0dV1SE|MEBV*^pjI3#>t;PyWU4iIv_gy~P`s zCgAG(CO8{&)KGA_Kux0Yj!H|D@_o_!8Ui98Cneoe30NYy^jD0Ux?&~>;y8^mVn1MC zkrI9yt(OiY8b;{)8p~ckOy<}x>lKA;gWcuU68R0YVX~h}3~P%r*Nhm=$lO_LGt@7Q zK&Uf@!pQiW3}0ZvG3TL@HpD_O96?jY58ouq;WEXwVqnvgovCG7zv3uJ(j=*>Mpv9~*x8IZxNzOR}TH zra&qE8#f+5g7?ej%;S~aZLAtXrBp*fuV51$~QrSlA_I z_B{+L9~@%de@NOFkv!JNQ(HW_8ReVTsgP*$-nq_}>}hMY>!c3J_e^8wsv)h}*D6oz zqL3#^Fs{-pIVJl=1e4~H(=ieq>G!A4pn6fKf*ax4>-xdaiS`mMnsqSzjV7xfRV7N_ z1O2gXOgCN-|0ZpZ1R;@Uw&ZBvFXf!5ea6Ea*ARwyq&`7ORxjb(y^*k*2{%#wP(#1k zR(_X0P2@8s%M|5Pf1y|W_~e~RG;=mHkPH$Q@2DdJsmrrpEtzsFO9nnY16#QhS6Oz4 zB|qq`aTp`yQ&!qlFmV)(JEneovVHV?$LURfCOzrA^hnl3G*~CL`Au4d_B}yQX2Y^S zmFA~EYa&zIr4zfA$g0OvNW6@SWnWq~2DP#UE7&NI@P^9YvO*D*zg@Fr4exXkroGy@ zL3klgK3H^On&KWt&#EJ#|86lGOU!ICc!=^>N@EJ)zA7){(f69VsYaH+pE9ngaob;z z#wcSqWL#(Ad|>2lyg+DBwOQIG`J~T+ZEp3+%t`WM>p7f-h*>MWJZE~4nKXi%sWeMT z<^yAwpqeFPD6YC$l0*9E$SnoDmZuCXZ@aQ&DFZXhMp0;2QK3?PN-+oi5Vg_+l?ugI zH)9G7Yy@AuoP;`j>^Agr_6lDc{J;@rwZr#4*TUKrNgYLae2axX-uH%E?*((avlPlS!Had~ zT`p0)PUXc;1MjYJZ?#9+WYK80Syu*UzsgR7K#+%ekMgsV%5{XzI&8=*X6uL1e9hYF zy)6x`K_P+tky_)*-+Etd>imKd;#_6#whR^V=NGPRq~b~kcz>X^StTitprY(FUJ0CD zWT(f89$!h+ZA7)Hk$4H*>-MI-YpodYeBiK&3O#d?J5KREOn7NpSD9*VzgpP4kkj7e ztWbob>z@^Q-t3P1BaV&6D0Z(h+(!22IBAof92K}tfE$=<9^XVHPOAKPzMljA2$qir~@bVT#*n@)>a z1^iRK(TZ%;Ad$r^>jZoB;)tg3{0^aAHFr!)s=g)&44Rg#ho+{wW;UPti0006Uy7~f z=d1bo#e5cXtHWw1n#4HUDflTnUwaSr+j;Ytc^?KHzQnK}%gxo!O=pEn+IQXZ!}Ieu zdCnGgboQnPF$3Kx?`&0@lFQWc+1o30EeAbX+@^o|*5ssV)*SHbQ}#P#SZD_LIaghe z6zMCFZ<}O7^_ufBwtKlgw>oXw|30aycj)GFRd;>Ec7XajJuAD-+x*#|w<(+98OD5P z>ds9dGiG=8aU=O-<}Q;kKk)%sACupDCR|*(z9_%g;+i;*$Pd?@o8*z~E>Di$R)2Ti z4j=ZeXR?+PAr1%I_J+mHQntepAvH|S))~9#5V4u+Kc?1x4%ft*yt+NvWlCqNHT@m_ zp@MxDF#(q`VX!<0e|1Jx^!2qv-fzvul>e;VvTPc#PdpwP5Jp&7xu&YEE0dv*?0xjv z){iIN`+4Npl-ZvCy@o^lmwxUNmw<}6cJuIbT{%X+2>zhD?t_cH+5T6X}vFqo(3(|$oQ7NuRAky47<%^o^%wRceZ9 z`1pvM&#tHSsPG z9wSrY=C-Qvakg)nW&AKM?yL8-ZH=B!ZD_-FwrjV4KTQ~BN}XKa9!%&eTM?(YWiKC5 zJ?`X>@k?`1PN+oLG*xBwRqkNQQ`2NH^ zfZ0FP)H*qIm*)}}Ev2cRH%aob<=r3kjN?ARk7m)n#c$}C(0kn4G(M6MW?(n0eR}vw zReJa6kE+{5z>0sX5W;~vTc-AXQWMFM?uU;CPu%^YS9>XTQ7VuFh)xXbS5n*5A*voR-!#VIH2JJ~$w4ehD%y zpz$GZ{TAt)T5OZAi<|qU(zAj2T)k5L>tmXkG4+k+1*UE7DRQ@!3d%U7+r@|1c|pQlqm|s~SNBu2@a+ejLXwpGRK|^y z(>m8Xai2NxqsHG`FlRZdHs=nPnM<zB{DW2sbtzFuU-qlQd@%fp9~qVI zq>}NIUZsH47uNlnPVO3#_F2gmHzVE#?r^y3+W=Prk{uwpS&vHb1#D57W6n#&3z;yT%3$GQ{v4Z(4CAFaO66Pr&Is=Ade z&25thY!OIzfBfvt$~?(iEonOY;|8sgD2R54F>*ygn_5(xkjj)Z_`z#hHdR|(c!2t{ zCnU7_I@)g|`yEvd|I$!!8q)bZEH4I@q!I4vv@NB{UT9B*y8h3%A!}D|69LOZPx~eU z9e&uZj!|ube`HpYLetelIKI4l`-!>JX6Gz?>Bu`i|62Q*3YULp$gVRd&U4YwrDczC z{S#3QS}x3f0+r=th!mrqVB>x+g|?k%+m_iftm6sK$)tO?!Fb31kPXB$kb5Sc{gWU2 z)&fogN}Y*|$4?F`(w&C*HhaD6uT3VoFa)mMyCvw-(K@QXqlHKjgb3e$Ea>%g^q$S^ zJW3h&=k;-JBRdKfH`d^hr9l*&d|@RcqhNiZnlUH-%LWw(2{z?C5k73z`>I=>Y<)6Z zmtJQGE4!xbv0wyat0Yc{AQm7iHgHOwhwp>yDPOsGhmyw)V~x91!b9J;heekR-tK7b zkq)XOGFC;5^Ccb9dSKFFyB|!CNc=UPZo1fKISqh5hbbD$W|u8yf2KsQm@AnNdhe&#xH8k2Ua}Q;)y= z5-&I*KT2a{ubwH2FACS4HgpV0qeA@Uy*ifonN1m$@y={{tj4_k*8Njt$5-CpJA%w` zKgug7d_Cr6^=?S+UJp_3qhT_~p zWIjnay=bpA7$ZPMPAi)~8}|GpP5ZYBBU*0U_e0o0*nSX%FHf!G%Tl$(1Zm#OZW|qy z2E9{*o*l8n(^nQEif`6jZzj>j32USM?;&9GHyq)qIix8q12@(zjoj-k@6poo}Zjb+}1L593R zlh*%SH)htf)90gUnLPU-2Z!H@A}!~UF9;cq~k3)6P5L`A5OlTxpCAy-P4g9+yzim zJin{#j^)%9A60<-?*E1Ae}C|0!Zip#W5nq4y~V3y;U7(~E~?&Rgr$)o{v@K^PQC+k zk~2(x={9<3@+g1DWAl@^$;IH(@33nQ&{GdCRoGzQMNxK`D^McGr~JwFN#XW0E|x^e z{U*(frsl?Dko^q45WZS{O8?4tD>)wn`KvE%LA5|~M)WsM*F)%??t@GMJWLEJRaGi>#5gG=j|cbnfkgs(f?k+vI=Hw$G+ zht^*RNl{q}Oj@fhKV@|071(6Q_p5OsQaLZs9%ACPBhU>TiqzXAh9CKgkuOl6HDg^( zXoT!Wp#;g_kLApeX$XjtQ`Mn*IKAGI5Z!Tc`F~OJPrYN+qP}nwr$(i zw`|+CZR7s?c0}La=bYWq{WL2oG9PBt%$y@fW{r_iyNi9Ljp^KAG}Uz}#fTqKfzr-+ z!77nxOEjtmtBu;YM=s#-%fDu|r9w5PTkk@xYd_XqjQG@KEFjN53nKj;zN=}a7|eKT zPqd2bd}ld0rK6ev=t5$)IaH_cE)!hyQ97}z)qZ==`>mepq1B7dg~>SR5+g=C_u_F{ zCl>AQHKGu3*bdyWvx3Z+`?-T0XRY%M+>&c`@w~PVbn~YYlZ^`VO+Usz`$c8BARBE7lEHD zct+^B(NBb--%*I3=fMokxx26){D3{PB*TB|VLEwOvxy(Tbn8baxa=K@aZj?EOUu6O zIjD0GH+%pHV!UR|*fG0`s6ur*u(`mu_&bNfv`^-bgDhyLZFp6Ba<@ej>^|u+ArzT4 zjhop7`$VPZE-=4W6`G3Ag|JgBB1YL$h4tGDl*7u9B3-@p2ug)KaUlkRILZ88a`T5H zee-8Rr8{o}UhNx-glfyq%9?!1lxl_K(Zi0oM(>B~g3-d{R%0WT8v2)x3Nk;7wfhC= zlQ|A?WCg=cmvly?h1m0~4#)3UEgcpoa;-g!Cc5>ZjD4KUi1W5N#kp=Kd$E73-+${K zPuGebnzr z0MjFd%XFpX@ z4-jjvl=3R#mlP%9>}!}nqj4K)U7`r}{vL46okI21+PEwlc?YK-dfXU}tK#El9zOcM zf&w0NB4W7Z8aXGB;kUteTN?zJ*{B*va7B)7THY`Jxln4Dq%jFT;Q~IFo_6Se)4Nl* zxOcyJTcY27Y{4Psaad73Mc)1tTm0<9RjG_Bwg-%e>n91dMQBS@ctbim%S33S>?5zZZvlBvFg>*QdO0u0 zB>;KkL6PuQV`GnY$Mh8=nL>C5@2LiA`bLaUtZiE57xQA?7=OA#furo$)Z3+N)Azw! zm|V+*p!?x*=Pw^tqO?k4m`Z}kmOS*3rN!}TxVw0=TzS;cMTAe_q(#qhTU8ac`le1O zF;|tUCIq3$SHG{;fDe7IPf~-*zx(&aOW8_U ziNEv8Jv^ujUw)YrqKZ2xQFe*btS`Binrtc6J>ELjvKKTzj_*R(T=^NuqSMcZG31Lo zAhq!t6*EZ*)*r3=GgiS8eBi`SgmteNhWtwBAlHh( z7>VU{TVqB&wv+){<`gmU0zvN@CvcaQN&LoCV>y-6;*(Fa-#w)wGeEN$i6~aTN*$9q$&JojHZm4?&z&)ye+KE&ifb+(By@0JH>}d#-_8ug~ErG6C?jM+HS2uA| z7x2Kfw$*#~1G_(`!$oCj)r7PpgH!v7P(M^5qXx_2FsU*F56sfn1yQI+Q%E?6E)#eE7tzvf-C^-}7qRb{PA6WE@ON=X=p8&NgZNYj1NfA*RVAS-QFxMVf>t)+UIH6fW|jM& zeReQI;qm5{jkH8l7^sA)e1AfB^=p-F`<4SOw*T5N-;M~oA%e)*7$DA2?WAO-*%eeN zXtjjRKxzBi=1Jd6riWMbQ`cD3~T&t-1zP{xIMMgfCJZhF3ixBQTJR6RJfnl*L?ck!Ck$%+%1lw6%;B6iv8B|bDdiNHleEHA9z9okw z_yh@_Yux@xC>@R)x3Anux#J`g%jieDU5jj)r|l01RnMVk9Md(9F4(}B7K=5Vygghi zU7D;*MtjdM`#~$9mY4#T^K8^{)yI}Noh6;J;8O2khw@WFu6)0DX zZ;=1qT|#Ld>pF)70PrLQ06_llabjv>>GEGea)V`Qza{qCi#qnw^CJ^ zjByVtEoQ|6$VeuBSR)CSj-!Pb_5Ie%4$fI3fiKY&JyK`TPjt4k*6mr$&Tp#7mLWI6 zbO@^Xkb(G~zo3KENW^4BLIF*g6flr25<&`4BO*5&3UP477g;h5SH2{|D=*TU2gFKZ zL6BfIi$OUoWoI!9H=&k7Qb0MOIS!rq)TIQJLBaxCE`XVFzk){D-^B#0SvQ7hq7uDKQT6s39*I zJPrL`Mo$|rY(FCcC(=Wu=$I1`^YA9HLmNq1vslgzrTzsPQXX|h!lXbNWLTgJHs082 zOhU6k6*C?YGhkwD=_GtAn>15@J1PF@>gr?U@f9M#l*AyFmq9j)Tyr{*$s%P*#ZJ&+ zrS645Y^Iw)ez5L#8&P@Hp%FN5k$)SnRcu=7R z3?z@ycIqQM27^h`V@CtkUXV0&0v(*B2tGy!o544rNihk+#;avJAtF|^OYJfX8Azj? zIti+i3>3m$EM)798M9`2X;iC5G5XSm2}4G&7b`*ixFkfGt*G5V$?*ji2pQDrSq#{l z%M64M!TvXvN^Q|Rr@nYnfCx)OIfhs?62x$&Ib`}278uF**$uM%g7qC#LB|%f&oJc z56KuAlI68<=i)H-z}7+rPRzp4lk?xR5oEtG7J&+QhaN!8!g$g2TpiyuU}SxSIl|jG zKCsFp57nsHa6?fEMwd<>T$t1;&xL`Fnw#keg~D#|Wq+^0W55)_1L5od4>Bz(g{3Ia zc{^t?sWJfz4x;;?NnnmeWp(?Q$@>-kS2JrepGf(*a6++Dr~LpF0@RY_RjdHH6Ay6| z;rcmhP0k)o+V6yYIW$U}ET1X%VPLL zx)?xHG=t|Y-N<_GY`%n*XE5bDMz zqgVzs7$!X^k-u5*utL3Hr}5+Kqmk$1)*^r3_si*ZiBvTJvq)F_G;~?JhJR`_$OShe zl+oI7Ee4N@WJ?j_tqS*prL`o@Di7!e5(@N&3dKDfvV64C+LU-RD9J~U6nu$g>Bn|H zISx#qiZ#_&a|+pXjd)DeIM*mGS>fVXEVHgR)hOR(~XE)$~ei= zQ)Xie$1aV$9B$WpVivvzT53brFtt?6{CS3uS879&Qh1-*O}u0t^`|%T^YC!)th+gY zS>br>t@xHpJ4=^f1N$0_{j5NyJy84+vS z{NhGsYd?FH<+)TB4FCOq?u@#|3n6h(TsnD7EaPHb%qEP=-UQECOhNR?0}Wp8HOlLw zF~$PsZ)E)60@H5L2kIzqHdiM&Ua6g$eS9 zn%O61CfD--Z8WP^OJn`OzutZn@uw7Q7VV9yAi6_ny(`Q1V?##d5oC+syJls5j??m){)~oY_Py*mLs+n_#Mvo;kW-@D9Jr=n=P z|0X7lOgvgTzSYay6z~5we(ol3t8(A>r0?rv-E_#U#G&m*hgIhAMe58{Hm%Hw&-=dyaE>aGGLH-cHX8Z8DM>M+~vmOkF%K(2bFuVWRHNAGB~zh z%^j{^g{dmdD+oIX*D~r4yg6`M!(r)BHWzR*54#7(8{3?&IT4+z$d3MX(n)|0(Bb7N zWBUQBwVVd}J&spyV2Z!S62Zfx%9f2R31=``PB(&ek*_1+7+cn>MrEIA{R9`|u1mRtuWJ+lcNX>r zA7B&$S69XapH{id#{|W5G;9h%pbWZ*GQ!`!z+jrIxrX8<3xNs;9smFciYW7*Q4uH~ zcEmwUL+c4lZoRXid5^l#E!KfFvg5HMN zJ6tLZGdfz+_DYDf(VBC$RL514 zuk^Mr_ukE9=bpFQyJc{V1!i9{=K^`*6&a~)DchRw7*%>#0%2T?7M7-Jt{&~ob*;I+ z@b18cUG(v1YcXB|Hp~7a+O0GJt)eX@U%_5FBTu>^tZ&;p{Y|q_Qz-`u? z#pBq;FFIj$4%+^R0-yOE%_*HRD_XcU>0H}*Dp+|a2j%dDR>#9r!X2$f7l^(uGw8fecVNp%!gDr3WK^c!s#HJtIa2f;^~Wn3ykd)o65aby?FtUjzDN zDkiR2BVfqEPW=f+#XpSBtW0%XIjf{GYJ~@I^UIIF6Z7@cz4$@*&&kJ|xdSg&oV{KB zXDZRzDZ#SdpZ9W)(;vsghyDF*Yn;<|eHYH}x&9V>ZK&{xoR|O4$IZ*n?e*jMy2h|I z(h%96S0~Cj7(9ue&eKw_mn?Oa4`aCvGK4b8QB2De5C^Pq%BUiq8Ns1iI% zO0d}{=sDA0bJ*P~k0CTV%pj`O6Nl16Q3)e$#u9JDRmIp)#vD zALCetHMmAhnj;bQibp~wcO;MIFpcpKUxI+!4)^M0V| zCxM%rz2eI`qBucWIhk~_Q(d-g-n(vftKIIGsBq25RHmJ?Ayy-+FXIU3FHS@{At0{5 zLoIP5ccfI=;Ui(XL-`gE++m+g^-3S4Y1X0ZDV(@u|9~9pPXX~BX+j@irPF=W(~@(Y z6?}fj;&(&i6*&A7d8J2ubIo%KS>O@e)LU@tovq{>emt7|d#Y2M)H#Z7aO>Sr>1J4n zGp=VnRboR607deIBn&vca@Bp{8YJld+1wF#4EGc@^u()A z=ep)n!S)#uWsR1pX_|OZjJ+mteZXCI8=HUHT|Sqg+UGHwKmh-$L%Ooch^YmcPiWWkTfp|g0F&S<*UbV=h>V38(qIu;bePeBRNfj#`lVLxt~Eyvks%Nea#NO1j|CnzAQ+yoQyj$F0@8FM*)V8( z+|zfTJ8z)Hhx7zjO>}+sSz3Ct5c}{po*o*9{f;f>H6?};GYl8U7T0H2X+;Xnl^VZc zX!*h0YdcWsiD&y&V)OAPh``x(_3bUR`3C#jysyXJ>;Zf;=3v#`g7zZzxdd0g~uuBj`gsKEewXB3o}Fje=v!F zkGYzvHXCZtQg5fN_VV7X$=BV{W1W+)yfj|J12 zr?C5XG@3Sc;&7+47l_Y?mafC&@Stao66WA%8qOOxcW%bgiR^R^;y0ZSQi{7oOW%-d zMJ7p3fcbV52+se;;R4VZdRn(9EZNx@4pJO3cb|IR5Aj_WU81`s3iG>sAY2)1$bbWT zzEe)faosI0u69#u7aJ!(lNHKCzC&Uw6JxUV!+h%44DS8lvD#mmgY zEo2y2I5OVOi{rH6fe_>QxbBv7?1CX8e`wA`42)BVo)8dDNV##W>wSFUA{#ak>cbbE z&xYAIgs)3}OJ1WU*yBhvI^clfe8!ZQ00#c5ER^*v21J8oFmAAl`jD9!O{Zj#aW(4%&@2oI&U=HCmQd7@ltb2R@ur0Ukpkd8=e(24@?6# z@Vz|CO-Nk1$d{yKsZ%D5fOCQxu@W??OO-~JBMf`|!$YK7j+^mvBYt=Z*pX+jQ88dF zgoR8~lJ3lc_T*NIpV0GM&~HsfZy8R>bG*nO$@yIL#npHh!Jiogt}L`;LE0)68GHG7 z{Q?(&kAB3ojHufZh$TevMS&sbqE8+26DEm}-4q%;L1t%}XJ<(bc}j^Lk_{@j5_-i` z4l9Dxb@U^CS!`&;FLC3?@%!(0jH!) zpqTKbnNWcpXrBXAZ^28WWoj0iud;);;Eue@aehZEh;7b$W^TvEcug7D6C$aBPNB$6 z{5U+`rTh4M+{&<@{?dE987}Ra?%?j8YN+>0L_Dt2qIl78UYFDMI3f(rzV|8P;G3k| zo=i~vnJ8?=TbhIG0ShniPP~Ubg?1;(6Gd~ryNCk$fYc8GxY&%y=W;%*N_>|DUYrx?2L zu=PuXPt2Hf$v29@l=a^7{zW;UZnyBHynQ6oFgLrz#|iD@JYP$~;}oDSkEX}3#I!0+ zf>oFB=p$(CKi>J!=gr7xx>kA?HtdHmE+O&Gwt94Lp!GR9EZ~x$TP09XE=fU+x44M< z`chYR<)>APYc-wPV;dBXe~A=(E+e6QLYBoY@)#G|2Z(p`;g>{wdQ|X{Wq7U!2l5tD ztg*{{^=p$r@v(UG|@N3n7E~ zF{ddHvmMl8b-u*o6X#^mY)3TGJ3Lq)7Qj4iaLxx&Lg}sc-80Xc#W?gT+$_xx#%K&n zJZ}ZTkSj@ohqY9a^=2RHQP%hAl!Fg@T$&{Rza_#?C3>7o-efo>`OI76w=J z9K8Z1pa-H|O8MRtMAFEeNVIhG#tor_F%M#Di0DnLA7QSE5&K!;bi~ks*~58PN%N(f zS9+Ui4fpma&oT#7&A35zge}s3tk0plz;g; z$KS#nO%5Nxy6d}z(+lX90xNJKl(<+V{E61`Ni7~kI(bq78t^bse!Y$1r+8Pujz4nc z)C<5Pzlm|Md9LX6WL|p$${wrUhfeb4)jKkA$hsl><~xK@K?L706atU~t%=d{T%Xdc z2Mt6V+dyz{i9=EQ4$=-96C5opBw=2pDa>NEx@ zTkK76I90NglG4<^Jr$P1W>IjVqTu;4&rdak8<%*Z7i+^gucH)hxkeh+kk@`-Uk?D< z`8?VvW@S|+lF#}4~q)qUf1I}EQT%{cw9%#roh(mMDY3S?j(xd(+N08Mo z%ur3}O3y}g zsT5b?L<6^G#|p=646+&=?hMUaDMdz_sf5anj&IF%=1OkuM#OhMoQ_&TIjk_6Z>w2+ zmX<4UX-JKZX@RTE^ICAr&8yE66(R^Nc-TLOTIIQ}^OC@}@u$2$%WHf|k%AkK7o>2~ z&4pwjKrYySeJ5;|SF17pI;Kiw)Tx=|>LPx#Vegd;YP%DIs$PdK%Q!V4JybC%%mry} z+0BO-*7k}ZFD_EuzPULYE9F$BF%^`NCBoPkXnM)U-I~`cfGcN%mF^+RcQYKVsM+>T za=y9ML$#vKe(bp~$~b(HGvdt6QizBl{ksW2d1d1$;l{koT+rtIr>y@9J+zh3+XLaq zMkz6w%!^)YE_*Y6O53YBGOXxX6_|3Cbg!#`Gf`-&JQJ`FL@%9Gh?NtrlzIxL)}Wu9 zd>BqIL(eohKj{;RK?}5i1i=)etN(d?FsN3GeO5%Z%EyQ~%Mi94WS8^T0z0(p7X)j$ z3J7MewQd5|KUGpK5>*>bzDn+j9#$<#clXoQCR+ zk*0Q4U^qsQk1zdFrh=LO=ijW-)a&rJvv=P)19S?k_PK>d)Bsr3zp`ZkXDYw|EFxvd*44DIu;kz8aZ8cg9 zA9l%*PJY1G0K(`JI0wc-@s;OwT(jbE7qNWds=$ohrTW;+6?Iu|>qhLVm8H4*&6@!3 z8?Z;z6hX)dTv#6Te0+-^x_p4=K)?!9Tw!e4n*5czEe3G)YW-}@l(d>{TgK>Y>#FKb z2j7a;^>?T1Zg-2yC>Or9n)d>|_>FHmR?E}1=Jt%F`EX^F$W#Nuz zgSStf7LOQWh+RECb6eNbX8`NG z?!2;Ns#3)3cS`J=!kI}P1jr>K_2@}`>6bk*o}3gE^}(c}DU;LElL;cG{dCM)B6Jp| zt)JyTkg%!ad=DtKd?m7IeMK+u^jvBG6D(J8Kk&fGKFXTfh7kBr(yI!nsW)&pgm5V7 z0MxL6>}z`!-l-o*=JCHCBW3HIn&7MWOPU28Vg*|Z`1QT?mdCGLQs`p@0#7UXoZRe{ z=LH%u)6da$ICG5;;$)#9L180if5u^x)U=br346?&FVT{VNng*j)2}bhNZH1cva9dQ zCRINJ6jg*-2hcRT+#2mimF+27yIrU{UowF9V~ zN&%(I0B`;R^$I6O%vn%LJLX2iX+cFH$5E`Z<7Ya zr)>U7<_GxH5Tfbll%`sVUpCckIwd*L=m!nMw}n%pHbFb9w%ih)VE(Co8lD?o&4^fk zTT~}JI1uMaHn82Bf3`&P3r^89e;?nBu;V8uB_`M7g-uy?&s|4xnOENrXZew2+(l5K z*!X_o%gnzDTEOPB&SmTeCVnL*Vnq!qvewTGNt(-=;n@zu>B^{?-d0u8-F~`Rm1k6T z0#s+o6aO*FpAJd)iq$t+kRC} z7x+tPs*{x63|InZ>^ZR4krf8G5#YQOIF0s^!{dPs9xg{nGVI5Eq^$^3kHv}Ls7XA`^xu?GeT0-uRu-CZ@nbKf^oBEz~Xq1b!)&b(r&he zUjepCe~d1TNCp<3Z~J(ZpDb-n%f?aR&5IOfPW-kdGB{7&B5fNfh4nylu9-lVO~8#l z+L-J(h#gu`5gDXQQDgh}Co$ojET*82Qx6CGIN6f0w>XBhN0!_X2;U#! z8_A+>(V4)PlC+=RTK=8a z3N)GG@5xHQIO-11^MITdp&aJ_nViJ*!Bf7T3I$KalNHi2l^4|&i?iQ8H>-3sB*)=C zxH`Qr95M)G?fw#v*_+;;tfx>1$?|vqX}VFE*B_q3PpHI|*XAEqDs)8B?w?_sURR9! zIf>jjDf;|!)}t>q3GL~hpZtTDRx|5-gC-=i7L<|7hV~^K3#a0<5Ud{;oa%y(eE}C< zjY`RfhQ?@WgC^c^%9vo0>B1=MK`FDSOB@=m_nj=YS#5;5Bz>?SfF5=|8mEsUtpvBP z#g|tbNzq4EhvM`GRNq67)X^gM+bvxj(>=+dx-c|l`=ViivMhpbB!g~1b52`FN^6J~ z(qDXnu{8|+{3#DUeBKIqAttKhaenv(@)>QtrYLF{ASWjMIn4qka0axfcKTL`vVF3`(mjt;yi{`@1Ft*zUmtHKMIUSqg+17DRz~ zw3geamypryZu4gjrV&Ea`$jXnmrz;O2SoeVfGPeuIq^o{s(*dQ08>D$zot9$slR!P zVRYJGo58{N zyB@mt5BtB9WEv$uCA;7N0F(dOqWGUkG80Qf8+&tC)Bg{8tOvu|{gCao-r@r&(@Tbn zc}Ff;PTo`)A{oFkV4}fx4sQ%?KgQ-?8;;c3{odOyH9vvC;tu>2=lJ7_FTabauPsj$ z3$*GshqpB=Q)+qdIF@-In@v}4sUJ54ZzbBl2K=VcJ2m20qGp^3PmJiWm5hNtk)TSr z*5UGcBU&R^X8Sr(F1;#M&OR96VU5f&E_iNM&%@F%syQf}o{+Nujxq=>D0+lS?Z!U! zflfbYCHuzvTglKd2I!gTaM8p;5~Vm_Qy&>>WE?YwZQnZ$-q|k@P%wtyAmKa6+rh$*#Q{fKz274AlSOHvBlgo$*&}?4 z6e+gotGFj?5b?N`GafOcbbeGmhC#psJTqP`aG-)*?LG&-&I(2TWIc&1zcYjq z`1M=Z>CW83M*MKb#}0;R`2p6J=Mho2B!=C@{M!V@ZO^LtR7D7!uX?S6c!(0isD49# z@TDIaDjk*A4qTS~Fdw7soqA9VQeBoz3bA}eW+u7BcqMl;&m3=v3!?61!tUsM?&9`9 z{ThT_VGb~O5Zzv334YL5gMJ7C{5|4hC_>=ny0Q8`!EpdW4DtY&iOS;T9#(|o_^Mq5 zT6qf@$DGGtF|k<~$|E988pYGeN^b&CUCW%_qgX*ia(vp)kgM_(Py)22{eeo{2*(5J z$>8B14d#iQ&2rTMV96BY!E^Oe#=`Z-p-~!~DRS%1?H-VM(xhicu|qQ41ZKR0tCPH< z$Bd#iddkm+Qj2<(Wl=nIjw{tiOAiOG0=;9LWpgeMnef;u_tY)==L)xM*)+q^(?S%O zym=iKWoI@8Du8k8wq-6(>vm$VcGXUcKeYA>{X+s*Dv+sVo%#ay+{V_)%)1d9R6&R? zKaYHCfu-r_;5I2tmkftqGBki`<8xIRdeGoBBvT3;eXk+Pt4NKKJQMbh9vELYT%o-Q zkS77z5EE&{2JayVNjimS$3oC9h5n7D`8HZIAq{!Wh0%>IC5eFrBPvolTKVEfN@Yl- zyns<_GG5)KP4JrfSQrfqpK2_II`q1@aETX zd%KSZCT?)+UX=!_JWxZ_F-Vv|)(uoIMm=CBu|PZ8Z%7s$OMSQUW(L4r=kj4Y4;i{K zc9`bu-)@WUly_{K^#0sN1P*&+ZYfxp-j~`d4djwJ7-J=(szmi z3BHJYL4J5os!e{Je#4-0a1TK?v^bDeFK0Arn?{%w@5YJl)hm;F!3V4!G18T4m>|KHqR$9vQFYS@ z5XAT{{RIGnXjckGIE2fU5+!HR{bEu@znD#&;XM8LGJiK`nQDpjO1inwuzH6d`rV=H zW6V?MT`W2@tj6|oeLv*b9vA3rC``b%elh!`zyB%(^+owHvjz#r9|O7)icy?*^hg%< zE+w)uwso4v+B0ZU*2WUU`^|R00*mBsj`?PKH#`wJISh)@L7mg^#J#hW&F|LUd zKK|7=`oPp^0edUc8|jZJU_BTOozG8^v7{wxg*q0fy((rM2EcHqRGiW;q)FLpxK^0e zk)QB(KHF@)$&%d9%rdz<&{H15z%t zUvu`Wmgi~GCP%a;xTF1wYRi=w(!VVB7sY}gDz=%k!9bLyOZzH8+GS4^r>|b~EgzK5 zYm|o9ZaS*jHi`;Sz-v4#&9h(E$|D?kWGtsttW@9E{vf^SoeDSXMJz*?2QPlyluCYRuKC7dj+_N>wjbN^S!idq-yJ8 zuCD?ra_zu#@28xGW1#A%nv+3+BTT;?DSCZ^@ODbYaWlu0 z%W-r1Z`iV(xKwLWTnMeu47(M;heI1f!iMsNz!RxZ()O^X7V6(3as-+Q_hU$51MT|< zGK1$ysu_xj6Z6o~HpY*vG!jn7K~=itdNYoZ$*Ss?h3el;&eyx-jb{30AaAOys`Y69 z9!ZAcwyvfi=|Q%{sZT8Fla`wbIXnIG{00Kt?(((d9W`*ab!>p!W4LHL%KY)_E8@TN zzeAmT!|MO2r~T5K2CMUM_tufv&BEisHGC}8{k5p0-&Az6RolhdSY>S0UTlOJAFV9L zNqJ+8)GA+js(K5hf93Z0Cs0~N`1a($)O9I|1hjc>q+G_Fz;+ZtW&3ALHKrXZdjBKvJ-66=NG$0?2z8 zvO+h8ve~Do(=IJ`QmmSsR?;GtJTC{?!~)ozZTT1&z$Q|1*lp7f?yDlZ76VNvLljqV zzJfl#-J2E^U$6C-J_R)in@Yd+6E7wFpZ-RU1R0sMf|GTiEj{AsrB2f$}0W}q}7rMq}+jc+GZ#nmEBlcQ%%_wmO#jRe!X{edXin3?nxvq_Z&`ZIj_5- zDH;(B^nkkibpF5=Ei(ESRehm|-P}oNA<&0!5NkDf$NRPpq6zxfkqOM#XP@yg84tWO z%HbI|Z*35E4?ytMx6P{b`uvMWaEWr-4@`-%&+NVbc>o3Ze?L`cC*%KR{DfPk|3?QB z06>}a|M(gFm&5;)&vnB^!vQ53&DTz(X7Klbc5{c-n&@PPR z?PnQ%Z5<=&t^R)FHUEZM4e%W#O@$6bC`%{9{x^jjK$N0>1Un6FKg(Axn^8YO8Ex8mlj z(V3PZ8WJ!kGvK8|5m|lHRopz+QSx;6E9%c9_&I+SPv5n+Hs6IM2p*QZ(Bbdq zyns1yZ^qKyd5Z~Z{`Sa7m=q`k6?bgj>k&hKC_I2L?7(S1gql^&R z#zeDeK0vvil6nf%E}&#cutS=$oo+-X^IQ~2ZTWCFA@#YRzod}_vPB7EZwSFidd>J0 zH}lcf;3Zx4Wz?GhV88eMNDY(W51zga$1u%D^AP>yoy1nw#iJ^XAB6(^$$-UcDA$l!DabIHeCH@>cPc_wfp>aRN`P} zB3fa#GyUim!qLwYbGG8|f_cHS3xB%dPyFq$)1MP#Kg)ge>#YyB$JgKGc`LiPn0F=# zyY2j+S3D*~VP?j-dkPR(C!J)I21s_^_2^uT_JIZ$FP}%*R+NQk*fOyRrfk%BNMeIS zC=$!`{M*AGLf`E6hx|}$%<`U zRf7ph>ru{q+Id;7imxP8lwsHOC8_>%ER=X1;nvCS1O_{@9eCJ@5#)@G)Jq%WUT`qf zqy+=;3_GmK!#w*w``eyKy3l4fR2CmHa5iS8AZ)Q{YHR3@hb0{a%`_p1CY@ zd<>b%?M4qEZ0a&zEpNv=VLd7p=JV(Z!{3^`rTIu`7&!J`M3ujhvb`=b`) z1{>39#8s%CX3PNrdrM|znWRK_K3w00hM`URTuBc$-gi9KvTKT8eoD<}lSrE0Rz>=?)qi zH(XoxdvPZ>d~)rl9Q=S&vfBAVV@(GOxYe;5@-=T>p#pu4N}Kc<&RCIh%7m@x)DYt` zMQuxa9cm?|(7za|WlbBo9-3nbub$u^k{Zg_;L-#SwnUa+RH5Rk$pW}Dx*10gEW5oKSP8p)`3olH zc#K!vZQwBLsLfMKCb{sPjD=60JRKBDo3~nBT7rfY9WmmwLdyAypp#6Er32O!Vs~^p z%k$2mS#k}vVBPVr-lf$AQu>DUBB?LI$s-O*Y%TSCuR>yjoV_!!eq9AR}* z0bbWH%OY9@9+=+t7f+>Khf<8bV|pW|(@lr07Y!gOy4G%9P+EMx=9w$g^KRJ&`(&jI zfUIt2#IJMUE1C^F$3u0OX(@ZpTr)SxzWqgB4HosGcu>7VVZ?ZLlh8 zSF%WN>MOY~_#9|_hPP9LK;}HGd^t~;(6*I#S+vq+36FvVc^t1;fUgW=dOZ2uTWCZD zMp?A5VV}axM6xhe4J){fjkXY}WEWg>S%w70f4{(Ip=%FYLmXC5(9y|EDHSlLNkt-G z1qoEkt9PNK=$7)g2a=rGR)>I&7Yn5?tuZ#+GLY8bsN^4{-VzH+5%1oRxni2ZvjBd- zn9n)emSH{$s79i)N(V_0o4afs=!-hXx^-5-$)G;@yFS|$bWrEJt7AYbuct37TC0W# zd$~Nx(N-he6+SW;s1QAVV1-E8WwY=UO_s??9+cxU&qtw zu1cW@H=ziY;HZZB1cvL|nPZR&0CIV1Bd1GMi*a~*5`I+DwTo7&(MYw$GLwpAt`w%` zp+Lu+acrGw`B+v7dJ2b=cdxHC==^17CKI1tcb$#JZr=%?ic(h_DR|hiSwyS`PKNK# z)U|r|`Cc2lHq@$t2_UAVDk^ZQlGL$yS%TD;+MPFH78?;C@7;s#ez$vFmkV>9JiX@q z-w4;Mr+_;YoH^PjYho9%Iy0pHbVaJ$#<`5#y?LEy?FbJ3q~}KSp`L@JDr0ojpW}s5 z(RXyB{TI^`eLt9FL6`bd$PN=HgRMAi$79**w<_NZ>Sj+mbhxmHHGwo4z4GFCnH_PxCAYp3e^eh4XG00oE?2MP_CffRmOgnz?F_4ekju)t|c=pHsQ|-a+Nj0!1Ykd@E!-PGeE+` zfFW%alamrBk`qA_#|oGkcgkb{;<;|zh-F_1B;3qwgNfhgpMMa2Mj;{;UUXy<;`Rgt zb2P!YxSz3djN#$`EeMEF=M#V}+dn9o+X_gUi=9#2_zYujjZNLpW-&xSd$8^d%w^t# z?Bot8)e&pefc{R_i(zuAsGO@zLm8;(QmO()1`#?^qG0=9dVrhQJA6E`1>XE&^*aOq zd0@Fqte0lVImV%;13Nbd#pup6%+|vyi0T@JFqcQbEPssA{r}SgwCQPmp#z!hi?^a?cF^U(l32~C| zfrxPFcgtZ1LzFgG!aJu5IaQ|%l<8vA{ChK0wKCNNTdKKlEu(V9_JhHSy?<^2EWclg z;33yq*KFhRyAeW{aTJKE`HGBcC%FA6+UhGFETi+9BfoI#*TmH0TG`G!h7ngf9OFrNpj`iX89G;6L?p zFqPpjC>9er-SA?byo5>zweejIE14*o)42K$l7|h;cBnkFMyYcdQ`H@T^CJ0D#aGA> zn=$Z|kVTM9Hy|ng5A)-Xm9uo(NEd8Og(#PE8fS(;XRohF%exCCQ9)x!CEbBCB}-uz zu+R8-Ya!oufFXN1EA#A8v|n3N^nMS3xbz0Fe@=@UB}AQRnPDsf3@@cb(pJVfR3H~| z#Zs4T-pGRb?;&`E3oC7K*p{DOBSALWiVh*XNa41m4f}KN9|LwnG;DcZid*jXE1Bhu zY=^CV&_wvki3K@`3Z6RlaE(G$Gn#=j3f+_IK`D3a3+BtG>Phk0;@E_>5JmKWmJ}Jv z6OnipuHNAxP*yiwhrrQk8?%op5$fn@^vUQsN5QBaYxOAS(Iekh9@q>UOKy&0AA38L z-x`#-XqtskBJYT>N4v)Nm-X}jj841JIN6-nR25d3v1YqmW?_W+?(yBt^O_r|^F1Pa~ zSG}L_jH={W>j@~Ii?%H4H@ZsJvJTm6!JrJDO+<}f!sWsz*Bh$F`&_gYT31uBe+zQXbijR|ZEw@k zTf`EanA&yMki!zF_2{)nbbf;BbBzXX+$Jj|_deX0d%Dy)iSv)G5M}3Tz>gXjsMo#C zJlb~`%87(^c%MF9SMO4-Y+IHNkAI;5b3u&o-!rJqe`?zQFZVZ){}0xtcK?fT>+_eS zf(aY|z!EC}0O9}H;s4qCuS>)$Sl0I2Y>!?3p!_HfTh6N&!0O90r7xs%#{G^k-b*YT z_&{2Rb?XvEQc8MvxSxCWW)e~*cz!HB>InVRPG%f9aAzZ)kG{$*++SZdni4~5O(-zG zY&zOyYSU;zrnQY#lOQoFRQ7-dr7Yg1DscSxjf0z~2L63TccF_{z6D_*ydX*|LJY-f zZbPjc2HGo4F>5l>I#|^ws@8zhOnPTu0+?ut)wD_hjcv1`WNbC_sgOKB9-m=96jp_v z6SJGuN@mw0W<_j4j{A7xGK5ZUqAmzWppOm*o(A+N2&ZaQUh$BSPg%Oqw)@$>sH^uN zZyAdc$I5nz&NC{(9{GS>+G#;n#e0ctPSZv5d*huO*9*+2DOOQZQH^o z0A}{_>Gb-2noUDX?${0&O5j9iko7 zT=)nEbTsLuklKFW;#L7&Oy;0{Xbvrz32Xh>=9yM)?)cb92c=bOEwc1N23H;kE|6q5Pf>shh9p_=m2pT{46|Q z0T}o2X1i|zEYaHYPP!VSy*}R~>er}i`0JGvuoY9uP<)s8-Jj-FUQ!f!^duYutVlE? zlehKRPKxVQE=io+hHLrJslCViRS;{x`Ph7JN=hkQ>=BcrEMrvp5X<`rn2 zLdnmUf#3@Ry=h=|S*tUI!;0xOV`fv79f@l-NTgo{>>|w<1YpV^0RsAxGR?5fvTV7Q ztcYuBLeToS5}Y5bsR!g5rB-PlLEF~@XNY>~MK(CDi?M2fG0@wc3ka**jJkoYj;5&# zt_fx3{pK{m;Ig((9f)dxL`8rVt6s8fAR=N|GSxydQ=Nv}b7>FM4ZH!S^#^c)?m|>B*Kv~zZ+o{#f@1-V0y+0`lZ`>sTJeEqCAZ`hNF;WK*Q}HMSxQUgUXbdE^Wo0{pYaO zgaWp%9-nTVp~zNh7`W?tFv8A(Y7u6QCxZ?MlFwBahKJW8Y@x;#6GRKLvGPH=LC+la z`y;8u!V@R}x3mc^Xm>WA(4!$&vzl~;84~S?Vd4gq`z0d|#18oD;6I2(EdZxM%>yuX9p^g2^i_i>HL1RT$ouft)uJ5C^@WgsgiA1U@Av7;BPH6UG&gpclmi52X^W zDq{l$uEL%XffEJ%qzte#w+3zRXn%45BZnOpBBpUG3|P>c+8sLL*H3PbrgYUH^}Gi( zpqvcpTOTjjn%2(A!A!Hlur%-4zpeVea*?g7nd&}RPEdM1DUz` zp`j=VBk7JRD^}oG%&UXAqq{rIHh?F*{?TPG1eMnCKTmfykR3YUY{5v>wj!X^BmPQz zLRVPU`vnrr3Cc10_LGe;5_wirDU6)_3jOLPb?;gJfph+Q3!Fuih=2IEk2Pnc_U!+x z2-ciUqSxG?c)_V>n1cBMmTzZxj{Vr)QiOsJ!HFCB;Z#Nik@dk!V9eERAa7u*TA$y0 z(g_9!mv{XI=yp(~)lP=7JhkIK*pKNA8$bcR+P>}sx0XMpWjY;aTOxdAj0 zWxqk+>jiquOBYJRD!LLIWP=vuWWoZ=KmieKNvuf02u_VUc!*8~8}3L3dD5T;+a5ot zlJuT+IopF!9z-TGp#nKduL5!LMlx)`%8ua{WI#MA_B#Z=kN$3L^M^}O_1Y2W*z97$sW`$_)P`|W)V zh7l*gwKktT!6M~<%Zr3-rA9$~$t%G^QHQRwdNMuGt<%c|8E}sJ&;vo;@p!68x3;+0 zPTNo1WuGtyiz7frt>@KE={EZCrPn>n%%jMu_vgTz~`yRdlwPi*lmdRy{+kSuWqGdBF zVgR*x2+A_G2R~Q5-%G`X2*a5hjP`H;6+iNOyJ@96XNYl0Lb&Ip2cVm#5f4!*&j-4J z>8iVy$X4toR$XJ7CNL>}!wa9V$K3())J=!mw>5W98ip_d;J1;Evd^7y6&0_y zerhoDa~1F}saUg)jkSu0iitu9dT@ix`)2OaMZtRrvl@jj@XfxwrL1Ejq+m?FDUSU) z3<5~oI3;p1yprJ8P_$l6F|co|%x$YiwR7q>FIJDk8uXS5d%tIDB8+<(qi#XRE8H8c7YV`{*{tX8*OP<)$cf8bJ}$JD(sdH?%s+ShzgRJ4=y`PB+RDc6#AHNOC4YH#*F~ZjhH$!U(`#zjDkoD2> zU>^oVpQ^|=dp6k{1ZY?PsdC=UoK*PX~o-BWqI z#sG=UM_4GpLYfkGu@EAtYgXX;KIn&TopB+>RW7?U0TR7q`)BE-&fe7uE1?Z?l|49= zg)i8X+YYR>FtD4zY#i)H`pk|Y^a@*VpDy6=1rd!^BU8-470?76lc{X9P#GGne9&Fy zpuGd#W;+@+OWQLI(%5cJyP}*y4sVV!6VE&zaX&_X8S(VzNgVj0v|i$%egG!NUX2P_ za6YlC5mG}{7;G)Bf9M`yXa_C0uH@>7kc3}w+|Vr`8;{da_M{3-g_;^}adslo;zn_N zxQ&3AW5lsN0MTvz%7xJ8_}nb8_{mF+A|Z#mXE8_8$@ETTVifbPHdM^5LPTq?PP$A1 zJLct^j()!xKFyEJus1uzpMTtsvT#JxXxaF+Bq{x8Sm64f4GBu#go^QQjw$Wx_!RAK z^Q|c-M&`(D+}hEn)7tBexs&K%Aakwbomi?wp+EQ>GILD4n-}O?ue?!~8t_tO0u4L< z_*Lv@i5^g;l1F}o^>kUa;KC<@--Wo?hB}NCXdIo2uiHvt1%naaIgeP$6cTUpW8<+Lx9Nz~8u$G&Zey|IWNVKNOe9W|QzHfLNb`r#wOTKLb;>R%@%8a&$eLMq)UC`5h4$ z_W8z8QQdpybE`=9?6P8h*^;6^ZqtaJ)lUX>Gm-xZOo}4oRBMCwu4v+UUDG zVO12Au``uSVC)dz+x$r`YV9f;jz$BOjaE{BF}^!3EKA=nm>jAe?;~%HP7*7dNUYwg z5;QSNc(lA*E?kF0 zk<@DQTc95BMne?j=Vi(=$Y=%WtA)d3n~v$Xv-g=e8@913LvU3b4ANW`e7B6((POHi z&%^KkS@3^R9)IZn_YyVqk{SOC2mnAC^ncSNa58nU|9_RG|F-}f2f}{|z&RuK%k4|t zoYu+qxNem&CUAt&7GtA?3P=-2YDX<6rGWPR{HB~>c=y*4_7`zH&G3UizOI#7i8;zh zlH#H&F&^|Gt|n8CtIKF!byqTvrf(k8!ax~cOl08Huc>(Mbw?j{>Wh!2F`&r1OHW?uZDopetOOW#%~gqVlc6;xT3t4PIr?my$irig zoJFsHzU9-CN1vSj#_*atKzH{Mk>pxTGCn>IbpwyE8{Vhw?-wxjy>#f9*e$@fL!WfA zVI82a#I%I-+h+?%l(Jx&f2trfu7y$(o1YZiy=A!ESr;v}^V(b%cT1NiTCC{f z%34J2)lWd_){?$0i2!=c0(P{Oj?2U?u4`Jb{3CjPl_OpNqTo+*Z?Uv+w;r1KbOTpj z43kVh&tob@f+)c)rfr3+vHRReoKu5*X-wRdKLE=Qe=fP6 z-(qsYkkHPG_Ic#c&!jx(l}`8s@SWZXQgAppW?Eb{xpt}XwL*MjKPd7X3@yilrTJT& znxQCHThRIb%E*!9S?!b?A(lGHY;w(NERbH!_%y`?* z!#5Q#|09}lSC3@!dxVt25BT31cb^w`GX;780O`p8Em~wGg+=9*Md@r!Ms&5Ew?>ov z^7R7`qf4nY;*y<{cpa%!TV%$ziKVq9+v4}oNWzF#3HnDwS>D#{{daiL14@!M(`9c~ z8%Yex%FFNANhS{b{dN4Melv9EZp+jsZpz!$pQb{7{oQ=|nI|6p__oSuFR4B#W&OUz zAMboklkxrE573R1ro6iBqsCm*b9D2b=#$@KTPJ*bF5NVZliytRPc+5t%O|?E^ho+@ zyX?NMs@1FATou{l>;2d#t|!>Ove0NZO{}wJ7hKuoJGnF$FD2DZB=uT!m1#a_$)2x+ zR=4)!Lv3Z1>XYnb?bAjU)oNuQy*BJ^R!Sjx^J&&JUo=$WB^L}os&12NXs&W+=%*`> z9{t;6XV{__4=cl4QEN6P*)%h^U!gZ?|1IKL?$Bs1G%AO6v{cUuH&xVE>+ zKGs$|q7~d-o@#p^ur0J}b*I@}wn@izciA?Xs?$Ki`Ed^DJ8z-Ir_R6{)=u><9Cg{` zUtjea_CI<7`?OiNBNdMz9o7gXkl4S0_^z;OZk3jOEg_?;npf-GUNp{S#rU-y;m!=i zh4|NqK>BJ^_3DYvnmg!x7H@%5*k@I+XH}O+~1eHBhRj_r`lr8vl+@c z<^>JTv=uTh|X8%V1YqrN~P#HQ)ET_|;o0nbd@ZgD%W|ZD?8O9Fjb(4-! zp^0ibcfgD~EpA6KrW|=4fkKfG$w#M7IIa)BLezN2g~LS#(g>Lw&+wGD-niQ^(_ZYH z6P$mYa^3e3+SxQh73OyZH4gd5t*Oa-T}JM=ZASZ33q%ux(M4l15T!6qKFPL9p>qRh zcrxkPJs&ZAal^~3dzr_EcmdhQqq@kYOoR@v(naQEIH@K?*t0@L8{EMzBlBE8mem=;7p|zA26bSL3R^`cUPz^bThEPn`xgRpGnVcx^lX67;T`=q{8S zZc3kz4A)W8sfqBzyw6@5!u`musIe$d(t~ZD)SC=6%!@#m&g2L*F+ak8clljbyYr|) z*Z8lC9;^D@>>b)jwLSnXEu!c{tZ!0_c#uT?1P!z%=!7{F5L*Yd5*GvES#6cl?lHuK zVS~XJMjRW7^<^}B495| zBg1^|Iv7(IE1(#_f{+RGqoP!sCl93EgZX&RSKRN4klw2)-nIQ(fEC6eS&)b*K%OVFd~dKVyBOEQ>xuBWQdr2!i;HG&4zwODM1>*Ep-Gj(soa>*yxS8 zPK8jZz3J9Cl!Laq>kCqYhrD2<&I_Ej4lASR*dss*1fg6F=7b{xj7jNuJgN5RGlktz z3;i=g*Oy1WO#L2dI{Vt)Dg0CRl{e4#5NKtys^Uc4_wO;`A|o=R{D&Vd`p@ylc?l{V zv}e5&5!l-m1mABCogg19uAdSGVSebSBJ_&~w^diZP z0Dl^&GPX~7k=6klO|%FhN1D8}AJH}yg(m`uO zs6>rg3zH5=FU|Q9xg&pssaqS(k1Rr5-gU5CBE7CWj2HQH+*3}}|aJ?Pu9uN)H zi@=C9A&rkob|I0AsZIA}k68_R;k$u!<}@{)QUz{6B6c|FR^rd*;O*&s7{(Ho7t%W< zvrx0@`q{)J*f(_3Jk2rN#<({U)>7>`y3Pvf*3}xTOq`q1GP%)}0EPUvZcn$2TMbmX zqGh41qNdtf10lk`RwC7#9O5^0Uvmic_io@e)$ZOGW?8W`lDkafbGKrB(z6Vtnk6w` zNUuUgf z23SjNNcek#2!M&~8BtC1dO9iepE9xMtQU#j)(|MeM@6nt_H+t*ze{%mJCKc z{kXKj+7nV;`O-)7IDT$LHBK}!BQydE5vI8RF3d5{SbGSqu^B3Saj;US=6AX&WZVg` z{lIHNZmc#7HpH%XMwMnVxpR2Sy;q3DfjHtg=wIyi5|CR4MwbR*xUArOGG%5U>y`MT z=X0}nfKD6N9s0TwPm3)uONzzRvA3IjL;;#CSRotYO@$I?2I6F~o^OR6t6uw~G6AWR z@#P}bNxtbBlJ7~ob9hJ;UD$EZF8sv5llE)HkngeUJ_yKklDf;u@R6QokV+I8pv?e$ z_JyPAqiE+vg&AZJOVYM92sPFP;QmVzBr5n<&@1FhLKzY?KPL$eA44D)C}PGK{eyC7*d`-liA+HbSvqIcPes1 zBD$J_uxaH*k6lpoNo_KM^qABJ9-CRHgn?fiEKN9yAa4oOPl@j{fn8es$l zA~Y!;>Okh4)RAXS;INg$84fb-E(K+dDg>URWRsILT=Aigs7{r1`gK^B7yL`y?p2ga zhWc8B&LhtD>*&>(jnqUgH>R#mG-91U0UQK~#3f|9iffB@MSD6XF34&TWC619YjJ{L zYFQ7@@id^D5sF2xYrI(XpG3lgpB59<6dTpn7bGlRbhnkQ6n?8=y#+c#CvG#k36hhN zQ54&x(k=B3u*ga$`^h39joKS@Jl0vN``rLzG%*Vt(4_`ls~j#-w$KbGU}};%F0(jU zeNOVU9bLjuR3m6;riq#rg@8!Ih$f4W9k&3zF@mvsD#G84uXlI8@HYsVKrQ7-bnd`fHC7992@cI6I(T;6E0V{NRGti$LLlKABoK# zABezFk&8bYn2r&=0$VsBMfSP@`9}i{Ko=;IE)?vF*Ff?1HfKUfcK#qS z6KVlFS&1tF1>oTmUsW`0psN_84Y@X)&!5Yjq~)R4?*CA|I*d#$jqsCj)qXr1@r#06 z4G7UGs7oh^F&`3IXs1ZkJaKTSJA0M2d1(0f@F}mWb`zbyElx~EOC!~ebI_BPf=VYq zKz=au>1Y*2^4wvEjqnId;H;K|IMqA&^j~I|Edy!rh z%iIr~c43a-7AR#8h(-lOhBzg`W3g_EXRPzNm9ea?6Jo{*~>4RF9)jLCsyE^v9_ zx&-W4L)Xo#2tkI#a)r=ze@`>mNFp}c`9_g|IXhX3#Z#A2!k@u22-5bUwbotL>Xc6G ze^ZAEAl$`_BLGNE#ZH?gEm)vD>_bd*g6SEVChjEpw(y5e5B5bk=|}@}GH6eFS4Y%T z5PBwBye=Nf2H^6|_0eXU_WI!iLisCD0Au@&#<0Z_kS$U`VRCU4XG#8UzvkhqbQmFW8v|JVAUMi!v;b*yt0tNZ165Ldg*cf}K4tw(hNvj2m64AoQE*tY z1EOp>RWxd*GtPPyX4s`Md-RV`d6EcM%-#C1=@tp9TY8Qav5J_^mr!CQ z`O`X22a7XKwvV@eSH$~kbM;(jN`O{P;Io@Jsm`rIRla@;aI#oRw4)(cN&tb8>^QL* z<>!neqi(CV(>p2U)W-qBs8A=EQh{!86Yb%Pmienq!&U5u*$oB8qt)&qt1I-LH3>&T1_4h$_erQWBPs)CV&F#cva+XPq>4lkuIgojpd3 zxEY?)UeROZ5hH_FmD|F#Bg?jaiOQP+b{#8_u4?Nq_9R6CYcC20(kLU)YT{=|+n${@ zL=PDVl<-+LDgi5({-L6=c-4`oz5HnN7FUGW?{UB*d1u;ApYPMYRuvYPU?G zBQ7n-L`T34B&pi5uI3CF-LJg2V_WXto2cX1HsnE!hB7q&cykoB-YL2{RkiwfBQdXR zHLBnNyh8*|kz=5Sp;M3}nb-V@X9c1Y8%;F?l3(mwNU?-Y%E!>xtwIvB2u)&Ma4m%$ z$AjojTbpYth~{`=EZRO)@+>N81cZdKA5NtgJ#7e^lOSoNIa%kjBzzc`8vbR5B`T?R zai!jd@#-<@rJRAaG~$w;&^?aQaZpv@5zqh-chnyKrvW2fZaWsLoSFB`MmR()g1Km& zETGWxW@JMJTDoJYm^GwB;#uALROr7X5`OWE&^?db*0~Zb2xXf3VXw4f@OmevhexoE zh4)1P&sg_G;E(Z^G}4BhO77fUQ5QD)f%1Ds2sfW~wDd>Z$RX+e`7J16Y^if`hC7CG z&5mt5MF#~}Izv7f;l?ZI>YgMPL~Oa>&f>trp-0~iAi%c$ir%S&&W5-QY-|&?0(l=7 zzR)2EbM(rK^3H4aq7{k7WmrVQUp5JGE@c8KMs>3!UcR7$#CBSo53qTF~E=qq0T)|kzSma*RNQZ)iC2bJ_|co&CExLkD1&60a&upoED z;v-ID4&`SvwximtN`|!79$u-GiB(;Q>E`m zpPe1G7w#WUJfIXJmgBfEePrU7f^k9+f7dPuT``r~wpF9;tt!FhD-av?wAHm7h#(!> z$$ct0$_rm*BK$m?Gb*7-Ckks+cY@C<@X6dysc1-mCzcggE`vazV)r@dbw)P zBj~OZ@LGi)C5zR>0b^`CYD6flM^8l;It!9OqOMMutT&jD-BBoAO&Aa~5}>5tD>Oz% zQjd^ckM^VCUZ#(JBse2^8Xdq6=b{bJa}B;jy^N=4oy4R3CZ-*7@+wB>qC7(^jwsf zLv^wB1JRsB6YnJcqJ-hlD-r6Wpf)9qvWuQn5JKY>;+lxpZi02R=Q|HQr>nZZF>O^xZ zImpyJtnDxWOJ!@+bA?Z)n_(+)RBl16wf^M(09`<$zu5UFt=B3D+&SGS@7e4`=WJ_B zKq;p&M}ns7i0KtaC6NLoW9JOQ8>+-bFR({4k(sw66Yd@>ag zA(3vn+NL-q&IKji(d~HWjV+c=sYXSt} zV8^^rcU9fib`5=JcdJy4$AV6k zlN)OnM`*ptsU&|K=@*}tqwTZ;D%lzSXbY|qM@naX{f_nUioDzdhW5ROEa5PsE&ka- zW-P&3q0(qbSG|=afS5aB_qGF5CP|3l^_9^+)Ad zBioTfzLGf6&yHA#wDKale~9t$Yw1c&W4t*pNGq|_s-uNfblPmLTcgmHk)zDr1WE_T zyxi6qz)p_4PZUoQ=16_l#zaO_NcbI$_#vEl90ebVCMwK6od)YM&}Yl;Cp)=k5<;6V zP(`r5-~o_|B{LahpHP;Fa^1uNl_T(%mW*wF|0K!?>7NXA1zeGS*ho0$;a1l>p21k^ zUKYU*WY^rlvR1rsE-Dhp1nSspYFK_)Rx5iFoVpms0_W?vW&|wjCQ@Z3x`Hp4v8V zH(cU?H&Wm~NRB|bwzDm4CDm~Ug0fW}A(BNl(WeDHA)?Mi0RI`|^AAh}VL+rx2WS><5?h7R)$k9bSW^QatJ`(=6Xu^;YasVm#yJ zaO7$d{*KM!I;dRuI^re4;utZK_lM^w6lPf6Y8(+=Gr~G64RvzM;dd&+PGA9l+Yi zq=$4o-IQIovB>NBhN9(BeA7^}>%S6JDhj6OkN0;B*%-M_=OX+k+8v8H&}OI@Z*RE+`%DGvQrsht7kXNig^TGbC0)1hMmUJ zgPJ~pnXAi*eD|M3_?*~6G;p7A(Ev>UbCb-)E8l^pY(=jpR|a&fp`lcoC%4{Zazx7= z$RrhqLjq~L)cgl9rEA_G3s<(_`5vRs5Q%0oB?JYy{}YO3YH5qPEHYN6U-B1EnI@1j zlq@d!(UH%VmCHUo?VP!VSaHzq2A*64)&MnURptd zhq&hJz@K%80ohz2#$FD)0|T65C_UOzUNXcafL8^&lxkJ{!lg|ShH;jVr zxYD6#w{E&}0eEc?m1Yea!NFIjXP`KEvhN3Q)PXuF6#^Pq8}r+y3qQPS4e9F>5jD8( zA^uYw!(;OHRS~&fNxF@}&#d%Vr&!@-13-pDeE1&3(SJ6IU6`b>I?e#TJg!L@znK_Z zS4G86jroq8z+rO@+0$RJDKiRDQrISi&ffVR#ba+~&oD3Loc3rV06qt^xxOBD(7|Me zAvJVA$4|nk%~~yIAN0k@6X{2?*Jf4&pOx^7gd`g>d@chn?qq*23AH6=&gk!#refEP zz-_3?Qei{M#y0)*G%0HeOY56tq{CmkUVb(Z&ur`(B|*&Ae!@TbXV}m3hCD>YjU8wHatz*!mb*ePj1@TN=P0PyU)xSM zsJw8rq70s2LVT-2cW^~+bOJF`*KOWfEJ|ro6{moN;op?KLLy2he)&q$u^CzEwx8Cd z;RK=h(}u|^jmW8z4oLD9%X>0NM`XW}2SaycXm>drI@>r;S`nCC26_%HZVX-&bOK>z zC~^47*ceO1a!&jvL#>-p^ce-PJJGH?GHt2$-8d->`2-=xnfbNERUyGg!2ruj5I`HX ziXkWt&V5e|_M(%%#-wuj$1@^p+1?6wkwpwWnUHfR{WlVP`D4!HPd{ZoLp;S zp!d1HmpRdj*!HqEG?L@0cA_ACxA~SdRnSd6piy{t!IGpjTeQ$t^0O&gOzVi>`T@#D z!b41>WvUFqNbnQNBR_KE`%z579OnezVihHD{b8bxQ4s9tr{JBjO1a8T($sn00Te4E z58T@N`l%uXdEVQ|;|)p|R<2+SmzjF2DrtE65|g_mk}K2k;;?xrLR=jO8orWc(4o#B zz@=M%kzihzAMix0M3e7d5INK7wkV|`hMZFpx}XpjIyj*73kTAgc=DZ#M_GHvxDTCo zf2nTNQEyaoWam3Xo{oG!i1TR7->m4*js-(w+qb8xy*hP@4sOQGrM>VYj$@%#y5|y` zaQ+ug>#^{O^WGPwuonZCP_7X29XTH%vRQS*#zQTLSE-AgfUJ1J$4QY0#x}*x@9T}a2nQ;>k`Hu*? zHxL}hBXKD%EE)C;G-qrw2Pf=o3cTX))pkQRLyHgxQYa`gM`M^){Jt}92{8FELk`AG zR%y@=w)a-T5#uKdEOE^6hMz%83N0$rUduKW;&40gC>0ssx22v_?EJfQ3*-dA|@+@&gmAM7ZQmak3&EMV&RF0-^R3EVsB{i zY>xX$aHt_2rJnK5oRC2K!iK?6b=O&n=eYExY2zRk$c@(T2zn3P5GalnhQ&N)%R3ka zaWRciM_7J80A=`WrZE*-dRM*4>72kR+{j--#JmDQ40JIuEeBn+TO~~0s-4WK(2=2a z^h~LT7)he8s{wh$FpwslH*%^T(TMv7jq*B6<^7b)T))+#_JuY!{_Pv-0JN~@U{jyO1HalKl!%FlEh^G)p_e}{k#Zs`MfEO zEy%s6VR$F}T>^CW2-gE}lgnw>N>zTx&0uHF#fa<;&mCh`IpQZ&V-*OiTPT_luzEOw zRJzvWk;=w_{V)-jsR&L`gYOy_Jmi>8$u;!cKTGMPdfT~}YRd>V%vK%`(iv4SkEAKd zC!oy+*!Kfk&Luw=mzBVo* z2>wCdsKNIMQ*-_g+(iwd%szrdxG9Kl9~*YB&6LKiW8R{9sDQ}uKOE#}Y@Ksr<}AsF zAy1c1YLsATz!(YY1xgCVi6%}6`>T27#y*{CQGn#p0pp%jv-dI!{JVzHQasR2PRSVw z$ac7_)sl(@P@%cpQC))xD9)5n-=;zc;eT|ZSPeJKl;cRvnQ@vM0~sn5Yfc&};$AZJ zS|-{oumo-i8}7oOmUlk1UP8PF&;72audcKBc*(*xXu~T5ZK`K4>j1d+1s@ASb(?EL zrzl|$kgz!`vR~1>rNH)`TtcMZ2e5#B7UG09gr=|`1{~_=dYE>EVff&KoXR)i*cAg@ zxWr*?Sq8rn$_-ML*}U$fc-V>Lo?Mu(;^om*;U!EwFUb0vjbB7}Zj zDtRcq-iOi&VJ8*kJqgi;ORQ>eK~%BF4G&n`1{7rid3=xfMfY3_O62e`? zV-wrp93cG)PJ>ns**EMuXDZ<#LAMMUQia8qIzFo5Ah)Fq`XiGTV*1^C9=44$O6-f< z(U%AwsFH_=F5ue-K=qXEq$9`7Xzx6^&k9s9+z((xGw2Ie53`xebErI<>~9C8m@o1A z`O%L8NJ0DiXyTL)HIK&H-e@m-@d!&pt(NU_WKM3c5Wv<%pbeUFh{sGzf{-i`tjh3w zB>Rp{Q{8VlVHIETe`!9`Se>*!%rh(KwLcac6xV0mtR5LUOJ6woolA<9aNOe*0W=|BdrXfCfV$Xik&#>a-R*}ITtSAD+6lv{@wi!)!u)Y#GQB8d8e;I zebcFH*yeq)r$3SrL~ER;6PZu&o;kX6$%Z7kh#T>M>(1&UVT0k_8lO!*?IVpTTe~yu z#3DjFM*8^JTtBy>4E!g}uyXS-sy^CR9>8l_t7zH1*GzA@7?sQ18Plu~kR6DWb;>Y_ zP<&nJ;}NN5ZlcinCs28)@;6;~X z_WWJ|q3#S!4!cv9-4k4$@yS2@o!Mb~ezSE_RR@Zr&?O zky^_YP_wY|46HrQFbZny|A;Dfz+B=C!0|&5&q0C%zdG=tP_}! zcR4Z(TaZE|)SXaVTykuGK7J-dxGgQ=%0TaVvIc6V?40Dj_TX9nMWDcKJUwKXY#`=_{O4FGHVP|MnFA>5AWD zU@Cj7-u;Q6k0%43UH#6?{X4Wuy@k6kV_WVH@3h&w|H1Ru4s9q!rtA&mmE?oT|J~u~ zVgT6QZg+`DKiPk_ey?=GW)^zp*VUW7tB)MO;^sp<$V1FOM_*sh*Gs&iWI|i(;PaI5 zU)IvZd1H9?vH`pAYAu|B#ZP>5*A)Eo(eur>mE8NFdF$>Rew`)s=#C0O-?s~E4|99| zt)2a?IeKJ40vch+-pt)!<~$@yp{oFTDH6bqRVZy zJ8%hrV)OCN_0RRA;jd@fq2%W2@6uT2;n!~<8tYPZ^|6*rV`|8 z{;wmuv4}W}Ved2~!*(8dj0gnriTXKwAVV)wl+26f1p zK+{q?yTG(Ikjd;l0!Tm7?aj`A-amfBR|Io?>0G>R>G;>pjdP6u{7xiZ1VBBg>dKpo zx-QMHFq%ZU)3^rUFvXiCKLSx8U@gwU!v32M?3L!)S0ZI%WrmkxzB`*w201L__w5Eo zes87@QgPaNX=+N|ec0Xu$R2^^Ek6SIY|ROqgTDFw`!?56X4K`&kE`#~g`JG&+DDjT zI7ud8L3SMZ?W}U(g#78PW#t6Cr_H2)Qa>5q1=ZgCdHs3kjI+7;R#;#bmE46(Pw;_a z`E4rHM;j!6_#VZ>f4&5Xy55K2*+(1(j|MyhXY%eR0lu;YR{t4!sJw>pS|Cf^q^V(* zy&5IWjgk_PjREpT4yb@vtRv!&9;~V^tDkeMaLXpN7|`hNb(B{IE!9Qa0Z~!KjDFAB5?p_n z#m3)~g*nTL14n9_`T^j|B z+qSI?+qRWq+m6VvZQHhu4BO1GGK_y_RdsjuIaQ}m_wT)Vukv{!_gYtbeE0f{Ip$ns z*Pv{lzbw40RJ~GYE*D8?bpvL;cBNmVW_}2dp9{6!@_~e;>?owT$Gqv_4CPv z;Vrg$oNs0Llp7=`N^mavrQdn(R&e@ommR2&>0-t*aUpiP@;72#hzNCa$Tx_CR>#v#~2l?^Rp#Vlz9>QAj&-aLcH*Ir0qxgZ9hV zp}z6P_aLV#E#`3QZH0AyLT4qO<^5)-B`Y7VALh+#+T1E{!W-OO_6NAt-ekT- z(%h>cfMicvh*{J^G~jccN+ zYbbjNvsJ3|W%m3l-$#7+W0!{=LK4=kgB%X^xYbuLVtNie8y)_Z6*l1)vA%TI_JeSA zcmWDMz#{!W1Mo7Z7!qJd~JCJ2*W- zd%b3+S&y{lKtGZ|LOiV_>vd9miIIA+TS2gF5N98~E4WB29&Nlk9yopw?2RO6=1)t6 z1qJJtsGg@{>28veviOV@AaZz$%s$3ME42;w_lb!OJP^hA=Upna^ESv=3lS$XA&0WC z+@z@Ro;EI-aACZRdu49Riv)*$siH;{gC9xaxv0r63gd(kJYjQiv_qRl(4o35VM<&3jD`AnN)kS@IW~(NcH~$H(Gyo_=3HU9lm+{U zO{H3E)2b~b^-)u#hy;oVxz{*AR?CgUR_AI;BpkNG~kOPX9hmbzVX6Ob8Nm4Zo3c8d3SY z%Q_ucUtn~7+>)ADBOkh;ZdfmLQ`ljlY0WBSe07WEI>|b(oE|(cKOZ29XMJBtJdYxh zuFHl#xghUu^1*#weayl7Yr;;eQ4^_OVu^zc4Je$OcI|%90r(xxAs}cH`ME>_@G>lhURY7?@J^VDz+ zhlBLJORQ}kz8J$E;+(SuV>--G|Iv&iM?~?PT{&=dH8JX1C15e`%mfJp=8b49%zm0U zb9F_wdf^hcw0v--3>|n^=aZd%qYJ`zoMUX=+{LtY^QU)EyXc@rqtW-mWzptOLKoO7 zchaN*y>p6W+wG$+qM9jf_Z$tG**@=r)%wK)nO~y^tvW zO&RJ{_&{pKR)_Px{(R;HmmgT!&^_t z5A?7ZXvxDuD2#q!o=4Cl8bvYBmAyu3cIxl;CR&Lp^$aWPiAPad^^B zZbKT5Nmv({0tNE2Fu^Xt*7_Q=xL8Ul9HvBBPC=jwhMO>Ud?ZSqIrqk1)yJt&6#Dhh zPdd05Q>cd01;zMY|WNHFGx;v!eZvuKq9zU z-u|OSOpji@Z%&UDODgUFl%!o@hPKKsWH%8tV?-%df7WW$mHp@O)Im0`H+sf3fqIk& zT6A>ZnI~jt4;qXfXCiK9(ttaq*O4KeXUc}im&0B281Tc?8uw5TX5t$I?V04LBxWgz z3t>Q9Wvod0Pj+AfE1g|y9zGG;aCwexnV<%Y`jp!%1IO^X7x z6<+({HJ{YSBmR|g|6R!$TIxGE7(4ufwigDjy&P~YJ$CHL3M7j8v#a000Cn|!pF55`QbGU$cNbRU8NaL zo0pi?*TMFJ?P?+Vn(_iV#Hel8pSool{1tCbD9)6BKMa8lg%MHb< zJbgcjXRQcyO;RwfBr--EiQkB+yT_AXhcSU$J9guQn>A2)SG|mBAo4qpBIul|nOA@0IJmA?;Vmu*3Nlx1VkM zaN%@lh{O8$=6R&S->o$w7St{J1_LC3qUUBvW6*9NKwSW#41;->yhq22F`@-XvL(YC zForU6lRXm_c0gi$siBLXPn3_#ouUZD<^#4TD{v`lxiDGBmu_tOdL#C#RGhnlFocxI(-o=UWs@3fU?!2u-0rH~09mNLfUYAtRQ<8aV+#UUYk+d3SI z!z<$L-GEtuyph=bt;>oGi;gB$_Wa)5)r_>jxlFey$-nD$1eRGM6qf{&K~43z{Nh|F zqn7POr*|J2x-|-3!teTJ8M@?AVV8N$e$3u- zzk~fHa9vaEA=y_tw!S&(ZA97WOL|e|Tk+nKKpSs2tMJQhIz8oT>!eF|)Drf=dj{(K z*>o`_3xP&(xG7paEsl@C#klJO8h=n#=D}6Z=hiY)4$U>>H78@BhmVl&Lazoy*%%U& z=<~&zk7HBartF_AI}E*F6)BC8HRi3!JVa9~&{0cKa`(e!$rG`UstiT}ons{VuV4!_ z<948C1&4a`P_fbJ^b)oz@^%I5#qH=IJMBHEx^kbA{g7Z`oII`_li}-afDQI=YO^35Jk^E3{I)`k4Ch1l^Zj5L5!N;ZvvtAmNE;a%$0_KG=>QcYN33VfxnzF zi*oMDva^A5T#(6Dg<(m~hQL{0#@?NCIl$^1J0|!vSPw64io&RA1G*mrbAooV5ZOF9 zuO@ZCs;X|u z9{{GMNkahEFkJ{ZkETi9pFE-0$Wkoj7?_w^B1@_PSCvrL`hwV3HM3~tLf!Z zdb+X`w9wK=eDnIAg}HuM;2m5<-Vrk_)Agn=eBjyS_lQ4mF+~bP0suFwHlYM_G_`Se z(#_81oLYBTsw!U)lv*f1J+siwhgn{{D`keZ!eMKhtr}{~u~ZyjE9nDBTiNv8wmT*9 zDQ<+^bE34uz3RK0%QV617fz^+AgH>taBoyx`Sk<7^_f5fjLGQHLH5FPTWy@i8}34r zNCSi`I%~z#Tvf^p3!54k&yUBhYRpx#z@hVOm9%7uhFLCLc-YH8#vtWolLqg4KfPLP zb46a`PJA3Y`X5>QxM{{P))@OK!iL%=7B*_s&F7ex-NcoqQC^pqik8FQqRG#i!#6f) zXrq{$f;De;+0GH!yQ*qM`(NOwH&i6}O zNA~{DKQ}A@JF*stTS@zmu0hMe6^Zoc0^c-4PuPJ?vK@Sm z^a(rXX)?OiBo&?^OFye@)A#`pE?aa0%KCb`slD(C!@PzgA8HhF4s;1u=L7DOg!5o` zBQ-nq1Jy`{4#()1M%xxwQ`$)MvL-9NM6VBlw}c-W0VBB&hl*jqms8ttoxFIC*seYn z_nX(=OjI0K&M;ob8}}^-d_dI5%9NJCTjg3FVay%X}sW<2I|} zz;8`SyPD{>#<(*U2tshoX5$}XnfsO(=jj0HqrBjm!$i&JS=;+ru|UWXN*)0wKT5}N z#x(Z+c)$n;1;x%!_A6jXG4DO+GAG)*fo{7SiJ)`-#4~f2Gbx?HT>8x*Z|jO?erSJT zQDN&?2Ae4n?zwLUZ{Mx==#jtj`T3J(y3#z^Tv5o<*8Iv92D-Py>4_?d??W0Qomxc0 zt<8`0EbT5$U`=jC8_nm=UT9oti|!>)1+RojXi+i7x~gKyGO1E;GqcY|+jjzMtv{}_ zgB}RO4EW-NzS|d`Vmqnv+9Bgnovv>xFd04G=3=BZx#6zJ;hY&An5WFh?H&f;I~1U{ z^t7NmsdBg}#ax7iDf8G^rmvOmWw#xe-nFiCp(+;L%b5BQoUR^4gS#32xMNFpxpofG z#Rwqx%=QnD5Q$kqS{bjdGgP1C$UrO8uiKjKH@*CH$K$56UDbWBt~ptI2@{Vmez2WY zm)L~vQanxmnJsmDk8{XlkE%S)=ecF&X&_Uxf40P;JIfi@|T2f&sNV`-{u zynM5Y#4&3?QdSRVTJb(BH+%JFjg^F3<<{`j2f*Ls1oQtA0&MNgob?Ue{sAjA0d41j zfB^u6f08`k|8YlKdmCpnBV+qtd@-mbZG*`G-+5V`f`yl7xu!)KI{OV7kr*fxPFPHA zyK6XWzty(0w2#NDFv-5V2L}&^~Bm$P3G+VX z;bV|Ew%{)N` zLoX*ZL9JQ`I`UnsAGR@6#Dqs1G+OCge4A?X!iI zFw1Yi8wdAhNDnERrO>k^Oe7<%cI_RPK*Mp>!}zvd$fIpJEV4{cw@;7gwzjjri=yY# zJ3bl9K)Gp8N*3Hu!IdJ~CBG6$i;~mV>T85Ln>g4t*mL@C1X0yo3hqJ#@YP|%h!4Sq zYNLskxADUp_K^(zSba0PahTtN9u9xET*q3#yn2<2jQAn)029J%^1T&4gOWy)fHg>k zONQzF}b$#=FyO^aMY(nXF)fKCF-H&NUxWDuE9moYEt6W7yr zUHa6ds@U~>z9&U?j96Qsry>`I1jSt9^Q8%k*RR98y()n3lpy&>M%g&vdz(h`MGd46 zESPC%wsos0XMtUdVk9wg8#-1Y@4DDuW?G&?@hOb=kBEiaXGTVz+<`gCR%AuVy-*A* zZwejk3l@J6(Dh1QVg0>g@%~z04vtPnKmWDXxB5r>J9qgrW<3x9zy$~Z0OkL@_|MLF zg0#&pJ$&%x6N-ZxM2V?D@?27rW)oldKr&Ftfl{iGKn17sqBEb^+cg(!jnZmaI@EHO z+iMq7lZ|(h8-@@9wY@d|9+026WD!jXv}II`(oh*8e;S37hCE*pb3~%V_e+xf#iS*9 zrANDxJ5s_lU|b?>Wg>t1)D4Enr5aTfVk!Tj1g!F>wmM`JzfopFMytO1PNHvGB#QGo z!NS@p@kPU#)`q>tX<^`c}@IeX9sCp~>id?_@B zf;iN5TbSBW6w%EqJi-{+9C7|hQw!(i!&Bpr)OhMkhGF}-ge?On^-31HN>HS7nZPQq(R_1 z>(=c@TEQQ4ZGj-G$-SP2aO0g#n0JlR^gJvoV+~1l_kslFc3MMXj=by%i!0e3DMrC! ze<1n5lGE4E6d~(dL)n$=Sc0rIomTMr4t({;AB>QcI&HjmT*dmK8xk+fo8>6l2-eX( zCqLj`Ib6!%I1>i~gCZR3LYXMeOjp@mB2n!o5!I)Wj|8#>TiDXUl?c0?row$4&Bh{6;h1btYGd^a}XDt{wgP)&C#dZnA%Khkr7Zbz5{{2n<+2j7x zQ@`mme#T;r9)4)+R@D=iC`A6k>n@OP=uo)&|2;vZWm{*gq@u--+!23%UaxyAw zTL(Mm*4v$z%TYL<)duV=vN{cpL@D^IWzY|L5>M$7t|RGqBvDL7#|$~la1TSs_ZN)D zhjaBb*6R#(%|a=t9v&h&8iWjrHyt(3{$9tCpx{CQPMd?K+l)g3$5_Txy4V8(c=pBb z{+0cv8%GH2K{dzlvGej}_ z52##qQPb>Rt@)p#^elZnk$K3Q>8(m$2JGSF`nr=yeK34}sPdhNRZ5TRmNxwc|Y*H3bgy{ukouFfEkq^pRN))P@R@YYvihwzgnUHP@C7oqg|WV%)>W86SiOQr9cbT`H*H8l3_#Ji74?V^!4gm!Y zn=lZwVtO-Su+-WsQz?n@Z2X6=4%q%YH$04XD2PZvE+~=4&~2$h3;kR9Ja_-xCoJ~=c_vOaAXs)sOGKDyzK zIas4M9R6g_4WvdmCjj;s)uJAche$8{QvhBgvIz>JXG)N*%S45&{HC+<)`iqbIOVqWlkuy(r>j4MO;q5K8)2I{M5aI83NqT0cGh zIMS`!mS2{o7d!yJYsx`;>pD#yK)%FGriCB+2%*Q2(?9IjE){8|Q=&RBfPA5nu~iHS zL;?ehw;e$3p1vgoSC}XmaHD~nFN4E9r?!gi#{01K0SUxYEC01x(lv*p=$ky;)mfa`2rQ@GZrrh)n?cx72H>Q6({%X6JBN4GVLr;vEI`)30_L(= zvboZn$)wUmF4q6B$KC>=Tibx(CFjb=ZRAzX%#AMdfq4h}``?DY$yofAtp6G(H}1kl zUVnZs8Ghm<*Z+RA|0j}+HT0^roc8d(H90%I6jlMz2M>?H5^LehY5ff(<^O*Kl6Z7G zxc^I#%>2KBD_&-LbdFnGW6_ofQJz%LN6!d6&m4;RKR7fiba+Q>gvaBvdz`V9aDrndfN?WaZpF4j(EWh7F_8**Sin#5jZF*s}$7ClqGEx zn2cymyS?#`4N-1=cy@%~`Ca48)7@ifHgE%}mVp)>j|?gAsOR(@*O}}{k9-Ya9o)0s5fJ0LeO7Y5|T0^+OHsSl4x(I3{8 zK(ET+BD%voT<}A0-FZ@G(nA)^cdR|5=BhPF&no#eje#fk=3I9UcAhRnok8Gn3L@{) z1*UA67#zAbd`HAD2jGSB42zVyoMfWr+ITmp9iZL+;_Hp|*P=4`VrHfP<ZO- zen)M~Pc@$YJiU_s>xKUFK znsDJ4ykB!+p(id{JpnacZgxIgoSoVz%Y({;jQeAa{M6l6m>Co$uqHlnV{MsKjI%`I zB617`3{s)Ovj=QY;Qu`AG~PmR$&KV888c5Fj`?)#ji|TE$ry>lO79$eZYCY|D?xgjgqhiWDt>)CM|F^ zqIs}-jRtMTpDHwcqW91euxaxz*1>)#8dpyCx5_<6W@`!AH6~#vh$oyZ*g&w;^@iW# zm6N!9G3C~%3gv+o9sjOZ>$^i8j630RZSVNOelbYz6LC~Oi2p}w3h%#CQ&E4JntI=2 z{nQs2*P85B6Jr|57&F$?3*UL#Ut-m~MxWf6%~C7NHe-bjGP9x%@a2+}Lq5(_VlNyI zYl5Vd-0QXz*QLp1)S_xbE~cDXv_vS=;e_0EpgnAAgVn3})E7uH;odm&1sm^p-aHEp zb=%=+7fLF{JBR{OaIi{JW2C)bT3pHPR1p>t`~DLUPEOB+h#N^?Uy^~%t|xT5i-6gzohp?R*%5=4{-b&U-ch1_-APR$e&uv7cvV=d3yIKw3o7Tar3%5TIdB?U-|8*SbiLMaOovy(DJ!+?ul{iNlof zj0Pfb6+FVKBA~S_B+4TGe)Dg>rTR5jv&Rf#Hy+_Q>cd|=J-ZA6qVz3&J5YZoMvwmA zh%sTP8^h=NCoyJeq$hRGLmRqylp;3;PRXy7+L0d`aZlB?hd2d~8UzfBr^%qM97e=@ zSv}I6ABV#yy&)nB-O@zVNUwZ-B@?J_FNjY&dAMwFp9_<1SubnvjqERysb zq4SJ^!kqoiOLJ622|3a&s_oL*o1ys-?9z z%*L|vg2lYtV=Nw`HiI9DFyT@8ll9s5mFr($ZC9_*pSa+M!y-iQEKs7#2=LZHHnmZMIHp0K+D$!9fOu1aDxDYbg{;%-h9Wdws~vJ&q=o zu~*l&jJ?I(>cEJadZ(?gTe$4!jz=L@AoylO5doUnleoxGiT(5J_f)ktz2PC7-XMz} z`~*IPDOBQUkleS;rS=_@P~Nv!O=WRJ*otDppM1BAHRe=}l*%Nhu`P7QcM_gDtz$R- z>EL!BmB-LeguJB`O+th|2>}(wA3w4~!5F>2@0xx$j%A_)tYuz^x?)}!O>VZ!&x0AI zvw!UeMpg~fD!sU-nu;}Fa>QxOItsad^S90Tf##<{e5m2H?{W5{p%HbO5`}txa;how zW#f8~!PWUs$){@^&}1%GPVAYmWVh{#kWHyY+8x8e5{HFx15y|m^2;a?F2lM~)7|h! zk9N$slb2#VT2Y7b;VaOz)y4FI={t@*oZUEZ#kLMyovm5gcK{|Mbukb+^lWxN2!IV6 z1j@`aZ*USD2%RW{rPhfOSq0o=S3!i@v^oG&K&-!YSV<8i&`KreG{x#fAdpv`a|zwP zbS)%}8`II4FIklNslM@7FPz}vHf_UCosOMw3z*Lbg?1GOhf7<3MFvDURFl(9EJa|5 zYeV+{F<1|Y%i{>mGVR|%*dcU+rj2o6WSpe#N#Bd_-j+zYq~}+b|HwGFQ}DccAeepX z;qQ<;+>8f9qLi}arBSA+!cYx!v0vf(Ix7#r<=x^PT8IR+~Mjw5y==7qu&NQ`(E0s+s)x) z^jT)_(%5^@i%8*z(V* zPmiAdzK(y2qS>gWqpqZaj8FxYXigiqz-|6WW-eD)qfTItDd~S`yzmnFioa9APEZ8< z*{R*(S*)`3)!N52Grc%C zIG7tNolm|di9VKfvc+WM&w@6GM3j<%Z4WRrvSOXfJh-tBD`JHXAOCm`*E3`Aaks61 zJ}EsL>{4`lQ>IUEftxs`^G{~HA8s-WbJ~7*ZrMQlhH+!*gSu&X8FXouRov*D86rIA zww8HRWBv1VFF!a96Yr~;95R+v4b@fd?{w{%Jl;}&R1vcH-W;-c0g^eBNX6oVv5qt3 z>M{K~0V}CoTnAq6WRyPap?AOoT zF$}CNfjcO-;y1iI9+mKu;qhTx%UOv}$S~vPOBsc6fupBij zH^b3rTxUl1`3}XHmR{T@6tk|^d;CG+YV)-CzSO07U`FRS5f0bX`R+pZUzdcJfV>v* zxgi6;TFp?_JP|gbtHea85XwOJxX^XK;Z~)%`&wj~gLr1{NWK?Qrtp~ndlb|K*5K8~ z11RFA>Sz^g3>cN(9y}r@Rg?FzA|MnmnIBN^VW!>`b7VDW5JU@232wEwwYvGZvEpe@ zPmwP5OIE{V^BV5jcYDoV9e)gY@sBlZs*UhsWQAZ}z&&X+Jv44#R-%?Rz31s>1{q(h z=diOdCWopCsaNv%Q})`M=#$ewtPts3sQ9wby35x>Uub`QRSVnR$pDCE43~tgsZMM4 z>R)H0hI4gl`SO8Ub#vdc0(_g6bh*81imt@lY|qVC^+jgvfqCrH(5bKJ4^jcou+~(? zrE$Y82X()8*_LSwMdM=mZrS3qxcjvf*Xi%X(ir3ND(3=At7*_e~Dv?$uY2_cs{RPTVxGJ1$5hfATi z(VBj@)6Xk@C^%mg(Xvx4>xd)k1>>qpPsf=Cc6mBW>iK1D5J6|#TA~(?DnkHyi^0zwa0)?}Rxo?S zg>{`1)?<2u$RewbNraYd(+*JJ{2q45gQ<3mWRgI5Y;jF3r`qDsLGALpaZ>$7;0&)65?EVX+_#80{Wz|p4+k4A;Ub%52#H^p^LMjn(T+KdOz2-SZzD5%=f8E;D?A&&2zGQaC z!j>|kZvLYDp8u@TE*mmw+Q*iS=M=evE_>VW{j$<|evMJi>IicU(6{-h98K=Duxp+p zSDVrmc*T!u9T#SrBv>L~zOxM%;$POldb!1;S^pt2 z*NgSsz3!5g_u*7otVA)k(eCFGW%Jf$#V@QeBqrD*+%136H0;SpSRiqA<>9`W;=x&i zF^(x3xRaX5OWjoo{~4u%vS!2hrjOrmrrBs=xJ3E09o=lmt#xDk83jpB|1c~Sig&4H zWJ-Lf2-G_L&dxSOaX=BBxbGRkrw+c}^0n`l-uJhroG)CH_pu`7ldD71n)2h{147QX z7<^X1cII)<({)h#2q zpxXXA-xw&++pjnR@Ay>)#UyDp%-3+#+W1=w^;w zq{ARhS;GXuGW{Kk0D{5;6ZRx@034YX%ekx#!F0u3=6z6dtFg?fPGc-3vpX8Z4*>ov zObxf9yGO5x+q3nDWd&OHg!yOpTHwosN?>ymTI|0vL8f+W+O#>m>b-)zVbAe{Wum>T zs*Yh?+zQuu$QdaVM3V)dV{Coi@Y`C6#6EtRNEKo{(4yg^dORUJ%>FzR&oc&&_1F(Y zDKz;jjy%Tz6EmX%qE}I^rPXj4DLKYkDT-rMl%)htgnk+4F%norTd}NQwUlrlwCP0p z0;3bf>c0;16k^77Juw~QZNH$EEI#p)#V#=YstgH4za57U%Ovem&C}Pdk>!(N?Ujta z-|TbT3-#`pn({yi4Q@2+S_B$(Kdd}^(rMgabOYG)CiJ}@t>9$+I*{l4<9DicrZ;dT z=Z^xkg{uIe6%vcX|-=nYfn9``hW(s(%8@8WP+fdRgH@R55PS;k9WRw#U;nNk$ zaf+Y38t-^HQJ_qYjZ0862Qk%#=f9<|7BtE+Af5WJrf+^~dZ&SNg#;oSz}oL(b*lf7 zNs}@`dE}4fI+oox8k&GK!qyO;n;}7B)~&CzC(Hfr)(Cm^g#!IE%F8Ps`om@zWj;%4 z)yy|)-}r@6eX_eo5lu6QALl=uk3SCVrXo(?&}Suvyulb7up%QeY?^XB;@%tsXH}V4 z&2`(zL@__(-5_>=bpMO^-ro?lp^cNhgYiFPfqrRG^mt*b_75-jZ;1L&YyW!_?0=|F zpCl&_LR&_2)p`Yp22mF>CrQyb4x;vCS$z$V;K%Uga*u*pxizhx$Kj;M?NHZ~`k^tr zaLq`oUj!7$Gfiq!4r2|6fC5JOuWGBDnJ{4LEWHY4VRv$jrlyXl{LWJDY}`g= zTyr6M%6hJ%Ys~vH|G=MGv^QkYRsBtiB7suEu1zlB4XUHajm7%%Xomye?dk$WfAzqs zH==U;A^b-V>?p%;J+Q#T`ri8hz`}n-fu?>%fiwhPl=i@XMS;XJ)rYkLD7AG0jxYG> zJ!D`$5WE+Yfs%1qR7uQ6AtL6_Ti|O%N}x>=P1}qhgO7H0&Dym1T;Q$YhO>==C^IB6MLNHVEe(ErOA4T0fG*gV=izcxJ(!S>I5Wf7u`$rQ8JZZwZ zYw9p6Vx>Nq!U`#Ro{Ix^P1NgR{2y=RX3cWrTKdF%^-%48pb~RV6(wjWPkdi|yw^5i9Tt+Vu z%MWJCa@@FFWtTYk0x@A(Ngy0H!H2+3iPTte>ApQ8$RLAIm}nVjR7V!iZI*m+W>7z0 z7jTuaY`|pL=Dj3>Asb$FK8!9H6zHm)` z_iySiUlheRH!3Zl@_}lshAwmR=lx%^*`MC~|G~=rnQag>!JUb5YUF#|38L+Sl(B40ZWM*S!o^=m?GNOBnxXu9HYi$A_W-8_UzI& zK36bB9AR-sC68ZouVpyYRl{@_;^4^FnI#%Ax)=rBe?rBr?pD{?vKxIoa%7!krN)al zW9?S2q<2#@h!}KDm9Ac@zeWuIVSioIChm&@s*VhB3Edp=eg*KGr#pKSO!J4QyS$pQ zAJqu4U-bEPs|f&M?3l7?B|64fTGDh+)Ry`(Pq*>SJ6owOyuB#ufVNW#EZ}b6$QP-? z^{~xe-qJd4(R3EKf9W%+Fign%zGX2H4JKyPvV^u%9wD?i9MU1kyfW2IG5r3P#}5WJ z$A1g~HUAL;LR9$`0(t`ch&}|8lm9+frYwGr<%GR$5WHbl!(#nM2uS(^v#G4SAnNnm zkPCEmzQ{n&Q#v!13n6a?%Ndam_-;x@t*8y8ZD20_zCX-1V9kU6wWf|+{>qSC2K^Jp z|BDX(+UFQR(pS6y1^~E)003b4xA*w7)uHn9VSuGKL;#|$47W2M1^hx|0eM}Be zq(>dBGaLSh-r1{O1fJD&V5O4t^ZNxPB=ic+u@b$Axwa|DW&NYb(Agrlr)w`9(4=rz zX7uSWq_-gskoTpz%`HQa5+<#2fl^@=-@GLU#t%a3$1NlnGJu(kk2?`Tg{)+|{!5^2YD6qVbcUN-Q-Wo3Za z-DXE)XM_~n`*}oyFwA8yp-$z(p`&p&VrWZCa|m}K`}H_a5OD>)M}+T$E8vfp_vY!t zKTBbZhgE77;%+zVdVdbU((mp8NhF#GkFdTAac>qPJx!))gbx1j69ZF9d9+O|w?1J~ z#^Au|e~uW}bSBsd?zJ7z5_2Cir@0TVW?Wk;R`pl5 zg{H~90!=bzxBX}o4DMMf_T6kw*ohmuh*$pQS#)82)Fni=Z7cpRGH#iYbI|!|t{8CP zBy?PBEOD+gJ({DvafJ&6>1^|XBs46{T-0pw?QbJAZ8cXFdo?pW4Cu|>nn40q` zrf_Z704$7{4t!&|j_OU)#w7iV zACJE#)2h8RzF#>bnxACK`M=)l|1oCtQ1>5j>O)sY_!CZz*7^E=!YR~GI0eB?3^O}I zGFn8PefIQ;}$78ol24c*}7JQhhK2|a*cTL3r>p;RIb29xCQ=z(|+_{a0>PlPG^6fiGRVV=C3pHnH-iz|HAjE zuo_Sat~kzmnN~1mcCCPYTt0e_;HD3W*9=`~E%!w!lmtl;qlAqtC_v4?Sv`fYBw$5) zZWuJU_yZvKJrwRACiR=HwI>QSlgOF7u+d7~bRc9VV`5BZaK!7nTiF|*;R_xN*)eHV zi1EPs2U~cv`}G(DaHTxz2d}I-PA2u*GNj3Fy|I1^$ooSbl6LVJ=|v>j>B~@5mlOog ze?@0(5~Q>W^b}o17b;`-)M6Fw3ydq3t*?tQfoLRC9xjI5c95GHQ9iji#2d=RnxxmU%8(|;q8s_gRfE<`}j zS9)Spx-l&@QN#aiRoVN8R+VQ7tMDHp5B}MB7_O`tio(Ve14ZA=hs~0InX$&pH$ z>im+cJ-P4FLd>7IMcB(kK=K*e4Kb_rt0~1&Kq4vFRBoM&e}((UVC>$CGg92~C1blr?TcM7a9T;?pZ!nn*=aRD2#bhRz6nk_U!H_DemGUHZ&7O7DIDlS;GF%HulrL5N(qXhA9vCH^BTP{%1ubiKen=lPa zflNV6J&nRIDxLkEO067zqtf(Y#JGyzsWi^Tf!n-&gLZvnEStqnjBQ369b{%u7yu1V z#y*dDG-1fb+nhdmKksVt!FzpG!^~w$Lf(q~2Lks|m(eKJ8vZwzE)en>J~Lf73Z5zT zdCz!F-|EV8)`(Q^00>Ayu61PQn1|uh*pl6;Vr(a_JF+TlIX#nnX^Ose)LpsO74Rmj zC0U=d&_BXOixzv|8`w^|VadY1xxYu5!?^ks1Bd?5h*sn}cK->bltF~UO8CD)>E}N| zseMV`Pbk#`Xx&L=JWn7=qV3!!_rCdXp0oE~Fy-HLb^YbmaFR|Kk+jNgn|GZRk);#u%4^kV$h=6k}kCQ za@jZMW4)&73r{u^Q`hUNk~EokjLK|oOjyrHWDRbSZ#B63X-6s3ZszJf%_roc-O-c` zUf#T$E)Ll^&Z?K8B#1d6TQr1{B=9L@ZyM@MLqiQCfqn(r%x3!)ci3BaPT7=+pk7DMxE?1?#M~h0raNnSF z!uld@HK%RAaOoHq9}g=-zn6A8D_omeij^>_V^%9e2H||xBSCoqG!Di6DQw)^A`Wu`Iv?niKP1RgtBo(pf$3@85V1QT zZfW52bJpBP(Grt(+jqX?*gYd%g5M$X`h51N6k`zue3@CjC+etcgB`&8ziQ^M!F38D z>Xz&0Suq;n=b7=}TK^|#-B8tZSQSC`K2pt?a0TNS+-A0UoP{5bO6_F@#f~n%pbvNC zlOV1v)8;pe|JZbJR>gO)yZQEA(5+z6(Hi+1J+^US4!yy`qMH%DpM#Kvqe_G zgzFYTX?vjB@sGvBq#cVFpiqSX%&`bd2#AOZO(8pIq(Fh4hES}I)WDrwuC}grJpQA5 z1YFJl{v+o*SAjmxggcZY)7(7ba3TTHaQoO35(?|6Zfq^BxumHV>uN4{;vYL@Ty34$ zusbK#0651kVEGq=Ue!##?{7IiY#o+B(6I{wV6MHbib#0&dcGP$wUpA{1u>Mfw6OTd z4h7$y(I>^(0J|oVw&1V=Le+|x42v8HN*6K(D4l?jOI=P%n$)P%>Ko{_!q1%-IBgcq zE0?M*uG;#Hbc+g1%2?eZ7)VphQ${k5l~swwScNG-6(6y+kMG*0`wUuKQm?v0F@W9{ z(P0fN2_mpH(?sj#fL}dd4{6pzU!m3wD!?z9bCd5f#}Rc&k4(Z9vvXb0hkY4joGg+C zC*{a$o%Fgt-8N&Z^z-zYEtr>z$;IZis1C+!(Daxk7;G=tTwL(n(GG8{%^Yku&6VTz zEmaGt+`-CH>b&~2PecbPP}N__Mw;bpe=VDKt-Miudb`w!lx6PP(H*TLY#cfo2^vF; zj3cJ-L!lOsP(=Viu+u!dGMxiVYT0ksBEB+G++HHQ>DFS{<~Oi?0w_y&x7-X}(UAUoMC%^!^5XE@(RgxOfpy{o}LNW1&4ZyH4?EZ%(C@fr)F8EA}=rA4Vtxq`4~tNO82tc-^`wd6Q$ zH`w7aw&&fS1F=F1s1MKYqqZYyTrmVJPMc}`brg9coarc29ci^K*wKm5RfwcSplMMYhf=bhOpKx%Sn_ zJ%2d#dmTP+GY9&DIBImMDmfrh+vwERc|_hf+ed+_Yx)4TpcD)7rPxCEolNC;?n{nC|Z;6CPNWXmbdobOzLRj$I9x z)0y=^sn9S?`I1fr(~XxV9?>0%Gh*#`6mIJ-lB(O-U@)X{a;8ocrLfn9cj7~`-~1)& zaerOc%ymuX_4`>njrA9FRp}_2N|7GWsh!I`u0&nQ&;4q{j!cZHQil*@&_>^V*n(35 zdyxZbQxv||B>H&38aj9M5zk55luMt1*Nt!1FBAyQmWxk_G$Zz&;4<-h?N)5r$*~+C zAhiZIHLlTV)X@VkP@9{67wB&dJb#ftbKAFmsLcW9SSKF_p%mHS?A z)9CXr>VJRJ&;Ji!p}%%N@bbddAAgE}^skmmL&wNaQ2+JX0iJTo}ZuBNR||JOL&W#GBxAc;hH1_(?;>x#qnS%p+k(mgq| z5#@>aF@|qi|Jh(={e`XNCkFjCsYB%gBwBCc_XaDrUkz4AZrBFL%+%&E^h&=PtZsl} z=GuZkn+qB~IsX0^59yq>qfxN5KlB&P$|~3Y-=Ih!0mMq!QXaTT2KtI6?#3nHP@irI0upt7#%_^rX}WNY~MNgb@G;NpwqfTd@kzb17wukP3$7yQSh4kv$n%VuEH zeyQ8f;go6#T#6Xst+J2~35$5GE(nQ3W!wT**DVbj6w;lG1Yn}}+BL_qh2VFcDyOFz zypwYiK%Sl-J4}C6X zvxu_j!HLIbV&puPcZ=AAXQ2Gik!TsLSucv`Z1#Gcnblzr&6ZWadx@Eu(6jKUKTE4`&eeLU%$o=GChKr-!DwX?|%ypfoUuSG1U0>tXGF@-4=< z74YP_uuvq^+*a~2h;$AAs-Fs60r}giP;X_Bz+|&`3*B32V*o-iPT@z)i6bUY3>^#k^)6cIQ zLl1$e_)~r9V+tvtq;sJo4G`0?QG5=GQt}=cs80GaX}DixuR;-7kZMX;{mJNeAS42M z#5&U%IErenv6C6>F_Rj>&?$hJ#uF`p?KPHa1g%V=H|B6zYG5R|#Nz*OJi>qT9A#iW z82`KD;Xw;x3IEISSpCiM=y>Mv(ct%K3O@42e)v-E6zy+SWs2hBD)cK4GqV4?5kL@h5q2=*sznRM|g z^&r#i^<_|3mlg)ke?_)$5;V8+|7AH6mvO&#Tfz1P#%bEr(-Mqge!)+)3LtP}`ysz} z`LLs+@?P=Pu;Q}hsvXeI5TP)EZMfg=qsiWIoqesrH%HZn?UbBYnw@g?(RxDtd z%AE2uC&GYdH_7THayV93KiR7_G`)y3 zC9rq9$n4&0^Y(wi(jS`Y5JkL)LBz?9z!nNVOmxMk-8tJ=5#jVtoQn|!6BZ@#}){}!~3xA zK-V=+XRPC#2Y%S<7$XtH*IihHD+S3T8cKB}jXjBB#gD zM^+KRHJ^qUM=f^Lf15dg71s_*@;cS%lkiB}4N?GG(Mmy)oH0V)9;pPW0-o64pzzt5 zl>QZa%4ePKkRF}4XS&ys6MY(w2XXl**xD|VC6QW!rvtyGW!S9gJZ@V%he!};Y7#Tx^0_>clgd}<-0-$FGBDC7 zjj+eq$UBa647rTVMD+_mo(>NmSeHJYKJ>(V@iyw?oNiXSfCNui+DIc(o>+J!N-3{| z#Io!cfd%382tBWq3D;ZF@?`gb1=bLF|Zcyj|%z} zrh+dZR^%KqkhAwmrgOKlkE*f2*qoUL{Ql%p@uW;`#yGL)W?F$vawkcF4rhq@fu&PM zXJ8HW(!mU?#S7!Y6Iiy;X%e92i&t@`6`ZIMe^c9`tiui3|4qw(?ZNoaGE#qq1pr{- z`P*3Pe_Q=$2S(GwVT~2>V=EhI$xeWROwxJ1c;m5b**=d;^IrU>Ftw@QPfW}}FqRTf zW1;Zu5VbGDbhk7$b=XuDJ846HfoB>(hP~DE8*4-GCsHB?2!W zAq=J5jqjr*_7aHQ(m)|0#_FaV_sleD6j|xi8_6-_Cxe`gF*|KWed2vf%r+Wq=*-df z_s8?ejTFaEm!s_$w#zsXTiF6%7#?=0+P{P))T_0@%7H}!oqS~hr(JmnKC;mldvN+F zev!SU?G&t&ieb0h4z@{u|!QI?k9i^(wuKb`=#{E{Cp3tOxK9 z!cs4JzRDxeu2YEuo23Re^i3^oqDi3@I;gKmYCeK-em@h}k zHn3BcWZ<5b|mHD;&H8E~aQ^ z%cy@mk`Wz7T9h6XE=|b)5l;=0niYCcm%p)3?%nB-`u8RGN_f|MvT3<;azz}I><$sa`_VR16FcZ< zk8AgL5n~R!dxpP&Nd@|e&PR;!@a|a$yCvBemIcq$Flyz$njCX<2ST5VV#R5$jti1s z5MoF@CY(^u=sd>N$^>5D2HGcuP2u}p)nbJQIFNc1%aK%1C6v|J&0AGYR=K}BWGY*% zx2JB1-xaXP2`rCp%=PfsJH+^e8Tf%FK)OTH>5%PO+~!G38_$VIF^U(l1U)G=?@Q=`&Z~>JgCmi3SrYfM# z-`C>T*|SrHsE;_Qi}3VN8!D4j0$KCF*(CYwSP(mo}SxbLY`W{(zHG zowdE}K5}KI<{J~%9uUl)6b@ALF_1${cCU^aj|L#JRZ~v}og5|6^_izIJH@)Dzfqrh z&0W$vpe})c(sIhMr=)v)PZlyfF>;v z2$QaWIMw=>2KQZ;(L)p~_IU-2^k!rf!-4wB(CgjV@r(=Y3X4J#Dbpk-sj&@WAKTPs zl|-iiq!2|Y!WqYAFVkn!EzhqEn;68;>3J}NyqGgFwdz;;x{j)-c5 z^l*2Xt^=(q2qDPCy(>_063F$Z45(i}cKwC2Bi&UyZy8!IytisrXW`9>P5cw$rN+Tx z_mAvd9i(|E>C8wco`7q|L_0m!ugOWmXA3Yu zS+6bqF)&TT1>h|_OGt(4Op4?ywpf8>HT=7UW+-VwhqNqD7=bVvROH!du-|J`Hx$r3 zS`$2=0QNl9l<7|a>5UM*%mW4D3xEmZy0`8=?GsJ;ry4!L(Fd+W+vZp%02rK8-jR3I zI#b>cKduCG=*5Saq3kE%`Y^5+z(bPX)bdQ+5Pgul{s2R3>;>hT$;=6Q`*`pR(s&)M z0YX4#-p=JIn9cXrWiPb&lDNamxI3?3g|m=da~D%pdC(O8wN-{!xCJrC291Vd@SJpc z*g$LnUU~6ktjJ9lhvgzpNEnoDL8qy!Q-4t1*nV>^ebv@)ZtQ^eW*VX)lXJ4owhH6x zCR+*Il_#Jb>LqTF;XHsDHIg*cR!h6ly|X&km`a?yJ~D)4R9L(Fx~c6UP2r7KpH^S@80j*vdZUM*V*&RWftLbbR)0Ef@Dbp*DWg&Ro{ z$h&b+DoA=)I+o_Q+7&dY_h8jMMky%y+jIMqbv(ss-|MLyjIpW|`AZ|-*s7q(2~>^y zBM@-qFm=#^!o4ftILcnXe~JNW-X*_DKWa_~)k~!70BLrDFAoC#z54L+N?hqXifVCqk?y%>)YjQQJ2J z1CX*OuVmea17@HrE1=~%2AR2KVGX=Yt2P1~;rl_!lj1*hJ)`Dn6nmR7Qxm{+<^7Ro zJ%S1PV@Z^LE(DjWe(sn;%V1_j?Z8nPH>$8xr{{6@Vg55r#%DJZR5#*B@N$*PE#qy? zh~Z=&Nx3H(Jcdg0pJz|0mIf!|)Z^KxuBNiwZ2LLvbrM(E^BjEa?_8+}X5ag$V{DRI z5Tq4H)!p%nd5cjyzpBPw;MB5$9^j31UC6g`C&W5Ui!d9Vu8bJIrmcT=wJe+lG5|gM z+P!Zc&78X!Vr$098V%VJDu*!=LCajZsIE@Uk% z+Or%Bt}+PDRV!g+&Sbz{g{qe%@CzT9ta$26o%gh{Up7;xNyc~NUG7Kw<*KiV>$Q_! z+7WvveYBkW$NqH*$?|U1XIs=_I9l60wu_`8y3VlOC)i%n7aTLutvS&3-gkr7J4@L< zw+Cpt#j%t9-{+rD>a!lR003sLODx=X41mgof0*WAiczf2V@zBAe65T{G(nHwV)*9~ zWL`+WF72mo5KeDmwHgK|A8f$PMip8k2}VYJ`be0O22p0jxbg}E)IB&m*ec3B9fK%a zFe@yE{8DD#qZ0P$vG$-LQy)c0Zgv-}&%m%NG) zBb`vxjwrrL4)$|wOZ+h7^cxu!_h%_M>g9O=QL|X_`ga0Jlxm}cC81{#IS8Y#I|3a+ z+E??bJ3%=%T{BCFlwn2-tH_2YF7u>8cQ}o160voe4srV{Xy?z4@Dh@?8fn0Ws#zec z%hdAtd{$*HZuD(N)gV~(gG5VJbMtSnnVFu1=`aC)bSXi@4#osEge%j*Lq7CPLV&j6 zVVc<}ffBTEf&>FH*l11mD_Z?KoM0@B-_@)YI0D66t;bbMI?`ZMDLFVPs%8qT<&I6& zQOd(C{E$*I;fe=6b(5~%_K#o0SCNBfHxjwtLGo8YNZgRurg^PsT@D~hF=4c?O^b}X zCS3!G{01FwbA!^yQHTv)S42rw>h7Bhv`~9{?D+hV1!(g-TV$GJl3xw0v~(_e=x0W# zW~rf_Ws$z)+SJQNSj!@<;?ljx2iIo~Ec?VgCK|f6IgACf&wGm|6I!|rvS5Ctv8P%l zv5yPGr;UxWwr&l@cQWtpAz@c(BmXYJ3m zoB+d|R)wLGUK4OsC+qboYg;azJ{pO6sh);)NZj5~QF0g{qDbo@BlP~oTlRq-vlLZK zy`0b#^(rH%U$q<@b3wxv_H%iJCO$J!g)fT~OF57s7BTC<;3m`G?sbQz-wn2B>rKk= z=`dnr+drcLHGvoQ79i7nDl%|Ir@bH@2fZ7jay_0j>AW^rC^Sf?&=|zQEp^oamznqv zM|mrIV;$jdL#!tM6k>(zlYV`Y^JVyb%JWPtrUIG4$TIAAQ=)yY*&%#|!JYrC<&=Z} z*RZ^b|28bI`mcuNW&awM$7_H2AH(wO%mm+jt@^maPW^?WsfBYc&n0vZI?VoI+IqvN zu?(=A_C~nafhw*7g!6#SvRxn$5>`===@(YC;gKSuW$l)LyEhSTeR#2?e1g=+s2(S~ zh+HfX22w2pt?CU~QeM%wN!yO&>7h>fO2Fyq`2sZ?M_#eZx0b11drl5@$XbeqRlBzO zYVr5sh+nlFu*6@roYT-WS4ENrR7wMbOhw6fil+DePu!q>NV{`(y78RL&(^3?MTHiK zE~BHoiHh(LWHB}ds)AXNBxYSEI;XPS@8W+XSmAz4unvVW7BY}j&B%QO{GMQK{4K$H zvEX?8F?el_v2=+*To~cGRs3sE9?9>6^1g!?RvT0(w>rvvop0;fCvk=F{udLA{wBd{ zXK!d@^pA7awKTULf6ZCn{`&;$AM5^AJx4oRW3{S+FJzz^RPI0OIi-KpbM%xnnh!uN zx4d58HdnfyRDLy9(og?YV`b4Fjg<P14o0V(9yE7+V&!B$jriyA-Xf~gMxJEr=ro&)r& zp2Kft3Y|Rs8McR%{2brOB-0+I%+U=dt{u4djDqF0|8Z0oQp?@EO5!FCDPrBK6~0E` zKl>_+dtZl*7(%98A!IYzFCvb{SwYvdW+<&~qkr{P#*W6C%wCAKY;~dWzUCxMJ@ner z>&AH=!yWEzT7tcaL*t}4?>=qoGn@_3YY)tgR-ge*d>a+`^eAe_w1r3c`;fe(_$#7ifM$OXys4f#uk#_v|-)fSn;Zk^x}xL5yTIl znF(rpze7wW5hrE#dN>T`AWjRp<#{<=`4&OJDoificsMV1mGcruQf(Q@xAh(Mx4ufZ zIoiQtj_9;%2dJw?Cp%E0B3=E6zHg{(pfLMyJKn@)Ew>b(c3|JW(tJWrSuxcPqi+sc zPPXO@oGi2`;dS}15$iKXvpDxUV0&(KxGurJjaY{maIYLM#dGYA1A$o(h&3*Y`EA5{ zwnVjSS{}4Tq%*wdit5hmg&Kpe=8fNPTZr|~ zi~nh``hkzIN6=5n_56K^^&i&%b7|-I2YwH+{`UF%b=|>{fkIOl$xDmIn$u+2ETR0E zfLu^fDdVWP!9wllHNfjjmopF)C*5`UwM)0xEVyi+nMhm`h<%u5IXgeTk2H)=Wk5^# z$eB)MG%?N^%Fe_k34UCK63?Dckq*zy;;S`LiKR$+ZreFmN&(<1%GSfsS$#TAa`X^j zlGd3!=~J;2fbqrxMs0zr9apJdr?QPy*W`a!7MBDX;&T>WMV>FqCF zECWa^frdq;IzkS%0ZGGpChSOteKV$DEN9d-`iJ{*fNi12Tt_SpI~;%|URv0UT;Tj$ zkG?%N4`km``Hk~gB@_TXK*GOiVfxEEbN#BVa)v9D4e_K5T+vV3T&i*u+_G>Ns3%R` z{=oREoqvqnyqxb^4ob#oY?R{Y!H8ScJym5*LHx#!7Y z$48SJIFiI7!DMcrk%fkzk~MVFSteY5)7ts2hO_>n5T12>xGS@SjEsmakYrhFg%!PK zi3-)%S^hijVe*>7%HixHIT8^=^ZW`f6(S+>{1kLthf?+HeYWop&C5Br7??V2u-pCZ z582yMsbnenHO$gSG&K7MSDYi0!r&N|9(Qjq$J(OsGPC!z5X zBGr~+_a5^(F7R)@)9@SjTVLp8@vxAe)qwQ(#EOMg9VpbpJI^%1a)pKw`$t4sVzVtk%wCxpIxX%kddb&C9f3ARA^!XRv z6#rTve?4to*p(-H^XFdN*ngW?{fG5`u9v9GJFJQ!dLOCYS+`0MhV+i|;Cx*nVU237 zW9WUfuOco)oCT;yjbmi;H+H$*YW6T84g^?R>1;3K!llRj;khyQ<|I4)I2rw&yRuP( zKFa|@5tpH-yOa)@SW(UajGt7w4jes-I*wk@&x~-JQ(WNH4ceh_*15d#+w`Q+ghr@{ zuZq7Ms3CrQsm7Ckqkg6l{38Q6s(mR)wh`nY@}u3dfRR#Pv4ucSEj4WFHxqJFRL17- z8{4p(wJ8w1{`#z6T>(_N^=gf_^M5cC9#IE=9m>T(GwQEw1f)d-xkr)R1*4C;1f@=m zd4%TO=cLvHM&!q@svfZi6qmR?F}=Vf)U_&NbwTY?*9GTZEV(5fY@9%VR&Cyu2SEZ$ zHJYO~|7L_74EJ_@Fu8%=7U1#t4JWcK;QGx1S>+aFtB!<8&NEg7JJwFPFM0tJX6eKu zzg{w9)@!Z%B>Hm3v*kGYQ|FpyOA7`+TJXk9i;uI*0#5IhHFHPnISZgQM(QB=Ho}pN zljk=-0!5x^qpp1q=u)B6Jov-+IDJ##p=8r^IR3b*Y*;M6M|s5QJH|?=nTmJhT_F~} zJU1Ka1(kAT2h=ZV7O|<5ypwb)CN$fRIa=Nu`wKoAKQ7Z z5i@tdkaUhAZ>0VRo3f>N+>cCPk1M`v(3j!(;54F=D4wjU0M#-&?>JRn*8sq%;sYM_ zJt2=|>7@L1$Hx?l-u|2QoInxFN{uFF^BLvBM%?Tj{s(Z#s?xjzW((%E-Fk>H#-F4; zwabGn#|%;1rhZILJ}FP1!VPuKub9R!&srC+O)i(xxO206IiZ(Qe|n5b{8@ z`jWEKpcL%PdwL-05=mYvFAp&8emf%s|2V>hBh(!;&^|*O+?DGitI*jT+LwKL*)nID zEy)zbV>bE@m2=~pLH0#m*I%Q!!YoMRnXXQa(sd0db0gzn=%F7s!~a%?m!sOn7UrdX znO&KlGKUn9-VLp_7g5E5n#dbH&f7<}#2yRM!%p@J?P~O=Y9l_up@FzId}}EHIBmVT zLpsd3iRIBe6_XxPwVXrhSf^gV=_Tvw{CE{wsRkg2lPRVz(ekVTfOk>tFd-e ze|97&kX_gVDK^LIQrc6Mg6jx~xP;m>0^1rhvB~uKEyR|Q6z+Bj>?iCUDP7sP6{B7h zt3Kui-IRMM_1HzjpcXw!q}oKX-Z&?zP@xgg73)Iv#7iTE{u8=(EVh9v`9xpkN}L=P z7B*^nU^PS@Z(2~KFWHmoSA6m;+&SJL%?j({D2>d|E*Uf_d_<)+4C3R%O=ktI!VnK! zw02PpcZM=$(@ven-z2B=uwzOh`qCAR>=IR-QAld%Dw+3dowtH#*0>#;#D1hawb65% zyfyXQZzDAwDR@Y;(RB~r6x%aIzi!E7OO1D~Q<0EX+IJK9sDG^-P!aUAz_8lU#UlrC zr<;>zM2vSgzYAI!am8EHMV`6zCmutsJ#Ta9i2NZ80Z|c=9o7f)LS}?Tkw^(a^y=Q5P1m9=+8(d&!}+J zm!?}!Q8WsTtaH&^?j5ka{^3=n$)9pz$Re%a(>2=34~0>N7Lf-i^ms0VlV7(ncv}id z=HUikk|_-vyefu6?S-XK3nWkfyT@F24Xb%oXMsG!$=mD|xr`?U|o* zz-n%Q9gi^Im`8dJ1Iu%Yk`g@_qJFPOOAH)awQ3v*FbM-g!LMxT(yVIW#Fa%dii4FK zk@9seN}8xFqu_(|SNf51qThTvm#4}9n0H&3L8Y8^BD4Ya7JvWjMcI7haQqxGo~e#=V4XfYRkp^jv2jBjs)4R~9NAM=Ze5o0L(>_cbE+sAbdFt7Z=-)r zo-JEj9w_xp>s+I=wF8%z)KSJ)aGFqtp6m(0xqgHtGv(0^k}fy)3*uCJ7SOR5T254s z+F?FTa)U8~IlH_$!=b(~yBnzQPw!1G3tU)&-}d!^fffop;JFWu$u^mbk2_}#$5aAQDPFid|0QNzusG2WyuX9+;gKx9BGM3v-6F#9n z`UGlGFB_8t$r~|1LDC|Q>i3;U0M2a>(Jd^$qE@aMxJ?Y(C6qg=b_m*raVo-Kip4o; zzoRGX;rYV(?8o~;H;!t(;FfEKMtc<3ecB0cO7?Pp6KkzC2D)s#-59V^-es-x(zTsU zO$K3Ygk+fU{�n71IldyJtA?6{NN`ts#Fct|Q#U~m49bWoqYl_qX z`{~&JW#y`kw$|)B&@uXcEAv5;CFN>O*x1y zs+2{ka53tdj(zkGdrh-uV(6dBDX~?E{N=xHFh%09mmm_7@*7S>E_iBcP}cVtVN=4i zhPm0>LNlw5p|dPQ_vTGSuC2gW4@uRkzmGbTY5B^F2T3n7-a=0{PR04l z3V_B~Bf$C3Zt~ZcWo!r}iK0yt6oOGqQv5_KKLWR8AgUh6U3RNrrXQ=x9@jKM7 zP_^NIgsRJb4^>nCIaIy+Td4XwxHH-Xz1Q?_qs|UY#mKuT?6k4_kHPpOAd=CSEFR)V zALMvGN57=ak1o12>M_!2m$!_|yq9M9i?RE8 zGPPsgD3OcbvfOI;>|V>3EBo?7^&Y1#fBDqc(yWp|5lP_?8GHfAu6_>bETC)AP?#il zt|R^H-owijJ1;zbg|U$bpD^eASoxbDV2(0%*->)OltUVcl1B+*m8X(A{>j__A}aPb z=ECm-8cfWLEsg$hx`U*{NApi9-v9l*hksuDFNU3MWNEBk)Pc5%c~XEhW>CgUg*HZI zHsZi5_`F8JP$xE>9L5bW-M(&i)LwQe3!?}j5QDPCIQa2h{<^y2lO}$_ud6F!RU{G@ z5@M)ekO~=}I|BPwPguhwKJX|zzk*K!;xb|XYAd&IH^j8juQnG;1&PG?)mCmrF$ol} zF7(Tkdw}&@G*8XFXQn=x&0zm5oqQFD$bv*)z2sj^e@Gz_&=cCJ$pC6nbI)F7aLi5} zg{@Zt{>u}`ic!?+M{UgYY2i7y1Nqa{6;)Njj=wHGOb-44=RFvantFCvqJXeYdnM=2?Y2Y~ycWB1)_EcH z;CbQU0JNLZ_GQE~zuL+fQzRAS-ETW_dH0N{-Fjj{l=3!h8Iib`AHoW|m%;q9ZpHch zNF-jKtER}fYSU~Wp{^PooPeVz7;D*3MZQMYr*Y52LOnYIkxHdQ7sBBrwtV}}JR;p*StefU?K{N2>E-=6y2th4yd ztn0p|nhFtLp-i$oE!J_?Z)k`m7bYkXm{UsKC$2qQPCEC!xpX=64QnbD6oY@sAiMOS zUD9>R7ZnF`>!(rD!v9unGUQj*!vZe+CDRdoQ-oxYy(S3oxml&P8)hXD9OH>~=g&K))PSSP311Qs}P6)|}ow@R} zd7Ea%4lD^KsosheD4pIER067BthZUJ>{NwyHh!$oI`2*vP^! z?7Urj0N4SHxHm~0)$6{qJeN45=lt{!ahM;*uY44 zvEY|mhx5y=q0bAUV~$l@o|dRKZWg3LtS?3i;IsVMo(WZ($(TJeusv zEHO1DVhcv~%dLa|54Vo-ms^*AKSvIt1wXe02>}G{G>V`N<6TLS2-GISZ7n0RV1d8PT|f6a8BCqvm@r5LNQL#z3US zpxoF2w)0U}uRiS8_y`dj%bE|O*}U@Bgo?pqGS6UB%z>X|cS1aMg+ui`o}?kc)f;@g zZu2e<2F*^6qOpaTqwx*nfmyM%(Im$PRW56x9MrVLOv7V>k6pL1x}g)EJ}Pt>@e zWD)48+46i1+IV`Z>h-_4u=n4P&R<8JbFIr72|fV;SfKpvRf&JK$)6m&Nwqa=EH-$r zB~>Xvz&Hi%)x%QfGbOt-HD8;=127S6@OfGitNQl!IIU5EIG;=C(N2jvBz*F+5H$^0 zxG%v>U#1QhPK{ET!GKe!fkAKa_kDekNLfNTj!8bzDQgJf4wJ=RDKe)(K_m-2J~n=m ztc(xn#b@k(5ugPN74e<&mm@jK8PKXu-TzdBK;cRaHu}bAhB2WKX@aSC1_zG;2XTlc z(DTLY%)xB^o0bUW?e~oZoQ^$)Wa_|lM^rFeEfCyjluyB%b4ZQ*JQL8c=j=py)|qg& zr0^-<`3AJN0jng{>`JfLIwq!UeYN4^_*SLjj}V0fUO100zyylIE8i-6!XG`s4FcMb zA%^ON=p(Fg0tqJA3&N)7Y9!NV&^Mz=kCt4J&~-NYUv^x%JJQzi@@jP;wGODPbN$I7 zfQ5!aiNk+@;jj&7N6AjvjbBY38!)$uKI~XBw{muN2GyT3K<}8aXGO?d&;}c}v|?>( zZDrj9T644xLTrECpPGEr1M;d;hcBbv_vlav+6>~MUJ2VRG|c~QQ;S0epQvZig{Y@m@HDM|LB6oaH*gHk~6 zmxHCPoj@~G>xAH$fr@(MY6V2pjzN(YBZVh!R!LfXja39%z!1->PvOL8bWX^t37c9y zCnVYprJ@5E%$N+}Edtd~bMLsUm^|L$ty|XGI=bDR?3qzjq{VyXJHq9_x?OrOx6Vg3 z3F{xqq&`Y*9WfM%qWyR*(O#f%Bf@iiqal`W4*C3KX$jxR%3GP6b|hpPjK^U$NymIq zDw3BwCLVw*9Gi$@y*{Pv7&H-wZ}+keWSeb!aT4{I7}Z?+ia0!E!B$vk7l*{#OS3lVnvW> z2o)8j-}@s$jX|g37Bqb3#IgJ(M!sOPl|grN z)BOoef%Z0}5W_i78r>gNay)8G0kY~APCT=;^R<3$=- zcDzS<=a4!L&lVNe$kbeh$`*oDQm@()5zDI@vi8}jwa7cFvnyJ%ED?1=2A)25WWdr{ z+m3B%Uo3~K)Oii%v<)pY(0- zjBnz7sH`$|G7x-5>PER|DaSYr$wMX&nJ&!FV>5^YDi#1#eBUYO@x39HOk?A7L9wJIpn>AaHJs zO4BXU7|zwYd=-kha$)v3e?v-&NozrL{atGs<*H*weBCV;^lKT0hrXnEUv&*|e&FVzgc`&Fd?OoQ#LIK6c03 ziqxc6$gW^t_909s1^0Vfe+=Xc*{l{Sq3_9jkpwhKv`v^sXqY0?wIV-TH3M7JWo_0R zPCVfE%HhVC)=6T1&?O%1P+Uv1>syO(c37InhfXpZ*u^aa$_4{f1H66hc;qoylddK* zKDRgU>hw5Ns@8_IVirf(&r+auOTQL7c!k9_5L)W>EB;s`mZ+ovmI3V52NohP|G&zXd1+j;X#ze#72nY z2Q-GGEI*+(zFl&$=9)HAxvyvuMjw6dc4NB#@xVwIKp#kc1g1a>f2_-B#b0<;q9hOt z7o(}^++TBb8a1o_%MN1t%?>KvV2adcFM%{5VpMF~w(X>1R8+BTn-$we#kO^3YA)`z=G<%VbKcg@d)og?wN@?97@zLz zdG66i@4x<6@;#Gz57oaT->YoxKmCP#uWnD6d-QkmJqJBW?+m$nGA+@8jPk{7=EQTn z>0GX1D%J8YUzQxC^r&L2@ieYj6R$UYrx(81`+zBTm@+Y5aIPt%Dzz?qx*(qMs~dBR zR@AdYGR=PNq5dSGYF2zu)TV!P@%dlL_d`_Xeqf%~!}=Icm{Z@c z7^YU<(Ox4oH@24Hq@(HXiGuheYELy8W8PNgqJ_(I1j;Xf@bydWC42gMBzWo+G3F@Q zt6eTA9UXJ`qU9~E>T^Ys$u)u#Rao>6J6_n|Qdv+i*0Yi0wc`kK1 z;dcbSaT@NYhBrZGZg4-OpE!0psUpiym#C7)30P<@$Hl7Rg(X9vUTNk@NToT7aX(?M z6McSO+LS5zc8Yf&v@h<1_cV#BC}NZk8AS%ug0QQlV>%0LnARmE%4TYZ2)@%rCyg~h z!3(MnE$Re9pNbGMiL?HS+kgHQx38yLizkZAka2_24%qk~$L$@BTpj<5HY+aM5%Ax{ z?SHNMp92PU{|Xpf{{M5pAmjfB0fVq1$4No*idfQGATrH#YFGWN5I5QaO7jM!baL4tyh02q2;)u+OV8YhL?4(m| zb#LaB?R#cnjAbmG{1>~j0VAyn)d1E*XdJEPUKaJ7n|P4-q^43v>^u;K2ky~*TD@T% zmrV;EZf1cddHtCv#SEGF+cR-0E^WL%S*I5zw||S!$+`fh&(Q+H>w8dDrdyKHL*{BeBiwooW&5I3bMc3G6RFalF*h08z` z(zf#MjhvL$()c-eN+GI4n@`>H9N1k7-YCa%96S!Z3)(wjw`q`YcaRlG5E4s6pkIphaOH2pxgMfW7W$(Y3| z9-kQ8CAQ`V1;`aRu0QuRmaf3iHEs8PL<;s$A1c}`F+beXgMX+(&N1ABoBvW7N_sGF zkp3`Ah`X+H%=)aD`1Nz@#1+j{$RV}PYQ+M*mT^oE<=EBIm~n=2)v{sf?h`ARYHnc= z?j~Mud5^cLF9~OV5Rb(Av^Y&Q5(%?qblo!0V@4AL`M1w+K32FN8V`Og9>LUiCHw>| zKN9z(_Bq%PLCq0bSE;mND|-|;upwJ^UxG5Ty_yC;%WU;>VsY@P@Mt+*iEOfvPA%pf zlHnEu7J)#03_Q03DuB+`-_+8G3#_aq+YooP)=2M)2{a zveOE8T{aL`zJF78%uGu;P6oUay6pnvp~22A;h&iPs_dY729e*l&}y$?b(s9Ho1UH? zye*r^33`xZPY^7ge9{B{nh)dQVZqoCS4XXb(ise$>rtE1>1Hl_;DF{1e#66~cZAx8 z7a>zA2qm(|zT|dmaHR3_CuXcan~HyL#mWlu`}y|UM9jndVQ~GQR{x_BOIgn0Co8=7 zzKW%ZHCPkDB&*Gkmb>P6&13>%lDrhj8NI;verwAivLRc^^EVF{qoo*tq1$}8UBH#A zqnXCm%+HT&bZ%*E?mWqTU;W6xARK&$vf>xkH3-b2S2hBi7AxrS2O`Yhk}r<2hQn`Q zcF^eTuX8?*s zVH7$wRh>;KX7|Ee>mmDABn-LmgIWp*ofJ?!06&x`IvHIsnFBk+ZXDa18=PGQgxWI4 z5S%{y9uu_)hNoArJ{bJOcN%&cF)_tLmSe&KX$>W>r=rlg5m9F!O@I)`yv%->gp_{R zIwg-{6dp1_F4ozV5wv$r*WS*F%kS*~_v~rg&WE{~w?G$*$~_#4Iy;V921%eGqAtc+ zxNq&sWP1kc`}8|IIxOkE5Z*X={M6DIOqxz)Hr&GNrJ=1m*Gcr&le4Fnlfyh{6MsPv z^o4*O(E=W&Zm2SGaj|?yVIrn}QZRftsJsQRBx;`&U)I&!v6TUQEG37F*%KmSIX{T} z5-fVo{kVixv!?TYjjg)G$YFuYv=y_v%?9h{X>c4c$=3qr38x4OV{#g^qi`!s$lM6T zFXhO9_oz<`0ki}Riy@jI(fUz*oh<&~$&9|?KdGG9FDf0T(`2$j3Pcj`5K>!2O6@Mb7;uEjp z`MWicgL!rEO9ZL=5Vi#k96lD)Rfp9p^+=+V^WD;eeFc@6^g%4HS z=4Be-h9PVc8h&G)!o5&fg8AC4ONkeX>nC53^wzX37?orm0(#jn34nzJ=Ni%lu)}qu5&0Wmzs;Z?s z?)3}GJl3;fiV~Q-obJUSyDb~eY>SWflKXPQ!R^!@68k|#I4hw+*N&x{Hmj|C`NE{_ zQ!1_&Ei9l_`XbBgxc~;e3S`r4uyu*3ymQrUeS8NqY7*N0!dA83}xd?vu#4cLWL0>e{W6GC@oM{rX z{iKYx!-asCI!gfP-3A;hHiV9h_j9Cg^UZylLc?3UDV4;F($q5!$i|BEL}x>ZhIFI2 z*-89lO#RI6o0;UWh?Yb=9QnFEZZyTiNcSfj4r_tZc9k-NGT!KtpYczN0GTRp#Wqts z2(W&$rHuq>E{|8p{Vt6_koC#eNtkOzZQS65pWPuSRY)ne8c(e>sz$Fopd+@`xeTAu zQT7gx8Q)icHnLcbVa|e18*-@-HEJAOA2%LbxQ4aT3kh?Mp2ymZPU@7@d36(4lq`sJ z&{nN&z&Ov#-QPPJ^uoOD@tN7m+#SN0?l*+hH=~^96*{b%ufxBdIN>g=IkBuJITk}G zJa3L1d8liZQ**$b24ULMK(UvAwAyKN(s*r&w-@k%T}`Ftf9W9$x?E+q*g{(`F$n2g zrF)J){IO%d=*RmVx8c*djJb%;`8{&p%?U*Vypi#_#-n&9ZT`w>k@gYsg`%)>h>tzv;j?>h?uY>$=;!@S{5g8#~&iD}?2Er-R$%qT4Mep51<|gfLDt>_Ot8jePK z2Bt>#|D})aV-Ecv11CN*Q)hqd(fG&3|8z3{rHOrnH5^nw6`2Yo%_KHxH1LJ@eVoh{ zQw#;lIGyJ|(EpcQtW}E3C8szr<5$ZkyynW_sT$S7Fq(L2$$1_E;NVy@3D`kyz4t5#DmleSJ34d~rfx3wtB@{l zo^-G=FOolJ`1O5d4_}hJ`I0r7gjlT?I^T@0nC%18pCC-WL9%Xt%Er1&jTTZYN#b z2ysl}n66~nBBOx3S3MUAWCJ$8sf{ZEb~Dj4wzhOWTDcVXt#+#eUR{AjIy2<2^#6&! z)Bn%^LjNBruzUBPW(LL+sIbBLNMcE1BljTOc$NBo&PDsTq zeiT7zb5I-<$kW^?yDUi)CV@@4f>e~_Oi@n0ul&c+J*zV_+gUn#yXn)uSPCWSZ%230 zUq|LQpxnC#{)|LTi}@0(H|-?E{VlVg@%~%fOB&tYQsP0cWd=>*G0P~ff|zbX-qMS6 zt(d&3)%4u9J0@V+)QkY!g|x%SCLBu@-#}9p*^oxfEFza2-`Jhl{NCVwUnGBp(!2hd^6}pg3LEb|=9EFeJ5>rWwLq1;PMo1!`62O@HtsQJO3L zgKofyjv&o)*a-d+n`elgGx4Xby(8-J3!afyJ3-}X+N#grEjcHAiLj9&%Nv1;z;`7p9}LUC zKf`BSZ82|y0stT({GlV`-)-`b)paTwHY=>i-uIR4z(9+%o=fwMd6!4dUkvb_xChh_ zn1lEwL>rXFXT>Nhs`on2vBPS1HJ00*hms$Vi|Ol>-kn!cvZX2?p?{rCYBcBWv? z=n>zA4@G7UuCC_H*iG!C4rM+;WYj_wr4q@i=Z2BvVxd0j`^MRhwcgDoDF^i_*OPP` zpkf<9Apl>@Lz@8#T5r$xp^xO)_Snf+Lb$7^pVA7jzpio%p+4KjRc(C>P$P>ufH}}; zjHM`Ig5}E^ikKdoD3?dD%?T8NG|rKLk>QAc*IgCTrg<-T6ld+4w%}S2ZM$75@7n4YT_0`V|133=P8>(W@4-NAbgnpgM67-FD#VBjIuB!|HheA2sCr z8hbjPSoXEz_D!93Vcv~V-iO~2u3$J~3t=699yel||JOND7V87Mf@ z9Y|&Rm>Mz)KNxDXZv%wT288YGn=4V^)OJID>ckhaJN-6p*q$ARUGaTeSD=crr?XxN zhvj0xHzBQOKFWEkQPyW&b&92OT`WWN7c$k;XR#G%L5jK7VxOySQD?n&4xFN#hi_@q z*(ghIO#-xR8s_htTB+SC*9^!hx139IPh3k?8sYGseE@64At9xtCSY?d_ylc3Gq z9UeMlP<(Uc#CB1cLYo~TPI@vzus>qf*E)`LbzJMBL}P43BTpeKwm~3S7dftn)cp}b z?h}aKA8do;B7=SK-R`A6an95sT>yb>L$!0!#HA9X@J6j1=~A;zz!r5kACQ+ zWYOZjEg)5i!u#cRMLxCaGtT8{!gbMQ1Pu$FgDlD`JyfniMK%rl7Oyt!>5CGkaczxPd@f>p^v-eicy)5i7QN*0Eok8;3!ABW6y83sYvmn z9quWQE7b(Uo9V~CER!#kes#>#lt%kjR=-3=9T`Y3}^{V*(Y1Q zjomJ1o&uK|ZV++acDOC`8aPF3?g{ZM*>DcH;+veBoH5~5lTVZiq_ms&BX{2Y)rlJl z$!Zmsc(65%CtL<&^OitwZ~|Vtwyf)R*$!-IyQQXZ)~rqxD3jl;FI2J9=vKd2(_1s% zLaY!>4a*1N7nGgztbT(HG@12rk+VaJY}o#3jjUeLRNxwhU;qm5un38{X9jX;Ij0yh zd&W`dReh?B-Sf!7{cv8ahQaCLuFm=_5-%L}Z8bWx#HgWUb;p;ERr>5it{0vTQiP?k z99zDZs$Fs{YG}Y9%D(dsG4|@Fk?Ct|;=cZ#{BB(>wvZoCwZmh2?3s;1dnwJUI6DOSj@}29lk^7OV<>HWn2j ztv!9)>8YqQJ~kqbyoj1ssbQg%8JPfg!F@*%RXRG(X&&z0Z{~Pcn_Rs`9m)>#LNgB#c zqdiV+mkn2b$mQi-Z2TW244AYiU6|>gSB+;ATkeD=Phk_u@Wre)lFiK-di}6(&BVR_5m< z1k+I*p$>(@P(5C}W~NvB0UKy{t@4ece8@F2cpdEbkjaMmN62JN+v+1^vXO3Q zL*SqHE!GE#VmVSoWPAZ@l4Ho5L*TF!-6DZ5J)Wq(0?rL;-TzO_1Q`E*s7&nj{ss4< z5JE&&`P(e6g8bq6?e}H>r?2q;Q+9&YWszFsUy21*x4~Z&3$J~yUy8+?$pgKK?6s6N zU`Ip6GQIH=3@JJEr41zJ;Pdvb*e}7N1m_V+<{t%%m0yBI0k7lVNiUa<%UHKMA@Rbz z8IGdANH3SY?&Sl;7>>;+1Z{NH5axo*c+qS7(Z}zeq0?>Kp3i zun&bj?U3pUIMOmb6fNsSb_-QGHr!{o+S-^~7{!++!ser7gAa8(b2v7WHl|!{=3XFj z1QH}`ca5^o5;o@Pe-_5V{j&%DzmX~k{@b3-L@BNPvYzQM+d75|DQd3eV7DoV)GW|{&uZdV1Wwitw>eE@94yoQEg-O?! zbl&m&c|(h~<52y68oB1X26;1Imd{uOu#$f%!qq(I+>ThR2nr3LxY4F|u|F=az-iiN zi5b!~B%_jVi`;r47iC}wWt3})7~BEr<^(2)(5S1Ny$j_;$-t!H-;#?V=v*@V^vkIy zK`>yY3^G~Pq?2sJ5n+(%Ef)Ou>9;t^N`)O}zWKf_JLfG(tZU`U$?nXz<|)>WZ$566m7Y@6~&V&Y(wY{B^iw`;Sv z;PQ>}<#R?v?QcUk#h$uOjY{vH+zW5q>&DulEgk&JSQqj`3aE;Y4vME+hqe*=H5-b0 zl7aT5b{D07HjYz{Z;Vx}d@R;R3@bqMaIJG??@O|54J2zT6|vejVxB#474dlvR{g1S zs$vaHEvbHs6kWVF9S_H0_b2LuaU-LEMNJm^@#gthYXpq2h(kIhIvw+wA@RRA}X~rjJ zAEQ5e_x#hT`}b-GnW#8n%Wqp{|2FN^|H<-yV#jDWEQ_IjuwxYEf(8+7S#8+wz*ZKs zAy=q3rJ6}KN<_^4`UT468g+|PUhX*xTb=mD0u9NEi?_N(j%N0s(k0l=-%!ePL@Gu1 zsC3{b;L!cv5h6*paAT=N(uBl1oYC9V9M}MXq6c;|9MC#CNU11ty(=4)C$wJTFi5@%J=X! zN(8aHjrd^G7@rhR^cpT&#(~k*l@t$r=5SN*%@elI{)b+IRkHDJWo{SvxUQU}U^DQK zgomx0Ctynq&B*@TN2VefYtieFElUw=yh1}h(ttxx$5&=t$)O!HPPa6e*1%Epk{>bM z2>b4opEvoEz8rxQvOHo4Q1Z2Qkx;eh!K;TnVogROhKRP(g}|gt`i4jt71$9Jv0RA_ z8ihc}o~QdQJGY+F_6q6IOs)u@*Q}V{Xt$fksDKi4af7f3%JnlqEq)J*qc%9INd(}e zAA%!DobBF>>o%MPRUSO`5=uvFF$DR{0oB{BjE#)3jPX2@K)jP_VzVCSf!P@YjtZfB zZw&*tu0z@wHP zydN1n!p&<~G1ubb*@gjkI@RmR?u8zqVRiL^;kR zkU?AGqYN`3IANsl^JAD3WGRa8sUt4{%9Yxb_+oRJTJN~FgPV(I#VV|Y?}&uq=@jT%7(jArK%ECK0IX0z~VPE$7%2W`d-3? z(r{ktSkgBJ$3Qx7zZ=?E8upMxgddjMwKTDIK(~{<-RP4NU)?qcaACSEqYR$r(aLZw z=tYlv{hxqh`_(#4fmpTB_d8e5sTDio59g=aB)TvuuJu`tLb$JCMd|~l=g6VAkHtUj zhm65S)GucD(!du3gCI@BK%C_5 z*yp03&E}6G-el$Ow*>U0)ev-uscz7;+lbbHjI>Xi)-?_Iyj#oHdCqWH7I8mEMHQ~u zP0*apK8Vbf=)O3K@7I5`cLI(1g441F1E?xkyM`zvtbJg zsz`gFAt;F03MAUb1L(M?3q9d%$b3-@lPZ_+GPK|Z_-C)a%}`9M72=A%Q(8TPvn=;F zI+30>U)f&pU@GKtmt`bFqu+27Ne>5M#1rx!B{L}FNFrxknhUMf1@fMG3$K+Hf2%46 z|EfRE0FFlOo0!rpDu>W_!x#_0K3wwESjQ}2Hd8w2s4-joRMO#qkP8;r&be*^?#nL2 zz=;C***p1*qO|V@;Y3<(2fu#sNLZQ_+^%S@^Npf*StSD!f@I2D&r4Ab?6KKtfG|05 z3%(G8OY)%iTM^*Cs6*YFye$lJ1+o2@rGz7A0q^EclAW3;ylhIgY-*gS@YA)>um*}S zII`wm&=CDx*t|Aq@~(iuitBFcHv4zd<&ofN@kYgjm(w>sFGu+LHx&C8ZE!Fyajr1df@mNo4S%RHN z^Gdogv<(`+mp$>Vl{-(=CgswfcVKkclV^!3guZW^lq5)SqzA3hiRVY*;j3<@dLDEt z=CsI)r{mkj1&~Uo6!^+(h_=~G*{&w!N5LTZF?s}5x-&P4CN>@@1zF@Hgmp(YU{HV* zI6M}#1-DNVPfdxU|9Yq+x$mWn^^$=XgGrYi{WT_`5z2NyN$nMK*HlNc^`%&!)1T*E$!k!I7*5QZYhy-a?*8wEF zh5lF7CiT|uRhw3z(R!l>e=!`{OX?o~s@fd2_@}DP4?OdO{XbW2;#3IR!{I0M2y*$L z^FB-XN=*Ec421p?bN>|sVy8#x?KQPy)1uAdRqGby4SS0JQ6l<-Ri!SBi(CG~=a4+~ zdkkp98~y{&{O-k!OYKS1)amtbt&kwNWvKk@7La+P(yCNlqVB7->?f zzffVwAbOm+d|5}CH>w{1uFXHFFkA6GK)iKo7{)Qg6L`PvCR(+ZK}L|L zb@E%I@$@}4YrxMwFE=P>Dc*sfAO%-6QJG^FZpT8E>~;z24F_J(1fyhi&3ns`(^pY{ zqAy!Qx6+-Fdky@8!l0Onk#*$TYT?Eofb#oOBqcLr-On6GU+OY_rv{tKl=%~$4TlR(3?S(8W<8vN;N!7x*Dr24!yH zj<)#3hIfGsA{`n%;AM5Bf6S#$pQ2PDvnovXt|-l)m&Vr-s|DjmnUMDw>{iZu`Cu|f z*_D~Edn0sm4Xn4yMO6~fkK8OG=mL;dCJn=tUCFX6E>YxCS@;qDxgTlDh$bjEJn`Ta zY@He;e>8?_AzP9WCHG=6$Q{r35YL;sCZX$=_%q_{ALw;vR(dA?Rj)gd9$K#WbG`2O zW&cO7`~Q?)2b*t*75EYVu>y(yi2v*r9CB>{BCBTARetUb;RyI{WB&nWo(pD}v7zVJ z3-wW$$o2>Xng&GwVg~oN3fg zmw8+zESs~QnvXt zZ|>B^i*lwk`TfY&9Z`Df7WZpwFpAf*ELLt>C z4;wmzmUY|}jzK#A#PIM3a^3IG`~Oa^`-ipvBG<|7rCcch0|4-V|Djy>&&&T+uKV@( zzh+-o*x}osRYtRYQ@awT$7rNlZ^1qc6VNOC@YJZFG?BzP$i;ErU>Xm6&WVf`j#$m$ zT0al&*zS#`PF(Y*mSE&j&`=!~#e{u&kF3g&RooaB3s#Po$Ux+LR{BQa83QxWLkTjA$sxmo%+Olh`lUtj9Ia2pm_y@BK>M00>y4 zyl+VaGtuDeA$?xpauda(k!?C(@on@##JCJ69^e_@4rRYCjJ^9OrLF1-`(y%O)y4Dy zLUmtjK8r>OSNfUP34o}fC4d{Pr>^x7bN3m9V`E+*Z!#$_sCOtGSuv5h5oVt}AoP?~ zo_w9YISyJmCa3}V%&VcBmq%mX<&EFj!1beRi>E87kq$=N)pss(H8yb|3m^L@ctEKZ}WHvYzH&flZ|Lj+y(0fvSSw3Ex8Q$~KVl zsOCp(a9PMFe4ybK5ktHH_)ap(T=me2;hHNUpR_ja{QDm7JPN81ZO%%&DI1qsKw6ue zp(sZ_Z{j?FqNWS8rJ}s6`lD&q*6dp|a^n+@&AfnaCN#lU4{}9?uVskpwU}>$m1gX) zh|A&HJQYvb`g4v?b}tJ8_0GjT#JF|1Nz->;~dRYKiFWxq739*!VVu=G7BhcJt>oH)I+Z47kIj)Yl8_>*nI+CXnoAR&>l#e z=Tr02UUj~Gxna}3EE@D)ezWl>-xJt>HmrvF|7FYxM-LCQfBQ9ch5SQH)!$Y++5TOC zSJL{JXwUn~#SnlR-~nm%Rh-GZjux|NOxv_BXIT(({K;wYp9zRcVPO`U*BdrTIlSN5 zKiRrh3!g!oxP+9}c8-);-agY$7=nIPgt*awG~g$*&3BTd5{*&Q=s3Q2xL= z;p`PmcH++}IgOf_fHg_7%}MM6D!xclcTaq2<;^hIQ*GRmr^!f|dy*(mp^86?LRx>s znC!oGZ2GqQW>Uq|Rf87#RAVtnOwvbF6 zpu5n)1#QF(J>wX4SL$|r=cah_IX%BptkJl=JH_V*D)>XsO?+)ErgORRKuDw&8Hu?O z%Zl$us}WmoH20%w;jT~R$`N0w>8-(478Wx5(Y8z(JCmh@x3hpdy<>+iZhZEwg`~&p zY_pWwIsjLTZ{JC@$jw~>5@$2|4p#MGmY0#MCe`Kk6ZMt+SXelJe9;o}{IY3M@l*Ig zQcJM1xZS}O{LRX)TRtDnFfKp_kAh7*=F>@kH%8;uL_FJo4|Zl5|4Wq*OTMmSy0I_e zFurXeXsY~VT6W;U6W0J+d?W~_%a@_8W-RD-n0&5fJH?9(5*!%$Is!M%)Fw!(pOKba zi^dpF@g-R+fhxR;VhvgL2Bw!}pwAFTx^O`Huk)cVs37TUmYyQ}U~1)y=DYL5IW;+< zwrhEc4gqC*c0Igu0hB>wkg+od2+T;O>oz;!pZ5C>>75RWSJGz&5S_!Gio8?hs=~7v zTb6AgMGcxCpV`}4c-03`=lX5qL$z)7t4nkMUa4^&(E( z=ypuI`l6>-n3odndC>CBs!NCTQS5h@TUSK`oRr*3Yw5_yLP%@pqm zT67%-lc5;^$O>YsmrPw+CVDwCEb(!37mn%t^MAY?c8?vE7TVL?r4Juh`ZtF@ceT9{ zx>6YUSf-Myf_tAwuXq8b6Tn@YY>nM%Kj2<-pVm9zqDEdfa82l~#n^t$4a>wL0n|tm z9Zsx-T370Baa-SIJUihy&aQty&93L-HF4Y(AJYMK31L`YXX35ym7go7?lH$%+MC)~ z!x+lD8=Bom{w{Zt|7h@<6i6Yh0ayNK-AaG@BJ=NWK=S)aoNC|z000I4@CM|cm;d7p z2$qGz3hPy?Hz?4gj&fBNL0Ew zq1R0)y;RG7x3$fxVXVfuvZOY3Z^!2tU~tTCf*Y+$`NC&x zW}9GAMQy-+vh(?he`_+*IM!J*R=Z7~!teD%N_MVE~W_4{BQY>-= z@Etp0QjduW2)GM3KQ=8h?8z5sUpLggslcxQdkW4(@}D-AfE|Lt*!Aqf_(Zq`M-@=X znrxsCD%1vR?T_pDUB6^b_=jfEZiASr0nulju|fzslc>`EAcP}p!a%KEC`^*kX=^bQ zo!F>a5Z&JwouJz|>HTSm(OcGp0I66d-UEOSEKCty!-6k8kePaN~B=xWZF%_w)7$8KZLhyr7eo==eDFcr4hcF!CL8j$$ zcjE+=g*e6gbpN@F5zL1K0!B|7-V|dx1#Dp?qT0s!9=FPb`?V`0To$M)gz5qDRd54= zP8(+$HIiGvIVKoDuzJwBBHp%TR5@FJV}!~18X!o#1>DvdEFiQp5QJM8EBHCUj}Dce z_+{#1DI6_&LVB-of=*^U6E7WR;N*UTU*U&on@#n_`6wOTjy$T+*XWc`&!Kg{t&}A6 zPNwU34Co7?pU`iBglybKu7~q|(Y}lZIGg%K^;|bTas4S5laQ8M`t8beM&OXB zmz~bj45KDyXGV7B_^4vOk$Y5k(#CHLQ?*9$B1UYP-Gi5ult;@nS7KkRKi`jH5CQ8! zGc&!q;Pk85YBWaav~hN_Poe+ZPzGDDe69+}(5HBVQF+;(<3zF_goTA^Iu&H%ET&C- zOu)-CKh?I1^2iYLO}e&BH?pDH_ zNlXgc2K2eXJAzI39OcMh#CeY;+n!+ZzOE3N1;W(ak+2HU?}hX$_TeE0%p+U+ti4*y z#G(eNw-tg+P1X=MtQWOLr$S8gPC4@B+0bt^-<(gP>XA>8@&{@8xx`~OucI=u#~kRq zsZqJ%YVBVu3~*vD6$6KIxkr8u_Bb;w^SIR@o5ER0Qh;^ht3W1uEy-IRbSEKh;TEl= zZRyqQtjCGQLfE(_Lot)slqUHk4X%`@1g;%sU}m1N7_-9;ARrrr6w$Hb$nL z-;BEa_V4ZJePjyW%_!V&|K5&9N2X-njLOtw2=8k%Ja~8Rqco;y%v3EaCS`CK&gPr2 z42rL0q_wjz=h@UpdZgA@NDJBIP{Tl@S_Vb{idIATGVJ080$iS2A&x{JZ!I>IJuDz{ zjwbnLiJ35k#AW~&0njut%##FVwv-3$+LZ=k1Xzu*%Jd{Z!zx5gW5bp%&mB!`yzWTE z68gva(SlHB>)R=Q<@=Uc$1Z>(WTp2_Ahqkf(jOX_gvz#bnjt3;dTNE$`%`@yvpjPLBO7!C@P7c+ye^!LOXMc_zVnE-Ze$aCNl{AQ$4 zT!KqL@Kik@@yuLL5_vvk12uwJ&={d}X{sZxC(4*AQG#dX)`EM3uuD7Z3cn^aMerp- z`gbba8bUpdj`G~}>OjfJa+hr+eBC&wam>Ph21 zV+1g~Zr=?T{d^6GEEsXapxzGhwBN3*^#5Es=Fhzw8-1^Kg$13HO3;u5nIT6JlI>O^ zI)8#5=tH9F3A_)|0e8t>6=aUQCjbn(^d0#Ngw8`MQgIJ90x60_-q)6}?HGPqf~pz< zhe5Htv?@?I0xYJ60Ya`j3@f&95)A2sE= zipre_R6lS|#?<0DhnmT-)RhpHcXo=4S@zl6xt;LxtHV)@;+#fBkgiuMmZG9t0?jfo z|60E0sWh~ZN6Kju0pLoZwk}_z7fNIu0l$RE9F|VKAHqV~CkE}XS~JG&W4W6;&B;VN z1@qQ`G1Oo?Td=G^uDclYp|9d)ah6tnLfZy+Ojw|*zEz@2We67*smma_q?opKOn`jO zJDSZ@iJiW#BVo9y^R;>BRxIN}aP;cFu!&?V*U~`)wWZ8OmTh*H2*$oca+oCI`9OxU z87+emGb(LWd|>B6v$&8l$=kS1@OSOBCtz#sz^m0>s+LXa6Tm*eaZZmLl~jBL0$xzS zIw*ng8Jwlb=#gY+k$UDur^eJ zE{l7sf3~NWdT`aKeqP@(Q)1M&?))_4G@J1d&Uy``U984Y_iA~h-3W5wO6SjwMO&k4bBT7Vc;%O3JCS+XPs!IW#FI;(5jT{+Fj>o<;JG#n)piNetCFaat`dx$Sr>iexxoFMLFJ6#h!WIAzSQ2vrHEA# z#Jz2KNL#m(%BaRMd_a| z%Si7aXOM5xxhT- z6hIjRUPjK4wO8iGL|+I>I%~t7TScGO{)MuNDbGbNVd-p8CyX1FWZ3 zm~r-zJNDAy;1f?AbX5&C57*wBE^?NpJH=%0V z4CHp(omF_Bf*6{qwXQGrOM7Q?-92&r*g7;DAWQBUc8`8mhbZY4+SS69*eNu$WbY4C z9ZaJ4SIjI4Q8}u7vM;bM)`5>0N?|G_otUUSU>3WNYxgQhR@3Hbqvh=R$oCZ& za4FU#l3TU|%Lwh!Kv952?Uj9so5Kuq_AVs-$|9@IQMGEg6}A8Z_zIAtz%qhAY~ACn zY*pHBJL@`sX@VMgCQH9;L(_-~S1Yhd_dSC+aadVt7~cwrS|>i`)fnq7c|f63wuTuG<>uz`RsZT_ZjsDR-`>_(tZl3=}@b$u#_(hQ$cJVcLWAUFee@oMq8Jmcg#am zw!7VYg$~s#@~6<=m|m9Dv8IR_OGSKBaO=pCf{oS{2+`_mmhs(o**nX;hqNBN_2~foyQig|~y`N|viiMv?e(v(gT{Q0oqP=a(@iz53ueO|0 z_^l|(=c>+3Za1%Oi;k&BUU3G>k5!k1Fg!)7mTTo{*!N@m$1^p;7rwA#8dKu;Ig<8o zB+4V1$zvM1^C9#oT`ZJ5-nboRxMe|~INkTn20grZT1zaoW~lArXeF7i#}Didqxh2m z3{Vjkcpu4fpF7S14~IyYE@_^ZN~1NT5I=ZR6GMjN)O;Q0r->G^xKZd}JyxF`VYW%P zYAgUPh47cOFp%n(sasD&kRpGP$~$Q8F}@(XE=9LSozOVP z*Z!u=3WzhMX(UB?SjCXKC|-9dCz`*ky{>ab%Slk1%!K3kC8EX{>Xvc7sNViOF};Mj z{BgN~-HTh#M&oMkKArALV&&cJ!t6rle|+=*&u9OCfAeqhJyQI?x%vP1+x*wC&OZV` zHI-$ZMx3*Sb9{k{1Ox;~Q+_XIR-L`;JYNjVnX_&k7$d>-SieqXGtlv-x@LqB{J4o6 z1_gSRD4;1qK1&cc-38v6Ph6v?_FR?Yg!;6t>lEB;E<{gR?@>?<1+K(DN^C0GRQ=tC zO2P~^SyCWBTlSL-T$JBDWl9!UDv|1JkR4g;rgKf8#1RymBA6c+yN)7Ku7KiPaiqV(I-Hu}zlU|4-^gDy zb$~S8=QR@)C8P}%e-G;n>#Bc+0xvLhMW;C{7y-Q@qjEhEmGh}ly(M4T3v;#$5vA1r z=8wdrl$TNmj(8T0C&cCga_EB>Df)5yxMj+KF}hEmCNdeK#;YD-ow)4{QftJVIu4HG z%fYF30I|-%cKb>Ij8qo^@OPdCDWB1=N>$a?s)v zQ1mz#wdiH<&U3?>t6I`1TO@5Ke|*bEVAEd7Yn*U6`pSkqU24>I3Tj#P4SOA7O^nho z^!gv$^TBA;y|4)EQO9vVqLG2UZ1SF%RsQAXe?SuzdGPqjxUZz?Dn`A=;7x-6A8!6l zf8G37BzXS}C4&YUf@ID^+K_Lejh4Rg$M60oA^AP>`S51IwF*NDHNbQlk4^pJMbaT` zO!*uKc*E|*lD6<{NIX=kcrI$D-HYX#w*?u>_&~S_MWb2dh-|EfP)gDCNF?>wzL~emnvNSqz?Gk|0Zh__TX(+g_&YORYJ|=7c=G zJK^1=&%ZATRknwMv9-1grLw)g9Y62oAqwW3V&rnW?`aC# z`54yoo<~X&KXNzWJ{Th{{6VAPvj1?`9>f=;GD^g}bb)*nP($%v)#7h&+5*;AZaBh0 zIw9gVgaQt}0}vq};I+}SNo^8^*^FRe ztz@LafgwcPkK~;3ocaZb2sghOJbJYY7wG`D0!_e|K10}Fv zAF;t^&|Bz_`@^?-?PnwP8X`<)+;~Bfb8~}WH}S^C+IVNXkpH0)29o2W5(fXH66P!A z{XbR0z%a!Ovv$L`r~ai9hKkqXXN+}D>t8BiK1k_E>$%dKt4oP3w-jhhIFM|1XTx;?9fr>vri59@Q`2PZqSo{q*BHNzok9zgys)nev z`uHsuQe_J%5>{5%I9H0I=eLoZ99V*Au-dP{6X^Mq{0_T*`~0>ctX2atzhI(6w14ndV$C}!>>ftsM9b;=s=NmtOBZsz?f%CJ`Ge~w}75Aa5EM*5+(H`wdNg}Sn zvk$d|tb0g<4~{!aI5x93zXL~vBB>J`cWtuo@S^`bzeD<;JpTWUG2qYaaR0o=zZeAO zfuDw>f1AYl-zHJ=f3nRVZb0zM+G6>2K##Nu)gC6mlb zq|LvRNATZXE2PLZRLa|Y$J#R|E_pt`7hv&-Ar4|$Xa5B9>tJDmRRpczC+9p?)WAQj zD>*63k_S8cMtQg|YMM5aOKjH5sazl(y65K=^m{LihOsRO*WY?!D!D|Be(!}LXj^sz zI{jNOjA=^>%@){4FU)#5D4p)`@4Yac23XX3IP4t;CoI(NF!ahGAMqZLotsWS7)%KZ zcAm5;;E=3{kT#QXDz>b;^JhML7yM+dhW>YS-lyMNoJr|mx(C-1p#Uv@F+;O$3iMr* zcN*_Uu&0+Gai^&zOdgLS!nAS^bXGTUe`wHr6sqe@pNhG%zj3y<WXFz^Na=!JQ2UZorjp{)`cXsQAqp~5UCamon{ zwu%waz~6{r1q+&PZ5-GmkR(?FPklv+EBgW}-%Owy=dvzp)w zzcWO=3t3FfX$D((5#Ue0Q?hvWhOHIl3r)ovisI0H*M$p`&%VtD_zp@k#VaTUC;J65 z0o;|~&k{NR(fs`Tdns{c4bN9l0Dw}&Kg8Gl`)&S_M54N4y(02^HwHV$VZ zE@$elYArQu-9Eo6!Vp4>xDop#`N017^%Sjj$J%(*L5W-4OGb~o(X{5Wm%GM38O(Ov zh*v&8v_OcP^iais8@^`<>4Lfl>^!nqM<&J#LrA=Q$3uHO&+>ThO0<;c3P}?l0fVkp ze>nvq+36XmSbe-iMqtstm>ewfbg&u8_!KaNRvv)@DIl96h#Tr~ElC)dNV7ahX}pTF zP2m3IFnH@4Gjw)a40d!X5dM?LuUAt+#ob#d`=eW|`vCiKzCo~ttANl4UXTuwC~Li` z`q9``z>G#QiIbz;peYwEtW#P7ouJsmnn=&_HZs5gL-;uQc;7~8Z7w_?n8Ol}cbN|vec4v}11EtQ$ zj-d@Z@BtPL*)FYJ(O~by?FO(0%e}m~IkTttPi>tVyFFDy+eA%4W$a?=zK!^d%!gJF zA)wUcDHBJjkJhpo&JkA!3+C{Xv@3S#%4i8)D3CD&gY6m~u{;~RdKO1k=-ev9Jp4xv zS2$C=MYdLj`@ot=?){Mxu=X6|QY^z%#GE^>K`25$rg5?D7w-st1U-dVo@Ug(ykc8b zL-bYXR*<2hbHpv~Fbp6s$|7vD8h^vlrE})wN6gKIfCZb)Trs>YNI~H$8={u48@nvq zg9nS$L+M*M4Nb$o1nwU{!AQ7Nl$1b$!D+i z0RTyKzqIPKm2aaOVmgy0@sbu8mDNuSVfCRgLWYy)yl83?yJjBi$xE9vlF)9Z)Rx1O zqlmk+vijD0VTmI4*Wj^_ye7xCevc)_Hf6Pf0vmzc)eKwOS8krggPwkz6Q{h+3~$ zo`pRIeXSd&%DyNnvN9vH{^{N-AX2Ft{l4RjU+5$MRGA``pLg{|J`KDHAl-Nncjk*P z2wDv9xi6W3xlY^!NjTq@wcEj_u8ioOK7U~*vWn&=n9zPwl11l_9WIi_s2>#}X{0yB z(c`&1?H2{4J6#MWZ_I_=Z$?w4IhnR{ z4M!;Nb%HMli36hob|v^3Fvs?l4UR1ZEY36*rW*tp(}rx-@g4^J%@o>JWR6gw4^3slUW14_JoQZ{mwl^RD!mTy>dQKO}p zg0?f+JjMV=AwDDE=JT&(umzvPf%;U6_2k-*#yWANmR2i=8+fg~RSUd^KrpS=EV=W~ z?XT6YpICN~qLsuXN7Sj8+>RPPX3~YvnHI_`;1v+kOf~Ky-Gt{XbDy>G7UMY$FWOly z7$`6qwnM~~G%J-C<54_0_I>8$^bdf!6p!!9mr`UUNkfTQ06%V-Q{z!wzkS9vAF%PV z2D3(ric+cSoIRW;GdDBPszoR%mj1ziZI)2?WrAlwX!rH2mKZOvkvK06_S0IKt^T`L z)&cpCPSvDxDe2U&ZTTgQvtGjZ?`S_z5xHDk2Bn^_IxRa*FavVZd2R5Sm)P1RCoKmh zzo(yyB!=u7Ro+K)yl{<%gDG&xb1&6&mB`*Ne_ry#F_}VEFz~F>zciw;&>n8*W_)K| zy2`km{WGR2!~f*xaex5;@ceJK`@a)it*gBj^vL52JsSKKA}DeQ>pQpBjE@ zB$s0XtTm@{g*L#=Wrm1gZo!B*0MeM)h8HZ<)3)%jzjZJoB!aHVD=`>;IeFi zlAnrw|J8+iXiM{#F5JhDF5KUxj~x=Szjom=CM*B!@he8h6$x+s?X>ke1d013H=9YV z%tQIxX-jE!EB52G)h8Ln9Dm2x^LiI>uos2@dY*e}T21&!k4-}w@Q58e1Mx(EEE+yF zX1^M(+Yn(q^OyxpFG>c5(~Y%N@a9S01@dv)qOLp;gDFP(v|}0KSjTXMV`czfdUf$u z&4EbzZM1ESQy`8-oS)JIFnC96zPw@MoGYcwv+^s^YM@FwKE%o?z%u=e=fF?k(b94b z^za}VNT_e~c+D;dD*YvdB3748bwkV&MQBwqWnHic92Fn>2en|@69I`gYOLWs`P?%BIUp8a0^5> zX64F*!ctVxX76sS|5k^K7yrCGyF2gFrps8W`Q8-b`=Y=B8fy>qDB{AhQ>+-bhqYJ# z*0-IhRSMvf=s$&2GXWQ9cV1P*h^cUc3A2V^Tf@n664)_sN=1{s-kt&b+R44nyL~1E zZAN0?!^ZfFwQAFlYvz|{-Dyq$-&6}zqa9i4CMlFT6WEE zLwNx5huq}9FZ~ZVt7u>8KxIdY8HWN@oleS5ePf=sT`aSHaaI?9aaJ2_yc69pgb+Ta zZyU(Z`$Kqywv38V{OzIO|4yN(F2`5E9FZV?cuul2pSU2W_+VFbLrVA^7?%iJiO63r zWsMIKOAWHI-w-n)qg79BJJF;jiNdV*hwu?!@Na~VVi%?l;Ui<4 z5lp)Gr3er#tZUSsB=utyE#o)Yy)S_$X#v`t*>Gy)aL`VRg|DPjEFj@Fau)layl)w}!`-`q6QM(yofjo`h z1AwBEpN@DW!a0fj17=l6&%bB#GaD$(&g*3yaY@rPh3IY6+gCPlM@JlV)(^B7&2#&En$fGd(ym)eEtHrlw5GV2pL2N z4y2u%3nf+;%_E_SN;zJ+GWbjUmNs~KF=}Dq7P8iPY?FoR6dUfn`@}@#Ma1kwAtB2i zlA)*i)ln4NAo0{j)WX`!m{(rRBS6WHlNd@nVRVh91yl#B9=?a=3z_uQr$pb=b0) zAsz;hZ_fx$5O>s4sb^{ED)|wpfcFRpa|qq3jFy49OqNpNnx^cOd2rI78~u8L0%_$% z_6TcMML;?%ocJqp5e8Y_x(=ON`e@AT1@z`WQ>7RXI!tHaCwsMBvY@!0+3NR`+pC^% z=o+G{f|%U^5I?r|eoxzHl7?fs^94pn<6jSlPvJtxy8cYRM)M6~V0MRYOVkTA?@ZRh zKuuyyx6GO-p@%8^RVc}<44ee3l$fZN zkj!zB@v`D&?Byv+A$VgT-mXFa2|cp*a7^ECsux>uH2B)mvpo%Z|E~xWYVzqEhzk*i zk#Rh0U4DMCUAQXK0S+`P=6zA~jk~z(V zg-w#J$)J-GYN^F`_DOiJi=7MPN|Tjx0_c49`uwBamM%H&idz8<2JdFhTQqsbD5-`F zZ|a?Z28fbUP+cuyHe0UsZj4klQ$(S4$snz6!DF9mi1%5!K4Dg!dG3+; zN0_4-_3^Gu56KOxkCxRSAnJ0FKbw9h7gYE5!~@%XWZRlq1KlBhp=%(xL+({(QbB4M z*ZjKSf)4hJ$Ij&Gklq*9lrlsOT*}(i_oZmLvbR4ezWr~<<==}NW|rsBV83nWg#iFS z|DSI0Pr}BU!%q=JpZ&^%ydt1Gdg4|a*VDk;<<^QT75a`@<+L0yGhYq~%+t}qWbr#6 znfp;Oh)-MXNgf=ymU)M7PBK1h=RRLl%q-Xg55-MYLqmbzWKtOM(R7uu{Uxz5z_B;_ z7)N7t2~ad8Fn%r&sba)O1@|s~hRaijMTi980nMfy=N}1DWBMUl6^j8v4fsPaI}-7F z6h8$pF;GxQgh0QV0K_wigg`|ZrdO%VA^r0jcNbZP?GM7Hk-b=mO>q$JDQt9e8JnB1 z5c)>;K0AKSRS%p^0YZ8v0aC9`pa~Rihx|*7^<748UA#QP7+R*hW}p;A9k{tQzP`~! zC)w7AJ8y!}zMKlfFc&of^mS{R9Ed$^#xXRtSu$hd;0?OMOdGrc`i@7S&S9Ha4Y(enmm$M*VZ%P0M0mye|*~XwL_cdHSLPQA|*`Md4y_F%ypK7pt>8Kss}`y zD8dThD@a{f6TzpB8=BUhNrj(l(c~kP!ecJEUk_P!Z^xyMAMID)S-ib)oHU2oXfx|h zl_v&gR zg+!JRzgN<4W(2VDd3warWV!`mCv-U*U@-b@H6;;9!r!i-ra ziOs>ZuGM|bWnU4=--pql{wcg!MC*}&CR(FBhEAxb*Lwfy?rwYT@#M9LM+ z-_`Z|dkq!|YG!0PvpMncaF#KKZdxz_<0xa?%#iZva=K_5=@VKTXZKR}2AAhq8ruyh z6{wPpQ9G)(dL|oQrj-Jt4pNwxCCm31e&Yadk`PkzjhUerR+}Hy$tkWWq)NHSOjUb* z)NW|3tZFZRrh`UVc=Cng;ji56m7Y>$)O0FUfu=@0DVazZfpv1G>Oc3uj^3yYii znRMiA{CV6D0U#Hl!Cl43+`2&3-g(RR8;;IIzlsa{#b?d)EdeRsYx36^45Iij%8g2u zp|Ip4S9VOCqa5i-n`aXcuIozMg|DU7Xkv)Rn#(wtEA#kiK z?+bv^TSjfm^}=UMxf<`MHGt9-Ah}bTqOhficezbeYSZm)it%Gk)ChTwJw#NspmwHl zvq9^FNP(r`f}h|^$uGVtT2d4HL(Udk8| z8@Hpf;$6*@5kEZJzT+yFD$9V1%XA`RI zczQm3)=h4Me5=UW`VhGFe%X5l&A67%MDHS)JrinGf&~AAe=d4JiMZ786G&7ULN3dS zZmAKvlxsop1fz^a2o6p0=uC8s1EY&J&u}g5kF&e)39?SIWZE zpAg;m?%;Tv|5IWEBOJv0PE4XlaaE8pdfLhYjxlm(B5>1H*xk9VEt z9A|e$2z%05e^OE1LMWGUN)s$hK3|9q^fs+t!TF%l>}nkU3C4rwKYge8_v#kzevr-w zgO>sf0D$9vy4C+f1YQiC|3l#Ye+hwC5hUFf*)CNKd%~(a$0U(((uH6(q=lMAh6(E8 z_BzStV(^A3LJqyky1T;!_g(f<<)v(1e^16E@vbt(}dcMb|OaE%iLs8kDj3=K7MQ z^xU_6_*8*XoI(z7wmaSyluyP7L4U0fT1*`-_`O1CIc@z@!y6Ht>n9+xK8>9YQm6V` z9NJ__i3KL>3kn}dGNM6rFH1`_K@Jr0Y45SNflSvICJU6!N&$Lz#=9jy`m;3@BXNrw zt=#Ms0J2i8Zs`M!$c9HVigk1mgUN7wSAyHcSi-9UH!V;^$q6{7U^Y zr4C2wsM(g!J2b9P-oXE3S<6t*(a8R{qwzm_dOljV!Ql@0+kTtIi$9jN{=W3T_<8=~ zsM90K%K5aW?JTiEqoMmzAEfkOWvxMZvr=o?FDJhndY(jo8G0ChH}q&RTJam{It1o1 zDx-Xw7SEmz17ghA%TW~1+>g=F&=!{4dKb)RL&)anG6)p>m_=h3$!(MqCD2dtSq!`V z<{cH(L29~;kq{|i7nbMnrsZ)I<}$rGw31_o3pWVf*&k?+(hszU+Xvc1|6KVO+9PTN zof9^k2ppXf$T*Q|32djXQZIaYl2>z{CCb-IcG-_P#c7nKXnMCk^b8lIws7_WZ;Q-} z!uC+kK`AaVtxIez>cb~6tgHOBL83s{6_WmIdKnqXQs&ORe1qd~F5)rvkTFXv*1b8J$vPnA0_PVTA{XNblr zi&!4xC9*l~w~wMI6|>-&I4ys#`HjA2u%t_G^@jNLmzrNIR?=EEA8uC+siXkcWh^%J zi#w6+&@qwBcn-(KI1m^Xkyvl@qz^1FZ`toyUaWF!cux+;-IoSyye^op#3^X$=jqaD zFLPVgpUR6FZc*e!*`9^YAeC<fk z{`Q%V0ZmX|v0h<^_qtaZ6$C8gr?go~A{=r)mP(uFv$n-X?mi>T%8wQPMhF^LqnG!3 zpH4uc5w&g21{cMi#=-4CBJ*ApR>FqfRTl$mUkrcXLsAAFA3z5`z3iq?AQm@m$U?Ex z-;=s89i}iI#*X^^ju#7bVA~XF5I7N1%^B5>%yTTWNXU4 z5gT3&LY}G!abxp-PxB&(-^$z`xxDc^=>6g9&ePHw5T5!8ddrzTC2Hb~E(EEmJ#%$^ zH4@R6%TRp~fcKL%?v)_m=pBz3oteqtN_R8EZd-usuXlIAX-RRe zVod^!4x**-yrE`hacH;q?wkr9nQ-ZFY;@qCvi`3nB(@a0oZu!MpmY+Lq@Y<>#l_9Ny)6Ih^9 z?8IH;`^Ai=RF z=(x%|BjHna;0kzz2^YkytHU#oGWPTU>z-~`n3@x8CY{L}aTYu; zlVZnd%IvnlUG~vYI|D1G55#Wy484g`{0EEARF-U4y^EmgkT0;B{8{fxm z$o!9m+N^HIv!be@VCF_ymmQd+Pis4JzQj&Zg<2Ppy6aWvch}apTR&Xq-T&YDmi|{= z_2XMwo~F9@5$U((27jol{_7V1psSwpSU9YR#BJPCk!qBX9Lg%DS<1V_`F0D2QC|9NoMm9>(xdxM_I4QFzjP=19uC~xSh%}yvc1=;m$5c9 zE*Wl-S)PHXb$3#+NvkoN9QxO)CFV`p_iqg`UNNH6N9*4agmFLEh0{zs*4MVT=WT$? zdDg-#!e?XqsTz!{A&$*>u<@n0rJZ zdZ15ac-tt))!oH?X#Fx~z`AR^)@*ZP@hk7PUQY_t>UO+gHxDZbH-udvx272Gq8v!* z+H7>s=k3pJ(MvedNDt{=g{ESGUZ_7p^NtG!-9~dzdTxE!z)_pb06B{!+mbT}USg_f zb5KT&00(uQ@4exxC`{CP_SGgub| zuDu?)d|dir+O-HO+Q3d|3V)V14-Rs0IeQx*B=tx{Z3eUoimTD&f}QBx|H`#FW>jl> zTjjk3{}oGU3r0#I41SR_qn2L$nHunJT}-L9vlDMM5aUoCzbpRqwY$Inu2coMUh=q6wxN8F&tANW8l5QGXbz5sSpn1PH(6xP-9&fQ76mFR-bO86~d%-g& zF1+z^SQ(M=%R@uv&o~*5?jNj!T(?GtgWf0q_Hkowz$FoU?HE_a@K+`AJKP@%8`rMv z2R8r)qdr3bJzsk;&aH8=+gFzFU)ZB^zQL%1C)&1nA+_R$P=tJe{GJBgMTTJ7k@Ma^ z!Um-old}_hsiT1F{$-7`dV`fUhVT>Edz(Jqs?OAU4f|cUr!K;4Xq!|Ie+F)H5qhK4 zdtB&J$QEz<<-w*s_vg=E`)Ser112Gs(O&mY&*wf5=QcizM!J!eouCqMGobkN6u1C1 zJG*|Z3>u(WuHoc-ypij)ZPju@>bWytukDzzx%SC=1E!v9<9nyji=4fmtw`ZHLoa3u z$E|~Y#^RC1;f{{Zv1H+RU1Xn&j89!YFy1 zA3?xhao2+Kf#(<7Pu89#;9!5Y^=ABzotaKpV1q?(#PC3BTWF^qeQfW^U{6aL1Bc&m zKCcHnPzSbffc!c*zcH^z=p!>y1-8|Cc@YzM_saQgI)s@hK^ww{KaW>2Hf)Cg%A^T$ zQ-$Fj`4L#CKHq-kQ>zXi>Yh99lcoxsw6G9iAS9ho!J<}8rjYS<^l0W9Ejr-u_TxcED(EGc?I7>0DbpPW-9)7ftGp-5K1!1_+ZKCLLoO4lCQil zePM$jDxk0rwO^xm72vT7QsJ~9CK~QlKEdsAaRv430QbSj;OO12MMbmzBoHc`;Dq6C zneq4U$RZ^uhNlyzU~7X+Up3WnfwN!3ZL=y{w73-$U=I*$3e5)$cBPh7rk1#;OSk;2ePSd@y&$|NC6elAl zp`c07?<``)19XBy5>kjz4A-}uIgyGAVrK|Lt1$i)mWm(<0s6bU3Zx}evM5_bUlb{b zxzoAJnn3R#ZMk1I(=w!j&uJa)9vtR(N0go>*ZRhO&VQC(3c!I}f3gViR{?Bp%q`NJQ8W&5a z%ujQM3>)gq^u>{nh-HwOawxSmP3oU-`HuzUKMg5`P$J?qH0lsKy%JvAwYRDt5|P3^ zSSXuhgfXlW?awj9Xlr40`plSArjjmw13U(e^t3@M%7q{Q}}r&KR>DJO|p5qncKQ-GMWE@um>x4t}sO zU#%mBRD%7UCX|h>I81BmdMd7cp{R%$dPq)P0;wp;XO(L%@UUwRp?GqCDLRlIzz|BI z7!Hx#;iWXT(dW6O^FG`m-?1S>TXQ%q!(Xswj#|iE7mDIbHj#358fhHGiB6L7ehh}8 zlQctsy5`r2Z=F{&p`RTwVhCdD;L@Obim1Rnx!Sf1haMGVz>sflxEJDiX3U>)r#>nt zgZ0Tp=8>8&OB(~ol{+@aRyQVwE<-Bo+ZH-=n9BrdF1SE|_}ei4)lfr{EY_t+YUwr3 zK6n59r&b4Goit4CRr z7Z*+%WJQ-N5Yx+zIsihAJV#0H>a%nQHHAh&y%_o7JlE+TYugZ-)3C&J*t5_I*p`f0 z+&&kUmw;4gjc+AI>qrt}6vaeFkUI?e0}a5uqfHdodn7bQBlT3`&C|FRr>I`3@9`sI zgB9gRuc2!O+tefC02w;i48D+~Iq0nr{vkC(6jMbBbB*%&$PJx^>&U4jp4ydf^b^Yb z!{Cu`L^u#hKaM#5L6VL zyq>TaLISVkWr5YbuMv8ekc2ueeaZu3;-r@(4O}b%B@`;96@H+dw}AXb>0SBf`qW#1 zx}KpoZ@9lD#&Cd1Q03+_g=Z`m%u$2IV}&r(8i(8ST}1yT7-*T)Nh~=x8<_si#*n~! zQpAWQ$UAM2HeZ}b-PG_g-dqkc$@#Y;LeJPRtRQrvxp{zL8)_puw|-xI_tyg92qmuj zJf*;(si4xz`~D!s3dg&OVr*w644YZY`mg(NvC12;MUq0m@zI#R%%axR5w6Ps>Wf$c z-b#s4?xHotgiY3Z{+oj$c{xQjpGc#tqZ?v;zii=tnv1&vHBxyzTVMPNC46pPDwitS zNya3-v(?OqmLM<^;l4X|e1f1|E%hQ1WiWMP5~|-{Wrhq&Prc{zxwG&J_9#ha%#JpG z;u*RQrvOLq`LI3n!hL0+A)(DDXwAX?;t5%3Ml0OekCt&`!tEGpwZYr3w{f@aF?kPL z;RH5U(~ximEV1Yu$$#9RJ*?{938e`xfJKxqCr}qNNmc7PHiDh?**Yo-S`%h2|L&*U9_u-{ZI!|UdWD3Iz= z6AV)s^LY}V;PE^xVB2quVef;J3|>e-_h8_4pj?9$a*-Q^ z0Dn-O@!Ncc1oLicOJ>jY!PSwBur005ss9m^78*@4PzQo!6Ch#bNK^@$R3$`ZnWwl) z_*VY<(+o>nMlV)Zt(xFfq(+K{5?M6Vq7FVli6KWVhgk%PB1bOb=S0!>d?Ar`>Wr8> z<#Y=t>3o8r_Dp#81b2u zQaL3ru%S8OS5@Y1vpAO!bJ~dCDCvBT)n=$IP}EICjtpt9NQp@zt$S)T!hg<)JQtqU z*P1@58w87=IAnrnn5Xyf#A?s8ytoogF?;FJ~kD4bVpB73z1{@(k z?aMVP!`UZ3*9(S1?O#0nd@+2OO7Y|l(Gd~t9f|+a849F)pdCO0`F6P|tPadG$V9m$ zx?t5%;8|?$>!QOq!Xu}>QJfCBBV0;OA%H>-F*T6s!pYOn2)@$PueQ@WbW5^?EPM2z z?K88Y1+10(NjP;AlZXECpwi{@oR*!DYOXW0X($V?C68H~^R&o49z#4B)`KMC!?l`p z>zIAqkE^S!HtlL#yV}uSdziVR!^>gA(V(REY}Lm8TG?jNzMaO2;Zzp6E!iNBuUZ?0 zEZ9p_rrVIA)u%yg9mp3(2k&8Q=!vD%L6L<{B+M6;NzIA0dE=VQkzJ4>YVfA51LP7a zYTsSH9~4riswO%pluUoM<{!b5BSr)#dr)XLzs(8hAv8eZ+U#RE8yze_DUCzQA^?jd zdn^b;NKqimt)Dj#uM!fYlUR}}A{Jlr3RK+z9k|60GlNmy*KI8Ss(ji!f1HTs4@>oW z;U@6xIc?51*U~F^Xz%Fk(Nbx(MlVMZl#FN^Zq`_QLl*-<@HI%znxAZ8VOLc{1sh4a z1y!hVC^s2aclD<($3pvUzBeFKL8q`+_4vJBwq5#uZF1+Ak?Eg#^JN7y*_3`Sn(5}U zc8>caZ`9x0+k8}3KUwa-+6gKP0Z>!PUmt8j4Ud~w(}0i%PrKzWsSA>s-}I)of3HXe zdz>F?@I-ttNvPo|V;=IDK}%{IRk)Y7YaI2zw(oO zzB#S(i|OD2HgX!$7>=q^i@iEp1w~!aQf|&Jk^raz-TDayt`(pNEmDTutZ{b3yGG2easp%gimh`5L2>%rAt zUFLC;H+-u0>O$ehzHrBL^(cRuqpyaQNJg6i>)NJD%e18KQaYrX^q_qTxhUn%Nt^i+ zsJ(~At%-W|EaEMuh9WXX)552C_{dksFohe~(I@ztz);v){?y2Ui2BfoSbbLwCt&Pp zvHiY|4w<##Q^+Zm3OV`xNH{+K;LGw;U_Gfpd|T3pxVwX(c4St|2zA%GVZGi))i>mm z!<^tC)uM9fB_Ju#7Wcic^m!Qh>^cjxaPH*b7BM=<_pVkm3-=Npsyh-yoS>*6?cMg1 zhYNr=7r1iLrHxTBH>#l3e#sL4EBNFwU(PE78d5aZ=je*ML+fbT#n&>ekb%sI6R$9IQ6BREvD2@$qW%W zg0Qg_s;N6yE%Yy&gMM0{RwwwMpLC!1ac=@@kBX&!oT^V)%Hrl1FVfeitwD`d%|+sk z=<%0+3h%4(?uT5!^BV4-l5K6q%FMBd@&Eb;M+m$7I#!#vJQkbk5jWk>zasmfH}u%- zx-ybRs?pr>W8?7t(@NfT@JNyCnLT*N0Yb?;;%)~jm2hwNyocMGI_)wWm>-;_(5<$R zG94y~M)=~-3G<#jsYMn%#nnnf5*dWLMXHXxPz{_>9+ezam8qZXL!@habgqekn#J8W z7MF9L?lZyC`6)8$Jh?}SFJG0bhE92%Xf!==bp$1XS`6RzgUN)3nSqCD~APRM}*%u$Ma`hB(HhGwOelU;h_#$|VFxE3@lkA}Xsa5Cq!msc}h1*5r@WL|L9 z37b{=%^YUa2y>{FLD%|5*sfWn>=AM}y2jf5{O4y%{iWgfd+X#AlcaYk{&m|JD$$l<=psxxSY92BQ9rGQFr%m|2T)bYk@@&n*qQXR&w^E*P z0#PTFG4+kLtVRoJRvM$$&5r0-9&X^2`zxs;r9zIr`uCCz_MUWdjq1oml!y5`7qqhL z1LqL2BeoT5FDFZ^mdhSH>NU0XbUqi6^BzYeGIiQlM5&zXn@u5hTt0+l<00RIB{;`$fkGJ|qE5(?ioXiS6y!S+9QzMYS zAr>7Hz6dytBBj+F7(t$RLaHVr)IgMFp%%!?eR}#g^JS3A5s95^uguQpvy*TcxDX)XN!USR17xRX_%#GcnkK6HL(8@5A#duh1bUgt{Rk*91Uo! zoRh{!IfHqC8ch^Va@>|3@`eht{!b$kb_NCE?_XA8 zY<*sIy}d+Z-X^A8k$Gc1(W8D2=~nx0Il_7+-|k-?Jn5}w_MYf{PNfAS=mJWob_Bso zPJMif@uN`h4_Zoi5&9KPkgbCGh$ditL=%**-Bz$aA&KvGjE)P$u?+K3dO!#7XgTIK ztXcPJ&U?=bL9tC4p@U3K$pMJc&v^F6fuY_mGxzHsruQJ`-_qPG5!Y9jNXlwhHYyh% zlf-ib3;lGhpiJbh#rErfoAxRxmA`JQ0@&#Ae1&BrDI9lb5(VN`IH#LtmDeU2W#n&> zR>cvoOTyil+lqP;O^DLcHO_5A)YFrg;^e^U-J88#h$grc;>TC}8XUMS8keMGG35rI zmu&a-kpJA9vmFCYIrj^9vdq)=Izd~)F-2 zz7}C}c4KaQql&d|%H&`r=R~3ai6pf|3xFc2#+w{+8;Bp$&sX~mgt6A!TDrmLWvO@% z#6f6rG8IN?eBLWsGC8As;vXJ+JU#>4c)FzkK1%+vR4X|I5gxI^=`-Kmv!*7k0LiFM zbh&O4L^LcutsQEyU%i*Kf9+q30;y3aeM{UiRl!V=yV`^wcdpS9+afDJA;vM$6I2!O`JQE*$;f~8001z*O}WVb za3^Cu3!{&FVZC2})%i!4_uof8oC{8KvT`dJ&Q4f`QjGhgWrO= z^5vhn{d$&5@IZ{N&#BVE`}QDKpa*_IS*%m~Kc6VV{LRBbldq=B2ow6@;n+tfR~|uj zBI?bd9pj%FGX!M&6%%x)aRoBS$YO?wm~9QEpbv8D{S^~jH~&jakcUtD7?ZUK=C$`Q zTSQ_JI3MRr$VWX(33i3V2kOBq=*b7&=Qar_3C1Fu@=6{aqj|-iKsQnrYt($oL03HZ zSW~8T4fo!|rQ*$)@J?FWXwyoz$Hv{w%(I>-1ITd>l zWYwIyNayf=`;_NzdyI5ciQJ6C+51kZjlN1p!N=s^754={=020x`w3`)q;Sc;Nf3y8 z+HqpWE3Zwms9_PqqsLq)r``0TTwdjf?lX34*C?19$xBb7{zmB%I%}b||Ck6-M%T6c zXj5OEgCkqIb~JeD6fv$)yshVKP$Ai}{o-N9D_Of32$N%b%)nguz+5-cTNSwiFx+{Q z8$0p)4R>L|;dhTHJ@G>IYvkt;$K7 zH2C+dm`&H`-q;Q6C0B2OINnGd>cJf`$7#O?-92Va&Gz)DxERDod%xqXElo7$Nzp^)2Uh6tgynro$1(hK@QSdj(ln9 zH~Vg>eN+cHO)RE~%&!6wCiFwoNG_o$Pka8ogDb3tTH{LM*m;fK$Cmoa^?voTnM>a7 zO@bZTqTo{iL3H=_XW$pC~C94GuXxZ z4WZUjvm%i7AZC&10jjQ7>rsnL=;0vPT)v^r+=&RCUx>rLQ~@stjhO~|7)<*beA%oK z>yDwu{DD!BWMZ>P0;OvBY#Y1!ukMpL?*h+)H?K_t<#~+xyMw%oAHV*tMjWG7uKeAQ9TZ1_K`EylCWrj%v|Fe z@)}?ckF5HaNq+*GY8&r&5nMWNQCtBp2-e_rh3?Im(VdV(ZKE96%lbu9gxOh zDI9@7r=R@zhDiE>_nHc)Z*Lu5Sj1r#-Ywj$a4YrSA0O;saC?1!AlkZEMGVsb@6{qe z8DbTh-YrZze_mvd%1m2UAG9|UG)qAwIYH>e5%)bES4Pv0U_T=ZS%60K?85OnD)`9{PWIq`#H^>ng=!af_fc8@U{e6$>^ za$-U!?XEn&mjC^#%*C8}v$8YBsBC?)a?aYzF2K*r(eVW_lkkpV3!zqMvx+ma9##ui zSU}7)!0++sd-HR_-A3Ajjd+BJt_7wmZ7AoV-i zXA3{63tBq*FgFL+R0nd{F8cW_;(VGUOU0I3;W=@`{#9zNc)2i%Ax_t#m|KdvNVm5d zibu1~#B)!$;A;<`5%J;jqiIE#Vbt2e4)Q%I+BPYX&#k8cN{7;ELL7o zEl)kptB-+V&aKbXa6>d1O>caqyg*$ORf6zn4;_u^^R-R40vnn&|R-R3npos>JM!nHH4z81>ELokKo}Z%p$y3tT)1 zDV1v{4cwlK73QPL#AH)EJTtkhreA+O)hpDQB7ruFh(S_AP1f8%dvBh8zoZs3Czpv= z@$#1HnzAlCxQ4)t<+7WS+lSP#C1bfPSyNi_y17u@iY=jF-NaXs#gP^jijtNpl)V1x z?^^LbJa8Y^hG~|8e2ZKUdT3=66yeeB)Z30m|D2n5mHX%6uPzg73kWy)* zEviW7cpVNK3g1&N^G?qfCjEZl$eFJ&`2?0OxZ;;)3qg1Bq57<9uBb~8Va_4mVBJsyGLU3 z7k_*!ZGK505;_Qs65@Q1C(5r>Hy&*3jc_&{+{-R%(8Nr7ucrDCPI^sOjZmLEF{#vpOm6 zsvs+`#PEK*Gskvfw3?rXz6_AR6V)+j0Y{KjDsnM?o*6zot_c zr|nl`^Dc*VH9B}-O=rC=j}*dyMV!N^%$bB&Y2 z=!liv2!=rk^r=J$?5Me1BWz<1vpJ8)S_3P|EuQcT<=(h(9AnN%E!EjeGd!}9d%6};l(o~lfg)DqS zacmN{v|pv!m^d!1;;wF`)%M!-T( zCm_c0o@M(GZO7`U99pS(TR)@^;jK8=zoWWZ?9-G`(dz4t91dr0&xF|eAFOh%Wd!8U zwyKo(5ybz4RW81L(r5C*omTC4TgqY4yn2@nh0llrEK!|Vltf}t1{1X{;~<;uXn41z z>fE&mXR>ba5WG524;*h-ss*qeMdxfk^*VF**ujT-ATyUS;oyZRIX?6o(CJU_I&o%j zbGHaKD;&~8Eo00f*q@JAQ`^qrpRsjYe1gaqN|tOpx68YBx5Db&VgJ7d`v2MP{{u{! z;D37c9}vp>knEaTzvGPVcbswkFW&w~aPsHZf5{8Zeum%B_7inisDw4DRMTD5SDpIu z2Jysv1m!%7bZJM4?_6Jvxe4B1vV_ZJH5;#i__p6(yNGgi|WN~G`cEE(I@ zXcFOzWIDW6cEtKJf@q*U{OMZvx4U3yKZ2Dn25*wToT_J0$w%;Bn>)pOE|JA%+&_NQ zf_~EOJ16skX{>aGu=)Ls+*A6?ap6Ks=XAQQPL(hAD$H5Jr>Dd?`qMqDsFx!qW#+MD z){I`;K56$e)f*@**;fcIi{HW-$ateu5eSwmM{RL=eBbNF)h1y{^y zBsjMU$3x(sJs!AOR8shU8hKwrTVPP8f+bG7~OQ0WR^3W^$0ZBNp7`nrh~Sm{UtX zNR&LoXtE?2Ln0sk{Q45;BHpbCP5)5@9`tN%`oMF^nGg z`4T(pc0;(nX>P+0GK~<_jV-gV`svUFtdW5C1%BLb-lpFbOtoVWGJ!nzkbxg9aTEgTyf~yIbpd-9)Q2f$a6DHj z*R0j5AaYM2w5DqD{F8!dqLOFB{UynNf|UV0QNwvqJjdutRn&B#A(Jp&ft1G-`mgCtuA8vqVzSH0WEd z1iOn?R_LE#CQxHmMZe;QUVe@rQQLKk|2#{Yu4U9S+d#kCRY83GBF2=v=E7B>&5Cm< zGcc*?&aZSs2}w_=F))M5S^U+ylP4zSn8(m$ne-y!^@l7;_0bifmzO^vZzm7X6JMocSYc9WtpPZHzhlR-LE zYi>8?j8IfI3l=?`Nj1Fr9b1;{dvy5QJpNRe7jl0UT2+S5W3=)XyFB5XcM%9Q#&Q&y z5+#`4fNkmqZCK!=A`Kixyw_Jrj^dV&__Bq7E(rAs*`jJhgR+)*oB3?L#RvBg^i za(#OnK$Chp6&WYJ0w&h-kwaSXo0DXP`#989c5AQ@BPD-kTm0-1OhRCU#4`GQqh6m= zOamp`m$w*EnMepU%57B~D(y9eKy$I(n6kC!*6pK}T#)W**nq<84f{d?3q%}cJ7kQ} zzjVtn&|{IRhNYhyma0)@3>`b)7J_RjY}CSWu7KDiVDUxKY>9F?7b?^$b^{o~bb97q zZ)p16aA&UGw48t*GcK;37agbxqNukJg%-Tn&<%s`f@~c0*ATVa@uX?zwc%osVFsn< zATC~+n=XXx#DCnXw{tc(5dS4D*YqD~x$u25uTS!RjG9BioEo~baafAvh9fI*C+5U| z#P$^jcejTR#Z%>(?$|0IB$gNe%dDYcM%%w@+H`L>D``CIB7bRttX>mDV9NkxF(`kE z76ngD(Q;xybIL(Eq^RU~ydKb#O=b5DG zS)SJG>gAn}VGuJgPZ-YxyJ>4fj~lDzDMb1iwq3Ii0ZPUu4Lv($O&1*}^QETU9{l7b z%B_zemgb8v(>1RD*&c>4JA|Qh%Rq~6dyceE^mE3p+iXshXMrYgc21c@?bfkR?AD7z zR^WlNV;zd2l6m94vzcDPYYe7n0Hy~lm8e-Q*b*Y^b+M#5t@6MCS4na)yMN`!6`-8p zPSB(C#&RKCQ&$FPg2hStfR5vh+yRP6ALNgWmBrW+A&K2Fpn3m-eijnpfU-j%b-nnI19thmp<4jo!Ucb*^;l*HQ)lxtC9Vx!C0 zGn}J7TtX)m7*;BDSxQ8WRrKzVx&hn&Iv(-=c_e+(-0dxlJ|{K*jUzwqyf68ww14sY z214~ezx?m2TOIu3q$XUD*tjH5U&+t+%~j-?mn} z-W3i_5JYPxTKyxTL7r*TnsS+HIE553E5bo6isdat0n_Ff6sU^2|AUx2oHv&dW)7$R zg`->yq=2d22&-DZno2wsB#M$<_149Nasnv9Ld1A2$jtLgZmVQ*X(voX8^afw?&6p$ zXi`fueceh>IsFObL@@t24|XF*X@hf4I-_G28cSFPWstw|a;rXhxfpaYo(nx}6z2po zrdf`kLi@DwpF;bTtgpk5qn|?imQ|8B@yL-I=Pd{|Vx=&qN#^awP$4C=HwO1DL0itC za-AF(GAR{wpzGSRRJPZCd!m$|`rW2;7ZNSoJ_y_V@{*TF<~*8J;(Rb)#!o({x-=np z6Q0+O&L12XgABfrNA-gQAnLiF<*kGR^EN(}et5EjL3Fa(f}-&0AEEt5Ho-1Z8yF;& zi;rzKa08*ysAi2%b6}>}v8LYGjVB&2 z)sBzoW8Z#puv!4nxfxJ3u0&Z3QDW}x{~I~iyCmZeIrl&(8~&^5Upo6od)U&cKEaew z!k#+lEU~V4q7upuXG)gf(I5W&|5b6$o-gFQ=i3Ax>+|CNxNxc7Rm&gF-FBRWOLwauMH_h{DN ziJ+;(8a>_5*tSaUpjMM_$8_?LlcTi@S$6FzYB>Qu^4RiYak2S?{x3qV0-+S?<~{q& zV}o#%?bW|gQziMIH~;@o>;4O4?SEL|A5`aB#(2e{sm}!6LaIA(-H8Aj61`c3D+Ug;|>D*+7yuJE~^^eA_^-Rh%;O zTvf<6<%u&uJ9I?3ze|HQXDiby6t*?tDHIHvAQv&3&H@H-X;ezWdD8q15RkRoasgxu z4wlAEr#8IlT`W{AGK0Mo#UBhvoKz7#VcsjXIMC{1nX!xzIHufi3^O1TnKR|!6vrDq zP*Fv!nLjUA0Ph7d0B+J-dp7)Rg|@Ks+W|*62w9(m9|iRQg+!IBu;=<9BNr-z6Kh1S z(4^=+3DW|0eNs0!CYg_8(CxQ#WMB5J9mIO0t+)nJZSzDn#RW$SM;H#+M0j+4Svx!O z65msH%~NT^_+Ua-A1&DedpA*@8BXNtcMrT4a{7$L=jA%>L7XT(EU$~Rt~wK=R)%W>$1fO2Z^A46S&Z0v3)aqiT2#(c zfzVdk1_=oIJtE{F#vs9m9%x`EcQGuS+wWoclCOuB`FF;&7*#uBrCk`bl?_`iNv%Uh zxXOt`2Ov$RtHesPR~xs1BqvtS3K|moK$KlO>8Mk7=3w!xTzX7!;H*B8Ly0H!ajK{EoxZ^h(sPB>C{g7SU{_ z6obozubGI{$#$|<>7X9cEB;@&ft&2*%^P~h1<3L@uRK_O*_w-@2;JMEXtrJKAI;aR z0vq-Co^8whzY4~Gu4$L$4W{?}d%<2@005@{{UZMr@1U{mw9ba)v#eK}b*-!{n;d^8 zZ1z)KZLtw~nxko&e{D3=js*cyvQ#2~RDimT?c?Q~P9QFyWY~f^C3HSe+CO5jIbzce z{p!s3$885QPT#pUW|#^Q;KyNpO|DUm6QqH~cUj?Y#AVTvC}A#umkrTZ4)}*lhv5AN zW8L6wsjv#zl)sP)8)K0oqtAs4YmK41j_yCEex`k7K8}-= z=K`HX!jL47g_$CeLsr1>>iG5L{^kO02>o(5<@)aKaqs?(5Nf@3sQE^LOND9@IXHbb zUDw;uPWgtPr-4wKjY)u+{S&mi~`vu1R1c6NIYcUYqqEWPb)-0iHG>fO_e=hK@* zV*q<%$Yc^wIS%&2H$iZ*IjE%6u^$gDMPRd}h!cYa1C_8v9wOF2LRs|uoi>FcBwQJ_ zXwFkN4{M=ohP4m;r@l*JYhGI9oZ7X@X!g9!ReE_u->}WxnNrtT9I86FLWeKS13BRo zrfcR$MW|r&ljQb!emWCjR!EBpK5QNw$Q_X<)JLo*oJCx_H-r1W`qxqiZW;8KebD2< zARA1K2|V?V(J&`a5-PE&HI>6+4$&@A>pf#cFJVHqWZ(A&Bgt*z(6BRo7mfz zue;_T)w=f#Ki1B$EbLNRzoQcSM{O&#*rLBn4CPB((|$Nc;9%XVl0C%~HF8<$`_Mi1 zPu0INr=Sebf>(ldw}h&u=bYs)2AMsUhP+t=W9cd~g8Tsa@k2ci`82H%JYtw=`LMrk z-6{mn`>XMmarBI_gMAHYIC-h0LYUgD_WFJ8e%HE&CnDDuWnyW`EHRY>(BFI}I(Q)2W=8X8g58;VI~%M^I0R2$ z?lLZhhfhHDjvaOq)CkyiB%=cq1g+f8R;gr1Y5@Q$~YG zbW_7}1Z)bV2e+z4@+yFta?t-cxV_ott&;g=yO(5*u8tqHjIn**a-+H+^uA!=cYbJGP;sV3EVe}qP*sHeU_Zl z$jXpKJ+Pw@w_6UndubPrZ5Pk4-E%{V3x>c_?LCd4ylXq`3m>L_TO9qPPH6(uPu>Roa%V<>fky3_^aew(u5GM!lmr!8%a09yF^;qwj?Lv zrua9iHmrCuqZrw8|Vu7I(T zvMzTCFbwum{{6qBAT^0L3_;u(enE%;@idhAvJuSW=$a{idK3QYw=Qz@qZo2waZllK z9@a!)=Y`tZyQCcxwO&N-8luJ3>)Eu^IkR>)*qNpECapp(>>GT_NSaef;fY@sxnZj; z9@FGG(+csx3$Y;*+~gLRUd#Dr`hh3aU_tnpVU+*y3%*422exKL6hRhy?R7ur!+RX& z^-iwkF!0yGcX83m^d~V*wdV@!9Ub}7;Cn$9M(eVnTJ;1U?*81v^+ zp6upFU1fU20?gl({r#(Q*Z^T@O~7=j)V`f+4uoEhpM8qkZ-z(e|Pj130;7^L{KHJ2uzyOmBK-` z_H`DMx5AvL=i(?60qeYR1i{0-xz3yjWnbWvX!iqZD5;N9;(sD-nO7p#7 z8eKh`mm!hbr_W>Jj<3QHoX8af&>9_#n^yv+mR|@R4GWvpQLl;*X58S_GS;mAV)@q? z+)a0K1@?G&=M1d#?o9E^ohOjjka48;QD811CBdak`bEBei{Y^5f?AjD)l5sk51LA3;mISi)&LdA))oQm_I2 z?vlK3_|Pl3GCsD_J^dWnKONR84qu4!X7rGWl{xTgB0OJ+b=Lf(JfTT+=4&N=_s8^M zTN_yF%4vt$*;~%X3oSrDhD`oKyh$!d!-)l*J+=2w;CUS4Rn&0ToA%~%n5vj z#mR{yZ^fmAd5}&~9<)tp+3b73&PLKR8*p<=O4nPvX&wNStP5Ko62BgCeLnzb8)4Uy z7D1An7dCg2D`4Tm-V@WAb>xR_A>&&>6jmpXM)mwf3{ z|FIcGulM96ni_^-b6?UFMXh%llJ30x!1zUFh&$ySb%3%HuIuziw$zeuboA!$j1gC` z7)%OPZL7aITeHdW#OVe3%)EJIb2DsKwLhJd(>#;>)$lGXBN`bVE_X7g2JM_Q4 zj?w?`Z&LqU%kNqt5%}$Qjl}r7M&kazU+n)&YJS(+|9>^V|DRFw)43W+##$HIPql?c z_Eqd5H#GSQ+xHWm3`+sa~gb1f<(cqSK=Z$w^8c&JrGc}FnVqBie{<>lY~gqEDB?Bzj>&6~e?7VUuW$bw zQ9m77tu@%axu#ntuA8hm)SSLtRfAe_Dql|EzUb z^0(HZDpgT;%4h5Fi^A^mXX|hVXNR#b@6$P^p1b%O>%Kf7NMa_{(TG(~?K2|N#Db(n z-I`n>8q`Kn8cPfm&;VgTp1%(VP8{ljzWn8wi^k)RC?}5vBKC7LdXzD^ao7P9c-X+_ z$M10bn^(our&ooh@Qd<3#HUwjI8!aa_qGR6+x6s*X{b-Tw3r2@{AW3pbG+^t$l*c@!icmhD-z zzkl{6A|!nILVH<4=qB2(4IgW8T#Qm__g9^_-~kVh&GUdC^IOv%La|cwO|(-JexPbt zhGmHpnrV@IdR6TGu}8$e!mI*kSszp$m{G0MLx%?NGbS4)24V;mQDpuF;D0HG$V8z@Cn*M)G} zIIw%0&O7di#W@uIusyC#LE=rgD9$c}+zAt-Ze$T5&CNVFi4PQ{I zm(F*$cvDgFn4Cv3QMYmq*jdj*PjM|d1l)+HQ~bL4JZtIF!;fmU-3BcK-WM)xsyqpuKrL&D@oZ!rhu1(H=keb8n*b2Uj;YpuYK_ztlQvuvb0oXYRL?96 zrs$Fd3VJv)^+2j_IO()fu(8Wnu~@|Hp5Z0rhX{8&X6u^#6pRQ7A;v4N;!;2iDGY^7 z0Qy;u`lJMLb7>DLp=Lm!`k?AW!b4$EtP^>aqw7@d)X9U;yYd>~+H z=`V}L^1}NlE;a|o{tK2!Hd_Lxx!#?uh#_AXtwj~ZFKYbPsQqWUq=v_@%_7vUMEseo zJThHyd#Tyih3^!-h+%!P(E9+*{;mYte#vUv=6Gfla;a}H|L+3gp95+lin~rjeg}gd z^uJ_g{L@wbYYR_x-F8p>Q_^xlGR|+re{)hR-XL@|77~dNBFwa45{mUJ=0ov$Q`Mgc;YdKQQv45#g^BME7s zaPC|5;pW4EwatOhWKS2s6Mt=fHqgyDs+LOuyk|lL)B6~mfVqsi(PlUOkZh0Ee9#{0 zx)6*tbBDMJ)D3|Oj+YcE)d_x}6=*;GlpeZrVQBB@N)xnmhSu{;kg#KE=Or~lw|Wkz zrpYsor<52$i9;+~N4Pe8djIhnukDco*5CUx`M7^jpY2qx#NL6|A1~4~VRh%#bS0zb z(Uhqx`+glj=@VO19fpniLLo?lI3OF05P_;_37km1M@BHSdU)Qz7$(o9 zgJz(Lgj6XAQudWkJ>OL|Y0ab4mVUmYlvSl|UAFn$J*!_B9`1pPbB1zO`h1>CEEuvl zx_o9=F++w5$y%MMWW-pK5*6?W!((4C0|E1w5m|s|tw^p_s50Q>gFlp2^xBBYPXM2f zyJn*nq(eNhQkuMM(qFMY-?_+UB%1BZgmyu7Arb*m#j5Hjl)1ltqZ-74H*lGtq@#+n z=gJ-?p_v_I56kw@4U3azv}UWSs^*7(x$QMy%8B&o7lZbB&Ak~kJ#&^@{)h?lM_RHK z9 zaY76=`h0iBFU#jx=dxOIx;_{oO>z zO*hC>z^N3cX>c+tAFqKfeDm@oytmv;In&V2Pk6&?8VC`oUpYfO`i(Y83GXM9)!H zw0=^f>>;Q%)q5m|GV9E6mgBK*2M%a+ie>_VzlBn+Ud3d0At5Z+i02s#(&A)pyXRFrrrbVNi1<+>h%;MWi;*^p8Q=z%Z z?mR_B!rM+0*>|qV7)3(4AukcY#gSw!1U||z;>v%TI>S^r1om+z_{i$X-i0}9^2Haf zxSqEWuk@TE=o04#D&-(K`KbZmf|M6u;XVRkgI>w#D*x%6g;bK(4%&w28Y{~&((a)N zBP%}O)8O~J-DMv`yCNsp8nsCzmUW1}!qL#?Pc+vA)Qvx?++$fgh>`9=e@NY5 zr9&8h^27+kWQB-U0)~W#r5#A>0yuIl*L<-thfOKrw(NtJUyEZ&`y_Su?P`)V1N||6 zq`r3YVYENdU{;Z*!;Dk-3Qh;|6G1Xif|3p=HDK4Fp(Cd%c_!!k?jKV3_$Ru(_!#BE zt#Hqskb_Z4EL}n?&ffP;-^Wuf_C03StwB4%3nMx?q1O!46((?etky>Y}615?Ih_gL&{nxI}lsTt7t*|!}Ak|BYNks`bp|8=9^sm zbbb{0%lUD!@+$`pR~e1>ALqyA|8#zw&WA!fm{J}xyvXXqDY_$l&=4uArHYZ);=!{a zE;lK6Ce?_>-E&Z82aU*94;R>efxtg^{LhLScwUY{(BOEk;&(+|>_Z+mR?S-|+oN+8 z^9v`hXCTCakSlF+aJFw1<36RTrt2e&90rKIFIM|i;JBD$Z5}!R1DTG|mJP3XK4-u8 zD~kr)VZwXMY(NUSrLJ|8$7RcNZIszQr;2K_kTrDWedgA$jQ)?=dT|Ef`FvGpG%I~% zg#VWwUJ30O zV`cL3_t=ND?*sc^s#N^Cp?b}|aO%PtY{4R!idZ?TXJ=jj$SaikWsk8x1@ceV&;AJH zuQOlpio_-|-CPohwl9v1Jefkbk*`jFq3~ukD!4E5bS#{`C9LkXy2Ad?xRUxESF1mD z3X6dO0Jy;c0FeJat_&;<-2SS44ea*B5Z*5I7?WZd5Law&&*Nuq58@-Jg%B_fh_Z}n z?^m`=&s|)X?MqL6FTdAH9Ot1C_Fiwc)BH}1b6plS;bfdaiPNn^%hrUDUK zG{l(%G$@TV5DJi?@<^u5Z9}3AE#P}~TQ6rTx5`;3*9fbt2196?nhvA*_;p$n7@$%} zx3Y!XVF@z;f0y(&EEaZaYKCc8R;Dah4G~m1)tygy!s^lw4u@1{!R|#)y#}F<>JjhU zoCPhev2eE@>RhZjW$Ec8F*I%YKIE6V2h~){Qn_2lUqFl#sGK}tGDM|DV3om6)ar>a z(NW~VkMgdn2i0Mz0j;6*M-+kklO2K;r9nKzmezBHBL**b1`+TC%>zDe!Vsfd1z`;( zp|G*%AD+^Q9L^6nr7&lNV>HNUlh+f@aYGc|&Vq6g%Sa@nKX? zB0WN7H~v#oysi(1%3>&2V#~$scMW`Wpfd0Ay9RFLzrz{sZn571!W$6>Vg>02*OM5{ zfwe5qIx#!{sSqvmqF(Xzap7<-6bwLx{;B6nk>+>yr%GJmM^@M`?&4i0Y#Ho=h zIFg3!dZKJ5DG%``64XRw&T=2MG$q`*#)Q77Md*@8gqzoJt*Cu)?RO;S{YR&kNTVzL zW6$h2vbr(1i&;^;=qj90vz_-u!y#(v&AfA=jy9c;2y+gsUcKlfr?70WVSVL5k*nr? z7#O)-ur{ap)Gc7uHsLi=j3;up$bNT`mEL5?(@V^sg!V!7fk()X_zTS(gCfPpU)xpN z@8~^?mh%->bUYn7U4X8*b;y`Dc3PZ(1E+Jy=5b`CeGM6wc1P`Y5QQv=4?Zf?jSQ{Jux75m7JsRxvJGB~u0sx@?!?V_QW}k;ZV}gub z!KYd4YdGh35k-^!i~FT&+I2EoMM)wd%ojZ9t{pktj zOE3Gob~-D12m;zx{{UzZk7a2sdC(OkLaRs>l@Mp8vJS#fAqzJ}s*>qTc}*=n5W&Ul zVM#mSd`|t#-BK*XNUERN79D zV>qn51JrH;-_rja0L-b^Fhzp;g;dMLJt?M|gr%-r(pDs#j$_IPInd#YJT)35Igp>0m!tA)^}eff3LI zW}Yu6`(8;x7}dL+((w$k%PBvsr9@RX3_|x*XgT7_h$ahpW3SlWNLoD$W3S{`BIZ~} zLoE`A5)P1xZ$X6AgCwvvD@_f6B2?;9>B)`!NI$(=Kg?}sr$Vt(3rw_AjYh4o$_QPE zLgUY4#WD!D^OJjRa%t6o{O;WfhXb0?dbzs*Nl|X`c?%Sf%$W4(|!$?NOs4)RVn(Z z$2WcY(kvl`LY7F^4n(l<-Y%q5)ElJ=*^wiAhjrw5HU_srsbf9134P-xP@KK^O~^pBuFd`9g} z%F#_f{jXYU?)qM5^ni5KOVX%6NQs#on-7J0fbv*Ulk?BRAz_-|j`!WL1YKDI*KHA; zzs&xG^|vWDM^#f-y6!;8O#K9W+KRh1degVOi<55hKL`4-5I@<^$B1<@1Z6k?=%hLa zmiqGIIs>Ol2aa<5bO8`@uA4#RL9*4n3k8y%VWOMpJiu&Rh~2D*u6Ju<3h484uGcu5Z}KVemSp-dXAhRe0HTrAwpYr3Mr&~XkcdiWB&)7=;4E^XZa3a(9e>#2>eP_z&Z(0bS@*72c+#-sBp)8y z_S#HM=rrQ}>X*BnHdxsbGG}k6JiS@cbc(3lR3W8(Hvxq$DowKo&gq56?owXW-qB1cf2dN+?_Sbom@McvJ^VEs!MQ0|Z7WgrY(byiID~T`M

O;bmMQQ07Qk)Jmvvv>7RFtzXg|+SfFrjrAZ3IoO@|7jis^!(Sbe?=xhlGoq zav0#g{*ls#y}L4m9>LDAdMLSXY30^XZ~8eg>4-L&|+B z{@i*Hy8$WvQT$%RI&US_(U8|HQa2&H+$_E0OXy z#h)*Z*a#EZx&7UdIj==MCgYl=;T zPmYk&Yw1X5)4 z(3A**+?ufD(25EFRU5uvw`jEEd;Fn3d#UTrO2U>QQ=(XhHmrd>MK>^tD=)tK+C&FI zlHM*IUPDSOkpP$d1b`WB=geO7>Bc{-v$d1K*%|7__Q>A8^qdL(GSTwGR>Ia+5xZgx z;<4sV0Cqlp96&uz+29Js3SBu}d@Xwu1S;uOf0mb{_ zcPb2IA&qzd^gLdx(oOju;o{gRX>ZP%dQ-JjFVgvv^I@Za z8rQdcoC`u&T*@|g2gv`ObskL_(5T39%^kL=@lF9l)n`-90~KkgcMawbbijaJdLPkR z1sF3Sm+@%Gvdfz0Q@9E~DMa$1V}%QB&B{0$%lezXg4&SE*NEx_smE|6R%8aN0!+;9yms4tiwt$3@V~eo&)d?l;s*R8*|vpOUs5JUiq~+9EP(*EBVHL z7l{irkot$2cl@aBhZNwH>_%nQJ4GZ+m*!oe9;7@*b(Z|2ouQa2T7*@=bEyeH8@&o4ej4}s(z{l&pU=EeY{B%#*}uHOO(aU!22 zYMTCw0#N<9F5MNsed24epz? za#`NO#XSgog;NMnG&b$Ue7!ZvpBt%B`fpoVarmTrkbwll0a6q2T>B@##?5QO$WI8; zL<(flZS5>duX0})A#_orCN?OrH~`s!)&qMMFL-{M#uW%eK-)?O;&O0qPTxJH=?{sk zDxhe;vIktc36GH=XKnEo3tRSecG<-@NHZlg)2zlUIMg9ju>O1d{s^ z6C)O;d=+5!V}@_d){1`B7p`;m)d1|J*Y=+IyRAL_2HdxkhTSa2%9HtB2ELerSwo(p z2p07T@X_W+ubI0m+e?KC*va<*%~JWbl=^4EBr`2uax{;;R1@wLQXZivo`{?}^Wb~g zm%hz_l=_nx$>}C4!FBUC(+kLU@nPbcG2Zh={q>J)S>o}JMXt7;?*En!>a%DgY<|ZQ z&+kCO{D)Zjoq?PUtgY$XY^={U{%RQ>sj0iu`!|^@iI$o}YBk1w1ued_a6|_GPRdrF z1@v;~#OJVF2%4OzLRBswx$jh!J(@Y9GrylPGjR&d+T1+(y>I?MWL@j+P-dN zGK=3Pep*N|NNd_WfO{$d99x#Q)X>;$KlMCTWWDLVFjS}xtn`I#J~a^{?fg4RrG-{i zsyA-piF@C5E^7IzkGWQS!xZ`5TD>w zLbaXTB{LdY08cCNC6{<{8N-~28BvkbqS#U{JpWv0KviydR4S=>!GWt!Q3tMmaU#pB0<*hgp_&b!pW^a0KJboOWdU$k0<+uVg2n{Igti za^ah2!N+OXrdN&#eav%*lruuB1ID}%&k>;#5`JQ$|GK;Muf!s z1o8e%)Um_9xgL#`)0Y&uq4DCLFF_eh2hgq&JOe-ID9SG}EpK(yR8FYmmXQ2;-Q(p@ ziZ}8gXr5}hWDKVI6$J;g{5$~4qa6q&g0)pIHS6t|htu6lwG81(D&IN@tL9DW%A~Vg zQhUxKm?xi+EU3)#m~8mQ67!$cvV_p>RjFo57|IfYMdwR%LdNU08lv3NjK1)DZae-wwfv^kkq66rqY#@J|M8XGeFH?pjzb!9`QlTi#L(Z_^yWzrRK45o;Ulv+AGEu{U=@x&PUZ&8P4f^Eb5nyC-4o> zgNm`hq};PH!DgBnv=n6Y-R>KR51qzu?4;Dy0D~&jUtj9NlU5xJ8YNvP+f~Yc zDSmand&KAJ9K!$m7`^Kk?^^gBqiGQTtnjn3GqkY&Yx=JuW4F$M(0Qgdk>{7tliajE zo-Z-q7M*}`g>DTl8VdqQ8%08dQWl@s3HH42Dn42}?`EY36VDuDx5X1p*Oly!DS}Aj zXiISLJKISW)0U!$Ns>0q`){n>IH92W;8JCYChpIrL!?w7_LeSGr43EjD4-5V2Mh&a zS3K3#p_uxQk|<(9C0#l1BbZmmLt55w28illxYlcJL|*QIeX{yAX+dKQMvM}{{1Lx2 z8#zkrpEzg_HSROmar872>6^C3+X%=WVX2nFR_@NHe3 zW$5pW*DwS4D!8%m5DN0A&};hPX<0`2mB>G{GFB6tSPzjMtd@#>c>PcyRi5eAgza~yZ`;@V6=g~5kAgYGZ0{finGsBWLQq~C=e z4+LKgiNahDx*No?ql01i_dHkc`BsvwMnyCs^Vvs<{46Mi(T^x?XZ5k~i+qu2(59B4nv5E4$n*Pb zD};rTGpDHE=Sy7xj>^1q(NIzq)U1Bs5kBx-jqK~%$gS(%nSzo>ZJeqYlyvOe44$92 z*?S0d09nwH+_^L!|1K57*JZpH!xZ4>C5LR?S`B_ZE^)-LXpW8XEkS@+F(yY^ zzb|Ad0w8gL-RB+HFyqx2{>UkQ90e6tW{4B z+#!%J1jn0fAbzw`CtXp# zK~Lkheo?Y>!t)6K_a^}(8v{->7ytki=0D5UF7{@Q27f8(oU7Y7t%)JLPgSpY@DPva zUyXCv7!A|1t>g{vK%@@LpD=`8fUw6ok8O^olD%JUa+4tJEOWfa%02-cJGa05yr}o2 z5A7b@Z;`JQvYSAC77l8sCfH4_{#SA4}F)W^m1+$3)oC&2Y&4R9gi81_uRF$gy2;-R+rEGv1 z#3C6kg8c(Y#QKLMgew%_EcEPH`abjr#np%b_pF%uu;6yElCspfR zzg_J%tXi?R>2RF4$OlHGuUlpR(qcuYd%h4YSuX`}PV*m(4Dbv%TYuFDpqvi^r*e8i zQYuH#5ipRh!YE!cdWEV*yb|H@=CBcigcM<^vn?hRQJ29d${Wu`*fNl895q(N6#aIf z$$+f3SRk1v?|oMeP`yK*Ly`wmE3ev1X}WaDc+D4w2>iO!;Ln~? zX9sIN`o##groHnPYwFu8hz%M=;fO&P{Ol#=0WTt+MjT3nf*Z7A0fT;5RrFpi(~<#0 z#E>X-)xC5yO_ID^qkQhf5n_SpQOA5)GghE!`?CFdW3o~}wO*X^&z+MlNhBgrR_ky- zQ)PC_(RaBTM`N-{M))q2yrd*)a;AVh1i)f*p<<{8>D1s;@;I|{z^Z;fI44G&LWXco zPtr$4hF(li!!VGQ@Aw7yruqqR!au?7CTEsr!%hJC3@wdo6Q_3gez5lD$&5{1+`r#v zD_D_hsHDR%Lf8=+CZHtZQgU%xryCsTwV|q^OmN5rU!c-J!<4i9pA2 za%jIN{cp~-Ertd+6qwgF{VIoc^M3F!DJpE0=1eM6pwP24Kyi6(?hGR@8W(uj`@^Ei z!NuQ>gX+X94iK=Xa#*DkT`yv4>!U7lNBPKc&`~BC)u;uz5fKkUibx=&$Hk_i{pF$1 z28jZOK62`QPR#XH)dp59X8s6_o2EFG=GBriWV>I1jQ=H{c6hC~=gbgB=BT7|Y_eya60!QogF-m)DM%>t$@BrY@LW9!6 z%+xNHzB4r04+>G3O3^;o*9WrV6>wJ-zpVeTyZJzSl_vIO!5UfIEQ31lXO)zAxjxe& zhIc!nR;ngz?vjgAukw#nfmPJ)(uY>%G6B*r^ddhE;*;_YhsxGDL-!P$miRWsDjenl zW50;XO39z4cV{L~E~%w&gYw8;s)6dm`e;=6WxV{D+K~MKil)!8tzilDSkC0YafMo3b0JO~=0*2TWG(|j;g%fy`7q>2n!{+roD&E65gHDv z=H6$$hi5ZIQ^W@z0%j3zhIWH;(sCDKC6tpk&K@{9A#3}P0tYMa;4rzMX(lk?g2rGo zO>bb*YGq%snweN*fttm1Pw%9e4#!tpmX1w-&=!iyEMBV81`rsN-Bo#=YyiwFhK3T= zIyVH}kl#?`WkkKEV5!bEuC91>iZ9(S^z=~j^DIWev?b>&#ZimS!bL{v_Vk=m0QE2Yj z%KJo8FUa`hMzS->^$m5d%MYzN!_emF*b(6T`4qf zZ(nb{yA?vZZ{dNg>KUITn??0c=GcaGZc?pfG4d|Peb*c#|4!XDNt>{;R3M)Ozr}TQZvdm1g-B(weFB3Erts2c)_9;Pm zjDxlZlEOs&Nl^qu>MGrR-9oK-;!DzmkE01Cn z5y?ZV)e&okNAj?fje2EMjgqJJv5DILZ1#g8Uz+V|G$uh*S2GXfc_fA4jNM2!)oBe{6t*$5eFDT^gqxRf zH~YM}E~B5bDyX^eVajAu&UZ^aJvOc2Pi{QiI9pCRMAW1+23dNTe}Iwk5zLs49T-^Z zbcu>9siQx$I32;{-C^YPv!(FF(RAao!S00+Wn-~JLm8;D=c<lJu&83D$`LF}kfC&4^HCnycZvy^lVv`@v|G+mQz4p)^tW>y@i zx1MAHn@9P?w`^r`n*@QEX|CC+HnzvhnS~!O+R^LH2UA~`PWPdd-Ldsac_}7_ljj=| zD?a7|y1JDD3Zs=Su|Q^}h4*C+j^j=0ovoy!fXG&;-bU^F6!1I zP0lE~V}_BUFGZa3sB2V>Bt%hN*5#pw5G|1b@&w|sA$;)N z)X3#7Pjx;7Bl)hL4sL$8H6^%eL*Cr67bq32GGdidMC%ZJgW4G3lx)OsdVo@{-JtX$fPx5GnrV* zY>2S72Y>WUU^ZBWAJ@30*C4VRRKaC^3MU7{>o?KAC>yPh^L-nh zm$%jFl~f05=7AL*bGc%YQ0`2F3q3G(nQAcX8oa<=#HugYkep<*bJLSif=>EJe-YM- zmd{w%c^;-2y>}DNmsT^SX*DE>)&D{X^{7?g@9e^YrIY3EpT*ytnhagPNSmrU2je@k z&eOW}yy#x{w77vsmJ3&84Ako!>B3iAJI`@>-zbVR>T2IEax^1}n%aA*cWBVzM`24$ za@v-;87+fY>i-6ratA1M(n0}GsMe5L+oCQ4q;69Lmj{Y-iq@!tQPCd!Es4(q&x!%1 zQe667&`HuJT>UBmhy;A)WEP%ev1u)5k|v^FCB?;=|4nHsKU5N^^4CqjnE4$p=3QbP zO)tQ-PZnS0!Lmg?@UQAS_za|4_cy>Ixunwz$;r!fHmU3F{+cQ~X#XzR)!t6?+RRG1 zIwGVR#-~w zA+@oh&xO>Jq$eo|kXL)<^JkgSVVo~#MUzf^INI`*`9=}-M5?P>=MUV%&)zfVYE9%A zxwY)8fHEw{!WCP+-Wc&5$z^7QYCm{ElR3h7_afHV{d7<6YDXqZrfLFtP0wb*a$e}! zg8P6ie`=)E!b{`h5ql!Q%8B#i2KI-LIr4fW`k(%~Sc&%49DxJduw%JS1hUvK28W=m zJDCWwtK`TDL6n2Vwuh(VMAfj?uVSahj?i8=TIZ5{^8c1P%zT>Kv$PTxY8#`V=eE$8-JV~ITbsQ%l9Ol-6bR5>IDB2`P#pYqX+?>2(t^4m& z*l2g7=Qj`lfLJI10O5a|!v6a6f0Myf73_%E5qyr+A`y^c<2S8t7NqFVqhmq734jz@ zEGUosgwr3ix?I(Tu)OGY{kaJ{6ERnQF6{2FGwpRd>BVd$%U?3yfE2=@;Rx(Rhj7eo zvKEjYs6!-@R!j9Qc8i2+YDB+^WrG5Bep*;vGs6d_e}Ercl3qy2$uBrqcri?WVWTQ- zD5gdMQ$#voC>6WniKgDz)PIzN#2BjY2s>2Zk_ofmo`vRgAThHF%+)>^i51yCV-h4L zcbfRKZRGhdM8g=8Htc|x65Zdj1CSE#mv$i81i+bPrJl$33uf3P66lj)84Fe)-3pe( z)lD}02@W{J@=AGR>&9sLRVtOFNGAnU@N-EUB9+h>>?qBg(~K$PW$TBB8@vDg4&cRl zfr2N4I|rdryRvgQ^+cXqJe2H6;^&wotOb4>*QIK-=&fk^QU))KPy3!M@WKryr5~|j zw~06X7nkeXJ%sJ0SaZJvI{-#OK``7-*4|VnpK=cd?S5Y(C4X#T$jUd2Wb0rOn;_Adw1o@K0s7S#DZQn@(MD=(HzYSPm9*)wUURm-l zl1MTZURRhA*>xy1%yMLE1dEn~Ml2{AZpeX4j;#z;sJ-gaqw<2`={K?zDM0xnA)?9E zEt?=H3xm9JC#kdu$HFo^n{d(mF2OTiwG9AY@O^kfu#0o_{rcqRv&eoCOh*ugD?1+Q zg#X0Z!EWUi@OQ$dQ$(b(A-Z|qx;Jq7sr)c0!C_E@w4W&ziG7!`dzHVPbq|(sVLo%Q zoN;v{WD_3s3`#z04p9IRCAZ$jlrDa|@Jy)cF|?0iB5#+iOoi2L`h!u0sZXrZ$=$^b z&8ae}4nZJmNf5{O7XG#mRcf!)ZG&=V0bT1#LtuSmA6-*70Vx0_oP~*8hB8NKFha*85v2;EJ~=&@bQ2&0(Q*cKnT7PZuk zwyx!$g9@FX+?RnzA`2M{uXbvs1$!OMv^Jjm>Dzkxp48~5^h(h6(KN>PacK|%aRukqODWrj4@5jW!;Yg7rt znP}!p_^k>7mtzeGmSPV<>$K!al~BxLMi1Xuh6jIHiS?nchaOJb&97#p0Zj%sXlPyj>($R zaaaz{*vr9;`4FUo+vArxIMRK19~Zvd>$DC(q>LHM{!o1a{`-^eyPDu)8z=z43jzQD z$N%L?=j3c+?__OZ_}2wpCSi@^Q$g#wMkNFVxIJT?Bn>t#Ca4^ed5~dr>Kl?OwlZU~ zT0Eg~!bevnyb(5rY5e@Np_FZ-E`O(Ov))G%{f%ljd_wR{Y#56F1*a02F_5W00{YsB zNhC{sVh2H>2-PD6X~{6MIz~dy{fiX)g#_zm0{a<*x_UJfVuSQVIwenV6b*qXCdCgS zY*N!;LS|r^eeWCTj4)#(-WlyU2W7Yr!NvvB;)eoHw-`*Soz7(0^jMy5d%ZGHh;)arS2EFmcec)bSbg>|xP6Y4*pjBS@)ATGcZ zP0NcqJ9{b~Il?B~bw)A`HDZ~=ZE5FFOd*1Y3dP&MGGg{0?f&SWd;S|j5Gjf z4!kyY^YP`y=s$mZyg$6C1Gf)FL(>HRG9t6_gy4?@i(E!0?2}8p7({naqfcE}5T)=P z0y|LsFry@9lFOiM;*f4afUp;fELLJ3ROU(-ysUEhY>S6Fb4jsV`(fInQuSjn0JEN(s2gN={&7^)|OPUK3&x?r*0)Ii6NuR;8`jLM{C>8sm{m=q)oh( z)$?HqtYW~+0O0-gEhgnEu8f|cPdTARm);__6ZRX@_(7T$5>X8t{D2v5acb&2kDMoT zy)lSYD&=WAIQ6;SCzPkCi63n>-Yj2~24o5@BUEromj zPV0PPTOj1DzrDF&jP5j`QYPaoiQ57txK_-4I81zDm|NYkP+~3VTKh<3{5m+&QoM#; zT%Ru#5+i%xy243O3}})ecTZ8JL@@y%Hm*y?OG^rvhV-DWU1bqvs6PeKNc8s)b;8}f zgBkCX(k(IE3~X-aB!z`zs*>mg6;0mI^7u@3(-0K$$7+H}%3WvJVr=~3V`*zqa~cni z$!Yu#P5b&9c<6?2b~)C4ignY$+~{iXV+QjHWEKRJ_iEyhHD?_`W%~*tp+_K=kQSC5 znm7vdeLs2Qe5@}uz4|vXjM5aL_kK{_E!%Iiq$;KUP;_HQCFL&sAmJ4{%O}L*cgV!H zn~#mk@E9sTy3$a=oTl=gSnQ3ocfY_l8g-!WaShIG8f;8mAjbRdN^TZ8e`FyTa*pt# ztM0K~YI_@2ulVjV?^tDU>}bypdY3&~CE8CA+kx!+2x5Vxy20^-%Q(vPl(rN%z39o=+RZzI@8JK1KhQ}^@D{)F*S~g|3=U;ntVF7 z4FrjFfuoQn6s#n7#t$dIM2z#cl!;2w!}jZF9-d~yoOifY@x$TczF;jaFs|_9Y=`|s z6P0YKv8HOd7hD{h-(`mPcI*`7Q)ic)Udr}j_dN7iPeiqNHotRU8=v#-s7#>?GEN^7 z=@^=yuVen6Q|L?X);`b4iR?u_R%@q98zm`Ouj16cmK^@7SRREnFk5S;TX(0dLwYVSv82S{xthM`waj0`M^)U!I%~d0H6`$AM7jt=jP3SO$eLn zHg@Y`Fz*+7z3_lE=+TXp+jDFc87Yebry$XRL>OSZL<;w`@v$}({M9WU zbCpH(9t>=yeRf{T-gxCb4inf^)g@|FqacFACxy&;{EDauQ83LTjSU()C}F>0B53?b zFl8dzC$-9LWQvg2!T@v8Tu6P#(Cfud%|nCKPGtWEvnw5viV6`hb1TU>3}O2nZ_8l} zgN_=;zFfSPLD9rpKw_G8BaiNwz2m!$GSo{h3-xu7!4E9usTU6rSIBP+lS{qH`%%7# zBNLWc6`5XX2~0P(gb5(F2xCC|OeeRdNFgx=Coi`ZlrY1~R}LI$FvIg_Y9!W&;n{n* zTq;bH$P($J#I#KHBs)v5qd$&$Z7{pAv!aTZLGWe2%wLZlkY;Af=|iCRk2*U$yRc>U z3@-lId%ZCRu>S@Ft5kM3;Tdfx6-A_SneuI9OSK58{MU?anU{VrH;-{J@mdwg0*vfNv#m!g} zW?+k2 zQ71qZ(TQfX>`&^=u6wXcri?UgRxA`GOoI_MS{mP`yTt`VB2=8+S$jZ~!jqP5Se##G z?#^ajD(`T=LV8R=(q~)Kma1%+E$Ko2tjR&X?(S!^^PQ=(i(2V!Cs6k21{Q6+#~|?O zGy|TQ#p&0Ibr2>eQ&&h-zpCx(A+fNJPi-FFwED0QA)}bVNSh4cj!RrP3Tx0btv$V8 z>+lKpU3%}_;&i^iZ&%WKsykd6NV3%7{t=GmZW{`urM`e4T>P$%X^v&NZ>w^iG~6nN zHT(4rWBN%=@TqRmYAc}<(u2nkNPKC=&r7j4}>#bBE2zX8F%wRNWeCv|S32#9X}%tC4iLo04BD6-j}dK9ZK! zuG`;)EgnE+?F(qz2<%oQl(70BHS0hSZ)wh080a&R(ihHgNY`oe&sV|&T+Z&X)MNDX z%(=&8_AsBCPxtu4!>GP#%WCJFG_m@GM0;=R*9K0{zt5$QBQv=PhLv%3~zh7TQIB;ow>u+Wv}co+1pG+WuF%aiRe*|;|x zHzj*Ay?Xe)_XvkdwK&I_#hZUWTLj59)PqO#G-H(*!cnB3Mz6hTXzSS|ukJG7jGfZO z_H6ax{f8DUpif^7%h{!(_5wT{8_Cj9k^zdw?Q4_ua4xPW3Oip+evhQv=AEmF7jIET zq3SPE>I7rqm(-m;zU^}1I2YLNSwJ$-!Af4s8(gg$T4FJsg-h3RwfCeIqOuEX*d7(dZs&K)q!)u@O4 zaZZ004U9I5<_~^Hr(o6hGB%!ml_vh-RCLMya3YPl|9Z39L>J5fW;_#nq(vatb+iFA z$$t_teoS43L_Arj2$j=VvR}O{(PvA**5-*V8u|m5vNH;D5|9lKPUVmNGINyOZtnjP z>6S4Wodim-kRC}4G6N44Xp$^0<%Rte>6VR2K;`-4y<8r(0~zV|>Ah@tNkcY_!iG02 z%EJK{5dzFZ0rUx81^nS$We~bH!`{JpXb!-g+W>6Ac$R7(KiH20wHhetr?@If49fC1?62;b5MYb6tCu@}ef> zkJQem`LZX$9^ae3&xgOzb2sdl{sZLM(9m5+CUu$}1FlfMiRascD<9U=X@jQp>EZ}M zkQ#w6(6~M91Cw69;(xH%I8r|O$ykQuiX*FVWsQ(GxDH0Kr8ie^e~IlpGhsu1TVen% zvj&HmZMPD$>E8aLrSYVJ?9%ehQvqRMc^ObUhkRAuQG%!Fdi9&vE_JTYY>k>WviC^TOU{)SiQ121fNfUA9 z*;_(bDey;0SU7oo(|sGt{0+4HB@4EIP3&b}e&ZlyaDQV^to%^=uuU+*aLkm{roL)S zt+ciIx^yh1KbJe$7 zJUr)2P$OWWl}GAh0Ny83Bz{S|*0?V0xXzW{S3hTvk^X=*nX7{*$@4Tnb{w<(HXDgH zZn^O;>!V}?b%D76)U{*J)HSsCM2+cd7O>p@T)J}|H1wq&Xyci?2lc6DS?-mN1J|M< zDS0w&9lEq}u2^@>bHUc@WP3Mbb1jRb(Q8XK;YY+0Ys)5=%9$c-wjl1~m&z->ne(rN zF!cNM3{$##5Tiv$*P3$EwBCGXHdJ;3F&_NjAAo-!;V0)S26Qk00OAY)0C@jA!vBjX z$)u)@(|QZy@4Kh}l(DR1xw_3QZFGVY66f_ott-V4L+nx3=fC#vlX+0n^xsraiz#K)X@A;dU@Mne*+BBZmh-i*dD zDFSg3K|W~2{%LgMBIS2WE}gR@U|l7KGmkgVhY(*~Bq|GO$^p>^=#N~t&)3gqRQK?4a&~g&=;$RR zL{K|Q)5TQV%5M8|a(5A>=vC3tSDAqaX)_x~5cc>vB6srT_M}pdDV>PCLrGEjx3iE@ zdkpJa5D#7Yu}c!gskNuT3Yt^Z6`{?SBdl=Ah?6Y@iR)iBvNledI@L@_+E|rg(v{f3 z-QO2a=Um1e>5oRzP}pM^DN9Z|=?~MGSS3^H=Nuz$AF;F*Nr~;iPuOk6o>o%`^`=mZ zj_AGrI!gJ$Olv#JDMgw(e#XjUysdQ`Gw>XRXZR%4L#s`!KZeArb9mA#S*cWzHqPw$ zfV3=?fx098aL?3cinL+`XcX${$tdMEw0C`cJ2)6xzxw*?)%2^2j~Ck-IsXSt)9}zs zXrtnmm5zFE<;t+Ww@zg&4{Zuh0thbX9R{*L82J5n)aMs9EFHh~S#b?ud&f6dJNUdt zp(}XPjsnmpiSiZmqqG7M=zuE$t91u_HfgKiAx3Z|Z$U%6elEmEXthYN}CXiqXhM|)U7Dw z<4GaO8l-qGuzICl=>hm_85aUn$`KI0lOQ@5+>B5}GFy;oHFpNJHAFAU-uEM%uBnRn zalK2!(l6U0_g>y9f@wLH`E37jP#Q>3ewOAG1G+m<9vBWL2n}$w9k~aI&%F`UI3Rz@hskSjR1*2EPvGf&Gsq>GAGHE}k(uS88WwKZ6ygvK6JQhZ> zT(;eO(K8}(3g+*sT86lUZOSU*DlVlBYRx0xbHJUa9JC6f*ufXN4jd>kG0fjAbG#mO z#zh@AyoY_OQmLS8m=?zZ8=+C3nZdFJ@dfLTu2)>4x$By0LKzT9=1c4izB~FMZ(E19 zUL)@+srOz3N3!@ZPK4wv3$r=jZ;wI{!7$9VY%vgLof7;QBDu)=NiYS#9Tmgxhub~n zHip&8P#c&-7SH2X^0o6ugcLItu<13ovA=?=aXJA9I)5ZqYq9p)e?qxCHqA0M4IH#X zmGmBkkEI8IST`2`kmUPuc3)&a#!g9=L>o;SSQ0QT#@CQc6Hipa)$i(uU(KDz-|utj zrp-ep(H(}v1BMwR_r9IjwrH4-<%RoOFb^4`J)k-iYh5?Te`zKk8LMwR6jyUpH-$q@ z@UMzg_Xw(xJy_X!N)Md-8NOJ_xFS$(VBNgtcy}IN#7V8&xfWncl%2JEr9fi+IECBJyulwXw+|tQRLi!$bX;Yl%e+V;GEY})T2_fzDUe}wpMh!M%Fk>b z94J~@ zBk6YqEW3uxndyKWnIZQg^16su29!XJHSfQ-_!Z$dl2#*kw6&P{VZ8z5JZ0Vhgno}A zWm0)0xql1_lZA!*0k1t(&m=P(4MOd0!+BR_SFBbuRDCau)A@Z8Z5B3^$ME5JYo&iH z4#7M188FShqru`b(0=ajR7!Pc0%+Y z2#_I9dmLb+5Bi~%u-)d&C@4&X5L^hT)MVe!AR3vUuYztIY)X(Rr;Vq-q_crD&}(MW zYaM0+-0b2rhELPWlERt^Uaw1$7n*Oh&FFr-#(g`Rbz;?^Nj-l*d0me*1?0X<^gkO{ z$ss@}C=&ND)8sY)L=^;(f4-XdpyK&4db_9&d)f)mV8|AftV#oQrUluC)zw7MoNnL%g-3_3P^y zWFR)tS1g6fC1gd73K7V$$d7hoHga&b#S6yXo?4sERE;ZAk@e;QPqJ!=p))?1^^ViM zolpcRCvE~i~7Uosh#srlZrrd?$~*~Q-0?R?;6Ypec~ zX1;8~Gqs}S2rJ@Ncs_NRjhK?h^pikW9(g{Z#}&u{YP8KgtQFxJreU{C+G{_YGf5iM zU&+u>-MGx!Ha$zN|k~X=wF#aL9wG8uWI$xJIf4d=F=g&21SrwAAJ% zp`>sFK&40i?uR9Tow*xqxp5Q z)Xqsn?ySmZF`b^FV35sz&Ali!Vhc)i%+d&Sbklky(zl>|`8eeA90_9~Tfs&Yz)7@r zjXpCCvz<3#!TMSM-8#-M^kPIR;laFk-bM#-Jt||sxwt&@4Q?!`kF~l+dq=_u1iPHH z55r6<3}nw>v5Xi@C6dbFaIQi((?h=Z@Fqm$KE2AX(<9IBOBw=jW?x<4lcBSW8^}BR z_Z_;G5X*Wnz1-%IwTlL3m9U2DvgHc#(2Ltg0#HfN-pys=$wLN@SMl@Ko5cpJ%$$WK zb0jf5@;rSyTlUk_dUgz$_Dv24aS@vLK_b-HG^f)JeODYLzj*{T^XbHu2k-Dz!}X#D z=mOsroHJ+(S^Z{tX_!*RU7^|F$(KA;E~OxqiMP@ zuj@X#Cc^d2azs`uH>Xs2wTsE7i zPfuHswNJYDq+a#i_}43!q6V0cHOc&61Z&wTp8B?g7A?jqnZ1;;VMB z#vUESiPwD8YQDA*mUi@)6w3K#AK%IV!8%i3xJYZO?R zGuiwTTi#C`9}F)BU%xtVwnK4AREct$HEpl9Ju@*9xp?H9GuO7g`YhQZY&_%$Teo(j zX#10{%k~Q~L$V`p?g#HY&)aK+d&VFbc3?NSq>Ppq%H+`(1fkb9Q6KHot3~T%Wv#8c z;MI9AsFqxaV(ub|HGmNrONY zVUgszk`}pp>*nM6!4kUr3zHAttbW(|-AinUZr(Y9`g@+S!eM+YB{6ZL7P14r4@-L+ zY057C{;1o#^sikHo}6er{M~0CFkv^0sl)w>l2Lmwc)9w}mth6?9mF&=rXKD=8E@ZG zKS(Y@r*?^_G)>EII@tnbpZX69Rbd%^>M3U*w%CDT+7(4|^^}COSS7g)XMUs}M^Ov9 zy1E`xD(;mBjqT^~pQF#m7SLf&$>>I+^syzbso+MJ6Xtl$XtZ*sWuiEgq)AHbD}a=u zuSErI90}wFKWx| zn}T%c-&i_x<%)xgn(->(?KV(8?mslwH1Sx^#nA>B_izC9aLWh!Qn+gPU)mS<+!C3z ztAYUWdK%F&$+aLvw=#a8OqrEZ1-L3XA$#W2mPXDBfkE11VCx@>;mbI4u4-J}rl+@H zjd%qOii~;}tHCyVkdyTjcL5>M87m+=N2OOM+C7NSdE8f+Ipjq-|m7b($f91=EM7(;VjWR`w$&CBf#G==E$wVsTfUVdg2^OiH2iv2hXN6k0${GN+Oecd~Wz8d{Pq&DQbK+;+m_8GUpK3DX6R!WcS>-Y;&oF zRp={KbG@g&>k|g&wd*3ckG0xZR4_jedt0-KTO(-S;?Q!54e0fF7h-2qgNCP8uRvVX ztg_F2V$IVI9C0BRr{)$rs!F%5^5>V zPyDm+9AZ2vpQ=QU!Sv41dm!}~>Z=k?RghIv2E^UOrR34NnF_U`LXU<0t`wdf{=>(Ap zbN6J8XhxF~c_BJPFbkEn1U^CP(eD#jraJ{1vl}!_0SzMd^IWoa0OSyE*b+wz4m}$f zhZ@K<P;C(0mTTvxv3});E58;HG@*WorEGh*CgKVkkQQa>I({AH3u%8MpF%~h zmkc7dwP{bNA1#lTnw)QxB!R&fWrjaZXU34J-CMHj%#}G&1t+mWgL=LPMNN@?5P;0& zUYN#WMRYL{Q+&x6KX!HgXw1`2^lZ<0;FZ$}_G_Nx@>dHt+26A$Ft)f;ybX-Kc9tVDisgb@veK)9iZ0kz?z(|)?@38x%V z;%2T)7}f`s1hFF1kp1Q6b!ebqU!&@n06I{<&MD9vN=;mJm{N*Zgvz@=oy0xcPfzWk zd})fJTBM-#+ehkCta2Bfq#-*}TKt48AHDs6HJH0n$qnnQ1Xt{iQb=THO}2{d703!mza2H~1vRu=rufNeMIyTIjPa~cwBH?2p4ZHS=Xn^QRN zzwq~FpGOD!-_ESBLEylQWy&JsVDXt^cU9>IPk~ZmO*G{&K$2+=wEC zRg$dn*rM%B48=`z5u>sR>n|ll>tt~i^b8^QLZ|%1L9r8;ZadE92xlOyLsPr+U%SL3 zbVIYMa-p)PkhD?v*@wnfgGAqXws*mTi43c*^IM_6AY$p{4|i|cnt00GJe0I7tc4IX zGtaVx(R))}%5c2f)PJEVvOv>FeewS2>D&&+E-PXJWkbb!j*jAnPF2f=$NWkO|}A5ns+ zHfjSC`^xg`WdVEP2zBYGyso>!0AS&l%m|n@t?1R{VO@k6r6>G`Z3xz0Q={n3Q9)&* zJN~tS%+_u5ZbD4Om+$rN>(AhSf6dd0?rI4J0|3BA1puJ==f|zh-;Il$^qdV0|KfWe zsQ;fM7Z^yK4#!H%-`hU@yKZ^|;2en)4vL@>M1#n>2&n>TS<6=2M;CW^JZU#8eiK0d zD`D+`r}xF<)v;Rl;cW*p2tzhBtWunP&j+Ux*bkH~Da`#0;Z*Dd_yB^&Y40*qz|+|D z1OlBwPIFFH=;B9!4;`I*wQF>C693>dGIxzNhvkc5aro1~q%cwk# zMc0_Rs(hKfc;cdBUZxa|piJbQbRq3QL1{^rzQormK8#@#npxvGPH6><6Sjo$AY?dD zlO>{a#3m>q@aX%l%dSQkx|{u>yXGt%Sljq{HEB}X2QeKiq;ouo=9tWiG|W;k8*Tj9 zSzW?OyLRX)==+{9_*3*lYG%#N_CCA;gc~ql_9N!o$9ExYFT~iFo6Wrav}6q&m}BwYUweV2Cj3`E*+w2az&mtg_$+VJr=zFj;uy zGIpp{Euuw;`X-|`EypYBfRn$;lDmE48EW(>{j?1WG;?dA-20N(LJ%BG29!nATW&xN zs~OBaEpRc4kU; zjM}|!?1|>eN|h5GGTQd^^?p0Nq3LMB%89B9Nzp~`@)lO+7@I)i>@~#6%vIoxEpbY?{*z!C{EQr!H5fh6P*1CR$l;^ zZTpbyyCaL%*IRXm8s+kdw0LG1zQUA)nRjox3Ad$5yy2!jIZqW#S6x9zCr#Hr(6%c% z$%FB#Pl&RFCNhg;4P1!;5ud&H>{sb!h)DV9yqM0?I)fcW^&{u?i`i8UXc6KkJu{3xj#d*{0;mu) zJBZZ(eREjQmG5f|T*PbmHZFXeD>&2`yH_lqX4KM2609rac*K6r!hJv>sdF%H^UX_{ zpjR$QTG*dv@Oa1CwoI3r1cb^qAaug?>bpP!{DqaeCJv0H)$v@}q6ZxzkAsrxgZ{c) zD|s0V@8dD&J|0faf-JvFPLNO9krTRs=+MWT;&;acSZ5}G?)2DZSS^)YicGrC}J7{ZJtf@yJ zJjZL+!lNOH8LO;-3SdKgV>KBCC?; z@fJUOBvJoEv$DQ#jtyFxjF3s1lV)@Z3UuAx*=n4U@MAR&qhQ$D0wECxkFY z;g8QyxQ0FubId+b6>g}+AYc_LAoF;VHISo6)h=jbo+pRSQ7J%1ZUb-`^C$eFHNpyE z6BWX=IqzI8*zQcqPb#KOo^!E|fT7%WG}sSQ$bf-XWFB$nF;ezURJ! z9g8?uQ>|h??_g~s2x?vdvKLHT%12W#e;yoa=`+eV~d7Z=!Hu|BYI)j zf$9epzIGYF2129%4`=@zr2E!n3!`P*wr$(CZQHhO+qUghwr$(1s#evv_kK^`bNW5q zeZPDE{YA`(C*m2IGiPRwF*@m+lM*aol@cb|1`&FnCatDUnt0Pg-?Au%W!G)jtPUn5 zVddO%aHu6&N*^X7y-%SLqDXU?ZZNipEG2tOf(DFxrZm5%Pa&QOg~hgdzbmPwo_-Gj zeSKfqmpe>7Gsh@kFwJ|4u|Mj%5*Ver`bvy01NJF~1EXYYI^;#a4w)4#U;07Nm)8aF zT7)34S|yoUMBw2ea96J&$#jmC;BD{j=)!(37_i*Li}xDN2h{6N#A?9TalC}hYT*Y_*rTV-lIZGSXZJ;#tkPP)w#h{WncMMb2yP zT@3t)-D)r_POKo*YKr%b;w7?VrjYF8mh%dJn=g3e|m%{ z360qq&h>o(GZcKugk~)Uc6NFBu4&Wcne-WpHs)}`wQ=RG&V{`tD5fRnzy&Va+67am zc4&;GLoLr7=L20?+JCC{sil)n>KlM5tp$fRVaW|91Ch&b<;h;*+#H|b=d8c8bpYG~ z1CJf!yP~$U*oqPh-+%0Eq43O=Jd2NYK1XH!Wh=@P`q5RT*4~A{LIwKe1eosbg7BRq zmi%j?#UJ|DFP2gnl;)h7j(s;(_;HtmH0APXF_C<#it!qllUo;yER9n*;o`tc~mv=@SHd5kp3;+w&H@~Y18yWWOkOU!0SPvKQwH+z-@ zsYV{RKzoCQ{CW%Uv#mJ%w%iVfRU21a)+|~nax$X#qP}6WO~GB`6FprL|57G-ppNrz ziD$KRa#*6XFoI{Y^f(Into_?y+_GKx?2>ve*0rkfNRP~K1aDKI}UXt+oeA&dW=&YygU-wE5pIh_*^%XIArTIT(93{J#v{0@3;!VZe5cXqDrcA z{A6D3x1!C~$OQ{A;aTQp-Obm?1pxKcVzz~$Ne7_`;PkF-xa&xo4zAFC<%C6 z3qCw>(pYsiSuNn&1P-`p0~`?T0vlqMiUd_%`>X$6Vv)&)+M*Ffn4wpL=;Q7Cj_)t- z%ai)wOm`!UGU+nIIgU{8`N*aMvj@E?n6o&;iy2=eaq4zBlC2Snzp6YTtE(wMY0u1L zQFsGmX$VMxP-ZgNqGq6ijld$tjVcXDnc4O!(@3^lCHD8j2OpyXf8LsfroCGvxGj zcjXQl_<-YsB~KXe^m2ycx{K@zZ#>CLHaCR|H$v@?q11WFjT*m*W%DqI zb?jnyC^}nQs`|GqnF_WhHw-lnF4D?JfdI1t@Ce#HL3X5t|6xL8Ag|Nqs z<3U=aZgmZ8%d)t3<$Bz=+G}>sedPVU$3gqGTQOCNMri##IcyxmY%E4ccrl<|y=l4H z=r);6R=bl~fq7OR8faA|3Oq0m)ycyf$*9^I>L%WXSRZ7tFjK&smuy87&Gt-5wQxhX zbrMQOyf^7^ByQYQ0I!p8&QBFOkQ2WS^{3;GO1t*0TMM;)UgBB{tA{qUceV7lXz`2h z*+E+2M&^@QXKNd;a3@oi91DdbXf2S3$AY_yG0Bg&hHm0ETvp18SiY%YISZ}v242hf z7}`xcbXKU@Eh6L&Jk<~NTaW92$9f%n@1j+vz_&=8%9U&RFTZAfkN9@v z+mCR183b?t2X=m+tK^WK+z>QF(be}tDJloH;Xd@1os?%Fx=?%%BYR51Q#%Kg=PYY9rc(|| zb$GNI?N3&4`bO0HG__t@78|$&JagG5tcIQtRd`pw|p`G zn})aB-|jm9`5t&Aa5A(80suh&>n`B`pN<*ZyE-|W>f73zxZ0TN|D&jBXKbo(W9jUo z?`CQ0Zff$+&5-<$yk^+l6ZNbv|Hycoo{Uv>9cC~a5(r8V6$yz+60*@sBk@*Xq3e(D zFS43NHrwu9)#LcLm!~{ur_aX9ECLw9>W;u9Xpj#!8EpkpnG`CEGgy^XwlzbIPgng5 zTL~=kD?5%_F_2=ZZgZ^qg95GbOpsX6zZZS2FS0<%q7^JFR0pSmoeO%^&?*MiAkbWG zx2NnL5@_}T|Ca7swF8+moOb@3gI&DEh>F(mz$eG(1oIRJC>9lyc_Q`tHwAmWkgX-G zdI>w%5I)6?>};CL3AW0y3wnq*z~EJN^M~}^x(}%1xh~a;LR!=;@FK>QF4yq;?#QVLCMUdi!z(QfuCpL7yF4M3*{a-=F&sq ziaDgizj4HtP>3=_Ez#i7jwnJmh;n7mhWQ3?aM8Ge`BB=R{}ckDSzw}{qIgQuvWk#H zRjk8RwsJn=HZqQ@I=_2w0qx3`!p5Pgk0P$O*4>cA>7}+^`SL?j^p7ez5(Z`+vr9 zFbgypATR)c6&L^jyF(C9@QNJn($n9&`I#VR5AC<`&4K%`P3nH+D z3QAK)!-_(Yn66no-svhi#qi9(YUzR`aW^who#6S>JuyWPML63L903J>lP;mDfT>HB zwlsrxww?&0p!)47dLbf?4QBnzp4m)Y<_NGx6%;bLfbnF^im#p~RMUVdHYH4`lt-Hz zY_r-V3d<(WKoNb+)Ga#tfK{hJWCkRrx^o{A=ASk7zulzbD5rVjg>$%Jm&AZ`sQ=Me z2K#$WJ#up%>y@1oYlw~FMnY?v>jX>X!hxH_9X4o#w&iK^eN`Vy$7@w5^_Y~L$*KKN zXaJ{>DMPjBW&j0-{m;9T3$C!c2Q>T6L0j85WJRTy8jQ@uu_U|63i*8Q zo!B51?9%@T_VbZ`Jm|rP_gOdczjIiHl^U{w`$Z#wQEQmqR?LmGtP1c2wF)pVLe zgV;ARmo%-RLRwzM=R(e+cY?;>^M40Xm)RRe2rcyEq_QBC&;FKIaXdtfWhn9%ZY@U6 z*sxHHlCy(WR5#-ZIO*%A-%}Go2K{?UeKCyQWXBUeTrk0CjI^xw-iqae>wM;8xPu+j z4g3I(herY2$olNQlI7t?AF;lXk+E8KnvKj)E2T29J4CC6Zhj{_us|_@*7VVW*DcK(CR9w@64H*Q zM%$1J{^0#s^OY?G%d+%gWuc$iLHTLs`8g#VibScj1}N&hM{Jp@g4R*$J0*b z8~Ng2@#OW_^+NPt$CJa~uLBEH8;5_HvCXK;#vgM0?X0|9NLnD8yn|~A|7Q?pYLQoh zg#aQ;6bmx5M5xB`dfd%mVfO2dmK&0w%>1>BQ@}>O*Q=f{=hvI48i*l;;@Cfp5C6fx z8y_tK>d4O1^g^6Cwq-aO=kaqhpR?1hG$0bE7uU?SqRQwmkg;O7Cy4j?)vhdknIFygC})xygn>+VFmP z@^HgVWdZY0|3mu#{X3rG|B9zwRz|AC&1tSvER};VE|E8gpp9nhJMIJXe?(lF zRTI);1|)U@|7CZs6;aI~<=j41dD({+9<++^PtE-me9h7M-Cd8$jR;c(etNjw~2727TJo=93EW29dve z9`Z@qA0G-p$bZGtl7ybJBy1xxq=`+u$|lC|ybi_)RmZQprhiBuo|&#tk*ge_l{V-w z3*I%_Hx3-nZcWd9>%yzTD`|`O2Gwzw7?>FiC{^9Cn{R1eWg{Pj=mW2Gv!wA(q zce++-aQCo((>|<*bqT#PXGBxWe}lZ<>Ad(PBg$cbB%N49;OQZHLj-{+(=l4M>zOz6 zlNZl;V8x;>4VJ6~*6UXyH|}_Hlv+?^FeVgID6lvAXSDtJ>lxAiT5(Xe4Dt^eDD>*Q z?JNarKW*AtsC-H-x?E|xV29x%-`K@!7d|5N=Q?C_(Pjt6yn5701np@s z`cpfuctO~K>1oT|SIF&BZhe`+USs)SQ+B((mM4{M2cEMzTgturbgeT&##oNnx4=4! zF7ZQ(MckM%oGiVC6gxUcvdx*2BzS0L%Vo!W2p9i+@+ml{QrNdp%^~UL_w3$Hud+to zP~?wpzaOGYGL(l`&_RsZNxen04t?>$l__7nNEZ*Jm_Fc^T_ed^lWSrO^%jigVe-C{ z|5|w@lARZQ@&PZ!T@)WdmKc1Vz~MpD!)ERLFUYH_$>($HKf49?@#I)TUOzlhYcYKJ zOO1(CgP)&dn_-BPeNfI5hd}$-^Y4f8PYV`3RNgDT=vnlH!Iy8^_y1NYRt`YY5+eWr zh=~9I;Q!Yd;Xhgh|46s$=sRzXA^!CXJG@v3EtN}hr(2LIm8hgsYU93RMP!rID8Y&1 zNQe-^_W>5HuG?pyi%mY3)BP~cwp`x6_u&Qr3yivREvv!9LEPV7U)}uM+r7ut^?yZs z7;}&ui4IKAKu`w$jOisIu@RTY{JuAdrded!#e+*f{0ty{BD^QaE)v)cQ5xEy(e;Gf zA%mwOR;DL{d;!iQ8?;RW(v<2M$8QRu$;6+=Qvl+bBFZNt(N#!VG?{QT`Fgy(&gv;b zlcNrn~5%hJUJ|_5uch9iFCr2snN(zKcID~4wMPZ+v^cMq$dSfd~Uo}X+UojzS!k7q{=b!1{#mj!U>2EFe{pAvWV^z zCrHvaW;neXutfgY7VT<#Glc6BBlX{G)v`L1_^D_9Sg$JzO+voi zI)Vb;_qt&ds16!~=ogC$@ZCU(ZNWSx>;TQ$;`OOe6Pty!7)9tJEu>;%9JLCiU@KxS zOBTgi^l?rs8c2?=Mrn`H4b}q@J1q{UYkOZ&maMyBYz;XP6DV@TM`-mcCnMslq5z~e+II-6O$FK<&*&4TF-%kl>tG&;*{eB&>z@3(GSB8!53%2Gjuhe>n zJl_&6{RB~t4!8RSagngYdz8?dXM5R{`3#}$?NwpkcCm}PdIVD>I4^@t#l$@2CpGgC zkXVdDb_<0i*#_k!!RRJ=_JlsiovM$nVq^FIl-^(cZ6h!5Uq=NrNLr={!3v&;nxMK` z)Q>j|mxYnex~ljLlDvMcvWmt~dVnGU{52}dQw_LMPbIFc?I z4%4!lFidwmnDP+#QIasgh8jX5PqsY8nP)9I z6Mg7G{8*qmfSsICXxxi(x{x3>0Bw;J@5U+_j?1G<&ad#Khj`TG`2E_(Me^Ih&*xN1 z9A^XKD>r|zLV^&74-dpocd^NDw&=xq|32J=7EIv@5J7n*9ZcheLGh$A95YZzZB%5$ zvh{Mx39H~o_QAoo_??Uy9^M*$Ym0;Zj{P}73DmWvC z8ODXi128j5!a7)vu+1~1`7yWxhL8WmvK?d<3B1`ShYzQNb!ar{iqmcO=C#??a&(zr z;?-$}g6+VXh?FJw=*hcmwi|7?SFb*00>XoS_Ind5fe3=9;d?=mJ_VFrg5YxcfQ4@A z&6Czd5q?1(s2BGYQ5E^y;j|t1$FhV3w~_Y zw$PS3><)Qu`Tfzw%Zdln$LqV*cD10rqAGpN9}f4HUn_=9icyxZQqp&VY8IT@Mp!vy z3Hu&jamJinMJP%_`LWJml;sCD4QveUAYCl#o=`vH=RdR|U?|h@#QUy& z93akGlndM5hGLEICd_9YbllVyiJcNBjjqR{V&hVzmdo{IQfuhppGS$ry^fhzRxD&{ zlmtH=qI%1uoUW8{(qG>jg^8WwZ7=53xJXx`d-IlHel2R7zyT#E>kDb=MP66JUMauk ziw$%c|7e-0U+WT^@<_|fM?1IjJf3-&aR!rFi+!&eXaN7XHD?RQfH4I6wo{73t4x{v{#fPMRCA=gikn$VbPRZlrDqhoaiF^NU0HXSR zchfV^(ioLhXJbx~rlRUn$AQo7L zP|DRK&OpplrmSd&$ue}Vv*C^O*=%RmuWMQ1XBVpr5ru%JKPQIR(eS!|u8RK$?7OoM zOIHgZ+yk^agU=;(o$3*S`_5`s?0lhx9RSfKNS|c(pxh@Q3wbJD6M#pifZ)8l6&+vlGwK#w7p|gB_3-w?D_FXyC$~)i z)sV%&a43g7&G|Fj5HtF3ZtzwAZ%Bdi+awc zGjf}gUNJ3SA$^6ozDVKICAzA`c7NyNvCVaDZ*`X5amwx)os$@^Vyd`ej)0D}hU{c{0@^^&h-&==Aw~KugQB3xG#wrO zFjQ#(`SjNwgA*{^@TKT%2M==K6qpU122}o7c!YF7aU^&rTma&GGZ!xn;TnLes-}6t zC=D-n0g}46l<<8_0ni*9?mPeQllr@#-&1?LKVRSYcR#y<7qX*?xV=gxS{QVA$GFV& z(8?QIiSE-5dqF(mYw{Qc{%{ zu2pc_7W0`qf;pr>aH}2zzTd%JZl8VjaCMi9ARJnmo%7IwKo&b($0>r%P7}5QD!J>UuCtR=gCuzn`*te zWpY6ir3uGvFue( z8n!fdZ)zSVNZb%q??Dbw?&=Rk7VRa5%L9j~vSrKG@bA?%PVY6KlFd zJur+u($tgz!8?`BRGY@!;4sEP;OW20Y92^}SdvptbffG#^!;`y!WcD;Z{ z7HX-&929Bix&}1cYtQS(P?B7=Q1(I8ezjIT3avD=>IHdynNolgRB|g0d5Z$?O806@ z_=33(k5lq|m#J9l)X>am8WuWnw8DK8K7D1u3UA#V+2Fi#t>#;8&nmBjOTlLstX8F@ z^++<`wLD%DDLwgSP_22@ot!rJPLn#6TY~fSUnN&)sKGq<^6+4_a2u&sy80|?eb2Z( zK@mLoJcLE{cwmb(X@sn2r)>s)80abce8S%zH!aZGc@4WIs{c&+t&)jl9*+mpE?p~V zyVdJPVzo?K-tM%XA>k*P)^v{!7izIu0x_TtMlaZ+s{V-sW{O}=sE8n9_vos4fX=K- z0jQ)RRq@ea4#6j>QXv8o^|zKmZ;)XS%-qo#?!)V}kF@Fc%RkgrRFKAsmr5aTv!uN}&Uw&ZYfU)_zUB?~3-cL50Pm_1qkFE(I!H z9<$m0g6-jRGU`~M$B&($dz&E`A{m3QU^tr z=x+%&#png+-2PcOX+zM%5Lh9}5nEVu-Q^2;nX}4SmK&4tuq>L<#hvLSIe1U2S1aya zCQi+kGwEAqMXbQpZE-X~EI8oo5`rok`gwS6!z!rnhpxv^Ht%j>j%~e#jQP1$HNUeGDGonbo39`~W#!IS=MQGDJYPF&5413d4Ujn z0q~bT^n33Z=&GzmrQJmKiM&|39k`mI1x-I~rvo5Pp2F2m)6CS`+#goWydU-gy-JD- z{W;g7gvf$LOGfzus92MYc(=@Cg#Q^-CGFX7G9digds5%lhBh+MF6C`e zU8@OZLxQCMQI$wdaHJclG8S(G7QOm@%N5pmlivD#JY4Vl{CMi^o{D$X1UH1xq@+O+ zBAVA?J`zCRmjc<SAvYHMWE||HaNV2xxI6Dwp|m z4CZq4#U^@LE6zyT z2BxF#?Z++~-B77o*1DOR&~Ox#;s(qB@~#QHb;piDG!I>P3iPfktTB{XKev_*PaA zL=X;iAp<{eXTBW2yjV5IgqS6gten^VqY!dLd2jSjBa04`b^M6;fO$Ao`~A2jk9zne zPhIBd%3A`x;63X**nf{~?Ej{h?qum^XzclK(7xCj)%Jr10N|wo03iRL4>~y6yIGq2 zs}nz}b>+M%f%G%0zmV-jOC)~3bCXVu^O@G_IFuUe8$g}iq?w*mU07G}Q{)^k*fN-SA z+XG|rN-k#_J~4cq1@wU|Mi6UmBssf*uI32U!wv-U$&(7{y8%gpY#{b)m?Mzk^|y^I z()}*gqb88ipg;qOjHPLp2YXMTJB?8!_Q1;};Xa;@L%b*@FuH3A_eId}dx8^$Uz`^V zt6T$~F+sY6M-{L!M^7Mlnn{POUq-9*KwAjpBqNTXmU#j_Bzc^(J@z`?4MX4M6<(-JWFV99Ul?8xV^{6pcp7R%Uje0YS78YAy1 zyiBA~;Zp&{CfkaKVn(r1QzxIrOK;%5C6_McCS z*n_UJ7hYC6_5d-Mm7)^^XvcCVo&%Dw*Te7T17A^YHRquwsYT>ap*!>X5(B zy{s|n@fKaFG$?3Ch0q{9kG;^pm$gfY;CRy_;2sgL>ZR8{k7qIW%Owc&7xj?%^dSQL zzyIL>1WB|11`$Rpp?J29Kwqfmg6rYnNu<#dMA9hcgM?X^!I@1LG$$Mq$UOf5!t*Z- zPW}#cg2PV4ZbE4_ChfgVvuYQQ1@l7G;x<(Fy`qcYW$%D~sF+{d;iiWJI!y$PV_P7* zeu^qRoYkdE#+b9e98EOP2MJ4F&xgE7>gCWQ@*NB!m3B*lgb77~=h&9)Y)_MiL~n5# zHfP3T+_Tiv)6La=E)PB^;m3NV%c6aMl813SZHfD)*Lz3*$VBg;B%;70AwQmRk;5kW zu*>$xEPEAGGF~uk$a*>lg?UWmY_KfbSqnQ(K`WoL#$areLgAU^fc`?sL)+E{@XU%v zh@lG+6L}|$<<6R7Fn%VtgYe850L(SYLB>w^F;7F5F|qq8^kD0 zo{&p1W5ZvpO_K=au-p-=Vc8}~XJ>*tc~d$tlhQjLv_Yk;<3v^-K2>p>531`OQ71*@ zzkJ9>UVAGa`PeVBiP8sjX2SYlai-6GWEmBM`CElE{8dJ9|nQ)kCj$OIVZ1 zh!Byvw`rZ4jWe+|ms;TcE5yYNO3q0i_NubVS>}AOQZUJ=FOOKN+eIzJK%C)f z$Dbm9F2MTXKT+HOIq`LL2i0l!FnWO|3^=di_xaU>2@-0MV6b1-{Gm>T1h) z;~A0nzl2@>BfQh@SuvK{ z_+(muZg4L@>NeHDnjoWBAbzmXOZE3?1sUy%t59zuG(@%)dm!{11ADngnAJLgoFVr0 z7>Bpl$y=#Q2W^lh!18sx&O; ziV-E7@j61hbSt!KAO`JPxR_*>9Le09&`v0oBDfo39Ng;djfQw5@D`21&3kcC5d*+j z^$YXSVYZ`9Nn;+0Gzcm{8-j+PrNGNWV2^lCR9OkN<&aP6c+OFsqjV=ZYTR4MNrY=% zxt6+O%tC|P_|Yqij+DA-o~ceGKd*TV?PIm^P%v|>0#&3M9-CoXpG*qP4wS2LO(IvI z5j00bi?r=%ycEa4S(rvbq~~dUnV~ox7L($19Kvf-OY29E6~__r6g%M0hzbZg?p|m^ z`}EEkl+b27bv*3QvtKS$hm|FYf;9eFvD%xHN=E>&w8dHCTy>V!=KYnpM!O?fdA@p` zfyFv!$lA#@SfTT#V?VtadT(OAQx7id-PidWt}wWHqA0u!mm9X0*a^k#e70JXmCfU+kcS?e zq72zoA`VU`Tcvz?KCN_{D8d_xwFaF#i&NHiP~!PF=WET9hV9*EmMGkq&1F_M3#HmZ z774=f&YWnD)$6(VH<+_&o-|v9sSqaGPS?j0<(6yW(kn5Vx$0FbUAn-$FLr*~9oC=a zwCZHN#tO|^xW!(WnP@P&+MQmSlQ2`;0#go$;r#RU+MxrA3+q%h;*2G@dR+iJ)K}&x zi=LC`BJ{0`xKfoD_U+OIsj9=8asuXxL?^G~#ZR&tL3!+Hu;v)OL6X6Q@$k7zLWb?hZpJ}iq0M{=Hx>NcQbtI?j4^uq3~_4`U=D1cYIw-{|h zjRfyB-U|X&koc1usN+Cf3K%YAc znz+9$yg^K-X{4M|-SS+?W6Bi$RV-HBwRU_q1;oF(m47qsxvdRf>tSaY`OhYsJZJfD zM7UWch=mu`_;|@U^3gOzO14lY)o3#)2F(U2eJ#(x5)H5qR3}^8}=%m zfwEoGT2=0VPJ+Mj!FQ_cFX@*3cN@|cilADOIJ}SX4=dsmS!RqO$?A7V3^szc2qT%ltl(v~_E?N}) zrt)~j!1mvXRLU;r*plnZrCyqyE#=^>)acb^lsqs^$pgSJRHI15H93q{6Epx7(~CKy zQo7LPmq|+2roBANe=1y9vmu|mUux8>b#t>G(~cT}F^Q`R!G2RxZot;EB|Q^}WuK;# zDs?l9=K3>L>g1RZ0jq>iUh|jM)%n2xpG$b(TJp~*;J@AhQ2(tC z!9Q-N`j&QobBGLGEbZ<7A;qfd+HXoB_`cO=giDbkj{fneP+8nw)LA4#6c|%XC2v_b z?rFc$wRVRUYX5WR?q(YS9D4lc1N1tR(|I=Y;p4KNi9VPigyRg1i4Nhs-DERpa^Mu= zpOvT*@=z&isqvIB?oy?XPcSFzDS1PU_s_h=>V$b5gX9ARRw9hl4cMi3$hNAW5Xt!r zCu3H9wX{VVhRm=K8Cj1uSBU4DBuXp!;Uc=}xTW?9ULWDeEXWL1=|NgOOcc zM$WQ^XO6nVRmTi=oP9M!hGv}!I)d_!Fjgz!w|m32V!-R5MYxjT8sj>_)VkZCb2~wX zPmN7(r0)uPP&!_#I;q7ZWQ@u!2SS6$e^gXmM^j+<#U9=+d|`qofWI(A77UR1pD8y^ zql!Alu%ggQ_d{g5CsJehEAuxS`00J#lW!5n~M4AdD7ge?AZd zZTPZe&xZ2`aB^v#1I%V*|Nfm2NU1dzx*_RTkoYeRRV>RE$Vb+{HB_BGzt(XekfrK+ zrpJVeSSJOjwm^lS>#|h0Y}k5JYrg6tyS78tdI=!t>47^!ut_6xSYBSC%w%jmDp#_~ zEh3hsno$I4e+EZ_RA*qe`v9P56ts?77XhRP+gcR6RF=!c-|I%xlSuhDpaSVO*G7-H z4~ylRPph|qdi+0ciMJX5Ad^wR+^nezvOh{c^^sI{ypqNufWL!h{w=LKtV-$CNh@M| zVgqvpZ#Uov4@nLKGy%mT0uLYY5=<}}BQ3*Se^<8D|7&>E0tvo&!rue`00vQZy#uSN#VUY$QL#U+!pr{omHn9*7lSv_Ek<5ujB4pR?7TOl5Ls|k-J`} z!OxsPrh-Z1@Pdu9ac;=N!Z$SJf=d=nXr9F{<_k94 zZh38&tqAlMx_O;?8ei2too=P~9__$j1K!HH&k4McEnl70r9fP=JI(jyRTQ1YyJAfd z3+kPml$(8w7j!s?(tbC zuR_tAhui}t6UGqp9ewD~`&^8aGoC|VzJAo$Jwl@3BnNMrBp@X^|2-JN?~*b~Y~Wi_Ef z3)Y>8tfa-#l41YK2kgXKjz-;*S{!h*3Q^aY_I;VZ#gyp!M4~GWI2be|Fnkal27VBi zz*6AZr99tHVbI1z@^Q&quHqJ*!F|VRn+f!1I7cSgsmp$wYgB{ikO?}=kBCKU8qH4w zBbx@qFOLfcbKFcktl`!`pEcOCDVP zH=)oS{-}HF(+_+<51CdDz&q+{>)Qa3*DeF%kmp3)#xmv_2p-L5qOp|@UHW)zKy~56 zVGAMzRBF~XOA|72bpX6l2HU8_JyFuORm=61sZk4B>21C9ngwh2!V*}n5TA(Ep_6S0 zoz4y7A|YlShHxRkrcZ3z*UTC2ypKnOJ48Jf$cq5c? z(Fo|@tjImpL(*4CjD!PNc_0`LdmK*`=QJ`HC9NIULyyF+<4}-}Iby<13BM%b(<68d zpNdCv*s<{5LXY*TJ)ONj*Bbb7W61tIRIuCR4b$IDC&3f)o2bG4 znpp4KkSbQjj?{732M*%InI6>zhmL&; z)u!)U4lXlWy_D?`IVQLUY!k{tajFjVCV;LsW>C)JfPuWJ+NI7Yysr{amogfPv`(4b zVPm`}F*c-1EqeJ?LFPUq)wwkDR#_aQVO0uByO}RsuJ+03=3&d_OEP4aO;w4T4B>Y2 zPWBP$a$ysCu{?vlM&-4%OY7RLRPM%kL2GQF7QH%bVQ*;m~tb$6LR7i^bpcwuv|Q>LR9)f$vzlI?V-8%+?5z<2!UZ z!-wi7!cKveJu>Yc1^aF?k0Qi4(t5V16;yzvD{LiUyIRanno%^w(r(Wy_B*b@=ABNW zkIG}Cn6rIAdQLbGx0FSBJSA#_QXu466?Z&NP&Hk(RZYh#MVY#?%2;)^)ysdhQL6bh zrcnHSo@(yQEt1`oue-%5dt*h1iY5)JL@S2Xjv1g?{dFhP^5eh z>q<@8L-t(H&Ypt&S13<{R-}$>khY;7fPKYRu2X``(6#aicb2}vH}{{t(Vu?Fg7I5h zDvGw~YlH^Jr{J5?2l)R!zY_d^&y)X_W$8Zsw#$J40OCOb0NDOtoOUv`Gck2Cb<%e+ z^>F#;(?7}fe^UWY!Ii4xg#$Sxj>_ErW&-ddU_cnmFHRB(B?3uqux5REyIXcbZWi>W zqemXkI=H!yN7I|?i8;bV>u`;i2o=~<)_^Au<}y;&_5^Q#KJvsxGu&Zx$3hM_a0NA@ zA?8ec>1ptU2UijxV$qZ>dQ!8emNUQ$l{YpjWT=>dn-#Q5m0Jv+LEzaQyqn~0$D}(1 zW7R4!)UrvDF(g4+g%d~+*LUD3uY=%;!DtNktO5WFj|@o{&jFC$Xs;K#vV_Z*Gg}QY zGo(po4K+JKmzn59AL9u?{s7&4CB94hQA*%yI4djBaV9Fdc~_#?AW(&Cmd;|x3_9@Z zY|EuVpU0{@>}Ah*9gS8=5Aw0MM04{fO%$mlWl$1Rx9}(2JNWp!`AR43t{qr(Xe9bz zz@Q&}`@jWHz<4p-%%BZlom8*~UpTSlPJiMCa5mAH1ofk^L;ooRDmxEVxlMVD(z=w$ zl_EsvE?Fg`a4(S+Fq$0h-x?zk!t8~$TqPyZ9ENFmFyEKh6}4^sCq5tMC%8x;cx6h4e2L&abmT7Iv@U1CjWU*~UMhh%iWUgAVVA2in;n#Bm|m*g zIm0{f>kXf8IJY65LF{Cl3>{SVS=IJ)1SK6%>B?}3eVM6nX!_TdlB<(`g|TQE@w)FJ zA1F7XJdUUq%DDvIH`#R{je^=YAm@Y~N@<22HGC_;_d;cGcssP4&_Fze5n>?;&*t;M!;?^ZB=t}zJm1^bb#Ik) z1g~Hn&BvtG{%39bixp1a$-=s3DY74hLA0N*kv_9`vnW;p9;-a@af9DVR)S_RHc)=? z**W=thCYu=1#afVYJMJtT;-$$t^eF!Y0&4f>-X!}vtP!dRnvof?JUsU-(^Unl_ZVIVru5U1%`$n{%owk3VQ8@ z6(1OhJ{mIU#C$$+!jLha54Nyt!_=o0@4}Q#ZMZPqxdWVzHzh!RD{a#}heKr)p(}M7 zPf}Y|61!4`>RcyiWfyEGvH?a?!vEM|CqtM%vz2J3Cz!x8&yVE?5PP1ruDpKwnpaov zv%bK%KZue?9lCJ`u{}d4fkA4~GiNGhc_L_oV3~BgDskFF ziG}H=*`2Vx0p#=heE_u&@eN?45@+Y2vn-^y-XJUMfJoGaL+&X~g+MXm+e@!NMhX3m z_gts^pxg-ZI3ijo7ZP}XWH)&<3TprO9252^rRkEfmW_^FnZEdss{@aP{8;Z|F=#ye ziGXz**PrT15-EHE;rV`}(!sTPYU7 zD?~^8H`cZP7uK6|o2AIVcm~k^e2n**y_!X{2=H3viJc#Q$O^CKc>fLdqVjX}{|xrJ z8*!dJNC1F$d;kEF{}JrA_C}WfBCU^NTH9}NJa+q!UKdqd4>UHn4;Uu0?8+{+uqL3} zoOy|2LBz;xZJ)amnX-4>`0rsRHIYckZSK;pLKsEoV9tID_I|MHmgXKHm{AiN5(>e+ z=Qha*HU&hJWFAfO)uc$lhYw5e!zbBrir@$}BZOo-!ZB%9z)rmr@{n`fkH+qmjb)@}r&I{CXRN#pw$(4b>qqE<~jrSZA>X^L~MjYsb@Sypt zicVBJj+#5rTOy2U9~oYL1h7XYnNE>7h_s|r9><(6quw?95Z@}h`BnNBP+i{JUM=O_u=`BxE|hmxPG+Z z3T;p0M%pa`s~iyvm+a^b{* z<;p$S)dPRsXNgSg)VL%rKF;GoM@=uf4N8!#EG_6INT-S<*v~|QMl7HOkB}$vlh(W+ zNW%%(USJOZDQA}~k)ctC`gXiuqIVc<0`E936uI+6JrMrNjtwJ-6vG;BiagdbA#ftp zuQ*_W1*b+06_Z~(YxvHrDbIzOfZ@)~5Y-{F-!{BTPQ0sF%6tlq_}z1*tE1b?$^Y~# zy}5bfWTJB|nEzWK{CH<~K}{KbuRKTT+g@$phosMNUhBC(7p@Aqh2(i77*gHSY=+LL z5X4JUN^HA^!Duze9^?c4rb!^Obs&N=q?JW83y!8Wh{8)~j0hmAQQTv&sWc?nCR3b8 zEoDPNluA-)PvJgY=QrR7{_RlsMVdsJX0yod9Np~aJ-0S9rU}tXBs@}X2m?7|G|Tc{ zWh7E1gC=Oh_)$Po{K*=5=9f@LompLY6yT?3*aYw8KIm!ERkkL+UXN$&k6oF0a`7zM zc!Ueg&hfW9UPYc}1rSJL262Gi9{$3TVrS=c63@yfj}$c7tGHJuc>fR}j*#mO1jC{} zzY&mT1JB6#YPACc1-wXravD<#g6%jd2sIuLOx4%ErPzWe8K;;~To-}zI}mPv3{<^+ z#+~Z>%GmFkgdy_JC3X-vct%qSH1M8iiO*uJtmA{jdxoQ*3DL1X1^c&&0-xGNzV`{M z4JP{uFvl-(R!y>{EdWjZ#T{Ei_qNypNgl8QYA}K3*vnji@tk1ZB;rNu-q%{={&8Wm)mS-eeu)s(0l; zQ##8*hG5~+T%uTFG^i|6mCY-Z;Gs$BRSD1(d=4pDXh^8Z9%ED3Qqug;sR8_l$Ku>6JPxOxLCRK{-gVg%jc78SpKH>gf~`iQXv_yVU#9WJvGfY|DhfYK zicx0Rhtg;W+d#dZx1Q)04&U0bkr#dS`gL@52>1FrHO)4im}Ca${6M0k$1F6L7+beJ*unIhWwEk7)S z@3pZx6>=5fSOwi0nzsVKEp-tE`%$~uBs!+H<&V-s-7YJLl+=TTf-Aog3&giuJ_XnK zjTCV|mQ9ySs#c^uW44_lt><|W%#t5Xf#A773EesLul z)ErQ1T(d1e;SbHivz+t8AKQa1hyy6)84f#n?d2k+ffa%3 zZ5EFU?gGVHZpZcK7TcM=?+Y7c2`zMz41Ak4%QP=I2T+Cf-S4c>O~=i_cG0mWbsjDQ zIX5~MO>Gy2no-yaUkk+PG7?x-KJEaF($b^V6a~6BESfch%gOavv}4V%D-z__1jVXE zSJWF@z&k3=g*eVQdkT~IFb?Ne+hJ<^tv}0Nk?03BcQ^N@Sm?1`(=o!X*>*A0EDAW= zt{(%2Tkpr^ZGwd0cdT>HSafF#)W0}~TZbFV&$x+f+p9mSLo}v1rlL9-HBnT@Vj$RH z4V%lW<+2V-B%VaX5?RZ zbh}I+slJ9+6Oa1N(ax)QLEU*kpqe|`)=11*|~_oUKF{cQQ$f% z=-jjXik7kTsz3q5H)>i57jn1SQ}^4<+OB~&?;8QgvH9wotut+CwfETXZj&xBzFG6) z^z-w3vvqcK7@?;nr(1x#B+zbGZ4a7Y<3WVBgX=@vMsreZ&vfSk zANoE_Z1!V{an*0d&8w~llJRMe2Q6h$kuGhnAIPVc69q89iC{bVak}EoPt98X3KS#06iHnG=%LqY>>D#^_Q-q6@8bUUE2#xvDPjMWR5=; zc8wst%A0ToPEsY2{&>xL)G_U+`)V7w3fxICOc@2IWcVsr9Y+H87Rlw&A}Y&-X)9lC-0{`-VO- zpEq1>*}=P#N5*l#$h}t^$mlj~(#b-vd{GKn3YzPtjAMxQOxMz~z4lyttB0r@s+#M& zgfVZB;b&^T@i#ra=mc8dQf9j(=Ogafz%{n}g& z2Xf6?ol05_FvgAxCeQ#6PLo4Zj6#u^%xiq^zmt$^OQza+l5!BAxm_?sZJDcLwGEANM*{ zQ_5+eWXl>B6snVrS;BcOQsrd>XOQSF20Qb&M@uL8{J*KpW-C(nAY(j&mIxS*F4Sbd zP}J~#nQn8yxwC?ID1uDWs5gO+Uv!7TS_$9Xmu(b-T?a10l}!CJd!f5aIlmQP@Rqpo zSAQ?;L+N;~=%lJl%NeNXqD2Q%gGe2$LE=r98N6rE^2yt!H{kFL2|w`R%b~#oN3n4h z)praA{MYaW)spNcF5>g1{!Bfe()9hxf=7!7$+rWOmTb-4-GMoG7{P4#w~>o0Ki;gN z8-Kp+UEL>u`?*CS@OxlK<{dm_MvUxeKz8Y-mhtbm^+k`#wCFx4aPVel^dX> zVoR@hU8Bu;9(Kr!%8*vyhbpv74Z8UZIWpo&rTdy#fjFe;lK-|Atf>7tpIr3G)qX!I z&)*xOUD7uU8bUY~6{LSO=0%L8qVpA#P2JbJbZ`J-#;%uMn6o7eQfp?k+3kSyDn^vS z5luq1h`{bEcnO_WRC7ZRr8Ltq+PvA8EANl3PcNQ0^y0&e<1W8{7BMw?ODU2-r`nrA z*M`J-caJ`%G#eh$lczuW5g#;w)*rFEI1e#$*ho19gNFXAI*~}&P1L$qM?r+Whw8*{ z++u*GE(PJ4M?Bunt4N9KrIMV-z_M?w4jq0L&PDk&$0R!_fx~SP?oJLFGZq|J_CGQy zO~XO42dp{L19T}Ln?1s{6d1);?i3!4EvzmwV4K*Pt;>1!^^trU0RXIyqoe4{teN5d}RuWPjwgYe%-$`+G; zg!|T{>YCO~4sO1nDwa;{td8pREL&YuPbI{6<_Gng#Y7Q_C;k0BGO&iVO+c?6^UMKh zjy0XrqVqxX8f_i|18tFx}xX=mDeFneBhDXGhzm;T|ym3`^S9x9gz0B~lb5SgBSj znIu6rUalwJ3>0nsxnpN5Y@oGue|to-ne%y?d6S(!*;7>nHH2^+ggyQ%<#ZeUm2wWm zDr4Mc3mV$E;D;CMy`|`dCmk(iL#F-~Be7ePIpVZYfu&3?U_2VL>Z_prTZ{xcHB8Br zXO9D9v)VKa%O=o3F?~$cEjm6~`#l1Q6`7$LJ*b@Flu{~qAfkAS5!9^Vo`cT#oMRdr zjzQ(0i~~J>p)(BCTFBb7wPFF#{kLc4KcbPTQ&$K(un=Z%mA&S%cb`)M((zgqQC^e~ zFP z*+sU~@kQ41DN29lEO?^sBKTm$A50kXhaIp4@y-5F;OXwgeIicV6>qrkodZrUEC_+$ zM|E_*g@a7bGto`gop3iTBXB1Q4ysA4mW`{A#0pkb&20VSn5px@_P1ju1^7SW3Eehg zw!M09X-%)qWNjB@J(r+@9$r`jlseRs$0dYlc3$HJDh$FpgZTaR8Xp5`5c^`ZlGetm znMG~i^9w6Jni}s%?R!5V*k$+zK|}KQkih~?NU)B>B^mw3AyNf5ThJJ#XKjg9Ho$ko}8XuN%Y>+=-fz@Z+ zu5)$TN8ky4DqY$GtfS6(N}xfktqpRZ_M07=r#NVoA>uKlzr zI4DwCLJmramRd=7v zqrAUPPZTbaHfxhNmVExw&B3<<18ko;V=#Qwoy$j5%`q zj_{m=YSS-wSZ)k{%4eFj&)5BvU{8B~bC_;{e}v?2+sZ9p`-%4TZ_4EiwLfrSe^m;e zFaQAT|Nm7A{}O)Pv)`0J@H_h}XeAON_PeiyOG!#koFt<~Bt!&Mmvd@H@s3p2x>vnm zMbp3U*spY-iaGdiUpxT*iP~xQqu%$7a!+aqgRDm&Bszq1_P>22_QfhQZgYgJWc<)T zG+lR;y$}=PU7yfa)ro})k(!OL<_v13BL1or80lk9pB57`0m+U8EXP%*lUqd#yh~#g zgC!ARE^8VRZ${4^VEBqfWns5g+oEG9gTHrW$b=bN3U_8=t1K$-5CQ*}*lP?+vYG5i^}TxX z6#X&NyE6xt9DW3!4t)7h^{017U+w_FEm-o!y%QUj%)T94XLoP^CE#{(X(-x$=pmV^ ze?BZNo%5MDa-LjbpEDQyMJ5)O72iel9&uC5`-E`YX>7HSjX7jYu={MbD+55U!;{X zq>`!F?KHT`3)IMw?}X-S4h_W98%w6KSujyx5#j{f#H#91gS<~m#M zHZw85Co7wMR;`=8zOixt5L>6;x4X#-wA4qi!Ne@J4w02f;-1=XWN5?=A}&uT6Og1V zw!#@=s6yo4{mys>`gTS!y$3|I5K3o+6{BR3X_*w-)C!w`;J&%3Xz6xcUiy}!<0-@3 zHCmh<#t#d?|FbuLke6%AKzVQ3@3i%S>D8Y9`qnB=fTVtZ9!6ino$F>G8$|j`HC_%> zWTMY`HJ2@Z>%Op`)MCbCdk3T;zYTpLudrL(#;tk1snS$H=dwRr3y;I5Wqo{`*BAH= zo#MuNDM^XTn9RlL`U^;L%Qa9$U~g};kDM;A|Gk@Vx=%$vqS^kvO@JRh#a~xCtqjlq zI4aJ~?R_V!I2aZ;F@v{*VQv^-2Z};UuXe=hjCow5hDM6L9^S_;&g$4<)}kAy6CG{( z3!6)g4JqA)%OUJ_+aO-E<;R(Hhp!EWge&}an6(b0Bj+=lB5Rh?)Xh7eYOcSd2d;>O zg<-BtdFJb`%qM#Inm%rQ^VZ=G;s$ox7@^OYqj(VP(&D~L!M2zv|5e8?2lF%hEPRP} z%_Z)sU+%wzm$CkAeEeINTpIonZ4(Rt;12h{Rc!ft?CE4@_|Mq$MpOH*6o%sWR?ktD z5D+2YPJIJx*;HytCy_uvU{%Z}6vrE;7!&>yGhEd6<2#2L|KI>$nRP2%E3yC3xz}g> z_Caky+XkM9Tx2#>jcHWG^(0kA3b?%@PMTuSz$Wm|JsO@z0a5WWrr`Y;v~h!U99 z#aKNoL$cqAI5K^vH2TG-C{Z>L`;`@8NaKSyEdi8AnmA{qKnxZ&YAl&`ae8x_}7N#l^WXTk*| z5EX$DlCm?3CSFh`qCVzymcT`IR!i5B=WPxg&$5!3QBYru0;V_nks-tzEYd^}Ni701 z^1!&+-_v&~d~Ai*$Ht{Qw)*=95ve+Hp!_QW&f)S8upx}>(A+hZ1qCutZcjU4tF)sGe+j9#6a3U7#BZ=Kt5%9 zIFs{lG-axVuKDo9&vAxUyrX!FZ0Njm@|WOZ-*aG3j{ zrR?`el_TrMjf?UVUm5V?Q2TRh{$HTB?0x~%Xi_w(?Z!QkyP1n`Bkv;37}*m0SkaOO z<3Os|azmFAvBNA>xoA9ng*q2WLY%DRPQPS|Tx}-mh<}*_#%JhLwbj@2x6FdgRDWx} zRV`4Z9c;1JaH&z@bIMJBOL|O$5j|>Ls2)6j9o~~1zwyOeYiiuLMd^M=jpw8H>SN&3 zyOd7bme42CA4t0~IgsP@aluh8&MvqD=$0jMNa3bv)BvM3F-EIY$_&FA$8Bq@Q@V~l z)2-^H-4jIeV1WeZOdza1pOMtsS2|34Bq-8bv}h>)UQ5BHFQztHy7`cDhU>C`nnsI1 zr=kjT1_~bgLxhu0BkAih9Fpol#ImU(ic0bNQX{Jg;5nJ9nmG2&OM(?A3&fhNLu{K9 z5+yIhHXxYgfq~X`NvIpGlO#U8!=oM4W`Of@04I)J3m3PY{kl;;eGtHm6DB3VBv@d0 z)uR_X07ttsCQhuIZ>FqTy;)Xp&2!`OK+->aA%MT9u62P#$Ze7og+`7|8VrZ)7@b*O!-rk&kf3QjAWBb#dqqa#PHn-nV88#l*^TFq;;NRC~u zM(SK{G@e&dN+T#F~E7FV72_$lC^tL06dF2v2w>^l4xU z)E-98bjLC}uOp?6x@K0&XOR+zh?KqzdSDhRNX_0^VjBBR2!+Q3NG`k3CvG=%peMhe zlfO`vwhtQFmT&t8NQi#c2uDKK%V-x(iIA;3`U^cc(tA$0jw9Jx$j2kemerVjsJ6C+ zP`d1?{GBi0GAw8;851~71xrP9vE)(SvXElqL=*&tL@JOHwM(~y+tC0O1Ds!@pv|_4>ucH>`o)$gfck3CiI!BRmJCc z*@@HKn81OT^iZ=`4mA_^bj4Io?Q$7r52#E@9<}PrGdQiq`lJ;PV{Bj)X$M3i+l|{K ztwXZJw9&hL$;8{jGlxwYtz zo|_*%_f~rD59{_=jGv6Gwj1>bTD1J2`czy#Xg&4LJ59ulezs-HZJ46dtaxjNKOJe5 zCn8NNYadLUlIKH!_oraxXe*>_E4+8a@-u%}371#Pad*O-9F+%l8eIs0+K%?8cZegr z&64{5vtES5UQ0UKP35%eO<+lWE-t6u;(^VyPMMFKhyA;WFHZnuGB4hmOwG z_>S7K%u)+3J8P`Yya7=_k#kqMb^8~w#*zkEl139sE|?(A*l!U1=S4L60oA~@(@+Cw ztDk|-)48ZuqXU#UCF{Ut2>Q z(lr&mEdAdlAj!(^-o-<6Lp`CZo{j30ceDQg`C25;JOU912LQOi001EVudhWXQwMt| zm;XcX{Qs~h3X-Hl@&1=Zk>)=ZMbbDhqRJ30E^UztMN&$Ry{{5G(lwM%w zsq;w%14@|2zEA%xcy9Lc0pboBl$m;2fc#F?hv9KqGixf=I6Z+O+P*I|07AINF(Yb_ zDv9C8i{Ibbg+2Um!u|g8etP=u^mQ8$GNZGo?K3ijBF{89!6aIuVU-55-O1m}=_yS0 zi$7mKCw>pnhl3kmKW}$;Xk!HyXZYn|=KbsV_V697?#`~R-cBAIpxwf-khOuhQ@Nc# zWdH;ANJyQqznFFG|sw6VQsiru%6xLwFZ1Hq8?3vEV6=bp#?hAKw6f&$ax5*kjZC~ zc#|6nAZKHf>f$IIE%=iuew$vg^M(v0jlWU<%X=`|}4#c#TENTCez!_D?b;$CtZ z6=nb%iw#j?4w&n=-cP~od8C0>_YC__^|lyY9Z}vqDE#|`0hV=#dwk(H#r~V#oR?E) z13u9GI0~)>uy?hF$904{4a*Y%58X@Ht$kU^;CNa{+UuYh{oCe<=*L@8$-RK61UJ)h zN^)&kGA$Un5)!tV)G20WftO^tXJ8voC#yBO|E5{1+7(v6XmQ}PZf#p>*(a8!T)-iQBudT+;-hvVSQ`mJV7vKy|8t$!NLvLz2--3;7OTytO>hbur?uR5 zDbIKpn8eKM-E{q7qTpgga_ec-0E!L%L&l30E0Xf{l;Q$r2MA`CLT$)O(aHvmH|j0x zZ;`wbwTnOD!LyH_@XtfVWaKuSPijCaDhZ;__u6@tk?eWdk{1}Z8Nk)G9E(hB0WtHpADOuxr?B~vhCTjukMZu)Fas>TC<6D_R#|Z z?E6c9ONAp&t%pF{rPUF@r~}3!r72av1a$#?fjXU9rR{=lKd}MPGNLg{XkfiiU&#`+ zf=EyKofJ_^pn*)Wlqa3aXU?yqF0@3p9sgEAW$%$QwIEfq*`Zas(^Ic$1eW#39iL&` zcj#@bhbEUJx#-boZ5&pswk7FXaEKP%>}bTTDgqY$Xn)=nvu_!_@_8b?nhFk3H;O=#Q2X*Y!L`PZ|aZh);rVy zwZ4Dwk9SU0BkqF(;2Y)-%I2Ba0i@QBp=x{^yZPW!_@sd&FO)N>kNx^B_^@~!w0kbJ zmiU41)r21pp0|TX3zd=^6HJ%U%SJ1DpHT67wN(;5KmKL8S+5TNw&*9MElXc?B++Zs zMfbKq)d^|K}h2 z^6)7YN%-`!DC|34_fU7gNky~0(oTWvK5zWCq_cFKm8LJ*VL0OMx*E(_)vTYe{qJPu z2IyOM#E&86HK0j-;dAXPuv!Z2KNaD%XPuvxd5mJwy)X_7P8C%(n~v0`b7mU%K2z*Cmzuh|rPxt>9&p+U1O z&4zka32hAABG@6Q+6uzP@`E2BAv06%v7SqzLz~U#=Mqe&Uw-qxhQt>2SMftLseb-9 zQZCVDo66m#UN=rlyY;r}IYL8KpC{kAwGqEV1W#30NOh-5a&FDkcFwarZi&05cDICO ziQYzCg=58_M`3q>LY7mKg8d`StbZqUQa+&!e24<^J1VDwN-gLAXNy+i(}V$j5C8x# zsQ=bv$66=9R z;9r6W27tk7Vr+z8z4Ksebif4ODSiop_GE@nIR3o<| zfps^mf{F+Q4r*wbAJ;e>p9)lPkeEObC9@LGcMFYL@W6(XHM5py9{_I`2oWoFP@7f8 z7!VMvpa~*)`x&ES3{M~3$622`=sN~j%MJ`l)&dDgx&ceGq^&wA{i*-}o(~h$8e((? z<~sAWE$R+a>9|>)tsZIrJxY)&u6v&2q=|rG+MZ+y#T+tZq*MZEPiF3ME#DV|M>dbm zH)w3na|=r@Uw(XzmQ~X+f+S_;Nd=k7#3aELBFY1kkl`PPU`H?XdnEYY))tmd(^bwdB$M^5ww=Gs8I#XXm5Px}*`m>hbX z0sHEGZL<$iE$yY*~zCN`^XCdT?XEadc!qhbLA%*0EW(?jMB?ht;xsVEm{{1}oJN z+v4cz?fG;|oY16~EW?OqONvy(!vvCZuaL@yvbo2eJhPXU>s9K9w$CAM z|l*?xIK08?~T-zZ#VTHB4ca zD`N`#m2+{#cp&4}JwECQ0=j<);kbLovgW_pnTk;;1Q0oGt>$H2uznL&AK^1zbC;F2 zIHete<1ucIOYoEJJyc}kXE6W9JxbRt2L`X)j;6A(P>K;jsjOb~CXdnYboIk14{3M= zzfEt$k(4YXI)z)hC^MkdPc)$aG@xHH$X0#9z-fY+w7}QV9&?y=?sDhGeZvb*y5d~2 zOMYkDjhnUk&Z=xZYpvO3U@G4%T$a8OIZ)`dd+RszN?3!ti?Z&Hd3Z`?5)YlaK-hxF zIfdX?57si{p{knrO5^JlqUdut%+2$sp08nN3$A0RV)9$JxrvnZG-=`SQ!rFK$(q?| zT2fTSV|3{n6-}!R?9-t%TggwP_Ag186~arBroG??$;AG-&v@L*T~OIRt-gKH!&fLr*pvH&XtvY=>0eQf6hW{^p*@|2mk=t{Qs@c`M+_oZnXb;3~(TQ=jji^ z1~u<+xphTv!AmCVvO8|#AaS2{Xgntg8IWv}RiUfXJNE8;y=7x6A(2Y^S-v@RjADu! zM;<$vapZWKN%Vi4@@3z-cH8hIBW6peGrV)38BPa5Mw= z0)hA8HEH6^#dqt*=Wz>i+yJqXRCp7tC_tcrCVLDDJ5Hww4%yr`D{wGH3IEO*nWr_| zcJC6vBuh*tRSIyAyo*R!j}ScyDzre{d$Oa`uvV6qggx6&FQO7P&PxIG_2)jn$9chu^Gs5d2l!p5+pD z3}3FmnFqQ+l?PH(%F9_D$TWfC*slj<%<|*={0kT6qPMfF56d6mb>n2kW4^!JIDHuL zs&Q-A!pHUdyNlhZ{Z71nxZ5whkvq@^lB7Yb6Ilyip@7(kZifQ(H!zLmU(XJ>><4l{ zX=~`;AU%#|;7=!~rou$quwRssm8uXny0RJgBerOO-u11Ov}n<@%ktx^I;=dGd9JUo zUG#d_jp)~GFnJ}!1Gh+fW37jEAUE$q941I*qR!{{B*v5iC}PF_xz3-+`A}f^45HL` zGPM+P6y?nsjrj3;f2Qp`-Xmc{umdl8UiSxoRP8~z?`JI{P7xv1BmzKm86&%wI=3=M z^Qv21yl3+KhFXb{fw^{idGo!AfL=u+8%R$eW5h)s@t zqPT1O6k#8ZuAYMDNG@s^RcU#0%RBe+kY3t9?~+td|!M+VMT2K*g z{t-Ao!TX9Z8nFb=D*O3i@A`o;DEDp2-mgD)f>k@<~-AtH}C7E8(*)}kw?@dSP_b5x4u?U4rGFg~J9)`>Ln885(sbbI{X z(IYC?#5lJlTUO)qwz15&;mOtVxa1hw`u|XF#f015sq5BZPydaabfFD1XqZ5sl^MmVEuka!?9_-U%0JQTD~xFFdPbQLr}&IfR$e1~A%lH3pi zsAFpR;zWy8cHfyu*buajHj88CAd`5Q0m5k25LSRAUN;Bu+YO+KU8{5Oz?vF}ji$(& za3}VVEvm80kfLBF&gy1{!F*sf1!p>#A}Kxv{+;o+!9b&S?KH|Z3apjgs!OPs0BQl@ z;_P-NM%2U~oDR0p70T`(52JT}bD(;kMg#c!R!fQ}fKT}ja^03TNOrp|J+Wxsw~}b3mYYE-^F6*9b+tgKA*Be#@}8nkNrmUFoa zCzu06gL~BKbgMilh#b5~C?^FEQGynr=m!OKwhW&dkmgN_gjsgGQbN53CeWmgE6AQ^ zG2-KzW0oie8Aa2qa8(iF6FA)B8P>)GF`HZoqGLY$5kdj$86J-#piN5*FzTQms?N*P zGw3{;8|~Q1%5XKT8Acv36cmW}-;%R}Pq~vfbi~l8t0jZAUA=J&f*%uV-f-`n`H-K; zNx!-x71DGxMvN#bj3+eKv}O(3rU;%ra_)ppYZ{C`)9*O~%7?jKFg_EU1jrya%fZ5E zuM;ZUFm~&^1W> z(f2^GXs|Q|;0(xkr%e-ZfMie9EA;yw!L7!sTEG#Vp9F-qs*%C`_4AwX&x5U+{$BHMHkSvx~nvM|YST#OVJ6k$h#`Oxk6``_IEC{hBiNM;c= zW~G{zSY97wx=^7X48WG*y#daJ&!c;WqNn*O3-}>K;UFTNPyM2}F3*PAG4u~a<^D}k z3hqx-J|l($LMIoJnR9EAC@EIv&R#;Jq@Ac%zpkh%);$^do^+ZRaV1?6eKDn7!xSRO zl&cshnrecQ3o;ZKjpzsji2?1S+YpAX(MIp_iqn_oAqb)E(b^Pq$x5Xg-$@VmuJNoK zqW6Mv5lkt>2OxI>=py^ks>68lijV-HMY=X&416UOF;@qQts27TPHVLJ*MFwTAghY$AO;w#uQ-S?Z(~c{ z>C%>@d%$Tfjk>%n18_lu0MF$|tTy(mRgnrM(=JS|v4WU5pnOIKRQraIn8wFVFyc@5 zx9gA3^th+#qN>RI)WUt3@1Lxh*Pf`vb^E)IV!o-b<;IK9==|ONqMEm(BK|qP;RR9u zkzF5#)V*%*J@#g8moLu<>k3col%T3RTVu@&*AEje4k&08R5{tw#L+`HVeD>?WG)E? z4e+bDf?s4*&AE>YRdcS9P+bu3N~W`=rm5dxAr(vI2mxRZwP2Z&YA6`K1*lsc+J4l3 zuu3Ye3BXFNpYX*Ebntcs5=r#>$U+Lh@*HzvB@OBkGXmR( z-WBUqOCtXo_=vssTV|>Tqf8+@X&!v9uS~FoKWuo z`-ecHVtz10{FrQ}DF7#^*$eupb6<-|wp zRG`Z`rubMR_ON*?m72{3@oj{>YIePCgLd3!b+sIW@7kL6eICj~-dsBZF7zuGblsn4 zu69}-DG&#)&LujY-!-{jZg544_EIv?#X|s&xsi%OdFqy>5eN>1O~5@W^pb_SR6RXI z3bHM8O+8i>3(h%It{8RH`baX=hRR+bDU|`D%Fy?6W_}ZmS;fHjP}$d}SShlTTwvJt zQe8}o7Nz>ed=Bu0<+S-^gwJC_$SupCr@?h!+E(;9_~i=7YY@uiX_)WHF`K}MnbP-a zgfWZDSdgWtzk5#iiQ=RzTQh073xx0}0p|w}Vr5rh^%o8pgnuyf zVAt1l{5K);1D#5N@!>QU31z^P*9w_pce(a=L3g(UBXq!b6p)q_5PECh+oCv>)=fW2 zBSN>lS}y@MZvwoSQ99yPZLh5~JXEi%FeBe#nPF-K(~yIrq{JX^GY#mOKe5DDHc><$ zrA8)wfnY*&WJ&crCs99R3r*WO6yZeH`-wnOsi;gL+hReia!_S1jf5tOzg2O*7uVs-U&}WM0q)LVU@0V z02jVx%O-PK#egy;XgVqJxt5@1#C$w>YQ%6)qrF%0?sOLG+3o{fqi#r=>IFJ%9PH18 z0f!n~)b>emf4?0nqo=yQG&%eVSZxGAGF$FYH{FX6?~I4ZWnZCPiyJX!^pVn?m>+Dp ziZ}1PDN<{u{7P9I&0<|wUQf$8ZdSdeM`#r#S136pnhPq73}XGgwDv6LZjj^=9xkIP zJ4{7D(Yi?Th@ut~vxxAV=E1C%S^+iFcYA*$K2?i~suWd;MXVV2j!JE7E3_7Y^W^5_ zL7GiTHoA{iO?w@3f*Bs@j;MI)yL4^J$$SlM?hV0PR`Tu;BG2zk8%@-? zmLyI!S}ZYH$7GQ?n@tw}HPtk9%DKuQ6>feHVgsmdtWSVHLFT%eT*g_hQcTwUV+o%_ zi~c&*XZG{1t_QQzRW1+CmKfpq6t)Y#A+V$|cWt4zw}1%jlS$EoMEc6|1oJUb+>u5@ z(PGu7s~KS@oG)58cLb`SKiwd4Ihm6UjIh-8OUokhJWkj3xXOt9Yp5c7xX-B2B=bvYnQuLQh4i*(1jYU`@&VPAnOC?dI z;%*E5-1aukd@*TDVLvOZEZpZMpe(sD!amEg+-RIX+-iCSvfIFe1$hN>%JPbjxok2w zhHP{aGj>&U9IJPwy3h&gRGMce+cwSgtY85N9wc6_iK$SJZ6CRsSi%5s{=gwPsg)+~ zO3^1{M4(umGi)Vsr(!l}r4zSywy#G~+P=AbwH7FKQi}1z&0k|_A8nh(D$rC-Dhs&O zc%HgQ{)$+^3LY<&MqUSw7gbKnR>c>fau?5?IotY`_-2(~IJJyFv1q$ve#fVw6ia?9 z^j$5G*`LZLh9YHwqq30{jYeRFh zZO*Hpxppj}BkB3bfw?PzUzFJn0yCi`IcYMCwv=*N^>HyLTGRL6+$Q#WegkMgc0my$M697_z5kOtD8_$d-el-( z{cmy#w1X@ZgU|o~-!uRKO#j2F|4Xt)|L@QL3{J8B$ZttKzI~xSQMouKIBr(o3YR#P zvb1n23IM98mNv!oO8UHCd9IZ#cz@loH+O%>0yDDADdmW}XZmd(L^eX1 z$cQ6|L!M9$!am@-j=(`A(yA6xZ}Kb_>2)=yTQgU>*JTVAbG)8}uc$vg+L!@^JOj4;_iJAn*&OaVrA9#v#yE3!n z?D+}49NF7CG4=Ha*G^F64z5hSnK`?8`7#HWZeFgQylnt=n2n&0m#M(5}FK1j_7o~>`o_{2E47%%jyBou&BEWo&aBNfww{eu1z0Z$W~r|g-_lvs+W zur2P~%a!7fd~)AR<3t%akOP_B#sD@BdyXF~w}%2*ERQYCNp18hd!F8QUK|Vg+fugT zLH*R|wULc!2t^?_-VSaFYq$?Fr)%hF}gDru{V><$yu ziP4>76qv*)ZAo7r{=B%sdAB2?Ck+ygA^cUet`umEYL+^KIB7L{ho?~4j+;1F9}s%* zIjOS;bAzuY^~7JK`ciJu@KH&D4c@$ocSMV~;>UO=HLO0ncn zA$J5)=hh;MP)aZuth&YuD!bWLLcTq*m0!Y1V|2qV@v_7p3~pShImRmvSrY-8pSW_1 zF|65zRO5N)FEzmCw2w$Nu^|aA-b7(iMwJQ1XoKxxJNPkIKH!D!5>$e_aRo(9Sq~Id zQRz|^DF=cN1xABr`i-TvVk2jMfz-NvMsvYOhfC?L916dgk^E8`Kk`x|DpasFEm1nd zMqj9+9Lw?H;Tu_?$(=HN`RB$DVr@1?iJ8{ePn}Dbr`iWI?$F4(IxHE-gskisWcNSnkZs{ zFYO~}*qvGp1gg+%Djr`9(>#_1Sl)K5Rme-Cu*2mR!dYB2fY}5~FsT=dceOr)y)a?K zY(G(7oWpM>CqKa5sFBBBZ~6?A%Wmu_O^eGrGHye76fM;cHvaf$Y(4ApXN`_akEA*L z3U!x~y|KV0Sqm`hwX8_MR%j|A zvA3g^4|DSMPtD$Qv6trrjTHuS^nL1*%J~wwrS~<6?~amGno077b{FbyD-We*1JXP8 z6!^^#$i|q}fpnPZ>0AwM=uo>9o=a^-55IL*LdJ8-+0CMas%33DyvzbEp&KH-tY;bp ztzH+`Oe&5#8+2@QWKPYvL_wUY7@OvJ$ns5ZlC9k zrVC|LYZddrEaFa~dfO9ZSH~`cTVPd7q_lknp^=fi`3E(PY>g6~+2+-T%9hW>S{Ow; z5v{e;M*Q_C>@Xj^WgBh_+Or+f-qM=%F_3mDkrktiTejmH{lXS&uz6TOSJRD@snWuQACGE_r zbhxNkEd^9j8Vctr$4r&zWR5q#ePj0+fa4w^vi?1%<8n zq(>$wwQh*=^5|~Kw<)v-7RHO6A810=@kvg|$9^SB%E7MsXyzH&uN1wn25Aych^kMQ zI5Caf9;8QI;{*-G0xNk{mvxZ}VjHe#=}Zae)Uc#c(g{|mv$Ygi)^rgl>2d`gdPOf}-E#Wmu{uHFGm){J-4?A z-@hw{rB!JEe1%$|Wo*q3DWi>LFg)V5FC4G&c-gLM-LX~mV!dE#+>|1xUfIS8d@BJ` zg4{S|(HzPwvwg~N`&zQ@nk|qw2}`VG@=U^Wi1O+%`BqbqpHE8$r>-zfSF|ziF(z}U zg7bj$$e7XPt(%%2UY^H=b$WS=;heDhcm=h)g}@_^h=W7qf|H%`x(UKFi(x_wi$kzr z!&YSdDMpe`wnDDtbh1I0Xj>6w5g0lI@uou|Gf058y`tuw{zX$~;C?V0ord)Adr^(dnw<-FyV9{9l1M%G zHhiB0wH;!s&Ml841kspp`+W2EHL8z{$(pMiAe4$q&2`isb|W+UWr6A+Fe747mb5vT zexIeFED9lIQFE#8^F_}N3ttb#`0i5xHdLO|vXQ{5pC|ct+sRK;uGBffMpikHMEan+w6mGpm#s)XC@zT{1Klp_}_{>)8qxp6U3QQ-g$>FMgP(wF}M#xx0n62wB39>tCg8fpT1XsQCR%{24yx_AcTt?GYuCa@?f* z`S%v%v*7;z$Sp+2URBGCM{Ku}!uv+1Y5MhIo?)*kTKem+6P1{7##g@KqxN&_6x8#c zfwq|?7B;><3cAd@$se|1%UwAB=Sz9{p7LFP!2jKi!24esQrNhfTiX4L&Gx@J6Rh4y zQi31=08UT<0L=e?pZz~qO>InVP3`_&WVNDdD^Dbe@H1OiAu9n8JiYTSt1GXzKq^Sm zZDMT1WNBuVG5g{o-|1~Kap~VzWr%>LGei1%@&@oE&HJpfqP%kEe`cu%4U|!~C`g0~ z^nE($#Q?dDiM%w+Sh9OoE|`#d71t0QV6*k!N$d!CY?}&fFpTU+ipDr&3}J35ZtV1QEn{?I^|> z=^QqWLpWrp;O&ecG~FznuoM^DgUDLq)*Kse6#!cXG{G#P=BH>fvu?CST|lH?tIf^` zZ*097C3K3)$;vd8fr>8Dl_=AQP~nn=n>I4(2ipE0&wgy7xA%a(u46~H4j&F;>AqIy zDESVsq)j@KLS+$u=KVy6rC)mmcWbP*}pI9*)#iRzA-u(F5}9-t2YX` z!xn6KI`f~n0FX_z#sTg~*eS1sA!8PxE4Rsx!Ko^V-KfG;cnDM3gx*EAK}5*(eRbHt z5GT(?G0jqiidN(Wu=l{kpJu5mY15}>h0se^mp8XT(Q~zEIk>6@5M`n~YokC(buNbm zN6!LUWi9YDiAo{tWiw8ZEMJ;?i$8~CSO7MO@j^>ctkzcrB6giVdJjI}WH79tO zHbgBI-^ttA#~E`5hry$DT$S=GU4g`aJ-7}UQ!WWJ3d%&o;wldCs>fUjaKhLKM`uQNzQ3Of&|kurc0JZ{S+wrIWVnXSuC9M`3X+IzHVOt|SXqbQ zr?Ykx(p)+g9*J|a?(&L4rmQyRmp>aykut-uI%3LPc3-x^2$3A$cd-^EK zuUd+3tdfbTUG9>?;apOpN_fS@$dR}@MxCgbswo<7bWZcff`ePfg7|zlcj8CtOqVA4 zJ=;N{isIW9+4SN|dFQ)%#~<5WqEAj+QmoY3*@WXlb z<&2>d#bt*#Ze+Cht);e|``h-*24U>G0}CV9omCC-vG{f2?@E5kv1;P|2BH)=GWZXH zxv-@gwQ*YkdZFFh;=uW+t6$xvZ~ixK?w>U@_-$YS05GWkwLJU3z(?QA(AdS^$@BkV z<{q%y;y~!RqCQpVm)n=<+7b>Vlf9hbssS8>v;h|l005(nr71$8Oi0naBm3 zdWB)Kj*eGM`FvHlFcq-F3yGy7G(%z`+t!#tFD1}lU)Zc#g$CgEY}I9(%FTa*aOvlQDizY+X*^N)#AXlhDQ{)=y*uYoKD|-(wRW3`vr?aGAy24l$-iWF9FMLEZ+ zgtCBYH6b|r3C{_mGcskYDU%ozWZtXuz~P-uqyRkZMK>>o-wNi6Po`!7zu)IK@HW#o z?kEKe?24!y{aC>Xiy>AG$yPevP1L8ai2$HD@ z%xFjXbx#D645vuRHfL}5*EI_U{5bRAiFW?Woc>2wWG@?fMth{R`Ll zJgfCbAxgkbwL|$IZKdr{(QJweX`UVW6`s^zkwV8a=zH)T6>a3iU)m~QsZ^TplG2!+ z9&qXA$1?laIJ=|U5UuqT2X;s`ziKNxiJ_an-1shxZy>ql<*V*PyMYc{txZ#-#^?Rd z(q}vt@8^8xBBYKxtvfR>)cqTz@(|05i&rbC<4O_0CW6Ub;kCkJOjhi)yWkKvS*LuU zP8&BUMLJFwYFxbMUqv^<__F+bxIyssuGU%w@HoziRlHjG9?-ULdmae~!DEd^q}y#S z?B#H{JFupH-Mi4}9>6^t;`VVxYdnSVvvl22I78Ml&?B#%&9HV&Zt;TxSxTSsG_n-B ziD9;N>+0e0cw8;IeN1&~oi~b{8@vX$mG*G#PqbB6rnfQE($uAL_pidB9*}xL{(%3P z8g`0;K1m7-0D#E#zjD!W=euuYqHG_ZypRGMhlw zagxhxR2c(CWUFf;DXu6fYwPOitA3QN1HXthr zg?NFg9L6LOWk-3=EwU*JQaV^j^SpeB+r1K?Fi0U`dytgCNPb-+P>-}Qyd$JA1D`~b zjNM#6k~@uY4%l%|FXT5m&IesIvKR${c=;sG$MM*bVCFc4q0&)-I3fa>Q2bEfK_8E~ z3EU&dFS0sjysZ5I5uC`U3W4Js5ysgo;B8XK3W_o~YiRn_GerIrl`};c>r7xqjh!BR zkmImK7Q-bLjC~Uf89)ABFaMW^sOx+`qP{zQo$Gu(-_5`QBfJ4^w=on-e?)LTg)me{ ztSC}|^lNx}xZR&G@;o0aTIK!u(ouh*f z57A)?8A%X`b|_ckClH8-yabnQJ(e$61epiL%Ut3Ht8&fs2VbXfEcWQovXuw{Q{+gV zS|$R~7*j?PGZH`wXsedJ`T6nVfL6A&4$R7n86A={fBNza=V7PWh!qOJBunBn&>sh# z9+(Hh*Em=Tpi``H)eg4|3ZugYk}UbKmf6wfG6wnS7a<=}ct=a0_}Mi0t%=Ih}cjm*v?d|Qv!O7Rd)y=WP@Az@N#a=JJ>b(0=K)dc+JB5^> z0ulu9PD=M`Oz3VuZ0|E?d@z3jEIRv>Js2Yi(shB) zYaAb!(t{H23;4x7Wr!#=CHBq~2?1ssI|1xBf(Qux0`@s2@hirYq~Bp+!Ua@ji`Wng zg!|@Ll%)ST@pfm7SN&}a}6>d94^<@uqs zu}&R465)qEng}~U-RH|pfD0i&j(_)JOi2x03BYUKfEVEPss>aCn}M|que^O=9Er^ZdEYIrEKZsfPltdLnqg_ zJL)L|0cSu-VLpr&5SwP|`{UE`Q-ga$p{hPbaVl`kQ|B+ri+4zYOH(67=%9N!er^NI z+4NpYlStWE6|*G{+j180cNb=0094yp#f*I};#*Queq!(eDMlK4MbOEFK#~n?>~6(P z$cVs!Q#UIN*qpGFKyT0%DxB}!O^^hn;#(eZs0ju3RzR#>T7$c9LgTkI2D#r{P8S`IAfE-|v64SEoXOa`a zIyCr&j_P~$CMeTeHRUSu{<-_i>np_|OsejDk-;pL9%=w#gG&38aIKR9b%J3lyiT$C$=!~Ye_o%WuZ69vLgHcTL>g@@Zh4Q!jNp8~{ zxpTMLkynh*5moA}1j^l(N8yv1~$_SU(E#(e;BXahtN7;3|`I#mY=bbvi~@WOB${pvt)fnPE7SNnEU^ zau_kE(>fX?+UQTIOcGT?7I!sAj#Z-Y%w-J*StuOoqXYq5<>T1kk=NG%Kc76?Ko zkw&LBV3lDaoWn{Niy5mf;=wA*>ck>X&;vJZPs8KGqF7KO#fNAm{)GLJnkP3(6Ul?v zENGCV+S;F^D+X05VF4_65eL?PMqtiQP0wLGaVdNuy(o%q>>I#SP3k+8DdAbZGr67e z98R7lceKGNDO|h6hnC@;a4*Qr$Zn~=xHU{iKW^#S;h1trJWs0~0B?XyOWE2&04$VI zIpVM0yp_(6fn1Jh!BJ+M76Ux8!lWvK@b+I>-$+sDj+WAs4nxB78cyZI`D}E0g@3vo zB@1N&2m+FlMOSZU69whLK8{@UpDbKyDZl{m#1V{w2WDia&{56*YHlkBZmP*z3Wb~o z_lN7IA6YtiJFip2~;<5de+!LO^FFzQxKy?l7XX2#huNi&ndDgD?g$=Q7VEc4Rw?%_8pPhF?_M6#(&2fRLpt zC@I^r980KgkwBYLiM|s)I|S<1C{)J1+8mr;X%OOhE~VjAJ+;wi+ull~H8)NZ>9TXE z;WW>dwneP!%54J+lA}(q*I{#Z6U$spe(x{2-F~nHRz$D4;Fnmd?Un#5$(glvK^E+q zs=*wl`bEE-J2L4yB}d)Q!)vNmz5F+yl|{fxie_C+gjV%?4K*XZe^-%W zUM#iO2}B**pO_<$Mt@HQ{v`IS_myZ8%;-r)7PVDS315$V-bxVhM-iR*>;f;eym~S^ zt7f>8P?da1e^xD%q%}K5!x`{nbcMc$Hc1xm93C>&>YcrC zONr!0TJR@F7eF4VE6K}!VxiHE68euR>}}a`bD;AY18LSQ=(dc|k}k4Mj)9F|Pv#kS z{$MVGV;OOy+}Eo>=bjJKMh2UJDJdX+D=r1 zNC@~f9kLAH3@o}T?>qk8EvQiFX2CWekwsJ{r)|Wuqp%4rB(nRyrvy?b(GvB8@@9Da z^vD2gkyVVjdTUQPU^JO#wg*TpD#rAtA$@tRzL-MAlbQLm<#2C!rxM-c_1&I;WIQ_4cce(pvOgAGru~mNKNdQqmeW z8#T?y2HXO@v)6-nOy$&o_n|ZWa(BE~vf>Uthq*(A2_Yo)~-qfbSP0}-_cL_Yf zLQt_?JB^$e1;qVa(RV@1FY9%~?YHT$(pQkW$n-An&8(I(_qU2C{mg|hQplBob^9r1 zG!HOMazeGLZI2ajTFyhQEp@B*qLswyN-vvszj=F!7Q~>htP68$Y0N^cR0#PFET*5<4G~%f(a2q7TQdjn(9i#pg8bS_r zDO1uv1rq@1?u;jDGA%*4Q4-LI@8bCeSccQh%gKxR19qHzlzgzUu!73T*GB?=e7NuA;q-R# zw4bEo)7j0@$90M9G?G9Q2A~GvUi1VE1fwbENkTi-7br!lfF5chc85{HX7B}PQA~nx zacI~=h=3JoQnk)P1kxx+MuO-WFF|leZfy1V-pwxyWon(6N9X?XiH*(8|5Y#OM}VH$ zenglo_Qynt1h7g5NVB3o;W(&1VuWTQ5V(l!J7;k}O%5~AzaL0Eb){PGnCNIpQ*Qif zNBvinZ}B=Ur$HiU0V5qKkI4H2_& z2|QWd#UG#kJ^ltaIdjFHDvU5z*v}BWKENnqlre=-1`m%QQbxOn6qD*t09GS%0gxS% z-0P=+44W1={)^c;PWCewLu~Zrj&?j_=!*Pl(@vEAQkckprK3%eK^!nGE1jEVk{@bV zLRP6VCg-q@^P@4wKrC)%hkkLF+WaI1qHW+d`~~cZ1SS`9S?-x<082o$zZ)1q8ch~F zka9wNeXa$uU+0Duw7Z*5!>&^m$HT3Mi-(_= zpC>B@Kx%@*Bm7W&c{l?Jc9c8K`D)>1$4*Tibd~5H>Qwl(b!~x5Zs1z()U2%SrR$k* z^@;77+0=R#&^xL`jdCK?d&`xP?pqj*mGEf|p)=lT(`H7DtWu!f5{?zORk39PI*XEm zL(t(D?^Ioi>UU8wu{<2vO3Li=VouhY6X4Fhw|DIiP7S{C+um9ecU}<^~z#Z62Z%sf`()_2|6o>JX z+g$_F^1<5$5eYYj(XXgc2*KOO9>L^i8Fn*_pWF}7_LIB2yMD)#*27(b=mIFLumkJH z&JE(DJvGVVj9mFFZwvQyA%0K+I^0>$mBJ;M3y=3zZ>&)lw9a z?FX-^vXkx5000I{Gck}|nVN7*9tF6!Ftt)3IJw6jIo*Wa<_)77qv#4kJ{dE*qDbR9 zkyuhcHL%hgc5E0SzqJ~lmZb|s9Z&jB+|VZB-D~V8ZRwqt;Mz~=E?Qp!O>U`v-9?XY zrMlSPuKj_VhH;}tO!<5GS#v^h#zAcL>W%`JTh|*og?nUB2 z?+oN)0@xF{dvwu1zU|i8T&gAK0xPR9bZ`6+>VSXJs9uwwvla}(3b=Jj{)G5AI(XhY zvhaMkp5uST$yy+upptTipSX-MV|WNXchmmWAzAUj2ltLgfXHeVrzq>7%gCavBP~H3 z)D%_%%S}T|fwG2}lJR`@;?>j)OJjUxNoS}Ixf`OCVbGqVrP`h8Mu{-aM2hx$#Sq<4 zOx~v2Nn>s{qlfp~*d*rWK90G7P2z?)CDe%7b)I%iM*k`8+>vPOTSTGC`f0BI(HwHG z;+*R6%HkD>JF0sBtcQ@E&0bYR%`G7-1k2m($$Tkff?qJTK%gfhP=4{WptrN&AXQ7G{78T2*^(tSv zG_e>W3_NS`ibEEm1G;g2Su78aJ@5evIdndCE7xMRVeE9Ti0 z*WsUf^Nt*vqf5j%(7On+%|X!YnN`sq6rDq}$)X9e=@P3Xno-8Nhh~WEEN)mYmN@76 z1{&l{oiRXL$CElFM8lb17K8jP!GRZk)xuFNS4=v8eGA`I4qcYD*27Lq`UuulE0Li= z&mw}_s)cT8W8ha$l`cEgS6qv>s<+koy6XKQOlUjBWDQ|M#JmU`ABHh#uuD!#qclK3 z51a9l;V53hE?467-hHG~jhbpF7}uZAJCH6hu&}ni)v{Kn^vx*DqZSnEfUuhWtvbJ8 z%llprzFl;FIJ2PTIYtj-r5g5a;3B zIvQHi4>z$+;@x zDVG578%(O;Xa(Eu|G0ncRDl^1adcJs-pFl{)!F4VB!Ln^;%7X3l!<*JL{yhtCS55+ z0pIf!Hl00(CcP%vyTriVE#nRzoWQ=Y)!+%}HEL{MU;%?ANRl0z9y+sv8~`7i$4k3; zn|!JsK{QL&qN$3qBJtD$tCO&cLWRV0_cD)yJsgEc`r`nn;@w~G+m`Qo_Z{H7ALikm z8&9>8jlx?RedT1`GcQ!_xjfb22GBxlw6dhyVb-Q|(C8qQR|WIq?7;9F6A}qWsGQ}j z+Q2y2MTt10NrC7s#5LW~q^M(gafIp-*|SFbWzuaN8x z05h}2LA9L8Cg=E5uKSESfB%#gyx7A4GA`8oQZRW`3}G_!srDGt^;uXPMS!)P5<;5M zlqkZ$6>CSafmn1M5gAocV454%TBSNBibi)JSm_A}r)gU)NIb>}LRketnE`Q>XGIE_ zurR?-kRUmyr6LrF{*^$)G~r3pz+)Altso*U*{I14o3r~=5h0Xjk}a|V;A989aBHm? zWl$4p&t1^A(>LM@jS=z%5E;JHuq9(im(hGioA!_t8x_JwsC+U2mlU%GAf22!QDLPy z8h25%3DozY1W7-6k}4%Mwwz4fLc_60Z;M7Ek7s3jv@nQv(4w>(WM&Hs>Hvj)g5IQq z#YkdL_MF%&fiO#=PR>)x8*dmFK^}A=GtmPQSlR3=jiU8TV*~C31jk0F0SX>sWKOIX z9iMitJpqWMf#j4;DSDb}7Debo&JSzZ;j{pXnMugtL?QVobdmR&7U4D-ra2bXiO=kuIb5|*ZMuAI9$$=jFYIV!psmf% zDnmg|S6}xMnBjCyc9S;_V1!3rqcX}n796$M1_H;lNQ4BI00B(ZSxB4b{%}|9gzu($ z2p$n&GWb9g(m>9$f??)TBc4ns%ZG7HZCAo#93#9cP$@@6?Oo0o4a1tEl)VT78nA>$ zC?24pB|~P7F%A8&zGjV$(#Wr$9-^YrggtaKie^AqE1I^-)Ry)2yHYw8WHq*Jk{7~ABL*ZO11X&C1 zNQ3-yWkI)`T%ANEIBg!21#Zgk8d0Sj+OAu<9Ig9=O?vQjA;sLMpf;jBJmdY|9*sJ>NSz-i%6*0jPNGL5Eg5eQKRHr*twaShcA zDo$y5amhKNhQ8_LEgIT;XcsdOSevI9uByCT5J1I;n8tLsd~nsaIGVkBT!&s{{sS7^6Z2d)`7 z-^LY?gIA@G;fyZR?RCV!pF(3Vo~Mq9`H{xj@N-C>Yqg56S-`}rOB0V{Jgik(1!1kB z)mupgY*!~YHy6ntH$Nw}CJB|&kcP@vsONV~$PdnFWf{duy5MC`eQ-g`zr$BVSmK*& z{hIpOt4yx}fScS>jJ-OIlz)8nbq$y{i3pCOoyVdE(-=HnDC-8B~( z>)T$R_tdOD!*qN=9uC&>bV}i1q}5J+>19|lZ+!9C*d6nZ1t511--Nf%nn3yfAk^Fm zT6wg^IYh%yRlt*Eml2=%GB23h-OSsv288AC$D5yg->sD9;L;Kktzj0#MdBSn^ZtEU zT5)iBx|&#-uR*~!W5ihJrY(Lj3K?h|?rr%95wZ8qw(V4rn0TNllzIbtG@J_32FF1Y z(j=!>^DJI!vL+ zljgcfu%L5gLUM{Q1#m8uCO}UR49Ncs%3toC-iZ`#SI*pz!~AIUyTkKGF(?^u!?n=P zleMKWr&5|$_1svWU?U)Fe^UVu)EM#cGcV6QrU@pMQyW_0vf)4_0-a@6lrgWxAzg5| z;&6nHuCiak8ZTV0W~b%!;>g^8{W#sv;^Gk!Si#Np1J~#J=F_X`IH7EQ?b%c8sW1*f zpbvbn<*ImbiR}JP6@KT%kjNmv4KjacSFkM>Y=f}`t49B}ZB%Ng%1e~4SP(u4F5;^E z2_Qd4651B}_5qe)X6%a#pnrLVU3N&^@q#x`kk*;yEDuO?b!auN=ed6NwLe3fi~1r3 z7pPh)IQRL{(d=^7f83Chl*A9uoQ*@jQzU{u>VbsLNI{9+Ni5XAvl6+GAk~#ljeY=H z^`wx;5{<@#+y-WY(7MbCIULm8dmcRr#8wiRncsQ^T0>1NHDm}-;0Su3lAR%m<3NQ} zCRe22D*8GdfA~4sb>est%VX~K1j`p2Ng-b^ZbODSq~%}!1jpImZQ~0>Nv%{af;gHn z5GWo0du#T2m|HV0Ggo{Yd1(XU7m%gc7ZgxCU{v`EF`jaC=Xu`gxRKd6E&L4)*&61W zM!jFQirGYEOC^Guce0_#FX*MhylmK$H-c<_(PHPMA|M78P}7DzW|s$ZK7WZ9X`XpG zzf3a`gaNp`K_HT8vh~Fi`|SxquVebk+MiEd1Re}I6}$nlyfOmq?B!Vwjjw(1SnoSl zD@6}yB15Zu>r5^SJa%rkngI2QWvF*kBVZ@#_-bB6CoOAP50EzCR;aPQy7G-nz6(B#PEq*1Bo^&EVql;k`TsaU1ry?WVRgOs^^cX zR1wN>P7t7@J0kfsdaU#PBX7jVBlSGjmO!+kU^=U$+MK=TPN2nT#SYz}7gUD_UK`7m zJrN`X(RuVPlwZ=0Ucz-rEpOBdBr3yUuc>&Tcc4*QE?zx>Mm4!StyV$m3Ax3!g0bbI zsXEAzq23t%rS*85oQ{C4S4#{OKhJ&gSddb*8Yp~f%zvbhE*kBQV*-~T{FUHb>6d$V zrj80WlR6@pGJBqJqQitLdj-YBDir&%k`8DsjIYnd;g@-i5>f#-LZDUo`|l1FL>> zy*_+;rCh;+r_UZ_XAhVOqqXqb)wzE}s;m3H(&n`d%R9dJ=eIp}O)<1p`|omf!+aCU znq5Iw1IB6h#oo*W>HewVIyCrnlCI!cMddqg4_dV5hZWTFZ-+r_w$aT@N`S%Bp`FVwE8(?)!Aj4fc*`+DS%!TG$7d|B8tWm-IxjcdCirUYQ5&TS_K8g zdT_k$IP1-D=RcF&y?nOFst7WpN)7pSHl(@0+z?SxK~tkAicAfSlg7!g6kgLBdwb46 zvVQcdYjfDswLRr6U^H+IQjASeInUIEB>sH*BON6oCN^4CFUFgOHbxUka|?(mwtSt5 zSg&T*z!DdhYNoiHLuY?`p=7ogk#ajZrXuQ6N|cG31hW1pl{lV(hYPpYZUC1Y1*~fU z0A1~}N?2KMZ$T*=Xz!)HRRO?V0vp^MYI+*xGW!ZA_?oF?$gbW+kF)oNo;-~l+YM(CC5H@8t~_MB;SCjm>=EiqrkDq>++ zaxKAjZQ=fjvu0MiqKe?*qJhw@td5)pGJARebJ%&Wt)x#lyx_iPqrV3Rx)KOdUjZ))Ap@0YAvEY=sw; zPqFlJq3AL_Ek}SDL&s+~8GdHShD1v`S$=!ID2r*HU9CHUUM6aO4TWPDuUE}h+^||W zYG^Uk{Ml{5d(6xY37%R+4}uiy>(Fr2ZQ+i8+Up9Ka<*ovwo@8n4&Ha}|9*J{j3l@# z2g;coD5-@46Raf4(BOx1;ze-S`QyiiJwZ`v-=I~Mg+&Cywh=^ATt}U)@_Wk_wqdOP z4bh1q6rOC~i;oe(YxA|pF%vAUhF-kFVlP@VTFi@nY@1xD9~X%;Gr^wdlx+CmG0B`O zwN&@hC%S44*Ighy=|ttP6ZkZTX6Md*-OpM&Z#zXN)0liJR$ zm-=J(zLtzo2isA8+KVI>`qlPCCHy-9;QqK+f1Tu#*;`SRbb8R`QT;cv)1Y8 zfQ-qjirT=+1Kk`c6xddsF7(I^pbNY*Wq^4VT6WRx!aZ3tX4SAiI(kmmjy--P2&$p& zzF0!#4dk4TPF+mXW=_4|=U}?rK0{Q4%+2U@s`RN1Y^;oIo&D9MjStJsN9vQ#t&={b zCh!aYNP#MP@CQuq53bqX(WZO5@)$mRL#lmP++Vk%*bii0oTX`i zyHt)f^}U?DMY$w4WBr}2NyADd?mP@#}FQGe``# zzI{SuNAQ@cD5PR#3(}#MH+U0idj%F!Wfxra-w~Ui^;%o-xOxqc=ts+hUHLij9sKsH zAH5!(XuH$G;ge;Uab2Rxh+sup68x!0>dKz54ZI~#lz z^yf)_{$G@R|EfYs4~~t3g#rMO!~+08{!f+SW@+mFFOAZoX&b-A_U}|o6fs(GKTEoP zUx&smE^PbN{@#I?B6OBe0qvBTXp&0`E8L@mUq5CNQpLt=+dHr5qOK&fu%QFyxoL(w ze>rzca~`s4+&PJHVzGU9sZt^$605OsvbmH9c9`8^qH#e2l%#D)#QuEYMrEqpn6U;w zJjf2*U{)3j()lWr7!x8DZ>o(D91%G-7Q!S@9_6GuXHcW4c@m6ZQ;m>t@MeI!za$1q zU4Bk?2f@Q~!of6BXx1(~ITIzdl^UyUExAN+L{;Gn;t9qn88k zAwU#P(^Kqv7io#_fdd|?A-_>`(|o#=L%wdx+3hEAQ}ri!qnQB4KQZu<^lA3liF%i* zR*_lO56Q7&G%7~7Sg>wXa56P`c9YK9JcO_$49vGLBwp%rq)($whPrnxSi*kUh#=qH zKq@z{`mS6$c?i&lp}_b|sAGHZ;Jtu(wl8w|`}6~K*bzQSkWl;sy8-E9p*+v1DZ*HU z>aoA!;o;kA0Y%pW&X>pp_$P`h6!LfZc4c&Z^Gx44eZO&IzLvKEqBD%hTdM15JGso5 z>=v5z~{nP`5|ZD*u2%P#A}WeJez*p8;N%H^W#1vNb2WS-TtToH29}1WpKALHc-47}qg7wdo2@+m8DWxV5(PZFX+;GN3&zN8 zyGA$CoWd$yzHdZ061=h+7ic1xDm@h}F^NQxE0(wp98a0|0orr%+-_9NtVmq{JKWSj z3k?6+M4@tx4L0_3lD(8I6V>BQh6E^qj>gVXYK`Xzstx$y*b)oL6U8ap|3^Yk)qIWo_tpSbD7UFuc_A|14C?C=Ao2AK%}4gKy& z`%GE*Jt&7o$5L=2-0HG0nr)I-9f5BQMsdl24=VCo`1SH*=^n|d4n-(-rc6rWYdRR( zyqN!~nibd%_iguGkH3$XCAIS;(5m<|GUWWJ0sLr{f&-d7c7GxbOF%iz*A%?&E^n^7 zNNgo2GlC!XaZf7bao^oseg}B!=TCzYroUe`??HUi;{IE)c4AA)W07b##W2N3*-2My z){mZ8J=u%*dx)m`7i@Xkc4W^j-!oL_N?Wro7YS6 zPOxzpOZ>|7sQh|`O#O^p0-eiOynOY+Nt|MaXLr+{Ve!YYDg8qsApt}+? z2+9?Q8*KHFM|Wocgs*t7M>7e=%p&4Y*6rbuw1+=xV=Wfai0+KXVf8iR*lzS+8vP-V z)RY7o5~dUf=ZUhjjn)nZgf-o-d+8W106YO2E{+OATHad`?z%EJR*XB+7D{QYhWz3tS3E>8IhD#FfTO!s#Fc+|E zgdqIaz=YFbb4wXEg!35ix3Fc3i!z-mwd@xCsXluixO|Ezs3$>6ew7jV~w8{F>I&t-YnI1ts zwXv>|8-QFzu3qB~*yF7-39;wT$0oBHx4J`GwGo+UiyWD`x?ce(W>emIP5UY6?ir{Y zoNIyL&sd&8;(b$j+*opIW7K~WhS3)qtJ~QJVS6G)%Uo1b@|f(@d6GfitfWd50qc!L zhCJt9Q`X{>1ZNg#ER1w}7GF6OLsQ%i07cj~{Ujq^$V$Nb8R94mZi1nOlC7x(?OWht ze_-Y4z{mAFl)_#B{BbUIm_#52Ww-OV!9>@u@xgtaZPx_$8cwcT_h1nM@Lvn?EdpP> z^dE2lhi-q>dJ|=C?pj`WdAbJL9V|M{E#JXZ$zIG1zvXt>GlI^d&ha0I5E45)@OmqI zooz0T8Noc>#>y}SpMjWjs}IDD7B}Cfn!{+s&>jpMUXbKJrkX+3(>ym`SyKw2wp!&_ zGyRdrEmK@oQSnwRSn<`|69lC~7~OWN=$S22*p`a(bo|4bI*(pxnu89#8Qs$geGYLM z1R+glJ@0lwk?^cNR(nIFRDbY<$S`$U7VBVTypyWcg3Jjru}i&~U4{fozV%$yDK^8N44pGJ|ejX z7Ozbrylu`!rGRI5Md zs?+Y%s@1iyw;Z(DL@GA9K`eiDK|tdiZa`p!X5b~lqN~vtutSOh3&Q3eke1l_#yw1* zl)Fs_YJTejU+YSGyI%>El&zF>W8+*~gm7RCR+95}a}0F}Yd=hKwe1OB5kHa$n)n$o zB&x`^S}FtAy&AeP>%LFDTb}n$|L6%X}6`WAg9C?ID7A|KA`9KD9v}O@EH@E(|q;=={eTf z%9Tx!<^BTv?={Tu|7krsSbEU^pPT;`y_i>Z|Jnco0QlDj{eRwUX>4yt=U`_ZsURl~ z3x)NMO$q=jDIuctUo1-)5Mcj&@4NH9{quwABC6q{Y;We`Zs=qRAZTK5WJ(}uYiMq& zWNK*Q={RA^0{{TzEh!?X;<34`HYblPi1O2_ySb@kMJu%Hw{yLB^SF` zA$DX+-_ZM8uvk4ACat{$r2qFR#uB>`xK z`Mib7&Q67@M-NrDPuuTH)5H1k*}a?dbdXr$LeosiuyzB2KA;X^;z+)bS7UO1e+kxg zNkt~g+_uoi5L1Q^h=beBVg70fIrlqeuB9HT+Gg{%GhX%u_S=UO(!dX#M{v2!mYS5{ z<&iter#%!u##z9{R+Cqfbnuae*AK+TlYDd6by=@M6=AIhVke)S9;_CaH-`la6ZDb< ziF)Gv8m_P6aUTtaXaBPsR(LTnS6M}1*dHeAqzvx>tUhB2lV3&=GP4nz^Km;JZZCi< zQ94s~2LczY+=c3*>NveT1g|Vh*?(SKzh|6F-7tSU2VWl}aSMLrNQW+NK)U#lbNVdS zow>bW%WW5CF_%0u&5x<{_owc#4FDK`*=fp*l(>KHUxFbiDkoAaWDxY9u{@GLWn`g% z00371NCWo&lm-)fcRL$AL2Q z6a^_sS8Q|{6!(RBeSc=ek4guQrnp}AJ6^_)jNi-}wpVC}9k|=Om%=|=xt(@xvX;)}5fvE{(ow?*rU%e~b7$szNzo%a zmu@YA!QQ@gm%F}DxH;Qs&)JEdJ?ecJM6fj?ZhkLGq&XMub#QdwgB~R@FJE?vd+}0n}9~n@vSPnp6wU)8Ww&s4FqsKpnSGKuPM~irD(%SvI81x0VGE)?es3S+7S zCMuy$P|F=S3#@4@O5qGX>`p}qoCA@<*@V!Il`(uE-CI>sBd;8Bp_52I(i{B$xq4m_ z46xV#tlAyG|BhwmmS)bcE=~0^CxdCwYpaq7oJC>v6;-~Kfk}f=L^A9R8;PFyS~3a!6hZf*BfhSv|1>L zh}(O6{!ix%>UDa|1wbSDG&DpoznCrpI0?Bhe>kBtyp=hWHJ3QP_3yZU7fieY4Tz}e*pjUzg$DY zzHfj50EiI&_YLUjOn*2^#xz`b|gn2pK;RYfRbnu?zB)hY$>~P)ig#1 zR&0Qf9vI#&?X8EPbrudtK=A*J9lghjGrYBX&(4RXs%jkz%S47DP8|_RK8_&NU3DBD z#`|}Bb9>ZLoTr`qiMcGgE>=|HVPu(UbXAR}6rlyW#LM#S5FM~nO=0bvT7@>vA}*mA z4EgnR`hBJoSTPH{#T)gPBZr`_`eL;O@+c%?L`!!!YEE5aSdAFzuWD_?1tytk-zIJ>h{VpA8Gxtqo|V@?jdu0_!H&> zX=6bJw)S&!>sS{DB*>^CjF8)n)%sRsoi#c)`bqn(n|8Xl$)+^-sM6rIjs>f&i$oZj z?JK#FmO4;t#`#*R1bbWRU>4D`0#}?~wo@kAgJZOF984;WKJ~${8Ib5W04lMNXg3I6 zT;(^hj)3kUjhFR9R=p^i6 z9TthL&Z8QS%RwD26@Xe&Q?Hl>)2MxQ*}o(ngEs3ToTrAc-nyRoNR0ms9yJ(3F@l#A zff@Q15_o(p*N+DrSeF>VH#+~vOkrgNs?dn9PJ_0Uz3uo>O2;Ij2A{_oCyY*Q3uL&_ zrcU)FiCwxvd6Qeddp@~<8}AdHr}MVS4dGbn#fxd<(;#lETHo+T$QNbEgl^Iq2RS*z?+OQo72OR_YwhnAZW-NOdm8< zx?9W;34LIGdv3tCU>EDNhU<%ObBcR$BuN(iQME`T$&_GOtd>q0j4bYEenBr`eqm!peB!9R?IKhw#9pgSh(4POvs-TsAdR}5TjSL&`IF>?y-El17 zUPI*Nlg>IPJ(Nq=&i7NHpL=Kql?QlIf3zb<*`@J6p8?;WHGq-!*~z+SK6~1ip7u7n z(tFbf_ZCm<`Ht!#obfZVVB#MXwnlMTyS;5X-q0twbn`uuMyDYkYwp#T&Bzz+6*@Cn)eN2hh? ze+6|@)&30>KeKfiQWcQY1U=O*_!jBZJI3ybFQ5-ayO&;3GKUD&WV0J!QF7mR>_;R5 z8gA9X)V4-*Jbq@UnT~uvdF7tO5C&;bz>x_!_x`iZps4|}oFdl7D^!Q=jY2Oxe*>_91JG%)MO`&G&pdcI>_Oc z6M(g-K+M!Ct6+2v`a@yX!FTt)T*V+Z!HXb=%+k}W6**s867Jwh8^PAEn)~5zMhKb0 zvZ`?nB@kf?wxKEY`}J%*np13?#f(0fGj{lA%osd81L*@MOdc7$z5>SCRNE)mdIFKE zbf84WB3Y(x;ln!*LlY~soiKdyw_;7?CGcy-8$%9Up;u#&Fa|ss(_-q6T>~Jaj}vc> zT-QJ{oC}8__fk&C>i9AS)3nHoDun!olCX`*j3qWh4b6z?*vF#;O7FL4ro;$js;w@D zX_O*b#UM!~t)c0~D|zEhgcv9+E0@h=&8EcR}cXtZdQq3^G{^!L{3m8Af%o-Kz#y0l*^p(cScs_tIo-aNUg~>x~c1 z4JTH;>`nYgyf{;Nh=-nsmiWk>TxzPrZ=!HrFu(43_tVS8sm?vr)T6r(OU~@Tg9CCb zIQ!rNF`{ub$w}*r8wwTO2j0G#gJU1OTGxYzKu7q7)sgIg?uAI8O-5cLlq$fe#=|mE zO@TaFsJj9#!HV*}u>xze=c81Ul)M|iwVMJY7&dtwAk+>A6y}233Z!@-T`yilSpG*4 zVeUCxFVR>D&w0qgVO8^IC(O*8M*rE1h&gS6#^$Ca z*E(?{!MetU@R$liL|OaTE;Tx*J^Le9An3ydf})wWe#CpE4!85M1)7;8x!fAOzc7cwmV9w+(kurSkCe{-++ z*s#pl?f{7~c7qH4pIknsLrol`a6DJvjl*CLv=J3hc2h*JT=#edG#U2~nmB6_=bH1W zJz+y$>{JlE6tL$34g9DYwb+{tXTPijuy`d<*{?U;IrChV<&(TRT}*8qZ2qgIR*kx?{iejfkR3y{A|oQ>nD}(Faj#O;zk5_zy;@- z;rs{Ni9Lsf+nG6<4}& zu`lcd8G5uY@j!c{=|ebJD-x#}(jW#HI%R1r z7y>Q~PGe`$*Mc!+(3>ty_*?)_b1WQz-XhzjoA@aV##y69^}>9jwX=x15ru~FIP7fu zkHG%{_k@j?{I*zujD(BH5KGd3z@4;2$(=yl>&~XimJQoIwN|z^(#Ui7rYlzL^|%C( z+#xiQ!~;&KkwHvEP2O-uk#(CDop$2QcQnYm^)LY5EU%B5wP{#yq*?;_>*ewpyWQ{- zZ&c?vgYpjPOJZ+p8s21)U7Cgz$R~sW5UO{1N0n?_g1iX9)C(5g-lAGYj8Lv^LE-C) zOKm&dvOhQN%I$$Z;etu8!^2GbrY%-Xd5kb8um#4Kr;Wx@i(~V0o)6ycYhhh@s?1|s z2`4kC60{o$s+mQqGq%jJ7Ab^s766$vCReaT{nIbeFwz-pCLUkzle*Sd2EI~AM=kOu z-Hg*nfzLh{jVZW^Pa)<8u366E)Qs`<>)>o*dsrn{?j5Z6`fe}XX|oarmJsT6O)`>P z6L;J!6|7V>6GN!>FlAc)6Htw;N>!Td96ye56TV;M zB%ZElLu^KrGrJxIK3G|ilYmfprq8lm7H+1x--=}a8fKQ<*#2$f(Vh$+eQhYovdQhQ z9~EoWn|UcMC`x&US;m_`Z&^d&Dx(+qGVY`$zbRzfBO-m=FQ#fuh-JQ&W2aM8X!zgj z{ZnFlkIgYJ8az;H7)ib=%`-&!+i0&iP&;iEes8S$ugnJ6m!iKY8)|B+1x8&r4PNh! zIv2*GQ+MxfZ71iKL~5LBLLC$UgNJ+dV+hQ29)rrc%Ge`6J%<`Ou+LxAb_m@W z@O9y5cn+__Fn4*;8^>V1YmL1kLcUZ>3m!Z<1Ng}c9&^iY?|>VCB>g5ac^0cGxzn*j zzRB|HLmLQV(v&fp_OH)H^E>CtqHZaI9q|L4D2A?l?g*_O*Q5?OMJ1^fPX=}lXdEm+muYU;beuaX1=DklEgPT+5NX;cQ{@mq8~AB}U8DMq0@5uv&k;tP8eA0-E$|Z= zJ0txu`7VCi9X#dI0Ub>RxKub4 znpMr}K$W#7+WOMJ?H+3h?)}W&!bIA(4XaY?N!l)^_~1EcdU8XzbSZST3uU3VMU}5u z)FqAcaD}ba!0{JGBgl?k_S}S{i!vw9p7wU0KX>&KT~bx$g52VskN$awjS8-P=0LP{ za3P-`nGCk?EE!!&R-OE%506&f70~aTJQv3+@$KX7m(SDUv(H@4Qe3zmRZDIKm+G-( zZVV)HkFDt~6qzrb7Cq%zTM(odb)+Z7Nr|HjG_AwE|jHgHa}qhiTpF9`atoJ004v(|HJRMwKw^H z>9SU|be%WHk$lh8U8-~dl`xXBYd#Ieb`8elDjH*XHe z+OZunr)561apykFgO4beQ|}w-sX>Nzc{ysKo#7P6(G$0bjcs83W6JVJ^UE2!-+}yL z$deCdo~9Vt(x?ON-+9**W;fk&MMm*Jr<1W^bUOMna{Pso4>r!NSiXY}hE6QJoE_c4 z(~lrw4%|30<7WBwVaXjnJ)O9FyUu~P9igI;1!SGjtN1bmvZYVk4Hr-7H5L(yoozK5 zyyHq++MVMY80$m&Hgws53~TSxsB)@eq0=7R9!R8$0zJZ4`!x2v~eL(Q0 zt{=(>o`=HGuR^2<>M-8gzG~|lt5NI!MJ^nXG2r3?KTF4lm$xN{2ub*66GHEb1T z+;rJ2eAM3!OIEh{{bWBObv&dgcnqrZ?TCCAA>%`dg$w3z%aRqU!5KboLytV9v?50BQ)B!b`r;mvAJ}ij_d%C%|I^wM*w_Q+c zLMIO@Iv9jRP*Fw8RIF#_{29lRo~6;D<@Jt*-LApHzQa>J0&|<|=B0*r*b2sG-3H?=#>mJZLw#~~x~0K^F6Xo%;@MR|f_i4pWf9$- z2{Af9;ThMuF$sixV__Um$V&y70FvOc(tI)@rP$AWUdu-E3XH{y7}zS)p?Le_-kc3W zs!MSuSbHExg<_CD8iuppgfs{ra;(-J;LC#RFxlugJt8lq9LDjO2-zqAEu%1No`=RM zZ#89_LFNGaY^?6`u^femCN!5r(b_-64Ks(?@&B8 zmXV|FM#Z)X%|)nynl~P2Ee|uNtasHI+eNaFdTY%1nA>wY4=)c*8|N+x#wtPltL3PmQc|mG4On|7+G~YEIQIVNWd^ro!V08L%RaZ<)_S4_!nBCkO9Ba( zy5vxs;>Ow4&0C-*D)yKP0iMvOY3(-Vx4C_B0!%505JRh|U@FdnKL_&&09c5Um#a#Q z0jt;`hKUy-%<3JWr1iBuswx3IM4_siwO-P|Q5YWA*b;RPxpHvs{Kq7X=D}hj%t@BRw3u;c(+=c>ePE006{>$zd4gynX=2Yvl<7T^oDUs2vNd%t@t#ED5W#Q z=NLqR(9#`fBL+pVP!QAg3HC8=M83={l-(s5v#bt?uDCyXZ-FQbJP<<2H}xwZTU8}| zyvdrCK3Wp~M(=vKWJfT@JLyuVR8{YE*0QT;sPG;M6ll{F2*~jxC|U?qyg2N(Pcc17 z-C|6qO$({-^tI+>id3mK6TRk)r=q@ydTEjU9!@VEULZHI=7qfDJNP|C zr>ED&K+rhlP}ZD;KWf((YkJP$OeoiqrPHGdP!ev?TCj=u9Vx-YyCtuPlSwu>gWMj~ zOl(tcx8qNJ*&?66KuY-f?y%ZmhO!E&M7N(0QIr-L+n@wtuX=1ab5?x-CUSdTt7AO- zS^p_rd3>|2GJov;L_F%GizfW}_OM5`FU$&4tqo^AtHC1aRjr^h;|`YcpUSx^V{$9p zOpfupOKS4HwXqs7WNX`Mk69nvkEt4hH~BqOw!4I<=V|v5Ytympi^#%f3dRnsBhVAi6Qu|sZR$3Du&V7 zKAsL+p@_SIXtWwENW_#Os2xk0^c*uym8uk;_qm(V6VXn|DWIUjXl&>5dY`(5dA(XE zqSOok43f|qrb5BJ^%+P7>jcVih^SVYqB-hJnCKJ^NKs`-VIHmFk!Yct2Me0zeJa&} zM~DT?1}UJPDNLsBGL6g`kW)u!z(tK&R;qUXVac*I@Z=FN=_b*=fdE{q;yIn1pVu)h zJ#%q&hF9k~i-OEhl};3M$Q9$E|CjSlZ8~VIfrZ26D2a0#2dpCnV#bx~iS7~g3B{(9 z`UYeFg$q{?t%NAi&%&rq0L`@~*vX9`vnKvIhg0_*O*jKIbUg}oC3Z@-{Hj^zFxrd`28EfO_;o@msuOX%qQ{dRkZ zjECu)p(8&CUIL$n4cv9mX0cXq_rpMy**2T%v%Zu&PE zFs8$-lA>n{K4TGSBN79t^&n$2qWoW>*`$%%PfKD1GLv35yG{h6nh7YU$}R<>9{1Yi z)-7BAT=lZm5MDjFux~YM2d~W_WsETunVHU$AakBI-)++1SI}s@jVxfl`c1T!(hbs4 zDqV7{{q%f4KVaoDyo0c4r0OHxF!*Jwhxkce5X9eSEW0>-@Oa zvAKpZ)ishZMIhtx8nBj7LC6)wo_b1Mi6(>Oz<;b1!+c^wb;>z2U&9dD*jhfKAV0#b zJqGqP*fW-l!!6dHu)IY~t5Ys;t&BsT^|Qe7ol`o4Xq6K$Q_^A8y@la38*ri%8EAij zPnp)fIew7n%G&Vn>c)0^lEn`CvczN->_58|Q5L(GVW96` zjUid)xkk1iTf{D4ozooK@*U91*N4waP%xLE7yEp0*Mq|uYYtA69k#KHz@mx`Ruhcu zh>xK^aW*-GUADUHMlqm_uR+IH`Aj6zLt6hpRcAspjc68HbW?_s8G(a{zE0%4(gqjD zzWkYssqDLW9(7a`|2Pe8Wn2eM6E6+1hO6d<)`8gMa61x=T}1cEUJ*x{nD^u3L5H4Q^9_n!;InI`+{L zFFs_;t_RNM(P41F=1u&jtiA?PX6(p zG60VnMT;Q(B9Z74F$P~>LH!B|$~?@>j1(`wXjVx#UaJTgH`_pT(|)Z#pF{dEEVZ>D z?K2#@-!RqJfiWi0v3|F#{CYg*eQ|UQBeKY_cs`Yo8l0IZK|GVGAl_Qe?0Xqf(5?89h^>jkUM&pKb z!7`wU?`ddiE37hwHWXbYdI3W^-0N`_Sl9962Gs8Ze|9!PrR4x0_S)R^gc>S0-OAlf zEb%oOZ@sMikp!;-mGsAep|m|eZg&3jvo8fc9to2Ct=ifR|0V3{asV|p>Fny%chtAg z%(W$~?^!|4ZEo&Q$uim%{(t)OntrBCNB`&o7GwYb{Qu_98`>F~oBqGC+<5}QuR<&ccgFu;q#1x9e}@1>YRnE+57@1u4kHH=|IPmbApHME=l1z;iF-Nv(%1< zYn}k>NP?J2jhBGy?E8Vm^GrS9>S1G}8o--~5wIyAdx9~M_Rw{9g+)|~xz;=1pZf4c zh!lr0jWmTogq3SYQUrm96P*bnK1*PR9$b0+yie`mh_$`myRziQ*`2-GD`Fr}BVaMw=h%hB@{O`i;Xc=Ps(KOI=}_Vi}W9G*>~h%;i!9v?<_o-Lq~ zyDpBWuAKlFj*ijD1IUB0&%X=+d}}izoScunWh~=%MfpOm6OFBS>F^fV!SZC*#+Jkg zXp$zB@SC6rJ6Yif605*DJ6~IiHmzE)Xp)7TX{lD6%{k6pa+a3hat2|g*PWuj^k4fgl><;emy;OdoX zZnNdiK=x37YeV4AP;oVnjb<9xTQ7O5!B?8H>zrW*HZmogMj+a@@S*y|WiWQykG43A z@)+U+UI@~#AVcEAwHc@+b9AXYFB`_ySC2VvUq4A_QghYf2$1JujWAaBjVHRwGODn5GqFh+a zj^0iEBW&rVG^QCB2+e!@!5rX95u}WjGaS1?ly-P2HiDD*MA1~m>8|ESK)0M)c^#zS zv-Y!qtimG^b`r!TDw>$TlblscS{YYx3f13NX>+mPdnqCdbAfBvDl`G;^#UlVeg04Z z4Lp7Y*4^06Bu$(nj}jTiL#I85Pruq8Lhj&BARSf3H%KPJUTW;*jTY?HjTndjo%?I% zk887hl$<#Kg8bh7v?^eo#}8Z?N&P)pwXIc@e+yD3=iRlXdbf;p@`y*cL?wB-lJ`v| z zPTkd{Q2TUJ7y4A9x?->W2C*ZBpEXq?+lt$c0j#o%-ou}ShaPy3xD@U!5@9I+}*fkSfQ(eYS zV{B>9R3nsmC=%b69RwPuUQjYh9bKI{@N!R3{dBE=Yw$cVDc3r53?yzE|9xe`X2+91 z2X^5vg&e^!6>V=l)y~(!9J!GA#QAHY`S=ts;)r3SO=Aj*d9>*t#LBIqCh! zJlibPNvzrp9n2um_5gpnFey>z;NYdqB^ZZG4KYykiU81+-8lrUrSJrHwz$Nm*oM+>b086gD>nY~Sbj|5=Y0 z7{7g53=9CE4gNoT1y_fEpY>V(E6@2~x*=3`>tD@N{^ctO15gLj-q`JK57)Gfj|g01 z^cFxU^cRdIilh*=keIG%T=(52B&kbwTfh#Xg)^JaPGc&u<6kw#EuyTJ)+azm3jDG% z!@0oKii~4jxugXccp02@Dff-asx7e+R=;C^SSun~{rx$rA~i zBw{eSqiq#|>k2p`zU2*99Rs{&1!N{~#sY%cWUm)DwuD_P$HCo4Xnr7Ibk6Gl)ctIi zF7gJM(815jLET*&6RZf(y3Deogp8@;hM+VIpVyei=6o7BhS4{_8atc8DtknK_PCauzf5-N*=QNEQJ7XIiuITMG<{NeP@s?m?&+n!r}>{@}k%}-|t z9dYT%^WEi9A1qN5rD(DyT*x{pXvPjA^sdHrWatLB6i*VKWSYAde*q_GcY5;E_m5>CIH@ zpg`iv51xYmy|F8$3yJDE3F5)|ad3d%Sz5)b8M5L*o8&5Edh#ppk6E!HFL4<2m|soM zI&j!N#e_KsL9e%T>H<^i)oxQD7+B({Cc^99ENmCt8|qJK)+vOJTH|w@i!tC%B8a5x zE@Vu)N5Ly7Z6FoqDWDE1=T+J~T@NEEC-d>HUT2SQrBz(D7(J@5KhNUgE4{ETDqpej zWzU)yOpa1rN6dAi`|>P{gwYY^dC-x;AJ=U7j>}vKam4GplCV(fDpOW;1??e!>x`&* zg&vH=IaF^bj;t?%n;<3q`}P;^o9Xd%aDSA$8#Di2tN(Xns(AS+$%c+FRE>ghU zzXr%Y4&8J*QMiT#+*@{|OmLJSJ!gn$?F!W~N28KrAW*~PzE~xM zK6m{x*Ntlz_2W&o&4MTk5Dh5=>k*C<>Xmug1D=fvAfYtDQR28O86I@35tas$D1G8C_@RX%OL?ywH^U@xpOWopCl=F~c{eEdSn~>>&dmczv*?3j>}$eo@076^^O3ZJ|h2 zDo~itoZOIOr2dhLxAJ~7rxH+E<71SC-&U! z*)YETn19CsFxc6C1cAkLmE5}1G*OYseZDkOuZ1CB z_!ZFH?$+$l;O)#pEQ37D7@*i~FVNL!tiW+hZV$4%d2aO^{PUO_o3q0Te{fHkSX|q& zxv%LZ=BklL^B>98gY*vz-=XkwSemIJ5F%U*G0)JWhDhh}8JtF9WRV|4ZEy=p^KQ3l z)w)*?2AT{FQGrfO@F>SON-SzbWtQaU2z%ROfMfuPr!CS{W?x5EyC7nA4Ukd_>&VH5 zM<>u|Reqr$34@=r&T{*Ja~eTv#x&IW@t#&KdRO1EL6m-^YRHo0;17@9dhmHW<7w~s zc5&x*xy)S-dR?Iq%>Q=AMl%6TJkBc2|8b=ufoVo-=Pp#E$n_gk>(0@4LNiP&0O<(5 z2(a>OwAc*&WUJXXD}JwE8uOxy57HED^yKxCBMYu3RO6J5lq@Tqr)JU|O`xR&gk$05 zu`0G3>Bx3e{zczL38Zqn3XHaS9ZFz>NYg3fxq6-kztt;|ZF9!fbJD|ZB_luuQ#6?a zp-du=K{rK_TGyhPhO{PrFTV@>3%Q9-YSG@@Y+hWc2XIN}9#`VKXFv|EmWr&-3=5W- z-`(eDqFFvyR3YiI$rh+7;RVtxzjVFIW};2zj3w@&9JmuX!@Fr;D#OvGw=!GZ<%WW| znHcb^&Kp#dK$?l5hvZ%MNto3e@C2xqb z8d;MwUDbc-dLb_ilIt4Vh`|524Caa4xHDM_YhO3=HbWhOeshNm>7>&+AXtlH8X)?KVAN0b_M zipxG34hP`3j6qvk>FgiaCc0M1J(8xkSTCLgdg^#^cjzildRn5Sk4!Uf zZmpcQtO&4Y_D*UAs5HB6;uUQzhOiZ1=*<|UdYGDT<))mzy~pIx6*<=-J@?!A-m1>K z?sg_mVDGB^Qv7Nn7MH;_5h74b$nqhQM_7r(?9kT>*X0ZDmIv zxZufzrw<&X(W?!7xiR7D`sTgDG1xvzZzd7ve#D86Z3{@>-SEd-+?FrBntC!0-}-zE zu{`WXXFmHMd-8Vk7)?iv{Ym%;zfeZHPW)|sbnT8?rW%jzz*_jN2SO^`eJ@bc2D$-u zYK`DvQhOr6+fv4b6% zc-Q$Qh{{F#B#c|RhP^i{p8h(JKH$QGrEl9tik*wsy8SyFoFIu=uPVap&O1(;L8DG#PL z5qej&?;X(lLH-5T4tDIi5iL_I5~2A$`?JYx66(}i&bw$DdE(rGWC{ot4_q5Rq41lLqxx17O@<2?i5rIjNa?sRjY*zzkmeIz8Ndy9|!1;jh0v*s%3!`MLr3 zeRBJ?{pL`q5K9XIrt66>M&7|N$p0p9OmJ&3`EmDT(D4C$UfXoGXHB17Uwe&?UYqe~ z%gEc&k21SCb9Z&*$%n7IIC&npnfD%L&Px$JIa)tZZrBU)hfrYR zQD~IH3GFeQ&PWENc}f+LI#mOshrj_gM|c?=>z(h@79P|aolLsEaQ8xc9hDE@kuwp; z1RO2h*#YJ&VpR&L;XF8|e=DrH;*8t?S>MTR_=#K{bNawA_iLa5J}=+#8I44;TAEAz z+E|wif2Mj!IKQ3A!iYX7z~~$gC)%KI6QByT2ShNHj+5KBT2u83Ru2(iAt^BUh&!)~ z$N|P2iX&BWHq~JZ=a9YuiH|XJ;4hRGqxM*8bVPLxf$7(2Ga!W%bdUvowIKD6{N5nB z1F8aNh9l9yGBw;Mu-RKZ=&_(3kUeXe-T?fS6eoumwUEY`!MvDe{8#$2on?#g-QZ&DK^vjHO4IIw9IN^!2YSX)fk;N4(dGRi zm5l-!;0U!k4grfV{fGo7YpBscv}aB@wuCC-T*qVv7IbZpRj^X~UpAR>KzUCbfmp!f zzhRq0QKq1w2IGg?sa0?FDNwU}3MUgA?*(|vWR7YQyMKn>&?#t`OdkZc z-^rMQX_8z6W#5m$93NvcSe8RCr}AY<~>xa{0alHyYk)gY3VUe_Tn zss3fCpQ)8WL10JHS3oFb5)ZAPB&7zsIc^lrtp%Lg#8Fpp+pV}8Bnyu8(#ETPTiD%; zXt8P{W8tZar=h-7YtY87)l#r+@OlBY(VBfVL-3D_@54D^cdE(JrzTN$nJrtdQD}GV62eO9Vw9{CMfKe z3)3phQG#2D8{07qDreIcyFW~cMq5VPy@j@J{A5o{Ym6vk%w4&6TX0tRiM3u_I+ zrCNg{k&c1F;r`l z%950!$ns*c1NkQmaEosn=wV}F*+0|*?B||k(=mzK{fcZmq7`c4x8_|c899Pg##SXu z%X`aq&};<1!O+9kx2wHFSEFTO&%Ab9pFFHE*cf8hfFW-hcM1>kxYBGo?0SUIdqJZH zTHw}Y-6>fq785UhsU@vN*~!1tSG|nq>~G#0mcR~{B5AGyrUBNu`BnwKX1wg9(Ps1} z6w@Fc(xBL|SLx+d9{C;973B=Cmq7s^d{Q`vO!unB@oRfPZD14y3pJN2P)7hV8e@iV zLOzqvws4kPk4_2>zC=-0m=PcKGBbxoS^$O!VJSW3{6 z!0$G2B%u4SQyd8x`7`0%u4T zL<2L*@LG?=T+dQKw@>1}H8R|$HU0N21ONeX*I`*IYITv~Bu=1~$X>>b^-b}0W*8Zf2XG074ZDEYMbPl!fQ;I)4NzjzJm&h>|; zw-_w~cR?TO0%WRB6-|Stqnh&w3BAm&ZJ6}7XUT5guRmVQdQaY;E`7GDrzTFeCT#qC zT^|Zz0mEX(begVSs*|s#vZE)AynIjS%#M=%XLkJM$?v!;W8}$iyB>6WH^BfFa24cE zbqf_HigoT!purSy{wj3H$Bi&&DN;yq|A-z!cWaz?)Z-;$DQ1BJiy187HN~nrfMM1$P_9)qDYG7!^bS{JZfOj*$+Bf7t5q$jfWeE{Epp^}d)RHlJQ@9WTjJJgjvvq-=G!F`WjaO*T`!LbS`M<94j`RSA4Y}&2Q(N zpM!d>+PbxO!84r5e4YbV{%o(^9UPSV)(@rwxO;Nzw+OPSO0 zI8dl+j|@Xhl60Rtja6<_MV5tCmAN~_P*gV<#gnn@oMBT?H^E~yafIa~{r}ke$6(vK zC0!JrHrBLl+gj7MZQEYcwr$(CZQHgz=Y4n8xwX&URlClKFXBdgKkCQmBYGb#$7mxW zGux9-%a+;oN0X>-hg(6#kbLZ}IliICTLL}^0*7H9IqQTSF;HT)1I=~(C|Q5shZYvN zeB}PsT|y?sor?1#Siv~pB$4gl0WyHq4{i^)6?2n}p))XDIzMCAFSy&I&;fyv=?Wlg zNq&CBk^Ghrmst~bs?d^QjR~Hn^}Gp7(AlKL_tm@NgTk*B$0#$a5Ijcy^3qjaYxtV? z0e0Cr%6NSBs|f;lwix=i4aBu(_Bu5OdB}hvb15U;V<3j=fDHFpP1!GzgMLgDiX{;N zrOS%zP?VUGH+|!qCnj=+du%u0MnVpr2)|Vf>Y{)%Wtf zvur}fH*y7LLmBs*@*o4xeg@7wLMZdxR=5T)RI@IxWv%q0j!i^hj41`hfJv&(myp2a zwKA?BcYxpAsQtfmc|4MskUm12f$bC4hC(vJxN@jb<+95x5K}FUz>Iyfq>A?=sD6v~ z_KIzo_vj`lEYRI@!v1j(`vW}T^_*i#_bYwS!Z3;lmo4jrybAgYu8XIbDQLPW=FAdv z@v=E;hIib0{*&n3ifP{VW>AGXE8x>Pon@@L4R;W?&ETlqaZ2NP080}>$Q7wTniA7V?*d!fs;Ir2SjOt4N zd+dmSA#AG)su9V73#;e+bNQWh)D)m)=G$Yo3cWCk;n=y!22cFb+oT)T_SWV!JBBnL zkd8aL2ZJmWCtCz73VfPzeiLx_)U>1e6=3VkeKW~uiFpN!rYCqCvaO>YI}=h1@A9U% zBeCVUMrjCluz44Ys`3|KHpNLsV#~EppCf`3H2}w!r@nj!a4bJoS{S-P#|#Cb=fp8} zgFc_MUWt*Jo*TLnGai+b(pVlsDMLXr@K`ab(T~+uP3i^pvm~aIw<8-M$XV}p<&A6n z+rvvqti;vv;xewt3hRT3b%DXiZB3gsD2PpKp-%9=2dfoKSiy6W9^W}8`Ep5rTw7?J zC!>~VenTc_K{547s;2xJDKKfJro79wIg_4Z{foz$_i$ZW_lFn)PC1k}Ug$57N@@m> znPBaec^C@iTuxZ;tXXA}+h+go8%RZ0B^Jm=WattP)i==`HMj-{!{|A^@HlzBj$00$Tb&yjKyY-Tmp$M z?z8pV+z0cKOiV2BN=voFB8n~QAX0ZwR@YsgTk5b^J5#A5UZ7kS`Xn(uRCCA22gfmc z!;TP>V41$Wo_n})@Ww-=;`|?gf9yXlDA)~h3?B_XOrYx%FW zetW|p)X;2XdJt-C7M})bJVf+7*?;p9Hps-Ql$7@AdG5Gn&n%Jv zXCjR2^u)Fy{OGVxi_!Zph(Y%OWCg8QOKrlG`syA*qIJK-4&GMxspS`Y7ghB2QOoaC z3z>QlCZbmsxMHgQ+cR|mp5LpU*G@$lYc!T_^0}>#t!Bt|4=#LZ+upinx*ZA284WIlWNaaCF5O>q<3~2$N}g ze{D5H5_|h?SUdW9I*hitxv@c;IEyu- zSf%L$*b%>8Uj~PS3A!^boQUnoFT~syCb0e@^P2|~;O%3}0ZO|5qs0n#N0ek`l`0Ii zw`?UH#^^n7cjL|9baHaCM>uWf}SmwS+jonE-@-=+pGvtO$=jG8Duk|8%T;h3W#b_ z09;&05kKn}^ofNfM}JeIZ$`$#i2dQ$ zIB@m51DzI)i|4Y}%d;$2LSC+fuwdccY`9^@OD1(Pwr#6!p!2XQeJmYvfTgSC4YHM% zR=^jwk`p7O)za=F0c{_TU<2P76xHCY1lu(PE*n6VU+R;))e^mWzLkKA9|TThw31)Lfi=jNg;F|+G1AhmaFSY<7WA~d zLa~*h+gh_n2Hol3-S^45DHUhZ#+;!D*COb2zTFmk?U60hN|WLj%M4sTP`8XNlkqtf z>6@E$s@sn*Yw?f=voz$?nO>jt=nWX93FGLi)r%Mv3MdU1oi0!+T^G&y%i49YZD$V9 z9%r6Z-7LOFy7x)MMvc3rc*5stM=)8UB>CMt-rI%BcwVt z`BPx63bvT~FvD;#yTY`2#FXQ?^4 z0VQ*w@K=+D16B-w1~u9<=1<+u?)PrQjkPdHaAwvTcwkORmjc3hQ`L&@M{YAbBD zb;A*}qMx2~Q<+7RJS4g69`F|jqP?&H9|u^N=Gy_5OX$aWGDnel%iV(P<8djtG)}*7 z{wav!-PM-`y~%t;MBP`$dySK<%&PP7I(EJ%1dL|GbveMo zb-!}IG17Vz|Aj9B_X~FpCuP9j-{+qxGYcJMPxDc$rk^j?eZ@DYuHwza>-vfE6qxzm z^4zlr@5=ytcFQX&auZKRs)+a>8Q->|tn+F;kdC*}B`yDPKjnRF_gyoj)}h z6%k?F$UeAOLU2~APT4Gy8}v@te`L$b0UH_WM{j4k`hq_S>v{kvU?Skf9AkW(SFI>y z3E#*GVM3l)pueXEb?jy8kD=wd4Ak?3X#z5;Y>SA&1sk4!Im8@XrvPTLGUtbwWdPSW8v5S?F%*=rH1RH0(ZbGk>gi$;-mp zsUZ@vp}j%fN`*%fit&W7{H%=v&z-HDnY&)OtE-yzlW84%=7xbBu;EH9xPWcd)1Je3E4GlCn{M%l{8+3F7 zKhof za`=mO*j=XCPJa-wi$V5$Zu0cAJ&52x_vK`R9AYG+54Ryn z@`n^Sw@WXl#9GjQoyFIsIw>dW22)5)3D=VNP(ketjtB$SVjr68ng)J3}6 z?Pg;47A3u6+tP7$lYZQ*4qGG9>b;10UB`K}Lqe6vp2_9b34#IS^JZ^4Ku49*NDbXrsy5kohU6tMbEbUmP zzpvg4C&C;VgJ5n%x*c}WbcS%?a>!Pw1rL*pbO%gQmAswG^f7Mk-NYTV8{H+@X@SF{ z7#*5Zf$m8FLYgpD>S5&CShgFw+}`4fX;}Hxmw+)x$7SC=hbkj8_THjo5qgP&p%z6? zPpjL;MP$d9zUi#(%Q*P$5p)x-3Y?5YQ5qxC_;bTT!$ZObOw@PCTWF%4O~?tlt(hh? zi%IYv8RB6?iu2{~LCHL#$QCZ2M2Sh_!>}4b^m)`KJaKu2iIwv`zA;R<^z%?qznRGR zaX|jxe|R1WGev148ke#Wk%srnZ;w~LvRhFZC?DCAr;GCFV^xp!e+UNi&v0lnc-=mZ z3mYY4&xWAOL=VZBr%ZB!?-vP+*eC5Rwt|5+OrUQq0vH8v`G|%0!M!OiolKWaI8D`b5}?krrkkZmD|*!0?$>eShYbQ*V*{b+JEH;4UEn7o&L#t>S;c` zwu1oxEJ^|Z(En?pe>+5CZe#lY9x8OCH8IwAa&|Dj(z3SQVEy&It!ppWZNqQXh!ra< zozQL6TU&Kq8v{m^Wlb1w7TcImx$UzP7f(GNPoo)U(2|5eT<>Jt>6uMLr1%Fb3}Ab{ zrmja$Lx@-6>l~P|E7lG2CU!(o&y~O*^;cc0Gy?q~gkhEMNN+FsE#ylYDMsWm0Zu1S zYZU(|K+)WQT3nOR)@lVC0KC99l^)cseRTJ*uawRlWW3%tOwk+lwLv zs=b}~4FK;w$#AYI1QJ5rCxMM=OUI@46{P_#L1#!qgmV&t6Rvka<_ zVIx|){o}KICezxmBEU;iA2n+qHB+BfeZCudk>zfRS*O}7r~Q$-98FC2r1l^=DVh%y zHw=946UK<&gS*C?kM)5wLV=DJ1kq*+_VHDrBPNRd6U^Mw=a z0H{LTq_bkhZK2Y9m~ZGzV?!ibpn&v@7O}0m383tb?-;kCTA3XOu!yh4!@V2G&r++b z^fC1Wq$=$mlN*L&UQ;BL5+9*72%i`cB|^VW7@H=9(R~Ff!~Mx{RwqQNrV=QprCHUhinm=3uFPO?o3FWY#RQFHJ=m4s~$@WPtf zWlhx-mtBMW=D#mxf5j)yK4<-b93Zi{KPogC{28LzABebjN-?RI;GU?W%2qMdy~wfm zUu^ISY|Gu2v|eiY8lU_!fFqD$W)8X)3F73x4~|g**jiya%7?HZ7X#vXkco3|rr-KC zoqp}UOgVEozi3h!Y}=+c(~)qPrI{Q3deVOCzRC-Kp_<*MHPgRfte;XLvm!Xthsxn5 zShy#sh0k4T*Z=zvO+RH<`N4oMZ)K+$CBe#Gq|YZQ!}{OV{{6W z(4ak>0=T?J<|aF@KVKG-e9bv)Q8}?=Ki`hb?)1&(Z0dNrk-*Q1q8}cnjacajDCWsJ z?*l7@U#Dj9(nyNgd3_mMybN#>bsAIr+Kp`{xD{=WTnXP+vQym4%1q@JVrrx3yz+T8ab-#?76+GP zsd{2wM=!+#SvQNt$rTvNIU`67O?rc<4%U~w$pQdgz#BSk&t!)SY1Om1i{^N|R7riy zQ-?~=3**>J0}ovOCm3FdmB)gDRQ8L}W<;eLXjQwE8!OK0n>tPFa@DUTo}fPYkK&t= zG&LhTFTOoYEzwOm7}leIG{0C)6*`F*sZHVlvT6Nnq53^ttUMFv2L3BM)#IW}V)uMl0rJz1h%@z#8HI%W3h=3L;#5o7$U%8Ijg zIXltgE(ctJKv`ahcIBuLfDhfANs{S2 zHy=lAw?JFD=eVEP;5@JtxHDhkzmV~mX?)(g`E9{+p|2I#7}oYgu4 zsiYq<8Eh;b-+T>u*}_UPZOGBDQN*XXPqFZMa~nkVqMjW4z0NVi#_v;TC|xz|ehi5$ zzf^J%TfJzNV#!;@J$?Ymai!sYA~A5sJR_iCf7Wk^U4;d9{)rDcE&RG2K~E8o6WYsx1oRe`%kKd;@Pp-Zh-D_4hu$b0v3rh z&=2&X;#xRu5I4H48W2F0SX2q~I3n1sMK#?R3@#=Y$O@JFP9a}j_z!@o#}XGciRjTd znx)GH!69x8RYCiQh0z&I>g0n zK%0s^*55>PfU|q1!VEVFdT-G9Nyu4@8k_4G=oof76KUDuo|p>j^vIQ!Kj9gT>bJ-SM(f`LTW z#J%hLcmH0|TX`gE2h+cfrB!gjDnM09Cy4BT14hUMu(qS+Pm6rKwO9;ffl3yJ6A@fY zG+eafX5p9?3idNYF^a#+r3uVbcPg}|wnu;x))YzWcgz;p9Vw2-_Qm%!hF@OxD!&sSlXLnylky zO?N@yX{qM)@=55&{Iu8aViXDpA>bS|!n@>JgACum3_y%=>x_l$f61u8xuRp`Ov2b1 zhayIAA7#*u91R(1M_HzkEc;zYwJ~AB<*tsu)*o$Q;C}`cwj8e|(?>4bV5*E*(;FNm z(o*h{v<9!p+^fhiqVOk}HD$VPXa?9vdNw^{vTyJ*th)Ipc3A_SA)gCgQyal2R-QYP zYBBFI#WyqltaN(0!`$1@|0P(rP_h64bzXL&b;y8}RN>ArSM=sA#_~8M3-H{#RHx6n zPmXXFmH>%W-l|c&LWqBcEKW}=JFo5jlXrQpl?3KtYL4G2rB}w7H=l{ZOlz;eaW0YF07D;2Dj=zxwWR&aKc30Hei@_|~A(_-Bd z{l-q!r^TigvusYdhN^~OtPKuSYIu1@TD|*=mxEYkO=f*QpJM$?T&t>v)&X0oYmjdR za}KrNj6c?eq(>Q%gPd(PQD_DbO~!@y4E_s1+KL3UzFcT6)quV)FUUVy%m-)ts(U zg8i5JCPEkBBxy_VGoVgz1=P)d2Ri6GOH*XX zOCmT}D7MNa4kbNNT)YrCBaJ&MzPd`eCcTY6M(BAoV;Gh9%t%&u!FH!zWEP4Ido5H_97zK|_s*)K&fq|9c0tB}ZD0 zz2+oF{_GPvRIyCxXm-M8F0InjZO%Lv-?yXtWbTV`kc%ki1B_wEnd{F4jx?l7eLzW3 z`BE65#zOZCfDbU%{+f6Eb~kNxxX>2@vv%OAp6^g!1UgdIVDUOI^;+ntqN2>?R=GKgbW zspjdZJ71;RSW{SxF&!3X9b-LfR#5)s1Wz@BG1Hmm{;)qVZ^>TRqo_P|C>cb+!@-|c z?h9@gIZVT!tsZ!omncJvkT3oidNe*Bcn8@l3eIZ=V--L#)^GaCXfxTDl095#z>V*^YP8TN$fe6-p;N25KtxqtQUJ7lhGcPPV;Se+1nCi}YU&x6ggOK(Gm37aL!OjDBQ zEwL;&AO_wByxB@BxeDD^+glLQam{lzm4adw!$b2Q?}y_3mZxu6H1t`Dz@(D1LVacT zdbR8?C~8{7%`!e?+?wYKqIGpTudvP3xHpUi5(W~88?lIx0r7x}@?WViZ4U`hbu8wr z7+r?*oNcc{m?E5ZDn*CdWT>+08|w+scoOyU4B4!g*pu#iR8UxP(KvG?2lJ}2wpg95 z^mTgVZ{@L2NVb@tX@xFp*Fk3aLzN0u8ey#Y4`tt&UlB#QV@%ck6gO3mP52{JEcR}a z>NZyeR7;ZG9GtG|t!|Kp>m(Wa<0!32gZsc`clBAkT?J0rZ!1_2^`P&N03!^OO zcP>u0Ed?9B=W{xaqPHUZwp+Br6$}Jhf_-g4uiIR?=72{x!|0U+h80Q1nB4KtwuIIT ziG0%=SZN?Ltn4{_T7+D*FdYhONyE1PX!PXFG1%ll005*=003D$;+83cCJ^3c6d=949HPLtuGaPg&%MhY=_v{CMM0M`Q4gWS0;WoO*p>GvEPf zczAeu6I@haDb(&}G(_-9<4*gR*pLZ0wfcE1Gy_)A1Ap7ix&_t>is5%HDS$k7;sad{ z0_q2t@q6OQYXfp?;Fru6C7AI%ILiUfJ(MFqCj`1?&wwF2gwWmv2rK0*4T0YTd6nS^ zS0sCZ-)iHz@n!AAGdM|+sK)0%oKp3wUI~JOu=lZI8VUzszvHycj!+m&U&G1}-RBwm zZXj<1!A$55*9vc|v&d#$a>!Cn7ea5baG7O5C0XJCAFL0$iexCNba3rwetGrUC zclBY3ON;CZDwzoqx}EoP^!c_*)utj)PeY)B`uodoG3_5a7-90NuvWo)-a?{B;$bZE z(LXDl^|rlN)ngE?#t2WPHuTd4Knp`*Jo*VEd(`cCSlX_WvU|SgTHApPQ9TGzVP#04 zED?Kp5E1WPN%Ibz36KTcq1hEV@+m$P2p?lUlP=*!Zn9f4Pjx~)3T@J;>B?JW^D!vU zhMTV4u7=jR52gBCVObdm1zG3<%xjC)IGr6%D^VBuq4Jd#7M1JKmqYtC>;rtE=3;`4 zQ6$Ye>AuDR1C@wS@0QVVjnk`}_12=3*SURF*=#JWbdW~ia$%z6CMRbqCi z)oGZVrtENSu853CTkL#R8N-fv(QKD`=jIQJuNSd)S4Wa*at!TNlF{nOdD!}2VEQgX%R z%R~9xBXvrYglnj8@ z+WaOrW-n%DMJ9%>>6@V;?Wl2$s^)I{;?a?s%lgyBI|ethKq zeC_Z`m_39t6EG)*o(eGr_!FgWz%RS2bn(l_ynk~2wfBM0b!&cXQ4ou9!X?(ap97tz z4m$Z3SnZqxM2f#(P~VDh*fC;*njXc2(@!kKpq?21bwewN8<6Wj&m9pXTneq`1MN1Q zDw`hiw3h5{IvH5ao;fa& z<0?Q_YyxIOAU7aRf;P?`Ek9!iqxF`USCTG-07nfIjv+0RQ}7y1U?Tl7J)0L}3M}LB z)NM1DhocLFzswKfwhLH*jE~bB4BJN9u=1ZNMODJ^qTe&A^8Jb0gm!4(Znx*K=}v#n zp4$r~1L4WGTG>WaYT#(tSxrW;xU(^ey31^gbF=-3dENnNx!pP!Tnt!+n=TW9UX?;NmNM2!%( zEI+ncHnOnkbg59ddw!v+g|BH8up4iU^)njA$3?O<9#kvlK%X$2)F({LHJJyqFosZB z_`l72=y&I&!7?3d;Hd}Ye4KZJVM z!o;o{fS_BPh-CDOUY{nM041^#Puvvet=nc!u1bqC(wKa})#58c?GP7Y(+QGTvOIyu2)Ry>$I3INx=+nuhVJ0@8W-D!A@_$pclcSgqS9s2GA8ltPksCWGSAL557{(uqpUy8S_0OYa1D?q` zVo3-0$LHrTre~+iQ(>ouk3a}6U_*SzizQ~5+q?(5XXHoR4!s%3j0d%$xW1RHT@6IB7SRn0xf<9TZNll9$i}b+Mx!COa}*XHcbN5N_|d?7Rs49lO(i>=ju~gKArq; zM9jU>$?AOKPJu8zXcwxPa9IOB2}SS|eaJts+eJ+7m_ZWrpQI>I>1!IJ`G3TrcKS?^}*uCtTxpWOr54rN?R5A}o;w zTX{Lkt--7-fi|U^8~|M$^sq))fo_V^s4kL!J${V4M{~o<9o8*0(3|{03)sSKz$Gi8 z^PVZ~s2@d>n<*Aawrh~CfbW}fnzrEp=HrjMrR78u=NrZSl*{B> zwYI+v^hynVtx@~+8lsf}W060Y=z0nLu)T@j>>)3soIy{N_iN*xabrWGVH6q0 zP2+Fk`KXSeBIK~HGs?28>=ZsY0|Z@W1_GD2+NlY{@UUslX$2`>z}V&k#>QhDle^IL z=&H`fq9>bB<+S-wh{8yV>Y&Q(cb{c=r~!WP(|+}R2*^3Yq7v(7aE2wST`Osl;UPo! zs4-}ziMVXqZuZ9OpP)Wn$=Pog;H1^!36JZ!C^B=X-6d}aJ-!o;E?gnZ(J5!P3uJS9 zUihA~i+9<71sMw%DiJgN#Mu^@6&CkTVqiC^!vV%tea$3CV|gcAV0X}R%DL~yrOKEU zh4fF1n`+&Yb-rI78z=G6KN#|ox1l~NDRs&Hl-)XPrQf0f=RecAJE;%Q|EM-$?1%^K ze?<%N-~a$L{}=p}oxbVcwWdq?KLXTuz=3%~8S$5(Z7`!3{v1lm<(?Q#w-?^R97_>;ID+KF@1KCNN@6GZPhWpo;?l6QV zy#73ys8^Rpg`#vzBt!F2IJB5QL)j|=tB3GvmvE;7zXHGvb9e-3X~nUIIl^kTl>G(y zv-4EnS**H}Vh9(51iUm9@LS)NCZnFSJkP1p&14JW!%|`r0$N&|Hp!~Ovj}O*CGh$b zG^ZUw7%Yg(tj@3pG6dq=&uM|u3$C1zaH z++xN_ojI}I^nUm-f0~6Cs;9sD@`68lD)VHV*BBObUk&6Ki$6z5-TKFGqUcL3e3%1E zn29DR{EOcH36ZNr8jB16rGg^h|1BbSFt&F#cQ7{6wKlhL{@+|zm(qVI;Wwb5;~GIp zBPi?RrhcysFwsKYFK;)*q{hFg;Tw_7Idw1GQ(rFed0dR_;qW^q>-|TSf{`r>X!nQ6 zD8(!$u6PH|?((nN5HXldM3DCcr(DcRmoN%{7vEejs5m{zD0mQX=@Bos4^ycvvmhx~ zfEhTiQVJs>2l@R?u%ywE z+A`x)N0nG?%Z5ym2ylNm!$duxpHPb)Xx=st8Y z5~w9WX}cYH1-%`4`8*n|W)!e^SRccinI47Rxq#7?Mgi!$+#%^br~#;Nv2nrLcB7{5 zX&rDU``$qIrCMHLpOWJjIr-Z6%+e+fvB?yEmcdaj0(NOTqxVj$sKcr89%GAlclGZw z<`$bIT{af@q-E2cRXm_vuU{q$sJEX6&(~dY1|mN&%vn+zYXSy6NAuC@6FU8>E`eGXsVbIcW*Ga>+sW+z*C%$sr5vK^JygOng3CkwT z9Kx!LYBR5^@^vZLSu;=WOBO#u)AQavbRpr7v~l=^o68=5D7H}6zW<3rAtEzz$$ znB@WhApbAZg8w~}P1nrW%Ffu~@5#X$*0%d%h<^o#r|_Qj7zm@p>s(<{4ilur0kjE1 zfo3RE(Q+d;xhyVhmMsJM8(%l7OIxh0tQh!o=~#Uszg$(7`JU#NVyt;TJvq~sHE0-9 zZ&M@PdLg`I%?m@Z<75@y>FY&FC8Rg1R7z_y7%^LZgD+KroQp)psYNeFid0G;GZNsU z5F7BuC=cQxf*OR&?X?&Q37kF5Vbk=g5qhB_u;>fbkw@Aaceb{+6QN1fhJqcEx z6v9Q|5boma%}Ves53*=DeC_AUvCFHHIYjnK^JTcT84mE}rjH-AN(6yb0@J_Ow7tE1 zxB1Pf`f}JJ)3eitxrygjn=Y1W95b1^zsJ0*hru0QD(47LopSRm%jYj~va)S#YX^Tj z=5A}Z)YV0Dvf@2Yz?Su$>+0dUc9xLQ@jdlq-6B3pBd7)g%Z;!ZHw_OmYZ`u!FQeW4 zm#+BI-i`(GGKy7=yb|dZ3??kRwJZdSnBfnpb(jl6)OrvR7Fxuj?|Ro3v1UxA8^)b# zKu3CPa+)t&RJq<*9O7_{C_EJc1QIS^kOKKvsZ|h~cloPsig*@m*- zP9%Eho~0tZ{$_#eB35C1R4aU}1Q*AfFoSC_TZr^aLBNwmCIJ7q`4Q%wJEdwf;Du)VV>XjfLQmb@(uyAulq##{u3ac!@?zchf2)2t zdw;*I=epE}ZU3s6E>a}(`2uAb-F%m?Vud>d4*V)vc!(&VR&wQY&|`ii$rQZUo^53l z%ES#CTFnWEeuosoq~Kid``)GKEKDl~(B2uScztwv73aB6~JOOhb$(~r^1=EmrwRlLm-@{RxC z4473}01+6-JG&$V2n1>rtv;3|61@pAEDjz9cxmXh*B=Qsi;iJ8>Do2aFgNYNU8?6_ z-6=r;o`X?xL_m(XXNQHS_7Xv1sS+3)t-8r_)7Yr4qH3RSbV)qSEsARCJS8N(poVcy z1etV3wU7zWJINYIZN7>mAe@hFXckI_~ac%`Y1S?Sw+ROaSSz`ty zt^4NP9Z0Id2!QTG_X+lpdFl4Skb@`LuVjMg4rMSjlIkc61;%MjsS=uVwYQR0sLf7G z6_XpG*()}F6BWvw zC2pfqUxb*Q<#7Ih5yoIge#Xl3=H_Vvc}3w99dh9aG5si4koQKM=nokaU%%>sC7pi6 z%zkyW(JZP_v6{y?JismK)|3rvB~iL(@P@n8!*=Ee3Dnwp2G}fhkG~**#2lAnjh07k z*ktV6Wo>jy#_ly*4my@T(yy>cC9GOMY_a-0vyQZX!?Ct;pzFr{PRnXMkmdUR>(VjY zu5GBzT-Nk)0T#3|3bSY0Wm6f|W6!i5?UwX@!`W#m+UnxHH*yVqBw^V(zdVviCi^;rp~gxVCUpzayg54uLTwuHpPV`)N@;Ue}sGkY-T8tMkmJ z<`=!M#g7T{=>frA+K8YY`)Y+3F7QznoeDF)VX%}eMe7GSuZc_Ly^@3A5M0Gae!94q zCf<>&UL_(P>zW5R7bRM2{u1x17*|Xs6(NS6gWzaM7Y_N5XOnU8`LNw_7){+~oL6H} zSpcPC5{bg0G|BoS825ocpULlfP40tX#yPdeSr^a2M7Fo%IR)-Cz|w_MR7PI(y2Tia zv3+|RBh^fm3b^JaQ|03t_&Qbs4pP3GlMCMq!yc!H1gMBam<%xaWI%w^pl)GC>1Jxb zAtU1ZCiUcqQ)+EjzgFtM92nRIMDer0JDFJb&W?{jprO4A1hOrnb7y(bBVG2ZqQdcY zozo73{Z~Ou8oX|=`TAw zp9P$4r;n1Y3jULPO=OzF#&|O2ZdS1s5tr3b!oXPj!KxZg<*M$7hd+*Zd@}NDsAnGQ zhj^0f&zcN6DA=U&&9`UkfFseUfkbG(~ua?J}#Qe3&#V^?j z`}gG)j8>Y5lm-ScX+4w@tI+XXQ`s%6DJop`EkvH030;q{I`7S`Vvmz%F1m`s4fB+X zt`Ahp?nJ}&fi9xD-E{8?HmXAfW=jKEswZ^q3l$I<@kK`xl$g6roUp7e=Ugfe4wc8S z7kWe*51hueL|jy3GG}pL?{ujyPNt%+*-us%MY>vhEBi;I!Y0X+B&@N{JC-~berUP1 z(5a?ux-RfhE|r#Trl>RGAEZatZz|@Vm#s^Z_7!Yn&mxuQZ)4x`7>heiKmSA+OlzOq z7XJlu%6b09K9RAtzPZ)^&KBr8={s8f9qedo+HPw}`SCUtlSrnsS1jR>R{Y3I5}Hn8dVnQ49`X?xm{aM3 z%gURbMPmT}^chqDE{DHK3cnqLgNeexS-uGCsws1l6U8KaUmh)9rA|PQ?StV!&n8VLUYOcgM(I3?FQE>Os6>nS zH7zt+blfW^>X9G9?Vo)lh+I-QP_zOlgTiPcLaq);Iyu`O7HW8EKgxV#YM&Hp&-l4^*~!&& z{=47_@Y||!BTD6Dz%kP*7)tall}m*XV+e?&K$s%o7!0LlUv_=uCbsad-F^Ae>-W=M zN&~z?8l{=iO%Qz3n2`e3=;W}* z<*4&lX>*gZ&$AVDb{|EMMJcfbc~eq`xKs1qx|t;)&pzZiJb`S~X~eG-1ek>tmO?Vr z8WHMF6JWU40k_NGG*-&IHJ8L=cqNa3g25#oK`uoGbWGo`tuCJd&tx6Jh!IS~b76nB z`=psTITF$2K`L2+;wKJsc1doOIJTcXv<$x!AhiN(@UlGQPjOZ-}Gv- zuF(q7f>FHX(w%00X15m#;vPekeMYC}fF>kKtYy9<+W|A#K`NvDx8nvnki`V3N_&R8Qqa3c^4D=$LG;!zy#SCe_6Gml#SsP`V{HvVRnN5_NbIpAfA zK?XM@V!VE`4QtO~!Mrpx&7i2IZ)muL0@IP~K5@8(F-@%*c2#vyXF)6~^>p)te&-;0 z;zEHKsqT#R_*ZF9ZlkkI%cl<5Fmp>4{Qwh?)4apceM&ABZ8jGtR4CdS1lstV!DLu< z*`c8Rt@0cm^A8kv>tm6fruS~YDscC2@N9K4+y@H*5uGV*vZ1TNa z;}2=l+0X_EXVf;5io7bTtzSctv0JyARaQUFDlhpH2ZfD*-={3mro~F<#SGOZDiLQv zs0kP&45`uFQ1rNxFvk$BehVW{7EXPI_hNcItD+`I8H9)WUCI=+BI=2k%1ZX3JUWa0|7r&xX zxvoy08r#~EvXfX_NL)S@wP4jYNhzo_DhQJQLm_ehP9JhkaRJxQ z^t8Ny;8pvj1!hAnEHdhcc8hekF|tI1uQQsz!}xn=8{i#m77t){rlu~xG;9OP?T0+0 zsKJ)~7)MtESxbzNwm`v{G|@@~wdq&|zgSg}TxaZcn9_H=n626=UZoQ4L38)@uqIN! zpib5K8v-)xVV~mwzM@ozd{wr%!hIsj^Tg&V@K1UCeb*BKjq8{gUt=hzB+iSMGGC+a z)LNBA^JxGOs<%g%gza|IMdYc1h)du){RHWFf+Zkst!2Kb+}M&RqpP}&zsgWpRwSHj zy`&4xuO=lKHej}FK%R8J$r`E+DQV%pKe+Z4=~$s%{a!7Nn?1rkZH!2zHv{>8I+#Oj zYNHB~DgLhq*C$y-P*EEy4OZ9LFLTsQ@-GW|H(boCy0dz={J@V+lG5d|$%q)MzWR5$ zrTYq|YFZN3-BhlNCmT0HN5StaGypqU6RtAHK6*%pj$TvJaxz_OAl9t>8Pc;0YamDN z|Ld+LedkMM;kqb1+i}M=OZk+7Dbto;yBH;erqqFsVm79Lis$uA`>gLu`-~?Y-+0;9 z5BsVZ@Et){!7`>j%x%!^%74~5=vhml?+WFo|CjQmd^x3%L|6DK{VM)D*c@BvH+`s$ zBLerhJDA$RF!ivp`z3u(z6S^&=+jN{tapa*XX4=|1J1{^1$AR;H?Zyll|34VGf#=A z!}d8iUNN-{`Sjigk@rL`hjb(V*$!%vd;ais=|yNs*zB{crh{2Mc;sAv-EXR6i~YrQ zTfB23kHx)K`?)T&oF2<=8<%9-F3_@t<+KD-E87h2p z{;@I{iIl=k$W^+oKgfFsl0>0Pz1|-=?^2HApibAhh<4(-F+_>cQHjlXfQ!A`PL8OL zv*d%^*pSURfAH=k1%A$Xz7#%lHqK7!MDmWC-+$J(E)Usw`c24wi1t|aCIAjsgqLgn z`J{$bv0DckBme+EBLD#9e}#GM9L!zx4c&F^9Bf_8jsAh!(RExOhx0j6JSAWvpz#yX zxhA%@F^|t?WRqru%#t}N9I(11xmiK+eW3Fz}n8kwx6-2P>?J-2Pj1_dFD~j2<91y#>)2~2DKPis9(G(Lj8iUG@;s7TJ zd5;_V{8j7#gd2f>+%3n6>WUOK!CX6PJBBWB7O|JezU!JWdctsu06ujfH#hxwJ2C|R z8X(GT0;nZ@4Yb$ScI#HiPM;XpEl+ekkhLd>Y%3m|Aq3_|700k3AOgD!!Hv*Nj zhrdOnzY2hXl)$+_><;4~<>X0zjSN(5S~$fqWcvPwPdMOAJW@IVk(TEYLkO`OJs@$_tD-uqO?%Rgr8;^JEPX90nBnJBF19^6Jf%nlpkFcNc!dR`HE)5^!i z`yNib-PYrz>zfQ2Z~OTj&6JJp_W2&O-EOJt`bCB})3s*reBf#6Xi6PvH#k8p6P=pj zdNvatbM_=X>~|5RPd|||x%TcrD32YtMoa{FVw4}*$imWyh?E+BfoFkU0JEa(2@V&^mu6w12)ClEXj{r?MVr!RLJ0T&c)xrd z9i6?c<+{%Cb#$L*-(2_c{p3#Ey>HJ!Y5JnkKS8SvhN{P!$EF&^mNVlgaR+bQ^{~Wv zfwthbo3&prn|X2dy!SL=LYlz{=a|lpo5^m zr1cnHOb&=2BCw-V!K2RaFUNYhF#BJ8+fSmbY!RGGGo}Jhs<=ULl3!Oi(bV%8r?0Wk zGgjYR;dwHM7QkN4W4HC$!ZCdS3L@Zv^n(f$hZ*UQ4$|b;%USsQ;ZD?^jnWg<5Q1l~ z67N23VXWBze{VMJU-efUC{=tJ?)lJ$ZVdU7{ia33@N*3Og(pr`3g7q}CMe{i++?nL zM`9Rh0C;X{-Ikb%T(;1lS}R)3#2W=^zJH(pd2(*HE{Ul{N>MkJ1_M3se3~L&29^r; zOLNg?u#3(G@1i@G)G))6zD(bapwn`N>ymP^?GU#jU}UQWpL>`q+|~a~ePtsG`$9l2 z^(L;2N3_1I0kw*rpMnTUf+?SV=|s6)eIG0&gis+}Sf@`yr&VpVp@)=O?g?XMuvB;s zTewFh2%9k$GnAY~*SIr{>@%sa_{(~>*r;T>WuyryIGm2XU_@SFfumS3HNvHdf+?(@ zMJ{xHeK&uqQVF4N<#cH&Vh$=v95T4?&lok%=-BZTz! z@NiiBO!QMm(f6wQc?>iJk<~b%at=ee}JcT&2>F|Z`ys$%rFr4M* z+Ewi7S|ZNX@iSKR;DaJ6@$Y5Xqq%Mk@1_TIXlu+l<6A>C99+c4XD%|ra0^KnrMU1ADUeOwoY->ki_xM%-HL(g8Q^Gw*f)62CzC1@ z7LjQF8({Ylpj8fUrW=+XP6OMPtj{d`ZumyqRmsMdh4@6{bT%(DQ7Uvz6UL`eN5LeS zwItKz&|t!0H#$C>7`ue&%SYI73HX3iqI<)&WA>aRwKb}!OU*qpnbd~!6On{t>jDrmz^Wr%(kFfhgZHwB^_$^ zq?oh(lY2Qa3*suI7N%QWcS*6~SJ2dz8? z@ZynYxu2tlzf(D0ipLCCaiogb!m?c~EFY06#fgun8=M*q&5?M@?lkj_gBbL)Yb1Zs zCs~{PZtb>mUh|#lf|zQ(!qY6^WqBx#QjA#_xlYS#3;GbTaSLhtV;#Fgo@VX({LQK<^I`{r7$PH9{dAYggR)JX2wBV2)WKxr05prFFeA^2+aVjPq}lN}x~IPGDKOgfW4h!Rdg228?sjYCaF${W)t!8Z8m z7-EH{qI8WL7}9p!3CYHYF+%#t2vw|x6DTD#>(YhJlyfU`OkyH+#A<-H!c?wZm+zh) zL09RiY&*7HaH%CWZac?<=Sv0sC&k?ss-TS4(mS>PVCkp{J412H{3LagD_(s*aI zH4AF^>aT^%tLjB3u>T{!avr2DFyXXg^2vCBxaz5%a?UM}o{rh2#sj4K(So}RvXUfS zXpPeKpHP4J!;ln zN5s^a6zXGVo~KY&043xh+Ru#ERsxqY!n<3`$doWp>kQJ<@5C(SuW2tMonBhEQa^&O z2N6!Z%OGkU)hW;Oa4fW(%q*b4X?)=Q>najh{}sG4HMTK!(08(R_@_z|4a5w8e1HJ} zAR+!m9iG1n{;wVuN6P=+mHI?g3J{nOR#++{1gQBy#Q8|bml_f=s#mr@96Nl2+I6i< z48h>X(=;W~=wuoGv^#c_$MJa5+WkpXkwrdTK*b)I1P$WRDz!ORq83HqI#Ss=x>2#B zA0bx>^E#38^a(|2nH9}kBjmFLt3Vn8reI=k|EFfao${KAYHNnQA2$(>CR=Nkf>(76;e@@eQd0 zr1&){zz!)OU)5a$}gn6XV&8tT{Dm^+qtTF;|dJxOrR!gd9!dOfLvl`hKM}`i$pw=+4=>_1m=t(Dn7WT zPVaM6jky^Q zp?E=QZ@eV+{`QvD^NLX;rfkEU0cYkTqMKJC=^%R>w+Y#Y4{;IfT~WU>8aCivgRpuk zeuBSN6Waz;Zwfh(27&n>c};U-7ePna1}o|Wj_yvvzK>m!7Y=kM6>!7xG!vFr@hv_~ z%}qD=nEAQSoVi+ZZ7;MnpmnSfYy`}z1w=UJtv{IA(p)M<3GUeXvU=cJ47f zZ=W%BUUY$KpIsxIK_x8zMAnWvw72>A%RReoUwDI>HP)j$EN0=wB$yJ+X}Qt;@dP~=;F z{sN=QN7|++E3j{-l@G@k4~`Wr7(p7{LGK|#(7O{8EuURvanN8VN5A;z@FUnqSA?&y z9B41y&ZdXGy-sO<7CGtPAypEB?Solr6$0b|V^MOghq(1ltRJ_Z&fS_)h`c2YD)Ll9 zf4z4huLtkZ{0{EP$rf4iu1W&(oMCNBX5s0pm+Ocsf);K|LLFAdp=S)R^Vd)2<|b_z z<}mifyPOZz51b`pPlXTL-s!ue?2%D=(?qawOHo74U4!6^TEuz|C=mC=7A!t$>~ ztZi+Ltc+>?@$3N2f3#Elr=_n*3=K985&*!L2mnC)|JSelKYUJOWNhGUN^9Xbq+#v2 z(Teb0t?OrR8m&aFD9)L-Ip&;&m-I35+4vRM*y!Wq%Lj{gHSjC z8Vp@(_eTDf8N$>!dQ8h8F%v6QaM&A$8ST+y8huo(l@_-CVNn(m|H11W zdBEe(`d#^Zoi@_o-H?&5CS@QGuTY806xa9WqG|csf&(r50;;14T~K8{g5sbesz_X(NTY`)g^|Bxh2BIe;tyG?-*_+3*|2uq3QXAwNU~ z#)Vt8iDo&;s6Hca{Np_X0D>ZXs2)_>vOu1yL8k$8~XZGx3`hEu`?z7Kw0 z`R=Gv+5`3jN3gtfZ}1}=xqywM8i26ju~e&kYaY7J9-q}ZbV?APF^(RqBWj8A*^sgn zt|V?$4gIq$kP8yqEE}c(bb&8aS;s6{>r@)55R4cd&NW7D?&CZVs-M?$)zbRd5pg-A z=Pfu8wt>!KQC}75)xM}4Vk6ReL$r)#j)dTDq$H-{rTW^C4)Tk2ruRkwU_TZ|hTSYwCJ#ZL{a=W$qh*ivh6s7?g)ZkMG_RH(~O*V|BS=#CI0xwd1p4qcDM zFLF3`kj#HoyGfbGdDl`j%!>ij`-foNG}EofP7fDfB!+6+5r!=qgB?TN|O;|ko)_VoMXGDC!NylC$>bILsK{5IF^_b8Lf z@@rc0Eq)Y3%Q$OS;kwIBJT0nIGA9YQ3KpbfUj7 zf6E^LDyVWyS~Im9`Y$RSKBssI#WEUMv&xppBOytsZAcR86+a6LjdH0Aakk>m!`Ul9 zbs`W5y~e*R2l%4AU)7bc1)s?#FcRRsLHW_s4acc*AGP=e{oAfa+-qR~s@w>a#ooB$ zOheD2M1{0j4QH=@FES%|AyAOT;SRsrL?C9 zF;!DVx@k>QJH6c$v-!qxwW`qNrh)9++n_xbL#>4x{a&yEmK1giM?2THgxLfVPzD7Y zK@vz4eXFl%7WrHl@aE7%Rx8(X z-Ui-z@(UJsHb`mMz1FCl-it&LK2(vSsr|wOQ89$oC`0}fPOV<=i!n7U_CQWQgipQR zkxPH#c-9!)(cUBTt#K?@>oSnO*O>56*x?4scYpJ+x#hKX5yUPoJ3Gs87bZ{o{?Pg-vx z#s2S-bqopiyQ*{*Z4CM1=xA$58&L=mD5DavD=bisJm7X$S*E454|e(fyq(MWl}cvM z>9S&dIT{dciXSn#XE>Ga>)%JOKAdv)vLCV|`VO~s zyxj08X!6<*AEZ|`u1T*L!^w{$2p2*lZncqT(B?e4k_GhMVTY;WA~Wc~Mjmq>dB;=S z>Ce^3OD!mNO#))@Xlc2;1%PyzDL8CvLap}e9yyN83AX-V0bN3LJYlPu@Sc=bxER%L z;w@vjOxbr-Fenc)D0*w#uUs+2CB?-F8;5ojB69QQW95VFBB>S3aE zUG45e*V=)cRwa5$i85_k)id@1{hp@JQ*+~kGIFn6dwE!S*O_odTHhR0)z?UoVl#cF z=Ux3NHjG$xYVfp%hVl{JVq>{o)Z*ihmri4>QaD2kCk|rXGHX^mxkOe|z4`Mke({+A z+p@6^>H0wsiZhEWbjfSNv8~d<;P5$rN1r2^0cBh=C~zcwzCf@quT8E5%#Y%Zg>P@=`$ z%tyG@4m(rh^HmqK{i$a}?~BXn_V%)pL%Z$e_JdgPh+rZCH;>Ezc3ZDr@{pXS(IWj55_OmYSK=D8?7xCUa*Gs*V7|j zKc~D*Mw`A{Gy`vz=u@K|XVg_lr5LFW%2Ekh z+_lN~uxiutUBqynyjSfPZw69NYy&8(e+^ACpgg$1B6Y+t`gBc`M*XJDpw7r?8`oR* znl4PA2I$fB6P}2lfZR-%Fzs(fzQFh(Zi;PFY$xBpc{@8>NH|zXNGK5{Ba<=*l{h@N zH9weEciQO~U|S}&^L82ln$wILA-l4-=8linj8C|w&B&xE4jL4apL&NM z>gs$K0#1-(7-42Q2&+Q|lYnpD9Qd3;DP#)oemPsQ8&DFwFT;|Ej-l?hgwS40yHHDp zop1;dCM&9y`A)Z%X_&i&gV8-Z}dl9Z50di)DsIOCgl9` za&i5O`-<(HbdwckxMwiXoZuVxRRSh!ah7H7N1@C3*_ixH8x8lV@`cK)$1=z_j$?CU z!iJ^XluL&bnbr>=ubdA&=X?5wkptPa5t$vdhaK#M0%>(S4f3X5c3ehbn*`qz zSU)CwOJJM^I95BH8EM~7aTXw*_3fdQj8GD=HXr+QDhU$J3Gl?s^eaa5Hu6?6Ri-39 zvcKWxBFzHnKsd2wC!sTQa$oplxcTL8wbQiud;%cIWG)R2^#}p9(g2|Y-fNoLaDfON zXOX&W9c&NXB4rLmzqG*h`)WMw-@YkS?O&(wRq58^R?^j^tX;gpGfh43h^8w?xC1Mt zg-C3PlguD7f`kl$EX|0N72wxv-C*54D>E-H^ItqHSs>Yi4^x$^B4jblUxaI~*0|FQ zeT*ukRK3CnedMODgf)e_tmi%q7g_?!_YnIv{GN?~>{+F(LOAweeNcl;fc-PKCg^dY z#$Q^cGsez)fZyqTGCrnDPM#81KO)2^2XqC(G#Q@q(L@@NAxEd9RApZX8sQ znka}Sq!D8sEh%^q6Z97LW0BFSNO||;&j82^I|gBBwl!ss#)?H{P9HDXgSX8jeE1HM zy8=XXHqD88-pGO8j)xI^#E0O&eQX#=5<_!Cg$PFSaI2fhYaf(?#n_hV$cfv}UU%8g zP}?>O`zH*L;?PF3V+n*9R5p@vAw0S(0sMi^USMMWv^s=@*ASUJ@0!xld&(Ie=|&@X z{{9^_4sNFI`RW_4?#J*b$+Zi2BysusZ0xE1jtAdRCn~A+t)w1iyvvyPM5l>LI2^8f zZ{tVc^;lPI@Jl57QE^lNh2r)Ffw#FwU~WW!`>X=ul0q-AI*=V&CPsVOBUC1sW80V!lCrzXWI zz$k0L?vWuZ{V6~wrzmA6CdEO|qJp6SLH8)1>cf+A`|I@Dlc57G+W`Lc|HJ=3P153@ zn=IW^6dH*@0ssIJ0RT|{Ur7Has)7~qZ&bzERAOS4oVX2l+jxoALVFkMLSx!0Q`7K4 zo1d6ie;T1XfSI`T(~d3LE;NK+yyMi?*az?p+S zB9vu&#d`7vwL5O;ki!Gt-V*glBX#<`m@w+ZP*mY|=%w%pgth_$b&KGekd%P0BR$l* zDg$*yR(hh{J1ok*n-M==y-3D`lgLfq!0@UFO4u<{qfuNIx%u|RG-_m^gc1b=^a zERj+@;ypx{Yq#c0Lc*!Q%`H6O2IVac!6Ozkv^vt;0-b>NRMrEUum>$-ZeS(x`=CE% z_x^=edFLmD>b(>(a5G~D7fC&!IbR63TadS~vWw@)p`@IEjRszAoMX{>oPbHkdN{Xh zn3eTFX$_$9zG#&XqQ^~(&xxHHrVpKyh?FiRt-|~1&mh&a^L!|3ig>~zF;nADnUI5& zugOK6=5qBqTy`E&rWa3vpBx@f=M@ntHMF$d9)Ii^2oLPP>g*5co{A?9(0AO6zsr z+H?J@$41zG?RW6Z$<{lP*F1j@4;D@_1lLY8zqc~9nT!{;FaG?@+4T67ia=WxGPDUjznWD5RXr=9RP1-daXV&`b_Z3-_F@1)lukLyW>!pjw!Rb zT$tK5<_`Potf;}F3{sMAaN2*>nZQNXZ}dJeZL_LNrT%6iv)m5#2m?BRPuXq;2s)i? zz-(-><*l6@MY4K{7E}Qi5hf%=wDPQ(H!qle2KSjWX@#FSbyU30?heT1BkC# ziA6u9&ijSDZI4nXuGU1ZRygiK>aEwXR6*>PFg4e8>u{(6-Gv?j=ht~eDM)TY^&kY5bY@uLS5#TJ$v~PPM+n zjICuQnd3D%?pv08exA}VJEpp93i1TZA*xpV6G}m3L%;&rb>+h|$U)$FS#65VWhlzU zo@h>Og%69Adv)t#YEbf7b+8cL&M4Y_!zAn?t0=h~dID06IIx@VfSu%}maVzQTl(*+ zN_jVXe#^t z(W^wkcxxlico<^B)ybU5)!w@*V?K!plqms6r~*<D!MjDV#o3TVt%{`Npqx`l5mq0>HH1^cCxFa}pvf_tI?Vz`cWe>ZKv^Q| zx;<@>xeRvA1i2kJnOeOE#)HrZRO$4VjB=TI%bm(01?t3}W^@uX?F1?$Mp4?;W^6O5 ze-RX$3BDah4epJ#nW#eRc8C6_=#2IpnIrG`s%G23O6<>1R-j1e%D2P`zFMTHdCBv# zQ3<>EAcp1T9#WC*TBTcs(?dJ$vXtOvRdGnpq+wI_KslS&4ijM0IHp%tr~AioGX9K7 zuP@q@AKRM6SStdI5$3lfzb^-2Cn zSv!*|7DpQ^O&YFM%lZZ9!5pAeQO?frT3Q{%Zx1Y?7hm4qFWz^np3 z7p&P1`KScWY?o&`h3U1SF=WIaSFxSi`Rlg)@L>L~U#$w?afO#Sm0sI^<8MDsxdu7U zInnZ*hNfKf(4QVMN7hzQ&vX#vA$UmHagfar6Cby7G3XUl2mgzUP_7Wu^M|FWu;3rD z!Q;gCkarQ4bKy;_Hu;405EZg(Ygy^}#1<#XZ9k0AUR8IYyP}K`JDwnH2tC>BAlIQT zm@*-{$FAAY>zq!o{}|d${Z6ncFi-{|8WHSMs=#K(>iju+A3j4u49yoGa(5+}A;p!| zmCH`}qA^EEz(jxM$k1*`bdZ`hl~c?m&HFvezDTS4j2k3myU!cbQ#YQ>_& z-zQ23ghLk7_Z7;e=wt~=>5_8{ZB)?XQwcEGcPr>EovjdH1D>`WHks#`GS4T*bg$;{UW!U zFr506*)#p3!7EK(6*kk~Se|M#bE)rT_ZfBYH!h-z5j3c$;5q}-&7vA_H(okzu}T32 zEuOe&cFW8~?gSfIt>xy=JAc`JfOyLXDFpln!RX((2rH}xpr$43$ja76!b!CGb^#9Z zx>>h`W2aF!r6k0u-?JdoA6Ts`Vz}4R~e^lZ1yd zsI&IL{6BPJy;rvpS|6r_Ds83SK0=%Aurs!QzU(7)e)JA^{xzB-{6FC_Yhx$mw~3S<+^57pnOo*~|K_IcMxeg4%Y0y3ZQUnTJvn5Vis}d?mH&q4Jzu zlvlw2eUg%YO%f$l~v+3o}7NH;0%9dt9&x=)X!#_BI)g~Zouj-3g|7zJoe*8D+iuOkdD z-y7OqiAKWlTyK9MsyKXoDFj>u>U{rI@{x8`I11*`#ON}<;YNKaD0Tg5fJ8X*1ZYe{ zQy@F`%xTjEebTHuS_AawIy#06Si?nV?LE6}@6A8c=tvSA8^#(6+eMlub}rdCrerYW zs+7RPA)Fy}Yh+;kCEfXG_t_?%v^U)AN$n>&ZtSzrrK^y(H zi2m4BX;j}uWp9b5vO3!}r$Tol1EZftXj&Su^W5#Wk+5!C{5^BCz)Mx#1r7Np>ZZ7$ zZ;z{-{Hb>Knd(*aiPz`8(JTr22WTq_(2%b9kFse9WAoA-mb{Qkl{Mk*F07h|u$onP z6`Q{%X=CF!DuG3TC4VD(5I%Ji6(=Hid0u6Fssax)08C%dYYt^GReUB<)hJZuLZS&q zCV~1XL?Mp5k5Kq3vKz=81_%l3nhjSCMREEU3d{$vhP&@o!*)z^ zUR_}%$Rk~89T8g!gG;osmm_%8k~!b%&!1Jie@vF;a1}lx2L%AoM*L5$79EY9oXl-Z z9sic#-le)DyCL@L&x|euyqL@{;;ScEvuX}ZGhzsGkf+%vBbw(`ox1I(s+GV~kDrgJ zbr}Qj6VaMeH-hI$uZJnNj*F}Y-2`&;ClC54Hz+_fh(|vCbzi7nA&8SwSoqcv7=g;q zNN%8_Jq?PSKe&QMQV#PMLvN0%XSJessCAFEwU`JBD5)3=Za|Jnej~(YkM0)CK9dmX zSbFm}2#h3qeVc@{9a8V5j<{gXnY3cs(KmaDBo?H*te(i50aVv{QV8gCEw=Lz-folj zR)axDcB&4((89fwb|f(X9BVAx1u|zCywnbfzM{E}pyo`5X_j(fQ5V0qI3N^^G1k46 zU(0#%S|{a+lH_O*{N$aPXhFCMjVQp<*z5ZaVRS_o=-6Hq(IfG8FZ38OB1_;)4y_1< zRlJ6Q!bie(1Eo;RNvASHPtHOT9_Wx6U#*>3(s_S*x1vjr40Ld{wx;z0*nlUToqm2> z(EDwCj9pD_)k52aB%^Bh((Hq|`-uIv~4N5z#SdK zS9iPX2Vg~tuMb^VBGr_EXH@n`=`PXZ*}`f zGSbeYDmex)<+LU1A|qo)RnV0=8;lY=DEfpkT9#nVtrLra(5qmxqPm)pmug^SuiZn^S)N!Z7Wk*D|@a>yFkCyh+^? zN{GLtwdG9*8pXW*wpdN7__{3ESwfxuRQLUA@lyK3ABn5UTFDZiUTwn8Hi;oN|B=KZ z{=9VO3{I4huf(ik6FZ0~$N!ESn3z_wx1F(6x zu6)ny-SsRupPcW^?ITn5>6f?R*o=6-_aX}abV&-z{0&@Vq>9XQIYOmvl=_s!ECHDOEQg@3-Zk&U*@oUoxHAyLB93^`VvTYg*R7}o+w zt(c_WJI5U_5hO`!ub*x_PZfx-(PVG!U+2rpjGClA)^2fJYo5;UDEnC+L$b!&K_m~W zcuEL*hRrCD`?&7jXf@v7wdU-AqhdBfLs}?NE#U}JOLI80>jEa8)vaxtiM;S~(jT|L^S7-`p{WH*cwE+pdctd!MLk3CCFx8rW{Mc-0y&#Nx~Q zL#$D*S6BAo>aiYRxN?)~w|w1r-bCVv3ADTG^Z;ag&hVW4VIb>4oybQSq1O&aJQi^1 zo$<$j_JDI4BdC(7ct||R&@x5AoNV%&(J*~|`jxzlDr%qEu@lD{fj$RO+l;R?z>(-- zbCb3wTDy!=DCM`8MqY)`FrJ?VT3nAF#}JxY0|~gJOnERoSG##=JaA^<1dOI-KR_H= zk%mkGBRsA==11V^p-Afv#uOrm>%DKM?daPrqGuAMg0l-W16$cjamVImX0YgsGaLL{ zz$B~#UlevBN$}2V&=R;x~Cn`y!}?Iw5*_2bw~Eq@eP>I|FGq(^%C>F5o}Nd z^mI*4o)3#3Zlq_z+3uyuYDVv?31fFVZwx>+$J{>1ZNlNSwl}>WMvK&FeVkVW2~Awq zq~4ecwq%Awoq!FDf_CLkhZRVFp$arvgABnu<|M!Qh9BZt)?$^5j}IP=(vgR>#|z`N zNR^70-K>8=m5fZ2Kzg}TUz{hL)_o?`MId$EUSV%+^+Z$QJ}P0?0jU7Gz`I)QV>Au> zZh&=~l}KM!JTnohB=qffiYwkO6O$|be*GXT=h$7yyIPEJ`9rm1*&E_69195f+vaeD zfQV#E5VKx3EMw>#%xJ2OviH!6lXY)JNqeaJUVc<;1kNv^V?)l-{wuBu@gu< z;Ov&mEr;P_;cNqSTRBa}2fk^H)ZiMVsk7cEDmg>f4Yvc#HA)f_kRwB!1+yE?aUhE` zyv}|4EtGaYciB}hiWu{V>LGp&@VkwgA?AirV^<^4C}_6Ibs78ld9BjZcA6MVc0viF z{;&n}c2G#=UeoQ*H<6pj^;Kae*;i%gs59|zk*?%>b% z?lHE-BURG#XS=nUG3XK>6;gqSt71|TnR})60wUj0mQ{la*9r<%L$| zhX!-Y1r*#tyF&FCDZB4)PBXUtMWe5{OJ`1Wy<>k+(u)7Ux64`w2coq%B&_d^g__l+E zYzc4^1L4RiQL{|cw!1|tAnKmeuXe(!B|{5~!+z3(XN}}Ob{c7aC;$|;N~Q#OwbLt% zrKLrLw1n-u>#y*-3ZNuy8O>Bf^OgG*Arn|uW?*fpb{vIe{;td9b41^(h()Yzg209M zc>#_nDSGXI`?~(ZGA^}R0Jy4JGc)OS@v`pz$haGb(lqOgo-f6cVG}w>HNnuXPu1j~ zTu!0>9H z@O5+l`THV|_7V>L1c!Bdgf8<3qO`d$2kTb_-Ijt^RV{o>(AV5M+W+-QoB!x{_D^nk zArCKJnn4#tkoR!)wz)_;xHH#9SjQj~UF|6BVss^$dA^}N?v z&GoTGX@a~2#NpI2I|`yp78Ox3B@IFJ;GgUy>iEPz4)i)#8zn6rGap|SaJO_dMFA3& zAm6&sl6sV{7E)tmwt1u)y2N9YgFJ>Q;$%v~zI08YyHdiM`gcGs#eM>2wQ3TgDzume z=zg=t2Go^O6cyUJy8|LAW_}hR0v!(DCU{yg#dcAcRdVz;s1m4lRM3lX{Iw!J`xeyt zbBJ&8eyR*%lzMup>aoo2(BvGp`T@)KFgMXDLc_G^SZdRt?suq@>uB93LtJwH*_NIq zReY{${)>K1td=&#CbTxTR7w7z0tdAgN^D9@nAah1Q(Md-PRs!x%oFqSyq+^=<*=sq z0W>LERY^ww4|`_li|A(|74k|r6_K;`X2{dCSf*FD$!{NLyEKJVR6Kiyx>`L4Bxwb$C~?6Y@3@Evwr zozB*mEe~DdVx}wC% z8M`1<;7G%A`2*XX6xH>5%C(Q2wko*69Cc-OBi9~2`?Qh%t_%)&;{{hZlW)qE6yaw- zw-*%oFvjz#q9Zukx`XNJnTk%CqgR?=-G64@9wYsFaA0#yUax7-?epwqhXzWX;>qKR zOV=uS1-Ggtxi1996l@dPhS^MVrBZ zW3I%mc=6x6RzBk;ta#2kvQMwRC(n#epC@qpVXqv!cei6pZvBpRZj0r~>{gVz`y=93 zOz_6B0o}5Lx@6l`C&(h(U;MVwe)3W|xJ7Y1`r1Il!JiF1TI>~0_0cgxBR_ux-@M9M zn{{^7L(O%=N8%?bcz>0PAn!M3!Qt9PP>%fi+h2o1yoiAW&xv!t{yP&C+EM+#?)qlU z2WUaYc=pxqd<6^b@2%w6;xLjbK_#4C_5^7WitFe&U?ma@5^!?-ddvZ`S49`!HYI^%q6|h zzfi54@N9|PY#Fo7R?>QL$8JkX%UK91=gA273O!TZuNuI?wtLr8e_zv=cXg8sm_!}# zJIOX?2F_cytgFsC-N90`rfFwp;y_ZOsxv?9d;iXYG&7~J_{tU09CpE)eFhckKi zs(I-egv{&vjf?sgzvZeHzWgd>&xfwgn(7_D-$Z}UjSYWvwI*g1#AfTULvs(KX*S9aRmm|YB{u1NbHoWJ<-O@T-bCzrU0B(e{mRl4DZv&IMvA60&?ruejtgPLP<44>VPn zH(N=%pYq;N@NMDyaOHTXKIX*_i+f(FXW6;+s9uWf3BDTe&6Q>NM_ty=Pc7*uqm^`- z9WLRE$}EhRs2PXvT3?%`qOKcfM`8Yv}5AY4HcG*J-bAv$<_-mS(;Ch1rER={uRrn)P2v z<*)18O8R-Uent4|u4h+!1rObuV`s%=?ZaEkQOhB8uGr+>7Q)knMa~XZbFKRlq+8i_ zIp3UHqGMgozwhdKi^OvuwXgsDx$(mKG!3f?X}ed8TCCGyL#O~Fw)?o!o7Zx7!RY( zyZsl~8}sEJ{L=rUJ@sa)={HM`68;C9-^WYwiv;yFz2!-N{FKYaIhdr~RyUe8?|ww+ z>us&BBhKg2mR?Y9llso0YNy{=@#Dvq+}q9e#?ixPWV<!4qx7)pyU+#F0l9lv}r?2-msJ@9`Ve5EZKP*AV zlX>M!R_~93^Sg3)a8+J;`SM}^?MID1-+O0O+7vr6h7wLhx-C)JcOkFw<2G)$IrlAe zD#H@$RUCJ+w^bBqx#($z?sIorEAlSJcBrcGkTTP=(YBqI0|QlQBkGUx^PFsW_-j%{ zHTP{b8E9!-vxVXCnj^dCw`#q-8g)8r>yB27g0C#+UCI@5JBQNU=aYD2wv!@UU&nCS)jk~#jlXU^bw1no1-G0lKWozSp3)_P1a!cBDfqTRcW$~v~>h)-hBJu z>E5!GDx>UU`1;OV$E{oZaPLdnB+FkNaIGmc3Ao;ou=1tw@J6#1aY-xtOpyaTIR|&! z*c7-s#*@EYHu?RY-*|y#Z~l#RgWDSBjk7Fh1*v}*X=WT&Yke- z>#T_5abb7;D{k%jnrK!&K6v}<8?#Ft=9N~)kDGWsB^=c4d)tj3jLdqpf@i4LDT>3z zBU~77+xF%0*6+{PrgTRfy#A?d6{tWUT!p$zrX2;(7L7@4CzU zcjVZ-ML5JY3=gpRc99DG7U+!~dUkT(8WHxmY^xNpQ2Ei#4L(EZOA_O*mp-X*d+V|x zx63K0YV5e;I|~PatClQL^BpqY_qw@+EHiR$$hBJ1Dc(OPZcDWI?aynNHQcvUcx+QI ze|fmNt}3Rzwkz~NtjC_4A09mJ_b6_-*}|r*E~v0&yj_L=$v&ZQs~>DW%Iss0M-X9T zduYY)J0Og#0yBJ7YHk^2qgz5`*nd7b(aAPtGK9=`f4Z7~N%_vCn0)!bGn>}(8!ok5 zdeCNDozIl?rqi^kd$KV`6-qw&EHQafxG@@FN>xADCGUEb4)-Rq)K}LkoTqmog z#gdmQ`ogO>jCZWs{3z)Ad7hUJY76Hde#Z6SX+q%=N&H;Z{1 ztW(m@#W%d(ZaSpy&bnsdA?8wtvaRZ-*E{^b{@SFU;9s+?dhx#8!N9?|lR-uPf=ka| z{9eVAdBQT)w=H;gl8F=I!HaE+3HAV$jN4nj+U&OF2wrjmxv`uU)yp($2chT=V(HghJ1(<*Mlp+ppEG-x1LE{B!ET!&}{AY@%a^ z1@<0p&>l!#%Y4uEbNu*C^VbQgE8g?G-?Eu?j_KhrryQ^J(mc(brTr(woW%EEc`k6Q zi*#9go!i+k>jN)L#6m>g3A+E@?DgSdNCJx);Y>u_s~am#7M<$7FnqP2n7yC)^+eQe z8xv`lyg1<_?m=g|n!c|6$+qe!|Ju8ABWf&*4EEpR+i;mz@z|@~#Ka;^*F4z|75RBZ zk*1Gx-QtT*JRZ~da{T+NHh~ka;}7-uKAvS^sjA=M_E9>(_LApwJ<^&R8z0CGb#tsV zxDw4heBx}Zw6S+iSY3?iM=y5&3#y{;7{;r1K8)>`1v2+Q=H6{HQT?=^a_lp7GAZfkMXZ4J;SF_IzsZ zSoC>Qv8!Q=?i=R0iadP=e$V5rUYearlMj(BSO3gn)Z3z$_r&O~pV}-%XQ}vAyE~MU zw>~|~uu#^>`(E;+EzWD$ORxEeEap0v6jd_9<0J30S12%P{VG3T8avMoG8EaL^ktB} zVKu;76t%rgLaDn?UiQZP)oS~#FNewda&c5TZNDe)Qo?cjPI1nPpgzve-%N!X6oF~j zO_;_DnOfON)A+j2E%u`lv!Y(WSyF(kjC?@I^~7xg#&{*U6;J#eRbM3cb_ENPS#Mca za-4n;s_PkZ(m!L#kk@Xtc`c+mwshAvo97D3#cZ6X6G9I0#fW;O^jZht6wQYRL)8=R zw##i-Vmm$Dx_+am9lj*ZF4*t7*fma3Q~C;YdTkCg~Si9J9pN# z+N{D;zAe&U&(7i7D*XAzg%8!Q?e*`fcF7*t#nA7Vv3qrH_;$t=x4>WT59PG-*FTP9 ztmAwn-Ci7j@X)U{wJoEaKbUV?d5K2W$us&Ey41z?n6w$aSn*!=;kz*LPJZXM?u5it zV)N?m`OQ^(sy=T{`B?37@Vmm%4<_waH`=cc8@0#ZJ>F6&vNQeuK-?-dp|vI-U+>J> zv+8K)56^F9$3y+UZvVlQ^<^KsaA5Wd zd6q=wCuW1DcvjzSZ!Rtq@KNc#b92>w-vhS_uAO3KcFzCQv}vP$_I0h^g0yWJUXqba zQeyZb-uZ9*Bf^rD0N^H*vRT0jyy-#!#KxzH88@~ zsra$T*fqX7RS)avs~mR0n;PBi#`*{N_7e7~4X`ZdOjB-VUDj<-C8`>z^c?-Zd{WVx2X4^mak;T?gwguTJO76`C&Y zDBfCAA+%1sMsFp)sdbM}Z+N?M`@^6H0mrNB(+}8wTeZ@-Cb_I|SF+ZDXC+FRvM>9F zS8+UlT<>*#wqT}Nc2(u-%q^Qk{#S)$QMv@XG*?M35hW)ws zxMw6w^aOg=#4)nO&tVu1Zk6V49MZeu{7C(7$(N2Q@$Xy=49sWhUq4-Xx1=!0*}3yX z=Zl*z&M!-i4401$d6X*_zxZ-0oNVcKPs5}1K^aGN%XNc(nXeVUk90b)#7Ht{8Q5FT zV&G>)&nI&H^L^Y12e-+o8(DES;6}}xi4Qh`OKySx=KphJMVuV`M(>cI&=4|#G_hc1 zI`MO1;vc~&lldN)7SJHV-KxV<0lcms*W_~QDJ^EtLc2dSFx-zA>OM9cE=p!{`TZ1Qrx1)m z@F9jFYXof7~&UBn1=deb*a`N(5DwLPCi_nqDGoxqfXa6|8|aX&?6~`lW%IkRnoD! z_RAggE=L)pO0nnwL={ptONx0Qks0*&Kw!>dFrw%xRN{X{oW6KGu;O{HhOq*HM$`6P zc;zIc+)W6k7@59|S=#$><8Tkua5za=QEJfv@WauOxWxC%#mB&C;5ZvOpx_BG9ElJb zLWzJXcgskGul+I{&U!Zzk>U?S*jSpF+BurS#w1#`GB*uAo=l$VH*K{_!vH4e03V_s zF$^C_Ci(?W98pP8&ySNwQmR13{AQXw@^Y$Fi5Q8f<0qxMaxiuGW?+NU>|F9N>;rnR zD7`MKiZA^#s0|$OR}Qe+5Y42IJaz5g6B?11(yB0c$;^&plkXjfCzB_hVZux1TAV_< z03sBR<&)EesgmudllLR4Ty znOlJwiqVXg!IXY?88e@n1$BH$y8RQhgEFun9hma!RdmC#8jmon6nn0q3i9$J2I2h( z6jLSb+?tD(K;sXf=g7h|ZkQf~(P$)K%3ZrQEt96fNWo~oG0+gk0u|YB<$6iNA7e3u z71^K;6OhtS{#-$;GQ?o&Gc-&q&Bu#E^SX=4BYr^ZBkXXOUlFHIlNBE7N5cEiR1sdo zA8${KMYCZ@&pyHJ{>H!rKJy}HFba1t0WsR|Qkb&UEtuG7whJj8`Z?__6vaw1Bb_+Y zeY(I{?H1k}oF1SG@eT`6(!OAf73f(S4NB~8l@6p=i zunR!nF3@FUVEQiUo{odjRNx`3=$q+~G|glo4CYE3hGHVIq>RBdP~NAYy!x>6reorv zc)5uSXjKGU_kDfS$)aW!&Aj`DbwIyL0S-g~rh79c9!8T`0#nuLGZr*8a}YndXYF@T z-J(Ekb(qSTbaAno!hD$SeM9IIG<+DP-`Jbs8ear7eZ~YI;49+9hN)99nt>=xEv~QB zfi#Uk0*11ng+eib(b2G*>R@zT&w?DHc3_~PWEsG(=?i%IN2$x9*7;)0?hEdL`7Tx9n_h5fHF>02^&e?AwHBz z0(ZBr?@*H9C4~q0I4x&J9-w>9bVxcqfH)6L7)n;)O{{5jA}H@Q3J>6kiAQMwlNZqE z0Sx)3lSM5JU>d1^yc4i>MUWm~8z$b2Jir+dENE(zf36=g-cLzz+dv_*|Nkk0Vw5-k*p{|I*>25kc+ zJ-~zvpGGjyC@o`Rxh-AcQ@Kmb!I-J$B2pqXz>~e^+8MgkL@k!4_YLQX~JgYGlWfPa_RIL9vF!zCUIiy zL|{C$(44|&oWu@AvyA_)qR(d}SQ9!Q0K7(N; zWVJ#VH3=K@(Ya3Vj`SN-Zh|`o3U7E=Osf4ujEP;F;um z&eITSnu;Wh#k!gn3&lv>&-B@LfWmTv#?gfp)*K6t(mXIdxqvGkvvwLu)J$TLxz)ld zfX)$vuMnt+yMhIW(HP*1HR`-Dkg1u0Nyd#4$aySao;;{6e~tg>Ih=33Onw+9$k7NZ1*uUQSA3I<7i_FsD#I$5^P|VAecl4mWm_$dmVlKkS7^~ zWNLeXh6y^#q$r+A%U79RoR}OH4a)t3mB3ftNw?J*P^Su^nvD^O z(O?u{3h&CtNT+5jVs8^Yp~;aPFcvMC;t%LW&&*I{&r*Hx^Y?HBcnXkZPM=W?(0G8t zQ1G-+GcpwKLK;*$4J8*74xtUHlQKJB ztIr~WnbK2Wqsw73m0B>#oXVn+Y4#v^-v9k$Di0WZD90#^JkcWbyuZW~>XaGf{pUQV z4x}^hZ$%4*GAQ-1X}G$9k}6W<{dZxYp*<0!Jv)SJtCF49zr#jE31}-Dvvj*b@p+h$dH-naQ1p=Y&sFs0{jYzdDV17So3)kMa})@u z6Gi6zSwCTh&M5Ei@D($kT4+1C>JZ~E)V%+3`r%lOM*>!gkss*h37nE&2q_A6srD6J z2eC4s_8=2-Y+61_n}*SR;L)7YFWO+5_5&a8$XJmmK7|oyd(IowfIX-ID_9L&rh|&& zTmHF>zQKDtj)A6JYQAPqe(n1mpd_9g$dILx4k|_?Qi7?SGaI`AYQAUedz;H|&=_hI z4`@EmfR1iPlkfFD`{;2hA4J$XEXbGq&Dmg*@B#QpS{1* z6mq!NuN=%{D`H`qFJb44EK9y;y1b$GeZ7lEwl@)P6 z=27TFAZ;Rof}wFrvlR9O0gkQ^{Mk@NoT(6!0}2#|4-8a{3<^YIMy^}bJ_ML!tjJ1! zCyK;O?rwpmjIz3t$Ue}a*%u&{8J0v+Fg~(?@A^@>7>4n}dv6F2op$(yFIMeCy?^oq zUlocC30=h{y8!}hdxeApP9vT>e_nCZ#iK-#gN*k&wmkFp=nI(LB4qqdJS)aTt8C7 zAqf(G18_isKuZIdhB4D&Cf96w28H;92NFCdoI$WR!84FZ4x890o8W_19SN!&va^6q z1TZ6Ck24F!EQ~t7A*ph72t0njNStHg(4m} zqbMDf8WJ8B8cu0I3!drxYzJ*|hX=VSOz*TDiak2%o3?VFpb4i?RdFol#c9xWQf4FH zXt2RRBN2i@0})6Q>wYKx39Yeo!wN)mfsDl2$RXN17rP8Ja?vMq-7esyzKbK59I56{ zN2VTPKFEK5L zC{ElO6T8uSZNFdnsEEIQW1WDe#hpXMXe?He0V zVUwFnp?hp7!jS6Sf6V|?!Dfoh6Mo!91>${zh{2wJ4(kJ+DtH4L_Q^7$Qa&){37&V_NC=^IrQc8H&3OR~ikTg0P@9LQi+(+Qfe#EJMWHo& zFTY@;42V^EwUL`Urhla#uTl&93@c^qkAoQXqAT*v#9xez(`kqvi$IyuUi}EO(DA$z>q{RYD6LlP#YgjNKWDcRc0xM%-yI+zz9%)Mc)REp-W(ZP+}x(9u4V# z-#OyvGw5*}12WN(MR_yP8}iw~e#lCYKA$g}I19v&4DdLmBJP|51;i&LA{dI&70H_@ zK$|U;xITg#KjVKF&e5 z*AZ(Nv{5L26a+0)zcK??%(g zx?b2g3qUO9A=7TzZZOc)xy~q*C;rPKqCf@Ns=@PRz)yR_+YCKDV`5Uv)C=w8!i*fJ zgvhY_9ZZc@*qWkjM*H#e7Or2Q9QXK5i{OtBqflzS+sOASP{9wakt=lCsY50@ zBNY1l>DgpOU&6#Te@ObvD=V$eLit;MWU$ebM3qk27^r-xiwXC0;2!~gs4#NI)Ul5$ z|Gyk$NGLR;qpG~_7moz!2}SB$WQt)tm3GxkSt=F$V$~Fp#h`o3vLgfUFGr}?4RmrC zkxULJ_|U8%NC?Ys5v^7rq<{_Cyc>^E6+-q8iSP^!ArqnM@r?A0qDGgF|8jK?=sZFc z)xSTJDt+Q7l!5ste~LDm+1$1#egGaCnm53+p8mPitDknif!Mn>=k{oVYDr~5Cex1R z(QaBO*FzP(dN0A!6rjymkae=KfGV0q*ceVEfi?y6ituUlmRjVy={PX|`#Q+{McG-j zAp{l+q6{RH)Mk&j1Nne@Ru9=pj+LTOQRf0w>4Eu?)qzK|93|SSqa?6ASE|jUv}4b8}h{ir<0;rSvwB`>UbtuUL=| z7hm6j@z6G6rxhOu-Gd>b!ijWjV4hBSGjaoSN`x8=(L@a~`EW!5Zr2L`1qc+io@XJ* zbpUjWZD0!T0jnj6rWuN$@p}ayf>*d7V*hTWDlRZp zObL}&|3mdb?*{9oy%dVTH&~~&dhs;VCqgmv31Ob?@ys#AW`-cDvs7oj^~K>F_?dA37k;3FYJ7;KWt!g0XkR?T zj}rK3XlP9Qt)!|9|9kR-Q&v?{RZ-EON|kO3DN!Usb%9 zrnjoHvag!DvahnYx~2v}*;iAY&W3>+SY2J6TKg-jEmwoLzlxHYI%t0-+UWoN&;R4? zzuVriK~{d@WkO}Y1-R3nT~@G2!giZ#tjX}moFc; zw1mEBX^q=1A2&0DzU%0WTWXA(YmMvajhktYn`n%i>OlW)tPTCt*B>|38aL8`ewye_ ze9;~^&>lC^9XHg0z8LF6e~k3T4RoNNhPvYh;8%Lk&&g|`@00(oH*t&J-^+BMpGG== zZh8|oteOy2wN7elnmCe`>~?3f2o6zi79hl~;>Cj}%YnaIqb!~taB zk{N=C3=E(|K>+~~7?C)Dk}pV5Knao&0~t|3a*#NZ89)$_Fl2G{y}Gr!Z+Gu*?XK@` zmH+Nj-PP6K*H!(m?|i>=ei-o$B{dBl{juW=j7-dI zoLt;|0)j%qq7stQGO{o@0;#Ny(mbz?v9P{mWAEhR=HVR}92y>-}THE_0q^7ZNXeUR-XlHn21ClO(hq36k8>D$(0Xs&pRLvr#th50`&Ph8jkRsE6wfqyangZ|>bpQ7*lhk^b&{0D}EfBFA2^rQbk91Mg6 z+Jd1t2oefGDk#99UyT9b5D18aEzZ^!48(m4yZ_!d{)GR)KoI=j@*nhD{r8Li{_pi4 z^53`SM)c7OHvoWY=T6u0*Z)YO4;Tbftkk z+PCXL?dn|8XSbySk)PF!aL>2ezXRvryTnZk$WF zMwr}q%O;=1WJ{_>t{jrd6BJ_#r48;j=|%JbPd##rm|P5&!&LzLfSZC)kB?dcsK!j$ zQ|`gjCz95J>yNKxrCV(&>rdfXj*=H%mbnF&;!jBlz(QcPEaX#Ng?acW=70 zl+TMj5aCqz;-96;{#2lOmoxSwwok&4_qR~Yi6q^Krgt-z!)z~5SSx80zv-v7uOjiZ z%117NB2zk{r~>EI{P$7p7E{F8eO{N3$i`9Ayp3J-UPBK()T1vg>_FIG2`1-7x-m=5 zwW~edhCkjXqOo?ieCqk06P@w}Xm(bO#Ql4ZTZ5#ohcewyy0>qrQfS|3c*b!)noDRrobj@Ii0}{(A6z!F{<>jLw2}Uj&L(DQi*u zW#7#-(Nt#_M@i`&6LOK_C}i7bXXA=G+o{h=H|`a_r<`LAZIpB0GJ7nrn@?c(1&lcLOxN)zo^4;+(fok=Xj^efFh$W{mAVReYa8UO4aKdTxC=s`g2}7 z?tOg5*i(B-H?EtWqEHY~rs%$I;;R*sx1b$&qHhIH8E?YU*J0gRZhGy} z=|(qI89P?r)jM%-2h`A(&>>UjE-F6F zJa#~Qa1EJlbuYc3(e{MPyno9PrI!#bK1IJ>PB9&-T_uvul6{^cB_X}9(F@Bm^GPGT z=7XFVQ<#pv&l(ul4UxeZ(SAvS#942U z#t1Ww7Wd%v0G6e1bvC8-ybTs+zL9^1W`gn=Y71_h`>7pG(@-oyr5>Lt%lnlryGZ$> zN~EEYqr6y2UISW2v|^y|hjUZL7$hHk+(^$-xJ0}#>bU+X%i80_5?V>ZReU}aR z!RFCYg@I zVmjg>$pz043@Olfgdl7kaS%H=%-#_Oh1fyUh<{tqHwjq>Z|n1{CIbpU|*^|zo%l40ft061Cy-V|D~V({g_B$t$w zta_!frm?EipMX&F&{Boaw>btI3A|I&#FGkw&&?s*USw4=&u)|}E_W_`44h4y0$u-dS~Uphx6p41+(!bqMn54YCto>#yY>mWFhlr_scIz zJC>Yia6)A8|KLz1u$HM_h&5K{+&%3U;bTz=uIeX#$}};090Yf{6dSj$6rmuKQg6Jr zV~~>_Szf*wmDl5+a;3FGtd#n8(?NuL>AC^yXVh=hUqY0z5DQfKSR8_Mi9;u2^x7S+ASSz%S&o;HAF9<^KV zK6K3zHOd+o$d+g6c-w8JQ}w*5q3laty4!n+wY`z@(lQ}Ap2Wn=W5;Mhj1@5rP~bpY zLk6{=;^`*NEX@l`>+}0B-WRr4IveUu$6AT%$^jOA+**pjpR_aC*5vg1yGf;WE87Px z5Dh#l1;edXz2;NyXB{Rp<#-ge(8h+&YaZQCw*6X#XCTE~x(?A8zjF80!>U{XWhrxK zm!pVN3j8e@qAVv1t)H#BFL-oHXM&#mK6eyWpy_?b8bcj&e3K9mrS&Agx3ci~Jt+WL zhKI4mR?^Q%9_1kAdD&eLqO=u~J8my>?^wWL!)k#Itx$Ml@(fF1q<7$CMXZbYqlb6W zY)tBMCl(IiFdnZldt`?#Mj;_BEI7#5sqP@;;aWXPDP?%!s%N-ja+>vd$}|@CboZ^; zHc!|tRZri&6Mn+|j*Fak-mQBu;>0OJG%{p+Zd2O5N#~_X@8e)2ly1RJ&(0|nM%8c^+ zh_;#XFDvN`1DMHyIxBU%rro*E8a-CcMwT@a+!+uG5e!SL&Ptg%fZ21{?Q*2bO-um3bU0b+M zowB+6xeoTZZ#lHqYRLNDbcI|sdv6@NR0zlKwIAl~$>fYxUZMip!(;Fo1a9%Ryc2^3 z)#^F2nOF6$TVI&ISKEEJ{DO1a2!BYb|h zU~hQFW+EmZ3mu!XzCNti%=5eUczIRVHs5qt4Xhz#VYj4dGkrC5Btowr|6s}S3BzK^ z=D|T;ku@2cFAlxHFY>HJ;`K7y!cw2-cfjG@T`% z@jM79h2}5iuDXqxWkXB(rS`w{Gjh+zJti!>Bu*BYAupKi=d191RF5Mp`c?_E@^t1P zHkfri->g=TdSqKxqgPwqi0&~}qsh`0Fz#_>mhq#->-$1MOvNAthvyte8_Mc9+V}PIy@jraHa; zcXV$lbZRk+sROdj^;_~cK`##}lO+9w$gx`n45gWmBEucD_L?j#4=d+l$C+b!*M=%J zGvprSSiC5fjWs8vPbG2TIh~}u$CpX~ev;m9t^l*Fk{5lc`1ftSYS*52D;ovgDw>MS zuYC0M!MxyY(Jy6yUko^`%`P7sR)>^3n+v;1D8V*(q+NIdGXosC`OyNvNYx$+*FD45h2t^fZ-3 zOQo>@AMzqUp}54IOp5a4$V}aWu32aM5*GEB%^vm6M{{QvHizGSGT_)>Chkq#)iTcL z(cMgloB6n1@&4_A^j>Tvm>!$SqvSz!BrR9;M^ZoNl3tTdQ?5ifj>g+wl!Ttgqs*i} z+>j;jpHWFd(J_VdG{j|9_}^&Q@b9?<;=i9Xv+{CbjfeQTwYG0CyLxQr!F9l}K@0)y z#oewHOCWbf)~I;7b}0p2Wa?KCh@=D@AvlNzs-&42?>Qx2*<#rf+Iky=<)viRamhZq zaMxP^l5$SPNa&e-_fJQ$M6pn}!y}p(bzDOmiNcQ=FiEKhsE)|h*_Ca~S^0S#geL#1 z+PsG$manaIX)YD_oHcmI9kV)r?c{*JhPI%q_?PKL^T_I2|1YsC>t#fEC$sBq_?5we z1g)}<^3pm~@gIvq4z4804HD=WbCcNUQr`v2Us!%2tdgoy3+GpCUY{DJ_R2BO=z)is zaau6Vk>t}aM=UrNxyyY<1SW|jKq_bK6nU1t7yY)k3cps ziqvSMfJ4;1Uw#A7 z0@Ab2m+b~2f{lxN;0TT``wJ;lkw_f9d!p&CF41!ZozkT9;rAA7!yKK#WWwVpH5y0` z@%W(pYq%vxtt7rg0o&Kv9E9t5A$rUh-orL`=KE-rz!( zRuzR)ODosr{k94ouGQ>ALJ}v~Cl_^RvDZzA`z^O2-E7O2YHW+097qNDylrR}3w6$- zbl#s(YPU=GhKuDbe5m%!aSmgX=bu>yE}pIc)rYnN^CXSSa&ZY$A7o6jY;gkOsf@*9 z4?{W1X*r!fMHrx41yy$@{Ps?3E;zLeOLyf&3YeaZBJ-R^6v?XQfR~~TcHZm_VpZJE z-MPk9&?YRTCc;A-v$sgKmoa@;ExMf^{J?575eK{Q8e}zx+Hdhj4=*h_zItwR2I-eA zqcbvHLU$0VYoTc`rf4_J@!QSE!5{yHy}tmDD_GJ5QOS}87K6o%7BiE@l0_CXGc%*b zj24q+F*CEplEuu-%oe{>zW4TY@9fUZzW05-v+wI;Rryp^p3KOM$cR4@A`^JyAkznsrj)m5$BlO#sKCNOda}#k+HZ*^cSqo7Z-EMc>(;M(9fGXfP7+000wqX@#5&q$xlHgY za@;tr7`L5`kS^iPyocg-`S1_N4Ul;D1`8YP0d>F2l#DVKCQBK%NE7Ghku==73*nw? zalLi~&sHi1vh*yqLWkU7pNZD&ZGLY84(AlL9O4ArGXFd; z;8-!GruNWN4QE;?LKZ!wT$sR{{B7oS+6^)Z^i$HMtQ@U)n z0sHu}m@`EK;rj+|fKe% z)T!NVbLU;M^4}nJ=Z_Lft87D2Jrqn-ZXCbsBzxepbbPPlF9L93T{xHL!-HBz>nMQ+#HGil7^!6(V z(O#_NX21=P@jy&wKdWCCI_iJ#jILd!F}v};OUS_M<$)rtPLb;iF?VQfM98_c<9YPl zdp7;H-Dp1f#Rqeq$kSqz!(6=Lvq7_b%+f--MqpOfIk){j|7LKab14|hq5#G2(FFm4yNC1!3(Z1?HfA~n>EtHm zH%ZUVj$}G44R-!cQIf*%9Ij4+qCtg=0$B`Ayzb{@Xu~hvb#J6OTaM)^CyA-p@3MW# zrKMkp@(3AWJ+RD)e;}3PaYx?F7*M&uPbQf!OdF^0Pb_%sw=dX!wobA^Bd|mxx<_J8 z2?=(5a=M4UK+A#l49R1Nh}iL!JR}RpF>yA55mwRJ4>n`RMon&nTAfvtlcn!&;0$5j z_`T}E-=06AC?T9D8q8A7nP?SmOiW9WZnYR=S^)in5c!(K zJPjsfHPvJx4<_b&j>gK7KhF&l(noS_iO9J@`cWvzp7>cA+lb5Ec~;wsihd5bE#bB0EvQyY8~XjT4jEK z_A+@*wUeupBC!?-jzp10;Q68A86`d12* zL<7QTKYwUWD^9M?-bKlMK=10Rcbg1Mr-I&cy)J$5e=Ml-BKp*_c7#l0Nipk3SL22PYha_se z^}{A@5|1Ekdhq_Z$_i&#(bokd(ek+rxDT3C4Vcl9=@K-_MJ^&fUrIUk!!T_iw!K{D z4ytEf)OX4VxXW;O;n_AFPOzC@mRx`2#4P6-t~FkqeB7;W(OAJrkGCg$vlZGp+PznH zJG$Q@?|oVT^L`niQ&l1$lH$Nxe;>HCNv&)}H%@4JQc_GUzi&R@leweEoud$6 zKs{yl5b;n=wO*oXhwpB9_ z`D$u3d zs#TN~hc{A-;BoAyYO6~^bhK|g0`{NJOyJNDJS0|OE(kaY3&eifBsv?rF(>gpLZ6Tn z6k1!Be29nbaXJVnz{x6-C&dQ@cJb3Z2AWjDnW4GIyHt0Moef+i`_!_K-gIB(z0$jP zS@yp((zOsARPM3=!RJ=PmqcvC8N)oQ^Z!arIV5SRLYBMi#E{K(-v#mKin+9?3Vrno zEI7ItGdpXnMK60a9dDneGd)7F;$gwqnWB&Oa8)FUF7cpdS(}OJO`F;9jyx+WIUkn% ztVL#F69MM8Zw24wa;5quk&)cSdn@eZC(m`)J?+?6mL~~RFR9|o$1SE{Rf>M@VG5UH z`5L>f(RCe;fzF7;M1_`!zCvOj*f#nN^%|*)p#WE_b^o6GfZOXV?Jua+BRc8ogcp^c zOTTZI{wAj?*RUQ-XXeYk+Vkma zT3cOZI(wmMM-V5aFlgl|HHp6CW9bNcbp`X~7{j9YoWD?tlRI=HpfD8-OE;A+sww7G z#qyf_Ji>vT;yxs6>MNp7H~UF{_Uh>Z@$7z~%4kboOmzg}f^y=$1InqY!ADK(U{V48 z?c3f@DwJdP+6$ru;9WXkE?~p*GuwuCTyUmn5qG@&M}zJ7JSE!fWf23%<+ibyjmL2) znFNRN(PvNN*|cs^hU-qRCz4jCo)ffLIG7yZwn}DJ@o%v&iFJF+islPNyy4T;*${CZ zoReR`V>$1GAnEiMT9hF^AZ!LlqZ;iJO(7YOtkxI3bxDnzL31b+I+rS5x_2)hzy@4| z9}Z@rkovOMU1w@+9(2yYM2S9}?l{^u``)aO$=FG{9W&xVbDl$RZjdJHH@UI3M;#+r z^)3F9X8wNnQ7cY&jDM?lQ;vk4@zTuCt*pLXvbx$v#EpFIyXx~@mQR+>X~JMpoL#|j zi-sag&*^<5#`y`KLw9WR=b3K=>cx>eOg~vmu#{X*jgWs zkImS9%y{3Wxe8*hFXkIiHDK-Iq8-Bd=toGJ67C}NhxBCd`l$qu!mPP}sdLKN=~|Dd z6Wh)+V3h2EX4I~BE_7yzXK(vahCA7b?JNFAVY4o^Z_uo!wE8D8_FC79>TpLU>!NMg zn^j)EkUs2sEcted6D^57S^pk*s6&RNVmh+f_cZZs2A>tIh>otD*C(}Rs{szPMr*FZ z2k$2zSf=nuF~z+*I@xD@eJFl|LxhQGa1R`QoZi~`ppQ^A5oY(>3^~KqlUxBqRmdAU zz1ZSoFK5&E$WB`M>|#|M#DM{X711{y#qd_wUw!a4`KB|Nk?t z|Hywf6Ha3;CMF|BBYjp@CSw+M6IKpGHbYk6e-KKi`3$Kwtjj<{#g)g6{wABk27f zng7R9K#%-eo~-}JG~@s7ee~bG|NEQ&lRviq@bQ0?l66k^5fod-u)-g0PHMg;KaCCNc_w@4i`Q{%O z6cQE@85NV7mY$vSGryp)sJNt}wywURvAwgar*Cj{YAKoSt`W1WMP6?o z{?!cgq3^1&d?B2i*wXQo`lm5qrnoFUq}R*IU<@zv4vH?YCv`@H@zd4NE6T&7$COr> z!;(Y%j99eLIn#EU#Hxa`NL3hAt>&B(anS1fRTk&9ACr1^APx&L2n+y^28>^8Ejl=Cb8^S>LeM&cw%RtfV64e_G$2_-0kW;ea)@q zvX<7eA`Jc`q>T%Pm>7nO4Ol<}4T8fX|0AI1|9jx=e_j8R>tFU?pY?wO{Qr0T57S@#&-`EUAO2IWf5(5; z|HtwFf8#%J{TKiLGp_&0e*pCxvl(*e8=G)2a&d7o8FCsKbFwqB8t5}}vKts1voo`D z8Zzqt-vs9WWBkv-$jZU;ANkMB1lkh%U-;K@; zKre8xv0*1?#Fjh>y(kcpL(h=YrsiJg^^g`Jj& znURT$fsvDeiG_}liJOs~n~j6$pBD*GnuC!Ew}Ob+Kg$9>@sXH0IoWYDFaVsUcV(fs zbueXM;^G4GU}j)urUO#YIl9|8>ATU{IFkM=2N7dOLkIJ}v5AR5pY;uFot^kdNd8p? zYrB8T*2eLl%>*7-T|DuVA8F-fHlZ?Khxee$Ws(<&0u?XxLG;>LsCF!Kwb8Kn%KyY`yYn} z@sa$Ev(8{=V@g8wZw<*UY-?rf02B=5!t(FGmlPKM>R<~}p?oBc3gSXUlA^-wOkC{j zbj~xIAMx1o4hK8(kTqcZ$bR0~8 z^s;lBm@u=m|Lb`XTSI4%5P+WlM}IJ~H3ahbZ)9*7adC2SuyO*e#=%O*X2{Ay$Hi&P zM8{&F&(6Wg#${l@&iSw0ql7A#~v^8;Z)psx!GzDt;zaWPU|5xNY>bv}piT__? z=6_H8|EVbce@Fa3A2T!qh5Q8cEW_XGF#I>hF#I2R#_)g8UjOFw&|4SDGAO207 z8`}U`I{>=cG0+oq9LLe$L4l0ZRoBl-s!N=&EJ16*=5^roqInUa;qADFm6ELO_ciGp zLngJ0FTks9akXs`Jz=!KHA*aDp_PQ>-IO3VW=cO;&xC%;)sygO4Aw+y^X^KjJO3Nm zul9Z3XvHk9T`u0z+3li@7%pR)_HvKF?j%aJB#*Yb$u`7&YW%Fa8VDm;xuXm_ru$kj+q680lw zC;V+~G$b{dVZp%0z))$UQyaF^3B!4uQVo4g>eNs%&R4y+X8P$O_JYMf+4n&mpdB18 zN||~(=<4EUp6)hU)}jbO;#U835pH?~3V8HjNUj7nN>hwkwOu1xnp2YrG09Q&B zn3R7@6gYqJdoB8#;3JS=)$wG|bnvqLqBjS_;l1=nP@yXjuox7scw9GWK1L$a)!19b zEQRX@!C=}%-M==nw!arZRf>8k zs@Bqp=hwOB{5?4t>m4k{hz{LgXK6tzPu!kKSfPWSD(Do7u8*;L)kVbvU2mT9-4UT3 zlcl=fom~n#wKdwZ&RjqZr6(X!rFQdF%Vmp@KI#;sqb=Iz^om#32P%>iU~3YdIWd~A zg^kvT5g`Oc!Z~SS^xL-~{=ZUe2xPt!)K+Ut1O*T!=%u87sVCp6GHmzvNX8~a;xn+7 z?oO$Q`DCEX+R5biIScFidu@reheVXy$f8qP% zmAh#1aj!(#ktaAf4-lBuwu?|L0wD|fx2?33N{Y!sZ59()$CE+&A6jamQaWR&Y% z)lSY*mC@DZh1h0d`i_)x{%%_~Ecjm$EqAm?{Og0;mp%{8l-ahtxhi9YwUxY4CMsTE z6$2&>E;9~rB4&p<)M+ocMU}cF3BScE3nCc#A8H4djEWn;5@!; zN5!Rw)Be`6Gm{VrZCt20+^|qD`ohglPKl9)ioUGZJD7Uo z3&F&F5b)joJu%^bTYc$yE+IXfkH-q;2lOGPlYrqXag>N$Rn>YVgkgd53a#ILND8i- zH0X$1(fW9Sjh{Iqc|xmSm9^>~o*r8?;hay^5Be)V3bAm0CJOv&>AU{iE)zBW=R?qJ zqwJT3hn?@m=Q4>yx6%VVS$qh$sf5bPylzeP#_tX8Ze>3~Kf)Rt_N)-%;Iel(y=om7 z{E-ykP0hO0k^UMR)a?Tf=Hf4U2H)~BD41c47Amm6-yUA=+c>a&$@%bYp!Jfx>`zgR zf%^$&c815<%AzmE(GmwKG+KgS0@XvU)NG~E*`K|wX|6&aIot2^s&kXX8ZEB(l>nT* zGoM*z?szIWxjrfhY6<}FS{3x~^P3)K-x~HnJ&{%^y-3ZN9^Z(DXky5wv7GE^QmSWs zdO9CF78hg2K8tUfDVH;%9!jgeUe>1kZXJQr7+`*d*TJlE@6$))m~F&&O$>3#$(yBVM-TUS0*|ThbJUVr$myMr(Xu(cuY3=zoPa90 zE;eBia%_dM6s~!9wpo#%eFn2rjn$hx=?TC3sD<6$VliWYvgUllNb3fzhG%W&y9i~CA0o;T0yceQBgrcAmHfm6cdGj-2?&Ng)itYS}U-d?fKFE z93kaT$=wuwUyDn_u|2pSl#H5`5(>lKZij4rT#$g*TTlYIswxUV=+*l(A}~8~fCe*9 z_rs&HP5p{22nns!7RavhjIRxJ)+hE}rmNXw*`6Db8f=7Ix(-1=7aA~w&uI0eq~W0f z2YUl_so9NcQcQ34Jgo7u0ao9;Gm{yEu(yhaJ9hCix(SQj%8wu00#n?z6Nb9C0$7BE zI>x^b-5Z4jp2fO9p%Vv6q&*P>e5-v^lyC6g0~GW;_^pCjO?#VDy^WbfG*2`xkMQdo0D=$w5{1O$kxz2 zNa>?%m6#u`a!dKZx^4kZKu`kg40n57S>&*T-b91~RJ{EFV-|7k5Uwk{6)t;vJ5t=} z(A~=QaL{un(PIZ|TxnR!OCh^WGl!1Ra`((Vd0`fBlS>b^$ohBU%ln`HnC2F6V0I9U zq7nhBaP*vgfanb@Yb5K;)Jqi(33J;IYz>nwq04{nMb6@Q~K?o=nVOE;xcB{FI)qLK>*^BbN@Wt5**J23&%EZR(u!SFwn`gt0p;Aqwb-(&aNxyEV6=k3ul3NsL^&-fzOS3caZ51y?8b zvbkB-BhDd%dqyvVFxI$&HtDPnJSEmvkrC?wW*QM}ddv@5W|mQfe~SXD*tIyPqkVkz z3FC~@&r<>sLsfOv{+?R1;>G=Ti7m^^2S4)#?x7*-O51FH>@#b7#RCl6Xw280uhypS z=<<|zS3fQ5QaRlpsw}|30*JaDCZ2YUX)^6jXY2LQ;i`h3oer;_tlK%+C5+VbLV0CO z!Mq5@9kxr6xeMjTb4ulWk;Y$}H&MQDFAc{INgbL&69>{Cw#FX-GRnv=QH6Ii|4yUP z&d||WoEV_bQYu+uG9`T9!{X*qq-E*D?R9?Lods=k43c%LfD|`3^FN+f z+c^WHT;<|K+3IUsnUDDuE!6d68I|I^?w+8zG6qpw$5mtke_RBF8;8I7yw^T;MnsU@ z?)-Dpd*D25x**iGuO2LOQ@%|4I@SgZSgI3IP zh8U6~kt`jk0Q$rUe+L6a7%j9XG=pIV`_221hegLMdR@Stcp+?Wyu^+ zlNP5NdY{fX&BUI;=M2F2VgV-ukxmWi>gpt)Cje1EuD|8D`1Gv6+9P&ETE)^U`U@MO zD;`)AvqaU&jfVa=sVE(7XL#VDV37ytI*JJLfanz|XNystM8pjBgEBEXlay{SKfzeN z#m)Absae$zL@gwL8^InLTuZJ^V#bdLO7j6G2$9@>OhUr3S`)0RQqbQxgo7TV!%xc& zP-cdJ#M88LbGd(JveOYxj_CyOZsR-Hq$t^j`u?fr*3jJ0m{MxOE__I^rq9eUU_ao< z)Yv^Pz0QsYgTyN?rUg)a3WVU z9&@T0pB*09g=Lk@J=7O&r!AV0&Xy?o2+=>%V~3`%e7>8V_5<(0(rbi!>f~R+%gbN9 zA@NT~VPGF#$ERy`MPZ0(@DZlE!polZ6Ba#3@&ezjRD*2{6Lq(IJKfEXA$}CA9Gn&T z?UNcKH(;7vqMK7JLxD`F^qubmEQXzUj!(zZ+$+Dv(h&|$Qbl-Jd0svfn4jV|s$a)u zM@$z2#T6~t1$%?)Ir{b!xnCl{;HvEB0Vr4NhTY{uK=xj~=;z z#Os-ofZ4#HmL2~Y3A(N%!kO3EwQjbi5rTQCZ93p;Su#SdZf}EkL1*s$avc~4;PAY9 zL5>Cq6nE6gI>Zs9`u_crS;s>&IIs;ZpbpWi2)F6x7U9oNWn2uzfnPgR(6|rC>Rr-2 zJPia&%G9EH5LJz8)XX!p7|xF}giJlptd@6r+w>S1Ahb_k7G|oVD;faD6auvj_IcZ2 zldi{vg|5}g;2p#eX03@=1hSC0re+f9{$iZOb3M_U@rq#6&qHEj(N_Y3y7Ez~^AqX9 zQaZnhsllRcr+VkAAT9ODMQn-sOhCHU?$(E|c8&4ze@-E07OBnC7mxz(5Q|>i6XdJ1 z*Cm&T9Epfei_t^7>YJTxd6uwndYL@p4GjoiU7Y28pKda=CkMRpgvQT|D+1hKq&$;b zZo{6^aHr>cdlTiHM$L_J^+iKFB~TVcqzdV+9G~;FTj^u;&{$c;dENJRS_?T=9U5~H zR(ziivIW|eoX^=VV3GX82Dej52j(kUh~ z)XXed*>tv~nTy(Z<{9SwzN-Ltf_y~K+`R625!1_kGnW8SphR3@a#wTc?e?LrMK`Z9l9YA^{sa2imojqt9PB- zVgULQ1lR)DoSydfXGcYgoC>~(=mre2PqO2%F<*6FuDR+h*d4}@c(-<++f?nLH!YZr zuMC3IDB%0!;918UN5^{%V{`bm#}u&@eGxA&XD1iPE`<$y`VYqW`L8|XyBoshj5C#~ za$hO$f1_=^b?6ESJ2=x_^#+eh8Tk9tvNphiVL?agX&d_IxQWMBYA?<<-qm+-rM1G za{+5{-PC$dt?!Hhh6ik5e?<lafYX56L387qijkjQ+ztInCur4-0R&q;9r+wuN zA?W(pFhzkXBf_c1yr`qdkQ$~SXDg|$aZvJZRW?D`f21;y{J89`a!lM^Gf)njaP4bW zwl1^nf3K^C98Pz95}98+dK`ubW9DtUx#e3uO9*y`SO7Ed=V!qqy~y;z?7Hc=xBUr{ zEY-3>rv1yT+WO4gN;D6YYCLg5GD#8=#@)wX=sE2jo$j}eBAn5rI9vo?!^sho(pB)guA^>Hy1#(KXdwQJE&q#GU zO>RCA2Rh7B7nb<4fxi>0KByXVri8SUKr?Tg4I7cc75?$wv+N=C5@@&#NWVKIab z+$^QM+%f6Iqat}cc0U|f_7myQ(7GM=CxdHBqrS(@9{>GFX>ck0^s|C5p}a$Dv^I6x zg;2B6J~ej0vI~FY*6rc}VV$<~;cl5y*x@}GeXJgFV1w#+zGyS7_F+WW(N33B0J3GO zG|=VcdRH7^5ybmwDOaPr;#F)#ab2%vf5b_OQTtMJ1izZFcrc($7Zq;9S*?E^zoU04 z*xNoy%gm+bRke{+KCQ2T4A!>7-)#X{8(%96EjeMu9pU0b!l?U*2>cdv*1BR3Hp|>BWOZQG7vJb^?+*1^kW@JYgeEnd2UbgclH(pQwj|Pm@NB`m0efb zsf8&xHlm@yT=(x_=fss0k%)1`l7Bu!Xq?N)a&fJlkCiAn7B`Hu?boNBkkT2EoN;PN zzS3#hY76(CiNpKq5t>^!hYj7W4!w%udEf%R|R1&OUw(YVJ4oA@~IZK#sG&-k|wS0@=6t{P3fc4=<53P^Qz0M3jl{k zK-XnjH)|;6aqcYmaWq6@Fg=3DDK)g&7(B0cSyMoOm&8<9>v@d_Ex{4%2pa73H%&@4 zLS+?NLe^BT;s&&>?b22n^Jfk&RZU+u6+zFZ$dU@#H}tSNLRZ>~o$i^sT%>{m{84$T zTpxfBzJjHx>b8tzPVh*Qan|GH3Y+_tc+BZu)8tcEO+@mBHELR!^ofZKVUacF_AY?q zBaq+Oi`7Gs(3pFF7lmUUVc2`(hSx9{JA{DE{4n5~&bGhZa%M9QcbazMRZh`bQc9Em zWj*ot{v~Zo4l!5F%ZnfU)y>K64qT)>IC#0af_eV0^-k+BlA}LDqGUrW>yTidp&MnZ z_{(U0vE=1^23zCfJ5mmk-El@~!%rQtFZ=s`Vs>bC7_3b4d>(y<5j}o}>Els-)0)ab zD}8+G;rrt?Epm@VXEJ`^_nBFn`Z#~;e$p8?8JiA64m?Ku@aqNuxjx<6x1}6?V>?zw zNR{sRb^M%ZtzV-SD5#?YMQy!6O3b;Cf{d5pczQ5JWvqF!ad3d}#*a~&I1W^TLllke zx7Y_Ty$|CS^;^;45fLpe=5u4Va43C{BXXb0&U|l%zK8h`K5sseLv2eyCGs~#h9H}} zU%4_hZT}r7?X|{i_Ek`JC;X{@WCP&1RkW8gz`9{Y(ks4MXsHBFSO#I9b>TyU#&gMS z()A{tcHkb=mcE~&ySpGz|ZtC36v zy;QWF8P5KWPgmHrLYC$UQ+7d|h<6ZRKNTwV*aPN&M??#r@JX$k_;>Ky zF&(nBELZsZdPP2ONnLR0YBoip&OKIq!th+*VEdfz%TG@u5y&8Mz-egWX_TzuFQWB? zoMiO4{c5q~jM+%KbG47O1|z750y^ie%e+~}zrOI>RSBSFTQ z_}J)A4%oVLO6yTPQ2$El!ZBkjgkE^E7Z|ip9!4I((Q@|mxP)y|I=f4#sCgR|{n)AO zU{8AX_lUTLW+!Gl!BSYdsd~lLQ8E75jK?@SOr67s9}C$u#QbGtZdm`|&$5TE5a{6^Ipb}-W-gTgezrhf*T2#9YdwDrw+AO-zM8BT%`RpVn zSX;x{^COATVT>zP*In(i9cT4^gwWIJch!BFvBkT^yl|&zcxq59_p<$F_h*0hc&-of zz50RGlkI!Vvp+>8TY_4ZIViP@o@^+s=j}leZ^k3H^qG42=H$gbDY2k2ZS&*4eEb&p z@Rw$itxn~SNR?4ho_MZAO-=|%VVX}*pKR-XfIkQed(Rd8krcIZeKvRAZGVi5lWurw zS8=puXc*XVvphD~{rsi{e3R4}A}#=UosMZ9@Xs}4V@`qY?8XaLS7I=$cIHuhX`Y@2 z_MORdxbSQZI>$ANfdiVFTj`#ju+-Kt?!41?K~k^!BlU0Pw7Q75mHn=vRyyB!pfZv~ z#Rv!Rdp?R->e`|&XJRy1?mot$FfG5x`VA_VR*`W*k=_RE9afQ~aR%~0b!99N#r4U3 z%44gpPLBEP7wE-*nrr%+^`{dL(%oI>zNoEQi@p2tN6oXm2vdMAhVc`$Vf2@JKMUWA zVSnVe!wkjF0eoosVpPd|%52>b9>hT8k||g6+SPqgZBL4=3CryaF}{#fez-afcaZ&9 zeu<_W7O48@3J=x3B(#;oZKb0I)9nCL{k_nbZ8{0CY=T zQE14ziijwN`rV~rzyv1g+!g9%NbX-$-P9hH^fhgF8K?0E-m(d7H(v>kQ*(cKnKGX+ z`ch%yPF9&;8KYO*85Y{!c2nE)YZlO*f3p@9KP_!VP3Ww;UE+=MXn3EaM*Y$ZzEvxw ze7}YGF1g6hk9~!SDDZ2{TBxwz-xC@)xmcb8MR+HcVLT~CEv!Ck5{%9pEv3Xn;xO|mVL8V(q)rpD@T z_3~v>9^TAb{WA-d87kG93dVy*S0(_ld6Ib_0d3c%-K6DT-yFN9klZCxP;*5 zbium_lBKHd*x9UpEI>Yd4L^-o#)XH{m(nFH>#UiKZdqEk8}JiWkuWP<7?FwrIKLp{ zAzQq}sqUr9!-?ggu_#tGscNiRC?M{F9It2`s|VhNk^H3!2gsvCB|#=Xs;TQo!L5A* zosBq5j?}7lM#j5MY7lq_(9$ia;=&XRefSVUFmdheOjb9Fx$~a$2d!v}2P5Dj6=|7q z`w;-0G!s3wm>5kE0IgrD07#=|oBv15g+*T%r31~{+NPCdOt80bHt~KN@f~zUnJ?Ax ziG*oxc08i?UT9xNmzZueXQ6zx0#a#trEa&F00-*cej!jM*jaBrY8hV?LVD54xOmZF z2Vh!GoA&{o8}lXmtmtPc4V!BDR&NMm`V`sJ7ZB4Yx(pLP8u+cPkEH0F!8)ro` zqmKkH*ozO2qz!YkaZ^bW69LEo=DNiUt6~@<=$5s0vr$%c@m$Q@tbJ@m-NLPojbO*r z8B`6A1?+0h6;V=WLkkfYpTz7tM1yBwRpxHPbuWu->cre6D zV;7hKQjhfOX*PVS^Saui->d9CdrFE!-w9Ws(Aq)!InyWTz0AxsMGwCa^LMm(CMe1- zIm)q#TRw9}bYkqR2LT!8OXg=3h0M-O_n7Ig{GF++O+ALiC^~F%!eK2g6 zondaC0>+gNMd{4_qQppoZO3BGZ0UM>Li{PR6^RpYJ4*UEJ?-Lhk*{X{D|p#e%WLTw zyTXB`gB?2lqa|BfvBZgq8`0pzfi1xyz0wW7vbiS4Aq2{F-rn*-ry5*}r}Mb*3kfuV z$l-7w{7D_a^irkB)RfkLv*guGiH1wGuK5k~@VrAHB_*MLc_-qftK0hC71^q#CLy91 z56XfN58nEOiLt?_N^RgZXA054313A~P7Y7edYP2{QxOVC!{H`NQ~?<0d+-BCZ{KLzYo#MY%MKK?&Udye+7)&E+obNDQ~~$>PDn0)MJbeU8AE> zkKjRM?}HA*0XitMP#-?Gm{@AXcPZi&vvgR~+26Cr7Q6jS8b%Z+M38>Yve|m47Ddbc zpW0Fxq9VBo7*JDB+AHgF4NG#p{dI|76*qO*sujpkWzq4Bk9s_mMh#~WuDh}_lCjuahnwAohBmFmi+DIgT-iN!gQlFC_#ta>A9yo3lAlL zb|p#l>9)nUv{nxX1pL!8#P<#%;ybcZjrBxn*L2l6XB4N#kvhfU22rQR#kqA%N!Rq~ z6ckhqKLAaw#3@p$wc;KX zFYLz;`KV1`|Fd>ftKM;@vqi;S)s%bHn1++tUz7qW!qN^J+>gg$39=OENGggcTN21& zM|gbPKkITydnSFl149`s=~u&eU>eBYOEq2Oh);M^=vM?c6z}4$~Q2oovB>9$8mqddFnVt zpiWGjp>`m>Y$As3Vgcs2yZg&Klv;VH66i{#esX5fSG}6MT+% zG3M_;>>LLND{^f4>*pwm>U;OlCE%^|sjV%dEC__ZSuv>=;^M>;+7N5|P`jkj=E1na z0~TOa#=CujD{6^qghh)+JpU)J=)#QQMx)(E>^?dZ$5_wdF67yJ5 zRmT;HMH;K=D4z=<%;`lX7Y)K`%r*$Nr%9z!`xhn^-jAa`qS|N^2a($Q>~*pN)>14 ze616+aU3?y!1mn!&m!Z4MA#?0#uppcQR-K*KL`E%8USyFS(}LKgSykSx7cX zFVWd4^gF~$bXKOAja^mKfpVgDX2liVDmG}!mwg>wrs?LBO1zrap&9O4{TW1o{2Kr{ zywI@-#?Ygcm)FV5*^Dm3(+SzD=PSI+*XZqwS1)vMwG zd|yc7z=>`Qhm!+3Y@oq2(J-<&lqne0%R+g%M!M%A!C<)5{S$Ll#>5djE=ZoAXG#qX zsM-&m>^2VITpeP`w0+VT6)6UEV5Y3<`x|cVP@^f-R7;Xt;Xxt*Xl<>{jRUGg8BV7# zSa>q~0Xx$D8S1`@;Kxzu!2)H3WVkid6k(FOfPh}4D1=1;R(1fAaw${OXyc=`o+nAd zt`~mEdr8@bknJx zutmwkIfv&POLTa}*i1RhE|-I?b>mt-Ds3RLz2ti0iJ5<25DN^NNOygcVagzAdgSz@ zaZEO#|45!CXK#_oGx0?vO$Q!T;TYPy99ixEbnJYWV;`VwnptA+!Yf=7b=$mBH;pF3 z6!|pv^{_R+G8v0KUAw~xYyer+C90(iK6M2dAKA})HKe9fU@Gnjk(DF=NL;MxYkh`F z^jY}I>eqoVi@RxIA+BUdFHKDr&%OKgv$oU0?sEVyxDwe=s?L)j*2l(JaXIO!Ud`*` zJ<5qLepmqqKXXj`J2az$z^T$Uu1SRD^NH={Q{pRVlu+pmI=cDC>{u^8#5DRVIO4fg zzEoU*spnpiGNRnFV`{E*yVA?chrqW>qG_@zhu=)kB;xsz!>_NcnT>>eH!^~rPjoPE z+rsbdi#0p9CZ{O{B;M{uyj5M<-!T#tN>+_o;t3E?iqhur_RVmylI1T!RS_l%w`cZ| zA!bM}u<`CpeEMDrGGkJ@x=Pg*t7ijw84x@$h7bX1sQv*_P1}H_50NE!+Vtt&THtaN5jd*;7$U*OnEnd%-Xq{q0~@P6h$H zcb_o(p{V3aa7QC-wmy`>qU4-}|LxE3%Q+1C8372qEmqjM#G^q($wK|6wzUZa1_Itt zt*Bx0X#Lbd^x`t~&B_DW*!K27J`Ow^VzehQaqYWDWX1-GG6C?~L=L{Mx0h+?dK?6KUe7%Tqz2<&B3eeVd$7&<4-; z)i*Tpw;PMipyW6>0fvfzzbj5$3HWZP&pv~3aEkiZ*H*AE8`X0wDUeX9Y4Py|E>*(} zXlSB(M9!3GLku{_M26y}b~sQZ1oR;ijtV7n^AvW|w6;v8ga^R^`1xm@FlEi{W15XO z2{iRm!Vqg2mve6&{`&KUr1R{{AYVdhX=tUT<(b;$bQY35^t%hkaFA3cf5Y>d41Ri2 ztmrKzB*5TV68Q1nUSqKV*%ev(3yM^U-GH5BWn(G4BpdVx3+5p}TV$zFVJ>-iXM+27 z&ob%?Sl6gA54v=kuX{D056fEmpLTGCa!xJP;KkE!pu+<2XdhktTqaq9rsz(0qXo`A zQ!J-qHGllu@7SR)_5(k#>)PSJd{d#ZJ$C)GKwT)mwy1wy@tGbEDw`Igmfs`sZZ!Fc z`c}IbCcd;fl(d{~#P$&-p4N2_$Xc{;+Z3$-z5M#Sb2@ZHMQez!j%(lWwa1J~q;-Dx zv`w^Ix~XZ+O%m7aF45p3!H7X@`B}8{_sv=2)6IP;l>E8j!TuDmbJP-=YaMIU%rZu) zHv34g`vICam#lgrXPdr%c)G|`9>_Kq8xN*^`mRM!(wG>&Jw&MvJ*fFBIdsHv&1Lo_& z+Ikd0TrSR0jG! zS{dpG@tHiS{M`hR85$g<6s^X&7?x_&mVWHbr5838`w*L>s0u2p`C(;ru|#}lIfV~j z5^8*YytD5Q4mzXrZkKP*6)RI->G680Qzy>Jl)kUctzdu3?!(L$j@4QWXxjf1H;&^8 zk9ZmkJr;Hit755}-E)i+$lDQS@dg+TQ8;Lf%6B%>-HhfXN;>{LQ27XO^Nva-4=PCl zTJA7$$A;TpLS9~PeI}hSi!OLyXLpO4%YLb2fm@#)ZrbuWT<|~+C9VdK?)7>`<3GT= z;`#Aq$W;xuTCMjv(s5%nJ-NHxkh-yK1}5=8QAhEln>)BO{c4+7O`3w+)y6NI?*y$Q zlS9NnG7SpUGHN}q8N;pYu{b*=PKnuhj8|I_Yyvd6Epi(nH?3-J)|0IHkj9EVn2Q~M zw?*~!pXlm>q22H6kvze{dM_Wv0gvwyaD=p7ST9XT3erNjg7p)Ip2YgtPSyX&Bp+T) zkOU$ForW4^M6zhnVt3u_McQ0^0HIJNHHpg51@fjmJ_7f8xxOko6lZI3g~fIY@m*EG zH0)gUTv8xP?c((0)1jJ^haenV6=&cN2a0?ai4P{7(UWQzfd&zkwP)396Q^OhT?axz zTj)YC<6{ts&8F$vdz_3tVdjEFBQcDT>~#|H)tQAF{w!;3zmG3eit_~J-05G zFbqyBVsGxdQuPir@`GN##?RwBLqc$fXF_k2$hc8c>=bz<+PuL_=xL@oOQW zU`Z%MH@8lnQk5}dEes1N5hSp1rFgV=hM^xX^@V6^sxZ!W1Uyo_53^83W%5iG z6T{cSN7Lk96XiL!*xxNml!|GruP9={iboa#KMCd{-jaK8uiUlixOG|i2DWDhG+2ul z)Q=u0F>$JFD_@O#Es=VJ&)MM>vSpf^sTd!TCjg(**mpf}S{t)&Db=dqA6bY+_}7R2 zS9e)AHv(!gG6VaT62RYeYpW;sF;}{=Wgq*l@Ju2Rq7)Wb9XFmlmhFjPZ)#D+K*3mb z`8JwzyP_>QG+^s=Sq_^pzLv)LKr3{>aGsQC$RjCL>Z(#10CYXiL)t?$AkY)}Br&#?6} zhBPz+pXgCeWT7G_f1$>-Z{O^agdaW<2pNS3zAAzN4$l>6ncAVvJh(R@gO1CxaPi@G z1)NiF>7wJBH&q0hB*vw=^R9P_AsGComA|vbqF9~$!lPA<#wTBzA`U0d7LQvy)0wEZ z-yC8xsPE^uqjQQ2_c>Z!$1PdQ2tBgMk+APCwv?EjTIm3U@)FY!->Lpv);KQ{(Oysx z0kHISzK3p=Z8!FTzBeW3lQTDsXL6E!60SXJDZ|RY71en&xkHGxu|!WEcLbeL?qv*TOd5H^PX3#5=Kw~sAVkr{`zF1%B%NP zgKeu#?7B1{TaIekz#cP121N?HIJ2R!TAvi{bcs}kgv#4@GQN{>_Vp~$k^u4UYKmpH zgATO#^eH{Pim)E?U|$j|5R$h;vTOfD7*b0qSXw2Vk-@3*@a%OKD&b{R zrntwXmSaRe_L`K$q5nx#$gYY>kj$VxOBBEfmC>*kj96QX{K=OZ#i)|+SFL?Cw3|~P zMo1q!)EfLR$tV#H&NK5u7y{?~t&5EuIjcr`d*cx_$T~wz4kUZ42w>6*9la z6<}0t#E9eA94z%%p)2FLTcYfUG7=UT^O>=YH#~(gEDawcYutnvaH#D@hY&eRF2mGi0iYYU9ljH6r#-=*ID z+`09$LfhkZT&A7R-fF-Ofmu@8H*ONmx;*00W?I(!jmL9M(aQNw!s1cW>Xt1ldXv~( zzE#Czo8}t}AY;2!8@Rg@t(VI4$%T`@*#-UIGZKM@9PVsuG`0t_DpluKM;|qM z4~cVv=AT|psxElJV+LH}#I`atUPcZ)lrf+7nWI0R?H3jRAXt@c_Bsk9qQ|srN?+Y* zrkl06E~NZ*uCM=8D5VhA*UV}mvf8%`Y>YxJ*TkX~?63P2)oqm1frc`1{=H^&xAa&J zgUR(Ktem=1+V^9V?L(WZEY%B@EUeHYB35Hf!^~6$@@%CrkM1#PW zptsI=q7N1Mt)nb}FWRzPHy==JUN_rTGy8jD!rry4CjZNNkT)OU4@^_EGJeu}+u!`G zA93EVY@cogiJ=I6;$fAJ@O*M}H{C}ML>}(G_?B+7jZ+td60Rsc;6OK;C{M#5W7^#g zXiwg}l(9R|++f<7O__816j{6i-V1$1WI_8}5}!w8f0yDg`&{QBU{~0?TNI#2^gqs9 z6+%_?eCavJW063Ws**)ROqE^(&v9Wva3s#}_W(&d zN~w`^kjIf<>XG$jaSA1j)sDLICCGMRuDNMHS)FQV-363L%x4AhKy^h5CRh^w@ls9` z`QqtK>RI&o^zrXZJr04%(}}o49LZH49i~Z8pv!QZ_rjWioRYJ1V%_a+bw`AK8H|8{ zbFj3{kJ`~|4QKYuQ!Wxg^vK&C5E8I73nV?7Y_x?s1(a>4Ic)$%Y^C3xaWfFm9W3)Z#4b5 z>+VJdc%$lKhSgC2Re>-YQOlb&@To1|;d!g4E|>N*T@9xh&d4BZ7>2CnHbuOI?77;+j( zLSnXZshX})v|^fwhROKtw6KsfXjbMfN6!nhO z`3~Nf)=K!MN6f2>Y<|t@ayhNM(B1}Cu!)db#Xz`^ao>-Yo!}9M4#VHuNojqJU2c1j z2Ed}-Ko><&b|Kv0ymy+*t$8qz{Y%wXiB+ zecFDf!U0#Hof=Mk5KV?AFi)-hcA%LxlHVU!7k3V#yWXROPY*^B6!z*pa(HM>SeQ<& zQdH^278b7RGJd0uO{C--UOdr(MB@wYC}$zp$SW|;OCfAsx@#)F(l^%`DLWf z&lfhwhLe%Fc!8%da^Sv!XYAiz9A>CF6DCA~-Zl*Qo5c;_fL9>bl%4G%W>$pgif3hD zQ0JdJ*cbjO{X=B*z}gk!7%erC-yMk-Z=mlB%4Z3_3BqU|sLx1%8cOgNK?vQ7^#xL)Ngw3A#*u7ix6lvsr~k zeiuIUk7&SqNwhu7%e}vk!J)!0{&{h)>hK8ez``3iScW|R2G*_u;65zegQfb;cYM5_ zsv>CL#Z62UpB4I@c}2#deq5@RskpUnL;aEh3#!ouFVy{dPf?hWS0mb9(8^O?QaZg! zMk7U_K(^!fNbEpkU~BuLl)7??(F`bt8a1sb9w>@Y1f=o&+{{J5Lm3Pbe=38Cvxld( z6Ne!d_+$wIR?eBtM;1n|)G>>y>@iRXD^7Ky+(LQ_yefh=j>GC zocB$JUDh>&YzZ&uOzoty09tf-&znVa)hG+GZV$=DFC&pL zZ&rhU>N#O_(IzuP;usz9V@G4YW|W`JRpzy7XDE;>h!qZsX6ZmtEH}Oj^gK?6Ut3x|Xw4#c1#ks~m-4s+enp%(v48~Qb4NWS#U;l}5) zwn9~tiHAf{&+&zpXj5nBQoy(^R=paY2fm$rNnk2fCEyh|zZE-`dpX5RD2*FE5qETO zuZ&j$*yP-GrOu*s(PCFK?kQ>uka2#bOIq0O?yB7B_nb2R^;|wv6`;{96rsTOd&D&9 z4$zvQ*RK|j@}B1iH+e1_tUqjowRrOt@GA@i1O4HzZdjcVTgTL^9I;E#~7o646Yaa2(`lT6YQ>_?tqZ5Og= z7>7%>X`UV#dycSv$Mz+ZSJWhTKXUH@XNt~c2W*sPJrJCt`kSE4^bT=m)AmLx-;oSX3PpV>u5)@B*QU-R6G^X+eQpNy?GE_0OYvW`E)7nyk#Sns7P56F= z?QnshH)9Y68s~65Z8nv43yg<>aViq{Jo++3mAw)D&2mrllLk3Gb4gmi-Qu^@9Q~yO zKR*>9>k(FW7{iY%154-v#i0XY;`8=x_0HIP$Y4K$rpeWO)0nO;sqeEDs4#u(i!E~a z?wf|8(-MdYrP8nX0se%RACd&enbXePrqR1bp@IEWe~#w}+WS>`XK`{GRt`9sTan;k z+??9}LC8Xuh6ec5I3DjW12c2g#3HbDPH0CEVMk4CEb3X(2~a`f?>w(k(7T!@E z@x0D;eX7{ztLLkqJ@T6RLsoScJP8$CALrYLFDGT&_zPe{6<6=(L~N6vLEPH zt`-!O85~Lo=AzA{OQk}Z6o25k=Pt|Bvu8_xp;Hox_YvA8O83?|Zc|C{R>_YvXxEM6 z1`U0wFPDcrh5+>_-tj44mmBqR9La%L9K8H8Dw5a{F}PO0{k(0i*dV}We8jVjFJ~u~ zPiCR73YR`eL;79sU8$h~jW?wKCUGsc>!)ZEQx+vXCth`8V$t#!@9V{*7@I={^Y_c% zYk2sMcCLor%*!v)f^BZEE62_0w(Xhah=ly^&oOW1C2kV|5|UTAcu134_3$@P?7a)G z@%2$tf4u-Y-3EGboz;TX-5n}SFajy*&+{XT1`47%vZ&55d}UgX3v2L z5d;e6oEKrQXQxyL_sgz>qVt`Njh3NqgL$sy4-0+fXtaU!m3>QYcDf`#H)Xnv z>igejR{qS$jYiEtKtz+g@mnI6wbuv&mQbho++jGVi$z#ioey7MFpvcLp1406^}ADqoA|bk#`9vxXqX!`k~&l$s~+0++jz(9xAB2OY0FWn&REcVMLVb z3&&VG96?$NYk6Jf0d46W^Q{XX?nk5+0k$`~Sfy106&%$=Lj{H_7NR7Elp0l<`z(6u z?~Sq$qry<~M0>##Iy=JSZ#y$`uNrQ|c=~vKM+Dd?qkz!0w$U|O8~=RS%OZF!@%BU_ z3Vw~w#gOtcw3Xu(f-#4Jt{FFxmkZvx(tNXm4se$5oC?#?8_o+i*^&_WY*>Lf|d1=|Sk- zyhMToHCIjS9Fh6c3^% zor*|S*W%mNr=PN0r%~R+qbhNDJi?a($*#?DP1|-TJ7|ZB4Lzx)6{EYLRRxcC1&Nv{ zZ76mhAJjA+p+Ug`HW7P2N~4Ay*$wECGK-Sv-%e~@l0{sCJ_&=?LiMUO%E=Coc4+lP z_Top>rUUxb&9!^WcQYD-afBSLEKx-Imass^7or;%d_MO27pX%dgVq(&%D1NQe_-K; zi!HcFOM|VdN^B|Qu#BJ2-XP5H6X>r<3W%H2Yf`zUH{`p0ny_)Yoes9+xedg3jN{~h z`b75dzFT<%Sx4bmBl~_Mc{}Z~0?o5t{1BQ{ie#QXiH*eJ>jj_%GDT!BvSQJHM-5o= z64I&P5jpq|#O4mhU@~|jBl@`@(WmPX2TnB8HLjjff`Y_A5CtNW+*hi1esD#upb(`k zzT3Fw(nYe=5$RR`yG*uWD9rsI3s5=Y$uMd?baMG@vNOJW`Z^3#!o<^h#vv6Jc)R(2 zIkI2*2IkV_1QIn*)$-LY@zC2`uCB^h==n0;j|{&Y&B|${P^F*(+S{5s?9#Q+QQT2o zkyZ00^A`%KZH>ev%)rmED)zU@N8Z@49U{rj)G{Dbi4zlFO(&<``tV`&Vn!&{Mt=T0 z=GS#W!-I)Jaoge5+-iqEXkxp%cbcN^mjQZ^x*%^@y z*;`V1qtGE#dMuTJr1Q`m5BmlpWYx$ns9{@Jn7H;IewX=@NYpHd5%}$d+beQqF&YgC zbJojR$*OTSSX?z+puhwti=)U^^W5C@(?vY<@p8%|C*}^KSLd}{-L>ku2jXsd`76(_ zo=S@I*#1tv=OrvjLC0 z>KL@gQu=1oYA;aylkplqfb_9q{01zyzJvu=?*)fs_u%)4H1Y59WR=BEjJ1t6j!Gs= z_=;VueW{2DduragYyB~on7*y`caDVio@S zrPZqvX-Z3)4X0zy5g+4ZgBc(AvXq!Axp(7?{yxxktlzwSkel? zsK+H%|9NF|?e>f{nhb7pR`_*4>$>92f}0tYGP?%DaRVu|i;fIvTlM%hlLrj_DIIvI6jR^dzVUx5P`21AKlib zA|-#>oa;l)tN^C*un;HL5t9J#7CcZ<78+VD8A!WIbfI{)--~_scW!K+V*{ABtL)Y; zW($pjx9hq?;tJCOR?YX{-UA(liz^=fVnf>hwsPy|sBvcIp`kB30Dai8;DyAVGFvy= zV=x$katTkwp*-Ca&$OFOdIa`<`(}?uLrdq*Qz-V1Jh)fZU_;FJzJG6TqtA*&?BD~y zF;_ga)Q=cRF+9PRK~E2*_5+`jrQJhcSCW=(-mY&_D?yo&%zMU=Cx0Rl;A^)Z`H6%< z_wC)!4Gzu(y_elz530yQy$jh<8nl<5xVY@htM?F8<^v$86AA;v8>MwF;|IGlY_|2| zHD{opM*DLOXm#ZDYNp%i_&qDTRoThWjVTKTeb^1sS13CxOjU!bCJJ@h%@cX$TH)r# z2|gK;@-BRcRh^-%mts&B9kHpm!86OPFkBCwWdH)KN(*&A|MMs_5^W1G%^&7{7!O64 zOol|&8V!v$pBZx$Pv5n+_NWTGfg0e3q@OqYPL?O2c8JTqLUoY|G^-AwR}>W#;A z&6k_N%jxk64pV@ifp^QYw|d|eYA~g%YnnkW+ue6@j;G*6v-Wj}JWf6XmrV>N2ZR{A zAhQdtu$j~2`o6s391$lBJ@uDMbQ7*?4k&p{3RxLn3X zSc{F8ToxY2b>Z$@KO@{V;Io%IWPnl;9meO!6MZ~{h%haiFcfi&5UjHjliFvod+p9U zqLg|}p{B~0#=g6eYp#g62dFX1WerS1D`M3|mjh-f=>nsb>ZslBeU3cIyj>dDtqD+& zLN+G*jFl?;@{}J$5x>TDx%6<@7~7-Wc`-^8&*_j6;oNRI3&_^^AHk4fzQ}=RK`eu2 zHfILz;yHOsXNQe=*;5}^=RKu(c;@78o*?56%uX}!*Ln>kirQ*PK@qfUL4Ng5*mwaB z!Qh8S^EcPK70k0QU;10JOqQZ;eLkH{$Z#6tZEVUfJ`JLoTlGVN{ivuOAfi1!kPs+U z86BUuFp2kW4|K6(M6bSCquIH{`3dn(^W*F5uu*j$H4iJT01a7Q=!oLVSxIwY2q7AJ zugBJb#5y2PdnZemGFd9Mr`*Z0>04X(Cpyi0>T~`r2B7d&om!l4U*<2Wu$onWiUvPE zT4bj&->&|ReZiALDVzPA4O-lod;E+$=$W_D=BTZc3#o)6#qce#reC~0&m zK1QGYm;pPF!be`G1`wp7_U1YQ1t@FNRsjuGlSy@Lv#n-lJPw6KB){Uj(!yxVI%IP? z9%(xT4CtKfDzDs57)}@6+{zpGU4_Wvzg@iUe3#?bsd=_lT6zb@SX!k`Ls+jC=x<-} z3vf7dvO@+olv1@~NZG;gGy-mQ7I)?G1Ca#>v<_me;jTjOX@&{e)XRkM2%q1w038cz z-!^rH=M%uAw2V6@*D(4KVtPI|l+fvEF+Ahi#LW7tu^Ghk>eLJgVV`T+4ks?02==)YkdNyN85^4mRoN0YnrQYO$-L*9YN)g_@_KC zc(Gt<6$OV(HZ?B!_T8ofp)j@hd;GdqF=U5+G9+a`a^ju3}Ie)K}4^i=0*Wz%w)*p;es5~6>0t&4Ypcu*< zI0zaxwKOoeFAob_&F+me@2Y-{&vsoe4Z_rESbF&54hP959K)9=A`ah3zXhn=88Nnj{FA_6lY&$M-vQKwi~}Z`&Z{6idVO$B0FX<~w&8E8eDaXl|EJ z@4&$9kl3U2v?nZtYF$q`V=5jt(n%6uwOVe+oSoj+-d=p0cb%DEb+Hy;Cn0@#NgOva z>bQL>p1zy-h^7o0dy%7F#?UpJA1gaL`eIFp^PO}Lm7aNJTrQJ3NoDK<9FG74FG+Ig zY;YyD)%-9h%+L9!=hj>a-?x=HPr?jwRq0ZnwbmCsxQ7Kc0SZDHnYWD>Q8$-r5MlJ} za)60H;gZwQkt6ip@ubQKXKn@gq6SOE&{I|(Dt-C~A z%vVkOn)D~o_wylW z$2EsT52WQ~mUecg0@Zoy!TtG|ZrxrO75391yoIi#;bT$&w9BOOyKYUQqGlGR!%}A^ zdjZgVOkS>xUh67?vpQ(CFut|5x~!q7*VV1Mqt3JNTqHhg-E9OC^{@)R%i~U<=|Q(W zC|<0U{VHT>N$Iq}?Q$jcgfl;~X;AR#;IhNAN()5k(b0`=`+1=^dLdk;DE0GmVx#nz z1!qO4o6TK$5qz0bf2O0BRz5iAC2Z)Sz4Vy+2KsX>f_M^~`OF6xNVd1M){Vu1sY1NG z($Uhnlc&qo7o%&m`R2gq`HY8gzH}~Yj#Y06Kwj|CDAa;ZH6F$Refp-Nb}@;tL{u*K zN+0|>K|k{6tTcO=n`av31+HfZMnK?}n&hsFM096p8I@vxdZj~iNS-Q}{%EQ8E@8A3 z6fl4?%^)`v{_ctyPp9>gqF_$&!S}*u)^F&$SG%PO3e)+yZtbf*#UnHr*ai-Tbk!Oa zoqB7w)#IU>=5bReVSpFC95_D74 zfIc=BVIerX%!N~Uhgs@A_b8J)_i_)FxC*|~@=o1vDRkn36`|q$US_NP;;Ba)G49Ps z?LO5PqD}#wA-~228c+EjUFbmFg%7AcQU>Q^At@bQB{j5-S636@>rgLy417n2k|TZV z=y2)3-XD9d&97wmQ2kYP7~p#tEIdi!uu&hjg1dT}k_N%vabYG&0(Qz-x+RDurMKEc zY^#sG{w}A#uQg;E{vry+^$7Tzi<6gu40i_Jj3l3wq3Cz7*E*ta2WCf671tOr79Rk3 z&zIP}&jSd?KD)j@o9+Err32d$kCnBVxzWtPz?`i|Y{MYMg@Mi)>6>Tu#rwcQH%jco z^U6p>7&4aKD^wDq*bF?{ifWB=FI9D3-Gz$8#+zHQS!Y+u@6Il=RA*-6WS*X|3A4k! z-`AaC-P#I3K7<=60ua;c{HZu%$DOtIDZA13wZ-@_+cbM`A0`X#M}QhrHhppz0i+l~ zexboRt{TujNrBP|4KG`VVMz}m-1Xzy{Z~`R=e$+hBrUJI))tMB2u1Etv*UBhrN^gz zodmCV5;=wdKwFeu+^fpQ4G;fTf%DaABAE{u=YVo|zpDrfqcLR~JLayG51DszrTpN= zt5_k%<~nF}#Z@`^n*e|>Yyl8fQPSE-&9ux%e>AT#o}-84CrihQl|OjK(*z=4p?u&{ zMCC%h3*5Nblqh^*z=udWg8rt{U2AdZN_ z8z)M&PyC+_++MWr>2e9u zPC+5V*Jo$f?qp8$myh9tA$z-bzM14TerB|))_5=}W$U&Y__m5C(hvQfZH1rfFnyVl z(r3g)aDm*@)z?8`u>ouGA%m;Q#Cv#DM4F8S6qVb~1(14Gez!BnA2Q7Jj77zpXHQ9A z;YOKSkB&{AXJ(qtz!uw3uLVao9tZ20ss$>e!j@e@<34!cR{sWO5P8M#DzsRfy|uik zR{xTYfF>*De)S**9utCxg-?v*>G}0nayEWx>#>fCcnz|U*+^cXKV1Uq2V^0J)1uPR zwfU8%Jv+E&Apz!JL*`5z!ecP7RBFP#r^{G`ogwALJD0r4>DPg|Ly4HWUz5o&dTxjS zO93mx>3^I2-1dYRJDRO^V%L;KicN?<({<;xDbi71p4y&mrQw(tq=h(yQ91~k;HC*n zfv_|*@EwaCLTG}}0PTv1scWDWN92bld3kZvJP+bl10;t6=yT3BE zIo@T{L1>HXE8jiZ%AF4-jgR9&J5ZxhA?YJ;w%{TGRz{D1K;Y>N4_zD&$~!9A6?nav ztZtag4;AwFb~U)t{TndoAmRf+c4_mOdff|p|m9)pA5 z74Lw;<=9^~!vm%8RDcHkzTTJ;W}Ba$r^^ZJ?i|%01O7d#H#BiH8cRQs2raKBsvk<{LIwtx|3U!={O?b9a zAP=V|XqR0Um*->oH1)2K$n^DnC5!3H?k@JC?$iV*C_ko44`^QhncuC^V#4T4L9rb3 z!pO+QT-*E3RvxNdRvBvp`=8}(9o}|dbrvcziFdAL`tVzd5uk+IKB_;^;`vCw2Z@ee zJ<03uiHT=M0RfrVLRH%&-aNA|)}wSR+6wzS$Gcbe>Vu^H>#>e+X3rcK_ZLMco;zWz zElYs)+-R}-Qnkjwp!x78HDMX09TvhJv>y#1vpwS@>XM{kYlfX{xxxkDG{+9@cx&Wq znE`z^>)khdJ*OD~@%#)919nfi2e0YbW6;tEJv@|IK>v~85|}b{{Gb;lDMr6?rzrh+ zS^2tRP=6((62T}%pn!#jC4!hPv!+5LqyyyS6G##g6HC6Zta*L{J0k)LU}@?g+nJcF zGAhn0p!>$;xdt~bGxC_#&kjQNpVC1i;%Tj(`y8N|z|dED>?=?RUA`>--Ipe!xWoSB z)`sBvy!bs7W#A`usq@+9(5=Uxz&d`1LSP{lzxrT)+6%N<^0lq@vEV6Tgq z%XE#=!yHdxo@9PId>sOS_TMii>YbVwjjuSFy&;7**Nf)Gd}e(9YVjEI*Z+gR1=s35 z7Ja|WU-ZfI`{u39&Ok&mU+6I>NcoQqRY1b!jO4y&*xjG3FSR4d%l^vQWbLrUp^1j- zN~<8k&a{AO$Nbi$<~Gu5oG(WWjkPZEnV-e@XxUb<2IOnVx=^aY5Z7IHjoY3&U*K^- z$8w0Hh1jOEKD4&R$2+PWAlZF250SmGQ9o1!v|yRxVG*fAHObXZ7()8FX%mPD`oSEK zP_pCwd7u+V8gT{<5>B+R>0h}nQ&9S((R|-hbc~EAOfKZsJdap)?$P&Cw z=;00h$QQJbu>Gdzmd2as27sGt^68Ck$ct@T1|c>Y`mHWvF>x#* zW(m6Vt%qkkX!>ZN<2gJgl0a%Mpqt2R@8qx%DRz_wg@d27k_0qfJ-u`FlS?0E-y|ex zmo7Tee+mhnXXy(?h5|LFsz*1|V9Ff}Ex&|xSV1^>qVH(dOEQA}WnWVOIH(h1NmW%W$*ZQn07&r|FN2^a6=Xj@ zAy$N4T&wm&La`M}kj+vVNE-hrG_?(uw&}trT#asshh2NOX{Yb`6xmN8T()TO5u?ts z(DUMD1Mi9B&C|_3n;X!FWunV2!Qo} ze+i-8AQl0Y1Pb)iA0cwfN810RcVlDe5U|I>6bY4m7Q2)Y7o(xipW-X2IlH0tNLe4vpgLyxGhJ<5;~Mevw-6@`fncUA5-i=-#}Ck>Dm1<)&Hx3r z!AdIev`I=xfFgCd(?4RvfpDBX;sVhY;%6%YLree~y;nbiUxk(7}`6E)xR4B#<{MA|S4ny`> z%Hthql#2%oG`s^XWu-ng z7SikLx}L{K2ngxow0n>%mtZzP?MqeBs-GHVvYuC47XByzUjmn*J$-jeNk!|jqrhUF zhpG2z`TNsT7UW0^@W8*|38encB%~j?>0w+TLBvpu0mSSUeV2bqOP?bE{9Ki_+0oP2qhb*7X_Ng0)_wa1yGc_IwhGVeRu{snT1->*Ni1B z4)gJFv!76|pF!mFWzcuy&;XDD1VTHSggI`%*H~A7jHfFEjV2on35VN+hx69}cnhf& z49K68rBJr2za{Vdif*dj6ciz2uVnTbbix4&nULgyU&sWj=DViXHUl z0i8?jhe)5Gr%j_<3d>h1KVEToCQEBIFUxRvGWa>xZc}8~+sg@nTMwWZD2~5+t}&=c z^!Y%pQ1VU<>|8x4OcDr1f%^R11Yh&dT9*3yPKFPHQ+<$AnnYMxB#DV~s9{HY!J-)> zA7H7{D3HFHgU({H>9$5KyZr8QAd;x9UA(J}f2gdjO|_eudDxO8*gR?Q?NPIVG=P`S zbK7480W^UbEUgkxAD6@s6%O=LknH$HXi}Cehq*owaU&A)B-IY*W! zAjBMd(>oHy17klZ+kipowhg?4-Zf(yT&PK1UbFYx2ZbK?;+7ZS!fTo8~V#!Hm1%T;a?{l!>C3rHg>$z+s92LdT?Y!uTG7ZPKAbW4ip;@?B*L}1hFwbJ_%gS6#%Bf zfZppNCMFWpaz|S_JAA(Z7im%|>ZVhgI?KjOd$)5P<#cNaWH3!W6%HwHw;BsLe-;gH z6yX7u1`q*hzg1|~t?EAj8Bu{kRhG(uI?FQ-ncCm8pjfxJ|Ar6*>ze)ie|cUMQTN~D zf_`BC>!GJNur=<@=MgbZX3*#VzdHT+U*~_avHfpy{x1`dj)|FrjpM)0fBnz6{vH1f zO#XK`|MxHdSy))v|BL_s8P|X0KO38Y2`8foJG+6A0XwT9qoFSJ4GO@F;G5tsWGcz%<{nz=w|0&mhfBr9+2I%$o{9n!@L69l@ z=lQ>gy`UF(A`K!g7#Lpq-@_llPqp3MlxOP&nk8+7U=$^U{6d8xe!?>=3)20pTQaTw z6WcwNG?!CXA5dRD?o)s6dG7u4xOmT96eGJZA0}8QDhfGM!U;z*Nc1iko0JTBFZOb8 zuY8?<-}Q|9Da$dzul{xOwZm~vqm%8VeSXn2+dFv0h$|W`fsP9IgB$wbPLGiuZ9{p~ zvPUcZQovHf3<@PV!JaT~`V=&0_*r&D-hK`rp2u9Sb*iFF@mr|R_ir)G7xGa2R@gA< zNQ?c_+)G{yW`)ZcxBAC|N}fLT_TDFywq>b~Kbs$>h}%7N8%_FumwZ~D?sA_zDzY>^ zovvtml=!wE4E42;sa0Q|`?S=XRhD1+{P}s*d7byG?@@yy9UW-{KG)Tsll`or`QTr* zHVQ>UmR~q<1FSG{r@9Sf=vu7zohpGQxs6S8{4Q^S31{G=0`h-bxINV*xBt? z=SCz98AWd!amftLb)08%e=OB(u_A|nHHKFx8npa^85LI;jow86-JFm@5n4c(&^b^K z-QDRsqRXeHBwl-ksO6NoIA~{|hO?*?vWI)Rp}a`F)I-Ka$!kkooY&KBBs#ngxK#ZO z_`^;8-L>RmAMo8}maiv$b|BEZ)v7M`3<$7{4bl`$pHSx;^sB8Reb~=_uRhOVMzgbN zpG6}KRdI-+GPk%A2>86^@-*Zk>EAM86j${0*G0D#REbYwxvM5jP11jM{&{$jlf#mw zrPB1Kw8|%oTXSr@@Ku$6YQ}ALwN&TjB&47l8^?fBV`QTq52GOWQMwu{V5V|^_vPHX zk$-Y(TpCk-tuCjSti9xHhtIY1?#qg!0bk@t(HHK(90aD}yk55a=$Sc`dnznlWP(EB z0wGU@WtD*`?kCoO=mvJ%ozi4p1(&AkOHbsLpW>{@s{D&n%zwIvt!p7CF13>H?r*@! zkr=M>BJ+&XLn3AFXU7ZKp^A)o+)|?1f9QMk2S#gp@{4s=-%V)Cl$WormJ(L@$)|76 z%*?+HxaxX*%hec|Z(HTpoNGuc%#?W{voPG$FSJI8!N;HaP7UV#;X{=MVV@E1qJk7Ywb2)1=8wavyLWi5gIq#@v=GbBeCq zZdO+{0};_2Z0?S9VkOB+EM}>CtO2~m%dC+{#;vZa2VYEV8wYHXnQx!I;3`<>x@*RK zgN($rGDm}Zub&fcON%8=9-t7+b^6`%lbCnf%TiieCEFtnLW(gLmwL5GjN4lGfiiUT zI}YgF$1?%z#or5Ngv&+lkm5OGi3*;N0r7=%N#8;i-=Fkk97qVum?MRYS*S0YXR%{f z+jcfFznLj+pDw|8W&2kMB-$^ZY;~hpEeiqM_ga&i?_lbi&as&z>{r}ReQNm5Hv7t6 zvHNwcB2-LXJk4X`ldd&de-8uQD_X1T_;+KC;^Pg9Iw{$)ZmFj`@4Slqd|vMszo_=^ z*3se$0q6Zn4x7Q5j=INHkLl&zO(J>zVX`i$qxnoRBAW}M@eg%n?#oFnpLprke!4br ziR0jQyoYvuWJ{<~%*cMLt%tVkAKaFgZ&HgbD1eV5w6!6)?pn5$L8fdFRs1Fcbfiy% zmPa0e$939dgoE6<-V-_u@*xP-1tm$|;+TG&p z7Uiyy>*Ji8xj7`P@c1}hDleyWxvYmh5#mt}6&zO@VJ(-+ZZf+G_si}8t+rSj7Q){l z015Z!Ee>UNo6Di$%MRa0-pnxZ$k51GaciF3qHWe%W1-OAzK_Pde24PfT5B|6E5t|l zAnTkms%5xHm%OF1J#z@(t15k7LWpfRf=Xjf`RJcjf_nHF4HKf5VvU;<-RYX~kI_8c>O5<%li`#4O=N66|4#2u{olaCKJWt^~ z>2R~aiV^3q30^a!P|`_l8;n`kx9WyOM@Jl8RDNTxl+NQR`Ls13e%RXE?DVA#>|QnK zmzfJJFSl1u_g%HXU0#~Jv)~!c4g17yGSYz(?bj|?%%pi1N~D5PwkugP?NP<7%PQ_K(Q(s6;B2GQeh2y_RA=y%9ehDjU##t^)II~ZfVS*_Xa^G z+44bI#X3P>OiPcCjaeO2!gbcNZWw4Y9B0)b;;$R5v9;!>XbbsnKBY|+dV5gEeM)Hd zX~EsjZnR~HW5J~beA zDjS26X{X^?(;---L3GPxYH{`#`*0R#@i`4UYC=5 z0P4Ue_5kHj+QYr!I{mGopp)U5I^s=6sVY4pVSqb|-0ol5_Bs%3qfwmbloWm~Sv5}A zJKd+ASmSTUroo`=l||55YKuP%VlgPS<0gpstaWxt_PWs~VJR-{kHh$!KRPpU!Ju`u zVkeXl+poZ%o&FNzJBh5egs`6v+g`UL_nio=M^eK=od2`}cZ|05{uA1%rZ;k=*P1h8 zM~>sML+w0YR-@BU-q37U)>^CT-hL8ECau88T4pXoI?*Fc3Tj$NXFu`B$8nq0$nnrX0ro&Id1|5vpU23uy4)pB7wh26rnU z_MmOAPrOpy{C-6^MqYiC9*cdRWrH>e>pr~8uk``)AK8wv}dL2In2TRt5Y@mK@zU+MNf=wJki`#8s4!if{4&3XnN%a zX|2hG(b0g{x?AgWEBWxT+RU-^(;vp8xm4c;Z^iJLhJVn`=r8>#BU7-upNSsY#&}qJ zU|{_|ZXaPRqWX2+Je-PxF*Ec;A8Wx=F6+;SDpwTl8qQ9-0BO{7ULN-v=om0pB^^dcmb z(0i{Upwgs+kc1)-kls58f^-fG^-EzT3lCjzJcUJNojv<(C?@qZOHKYUD= za&j`KybN1D>#=@4;|7uC@_~FIT9cKUVbS$=P@T!y8?XLZUl`y$8s_OjR`Z-y`b2>?t9O&H>Fz>A@KPl+Z_Cz#fyr^(M zv^M-KyumzXB<7x~aDvZcckspP;-UvuXnMq0+~3Ql@`LfbDwg#6`QDAL+nr>WkvQYz zmN`a^WxOx~^1P+vu==FwnW&u9OK8IiV12Obfk&dDIVh9SpSZ$7=c2i1gIGd83cLyj z%)O{xHBjZAWr*bL!Ju`1g*i`Emw%Es1k|duRNrq z?7u#{=i8&J76x%*M4=ncq-^|rkK0l9FSjP#vRH=BoXh*)E6+xdABuR9@V)S9&O4=b z`~Ge|*n)${-8P5Vw{85spa38F%S_bm>E_q2`J$$mPjM@@$co=h1h8mG0Hf_@e&AM7 zBo?3r=;YpGnrh^ptAo5~WklLHC46Cv3(E^5vD>q)y@Dd;3yc>ypio*DRT?M^@9r#0 z^Nz4svhTx=?~=^BVx#d0@1^PHT>1wJ?pKH(?`sbetBEee6Q9o3g%Uowwa7+iSKk&T z2^iR`;%PjsnPWb0lp|~Gr+$sFo{!b(<}gpJNjorH-gV`69@Eh?!`Gr{ZKfZC6&VLm zN;f<-2+dM_=I8#=nie?EX7*0Ej#(|7T9?!y#s`=W>g`u^;%;oRcDhBV#YwN+xi1@v zhSg-!lL+q25GbtCfHOyU2A9bFmuTtF*MDkB+7631S{W&(kxxquOeuK>pisSqwV)+S zYh?ayan6QEEJ|Rv`7Gxsn@Yl4R%f;b`z1kcb``D8fixx~-4BCBh&>*TG19)bdQYIy zoChrz4%|~{$oIi)vOeEKZ`?ir_1sqBNzPVAzQ;+8)IwAid?DJ3Ch{~@<9)&PF4V|n zBsMz%;iE@0b>^U3)+OYmrhoU=tses3j)MvLM3yW1RWYfRC3)iP$w`YB)ah-mAqiUy zWEz<7;J1tEJ`eBSo&JXWF1-D!^Ti{YTt$Z)P)zt8x0JP$yvdugwMc-bD8Iw^^ZRHK z$gEw$y^}Gjzc-YNAGDVq$CCw(Fx@0jtb}t1$BRwAnGBN-7eHEo z?M-IAJw0~jvUsSU4O6wIuyWjzBSi z*<7t1A72U2O zq46%HR%W2})zxeXos5Bw7HY09*0s&s&eHSwy!@0JXawa8emj%mavJ+DzG*TNYS=6r zsaVQ!*Qz@b*2asyv$ATB;OOHGUhcARrQ%TjY7>9ShMC;?&31z(;f~-V^Uop-q4m+Y zz|_(oH6kPvE+6(9SMUs1a8>lp1Xcx3j>|tDBHEd=55KjaBSM>tV=0!p%np_f#c~&2 zAOrGAnBF9ZA|uIK4I(2g<+c9AkdF%#!e~6=mwxHXFD1lyTz^85r$?i)IOA4Fq2wrY zR<)OeiJd!-GMUH@V?SDdzVI2zVj^iSr`9z-*Abz2PR*zi^Uf>39Q+!Y%f!g1i58_f?m59|FIX1kuDRwnarvRU3o#E4+eKWT4OON2*=o`sO z5=WTudlbDBxL`ypuB(MQHaoABIPMPw&e8a(XGMRbo!*r}ZkE z?5$FbvZmq|w6B!?T1FDYb5vB8d-BaHJUt?k)F{FR^j=Nx|JcN+(OG+~2R_qF{?%-r zdXt-!V)rX4PUwAKaXEokq=ip>e%7|ijOYgm zCe@{_LT4AVvd_=M_F9~?{fT$z1m6$0NpSFlFJ$#_EGU}@RkIU+cqa3mdaUvIQ?0bj zx&hVI>!X56nbgyamrnzan?^_RW;}zUKJ@Hx0gyrvVCE|eP#@0Z(GFRk8ks2}i9q~& zTn2K0jh5+U?<=&-?}B~5!(ZpCg&n_X-_A|C3k}cEch+Rka|sTYTp_isH@G%|&hQ@U zWXJB%iB!_w4@}CU_>*I_zVOzqhHVUeWWDAkpqfr zDH@~s=ni+-OE#;YiRRe6$!-3l^GZ z3+r^u@0u{392f5%fndr)6FjXEQ0mk~MOEa2u;t<-W~WExJD=>L+?n zJ;4?!U>nvln@(F?@us9T?j_A-UpRiWZGLnFE3vt~1jVFv01Y3xQoxhQ^1~YYG`!AI znX96vX%P?VRwBXHx`L)M4AmkV+iHyAkZ(OPFb0KM(+&(EAfTKQ2d`}6`W+Dnt)cWx z4@@b~oc#i9U&hMTM8`P{mh!)SFJ8fzCuj4sNk+r4-1_%R$&uK~b!4ric&1Tp`of$> zyIR|&>myK-L#jaJQ8)hXz;w4op>HTeK7Bma&p+95VNmox!AlsaD}$! zyr*7yzerFFnDyrA8$MAEfPP&5Oc!F{U69o(sB;@8DQ4C}-0l`#rQg`da0n^z1%v8 z1!kOAJ%C{VH3mtO^zTlWcz)-GR6-6_qxI&eH?8(Q5~QH*_hj>n_j0#fsk}E=*u_8X!F@@xw#%J|?DoJpws;RpBaQ{s#Lac${3ksO<`Odw2`g=J9a<{tH5GX8H`7 zXOlt&oI{4kV{?xn(5c0J!@j)2p*IM3t~eqOah%hay_CX*4~J%=@0b(>i`2!u|W zg}loh0BH=Se?j)duzqM<;HA+5`pR!^lwPezYUgk7{i-Y`Rc{Perdb#OBKCq%*}x}@)ZclESis=l3E)=aqoCGwW^I);rv;Ct@DCw9URKjp z$1S^L3NhU4erZMITM1e%^{N^r-@e&sIEa7yW>~tkUms%T&E|f`?to#IX~_<-_>mFd36-ShNZ6KMl4)^^ zu+3wLS}izT9_Wv+82-UFADtpQ;)nN zwr3Xla!S;V60S-EhdhBj+*v`5c= zGBaA9G%hU_#pjNP&vmk5O4fpOH~YR)y^H1y(ZAKQ~QbuYyjh4`D6eb4VjI2B4&sr*V8_VlT3?|cOq zfKl>^6NNNy6g^QWob86W1qED{cjY-XqMs#)GC<=2Tx1>b(I4nB^-`W!;fEcI+s*l- zwJdqv@D3tJb*7>54YpijSy>Xn!X`mx)=1P7S7%xu`5MK^1H@F>)255;IGQ|S+J#!E z=QB_aC3l@Bs)3!R4>;lwagN`{JKJbkb2@6aICOVxE6H;a!Z69ff3O=DNomYlnhR5n zW~z*lVxuZBN;U!bD9aD5uv^;M6@soR9UV^cIwHD|91QGKS@+`)}kS zwVPPT=;FX^3xtTI+1>;}M!U+UA)kvkrt+mzVzz3F6pPj;o3CKuCQUg4N1=LVY1P{c zJ!1Wrv@r(U$P;h4KnC-7j?Ud)_A;Cr z7entG>)uvfc(cFV3gvS_mc>6nOw5&e=fT1-HR5~LuJY-&c6cK~8C(uZRmr`)L*Ewj z@-^?2?>7m*LFN;Na$Q0{pQ4?ewlS| zXPG*{H7n@N_BIZ+9Up2bTx8Mv|kH-Y`p4)dxA=iH$Der^H2cmvJ* zqx9_aRMIqK>xg%?yQF=LpBa~D!bH8MYjFHtZOoHXFYb)}3#}YD)Z;5@6)^M z8!kDZ)D3i2bbNXyOx-+yJZ}V=<}%iM%8;^F^lPfD7R5TnTFDJk1S{@Fzy0BxqtnRe zhsg1_AxYO?9AZW_IT+nDl_(1;^GEaR!_)~s)_Z39SL^V&Ii&UV>}j?X>*(HXklGQ> z)iVuzX8#4O9&L2M>{w~L3k9aA2F#0 zimj0GJiA%m{=lJ=-=dAP@9{0r9NoG7GbNO+Tij75{%v|C}h`ucLo`hCl7EfPcdJ|GodO zXaWB=!oP2s|9pCujnKHhtak1|4Q-qoH}UZA5)cuS-hV(&LG_59ftiJkgOlqCkFW?p zTvA%@xuUYFx`v*aZCzt?OKV$4 zXHP$B06ji|nff`uw7j~pxwE@}cyxSvcCpj9qI8|cuD>g`qDP;nAG{_Fn-i>Yz+AVk z{i`1g4JCK;;-)ZL3-Yg^-KE~nkgL7JL)Rb(LdRuM13K@*ubrts++~VW;+e9vq(|a( zV#Amv<^Nh|B2WQSF_aip^@;$d&8 zIrD@G)fk#W8^zcsv3$Jr)WijBCRfTd?C4YGfuS5;R5G)v95wUq9S#D$URLt6d=_)p z6n$U@=u=qRZO>w|eXSj%jwr8$?`g3>2-e7lNPfFcJ#S_DWUetRrl@kR2z6$q==k`6 zhdcUt{hcg*759e)Hx;VCC8_nT^8<=(;3l^xmt|9)at;cl_*!a&EO`@Me0Nsmb)gPO zEjkUkT+=z(aDDw_o@)a4ryaK$yCE*h;Uc1lg`?7>fBnWz`yAyJX zcLt00?wL<^TWy literal 0 HcmV?d00001 diff --git a/ansible/roles/moodle/templates/moodle_database_template.txt b/ansible/roles/moodle/templates/moodle_database_template.txt new file mode 100644 index 00000000..b8bbf166 --- /dev/null +++ b/ansible/roles/moodle/templates/moodle_database_template.txt @@ -0,0 +1,14272 @@ +-- MariaDB dump 10.19 Distrib 10.5.9-MariaDB, for debian-linux-gnu (x86_64) +-- +-- Host: localhost Database: moodle +-- ------------------------------------------------------ +-- Server version 10.5.9-MariaDB-1:10.5.9+maria~buster + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8mb4 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Current Database: `moodle` +-- + +CREATE DATABASE /*!32312 IF NOT EXISTS*/ `moodle` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci */; + +USE `moodle`; + +-- +-- Table structure for table `mdl_analytics_indicator_calc` +-- + +DROP TABLE IF EXISTS `mdl_analytics_indicator_calc`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_analytics_indicator_calc` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `starttime` bigint(10) NOT NULL, + `endtime` bigint(10) NOT NULL, + `contextid` bigint(10) NOT NULL, + `sampleorigin` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `sampleid` bigint(10) NOT NULL, + `indicator` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `value` decimal(10,2) DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_analindicalc_staendcon_ix` (`starttime`,`endtime`,`contextid`), + KEY `mdl_analindicalc_con_ix` (`contextid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stored indicator calculations'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_analytics_indicator_calc` +-- + +LOCK TABLES `mdl_analytics_indicator_calc` WRITE; +/*!40000 ALTER TABLE `mdl_analytics_indicator_calc` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_analytics_indicator_calc` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_analytics_models` +-- + +DROP TABLE IF EXISTS `mdl_analytics_models`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_analytics_models` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `enabled` tinyint(1) NOT NULL DEFAULT 0, + `trained` tinyint(1) NOT NULL DEFAULT 0, + `name` varchar(1333) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `target` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `indicators` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `timesplitting` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `predictionsprocessor` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `version` bigint(10) NOT NULL, + `contextids` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timecreated` bigint(10) DEFAULT NULL, + `timemodified` bigint(10) NOT NULL, + `usermodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_analmode_enatra_ix` (`enabled`,`trained`) +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Analytic models.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_analytics_models` +-- + +LOCK TABLES `mdl_analytics_models` WRITE; +/*!40000 ALTER TABLE `mdl_analytics_models` DISABLE KEYS */; +INSERT INTO `mdl_analytics_models` VALUES (1,0,0,NULL,'\\core_course\\analytics\\target\\course_dropout','[\"\\\\core\\\\analytics\\\\indicator\\\\any_access_after_end\",\"\\\\core\\\\analytics\\\\indicator\\\\any_access_before_start\",\"\\\\core\\\\analytics\\\\indicator\\\\any_write_action_in_course\",\"\\\\core\\\\analytics\\\\indicator\\\\read_actions\",\"\\\\core_course\\\\analytics\\\\indicator\\\\completion_enabled\",\"\\\\core_course\\\\analytics\\\\indicator\\\\potential_cognitive_depth\",\"\\\\core_course\\\\analytics\\\\indicator\\\\potential_social_breadth\",\"\\\\mod_assign\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_assign\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_book\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_book\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_chat\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_chat\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_choice\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_choice\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_data\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_data\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_feedback\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_feedback\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_folder\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_folder\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_forum\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_forum\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_glossary\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_glossary\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_imscp\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_imscp\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_label\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_label\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_lesson\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_lesson\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_lti\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_lti\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_page\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_page\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_quiz\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_quiz\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_resource\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_resource\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_scorm\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_scorm\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_survey\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_survey\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_url\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_url\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_wiki\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_wiki\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_workshop\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_workshop\\\\analytics\\\\indicator\\\\social_breadth\"]',NULL,NULL,1619623687,NULL,1619623687,1619623687,0),(2,1,1,NULL,'\\core_course\\analytics\\target\\no_teaching','[\"\\\\core_course\\\\analytics\\\\indicator\\\\no_teacher\",\"\\\\core_course\\\\analytics\\\\indicator\\\\no_student\"]','\\core\\analytics\\time_splitting\\single_range',NULL,1619623687,NULL,1619623687,1619623687,0),(3,1,1,NULL,'\\core_user\\analytics\\target\\upcoming_activities_due','[\"\\\\core_course\\\\analytics\\\\indicator\\\\activities_due\"]','\\core\\analytics\\time_splitting\\upcoming_week',NULL,1619623687,NULL,1619623687,1619623687,0),(4,1,1,NULL,'\\core_course\\analytics\\target\\no_access_since_course_start','[\"\\\\core\\\\analytics\\\\indicator\\\\any_course_access\"]','\\core\\analytics\\time_splitting\\one_month_after_start',NULL,1619623687,NULL,1619623687,1619623687,0),(5,1,1,NULL,'\\core_course\\analytics\\target\\no_recent_accesses','[\"\\\\core\\\\analytics\\\\indicator\\\\any_course_access\"]','\\core\\analytics\\time_splitting\\past_month',NULL,1619623687,NULL,1619623687,1619623687,0); +/*!40000 ALTER TABLE `mdl_analytics_models` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_analytics_models_log` +-- + +DROP TABLE IF EXISTS `mdl_analytics_models_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_analytics_models_log` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `modelid` bigint(10) NOT NULL, + `version` bigint(10) NOT NULL, + `evaluationmode` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `target` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `indicators` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `timesplitting` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `score` decimal(10,5) NOT NULL DEFAULT 0.00000, + `info` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `dir` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `timecreated` bigint(10) NOT NULL, + `usermodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_analmodelog_mod_ix` (`modelid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Analytic models changes during evaluation.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_analytics_models_log` +-- + +LOCK TABLES `mdl_analytics_models_log` WRITE; +/*!40000 ALTER TABLE `mdl_analytics_models_log` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_analytics_models_log` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_analytics_predict_samples` +-- + +DROP TABLE IF EXISTS `mdl_analytics_predict_samples`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_analytics_predict_samples` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `modelid` bigint(10) NOT NULL, + `analysableid` bigint(10) NOT NULL, + `timesplitting` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `rangeindex` bigint(10) NOT NULL, + `sampleids` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_analpredsamp_modanatimr_ix` (`modelid`,`analysableid`,`timesplitting`,`rangeindex`), + KEY `mdl_analpredsamp_mod_ix` (`modelid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Samples already used for predictions.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_analytics_predict_samples` +-- + +LOCK TABLES `mdl_analytics_predict_samples` WRITE; +/*!40000 ALTER TABLE `mdl_analytics_predict_samples` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_analytics_predict_samples` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_analytics_prediction_actions` +-- + +DROP TABLE IF EXISTS `mdl_analytics_prediction_actions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_analytics_prediction_actions` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `predictionid` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `actionname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `timecreated` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_analpredacti_preuseact_ix` (`predictionid`,`userid`,`actionname`), + KEY `mdl_analpredacti_pre_ix` (`predictionid`), + KEY `mdl_analpredacti_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Register of user actions over predictions.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_analytics_prediction_actions` +-- + +LOCK TABLES `mdl_analytics_prediction_actions` WRITE; +/*!40000 ALTER TABLE `mdl_analytics_prediction_actions` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_analytics_prediction_actions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_analytics_predictions` +-- + +DROP TABLE IF EXISTS `mdl_analytics_predictions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_analytics_predictions` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `modelid` bigint(10) NOT NULL, + `contextid` bigint(10) NOT NULL, + `sampleid` bigint(10) NOT NULL, + `rangeindex` mediumint(5) NOT NULL, + `prediction` decimal(10,2) NOT NULL, + `predictionscore` decimal(10,5) NOT NULL, + `calculations` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timestart` bigint(10) DEFAULT NULL, + `timeend` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_analpred_modcon_ix` (`modelid`,`contextid`), + KEY `mdl_analpred_mod_ix` (`modelid`), + KEY `mdl_analpred_con_ix` (`contextid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Predictions'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_analytics_predictions` +-- + +LOCK TABLES `mdl_analytics_predictions` WRITE; +/*!40000 ALTER TABLE `mdl_analytics_predictions` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_analytics_predictions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_analytics_train_samples` +-- + +DROP TABLE IF EXISTS `mdl_analytics_train_samples`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_analytics_train_samples` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `modelid` bigint(10) NOT NULL, + `analysableid` bigint(10) NOT NULL, + `timesplitting` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `sampleids` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_analtraisamp_modanatim_ix` (`modelid`,`analysableid`,`timesplitting`), + KEY `mdl_analtraisamp_mod_ix` (`modelid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Samples used for training'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_analytics_train_samples` +-- + +LOCK TABLES `mdl_analytics_train_samples` WRITE; +/*!40000 ALTER TABLE `mdl_analytics_train_samples` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_analytics_train_samples` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_analytics_used_analysables` +-- + +DROP TABLE IF EXISTS `mdl_analytics_used_analysables`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_analytics_used_analysables` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `modelid` bigint(10) NOT NULL, + `action` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `analysableid` bigint(10) NOT NULL, + `firstanalysis` bigint(10) NOT NULL, + `timeanalysed` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_analusedanal_modact_ix` (`modelid`,`action`), + KEY `mdl_analusedanal_ana_ix` (`analysableid`), + KEY `mdl_analusedanal_mod_ix` (`modelid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='List of analysables used by each model'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_analytics_used_analysables` +-- + +LOCK TABLES `mdl_analytics_used_analysables` WRITE; +/*!40000 ALTER TABLE `mdl_analytics_used_analysables` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_analytics_used_analysables` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_analytics_used_files` +-- + +DROP TABLE IF EXISTS `mdl_analytics_used_files`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_analytics_used_files` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `modelid` bigint(10) NOT NULL DEFAULT 0, + `fileid` bigint(10) NOT NULL DEFAULT 0, + `action` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `time` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_analusedfile_modactfil_ix` (`modelid`,`action`,`fileid`), + KEY `mdl_analusedfile_mod_ix` (`modelid`), + KEY `mdl_analusedfile_fil_ix` (`fileid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Files that have already been used for training and predictio'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_analytics_used_files` +-- + +LOCK TABLES `mdl_analytics_used_files` WRITE; +/*!40000 ALTER TABLE `mdl_analytics_used_files` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_analytics_used_files` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_assign` +-- + +DROP TABLE IF EXISTS `mdl_assign`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_assign` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `introformat` smallint(4) NOT NULL DEFAULT 0, + `alwaysshowdescription` tinyint(2) NOT NULL DEFAULT 0, + `nosubmissions` tinyint(2) NOT NULL DEFAULT 0, + `submissiondrafts` tinyint(2) NOT NULL DEFAULT 0, + `sendnotifications` tinyint(2) NOT NULL DEFAULT 0, + `sendlatenotifications` tinyint(2) NOT NULL DEFAULT 0, + `duedate` bigint(10) NOT NULL DEFAULT 0, + `allowsubmissionsfromdate` bigint(10) NOT NULL DEFAULT 0, + `grade` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `requiresubmissionstatement` tinyint(2) NOT NULL DEFAULT 0, + `completionsubmit` tinyint(2) NOT NULL DEFAULT 0, + `cutoffdate` bigint(10) NOT NULL DEFAULT 0, + `gradingduedate` bigint(10) NOT NULL DEFAULT 0, + `teamsubmission` tinyint(2) NOT NULL DEFAULT 0, + `requireallteammemberssubmit` tinyint(2) NOT NULL DEFAULT 0, + `teamsubmissiongroupingid` bigint(10) NOT NULL DEFAULT 0, + `blindmarking` tinyint(2) NOT NULL DEFAULT 0, + `hidegrader` tinyint(2) NOT NULL DEFAULT 0, + `revealidentities` tinyint(2) NOT NULL DEFAULT 0, + `attemptreopenmethod` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'none', + `maxattempts` mediumint(6) NOT NULL DEFAULT -1, + `markingworkflow` tinyint(2) NOT NULL DEFAULT 0, + `markingallocation` tinyint(2) NOT NULL DEFAULT 0, + `sendstudentnotifications` tinyint(2) NOT NULL DEFAULT 1, + `preventsubmissionnotingroup` tinyint(2) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_assi_cou_ix` (`course`), + KEY `mdl_assi_tea_ix` (`teamsubmissiongroupingid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table saves information about an instance of mod_assign'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_assign` +-- + +LOCK TABLES `mdl_assign` WRITE; +/*!40000 ALTER TABLE `mdl_assign` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_assign` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_assign_grades` +-- + +DROP TABLE IF EXISTS `mdl_assign_grades`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_assign_grades` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `assignment` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `grader` bigint(10) NOT NULL DEFAULT 0, + `grade` decimal(10,5) DEFAULT 0.00000, + `attemptnumber` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_assigrad_assuseatt_uix` (`assignment`,`userid`,`attemptnumber`), + KEY `mdl_assigrad_use_ix` (`userid`), + KEY `mdl_assigrad_att_ix` (`attemptnumber`), + KEY `mdl_assigrad_ass_ix` (`assignment`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Grading information about a single assignment submission.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_assign_grades` +-- + +LOCK TABLES `mdl_assign_grades` WRITE; +/*!40000 ALTER TABLE `mdl_assign_grades` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_assign_grades` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_assign_overrides` +-- + +DROP TABLE IF EXISTS `mdl_assign_overrides`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_assign_overrides` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `assignid` bigint(10) NOT NULL DEFAULT 0, + `groupid` bigint(10) DEFAULT NULL, + `userid` bigint(10) DEFAULT NULL, + `sortorder` bigint(10) DEFAULT NULL, + `allowsubmissionsfromdate` bigint(10) DEFAULT NULL, + `duedate` bigint(10) DEFAULT NULL, + `cutoffdate` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_assiover_ass_ix` (`assignid`), + KEY `mdl_assiover_gro_ix` (`groupid`), + KEY `mdl_assiover_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The overrides to assign settings.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_assign_overrides` +-- + +LOCK TABLES `mdl_assign_overrides` WRITE; +/*!40000 ALTER TABLE `mdl_assign_overrides` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_assign_overrides` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_assign_plugin_config` +-- + +DROP TABLE IF EXISTS `mdl_assign_plugin_config`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_assign_plugin_config` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `assignment` bigint(10) NOT NULL DEFAULT 0, + `plugin` varchar(28) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `subtype` varchar(28) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `name` varchar(28) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_assiplugconf_plu_ix` (`plugin`), + KEY `mdl_assiplugconf_sub_ix` (`subtype`), + KEY `mdl_assiplugconf_nam_ix` (`name`), + KEY `mdl_assiplugconf_ass_ix` (`assignment`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Config data for an instance of a plugin in an assignment.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_assign_plugin_config` +-- + +LOCK TABLES `mdl_assign_plugin_config` WRITE; +/*!40000 ALTER TABLE `mdl_assign_plugin_config` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_assign_plugin_config` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_assign_submission` +-- + +DROP TABLE IF EXISTS `mdl_assign_submission`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_assign_submission` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `assignment` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `status` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `groupid` bigint(10) NOT NULL DEFAULT 0, + `attemptnumber` bigint(10) NOT NULL DEFAULT 0, + `latest` tinyint(2) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_assisubm_assusegroatt_uix` (`assignment`,`userid`,`groupid`,`attemptnumber`), + KEY `mdl_assisubm_use_ix` (`userid`), + KEY `mdl_assisubm_att_ix` (`attemptnumber`), + KEY `mdl_assisubm_assusegrolat_ix` (`assignment`,`userid`,`groupid`,`latest`), + KEY `mdl_assisubm_ass_ix` (`assignment`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table keeps information about student interactions with'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_assign_submission` +-- + +LOCK TABLES `mdl_assign_submission` WRITE; +/*!40000 ALTER TABLE `mdl_assign_submission` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_assign_submission` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_assign_user_flags` +-- + +DROP TABLE IF EXISTS `mdl_assign_user_flags`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_assign_user_flags` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL DEFAULT 0, + `assignment` bigint(10) NOT NULL DEFAULT 0, + `locked` bigint(10) NOT NULL DEFAULT 0, + `mailed` smallint(4) NOT NULL DEFAULT 0, + `extensionduedate` bigint(10) NOT NULL DEFAULT 0, + `workflowstate` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `allocatedmarker` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_assiuserflag_mai_ix` (`mailed`), + KEY `mdl_assiuserflag_use_ix` (`userid`), + KEY `mdl_assiuserflag_ass_ix` (`assignment`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='List of flags that can be set for a single user in a single '; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_assign_user_flags` +-- + +LOCK TABLES `mdl_assign_user_flags` WRITE; +/*!40000 ALTER TABLE `mdl_assign_user_flags` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_assign_user_flags` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_assign_user_mapping` +-- + +DROP TABLE IF EXISTS `mdl_assign_user_mapping`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_assign_user_mapping` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `assignment` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_assiusermapp_ass_ix` (`assignment`), + KEY `mdl_assiusermapp_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Map an assignment specific id number to a user'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_assign_user_mapping` +-- + +LOCK TABLES `mdl_assign_user_mapping` WRITE; +/*!40000 ALTER TABLE `mdl_assign_user_mapping` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_assign_user_mapping` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_assignfeedback_comments` +-- + +DROP TABLE IF EXISTS `mdl_assignfeedback_comments`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_assignfeedback_comments` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `assignment` bigint(10) NOT NULL DEFAULT 0, + `grade` bigint(10) NOT NULL DEFAULT 0, + `commenttext` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `commentformat` smallint(4) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_assicomm_ass_ix` (`assignment`), + KEY `mdl_assicomm_gra_ix` (`grade`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Text feedback for submitted assignments'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_assignfeedback_comments` +-- + +LOCK TABLES `mdl_assignfeedback_comments` WRITE; +/*!40000 ALTER TABLE `mdl_assignfeedback_comments` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_assignfeedback_comments` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_assignfeedback_editpdf_annot` +-- + +DROP TABLE IF EXISTS `mdl_assignfeedback_editpdf_annot`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_assignfeedback_editpdf_annot` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `gradeid` bigint(10) NOT NULL DEFAULT 0, + `pageno` bigint(10) NOT NULL DEFAULT 0, + `x` bigint(10) DEFAULT 0, + `y` bigint(10) DEFAULT 0, + `endx` bigint(10) DEFAULT 0, + `endy` bigint(10) DEFAULT 0, + `path` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT 'line', + `colour` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT 'black', + `draft` tinyint(2) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`), + KEY `mdl_assieditanno_grapag_ix` (`gradeid`,`pageno`), + KEY `mdl_assieditanno_gra_ix` (`gradeid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='stores annotations added to pdfs submitted by students'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_assignfeedback_editpdf_annot` +-- + +LOCK TABLES `mdl_assignfeedback_editpdf_annot` WRITE; +/*!40000 ALTER TABLE `mdl_assignfeedback_editpdf_annot` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_assignfeedback_editpdf_annot` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_assignfeedback_editpdf_cmnt` +-- + +DROP TABLE IF EXISTS `mdl_assignfeedback_editpdf_cmnt`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_assignfeedback_editpdf_cmnt` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `gradeid` bigint(10) NOT NULL DEFAULT 0, + `x` bigint(10) DEFAULT 0, + `y` bigint(10) DEFAULT 0, + `width` bigint(10) DEFAULT 120, + `rawtext` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `pageno` bigint(10) NOT NULL DEFAULT 0, + `colour` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT 'black', + `draft` tinyint(2) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`), + KEY `mdl_assieditcmnt_grapag_ix` (`gradeid`,`pageno`), + KEY `mdl_assieditcmnt_gra_ix` (`gradeid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores comments added to pdfs'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_assignfeedback_editpdf_cmnt` +-- + +LOCK TABLES `mdl_assignfeedback_editpdf_cmnt` WRITE; +/*!40000 ALTER TABLE `mdl_assignfeedback_editpdf_cmnt` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_assignfeedback_editpdf_cmnt` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_assignfeedback_editpdf_queue` +-- + +DROP TABLE IF EXISTS `mdl_assignfeedback_editpdf_queue`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_assignfeedback_editpdf_queue` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `submissionid` bigint(10) NOT NULL, + `submissionattempt` bigint(10) NOT NULL, + `attemptedconversions` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_assieditqueu_subsub_uix` (`submissionid`,`submissionattempt`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Queue for processing.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_assignfeedback_editpdf_queue` +-- + +LOCK TABLES `mdl_assignfeedback_editpdf_queue` WRITE; +/*!40000 ALTER TABLE `mdl_assignfeedback_editpdf_queue` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_assignfeedback_editpdf_queue` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_assignfeedback_editpdf_quick` +-- + +DROP TABLE IF EXISTS `mdl_assignfeedback_editpdf_quick`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_assignfeedback_editpdf_quick` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL DEFAULT 0, + `rawtext` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `width` bigint(10) NOT NULL DEFAULT 120, + `colour` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT 'yellow', + PRIMARY KEY (`id`), + KEY `mdl_assieditquic_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores teacher specified quicklist comments'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_assignfeedback_editpdf_quick` +-- + +LOCK TABLES `mdl_assignfeedback_editpdf_quick` WRITE; +/*!40000 ALTER TABLE `mdl_assignfeedback_editpdf_quick` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_assignfeedback_editpdf_quick` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_assignfeedback_editpdf_rot` +-- + +DROP TABLE IF EXISTS `mdl_assignfeedback_editpdf_rot`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_assignfeedback_editpdf_rot` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `gradeid` bigint(10) NOT NULL DEFAULT 0, + `pageno` bigint(10) NOT NULL DEFAULT 0, + `pathnamehash` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `isrotated` tinyint(1) NOT NULL DEFAULT 0, + `degree` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_assieditrot_grapag_uix` (`gradeid`,`pageno`), + KEY `mdl_assieditrot_gra_ix` (`gradeid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores rotation information of a page.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_assignfeedback_editpdf_rot` +-- + +LOCK TABLES `mdl_assignfeedback_editpdf_rot` WRITE; +/*!40000 ALTER TABLE `mdl_assignfeedback_editpdf_rot` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_assignfeedback_editpdf_rot` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_assignfeedback_file` +-- + +DROP TABLE IF EXISTS `mdl_assignfeedback_file`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_assignfeedback_file` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `assignment` bigint(10) NOT NULL DEFAULT 0, + `grade` bigint(10) NOT NULL DEFAULT 0, + `numfiles` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_assifile_ass2_ix` (`assignment`), + KEY `mdl_assifile_gra_ix` (`grade`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores info about the number of files submitted by a student'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_assignfeedback_file` +-- + +LOCK TABLES `mdl_assignfeedback_file` WRITE; +/*!40000 ALTER TABLE `mdl_assignfeedback_file` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_assignfeedback_file` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_assignment` +-- + +DROP TABLE IF EXISTS `mdl_assignment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_assignment` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `introformat` smallint(4) NOT NULL DEFAULT 0, + `assignmenttype` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `resubmit` tinyint(2) NOT NULL DEFAULT 0, + `preventlate` tinyint(2) NOT NULL DEFAULT 0, + `emailteachers` tinyint(2) NOT NULL DEFAULT 0, + `var1` bigint(10) DEFAULT 0, + `var2` bigint(10) DEFAULT 0, + `var3` bigint(10) DEFAULT 0, + `var4` bigint(10) DEFAULT 0, + `var5` bigint(10) DEFAULT 0, + `maxbytes` bigint(10) NOT NULL DEFAULT 100000, + `timedue` bigint(10) NOT NULL DEFAULT 0, + `timeavailable` bigint(10) NOT NULL DEFAULT 0, + `grade` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_assi_cou2_ix` (`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines assignments'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_assignment` +-- + +LOCK TABLES `mdl_assignment` WRITE; +/*!40000 ALTER TABLE `mdl_assignment` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_assignment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_assignment_submissions` +-- + +DROP TABLE IF EXISTS `mdl_assignment_submissions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_assignment_submissions` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `assignment` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `numfiles` bigint(10) NOT NULL DEFAULT 0, + `data1` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `data2` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `grade` bigint(11) NOT NULL DEFAULT 0, + `submissioncomment` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `format` smallint(4) NOT NULL DEFAULT 0, + `teacher` bigint(10) NOT NULL DEFAULT 0, + `timemarked` bigint(10) NOT NULL DEFAULT 0, + `mailed` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_assisubm_use2_ix` (`userid`), + KEY `mdl_assisubm_mai_ix` (`mailed`), + KEY `mdl_assisubm_tim_ix` (`timemarked`), + KEY `mdl_assisubm_ass2_ix` (`assignment`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Info about submitted assignments'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_assignment_submissions` +-- + +LOCK TABLES `mdl_assignment_submissions` WRITE; +/*!40000 ALTER TABLE `mdl_assignment_submissions` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_assignment_submissions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_assignment_upgrade` +-- + +DROP TABLE IF EXISTS `mdl_assignment_upgrade`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_assignment_upgrade` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `oldcmid` bigint(10) NOT NULL DEFAULT 0, + `oldinstance` bigint(10) NOT NULL DEFAULT 0, + `newcmid` bigint(10) NOT NULL DEFAULT 0, + `newinstance` bigint(10) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_assiupgr_old_ix` (`oldcmid`), + KEY `mdl_assiupgr_old2_ix` (`oldinstance`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Info about upgraded assignments'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_assignment_upgrade` +-- + +LOCK TABLES `mdl_assignment_upgrade` WRITE; +/*!40000 ALTER TABLE `mdl_assignment_upgrade` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_assignment_upgrade` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_assignsubmission_file` +-- + +DROP TABLE IF EXISTS `mdl_assignsubmission_file`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_assignsubmission_file` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `assignment` bigint(10) NOT NULL DEFAULT 0, + `submission` bigint(10) NOT NULL DEFAULT 0, + `numfiles` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_assifile_ass_ix` (`assignment`), + KEY `mdl_assifile_sub_ix` (`submission`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Info about file submissions for assignments'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_assignsubmission_file` +-- + +LOCK TABLES `mdl_assignsubmission_file` WRITE; +/*!40000 ALTER TABLE `mdl_assignsubmission_file` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_assignsubmission_file` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_assignsubmission_onlinetext` +-- + +DROP TABLE IF EXISTS `mdl_assignsubmission_onlinetext`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_assignsubmission_onlinetext` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `assignment` bigint(10) NOT NULL DEFAULT 0, + `submission` bigint(10) NOT NULL DEFAULT 0, + `onlinetext` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `onlineformat` smallint(4) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_assionli_ass_ix` (`assignment`), + KEY `mdl_assionli_sub_ix` (`submission`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Info about onlinetext submission'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_assignsubmission_onlinetext` +-- + +LOCK TABLES `mdl_assignsubmission_onlinetext` WRITE; +/*!40000 ALTER TABLE `mdl_assignsubmission_onlinetext` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_assignsubmission_onlinetext` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_auth_oauth2_linked_login` +-- + +DROP TABLE IF EXISTS `mdl_auth_oauth2_linked_login`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_auth_oauth2_linked_login` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `usermodified` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `issuerid` bigint(10) NOT NULL, + `username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `email` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `confirmtoken` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `confirmtokenexpires` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_authoautlinklogi_useis_uix` (`userid`,`issuerid`,`username`), + KEY `mdl_authoautlinklogi_issuse_ix` (`issuerid`,`username`), + KEY `mdl_authoautlinklogi_use_ix` (`usermodified`), + KEY `mdl_authoautlinklogi_use2_ix` (`userid`), + KEY `mdl_authoautlinklogi_iss_ix` (`issuerid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Accounts linked to a users Moodle account.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_auth_oauth2_linked_login` +-- + +LOCK TABLES `mdl_auth_oauth2_linked_login` WRITE; +/*!40000 ALTER TABLE `mdl_auth_oauth2_linked_login` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_auth_oauth2_linked_login` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_backup_controllers` +-- + +DROP TABLE IF EXISTS `mdl_backup_controllers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_backup_controllers` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `backupid` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `operation` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'backup', + `type` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `itemid` bigint(10) NOT NULL, + `format` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `interactive` smallint(4) NOT NULL, + `purpose` smallint(4) NOT NULL, + `userid` bigint(10) NOT NULL, + `status` smallint(4) NOT NULL, + `execution` smallint(4) NOT NULL, + `executiontime` bigint(10) NOT NULL, + `checksum` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `progress` decimal(15,14) NOT NULL DEFAULT 0.00000000000000, + `controller` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_backcont_bac_uix` (`backupid`), + KEY `mdl_backcont_typite_ix` (`type`,`itemid`), + KEY `mdl_backcont_useite_ix` (`userid`,`itemid`), + KEY `mdl_backcont_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='To store the backup_controllers as they are used'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_backup_controllers` +-- + +LOCK TABLES `mdl_backup_controllers` WRITE; +/*!40000 ALTER TABLE `mdl_backup_controllers` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_backup_controllers` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_backup_courses` +-- + +DROP TABLE IF EXISTS `mdl_backup_courses`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_backup_courses` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `courseid` bigint(10) NOT NULL DEFAULT 0, + `laststarttime` bigint(10) NOT NULL DEFAULT 0, + `lastendtime` bigint(10) NOT NULL DEFAULT 0, + `laststatus` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '5', + `nextstarttime` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_backcour_cou_uix` (`courseid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='To store every course backup status'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_backup_courses` +-- + +LOCK TABLES `mdl_backup_courses` WRITE; +/*!40000 ALTER TABLE `mdl_backup_courses` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_backup_courses` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_backup_logs` +-- + +DROP TABLE IF EXISTS `mdl_backup_logs`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_backup_logs` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `backupid` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `loglevel` smallint(4) NOT NULL, + `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `timecreated` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_backlogs_bacid_uix` (`backupid`,`id`), + KEY `mdl_backlogs_bac_ix` (`backupid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='To store all the logs from backup and restore operations (by'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_backup_logs` +-- + +LOCK TABLES `mdl_backup_logs` WRITE; +/*!40000 ALTER TABLE `mdl_backup_logs` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_backup_logs` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_badge` +-- + +DROP TABLE IF EXISTS `mdl_badge`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_badge` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `usercreated` bigint(10) NOT NULL, + `usermodified` bigint(10) NOT NULL, + `issuername` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `issuerurl` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `issuercontact` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `expiredate` bigint(10) DEFAULT NULL, + `expireperiod` bigint(10) DEFAULT NULL, + `type` tinyint(1) NOT NULL DEFAULT 1, + `courseid` bigint(10) DEFAULT NULL, + `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `messagesubject` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `attachment` tinyint(1) NOT NULL DEFAULT 1, + `notification` tinyint(1) NOT NULL DEFAULT 1, + `status` tinyint(1) NOT NULL DEFAULT 0, + `nextcron` bigint(10) DEFAULT NULL, + `version` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `language` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `imageauthorname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `imageauthoremail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `imageauthorurl` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `imagecaption` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_badg_typ_ix` (`type`), + KEY `mdl_badg_cou_ix` (`courseid`), + KEY `mdl_badg_use_ix` (`usermodified`), + KEY `mdl_badg_use2_ix` (`usercreated`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines badge'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_badge` +-- + +LOCK TABLES `mdl_badge` WRITE; +/*!40000 ALTER TABLE `mdl_badge` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_badge` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_badge_alignment` +-- + +DROP TABLE IF EXISTS `mdl_badge_alignment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_badge_alignment` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `badgeid` bigint(10) NOT NULL DEFAULT 0, + `targetname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `targeturl` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `targetdescription` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `targetframework` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `targetcode` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_badgalig_bad_ix` (`badgeid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines alignment for badges'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_badge_alignment` +-- + +LOCK TABLES `mdl_badge_alignment` WRITE; +/*!40000 ALTER TABLE `mdl_badge_alignment` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_badge_alignment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_badge_backpack` +-- + +DROP TABLE IF EXISTS `mdl_badge_backpack`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_badge_backpack` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL DEFAULT 0, + `email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `backpackuid` bigint(10) NOT NULL, + `autosync` tinyint(1) NOT NULL DEFAULT 0, + `password` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `externalbackpackid` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_badgback_useext_uix` (`userid`,`externalbackpackid`), + KEY `mdl_badgback_use_ix` (`userid`), + KEY `mdl_badgback_ext_ix` (`externalbackpackid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines settings for connecting external backpack'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_badge_backpack` +-- + +LOCK TABLES `mdl_badge_backpack` WRITE; +/*!40000 ALTER TABLE `mdl_badge_backpack` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_badge_backpack` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_badge_backpack_oauth2` +-- + +DROP TABLE IF EXISTS `mdl_badge_backpack_oauth2`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_badge_backpack_oauth2` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `usermodified` bigint(10) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL, + `issuerid` bigint(10) NOT NULL, + `externalbackpackid` bigint(10) NOT NULL, + `token` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `refreshtoken` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `expires` bigint(10) DEFAULT NULL, + `scope` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_badgbackoaut_use_ix` (`usermodified`), + KEY `mdl_badgbackoaut_use2_ix` (`userid`), + KEY `mdl_badgbackoaut_iss_ix` (`issuerid`), + KEY `mdl_badgbackoaut_ext_ix` (`externalbackpackid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Default comment for the table, please edit me'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_badge_backpack_oauth2` +-- + +LOCK TABLES `mdl_badge_backpack_oauth2` WRITE; +/*!40000 ALTER TABLE `mdl_badge_backpack_oauth2` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_badge_backpack_oauth2` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_badge_criteria` +-- + +DROP TABLE IF EXISTS `mdl_badge_criteria`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_badge_criteria` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `badgeid` bigint(10) NOT NULL DEFAULT 0, + `criteriatype` bigint(10) DEFAULT NULL, + `method` tinyint(1) NOT NULL DEFAULT 1, + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` tinyint(2) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_badgcrit_badcri_uix` (`badgeid`,`criteriatype`), + KEY `mdl_badgcrit_cri_ix` (`criteriatype`), + KEY `mdl_badgcrit_bad_ix` (`badgeid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines criteria for issuing badges'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_badge_criteria` +-- + +LOCK TABLES `mdl_badge_criteria` WRITE; +/*!40000 ALTER TABLE `mdl_badge_criteria` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_badge_criteria` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_badge_criteria_met` +-- + +DROP TABLE IF EXISTS `mdl_badge_criteria_met`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_badge_criteria_met` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `issuedid` bigint(10) DEFAULT NULL, + `critid` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `datemet` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_badgcritmet_cri_ix` (`critid`), + KEY `mdl_badgcritmet_use_ix` (`userid`), + KEY `mdl_badgcritmet_iss_ix` (`issuedid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines criteria that were met for an issued badge'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_badge_criteria_met` +-- + +LOCK TABLES `mdl_badge_criteria_met` WRITE; +/*!40000 ALTER TABLE `mdl_badge_criteria_met` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_badge_criteria_met` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_badge_criteria_param` +-- + +DROP TABLE IF EXISTS `mdl_badge_criteria_param`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_badge_criteria_param` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `critid` bigint(10) NOT NULL, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `value` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_badgcritpara_cri_ix` (`critid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines parameters for badges criteria'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_badge_criteria_param` +-- + +LOCK TABLES `mdl_badge_criteria_param` WRITE; +/*!40000 ALTER TABLE `mdl_badge_criteria_param` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_badge_criteria_param` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_badge_endorsement` +-- + +DROP TABLE IF EXISTS `mdl_badge_endorsement`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_badge_endorsement` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `badgeid` bigint(10) NOT NULL DEFAULT 0, + `issuername` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `issuerurl` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `issueremail` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `claimid` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `claimcomment` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `dateissued` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_badgendo_bad_ix` (`badgeid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines endorsement for badge'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_badge_endorsement` +-- + +LOCK TABLES `mdl_badge_endorsement` WRITE; +/*!40000 ALTER TABLE `mdl_badge_endorsement` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_badge_endorsement` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_badge_external` +-- + +DROP TABLE IF EXISTS `mdl_badge_external`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_badge_external` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `backpackid` bigint(10) NOT NULL, + `collectionid` bigint(10) NOT NULL, + `entityid` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `assertion` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_badgexte_bac_ix` (`backpackid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Setting for external badges display'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_badge_external` +-- + +LOCK TABLES `mdl_badge_external` WRITE; +/*!40000 ALTER TABLE `mdl_badge_external` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_badge_external` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_badge_external_backpack` +-- + +DROP TABLE IF EXISTS `mdl_badge_external_backpack`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_badge_external_backpack` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `backpackapiurl` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `backpackweburl` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `apiversion` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1.0', + `sortorder` bigint(10) NOT NULL DEFAULT 0, + `oauth2_issuerid` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_badgexteback_bac_uix` (`backpackapiurl`), + UNIQUE KEY `mdl_badgexteback_bac2_uix` (`backpackweburl`), + KEY `mdl_badgexteback_oau_ix` (`oauth2_issuerid`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines settings for site level backpacks that a user can co'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_badge_external_backpack` +-- + +LOCK TABLES `mdl_badge_external_backpack` WRITE; +/*!40000 ALTER TABLE `mdl_badge_external_backpack` DISABLE KEYS */; +INSERT INTO `mdl_badge_external_backpack` VALUES (1,'https://api.badgr.io/v2','https://badgr.io','2',1,NULL); +/*!40000 ALTER TABLE `mdl_badge_external_backpack` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_badge_external_identifier` +-- + +DROP TABLE IF EXISTS `mdl_badge_external_identifier`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_badge_external_identifier` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `sitebackpackid` bigint(10) NOT NULL, + `internalid` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `externalid` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `type` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_badgexteiden_sitintext_uix` (`sitebackpackid`,`internalid`,`externalid`,`type`), + KEY `mdl_badgexteiden_sit_ix` (`sitebackpackid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Setting for external badges mappings'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_badge_external_identifier` +-- + +LOCK TABLES `mdl_badge_external_identifier` WRITE; +/*!40000 ALTER TABLE `mdl_badge_external_identifier` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_badge_external_identifier` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_badge_issued` +-- + +DROP TABLE IF EXISTS `mdl_badge_issued`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_badge_issued` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `badgeid` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `uniquehash` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `dateissued` bigint(10) NOT NULL DEFAULT 0, + `dateexpire` bigint(10) DEFAULT NULL, + `visible` tinyint(1) NOT NULL DEFAULT 0, + `issuernotified` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_badgissu_baduse_uix` (`badgeid`,`userid`), + KEY `mdl_badgissu_bad_ix` (`badgeid`), + KEY `mdl_badgissu_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines issued badges'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_badge_issued` +-- + +LOCK TABLES `mdl_badge_issued` WRITE; +/*!40000 ALTER TABLE `mdl_badge_issued` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_badge_issued` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_badge_manual_award` +-- + +DROP TABLE IF EXISTS `mdl_badge_manual_award`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_badge_manual_award` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `badgeid` bigint(10) NOT NULL, + `recipientid` bigint(10) NOT NULL, + `issuerid` bigint(10) NOT NULL, + `issuerrole` bigint(10) NOT NULL, + `datemet` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_badgmanuawar_bad_ix` (`badgeid`), + KEY `mdl_badgmanuawar_rec_ix` (`recipientid`), + KEY `mdl_badgmanuawar_iss_ix` (`issuerid`), + KEY `mdl_badgmanuawar_iss2_ix` (`issuerrole`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Track manual award criteria for badges'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_badge_manual_award` +-- + +LOCK TABLES `mdl_badge_manual_award` WRITE; +/*!40000 ALTER TABLE `mdl_badge_manual_award` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_badge_manual_award` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_badge_related` +-- + +DROP TABLE IF EXISTS `mdl_badge_related`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_badge_related` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `badgeid` bigint(10) NOT NULL DEFAULT 0, + `relatedbadgeid` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_badgrela_badrel_uix` (`badgeid`,`relatedbadgeid`), + KEY `mdl_badgrela_bad_ix` (`badgeid`), + KEY `mdl_badgrela_rel_ix` (`relatedbadgeid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines badge related for badges'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_badge_related` +-- + +LOCK TABLES `mdl_badge_related` WRITE; +/*!40000 ALTER TABLE `mdl_badge_related` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_badge_related` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_block` +-- + +DROP TABLE IF EXISTS `mdl_block`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_block` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `cron` bigint(10) NOT NULL DEFAULT 0, + `lastcron` bigint(10) NOT NULL DEFAULT 0, + `visible` tinyint(1) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_bloc_nam_uix` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='contains all installed blocks'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_block` +-- + +LOCK TABLES `mdl_block` WRITE; +/*!40000 ALTER TABLE `mdl_block` DISABLE KEYS */; +INSERT INTO `mdl_block` VALUES (1,'activity_modules',0,0,1),(2,'activity_results',0,0,1),(3,'admin_bookmarks',0,0,1),(4,'badges',0,0,1),(5,'blog_menu',0,0,1),(6,'blog_recent',0,0,1),(7,'blog_tags',0,0,1),(8,'calendar_month',0,0,1),(9,'calendar_upcoming',0,0,1),(10,'comments',0,0,1),(11,'completionstatus',0,0,1),(12,'course_list',0,0,1),(13,'course_summary',0,0,1),(14,'feedback',0,0,1),(15,'globalsearch',0,0,1),(16,'glossary_random',0,0,1),(17,'html',0,0,1),(18,'login',0,0,1),(19,'lp',0,0,1),(20,'mentees',0,0,1),(21,'mnet_hosts',0,0,1),(22,'myoverview',0,0,1),(23,'myprofile',0,0,1),(24,'navigation',0,0,1),(25,'news_items',0,0,1),(26,'online_users',0,0,1),(27,'private_files',0,0,1),(28,'quiz_results',0,0,0),(29,'recent_activity',0,0,1),(30,'recentlyaccessedcourses',0,0,1),(31,'recentlyaccesseditems',0,0,1),(32,'rss_client',0,0,1),(33,'search_forums',0,0,1),(34,'section_links',0,0,1),(35,'selfcompletion',0,0,1),(36,'settings',0,0,1),(37,'site_main_menu',0,0,1),(38,'social_activities',0,0,1),(39,'starredcourses',0,0,1),(40,'tag_flickr',0,0,1),(41,'tag_youtube',0,0,0),(42,'tags',0,0,1),(43,'timeline',0,0,1); +/*!40000 ALTER TABLE `mdl_block` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_block_instances` +-- + +DROP TABLE IF EXISTS `mdl_block_instances`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_block_instances` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `blockname` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `parentcontextid` bigint(10) NOT NULL, + `showinsubcontexts` smallint(4) NOT NULL, + `requiredbytheme` smallint(4) NOT NULL DEFAULT 0, + `pagetypepattern` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `subpagepattern` varchar(16) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `defaultregion` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `defaultweight` bigint(10) NOT NULL, + `configdata` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_blocinst_parshopagsub_ix` (`parentcontextid`,`showinsubcontexts`,`pagetypepattern`,`subpagepattern`), + KEY `mdl_blocinst_tim_ix` (`timemodified`), + KEY `mdl_blocinst_par_ix` (`parentcontextid`) +) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table stores block instances. The type of block this is'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_block_instances` +-- + +LOCK TABLES `mdl_block_instances` WRITE; +/*!40000 ALTER TABLE `mdl_block_instances` DISABLE KEYS */; +INSERT INTO `mdl_block_instances` VALUES (1,'admin_bookmarks',1,0,0,'admin-*',NULL,'side-pre',2,'',1619623710,1619623710),(2,'timeline',1,0,0,'my-index','2','side-post',0,'',1619623710,1619623710),(3,'private_files',1,0,0,'my-index','2','side-post',1,'',1619623710,1619623710),(4,'online_users',1,0,0,'my-index','2','side-post',2,'',1619623710,1619623710),(5,'badges',1,0,0,'my-index','2','side-post',3,'',1619623710,1619623710),(6,'calendar_month',1,0,0,'my-index','2','side-post',4,'',1619623710,1619623710),(7,'calendar_upcoming',1,0,0,'my-index','2','side-post',5,'',1619623710,1619623710),(8,'lp',1,0,0,'my-index','2','content',0,'',1619623710,1619623710),(9,'recentlyaccessedcourses',1,0,0,'my-index','2','content',1,'',1619623710,1619623710),(10,'myoverview',1,0,0,'my-index','2','content',2,'',1619623710,1619623710),(20,'html',1,1,0,'my-index','2','content',0,'Tzo4OiJzdGRDbGFzcyI6Mzp7czo0OiJ0ZXh0IjtzOjE5MDoiPHAgZGlyPSJsdHIiIHN0eWxlPSJ0ZXh0LWFsaWduOiBsZWZ0OyI+U2hvdyBvcmdhbml6YXRpb24gbG9nby4gU2hvdyBpbmZvcm1hdGlvbiBhYm91dCB3aG8gdGhlIFdlbGwgRGV2aWNlIGlzIG1hbmFnZWQgYnkgYW5kIHdoYXQgaXRzIHB1cnBvc2UgaXMgYW5kIGlmIG5lY2Vzc2FyeSwgY29udGFjdCBpbmZvcm1hdGlvbi48YnI+PC9wPiI7czo1OiJ0aXRsZSI7czoyNDoiTmFtZSBvZiBUcmFpbmluZyBQcm9ncmFtIjtzOjY6ImZvcm1hdCI7czoxOiIxIjt9',1619624980,1619625062),(21,'timeline',5,0,0,'my-index','5','side-post',0,'',1619626356,1619626356),(22,'private_files',5,0,0,'my-index','5','side-post',1,'',1619626356,1619626356),(23,'online_users',5,0,0,'my-index','5','side-post',2,'',1619626356,1619626356),(24,'badges',5,0,0,'my-index','5','side-post',3,'',1619626356,1619626356),(25,'calendar_month',5,0,0,'my-index','5','side-post',4,'',1619626356,1619626356),(26,'calendar_upcoming',5,0,0,'my-index','5','side-post',5,'',1619626356,1619626356),(27,'lp',5,0,0,'my-index','5','content',0,'',1619626356,1619626356),(28,'recentlyaccessedcourses',5,0,0,'my-index','5','content',1,'',1619626356,1619626356),(29,'myoverview',5,0,0,'my-index','5','content',2,'',1619626356,1619626356),(30,'html',5,1,0,'my-index','5','content',0,'Tzo4OiJzdGRDbGFzcyI6Mzp7czo0OiJ0ZXh0IjtzOjE5MDoiPHAgZGlyPSJsdHIiIHN0eWxlPSJ0ZXh0LWFsaWduOiBsZWZ0OyI+U2hvdyBvcmdhbml6YXRpb24gbG9nby4gU2hvdyBpbmZvcm1hdGlvbiBhYm91dCB3aG8gdGhlIFdlbGwgRGV2aWNlIGlzIG1hbmFnZWQgYnkgYW5kIHdoYXQgaXRzIHB1cnBvc2UgaXMgYW5kIGlmIG5lY2Vzc2FyeSwgY29udGFjdCBpbmZvcm1hdGlvbi48YnI+PC9wPiI7czo1OiJ0aXRsZSI7czoyNDoiTmFtZSBvZiBUcmFpbmluZyBQcm9ncmFtIjtzOjY6ImZvcm1hdCI7czoxOiIxIjt9',1619626356,1619626356); +/*!40000 ALTER TABLE `mdl_block_instances` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_block_positions` +-- + +DROP TABLE IF EXISTS `mdl_block_positions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_block_positions` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `blockinstanceid` bigint(10) NOT NULL, + `contextid` bigint(10) NOT NULL, + `pagetype` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `subpage` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `visible` smallint(4) NOT NULL, + `region` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `weight` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_blocposi_bloconpagsub_uix` (`blockinstanceid`,`contextid`,`pagetype`,`subpage`), + KEY `mdl_blocposi_blo_ix` (`blockinstanceid`), + KEY `mdl_blocposi_con_ix` (`contextid`) +) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the position of a sticky block_instance on a another '; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_block_positions` +-- + +LOCK TABLES `mdl_block_positions` WRITE; +/*!40000 ALTER TABLE `mdl_block_positions` DISABLE KEYS */; +INSERT INTO `mdl_block_positions` VALUES (1,8,1,'my-index','2',0,'content',0),(2,3,1,'my-index','2',0,'side-post',1),(3,4,1,'my-index','2',0,'side-post',2),(4,5,1,'my-index','2',0,'side-post',3),(5,27,5,'my-index','5',0,'content',0),(6,22,5,'my-index','5',0,'side-post',1),(7,23,5,'my-index','5',0,'side-post',2),(8,24,5,'my-index','5',0,'side-post',3); +/*!40000 ALTER TABLE `mdl_block_positions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_block_recent_activity` +-- + +DROP TABLE IF EXISTS `mdl_block_recent_activity`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_block_recent_activity` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `courseid` bigint(10) NOT NULL, + `cmid` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `action` tinyint(1) NOT NULL, + `modname` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_blocreceacti_coutim_ix` (`courseid`,`timecreated`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Recent activity block'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_block_recent_activity` +-- + +LOCK TABLES `mdl_block_recent_activity` WRITE; +/*!40000 ALTER TABLE `mdl_block_recent_activity` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_block_recent_activity` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_block_recentlyaccesseditems` +-- + +DROP TABLE IF EXISTS `mdl_block_recentlyaccesseditems`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_block_recentlyaccesseditems` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `courseid` bigint(10) NOT NULL, + `cmid` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `timeaccess` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_blocrece_usecoucmi_uix` (`userid`,`courseid`,`cmid`), + KEY `mdl_blocrece_use_ix` (`userid`), + KEY `mdl_blocrece_cou_ix` (`courseid`), + KEY `mdl_blocrece_cmi_ix` (`cmid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Most recently accessed items accessed by a user'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_block_recentlyaccesseditems` +-- + +LOCK TABLES `mdl_block_recentlyaccesseditems` WRITE; +/*!40000 ALTER TABLE `mdl_block_recentlyaccesseditems` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_block_recentlyaccesseditems` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_block_rss_client` +-- + +DROP TABLE IF EXISTS `mdl_block_rss_client`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_block_rss_client` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL DEFAULT 0, + `title` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `preferredtitle` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `shared` tinyint(2) NOT NULL DEFAULT 0, + `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `skiptime` bigint(10) NOT NULL DEFAULT 0, + `skipuntil` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Remote news feed information. Contains the news feed id, the'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_block_rss_client` +-- + +LOCK TABLES `mdl_block_rss_client` WRITE; +/*!40000 ALTER TABLE `mdl_block_rss_client` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_block_rss_client` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_blog_association` +-- + +DROP TABLE IF EXISTS `mdl_blog_association`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_blog_association` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `contextid` bigint(10) NOT NULL, + `blogid` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_blogasso_con_ix` (`contextid`), + KEY `mdl_blogasso_blo_ix` (`blogid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Associations of blog entries with courses and module instanc'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_blog_association` +-- + +LOCK TABLES `mdl_blog_association` WRITE; +/*!40000 ALTER TABLE `mdl_blog_association` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_blog_association` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_blog_external` +-- + +DROP TABLE IF EXISTS `mdl_blog_external`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_blog_external` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `url` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `filtertags` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `failedlastsync` tinyint(1) NOT NULL DEFAULT 0, + `timemodified` bigint(10) DEFAULT NULL, + `timefetched` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_blogexte_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='External blog links used for RSS copying of blog entries to '; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_blog_external` +-- + +LOCK TABLES `mdl_blog_external` WRITE; +/*!40000 ALTER TABLE `mdl_blog_external` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_blog_external` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_book` +-- + +DROP TABLE IF EXISTS `mdl_book`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_book` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `introformat` smallint(4) NOT NULL DEFAULT 0, + `numbering` smallint(4) NOT NULL DEFAULT 0, + `navstyle` smallint(4) NOT NULL DEFAULT 1, + `customtitles` tinyint(2) NOT NULL DEFAULT 0, + `revision` bigint(10) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines book'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_book` +-- + +LOCK TABLES `mdl_book` WRITE; +/*!40000 ALTER TABLE `mdl_book` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_book` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_book_chapters` +-- + +DROP TABLE IF EXISTS `mdl_book_chapters`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_book_chapters` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `bookid` bigint(10) NOT NULL DEFAULT 0, + `pagenum` bigint(10) NOT NULL DEFAULT 0, + `subchapter` bigint(10) NOT NULL DEFAULT 0, + `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `contentformat` smallint(4) NOT NULL DEFAULT 0, + `hidden` tinyint(2) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `importsrc` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `mdl_bookchap_boo_ix` (`bookid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines book_chapters'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_book_chapters` +-- + +LOCK TABLES `mdl_book_chapters` WRITE; +/*!40000 ALTER TABLE `mdl_book_chapters` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_book_chapters` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_cache_filters` +-- + +DROP TABLE IF EXISTS `mdl_cache_filters`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_cache_filters` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `filter` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `version` bigint(10) NOT NULL DEFAULT 0, + `md5key` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `rawtext` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_cachfilt_filmd5_ix` (`filter`,`md5key`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='For keeping information about cached data'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_cache_filters` +-- + +LOCK TABLES `mdl_cache_filters` WRITE; +/*!40000 ALTER TABLE `mdl_cache_filters` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_cache_filters` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_cache_flags` +-- + +DROP TABLE IF EXISTS `mdl_cache_flags`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_cache_flags` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `flagtype` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `expiry` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_cachflag_fla_ix` (`flagtype`), + KEY `mdl_cachflag_nam_ix` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Cache of time-sensitive flags'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_cache_flags` +-- + +LOCK TABLES `mdl_cache_flags` WRITE; +/*!40000 ALTER TABLE `mdl_cache_flags` DISABLE KEYS */; +INSERT INTO `mdl_cache_flags` VALUES (1,'userpreferenceschanged','2',1619627006,'1',1619655806),(2,'userpreferenceschanged','3',1619624264,'1',1619653064),(3,'userpreferenceschanged','4',1619624308,'1',1619653108),(4,'userpreferenceschanged','5',1619624342,'1',1619653142),(5,'userpreferenceschanged','6',1619624369,'1',1619653169),(6,'accesslib/dirtyusers','6',1619624454,'1',1619653254),(7,'accesslib/dirtycontexts','/1',1619625361,'1',1619654161); +/*!40000 ALTER TABLE `mdl_cache_flags` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_capabilities` +-- + +DROP TABLE IF EXISTS `mdl_capabilities`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_capabilities` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `captype` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `contextlevel` bigint(10) NOT NULL DEFAULT 0, + `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `riskbitmask` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_capa_nam_uix` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=700 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='this defines all capabilities'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_capabilities` +-- + +LOCK TABLES `mdl_capabilities` WRITE; +/*!40000 ALTER TABLE `mdl_capabilities` DISABLE KEYS */; +INSERT INTO `mdl_capabilities` VALUES (1,'moodle/site:config','write',10,'moodle',62),(2,'moodle/site:configview','read',10,'moodle',0),(3,'moodle/site:readallmessages','read',10,'moodle',8),(4,'moodle/site:manageallmessaging','write',10,'moodle',8),(5,'moodle/site:deleteanymessage','write',10,'moodle',32),(6,'moodle/site:sendmessage','write',10,'moodle',16),(7,'moodle/site:senderrormessage','write',10,'moodle',16),(8,'moodle/site:deleteownmessage','write',10,'moodle',0),(9,'moodle/site:approvecourse','write',40,'moodle',4),(10,'moodle/backup:backupcourse','write',50,'moodle',28),(11,'moodle/backup:backupsection','write',50,'moodle',28),(12,'moodle/backup:backupactivity','write',70,'moodle',28),(13,'moodle/backup:backuptargetimport','read',50,'moodle',28),(14,'moodle/backup:downloadfile','write',50,'moodle',28),(15,'moodle/backup:configure','write',50,'moodle',28),(16,'moodle/backup:userinfo','read',50,'moodle',8),(17,'moodle/backup:anonymise','read',50,'moodle',8),(18,'moodle/restore:restorecourse','write',50,'moodle',28),(19,'moodle/restore:restoresection','write',50,'moodle',28),(20,'moodle/restore:restoreactivity','write',50,'moodle',28),(21,'moodle/restore:viewautomatedfilearea','write',50,'moodle',28),(22,'moodle/restore:restoretargetimport','write',50,'moodle',28),(23,'moodle/restore:uploadfile','write',50,'moodle',28),(24,'moodle/restore:configure','write',50,'moodle',28),(25,'moodle/restore:rolldates','write',50,'moodle',0),(26,'moodle/restore:userinfo','write',50,'moodle',30),(27,'moodle/restore:createuser','write',10,'moodle',24),(28,'moodle/site:manageblocks','write',80,'moodle',20),(29,'moodle/site:accessallgroups','read',70,'moodle',0),(30,'moodle/site:viewanonymousevents','read',70,'moodle',8),(31,'moodle/site:viewfullnames','read',70,'moodle',0),(32,'moodle/site:viewuseridentity','read',70,'moodle',0),(33,'moodle/site:viewreports','read',50,'moodle',8),(34,'moodle/site:trustcontent','write',70,'moodle',4),(35,'moodle/site:uploadusers','write',10,'moodle',24),(36,'moodle/filter:manage','write',50,'moodle',0),(37,'moodle/user:create','write',10,'moodle',24),(38,'moodle/user:delete','write',10,'moodle',40),(39,'moodle/user:update','write',10,'moodle',24),(40,'moodle/user:viewdetails','read',50,'moodle',0),(41,'moodle/user:viewalldetails','read',30,'moodle',8),(42,'moodle/user:viewlastip','read',30,'moodle',8),(43,'moodle/user:viewhiddendetails','read',50,'moodle',8),(44,'moodle/user:loginas','write',50,'moodle',30),(45,'moodle/user:managesyspages','write',10,'moodle',0),(46,'moodle/user:manageblocks','write',30,'moodle',0),(47,'moodle/user:manageownblocks','write',10,'moodle',0),(48,'moodle/user:manageownfiles','write',10,'moodle',0),(49,'moodle/user:ignoreuserquota','write',10,'moodle',0),(50,'moodle/my:configsyspages','write',10,'moodle',0),(51,'moodle/role:assign','write',50,'moodle',28),(52,'moodle/role:review','read',50,'moodle',8),(53,'moodle/role:override','write',50,'moodle',28),(54,'moodle/role:safeoverride','write',50,'moodle',16),(55,'moodle/role:manage','write',10,'moodle',28),(56,'moodle/role:switchroles','read',50,'moodle',12),(57,'moodle/category:manage','write',40,'moodle',4),(58,'moodle/category:viewcourselist','read',40,'moodle',0),(59,'moodle/category:viewhiddencategories','read',40,'moodle',0),(60,'moodle/cohort:manage','write',40,'moodle',0),(61,'moodle/cohort:assign','write',40,'moodle',0),(62,'moodle/cohort:view','read',50,'moodle',0),(63,'moodle/course:create','write',40,'moodle',4),(64,'moodle/course:creategroupconversations','write',50,'moodle',4),(65,'moodle/course:request','write',40,'moodle',0),(66,'moodle/course:delete','write',50,'moodle',32),(67,'moodle/course:update','write',50,'moodle',4),(68,'moodle/course:view','read',50,'moodle',0),(69,'moodle/course:enrolreview','read',50,'moodle',8),(70,'moodle/course:enrolconfig','write',50,'moodle',8),(71,'moodle/course:reviewotherusers','read',50,'moodle',0),(72,'moodle/course:bulkmessaging','write',50,'moodle',16),(73,'moodle/course:viewhiddenuserfields','read',50,'moodle',8),(74,'moodle/course:viewhiddencourses','read',50,'moodle',0),(75,'moodle/course:visibility','write',50,'moodle',0),(76,'moodle/course:managefiles','write',50,'moodle',4),(77,'moodle/course:ignoreavailabilityrestrictions','read',70,'moodle',0),(78,'moodle/course:ignorefilesizelimits','write',50,'moodle',0),(79,'moodle/course:manageactivities','write',70,'moodle',4),(80,'moodle/course:activityvisibility','write',70,'moodle',0),(81,'moodle/course:viewhiddenactivities','read',70,'moodle',0),(82,'moodle/course:viewparticipants','read',50,'moodle',0),(83,'moodle/course:changefullname','write',50,'moodle',4),(84,'moodle/course:changeshortname','write',50,'moodle',4),(85,'moodle/course:changelockedcustomfields','write',50,'moodle',16),(86,'moodle/course:configurecustomfields','write',10,'moodle',16),(87,'moodle/course:renameroles','write',50,'moodle',0),(88,'moodle/course:changeidnumber','write',50,'moodle',4),(89,'moodle/course:changecategory','write',50,'moodle',4),(90,'moodle/course:changesummary','write',50,'moodle',4),(91,'moodle/course:setforcedlanguage','write',50,'moodle',0),(92,'moodle/site:viewparticipants','read',10,'moodle',0),(93,'moodle/course:isincompletionreports','read',50,'moodle',0),(94,'moodle/course:viewscales','read',50,'moodle',0),(95,'moodle/course:managescales','write',50,'moodle',0),(96,'moodle/course:managegroups','write',50,'moodle',4),(97,'moodle/course:reset','write',50,'moodle',32),(98,'moodle/course:viewsuspendedusers','read',50,'moodle',0),(99,'moodle/course:tag','write',50,'moodle',16),(100,'moodle/blog:view','read',10,'moodle',0),(101,'moodle/blog:search','read',10,'moodle',0),(102,'moodle/blog:viewdrafts','read',10,'moodle',8),(103,'moodle/blog:create','write',10,'moodle',16),(104,'moodle/blog:manageentries','write',10,'moodle',16),(105,'moodle/blog:manageexternal','write',10,'moodle',16),(106,'moodle/calendar:manageownentries','write',50,'moodle',16),(107,'moodle/calendar:managegroupentries','write',50,'moodle',16),(108,'moodle/calendar:manageentries','write',50,'moodle',16),(109,'moodle/user:editprofile','write',30,'moodle',24),(110,'moodle/user:editownprofile','write',10,'moodle',16),(111,'moodle/user:changeownpassword','write',10,'moodle',0),(112,'moodle/user:readuserposts','read',30,'moodle',0),(113,'moodle/user:readuserblogs','read',30,'moodle',0),(114,'moodle/user:viewuseractivitiesreport','read',30,'moodle',8),(115,'moodle/user:editmessageprofile','write',30,'moodle',16),(116,'moodle/user:editownmessageprofile','write',10,'moodle',0),(117,'moodle/question:managecategory','write',50,'moodle',20),(118,'moodle/question:add','write',50,'moodle',20),(119,'moodle/question:editmine','write',50,'moodle',20),(120,'moodle/question:editall','write',50,'moodle',20),(121,'moodle/question:viewmine','read',50,'moodle',0),(122,'moodle/question:viewall','read',50,'moodle',0),(123,'moodle/question:usemine','read',50,'moodle',0),(124,'moodle/question:useall','read',50,'moodle',0),(125,'moodle/question:movemine','write',50,'moodle',0),(126,'moodle/question:moveall','write',50,'moodle',0),(127,'moodle/question:config','write',10,'moodle',2),(128,'moodle/question:flag','write',50,'moodle',0),(129,'moodle/question:tagmine','write',50,'moodle',0),(130,'moodle/question:tagall','write',50,'moodle',0),(131,'moodle/site:doclinks','read',10,'moodle',0),(132,'moodle/course:sectionvisibility','write',50,'moodle',0),(133,'moodle/course:useremail','write',50,'moodle',0),(134,'moodle/course:viewhiddensections','read',50,'moodle',0),(135,'moodle/course:setcurrentsection','write',50,'moodle',0),(136,'moodle/course:movesections','write',50,'moodle',0),(137,'moodle/site:mnetlogintoremote','read',10,'moodle',0),(138,'moodle/grade:viewall','read',50,'moodle',8),(139,'moodle/grade:view','read',50,'moodle',0),(140,'moodle/grade:viewhidden','read',50,'moodle',8),(141,'moodle/grade:import','write',50,'moodle',12),(142,'moodle/grade:export','read',50,'moodle',8),(143,'moodle/grade:manage','write',50,'moodle',12),(144,'moodle/grade:edit','write',50,'moodle',12),(145,'moodle/grade:managegradingforms','write',50,'moodle',12),(146,'moodle/grade:sharegradingforms','write',10,'moodle',4),(147,'moodle/grade:managesharedforms','write',10,'moodle',4),(148,'moodle/grade:manageoutcomes','write',50,'moodle',0),(149,'moodle/grade:manageletters','write',50,'moodle',0),(150,'moodle/grade:hide','write',50,'moodle',0),(151,'moodle/grade:lock','write',50,'moodle',0),(152,'moodle/grade:unlock','write',50,'moodle',0),(153,'moodle/my:manageblocks','write',10,'moodle',0),(154,'moodle/notes:view','read',50,'moodle',0),(155,'moodle/notes:manage','write',50,'moodle',16),(156,'moodle/tag:manage','write',10,'moodle',16),(157,'moodle/tag:edit','write',10,'moodle',16),(158,'moodle/tag:flag','write',10,'moodle',16),(159,'moodle/tag:editblocks','write',10,'moodle',0),(160,'moodle/block:view','read',80,'moodle',0),(161,'moodle/block:edit','write',80,'moodle',20),(162,'moodle/portfolio:export','read',10,'moodle',0),(163,'moodle/comment:view','read',50,'moodle',0),(164,'moodle/comment:post','write',50,'moodle',24),(165,'moodle/comment:delete','write',50,'moodle',32),(166,'moodle/webservice:createtoken','write',10,'moodle',62),(167,'moodle/webservice:managealltokens','write',10,'moodle',42),(168,'moodle/webservice:createmobiletoken','write',10,'moodle',24),(169,'moodle/rating:view','read',50,'moodle',0),(170,'moodle/rating:viewany','read',50,'moodle',8),(171,'moodle/rating:viewall','read',50,'moodle',8),(172,'moodle/rating:rate','write',50,'moodle',0),(173,'moodle/course:markcomplete','write',50,'moodle',0),(174,'moodle/course:overridecompletion','write',50,'moodle',0),(175,'moodle/badges:manageglobalsettings','write',10,'moodle',34),(176,'moodle/badges:viewbadges','read',50,'moodle',0),(177,'moodle/badges:manageownbadges','write',30,'moodle',0),(178,'moodle/badges:viewotherbadges','read',30,'moodle',0),(179,'moodle/badges:earnbadge','write',50,'moodle',0),(180,'moodle/badges:createbadge','write',50,'moodle',16),(181,'moodle/badges:deletebadge','write',50,'moodle',32),(182,'moodle/badges:configuredetails','write',50,'moodle',16),(183,'moodle/badges:configurecriteria','write',50,'moodle',4),(184,'moodle/badges:configuremessages','write',50,'moodle',16),(185,'moodle/badges:awardbadge','write',50,'moodle',16),(186,'moodle/badges:revokebadge','write',50,'moodle',16),(187,'moodle/badges:viewawarded','read',50,'moodle',8),(188,'moodle/site:forcelanguage','read',10,'moodle',0),(189,'moodle/search:query','read',10,'moodle',0),(190,'moodle/competency:competencymanage','write',40,'moodle',0),(191,'moodle/competency:competencyview','read',40,'moodle',0),(192,'moodle/competency:competencygrade','write',50,'moodle',0),(193,'moodle/competency:coursecompetencymanage','write',50,'moodle',0),(194,'moodle/competency:coursecompetencyconfigure','write',70,'moodle',0),(195,'moodle/competency:coursecompetencygradable','read',50,'moodle',0),(196,'moodle/competency:coursecompetencyview','read',50,'moodle',0),(197,'moodle/competency:evidencedelete','write',30,'moodle',0),(198,'moodle/competency:planmanage','write',30,'moodle',0),(199,'moodle/competency:planmanagedraft','write',30,'moodle',0),(200,'moodle/competency:planmanageown','write',30,'moodle',0),(201,'moodle/competency:planmanageowndraft','write',30,'moodle',0),(202,'moodle/competency:planview','read',30,'moodle',0),(203,'moodle/competency:planviewdraft','read',30,'moodle',0),(204,'moodle/competency:planviewown','read',30,'moodle',0),(205,'moodle/competency:planviewowndraft','read',30,'moodle',0),(206,'moodle/competency:planrequestreview','write',30,'moodle',0),(207,'moodle/competency:planrequestreviewown','write',30,'moodle',0),(208,'moodle/competency:planreview','write',30,'moodle',0),(209,'moodle/competency:plancomment','write',30,'moodle',0),(210,'moodle/competency:plancommentown','write',30,'moodle',0),(211,'moodle/competency:usercompetencyview','read',30,'moodle',0),(212,'moodle/competency:usercompetencyrequestreview','write',30,'moodle',0),(213,'moodle/competency:usercompetencyrequestreviewown','write',30,'moodle',0),(214,'moodle/competency:usercompetencyreview','write',30,'moodle',0),(215,'moodle/competency:usercompetencycomment','write',30,'moodle',0),(216,'moodle/competency:usercompetencycommentown','write',30,'moodle',0),(217,'moodle/competency:templatemanage','write',40,'moodle',0),(218,'moodle/analytics:listinsights','read',50,'moodle',8),(219,'moodle/analytics:managemodels','write',10,'moodle',2),(220,'moodle/competency:templateview','read',40,'moodle',0),(221,'moodle/competency:userevidencemanage','write',30,'moodle',0),(222,'moodle/competency:userevidencemanageown','write',30,'moodle',0),(223,'moodle/competency:userevidenceview','read',30,'moodle',0),(224,'moodle/site:maintenanceaccess','write',10,'moodle',0),(225,'moodle/site:messageanyuser','write',10,'moodle',16),(226,'moodle/site:managecontextlocks','write',70,'moodle',0),(227,'moodle/course:togglecompletion','write',70,'moodle',0),(228,'moodle/analytics:listowninsights','read',10,'moodle',0),(229,'moodle/h5p:setdisplayoptions','write',70,'moodle',0),(230,'moodle/h5p:deploy','write',70,'moodle',4),(231,'moodle/h5p:updatelibraries','write',70,'moodle',4),(232,'moodle/course:recommendactivity','write',10,'moodle',0),(233,'moodle/contentbank:access','read',50,'moodle',0),(234,'moodle/contentbank:upload','write',50,'moodle',16),(235,'moodle/contentbank:deleteanycontent','write',50,'moodle',32),(236,'moodle/contentbank:deleteowncontent','write',50,'moodle',0),(237,'moodle/contentbank:manageanycontent','write',50,'moodle',32),(238,'moodle/contentbank:manageowncontent','write',50,'moodle',0),(239,'moodle/contentbank:useeditor','write',50,'moodle',16),(240,'moodle/contentbank:downloadcontent','read',50,'moodle',0),(241,'moodle/course:downloadcoursecontent','read',50,'moodle',0),(242,'moodle/course:configuredownloadcontent','write',50,'moodle',0),(243,'moodle/payment:manageaccounts','write',50,'moodle',42),(244,'moodle/payment:viewpayments','read',50,'moodle',8),(245,'mod/assign:view','read',70,'mod_assign',0),(246,'mod/assign:submit','write',70,'mod_assign',0),(247,'mod/assign:grade','write',70,'mod_assign',4),(248,'mod/assign:exportownsubmission','read',70,'mod_assign',0),(249,'mod/assign:addinstance','write',50,'mod_assign',4),(250,'mod/assign:editothersubmission','write',70,'mod_assign',41),(251,'mod/assign:grantextension','write',70,'mod_assign',0),(252,'mod/assign:revealidentities','write',70,'mod_assign',0),(253,'mod/assign:reviewgrades','write',70,'mod_assign',0),(254,'mod/assign:releasegrades','write',70,'mod_assign',0),(255,'mod/assign:managegrades','write',70,'mod_assign',0),(256,'mod/assign:manageallocations','write',70,'mod_assign',0),(257,'mod/assign:viewgrades','read',70,'mod_assign',0),(258,'mod/assign:viewblinddetails','write',70,'mod_assign',8),(259,'mod/assign:receivegradernotifications','read',70,'mod_assign',0),(260,'mod/assign:manageoverrides','write',70,'mod_assign',0),(261,'mod/assign:showhiddengrader','read',70,'mod_assign',0),(262,'mod/assignment:view','read',70,'mod_assignment',0),(263,'mod/assignment:addinstance','write',50,'mod_assignment',4),(264,'mod/assignment:submit','write',70,'mod_assignment',0),(265,'mod/assignment:grade','write',70,'mod_assignment',4),(266,'mod/assignment:exportownsubmission','read',70,'mod_assignment',0),(267,'mod/book:addinstance','write',50,'mod_book',4),(268,'mod/book:read','read',70,'mod_book',0),(269,'mod/book:viewhiddenchapters','read',70,'mod_book',0),(270,'mod/book:edit','write',70,'mod_book',4),(271,'mod/chat:addinstance','write',50,'mod_chat',4),(272,'mod/chat:chat','write',70,'mod_chat',16),(273,'mod/chat:readlog','read',70,'mod_chat',0),(274,'mod/chat:deletelog','write',70,'mod_chat',0),(275,'mod/chat:exportparticipatedsession','read',70,'mod_chat',8),(276,'mod/chat:exportsession','read',70,'mod_chat',8),(277,'mod/chat:view','read',70,'mod_chat',0),(278,'mod/choice:addinstance','write',50,'mod_choice',4),(279,'mod/choice:choose','write',70,'mod_choice',0),(280,'mod/choice:readresponses','read',70,'mod_choice',0),(281,'mod/choice:deleteresponses','write',70,'mod_choice',0),(282,'mod/choice:downloadresponses','read',70,'mod_choice',0),(283,'mod/choice:view','read',70,'mod_choice',0),(284,'mod/data:addinstance','write',50,'mod_data',4),(285,'mod/data:viewentry','read',70,'mod_data',0),(286,'mod/data:writeentry','write',70,'mod_data',16),(287,'mod/data:comment','write',70,'mod_data',16),(288,'mod/data:rate','write',70,'mod_data',0),(289,'mod/data:viewrating','read',70,'mod_data',0),(290,'mod/data:viewanyrating','read',70,'mod_data',8),(291,'mod/data:viewallratings','read',70,'mod_data',8),(292,'mod/data:approve','write',70,'mod_data',16),(293,'mod/data:manageentries','write',70,'mod_data',16),(294,'mod/data:managecomments','write',70,'mod_data',16),(295,'mod/data:managetemplates','write',70,'mod_data',20),(296,'mod/data:viewalluserpresets','read',70,'mod_data',0),(297,'mod/data:manageuserpresets','write',70,'mod_data',20),(298,'mod/data:exportentry','read',70,'mod_data',8),(299,'mod/data:exportownentry','read',70,'mod_data',0),(300,'mod/data:exportallentries','read',70,'mod_data',8),(301,'mod/data:exportuserinfo','read',70,'mod_data',8),(302,'mod/data:view','read',70,'mod_data',0),(303,'mod/feedback:addinstance','write',50,'mod_feedback',4),(304,'mod/feedback:view','read',70,'mod_feedback',0),(305,'mod/feedback:complete','write',70,'mod_feedback',16),(306,'mod/feedback:viewanalysepage','read',70,'mod_feedback',8),(307,'mod/feedback:deletesubmissions','write',70,'mod_feedback',0),(308,'mod/feedback:mapcourse','write',70,'mod_feedback',0),(309,'mod/feedback:edititems','write',70,'mod_feedback',20),(310,'mod/feedback:createprivatetemplate','write',70,'mod_feedback',16),(311,'mod/feedback:createpublictemplate','write',70,'mod_feedback',16),(312,'mod/feedback:deletetemplate','write',70,'mod_feedback',0),(313,'mod/feedback:viewreports','read',70,'mod_feedback',8),(314,'mod/feedback:receivemail','read',70,'mod_feedback',8),(315,'mod/folder:addinstance','write',50,'mod_folder',4),(316,'mod/folder:view','read',70,'mod_folder',0),(317,'mod/folder:managefiles','write',70,'mod_folder',20),(318,'mod/forum:addinstance','write',50,'mod_forum',4),(319,'mod/forum:viewdiscussion','read',70,'mod_forum',0),(320,'mod/forum:viewhiddentimedposts','read',70,'mod_forum',0),(321,'mod/forum:startdiscussion','write',70,'mod_forum',16),(322,'mod/forum:replypost','write',70,'mod_forum',16),(323,'mod/forum:addnews','write',70,'mod_forum',16),(324,'mod/forum:replynews','write',70,'mod_forum',16),(325,'mod/forum:viewrating','read',70,'mod_forum',0),(326,'mod/forum:viewanyrating','read',70,'mod_forum',8),(327,'mod/forum:viewallratings','read',70,'mod_forum',8),(328,'mod/forum:rate','write',70,'mod_forum',0),(329,'mod/forum:postprivatereply','write',70,'mod_forum',0),(330,'mod/forum:readprivatereplies','read',70,'mod_forum',0),(331,'mod/forum:createattachment','write',70,'mod_forum',16),(332,'mod/forum:deleteownpost','write',70,'mod_forum',0),(333,'mod/forum:deleteanypost','write',70,'mod_forum',0),(334,'mod/forum:splitdiscussions','write',70,'mod_forum',0),(335,'mod/forum:movediscussions','write',70,'mod_forum',0),(336,'mod/forum:pindiscussions','write',70,'mod_forum',0),(337,'mod/forum:editanypost','write',70,'mod_forum',16),(338,'mod/forum:viewqandawithoutposting','read',70,'mod_forum',0),(339,'mod/forum:viewsubscribers','read',70,'mod_forum',0),(340,'mod/forum:managesubscriptions','write',70,'mod_forum',16),(341,'mod/forum:postwithoutthrottling','write',70,'mod_forum',16),(342,'mod/forum:exportdiscussion','read',70,'mod_forum',8),(343,'mod/forum:exportforum','read',70,'mod_forum',8),(344,'mod/forum:exportpost','read',70,'mod_forum',8),(345,'mod/forum:exportownpost','read',70,'mod_forum',8),(346,'mod/forum:addquestion','write',70,'mod_forum',16),(347,'mod/forum:allowforcesubscribe','read',70,'mod_forum',0),(348,'mod/forum:canposttomygroups','write',70,'mod_forum',0),(349,'mod/forum:canoverridediscussionlock','write',70,'mod_forum',0),(350,'mod/forum:canoverridecutoff','write',70,'mod_forum',0),(351,'mod/forum:cantogglefavourite','write',70,'mod_forum',0),(352,'mod/forum:grade','write',70,'mod_forum',0),(353,'mod/glossary:addinstance','write',50,'mod_glossary',4),(354,'mod/glossary:view','read',70,'mod_glossary',0),(355,'mod/glossary:write','write',70,'mod_glossary',16),(356,'mod/glossary:manageentries','write',70,'mod_glossary',16),(357,'mod/glossary:managecategories','write',70,'mod_glossary',16),(358,'mod/glossary:comment','write',70,'mod_glossary',16),(359,'mod/glossary:managecomments','write',70,'mod_glossary',16),(360,'mod/glossary:import','write',70,'mod_glossary',16),(361,'mod/glossary:export','read',70,'mod_glossary',0),(362,'mod/glossary:approve','write',70,'mod_glossary',16),(363,'mod/glossary:rate','write',70,'mod_glossary',0),(364,'mod/glossary:viewrating','read',70,'mod_glossary',0),(365,'mod/glossary:viewanyrating','read',70,'mod_glossary',8),(366,'mod/glossary:viewallratings','read',70,'mod_glossary',8),(367,'mod/glossary:exportentry','read',70,'mod_glossary',8),(368,'mod/glossary:exportownentry','read',70,'mod_glossary',0),(369,'mod/h5pactivity:view','read',70,'mod_h5pactivity',0),(370,'mod/h5pactivity:addinstance','write',50,'mod_h5pactivity',0),(371,'mod/h5pactivity:submit','write',70,'mod_h5pactivity',0),(372,'mod/h5pactivity:reviewattempts','read',70,'mod_h5pactivity',0),(373,'mod/imscp:view','read',70,'mod_imscp',0),(374,'mod/imscp:addinstance','write',50,'mod_imscp',4),(375,'mod/label:addinstance','write',50,'mod_label',4),(376,'mod/label:view','read',70,'mod_label',0),(377,'mod/lesson:addinstance','write',50,'mod_lesson',4),(378,'mod/lesson:edit','write',70,'mod_lesson',4),(379,'mod/lesson:grade','write',70,'mod_lesson',20),(380,'mod/lesson:viewreports','read',70,'mod_lesson',8),(381,'mod/lesson:manage','write',70,'mod_lesson',0),(382,'mod/lesson:manageoverrides','write',70,'mod_lesson',0),(383,'mod/lesson:view','read',70,'mod_lesson',0),(384,'mod/lti:view','read',70,'mod_lti',0),(385,'mod/lti:addinstance','write',50,'mod_lti',4),(386,'mod/lti:manage','write',70,'mod_lti',8),(387,'mod/lti:admin','write',70,'mod_lti',8),(388,'mod/lti:addcoursetool','write',50,'mod_lti',0),(389,'mod/lti:addpreconfiguredinstance','write',50,'mod_lti',0),(390,'mod/lti:addmanualinstance','write',50,'mod_lti',0),(391,'mod/lti:requesttooladd','write',50,'mod_lti',0),(392,'mod/page:view','read',70,'mod_page',0),(393,'mod/page:addinstance','write',50,'mod_page',4),(394,'mod/quiz:view','read',70,'mod_quiz',0),(395,'mod/quiz:addinstance','write',50,'mod_quiz',4),(396,'mod/quiz:attempt','write',70,'mod_quiz',16),(397,'mod/quiz:reviewmyattempts','read',70,'mod_quiz',0),(398,'mod/quiz:manage','write',70,'mod_quiz',16),(399,'mod/quiz:manageoverrides','write',70,'mod_quiz',0),(400,'mod/quiz:preview','write',70,'mod_quiz',0),(401,'mod/quiz:grade','write',70,'mod_quiz',20),(402,'mod/quiz:regrade','write',70,'mod_quiz',16),(403,'mod/quiz:viewreports','read',70,'mod_quiz',8),(404,'mod/quiz:deleteattempts','write',70,'mod_quiz',32),(405,'mod/quiz:ignoretimelimits','read',70,'mod_quiz',0),(406,'mod/quiz:emailconfirmsubmission','read',70,'mod_quiz',0),(407,'mod/quiz:emailnotifysubmission','read',70,'mod_quiz',0),(408,'mod/quiz:emailwarnoverdue','read',70,'mod_quiz',0),(409,'mod/resource:view','read',70,'mod_resource',0),(410,'mod/resource:addinstance','write',50,'mod_resource',4),(411,'mod/scorm:addinstance','write',50,'mod_scorm',4),(412,'mod/scorm:viewreport','read',70,'mod_scorm',0),(413,'mod/scorm:skipview','read',70,'mod_scorm',0),(414,'mod/scorm:savetrack','write',70,'mod_scorm',0),(415,'mod/scorm:viewscores','read',70,'mod_scorm',0),(416,'mod/scorm:deleteresponses','write',70,'mod_scorm',0),(417,'mod/scorm:deleteownresponses','write',70,'mod_scorm',0),(418,'mod/survey:addinstance','write',50,'mod_survey',4),(419,'mod/survey:participate','read',70,'mod_survey',0),(420,'mod/survey:readresponses','read',70,'mod_survey',0),(421,'mod/survey:download','read',70,'mod_survey',0),(422,'mod/url:view','read',70,'mod_url',0),(423,'mod/url:addinstance','write',50,'mod_url',4),(424,'mod/wiki:addinstance','write',50,'mod_wiki',4),(425,'mod/wiki:viewpage','read',70,'mod_wiki',0),(426,'mod/wiki:editpage','write',70,'mod_wiki',16),(427,'mod/wiki:createpage','write',70,'mod_wiki',16),(428,'mod/wiki:viewcomment','read',70,'mod_wiki',0),(429,'mod/wiki:editcomment','write',70,'mod_wiki',16),(430,'mod/wiki:managecomment','write',70,'mod_wiki',0),(431,'mod/wiki:managefiles','write',70,'mod_wiki',0),(432,'mod/wiki:overridelock','write',70,'mod_wiki',0),(433,'mod/wiki:managewiki','write',70,'mod_wiki',0),(434,'mod/workshop:view','read',70,'mod_workshop',0),(435,'mod/workshop:addinstance','write',50,'mod_workshop',4),(436,'mod/workshop:switchphase','write',70,'mod_workshop',0),(437,'mod/workshop:editdimensions','write',70,'mod_workshop',4),(438,'mod/workshop:submit','write',70,'mod_workshop',0),(439,'mod/workshop:peerassess','write',70,'mod_workshop',0),(440,'mod/workshop:manageexamples','write',70,'mod_workshop',0),(441,'mod/workshop:allocate','write',70,'mod_workshop',0),(442,'mod/workshop:publishsubmissions','write',70,'mod_workshop',0),(443,'mod/workshop:viewauthornames','read',70,'mod_workshop',0),(444,'mod/workshop:viewreviewernames','read',70,'mod_workshop',0),(445,'mod/workshop:viewallsubmissions','read',70,'mod_workshop',0),(446,'mod/workshop:viewpublishedsubmissions','read',70,'mod_workshop',0),(447,'mod/workshop:viewauthorpublished','read',70,'mod_workshop',0),(448,'mod/workshop:viewallassessments','read',70,'mod_workshop',0),(449,'mod/workshop:overridegrades','write',70,'mod_workshop',0),(450,'mod/workshop:ignoredeadlines','write',70,'mod_workshop',0),(451,'mod/workshop:deletesubmissions','write',70,'mod_workshop',0),(452,'mod/workshop:exportsubmissions','read',70,'mod_workshop',0),(453,'auth/oauth2:managelinkedlogins','write',30,'auth_oauth2',0),(454,'enrol/category:synchronised','write',10,'enrol_category',0),(455,'enrol/category:config','write',50,'enrol_category',0),(456,'enrol/cohort:config','write',50,'enrol_cohort',0),(457,'enrol/cohort:unenrol','write',50,'enrol_cohort',0),(458,'enrol/database:unenrol','write',50,'enrol_database',0),(459,'enrol/database:config','write',50,'enrol_database',0),(460,'enrol/fee:config','write',50,'enrol_fee',0),(461,'enrol/fee:manage','write',50,'enrol_fee',0),(462,'enrol/fee:unenrol','write',50,'enrol_fee',0),(463,'enrol/fee:unenrolself','write',50,'enrol_fee',0),(464,'enrol/flatfile:manage','write',50,'enrol_flatfile',0),(465,'enrol/flatfile:unenrol','write',50,'enrol_flatfile',0),(466,'enrol/guest:config','write',50,'enrol_guest',0),(467,'enrol/imsenterprise:config','write',50,'enrol_imsenterprise',0),(468,'enrol/ldap:manage','write',50,'enrol_ldap',0),(469,'enrol/lti:config','write',50,'enrol_lti',0),(470,'enrol/lti:unenrol','write',50,'enrol_lti',0),(471,'enrol/manual:config','write',50,'enrol_manual',0),(472,'enrol/manual:enrol','write',50,'enrol_manual',0),(473,'enrol/manual:manage','write',50,'enrol_manual',0),(474,'enrol/manual:unenrol','write',50,'enrol_manual',0),(475,'enrol/manual:unenrolself','write',50,'enrol_manual',0),(476,'enrol/meta:config','write',50,'enrol_meta',0),(477,'enrol/meta:selectaslinked','read',50,'enrol_meta',0),(478,'enrol/meta:unenrol','write',50,'enrol_meta',0),(479,'enrol/mnet:config','write',50,'enrol_mnet',0),(480,'enrol/paypal:config','write',50,'enrol_paypal',0),(481,'enrol/paypal:manage','write',50,'enrol_paypal',0),(482,'enrol/paypal:unenrol','write',50,'enrol_paypal',0),(483,'enrol/paypal:unenrolself','write',50,'enrol_paypal',0),(484,'enrol/self:config','write',50,'enrol_self',0),(485,'enrol/self:manage','write',50,'enrol_self',0),(486,'enrol/self:holdkey','write',50,'enrol_self',0),(487,'enrol/self:unenrolself','write',50,'enrol_self',0),(488,'enrol/self:unenrol','write',50,'enrol_self',0),(489,'enrol/self:enrolself','write',50,'enrol_self',0),(490,'message/airnotifier:managedevice','write',10,'message_airnotifier',0),(491,'block/activity_modules:addinstance','write',80,'block_activity_modules',20),(492,'block/activity_results:addinstance','write',80,'block_activity_results',20),(493,'block/admin_bookmarks:myaddinstance','write',10,'block_admin_bookmarks',0),(494,'block/admin_bookmarks:addinstance','write',80,'block_admin_bookmarks',20),(495,'block/badges:addinstance','read',80,'block_badges',0),(496,'block/badges:myaddinstance','read',10,'block_badges',8),(497,'block/blog_menu:addinstance','write',80,'block_blog_menu',20),(498,'block/blog_recent:addinstance','write',80,'block_blog_recent',20),(499,'block/blog_tags:addinstance','write',80,'block_blog_tags',20),(500,'block/calendar_month:myaddinstance','write',10,'block_calendar_month',0),(501,'block/calendar_month:addinstance','write',80,'block_calendar_month',20),(502,'block/calendar_upcoming:myaddinstance','write',10,'block_calendar_upcoming',0),(503,'block/calendar_upcoming:addinstance','write',80,'block_calendar_upcoming',20),(504,'block/comments:myaddinstance','write',10,'block_comments',0),(505,'block/comments:addinstance','write',80,'block_comments',20),(506,'block/completionstatus:addinstance','write',80,'block_completionstatus',20),(507,'block/course_list:myaddinstance','write',10,'block_course_list',0),(508,'block/course_list:addinstance','write',80,'block_course_list',20),(509,'block/course_summary:addinstance','write',80,'block_course_summary',20),(510,'block/feedback:addinstance','write',80,'block_feedback',20),(511,'block/globalsearch:myaddinstance','write',10,'block_globalsearch',0),(512,'block/globalsearch:addinstance','write',80,'block_globalsearch',0),(513,'block/glossary_random:myaddinstance','write',10,'block_glossary_random',0),(514,'block/glossary_random:addinstance','write',80,'block_glossary_random',20),(515,'block/html:myaddinstance','write',10,'block_html',0),(516,'block/html:addinstance','write',80,'block_html',20),(517,'block/login:addinstance','write',80,'block_login',20),(518,'block/lp:addinstance','write',10,'block_lp',0),(519,'block/lp:myaddinstance','write',10,'block_lp',0),(520,'block/mentees:myaddinstance','write',10,'block_mentees',0),(521,'block/mentees:addinstance','write',80,'block_mentees',20),(522,'block/mnet_hosts:myaddinstance','write',10,'block_mnet_hosts',0),(523,'block/mnet_hosts:addinstance','write',80,'block_mnet_hosts',20),(524,'block/myoverview:myaddinstance','write',10,'block_myoverview',0),(525,'block/myprofile:myaddinstance','write',10,'block_myprofile',0),(526,'block/myprofile:addinstance','write',80,'block_myprofile',20),(527,'block/navigation:myaddinstance','write',10,'block_navigation',0),(528,'block/navigation:addinstance','write',80,'block_navigation',20),(529,'block/news_items:myaddinstance','write',10,'block_news_items',0),(530,'block/news_items:addinstance','write',80,'block_news_items',20),(531,'block/online_users:myaddinstance','write',10,'block_online_users',0),(532,'block/online_users:addinstance','write',80,'block_online_users',20),(533,'block/online_users:viewlist','read',80,'block_online_users',0),(534,'block/private_files:myaddinstance','write',10,'block_private_files',0),(535,'block/private_files:addinstance','write',80,'block_private_files',20),(536,'block/quiz_results:addinstance','write',80,'block_quiz_results',20),(537,'block/recent_activity:addinstance','write',80,'block_recent_activity',20),(538,'block/recent_activity:viewaddupdatemodule','read',50,'block_recent_activity',0),(539,'block/recent_activity:viewdeletemodule','read',50,'block_recent_activity',0),(540,'block/recentlyaccessedcourses:myaddinstance','write',10,'block_recentlyaccessedcourses',0),(541,'block/recentlyaccesseditems:myaddinstance','write',10,'block_recentlyaccesseditems',0),(542,'block/rss_client:myaddinstance','write',10,'block_rss_client',0),(543,'block/rss_client:addinstance','write',80,'block_rss_client',20),(544,'block/rss_client:manageownfeeds','write',80,'block_rss_client',0),(545,'block/rss_client:manageanyfeeds','write',80,'block_rss_client',16),(546,'block/search_forums:addinstance','write',80,'block_search_forums',20),(547,'block/section_links:addinstance','write',80,'block_section_links',20),(548,'block/selfcompletion:addinstance','write',80,'block_selfcompletion',20),(549,'block/settings:myaddinstance','write',10,'block_settings',0),(550,'block/settings:addinstance','write',80,'block_settings',20),(551,'block/site_main_menu:addinstance','write',80,'block_site_main_menu',20),(552,'block/social_activities:addinstance','write',80,'block_social_activities',20),(553,'block/starredcourses:myaddinstance','write',10,'block_starredcourses',0),(554,'block/tag_flickr:addinstance','write',80,'block_tag_flickr',20),(555,'block/tag_youtube:addinstance','write',80,'block_tag_youtube',20),(556,'block/tags:myaddinstance','write',10,'block_tags',0),(557,'block/tags:addinstance','write',80,'block_tags',20),(558,'block/timeline:myaddinstance','write',10,'block_timeline',0),(559,'report/completion:view','read',50,'report_completion',8),(560,'report/courseoverview:view','read',10,'report_courseoverview',8),(561,'report/log:view','read',50,'report_log',8),(562,'report/log:viewtoday','read',50,'report_log',8),(563,'report/loglive:view','read',50,'report_loglive',8),(564,'report/outline:view','read',50,'report_outline',8),(565,'report/outline:viewuserreport','read',50,'report_outline',8),(566,'report/participation:view','read',50,'report_participation',8),(567,'report/performance:view','read',10,'report_performance',2),(568,'report/progress:view','read',50,'report_progress',8),(569,'report/questioninstances:view','read',10,'report_questioninstances',0),(570,'report/security:view','read',10,'report_security',2),(571,'report/stats:view','read',50,'report_stats',8),(572,'report/status:view','read',10,'report_status',2),(573,'report/usersessions:manageownsessions','write',30,'report_usersessions',0),(574,'gradeexport/ods:view','read',50,'gradeexport_ods',8),(575,'gradeexport/ods:publish','read',50,'gradeexport_ods',8),(576,'gradeexport/txt:view','read',50,'gradeexport_txt',8),(577,'gradeexport/txt:publish','read',50,'gradeexport_txt',8),(578,'gradeexport/xls:view','read',50,'gradeexport_xls',8),(579,'gradeexport/xls:publish','read',50,'gradeexport_xls',8),(580,'gradeexport/xml:view','read',50,'gradeexport_xml',8),(581,'gradeexport/xml:publish','read',50,'gradeexport_xml',8),(582,'gradeimport/csv:view','write',50,'gradeimport_csv',0),(583,'gradeimport/direct:view','write',50,'gradeimport_direct',0),(584,'gradeimport/xml:view','write',50,'gradeimport_xml',0),(585,'gradeimport/xml:publish','write',50,'gradeimport_xml',0),(586,'gradereport/grader:view','read',50,'gradereport_grader',8),(587,'gradereport/history:view','read',50,'gradereport_history',8),(588,'gradereport/outcomes:view','read',50,'gradereport_outcomes',8),(589,'gradereport/overview:view','read',50,'gradereport_overview',8),(590,'gradereport/singleview:view','read',50,'gradereport_singleview',8),(591,'gradereport/user:view','read',50,'gradereport_user',8),(592,'webservice/rest:use','read',50,'webservice_rest',0),(593,'webservice/soap:use','read',50,'webservice_soap',0),(594,'webservice/xmlrpc:use','read',50,'webservice_xmlrpc',0),(595,'repository/areafiles:view','read',70,'repository_areafiles',0),(596,'repository/boxnet:view','read',70,'repository_boxnet',0),(597,'repository/contentbank:view','read',70,'repository_contentbank',0),(598,'repository/contentbank:accesscoursecontent','read',50,'repository_contentbank',0),(599,'repository/contentbank:accesscoursecategorycontent','read',40,'repository_contentbank',0),(600,'repository/contentbank:accessgeneralcontent','read',40,'repository_contentbank',0),(601,'repository/coursefiles:view','read',70,'repository_coursefiles',0),(602,'repository/dropbox:view','read',70,'repository_dropbox',0),(603,'repository/equella:view','read',70,'repository_equella',0),(604,'repository/filesystem:view','read',70,'repository_filesystem',0),(605,'repository/flickr:view','read',70,'repository_flickr',0),(606,'repository/flickr_public:view','read',70,'repository_flickr_public',0),(607,'repository/googledocs:view','read',70,'repository_googledocs',0),(608,'repository/local:view','read',70,'repository_local',0),(609,'repository/merlot:view','read',70,'repository_merlot',0),(610,'repository/nextcloud:view','read',70,'repository_nextcloud',0),(611,'repository/onedrive:view','read',70,'repository_onedrive',0),(612,'repository/picasa:view','read',70,'repository_picasa',0),(613,'repository/recent:view','read',70,'repository_recent',0),(614,'repository/s3:view','read',70,'repository_s3',0),(615,'repository/skydrive:view','read',70,'repository_skydrive',0),(616,'repository/upload:view','read',70,'repository_upload',0),(617,'repository/url:view','read',70,'repository_url',0),(618,'repository/user:view','read',70,'repository_user',0),(619,'repository/webdav:view','read',70,'repository_webdav',0),(620,'repository/wikimedia:view','read',70,'repository_wikimedia',0),(621,'repository/youtube:view','read',70,'repository_youtube',0),(622,'tool/customlang:view','read',10,'tool_customlang',2),(623,'tool/customlang:edit','write',10,'tool_customlang',6),(624,'tool/customlang:export','read',10,'tool_customlang',2),(625,'tool/dataprivacy:managedatarequests','write',10,'tool_dataprivacy',60),(626,'tool/dataprivacy:requestdeleteforotheruser','write',10,'tool_dataprivacy',60),(627,'tool/dataprivacy:managedataregistry','write',10,'tool_dataprivacy',60),(628,'tool/dataprivacy:makedatarequestsforchildren','write',30,'tool_dataprivacy',24),(629,'tool/dataprivacy:makedatadeletionrequestsforchildren','write',30,'tool_dataprivacy',24),(630,'tool/dataprivacy:downloadownrequest','read',30,'tool_dataprivacy',0),(631,'tool/dataprivacy:downloadallrequests','read',30,'tool_dataprivacy',8),(632,'tool/dataprivacy:requestdelete','write',30,'tool_dataprivacy',32),(633,'tool/lpmigrate:frameworksmigrate','write',10,'tool_lpmigrate',0),(634,'tool/monitor:subscribe','read',50,'tool_monitor',8),(635,'tool/monitor:managerules','write',50,'tool_monitor',4),(636,'tool/monitor:managetool','write',10,'tool_monitor',4),(637,'tool/policy:accept','write',10,'tool_policy',0),(638,'tool/policy:acceptbehalf','write',30,'tool_policy',8),(639,'tool/policy:managedocs','write',10,'tool_policy',0),(640,'tool/policy:viewacceptances','read',10,'tool_policy',0),(641,'tool/recyclebin:deleteitems','write',50,'tool_recyclebin',32),(642,'tool/recyclebin:restoreitems','write',50,'tool_recyclebin',0),(643,'tool/recyclebin:viewitems','read',50,'tool_recyclebin',0),(644,'tool/uploaduser:uploaduserpictures','write',10,'tool_uploaduser',16),(645,'tool/usertours:managetours','write',10,'tool_usertours',4),(646,'contenttype/h5p:access','read',50,'contenttype_h5p',0),(647,'contenttype/h5p:upload','write',50,'contenttype_h5p',16),(648,'contenttype/h5p:useeditor','write',50,'contenttype_h5p',16),(649,'booktool/exportimscp:export','read',70,'booktool_exportimscp',0),(650,'booktool/importhtml:import','write',70,'booktool_importhtml',4),(651,'booktool/print:print','read',70,'booktool_print',0),(652,'forumreport/summary:view','read',70,'forumreport_summary',0),(653,'forumreport/summary:viewall','read',70,'forumreport_summary',8),(654,'quiz/grading:viewstudentnames','read',70,'quiz_grading',0),(655,'quiz/grading:viewidnumber','read',70,'quiz_grading',0),(656,'quiz/statistics:view','read',70,'quiz_statistics',0),(657,'quizaccess/seb:managetemplates','write',10,'quizaccess_seb',0),(658,'quizaccess/seb:bypassseb','read',70,'quizaccess_seb',0),(659,'quizaccess/seb:manage_seb_requiresafeexambrowser','write',70,'quizaccess_seb',0),(660,'quizaccess/seb:manage_seb_templateid','read',70,'quizaccess_seb',0),(661,'quizaccess/seb:manage_filemanager_sebconfigfile','write',70,'quizaccess_seb',0),(662,'quizaccess/seb:manage_seb_showsebdownloadlink','write',70,'quizaccess_seb',0),(663,'quizaccess/seb:manage_seb_allowedbrowserexamkeys','write',70,'quizaccess_seb',0),(664,'quizaccess/seb:manage_seb_linkquitseb','write',70,'quizaccess_seb',0),(665,'quizaccess/seb:manage_seb_userconfirmquit','write',70,'quizaccess_seb',0),(666,'quizaccess/seb:manage_seb_allowuserquitseb','write',70,'quizaccess_seb',0),(667,'quizaccess/seb:manage_seb_quitpassword','write',70,'quizaccess_seb',0),(668,'quizaccess/seb:manage_seb_allowreloadinexam','write',70,'quizaccess_seb',0),(669,'quizaccess/seb:manage_seb_showsebtaskbar','write',70,'quizaccess_seb',0),(670,'quizaccess/seb:manage_seb_showreloadbutton','write',70,'quizaccess_seb',0),(671,'quizaccess/seb:manage_seb_showtime','write',70,'quizaccess_seb',0),(672,'quizaccess/seb:manage_seb_showkeyboardlayout','write',70,'quizaccess_seb',0),(673,'quizaccess/seb:manage_seb_showwificontrol','write',70,'quizaccess_seb',0),(674,'quizaccess/seb:manage_seb_enableaudiocontrol','write',70,'quizaccess_seb',0),(675,'quizaccess/seb:manage_seb_muteonstartup','write',70,'quizaccess_seb',0),(676,'quizaccess/seb:manage_seb_allowspellchecking','write',70,'quizaccess_seb',0),(677,'quizaccess/seb:manage_seb_activateurlfiltering','write',70,'quizaccess_seb',0),(678,'quizaccess/seb:manage_seb_filterembeddedcontent','write',70,'quizaccess_seb',0),(679,'quizaccess/seb:manage_seb_expressionsallowed','write',70,'quizaccess_seb',0),(680,'quizaccess/seb:manage_seb_regexallowed','write',70,'quizaccess_seb',0),(681,'quizaccess/seb:manage_seb_expressionsblocked','write',70,'quizaccess_seb',0),(682,'quizaccess/seb:manage_seb_regexblocked','write',70,'quizaccess_seb',0),(683,'atto/h5p:addembed','write',70,'atto_h5p',0),(684,'atto/recordrtc:recordaudio','write',70,'atto_recordrtc',0),(685,'atto/recordrtc:recordvideo','write',70,'atto_recordrtc',0),(686,'mod/customcert:addinstance','write',50,'mod_customcert',4),(687,'mod/customcert:view','read',70,'mod_customcert',0),(688,'mod/customcert:manage','write',70,'mod_customcert',0),(689,'mod/customcert:receiveissue','read',70,'mod_customcert',0),(690,'mod/customcert:viewreport','read',70,'mod_customcert',0),(691,'mod/customcert:viewallcertificates','read',10,'mod_customcert',0),(692,'mod/customcert:verifycertificate','read',70,'mod_customcert',0),(693,'mod/customcert:verifyallcertificates','read',10,'mod_customcert',0),(694,'mod/customcert:manageemailstudents','write',50,'mod_customcert',0),(695,'mod/customcert:manageemailteachers','write',50,'mod_customcert',0),(696,'mod/customcert:manageemailothers','write',50,'mod_customcert',0),(697,'mod/customcert:manageverifyany','write',50,'mod_customcert',0),(698,'mod/customcert:managerequiredtime','write',50,'mod_customcert',0),(699,'mod/customcert:manageprotection','write',50,'mod_customcert',0); +/*!40000 ALTER TABLE `mdl_capabilities` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_chat` +-- + +DROP TABLE IF EXISTS `mdl_chat`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_chat` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `introformat` smallint(4) NOT NULL DEFAULT 0, + `keepdays` bigint(11) NOT NULL DEFAULT 0, + `studentlogs` smallint(4) NOT NULL DEFAULT 0, + `chattime` bigint(10) NOT NULL DEFAULT 0, + `schedule` smallint(4) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_chat_cou_ix` (`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Each of these is a chat room'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_chat` +-- + +LOCK TABLES `mdl_chat` WRITE; +/*!40000 ALTER TABLE `mdl_chat` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_chat` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_chat_messages` +-- + +DROP TABLE IF EXISTS `mdl_chat_messages`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_chat_messages` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `chatid` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `groupid` bigint(10) NOT NULL DEFAULT 0, + `issystem` tinyint(1) NOT NULL DEFAULT 0, + `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `timestamp` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_chatmess_use_ix` (`userid`), + KEY `mdl_chatmess_gro_ix` (`groupid`), + KEY `mdl_chatmess_timcha_ix` (`timestamp`,`chatid`), + KEY `mdl_chatmess_cha_ix` (`chatid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores all the actual chat messages'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_chat_messages` +-- + +LOCK TABLES `mdl_chat_messages` WRITE; +/*!40000 ALTER TABLE `mdl_chat_messages` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_chat_messages` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_chat_messages_current` +-- + +DROP TABLE IF EXISTS `mdl_chat_messages_current`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_chat_messages_current` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `chatid` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `groupid` bigint(10) NOT NULL DEFAULT 0, + `issystem` tinyint(1) NOT NULL DEFAULT 0, + `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `timestamp` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_chatmesscurr_use_ix` (`userid`), + KEY `mdl_chatmesscurr_gro_ix` (`groupid`), + KEY `mdl_chatmesscurr_timcha_ix` (`timestamp`,`chatid`), + KEY `mdl_chatmesscurr_cha_ix` (`chatid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores current session'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_chat_messages_current` +-- + +LOCK TABLES `mdl_chat_messages_current` WRITE; +/*!40000 ALTER TABLE `mdl_chat_messages_current` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_chat_messages_current` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_chat_users` +-- + +DROP TABLE IF EXISTS `mdl_chat_users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_chat_users` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `chatid` bigint(11) NOT NULL DEFAULT 0, + `userid` bigint(11) NOT NULL DEFAULT 0, + `groupid` bigint(11) NOT NULL DEFAULT 0, + `version` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `ip` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `firstping` bigint(10) NOT NULL DEFAULT 0, + `lastping` bigint(10) NOT NULL DEFAULT 0, + `lastmessageping` bigint(10) NOT NULL DEFAULT 0, + `sid` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `course` bigint(10) NOT NULL DEFAULT 0, + `lang` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `mdl_chatuser_use_ix` (`userid`), + KEY `mdl_chatuser_las_ix` (`lastping`), + KEY `mdl_chatuser_gro_ix` (`groupid`), + KEY `mdl_chatuser_cha_ix` (`chatid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Keeps track of which users are in which chat rooms'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_chat_users` +-- + +LOCK TABLES `mdl_chat_users` WRITE; +/*!40000 ALTER TABLE `mdl_chat_users` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_chat_users` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_choice` +-- + +DROP TABLE IF EXISTS `mdl_choice`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_choice` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `introformat` smallint(4) NOT NULL DEFAULT 0, + `publish` tinyint(2) NOT NULL DEFAULT 0, + `showresults` tinyint(2) NOT NULL DEFAULT 0, + `display` smallint(4) NOT NULL DEFAULT 0, + `allowupdate` tinyint(2) NOT NULL DEFAULT 0, + `allowmultiple` tinyint(2) NOT NULL DEFAULT 0, + `showunanswered` tinyint(2) NOT NULL DEFAULT 0, + `includeinactive` tinyint(2) NOT NULL DEFAULT 1, + `limitanswers` tinyint(2) NOT NULL DEFAULT 0, + `timeopen` bigint(10) NOT NULL DEFAULT 0, + `timeclose` bigint(10) NOT NULL DEFAULT 0, + `showpreview` tinyint(2) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `completionsubmit` tinyint(1) NOT NULL DEFAULT 0, + `showavailable` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_choi_cou_ix` (`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Available choices are stored here'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_choice` +-- + +LOCK TABLES `mdl_choice` WRITE; +/*!40000 ALTER TABLE `mdl_choice` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_choice` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_choice_answers` +-- + +DROP TABLE IF EXISTS `mdl_choice_answers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_choice_answers` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `choiceid` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `optionid` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_choiansw_use_ix` (`userid`), + KEY `mdl_choiansw_cho_ix` (`choiceid`), + KEY `mdl_choiansw_opt_ix` (`optionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='choices performed by users'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_choice_answers` +-- + +LOCK TABLES `mdl_choice_answers` WRITE; +/*!40000 ALTER TABLE `mdl_choice_answers` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_choice_answers` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_choice_options` +-- + +DROP TABLE IF EXISTS `mdl_choice_options`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_choice_options` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `choiceid` bigint(10) NOT NULL DEFAULT 0, + `text` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `maxanswers` bigint(10) DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_choiopti_cho_ix` (`choiceid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='available options to choice'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_choice_options` +-- + +LOCK TABLES `mdl_choice_options` WRITE; +/*!40000 ALTER TABLE `mdl_choice_options` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_choice_options` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_cohort` +-- + +DROP TABLE IF EXISTS `mdl_cohort`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_cohort` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `contextid` bigint(10) NOT NULL, + `name` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` tinyint(2) NOT NULL, + `visible` tinyint(1) NOT NULL DEFAULT 1, + `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `theme` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_coho_con_ix` (`contextid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Each record represents one cohort (aka site-wide group).'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_cohort` +-- + +LOCK TABLES `mdl_cohort` WRITE; +/*!40000 ALTER TABLE `mdl_cohort` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_cohort` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_cohort_members` +-- + +DROP TABLE IF EXISTS `mdl_cohort_members`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_cohort_members` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `cohortid` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `timeadded` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_cohomemb_cohuse_uix` (`cohortid`,`userid`), + KEY `mdl_cohomemb_coh_ix` (`cohortid`), + KEY `mdl_cohomemb_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Link a user to a cohort.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_cohort_members` +-- + +LOCK TABLES `mdl_cohort_members` WRITE; +/*!40000 ALTER TABLE `mdl_cohort_members` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_cohort_members` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_comments` +-- + +DROP TABLE IF EXISTS `mdl_comments`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_comments` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `contextid` bigint(10) NOT NULL, + `component` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `commentarea` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `itemid` bigint(10) NOT NULL, + `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `format` tinyint(2) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_comm_concomite_ix` (`contextid`,`commentarea`,`itemid`), + KEY `mdl_comm_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='moodle comments module'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_comments` +-- + +LOCK TABLES `mdl_comments` WRITE; +/*!40000 ALTER TABLE `mdl_comments` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_comments` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_competency` +-- + +DROP TABLE IF EXISTS `mdl_competency`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_competency` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `shortname` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` smallint(4) NOT NULL DEFAULT 0, + `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `competencyframeworkid` bigint(10) NOT NULL, + `parentid` bigint(10) NOT NULL DEFAULT 0, + `path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `sortorder` bigint(10) NOT NULL, + `ruletype` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `ruleoutcome` tinyint(2) NOT NULL DEFAULT 0, + `ruleconfig` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `scaleid` bigint(10) DEFAULT NULL, + `scaleconfiguration` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `usermodified` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_comp_comidn_uix` (`competencyframeworkid`,`idnumber`), + KEY `mdl_comp_rul_ix` (`ruleoutcome`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table contains the master record of each competency in '; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_competency` +-- + +LOCK TABLES `mdl_competency` WRITE; +/*!40000 ALTER TABLE `mdl_competency` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_competency` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_competency_coursecomp` +-- + +DROP TABLE IF EXISTS `mdl_competency_coursecomp`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_competency_coursecomp` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `courseid` bigint(10) NOT NULL, + `competencyid` bigint(10) NOT NULL, + `ruleoutcome` tinyint(2) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `usermodified` bigint(10) NOT NULL, + `sortorder` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_compcour_coucom_uix` (`courseid`,`competencyid`), + KEY `mdl_compcour_courul_ix` (`courseid`,`ruleoutcome`), + KEY `mdl_compcour_cou2_ix` (`courseid`), + KEY `mdl_compcour_com_ix` (`competencyid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Link a competency to a course.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_competency_coursecomp` +-- + +LOCK TABLES `mdl_competency_coursecomp` WRITE; +/*!40000 ALTER TABLE `mdl_competency_coursecomp` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_competency_coursecomp` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_competency_coursecompsetting` +-- + +DROP TABLE IF EXISTS `mdl_competency_coursecompsetting`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_competency_coursecompsetting` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `courseid` bigint(10) NOT NULL, + `pushratingstouserplans` tinyint(2) DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `usermodified` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_compcour_cou_uix` (`courseid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table contains the course specific settings for compete'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_competency_coursecompsetting` +-- + +LOCK TABLES `mdl_competency_coursecompsetting` WRITE; +/*!40000 ALTER TABLE `mdl_competency_coursecompsetting` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_competency_coursecompsetting` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_competency_evidence` +-- + +DROP TABLE IF EXISTS `mdl_competency_evidence`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_competency_evidence` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `usercompetencyid` bigint(10) NOT NULL, + `contextid` bigint(10) NOT NULL, + `action` tinyint(2) NOT NULL, + `actionuserid` bigint(10) DEFAULT NULL, + `descidentifier` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `desccomponent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `desca` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `grade` bigint(10) DEFAULT NULL, + `note` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `usermodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_compevid_use_ix` (`usercompetencyid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The evidence linked to a user competency'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_competency_evidence` +-- + +LOCK TABLES `mdl_competency_evidence` WRITE; +/*!40000 ALTER TABLE `mdl_competency_evidence` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_competency_evidence` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_competency_framework` +-- + +DROP TABLE IF EXISTS `mdl_competency_framework`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_competency_framework` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `shortname` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `contextid` bigint(10) NOT NULL, + `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` smallint(4) NOT NULL DEFAULT 0, + `scaleid` bigint(11) DEFAULT NULL, + `scaleconfiguration` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `visible` tinyint(2) NOT NULL DEFAULT 1, + `taxonomies` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `usermodified` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_compfram_idn_uix` (`idnumber`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='List of competency frameworks.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_competency_framework` +-- + +LOCK TABLES `mdl_competency_framework` WRITE; +/*!40000 ALTER TABLE `mdl_competency_framework` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_competency_framework` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_competency_modulecomp` +-- + +DROP TABLE IF EXISTS `mdl_competency_modulecomp`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_competency_modulecomp` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `cmid` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `usermodified` bigint(10) NOT NULL, + `sortorder` bigint(10) NOT NULL, + `competencyid` bigint(10) NOT NULL, + `ruleoutcome` tinyint(2) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_compmodu_cmicom_uix` (`cmid`,`competencyid`), + KEY `mdl_compmodu_cmirul_ix` (`cmid`,`ruleoutcome`), + KEY `mdl_compmodu_cmi_ix` (`cmid`), + KEY `mdl_compmodu_com_ix` (`competencyid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Link a competency to a module.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_competency_modulecomp` +-- + +LOCK TABLES `mdl_competency_modulecomp` WRITE; +/*!40000 ALTER TABLE `mdl_competency_modulecomp` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_competency_modulecomp` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_competency_plan` +-- + +DROP TABLE IF EXISTS `mdl_competency_plan`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_competency_plan` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` smallint(4) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL, + `templateid` bigint(10) DEFAULT NULL, + `origtemplateid` bigint(10) DEFAULT NULL, + `status` tinyint(1) NOT NULL, + `duedate` bigint(10) DEFAULT 0, + `reviewerid` bigint(10) DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `usermodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_compplan_usesta_ix` (`userid`,`status`), + KEY `mdl_compplan_tem_ix` (`templateid`), + KEY `mdl_compplan_stadue_ix` (`status`,`duedate`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Learning plans'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_competency_plan` +-- + +LOCK TABLES `mdl_competency_plan` WRITE; +/*!40000 ALTER TABLE `mdl_competency_plan` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_competency_plan` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_competency_plancomp` +-- + +DROP TABLE IF EXISTS `mdl_competency_plancomp`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_competency_plancomp` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `planid` bigint(10) NOT NULL, + `competencyid` bigint(10) NOT NULL, + `sortorder` bigint(10) DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) DEFAULT NULL, + `usermodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_compplan_placom_uix` (`planid`,`competencyid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Plan competencies'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_competency_plancomp` +-- + +LOCK TABLES `mdl_competency_plancomp` WRITE; +/*!40000 ALTER TABLE `mdl_competency_plancomp` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_competency_plancomp` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_competency_relatedcomp` +-- + +DROP TABLE IF EXISTS `mdl_competency_relatedcomp`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_competency_relatedcomp` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `competencyid` bigint(10) NOT NULL, + `relatedcompetencyid` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) DEFAULT NULL, + `usermodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Related competencies'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_competency_relatedcomp` +-- + +LOCK TABLES `mdl_competency_relatedcomp` WRITE; +/*!40000 ALTER TABLE `mdl_competency_relatedcomp` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_competency_relatedcomp` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_competency_template` +-- + +DROP TABLE IF EXISTS `mdl_competency_template`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_competency_template` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `shortname` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `contextid` bigint(10) NOT NULL, + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` smallint(4) NOT NULL DEFAULT 0, + `visible` tinyint(2) NOT NULL DEFAULT 1, + `duedate` bigint(10) DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `usermodified` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Learning plan templates.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_competency_template` +-- + +LOCK TABLES `mdl_competency_template` WRITE; +/*!40000 ALTER TABLE `mdl_competency_template` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_competency_template` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_competency_templatecohort` +-- + +DROP TABLE IF EXISTS `mdl_competency_templatecohort`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_competency_templatecohort` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `templateid` bigint(10) NOT NULL, + `cohortid` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `usermodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_comptemp_temcoh_uix` (`templateid`,`cohortid`), + KEY `mdl_comptemp_tem2_ix` (`templateid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Default comment for the table, please edit me'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_competency_templatecohort` +-- + +LOCK TABLES `mdl_competency_templatecohort` WRITE; +/*!40000 ALTER TABLE `mdl_competency_templatecohort` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_competency_templatecohort` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_competency_templatecomp` +-- + +DROP TABLE IF EXISTS `mdl_competency_templatecomp`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_competency_templatecomp` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `templateid` bigint(10) NOT NULL, + `competencyid` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `usermodified` bigint(10) NOT NULL, + `sortorder` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_comptemp_tem_ix` (`templateid`), + KEY `mdl_comptemp_com_ix` (`competencyid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Link a competency to a learning plan template.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_competency_templatecomp` +-- + +LOCK TABLES `mdl_competency_templatecomp` WRITE; +/*!40000 ALTER TABLE `mdl_competency_templatecomp` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_competency_templatecomp` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_competency_usercomp` +-- + +DROP TABLE IF EXISTS `mdl_competency_usercomp`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_competency_usercomp` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL, + `competencyid` bigint(10) NOT NULL, + `status` tinyint(2) NOT NULL DEFAULT 0, + `reviewerid` bigint(10) DEFAULT NULL, + `proficiency` tinyint(2) DEFAULT NULL, + `grade` bigint(10) DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) DEFAULT NULL, + `usermodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_compuser_usecom_uix` (`userid`,`competencyid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='User competencies'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_competency_usercomp` +-- + +LOCK TABLES `mdl_competency_usercomp` WRITE; +/*!40000 ALTER TABLE `mdl_competency_usercomp` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_competency_usercomp` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_competency_usercompcourse` +-- + +DROP TABLE IF EXISTS `mdl_competency_usercompcourse`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_competency_usercompcourse` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL, + `courseid` bigint(10) NOT NULL, + `competencyid` bigint(10) NOT NULL, + `proficiency` tinyint(2) DEFAULT NULL, + `grade` bigint(10) DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) DEFAULT NULL, + `usermodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_compuser_usecoucom_uix` (`userid`,`courseid`,`competencyid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='User competencies in a course'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_competency_usercompcourse` +-- + +LOCK TABLES `mdl_competency_usercompcourse` WRITE; +/*!40000 ALTER TABLE `mdl_competency_usercompcourse` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_competency_usercompcourse` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_competency_usercompplan` +-- + +DROP TABLE IF EXISTS `mdl_competency_usercompplan`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_competency_usercompplan` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL, + `competencyid` bigint(10) NOT NULL, + `planid` bigint(10) NOT NULL, + `proficiency` tinyint(2) DEFAULT NULL, + `grade` bigint(10) DEFAULT NULL, + `sortorder` bigint(10) DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) DEFAULT NULL, + `usermodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_compuser_usecompla_uix` (`userid`,`competencyid`,`planid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='User competencies plans'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_competency_usercompplan` +-- + +LOCK TABLES `mdl_competency_usercompplan` WRITE; +/*!40000 ALTER TABLE `mdl_competency_usercompplan` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_competency_usercompplan` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_competency_userevidence` +-- + +DROP TABLE IF EXISTS `mdl_competency_userevidence`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_competency_userevidence` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL, + `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `descriptionformat` tinyint(1) NOT NULL, + `url` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `usermodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_compuser_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The evidence of prior learning'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_competency_userevidence` +-- + +LOCK TABLES `mdl_competency_userevidence` WRITE; +/*!40000 ALTER TABLE `mdl_competency_userevidence` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_competency_userevidence` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_competency_userevidencecomp` +-- + +DROP TABLE IF EXISTS `mdl_competency_userevidencecomp`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_competency_userevidencecomp` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userevidenceid` bigint(10) NOT NULL, + `competencyid` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `usermodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_compuser_usecom2_uix` (`userevidenceid`,`competencyid`), + KEY `mdl_compuser_use2_ix` (`userevidenceid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Relationship between user evidence and competencies'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_competency_userevidencecomp` +-- + +LOCK TABLES `mdl_competency_userevidencecomp` WRITE; +/*!40000 ALTER TABLE `mdl_competency_userevidencecomp` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_competency_userevidencecomp` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_config` +-- + +DROP TABLE IF EXISTS `mdl_config`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_config` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_conf_nam_uix` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=528 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Moodle configuration variables'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_config` +-- + +LOCK TABLES `mdl_config` WRITE; +/*!40000 ALTER TABLE `mdl_config` DISABLE KEYS */; +INSERT INTO `mdl_config` VALUES (2,'rolesactive','1'),(3,'auth','email'),(4,'enrol_plugins_enabled','manual,guest,self,flatfile'),(5,'theme','boost'),(6,'filter_multilang_converted','1'),(7,'siteidentifier','iwly4Wv0NDwBjqk0Oi2EFQBH7j9lOccYlearn.dev-defaults.derekmaxson.com'),(8,'backup_version','2008111700'),(9,'backup_release','2.0 dev'),(10,'mnet_dispatcher_mode','off'),(11,'sessiontimeout','28800'),(12,'stringfilters',''),(13,'filterall','0'),(14,'texteditors','atto,tinymce,textarea'),(15,'antiviruses',''),(16,'media_plugins_sortorder','videojs,youtube,swf'),(17,'upgrade_extracreditweightsstepignored','1'),(18,'upgrade_calculatedgradeitemsignored','1'),(19,'upgrade_letterboundarycourses','1'),(20,'mnet_localhost_id','1'),(21,'mnet_all_hosts_id','2'),(22,'siteguest','1'),(23,'siteadmins','2'),(24,'themerev','1619625660'),(25,'jsrev','1619625660'),(26,'templaterev','1619625660'),(27,'gdversion','2'),(28,'licenses','unknown,allrightsreserved,public,cc,cc-nd,cc-nc-nd,cc-nc,cc-nc-sa,cc-sa'),(29,'sitedefaultlicense','unknown'),(30,'badges_site_backpack','1'),(31,'version','2020110901.04'),(32,'enableuserfeedback','0'),(33,'userfeedback_nextreminder','1'),(34,'userfeedback_remindafter','90'),(35,'enableoutcomes','0'),(36,'usecomments','1'),(37,'usetags','1'),(38,'enablenotes','1'),(39,'enableportfolios','0'),(40,'enablewebservices','1'),(41,'enablestats','0'),(42,'enablerssfeeds','0'),(43,'enableblogs','1'),(44,'enablecompletion','1'),(45,'completiondefault','1'),(46,'enableavailability','1'),(47,'enableplagiarism','0'),(48,'enablebadges','1'),(49,'enableglobalsearch','0'),(50,'allowstealth','0'),(51,'enableanalytics','1'),(52,'allowemojipicker','1'),(53,'userfiltersdefault','realname'),(54,'defaultpreference_maildisplay','2'),(55,'defaultpreference_mailformat','1'),(56,'defaultpreference_maildigest','0'),(57,'defaultpreference_autosubscribe','1'),(58,'defaultpreference_trackforums','0'),(59,'autologinguests','0'),(60,'hiddenuserfields',''),(61,'showuseridentity','email'),(62,'fullnamedisplay','language'),(63,'alternativefullnameformat','language'),(64,'maxusersperpage','100'),(65,'enablegravatar','0'),(66,'gravatardefaulturl','mm'),(67,'agedigitalconsentverification','0'),(68,'agedigitalconsentmap','*, 16\nAT, 14\nBE, 13\nBG, 14\nCY, 14\nCZ, 15\nDK, 13\nEE, 13\nES, 14\nFI, 13\nFR, 15\nGB, 13\nGR, 15\nIT, 14\nLT, 14\nLV, 13\nMT, 13\nNO, 13\nPT, 13\nSE, 13\nUS, 13'),(69,'sitepolicy',''),(70,'sitepolicyguest',''),(71,'downloadcoursecontentallowed','1'),(72,'maxsizeperdownloadcoursefile','536870912'),(73,'enablecourserequests','1'),(74,'defaultrequestcategory','1'),(75,'lockrequestcategory','0'),(76,'courserequestnotify',''),(77,'activitychoosertabmode','0'),(78,'activitychooseractivefooter','hidden'),(79,'enableasyncbackup','0'),(80,'grade_profilereport','user'),(81,'grade_aggregationposition','1'),(82,'grade_includescalesinaggregation','1'),(83,'grade_hiddenasdate','0'),(84,'gradepublishing','0'),(85,'grade_export_exportfeedback','0'),(86,'grade_export_displaytype','1'),(87,'grade_export_decimalpoints','2'),(88,'grade_navmethod','1'),(89,'grade_export_userprofilefields','firstname,lastname,idnumber,institution,department,email'),(90,'grade_export_customprofilefields',''),(91,'recovergradesdefault','0'),(92,'gradeexport',''),(93,'unlimitedgrades','0'),(94,'grade_report_showmin','1'),(95,'gradepointmax','100'),(96,'gradepointdefault','100'),(97,'grade_minmaxtouse','1'),(98,'grade_mygrades_report','overview'),(99,'gradereport_mygradeurl',''),(100,'grade_hideforcedsettings','1'),(101,'grade_aggregation','13'),(102,'grade_aggregation_flag','0'),(103,'grade_aggregations_visible','13'),(104,'grade_aggregateonlygraded','1'),(105,'grade_aggregateonlygraded_flag','2'),(106,'grade_aggregateoutcomes','0'),(107,'grade_aggregateoutcomes_flag','2'),(108,'grade_keephigh','0'),(109,'grade_keephigh_flag','3'),(110,'grade_droplow','0'),(111,'grade_droplow_flag','2'),(112,'grade_overridecat','1'),(113,'grade_displaytype','1'),(114,'grade_decimalpoints','2'),(115,'grade_item_advanced','iteminfo,idnumber,gradepass,plusfactor,multfactor,display,decimals,hiddenuntil,locktime'),(116,'grade_report_studentsperpage','100'),(117,'grade_report_showonlyactiveenrol','1'),(118,'grade_report_quickgrading','1'),(119,'grade_report_showquickfeedback','0'),(120,'grade_report_meanselection','1'),(121,'grade_report_enableajax','0'),(122,'grade_report_showcalculations','1'),(123,'grade_report_showeyecons','0'),(124,'grade_report_showaverages','1'),(125,'grade_report_showlocks','0'),(126,'grade_report_showranges','0'),(127,'grade_report_showanalysisicon','1'),(128,'grade_report_showuserimage','1'),(129,'grade_report_showactivityicons','1'),(130,'grade_report_shownumberofgrades','0'),(131,'grade_report_averagesdisplaytype','inherit'),(132,'grade_report_rangesdisplaytype','inherit'),(133,'grade_report_averagesdecimalpoints','inherit'),(134,'grade_report_rangesdecimalpoints','inherit'),(135,'grade_report_historyperpage','50'),(136,'grade_report_overview_showrank','0'),(137,'grade_report_overview_showtotalsifcontainhidden','0'),(138,'grade_report_user_showrank','0'),(139,'grade_report_user_showpercentage','1'),(140,'grade_report_user_showgrade','1'),(141,'grade_report_user_showfeedback','1'),(142,'grade_report_user_showrange','1'),(143,'grade_report_user_showweight','1'),(144,'grade_report_user_showaverage','0'),(145,'grade_report_user_showlettergrade','0'),(146,'grade_report_user_rangedecimals','0'),(147,'grade_report_user_showhiddenitems','1'),(148,'grade_report_user_showtotalsifcontainhidden','0'),(149,'grade_report_user_showcontributiontocoursetotal','1'),(150,'badges_defaultissuername',''),(151,'badges_defaultissuercontact',''),(152,'badges_badgesalt','badges1619623682'),(153,'badges_allowcoursebadges','1'),(154,'badges_allowexternalbackpack','1'),(155,'rememberuserlicensepref','1'),(157,'forcetimezone','99'),(158,'country','0'),(159,'defaultcity',''),(160,'geoip2file','/var/www/moodledata/geoip/GeoLite2-City.mmdb'),(161,'googlemapkey3',''),(162,'allcountrycodes',''),(163,'autolang','1'),(164,'lang','en'),(165,'autolangusercreation','1'),(166,'langmenu','1'),(167,'langlist',''),(168,'langrev','1619625660'),(169,'langcache','1'),(170,'langstringcache','1'),(171,'locale',''),(172,'latinexcelexport','0'),(173,'messaging','1'),(174,'messagingallusers','0'),(175,'messagingdefaultpressenter','1'),(176,'messagingdeletereadnotificationsdelay','604800'),(177,'messagingdeleteallnotificationsdelay','2620800'),(178,'messagingallowemailoverride','0'),(179,'requiremodintro','0'),(181,'authloginviaemail','0'),(182,'allowaccountssameemail','0'),(183,'authpreventaccountcreation','0'),(184,'loginpageautofocus','0'),(185,'guestloginbutton','1'),(186,'limitconcurrentlogins','0'),(187,'alternateloginurl',''),(188,'forgottenpasswordurl',''),(189,'auth_instructions',''),(190,'allowemailaddresses',''),(191,'denyemailaddresses',''),(192,'verifychangedemail','1'),(193,'recaptchapublickey',''),(194,'recaptchaprivatekey',''),(195,'filteruploadedfiles','0'),(196,'filtermatchoneperpage','0'),(197,'filtermatchonepertext','0'),(198,'media_default_width','400'),(199,'media_default_height','300'),(200,'portfolio_moderate_filesize_threshold','1048576'),(201,'portfolio_high_filesize_threshold','5242880'),(202,'portfolio_moderate_db_threshold','20'),(203,'portfolio_high_db_threshold','50'),(204,'repositorycacheexpire','120'),(205,'repositorygetfiletimeout','30'),(206,'repositorysyncfiletimeout','1'),(207,'repositorysyncimagetimeout','3'),(208,'repositoryallowexternallinks','1'),(209,'legacyfilesinnewcourses','0'),(210,'legacyfilesaddallowed','1'),(211,'searchengine','simpledb'),(212,'searchindexwhendisabled','0'),(213,'searchindextime','600'),(214,'searchallavailablecourses','0'),(215,'searchincludeallcourses','0'),(216,'searchenablecategories','0'),(217,'searchdefaultcategory','core-all'),(218,'searchhideallcategory','0'),(219,'searchenginequeryonly',''),(220,'searchbannerenable','0'),(221,'searchbanner',''),(222,'enablewsdocumentation','0'),(223,'allowbeforeblock','0'),(224,'allowedip',''),(225,'blockedip',''),(226,'protectusernames','1'),(227,'forcelogin','0'),(228,'forceloginforprofiles','1'),(229,'forceloginforprofileimage','0'),(230,'opentowebcrawlers','0'),(231,'allowindexing','0'),(232,'maxbytes','0'),(233,'userquota','104857600'),(234,'allowobjectembed','0'),(235,'enabletrusttext','0'),(236,'maxeditingtime','1800'),(237,'extendedusernamechars','0'),(238,'keeptagnamecase','1'),(239,'profilesforenrolledusersonly','1'),(240,'cronclionly','1'),(241,'cronremotepassword',''),(242,'lockoutthreshold','0'),(243,'lockoutwindow','1800'),(244,'lockoutduration','1800'),(245,'passwordpolicy','1'),(246,'minpasswordlength','8'),(247,'minpassworddigits','1'),(248,'minpasswordlower','1'),(249,'minpasswordupper','1'),(250,'minpasswordnonalphanum','1'),(251,'maxconsecutiveidentchars','0'),(252,'passwordpolicycheckonlogin','0'),(253,'passwordreuselimit','0'),(254,'pwresettime','1800'),(255,'passwordchangelogout','0'),(256,'passwordchangetokendeletion','0'),(257,'tokenduration','7257600'),(258,'groupenrolmentkeypolicy','1'),(259,'disableuserimages','0'),(260,'emailchangeconfirmation','1'),(261,'rememberusername','2'),(262,'strictformsrequired','0'),(263,'cookiesecure','1'),(264,'cookiehttponly','0'),(265,'allowframembedding','0'),(266,'curlsecurityblockedhosts',''),(267,'curlsecurityallowedport',''),(268,'referrerpolicy','default'),(269,'displayloginfailures','0'),(270,'notifyloginfailures',''),(271,'notifyloginthreshold','10'),(272,'themelist',''),(273,'themedesignermode','0'),(274,'allowuserthemes','0'),(275,'allowcoursethemes','0'),(276,'allowcategorythemes','0'),(277,'allowcohortthemes','0'),(278,'allowthemechangeonurl','0'),(279,'allowuserblockhiding','1'),(280,'langmenuinsecurelayout','0'),(281,'logininfoinsecurelayout','0'),(282,'custommenuitems',''),(283,'customusermenuitems','grades,grades|/grade/report/mygrades.php|t/grades\r\nmessages,message|/message/index.php|t/message\r\npreferences,moodle|/user/preferences.php|t/preferences'),(284,'enabledevicedetection','1'),(285,'devicedetectregex','[]'),(286,'calendartype','gregorian'),(287,'calendar_adminseesall','0'),(288,'calendar_site_timeformat','0'),(289,'calendar_startwday','1'),(290,'calendar_weekend','65'),(291,'calendar_lookahead','21'),(292,'calendar_maxevents','10'),(293,'enablecalendarexport','1'),(294,'calendar_customexport','1'),(295,'calendar_exportlookahead','365'),(296,'calendar_exportlookback','5'),(297,'calendar_exportsalt','QQWEEsBDItPik6yOcGggNmfCDolHtqABUyw7eoCJXInMGB7izbIE6t3kVpSq'),(298,'calendar_showicalsource','1'),(299,'useblogassociations','1'),(300,'bloglevel','4'),(301,'useexternalblogs','1'),(302,'externalblogcrontime','86400'),(303,'maxexternalblogsperuser','1'),(304,'blogusecomments','1'),(305,'blogshowcommentscount','1'),(306,'defaulthomepage','1'),(307,'allowguestmymoodle','1'),(308,'navshowfullcoursenames','0'),(309,'navshowcategories','1'),(310,'navshowmycoursecategories','0'),(311,'navshowallcourses','0'),(312,'navsortmycoursessort','sortorder'),(313,'navsortmycourseshiddenlast','1'),(314,'navcourselimit','10'),(315,'usesitenameforsitepages','0'),(316,'linkadmincategories','1'),(317,'linkcoursesections','1'),(318,'navshowfrontpagemods','1'),(319,'navadduserpostslinks','1'),(320,'formatstringstriptags','1'),(321,'emoticons','[{\"text\":\":-)\",\"imagename\":\"s\\/smiley\",\"imagecomponent\":\"core\",\"altidentifier\":\"smiley\",\"altcomponent\":\"core_pix\"},{\"text\":\":)\",\"imagename\":\"s\\/smiley\",\"imagecomponent\":\"core\",\"altidentifier\":\"smiley\",\"altcomponent\":\"core_pix\"},{\"text\":\":-D\",\"imagename\":\"s\\/biggrin\",\"imagecomponent\":\"core\",\"altidentifier\":\"biggrin\",\"altcomponent\":\"core_pix\"},{\"text\":\";-)\",\"imagename\":\"s\\/wink\",\"imagecomponent\":\"core\",\"altidentifier\":\"wink\",\"altcomponent\":\"core_pix\"},{\"text\":\":-\\/\",\"imagename\":\"s\\/mixed\",\"imagecomponent\":\"core\",\"altidentifier\":\"mixed\",\"altcomponent\":\"core_pix\"},{\"text\":\"V-.\",\"imagename\":\"s\\/thoughtful\",\"imagecomponent\":\"core\",\"altidentifier\":\"thoughtful\",\"altcomponent\":\"core_pix\"},{\"text\":\":-P\",\"imagename\":\"s\\/tongueout\",\"imagecomponent\":\"core\",\"altidentifier\":\"tongueout\",\"altcomponent\":\"core_pix\"},{\"text\":\":-p\",\"imagename\":\"s\\/tongueout\",\"imagecomponent\":\"core\",\"altidentifier\":\"tongueout\",\"altcomponent\":\"core_pix\"},{\"text\":\"B-)\",\"imagename\":\"s\\/cool\",\"imagecomponent\":\"core\",\"altidentifier\":\"cool\",\"altcomponent\":\"core_pix\"},{\"text\":\"^-)\",\"imagename\":\"s\\/approve\",\"imagecomponent\":\"core\",\"altidentifier\":\"approve\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-)\",\"imagename\":\"s\\/wideeyes\",\"imagecomponent\":\"core\",\"altidentifier\":\"wideeyes\",\"altcomponent\":\"core_pix\"},{\"text\":\":o)\",\"imagename\":\"s\\/clown\",\"imagecomponent\":\"core\",\"altidentifier\":\"clown\",\"altcomponent\":\"core_pix\"},{\"text\":\":-(\",\"imagename\":\"s\\/sad\",\"imagecomponent\":\"core\",\"altidentifier\":\"sad\",\"altcomponent\":\"core_pix\"},{\"text\":\":(\",\"imagename\":\"s\\/sad\",\"imagecomponent\":\"core\",\"altidentifier\":\"sad\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-.\",\"imagename\":\"s\\/shy\",\"imagecomponent\":\"core\",\"altidentifier\":\"shy\",\"altcomponent\":\"core_pix\"},{\"text\":\":-I\",\"imagename\":\"s\\/blush\",\"imagecomponent\":\"core\",\"altidentifier\":\"blush\",\"altcomponent\":\"core_pix\"},{\"text\":\":-X\",\"imagename\":\"s\\/kiss\",\"imagecomponent\":\"core\",\"altidentifier\":\"kiss\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-o\",\"imagename\":\"s\\/surprise\",\"imagecomponent\":\"core\",\"altidentifier\":\"surprise\",\"altcomponent\":\"core_pix\"},{\"text\":\"P-|\",\"imagename\":\"s\\/blackeye\",\"imagecomponent\":\"core\",\"altidentifier\":\"blackeye\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-[\",\"imagename\":\"s\\/angry\",\"imagecomponent\":\"core\",\"altidentifier\":\"angry\",\"altcomponent\":\"core_pix\"},{\"text\":\"(grr)\",\"imagename\":\"s\\/angry\",\"imagecomponent\":\"core\",\"altidentifier\":\"angry\",\"altcomponent\":\"core_pix\"},{\"text\":\"xx-P\",\"imagename\":\"s\\/dead\",\"imagecomponent\":\"core\",\"altidentifier\":\"dead\",\"altcomponent\":\"core_pix\"},{\"text\":\"|-.\",\"imagename\":\"s\\/sleepy\",\"imagecomponent\":\"core\",\"altidentifier\":\"sleepy\",\"altcomponent\":\"core_pix\"},{\"text\":\"}-]\",\"imagename\":\"s\\/evil\",\"imagecomponent\":\"core\",\"altidentifier\":\"evil\",\"altcomponent\":\"core_pix\"},{\"text\":\"(h)\",\"imagename\":\"s\\/heart\",\"imagecomponent\":\"core\",\"altidentifier\":\"heart\",\"altcomponent\":\"core_pix\"},{\"text\":\"(heart)\",\"imagename\":\"s\\/heart\",\"imagecomponent\":\"core\",\"altidentifier\":\"heart\",\"altcomponent\":\"core_pix\"},{\"text\":\"(y)\",\"imagename\":\"s\\/yes\",\"imagecomponent\":\"core\",\"altidentifier\":\"yes\",\"altcomponent\":\"core\"},{\"text\":\"(n)\",\"imagename\":\"s\\/no\",\"imagecomponent\":\"core\",\"altidentifier\":\"no\",\"altcomponent\":\"core\"},{\"text\":\"(martin)\",\"imagename\":\"s\\/martin\",\"imagecomponent\":\"core\",\"altidentifier\":\"martin\",\"altcomponent\":\"core_pix\"},{\"text\":\"( )\",\"imagename\":\"s\\/egg\",\"imagecomponent\":\"core\",\"altidentifier\":\"egg\",\"altcomponent\":\"core_pix\"}]'),(322,'docroot','https://docs.moodle.org'),(323,'doclang',''),(324,'doctonewwindow','0'),(325,'coursecontactduplicates','0'),(326,'courselistshortnames','0'),(327,'coursesperpage','20'),(328,'courseswithsummarieslimit','10'),(329,'courseoverviewfileslimit','1'),(330,'courseoverviewfilesext','.jpg,.gif,.png'),(331,'coursegraceperiodbefore','0'),(332,'coursegraceperiodafter','0'),(333,'useexternalyui','0'),(334,'yuicomboloading','1'),(335,'cachejs','1'),(336,'modchooserdefault','1'),(337,'additionalhtmlhead',''),(338,'additionalhtmltopofbody',''),(339,'additionalhtmlfooter',''),(340,'cachetemplates','1'),(341,'pathtophp',''),(342,'pathtodu',''),(343,'aspellpath',''),(344,'pathtodot',''),(345,'pathtogs','/usr/bin/gs'),(346,'pathtopython',''),(347,'supportname','Admin User'),(348,'supportemail',''),(349,'supportpage',''),(350,'dbsessions','0'),(351,'sessioncookie',''),(352,'sessioncookiepath',''),(353,'sessioncookiedomain',''),(354,'statsfirstrun','none'),(355,'statsmaxruntime','0'),(356,'statsruntimedays','31'),(357,'statsuserthreshold','0'),(358,'slasharguments','1'),(359,'getremoteaddrconf','3'),(360,'reverseproxyignore',''),(361,'proxyhost',''),(362,'proxyport','0'),(363,'proxytype','HTTP'),(364,'proxyuser',''),(365,'proxypassword',''),(366,'proxybypass','localhost, 127.0.0.1'),(367,'maintenance_enabled','0'),(368,'maintenance_message',''),(369,'deleteunconfirmed','168'),(370,'deleteincompleteusers','0'),(371,'disablegradehistory','0'),(372,'gradehistorylifetime','0'),(373,'tempdatafoldercleanup','168'),(374,'filescleanupperiod','86400'),(375,'extramemorylimit','512M'),(376,'maxtimelimit','0'),(377,'curlcache','120'),(378,'curltimeoutkbitrate','56'),(379,'cron_enabled','1'),(380,'task_scheduled_concurrency_limit','3'),(381,'task_scheduled_max_runtime','1800'),(382,'task_adhoc_concurrency_limit','3'),(383,'task_adhoc_max_runtime','1800'),(384,'task_logmode','1'),(385,'task_logtostdout','1'),(386,'task_logretention','2419200'),(387,'task_logretainruns','20'),(388,'smtphosts',''),(389,'smtpsecure',''),(390,'smtpauthtype','LOGIN'),(391,'smtpuser',''),(392,'smtppass',''),(393,'smtpmaxbulk','1'),(394,'noreplyaddress','noreply@learn.dev-defaults.derekmaxson.com'),(395,'allowedemaildomains',''),(396,'divertallemailsto',''),(397,'divertallemailsexcept',''),(398,'emaildkimselector',''),(399,'sitemailcharset','0'),(400,'allowusermailcharset','0'),(401,'allowattachments','1'),(402,'mailnewline','LF'),(403,'emailfromvia','1'),(404,'emailsubjectprefix',''),(405,'emailheaders',''),(406,'updateautocheck','1'),(407,'updateminmaturity','200'),(408,'updatenotifybuilds','0'),(409,'dndallowtextandlinks','0'),(410,'pathtosassc',''),(411,'contextlocking','0'),(412,'contextlockappliestoadmin','1'),(413,'forceclean','0'),(414,'enablecourserelativedates','0'),(415,'debug','0'),(416,'debugdisplay','0'),(417,'perfdebug','7'),(418,'debugstringids','0'),(419,'debugsqltrace','0'),(420,'debugvalidators','0'),(421,'debugpageinfo','0'),(422,'profilingenabled','0'),(423,'profilingincluded',''),(424,'profilingexcluded',''),(425,'profilingautofrec','0'),(426,'profilingallowme','0'),(427,'profilingallowall','0'),(428,'profilingslow','0'),(429,'profilinglifetime','1440'),(430,'profilingimportprefix','(I)'),(431,'release','3.10.1+ (Build: 20210204)'),(432,'localcachedirpurged','1619625660'),(433,'scheduledtaskreset','1619625661'),(434,'paygw_plugins_sortorder','paypal'),(435,'allversionshash','692ee2f38a8153e3e0044e36a4a7e118d5afcd04'),(437,'registrationpending','0'),(438,'branch','310'),(439,'notloggedinroleid','6'),(440,'guestroleid','6'),(441,'defaultuserroleid','7'),(442,'creatornewroleid','3'),(443,'restorernewroleid','3'),(444,'sitepolicyhandler',''),(445,'gradebookroles','5'),(446,'h5plibraryhandler','h5plib_v124'),(447,'jabberhost',''),(448,'jabberserver',''),(449,'jabberusername',''),(450,'jabberpassword',''),(451,'jabberport','5222'),(452,'airnotifierurl','https://messages.moodle.net'),(453,'airnotifierport','443'),(454,'airnotifiermobileappname','com.moodle.moodlemobile'),(455,'airnotifierappname','commoodlemoodlemobile'),(456,'airnotifieraccesskey',''),(457,'chat_method','ajax'),(458,'chat_refresh_userlist','10'),(459,'chat_old_ping','35'),(460,'chat_refresh_room','5'),(461,'chat_normal_updatemode','jsupdate'),(462,'chat_serverhost','learn.dev-defaults.derekmaxson.com'),(463,'chat_serverip','127.0.0.1'),(464,'chat_serverport','9111'),(465,'chat_servermax','100'),(466,'data_enablerssfeeds','0'),(467,'feedback_allowfullanonymous','0'),(468,'forum_displaymode','3'),(469,'forum_shortpost','300'),(470,'forum_longpost','600'),(471,'forum_manydiscussions','100'),(472,'forum_maxbytes','512000'),(473,'forum_maxattachments','9'),(474,'forum_subscription','0'),(475,'forum_trackingtype','1'),(476,'forum_trackreadposts','1'),(477,'forum_allowforcedreadtracking','0'),(478,'forum_oldpostdays','14'),(479,'forum_usermarksread','0'),(480,'forum_cleanreadtime','2'),(481,'digestmailtime','17'),(482,'forum_enablerssfeeds','0'),(483,'forum_enabletimedposts','1'),(484,'glossary_entbypage','10'),(485,'glossary_dupentries','0'),(486,'glossary_allowcomments','0'),(487,'glossary_linkbydefault','1'),(488,'glossary_defaultapproval','1'),(489,'glossary_enablerssfeeds','0'),(490,'glossary_linkentries','0'),(491,'glossary_casesensitive','0'),(492,'glossary_fullmatch','0'),(493,'block_course_list_adminview','all'),(494,'block_course_list_hideallcourseslink','0'),(495,'block_html_allowcssclasses','0'),(496,'block_online_users_timetosee','5'),(497,'block_online_users_onlinestatushiding','1'),(498,'block_rss_client_num_entries','5'),(499,'block_rss_client_timeout','30'),(500,'pathtounoconv','/usr/bin/unoconv'),(501,'filter_multilang_force_old','0'),(502,'filter_censor_badwords',''),(503,'logguests','1'),(504,'loglifetime','0'),(505,'profileroles','5,4,3'),(506,'coursecontact','3'),(507,'frontpage','6'),(508,'frontpageloggedin','6'),(509,'maxcategorydepth','2'),(510,'frontpagecourselimit','200'),(511,'commentsperpage','15'),(512,'defaultfrontpageroleid','8'),(513,'messageinbound_enabled','0'),(514,'messageinbound_mailbox',''),(515,'messageinbound_domain',''),(516,'messageinbound_host',''),(517,'messageinbound_hostssl','ssl'),(518,'messageinbound_hostuser',''),(519,'messageinbound_hostpass',''),(520,'enablemobilewebservice','1'),(521,'mobilecssurl',''),(522,'timezone','Europe/London'),(523,'registerauth',''),(524,'scorm_updatetimelast','1619623861'),(526,'webserviceprotocols','rest'),(527,'fileslastcleanup','1619636461'); +/*!40000 ALTER TABLE `mdl_config` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_config_log` +-- + +DROP TABLE IF EXISTS `mdl_config_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_config_log` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `plugin` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `oldvalue` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_conflog_tim_ix` (`timemodified`), + KEY `mdl_conflog_use_ix` (`userid`) +) ENGINE=InnoDB AUTO_INCREMENT=1672 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Changes done in server configuration through admin UI'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_config_log` +-- + +LOCK TABLES `mdl_config_log` WRITE; +/*!40000 ALTER TABLE `mdl_config_log` DISABLE KEYS */; +INSERT INTO `mdl_config_log` VALUES (1,0,1619623688,NULL,'enableuserfeedback','0',NULL),(2,0,1619623688,NULL,'userfeedback_nextreminder','1',NULL),(3,0,1619623688,NULL,'userfeedback_remindafter','90',NULL),(4,0,1619623688,NULL,'enableoutcomes','0',NULL),(5,0,1619623688,NULL,'usecomments','1',NULL),(6,0,1619623688,NULL,'usetags','1',NULL),(7,0,1619623688,NULL,'enablenotes','1',NULL),(8,0,1619623688,NULL,'enableportfolios','0',NULL),(9,0,1619623688,NULL,'enablewebservices','0',NULL),(10,0,1619623688,NULL,'enablestats','0',NULL),(11,0,1619623688,NULL,'enablerssfeeds','0',NULL),(12,0,1619623688,NULL,'enableblogs','1',NULL),(13,0,1619623688,NULL,'enablecompletion','1',NULL),(14,0,1619623688,NULL,'completiondefault','1',NULL),(15,0,1619623688,NULL,'enableavailability','1',NULL),(16,0,1619623688,NULL,'enableplagiarism','0',NULL),(17,0,1619623688,NULL,'enablebadges','1',NULL),(18,0,1619623688,NULL,'enableglobalsearch','0',NULL),(19,0,1619623688,NULL,'allowstealth','0',NULL),(20,0,1619623688,NULL,'enableanalytics','1',NULL),(21,0,1619623688,NULL,'allowemojipicker','1',NULL),(22,0,1619623688,NULL,'userfiltersdefault','realname',NULL),(23,0,1619623688,NULL,'defaultpreference_maildisplay','2',NULL),(24,0,1619623688,NULL,'defaultpreference_mailformat','1',NULL),(25,0,1619623688,NULL,'defaultpreference_maildigest','0',NULL),(26,0,1619623688,NULL,'defaultpreference_autosubscribe','1',NULL),(27,0,1619623688,NULL,'defaultpreference_trackforums','0',NULL),(28,0,1619623688,NULL,'autologinguests','0',NULL),(29,0,1619623688,NULL,'hiddenuserfields','',NULL),(30,0,1619623688,NULL,'showuseridentity','email',NULL),(31,0,1619623688,NULL,'fullnamedisplay','language',NULL),(32,0,1619623688,NULL,'alternativefullnameformat','language',NULL),(33,0,1619623688,NULL,'maxusersperpage','100',NULL),(34,0,1619623689,NULL,'enablegravatar','0',NULL),(35,0,1619623689,NULL,'gravatardefaulturl','mm',NULL),(36,0,1619623689,NULL,'agedigitalconsentverification','0',NULL),(37,0,1619623689,NULL,'agedigitalconsentmap','*, 16\nAT, 14\nBE, 13\nBG, 14\nCY, 14\nCZ, 15\nDK, 13\nEE, 13\nES, 14\nFI, 13\nFR, 15\nGB, 13\nGR, 15\nIT, 14\nLT, 14\nLV, 13\nMT, 13\nNO, 13\nPT, 13\nSE, 13\nUS, 13',NULL),(38,0,1619623689,NULL,'sitepolicy','',NULL),(39,0,1619623689,NULL,'sitepolicyguest','',NULL),(40,0,1619623689,'moodlecourse','visible','1',NULL),(41,0,1619623689,'moodlecourse','downloadcontentsitedefault','0',NULL),(42,0,1619623689,'moodlecourse','format','topics',NULL),(43,0,1619623689,'moodlecourse','maxsections','52',NULL),(44,0,1619623689,'moodlecourse','numsections','4',NULL),(45,0,1619623689,'moodlecourse','hiddensections','0',NULL),(46,0,1619623689,'moodlecourse','coursedisplay','0',NULL),(47,0,1619623689,'moodlecourse','courseenddateenabled','1',NULL),(48,0,1619623689,'moodlecourse','courseduration','31536000',NULL),(49,0,1619623689,'moodlecourse','lang','',NULL),(50,0,1619623689,'moodlecourse','newsitems','5',NULL),(51,0,1619623689,'moodlecourse','showgrades','1',NULL),(52,0,1619623689,'moodlecourse','showreports','0',NULL),(53,0,1619623689,'moodlecourse','maxbytes','0',NULL),(54,0,1619623689,'moodlecourse','enablecompletion','1',NULL),(55,0,1619623689,'moodlecourse','groupmode','0',NULL),(56,0,1619623689,'moodlecourse','groupmodeforce','0',NULL),(57,0,1619623689,NULL,'downloadcoursecontentallowed','0',NULL),(58,0,1619623689,NULL,'maxsizeperdownloadcoursefile','52428800',NULL),(59,0,1619623689,NULL,'enablecourserequests','1',NULL),(60,0,1619623689,NULL,'defaultrequestcategory','1',NULL),(61,0,1619623689,NULL,'lockrequestcategory','0',NULL),(62,0,1619623689,NULL,'courserequestnotify','',NULL),(63,0,1619623689,NULL,'activitychoosertabmode','0',NULL),(64,0,1619623689,NULL,'activitychooseractivefooter','hidden',NULL),(65,0,1619623689,'backup','loglifetime','30',NULL),(66,0,1619623689,'backup','backup_general_users','1',NULL),(67,0,1619623689,'backup','backup_general_users_locked','',NULL),(68,0,1619623689,'backup','backup_general_anonymize','0',NULL),(69,0,1619623689,'backup','backup_general_anonymize_locked','',NULL),(70,0,1619623689,'backup','backup_general_role_assignments','1',NULL),(71,0,1619623689,'backup','backup_general_role_assignments_locked','',NULL),(72,0,1619623689,'backup','backup_general_activities','1',NULL),(73,0,1619623689,'backup','backup_general_activities_locked','',NULL),(74,0,1619623689,'backup','backup_general_blocks','1',NULL),(75,0,1619623689,'backup','backup_general_blocks_locked','',NULL),(76,0,1619623689,'backup','backup_general_files','1',NULL),(77,0,1619623689,'backup','backup_general_files_locked','',NULL),(78,0,1619623689,'backup','backup_general_filters','1',NULL),(79,0,1619623689,'backup','backup_general_filters_locked','',NULL),(80,0,1619623689,'backup','backup_general_comments','1',NULL),(81,0,1619623689,'backup','backup_general_comments_locked','',NULL),(82,0,1619623689,'backup','backup_general_badges','1',NULL),(83,0,1619623689,'backup','backup_general_badges_locked','',NULL),(84,0,1619623689,'backup','backup_general_calendarevents','1',NULL),(85,0,1619623689,'backup','backup_general_calendarevents_locked','',NULL),(86,0,1619623689,'backup','backup_general_userscompletion','1',NULL),(87,0,1619623689,'backup','backup_general_userscompletion_locked','',NULL),(88,0,1619623689,'backup','backup_general_logs','0',NULL),(89,0,1619623689,'backup','backup_general_logs_locked','',NULL),(90,0,1619623689,'backup','backup_general_histories','0',NULL),(91,0,1619623689,'backup','backup_general_histories_locked','',NULL),(92,0,1619623689,'backup','backup_general_questionbank','1',NULL),(93,0,1619623689,'backup','backup_general_questionbank_locked','',NULL),(94,0,1619623689,'backup','backup_general_groups','1',NULL),(95,0,1619623689,'backup','backup_general_groups_locked','',NULL),(96,0,1619623689,'backup','backup_general_competencies','1',NULL),(97,0,1619623689,'backup','backup_general_competencies_locked','',NULL),(98,0,1619623689,'backup','backup_general_contentbankcontent','1',NULL),(99,0,1619623689,'backup','backup_general_contentbankcontent_locked','',NULL),(100,0,1619623689,'backup','backup_general_legacyfiles','1',NULL),(101,0,1619623689,'backup','backup_general_legacyfiles_locked','',NULL),(102,0,1619623689,'backup','import_general_maxresults','10',NULL),(103,0,1619623689,'backup','import_general_duplicate_admin_allowed','0',NULL),(104,0,1619623689,'backup','backup_import_activities','1',NULL),(105,0,1619623689,'backup','backup_import_activities_locked','',NULL),(106,0,1619623689,'backup','backup_import_blocks','1',NULL),(107,0,1619623689,'backup','backup_import_blocks_locked','',NULL),(108,0,1619623689,'backup','backup_import_filters','1',NULL),(109,0,1619623689,'backup','backup_import_filters_locked','',NULL),(110,0,1619623689,'backup','backup_import_calendarevents','1',NULL),(111,0,1619623689,'backup','backup_import_calendarevents_locked','',NULL),(112,0,1619623689,'backup','backup_import_questionbank','1',NULL),(113,0,1619623689,'backup','backup_import_questionbank_locked','',NULL),(114,0,1619623689,'backup','backup_import_groups','1',NULL),(115,0,1619623689,'backup','backup_import_groups_locked','',NULL),(116,0,1619623689,'backup','backup_import_competencies','1',NULL),(117,0,1619623689,'backup','backup_import_competencies_locked','',NULL),(118,0,1619623689,'backup','backup_import_contentbankcontent','1',NULL),(119,0,1619623689,'backup','backup_import_contentbankcontent_locked','',NULL),(120,0,1619623689,'backup','backup_import_legacyfiles','1',NULL),(121,0,1619623689,'backup','backup_import_legacyfiles_locked','',NULL),(122,0,1619623689,'backup','backup_auto_active','0',NULL),(123,0,1619623689,'backup','backup_auto_weekdays','0000000',NULL),(124,0,1619623689,'backup','backup_auto_hour','0',NULL),(125,0,1619623689,'backup','backup_auto_minute','0',NULL),(126,0,1619623689,'backup','backup_auto_storage','0',NULL),(127,0,1619623689,'backup','backup_auto_destination','',NULL),(128,0,1619623689,'backup','backup_auto_max_kept','1',NULL),(129,0,1619623689,'backup','backup_auto_delete_days','0',NULL),(130,0,1619623689,'backup','backup_auto_min_kept','0',NULL),(131,0,1619623689,'backup','backup_shortname','0',NULL),(132,0,1619623689,'backup','backup_auto_skip_hidden','1',NULL),(133,0,1619623689,'backup','backup_auto_skip_modif_days','30',NULL),(134,0,1619623689,'backup','backup_auto_skip_modif_prev','0',NULL),(135,0,1619623689,'backup','backup_auto_users','1',NULL),(136,0,1619623689,'backup','backup_auto_role_assignments','1',NULL),(137,0,1619623689,'backup','backup_auto_activities','1',NULL),(138,0,1619623689,'backup','backup_auto_blocks','1',NULL),(139,0,1619623689,'backup','backup_auto_files','1',NULL),(140,0,1619623689,'backup','backup_auto_filters','1',NULL),(141,0,1619623689,'backup','backup_auto_comments','1',NULL),(142,0,1619623689,'backup','backup_auto_badges','1',NULL),(143,0,1619623689,'backup','backup_auto_calendarevents','1',NULL),(144,0,1619623689,'backup','backup_auto_userscompletion','1',NULL),(145,0,1619623689,'backup','backup_auto_logs','0',NULL),(146,0,1619623689,'backup','backup_auto_histories','0',NULL),(147,0,1619623689,'backup','backup_auto_questionbank','1',NULL),(148,0,1619623689,'backup','backup_auto_groups','1',NULL),(149,0,1619623689,'backup','backup_auto_competencies','1',NULL),(150,0,1619623689,'backup','backup_auto_contentbankcontent','1',NULL),(151,0,1619623689,'backup','backup_auto_legacyfiles','1',NULL),(152,0,1619623689,'restore','restore_general_users','1',NULL),(153,0,1619623689,'restore','restore_general_users_locked','',NULL),(154,0,1619623689,'restore','restore_general_enrolments','1',NULL),(155,0,1619623689,'restore','restore_general_enrolments_locked','',NULL),(156,0,1619623689,'restore','restore_general_role_assignments','1',NULL),(157,0,1619623689,'restore','restore_general_role_assignments_locked','',NULL),(158,0,1619623689,'restore','restore_general_activities','1',NULL),(159,0,1619623689,'restore','restore_general_activities_locked','',NULL),(160,0,1619623689,'restore','restore_general_blocks','1',NULL),(161,0,1619623689,'restore','restore_general_blocks_locked','',NULL),(162,0,1619623689,'restore','restore_general_filters','1',NULL),(163,0,1619623689,'restore','restore_general_filters_locked','',NULL),(164,0,1619623689,'restore','restore_general_comments','1',NULL),(165,0,1619623689,'restore','restore_general_comments_locked','',NULL),(166,0,1619623689,'restore','restore_general_badges','1',NULL),(167,0,1619623689,'restore','restore_general_badges_locked','',NULL),(168,0,1619623689,'restore','restore_general_calendarevents','1',NULL),(169,0,1619623689,'restore','restore_general_calendarevents_locked','',NULL),(170,0,1619623689,'restore','restore_general_userscompletion','1',NULL),(171,0,1619623689,'restore','restore_general_userscompletion_locked','',NULL),(172,0,1619623689,'restore','restore_general_logs','1',NULL),(173,0,1619623689,'restore','restore_general_logs_locked','',NULL),(174,0,1619623689,'restore','restore_general_histories','1',NULL),(175,0,1619623689,'restore','restore_general_histories_locked','',NULL),(176,0,1619623689,'restore','restore_general_groups','1',NULL),(177,0,1619623689,'restore','restore_general_groups_locked','',NULL),(178,0,1619623689,'restore','restore_general_competencies','1',NULL),(179,0,1619623689,'restore','restore_general_competencies_locked','',NULL),(180,0,1619623689,'restore','restore_general_contentbankcontent','1',NULL),(181,0,1619623689,'restore','restore_general_contentbankcontent_locked','',NULL),(182,0,1619623689,'restore','restore_general_legacyfiles','1',NULL),(183,0,1619623689,'restore','restore_general_legacyfiles_locked','',NULL),(184,0,1619623689,'restore','restore_merge_overwrite_conf','0',NULL),(185,0,1619623689,'restore','restore_merge_overwrite_conf_locked','',NULL),(186,0,1619623689,'restore','restore_merge_course_fullname','1',NULL),(187,0,1619623689,'restore','restore_merge_course_fullname_locked','',NULL),(188,0,1619623689,'restore','restore_merge_course_shortname','1',NULL),(189,0,1619623689,'restore','restore_merge_course_shortname_locked','',NULL),(190,0,1619623689,'restore','restore_merge_course_startdate','1',NULL),(191,0,1619623689,'restore','restore_merge_course_startdate_locked','',NULL),(192,0,1619623689,'restore','restore_replace_overwrite_conf','0',NULL),(193,0,1619623689,'restore','restore_replace_overwrite_conf_locked','',NULL),(194,0,1619623689,'restore','restore_replace_course_fullname','1',NULL),(195,0,1619623689,'restore','restore_replace_course_fullname_locked','',NULL),(196,0,1619623689,'restore','restore_replace_course_shortname','1',NULL),(197,0,1619623689,'restore','restore_replace_course_shortname_locked','',NULL),(198,0,1619623689,'restore','restore_replace_course_startdate','1',NULL),(199,0,1619623689,'restore','restore_replace_course_startdate_locked','',NULL),(200,0,1619623689,'restore','restore_replace_keep_roles_and_enrolments','0',NULL),(201,0,1619623689,'restore','restore_replace_keep_roles_and_enrolments_locked','',NULL),(202,0,1619623689,'restore','restore_replace_keep_groups_and_groupings','0',NULL),(203,0,1619623689,'restore','restore_replace_keep_groups_and_groupings_locked','',NULL),(204,0,1619623689,NULL,'enableasyncbackup','0',NULL),(205,0,1619623689,'backup','backup_async_message_users','0',NULL),(206,0,1619623689,'backup','backup_async_message_subject','Moodle {operation} completed successfully',NULL),(207,0,1619623689,'backup','backup_async_message','Hi {user_firstname},
Your {operation} (ID: {backupid}) has completed successfully.

You can access it here: {link}.',NULL),(208,0,1619623689,NULL,'grade_profilereport','user',NULL),(209,0,1619623689,NULL,'grade_aggregationposition','1',NULL),(210,0,1619623689,NULL,'grade_includescalesinaggregation','1',NULL),(211,0,1619623689,NULL,'grade_hiddenasdate','0',NULL),(212,0,1619623689,NULL,'gradepublishing','0',NULL),(213,0,1619623689,NULL,'grade_export_exportfeedback','0',NULL),(214,0,1619623689,NULL,'grade_export_displaytype','1',NULL),(215,0,1619623689,NULL,'grade_export_decimalpoints','2',NULL),(216,0,1619623689,NULL,'grade_navmethod','1',NULL),(217,0,1619623689,NULL,'grade_export_userprofilefields','firstname,lastname,idnumber,institution,department,email',NULL),(218,0,1619623689,NULL,'grade_export_customprofilefields','',NULL),(219,0,1619623689,NULL,'recovergradesdefault','0',NULL),(220,0,1619623689,NULL,'gradeexport','',NULL),(221,0,1619623689,NULL,'unlimitedgrades','0',NULL),(222,0,1619623689,NULL,'grade_report_showmin','1',NULL),(223,0,1619623689,NULL,'gradepointmax','100',NULL),(224,0,1619623689,NULL,'gradepointdefault','100',NULL),(225,0,1619623689,NULL,'grade_minmaxtouse','1',NULL),(226,0,1619623689,NULL,'grade_mygrades_report','overview',NULL),(227,0,1619623689,NULL,'gradereport_mygradeurl','',NULL),(228,0,1619623689,NULL,'grade_hideforcedsettings','1',NULL),(229,0,1619623689,NULL,'grade_aggregation','13',NULL),(230,0,1619623689,NULL,'grade_aggregation_flag','0',NULL),(231,0,1619623689,NULL,'grade_aggregations_visible','13',NULL),(232,0,1619623689,NULL,'grade_aggregateonlygraded','1',NULL),(233,0,1619623689,NULL,'grade_aggregateonlygraded_flag','2',NULL),(234,0,1619623689,NULL,'grade_aggregateoutcomes','0',NULL),(235,0,1619623689,NULL,'grade_aggregateoutcomes_flag','2',NULL),(236,0,1619623689,NULL,'grade_keephigh','0',NULL),(237,0,1619623689,NULL,'grade_keephigh_flag','3',NULL),(238,0,1619623689,NULL,'grade_droplow','0',NULL),(239,0,1619623689,NULL,'grade_droplow_flag','2',NULL),(240,0,1619623689,NULL,'grade_overridecat','1',NULL),(241,0,1619623689,NULL,'grade_displaytype','1',NULL),(242,0,1619623689,NULL,'grade_decimalpoints','2',NULL),(243,0,1619623689,NULL,'grade_item_advanced','iteminfo,idnumber,gradepass,plusfactor,multfactor,display,decimals,hiddenuntil,locktime',NULL),(244,0,1619623689,NULL,'grade_report_studentsperpage','100',NULL),(245,0,1619623689,NULL,'grade_report_showonlyactiveenrol','1',NULL),(246,0,1619623689,NULL,'grade_report_quickgrading','1',NULL),(247,0,1619623689,NULL,'grade_report_showquickfeedback','0',NULL),(248,0,1619623689,NULL,'grade_report_meanselection','1',NULL),(249,0,1619623689,NULL,'grade_report_enableajax','0',NULL),(250,0,1619623689,NULL,'grade_report_showcalculations','1',NULL),(251,0,1619623689,NULL,'grade_report_showeyecons','0',NULL),(252,0,1619623689,NULL,'grade_report_showaverages','1',NULL),(253,0,1619623689,NULL,'grade_report_showlocks','0',NULL),(254,0,1619623689,NULL,'grade_report_showranges','0',NULL),(255,0,1619623689,NULL,'grade_report_showanalysisicon','1',NULL),(256,0,1619623689,NULL,'grade_report_showuserimage','1',NULL),(257,0,1619623689,NULL,'grade_report_showactivityicons','1',NULL),(258,0,1619623689,NULL,'grade_report_shownumberofgrades','0',NULL),(259,0,1619623689,NULL,'grade_report_averagesdisplaytype','inherit',NULL),(260,0,1619623689,NULL,'grade_report_rangesdisplaytype','inherit',NULL),(261,0,1619623689,NULL,'grade_report_averagesdecimalpoints','inherit',NULL),(262,0,1619623689,NULL,'grade_report_rangesdecimalpoints','inherit',NULL),(263,0,1619623689,NULL,'grade_report_historyperpage','50',NULL),(264,0,1619623689,NULL,'grade_report_overview_showrank','0',NULL),(265,0,1619623689,NULL,'grade_report_overview_showtotalsifcontainhidden','0',NULL),(266,0,1619623689,NULL,'grade_report_user_showrank','0',NULL),(267,0,1619623689,NULL,'grade_report_user_showpercentage','1',NULL),(268,0,1619623689,NULL,'grade_report_user_showgrade','1',NULL),(269,0,1619623689,NULL,'grade_report_user_showfeedback','1',NULL),(270,0,1619623689,NULL,'grade_report_user_showrange','1',NULL),(271,0,1619623689,NULL,'grade_report_user_showweight','1',NULL),(272,0,1619623689,NULL,'grade_report_user_showaverage','0',NULL),(273,0,1619623689,NULL,'grade_report_user_showlettergrade','0',NULL),(274,0,1619623689,NULL,'grade_report_user_rangedecimals','0',NULL),(275,0,1619623689,NULL,'grade_report_user_showhiddenitems','1',NULL),(276,0,1619623690,NULL,'grade_report_user_showtotalsifcontainhidden','0',NULL),(277,0,1619623690,NULL,'grade_report_user_showcontributiontocoursetotal','1',NULL),(278,0,1619623690,'analytics','modeinstruction','',NULL),(279,0,1619623690,'analytics','percentonline','0',NULL),(280,0,1619623690,'analytics','typeinstitution','',NULL),(281,0,1619623690,'analytics','levelinstitution','',NULL),(282,0,1619623690,'analytics','predictionsprocessor','\\mlbackend_php\\processor',NULL),(283,0,1619623690,'analytics','defaulttimesplittingsevaluation','\\core\\analytics\\time_splitting\\quarters_accum,\\core\\analytics\\time_splitting\\quarters,\\core\\analytics\\time_splitting\\single_range',NULL),(284,0,1619623690,'analytics','modeloutputdir','',NULL),(285,0,1619623690,'analytics','onlycli','1',NULL),(286,0,1619623690,'analytics','modeltimelimit','1200',NULL),(287,0,1619623690,'core_competency','enabled','1',NULL),(288,0,1619623690,'core_competency','pushcourseratingstouserplans','1',NULL),(289,0,1619623690,NULL,'badges_defaultissuername','',NULL),(290,0,1619623690,NULL,'badges_defaultissuercontact','',NULL),(291,0,1619623690,NULL,'badges_badgesalt','badges1619623682',NULL),(292,0,1619623690,NULL,'badges_allowcoursebadges','1',NULL),(293,0,1619623690,NULL,'badges_allowexternalbackpack','1',NULL),(294,0,1619623690,NULL,'rememberuserlicensepref','1',NULL),(295,0,1619623690,NULL,'timezone','Europe/London',NULL),(296,0,1619623690,NULL,'forcetimezone','99',NULL),(297,0,1619623690,NULL,'country','0',NULL),(298,0,1619623690,NULL,'defaultcity','',NULL),(299,0,1619623690,NULL,'geoip2file','/var/www/moodledata/geoip/GeoLite2-City.mmdb',NULL),(300,0,1619623690,NULL,'googlemapkey3','',NULL),(301,0,1619623690,NULL,'allcountrycodes','',NULL),(302,0,1619623690,NULL,'autolang','1',NULL),(303,0,1619623690,NULL,'lang','en',NULL),(304,0,1619623690,NULL,'autolangusercreation','1',NULL),(305,0,1619623690,NULL,'langmenu','1',NULL),(306,0,1619623690,NULL,'langlist','',NULL),(307,0,1619623690,NULL,'langcache','1',NULL),(308,0,1619623690,NULL,'langstringcache','1',NULL),(309,0,1619623690,NULL,'locale','',NULL),(310,0,1619623690,NULL,'latinexcelexport','0',NULL),(311,0,1619623690,NULL,'messaging','1',NULL),(312,0,1619623690,NULL,'messagingallusers','0',NULL),(313,0,1619623690,NULL,'messagingdefaultpressenter','1',NULL),(314,0,1619623690,NULL,'messagingdeletereadnotificationsdelay','604800',NULL),(315,0,1619623690,NULL,'messagingdeleteallnotificationsdelay','2620800',NULL),(316,0,1619623690,NULL,'messagingallowemailoverride','0',NULL),(317,0,1619623690,NULL,'requiremodintro','0',NULL),(318,0,1619623690,'antivirus','notifyemail','',NULL),(319,0,1619623690,'antivirus','enablequarantine','0',NULL),(320,0,1619623691,'antivirus','quarantinetime','2419200',NULL),(321,0,1619623691,NULL,'registerauth','',NULL),(322,0,1619623691,NULL,'authloginviaemail','0',NULL),(323,0,1619623691,NULL,'allowaccountssameemail','0',NULL),(324,0,1619623691,NULL,'authpreventaccountcreation','0',NULL),(325,0,1619623691,NULL,'loginpageautofocus','0',NULL),(326,0,1619623691,NULL,'guestloginbutton','1',NULL),(327,0,1619623691,NULL,'limitconcurrentlogins','0',NULL),(328,0,1619623691,NULL,'alternateloginurl','',NULL),(329,0,1619623691,NULL,'forgottenpasswordurl','',NULL),(330,0,1619623691,NULL,'auth_instructions','',NULL),(331,0,1619623691,NULL,'allowemailaddresses','',NULL),(332,0,1619623691,NULL,'denyemailaddresses','',NULL),(333,0,1619623691,NULL,'verifychangedemail','1',NULL),(334,0,1619623691,NULL,'recaptchapublickey','',NULL),(335,0,1619623691,NULL,'recaptchaprivatekey','',NULL),(336,0,1619623691,'cachestore_apcu','testperformance','0',NULL),(337,0,1619623691,'cachestore_memcached','testservers','',NULL),(338,0,1619623691,'cachestore_mongodb','testserver','',NULL),(339,0,1619623691,'cachestore_redis','test_server','',NULL),(340,0,1619623691,'cachestore_redis','test_password','',NULL),(341,0,1619623691,NULL,'filteruploadedfiles','0',NULL),(342,0,1619623691,NULL,'filtermatchoneperpage','0',NULL),(343,0,1619623691,NULL,'filtermatchonepertext','0',NULL),(344,0,1619623691,NULL,'media_default_width','400',NULL),(345,0,1619623691,NULL,'media_default_height','300',NULL),(346,0,1619623691,NULL,'portfolio_moderate_filesize_threshold','1048576',NULL),(347,0,1619623691,NULL,'portfolio_high_filesize_threshold','5242880',NULL),(348,0,1619623691,NULL,'portfolio_moderate_db_threshold','20',NULL),(349,0,1619623691,NULL,'portfolio_high_db_threshold','50',NULL),(350,0,1619623691,'question_preview','behaviour','deferredfeedback',NULL),(351,0,1619623691,'question_preview','correctness','1',NULL),(352,0,1619623691,'question_preview','marks','2',NULL),(353,0,1619623691,'question_preview','markdp','2',NULL),(354,0,1619623691,'question_preview','feedback','1',NULL),(355,0,1619623691,'question_preview','generalfeedback','1',NULL),(356,0,1619623691,'question_preview','rightanswer','1',NULL),(357,0,1619623691,'question_preview','history','0',NULL),(358,0,1619623691,NULL,'repositorycacheexpire','120',NULL),(359,0,1619623691,NULL,'repositorygetfiletimeout','30',NULL),(360,0,1619623691,NULL,'repositorysyncfiletimeout','1',NULL),(361,0,1619623691,NULL,'repositorysyncimagetimeout','3',NULL),(362,0,1619623691,NULL,'repositoryallowexternallinks','1',NULL),(363,0,1619623691,NULL,'legacyfilesinnewcourses','0',NULL),(364,0,1619623691,NULL,'legacyfilesaddallowed','1',NULL),(365,0,1619623691,NULL,'searchengine','simpledb',NULL),(366,0,1619623691,NULL,'searchindexwhendisabled','0',NULL),(367,0,1619623691,NULL,'searchindextime','600',NULL),(368,0,1619623691,NULL,'searchallavailablecourses','0',NULL),(369,0,1619623691,NULL,'searchincludeallcourses','0',NULL),(370,0,1619623691,NULL,'searchenablecategories','0',NULL),(371,0,1619623691,NULL,'searchdefaultcategory','core-all',NULL),(372,0,1619623691,NULL,'searchhideallcategory','0',NULL),(373,0,1619623691,NULL,'searchenginequeryonly','',NULL),(374,0,1619623691,NULL,'searchbannerenable','0',NULL),(375,0,1619623691,NULL,'searchbanner','',NULL),(376,0,1619623691,NULL,'enablewsdocumentation','0',NULL),(377,0,1619623691,NULL,'allowbeforeblock','0',NULL),(378,0,1619623691,NULL,'allowedip','',NULL),(379,0,1619623691,NULL,'blockedip','',NULL),(380,0,1619623691,NULL,'protectusernames','1',NULL),(381,0,1619623691,NULL,'forcelogin','0',NULL),(382,0,1619623691,NULL,'forceloginforprofiles','1',NULL),(383,0,1619623691,NULL,'forceloginforprofileimage','0',NULL),(384,0,1619623691,NULL,'opentowebcrawlers','0',NULL),(385,0,1619623691,NULL,'allowindexing','0',NULL),(386,0,1619623691,NULL,'maxbytes','0',NULL),(387,0,1619623691,NULL,'userquota','104857600',NULL),(388,0,1619623691,NULL,'allowobjectembed','0',NULL),(389,0,1619623691,NULL,'enabletrusttext','0',NULL),(390,0,1619623691,NULL,'maxeditingtime','1800',NULL),(391,0,1619623691,NULL,'extendedusernamechars','0',NULL),(392,0,1619623691,NULL,'keeptagnamecase','1',NULL),(393,0,1619623691,NULL,'profilesforenrolledusersonly','1',NULL),(394,0,1619623691,NULL,'cronclionly','1',NULL),(395,0,1619623691,NULL,'cronremotepassword','',NULL),(396,0,1619623691,'tool_task','enablerunnow','1',NULL),(397,0,1619623691,NULL,'lockoutthreshold','0',NULL),(398,0,1619623691,NULL,'lockoutwindow','1800',NULL),(399,0,1619623691,NULL,'lockoutduration','1800',NULL),(400,0,1619623691,NULL,'passwordpolicy','1',NULL),(401,0,1619623691,NULL,'minpasswordlength','8',NULL),(402,0,1619623691,NULL,'minpassworddigits','1',NULL),(403,0,1619623691,NULL,'minpasswordlower','1',NULL),(404,0,1619623691,NULL,'minpasswordupper','1',NULL),(405,0,1619623691,NULL,'minpasswordnonalphanum','1',NULL),(406,0,1619623691,NULL,'maxconsecutiveidentchars','0',NULL),(407,0,1619623691,NULL,'passwordpolicycheckonlogin','0',NULL),(408,0,1619623691,NULL,'passwordreuselimit','0',NULL),(409,0,1619623691,NULL,'pwresettime','1800',NULL),(410,0,1619623691,NULL,'passwordchangelogout','0',NULL),(411,0,1619623691,NULL,'passwordchangetokendeletion','0',NULL),(412,0,1619623691,NULL,'tokenduration','7257600',NULL),(413,0,1619623691,NULL,'groupenrolmentkeypolicy','1',NULL),(414,0,1619623691,NULL,'disableuserimages','0',NULL),(415,0,1619623691,NULL,'emailchangeconfirmation','1',NULL),(416,0,1619623691,NULL,'rememberusername','2',NULL),(417,0,1619623691,NULL,'strictformsrequired','0',NULL),(418,0,1619623691,NULL,'cookiesecure','1',NULL),(419,0,1619623691,NULL,'cookiehttponly','0',NULL),(420,0,1619623691,NULL,'allowframembedding','0',NULL),(421,0,1619623691,NULL,'curlsecurityblockedhosts','',NULL),(422,0,1619623691,NULL,'curlsecurityallowedport','',NULL),(423,0,1619623691,NULL,'referrerpolicy','default',NULL),(424,0,1619623691,NULL,'displayloginfailures','0',NULL),(425,0,1619623691,NULL,'notifyloginfailures','',NULL),(426,0,1619623691,NULL,'notifyloginthreshold','10',NULL),(427,0,1619623691,NULL,'themelist','',NULL),(428,0,1619623691,NULL,'themedesignermode','0',NULL),(429,0,1619623691,NULL,'allowuserthemes','0',NULL),(430,0,1619623691,NULL,'allowcoursethemes','0',NULL),(431,0,1619623691,NULL,'allowcategorythemes','0',NULL),(432,0,1619623691,NULL,'allowcohortthemes','0',NULL),(433,0,1619623691,NULL,'allowthemechangeonurl','0',NULL),(434,0,1619623691,NULL,'allowuserblockhiding','1',NULL),(435,0,1619623691,NULL,'langmenuinsecurelayout','0',NULL),(436,0,1619623691,NULL,'logininfoinsecurelayout','0',NULL),(437,0,1619623691,NULL,'custommenuitems','',NULL),(438,0,1619623691,NULL,'customusermenuitems','grades,grades|/grade/report/mygrades.php|t/grades\nmessages,message|/message/index.php|t/message\npreferences,moodle|/user/preferences.php|t/preferences',NULL),(439,0,1619623691,NULL,'enabledevicedetection','1',NULL),(440,0,1619623691,NULL,'devicedetectregex','[]',NULL),(441,0,1619623691,'theme_boost','preset','default.scss',NULL),(442,0,1619623691,'theme_boost','presetfiles','',NULL),(443,0,1619623691,'theme_boost','backgroundimage','',NULL),(444,0,1619623691,'theme_boost','brandcolor','',NULL),(445,0,1619623691,'theme_boost','scsspre','',NULL),(446,0,1619623691,'theme_boost','scss','',NULL),(447,0,1619623691,'theme_classic','navbardark','0',NULL),(448,0,1619623691,'theme_classic','preset','default.scss',NULL),(449,0,1619623691,'theme_classic','presetfiles','',NULL),(450,0,1619623691,'theme_classic','backgroundimage','',NULL),(451,0,1619623691,'theme_classic','brandcolor','',NULL),(452,0,1619623691,'theme_classic','scsspre','',NULL),(453,0,1619623691,'theme_classic','scss','',NULL),(454,0,1619623691,'core_admin','logo','',NULL),(455,0,1619623691,'core_admin','logocompact','',NULL),(456,0,1619623691,'core_admin','coursecolor1','#81ecec',NULL),(457,0,1619623691,'core_admin','coursecolor2','#74b9ff',NULL),(458,0,1619623691,'core_admin','coursecolor3','#a29bfe',NULL),(459,0,1619623691,'core_admin','coursecolor4','#dfe6e9',NULL),(460,0,1619623691,'core_admin','coursecolor5','#00b894',NULL),(461,0,1619623691,'core_admin','coursecolor6','#0984e3',NULL),(462,0,1619623691,'core_admin','coursecolor7','#b2bec3',NULL),(463,0,1619623691,'core_admin','coursecolor8','#fdcb6e',NULL),(464,0,1619623691,'core_admin','coursecolor9','#fd79a8',NULL),(465,0,1619623691,'core_admin','coursecolor10','#6c5ce7',NULL),(466,0,1619623691,NULL,'calendartype','gregorian',NULL),(467,0,1619623691,NULL,'calendar_adminseesall','0',NULL),(468,0,1619623691,NULL,'calendar_site_timeformat','0',NULL),(469,0,1619623691,NULL,'calendar_startwday','1',NULL),(470,0,1619623691,NULL,'calendar_weekend','65',NULL),(471,0,1619623691,NULL,'calendar_lookahead','21',NULL),(472,0,1619623691,NULL,'calendar_maxevents','10',NULL),(473,0,1619623691,NULL,'enablecalendarexport','1',NULL),(474,0,1619623691,NULL,'calendar_customexport','1',NULL),(475,0,1619623691,NULL,'calendar_exportlookahead','365',NULL),(476,0,1619623691,NULL,'calendar_exportlookback','5',NULL),(477,0,1619623691,NULL,'calendar_exportsalt','I5exB8dsSVw3lwqBfUPJqCl9M9J0GO0vUP2rTdbKbNcwvY9V3LnLf39IxCpK',NULL),(478,0,1619623691,NULL,'calendar_showicalsource','1',NULL),(479,0,1619623691,NULL,'useblogassociations','1',NULL),(480,0,1619623691,NULL,'bloglevel','4',NULL),(481,0,1619623691,NULL,'useexternalblogs','1',NULL),(482,0,1619623691,NULL,'externalblogcrontime','86400',NULL),(483,0,1619623691,NULL,'maxexternalblogsperuser','1',NULL),(484,0,1619623691,NULL,'blogusecomments','1',NULL),(485,0,1619623691,NULL,'blogshowcommentscount','1',NULL),(486,0,1619623691,NULL,'defaulthomepage','1',NULL),(487,0,1619623691,NULL,'allowguestmymoodle','1',NULL),(488,0,1619623691,NULL,'navshowfullcoursenames','0',NULL),(489,0,1619623691,NULL,'navshowcategories','1',NULL),(490,0,1619623691,NULL,'navshowmycoursecategories','0',NULL),(491,0,1619623691,NULL,'navshowallcourses','0',NULL),(492,0,1619623691,NULL,'navsortmycoursessort','sortorder',NULL),(493,0,1619623691,NULL,'navsortmycourseshiddenlast','1',NULL),(494,0,1619623691,NULL,'navcourselimit','10',NULL),(495,0,1619623691,NULL,'usesitenameforsitepages','0',NULL),(496,0,1619623691,NULL,'linkadmincategories','1',NULL),(497,0,1619623691,NULL,'linkcoursesections','1',NULL),(498,0,1619623691,NULL,'navshowfrontpagemods','1',NULL),(499,0,1619623691,NULL,'navadduserpostslinks','1',NULL),(500,0,1619623691,NULL,'formatstringstriptags','1',NULL),(501,0,1619623691,NULL,'emoticons','[{\"text\":\":-)\",\"imagename\":\"s\\/smiley\",\"imagecomponent\":\"core\",\"altidentifier\":\"smiley\",\"altcomponent\":\"core_pix\"},{\"text\":\":)\",\"imagename\":\"s\\/smiley\",\"imagecomponent\":\"core\",\"altidentifier\":\"smiley\",\"altcomponent\":\"core_pix\"},{\"text\":\":-D\",\"imagename\":\"s\\/biggrin\",\"imagecomponent\":\"core\",\"altidentifier\":\"biggrin\",\"altcomponent\":\"core_pix\"},{\"text\":\";-)\",\"imagename\":\"s\\/wink\",\"imagecomponent\":\"core\",\"altidentifier\":\"wink\",\"altcomponent\":\"core_pix\"},{\"text\":\":-\\/\",\"imagename\":\"s\\/mixed\",\"imagecomponent\":\"core\",\"altidentifier\":\"mixed\",\"altcomponent\":\"core_pix\"},{\"text\":\"V-.\",\"imagename\":\"s\\/thoughtful\",\"imagecomponent\":\"core\",\"altidentifier\":\"thoughtful\",\"altcomponent\":\"core_pix\"},{\"text\":\":-P\",\"imagename\":\"s\\/tongueout\",\"imagecomponent\":\"core\",\"altidentifier\":\"tongueout\",\"altcomponent\":\"core_pix\"},{\"text\":\":-p\",\"imagename\":\"s\\/tongueout\",\"imagecomponent\":\"core\",\"altidentifier\":\"tongueout\",\"altcomponent\":\"core_pix\"},{\"text\":\"B-)\",\"imagename\":\"s\\/cool\",\"imagecomponent\":\"core\",\"altidentifier\":\"cool\",\"altcomponent\":\"core_pix\"},{\"text\":\"^-)\",\"imagename\":\"s\\/approve\",\"imagecomponent\":\"core\",\"altidentifier\":\"approve\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-)\",\"imagename\":\"s\\/wideeyes\",\"imagecomponent\":\"core\",\"altidentifier\":\"wideeyes\",\"altcomponent\":\"core_pix\"},{\"text\":\":o)\",\"imagename\":\"s\\/clown\",\"imagecomponent\":\"core\",\"altidentifier\":\"clown\",\"altcomponent\":\"core_pix\"},{\"text\":\":-(\",\"imagename\":\"s\\/sad\",\"imagecomponent\":\"core\",\"altidentifier\":\"sad\",\"altcomponent\":\"core_pix\"},{\"text\":\":(\",\"imagename\":\"s\\/sad\",\"imagecomponent\":\"core\",\"altidentifier\":\"sad\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-.\",\"imagename\":\"s\\/shy\",\"imagecomponent\":\"core\",\"altidentifier\":\"shy\",\"altcomponent\":\"core_pix\"},{\"text\":\":-I\",\"imagename\":\"s\\/blush\",\"imagecomponent\":\"core\",\"altidentifier\":\"blush\",\"altcomponent\":\"core_pix\"},{\"text\":\":-X\",\"imagename\":\"s\\/kiss\",\"imagecomponent\":\"core\",\"altidentifier\":\"kiss\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-o\",\"imagename\":\"s\\/surprise\",\"imagecomponent\":\"core\",\"altidentifier\":\"surprise\",\"altcomponent\":\"core_pix\"},{\"text\":\"P-|\",\"imagename\":\"s\\/blackeye\",\"imagecomponent\":\"core\",\"altidentifier\":\"blackeye\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-[\",\"imagename\":\"s\\/angry\",\"imagecomponent\":\"core\",\"altidentifier\":\"angry\",\"altcomponent\":\"core_pix\"},{\"text\":\"(grr)\",\"imagename\":\"s\\/angry\",\"imagecomponent\":\"core\",\"altidentifier\":\"angry\",\"altcomponent\":\"core_pix\"},{\"text\":\"xx-P\",\"imagename\":\"s\\/dead\",\"imagecomponent\":\"core\",\"altidentifier\":\"dead\",\"altcomponent\":\"core_pix\"},{\"text\":\"|-.\",\"imagename\":\"s\\/sleepy\",\"imagecomponent\":\"core\",\"altidentifier\":\"sleepy\",\"altcomponent\":\"core_pix\"},{\"text\":\"}-]\",\"imagename\":\"s\\/evil\",\"imagecomponent\":\"core\",\"altidentifier\":\"evil\",\"altcomponent\":\"core_pix\"},{\"text\":\"(h)\",\"imagename\":\"s\\/heart\",\"imagecomponent\":\"core\",\"altidentifier\":\"heart\",\"altcomponent\":\"core_pix\"},{\"text\":\"(heart)\",\"imagename\":\"s\\/heart\",\"imagecomponent\":\"core\",\"altidentifier\":\"heart\",\"altcomponent\":\"core_pix\"},{\"text\":\"(y)\",\"imagename\":\"s\\/yes\",\"imagecomponent\":\"core\",\"altidentifier\":\"yes\",\"altcomponent\":\"core\"},{\"text\":\"(n)\",\"imagename\":\"s\\/no\",\"imagecomponent\":\"core\",\"altidentifier\":\"no\",\"altcomponent\":\"core\"},{\"text\":\"(martin)\",\"imagename\":\"s\\/martin\",\"imagecomponent\":\"core\",\"altidentifier\":\"martin\",\"altcomponent\":\"core_pix\"},{\"text\":\"( )\",\"imagename\":\"s\\/egg\",\"imagecomponent\":\"core\",\"altidentifier\":\"egg\",\"altcomponent\":\"core_pix\"}]',NULL),(502,0,1619623691,NULL,'docroot','https://docs.moodle.org',NULL),(503,0,1619623691,NULL,'doclang','',NULL),(504,0,1619623691,NULL,'doctonewwindow','0',NULL),(505,0,1619623691,NULL,'coursecontactduplicates','0',NULL),(506,0,1619623691,NULL,'courselistshortnames','0',NULL),(507,0,1619623691,NULL,'coursesperpage','20',NULL),(508,0,1619623691,NULL,'courseswithsummarieslimit','10',NULL),(509,0,1619623691,NULL,'courseoverviewfileslimit','1',NULL),(510,0,1619623691,NULL,'courseoverviewfilesext','.jpg,.gif,.png',NULL),(511,0,1619623691,NULL,'coursegraceperiodbefore','0',NULL),(512,0,1619623691,NULL,'coursegraceperiodafter','0',NULL),(513,0,1619623691,NULL,'useexternalyui','0',NULL),(514,0,1619623691,NULL,'yuicomboloading','1',NULL),(515,0,1619623691,NULL,'cachejs','1',NULL),(516,0,1619623691,NULL,'modchooserdefault','1',NULL),(517,0,1619623692,NULL,'additionalhtmlhead','',NULL),(518,0,1619623692,NULL,'additionalhtmltopofbody','',NULL),(519,0,1619623692,NULL,'additionalhtmlfooter','',NULL),(520,0,1619623692,NULL,'cachetemplates','1',NULL),(521,0,1619623692,NULL,'pathtophp','',NULL),(522,0,1619623692,NULL,'pathtodu','',NULL),(523,0,1619623692,NULL,'aspellpath','',NULL),(524,0,1619623692,NULL,'pathtodot','',NULL),(525,0,1619623692,NULL,'pathtogs','/usr/bin/gs',NULL),(526,0,1619623692,NULL,'pathtopython','',NULL),(527,0,1619623692,NULL,'supportname','Admin User',NULL),(528,0,1619623692,NULL,'supportemail','',NULL),(529,0,1619623692,NULL,'supportpage','',NULL),(530,0,1619623692,NULL,'dbsessions','0',NULL),(531,0,1619623692,NULL,'sessioncookie','',NULL),(532,0,1619623692,NULL,'sessioncookiepath','',NULL),(533,0,1619623692,NULL,'sessioncookiedomain','',NULL),(534,0,1619623692,NULL,'statsfirstrun','none',NULL),(535,0,1619623692,NULL,'statsmaxruntime','0',NULL),(536,0,1619623692,NULL,'statsruntimedays','31',NULL),(537,0,1619623692,NULL,'statsuserthreshold','0',NULL),(538,0,1619623692,NULL,'slasharguments','1',NULL),(539,0,1619623692,NULL,'getremoteaddrconf','3',NULL),(540,0,1619623692,NULL,'reverseproxyignore','',NULL),(541,0,1619623692,NULL,'proxyhost','',NULL),(542,0,1619623692,NULL,'proxyport','0',NULL),(543,0,1619623692,NULL,'proxytype','HTTP',NULL),(544,0,1619623692,NULL,'proxyuser','',NULL),(545,0,1619623692,NULL,'proxypassword','',NULL),(546,0,1619623692,NULL,'proxybypass','localhost, 127.0.0.1',NULL),(547,0,1619623692,NULL,'maintenance_enabled','0',NULL),(548,0,1619623692,NULL,'maintenance_message','',NULL),(549,0,1619623692,NULL,'deleteunconfirmed','168',NULL),(550,0,1619623692,NULL,'deleteincompleteusers','0',NULL),(551,0,1619623692,NULL,'disablegradehistory','0',NULL),(552,0,1619623692,NULL,'gradehistorylifetime','0',NULL),(553,0,1619623692,NULL,'tempdatafoldercleanup','168',NULL),(554,0,1619623692,NULL,'filescleanupperiod','86400',NULL),(555,0,1619623692,NULL,'extramemorylimit','512M',NULL),(556,0,1619623692,NULL,'maxtimelimit','0',NULL),(557,0,1619623692,NULL,'curlcache','120',NULL),(558,0,1619623692,NULL,'curltimeoutkbitrate','56',NULL),(559,0,1619623692,NULL,'cron_enabled','1',NULL),(560,0,1619623692,NULL,'task_scheduled_concurrency_limit','3',NULL),(561,0,1619623692,NULL,'task_scheduled_max_runtime','1800',NULL),(562,0,1619623692,NULL,'task_adhoc_concurrency_limit','3',NULL),(563,0,1619623692,NULL,'task_adhoc_max_runtime','1800',NULL),(564,0,1619623692,NULL,'task_logmode','1',NULL),(565,0,1619623692,NULL,'task_logtostdout','1',NULL),(566,0,1619623692,NULL,'task_logretention','2419200',NULL),(567,0,1619623692,NULL,'task_logretainruns','20',NULL),(568,0,1619623692,NULL,'smtphosts','',NULL),(569,0,1619623692,NULL,'smtpsecure','',NULL),(570,0,1619623692,NULL,'smtpauthtype','LOGIN',NULL),(571,0,1619623692,NULL,'smtpuser','',NULL),(572,0,1619623692,NULL,'smtppass','',NULL),(573,0,1619623692,NULL,'smtpmaxbulk','1',NULL),(574,0,1619623692,NULL,'noreplyaddress','noreply@learn.dev-defaults.derekmaxson.com',NULL),(575,0,1619623692,NULL,'allowedemaildomains','',NULL),(576,0,1619623692,NULL,'divertallemailsto','',NULL),(577,0,1619623692,NULL,'divertallemailsexcept','',NULL),(578,0,1619623692,NULL,'emaildkimselector','',NULL),(579,0,1619623692,NULL,'sitemailcharset','0',NULL),(580,0,1619623692,NULL,'allowusermailcharset','0',NULL),(581,0,1619623692,NULL,'allowattachments','1',NULL),(582,0,1619623692,NULL,'mailnewline','LF',NULL),(583,0,1619623692,NULL,'emailfromvia','1',NULL),(584,0,1619623692,NULL,'emailsubjectprefix','',NULL),(585,0,1619623692,NULL,'emailheaders','',NULL),(586,0,1619623692,NULL,'updateautocheck','1',NULL),(587,0,1619623692,NULL,'updateminmaturity','200',NULL),(588,0,1619623692,NULL,'updatenotifybuilds','0',NULL),(589,0,1619623692,NULL,'dndallowtextandlinks','0',NULL),(590,0,1619623692,NULL,'pathtosassc','',NULL),(591,0,1619623692,NULL,'contextlocking','0',NULL),(592,0,1619623692,NULL,'contextlockappliestoadmin','1',NULL),(593,0,1619623692,NULL,'forceclean','0',NULL),(594,0,1619623692,NULL,'enablecourserelativedates','0',NULL),(595,0,1619623692,NULL,'debug','0',NULL),(596,0,1619623692,NULL,'debugdisplay','0',NULL),(597,0,1619623692,NULL,'perfdebug','7',NULL),(598,0,1619623692,NULL,'debugstringids','0',NULL),(599,0,1619623692,NULL,'debugsqltrace','0',NULL),(600,0,1619623692,NULL,'debugvalidators','0',NULL),(601,0,1619623692,NULL,'debugpageinfo','0',NULL),(602,0,1619623692,NULL,'profilingenabled','0',NULL),(603,0,1619623692,NULL,'profilingincluded','',NULL),(604,0,1619623692,NULL,'profilingexcluded','',NULL),(605,0,1619623692,NULL,'profilingautofrec','0',NULL),(606,0,1619623692,NULL,'profilingallowme','0',NULL),(607,0,1619623692,NULL,'profilingallowall','0',NULL),(608,0,1619623692,NULL,'profilingslow','0',NULL),(609,0,1619623692,NULL,'profilinglifetime','1440',NULL),(610,0,1619623692,NULL,'profilingimportprefix','(I)',NULL),(611,0,1619623694,NULL,'calendar_exportsalt','QQWEEsBDItPik6yOcGggNmfCDolHtqABUyw7eoCJXInMGB7izbIE6t3kVpSq','I5exB8dsSVw3lwqBfUPJqCl9M9J0GO0vUP2rTdbKbNcwvY9V3LnLf39IxCpK'),(612,0,1619623710,'activitynames','filter_active','1',''),(613,0,1619623710,'displayh5p','filter_active','1',''),(614,0,1619623710,'emoticon','filter_active','1',''),(615,0,1619623710,'mathjaxloader','filter_active','1',''),(616,0,1619623710,'mediaplugin','filter_active','1',''),(617,0,1619623710,'urltolink','filter_active','1',''),(618,2,1619623789,NULL,'notloggedinroleid','6',NULL),(619,2,1619623789,NULL,'guestroleid','6',NULL),(620,2,1619623789,NULL,'defaultuserroleid','7',NULL),(621,2,1619623789,NULL,'creatornewroleid','3',NULL),(622,2,1619623789,NULL,'restorernewroleid','3',NULL),(623,2,1619623789,'tool_dataprivacy','contactdataprotectionofficer','0',NULL),(624,2,1619623789,'tool_dataprivacy','automaticdataexportapproval','0',NULL),(625,2,1619623789,'tool_dataprivacy','automaticdatadeletionapproval','0',NULL),(626,2,1619623789,'tool_dataprivacy','automaticdeletionrequests','1',NULL),(627,2,1619623789,'tool_dataprivacy','privacyrequestexpiry','604800',NULL),(628,2,1619623789,'tool_dataprivacy','requireallenddatesforuserdeletion','1',NULL),(629,2,1619623789,'tool_dataprivacy','showdataretentionsummary','1',NULL),(630,2,1619623789,'tool_log','exportlog','1',NULL),(631,2,1619623789,NULL,'sitepolicyhandler','',NULL),(632,2,1619623789,NULL,'gradebookroles','5',NULL),(633,2,1619623789,'analytics','logstore','logstore_standard',NULL),(634,2,1619623789,NULL,'h5plibraryhandler','h5plib_v124',NULL),(635,2,1619623790,NULL,'jabberhost','',NULL),(636,2,1619623790,NULL,'jabberserver','',NULL),(637,2,1619623790,NULL,'jabberusername','',NULL),(638,2,1619623790,NULL,'jabberpassword','',NULL),(639,2,1619623790,NULL,'jabberport','5222',NULL),(640,2,1619623790,NULL,'airnotifierurl','https://messages.moodle.net',NULL),(641,2,1619623790,NULL,'airnotifierport','443',NULL),(642,2,1619623790,NULL,'airnotifiermobileappname','com.moodle.moodlemobile',NULL),(643,2,1619623790,NULL,'airnotifierappname','commoodlemoodlemobile',NULL),(644,2,1619623790,NULL,'airnotifieraccesskey','',NULL),(645,2,1619623790,'assign','feedback_plugin_for_gradebook','assignfeedback_comments',NULL),(646,2,1619623790,'assign','showrecentsubmissions','0',NULL),(647,2,1619623790,'assign','submissionreceipts','1',NULL),(648,2,1619623790,'assign','submissionstatement','This submission is my own work, except where I have acknowledged the use of the works of other people.',NULL),(649,2,1619623790,'assign','submissionstatementteamsubmission','This submission is the work of my group, except where we have acknowledged the use of the works of other people.',NULL),(650,2,1619623790,'assign','submissionstatementteamsubmissionallsubmit','This submission is my own work as a group member, except where I have acknowledged the use of the works of other people.',NULL),(651,2,1619623790,'assign','maxperpage','-1',NULL),(652,2,1619623790,'assign','alwaysshowdescription','1',NULL),(653,2,1619623790,'assign','alwaysshowdescription_adv','',NULL),(654,2,1619623790,'assign','alwaysshowdescription_locked','',NULL),(655,2,1619623790,'assign','allowsubmissionsfromdate','0',NULL),(656,2,1619623790,'assign','allowsubmissionsfromdate_enabled','1',NULL),(657,2,1619623790,'assign','allowsubmissionsfromdate_adv','',NULL),(658,2,1619623790,'assign','duedate','604800',NULL),(659,2,1619623790,'assign','duedate_enabled','1',NULL),(660,2,1619623790,'assign','duedate_adv','',NULL),(661,2,1619623790,'assign','cutoffdate','1209600',NULL),(662,2,1619623790,'assign','cutoffdate_enabled','',NULL),(663,2,1619623790,'assign','cutoffdate_adv','',NULL),(664,2,1619623790,'assign','gradingduedate','1209600',NULL),(665,2,1619623790,'assign','gradingduedate_enabled','1',NULL),(666,2,1619623790,'assign','gradingduedate_adv','',NULL),(667,2,1619623790,'assign','submissiondrafts','0',NULL),(668,2,1619623790,'assign','submissiondrafts_adv','',NULL),(669,2,1619623790,'assign','submissiondrafts_locked','',NULL),(670,2,1619623790,'assign','requiresubmissionstatement','0',NULL),(671,2,1619623790,'assign','requiresubmissionstatement_adv','',NULL),(672,2,1619623790,'assign','requiresubmissionstatement_locked','',NULL),(673,2,1619623790,'assign','attemptreopenmethod','none',NULL),(674,2,1619623790,'assign','attemptreopenmethod_adv','',NULL),(675,2,1619623790,'assign','attemptreopenmethod_locked','',NULL),(676,2,1619623790,'assign','maxattempts','-1',NULL),(677,2,1619623790,'assign','maxattempts_adv','',NULL),(678,2,1619623790,'assign','maxattempts_locked','',NULL),(679,2,1619623790,'assign','teamsubmission','0',NULL),(680,2,1619623790,'assign','teamsubmission_adv','',NULL),(681,2,1619623790,'assign','teamsubmission_locked','',NULL),(682,2,1619623790,'assign','preventsubmissionnotingroup','0',NULL),(683,2,1619623790,'assign','preventsubmissionnotingroup_adv','',NULL),(684,2,1619623790,'assign','preventsubmissionnotingroup_locked','',NULL),(685,2,1619623790,'assign','requireallteammemberssubmit','0',NULL),(686,2,1619623790,'assign','requireallteammemberssubmit_adv','',NULL),(687,2,1619623790,'assign','requireallteammemberssubmit_locked','',NULL),(688,2,1619623790,'assign','teamsubmissiongroupingid','',NULL),(689,2,1619623790,'assign','teamsubmissiongroupingid_adv','',NULL),(690,2,1619623790,'assign','sendnotifications','0',NULL),(691,2,1619623790,'assign','sendnotifications_adv','',NULL),(692,2,1619623790,'assign','sendnotifications_locked','',NULL),(693,2,1619623790,'assign','sendlatenotifications','0',NULL),(694,2,1619623790,'assign','sendlatenotifications_adv','',NULL),(695,2,1619623790,'assign','sendlatenotifications_locked','',NULL),(696,2,1619623790,'assign','sendstudentnotifications','1',NULL),(697,2,1619623790,'assign','sendstudentnotifications_adv','',NULL),(698,2,1619623790,'assign','sendstudentnotifications_locked','',NULL),(699,2,1619623790,'assign','blindmarking','0',NULL),(700,2,1619623790,'assign','blindmarking_adv','',NULL),(701,2,1619623790,'assign','blindmarking_locked','',NULL),(702,2,1619623790,'assign','hidegrader','0',NULL),(703,2,1619623790,'assign','hidegrader_adv','',NULL),(704,2,1619623790,'assign','hidegrader_locked','',NULL),(705,2,1619623790,'assign','markingworkflow','0',NULL),(706,2,1619623790,'assign','markingworkflow_adv','',NULL),(707,2,1619623790,'assign','markingworkflow_locked','',NULL),(708,2,1619623790,'assign','markingallocation','0',NULL),(709,2,1619623790,'assign','markingallocation_adv','',NULL),(710,2,1619623790,'assign','markingallocation_locked','',NULL),(711,2,1619623790,'assignsubmission_file','default','1',NULL),(712,2,1619623790,'assignsubmission_file','maxfiles','20',NULL),(713,2,1619623790,'assignsubmission_file','filetypes','',NULL),(714,2,1619623790,'assignsubmission_file','maxbytes','0',NULL),(715,2,1619623790,'assignsubmission_onlinetext','default','0',NULL),(716,2,1619623790,'assignfeedback_comments','default','1',NULL),(717,2,1619623790,'assignfeedback_comments','inline','0',NULL),(718,2,1619623790,'assignfeedback_comments','inline_adv','',NULL),(719,2,1619623790,'assignfeedback_comments','inline_locked','',NULL),(720,2,1619623790,'assignfeedback_editpdf','default','1',NULL),(721,2,1619623790,'assignfeedback_editpdf','stamps','',NULL),(722,2,1619623790,'assignfeedback_file','default','0',NULL),(723,2,1619623790,'assignfeedback_offline','default','0',NULL),(724,2,1619623790,'book','numberingoptions','0,1,2,3',NULL),(725,2,1619623790,'book','navoptions','0,1,2',NULL),(726,2,1619623790,'book','numbering','1',NULL),(727,2,1619623790,'book','navstyle','1',NULL),(728,2,1619623790,NULL,'chat_method','ajax',NULL),(729,2,1619623790,NULL,'chat_refresh_userlist','10',NULL),(730,2,1619623790,NULL,'chat_old_ping','35',NULL),(731,2,1619623790,NULL,'chat_refresh_room','5',NULL),(732,2,1619623790,NULL,'chat_normal_updatemode','jsupdate',NULL),(733,2,1619623790,NULL,'chat_serverhost','learn.dev-defaults.derekmaxson.com',NULL),(734,2,1619623790,NULL,'chat_serverip','127.0.0.1',NULL),(735,2,1619623790,NULL,'chat_serverport','9111',NULL),(736,2,1619623790,NULL,'chat_servermax','100',NULL),(737,2,1619623790,NULL,'data_enablerssfeeds','0',NULL),(738,2,1619623790,NULL,'feedback_allowfullanonymous','0',NULL),(739,2,1619623790,'resource','framesize','130',NULL),(740,2,1619623790,'resource','displayoptions','0,1,4,5,6',NULL),(741,2,1619623790,'resource','printintro','1',NULL),(742,2,1619623790,'resource','display','0',NULL),(743,2,1619623790,'resource','showsize','0',NULL),(744,2,1619623790,'resource','showtype','0',NULL),(745,2,1619623790,'resource','showdate','0',NULL),(746,2,1619623790,'resource','popupwidth','620',NULL),(747,2,1619623790,'resource','popupheight','450',NULL),(748,2,1619623790,'resource','filterfiles','0',NULL),(749,2,1619623790,'folder','showexpanded','1',NULL),(750,2,1619623790,'folder','maxsizetodownload','0',NULL),(751,2,1619623790,NULL,'forum_displaymode','3',NULL),(752,2,1619623790,NULL,'forum_shortpost','300',NULL),(753,2,1619623790,NULL,'forum_longpost','600',NULL),(754,2,1619623790,NULL,'forum_manydiscussions','100',NULL),(755,2,1619623790,NULL,'forum_maxbytes','512000',NULL),(756,2,1619623790,NULL,'forum_maxattachments','9',NULL),(757,2,1619623790,NULL,'forum_subscription','0',NULL),(758,2,1619623790,NULL,'forum_trackingtype','1',NULL),(759,2,1619623790,NULL,'forum_trackreadposts','1',NULL),(760,2,1619623790,NULL,'forum_allowforcedreadtracking','0',NULL),(761,2,1619623790,NULL,'forum_oldpostdays','14',NULL),(762,2,1619623790,NULL,'forum_usermarksread','0',NULL),(763,2,1619623790,NULL,'forum_cleanreadtime','2',NULL),(764,2,1619623790,NULL,'digestmailtime','17',NULL),(765,2,1619623790,NULL,'forum_enablerssfeeds','0',NULL),(766,2,1619623790,NULL,'forum_enabletimedposts','1',NULL),(767,2,1619623790,NULL,'glossary_entbypage','10',NULL),(768,2,1619623790,NULL,'glossary_dupentries','0',NULL),(769,2,1619623790,NULL,'glossary_allowcomments','0',NULL),(770,2,1619623790,NULL,'glossary_linkbydefault','1',NULL),(771,2,1619623790,NULL,'glossary_defaultapproval','1',NULL),(772,2,1619623790,NULL,'glossary_enablerssfeeds','0',NULL),(773,2,1619623790,NULL,'glossary_linkentries','0',NULL),(774,2,1619623790,NULL,'glossary_casesensitive','0',NULL),(775,2,1619623790,NULL,'glossary_fullmatch','0',NULL),(776,2,1619623790,'imscp','keepold','1',NULL),(777,2,1619623790,'imscp','keepold_adv','',NULL),(778,2,1619623790,'label','dndmedia','1',NULL),(779,2,1619623790,'label','dndresizewidth','400',NULL),(780,2,1619623790,'label','dndresizeheight','400',NULL),(781,2,1619623790,'mod_lesson','mediafile','',NULL),(782,2,1619623790,'mod_lesson','mediafile_adv','1',NULL),(783,2,1619623790,'mod_lesson','mediawidth','640',NULL),(784,2,1619623790,'mod_lesson','mediaheight','480',NULL),(785,2,1619623790,'mod_lesson','mediaclose','0',NULL),(786,2,1619623790,'mod_lesson','progressbar','0',NULL),(787,2,1619623790,'mod_lesson','progressbar_adv','',NULL),(788,2,1619623790,'mod_lesson','ongoing','0',NULL),(789,2,1619623790,'mod_lesson','ongoing_adv','1',NULL),(790,2,1619623790,'mod_lesson','displayleftmenu','0',NULL),(791,2,1619623790,'mod_lesson','displayleftmenu_adv','',NULL),(792,2,1619623790,'mod_lesson','displayleftif','0',NULL),(793,2,1619623790,'mod_lesson','displayleftif_adv','1',NULL),(794,2,1619623790,'mod_lesson','slideshow','0',NULL),(795,2,1619623790,'mod_lesson','slideshow_adv','1',NULL),(796,2,1619623790,'mod_lesson','slideshowwidth','640',NULL),(797,2,1619623790,'mod_lesson','slideshowheight','480',NULL),(798,2,1619623790,'mod_lesson','slideshowbgcolor','#FFFFFF',NULL),(799,2,1619623790,'mod_lesson','maxanswers','5',NULL),(800,2,1619623790,'mod_lesson','maxanswers_adv','1',NULL),(801,2,1619623790,'mod_lesson','defaultfeedback','0',NULL),(802,2,1619623790,'mod_lesson','defaultfeedback_adv','1',NULL),(803,2,1619623790,'mod_lesson','activitylink','',NULL),(804,2,1619623790,'mod_lesson','activitylink_adv','1',NULL),(805,2,1619623790,'mod_lesson','timelimit','0',NULL),(806,2,1619623790,'mod_lesson','timelimit_adv','',NULL),(807,2,1619623790,'mod_lesson','password','0',NULL),(808,2,1619623790,'mod_lesson','password_adv','1',NULL),(809,2,1619623790,'mod_lesson','modattempts','0',NULL),(810,2,1619623790,'mod_lesson','modattempts_adv','',NULL),(811,2,1619623790,'mod_lesson','displayreview','0',NULL),(812,2,1619623790,'mod_lesson','displayreview_adv','',NULL),(813,2,1619623790,'mod_lesson','maximumnumberofattempts','1',NULL),(814,2,1619623790,'mod_lesson','maximumnumberofattempts_adv','',NULL),(815,2,1619623790,'mod_lesson','defaultnextpage','0',NULL),(816,2,1619623790,'mod_lesson','defaultnextpage_adv','1',NULL),(817,2,1619623790,'mod_lesson','numberofpagestoshow','1',NULL),(818,2,1619623790,'mod_lesson','numberofpagestoshow_adv','1',NULL),(819,2,1619623790,'mod_lesson','practice','0',NULL),(820,2,1619623790,'mod_lesson','practice_adv','',NULL),(821,2,1619623790,'mod_lesson','customscoring','1',NULL),(822,2,1619623790,'mod_lesson','customscoring_adv','1',NULL),(823,2,1619623790,'mod_lesson','retakesallowed','0',NULL),(824,2,1619623790,'mod_lesson','retakesallowed_adv','',NULL),(825,2,1619623790,'mod_lesson','handlingofretakes','0',NULL),(826,2,1619623790,'mod_lesson','handlingofretakes_adv','1',NULL),(827,2,1619623790,'mod_lesson','minimumnumberofquestions','0',NULL),(828,2,1619623790,'mod_lesson','minimumnumberofquestions_adv','1',NULL),(829,2,1619623790,'page','displayoptions','5',NULL),(830,2,1619623790,'page','printheading','1',NULL),(831,2,1619623790,'page','printintro','0',NULL),(832,2,1619623790,'page','printlastmodified','1',NULL),(833,2,1619623790,'page','display','5',NULL),(834,2,1619623790,'page','popupwidth','620',NULL),(835,2,1619623790,'page','popupheight','450',NULL),(836,2,1619623790,'quiz','timelimit','0',NULL),(837,2,1619623790,'quiz','timelimit_adv','',NULL),(838,2,1619623790,'quiz','overduehandling','autosubmit',NULL),(839,2,1619623790,'quiz','overduehandling_adv','',NULL),(840,2,1619623790,'quiz','graceperiod','86400',NULL),(841,2,1619623790,'quiz','graceperiod_adv','',NULL),(842,2,1619623790,'quiz','graceperiodmin','60',NULL),(843,2,1619623790,'quiz','attempts','0',NULL),(844,2,1619623790,'quiz','attempts_adv','',NULL),(845,2,1619623790,'quiz','grademethod','1',NULL),(846,2,1619623790,'quiz','grademethod_adv','',NULL),(847,2,1619623790,'quiz','maximumgrade','10',NULL),(848,2,1619623790,'quiz','questionsperpage','1',NULL),(849,2,1619623790,'quiz','questionsperpage_adv','',NULL),(850,2,1619623790,'quiz','navmethod','free',NULL),(851,2,1619623790,'quiz','navmethod_adv','1',NULL),(852,2,1619623790,'quiz','shuffleanswers','1',NULL),(853,2,1619623790,'quiz','shuffleanswers_adv','',NULL),(854,2,1619623790,'quiz','preferredbehaviour','deferredfeedback',NULL),(855,2,1619623790,'quiz','canredoquestions','0',NULL),(856,2,1619623790,'quiz','canredoquestions_adv','1',NULL),(857,2,1619623790,'quiz','attemptonlast','0',NULL),(858,2,1619623790,'quiz','attemptonlast_adv','1',NULL),(859,2,1619623790,'quiz','reviewattempt','69904',NULL),(860,2,1619623790,'quiz','reviewcorrectness','69904',NULL),(861,2,1619623790,'quiz','reviewmarks','69904',NULL),(862,2,1619623790,'quiz','reviewspecificfeedback','69904',NULL),(863,2,1619623790,'quiz','reviewgeneralfeedback','69904',NULL),(864,2,1619623790,'quiz','reviewrightanswer','69904',NULL),(865,2,1619623790,'quiz','reviewoverallfeedback','4368',NULL),(866,2,1619623790,'quiz','showuserpicture','0',NULL),(867,2,1619623790,'quiz','showuserpicture_adv','',NULL),(868,2,1619623790,'quiz','decimalpoints','2',NULL),(869,2,1619623790,'quiz','decimalpoints_adv','',NULL),(870,2,1619623790,'quiz','questiondecimalpoints','-1',NULL),(871,2,1619623790,'quiz','questiondecimalpoints_adv','',NULL),(872,2,1619623790,'quiz','showblocks','0',NULL),(873,2,1619623790,'quiz','showblocks_adv','1',NULL),(874,2,1619623790,'quiz','quizpassword','',NULL),(875,2,1619623790,'quiz','quizpassword_adv','',NULL),(876,2,1619623790,'quiz','quizpassword_required','',NULL),(877,2,1619623790,'quiz','subnet','',NULL),(878,2,1619623790,'quiz','subnet_adv','1',NULL),(879,2,1619623790,'quiz','delay1','0',NULL),(880,2,1619623790,'quiz','delay1_adv','1',NULL),(881,2,1619623790,'quiz','delay2','0',NULL),(882,2,1619623790,'quiz','delay2_adv','1',NULL),(883,2,1619623790,'quiz','browsersecurity','-',NULL),(884,2,1619623790,'quiz','browsersecurity_adv','1',NULL),(885,2,1619623790,'quiz','initialnumfeedbacks','2',NULL),(886,2,1619623790,'quiz','autosaveperiod','60',NULL),(887,2,1619623790,'quizaccess_seb','autoreconfigureseb','1',NULL),(888,2,1619623790,'quizaccess_seb','showseblinks','seb,http',NULL),(889,2,1619623790,'quizaccess_seb','downloadlink','https://safeexambrowser.org/download_en.html',NULL),(890,2,1619623790,'quizaccess_seb','quizpasswordrequired','0',NULL),(891,2,1619623790,'quizaccess_seb','displayblocksbeforestart','0',NULL),(892,2,1619623790,'quizaccess_seb','displayblockswhenfinished','1',NULL),(893,2,1619623790,'scorm','displaycoursestructure','0',NULL),(894,2,1619623790,'scorm','displaycoursestructure_adv','',NULL),(895,2,1619623790,'scorm','popup','0',NULL),(896,2,1619623790,'scorm','popup_adv','',NULL),(897,2,1619623790,'scorm','displayactivityname','1',NULL),(898,2,1619623790,'scorm','framewidth','100',NULL),(899,2,1619623790,'scorm','framewidth_adv','1',NULL),(900,2,1619623790,'scorm','frameheight','500',NULL),(901,2,1619623790,'scorm','frameheight_adv','1',NULL),(902,2,1619623790,'scorm','winoptgrp_adv','1',NULL),(903,2,1619623790,'scorm','scrollbars','0',NULL),(904,2,1619623790,'scorm','directories','0',NULL),(905,2,1619623790,'scorm','location','0',NULL),(906,2,1619623790,'scorm','menubar','0',NULL),(907,2,1619623790,'scorm','toolbar','0',NULL),(908,2,1619623790,'scorm','status','0',NULL),(909,2,1619623790,'scorm','skipview','0',NULL),(910,2,1619623790,'scorm','skipview_adv','1',NULL),(911,2,1619623790,'scorm','hidebrowse','0',NULL),(912,2,1619623790,'scorm','hidebrowse_adv','1',NULL),(913,2,1619623790,'scorm','hidetoc','0',NULL),(914,2,1619623790,'scorm','hidetoc_adv','1',NULL),(915,2,1619623791,'scorm','nav','1',NULL),(916,2,1619623791,'scorm','nav_adv','1',NULL),(917,2,1619623791,'scorm','navpositionleft','-100',NULL),(918,2,1619623791,'scorm','navpositionleft_adv','1',NULL),(919,2,1619623791,'scorm','navpositiontop','-100',NULL),(920,2,1619623791,'scorm','navpositiontop_adv','1',NULL),(921,2,1619623791,'scorm','collapsetocwinsize','767',NULL),(922,2,1619623791,'scorm','collapsetocwinsize_adv','1',NULL),(923,2,1619623791,'scorm','displayattemptstatus','1',NULL),(924,2,1619623791,'scorm','displayattemptstatus_adv','',NULL),(925,2,1619623791,'scorm','grademethod','1',NULL),(926,2,1619623791,'scorm','maxgrade','100',NULL),(927,2,1619623791,'scorm','maxattempt','0',NULL),(928,2,1619623791,'scorm','whatgrade','0',NULL),(929,2,1619623791,'scorm','forcecompleted','0',NULL),(930,2,1619623791,'scorm','forcenewattempt','0',NULL),(931,2,1619623791,'scorm','autocommit','0',NULL),(932,2,1619623791,'scorm','masteryoverride','1',NULL),(933,2,1619623791,'scorm','lastattemptlock','0',NULL),(934,2,1619623791,'scorm','auto','0',NULL),(935,2,1619623791,'scorm','updatefreq','0',NULL),(936,2,1619623791,'scorm','scormstandard','0',NULL),(937,2,1619623791,'scorm','allowtypeexternal','0',NULL),(938,2,1619623791,'scorm','allowtypelocalsync','0',NULL),(939,2,1619623791,'scorm','allowtypeexternalaicc','0',NULL),(940,2,1619623791,'scorm','allowaicchacp','0',NULL),(941,2,1619623791,'scorm','aicchacptimeout','30',NULL),(942,2,1619623791,'scorm','aicchacpkeepsessiondata','1',NULL),(943,2,1619623791,'scorm','aiccuserid','1',NULL),(944,2,1619623791,'scorm','forcejavascript','1',NULL),(945,2,1619623791,'scorm','allowapidebug','0',NULL),(946,2,1619623791,'scorm','apidebugmask','.*',NULL),(947,2,1619623791,'scorm','protectpackagedownloads','0',NULL),(948,2,1619623791,'url','framesize','130',NULL),(949,2,1619623791,'url','secretphrase','',NULL),(950,2,1619623791,'url','rolesinparams','0',NULL),(951,2,1619623791,'url','displayoptions','0,1,5,6',NULL),(952,2,1619623791,'url','printintro','1',NULL),(953,2,1619623791,'url','display','0',NULL),(954,2,1619623791,'url','popupwidth','620',NULL),(955,2,1619623791,'url','popupheight','450',NULL),(956,2,1619623791,'workshop','grade','80',NULL),(957,2,1619623791,'workshop','gradinggrade','20',NULL),(958,2,1619623791,'workshop','gradedecimals','0',NULL),(959,2,1619623791,'workshop','maxbytes','0',NULL),(960,2,1619623791,'workshop','strategy','accumulative',NULL),(961,2,1619623791,'workshop','examplesmode','0',NULL),(962,2,1619623791,'workshopallocation_random','numofreviews','5',NULL),(963,2,1619623791,'workshopform_numerrors','grade0','No',NULL),(964,2,1619623791,'workshopform_numerrors','grade1','Yes',NULL),(965,2,1619623791,'workshopeval_best','comparison','5',NULL),(966,2,1619623791,'tool_recyclebin','coursebinenable','1',NULL),(967,2,1619623791,'tool_recyclebin','coursebinexpiry','604800',NULL),(968,2,1619623791,'tool_recyclebin','categorybinenable','1',NULL),(969,2,1619623791,'tool_recyclebin','categorybinexpiry','604800',NULL),(970,2,1619623791,'tool_recyclebin','autohide','1',NULL),(971,2,1619623791,'antivirus_clamav','runningmethod','commandline',NULL),(972,2,1619623791,'antivirus_clamav','pathtoclam','',NULL),(973,2,1619623791,'antivirus_clamav','pathtounixsocket','',NULL),(974,2,1619623791,'antivirus_clamav','tcpsockethost','',NULL),(975,2,1619623791,'antivirus_clamav','tcpsocketport','3310',NULL),(976,2,1619623791,'antivirus_clamav','clamfailureonupload','donothing',NULL),(977,2,1619623791,'antivirus_clamav','tries','1',NULL),(978,2,1619623791,'auth_cas','field_map_firstname','',NULL),(979,2,1619623791,'auth_cas','field_updatelocal_firstname','oncreate',NULL),(980,2,1619623791,'auth_cas','field_updateremote_firstname','0',NULL),(981,2,1619623791,'auth_cas','field_lock_firstname','unlocked',NULL),(982,2,1619623791,'auth_cas','field_map_lastname','',NULL),(983,2,1619623791,'auth_cas','field_updatelocal_lastname','oncreate',NULL),(984,2,1619623791,'auth_cas','field_updateremote_lastname','0',NULL),(985,2,1619623791,'auth_cas','field_lock_lastname','unlocked',NULL),(986,2,1619623791,'auth_cas','field_map_email','',NULL),(987,2,1619623791,'auth_cas','field_updatelocal_email','oncreate',NULL),(988,2,1619623791,'auth_cas','field_updateremote_email','0',NULL),(989,2,1619623791,'auth_cas','field_lock_email','unlocked',NULL),(990,2,1619623791,'auth_cas','field_map_city','',NULL),(991,2,1619623791,'auth_cas','field_updatelocal_city','oncreate',NULL),(992,2,1619623791,'auth_cas','field_updateremote_city','0',NULL),(993,2,1619623791,'auth_cas','field_lock_city','unlocked',NULL),(994,2,1619623791,'auth_cas','field_map_country','',NULL),(995,2,1619623791,'auth_cas','field_updatelocal_country','oncreate',NULL),(996,2,1619623791,'auth_cas','field_updateremote_country','0',NULL),(997,2,1619623791,'auth_cas','field_lock_country','unlocked',NULL),(998,2,1619623791,'auth_cas','field_map_lang','',NULL),(999,2,1619623791,'auth_cas','field_updatelocal_lang','oncreate',NULL),(1000,2,1619623791,'auth_cas','field_updateremote_lang','0',NULL),(1001,2,1619623791,'auth_cas','field_lock_lang','unlocked',NULL),(1002,2,1619623791,'auth_cas','field_map_description','',NULL),(1003,2,1619623791,'auth_cas','field_updatelocal_description','oncreate',NULL),(1004,2,1619623791,'auth_cas','field_updateremote_description','0',NULL),(1005,2,1619623791,'auth_cas','field_lock_description','unlocked',NULL),(1006,2,1619623791,'auth_cas','field_map_url','',NULL),(1007,2,1619623791,'auth_cas','field_updatelocal_url','oncreate',NULL),(1008,2,1619623791,'auth_cas','field_updateremote_url','0',NULL),(1009,2,1619623791,'auth_cas','field_lock_url','unlocked',NULL),(1010,2,1619623791,'auth_cas','field_map_idnumber','',NULL),(1011,2,1619623791,'auth_cas','field_updatelocal_idnumber','oncreate',NULL),(1012,2,1619623791,'auth_cas','field_updateremote_idnumber','0',NULL),(1013,2,1619623791,'auth_cas','field_lock_idnumber','unlocked',NULL),(1014,2,1619623791,'auth_cas','field_map_institution','',NULL),(1015,2,1619623791,'auth_cas','field_updatelocal_institution','oncreate',NULL),(1016,2,1619623791,'auth_cas','field_updateremote_institution','0',NULL),(1017,2,1619623791,'auth_cas','field_lock_institution','unlocked',NULL),(1018,2,1619623791,'auth_cas','field_map_department','',NULL),(1019,2,1619623791,'auth_cas','field_updatelocal_department','oncreate',NULL),(1020,2,1619623791,'auth_cas','field_updateremote_department','0',NULL),(1021,2,1619623791,'auth_cas','field_lock_department','unlocked',NULL),(1022,2,1619623791,'auth_cas','field_map_phone1','',NULL),(1023,2,1619623791,'auth_cas','field_updatelocal_phone1','oncreate',NULL),(1024,2,1619623791,'auth_cas','field_updateremote_phone1','0',NULL),(1025,2,1619623791,'auth_cas','field_lock_phone1','unlocked',NULL),(1026,2,1619623791,'auth_cas','field_map_phone2','',NULL),(1027,2,1619623791,'auth_cas','field_updatelocal_phone2','oncreate',NULL),(1028,2,1619623791,'auth_cas','field_updateremote_phone2','0',NULL),(1029,2,1619623791,'auth_cas','field_lock_phone2','unlocked',NULL),(1030,2,1619623791,'auth_cas','field_map_address','',NULL),(1031,2,1619623791,'auth_cas','field_updatelocal_address','oncreate',NULL),(1032,2,1619623791,'auth_cas','field_updateremote_address','0',NULL),(1033,2,1619623791,'auth_cas','field_lock_address','unlocked',NULL),(1034,2,1619623791,'auth_cas','field_map_firstnamephonetic','',NULL),(1035,2,1619623791,'auth_cas','field_updatelocal_firstnamephonetic','oncreate',NULL),(1036,2,1619623791,'auth_cas','field_updateremote_firstnamephonetic','0',NULL),(1037,2,1619623791,'auth_cas','field_lock_firstnamephonetic','unlocked',NULL),(1038,2,1619623791,'auth_cas','field_map_lastnamephonetic','',NULL),(1039,2,1619623791,'auth_cas','field_updatelocal_lastnamephonetic','oncreate',NULL),(1040,2,1619623791,'auth_cas','field_updateremote_lastnamephonetic','0',NULL),(1041,2,1619623791,'auth_cas','field_lock_lastnamephonetic','unlocked',NULL),(1042,2,1619623791,'auth_cas','field_map_middlename','',NULL),(1043,2,1619623791,'auth_cas','field_updatelocal_middlename','oncreate',NULL),(1044,2,1619623791,'auth_cas','field_updateremote_middlename','0',NULL),(1045,2,1619623791,'auth_cas','field_lock_middlename','unlocked',NULL),(1046,2,1619623791,'auth_cas','field_map_alternatename','',NULL),(1047,2,1619623791,'auth_cas','field_updatelocal_alternatename','oncreate',NULL),(1048,2,1619623791,'auth_cas','field_updateremote_alternatename','0',NULL),(1049,2,1619623791,'auth_cas','field_lock_alternatename','unlocked',NULL),(1050,2,1619623791,'auth_email','recaptcha','0',NULL),(1051,2,1619623791,'auth_email','field_lock_firstname','unlocked',NULL),(1052,2,1619623791,'auth_email','field_lock_lastname','unlocked',NULL),(1053,2,1619623791,'auth_email','field_lock_email','unlocked',NULL),(1054,2,1619623791,'auth_email','field_lock_city','unlocked',NULL),(1055,2,1619623791,'auth_email','field_lock_country','unlocked',NULL),(1056,2,1619623791,'auth_email','field_lock_lang','unlocked',NULL),(1057,2,1619623791,'auth_email','field_lock_description','unlocked',NULL),(1058,2,1619623791,'auth_email','field_lock_url','unlocked',NULL),(1059,2,1619623791,'auth_email','field_lock_idnumber','unlocked',NULL),(1060,2,1619623791,'auth_email','field_lock_institution','unlocked',NULL),(1061,2,1619623791,'auth_email','field_lock_department','unlocked',NULL),(1062,2,1619623791,'auth_email','field_lock_phone1','unlocked',NULL),(1063,2,1619623791,'auth_email','field_lock_phone2','unlocked',NULL),(1064,2,1619623791,'auth_email','field_lock_address','unlocked',NULL),(1065,2,1619623791,'auth_email','field_lock_firstnamephonetic','unlocked',NULL),(1066,2,1619623791,'auth_email','field_lock_lastnamephonetic','unlocked',NULL),(1067,2,1619623791,'auth_email','field_lock_middlename','unlocked',NULL),(1068,2,1619623791,'auth_email','field_lock_alternatename','unlocked',NULL),(1069,2,1619623791,'auth_db','host','127.0.0.1',NULL),(1070,2,1619623791,'auth_db','type','mysqli',NULL),(1071,2,1619623791,'auth_db','sybasequoting','0',NULL),(1072,2,1619623791,'auth_db','name','',NULL),(1073,2,1619623791,'auth_db','user','',NULL),(1074,2,1619623791,'auth_db','pass','',NULL),(1075,2,1619623791,'auth_db','table','',NULL),(1076,2,1619623791,'auth_db','fielduser','',NULL),(1077,2,1619623791,'auth_db','fieldpass','',NULL),(1078,2,1619623791,'auth_db','passtype','plaintext',NULL),(1079,2,1619623791,'auth_db','extencoding','utf-8',NULL),(1080,2,1619623791,'auth_db','setupsql','',NULL),(1081,2,1619623791,'auth_db','debugauthdb','0',NULL),(1082,2,1619623791,'auth_db','changepasswordurl','',NULL),(1083,2,1619623791,'auth_db','removeuser','0',NULL),(1084,2,1619623791,'auth_db','updateusers','0',NULL),(1085,2,1619623791,'auth_db','field_map_firstname','',NULL),(1086,2,1619623791,'auth_db','field_updatelocal_firstname','oncreate',NULL),(1087,2,1619623791,'auth_db','field_updateremote_firstname','0',NULL),(1088,2,1619623791,'auth_db','field_lock_firstname','unlocked',NULL),(1089,2,1619623791,'auth_db','field_map_lastname','',NULL),(1090,2,1619623791,'auth_db','field_updatelocal_lastname','oncreate',NULL),(1091,2,1619623791,'auth_db','field_updateremote_lastname','0',NULL),(1092,2,1619623791,'auth_db','field_lock_lastname','unlocked',NULL),(1093,2,1619623791,'auth_db','field_map_email','',NULL),(1094,2,1619623791,'auth_db','field_updatelocal_email','oncreate',NULL),(1095,2,1619623791,'auth_db','field_updateremote_email','0',NULL),(1096,2,1619623791,'auth_db','field_lock_email','unlocked',NULL),(1097,2,1619623791,'auth_db','field_map_city','',NULL),(1098,2,1619623791,'auth_db','field_updatelocal_city','oncreate',NULL),(1099,2,1619623791,'auth_db','field_updateremote_city','0',NULL),(1100,2,1619623791,'auth_db','field_lock_city','unlocked',NULL),(1101,2,1619623791,'auth_db','field_map_country','',NULL),(1102,2,1619623791,'auth_db','field_updatelocal_country','oncreate',NULL),(1103,2,1619623791,'auth_db','field_updateremote_country','0',NULL),(1104,2,1619623791,'auth_db','field_lock_country','unlocked',NULL),(1105,2,1619623791,'auth_db','field_map_lang','',NULL),(1106,2,1619623791,'auth_db','field_updatelocal_lang','oncreate',NULL),(1107,2,1619623791,'auth_db','field_updateremote_lang','0',NULL),(1108,2,1619623791,'auth_db','field_lock_lang','unlocked',NULL),(1109,2,1619623791,'auth_db','field_map_description','',NULL),(1110,2,1619623791,'auth_db','field_updatelocal_description','oncreate',NULL),(1111,2,1619623791,'auth_db','field_updateremote_description','0',NULL),(1112,2,1619623791,'auth_db','field_lock_description','unlocked',NULL),(1113,2,1619623791,'auth_db','field_map_url','',NULL),(1114,2,1619623791,'auth_db','field_updatelocal_url','oncreate',NULL),(1115,2,1619623791,'auth_db','field_updateremote_url','0',NULL),(1116,2,1619623791,'auth_db','field_lock_url','unlocked',NULL),(1117,2,1619623791,'auth_db','field_map_idnumber','',NULL),(1118,2,1619623791,'auth_db','field_updatelocal_idnumber','oncreate',NULL),(1119,2,1619623791,'auth_db','field_updateremote_idnumber','0',NULL),(1120,2,1619623791,'auth_db','field_lock_idnumber','unlocked',NULL),(1121,2,1619623791,'auth_db','field_map_institution','',NULL),(1122,2,1619623791,'auth_db','field_updatelocal_institution','oncreate',NULL),(1123,2,1619623791,'auth_db','field_updateremote_institution','0',NULL),(1124,2,1619623791,'auth_db','field_lock_institution','unlocked',NULL),(1125,2,1619623791,'auth_db','field_map_department','',NULL),(1126,2,1619623791,'auth_db','field_updatelocal_department','oncreate',NULL),(1127,2,1619623791,'auth_db','field_updateremote_department','0',NULL),(1128,2,1619623791,'auth_db','field_lock_department','unlocked',NULL),(1129,2,1619623791,'auth_db','field_map_phone1','',NULL),(1130,2,1619623791,'auth_db','field_updatelocal_phone1','oncreate',NULL),(1131,2,1619623791,'auth_db','field_updateremote_phone1','0',NULL),(1132,2,1619623791,'auth_db','field_lock_phone1','unlocked',NULL),(1133,2,1619623791,'auth_db','field_map_phone2','',NULL),(1134,2,1619623791,'auth_db','field_updatelocal_phone2','oncreate',NULL),(1135,2,1619623791,'auth_db','field_updateremote_phone2','0',NULL),(1136,2,1619623791,'auth_db','field_lock_phone2','unlocked',NULL),(1137,2,1619623791,'auth_db','field_map_address','',NULL),(1138,2,1619623791,'auth_db','field_updatelocal_address','oncreate',NULL),(1139,2,1619623791,'auth_db','field_updateremote_address','0',NULL),(1140,2,1619623791,'auth_db','field_lock_address','unlocked',NULL),(1141,2,1619623791,'auth_db','field_map_firstnamephonetic','',NULL),(1142,2,1619623791,'auth_db','field_updatelocal_firstnamephonetic','oncreate',NULL),(1143,2,1619623791,'auth_db','field_updateremote_firstnamephonetic','0',NULL),(1144,2,1619623791,'auth_db','field_lock_firstnamephonetic','unlocked',NULL),(1145,2,1619623791,'auth_db','field_map_lastnamephonetic','',NULL),(1146,2,1619623791,'auth_db','field_updatelocal_lastnamephonetic','oncreate',NULL),(1147,2,1619623791,'auth_db','field_updateremote_lastnamephonetic','0',NULL),(1148,2,1619623791,'auth_db','field_lock_lastnamephonetic','unlocked',NULL),(1149,2,1619623791,'auth_db','field_map_middlename','',NULL),(1150,2,1619623791,'auth_db','field_updatelocal_middlename','oncreate',NULL),(1151,2,1619623791,'auth_db','field_updateremote_middlename','0',NULL),(1152,2,1619623791,'auth_db','field_lock_middlename','unlocked',NULL),(1153,2,1619623791,'auth_db','field_map_alternatename','',NULL),(1154,2,1619623791,'auth_db','field_updatelocal_alternatename','oncreate',NULL),(1155,2,1619623791,'auth_db','field_updateremote_alternatename','0',NULL),(1156,2,1619623791,'auth_db','field_lock_alternatename','unlocked',NULL),(1157,2,1619623791,'auth_ldap','field_map_firstname','',NULL),(1158,2,1619623791,'auth_ldap','field_updatelocal_firstname','oncreate',NULL),(1159,2,1619623791,'auth_ldap','field_updateremote_firstname','0',NULL),(1160,2,1619623791,'auth_ldap','field_lock_firstname','unlocked',NULL),(1161,2,1619623791,'auth_ldap','field_map_lastname','',NULL),(1162,2,1619623791,'auth_ldap','field_updatelocal_lastname','oncreate',NULL),(1163,2,1619623791,'auth_ldap','field_updateremote_lastname','0',NULL),(1164,2,1619623791,'auth_ldap','field_lock_lastname','unlocked',NULL),(1165,2,1619623791,'auth_ldap','field_map_email','',NULL),(1166,2,1619623791,'auth_ldap','field_updatelocal_email','oncreate',NULL),(1167,2,1619623791,'auth_ldap','field_updateremote_email','0',NULL),(1168,2,1619623791,'auth_ldap','field_lock_email','unlocked',NULL),(1169,2,1619623791,'auth_ldap','field_map_city','',NULL),(1170,2,1619623791,'auth_ldap','field_updatelocal_city','oncreate',NULL),(1171,2,1619623791,'auth_ldap','field_updateremote_city','0',NULL),(1172,2,1619623791,'auth_ldap','field_lock_city','unlocked',NULL),(1173,2,1619623791,'auth_ldap','field_map_country','',NULL),(1174,2,1619623791,'auth_ldap','field_updatelocal_country','oncreate',NULL),(1175,2,1619623791,'auth_ldap','field_updateremote_country','0',NULL),(1176,2,1619623791,'auth_ldap','field_lock_country','unlocked',NULL),(1177,2,1619623791,'auth_ldap','field_map_lang','',NULL),(1178,2,1619623791,'auth_ldap','field_updatelocal_lang','oncreate',NULL),(1179,2,1619623791,'auth_ldap','field_updateremote_lang','0',NULL),(1180,2,1619623791,'auth_ldap','field_lock_lang','unlocked',NULL),(1181,2,1619623791,'auth_ldap','field_map_description','',NULL),(1182,2,1619623791,'auth_ldap','field_updatelocal_description','oncreate',NULL),(1183,2,1619623791,'auth_ldap','field_updateremote_description','0',NULL),(1184,2,1619623791,'auth_ldap','field_lock_description','unlocked',NULL),(1185,2,1619623791,'auth_ldap','field_map_url','',NULL),(1186,2,1619623791,'auth_ldap','field_updatelocal_url','oncreate',NULL),(1187,2,1619623791,'auth_ldap','field_updateremote_url','0',NULL),(1188,2,1619623791,'auth_ldap','field_lock_url','unlocked',NULL),(1189,2,1619623791,'auth_ldap','field_map_idnumber','',NULL),(1190,2,1619623791,'auth_ldap','field_updatelocal_idnumber','oncreate',NULL),(1191,2,1619623791,'auth_ldap','field_updateremote_idnumber','0',NULL),(1192,2,1619623791,'auth_ldap','field_lock_idnumber','unlocked',NULL),(1193,2,1619623791,'auth_ldap','field_map_institution','',NULL),(1194,2,1619623791,'auth_ldap','field_updatelocal_institution','oncreate',NULL),(1195,2,1619623791,'auth_ldap','field_updateremote_institution','0',NULL),(1196,2,1619623791,'auth_ldap','field_lock_institution','unlocked',NULL),(1197,2,1619623791,'auth_ldap','field_map_department','',NULL),(1198,2,1619623791,'auth_ldap','field_updatelocal_department','oncreate',NULL),(1199,2,1619623791,'auth_ldap','field_updateremote_department','0',NULL),(1200,2,1619623791,'auth_ldap','field_lock_department','unlocked',NULL),(1201,2,1619623791,'auth_ldap','field_map_phone1','',NULL),(1202,2,1619623791,'auth_ldap','field_updatelocal_phone1','oncreate',NULL),(1203,2,1619623791,'auth_ldap','field_updateremote_phone1','0',NULL),(1204,2,1619623791,'auth_ldap','field_lock_phone1','unlocked',NULL),(1205,2,1619623791,'auth_ldap','field_map_phone2','',NULL),(1206,2,1619623791,'auth_ldap','field_updatelocal_phone2','oncreate',NULL),(1207,2,1619623791,'auth_ldap','field_updateremote_phone2','0',NULL),(1208,2,1619623791,'auth_ldap','field_lock_phone2','unlocked',NULL),(1209,2,1619623791,'auth_ldap','field_map_address','',NULL),(1210,2,1619623791,'auth_ldap','field_updatelocal_address','oncreate',NULL),(1211,2,1619623791,'auth_ldap','field_updateremote_address','0',NULL),(1212,2,1619623791,'auth_ldap','field_lock_address','unlocked',NULL),(1213,2,1619623791,'auth_ldap','field_map_firstnamephonetic','',NULL),(1214,2,1619623791,'auth_ldap','field_updatelocal_firstnamephonetic','oncreate',NULL),(1215,2,1619623792,'auth_ldap','field_updateremote_firstnamephonetic','0',NULL),(1216,2,1619623792,'auth_ldap','field_lock_firstnamephonetic','unlocked',NULL),(1217,2,1619623792,'auth_ldap','field_map_lastnamephonetic','',NULL),(1218,2,1619623792,'auth_ldap','field_updatelocal_lastnamephonetic','oncreate',NULL),(1219,2,1619623792,'auth_ldap','field_updateremote_lastnamephonetic','0',NULL),(1220,2,1619623792,'auth_ldap','field_lock_lastnamephonetic','unlocked',NULL),(1221,2,1619623792,'auth_ldap','field_map_middlename','',NULL),(1222,2,1619623792,'auth_ldap','field_updatelocal_middlename','oncreate',NULL),(1223,2,1619623792,'auth_ldap','field_updateremote_middlename','0',NULL),(1224,2,1619623792,'auth_ldap','field_lock_middlename','unlocked',NULL),(1225,2,1619623792,'auth_ldap','field_map_alternatename','',NULL),(1226,2,1619623792,'auth_ldap','field_updatelocal_alternatename','oncreate',NULL),(1227,2,1619623792,'auth_ldap','field_updateremote_alternatename','0',NULL),(1228,2,1619623792,'auth_ldap','field_lock_alternatename','unlocked',NULL),(1229,2,1619623792,'auth_manual','expiration','0',NULL),(1230,2,1619623792,'auth_manual','expirationtime','30',NULL),(1231,2,1619623792,'auth_manual','expiration_warning','0',NULL),(1232,2,1619623792,'auth_manual','field_lock_firstname','unlocked',NULL),(1233,2,1619623792,'auth_manual','field_lock_lastname','unlocked',NULL),(1234,2,1619623792,'auth_manual','field_lock_email','unlocked',NULL),(1235,2,1619623792,'auth_manual','field_lock_city','unlocked',NULL),(1236,2,1619623792,'auth_manual','field_lock_country','unlocked',NULL),(1237,2,1619623792,'auth_manual','field_lock_lang','unlocked',NULL),(1238,2,1619623792,'auth_manual','field_lock_description','unlocked',NULL),(1239,2,1619623792,'auth_manual','field_lock_url','unlocked',NULL),(1240,2,1619623792,'auth_manual','field_lock_idnumber','unlocked',NULL),(1241,2,1619623792,'auth_manual','field_lock_institution','unlocked',NULL),(1242,2,1619623792,'auth_manual','field_lock_department','unlocked',NULL),(1243,2,1619623792,'auth_manual','field_lock_phone1','unlocked',NULL),(1244,2,1619623792,'auth_manual','field_lock_phone2','unlocked',NULL),(1245,2,1619623792,'auth_manual','field_lock_address','unlocked',NULL),(1246,2,1619623792,'auth_manual','field_lock_firstnamephonetic','unlocked',NULL),(1247,2,1619623792,'auth_manual','field_lock_lastnamephonetic','unlocked',NULL),(1248,2,1619623792,'auth_manual','field_lock_middlename','unlocked',NULL),(1249,2,1619623792,'auth_manual','field_lock_alternatename','unlocked',NULL),(1250,2,1619623792,'auth_mnet','rpc_negotiation_timeout','30',NULL),(1251,2,1619623792,'auth_none','field_lock_firstname','unlocked',NULL),(1252,2,1619623792,'auth_none','field_lock_lastname','unlocked',NULL),(1253,2,1619623792,'auth_none','field_lock_email','unlocked',NULL),(1254,2,1619623792,'auth_none','field_lock_city','unlocked',NULL),(1255,2,1619623792,'auth_none','field_lock_country','unlocked',NULL),(1256,2,1619623792,'auth_none','field_lock_lang','unlocked',NULL),(1257,2,1619623792,'auth_none','field_lock_description','unlocked',NULL),(1258,2,1619623792,'auth_none','field_lock_url','unlocked',NULL),(1259,2,1619623792,'auth_none','field_lock_idnumber','unlocked',NULL),(1260,2,1619623792,'auth_none','field_lock_institution','unlocked',NULL),(1261,2,1619623792,'auth_none','field_lock_department','unlocked',NULL),(1262,2,1619623792,'auth_none','field_lock_phone1','unlocked',NULL),(1263,2,1619623792,'auth_none','field_lock_phone2','unlocked',NULL),(1264,2,1619623792,'auth_none','field_lock_address','unlocked',NULL),(1265,2,1619623792,'auth_none','field_lock_firstnamephonetic','unlocked',NULL),(1266,2,1619623792,'auth_none','field_lock_lastnamephonetic','unlocked',NULL),(1267,2,1619623792,'auth_none','field_lock_middlename','unlocked',NULL),(1268,2,1619623792,'auth_none','field_lock_alternatename','unlocked',NULL),(1269,2,1619623792,'auth_oauth2','field_lock_firstname','unlocked',NULL),(1270,2,1619623792,'auth_oauth2','field_lock_lastname','unlocked',NULL),(1271,2,1619623792,'auth_oauth2','field_lock_email','unlocked',NULL),(1272,2,1619623792,'auth_oauth2','field_lock_city','unlocked',NULL),(1273,2,1619623792,'auth_oauth2','field_lock_country','unlocked',NULL),(1274,2,1619623792,'auth_oauth2','field_lock_lang','unlocked',NULL),(1275,2,1619623792,'auth_oauth2','field_lock_description','unlocked',NULL),(1276,2,1619623792,'auth_oauth2','field_lock_url','unlocked',NULL),(1277,2,1619623792,'auth_oauth2','field_lock_idnumber','unlocked',NULL),(1278,2,1619623792,'auth_oauth2','field_lock_institution','unlocked',NULL),(1279,2,1619623792,'auth_oauth2','field_lock_department','unlocked',NULL),(1280,2,1619623792,'auth_oauth2','field_lock_phone1','unlocked',NULL),(1281,2,1619623792,'auth_oauth2','field_lock_phone2','unlocked',NULL),(1282,2,1619623792,'auth_oauth2','field_lock_address','unlocked',NULL),(1283,2,1619623792,'auth_oauth2','field_lock_firstnamephonetic','unlocked',NULL),(1284,2,1619623792,'auth_oauth2','field_lock_lastnamephonetic','unlocked',NULL),(1285,2,1619623792,'auth_oauth2','field_lock_middlename','unlocked',NULL),(1286,2,1619623792,'auth_oauth2','field_lock_alternatename','unlocked',NULL),(1287,2,1619623792,'auth_shibboleth','user_attribute','',NULL),(1288,2,1619623792,'auth_shibboleth','convert_data','',NULL),(1289,2,1619623792,'auth_shibboleth','alt_login','off',NULL),(1290,2,1619623792,'auth_shibboleth','organization_selection','urn:mace:organization1:providerID, Example Organization 1\n https://another.idp-id.com/shibboleth, Other Example Organization, /Shibboleth.sso/DS/SWITCHaai\n urn:mace:organization2:providerID, Example Organization 2, /Shibboleth.sso/WAYF/SWITCHaai',NULL),(1291,2,1619623792,'auth_shibboleth','logout_handler','',NULL),(1292,2,1619623792,'auth_shibboleth','logout_return_url','',NULL),(1293,2,1619623792,'auth_shibboleth','login_name','Shibboleth Login',NULL),(1294,2,1619623792,'auth_shibboleth','auth_logo','',NULL),(1295,2,1619623792,'auth_shibboleth','auth_instructions','Use the
Shibboleth login to get access via Shibboleth, if your institution supports it. Otherwise, use the normal login form shown here.',NULL),(1296,2,1619623792,'auth_shibboleth','changepasswordurl','',NULL),(1297,2,1619623792,'auth_shibboleth','field_map_firstname','',NULL),(1298,2,1619623792,'auth_shibboleth','field_updatelocal_firstname','oncreate',NULL),(1299,2,1619623792,'auth_shibboleth','field_lock_firstname','unlocked',NULL),(1300,2,1619623792,'auth_shibboleth','field_map_lastname','',NULL),(1301,2,1619623792,'auth_shibboleth','field_updatelocal_lastname','oncreate',NULL),(1302,2,1619623792,'auth_shibboleth','field_lock_lastname','unlocked',NULL),(1303,2,1619623792,'auth_shibboleth','field_map_email','',NULL),(1304,2,1619623792,'auth_shibboleth','field_updatelocal_email','oncreate',NULL),(1305,2,1619623792,'auth_shibboleth','field_lock_email','unlocked',NULL),(1306,2,1619623792,'auth_shibboleth','field_map_city','',NULL),(1307,2,1619623792,'auth_shibboleth','field_updatelocal_city','oncreate',NULL),(1308,2,1619623792,'auth_shibboleth','field_lock_city','unlocked',NULL),(1309,2,1619623792,'auth_shibboleth','field_map_country','',NULL),(1310,2,1619623792,'auth_shibboleth','field_updatelocal_country','oncreate',NULL),(1311,2,1619623792,'auth_shibboleth','field_lock_country','unlocked',NULL),(1312,2,1619623792,'auth_shibboleth','field_map_lang','',NULL),(1313,2,1619623792,'auth_shibboleth','field_updatelocal_lang','oncreate',NULL),(1314,2,1619623792,'auth_shibboleth','field_lock_lang','unlocked',NULL),(1315,2,1619623792,'auth_shibboleth','field_map_description','',NULL),(1316,2,1619623792,'auth_shibboleth','field_updatelocal_description','oncreate',NULL),(1317,2,1619623792,'auth_shibboleth','field_lock_description','unlocked',NULL),(1318,2,1619623792,'auth_shibboleth','field_map_url','',NULL),(1319,2,1619623792,'auth_shibboleth','field_updatelocal_url','oncreate',NULL),(1320,2,1619623792,'auth_shibboleth','field_lock_url','unlocked',NULL),(1321,2,1619623792,'auth_shibboleth','field_map_idnumber','',NULL),(1322,2,1619623792,'auth_shibboleth','field_updatelocal_idnumber','oncreate',NULL),(1323,2,1619623792,'auth_shibboleth','field_lock_idnumber','unlocked',NULL),(1324,2,1619623792,'auth_shibboleth','field_map_institution','',NULL),(1325,2,1619623792,'auth_shibboleth','field_updatelocal_institution','oncreate',NULL),(1326,2,1619623792,'auth_shibboleth','field_lock_institution','unlocked',NULL),(1327,2,1619623792,'auth_shibboleth','field_map_department','',NULL),(1328,2,1619623792,'auth_shibboleth','field_updatelocal_department','oncreate',NULL),(1329,2,1619623792,'auth_shibboleth','field_lock_department','unlocked',NULL),(1330,2,1619623792,'auth_shibboleth','field_map_phone1','',NULL),(1331,2,1619623792,'auth_shibboleth','field_updatelocal_phone1','oncreate',NULL),(1332,2,1619623792,'auth_shibboleth','field_lock_phone1','unlocked',NULL),(1333,2,1619623792,'auth_shibboleth','field_map_phone2','',NULL),(1334,2,1619623792,'auth_shibboleth','field_updatelocal_phone2','oncreate',NULL),(1335,2,1619623792,'auth_shibboleth','field_lock_phone2','unlocked',NULL),(1336,2,1619623792,'auth_shibboleth','field_map_address','',NULL),(1337,2,1619623792,'auth_shibboleth','field_updatelocal_address','oncreate',NULL),(1338,2,1619623792,'auth_shibboleth','field_lock_address','unlocked',NULL),(1339,2,1619623792,'auth_shibboleth','field_map_firstnamephonetic','',NULL),(1340,2,1619623792,'auth_shibboleth','field_updatelocal_firstnamephonetic','oncreate',NULL),(1341,2,1619623792,'auth_shibboleth','field_lock_firstnamephonetic','unlocked',NULL),(1342,2,1619623792,'auth_shibboleth','field_map_lastnamephonetic','',NULL),(1343,2,1619623792,'auth_shibboleth','field_updatelocal_lastnamephonetic','oncreate',NULL),(1344,2,1619623792,'auth_shibboleth','field_lock_lastnamephonetic','unlocked',NULL),(1345,2,1619623792,'auth_shibboleth','field_map_middlename','',NULL),(1346,2,1619623792,'auth_shibboleth','field_updatelocal_middlename','oncreate',NULL),(1347,2,1619623792,'auth_shibboleth','field_lock_middlename','unlocked',NULL),(1348,2,1619623792,'auth_shibboleth','field_map_alternatename','',NULL),(1349,2,1619623792,'auth_shibboleth','field_updatelocal_alternatename','oncreate',NULL),(1350,2,1619623792,'auth_shibboleth','field_lock_alternatename','unlocked',NULL),(1351,2,1619623792,'block_activity_results','config_showbest','3',NULL),(1352,2,1619623792,'block_activity_results','config_showbest_locked','',NULL),(1353,2,1619623792,'block_activity_results','config_showworst','0',NULL),(1354,2,1619623792,'block_activity_results','config_showworst_locked','',NULL),(1355,2,1619623792,'block_activity_results','config_usegroups','0',NULL),(1356,2,1619623792,'block_activity_results','config_usegroups_locked','',NULL),(1357,2,1619623792,'block_activity_results','config_nameformat','1',NULL),(1358,2,1619623792,'block_activity_results','config_nameformat_locked','',NULL),(1359,2,1619623792,'block_activity_results','config_gradeformat','1',NULL),(1360,2,1619623792,'block_activity_results','config_gradeformat_locked','',NULL),(1361,2,1619623792,'block_activity_results','config_decimalpoints','2',NULL),(1362,2,1619623792,'block_activity_results','config_decimalpoints_locked','',NULL),(1363,2,1619623792,'block_myoverview','displaycategories','1',NULL),(1364,2,1619623792,'block_myoverview','layouts','card,list,summary',NULL),(1365,2,1619623792,'block_myoverview','displaygroupingallincludinghidden','0',NULL),(1366,2,1619623792,'block_myoverview','displaygroupingall','1',NULL),(1367,2,1619623792,'block_myoverview','displaygroupinginprogress','1',NULL),(1368,2,1619623792,'block_myoverview','displaygroupingpast','1',NULL),(1369,2,1619623792,'block_myoverview','displaygroupingfuture','1',NULL),(1370,2,1619623792,'block_myoverview','displaygroupingcustomfield','0',NULL),(1371,2,1619623792,'block_myoverview','customfiltergrouping','',NULL),(1372,2,1619623792,'block_myoverview','displaygroupingfavourites','1',NULL),(1373,2,1619623792,'block_myoverview','displaygroupinghidden','1',NULL),(1374,2,1619623792,NULL,'block_course_list_adminview','all',NULL),(1375,2,1619623792,NULL,'block_course_list_hideallcourseslink','0',NULL),(1376,2,1619623792,NULL,'block_html_allowcssclasses','0',NULL),(1377,2,1619623792,NULL,'block_online_users_timetosee','5',NULL),(1378,2,1619623792,NULL,'block_online_users_onlinestatushiding','1',NULL),(1379,2,1619623792,'block_recentlyaccessedcourses','displaycategories','1',NULL),(1380,2,1619623792,NULL,'block_rss_client_num_entries','5',NULL),(1381,2,1619623792,NULL,'block_rss_client_timeout','30',NULL),(1382,2,1619623792,'block_section_links','numsections1','22',NULL),(1383,2,1619623792,'block_section_links','incby1','2',NULL),(1384,2,1619623792,'block_section_links','numsections2','40',NULL),(1385,2,1619623792,'block_section_links','incby2','5',NULL),(1386,2,1619623792,'block_starredcourses','displaycategories','1',NULL),(1387,2,1619623792,'block_tag_youtube','apikey','',NULL),(1388,2,1619623792,'format_singleactivity','activitytype','forum',NULL),(1389,2,1619623792,'fileconverter_googledrive','issuerid','',NULL),(1390,2,1619623792,NULL,'pathtounoconv','/usr/bin/unoconv',NULL),(1391,2,1619623792,'enrol_cohort','roleid','5',NULL),(1392,2,1619623792,'enrol_cohort','unenrolaction','0',NULL),(1393,2,1619623792,'enrol_meta','nosyncroleids','',NULL),(1394,2,1619623792,'enrol_meta','syncall','1',NULL),(1395,2,1619623792,'enrol_meta','unenrolaction','3',NULL),(1396,2,1619623792,'enrol_meta','coursesort','sortorder',NULL),(1397,2,1619623792,'enrol_fee','expiredaction','3',NULL),(1398,2,1619623792,'enrol_fee','status','1',NULL),(1399,2,1619623792,'enrol_fee','cost','0',NULL),(1400,2,1619623792,'enrol_fee','currency','USD',NULL),(1401,2,1619623792,'enrol_fee','roleid','5',NULL),(1402,2,1619623792,'enrol_fee','enrolperiod','0',NULL),(1403,2,1619623792,'enrol_database','dbtype','',NULL),(1404,2,1619623792,'enrol_database','dbhost','localhost',NULL),(1405,2,1619623792,'enrol_database','dbuser','',NULL),(1406,2,1619623792,'enrol_database','dbpass','',NULL),(1407,2,1619623792,'enrol_database','dbname','',NULL),(1408,2,1619623792,'enrol_database','dbencoding','utf-8',NULL),(1409,2,1619623792,'enrol_database','dbsetupsql','',NULL),(1410,2,1619623792,'enrol_database','dbsybasequoting','0',NULL),(1411,2,1619623792,'enrol_database','debugdb','0',NULL),(1412,2,1619623792,'enrol_database','localcoursefield','idnumber',NULL),(1413,2,1619623792,'enrol_database','localuserfield','idnumber',NULL),(1414,2,1619623792,'enrol_database','localrolefield','shortname',NULL),(1415,2,1619623792,'enrol_database','localcategoryfield','id',NULL),(1416,2,1619623792,'enrol_database','remoteenroltable','',NULL),(1417,2,1619623792,'enrol_database','remotecoursefield','',NULL),(1418,2,1619623792,'enrol_database','remoteuserfield','',NULL),(1419,2,1619623792,'enrol_database','remoterolefield','',NULL),(1420,2,1619623792,'enrol_database','remoteotheruserfield','',NULL),(1421,2,1619623792,'enrol_database','defaultrole','5',NULL),(1422,2,1619623792,'enrol_database','ignorehiddencourses','0',NULL),(1423,2,1619623792,'enrol_database','unenrolaction','0',NULL),(1424,2,1619623792,'enrol_database','newcoursetable','',NULL),(1425,2,1619623792,'enrol_database','newcoursefullname','fullname',NULL),(1426,2,1619623792,'enrol_database','newcourseshortname','shortname',NULL),(1427,2,1619623792,'enrol_database','newcourseidnumber','idnumber',NULL),(1428,2,1619623792,'enrol_database','newcoursecategory','',NULL),(1429,2,1619623792,'enrol_database','defaultcategory','1',NULL),(1430,2,1619623792,'enrol_database','templatecourse','',NULL),(1431,2,1619623792,'enrol_flatfile','location','',NULL),(1432,2,1619623792,'enrol_flatfile','encoding','UTF-8',NULL),(1433,2,1619623792,'enrol_flatfile','mailstudents','0',NULL),(1434,2,1619623792,'enrol_flatfile','mailteachers','0',NULL),(1435,2,1619623792,'enrol_flatfile','mailadmins','0',NULL),(1436,2,1619623792,'enrol_flatfile','unenrolaction','3',NULL),(1437,2,1619623792,'enrol_flatfile','expiredaction','3',NULL),(1438,2,1619623792,'enrol_guest','requirepassword','0',NULL),(1439,2,1619623792,'enrol_guest','usepasswordpolicy','0',NULL),(1440,2,1619623792,'enrol_guest','showhint','0',NULL),(1441,2,1619623792,'enrol_guest','defaultenrol','1',NULL),(1442,2,1619623792,'enrol_guest','status','1',NULL),(1443,2,1619623792,'enrol_guest','status_adv','',NULL),(1444,2,1619623792,'enrol_imsenterprise','imsfilelocation','',NULL),(1445,2,1619623792,'enrol_imsenterprise','logtolocation','',NULL),(1446,2,1619623792,'enrol_imsenterprise','mailadmins','0',NULL),(1447,2,1619623792,'enrol_imsenterprise','createnewusers','0',NULL),(1448,2,1619623792,'enrol_imsenterprise','imsupdateusers','0',NULL),(1449,2,1619623792,'enrol_imsenterprise','imsdeleteusers','0',NULL),(1450,2,1619623792,'enrol_imsenterprise','fixcaseusernames','0',NULL),(1451,2,1619623792,'enrol_imsenterprise','fixcasepersonalnames','0',NULL),(1452,2,1619623792,'enrol_imsenterprise','imssourcedidfallback','0',NULL),(1453,2,1619623792,'enrol_imsenterprise','imsrolemap01','5',NULL),(1454,2,1619623792,'enrol_imsenterprise','imsrolemap02','3',NULL),(1455,2,1619623792,'enrol_imsenterprise','imsrolemap03','3',NULL),(1456,2,1619623792,'enrol_imsenterprise','imsrolemap04','5',NULL),(1457,2,1619623792,'enrol_imsenterprise','imsrolemap05','0',NULL),(1458,2,1619623792,'enrol_imsenterprise','imsrolemap06','4',NULL),(1459,2,1619623792,'enrol_imsenterprise','imsrolemap07','0',NULL),(1460,2,1619623792,'enrol_imsenterprise','imsrolemap08','4',NULL),(1461,2,1619623792,'enrol_imsenterprise','truncatecoursecodes','0',NULL),(1462,2,1619623792,'enrol_imsenterprise','createnewcourses','0',NULL),(1463,2,1619623792,'enrol_imsenterprise','updatecourses','0',NULL),(1464,2,1619623792,'enrol_imsenterprise','createnewcategories','0',NULL),(1465,2,1619623792,'enrol_imsenterprise','nestedcategories','0',NULL),(1466,2,1619623792,'enrol_imsenterprise','categoryidnumber','0',NULL),(1467,2,1619623792,'enrol_imsenterprise','categoryseparator','',NULL),(1468,2,1619623792,'enrol_imsenterprise','imsunenrol','0',NULL),(1469,2,1619623792,'enrol_imsenterprise','imscoursemapshortname','coursecode',NULL),(1470,2,1619623792,'enrol_imsenterprise','imscoursemapfullname','short',NULL),(1471,2,1619623792,'enrol_imsenterprise','imscoursemapsummary','ignore',NULL),(1472,2,1619623792,'enrol_imsenterprise','imsrestricttarget','',NULL),(1473,2,1619623792,'enrol_imsenterprise','imscapitafix','0',NULL),(1474,2,1619623792,'enrol_manual','expiredaction','1',NULL),(1475,2,1619623792,'enrol_manual','expirynotifyhour','6',NULL),(1476,2,1619623792,'enrol_manual','defaultenrol','1',NULL),(1477,2,1619623792,'enrol_manual','status','0',NULL),(1478,2,1619623792,'enrol_manual','roleid','5',NULL),(1479,2,1619623792,'enrol_manual','enrolstart','4',NULL),(1480,2,1619623792,'enrol_manual','enrolperiod','0',NULL),(1481,2,1619623792,'enrol_manual','expirynotify','0',NULL),(1482,2,1619623792,'enrol_manual','expirythreshold','86400',NULL),(1483,2,1619623792,'enrol_mnet','roleid','5',NULL),(1484,2,1619623792,'enrol_mnet','roleid_adv','1',NULL),(1485,2,1619623792,'enrol_paypal','paypalbusiness','',NULL),(1486,2,1619623792,'enrol_paypal','mailstudents','0',NULL),(1487,2,1619623792,'enrol_paypal','mailteachers','0',NULL),(1488,2,1619623792,'enrol_paypal','mailadmins','0',NULL),(1489,2,1619623792,'enrol_paypal','expiredaction','3',NULL),(1490,2,1619623792,'enrol_paypal','status','1',NULL),(1491,2,1619623792,'enrol_paypal','cost','0',NULL),(1492,2,1619623792,'enrol_paypal','currency','USD',NULL),(1493,2,1619623792,'enrol_paypal','roleid','5',NULL),(1494,2,1619623792,'enrol_paypal','enrolperiod','0',NULL),(1495,2,1619623792,'enrol_lti','emaildisplay','2',NULL),(1496,2,1619623792,'enrol_lti','city','',NULL),(1497,2,1619623792,'enrol_lti','country','',NULL),(1498,2,1619623792,'enrol_lti','timezone','99',NULL),(1499,2,1619623792,'enrol_lti','lang','en',NULL),(1500,2,1619623792,'enrol_lti','institution','',NULL),(1501,2,1619623792,'enrol_self','requirepassword','0',NULL),(1502,2,1619623792,'enrol_self','usepasswordpolicy','0',NULL),(1503,2,1619623792,'enrol_self','showhint','0',NULL),(1504,2,1619623792,'enrol_self','expiredaction','1',NULL),(1505,2,1619623792,'enrol_self','expirynotifyhour','6',NULL),(1506,2,1619623792,'enrol_self','defaultenrol','1',NULL),(1507,2,1619623792,'enrol_self','status','1',NULL),(1508,2,1619623792,'enrol_self','newenrols','1',NULL),(1509,2,1619623792,'enrol_self','groupkey','0',NULL),(1510,2,1619623792,'enrol_self','roleid','5',NULL),(1511,2,1619623792,'enrol_self','enrolperiod','0',NULL),(1512,2,1619623792,'enrol_self','expirynotify','0',NULL),(1513,2,1619623792,'enrol_self','expirythreshold','86400',NULL),(1514,2,1619623792,'enrol_self','longtimenosee','0',NULL),(1515,2,1619623792,'enrol_self','maxenrolled','0',NULL),(1516,2,1619623792,'enrol_self','sendcoursewelcomemessage','1',NULL),(1517,2,1619623792,'filter_urltolink','formats','1,4,0',NULL),(1518,2,1619623792,'filter_urltolink','embedimages','1',NULL),(1519,2,1619623792,'filter_emoticon','formats','1,4,0',NULL),(1520,2,1619623792,'filter_displayh5p','allowedsources','',NULL),(1521,2,1619623792,'filter_mathjaxloader','httpsurl','https://cdn.jsdelivr.net/npm/mathjax@2.7.8/MathJax.js',NULL),(1522,2,1619623792,'filter_mathjaxloader','texfiltercompatibility','0',NULL),(1523,2,1619623792,'filter_mathjaxloader','mathjaxconfig','\nMathJax.Hub.Config({\n config: [\"Accessible.js\", \"Safe.js\"],\n errorSettings: { message: [\"!\"] },\n skipStartupTypeset: true,\n messageStyle: \"none\"\n});\n',NULL),(1524,2,1619623792,'filter_mathjaxloader','additionaldelimiters','',NULL),(1525,2,1619623792,NULL,'filter_multilang_force_old','0',NULL),(1526,2,1619623792,'filter_tex','latexpreamble','\\usepackage[latin1]{inputenc}\n\\usepackage{amsmath}\n\\usepackage{amsfonts}\n\\RequirePackage{amsmath,amssymb,latexsym}\n',NULL),(1527,2,1619623792,'filter_tex','latexbackground','#FFFFFF',NULL),(1528,2,1619623792,'filter_tex','density','120',NULL),(1529,2,1619623792,'filter_tex','pathlatex','/usr/bin/latex',NULL),(1530,2,1619623792,'filter_tex','pathdvips','/usr/bin/dvips',NULL),(1531,2,1619623792,'filter_tex','pathconvert','/usr/bin/convert',NULL),(1532,2,1619623792,'filter_tex','pathdvisvgm','/usr/bin/dvisvgm',NULL),(1533,2,1619623792,'filter_tex','pathmimetex','',NULL),(1534,2,1619623793,'filter_tex','convertformat','gif',NULL),(1535,2,1619623793,NULL,'filter_censor_badwords','',NULL),(1536,2,1619623793,'local_chat_attachments','messaging_support_email','',NULL),(1537,2,1619623793,'local_chat_attachments','messaging_url','',NULL),(1538,2,1619623793,'local_chat_attachments','messaging_token','',NULL),(1539,2,1619623793,'logstore_database','dbdriver','',NULL),(1540,2,1619623793,'logstore_database','dbhost','',NULL),(1541,2,1619623793,'logstore_database','dbuser','',NULL),(1542,2,1619623793,'logstore_database','dbpass','',NULL),(1543,2,1619623793,'logstore_database','dbname','',NULL),(1544,2,1619623793,'logstore_database','dbtable','',NULL),(1545,2,1619623793,'logstore_database','dbpersist','0',NULL),(1546,2,1619623793,'logstore_database','dbsocket','',NULL),(1547,2,1619623793,'logstore_database','dbport','',NULL),(1548,2,1619623793,'logstore_database','dbschema','',NULL),(1549,2,1619623793,'logstore_database','dbcollation','',NULL),(1550,2,1619623793,'logstore_database','dbhandlesoptions','0',NULL),(1551,2,1619623793,'logstore_database','buffersize','50',NULL),(1552,2,1619623793,'logstore_database','jsonformat','1',NULL),(1553,2,1619623793,'logstore_database','logguests','0',NULL),(1554,2,1619623793,'logstore_database','includelevels','1,2,0',NULL),(1555,2,1619623793,'logstore_database','includeactions','c,r,u,d',NULL),(1556,2,1619623793,'logstore_legacy','loglegacy','0',NULL),(1557,2,1619623793,NULL,'logguests','1',NULL),(1558,2,1619623793,NULL,'loglifetime','0',NULL),(1559,2,1619623793,'logstore_standard','logguests','1',NULL),(1560,2,1619623793,'logstore_standard','jsonformat','1',NULL),(1561,2,1619623793,'logstore_standard','loglifetime','0',NULL),(1562,2,1619623793,'logstore_standard','buffersize','50',NULL),(1563,2,1619623793,'mlbackend_python','useserver','0',NULL),(1564,2,1619623793,'mlbackend_python','host','',NULL),(1565,2,1619623793,'mlbackend_python','port','0',NULL),(1566,2,1619623793,'mlbackend_python','secure','0',NULL),(1567,2,1619623793,'mlbackend_python','username','default',NULL),(1568,2,1619623793,'mlbackend_python','password','',NULL),(1569,2,1619623793,'media_videojs','videoextensions','html_video,media_source,.f4v,.flv',NULL),(1570,2,1619623793,'media_videojs','audioextensions','html_audio',NULL),(1571,2,1619623793,'media_videojs','rtmp','0',NULL),(1572,2,1619623793,'media_videojs','useflash','0',NULL),(1573,2,1619623793,'media_videojs','youtube','1',NULL),(1574,2,1619623793,'media_videojs','videocssclass','video-js',NULL),(1575,2,1619623793,'media_videojs','audiocssclass','video-js',NULL),(1576,2,1619623793,'media_videojs','limitsize','1',NULL),(1577,2,1619623793,'paygw_paypal','surcharge','0',NULL),(1578,2,1619623793,'qtype_multichoice','answerhowmany','1',NULL),(1579,2,1619623793,'qtype_multichoice','shuffleanswers','1',NULL),(1580,2,1619623793,'qtype_multichoice','answernumbering','abc',NULL),(1581,2,1619623793,'editor_atto','toolbar','collapse = collapse\nstyle1 = title, bold, italic\nlist = unorderedlist, orderedlist, indent\nlinks = link\nfiles = emojipicker, image, media, recordrtc, managefiles, h5p\nstyle2 = underline, strike, subscript, superscript\nalign = align\ninsert = equation, charmap, table, clear\nundo = undo\naccessibility = accessibilitychecker, accessibilityhelper\nother = html',NULL),(1582,2,1619623793,'editor_atto','autosavefrequency','60',NULL),(1583,2,1619623793,'atto_collapse','showgroups','5',NULL),(1584,2,1619623793,'atto_equation','librarygroup1','\n\\cdot\n\\times\n\\ast\n\\div\n\\diamond\n\\pm\n\\mp\n\\oplus\n\\ominus\n\\otimes\n\\oslash\n\\odot\n\\circ\n\\bullet\n\\asymp\n\\equiv\n\\subseteq\n\\supseteq\n\\leq\n\\geq\n\\preceq\n\\succeq\n\\sim\n\\simeq\n\\approx\n\\subset\n\\supset\n\\ll\n\\gg\n\\prec\n\\succ\n\\infty\n\\in\n\\ni\n\\forall\n\\exists\n\\neq\n',NULL),(1585,2,1619623793,'atto_equation','librarygroup2','\n\\leftarrow\n\\rightarrow\n\\uparrow\n\\downarrow\n\\leftrightarrow\n\\nearrow\n\\searrow\n\\swarrow\n\\nwarrow\n\\Leftarrow\n\\Rightarrow\n\\Uparrow\n\\Downarrow\n\\Leftrightarrow\n',NULL),(1586,2,1619623793,'atto_equation','librarygroup3','\n\\alpha\n\\beta\n\\gamma\n\\delta\n\\epsilon\n\\zeta\n\\eta\n\\theta\n\\iota\n\\kappa\n\\lambda\n\\mu\n\\nu\n\\xi\n\\pi\n\\rho\n\\sigma\n\\tau\n\\upsilon\n\\phi\n\\chi\n\\psi\n\\omega\n\\Gamma\n\\Delta\n\\Theta\n\\Lambda\n\\Xi\n\\Pi\n\\Sigma\n\\Upsilon\n\\Phi\n\\Psi\n\\Omega\n',NULL),(1587,2,1619623793,'atto_equation','librarygroup4','\n\\sum{a,b}\n\\sqrt[a]{b+c}\n\\int_{a}^{b}{c}\n\\iint_{a}^{b}{c}\n\\iiint_{a}^{b}{c}\n\\oint{a}\n(a)\n[a]\n\\lbrace{a}\\rbrace\n\\left| \\begin{matrix} a_1 & a_2 \\ a_3 & a_4 \\end{matrix} \\right|\n\\frac{a}{b+c}\n\\vec{a}\n\\binom {a} {b}\n{a \\brack b}\n{a \\brace b}\n',NULL),(1588,2,1619623793,'atto_recordrtc','allowedtypes','both',NULL),(1589,2,1619623793,'atto_recordrtc','audiobitrate','128000',NULL),(1590,2,1619623793,'atto_recordrtc','videobitrate','2500000',NULL),(1591,2,1619623793,'atto_recordrtc','timelimit','120',NULL),(1592,2,1619623793,'atto_table','allowborders','0',NULL),(1593,2,1619623793,'atto_table','allowbackgroundcolour','0',NULL),(1594,2,1619623793,'atto_table','allowwidth','0',NULL),(1595,2,1619623793,'editor_tinymce','customtoolbar','wrap,formatselect,wrap,bold,italic,wrap,bullist,numlist,wrap,link,unlink,wrap,image\n\nundo,redo,wrap,underline,strikethrough,sub,sup,wrap,justifyleft,justifycenter,justifyright,wrap,outdent,indent,wrap,forecolor,backcolor,wrap,ltr,rtl\n\nfontselect,fontsizeselect,wrap,code,search,replace,wrap,nonbreaking,charmap,table,wrap,cleanup,removeformat,pastetext,pasteword,wrap,fullscreen',NULL),(1596,2,1619623793,'editor_tinymce','fontselectlist','Trebuchet=Trebuchet MS,Verdana,Arial,Helvetica,sans-serif;Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;Wingdings=wingdings',NULL),(1597,2,1619623793,'editor_tinymce','customconfig','',NULL),(1598,2,1619623793,'tinymce_moodleemoticon','requireemoticon','1',NULL),(1599,2,1619623793,'tinymce_spellchecker','spellengine','',NULL),(1600,2,1619623793,'tinymce_spellchecker','spelllanguagelist','+English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv',NULL),(1601,2,1619623793,NULL,'profileroles','5,4,3',NULL),(1602,2,1619623793,NULL,'coursecontact','3',NULL),(1603,2,1619623793,NULL,'frontpage','6',NULL),(1604,2,1619623793,NULL,'frontpageloggedin','6',NULL),(1605,2,1619623793,NULL,'maxcategorydepth','2',NULL),(1606,2,1619623793,NULL,'frontpagecourselimit','200',NULL),(1607,2,1619623793,NULL,'commentsperpage','15',NULL),(1608,2,1619623793,NULL,'defaultfrontpageroleid','8',NULL),(1609,2,1619623793,NULL,'messageinbound_enabled','0',NULL),(1610,2,1619623793,NULL,'messageinbound_mailbox','',NULL),(1611,2,1619623793,NULL,'messageinbound_domain','',NULL),(1612,2,1619623793,NULL,'messageinbound_host','',NULL),(1613,2,1619623793,NULL,'messageinbound_hostssl','ssl',NULL),(1614,2,1619623793,NULL,'messageinbound_hostuser','',NULL),(1615,2,1619623793,NULL,'messageinbound_hostpass','',NULL),(1616,2,1619623793,NULL,'enablemobilewebservice','0',NULL),(1617,2,1619623793,'tool_mobile','apppolicy','',NULL),(1618,2,1619623793,'tool_mobile','typeoflogin','1',NULL),(1619,2,1619623793,'tool_mobile','qrcodetype','2',NULL),(1620,2,1619623793,'tool_mobile','forcedurlscheme','moodlemobile',NULL),(1621,2,1619623793,'tool_mobile','minimumversion','',NULL),(1622,2,1619623793,NULL,'mobilecssurl','',NULL),(1623,2,1619623793,'tool_mobile','enablesmartappbanners','0',NULL),(1624,2,1619623793,'tool_mobile','iosappid','633359593',NULL),(1625,2,1619623793,'tool_mobile','androidappid','com.moodle.moodlemobile',NULL),(1626,2,1619623793,'tool_mobile','setuplink','https://download.moodle.org/mobile',NULL),(1627,2,1619623793,'tool_mobile','forcelogout','0',NULL),(1628,2,1619623793,'tool_mobile','disabledfeatures','',NULL),(1629,2,1619623793,'tool_mobile','custommenuitems','',NULL),(1630,2,1619623793,'tool_mobile','filetypeexclusionlist','',NULL),(1631,2,1619623793,'tool_mobile','customlangstrings','',NULL),(1632,2,1619623793,'tool_moodlenet','enablemoodlenet','0',NULL),(1633,2,1619623793,'tool_moodlenet','defaultmoodlenetname','MoodleNet Central',NULL),(1634,2,1619623793,'tool_moodlenet','defaultmoodlenet','https://moodle.net',NULL),(1635,2,1619623812,NULL,'timezone','Europe/London',NULL),(1636,2,1619623812,NULL,'registerauth','',NULL),(1637,2,1619624888,'core_admin','logo','/Droplet Text - Teal - Transparent.png',''),(1638,2,1619624888,'core_admin','logocompact','/Droplet - Teal - Transparent.png',''),(1639,2,1619625300,NULL,'customusermenuitems','grades,grades|/grade/report/mygrades.php|t/grades\r\nmessages,message|/message/index.php|t/message\r\npreferences,moodle|/user/preferences.php|t/preferences','grades,grades|/grade/report/mygrades.php|t/grades\nmessages,message|/message/index.php|t/message\npreferences,moodle|/user/preferences.php|t/preferences'),(1640,2,1619625300,'theme_boost','brandcolor','#A4175B',''),(1641,2,1619625519,'enrol_self','status','0','1'),(1642,2,1619625519,'enrol_self','newenrols','0','1'),(1643,2,1619625569,'enrol_self','status','1','0'),(1644,2,1619625665,'customcert','verifycertificate','',NULL),(1645,2,1619625665,'customcert','managetemplates','',NULL),(1646,2,1619625665,'customcert','uploadimage','',NULL),(1647,2,1619625678,'customcert','verifyallcertificates','0',NULL),(1648,2,1619625678,'customcert','showposxy','0',NULL),(1649,2,1619625678,'customcert','emailstudents','0',NULL),(1650,2,1619625678,'customcert','emailteachers','0',NULL),(1651,2,1619625678,'customcert','emailothers','',NULL),(1652,2,1619625678,'customcert','verifyany','0',NULL),(1653,2,1619625678,'customcert','requiredtime','0',NULL),(1654,2,1619625678,'customcert','protection_print','0',NULL),(1655,2,1619625678,'customcert','protection_modify','0',NULL),(1656,2,1619625678,'customcert','protection_copy','0',NULL),(1657,2,1619625777,NULL,'enablemobilewebservice','1','0'),(1658,2,1619626061,'tool_mobile','apppolicy','https://www.relaytrust.org/thewell/privacypolicy.html',''),(1659,2,1619626061,'tool_mobile','forcedurlscheme','org.relaytrust.thewell','moodlemobile'),(1660,2,1619626061,'tool_mobile','enablesmartappbanners','1','0'),(1661,2,1619626061,'tool_mobile','iosappid','','633359593'),(1662,2,1619626061,'tool_mobile','androidappid','org.relaytrust.thewell','com.moodle.moodlemobile'),(1663,2,1619626061,'tool_mobile','setuplink','https://www.relaytrust.org/thewell/thewellapp.html','https://download.moodle.org/mobile'),(1664,2,1619626061,'tool_mobile','disabledfeatures','$mmLoginEmailSignup,NoDelegate_ForgottenPassword,$mmSideMenuDelegate_mmaFrontpage,$mmSideMenuDelegate_mmaCalendar,$mmSideMenuDelegate_mmaNotifications,$mmSideMenuDelegate_mmaGrades,$mmSideMenuDelegate_mmaCompetency,CoreMainMenuDelegate_AddonBlog,CoreMainMenuDelegate_CoreTag,$mmSideMenuDelegate_website,$mmSideMenuDelegate_help,CoreCourseOptionsDelegate_AddonBlog,CoreUserDelegate_AddonBlog:blogs,$mmUserDelegate_mmaMessages:blockContact',''),(1665,2,1619626271,'tool_mobile','custommenuitems','Get Resources from The Well|http://thewell|browser\r\nHelp|internal link in Well Device|embedded\r\nAbout The Well|internal link in Well Device|embedded',''),(1666,2,1619626699,'moodlecourse','downloadcontentsitedefault','1','0'),(1667,2,1619626699,'moodlecourse','courseduration','15552000','31536000'),(1668,2,1619626786,NULL,'downloadcoursecontentallowed','1','0'),(1669,2,1619626786,NULL,'maxsizeperdownloadcoursefile','536870912','52428800'),(1670,2,1619627174,'tool_mobile','custommenuitems','Get Resources from The Well|http://thewell|browser\r\nAbout The Well|internal link in Well Device|embedded','Get Resources from The Well|http://thewell|browser\r\nHelp|internal link in Well Device|embedded\r\nAbout The Well|internal link in Well Device|embedded'),(1671,2,1619627241,'tool_mobile','custommenuitems','Get Resources from The Well|http://thewell|browser\r\nHelp|internal link in Well|embedded\r\nAbout The Well|internal link in Well Device|embedded','Get Resources from The Well|http://thewell|browser\r\nAbout The Well|internal link in Well Device|embedded'); +/*!40000 ALTER TABLE `mdl_config_log` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_config_plugins` +-- + +DROP TABLE IF EXISTS `mdl_config_plugins`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_config_plugins` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `plugin` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'core', + `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_confplug_plunam_uix` (`plugin`,`name`) +) ENGINE=InnoDB AUTO_INCREMENT=1960 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Moodle modules and plugins configuration variables'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_config_plugins` +-- + +LOCK TABLES `mdl_config_plugins` WRITE; +/*!40000 ALTER TABLE `mdl_config_plugins` DISABLE KEYS */; +INSERT INTO `mdl_config_plugins` VALUES (1,'question','multichoice_sortorder','1'),(2,'question','truefalse_sortorder','2'),(3,'question','match_sortorder','3'),(4,'question','shortanswer_sortorder','4'),(5,'question','numerical_sortorder','5'),(6,'question','essay_sortorder','6'),(7,'moodlecourse','visible','1'),(8,'moodlecourse','downloadcontentsitedefault','1'),(9,'moodlecourse','format','topics'),(10,'moodlecourse','maxsections','52'),(11,'moodlecourse','numsections','4'),(12,'moodlecourse','hiddensections','0'),(13,'moodlecourse','coursedisplay','0'),(14,'moodlecourse','courseenddateenabled','1'),(15,'moodlecourse','courseduration','15552000'),(16,'moodlecourse','lang',''),(17,'moodlecourse','newsitems','5'),(18,'moodlecourse','showgrades','1'),(19,'moodlecourse','showreports','0'),(20,'moodlecourse','maxbytes','0'),(21,'moodlecourse','enablecompletion','1'),(22,'moodlecourse','groupmode','0'),(23,'moodlecourse','groupmodeforce','0'),(24,'backup','loglifetime','30'),(25,'backup','backup_general_users','1'),(26,'backup','backup_general_users_locked',''),(27,'backup','backup_general_anonymize','0'),(28,'backup','backup_general_anonymize_locked',''),(29,'backup','backup_general_role_assignments','1'),(30,'backup','backup_general_role_assignments_locked',''),(31,'backup','backup_general_activities','1'),(32,'backup','backup_general_activities_locked',''),(33,'backup','backup_general_blocks','1'),(34,'backup','backup_general_blocks_locked',''),(35,'backup','backup_general_files','1'),(36,'backup','backup_general_files_locked',''),(37,'backup','backup_general_filters','1'),(38,'backup','backup_general_filters_locked',''),(39,'backup','backup_general_comments','1'),(40,'backup','backup_general_comments_locked',''),(41,'backup','backup_general_badges','1'),(42,'backup','backup_general_badges_locked',''),(43,'backup','backup_general_calendarevents','1'),(44,'backup','backup_general_calendarevents_locked',''),(45,'backup','backup_general_userscompletion','1'),(46,'backup','backup_general_userscompletion_locked',''),(47,'backup','backup_general_logs','0'),(48,'backup','backup_general_logs_locked',''),(49,'backup','backup_general_histories','0'),(50,'backup','backup_general_histories_locked',''),(51,'backup','backup_general_questionbank','1'),(52,'backup','backup_general_questionbank_locked',''),(53,'backup','backup_general_groups','1'),(54,'backup','backup_general_groups_locked',''),(55,'backup','backup_general_competencies','1'),(56,'backup','backup_general_competencies_locked',''),(57,'backup','backup_general_contentbankcontent','1'),(58,'backup','backup_general_contentbankcontent_locked',''),(59,'backup','backup_general_legacyfiles','1'),(60,'backup','backup_general_legacyfiles_locked',''),(61,'backup','import_general_maxresults','10'),(62,'backup','import_general_duplicate_admin_allowed','0'),(63,'backup','backup_import_activities','1'),(64,'backup','backup_import_activities_locked',''),(65,'backup','backup_import_blocks','1'),(66,'backup','backup_import_blocks_locked',''),(67,'backup','backup_import_filters','1'),(68,'backup','backup_import_filters_locked',''),(69,'backup','backup_import_calendarevents','1'),(70,'backup','backup_import_calendarevents_locked',''),(71,'backup','backup_import_questionbank','1'),(72,'backup','backup_import_questionbank_locked',''),(73,'backup','backup_import_groups','1'),(74,'backup','backup_import_groups_locked',''),(75,'backup','backup_import_competencies','1'),(76,'backup','backup_import_competencies_locked',''),(77,'backup','backup_import_contentbankcontent','1'),(78,'backup','backup_import_contentbankcontent_locked',''),(79,'backup','backup_import_legacyfiles','1'),(80,'backup','backup_import_legacyfiles_locked',''),(81,'backup','backup_auto_active','0'),(82,'backup','backup_auto_weekdays','0000000'),(83,'backup','backup_auto_hour','0'),(84,'backup','backup_auto_minute','0'),(85,'backup','backup_auto_storage','0'),(86,'backup','backup_auto_destination',''),(87,'backup','backup_auto_max_kept','1'),(88,'backup','backup_auto_delete_days','0'),(89,'backup','backup_auto_min_kept','0'),(90,'backup','backup_shortname','0'),(91,'backup','backup_auto_skip_hidden','1'),(92,'backup','backup_auto_skip_modif_days','30'),(93,'backup','backup_auto_skip_modif_prev','0'),(94,'backup','backup_auto_users','1'),(95,'backup','backup_auto_role_assignments','1'),(96,'backup','backup_auto_activities','1'),(97,'backup','backup_auto_blocks','1'),(98,'backup','backup_auto_files','1'),(99,'backup','backup_auto_filters','1'),(100,'backup','backup_auto_comments','1'),(101,'backup','backup_auto_badges','1'),(102,'backup','backup_auto_calendarevents','1'),(103,'backup','backup_auto_userscompletion','1'),(104,'backup','backup_auto_logs','0'),(105,'backup','backup_auto_histories','0'),(106,'backup','backup_auto_questionbank','1'),(107,'backup','backup_auto_groups','1'),(108,'backup','backup_auto_competencies','1'),(109,'backup','backup_auto_contentbankcontent','1'),(110,'backup','backup_auto_legacyfiles','1'),(111,'restore','restore_general_users','1'),(112,'restore','restore_general_users_locked',''),(113,'restore','restore_general_enrolments','1'),(114,'restore','restore_general_enrolments_locked',''),(115,'restore','restore_general_role_assignments','1'),(116,'restore','restore_general_role_assignments_locked',''),(117,'restore','restore_general_activities','1'),(118,'restore','restore_general_activities_locked',''),(119,'restore','restore_general_blocks','1'),(120,'restore','restore_general_blocks_locked',''),(121,'restore','restore_general_filters','1'),(122,'restore','restore_general_filters_locked',''),(123,'restore','restore_general_comments','1'),(124,'restore','restore_general_comments_locked',''),(125,'restore','restore_general_badges','1'),(126,'restore','restore_general_badges_locked',''),(127,'restore','restore_general_calendarevents','1'),(128,'restore','restore_general_calendarevents_locked',''),(129,'restore','restore_general_userscompletion','1'),(130,'restore','restore_general_userscompletion_locked',''),(131,'restore','restore_general_logs','1'),(132,'restore','restore_general_logs_locked',''),(133,'restore','restore_general_histories','1'),(134,'restore','restore_general_histories_locked',''),(135,'restore','restore_general_groups','1'),(136,'restore','restore_general_groups_locked',''),(137,'restore','restore_general_competencies','1'),(138,'restore','restore_general_competencies_locked',''),(139,'restore','restore_general_contentbankcontent','1'),(140,'restore','restore_general_contentbankcontent_locked',''),(141,'restore','restore_general_legacyfiles','1'),(142,'restore','restore_general_legacyfiles_locked',''),(143,'restore','restore_merge_overwrite_conf','0'),(144,'restore','restore_merge_overwrite_conf_locked',''),(145,'restore','restore_merge_course_fullname','1'),(146,'restore','restore_merge_course_fullname_locked',''),(147,'restore','restore_merge_course_shortname','1'),(148,'restore','restore_merge_course_shortname_locked',''),(149,'restore','restore_merge_course_startdate','1'),(150,'restore','restore_merge_course_startdate_locked',''),(151,'restore','restore_replace_overwrite_conf','0'),(152,'restore','restore_replace_overwrite_conf_locked',''),(153,'restore','restore_replace_course_fullname','1'),(154,'restore','restore_replace_course_fullname_locked',''),(155,'restore','restore_replace_course_shortname','1'),(156,'restore','restore_replace_course_shortname_locked',''),(157,'restore','restore_replace_course_startdate','1'),(158,'restore','restore_replace_course_startdate_locked',''),(159,'restore','restore_replace_keep_roles_and_enrolments','0'),(160,'restore','restore_replace_keep_roles_and_enrolments_locked',''),(161,'restore','restore_replace_keep_groups_and_groupings','0'),(162,'restore','restore_replace_keep_groups_and_groupings_locked',''),(163,'backup','backup_async_message_users','0'),(164,'backup','backup_async_message_subject','Moodle {operation} completed successfully'),(165,'backup','backup_async_message','Hi {user_firstname},
Your {operation} (ID: {backupid}) has completed successfully.

You can access it here: {link}.'),(166,'analytics','modeinstruction',''),(167,'analytics','percentonline','0'),(168,'analytics','typeinstitution',''),(169,'analytics','levelinstitution',''),(170,'analytics','predictionsprocessor','\\mlbackend_php\\processor'),(171,'analytics','defaulttimesplittingsevaluation','\\core\\analytics\\time_splitting\\quarters_accum,\\core\\analytics\\time_splitting\\quarters,\\core\\analytics\\time_splitting\\single_range'),(172,'analytics','modeloutputdir',''),(173,'analytics','onlycli','1'),(174,'analytics','modeltimelimit','1200'),(175,'core_competency','enabled','1'),(176,'core_competency','pushcourseratingstouserplans','1'),(177,'antivirus','notifyemail',''),(178,'antivirus','enablequarantine','0'),(179,'antivirus','quarantinetime','2419200'),(180,'cachestore_apcu','testperformance','0'),(181,'cachestore_memcached','testservers',''),(182,'cachestore_mongodb','testserver',''),(183,'cachestore_redis','test_server',''),(184,'cachestore_redis','test_password',''),(185,'question_preview','behaviour','deferredfeedback'),(186,'question_preview','correctness','1'),(187,'question_preview','marks','2'),(188,'question_preview','markdp','2'),(189,'question_preview','feedback','1'),(190,'question_preview','generalfeedback','1'),(191,'question_preview','rightanswer','1'),(192,'question_preview','history','0'),(193,'tool_task','enablerunnow','1'),(194,'theme_boost','preset','default.scss'),(195,'theme_boost','presetfiles',''),(196,'theme_boost','backgroundimage',''),(197,'theme_boost','brandcolor','#A4175B'),(198,'theme_boost','scsspre',''),(199,'theme_boost','scss',''),(200,'theme_classic','navbardark','0'),(201,'theme_classic','preset','default.scss'),(202,'theme_classic','presetfiles',''),(203,'theme_classic','backgroundimage',''),(204,'theme_classic','brandcolor',''),(205,'theme_classic','scsspre',''),(206,'theme_classic','scss',''),(207,'core_admin','logo','/Droplet Text - Teal - Transparent.png'),(208,'core_admin','logocompact','/Droplet - Teal - Transparent.png'),(209,'core_admin','coursecolor1','#81ecec'),(210,'core_admin','coursecolor2','#74b9ff'),(211,'core_admin','coursecolor3','#a29bfe'),(212,'core_admin','coursecolor4','#dfe6e9'),(213,'core_admin','coursecolor5','#00b894'),(214,'core_admin','coursecolor6','#0984e3'),(215,'core_admin','coursecolor7','#b2bec3'),(216,'core_admin','coursecolor8','#fdcb6e'),(217,'core_admin','coursecolor9','#fd79a8'),(218,'core_admin','coursecolor10','#6c5ce7'),(219,'antivirus_clamav','version','2020110900'),(220,'availability_completion','version','2020110900'),(221,'availability_date','version','2020110900'),(222,'availability_grade','version','2020110900'),(223,'availability_group','version','2020110900'),(224,'availability_grouping','version','2020110900'),(225,'availability_profile','version','2020110900'),(226,'qtype_calculated','version','2020110900'),(227,'qtype_calculatedmulti','version','2020110900'),(228,'qtype_calculatedsimple','version','2020110900'),(229,'qtype_ddimageortext','version','2020110900'),(230,'qtype_ddmarker','version','2020110900'),(231,'qtype_ddwtos','version','2020110900'),(232,'qtype_description','version','2020110900'),(233,'qtype_essay','version','2020110900'),(234,'qtype_gapselect','version','2020110900'),(235,'qtype_match','version','2020110900'),(236,'qtype_missingtype','version','2020110900'),(237,'qtype_multianswer','version','2020110900'),(238,'qtype_multichoice','version','2020110900'),(239,'qtype_numerical','version','2020110900'),(240,'qtype_random','version','2020110900'),(241,'qtype_randomsamatch','version','2020110900'),(242,'qtype_shortanswer','version','2020110900'),(243,'qtype_truefalse','version','2020110900'),(244,'mod_assign','version','2020110900'),(245,'mod_assignment','version','2020110900'),(247,'mod_book','version','2020110900'),(248,'mod_chat','version','2020110900'),(249,'mod_choice','version','2020110900'),(250,'mod_data','version','2020110900'),(251,'mod_feedback','version','2020110900'),(253,'mod_folder','version','2020110900'),(255,'mod_forum','version','2020110900'),(256,'mod_glossary','version','2020110900'),(257,'mod_h5pactivity','version','2020110900'),(258,'mod_imscp','version','2020110900'),(260,'mod_label','version','2020110900'),(261,'mod_lesson','version','2020110900'),(262,'mod_lti','version','2020110900'),(264,'mod_lti','kid','d293de2e806f861de0f7'),(265,'mod_lti','privatekey','-----BEGIN PRIVATE KEY-----\nMIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQC1o6VZX2CR8aXM\nfB61KukyfOazczDwXy4Mf6HUhVNLE+wMahSX09vrgFFTI0g/QwYevlpzQPplPUCg\nyFUnl6A0qqwPR819Ju4iug65hzzGSlna/1FtjGwFINoE9AnZyXUljhdiyVeS8pLz\nzmQnPUl2i/QGWjAtS9wL6+B1U1mKzE1p7dkIr/M5MltjY14w38gGUrWNCB0nZ1bZ\nXlKXJrj2Z0h9t/9BlQYPE5u8F0vw/MInuEQDw7bpMX1QZoBEvnrkij6yBpGEWR2F\nxQdc8aS4dnvhAfVqDNu1vz5TK2fkbRScIfsYFo/tKItvKkkuOYtaTdTtCt1K+Nsp\nrUc/86cvAgMBAAECggEAHC/K5vWQDNXM/tB8C20fRwBu5IYJoCOFB9d+i3YtGMd8\np+iGTZFI3WDKPfaJrZd/CaJMcvowYSmCL/EmlcBH0iRyEuT3lGZIKgdpZY0A91xu\nWTepsTBLSvhwHLiqFqvWi/9izaek+V6/QypSDGzMS6MoORwhwcW13fu6lzpZ+Nm8\nXQGMRkH3UW3s7eEMaiw9NTRKaDtwRkztfrJsKQyaC+2uBFeXJbGf453ttrySui6m\nvrD/EQ6m50VZMmDWkbzMK6tJH/it/9eb4tX7q5iskPjkc73/oEXKxkywE6cPE7bF\n4x/tiWqY5LaQws8reQKu60wS5W49I6TjjNgHVTGLAQKBgQDjPl2XrBVWTPpl5Vl4\ncHd0XVBFENXRyiJRnOZxpYFkQIHGqWp0MnrEU3FzXtQ/JqnmXll2t/Z6kH8OESpc\nY93Ay8eFhf4Rzl0pdMWJfJXIG6Wma06oIfnDsSKBq6QDuGuYDS6mJ1JG0+pAIvIy\nfMPbdXeqZmQNiS67xPw5NM23bwKBgQDMn+k7RmVo7rRZrp8PThwfEIecBQkmhNw1\nhpOyijhCBP56rg0dlBemPSxrZ+16eKF5ByYrvYlFqX43RW0myK2hQ+tUwQ6KeKzE\n1Rd+PUkUTVYCMyJTnjpi4KE1RTp/VpnJo0tRFJvALgyRPdKJkvJ98/cWGUaKCIW5\np48rNl8sQQKBgQDE1oC7oJPa7VL4cHHPoZvXb/zX1n1f+3c+umnihzpNXJMNQjKz\n9AXjiWP8S2gOS69fnNphu3gFMqTbyoKnBNpQ5jMttaMeSWLpRfzV2tTjQQ971/eK\nK+PtXsJFEChCEL0iOEjwI59hOq7uX1br5KbCsj21nHuOPgX9H+RaqSKIgQKBgHlS\ngs2TQoNBrIrT3xkK/d9pRI476h39fjb6MM4V5581KNECK2KTMKZu9MxF1Wbc6RhC\nJd6fRSmZge0xa7MoHtJT287nnEB7piwaEBDYM2EnLUymlr6vPPztJIfaIQHpDcug\n1wIezu3WH7tpxU+uYbpOEPz4RXuH7AmUkG1Vkn5BAoGAFEIzYB6AwZ9FwS3nQSc6\n9JF+apeRA+kU+gvEg3ARnu4qipB8pdygmKsLqC/LIN1WtQ3eazUbHepzBqlt63lA\nvtIjiz+zg6daAMm/g5mpAdVMLFTw9cYHqHyBKF8eSNtt8gk/qQX33HhwdVKwBktU\nSK8ufeRwNuM0OcAiu9Gp9WQ=\n-----END PRIVATE KEY-----\n'),(266,'mod_page','version','2020110900'),(268,'mod_quiz','version','2020110900'),(269,'mod_resource','version','2020110900'),(270,'mod_scorm','version','2020110900'),(271,'mod_survey','version','2020110900'),(273,'mod_url','version','2020110900'),(275,'mod_wiki','version','2020110900'),(277,'mod_workshop','version','2020110900'),(278,'auth_cas','version','2020110900'),(280,'auth_db','version','2020110900'),(282,'auth_email','version','2020110900'),(283,'auth_ldap','version','2020110900'),(285,'auth_lti','version','2020110900'),(286,'auth_manual','version','2020110900'),(287,'auth_mnet','version','2020110900'),(289,'auth_nologin','version','2020110900'),(290,'auth_none','version','2020110900'),(291,'auth_oauth2','version','2020110900'),(292,'auth_shibboleth','version','2020110901'),(294,'auth_webservice','version','2020110900'),(295,'calendartype_gregorian','version','2020110900'),(296,'customfield_checkbox','version','2020110900'),(297,'customfield_date','version','2020110900'),(298,'customfield_select','version','2020110900'),(299,'customfield_text','version','2020110900'),(300,'customfield_textarea','version','2020110900'),(301,'enrol_category','version','2020110900'),(303,'enrol_cohort','version','2020110900'),(304,'enrol_database','version','2020110900'),(306,'enrol_fee','version','2020110900'),(307,'enrol_flatfile','version','2020110900'),(309,'enrol_flatfile','map_1','manager'),(310,'enrol_flatfile','map_2','coursecreator'),(311,'enrol_flatfile','map_3','editingteacher'),(312,'enrol_flatfile','map_4','teacher'),(313,'enrol_flatfile','map_5','student'),(314,'enrol_flatfile','map_6','guest'),(315,'enrol_flatfile','map_7','user'),(316,'enrol_flatfile','map_8','frontpage'),(317,'enrol_guest','version','2020110900'),(318,'enrol_imsenterprise','version','2020110900'),(320,'enrol_ldap','version','2020110900'),(322,'enrol_lti','version','2020110900'),(323,'enrol_manual','version','2020110900'),(325,'enrol_meta','version','2020110900'),(327,'enrol_mnet','version','2020110900'),(328,'enrol_paypal','version','2020110900'),(329,'enrol_self','version','2020110900'),(331,'message_airnotifier','version','2020110900'),(333,'message','airnotifier_provider_enrol_flatfile_flatfile_enrolment_permitted','permitted'),(334,'message','airnotifier_provider_enrol_imsenterprise_imsenterprise_enrolment_permitted','permitted'),(335,'message','airnotifier_provider_enrol_manual_expiry_notification_permitted','permitted'),(336,'message','airnotifier_provider_enrol_paypal_paypal_enrolment_permitted','permitted'),(337,'message','airnotifier_provider_enrol_self_expiry_notification_permitted','permitted'),(338,'message','airnotifier_provider_mod_assign_assign_notification_permitted','permitted'),(339,'message','airnotifier_provider_mod_assignment_assignment_updates_permitted','permitted'),(340,'message','airnotifier_provider_mod_feedback_submission_permitted','permitted'),(341,'message','airnotifier_provider_mod_feedback_message_permitted','permitted'),(342,'message','airnotifier_provider_mod_forum_posts_permitted','permitted'),(343,'message','message_provider_mod_forum_posts_loggedin','email,airnotifier'),(344,'message','message_provider_mod_forum_posts_loggedoff','email,airnotifier'),(345,'message','airnotifier_provider_mod_forum_digests_permitted','permitted'),(346,'message','airnotifier_provider_mod_lesson_graded_essay_permitted','permitted'),(347,'message','message_provider_mod_lesson_graded_essay_loggedin','email,airnotifier'),(348,'message','message_provider_mod_lesson_graded_essay_loggedoff','email,airnotifier'),(349,'message','airnotifier_provider_mod_quiz_submission_permitted','permitted'),(350,'message','airnotifier_provider_mod_quiz_confirmation_permitted','permitted'),(351,'message','message_provider_mod_quiz_confirmation_loggedin','email,airnotifier'),(352,'message','message_provider_mod_quiz_confirmation_loggedoff','email,airnotifier'),(353,'message','airnotifier_provider_mod_quiz_attempt_overdue_permitted','permitted'),(354,'message','message_provider_mod_quiz_attempt_overdue_loggedin','email,airnotifier'),(355,'message','message_provider_mod_quiz_attempt_overdue_loggedoff','email,airnotifier'),(356,'message','airnotifier_provider_moodle_notices_permitted','permitted'),(357,'message','airnotifier_provider_moodle_errors_permitted','permitted'),(358,'message','airnotifier_provider_moodle_availableupdate_permitted','permitted'),(359,'message','airnotifier_provider_moodle_instantmessage_permitted','permitted'),(360,'message','airnotifier_provider_moodle_backup_permitted','permitted'),(361,'message','airnotifier_provider_moodle_courserequested_permitted','permitted'),(362,'message','airnotifier_provider_moodle_courserequestapproved_permitted','permitted'),(363,'message','message_provider_moodle_courserequestapproved_loggedin','email,airnotifier'),(364,'message','message_provider_moodle_courserequestapproved_loggedoff','email,airnotifier'),(365,'message','airnotifier_provider_moodle_courserequestrejected_permitted','permitted'),(366,'message','message_provider_moodle_courserequestrejected_loggedin','email,airnotifier'),(367,'message','message_provider_moodle_courserequestrejected_loggedoff','email,airnotifier'),(368,'message','airnotifier_provider_moodle_coursecompleted_permitted','permitted'),(369,'message','airnotifier_provider_moodle_badgerecipientnotice_permitted','permitted'),(370,'message','message_provider_moodle_badgerecipientnotice_loggedin','popup,airnotifier'),(371,'message','message_provider_moodle_badgerecipientnotice_loggedoff','popup,email,airnotifier'),(372,'message','airnotifier_provider_moodle_badgecreatornotice_permitted','permitted'),(373,'message','airnotifier_provider_moodle_competencyplancomment_permitted','permitted'),(374,'message','airnotifier_provider_moodle_competencyusercompcomment_permitted','permitted'),(375,'message','airnotifier_provider_moodle_insights_permitted','permitted'),(376,'message','message_provider_moodle_insights_loggedin','popup,airnotifier'),(377,'message','message_provider_moodle_insights_loggedoff','popup,email,airnotifier'),(378,'message','airnotifier_provider_moodle_messagecontactrequests_permitted','permitted'),(379,'message','message_provider_moodle_messagecontactrequests_loggedin','airnotifier'),(380,'message','message_provider_moodle_messagecontactrequests_loggedoff','email,airnotifier'),(381,'message','airnotifier_provider_moodle_asyncbackupnotification_permitted','permitted'),(382,'message','airnotifier_provider_moodle_gradenotifications_permitted','permitted'),(383,'message','airnotifier_provider_moodle_infected_permitted','permitted'),(384,'message_email','version','2020110900'),(386,'message','email_provider_enrol_flatfile_flatfile_enrolment_permitted','permitted'),(387,'message','message_provider_enrol_flatfile_flatfile_enrolment_loggedin','email'),(388,'message','message_provider_enrol_flatfile_flatfile_enrolment_loggedoff','email'),(389,'message','email_provider_enrol_imsenterprise_imsenterprise_enrolment_permitted','permitted'),(390,'message','message_provider_enrol_imsenterprise_imsenterprise_enrolment_loggedin','email'),(391,'message','message_provider_enrol_imsenterprise_imsenterprise_enrolment_loggedoff','email'),(392,'message','email_provider_enrol_manual_expiry_notification_permitted','permitted'),(393,'message','message_provider_enrol_manual_expiry_notification_loggedin','email'),(394,'message','message_provider_enrol_manual_expiry_notification_loggedoff','email'),(395,'message','email_provider_enrol_paypal_paypal_enrolment_permitted','permitted'),(396,'message','message_provider_enrol_paypal_paypal_enrolment_loggedin','email'),(397,'message','message_provider_enrol_paypal_paypal_enrolment_loggedoff','email'),(398,'message','email_provider_enrol_self_expiry_notification_permitted','permitted'),(399,'message','message_provider_enrol_self_expiry_notification_loggedin','email'),(400,'message','message_provider_enrol_self_expiry_notification_loggedoff','email'),(401,'message','email_provider_mod_assign_assign_notification_permitted','permitted'),(402,'message','message_provider_mod_assign_assign_notification_loggedin','email'),(403,'message','message_provider_mod_assign_assign_notification_loggedoff','email'),(404,'message','email_provider_mod_assignment_assignment_updates_permitted','permitted'),(405,'message','message_provider_mod_assignment_assignment_updates_loggedin','email'),(406,'message','message_provider_mod_assignment_assignment_updates_loggedoff','email'),(407,'message','email_provider_mod_feedback_submission_permitted','permitted'),(408,'message','message_provider_mod_feedback_submission_loggedin','email'),(409,'message','message_provider_mod_feedback_submission_loggedoff','email'),(410,'message','email_provider_mod_feedback_message_permitted','permitted'),(411,'message','message_provider_mod_feedback_message_loggedin','email'),(412,'message','message_provider_mod_feedback_message_loggedoff','email'),(413,'message','email_provider_mod_forum_posts_permitted','permitted'),(414,'message','email_provider_mod_forum_digests_permitted','permitted'),(415,'message','message_provider_mod_forum_digests_loggedin','email'),(416,'message','message_provider_mod_forum_digests_loggedoff','email'),(417,'message','email_provider_mod_lesson_graded_essay_permitted','permitted'),(418,'message','email_provider_mod_quiz_submission_permitted','permitted'),(419,'message','message_provider_mod_quiz_submission_loggedin','email'),(420,'message','message_provider_mod_quiz_submission_loggedoff','email'),(421,'message','email_provider_mod_quiz_confirmation_permitted','permitted'),(422,'message','email_provider_mod_quiz_attempt_overdue_permitted','permitted'),(423,'message','email_provider_moodle_notices_permitted','permitted'),(424,'message','message_provider_moodle_notices_loggedin','email'),(425,'message','message_provider_moodle_notices_loggedoff','email'),(426,'message','email_provider_moodle_errors_permitted','permitted'),(427,'message','message_provider_moodle_errors_loggedin','email'),(428,'message','message_provider_moodle_errors_loggedoff','email'),(429,'message','email_provider_moodle_availableupdate_permitted','permitted'),(430,'message','message_provider_moodle_availableupdate_loggedin','email'),(431,'message','message_provider_moodle_availableupdate_loggedoff','email'),(432,'message','email_provider_moodle_instantmessage_permitted','permitted'),(433,'message','message_provider_moodle_instantmessage_loggedoff','popup,email'),(434,'message','email_provider_moodle_backup_permitted','permitted'),(435,'message','message_provider_moodle_backup_loggedin','email'),(436,'message','message_provider_moodle_backup_loggedoff','email'),(437,'message','email_provider_moodle_courserequested_permitted','permitted'),(438,'message','message_provider_moodle_courserequested_loggedin','email'),(439,'message','message_provider_moodle_courserequested_loggedoff','email'),(440,'message','email_provider_moodle_courserequestapproved_permitted','permitted'),(441,'message','email_provider_moodle_courserequestrejected_permitted','permitted'),(442,'message','email_provider_moodle_coursecompleted_permitted','permitted'),(443,'message','message_provider_moodle_coursecompleted_loggedin','email'),(444,'message','message_provider_moodle_coursecompleted_loggedoff','email'),(445,'message','email_provider_moodle_badgerecipientnotice_permitted','permitted'),(446,'message','email_provider_moodle_badgecreatornotice_permitted','permitted'),(447,'message','message_provider_moodle_badgecreatornotice_loggedoff','email'),(448,'message','email_provider_moodle_competencyplancomment_permitted','permitted'),(449,'message','message_provider_moodle_competencyplancomment_loggedin','email'),(450,'message','message_provider_moodle_competencyplancomment_loggedoff','email'),(451,'message','email_provider_moodle_competencyusercompcomment_permitted','permitted'),(452,'message','message_provider_moodle_competencyusercompcomment_loggedin','email'),(453,'message','message_provider_moodle_competencyusercompcomment_loggedoff','email'),(454,'message','email_provider_moodle_insights_permitted','permitted'),(455,'message','email_provider_moodle_messagecontactrequests_permitted','permitted'),(456,'message','email_provider_moodle_asyncbackupnotification_permitted','permitted'),(457,'message','message_provider_moodle_asyncbackupnotification_loggedoff','popup,email'),(458,'message','email_provider_moodle_gradenotifications_permitted','permitted'),(459,'message','message_provider_moodle_gradenotifications_loggedoff','popup,email'),(460,'message','email_provider_moodle_infected_permitted','permitted'),(461,'message','message_provider_moodle_infected_loggedin','email'),(462,'message','message_provider_moodle_infected_loggedoff','email'),(463,'message_jabber','version','2020110900'),(465,'message','jabber_provider_enrol_flatfile_flatfile_enrolment_permitted','permitted'),(466,'message','jabber_provider_enrol_imsenterprise_imsenterprise_enrolment_permitted','permitted'),(467,'message','jabber_provider_enrol_manual_expiry_notification_permitted','permitted'),(468,'message','jabber_provider_enrol_paypal_paypal_enrolment_permitted','permitted'),(469,'message','jabber_provider_enrol_self_expiry_notification_permitted','permitted'),(470,'message','jabber_provider_mod_assign_assign_notification_permitted','permitted'),(471,'message','jabber_provider_mod_assignment_assignment_updates_permitted','permitted'),(472,'message','jabber_provider_mod_feedback_submission_permitted','permitted'),(473,'message','jabber_provider_mod_feedback_message_permitted','permitted'),(474,'message','jabber_provider_mod_forum_posts_permitted','permitted'),(475,'message','jabber_provider_mod_forum_digests_permitted','permitted'),(476,'message','jabber_provider_mod_lesson_graded_essay_permitted','permitted'),(477,'message','jabber_provider_mod_quiz_submission_permitted','permitted'),(478,'message','jabber_provider_mod_quiz_confirmation_permitted','permitted'),(479,'message','jabber_provider_mod_quiz_attempt_overdue_permitted','permitted'),(480,'message','jabber_provider_moodle_notices_permitted','permitted'),(481,'message','jabber_provider_moodle_errors_permitted','permitted'),(482,'message','jabber_provider_moodle_availableupdate_permitted','permitted'),(483,'message','jabber_provider_moodle_instantmessage_permitted','permitted'),(484,'message','jabber_provider_moodle_backup_permitted','permitted'),(485,'message','jabber_provider_moodle_courserequested_permitted','permitted'),(486,'message','jabber_provider_moodle_courserequestapproved_permitted','permitted'),(487,'message','jabber_provider_moodle_courserequestrejected_permitted','permitted'),(488,'message','jabber_provider_moodle_coursecompleted_permitted','permitted'),(489,'message','jabber_provider_moodle_badgerecipientnotice_permitted','permitted'),(490,'message','jabber_provider_moodle_badgecreatornotice_permitted','permitted'),(491,'message','jabber_provider_moodle_competencyplancomment_permitted','permitted'),(492,'message','jabber_provider_moodle_competencyusercompcomment_permitted','permitted'),(493,'message','jabber_provider_moodle_insights_permitted','permitted'),(494,'message','jabber_provider_moodle_messagecontactrequests_permitted','permitted'),(495,'message','jabber_provider_moodle_asyncbackupnotification_permitted','permitted'),(496,'message','jabber_provider_moodle_gradenotifications_permitted','permitted'),(497,'message','jabber_provider_moodle_infected_permitted','permitted'),(498,'message_popup','version','2020110900'),(500,'message','popup_provider_enrol_flatfile_flatfile_enrolment_permitted','permitted'),(501,'message','popup_provider_enrol_imsenterprise_imsenterprise_enrolment_permitted','permitted'),(502,'message','popup_provider_enrol_manual_expiry_notification_permitted','permitted'),(503,'message','popup_provider_enrol_paypal_paypal_enrolment_permitted','permitted'),(504,'message','popup_provider_enrol_self_expiry_notification_permitted','permitted'),(505,'message','popup_provider_mod_assign_assign_notification_permitted','permitted'),(506,'message','popup_provider_mod_assignment_assignment_updates_permitted','permitted'),(507,'message','popup_provider_mod_feedback_submission_permitted','permitted'),(508,'message','popup_provider_mod_feedback_message_permitted','permitted'),(509,'message','popup_provider_mod_forum_posts_permitted','permitted'),(510,'message','popup_provider_mod_forum_digests_permitted','permitted'),(511,'message','popup_provider_mod_lesson_graded_essay_permitted','permitted'),(512,'message','popup_provider_mod_quiz_submission_permitted','permitted'),(513,'message','popup_provider_mod_quiz_confirmation_permitted','permitted'),(514,'message','popup_provider_mod_quiz_attempt_overdue_permitted','permitted'),(515,'message','popup_provider_moodle_notices_permitted','permitted'),(516,'message','popup_provider_moodle_errors_permitted','permitted'),(517,'message','popup_provider_moodle_availableupdate_permitted','permitted'),(518,'message','popup_provider_moodle_instantmessage_permitted','permitted'),(519,'message','message_provider_moodle_instantmessage_loggedin','popup'),(520,'message','popup_provider_moodle_backup_permitted','permitted'),(521,'message','popup_provider_moodle_courserequested_permitted','permitted'),(522,'message','popup_provider_moodle_courserequestapproved_permitted','permitted'),(523,'message','popup_provider_moodle_courserequestrejected_permitted','permitted'),(524,'message','popup_provider_moodle_coursecompleted_permitted','permitted'),(525,'message','popup_provider_moodle_badgerecipientnotice_permitted','permitted'),(526,'message','popup_provider_moodle_badgecreatornotice_permitted','permitted'),(527,'message','popup_provider_moodle_competencyplancomment_permitted','permitted'),(528,'message','popup_provider_moodle_competencyusercompcomment_permitted','permitted'),(529,'message','popup_provider_moodle_insights_permitted','permitted'),(530,'message','popup_provider_moodle_messagecontactrequests_permitted','permitted'),(531,'message','popup_provider_moodle_asyncbackupnotification_permitted','permitted'),(532,'message','message_provider_moodle_asyncbackupnotification_loggedin','popup'),(533,'message','popup_provider_moodle_gradenotifications_permitted','permitted'),(534,'message','message_provider_moodle_gradenotifications_loggedin','popup'),(535,'message','popup_provider_moodle_infected_permitted','permitted'),(536,'block_activity_modules','version','2020110900'),(537,'block_activity_results','version','2020110900'),(538,'block_admin_bookmarks','version','2020110900'),(539,'block_badges','version','2020110900'),(540,'block_blog_menu','version','2020110900'),(541,'block_blog_recent','version','2020110900'),(542,'block_blog_tags','version','2020110900'),(543,'block_calendar_month','version','2020110900'),(544,'block_calendar_upcoming','version','2020110900'),(545,'block_comments','version','2020110900'),(546,'block_completionstatus','version','2020110900'),(547,'block_course_list','version','2020110900'),(548,'block_course_summary','version','2020110900'),(549,'block_feedback','version','2020110900'),(551,'block_globalsearch','version','2020110900'),(552,'block_glossary_random','version','2020110900'),(553,'block_html','version','2020110900'),(554,'block_login','version','2020110900'),(555,'block_lp','version','2020110900'),(556,'block_mentees','version','2020110900'),(557,'block_mnet_hosts','version','2020110900'),(558,'block_myoverview','version','2020110900'),(559,'block_myprofile','version','2020110900'),(560,'block_navigation','version','2020110900'),(561,'block_news_items','version','2020110900'),(562,'block_online_users','version','2020110900'),(563,'block_private_files','version','2020110900'),(564,'block_quiz_results','version','2020110900'),(566,'block_recent_activity','version','2020110900'),(567,'block_recentlyaccessedcourses','version','2020110900'),(569,'block_recentlyaccesseditems','version','2020110900'),(570,'block_rss_client','version','2020110900'),(571,'block_search_forums','version','2020110900'),(572,'block_section_links','version','2020110900'),(573,'block_selfcompletion','version','2020110900'),(574,'block_settings','version','2020110900'),(575,'block_site_main_menu','version','2020110900'),(576,'block_social_activities','version','2020110900'),(577,'block_starredcourses','version','2020110900'),(578,'block_tag_flickr','version','2020110900'),(579,'block_tag_youtube','version','2020110901'),(581,'block_tags','version','2020110900'),(582,'block_timeline','version','2020110900'),(584,'media_html5audio','version','2020110900'),(585,'media_html5video','version','2020110900'),(586,'media_swf','version','2020110900'),(587,'media_videojs','version','2020110900'),(588,'media_vimeo','version','2020110900'),(589,'media_youtube','version','2020110900'),(590,'filter_activitynames','version','2020110900'),(592,'filter_algebra','version','2020110900'),(593,'filter_censor','version','2020110900'),(594,'filter_data','version','2020110900'),(596,'filter_displayh5p','version','2020110900'),(598,'filter_emailprotect','version','2020110900'),(599,'filter_emoticon','version','2020110900'),(601,'filter_glossary','version','2020110900'),(603,'filter_mathjaxloader','version','2020110900'),(605,'filter_mediaplugin','version','2020110900'),(607,'filter_multilang','version','2020110900'),(608,'filter_tex','version','2020110900'),(610,'filter_tidy','version','2020110900'),(611,'filter_urltolink','version','2020110900'),(613,'editor_atto','version','2020110900'),(615,'editor_textarea','version','2020110900'),(616,'editor_tinymce','version','2020110900'),(617,'format_singleactivity','version','2020110900'),(618,'format_social','version','2020110900'),(619,'format_topics','version','2020110900'),(620,'format_weeks','version','2020110900'),(621,'dataformat_csv','version','2020110900'),(622,'dataformat_excel','version','2020110900'),(623,'dataformat_html','version','2020110900'),(624,'dataformat_json','version','2020110900'),(625,'dataformat_ods','version','2020110900'),(626,'dataformat_pdf','version','2020110900'),(627,'profilefield_checkbox','version','2020110900'),(628,'profilefield_datetime','version','2020110900'),(629,'profilefield_menu','version','2020110900'),(630,'profilefield_text','version','2020110900'),(631,'profilefield_textarea','version','2020110900'),(632,'report_backups','version','2020110900'),(633,'report_competency','version','2020110900'),(634,'report_completion','version','2020110900'),(636,'report_configlog','version','2020110900'),(637,'report_courseoverview','version','2020110900'),(638,'report_eventlist','version','2020110900'),(639,'report_infectedfiles','version','2020110900'),(640,'report_insights','version','2020110900'),(641,'report_log','version','2020110900'),(643,'report_loglive','version','2020110900'),(644,'report_outline','version','2020110900'),(646,'report_participation','version','2020110900'),(648,'report_performance','version','2020110900'),(649,'report_progress','version','2020110900'),(651,'report_questioninstances','version','2020110900'),(652,'report_security','version','2020110900'),(653,'report_stats','version','2020110900'),(655,'report_status','version','2020110900'),(656,'report_usersessions','version','2020110900'),(657,'gradeexport_ods','version','2020110900'),(658,'gradeexport_txt','version','2020110900'),(659,'gradeexport_xls','version','2020110900'),(660,'gradeexport_xml','version','2020110900'),(661,'gradeimport_csv','version','2020110900'),(662,'gradeimport_direct','version','2020110900'),(663,'gradeimport_xml','version','2020110900'),(664,'gradereport_grader','version','2020110900'),(665,'gradereport_history','version','2020110900'),(666,'gradereport_outcomes','version','2020110900'),(667,'gradereport_overview','version','2020110900'),(668,'gradereport_singleview','version','2020110900'),(669,'gradereport_user','version','2020110900'),(670,'gradingform_guide','version','2020110900'),(671,'gradingform_rubric','version','2020110900'),(672,'mlbackend_php','version','2020110900'),(673,'mlbackend_python','version','2020110900'),(674,'mnetservice_enrol','version','2020110900'),(675,'webservice_rest','version','2020110900'),(676,'webservice_soap','version','2020110900'),(677,'webservice_xmlrpc','version','2020110900'),(678,'repository_areafiles','version','2020110900'),(680,'areafiles','enablecourseinstances','0'),(681,'areafiles','enableuserinstances','0'),(682,'repository_boxnet','version','2020110900'),(683,'repository_contentbank','version','2020110900'),(685,'contentbank','enablecourseinstances','0'),(686,'contentbank','enableuserinstances','0'),(687,'repository_coursefiles','version','2020110900'),(688,'repository_dropbox','version','2020110900'),(689,'repository_equella','version','2020110900'),(690,'repository_filesystem','version','2020110900'),(691,'repository_flickr','version','2020110900'),(692,'repository_flickr_public','version','2020110900'),(693,'repository_googledocs','version','2020110900'),(694,'repository_local','version','2020110900'),(696,'local','enablecourseinstances','0'),(697,'local','enableuserinstances','0'),(698,'repository_merlot','version','2020110900'),(699,'repository_nextcloud','version','2020110900'),(700,'repository_onedrive','version','2020110900'),(701,'repository_picasa','version','2020110900'),(702,'repository_recent','version','2020110900'),(704,'recent','enablecourseinstances','0'),(705,'recent','enableuserinstances','0'),(706,'repository_s3','version','2020110900'),(707,'repository_skydrive','version','2020110900'),(708,'repository_upload','version','2020110900'),(710,'upload','enablecourseinstances','0'),(711,'upload','enableuserinstances','0'),(712,'repository_url','version','2020110900'),(714,'url','enablecourseinstances','0'),(715,'url','enableuserinstances','0'),(716,'repository_user','version','2020110900'),(718,'user','enablecourseinstances','0'),(719,'user','enableuserinstances','0'),(720,'repository_webdav','version','2020110900'),(721,'repository_wikimedia','version','2020110900'),(723,'wikimedia','enablecourseinstances','0'),(724,'wikimedia','enableuserinstances','0'),(725,'repository_youtube','version','2020110900'),(727,'portfolio_boxnet','version','2020110900'),(728,'portfolio_download','version','2020110900'),(729,'portfolio_flickr','version','2020110900'),(730,'portfolio_googledocs','version','2020110900'),(731,'portfolio_mahara','version','2020110900'),(732,'portfolio_picasa','version','2020110900'),(733,'search_simpledb','version','2020110900'),(735,'search_solr','version','2020110900'),(736,'qbehaviour_adaptive','version','2020110900'),(737,'qbehaviour_adaptivenopenalty','version','2020110900'),(738,'qbehaviour_deferredcbm','version','2020110900'),(739,'qbehaviour_deferredfeedback','version','2020110900'),(740,'qbehaviour_immediatecbm','version','2020110900'),(741,'qbehaviour_immediatefeedback','version','2020110900'),(742,'qbehaviour_informationitem','version','2020110900'),(743,'qbehaviour_interactive','version','2020110900'),(744,'qbehaviour_interactivecountback','version','2020110900'),(745,'qbehaviour_manualgraded','version','2020110900'),(747,'question','disabledbehaviours','manualgraded'),(748,'qbehaviour_missing','version','2020110900'),(749,'qformat_aiken','version','2020110900'),(750,'qformat_blackboard_six','version','2020110900'),(751,'qformat_examview','version','2020110900'),(752,'qformat_gift','version','2020110900'),(753,'qformat_missingword','version','2020110900'),(754,'qformat_multianswer','version','2020110900'),(755,'qformat_webct','version','2020110900'),(756,'qformat_xhtml','version','2020110900'),(757,'qformat_xml','version','2020110900'),(758,'tool_analytics','version','2020110900'),(759,'tool_availabilityconditions','version','2020110900'),(760,'tool_behat','version','2020110900'),(761,'tool_capability','version','2020110900'),(762,'tool_cohortroles','version','2020110900'),(763,'tool_customlang','version','2020110900'),(765,'tool_dataprivacy','version','2020110900'),(766,'message','airnotifier_provider_tool_dataprivacy_contactdataprotectionofficer_permitted','permitted'),(767,'message','email_provider_tool_dataprivacy_contactdataprotectionofficer_permitted','permitted'),(768,'message','jabber_provider_tool_dataprivacy_contactdataprotectionofficer_permitted','permitted'),(769,'message','popup_provider_tool_dataprivacy_contactdataprotectionofficer_permitted','permitted'),(770,'message','message_provider_tool_dataprivacy_contactdataprotectionofficer_loggedin','email,popup'),(771,'message','message_provider_tool_dataprivacy_contactdataprotectionofficer_loggedoff','email,popup'),(772,'message','airnotifier_provider_tool_dataprivacy_datarequestprocessingresults_permitted','permitted'),(773,'message','email_provider_tool_dataprivacy_datarequestprocessingresults_permitted','permitted'),(774,'message','jabber_provider_tool_dataprivacy_datarequestprocessingresults_permitted','permitted'),(775,'message','popup_provider_tool_dataprivacy_datarequestprocessingresults_permitted','permitted'),(776,'message','message_provider_tool_dataprivacy_datarequestprocessingresults_loggedin','email,popup'),(777,'message','message_provider_tool_dataprivacy_datarequestprocessingresults_loggedoff','email,popup'),(778,'message','airnotifier_provider_tool_dataprivacy_notifyexceptions_permitted','permitted'),(779,'message','email_provider_tool_dataprivacy_notifyexceptions_permitted','permitted'),(780,'message','jabber_provider_tool_dataprivacy_notifyexceptions_permitted','permitted'),(781,'message','popup_provider_tool_dataprivacy_notifyexceptions_permitted','permitted'),(782,'message','message_provider_tool_dataprivacy_notifyexceptions_loggedin','email'),(783,'message','message_provider_tool_dataprivacy_notifyexceptions_loggedoff','email'),(784,'tool_dbtransfer','version','2020110900'),(785,'tool_filetypes','version','2020110900'),(786,'tool_generator','version','2020110900'),(787,'tool_health','version','2020110900'),(788,'tool_httpsreplace','version','2020110900'),(789,'tool_innodb','version','2020110900'),(790,'tool_installaddon','version','2020110900'),(791,'tool_langimport','version','2020110900'),(792,'tool_licensemanager','version','2020110900'),(793,'tool_log','version','2020110900'),(795,'tool_log','enabled_stores','logstore_standard'),(796,'tool_lp','version','2020110900'),(797,'tool_lpimportcsv','version','2020110900'),(798,'tool_lpmigrate','version','2020110900'),(799,'tool_messageinbound','version','2020110900'),(800,'message','airnotifier_provider_tool_messageinbound_invalidrecipienthandler_permitted','permitted'),(801,'message','email_provider_tool_messageinbound_invalidrecipienthandler_permitted','permitted'),(802,'message','jabber_provider_tool_messageinbound_invalidrecipienthandler_permitted','permitted'),(803,'message','popup_provider_tool_messageinbound_invalidrecipienthandler_permitted','permitted'),(804,'message','message_provider_tool_messageinbound_invalidrecipienthandler_loggedin','email'),(805,'message','message_provider_tool_messageinbound_invalidrecipienthandler_loggedoff','email'),(806,'message','airnotifier_provider_tool_messageinbound_messageprocessingerror_permitted','permitted'),(807,'message','email_provider_tool_messageinbound_messageprocessingerror_permitted','permitted'),(808,'message','jabber_provider_tool_messageinbound_messageprocessingerror_permitted','permitted'),(809,'message','popup_provider_tool_messageinbound_messageprocessingerror_permitted','permitted'),(810,'message','message_provider_tool_messageinbound_messageprocessingerror_loggedin','email'),(811,'message','message_provider_tool_messageinbound_messageprocessingerror_loggedoff','email'),(812,'message','airnotifier_provider_tool_messageinbound_messageprocessingsuccess_permitted','permitted'),(813,'message','email_provider_tool_messageinbound_messageprocessingsuccess_permitted','permitted'),(814,'message','jabber_provider_tool_messageinbound_messageprocessingsuccess_permitted','permitted'),(815,'message','popup_provider_tool_messageinbound_messageprocessingsuccess_permitted','permitted'),(816,'message','message_provider_tool_messageinbound_messageprocessingsuccess_loggedin','email'),(817,'message','message_provider_tool_messageinbound_messageprocessingsuccess_loggedoff','email'),(818,'tool_mobile','version','2020110900'),(819,'tool_monitor','version','2020110900'),(820,'message','airnotifier_provider_tool_monitor_notification_permitted','permitted'),(821,'message','email_provider_tool_monitor_notification_permitted','permitted'),(822,'message','jabber_provider_tool_monitor_notification_permitted','permitted'),(823,'message','popup_provider_tool_monitor_notification_permitted','permitted'),(824,'message','message_provider_tool_monitor_notification_loggedin','email'),(825,'message','message_provider_tool_monitor_notification_loggedoff','email'),(826,'tool_moodlenet','version','2020110900'),(827,'tool_multilangupgrade','version','2020110900'),(828,'tool_oauth2','version','2020110900'),(829,'tool_phpunit','version','2020110900'),(830,'tool_policy','version','2020110900'),(831,'tool_profiling','version','2020110900'),(832,'tool_recyclebin','version','2020110900'),(833,'tool_replace','version','2020110900'),(834,'tool_spamcleaner','version','2020110900'),(835,'tool_task','version','2020110900'),(836,'tool_templatelibrary','version','2020110900'),(837,'tool_unsuproles','version','2020110900'),(839,'tool_uploadcourse','version','2020110900'),(840,'tool_uploaduser','version','2020110900'),(841,'tool_usertours','version','2020110900'),(843,'tool_xmldb','version','2020110900'),(844,'cachestore_apcu','version','2020110900'),(845,'cachestore_file','version','2020110900'),(846,'cachestore_memcached','version','2020110900'),(847,'cachestore_mongodb','version','2020110900'),(848,'cachestore_redis','version','2020110900'),(849,'cachestore_session','version','2020110900'),(850,'cachestore_static','version','2020110900'),(851,'cachelock_file','version','2020110900'),(852,'fileconverter_googledrive','version','2020110900'),(853,'fileconverter_unoconv','version','2020110900'),(855,'contenttype_h5p','version','2020110900'),(856,'theme_boost','version','2020110900'),(857,'theme_classic','version','2020110900'),(858,'local_chat_attachments','version','10026'),(859,'h5plib_v124','version','2020110900'),(860,'paygw_paypal','version','2020110901'),(862,'assignsubmission_comments','version','2020110900'),(864,'assignsubmission_file','sortorder','1'),(865,'assignsubmission_comments','sortorder','2'),(866,'assignsubmission_onlinetext','sortorder','0'),(867,'assignsubmission_file','version','2020110900'),(868,'assignsubmission_onlinetext','version','2020110900'),(870,'assignfeedback_comments','version','2020110900'),(872,'assignfeedback_comments','sortorder','0'),(873,'assignfeedback_editpdf','sortorder','1'),(874,'assignfeedback_file','sortorder','3'),(875,'assignfeedback_offline','sortorder','2'),(876,'assignfeedback_editpdf','version','2020110900'),(878,'assignfeedback_file','version','2020110900'),(880,'assignfeedback_offline','version','2020110900'),(881,'assignment_offline','version','2020110900'),(882,'assignment_online','version','2020110900'),(883,'assignment_upload','version','2020110900'),(884,'assignment_uploadsingle','version','2020110900'),(885,'booktool_exportimscp','version','2020110900'),(886,'booktool_importhtml','version','2020110900'),(887,'booktool_print','version','2020110900'),(888,'datafield_checkbox','version','2020110900'),(889,'datafield_date','version','2020110900'),(890,'datafield_file','version','2020110900'),(891,'datafield_latlong','version','2020110900'),(892,'datafield_menu','version','2020110900'),(893,'datafield_multimenu','version','2020110900'),(894,'datafield_number','version','2020110900'),(895,'datafield_picture','version','2020110900'),(896,'datafield_radiobutton','version','2020110900'),(897,'datafield_text','version','2020110900'),(898,'datafield_textarea','version','2020110900'),(899,'datafield_url','version','2020110900'),(900,'datapreset_imagegallery','version','2020110900'),(901,'forumreport_summary','version','2020110900'),(902,'ltiservice_basicoutcomes','version','2020110900'),(903,'ltiservice_gradebookservices','version','2020110900'),(904,'ltiservice_memberships','version','2020110900'),(905,'ltiservice_profile','version','2020110900'),(906,'ltiservice_toolproxy','version','2020110900'),(907,'ltiservice_toolsettings','version','2020110900'),(908,'quiz_grading','version','2020110900'),(910,'quiz_overview','version','2020110900'),(912,'quiz_responses','version','2020110900'),(914,'quiz_statistics','version','2020110900'),(916,'quizaccess_delaybetweenattempts','version','2020110900'),(917,'quizaccess_ipaddress','version','2020110900'),(918,'quizaccess_numattempts','version','2020110900'),(919,'quizaccess_offlineattempts','version','2020110900'),(920,'quizaccess_openclosedate','version','2020110900'),(921,'quizaccess_password','version','2020110900'),(922,'quizaccess_seb','version','2020110900'),(924,'quizaccess_securewindow','version','2020110900'),(925,'quizaccess_timelimit','version','2020110900'),(926,'scormreport_basic','version','2020110900'),(927,'scormreport_graphs','version','2020110900'),(928,'scormreport_interactions','version','2020110900'),(929,'scormreport_objectives','version','2020110900'),(930,'workshopform_accumulative','version','2020110900'),(932,'workshopform_comments','version','2020110900'),(934,'workshopform_numerrors','version','2020110900'),(936,'workshopform_rubric','version','2020110900'),(938,'workshopallocation_manual','version','2020110900'),(939,'workshopallocation_random','version','2020110900'),(940,'workshopallocation_scheduled','version','2020110900'),(941,'workshopeval_best','version','2020110900'),(942,'atto_accessibilitychecker','version','2020110900'),(943,'atto_accessibilityhelper','version','2020110900'),(944,'atto_align','version','2020110900'),(945,'atto_backcolor','version','2020110900'),(946,'atto_bold','version','2020110900'),(947,'atto_charmap','version','2020110900'),(948,'atto_clear','version','2020110900'),(949,'atto_collapse','version','2020110900'),(950,'atto_emojipicker','version','2020110900'),(951,'atto_emoticon','version','2020110900'),(952,'atto_equation','version','2020110900'),(953,'atto_fontcolor','version','2020110900'),(954,'atto_h5p','version','2020110900'),(955,'atto_html','version','2020110900'),(956,'atto_image','version','2020110900'),(957,'atto_indent','version','2020110900'),(958,'atto_italic','version','2020110900'),(959,'atto_link','version','2020110900'),(960,'atto_managefiles','version','2020110900'),(961,'atto_media','version','2020110900'),(962,'atto_noautolink','version','2020110900'),(963,'atto_orderedlist','version','2020110900'),(964,'atto_recordrtc','version','2020110900'),(965,'atto_rtl','version','2020110900'),(966,'atto_strike','version','2020110900'),(967,'atto_subscript','version','2020110900'),(968,'atto_superscript','version','2020110900'),(969,'atto_table','version','2020110900'),(970,'atto_title','version','2020110900'),(971,'atto_underline','version','2020110900'),(972,'atto_undo','version','2020110900'),(973,'atto_unorderedlist','version','2020110900'),(974,'tinymce_ctrlhelp','version','2020110900'),(975,'tinymce_managefiles','version','2020110900'),(976,'tinymce_moodleemoticon','version','2020110900'),(977,'tinymce_moodleimage','version','2020110900'),(978,'tinymce_moodlemedia','version','2020110900'),(979,'tinymce_moodlenolink','version','2020110900'),(980,'tinymce_pdw','version','2020110900'),(981,'tinymce_spellchecker','version','2020110900'),(983,'tinymce_wrap','version','2020110900'),(984,'logstore_database','version','2020110900'),(985,'logstore_legacy','version','2020110900'),(986,'logstore_standard','version','2020110900'),(987,'tool_dataprivacy','contactdataprotectionofficer','0'),(988,'tool_dataprivacy','automaticdataexportapproval','0'),(989,'tool_dataprivacy','automaticdatadeletionapproval','0'),(990,'tool_dataprivacy','automaticdeletionrequests','1'),(991,'tool_dataprivacy','privacyrequestexpiry','604800'),(992,'tool_dataprivacy','requireallenddatesforuserdeletion','1'),(993,'tool_dataprivacy','showdataretentionsummary','1'),(994,'tool_log','exportlog','1'),(995,'analytics','logstore','logstore_standard'),(996,'assign','feedback_plugin_for_gradebook','assignfeedback_comments'),(997,'assign','showrecentsubmissions','0'),(998,'assign','submissionreceipts','1'),(999,'assign','submissionstatement','This submission is my own work, except where I have acknowledged the use of the works of other people.'),(1000,'assign','submissionstatementteamsubmission','This submission is the work of my group, except where we have acknowledged the use of the works of other people.'),(1001,'assign','submissionstatementteamsubmissionallsubmit','This submission is my own work as a group member, except where I have acknowledged the use of the works of other people.'),(1002,'assign','maxperpage','-1'),(1003,'assign','alwaysshowdescription','1'),(1004,'assign','alwaysshowdescription_adv',''),(1005,'assign','alwaysshowdescription_locked',''),(1006,'assign','allowsubmissionsfromdate','0'),(1007,'assign','allowsubmissionsfromdate_enabled','1'),(1008,'assign','allowsubmissionsfromdate_adv',''),(1009,'assign','duedate','604800'),(1010,'assign','duedate_enabled','1'),(1011,'assign','duedate_adv',''),(1012,'assign','cutoffdate','1209600'),(1013,'assign','cutoffdate_enabled',''),(1014,'assign','cutoffdate_adv',''),(1015,'assign','gradingduedate','1209600'),(1016,'assign','gradingduedate_enabled','1'),(1017,'assign','gradingduedate_adv',''),(1018,'assign','submissiondrafts','0'),(1019,'assign','submissiondrafts_adv',''),(1020,'assign','submissiondrafts_locked',''),(1021,'assign','requiresubmissionstatement','0'),(1022,'assign','requiresubmissionstatement_adv',''),(1023,'assign','requiresubmissionstatement_locked',''),(1024,'assign','attemptreopenmethod','none'),(1025,'assign','attemptreopenmethod_adv',''),(1026,'assign','attemptreopenmethod_locked',''),(1027,'assign','maxattempts','-1'),(1028,'assign','maxattempts_adv',''),(1029,'assign','maxattempts_locked',''),(1030,'assign','teamsubmission','0'),(1031,'assign','teamsubmission_adv',''),(1032,'assign','teamsubmission_locked',''),(1033,'assign','preventsubmissionnotingroup','0'),(1034,'assign','preventsubmissionnotingroup_adv',''),(1035,'assign','preventsubmissionnotingroup_locked',''),(1036,'assign','requireallteammemberssubmit','0'),(1037,'assign','requireallteammemberssubmit_adv',''),(1038,'assign','requireallteammemberssubmit_locked',''),(1039,'assign','teamsubmissiongroupingid',''),(1040,'assign','teamsubmissiongroupingid_adv',''),(1041,'assign','sendnotifications','0'),(1042,'assign','sendnotifications_adv',''),(1043,'assign','sendnotifications_locked',''),(1044,'assign','sendlatenotifications','0'),(1045,'assign','sendlatenotifications_adv',''),(1046,'assign','sendlatenotifications_locked',''),(1047,'assign','sendstudentnotifications','1'),(1048,'assign','sendstudentnotifications_adv',''),(1049,'assign','sendstudentnotifications_locked',''),(1050,'assign','blindmarking','0'),(1051,'assign','blindmarking_adv',''),(1052,'assign','blindmarking_locked',''),(1053,'assign','hidegrader','0'),(1054,'assign','hidegrader_adv',''),(1055,'assign','hidegrader_locked',''),(1056,'assign','markingworkflow','0'),(1057,'assign','markingworkflow_adv',''),(1058,'assign','markingworkflow_locked',''),(1059,'assign','markingallocation','0'),(1060,'assign','markingallocation_adv',''),(1061,'assign','markingallocation_locked',''),(1062,'assignsubmission_file','default','1'),(1063,'assignsubmission_file','maxfiles','20'),(1064,'assignsubmission_file','filetypes',''),(1065,'assignsubmission_file','maxbytes','0'),(1066,'assignsubmission_onlinetext','default','0'),(1067,'assignfeedback_comments','default','1'),(1068,'assignfeedback_comments','inline','0'),(1069,'assignfeedback_comments','inline_adv',''),(1070,'assignfeedback_comments','inline_locked',''),(1071,'assignfeedback_editpdf','default','1'),(1072,'assignfeedback_editpdf','stamps',''),(1073,'assignfeedback_file','default','0'),(1074,'assignfeedback_offline','default','0'),(1075,'book','numberingoptions','0,1,2,3'),(1076,'book','navoptions','0,1,2'),(1077,'book','numbering','1'),(1078,'book','navstyle','1'),(1079,'resource','framesize','130'),(1080,'resource','displayoptions','0,1,4,5,6'),(1081,'resource','printintro','1'),(1082,'resource','display','0'),(1083,'resource','showsize','0'),(1084,'resource','showtype','0'),(1085,'resource','showdate','0'),(1086,'resource','popupwidth','620'),(1087,'resource','popupheight','450'),(1088,'resource','filterfiles','0'),(1089,'folder','showexpanded','1'),(1090,'folder','maxsizetodownload','0'),(1091,'imscp','keepold','1'),(1092,'imscp','keepold_adv',''),(1093,'label','dndmedia','1'),(1094,'label','dndresizewidth','400'),(1095,'label','dndresizeheight','400'),(1096,'mod_lesson','mediafile',''),(1097,'mod_lesson','mediafile_adv','1'),(1098,'mod_lesson','mediawidth','640'),(1099,'mod_lesson','mediaheight','480'),(1100,'mod_lesson','mediaclose','0'),(1101,'mod_lesson','progressbar','0'),(1102,'mod_lesson','progressbar_adv',''),(1103,'mod_lesson','ongoing','0'),(1104,'mod_lesson','ongoing_adv','1'),(1105,'mod_lesson','displayleftmenu','0'),(1106,'mod_lesson','displayleftmenu_adv',''),(1107,'mod_lesson','displayleftif','0'),(1108,'mod_lesson','displayleftif_adv','1'),(1109,'mod_lesson','slideshow','0'),(1110,'mod_lesson','slideshow_adv','1'),(1111,'mod_lesson','slideshowwidth','640'),(1112,'mod_lesson','slideshowheight','480'),(1113,'mod_lesson','slideshowbgcolor','#FFFFFF'),(1114,'mod_lesson','maxanswers','5'),(1115,'mod_lesson','maxanswers_adv','1'),(1116,'mod_lesson','defaultfeedback','0'),(1117,'mod_lesson','defaultfeedback_adv','1'),(1118,'mod_lesson','activitylink',''),(1119,'mod_lesson','activitylink_adv','1'),(1120,'mod_lesson','timelimit','0'),(1121,'mod_lesson','timelimit_adv',''),(1122,'mod_lesson','password','0'),(1123,'mod_lesson','password_adv','1'),(1124,'mod_lesson','modattempts','0'),(1125,'mod_lesson','modattempts_adv',''),(1126,'mod_lesson','displayreview','0'),(1127,'mod_lesson','displayreview_adv',''),(1128,'mod_lesson','maximumnumberofattempts','1'),(1129,'mod_lesson','maximumnumberofattempts_adv',''),(1130,'mod_lesson','defaultnextpage','0'),(1131,'mod_lesson','defaultnextpage_adv','1'),(1132,'mod_lesson','numberofpagestoshow','1'),(1133,'mod_lesson','numberofpagestoshow_adv','1'),(1134,'mod_lesson','practice','0'),(1135,'mod_lesson','practice_adv',''),(1136,'mod_lesson','customscoring','1'),(1137,'mod_lesson','customscoring_adv','1'),(1138,'mod_lesson','retakesallowed','0'),(1139,'mod_lesson','retakesallowed_adv',''),(1140,'mod_lesson','handlingofretakes','0'),(1141,'mod_lesson','handlingofretakes_adv','1'),(1142,'mod_lesson','minimumnumberofquestions','0'),(1143,'mod_lesson','minimumnumberofquestions_adv','1'),(1144,'page','displayoptions','5'),(1145,'page','printheading','1'),(1146,'page','printintro','0'),(1147,'page','printlastmodified','1'),(1148,'page','display','5'),(1149,'page','popupwidth','620'),(1150,'page','popupheight','450'),(1151,'quiz','timelimit','0'),(1152,'quiz','timelimit_adv',''),(1153,'quiz','overduehandling','autosubmit'),(1154,'quiz','overduehandling_adv',''),(1155,'quiz','graceperiod','86400'),(1156,'quiz','graceperiod_adv',''),(1157,'quiz','graceperiodmin','60'),(1158,'quiz','attempts','0'),(1159,'quiz','attempts_adv',''),(1160,'quiz','grademethod','1'),(1161,'quiz','grademethod_adv',''),(1162,'quiz','maximumgrade','10'),(1163,'quiz','questionsperpage','1'),(1164,'quiz','questionsperpage_adv',''),(1165,'quiz','navmethod','free'),(1166,'quiz','navmethod_adv','1'),(1167,'quiz','shuffleanswers','1'),(1168,'quiz','shuffleanswers_adv',''),(1169,'quiz','preferredbehaviour','deferredfeedback'),(1170,'quiz','canredoquestions','0'),(1171,'quiz','canredoquestions_adv','1'),(1172,'quiz','attemptonlast','0'),(1173,'quiz','attemptonlast_adv','1'),(1174,'quiz','reviewattempt','69904'),(1175,'quiz','reviewcorrectness','69904'),(1176,'quiz','reviewmarks','69904'),(1177,'quiz','reviewspecificfeedback','69904'),(1178,'quiz','reviewgeneralfeedback','69904'),(1179,'quiz','reviewrightanswer','69904'),(1180,'quiz','reviewoverallfeedback','4368'),(1181,'quiz','showuserpicture','0'),(1182,'quiz','showuserpicture_adv',''),(1183,'quiz','decimalpoints','2'),(1184,'quiz','decimalpoints_adv',''),(1185,'quiz','questiondecimalpoints','-1'),(1186,'quiz','questiondecimalpoints_adv',''),(1187,'quiz','showblocks','0'),(1188,'quiz','showblocks_adv','1'),(1189,'quiz','quizpassword',''),(1190,'quiz','quizpassword_adv',''),(1191,'quiz','quizpassword_required',''),(1192,'quiz','subnet',''),(1193,'quiz','subnet_adv','1'),(1194,'quiz','delay1','0'),(1195,'quiz','delay1_adv','1'),(1196,'quiz','delay2','0'),(1197,'quiz','delay2_adv','1'),(1198,'quiz','browsersecurity','-'),(1199,'quiz','browsersecurity_adv','1'),(1200,'quiz','initialnumfeedbacks','2'),(1201,'quiz','autosaveperiod','60'),(1202,'quizaccess_seb','autoreconfigureseb','1'),(1203,'quizaccess_seb','showseblinks','seb,http'),(1204,'quizaccess_seb','downloadlink','https://safeexambrowser.org/download_en.html'),(1205,'quizaccess_seb','quizpasswordrequired','0'),(1206,'quizaccess_seb','displayblocksbeforestart','0'),(1207,'quizaccess_seb','displayblockswhenfinished','1'),(1208,'scorm','displaycoursestructure','0'),(1209,'scorm','displaycoursestructure_adv',''),(1210,'scorm','popup','0'),(1211,'scorm','popup_adv',''),(1212,'scorm','displayactivityname','1'),(1213,'scorm','framewidth','100'),(1214,'scorm','framewidth_adv','1'),(1215,'scorm','frameheight','500'),(1216,'scorm','frameheight_adv','1'),(1217,'scorm','winoptgrp_adv','1'),(1218,'scorm','scrollbars','0'),(1219,'scorm','directories','0'),(1220,'scorm','location','0'),(1221,'scorm','menubar','0'),(1222,'scorm','toolbar','0'),(1223,'scorm','status','0'),(1224,'scorm','skipview','0'),(1225,'scorm','skipview_adv','1'),(1226,'scorm','hidebrowse','0'),(1227,'scorm','hidebrowse_adv','1'),(1228,'scorm','hidetoc','0'),(1229,'scorm','hidetoc_adv','1'),(1230,'scorm','nav','1'),(1231,'scorm','nav_adv','1'),(1232,'scorm','navpositionleft','-100'),(1233,'scorm','navpositionleft_adv','1'),(1234,'scorm','navpositiontop','-100'),(1235,'scorm','navpositiontop_adv','1'),(1236,'scorm','collapsetocwinsize','767'),(1237,'scorm','collapsetocwinsize_adv','1'),(1238,'scorm','displayattemptstatus','1'),(1239,'scorm','displayattemptstatus_adv',''),(1240,'scorm','grademethod','1'),(1241,'scorm','maxgrade','100'),(1242,'scorm','maxattempt','0'),(1243,'scorm','whatgrade','0'),(1244,'scorm','forcecompleted','0'),(1245,'scorm','forcenewattempt','0'),(1246,'scorm','autocommit','0'),(1247,'scorm','masteryoverride','1'),(1248,'scorm','lastattemptlock','0'),(1249,'scorm','auto','0'),(1250,'scorm','updatefreq','0'),(1251,'scorm','scormstandard','0'),(1252,'scorm','allowtypeexternal','0'),(1253,'scorm','allowtypelocalsync','0'),(1254,'scorm','allowtypeexternalaicc','0'),(1255,'scorm','allowaicchacp','0'),(1256,'scorm','aicchacptimeout','30'),(1257,'scorm','aicchacpkeepsessiondata','1'),(1258,'scorm','aiccuserid','1'),(1259,'scorm','forcejavascript','1'),(1260,'scorm','allowapidebug','0'),(1261,'scorm','apidebugmask','.*'),(1262,'scorm','protectpackagedownloads','0'),(1263,'url','framesize','130'),(1264,'url','secretphrase',''),(1265,'url','rolesinparams','0'),(1266,'url','displayoptions','0,1,5,6'),(1267,'url','printintro','1'),(1268,'url','display','0'),(1269,'url','popupwidth','620'),(1270,'url','popupheight','450'),(1271,'workshop','grade','80'),(1272,'workshop','gradinggrade','20'),(1273,'workshop','gradedecimals','0'),(1274,'workshop','maxbytes','0'),(1275,'workshop','strategy','accumulative'),(1276,'workshop','examplesmode','0'),(1277,'workshopallocation_random','numofreviews','5'),(1278,'workshopform_numerrors','grade0','No'),(1279,'workshopform_numerrors','grade1','Yes'),(1280,'workshopeval_best','comparison','5'),(1281,'tool_recyclebin','coursebinenable','1'),(1282,'tool_recyclebin','coursebinexpiry','604800'),(1283,'tool_recyclebin','categorybinenable','1'),(1284,'tool_recyclebin','categorybinexpiry','604800'),(1285,'tool_recyclebin','autohide','1'),(1286,'antivirus_clamav','runningmethod','commandline'),(1287,'antivirus_clamav','pathtoclam',''),(1288,'antivirus_clamav','pathtounixsocket',''),(1289,'antivirus_clamav','tcpsockethost',''),(1290,'antivirus_clamav','tcpsocketport','3310'),(1291,'antivirus_clamav','clamfailureonupload','donothing'),(1292,'antivirus_clamav','tries','1'),(1293,'auth_cas','field_map_firstname',''),(1294,'auth_cas','field_updatelocal_firstname','oncreate'),(1295,'auth_cas','field_updateremote_firstname','0'),(1296,'auth_cas','field_lock_firstname','unlocked'),(1297,'auth_cas','field_map_lastname',''),(1298,'auth_cas','field_updatelocal_lastname','oncreate'),(1299,'auth_cas','field_updateremote_lastname','0'),(1300,'auth_cas','field_lock_lastname','unlocked'),(1301,'auth_cas','field_map_email',''),(1302,'auth_cas','field_updatelocal_email','oncreate'),(1303,'auth_cas','field_updateremote_email','0'),(1304,'auth_cas','field_lock_email','unlocked'),(1305,'auth_cas','field_map_city',''),(1306,'auth_cas','field_updatelocal_city','oncreate'),(1307,'auth_cas','field_updateremote_city','0'),(1308,'auth_cas','field_lock_city','unlocked'),(1309,'auth_cas','field_map_country',''),(1310,'auth_cas','field_updatelocal_country','oncreate'),(1311,'auth_cas','field_updateremote_country','0'),(1312,'auth_cas','field_lock_country','unlocked'),(1313,'auth_cas','field_map_lang',''),(1314,'auth_cas','field_updatelocal_lang','oncreate'),(1315,'auth_cas','field_updateremote_lang','0'),(1316,'auth_cas','field_lock_lang','unlocked'),(1317,'auth_cas','field_map_description',''),(1318,'auth_cas','field_updatelocal_description','oncreate'),(1319,'auth_cas','field_updateremote_description','0'),(1320,'auth_cas','field_lock_description','unlocked'),(1321,'auth_cas','field_map_url',''),(1322,'auth_cas','field_updatelocal_url','oncreate'),(1323,'auth_cas','field_updateremote_url','0'),(1324,'auth_cas','field_lock_url','unlocked'),(1325,'auth_cas','field_map_idnumber',''),(1326,'auth_cas','field_updatelocal_idnumber','oncreate'),(1327,'auth_cas','field_updateremote_idnumber','0'),(1328,'auth_cas','field_lock_idnumber','unlocked'),(1329,'auth_cas','field_map_institution',''),(1330,'auth_cas','field_updatelocal_institution','oncreate'),(1331,'auth_cas','field_updateremote_institution','0'),(1332,'auth_cas','field_lock_institution','unlocked'),(1333,'auth_cas','field_map_department',''),(1334,'auth_cas','field_updatelocal_department','oncreate'),(1335,'auth_cas','field_updateremote_department','0'),(1336,'auth_cas','field_lock_department','unlocked'),(1337,'auth_cas','field_map_phone1',''),(1338,'auth_cas','field_updatelocal_phone1','oncreate'),(1339,'auth_cas','field_updateremote_phone1','0'),(1340,'auth_cas','field_lock_phone1','unlocked'),(1341,'auth_cas','field_map_phone2',''),(1342,'auth_cas','field_updatelocal_phone2','oncreate'),(1343,'auth_cas','field_updateremote_phone2','0'),(1344,'auth_cas','field_lock_phone2','unlocked'),(1345,'auth_cas','field_map_address',''),(1346,'auth_cas','field_updatelocal_address','oncreate'),(1347,'auth_cas','field_updateremote_address','0'),(1348,'auth_cas','field_lock_address','unlocked'),(1349,'auth_cas','field_map_firstnamephonetic',''),(1350,'auth_cas','field_updatelocal_firstnamephonetic','oncreate'),(1351,'auth_cas','field_updateremote_firstnamephonetic','0'),(1352,'auth_cas','field_lock_firstnamephonetic','unlocked'),(1353,'auth_cas','field_map_lastnamephonetic',''),(1354,'auth_cas','field_updatelocal_lastnamephonetic','oncreate'),(1355,'auth_cas','field_updateremote_lastnamephonetic','0'),(1356,'auth_cas','field_lock_lastnamephonetic','unlocked'),(1357,'auth_cas','field_map_middlename',''),(1358,'auth_cas','field_updatelocal_middlename','oncreate'),(1359,'auth_cas','field_updateremote_middlename','0'),(1360,'auth_cas','field_lock_middlename','unlocked'),(1361,'auth_cas','field_map_alternatename',''),(1362,'auth_cas','field_updatelocal_alternatename','oncreate'),(1363,'auth_cas','field_updateremote_alternatename','0'),(1364,'auth_cas','field_lock_alternatename','unlocked'),(1365,'auth_email','recaptcha','0'),(1366,'auth_email','field_lock_firstname','unlocked'),(1367,'auth_email','field_lock_lastname','unlocked'),(1368,'auth_email','field_lock_email','unlocked'),(1369,'auth_email','field_lock_city','unlocked'),(1370,'auth_email','field_lock_country','unlocked'),(1371,'auth_email','field_lock_lang','unlocked'),(1372,'auth_email','field_lock_description','unlocked'),(1373,'auth_email','field_lock_url','unlocked'),(1374,'auth_email','field_lock_idnumber','unlocked'),(1375,'auth_email','field_lock_institution','unlocked'),(1376,'auth_email','field_lock_department','unlocked'),(1377,'auth_email','field_lock_phone1','unlocked'),(1378,'auth_email','field_lock_phone2','unlocked'),(1379,'auth_email','field_lock_address','unlocked'),(1380,'auth_email','field_lock_firstnamephonetic','unlocked'),(1381,'auth_email','field_lock_lastnamephonetic','unlocked'),(1382,'auth_email','field_lock_middlename','unlocked'),(1383,'auth_email','field_lock_alternatename','unlocked'),(1384,'auth_db','host','127.0.0.1'),(1385,'auth_db','type','mysqli'),(1386,'auth_db','sybasequoting','0'),(1387,'auth_db','name',''),(1388,'auth_db','user',''),(1389,'auth_db','pass',''),(1390,'auth_db','table',''),(1391,'auth_db','fielduser',''),(1392,'auth_db','fieldpass',''),(1393,'auth_db','passtype','plaintext'),(1394,'auth_db','extencoding','utf-8'),(1395,'auth_db','setupsql',''),(1396,'auth_db','debugauthdb','0'),(1397,'auth_db','changepasswordurl',''),(1398,'auth_db','removeuser','0'),(1399,'auth_db','updateusers','0'),(1400,'auth_db','field_map_firstname',''),(1401,'auth_db','field_updatelocal_firstname','oncreate'),(1402,'auth_db','field_updateremote_firstname','0'),(1403,'auth_db','field_lock_firstname','unlocked'),(1404,'auth_db','field_map_lastname',''),(1405,'auth_db','field_updatelocal_lastname','oncreate'),(1406,'auth_db','field_updateremote_lastname','0'),(1407,'auth_db','field_lock_lastname','unlocked'),(1408,'auth_db','field_map_email',''),(1409,'auth_db','field_updatelocal_email','oncreate'),(1410,'auth_db','field_updateremote_email','0'),(1411,'auth_db','field_lock_email','unlocked'),(1412,'auth_db','field_map_city',''),(1413,'auth_db','field_updatelocal_city','oncreate'),(1414,'auth_db','field_updateremote_city','0'),(1415,'auth_db','field_lock_city','unlocked'),(1416,'auth_db','field_map_country',''),(1417,'auth_db','field_updatelocal_country','oncreate'),(1418,'auth_db','field_updateremote_country','0'),(1419,'auth_db','field_lock_country','unlocked'),(1420,'auth_db','field_map_lang',''),(1421,'auth_db','field_updatelocal_lang','oncreate'),(1422,'auth_db','field_updateremote_lang','0'),(1423,'auth_db','field_lock_lang','unlocked'),(1424,'auth_db','field_map_description',''),(1425,'auth_db','field_updatelocal_description','oncreate'),(1426,'auth_db','field_updateremote_description','0'),(1427,'auth_db','field_lock_description','unlocked'),(1428,'auth_db','field_map_url',''),(1429,'auth_db','field_updatelocal_url','oncreate'),(1430,'auth_db','field_updateremote_url','0'),(1431,'auth_db','field_lock_url','unlocked'),(1432,'auth_db','field_map_idnumber',''),(1433,'auth_db','field_updatelocal_idnumber','oncreate'),(1434,'auth_db','field_updateremote_idnumber','0'),(1435,'auth_db','field_lock_idnumber','unlocked'),(1436,'auth_db','field_map_institution',''),(1437,'auth_db','field_updatelocal_institution','oncreate'),(1438,'auth_db','field_updateremote_institution','0'),(1439,'auth_db','field_lock_institution','unlocked'),(1440,'auth_db','field_map_department',''),(1441,'auth_db','field_updatelocal_department','oncreate'),(1442,'auth_db','field_updateremote_department','0'),(1443,'auth_db','field_lock_department','unlocked'),(1444,'auth_db','field_map_phone1',''),(1445,'auth_db','field_updatelocal_phone1','oncreate'),(1446,'auth_db','field_updateremote_phone1','0'),(1447,'auth_db','field_lock_phone1','unlocked'),(1448,'auth_db','field_map_phone2',''),(1449,'auth_db','field_updatelocal_phone2','oncreate'),(1450,'auth_db','field_updateremote_phone2','0'),(1451,'auth_db','field_lock_phone2','unlocked'),(1452,'auth_db','field_map_address',''),(1453,'auth_db','field_updatelocal_address','oncreate'),(1454,'auth_db','field_updateremote_address','0'),(1455,'auth_db','field_lock_address','unlocked'),(1456,'auth_db','field_map_firstnamephonetic',''),(1457,'auth_db','field_updatelocal_firstnamephonetic','oncreate'),(1458,'auth_db','field_updateremote_firstnamephonetic','0'),(1459,'auth_db','field_lock_firstnamephonetic','unlocked'),(1460,'auth_db','field_map_lastnamephonetic',''),(1461,'auth_db','field_updatelocal_lastnamephonetic','oncreate'),(1462,'auth_db','field_updateremote_lastnamephonetic','0'),(1463,'auth_db','field_lock_lastnamephonetic','unlocked'),(1464,'auth_db','field_map_middlename',''),(1465,'auth_db','field_updatelocal_middlename','oncreate'),(1466,'auth_db','field_updateremote_middlename','0'),(1467,'auth_db','field_lock_middlename','unlocked'),(1468,'auth_db','field_map_alternatename',''),(1469,'auth_db','field_updatelocal_alternatename','oncreate'),(1470,'auth_db','field_updateremote_alternatename','0'),(1471,'auth_db','field_lock_alternatename','unlocked'),(1472,'auth_ldap','field_map_firstname',''),(1473,'auth_ldap','field_updatelocal_firstname','oncreate'),(1474,'auth_ldap','field_updateremote_firstname','0'),(1475,'auth_ldap','field_lock_firstname','unlocked'),(1476,'auth_ldap','field_map_lastname',''),(1477,'auth_ldap','field_updatelocal_lastname','oncreate'),(1478,'auth_ldap','field_updateremote_lastname','0'),(1479,'auth_ldap','field_lock_lastname','unlocked'),(1480,'auth_ldap','field_map_email',''),(1481,'auth_ldap','field_updatelocal_email','oncreate'),(1482,'auth_ldap','field_updateremote_email','0'),(1483,'auth_ldap','field_lock_email','unlocked'),(1484,'auth_ldap','field_map_city',''),(1485,'auth_ldap','field_updatelocal_city','oncreate'),(1486,'auth_ldap','field_updateremote_city','0'),(1487,'auth_ldap','field_lock_city','unlocked'),(1488,'auth_ldap','field_map_country',''),(1489,'auth_ldap','field_updatelocal_country','oncreate'),(1490,'auth_ldap','field_updateremote_country','0'),(1491,'auth_ldap','field_lock_country','unlocked'),(1492,'auth_ldap','field_map_lang',''),(1493,'auth_ldap','field_updatelocal_lang','oncreate'),(1494,'auth_ldap','field_updateremote_lang','0'),(1495,'auth_ldap','field_lock_lang','unlocked'),(1496,'auth_ldap','field_map_description',''),(1497,'auth_ldap','field_updatelocal_description','oncreate'),(1498,'auth_ldap','field_updateremote_description','0'),(1499,'auth_ldap','field_lock_description','unlocked'),(1500,'auth_ldap','field_map_url',''),(1501,'auth_ldap','field_updatelocal_url','oncreate'),(1502,'auth_ldap','field_updateremote_url','0'),(1503,'auth_ldap','field_lock_url','unlocked'),(1504,'auth_ldap','field_map_idnumber',''),(1505,'auth_ldap','field_updatelocal_idnumber','oncreate'),(1506,'auth_ldap','field_updateremote_idnumber','0'),(1507,'auth_ldap','field_lock_idnumber','unlocked'),(1508,'auth_ldap','field_map_institution',''),(1509,'auth_ldap','field_updatelocal_institution','oncreate'),(1510,'auth_ldap','field_updateremote_institution','0'),(1511,'auth_ldap','field_lock_institution','unlocked'),(1512,'auth_ldap','field_map_department',''),(1513,'auth_ldap','field_updatelocal_department','oncreate'),(1514,'auth_ldap','field_updateremote_department','0'),(1515,'auth_ldap','field_lock_department','unlocked'),(1516,'auth_ldap','field_map_phone1',''),(1517,'auth_ldap','field_updatelocal_phone1','oncreate'),(1518,'auth_ldap','field_updateremote_phone1','0'),(1519,'auth_ldap','field_lock_phone1','unlocked'),(1520,'auth_ldap','field_map_phone2',''),(1521,'auth_ldap','field_updatelocal_phone2','oncreate'),(1522,'auth_ldap','field_updateremote_phone2','0'),(1523,'auth_ldap','field_lock_phone2','unlocked'),(1524,'auth_ldap','field_map_address',''),(1525,'auth_ldap','field_updatelocal_address','oncreate'),(1526,'auth_ldap','field_updateremote_address','0'),(1527,'auth_ldap','field_lock_address','unlocked'),(1528,'auth_ldap','field_map_firstnamephonetic',''),(1529,'auth_ldap','field_updatelocal_firstnamephonetic','oncreate'),(1530,'auth_ldap','field_updateremote_firstnamephonetic','0'),(1531,'auth_ldap','field_lock_firstnamephonetic','unlocked'),(1532,'auth_ldap','field_map_lastnamephonetic',''),(1533,'auth_ldap','field_updatelocal_lastnamephonetic','oncreate'),(1534,'auth_ldap','field_updateremote_lastnamephonetic','0'),(1535,'auth_ldap','field_lock_lastnamephonetic','unlocked'),(1536,'auth_ldap','field_map_middlename',''),(1537,'auth_ldap','field_updatelocal_middlename','oncreate'),(1538,'auth_ldap','field_updateremote_middlename','0'),(1539,'auth_ldap','field_lock_middlename','unlocked'),(1540,'auth_ldap','field_map_alternatename',''),(1541,'auth_ldap','field_updatelocal_alternatename','oncreate'),(1542,'auth_ldap','field_updateremote_alternatename','0'),(1543,'auth_ldap','field_lock_alternatename','unlocked'),(1544,'auth_manual','expiration','0'),(1545,'auth_manual','expirationtime','30'),(1546,'auth_manual','expiration_warning','0'),(1547,'auth_manual','field_lock_firstname','unlocked'),(1548,'auth_manual','field_lock_lastname','unlocked'),(1549,'auth_manual','field_lock_email','unlocked'),(1550,'auth_manual','field_lock_city','unlocked'),(1551,'auth_manual','field_lock_country','unlocked'),(1552,'auth_manual','field_lock_lang','unlocked'),(1553,'auth_manual','field_lock_description','unlocked'),(1554,'auth_manual','field_lock_url','unlocked'),(1555,'auth_manual','field_lock_idnumber','unlocked'),(1556,'auth_manual','field_lock_institution','unlocked'),(1557,'auth_manual','field_lock_department','unlocked'),(1558,'auth_manual','field_lock_phone1','unlocked'),(1559,'auth_manual','field_lock_phone2','unlocked'),(1560,'auth_manual','field_lock_address','unlocked'),(1561,'auth_manual','field_lock_firstnamephonetic','unlocked'),(1562,'auth_manual','field_lock_lastnamephonetic','unlocked'),(1563,'auth_manual','field_lock_middlename','unlocked'),(1564,'auth_manual','field_lock_alternatename','unlocked'),(1565,'auth_mnet','rpc_negotiation_timeout','30'),(1566,'auth_none','field_lock_firstname','unlocked'),(1567,'auth_none','field_lock_lastname','unlocked'),(1568,'auth_none','field_lock_email','unlocked'),(1569,'auth_none','field_lock_city','unlocked'),(1570,'auth_none','field_lock_country','unlocked'),(1571,'auth_none','field_lock_lang','unlocked'),(1572,'auth_none','field_lock_description','unlocked'),(1573,'auth_none','field_lock_url','unlocked'),(1574,'auth_none','field_lock_idnumber','unlocked'),(1575,'auth_none','field_lock_institution','unlocked'),(1576,'auth_none','field_lock_department','unlocked'),(1577,'auth_none','field_lock_phone1','unlocked'),(1578,'auth_none','field_lock_phone2','unlocked'),(1579,'auth_none','field_lock_address','unlocked'),(1580,'auth_none','field_lock_firstnamephonetic','unlocked'),(1581,'auth_none','field_lock_lastnamephonetic','unlocked'),(1582,'auth_none','field_lock_middlename','unlocked'),(1583,'auth_none','field_lock_alternatename','unlocked'),(1584,'auth_oauth2','field_lock_firstname','unlocked'),(1585,'auth_oauth2','field_lock_lastname','unlocked'),(1586,'auth_oauth2','field_lock_email','unlocked'),(1587,'auth_oauth2','field_lock_city','unlocked'),(1588,'auth_oauth2','field_lock_country','unlocked'),(1589,'auth_oauth2','field_lock_lang','unlocked'),(1590,'auth_oauth2','field_lock_description','unlocked'),(1591,'auth_oauth2','field_lock_url','unlocked'),(1592,'auth_oauth2','field_lock_idnumber','unlocked'),(1593,'auth_oauth2','field_lock_institution','unlocked'),(1594,'auth_oauth2','field_lock_department','unlocked'),(1595,'auth_oauth2','field_lock_phone1','unlocked'),(1596,'auth_oauth2','field_lock_phone2','unlocked'),(1597,'auth_oauth2','field_lock_address','unlocked'),(1598,'auth_oauth2','field_lock_firstnamephonetic','unlocked'),(1599,'auth_oauth2','field_lock_lastnamephonetic','unlocked'),(1600,'auth_oauth2','field_lock_middlename','unlocked'),(1601,'auth_oauth2','field_lock_alternatename','unlocked'),(1602,'auth_shibboleth','user_attribute',''),(1603,'auth_shibboleth','convert_data',''),(1604,'auth_shibboleth','alt_login','off'),(1605,'auth_shibboleth','organization_selection','urn:mace:organization1:providerID, Example Organization 1\n https://another.idp-id.com/shibboleth, Other Example Organization, /Shibboleth.sso/DS/SWITCHaai\n urn:mace:organization2:providerID, Example Organization 2, /Shibboleth.sso/WAYF/SWITCHaai'),(1606,'auth_shibboleth','logout_handler',''),(1607,'auth_shibboleth','logout_return_url',''),(1608,'auth_shibboleth','login_name','Shibboleth Login'),(1609,'auth_shibboleth','auth_logo',''),(1610,'auth_shibboleth','auth_instructions','Use the Shibboleth login to get access via Shibboleth, if your institution supports it. Otherwise, use the normal login form shown here.'),(1611,'auth_shibboleth','changepasswordurl',''),(1612,'auth_shibboleth','field_map_firstname',''),(1613,'auth_shibboleth','field_updatelocal_firstname','oncreate'),(1614,'auth_shibboleth','field_lock_firstname','unlocked'),(1615,'auth_shibboleth','field_map_lastname',''),(1616,'auth_shibboleth','field_updatelocal_lastname','oncreate'),(1617,'auth_shibboleth','field_lock_lastname','unlocked'),(1618,'auth_shibboleth','field_map_email',''),(1619,'auth_shibboleth','field_updatelocal_email','oncreate'),(1620,'auth_shibboleth','field_lock_email','unlocked'),(1621,'auth_shibboleth','field_map_city',''),(1622,'auth_shibboleth','field_updatelocal_city','oncreate'),(1623,'auth_shibboleth','field_lock_city','unlocked'),(1624,'auth_shibboleth','field_map_country',''),(1625,'auth_shibboleth','field_updatelocal_country','oncreate'),(1626,'auth_shibboleth','field_lock_country','unlocked'),(1627,'auth_shibboleth','field_map_lang',''),(1628,'auth_shibboleth','field_updatelocal_lang','oncreate'),(1629,'auth_shibboleth','field_lock_lang','unlocked'),(1630,'auth_shibboleth','field_map_description',''),(1631,'auth_shibboleth','field_updatelocal_description','oncreate'),(1632,'auth_shibboleth','field_lock_description','unlocked'),(1633,'auth_shibboleth','field_map_url',''),(1634,'auth_shibboleth','field_updatelocal_url','oncreate'),(1635,'auth_shibboleth','field_lock_url','unlocked'),(1636,'auth_shibboleth','field_map_idnumber',''),(1637,'auth_shibboleth','field_updatelocal_idnumber','oncreate'),(1638,'auth_shibboleth','field_lock_idnumber','unlocked'),(1639,'auth_shibboleth','field_map_institution',''),(1640,'auth_shibboleth','field_updatelocal_institution','oncreate'),(1641,'auth_shibboleth','field_lock_institution','unlocked'),(1642,'auth_shibboleth','field_map_department',''),(1643,'auth_shibboleth','field_updatelocal_department','oncreate'),(1644,'auth_shibboleth','field_lock_department','unlocked'),(1645,'auth_shibboleth','field_map_phone1',''),(1646,'auth_shibboleth','field_updatelocal_phone1','oncreate'),(1647,'auth_shibboleth','field_lock_phone1','unlocked'),(1648,'auth_shibboleth','field_map_phone2',''),(1649,'auth_shibboleth','field_updatelocal_phone2','oncreate'),(1650,'auth_shibboleth','field_lock_phone2','unlocked'),(1651,'auth_shibboleth','field_map_address',''),(1652,'auth_shibboleth','field_updatelocal_address','oncreate'),(1653,'auth_shibboleth','field_lock_address','unlocked'),(1654,'auth_shibboleth','field_map_firstnamephonetic',''),(1655,'auth_shibboleth','field_updatelocal_firstnamephonetic','oncreate'),(1656,'auth_shibboleth','field_lock_firstnamephonetic','unlocked'),(1657,'auth_shibboleth','field_map_lastnamephonetic',''),(1658,'auth_shibboleth','field_updatelocal_lastnamephonetic','oncreate'),(1659,'auth_shibboleth','field_lock_lastnamephonetic','unlocked'),(1660,'auth_shibboleth','field_map_middlename',''),(1661,'auth_shibboleth','field_updatelocal_middlename','oncreate'),(1662,'auth_shibboleth','field_lock_middlename','unlocked'),(1663,'auth_shibboleth','field_map_alternatename',''),(1664,'auth_shibboleth','field_updatelocal_alternatename','oncreate'),(1665,'auth_shibboleth','field_lock_alternatename','unlocked'),(1666,'block_activity_results','config_showbest','3'),(1667,'block_activity_results','config_showbest_locked',''),(1668,'block_activity_results','config_showworst','0'),(1669,'block_activity_results','config_showworst_locked',''),(1670,'block_activity_results','config_usegroups','0'),(1671,'block_activity_results','config_usegroups_locked',''),(1672,'block_activity_results','config_nameformat','1'),(1673,'block_activity_results','config_nameformat_locked',''),(1674,'block_activity_results','config_gradeformat','1'),(1675,'block_activity_results','config_gradeformat_locked',''),(1676,'block_activity_results','config_decimalpoints','2'),(1677,'block_activity_results','config_decimalpoints_locked',''),(1678,'block_myoverview','displaycategories','1'),(1679,'block_myoverview','layouts','card,list,summary'),(1680,'block_myoverview','displaygroupingallincludinghidden','0'),(1681,'block_myoverview','displaygroupingall','1'),(1682,'block_myoverview','displaygroupinginprogress','1'),(1683,'block_myoverview','displaygroupingpast','1'),(1684,'block_myoverview','displaygroupingfuture','1'),(1685,'block_myoverview','displaygroupingcustomfield','0'),(1686,'block_myoverview','customfiltergrouping',''),(1687,'block_myoverview','displaygroupingfavourites','1'),(1688,'block_myoverview','displaygroupinghidden','1'),(1689,'block_recentlyaccessedcourses','displaycategories','1'),(1690,'block_section_links','numsections1','22'),(1691,'block_section_links','incby1','2'),(1692,'block_section_links','numsections2','40'),(1693,'block_section_links','incby2','5'),(1694,'block_starredcourses','displaycategories','1'),(1695,'block_tag_youtube','apikey',''),(1696,'format_singleactivity','activitytype','forum'),(1697,'fileconverter_googledrive','issuerid',''),(1698,'enrol_cohort','roleid','5'),(1699,'enrol_cohort','unenrolaction','0'),(1700,'enrol_meta','nosyncroleids',''),(1701,'enrol_meta','syncall','1'),(1702,'enrol_meta','unenrolaction','3'),(1703,'enrol_meta','coursesort','sortorder'),(1704,'enrol_fee','expiredaction','3'),(1705,'enrol_fee','status','1'),(1706,'enrol_fee','cost','0'),(1707,'enrol_fee','currency','USD'),(1708,'enrol_fee','roleid','5'),(1709,'enrol_fee','enrolperiod','0'),(1710,'enrol_database','dbtype',''),(1711,'enrol_database','dbhost','localhost'),(1712,'enrol_database','dbuser',''),(1713,'enrol_database','dbpass',''),(1714,'enrol_database','dbname',''),(1715,'enrol_database','dbencoding','utf-8'),(1716,'enrol_database','dbsetupsql',''),(1717,'enrol_database','dbsybasequoting','0'),(1718,'enrol_database','debugdb','0'),(1719,'enrol_database','localcoursefield','idnumber'),(1720,'enrol_database','localuserfield','idnumber'),(1721,'enrol_database','localrolefield','shortname'),(1722,'enrol_database','localcategoryfield','id'),(1723,'enrol_database','remoteenroltable',''),(1724,'enrol_database','remotecoursefield',''),(1725,'enrol_database','remoteuserfield',''),(1726,'enrol_database','remoterolefield',''),(1727,'enrol_database','remoteotheruserfield',''),(1728,'enrol_database','defaultrole','5'),(1729,'enrol_database','ignorehiddencourses','0'),(1730,'enrol_database','unenrolaction','0'),(1731,'enrol_database','newcoursetable',''),(1732,'enrol_database','newcoursefullname','fullname'),(1733,'enrol_database','newcourseshortname','shortname'),(1734,'enrol_database','newcourseidnumber','idnumber'),(1735,'enrol_database','newcoursecategory',''),(1736,'enrol_database','defaultcategory','1'),(1737,'enrol_database','templatecourse',''),(1738,'enrol_flatfile','location',''),(1739,'enrol_flatfile','encoding','UTF-8'),(1740,'enrol_flatfile','mailstudents','0'),(1741,'enrol_flatfile','mailteachers','0'),(1742,'enrol_flatfile','mailadmins','0'),(1743,'enrol_flatfile','unenrolaction','3'),(1744,'enrol_flatfile','expiredaction','3'),(1745,'enrol_guest','requirepassword','0'),(1746,'enrol_guest','usepasswordpolicy','0'),(1747,'enrol_guest','showhint','0'),(1748,'enrol_guest','defaultenrol','1'),(1749,'enrol_guest','status','1'),(1750,'enrol_guest','status_adv',''),(1751,'enrol_imsenterprise','imsfilelocation',''),(1752,'enrol_imsenterprise','logtolocation',''),(1753,'enrol_imsenterprise','mailadmins','0'),(1754,'enrol_imsenterprise','createnewusers','0'),(1755,'enrol_imsenterprise','imsupdateusers','0'),(1756,'enrol_imsenterprise','imsdeleteusers','0'),(1757,'enrol_imsenterprise','fixcaseusernames','0'),(1758,'enrol_imsenterprise','fixcasepersonalnames','0'),(1759,'enrol_imsenterprise','imssourcedidfallback','0'),(1760,'enrol_imsenterprise','imsrolemap01','5'),(1761,'enrol_imsenterprise','imsrolemap02','3'),(1762,'enrol_imsenterprise','imsrolemap03','3'),(1763,'enrol_imsenterprise','imsrolemap04','5'),(1764,'enrol_imsenterprise','imsrolemap05','0'),(1765,'enrol_imsenterprise','imsrolemap06','4'),(1766,'enrol_imsenterprise','imsrolemap07','0'),(1767,'enrol_imsenterprise','imsrolemap08','4'),(1768,'enrol_imsenterprise','truncatecoursecodes','0'),(1769,'enrol_imsenterprise','createnewcourses','0'),(1770,'enrol_imsenterprise','updatecourses','0'),(1771,'enrol_imsenterprise','createnewcategories','0'),(1772,'enrol_imsenterprise','nestedcategories','0'),(1773,'enrol_imsenterprise','categoryidnumber','0'),(1774,'enrol_imsenterprise','categoryseparator',''),(1775,'enrol_imsenterprise','imsunenrol','0'),(1776,'enrol_imsenterprise','imscoursemapshortname','coursecode'),(1777,'enrol_imsenterprise','imscoursemapfullname','short'),(1778,'enrol_imsenterprise','imscoursemapsummary','ignore'),(1779,'enrol_imsenterprise','imsrestricttarget',''),(1780,'enrol_imsenterprise','imscapitafix','0'),(1781,'enrol_manual','expiredaction','1'),(1782,'enrol_manual','expirynotifyhour','6'),(1783,'enrol_manual','defaultenrol','1'),(1784,'enrol_manual','status','0'),(1785,'enrol_manual','roleid','5'),(1786,'enrol_manual','enrolstart','4'),(1787,'enrol_manual','enrolperiod','0'),(1788,'enrol_manual','expirynotify','0'),(1789,'enrol_manual','expirythreshold','86400'),(1790,'enrol_mnet','roleid','5'),(1791,'enrol_mnet','roleid_adv','1'),(1792,'enrol_paypal','paypalbusiness',''),(1793,'enrol_paypal','mailstudents','0'),(1794,'enrol_paypal','mailteachers','0'),(1795,'enrol_paypal','mailadmins','0'),(1796,'enrol_paypal','expiredaction','3'),(1797,'enrol_paypal','status','1'),(1798,'enrol_paypal','cost','0'),(1799,'enrol_paypal','currency','USD'),(1800,'enrol_paypal','roleid','5'),(1801,'enrol_paypal','enrolperiod','0'),(1802,'enrol_lti','emaildisplay','2'),(1803,'enrol_lti','city',''),(1804,'enrol_lti','country',''),(1805,'enrol_lti','timezone','99'),(1806,'enrol_lti','lang','en'),(1807,'enrol_lti','institution',''),(1808,'enrol_self','requirepassword','0'),(1809,'enrol_self','usepasswordpolicy','0'),(1810,'enrol_self','showhint','0'),(1811,'enrol_self','expiredaction','1'),(1812,'enrol_self','expirynotifyhour','6'),(1813,'enrol_self','defaultenrol','1'),(1814,'enrol_self','status','1'),(1815,'enrol_self','newenrols','0'),(1816,'enrol_self','groupkey','0'),(1817,'enrol_self','roleid','5'),(1818,'enrol_self','enrolperiod','0'),(1819,'enrol_self','expirynotify','0'),(1820,'enrol_self','expirythreshold','86400'),(1821,'enrol_self','longtimenosee','0'),(1822,'enrol_self','maxenrolled','0'),(1823,'enrol_self','sendcoursewelcomemessage','1'),(1824,'filter_urltolink','formats','1,4,0'),(1825,'filter_urltolink','embedimages','1'),(1826,'filter_emoticon','formats','1,4,0'),(1827,'filter_displayh5p','allowedsources',''),(1828,'filter_mathjaxloader','httpsurl','https://cdn.jsdelivr.net/npm/mathjax@2.7.8/MathJax.js'),(1829,'filter_mathjaxloader','texfiltercompatibility','0'),(1830,'filter_mathjaxloader','mathjaxconfig','\nMathJax.Hub.Config({\n config: [\"Accessible.js\", \"Safe.js\"],\n errorSettings: { message: [\"!\"] },\n skipStartupTypeset: true,\n messageStyle: \"none\"\n});\n'),(1831,'filter_mathjaxloader','additionaldelimiters',''),(1832,'filter_tex','latexpreamble','\\usepackage[latin1]{inputenc}\n\\usepackage{amsmath}\n\\usepackage{amsfonts}\n\\RequirePackage{amsmath,amssymb,latexsym}\n'),(1833,'filter_tex','latexbackground','#FFFFFF'),(1834,'filter_tex','density','120'),(1835,'filter_tex','pathlatex','/usr/bin/latex'),(1836,'filter_tex','pathdvips','/usr/bin/dvips'),(1837,'filter_tex','pathconvert','/usr/bin/convert'),(1838,'filter_tex','pathdvisvgm','/usr/bin/dvisvgm'),(1839,'filter_tex','pathmimetex',''),(1840,'filter_tex','convertformat','gif'),(1841,'local_chat_attachments','messaging_support_email',''),(1842,'local_chat_attachments','messaging_url',''),(1843,'local_chat_attachments','messaging_token',''),(1844,'logstore_database','dbdriver',''),(1845,'logstore_database','dbhost',''),(1846,'logstore_database','dbuser',''),(1847,'logstore_database','dbpass',''),(1848,'logstore_database','dbname',''),(1849,'logstore_database','dbtable',''),(1850,'logstore_database','dbpersist','0'),(1851,'logstore_database','dbsocket',''),(1852,'logstore_database','dbport',''),(1853,'logstore_database','dbschema',''),(1854,'logstore_database','dbcollation',''),(1855,'logstore_database','dbhandlesoptions','0'),(1856,'logstore_database','buffersize','50'),(1857,'logstore_database','jsonformat','1'),(1858,'logstore_database','logguests','0'),(1859,'logstore_database','includelevels','1,2,0'),(1860,'logstore_database','includeactions','c,r,u,d'),(1861,'logstore_legacy','loglegacy','0'),(1862,'logstore_standard','logguests','1'),(1863,'logstore_standard','jsonformat','1'),(1864,'logstore_standard','loglifetime','0'),(1865,'logstore_standard','buffersize','50'),(1866,'mlbackend_python','useserver','0'),(1867,'mlbackend_python','host',''),(1868,'mlbackend_python','port','0'),(1869,'mlbackend_python','secure','0'),(1870,'mlbackend_python','username','default'),(1871,'mlbackend_python','password',''),(1872,'media_videojs','videoextensions','html_video,media_source,.f4v,.flv'),(1873,'media_videojs','audioextensions','html_audio'),(1874,'media_videojs','rtmp','0'),(1875,'media_videojs','useflash','0'),(1876,'media_videojs','youtube','1'),(1877,'media_videojs','videocssclass','video-js'),(1878,'media_videojs','audiocssclass','video-js'),(1879,'media_videojs','limitsize','1'),(1880,'paygw_paypal','surcharge','0'),(1881,'qtype_multichoice','answerhowmany','1'),(1882,'qtype_multichoice','shuffleanswers','1'),(1883,'qtype_multichoice','answernumbering','abc'),(1884,'editor_atto','toolbar','collapse = collapse\nstyle1 = title, bold, italic\nlist = unorderedlist, orderedlist, indent\nlinks = link\nfiles = emojipicker, image, media, recordrtc, managefiles, h5p\nstyle2 = underline, strike, subscript, superscript\nalign = align\ninsert = equation, charmap, table, clear\nundo = undo\naccessibility = accessibilitychecker, accessibilityhelper\nother = html'),(1885,'editor_atto','autosavefrequency','60'),(1886,'atto_collapse','showgroups','5'),(1887,'atto_equation','librarygroup1','\n\\cdot\n\\times\n\\ast\n\\div\n\\diamond\n\\pm\n\\mp\n\\oplus\n\\ominus\n\\otimes\n\\oslash\n\\odot\n\\circ\n\\bullet\n\\asymp\n\\equiv\n\\subseteq\n\\supseteq\n\\leq\n\\geq\n\\preceq\n\\succeq\n\\sim\n\\simeq\n\\approx\n\\subset\n\\supset\n\\ll\n\\gg\n\\prec\n\\succ\n\\infty\n\\in\n\\ni\n\\forall\n\\exists\n\\neq\n'),(1888,'atto_equation','librarygroup2','\n\\leftarrow\n\\rightarrow\n\\uparrow\n\\downarrow\n\\leftrightarrow\n\\nearrow\n\\searrow\n\\swarrow\n\\nwarrow\n\\Leftarrow\n\\Rightarrow\n\\Uparrow\n\\Downarrow\n\\Leftrightarrow\n'),(1889,'atto_equation','librarygroup3','\n\\alpha\n\\beta\n\\gamma\n\\delta\n\\epsilon\n\\zeta\n\\eta\n\\theta\n\\iota\n\\kappa\n\\lambda\n\\mu\n\\nu\n\\xi\n\\pi\n\\rho\n\\sigma\n\\tau\n\\upsilon\n\\phi\n\\chi\n\\psi\n\\omega\n\\Gamma\n\\Delta\n\\Theta\n\\Lambda\n\\Xi\n\\Pi\n\\Sigma\n\\Upsilon\n\\Phi\n\\Psi\n\\Omega\n'),(1890,'atto_equation','librarygroup4','\n\\sum{a,b}\n\\sqrt[a]{b+c}\n\\int_{a}^{b}{c}\n\\iint_{a}^{b}{c}\n\\iiint_{a}^{b}{c}\n\\oint{a}\n(a)\n[a]\n\\lbrace{a}\\rbrace\n\\left| \\begin{matrix} a_1 & a_2 \\ a_3 & a_4 \\end{matrix} \\right|\n\\frac{a}{b+c}\n\\vec{a}\n\\binom {a} {b}\n{a \\brack b}\n{a \\brace b}\n'),(1891,'atto_recordrtc','allowedtypes','both'),(1892,'atto_recordrtc','audiobitrate','128000'),(1893,'atto_recordrtc','videobitrate','2500000'),(1894,'atto_recordrtc','timelimit','120'),(1895,'atto_table','allowborders','0'),(1896,'atto_table','allowbackgroundcolour','0'),(1897,'atto_table','allowwidth','0'),(1898,'editor_tinymce','customtoolbar','wrap,formatselect,wrap,bold,italic,wrap,bullist,numlist,wrap,link,unlink,wrap,image\n\nundo,redo,wrap,underline,strikethrough,sub,sup,wrap,justifyleft,justifycenter,justifyright,wrap,outdent,indent,wrap,forecolor,backcolor,wrap,ltr,rtl\n\nfontselect,fontsizeselect,wrap,code,search,replace,wrap,nonbreaking,charmap,table,wrap,cleanup,removeformat,pastetext,pasteword,wrap,fullscreen'),(1899,'editor_tinymce','fontselectlist','Trebuchet=Trebuchet MS,Verdana,Arial,Helvetica,sans-serif;Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;Wingdings=wingdings'),(1900,'editor_tinymce','customconfig',''),(1901,'tinymce_moodleemoticon','requireemoticon','1'),(1902,'tinymce_spellchecker','spellengine',''),(1903,'tinymce_spellchecker','spelllanguagelist','+English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv'),(1904,'tool_mobile','apppolicy','https://www.relaytrust.org/thewell/privacypolicy.html'),(1905,'tool_mobile','typeoflogin','1'),(1906,'tool_mobile','qrcodetype','2'),(1907,'tool_mobile','forcedurlscheme','org.relaytrust.thewell'),(1908,'tool_mobile','minimumversion',''),(1909,'tool_mobile','enablesmartappbanners','1'),(1910,'tool_mobile','iosappid',''),(1911,'tool_mobile','androidappid','org.relaytrust.thewell'),(1912,'tool_mobile','setuplink','https://www.relaytrust.org/thewell/thewellapp.html'),(1913,'tool_mobile','forcelogout','0'),(1914,'tool_mobile','disabledfeatures','$mmLoginEmailSignup,NoDelegate_ForgottenPassword,$mmSideMenuDelegate_mmaFrontpage,$mmSideMenuDelegate_mmaCalendar,$mmSideMenuDelegate_mmaNotifications,$mmSideMenuDelegate_mmaGrades,$mmSideMenuDelegate_mmaCompetency,CoreMainMenuDelegate_AddonBlog,CoreMainMenuDelegate_CoreTag,$mmSideMenuDelegate_website,$mmSideMenuDelegate_help,CoreCourseOptionsDelegate_AddonBlog,CoreUserDelegate_AddonBlog:blogs,$mmUserDelegate_mmaMessages:blockContact'),(1915,'tool_mobile','custommenuitems','Get Resources from The Well|http://thewell|browser\r\nHelp|internal link in Well|embedded\r\nAbout The Well|internal link in Well Device|embedded'),(1916,'tool_mobile','filetypeexclusionlist',''),(1917,'tool_mobile','customlangstrings',''),(1918,'tool_moodlenet','enablemoodlenet','0'),(1919,'tool_moodlenet','defaultmoodlenetname','MoodleNet Central'),(1920,'tool_moodlenet','defaultmoodlenet','https://moodle.net'),(1921,'tool_task','lastcronstart','1619640961'),(1922,'enrol_manual','expirynotifylast','1619623861'),(1923,'enrol_self','expirynotifylast','1619623861'),(1924,'tool_task','lastcroninterval','900'),(1925,'enrol_ldap','objectclass','(objectClass=*)'),(1926,'mod_customcert','version','2020110900'),(1927,'customcertelement_bgimage','version','2020110900'),(1928,'customcertelement_border','version','2020110900'),(1929,'customcertelement_categoryname','version','2020110900'),(1930,'customcertelement_code','version','2020110900'),(1931,'customcertelement_coursefield','version','2020110900'),(1932,'customcertelement_coursename','version','2020110900'),(1933,'customcertelement_date','version','2020110900'),(1934,'customcertelement_daterange','version','2020110900'),(1935,'customcertelement_digitalsignature','version','2020110900'),(1936,'customcertelement_grade','version','2020110900'),(1937,'customcertelement_gradeitemname','version','2020110900'),(1938,'customcertelement_image','version','2020110900'),(1939,'customcertelement_qrcode','version','2020110900'),(1940,'customcertelement_studentname','version','2020110900'),(1941,'customcertelement_teachername','version','2020110900'),(1942,'customcertelement_text','version','2020110900'),(1943,'customcertelement_userfield','version','2020110900'),(1944,'customcertelement_userpicture','version','2020110900'),(1945,'core_plugin','recentfetch','1619625665'),(1946,'core_plugin','recentresponse','{\"status\":\"OK\",\"provider\":\"https:\\/\\/download.moodle.org\\/api\\/1.3\\/updates.php\",\"apiver\":\"1.3\",\"timegenerated\":1619625665,\"ticket\":\"JUM5JTkxNiVBRCUzRiVENSU3RiU3RSVFMiU5NSVEMCVENyVFMGJDJUIyTCU5OCVDOCVBRFRuJUNDJTIzJTI5JUI4JUFCJTFFJTNDJUFEJTJDJTA5JThGJTEzJTFCJTg1JTdCJThDJTg5TA==\",\"forbranch\":\"3.10\",\"forversion\":\"2020110901.04\",\"updates\":{\"core\":[{\"version\":2021042700,\"release\":\"3.11dev+ (Build: 20210427)\",\"branch\":\"3.11\",\"maturity\":50,\"url\":\"https:\\/\\/download.moodle.org\",\"download\":\"https:\\/\\/download.moodle.org\\/download.php\\/direct\\/stable311\\/moodle-latest-311.zip\"},{\"version\":2020110903.07,\"release\":\"3.10.3+ (Build: 20210427)\",\"branch\":\"3.10\",\"maturity\":200,\"url\":\"https:\\/\\/download.moodle.org\",\"download\":\"https:\\/\\/download.moodle.org\\/download.php\\/direct\\/stable310\\/moodle-latest-310.zip\"},{\"version\":2021052500.88,\"release\":\"4.0dev (Build: 20210427)\",\"branch\":\"4.00\",\"maturity\":50,\"url\":\"https:\\/\\/download.moodle.org\",\"download\":\"https:\\/\\/download.moodle.org\\/download.php\\/direct\\/moodle\\/moodle-latest.zip\"}],\"mod_customcert\":[{\"version\":\"2020110900\",\"release\":\"3.10.0\",\"maturity\":200,\"url\":\"https:\\/\\/moodle.org\\/plugins\\/pluginversion.php?id=22980\",\"download\":\"https:\\/\\/moodle.org\\/plugins\\/download.php\\/22980\\/mod_customcert_moodle310_2020110900.zip\",\"downloadmd5\":\"e1fc30a97ea4b1f39f18302cd3711b08\"}]}}'),(1947,'customcert','verifycertificate',''),(1948,'customcert','managetemplates',''),(1949,'customcert','uploadimage',''),(1950,'customcert','verifyallcertificates','0'),(1951,'customcert','showposxy','0'),(1952,'customcert','emailstudents','0'),(1953,'customcert','emailteachers','0'),(1954,'customcert','emailothers',''),(1955,'customcert','verifyany','0'),(1956,'customcert','requiredtime','0'),(1957,'customcert','protection_print','0'),(1958,'customcert','protection_modify','0'),(1959,'customcert','protection_copy','0'); +/*!40000 ALTER TABLE `mdl_config_plugins` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_contentbank_content` +-- + +DROP TABLE IF EXISTS `mdl_contentbank_content`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_contentbank_content` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `contenttype` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `contextid` bigint(10) NOT NULL, + `instanceid` bigint(10) DEFAULT NULL, + `configdata` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `usercreated` bigint(10) NOT NULL, + `usermodified` bigint(10) DEFAULT NULL, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_contcont_nam_ix` (`name`), + KEY `mdl_contcont_conconins_ix` (`contextid`,`contenttype`,`instanceid`), + KEY `mdl_contcont_con_ix` (`contextid`), + KEY `mdl_contcont_use_ix` (`usermodified`), + KEY `mdl_contcont_use2_ix` (`usercreated`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table stores content data in the content bank.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_contentbank_content` +-- + +LOCK TABLES `mdl_contentbank_content` WRITE; +/*!40000 ALTER TABLE `mdl_contentbank_content` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_contentbank_content` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_context` +-- + +DROP TABLE IF EXISTS `mdl_context`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_context` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `contextlevel` bigint(10) NOT NULL DEFAULT 0, + `instanceid` bigint(10) NOT NULL DEFAULT 0, + `path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `depth` tinyint(2) NOT NULL DEFAULT 0, + `locked` tinyint(2) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_cont_conins_uix` (`contextlevel`,`instanceid`), + KEY `mdl_cont_ins_ix` (`instanceid`), + KEY `mdl_cont_pat_ix` (`path`) +) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='one of these must be set'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_context` +-- + +LOCK TABLES `mdl_context` WRITE; +/*!40000 ALTER TABLE `mdl_context` DISABLE KEYS */; +INSERT INTO `mdl_context` VALUES (1,10,0,'/1',1,0),(2,50,1,'/1/2',2,0),(3,40,1,'/1/3',2,0),(4,30,1,'/1/4',2,0),(5,30,2,'/1/5',2,0),(6,80,1,'/1/6',2,0),(7,80,2,'/1/7',2,0),(8,80,3,'/1/8',2,0),(9,80,4,'/1/9',2,0),(10,80,5,'/1/10',2,0),(11,80,6,'/1/11',2,0),(12,80,7,'/1/12',2,0),(13,80,8,'/1/13',2,0),(14,80,9,'/1/14',2,0),(15,80,10,'/1/15',2,0),(25,30,3,'/1/25',2,0),(26,30,4,'/1/26',2,0),(27,30,5,'/1/27',2,0),(28,30,6,'/1/28',2,0),(29,80,20,'/1/29',2,0),(30,80,21,'/1/5/30',3,0),(31,80,22,'/1/5/31',3,0),(32,80,23,'/1/5/32',3,0),(33,80,24,'/1/5/33',3,0),(34,80,25,'/1/5/34',3,0),(35,80,26,'/1/5/35',3,0),(36,80,27,'/1/5/36',3,0),(37,80,28,'/1/5/37',3,0),(38,80,29,'/1/5/38',3,0),(39,80,30,'/1/5/39',3,0); +/*!40000 ALTER TABLE `mdl_context` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_context_temp` +-- + +DROP TABLE IF EXISTS `mdl_context_temp`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_context_temp` ( + `id` bigint(10) NOT NULL, + `path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `depth` tinyint(2) NOT NULL, + `locked` tinyint(2) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Used by build_context_path() in upgrade and cron to keep con'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_context_temp` +-- + +LOCK TABLES `mdl_context_temp` WRITE; +/*!40000 ALTER TABLE `mdl_context_temp` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_context_temp` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_course` +-- + +DROP TABLE IF EXISTS `mdl_course`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_course` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `category` bigint(10) NOT NULL DEFAULT 0, + `sortorder` bigint(10) NOT NULL DEFAULT 0, + `fullname` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `shortname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `summary` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `summaryformat` tinyint(2) NOT NULL DEFAULT 0, + `format` varchar(21) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'topics', + `showgrades` tinyint(2) NOT NULL DEFAULT 1, + `newsitems` mediumint(5) NOT NULL DEFAULT 1, + `startdate` bigint(10) NOT NULL DEFAULT 0, + `enddate` bigint(10) NOT NULL DEFAULT 0, + `relativedatesmode` tinyint(1) NOT NULL DEFAULT 0, + `marker` bigint(10) NOT NULL DEFAULT 0, + `maxbytes` bigint(10) NOT NULL DEFAULT 0, + `legacyfiles` smallint(4) NOT NULL DEFAULT 0, + `showreports` smallint(4) NOT NULL DEFAULT 0, + `visible` tinyint(1) NOT NULL DEFAULT 1, + `visibleold` tinyint(1) NOT NULL DEFAULT 1, + `downloadcontent` tinyint(1) DEFAULT NULL, + `groupmode` smallint(4) NOT NULL DEFAULT 0, + `groupmodeforce` smallint(4) NOT NULL DEFAULT 0, + `defaultgroupingid` bigint(10) NOT NULL DEFAULT 0, + `lang` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `calendartype` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `theme` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `requested` tinyint(1) NOT NULL DEFAULT 0, + `enablecompletion` tinyint(1) NOT NULL DEFAULT 0, + `completionnotify` tinyint(1) NOT NULL DEFAULT 0, + `cacherev` bigint(10) NOT NULL DEFAULT 0, + `originalcourseid` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_cour_cat_ix` (`category`), + KEY `mdl_cour_idn_ix` (`idnumber`), + KEY `mdl_cour_sho_ix` (`shortname`), + KEY `mdl_cour_sor_ix` (`sortorder`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Central course table'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_course` +-- + +LOCK TABLES `mdl_course` WRITE; +/*!40000 ALTER TABLE `mdl_course` DISABLE KEYS */; +INSERT INTO `mdl_course` VALUES (1,0,0,'full site name','short site name','','',0,'site',1,3,0,0,0,0,0,0,0,1,1,NULL,0,0,0,'','','',1619623682,1619623824,0,0,0,1619625660,NULL); +/*!40000 ALTER TABLE `mdl_course` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_course_categories` +-- + +DROP TABLE IF EXISTS `mdl_course_categories`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_course_categories` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` tinyint(2) NOT NULL DEFAULT 0, + `parent` bigint(10) NOT NULL DEFAULT 0, + `sortorder` bigint(10) NOT NULL DEFAULT 0, + `coursecount` bigint(10) NOT NULL DEFAULT 0, + `visible` tinyint(1) NOT NULL DEFAULT 1, + `visibleold` tinyint(1) NOT NULL DEFAULT 1, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `depth` bigint(10) NOT NULL DEFAULT 0, + `path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `theme` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_courcate_par_ix` (`parent`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Course categories'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_course_categories` +-- + +LOCK TABLES `mdl_course_categories` WRITE; +/*!40000 ALTER TABLE `mdl_course_categories` DISABLE KEYS */; +INSERT INTO `mdl_course_categories` VALUES (1,'Miscellaneous',NULL,NULL,0,0,10000,0,1,1,1619623682,1,'/1',NULL); +/*!40000 ALTER TABLE `mdl_course_categories` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_course_completion_aggr_methd` +-- + +DROP TABLE IF EXISTS `mdl_course_completion_aggr_methd`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_course_completion_aggr_methd` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `criteriatype` bigint(10) DEFAULT NULL, + `method` tinyint(1) NOT NULL DEFAULT 0, + `value` decimal(10,5) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_courcompaggrmeth_coucr_uix` (`course`,`criteriatype`), + KEY `mdl_courcompaggrmeth_cou_ix` (`course`), + KEY `mdl_courcompaggrmeth_cri_ix` (`criteriatype`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Course completion aggregation methods for criteria'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_course_completion_aggr_methd` +-- + +LOCK TABLES `mdl_course_completion_aggr_methd` WRITE; +/*!40000 ALTER TABLE `mdl_course_completion_aggr_methd` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_course_completion_aggr_methd` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_course_completion_crit_compl` +-- + +DROP TABLE IF EXISTS `mdl_course_completion_crit_compl`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_course_completion_crit_compl` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL DEFAULT 0, + `course` bigint(10) NOT NULL DEFAULT 0, + `criteriaid` bigint(10) NOT NULL DEFAULT 0, + `gradefinal` decimal(10,5) DEFAULT NULL, + `unenroled` bigint(10) DEFAULT NULL, + `timecompleted` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_courcompcritcomp_useco_uix` (`userid`,`course`,`criteriaid`), + KEY `mdl_courcompcritcomp_use_ix` (`userid`), + KEY `mdl_courcompcritcomp_cou_ix` (`course`), + KEY `mdl_courcompcritcomp_cri_ix` (`criteriaid`), + KEY `mdl_courcompcritcomp_tim_ix` (`timecompleted`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Course completion user records'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_course_completion_crit_compl` +-- + +LOCK TABLES `mdl_course_completion_crit_compl` WRITE; +/*!40000 ALTER TABLE `mdl_course_completion_crit_compl` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_course_completion_crit_compl` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_course_completion_criteria` +-- + +DROP TABLE IF EXISTS `mdl_course_completion_criteria`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_course_completion_criteria` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `criteriatype` bigint(10) NOT NULL DEFAULT 0, + `module` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `moduleinstance` bigint(10) DEFAULT NULL, + `courseinstance` bigint(10) DEFAULT NULL, + `enrolperiod` bigint(10) DEFAULT NULL, + `timeend` bigint(10) DEFAULT NULL, + `gradepass` decimal(10,5) DEFAULT NULL, + `role` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_courcompcrit_cou_ix` (`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Course completion criteria'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_course_completion_criteria` +-- + +LOCK TABLES `mdl_course_completion_criteria` WRITE; +/*!40000 ALTER TABLE `mdl_course_completion_criteria` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_course_completion_criteria` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_course_completion_defaults` +-- + +DROP TABLE IF EXISTS `mdl_course_completion_defaults`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_course_completion_defaults` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL, + `module` bigint(10) NOT NULL, + `completion` tinyint(1) NOT NULL DEFAULT 0, + `completionview` tinyint(1) NOT NULL DEFAULT 0, + `completionusegrade` tinyint(1) NOT NULL DEFAULT 0, + `completionexpected` bigint(10) NOT NULL DEFAULT 0, + `customrules` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_courcompdefa_coumod_uix` (`course`,`module`), + KEY `mdl_courcompdefa_mod_ix` (`module`), + KEY `mdl_courcompdefa_cou_ix` (`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Default settings for activities completion'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_course_completion_defaults` +-- + +LOCK TABLES `mdl_course_completion_defaults` WRITE; +/*!40000 ALTER TABLE `mdl_course_completion_defaults` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_course_completion_defaults` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_course_completions` +-- + +DROP TABLE IF EXISTS `mdl_course_completions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_course_completions` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL DEFAULT 0, + `course` bigint(10) NOT NULL DEFAULT 0, + `timeenrolled` bigint(10) NOT NULL DEFAULT 0, + `timestarted` bigint(10) NOT NULL DEFAULT 0, + `timecompleted` bigint(10) DEFAULT NULL, + `reaggregate` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_courcomp_usecou_uix` (`userid`,`course`), + KEY `mdl_courcomp_use_ix` (`userid`), + KEY `mdl_courcomp_cou_ix` (`course`), + KEY `mdl_courcomp_tim_ix` (`timecompleted`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Course completion records'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_course_completions` +-- + +LOCK TABLES `mdl_course_completions` WRITE; +/*!40000 ALTER TABLE `mdl_course_completions` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_course_completions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_course_format_options` +-- + +DROP TABLE IF EXISTS `mdl_course_format_options`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_course_format_options` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `courseid` bigint(10) NOT NULL, + `format` varchar(21) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `sectionid` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_courformopti_couforsec_uix` (`courseid`,`format`,`sectionid`,`name`), + KEY `mdl_courformopti_cou_ix` (`courseid`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores format-specific options for the course or course sect'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_course_format_options` +-- + +LOCK TABLES `mdl_course_format_options` WRITE; +/*!40000 ALTER TABLE `mdl_course_format_options` DISABLE KEYS */; +INSERT INTO `mdl_course_format_options` VALUES (1,1,'site',0,'numsections','1'); +/*!40000 ALTER TABLE `mdl_course_format_options` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_course_modules` +-- + +DROP TABLE IF EXISTS `mdl_course_modules`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_course_modules` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `module` bigint(10) NOT NULL DEFAULT 0, + `instance` bigint(10) NOT NULL DEFAULT 0, + `section` bigint(10) NOT NULL DEFAULT 0, + `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `added` bigint(10) NOT NULL DEFAULT 0, + `score` smallint(4) NOT NULL DEFAULT 0, + `indent` mediumint(5) NOT NULL DEFAULT 0, + `visible` tinyint(1) NOT NULL DEFAULT 1, + `visibleoncoursepage` tinyint(1) NOT NULL DEFAULT 1, + `visibleold` tinyint(1) NOT NULL DEFAULT 1, + `groupmode` smallint(4) NOT NULL DEFAULT 0, + `groupingid` bigint(10) NOT NULL DEFAULT 0, + `completion` tinyint(1) NOT NULL DEFAULT 0, + `completiongradeitemnumber` bigint(10) DEFAULT NULL, + `completionview` tinyint(1) NOT NULL DEFAULT 0, + `completionexpected` bigint(10) NOT NULL DEFAULT 0, + `showdescription` tinyint(1) NOT NULL DEFAULT 0, + `availability` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `deletioninprogress` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_courmodu_vis_ix` (`visible`), + KEY `mdl_courmodu_cou_ix` (`course`), + KEY `mdl_courmodu_mod_ix` (`module`), + KEY `mdl_courmodu_ins_ix` (`instance`), + KEY `mdl_courmodu_idncou_ix` (`idnumber`,`course`), + KEY `mdl_courmodu_gro_ix` (`groupingid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='course_modules table retrofitted from MySQL'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_course_modules` +-- + +LOCK TABLES `mdl_course_modules` WRITE; +/*!40000 ALTER TABLE `mdl_course_modules` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_course_modules` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_course_modules_completion` +-- + +DROP TABLE IF EXISTS `mdl_course_modules_completion`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_course_modules_completion` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `coursemoduleid` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `completionstate` tinyint(1) NOT NULL, + `viewed` tinyint(1) DEFAULT NULL, + `overrideby` bigint(10) DEFAULT NULL, + `timemodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_courmoducomp_usecou_uix` (`userid`,`coursemoduleid`), + KEY `mdl_courmoducomp_cou_ix` (`coursemoduleid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the completion state (completed or not completed, etc'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_course_modules_completion` +-- + +LOCK TABLES `mdl_course_modules_completion` WRITE; +/*!40000 ALTER TABLE `mdl_course_modules_completion` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_course_modules_completion` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_course_published` +-- + +DROP TABLE IF EXISTS `mdl_course_published`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_course_published` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `huburl` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `courseid` bigint(10) NOT NULL, + `timepublished` bigint(10) NOT NULL, + `enrollable` tinyint(1) NOT NULL DEFAULT 1, + `hubcourseid` bigint(10) NOT NULL, + `status` tinyint(1) DEFAULT 0, + `timechecked` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Information about how and when an local courses were publish'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_course_published` +-- + +LOCK TABLES `mdl_course_published` WRITE; +/*!40000 ALTER TABLE `mdl_course_published` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_course_published` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_course_request` +-- + +DROP TABLE IF EXISTS `mdl_course_request`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_course_request` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `fullname` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `shortname` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `summary` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `summaryformat` tinyint(2) NOT NULL DEFAULT 0, + `category` bigint(10) NOT NULL DEFAULT 0, + `reason` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `requester` bigint(10) NOT NULL DEFAULT 0, + `password` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `mdl_courrequ_sho_ix` (`shortname`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='course requests'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_course_request` +-- + +LOCK TABLES `mdl_course_request` WRITE; +/*!40000 ALTER TABLE `mdl_course_request` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_course_request` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_course_sections` +-- + +DROP TABLE IF EXISTS `mdl_course_sections`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_course_sections` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `section` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `summary` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `summaryformat` tinyint(2) NOT NULL DEFAULT 0, + `sequence` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `visible` tinyint(1) NOT NULL DEFAULT 1, + `availability` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_coursect_cousec_uix` (`course`,`section`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='to define the sections for each course'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_course_sections` +-- + +LOCK TABLES `mdl_course_sections` WRITE; +/*!40000 ALTER TABLE `mdl_course_sections` DISABLE KEYS */; +INSERT INTO `mdl_course_sections` VALUES (1,1,1,'','

Show organization logo. Show information about who the Well Device is managed by and what its purpose is and if necessary, contact information.

\r\n

To access resources from this Well Device, go here.

',1,'',1,'{\"op\":\"&\",\"c\":[],\"showc\":[]}',1619624739); +/*!40000 ALTER TABLE `mdl_course_sections` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_customcert` +-- + +DROP TABLE IF EXISTS `mdl_customcert`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_customcert` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `templateid` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `introformat` smallint(4) NOT NULL DEFAULT 0, + `requiredtime` bigint(10) NOT NULL DEFAULT 0, + `verifyany` bigint(10) NOT NULL DEFAULT 0, + `emailstudents` tinyint(1) NOT NULL DEFAULT 0, + `emailteachers` tinyint(1) NOT NULL DEFAULT 0, + `emailothers` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `protection` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_cust_tem_ix` (`templateid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines customcerts'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_customcert` +-- + +LOCK TABLES `mdl_customcert` WRITE; +/*!40000 ALTER TABLE `mdl_customcert` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_customcert` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_customcert_elements` +-- + +DROP TABLE IF EXISTS `mdl_customcert_elements`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_customcert_elements` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `pageid` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `element` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `data` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `font` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `fontsize` bigint(10) DEFAULT NULL, + `colour` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `posx` bigint(10) DEFAULT NULL, + `posy` bigint(10) DEFAULT NULL, + `width` bigint(10) DEFAULT NULL, + `refpoint` smallint(4) DEFAULT NULL, + `sequence` bigint(10) DEFAULT NULL, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_custelem_pag_ix` (`pageid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the elements for a given page'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_customcert_elements` +-- + +LOCK TABLES `mdl_customcert_elements` WRITE; +/*!40000 ALTER TABLE `mdl_customcert_elements` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_customcert_elements` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_customcert_issues` +-- + +DROP TABLE IF EXISTS `mdl_customcert_issues`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_customcert_issues` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL DEFAULT 0, + `customcertid` bigint(10) NOT NULL DEFAULT 0, + `code` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `emailed` tinyint(1) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_custissu_cus_ix` (`customcertid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores each issue of a customcert'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_customcert_issues` +-- + +LOCK TABLES `mdl_customcert_issues` WRITE; +/*!40000 ALTER TABLE `mdl_customcert_issues` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_customcert_issues` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_customcert_pages` +-- + +DROP TABLE IF EXISTS `mdl_customcert_pages`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_customcert_pages` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `templateid` bigint(10) NOT NULL DEFAULT 0, + `width` bigint(10) NOT NULL DEFAULT 0, + `height` bigint(10) NOT NULL DEFAULT 0, + `leftmargin` bigint(10) NOT NULL DEFAULT 0, + `rightmargin` bigint(10) NOT NULL DEFAULT 0, + `sequence` bigint(10) DEFAULT NULL, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_custpage_tem_ix` (`templateid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores each page of a custom cert'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_customcert_pages` +-- + +LOCK TABLES `mdl_customcert_pages` WRITE; +/*!40000 ALTER TABLE `mdl_customcert_pages` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_customcert_pages` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_customcert_templates` +-- + +DROP TABLE IF EXISTS `mdl_customcert_templates`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_customcert_templates` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `contextid` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_custtemp_con_ix` (`contextid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores each customcert template'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_customcert_templates` +-- + +LOCK TABLES `mdl_customcert_templates` WRITE; +/*!40000 ALTER TABLE `mdl_customcert_templates` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_customcert_templates` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_customfield_category` +-- + +DROP TABLE IF EXISTS `mdl_customfield_category`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_customfield_category` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(400) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` bigint(10) DEFAULT NULL, + `sortorder` bigint(10) DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `area` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `itemid` bigint(10) NOT NULL DEFAULT 0, + `contextid` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_custcate_comareitesor_ix` (`component`,`area`,`itemid`,`sortorder`), + KEY `mdl_custcate_con_ix` (`contextid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='core_customfield category table'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_customfield_category` +-- + +LOCK TABLES `mdl_customfield_category` WRITE; +/*!40000 ALTER TABLE `mdl_customfield_category` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_customfield_category` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_customfield_data` +-- + +DROP TABLE IF EXISTS `mdl_customfield_data`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_customfield_data` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `fieldid` bigint(10) NOT NULL, + `instanceid` bigint(10) NOT NULL, + `intvalue` bigint(10) DEFAULT NULL, + `decvalue` decimal(10,5) DEFAULT NULL, + `shortcharvalue` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `charvalue` varchar(1333) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `valueformat` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `contextid` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_custdata_insfie_uix` (`instanceid`,`fieldid`), + KEY `mdl_custdata_fieint_ix` (`fieldid`,`intvalue`), + KEY `mdl_custdata_fiesho_ix` (`fieldid`,`shortcharvalue`), + KEY `mdl_custdata_fiedec_ix` (`fieldid`,`decvalue`), + KEY `mdl_custdata_fie_ix` (`fieldid`), + KEY `mdl_custdata_con_ix` (`contextid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='core_customfield data table'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_customfield_data` +-- + +LOCK TABLES `mdl_customfield_data` WRITE; +/*!40000 ALTER TABLE `mdl_customfield_data` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_customfield_data` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_customfield_field` +-- + +DROP TABLE IF EXISTS `mdl_customfield_field`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_customfield_field` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `shortname` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `name` varchar(400) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` bigint(10) DEFAULT NULL, + `sortorder` bigint(10) DEFAULT NULL, + `categoryid` bigint(10) DEFAULT NULL, + `configdata` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_custfiel_catsor_ix` (`categoryid`,`sortorder`), + KEY `mdl_custfiel_cat_ix` (`categoryid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='core_customfield field table'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_customfield_field` +-- + +LOCK TABLES `mdl_customfield_field` WRITE; +/*!40000 ALTER TABLE `mdl_customfield_field` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_customfield_field` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_data` +-- + +DROP TABLE IF EXISTS `mdl_data`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_data` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `introformat` smallint(4) NOT NULL DEFAULT 0, + `comments` smallint(4) NOT NULL DEFAULT 0, + `timeavailablefrom` bigint(10) NOT NULL DEFAULT 0, + `timeavailableto` bigint(10) NOT NULL DEFAULT 0, + `timeviewfrom` bigint(10) NOT NULL DEFAULT 0, + `timeviewto` bigint(10) NOT NULL DEFAULT 0, + `requiredentries` int(8) NOT NULL DEFAULT 0, + `requiredentriestoview` int(8) NOT NULL DEFAULT 0, + `maxentries` int(8) NOT NULL DEFAULT 0, + `rssarticles` smallint(4) NOT NULL DEFAULT 0, + `singletemplate` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `listtemplate` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `listtemplateheader` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `listtemplatefooter` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `addtemplate` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `rsstemplate` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `rsstitletemplate` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `csstemplate` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `jstemplate` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `asearchtemplate` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `approval` smallint(4) NOT NULL DEFAULT 0, + `manageapproved` smallint(4) NOT NULL DEFAULT 1, + `scale` bigint(10) NOT NULL DEFAULT 0, + `assessed` bigint(10) NOT NULL DEFAULT 0, + `assesstimestart` bigint(10) NOT NULL DEFAULT 0, + `assesstimefinish` bigint(10) NOT NULL DEFAULT 0, + `defaultsort` bigint(10) NOT NULL DEFAULT 0, + `defaultsortdir` smallint(4) NOT NULL DEFAULT 0, + `editany` smallint(4) NOT NULL DEFAULT 0, + `notification` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `config` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `completionentries` bigint(10) DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_data_cou_ix` (`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='all database activities'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_data` +-- + +LOCK TABLES `mdl_data` WRITE; +/*!40000 ALTER TABLE `mdl_data` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_data` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_data_content` +-- + +DROP TABLE IF EXISTS `mdl_data_content`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_data_content` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `fieldid` bigint(10) NOT NULL DEFAULT 0, + `recordid` bigint(10) NOT NULL DEFAULT 0, + `content` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `content1` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `content2` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `content3` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `content4` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_datacont_rec_ix` (`recordid`), + KEY `mdl_datacont_fie_ix` (`fieldid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='the content introduced in each record/fields'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_data_content` +-- + +LOCK TABLES `mdl_data_content` WRITE; +/*!40000 ALTER TABLE `mdl_data_content` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_data_content` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_data_fields` +-- + +DROP TABLE IF EXISTS `mdl_data_fields`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_data_fields` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `dataid` bigint(10) NOT NULL DEFAULT 0, + `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `required` tinyint(1) NOT NULL DEFAULT 0, + `param1` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `param2` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `param3` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `param4` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `param5` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `param6` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `param7` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `param8` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `param9` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `param10` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_datafiel_typdat_ix` (`type`,`dataid`), + KEY `mdl_datafiel_dat_ix` (`dataid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='every field available'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_data_fields` +-- + +LOCK TABLES `mdl_data_fields` WRITE; +/*!40000 ALTER TABLE `mdl_data_fields` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_data_fields` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_data_records` +-- + +DROP TABLE IF EXISTS `mdl_data_records`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_data_records` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL DEFAULT 0, + `groupid` bigint(10) NOT NULL DEFAULT 0, + `dataid` bigint(10) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `approved` smallint(4) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_datareco_dat_ix` (`dataid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='every record introduced'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_data_records` +-- + +LOCK TABLES `mdl_data_records` WRITE; +/*!40000 ALTER TABLE `mdl_data_records` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_data_records` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_editor_atto_autosave` +-- + +DROP TABLE IF EXISTS `mdl_editor_atto_autosave`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_editor_atto_autosave` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `elementid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `contextid` bigint(10) NOT NULL, + `pagehash` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `userid` bigint(10) NOT NULL, + `drafttext` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `draftid` bigint(10) DEFAULT NULL, + `pageinstance` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_editattoauto_eleconuse_uix` (`elementid`,`contextid`,`userid`,`pagehash`) +) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Draft text that is auto-saved every 5 seconds while an edito'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_editor_atto_autosave` +-- + +LOCK TABLES `mdl_editor_atto_autosave` WRITE; +/*!40000 ALTER TABLE `mdl_editor_atto_autosave` DISABLE KEYS */; +INSERT INTO `mdl_editor_atto_autosave` VALUES (6,'id_description_editor',28,'7a56ee3a8bd4fe66fcdc6871f1059257f8f915ad',2,'',369145508,'yui_3_17_2_1_1619624509743_113',1619624511),(7,'id_s__summary',1,'70ad5e7f2e4520b6b8fc0d0a2c73d0dd809f4efd',2,'',-1,'yui_3_17_2_1_1619624605918_46',1619624609); +/*!40000 ALTER TABLE `mdl_editor_atto_autosave` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_enrol` +-- + +DROP TABLE IF EXISTS `mdl_enrol`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_enrol` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `enrol` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `status` bigint(10) NOT NULL DEFAULT 0, + `courseid` bigint(10) NOT NULL, + `sortorder` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `enrolperiod` bigint(10) DEFAULT 0, + `enrolstartdate` bigint(10) DEFAULT 0, + `enrolenddate` bigint(10) DEFAULT 0, + `expirynotify` tinyint(1) DEFAULT 0, + `expirythreshold` bigint(10) DEFAULT 0, + `notifyall` tinyint(1) DEFAULT 0, + `password` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `cost` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `currency` varchar(3) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `roleid` bigint(10) DEFAULT 0, + `customint1` bigint(10) DEFAULT NULL, + `customint2` bigint(10) DEFAULT NULL, + `customint3` bigint(10) DEFAULT NULL, + `customint4` bigint(10) DEFAULT NULL, + `customint5` bigint(10) DEFAULT NULL, + `customint6` bigint(10) DEFAULT NULL, + `customint7` bigint(10) DEFAULT NULL, + `customint8` bigint(10) DEFAULT NULL, + `customchar1` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `customchar2` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `customchar3` varchar(1333) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `customdec1` decimal(12,7) DEFAULT NULL, + `customdec2` decimal(12,7) DEFAULT NULL, + `customtext1` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `customtext2` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `customtext3` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `customtext4` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_enro_enr_ix` (`enrol`), + KEY `mdl_enro_cou_ix` (`courseid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Instances of enrolment plugins used in courses, fields marke'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_enrol` +-- + +LOCK TABLES `mdl_enrol` WRITE; +/*!40000 ALTER TABLE `mdl_enrol` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_enrol` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_enrol_flatfile` +-- + +DROP TABLE IF EXISTS `mdl_enrol_flatfile`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_enrol_flatfile` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `action` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `roleid` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `courseid` bigint(10) NOT NULL, + `timestart` bigint(10) NOT NULL DEFAULT 0, + `timeend` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_enroflat_cou_ix` (`courseid`), + KEY `mdl_enroflat_use_ix` (`userid`), + KEY `mdl_enroflat_rol_ix` (`roleid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='enrol_flatfile table retrofitted from MySQL'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_enrol_flatfile` +-- + +LOCK TABLES `mdl_enrol_flatfile` WRITE; +/*!40000 ALTER TABLE `mdl_enrol_flatfile` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_enrol_flatfile` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_enrol_lti_lti2_consumer` +-- + +DROP TABLE IF EXISTS `mdl_enrol_lti_lti2_consumer`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_enrol_lti_lti2_consumer` ( + `id` bigint(11) NOT NULL AUTO_INCREMENT, + `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `consumerkey256` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `consumerkey` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `secret` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `ltiversion` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `consumername` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `consumerversion` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `consumerguid` varchar(1024) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `profile` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `toolproxy` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `settings` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `protected` tinyint(1) NOT NULL, + `enabled` tinyint(1) NOT NULL, + `enablefrom` bigint(10) DEFAULT NULL, + `enableuntil` bigint(10) DEFAULT NULL, + `lastaccess` bigint(10) DEFAULT NULL, + `created` bigint(10) NOT NULL, + `updated` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_enroltilti2cons_con_uix` (`consumerkey256`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='LTI consumers interacting with moodle'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_enrol_lti_lti2_consumer` +-- + +LOCK TABLES `mdl_enrol_lti_lti2_consumer` WRITE; +/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_consumer` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_consumer` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_enrol_lti_lti2_context` +-- + +DROP TABLE IF EXISTS `mdl_enrol_lti_lti2_context`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_enrol_lti_lti2_context` ( + `id` bigint(11) NOT NULL AUTO_INCREMENT, + `consumerid` bigint(11) NOT NULL, + `lticontextkey` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `type` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `settings` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `created` bigint(10) NOT NULL, + `updated` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_enroltilti2cont_con_ix` (`consumerid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Information about a specific LTI contexts from the consumers'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_enrol_lti_lti2_context` +-- + +LOCK TABLES `mdl_enrol_lti_lti2_context` WRITE; +/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_context` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_context` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_enrol_lti_lti2_nonce` +-- + +DROP TABLE IF EXISTS `mdl_enrol_lti_lti2_nonce`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_enrol_lti_lti2_nonce` ( + `id` bigint(11) NOT NULL AUTO_INCREMENT, + `consumerid` bigint(11) NOT NULL, + `value` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `expires` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_enroltilti2nonc_con_ix` (`consumerid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Nonce used for authentication between moodle and a consumer'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_enrol_lti_lti2_nonce` +-- + +LOCK TABLES `mdl_enrol_lti_lti2_nonce` WRITE; +/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_nonce` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_nonce` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_enrol_lti_lti2_resource_link` +-- + +DROP TABLE IF EXISTS `mdl_enrol_lti_lti2_resource_link`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_enrol_lti_lti2_resource_link` ( + `id` bigint(11) NOT NULL AUTO_INCREMENT, + `contextid` bigint(11) DEFAULT NULL, + `consumerid` bigint(11) DEFAULT NULL, + `ltiresourcelinkkey` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `settings` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `primaryresourcelinkid` bigint(11) DEFAULT NULL, + `shareapproved` tinyint(1) DEFAULT NULL, + `created` bigint(10) NOT NULL, + `updated` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_enroltilti2resolink_con_ix` (`contextid`), + KEY `mdl_enroltilti2resolink_pri_ix` (`primaryresourcelinkid`), + KEY `mdl_enroltilti2resolink_co2_ix` (`consumerid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Link from the consumer to the tool'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_enrol_lti_lti2_resource_link` +-- + +LOCK TABLES `mdl_enrol_lti_lti2_resource_link` WRITE; +/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_resource_link` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_resource_link` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_enrol_lti_lti2_share_key` +-- + +DROP TABLE IF EXISTS `mdl_enrol_lti_lti2_share_key`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_enrol_lti_lti2_share_key` ( + `id` bigint(11) NOT NULL AUTO_INCREMENT, + `sharekey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `resourcelinkid` bigint(11) NOT NULL, + `autoapprove` tinyint(1) NOT NULL, + `expires` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_enroltilti2sharkey_sha_uix` (`sharekey`), + UNIQUE KEY `mdl_enroltilti2sharkey_res_uix` (`resourcelinkid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Resource link share key'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_enrol_lti_lti2_share_key` +-- + +LOCK TABLES `mdl_enrol_lti_lti2_share_key` WRITE; +/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_share_key` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_share_key` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_enrol_lti_lti2_tool_proxy` +-- + +DROP TABLE IF EXISTS `mdl_enrol_lti_lti2_tool_proxy`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_enrol_lti_lti2_tool_proxy` ( + `id` bigint(11) NOT NULL AUTO_INCREMENT, + `toolproxykey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `consumerid` bigint(11) NOT NULL, + `toolproxy` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `created` bigint(10) NOT NULL, + `updated` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_enroltilti2toolprox_to_uix` (`toolproxykey`), + KEY `mdl_enroltilti2toolprox_con_ix` (`consumerid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='A tool proxy between moodle and a consumer'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_enrol_lti_lti2_tool_proxy` +-- + +LOCK TABLES `mdl_enrol_lti_lti2_tool_proxy` WRITE; +/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_tool_proxy` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_tool_proxy` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_enrol_lti_lti2_user_result` +-- + +DROP TABLE IF EXISTS `mdl_enrol_lti_lti2_user_result`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_enrol_lti_lti2_user_result` ( + `id` bigint(11) NOT NULL AUTO_INCREMENT, + `resourcelinkid` bigint(11) NOT NULL, + `ltiuserkey` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `ltiresultsourcedid` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `created` bigint(10) NOT NULL, + `updated` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_enroltilti2userresu_res_ix` (`resourcelinkid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Results for each user for each resource link'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_enrol_lti_lti2_user_result` +-- + +LOCK TABLES `mdl_enrol_lti_lti2_user_result` WRITE; +/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_user_result` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_user_result` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_enrol_lti_tool_consumer_map` +-- + +DROP TABLE IF EXISTS `mdl_enrol_lti_tool_consumer_map`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_enrol_lti_tool_consumer_map` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `toolid` bigint(11) NOT NULL, + `consumerid` bigint(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_enroltitoolconsmap_too_ix` (`toolid`), + KEY `mdl_enroltitoolconsmap_con_ix` (`consumerid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Table that maps the published tool to tool consumers.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_enrol_lti_tool_consumer_map` +-- + +LOCK TABLES `mdl_enrol_lti_tool_consumer_map` WRITE; +/*!40000 ALTER TABLE `mdl_enrol_lti_tool_consumer_map` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_enrol_lti_tool_consumer_map` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_enrol_lti_tools` +-- + +DROP TABLE IF EXISTS `mdl_enrol_lti_tools`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_enrol_lti_tools` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `enrolid` bigint(10) NOT NULL, + `contextid` bigint(10) NOT NULL, + `institution` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `lang` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', + `timezone` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '99', + `maxenrolled` bigint(10) NOT NULL DEFAULT 0, + `maildisplay` tinyint(2) NOT NULL DEFAULT 2, + `city` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `country` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `gradesync` tinyint(1) NOT NULL DEFAULT 0, + `gradesynccompletion` tinyint(1) NOT NULL DEFAULT 0, + `membersync` tinyint(1) NOT NULL DEFAULT 0, + `membersyncmode` tinyint(1) NOT NULL DEFAULT 0, + `roleinstructor` bigint(10) NOT NULL, + `rolelearner` bigint(10) NOT NULL, + `secret` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_enroltitool_enr_ix` (`enrolid`), + KEY `mdl_enroltitool_con_ix` (`contextid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='List of tools provided to the remote system'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_enrol_lti_tools` +-- + +LOCK TABLES `mdl_enrol_lti_tools` WRITE; +/*!40000 ALTER TABLE `mdl_enrol_lti_tools` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_enrol_lti_tools` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_enrol_lti_users` +-- + +DROP TABLE IF EXISTS `mdl_enrol_lti_users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_enrol_lti_users` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL, + `toolid` bigint(10) NOT NULL, + `serviceurl` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `sourceid` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `consumerkey` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `consumersecret` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `membershipsurl` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `membershipsid` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `lastgrade` decimal(10,5) DEFAULT NULL, + `lastaccess` bigint(10) DEFAULT NULL, + `timecreated` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_enroltiuser_use_ix` (`userid`), + KEY `mdl_enroltiuser_too_ix` (`toolid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='User access log and gradeback data'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_enrol_lti_users` +-- + +LOCK TABLES `mdl_enrol_lti_users` WRITE; +/*!40000 ALTER TABLE `mdl_enrol_lti_users` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_enrol_lti_users` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_enrol_paypal` +-- + +DROP TABLE IF EXISTS `mdl_enrol_paypal`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_enrol_paypal` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `business` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `receiver_email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `receiver_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `item_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `courseid` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `instanceid` bigint(10) NOT NULL DEFAULT 0, + `memo` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `tax` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `option_name1` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `option_selection1_x` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `option_name2` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `option_selection2_x` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `payment_status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `pending_reason` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `reason_code` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `txn_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `parent_txn_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `payment_type` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `timeupdated` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_enropayp_bus_ix` (`business`), + KEY `mdl_enropayp_rec_ix` (`receiver_email`), + KEY `mdl_enropayp_cou_ix` (`courseid`), + KEY `mdl_enropayp_use_ix` (`userid`), + KEY `mdl_enropayp_ins_ix` (`instanceid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Holds all known information about PayPal transactions'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_enrol_paypal` +-- + +LOCK TABLES `mdl_enrol_paypal` WRITE; +/*!40000 ALTER TABLE `mdl_enrol_paypal` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_enrol_paypal` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_event` +-- + +DROP TABLE IF EXISTS `mdl_event`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_event` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `format` smallint(4) NOT NULL DEFAULT 0, + `categoryid` bigint(10) NOT NULL DEFAULT 0, + `courseid` bigint(10) NOT NULL DEFAULT 0, + `groupid` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `repeatid` bigint(10) NOT NULL DEFAULT 0, + `component` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `modulename` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `instance` bigint(10) NOT NULL DEFAULT 0, + `type` smallint(4) NOT NULL DEFAULT 0, + `eventtype` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `timestart` bigint(10) NOT NULL DEFAULT 0, + `timeduration` bigint(10) NOT NULL DEFAULT 0, + `timesort` bigint(10) DEFAULT NULL, + `visible` smallint(4) NOT NULL DEFAULT 1, + `uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `sequence` bigint(10) NOT NULL DEFAULT 1, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `subscriptionid` bigint(10) DEFAULT NULL, + `priority` bigint(10) DEFAULT NULL, + `location` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_even_cou_ix` (`courseid`), + KEY `mdl_even_use_ix` (`userid`), + KEY `mdl_even_tim_ix` (`timestart`), + KEY `mdl_even_tim2_ix` (`timeduration`), + KEY `mdl_even_uui_ix` (`uuid`), + KEY `mdl_even_typtim_ix` (`type`,`timesort`), + KEY `mdl_even_grocoucatvisuse_ix` (`groupid`,`courseid`,`categoryid`,`visible`,`userid`), + KEY `mdl_even_eve_ix` (`eventtype`), + KEY `mdl_even_comeveins_ix` (`component`,`eventtype`,`instance`), + KEY `mdl_even_modinseve_ix` (`modulename`,`instance`,`eventtype`), + KEY `mdl_even_cat_ix` (`categoryid`), + KEY `mdl_even_sub_ix` (`subscriptionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='For everything with a time associated to it'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_event` +-- + +LOCK TABLES `mdl_event` WRITE; +/*!40000 ALTER TABLE `mdl_event` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_event` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_event_subscriptions` +-- + +DROP TABLE IF EXISTS `mdl_event_subscriptions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_event_subscriptions` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `categoryid` bigint(10) NOT NULL DEFAULT 0, + `courseid` bigint(10) NOT NULL DEFAULT 0, + `groupid` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `eventtype` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `pollinterval` bigint(10) NOT NULL DEFAULT 0, + `lastupdated` bigint(10) DEFAULT NULL, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Tracks subscriptions to remote calendars.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_event_subscriptions` +-- + +LOCK TABLES `mdl_event_subscriptions` WRITE; +/*!40000 ALTER TABLE `mdl_event_subscriptions` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_event_subscriptions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_events_handlers` +-- + +DROP TABLE IF EXISTS `mdl_events_handlers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_events_handlers` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `eventname` varchar(166) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `component` varchar(166) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `handlerfile` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `handlerfunction` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `schedule` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `status` bigint(10) NOT NULL DEFAULT 0, + `internal` tinyint(2) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_evenhand_evecom_uix` (`eventname`,`component`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table is for storing which components requests what typ'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_events_handlers` +-- + +LOCK TABLES `mdl_events_handlers` WRITE; +/*!40000 ALTER TABLE `mdl_events_handlers` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_events_handlers` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_events_queue` +-- + +DROP TABLE IF EXISTS `mdl_events_queue`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_events_queue` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `eventdata` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `stackdump` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `userid` bigint(10) DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_evenqueu_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table is for storing queued events. It stores only one '; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_events_queue` +-- + +LOCK TABLES `mdl_events_queue` WRITE; +/*!40000 ALTER TABLE `mdl_events_queue` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_events_queue` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_events_queue_handlers` +-- + +DROP TABLE IF EXISTS `mdl_events_queue_handlers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_events_queue_handlers` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `queuedeventid` bigint(10) NOT NULL, + `handlerid` bigint(10) NOT NULL, + `status` bigint(10) DEFAULT NULL, + `errormessage` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timemodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_evenqueuhand_que_ix` (`queuedeventid`), + KEY `mdl_evenqueuhand_han_ix` (`handlerid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This is the list of queued handlers for processing. The even'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_events_queue_handlers` +-- + +LOCK TABLES `mdl_events_queue_handlers` WRITE; +/*!40000 ALTER TABLE `mdl_events_queue_handlers` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_events_queue_handlers` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_external_functions` +-- + +DROP TABLE IF EXISTS `mdl_external_functions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_external_functions` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `classname` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `methodname` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `classpath` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `capabilities` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `services` varchar(1333) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_extefunc_nam_uix` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=611 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='list of all external functions'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_external_functions` +-- + +LOCK TABLES `mdl_external_functions` WRITE; +/*!40000 ALTER TABLE `mdl_external_functions` DISABLE KEYS */; +INSERT INTO `mdl_external_functions` VALUES (1,'core_auth_confirm_user','core_auth_external','confirm_user',NULL,'moodle','',NULL),(2,'core_auth_request_password_reset','core_auth_external','request_password_reset',NULL,'moodle','',NULL),(3,'core_auth_is_minor','core_auth_external','is_minor',NULL,'moodle','',NULL),(4,'core_auth_is_age_digital_consent_verification_enabled','core_auth_external','is_age_digital_consent_verification_enabled',NULL,'moodle','',NULL),(5,'core_auth_resend_confirmation_email','core_auth_external','resend_confirmation_email',NULL,'moodle','',NULL),(6,'core_backup_get_async_backup_progress','core_backup_external','get_async_backup_progress','backup/externallib.php','moodle','',NULL),(7,'core_backup_get_async_backup_links_backup','core_backup_external','get_async_backup_links_backup','backup/externallib.php','moodle','',NULL),(8,'core_backup_get_async_backup_links_restore','core_backup_external','get_async_backup_links_restore','backup/externallib.php','moodle','',NULL),(9,'core_backup_get_copy_progress','core_backup_external','get_copy_progress','backup/externallib.php','moodle','',NULL),(10,'core_backup_submit_copy_form','core_backup_external','submit_copy_form','backup/externallib.php','moodle','',NULL),(11,'core_badges_get_user_badges','core_badges_external','get_user_badges',NULL,'moodle','moodle/badges:viewotherbadges','moodle_mobile_app'),(12,'core_blog_get_entries','core_blog\\external','get_entries',NULL,'moodle','','moodle_mobile_app'),(13,'core_blog_view_entries','core_blog\\external','view_entries',NULL,'moodle','','moodle_mobile_app'),(14,'core_calendar_get_calendar_monthly_view','core_calendar_external','get_calendar_monthly_view','calendar/externallib.php','moodle','','moodle_mobile_app'),(15,'core_calendar_get_calendar_day_view','core_calendar_external','get_calendar_day_view','calendar/externallib.php','moodle','','moodle_mobile_app'),(16,'core_calendar_get_calendar_upcoming_view','core_calendar_external','get_calendar_upcoming_view','calendar/externallib.php','moodle','','moodle_mobile_app'),(17,'core_calendar_update_event_start_day','core_calendar_external','update_event_start_day','calendar/externallib.php','moodle','moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries','moodle_mobile_app'),(18,'core_calendar_create_calendar_events','core_calendar_external','create_calendar_events','calendar/externallib.php','moodle','moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries','moodle_mobile_app'),(19,'core_calendar_delete_calendar_events','core_calendar_external','delete_calendar_events','calendar/externallib.php','moodle','moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries','moodle_mobile_app'),(20,'core_calendar_get_calendar_events','core_calendar_external','get_calendar_events','calendar/externallib.php','moodle','moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries','moodle_mobile_app'),(21,'core_calendar_get_action_events_by_timesort','core_calendar_external','get_calendar_action_events_by_timesort','calendar/externallib.php','moodle','moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries','moodle_mobile_app'),(22,'core_calendar_get_action_events_by_course','core_calendar_external','get_calendar_action_events_by_course','calendar/externallib.php','moodle','moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries','moodle_mobile_app'),(23,'core_calendar_get_action_events_by_courses','core_calendar_external','get_calendar_action_events_by_courses','calendar/externallib.php','moodle','moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries','moodle_mobile_app'),(24,'core_calendar_get_calendar_event_by_id','core_calendar_external','get_calendar_event_by_id','calendar/externallib.php','moodle','moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries','moodle_mobile_app'),(25,'core_calendar_submit_create_update_form','core_calendar_external','submit_create_update_form','calendar/externallib.php','moodle','moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries','moodle_mobile_app'),(26,'core_calendar_get_calendar_access_information','core_calendar_external','get_calendar_access_information','calendar/externallib.php','moodle','','moodle_mobile_app'),(27,'core_calendar_get_allowed_event_types','core_calendar_external','get_allowed_event_types','calendar/externallib.php','moodle','','moodle_mobile_app'),(28,'core_calendar_get_timestamps','core_calendar_external','get_timestamps','calendar/externallib.php','moodle','',NULL),(29,'core_calendar_get_calendar_export_token','core_calendar\\external\\export\\token','execute',NULL,'moodle','','moodle_mobile_app'),(30,'core_cohort_add_cohort_members','core_cohort_external','add_cohort_members','cohort/externallib.php','moodle','moodle/cohort:assign',NULL),(31,'core_cohort_create_cohorts','core_cohort_external','create_cohorts','cohort/externallib.php','moodle','moodle/cohort:manage',NULL),(32,'core_cohort_delete_cohort_members','core_cohort_external','delete_cohort_members','cohort/externallib.php','moodle','moodle/cohort:assign',NULL),(33,'core_cohort_delete_cohorts','core_cohort_external','delete_cohorts','cohort/externallib.php','moodle','moodle/cohort:manage',NULL),(34,'core_cohort_get_cohort_members','core_cohort_external','get_cohort_members','cohort/externallib.php','moodle','moodle/cohort:view',NULL),(35,'core_cohort_search_cohorts','core_cohort_external','search_cohorts','cohort/externallib.php','moodle','moodle/cohort:view',NULL),(36,'core_cohort_get_cohorts','core_cohort_external','get_cohorts','cohort/externallib.php','moodle','moodle/cohort:view',NULL),(37,'core_cohort_update_cohorts','core_cohort_external','update_cohorts','cohort/externallib.php','moodle','moodle/cohort:manage',NULL),(38,'core_comment_get_comments','core_comment_external','get_comments',NULL,'moodle','moodle/comment:view','moodle_mobile_app'),(39,'core_comment_add_comments','core_comment_external','add_comments',NULL,'moodle','','moodle_mobile_app'),(40,'core_comment_delete_comments','core_comment_external','delete_comments',NULL,'moodle','','moodle_mobile_app'),(41,'core_completion_get_activities_completion_status','core_completion_external','get_activities_completion_status',NULL,'moodle','','moodle_mobile_app'),(42,'core_completion_get_course_completion_status','core_completion_external','get_course_completion_status',NULL,'moodle','report/completion:view','moodle_mobile_app'),(43,'core_completion_mark_course_self_completed','core_completion_external','mark_course_self_completed',NULL,'moodle','','moodle_mobile_app'),(44,'core_completion_update_activity_completion_status_manually','core_completion_external','update_activity_completion_status_manually',NULL,'moodle','','moodle_mobile_app'),(45,'core_completion_override_activity_completion_status','core_completion_external','override_activity_completion_status',NULL,'moodle','moodle/course:overridecompletion',NULL),(46,'core_course_create_categories','core_course_external','create_categories','course/externallib.php','moodle','moodle/category:manage',NULL),(47,'core_course_create_courses','core_course_external','create_courses','course/externallib.php','moodle','moodle/course:create, moodle/course:visibility',NULL),(48,'core_course_delete_categories','core_course_external','delete_categories','course/externallib.php','moodle','moodle/category:manage',NULL),(49,'core_course_delete_courses','core_course_external','delete_courses','course/externallib.php','moodle','moodle/course:delete',NULL),(50,'core_course_delete_modules','core_course_external','delete_modules','course/externallib.php','moodle','moodle/course:manageactivities',NULL),(51,'core_course_duplicate_course','core_course_external','duplicate_course','course/externallib.php','moodle','moodle/backup:backupcourse, moodle/restore:restorecourse, moodle/course:create',NULL),(52,'core_course_get_categories','core_course_external','get_categories','course/externallib.php','moodle','moodle/category:viewhiddencategories','moodle_mobile_app'),(53,'core_course_get_contents','core_course_external','get_course_contents','course/externallib.php','moodle','moodle/course:update, moodle/course:viewhiddencourses','moodle_mobile_app'),(54,'core_course_get_course_module','core_course_external','get_course_module','course/externallib.php','moodle','','moodle_mobile_app'),(55,'core_course_get_course_module_by_instance','core_course_external','get_course_module_by_instance','course/externallib.php','moodle','','moodle_mobile_app'),(56,'core_course_get_module','core_course_external','get_module','course/externallib.php','moodle','',NULL),(57,'core_course_edit_module','core_course_external','edit_module','course/externallib.php','moodle','',NULL),(58,'core_course_edit_section','core_course_external','edit_section','course/externallib.php','moodle','',NULL),(59,'core_course_get_courses','core_course_external','get_courses','course/externallib.php','moodle','moodle/course:view, moodle/course:update, moodle/course:viewhiddencourses','moodle_mobile_app'),(60,'core_course_import_course','core_course_external','import_course','course/externallib.php','moodle','moodle/backup:backuptargetimport, moodle/restore:restoretargetimport',NULL),(61,'core_course_search_courses','core_course_external','search_courses','course/externallib.php','moodle','','moodle_mobile_app'),(62,'core_course_update_categories','core_course_external','update_categories','course/externallib.php','moodle','moodle/category:manage',NULL),(63,'core_course_update_courses','core_course_external','update_courses','course/externallib.php','moodle','moodle/course:update, moodle/course:changecategory, moodle/course:changefullname, moodle/course:changeshortname, moodle/course:changeidnumber, moodle/course:changesummary, moodle/course:visibility',NULL),(64,'core_course_view_course','core_course_external','view_course','course/externallib.php','moodle','','moodle_mobile_app'),(65,'core_course_get_user_navigation_options','core_course_external','get_user_navigation_options','course/externallib.php','moodle','','moodle_mobile_app'),(66,'core_course_get_user_administration_options','core_course_external','get_user_administration_options','course/externallib.php','moodle','','moodle_mobile_app'),(67,'core_course_get_courses_by_field','core_course_external','get_courses_by_field','course/externallib.php','moodle','','moodle_mobile_app'),(68,'core_course_check_updates','core_course_external','check_updates','course/externallib.php','moodle','','moodle_mobile_app'),(69,'core_course_get_updates_since','core_course_external','get_updates_since','course/externallib.php','moodle','','moodle_mobile_app'),(70,'core_course_get_enrolled_courses_by_timeline_classification','core_course_external','get_enrolled_courses_by_timeline_classification','course/externallib.php','moodle','','moodle_mobile_app'),(71,'core_course_get_recent_courses','core_course_external','get_recent_courses','course/externallib.php','moodle','','moodle_mobile_app'),(72,'core_course_set_favourite_courses','core_course_external','set_favourite_courses','course/externallib.php','moodle','','moodle_mobile_app'),(73,'core_course_get_enrolled_users_by_cmid','core_course_external','get_enrolled_users_by_cmid','course/externallib.php','moodle','',NULL),(74,'core_course_add_content_item_to_user_favourites','core_course_external','add_content_item_to_user_favourites','course/externallib.php','moodle','',NULL),(75,'core_course_remove_content_item_from_user_favourites','core_course_external','remove_content_item_from_user_favourites','course/externallib.php','moodle','',NULL),(76,'core_course_get_course_content_items','core_course_external','get_course_content_items','course/externallib.php','moodle','',NULL),(77,'core_course_get_activity_chooser_footer','core_course_external','get_activity_chooser_footer','course/externallib.php','moodle','',NULL),(78,'core_course_toggle_activity_recommendation','core_course_external','toggle_activity_recommendation','course/externallib.php','moodle','',NULL),(79,'core_enrol_get_course_enrolment_methods','core_enrol_external','get_course_enrolment_methods','enrol/externallib.php','moodle','','moodle_mobile_app'),(80,'core_enrol_get_enrolled_users','core_enrol_external','get_enrolled_users','enrol/externallib.php','moodle','moodle/user:viewdetails, moodle/user:viewhiddendetails, moodle/course:useremail, moodle/user:update, moodle/site:accessallgroups','moodle_mobile_app'),(81,'core_enrol_get_enrolled_users_with_capability','core_enrol_external','get_enrolled_users_with_capability','enrol/externallib.php','moodle','',NULL),(82,'core_enrol_get_potential_users','core_enrol_external','get_potential_users','enrol/externallib.php','moodle','moodle/course:enrolreview',NULL),(83,'core_enrol_search_users','core_enrol_external','search_users','enrol/externallib.php','moodle','moodle/course:viewparticipants','moodle_mobile_app'),(84,'core_enrol_get_users_courses','core_enrol_external','get_users_courses','enrol/externallib.php','moodle','moodle/course:viewparticipants','moodle_mobile_app'),(85,'core_enrol_edit_user_enrolment','core_enrol_external','edit_user_enrolment','enrol/externallib.php','moodle','',NULL),(86,'core_enrol_submit_user_enrolment_form','core_enrol_external','submit_user_enrolment_form','enrol/externallib.php','moodle','',NULL),(87,'core_enrol_unenrol_user_enrolment','core_enrol_external','unenrol_user_enrolment','enrol/externallib.php','moodle','',NULL),(88,'core_fetch_notifications','core_external','fetch_notifications','lib/external/externallib.php','moodle','',NULL),(89,'core_session_touch','core\\session\\external','touch_session',NULL,'moodle','',NULL),(90,'core_session_time_remaining','core\\session\\external','time_remaining',NULL,'moodle','',NULL),(91,'core_files_get_files','core_files_external','get_files','files/externallib.php','moodle','','moodle_mobile_app'),(92,'core_files_upload','core_files_external','upload','files/externallib.php','moodle','',NULL),(93,'core_files_delete_draft_files','core_files\\external\\delete\\draft','execute',NULL,'moodle','','moodle_mobile_app'),(94,'core_form_get_filetypes_browser_data','core_form\\external','get_filetypes_browser_data',NULL,'moodle','',NULL),(95,'core_get_component_strings','core_external','get_component_strings','lib/external/externallib.php','moodle','','moodle_mobile_app'),(96,'core_get_fragment','core_external','get_fragment','lib/external/externallib.php','moodle','',NULL),(97,'core_get_string','core_external','get_string','lib/external/externallib.php','moodle','',NULL),(98,'core_get_strings','core_external','get_strings','lib/external/externallib.php','moodle','',NULL),(99,'core_get_user_dates','core_external','get_user_dates','lib/external/externallib.php','moodle','',NULL),(100,'core_grades_get_grades','core_grades_external','get_grades',NULL,'moodle','moodle/grade:view, moodle/grade:viewall, moodle/grade:viewhidden',NULL),(101,'core_grades_update_grades','core_grades_external','update_grades',NULL,'moodle','',NULL),(102,'core_grades_grader_gradingpanel_point_fetch','core_grades\\grades\\grader\\gradingpanel\\point\\external\\fetch','execute',NULL,'moodle','','moodle_mobile_app'),(103,'core_grades_grader_gradingpanel_point_store','core_grades\\grades\\grader\\gradingpanel\\point\\external\\store','execute',NULL,'moodle','','moodle_mobile_app'),(104,'core_grades_grader_gradingpanel_scale_fetch','core_grades\\grades\\grader\\gradingpanel\\scale\\external\\fetch','execute',NULL,'moodle','','moodle_mobile_app'),(105,'core_grades_grader_gradingpanel_scale_store','core_grades\\grades\\grader\\gradingpanel\\scale\\external\\store','execute',NULL,'moodle','','moodle_mobile_app'),(106,'core_grades_create_gradecategory','core_grades_external','create_gradecategory',NULL,'moodle','moodle/grade:manage',NULL),(107,'core_grading_get_definitions','core_grading_external','get_definitions',NULL,'moodle','',NULL),(108,'core_grading_get_gradingform_instances','core_grading_external','get_gradingform_instances',NULL,'moodle','',NULL),(109,'core_grading_save_definitions','core_grading_external','save_definitions',NULL,'moodle','',NULL),(110,'core_group_add_group_members','core_group_external','add_group_members','group/externallib.php','moodle','moodle/course:managegroups',NULL),(111,'core_group_assign_grouping','core_group_external','assign_grouping','group/externallib.php','moodle','',NULL),(112,'core_group_create_groupings','core_group_external','create_groupings','group/externallib.php','moodle','',NULL),(113,'core_group_create_groups','core_group_external','create_groups','group/externallib.php','moodle','moodle/course:managegroups',NULL),(114,'core_group_delete_group_members','core_group_external','delete_group_members','group/externallib.php','moodle','moodle/course:managegroups',NULL),(115,'core_group_delete_groupings','core_group_external','delete_groupings','group/externallib.php','moodle','',NULL),(116,'core_group_delete_groups','core_group_external','delete_groups','group/externallib.php','moodle','moodle/course:managegroups',NULL),(117,'core_group_get_activity_allowed_groups','core_group_external','get_activity_allowed_groups','group/externallib.php','moodle','','moodle_mobile_app'),(118,'core_group_get_activity_groupmode','core_group_external','get_activity_groupmode','group/externallib.php','moodle','','moodle_mobile_app'),(119,'core_group_get_course_groupings','core_group_external','get_course_groupings','group/externallib.php','moodle','','moodle_mobile_app'),(120,'core_group_get_course_groups','core_group_external','get_course_groups','group/externallib.php','moodle','moodle/course:managegroups','moodle_mobile_app'),(121,'core_group_get_course_user_groups','core_group_external','get_course_user_groups','group/externallib.php','moodle','moodle/course:managegroups','moodle_mobile_app'),(122,'core_group_get_group_members','core_group_external','get_group_members','group/externallib.php','moodle','moodle/course:managegroups',NULL),(123,'core_group_get_groupings','core_group_external','get_groupings','group/externallib.php','moodle','',NULL),(124,'core_group_get_groups','core_group_external','get_groups','group/externallib.php','moodle','moodle/course:managegroups',NULL),(125,'core_group_unassign_grouping','core_group_external','unassign_grouping','group/externallib.php','moodle','',NULL),(126,'core_group_update_groupings','core_group_external','update_groupings','group/externallib.php','moodle','',NULL),(127,'core_group_update_groups','core_group_external','update_groups','group/externallib.php','moodle','moodle/course:managegroups',NULL),(128,'core_message_mute_conversations','core_message_external','mute_conversations','message/externallib.php','moodle','','moodle_mobile_app'),(129,'core_message_unmute_conversations','core_message_external','unmute_conversations','message/externallib.php','moodle','','moodle_mobile_app'),(130,'core_message_block_user','core_message_external','block_user','message/externallib.php','moodle','','moodle_mobile_app'),(131,'core_message_get_contact_requests','core_message_external','get_contact_requests','message/externallib.php','moodle','','moodle_mobile_app'),(132,'core_message_create_contact_request','core_message_external','create_contact_request','message/externallib.php','moodle','','moodle_mobile_app'),(133,'core_message_confirm_contact_request','core_message_external','confirm_contact_request','message/externallib.php','moodle','','moodle_mobile_app'),(134,'core_message_decline_contact_request','core_message_external','decline_contact_request','message/externallib.php','moodle','','moodle_mobile_app'),(135,'core_message_get_received_contact_requests_count','core_message_external','get_received_contact_requests_count','message/externallib.php','moodle','','moodle_mobile_app'),(136,'core_message_delete_contacts','core_message_external','delete_contacts','message/externallib.php','moodle','','moodle_mobile_app'),(137,'core_message_delete_conversations_by_id','core_message_external','delete_conversations_by_id','message/externallib.php','moodle','moodle/site:deleteownmessage','moodle_mobile_app'),(138,'core_message_delete_message','core_message_external','delete_message','message/externallib.php','moodle','moodle/site:deleteownmessage','moodle_mobile_app'),(139,'core_message_get_blocked_users','core_message_external','get_blocked_users','message/externallib.php','moodle','','moodle_mobile_app'),(140,'core_message_data_for_messagearea_search_messages','core_message_external','data_for_messagearea_search_messages','message/externallib.php','moodle','','moodle_mobile_app'),(141,'core_message_message_search_users','core_message_external','message_search_users','message/externallib.php','moodle','','moodle_mobile_app'),(142,'core_message_get_user_contacts','core_message_external','get_user_contacts','message/externallib.php','moodle','','moodle_mobile_app'),(143,'core_message_get_conversations','core_message_external','get_conversations','message/externallib.php','moodle','','moodle_mobile_app'),(144,'core_message_get_conversation','core_message_external','get_conversation','message/externallib.php','moodle','','moodle_mobile_app'),(145,'core_message_get_conversation_between_users','core_message_external','get_conversation_between_users','message/externallib.php','moodle','','moodle_mobile_app'),(146,'core_message_get_self_conversation','core_message_external','get_self_conversation','message/externallib.php','moodle','','moodle_mobile_app'),(147,'core_message_get_messages','core_message_external','get_messages','message/externallib.php','moodle','','moodle_mobile_app'),(148,'core_message_get_conversation_counts','core_message_external','get_conversation_counts','message/externallib.php','moodle','','moodle_mobile_app'),(149,'core_message_get_unread_conversation_counts','core_message_external','get_unread_conversation_counts','message/externallib.php','moodle','','moodle_mobile_app'),(150,'core_message_get_conversation_members','core_message_external','get_conversation_members','message/externallib.php','moodle','','moodle_mobile_app'),(151,'core_message_get_member_info','core_message_external','get_member_info','message/externallib.php','moodle','','moodle_mobile_app'),(152,'core_message_get_unread_conversations_count','core_message_external','get_unread_conversations_count','message/externallib.php','moodle','','moodle_mobile_app'),(153,'core_message_mark_all_notifications_as_read','core_message_external','mark_all_notifications_as_read','message/externallib.php','moodle','','moodle_mobile_app'),(154,'core_message_mark_all_conversation_messages_as_read','core_message_external','mark_all_conversation_messages_as_read','message/externallib.php','moodle','','moodle_mobile_app'),(155,'core_message_mark_message_read','core_message_external','mark_message_read','message/externallib.php','moodle','','moodle_mobile_app'),(156,'core_message_mark_notification_read','core_message_external','mark_notification_read','message/externallib.php','moodle','','moodle_mobile_app'),(157,'core_message_message_processor_config_form','core_message_external','message_processor_config_form','message/externallib.php','moodle','','moodle_mobile_app'),(158,'core_message_get_message_processor','core_message_external','get_message_processor','message/externallib.php','moodle','',NULL),(159,'core_message_search_contacts','core_message_external','search_contacts','message/externallib.php','moodle','','moodle_mobile_app'),(160,'core_message_send_instant_messages','core_message_external','send_instant_messages','message/externallib.php','moodle','moodle/site:sendmessage','moodle_mobile_app'),(161,'core_message_send_messages_to_conversation','core_message_external','send_messages_to_conversation','message/externallib.php','moodle','moodle/site:sendmessage','moodle_mobile_app'),(162,'core_message_get_conversation_messages','core_message_external','get_conversation_messages','message/externallib.php','moodle','','moodle_mobile_app'),(163,'core_message_unblock_user','core_message_external','unblock_user','message/externallib.php','moodle','','moodle_mobile_app'),(164,'core_message_get_user_notification_preferences','core_message_external','get_user_notification_preferences','message/externallib.php','moodle','moodle/user:editownmessageprofile','moodle_mobile_app'),(165,'core_message_get_user_message_preferences','core_message_external','get_user_message_preferences','message/externallib.php','moodle','moodle/user:editownmessageprofile','moodle_mobile_app'),(166,'core_message_set_favourite_conversations','core_message_external','set_favourite_conversations','message/externallib.php','moodle','','moodle_mobile_app'),(167,'core_message_unset_favourite_conversations','core_message_external','unset_favourite_conversations','message/externallib.php','moodle','','moodle_mobile_app'),(168,'core_message_delete_message_for_all_users','core_message_external','delete_message_for_all_users','message/externallib.php','moodle','moodle/site:deleteanymessage','moodle_mobile_app'),(169,'core_notes_create_notes','core_notes_external','create_notes','notes/externallib.php','moodle','moodle/notes:manage','moodle_mobile_app'),(170,'core_notes_delete_notes','core_notes_external','delete_notes','notes/externallib.php','moodle','moodle/notes:manage','moodle_mobile_app'),(171,'core_notes_get_course_notes','core_notes_external','get_course_notes','notes/externallib.php','moodle','moodle/notes:view','moodle_mobile_app'),(172,'core_notes_get_notes','core_notes_external','get_notes','notes/externallib.php','moodle','moodle/notes:view',NULL),(173,'core_notes_update_notes','core_notes_external','update_notes','notes/externallib.php','moodle','moodle/notes:manage',NULL),(174,'core_notes_view_notes','core_notes_external','view_notes','notes/externallib.php','moodle','moodle/notes:view','moodle_mobile_app'),(175,'core_output_load_template','core\\output\\external','load_template',NULL,'moodle','',NULL),(176,'core_output_load_template_with_dependencies','core\\output\\external','load_template_with_dependencies',NULL,'moodle','',NULL),(177,'core_output_load_fontawesome_icon_map','core\\output\\external','load_fontawesome_icon_map',NULL,'moodle','',NULL),(178,'core_output_load_fontawesome_icon_system_map','core\\external\\output\\icon_system\\load_fontawesome_map','execute',NULL,'moodle','',NULL),(179,'core_question_update_flag','core_question_external','update_flag',NULL,'moodle','moodle/question:flag','moodle_mobile_app'),(180,'core_question_submit_tags_form','core_question_external','submit_tags_form',NULL,'moodle','',NULL),(181,'core_question_get_random_question_summaries','core_question_external','get_random_question_summaries',NULL,'moodle','',NULL),(182,'core_rating_get_item_ratings','core_rating_external','get_item_ratings',NULL,'moodle','moodle/rating:view','moodle_mobile_app'),(183,'core_rating_add_rating','core_rating_external','add_rating',NULL,'moodle','moodle/rating:rate','moodle_mobile_app'),(184,'core_role_assign_roles','core_role_external','assign_roles','enrol/externallib.php','moodle','moodle/role:assign',NULL),(185,'core_role_unassign_roles','core_role_external','unassign_roles','enrol/externallib.php','moodle','moodle/role:assign',NULL),(186,'core_search_get_relevant_users','\\core_search\\external','get_relevant_users',NULL,'moodle','',NULL),(187,'core_tag_get_tagindex','core_tag_external','get_tagindex',NULL,'moodle','','moodle_mobile_app'),(188,'core_tag_get_tags','core_tag_external','get_tags',NULL,'moodle','',NULL),(189,'core_tag_update_tags','core_tag_external','update_tags',NULL,'moodle','',NULL),(190,'core_tag_get_tagindex_per_area','core_tag_external','get_tagindex_per_area',NULL,'moodle','','moodle_mobile_app'),(191,'core_tag_get_tag_areas','core_tag_external','get_tag_areas',NULL,'moodle','','moodle_mobile_app'),(192,'core_tag_get_tag_collections','core_tag_external','get_tag_collections',NULL,'moodle','','moodle_mobile_app'),(193,'core_tag_get_tag_cloud','core_tag_external','get_tag_cloud',NULL,'moodle','','moodle_mobile_app'),(194,'core_update_inplace_editable','core_external','update_inplace_editable','lib/external/externallib.php','moodle','',NULL),(195,'core_user_add_user_device','core_user_external','add_user_device','user/externallib.php','moodle','','moodle_mobile_app'),(196,'core_user_add_user_private_files','core_user_external','add_user_private_files','user/externallib.php','moodle','moodle/user:manageownfiles','moodle_mobile_app'),(197,'core_user_create_users','core_user_external','create_users','user/externallib.php','moodle','moodle/user:create',NULL),(198,'core_user_delete_users','core_user_external','delete_users','user/externallib.php','moodle','moodle/user:delete',NULL),(199,'core_user_get_course_user_profiles','core_user_external','get_course_user_profiles','user/externallib.php','moodle','moodle/user:viewdetails, moodle/user:viewhiddendetails, moodle/course:useremail, moodle/user:update, moodle/site:accessallgroups','moodle_mobile_app'),(200,'core_user_get_users','core_user_external','get_users','user/externallib.php','moodle','moodle/user:viewdetails, moodle/user:viewhiddendetails, moodle/course:useremail, moodle/user:update',NULL),(201,'core_user_get_users_by_field','core_user_external','get_users_by_field','user/externallib.php','moodle','moodle/user:viewdetails, moodle/user:viewhiddendetails, moodle/course:useremail, moodle/user:update','moodle_mobile_app'),(202,'core_user_remove_user_device','core_user_external','remove_user_device','user/externallib.php','moodle','','moodle_mobile_app'),(203,'core_user_update_users','core_user_external','update_users','user/externallib.php','moodle','moodle/user:update',NULL),(204,'core_user_update_user_preferences','core_user_external','update_user_preferences','user/externallib.php','moodle','moodle/user:editownmessageprofile, moodle/user:editmessageprofile','moodle_mobile_app'),(205,'core_user_view_user_list','core_user_external','view_user_list','user/externallib.php','moodle','moodle/course:viewparticipants','moodle_mobile_app'),(206,'core_user_view_user_profile','core_user_external','view_user_profile','user/externallib.php','moodle','moodle/user:viewdetails','moodle_mobile_app'),(207,'core_user_get_user_preferences','core_user_external','get_user_preferences','user/externallib.php','moodle','','moodle_mobile_app'),(208,'core_user_update_picture','core_user_external','update_picture','user/externallib.php','moodle','moodle/user:editownprofile, moodle/user:editprofile','moodle_mobile_app'),(209,'core_user_set_user_preferences','core_user_external','set_user_preferences','user/externallib.php','moodle','moodle/site:config','moodle_mobile_app'),(210,'core_user_agree_site_policy','core_user_external','agree_site_policy','user/externallib.php','moodle','','moodle_mobile_app'),(211,'core_user_get_private_files_info','core_user_external','get_private_files_info','user/externallib.php','moodle','moodle/user:manageownfiles','moodle_mobile_app'),(212,'core_competency_create_competency_framework','core_competency\\external','create_competency_framework',NULL,'moodle','moodle/competency:competencymanage',NULL),(213,'core_competency_read_competency_framework','core_competency\\external','read_competency_framework',NULL,'moodle','moodle/competency:competencyview',NULL),(214,'core_competency_duplicate_competency_framework','core_competency\\external','duplicate_competency_framework',NULL,'moodle','moodle/competency:competencymanage',NULL),(215,'core_competency_delete_competency_framework','core_competency\\external','delete_competency_framework',NULL,'moodle','moodle/competency:competencymanage',NULL),(216,'core_competency_update_competency_framework','core_competency\\external','update_competency_framework',NULL,'moodle','moodle/competency:competencymanage',NULL),(217,'core_competency_list_competency_frameworks','core_competency\\external','list_competency_frameworks',NULL,'moodle','moodle/competency:competencyview',NULL),(218,'core_competency_count_competency_frameworks','core_competency\\external','count_competency_frameworks',NULL,'moodle','moodle/competency:competencyview',NULL),(219,'core_competency_competency_framework_viewed','core_competency\\external','competency_framework_viewed',NULL,'moodle','moodle/competency:competencyview',NULL),(220,'core_competency_create_competency','core_competency\\external','create_competency',NULL,'moodle','moodle/competency:competencymanage',NULL),(221,'core_competency_read_competency','core_competency\\external','read_competency',NULL,'moodle','moodle/competency:competencyview',NULL),(222,'core_competency_competency_viewed','core_competency\\external','competency_viewed',NULL,'moodle','moodle/competency:competencyview','moodle_mobile_app'),(223,'core_competency_delete_competency','core_competency\\external','delete_competency',NULL,'moodle','moodle/competency:competencymanage',NULL),(224,'core_competency_update_competency','core_competency\\external','update_competency',NULL,'moodle','moodle/competency:competencymanage',NULL),(225,'core_competency_list_competencies','core_competency\\external','list_competencies',NULL,'moodle','moodle/competency:competencyview',NULL),(226,'core_competency_list_competencies_in_template','core_competency\\external','list_competencies_in_template',NULL,'moodle','moodle/competency:competencyview',NULL),(227,'core_competency_count_competencies','core_competency\\external','count_competencies',NULL,'moodle','moodle/competency:competencyview',NULL),(228,'core_competency_count_competencies_in_template','core_competency\\external','count_competencies_in_template',NULL,'moodle','moodle/competency:competencyview',NULL),(229,'core_competency_search_competencies','core_competency\\external','search_competencies',NULL,'moodle','moodle/competency:competencyview',NULL),(230,'core_competency_set_parent_competency','core_competency\\external','set_parent_competency',NULL,'moodle','moodle/competency:competencymanage',NULL),(231,'core_competency_move_up_competency','core_competency\\external','move_up_competency',NULL,'moodle','moodle/competency:competencymanage',NULL),(232,'core_competency_move_down_competency','core_competency\\external','move_down_competency',NULL,'moodle','moodle/competency:competencymanage',NULL),(233,'core_competency_list_course_module_competencies','core_competency\\external','list_course_module_competencies',NULL,'moodle','moodle/competency:coursecompetencyview',NULL),(234,'core_competency_count_course_module_competencies','core_competency\\external','count_course_module_competencies',NULL,'moodle','moodle/competency:coursecompetencyview',NULL),(235,'core_competency_list_course_competencies','core_competency\\external','list_course_competencies',NULL,'moodle','moodle/competency:coursecompetencyview','moodle_mobile_app'),(236,'core_competency_count_competencies_in_course','core_competency\\external','count_competencies_in_course',NULL,'moodle','moodle/competency:coursecompetencyview',NULL),(237,'core_competency_count_courses_using_competency','core_competency\\external','count_courses_using_competency',NULL,'moodle','moodle/competency:coursecompetencyview',NULL),(238,'core_competency_add_competency_to_course','core_competency\\external','add_competency_to_course',NULL,'moodle','moodle/competency:coursecompetencymanage',NULL),(239,'core_competency_add_competency_to_template','core_competency\\external','add_competency_to_template',NULL,'moodle','moodle/competency:templatemanage',NULL),(240,'core_competency_remove_competency_from_course','core_competency\\external','remove_competency_from_course',NULL,'moodle','moodle/competency:coursecompetencymanage',NULL),(241,'core_competency_set_course_competency_ruleoutcome','core_competency\\external','set_course_competency_ruleoutcome',NULL,'moodle','moodle/competency:coursecompetencymanage',NULL),(242,'core_competency_remove_competency_from_template','core_competency\\external','remove_competency_from_template',NULL,'moodle','moodle/competency:templatemanage',NULL),(243,'core_competency_reorder_course_competency','core_competency\\external','reorder_course_competency',NULL,'moodle','moodle/competency:coursecompetencymanage',NULL),(244,'core_competency_reorder_template_competency','core_competency\\external','reorder_template_competency',NULL,'moodle','moodle/competency:templatemanage',NULL),(245,'core_competency_create_template','core_competency\\external','create_template',NULL,'moodle','moodle/competency:templatemanage',NULL),(246,'core_competency_duplicate_template','core_competency\\external','duplicate_template',NULL,'moodle','moodle/competency:templatemanage',NULL),(247,'core_competency_read_template','core_competency\\external','read_template',NULL,'moodle','moodle/competency:templateview',NULL),(248,'core_competency_delete_template','core_competency\\external','delete_template',NULL,'moodle','moodle/competency:templatemanage',NULL),(249,'core_competency_update_template','core_competency\\external','update_template',NULL,'moodle','moodle/competency:templatemanage',NULL),(250,'core_competency_list_templates','core_competency\\external','list_templates',NULL,'moodle','moodle/competency:templateview',NULL),(251,'core_competency_list_templates_using_competency','core_competency\\external','list_templates_using_competency',NULL,'moodle','moodle/competency:templateview',NULL),(252,'core_competency_count_templates','core_competency\\external','count_templates',NULL,'moodle','moodle/competency:templateview',NULL),(253,'core_competency_count_templates_using_competency','core_competency\\external','count_templates_using_competency',NULL,'moodle','moodle/competency:templateview',NULL),(254,'core_competency_create_plan','core_competency\\external','create_plan',NULL,'moodle','moodle/competency:planmanage',NULL),(255,'core_competency_update_plan','core_competency\\external','update_plan',NULL,'moodle','moodle/competency:planmanage',NULL),(256,'core_competency_complete_plan','core_competency\\external','complete_plan',NULL,'moodle','moodle/competency:planmanage',NULL),(257,'core_competency_reopen_plan','core_competency\\external','reopen_plan',NULL,'moodle','moodle/competency:planmanage',NULL),(258,'core_competency_read_plan','core_competency\\external','read_plan',NULL,'moodle','moodle/competency:planviewown',NULL),(259,'core_competency_delete_plan','core_competency\\external','delete_plan',NULL,'moodle','moodle/competency:planmanage',NULL),(260,'core_competency_list_user_plans','core_competency\\external','list_user_plans',NULL,'moodle','moodle/competency:planviewown',NULL),(261,'core_competency_list_plan_competencies','core_competency\\external','list_plan_competencies',NULL,'moodle','moodle/competency:planviewown',NULL),(262,'core_competency_add_competency_to_plan','core_competency\\external','add_competency_to_plan',NULL,'moodle','moodle/competency:planmanage',NULL),(263,'core_competency_remove_competency_from_plan','core_competency\\external','remove_competency_from_plan',NULL,'moodle','moodle/competency:planmanage',NULL),(264,'core_competency_reorder_plan_competency','core_competency\\external','reorder_plan_competency',NULL,'moodle','moodle/competency:planmanage',NULL),(265,'core_competency_plan_request_review','core_competency\\external','plan_request_review',NULL,'moodle','moodle/competency:planmanagedraft',NULL),(266,'core_competency_plan_start_review','core_competency\\external','plan_start_review',NULL,'moodle','moodle/competency:planmanage',NULL),(267,'core_competency_plan_stop_review','core_competency\\external','plan_stop_review',NULL,'moodle','moodle/competency:planmanage',NULL),(268,'core_competency_plan_cancel_review_request','core_competency\\external','plan_cancel_review_request',NULL,'moodle','moodle/competency:planmanagedraft',NULL),(269,'core_competency_approve_plan','core_competency\\external','approve_plan',NULL,'moodle','moodle/competency:planmanage',NULL),(270,'core_competency_unapprove_plan','core_competency\\external','unapprove_plan',NULL,'moodle','moodle/competency:planmanage',NULL),(271,'core_competency_template_has_related_data','core_competency\\external','template_has_related_data',NULL,'moodle','moodle/competency:templateview',NULL),(272,'core_competency_get_scale_values','core_competency\\external','get_scale_values',NULL,'moodle','moodle/competency:competencymanage','moodle_mobile_app'),(273,'core_competency_add_related_competency','core_competency\\external','add_related_competency',NULL,'moodle','moodle/competency:competencymanage',NULL),(274,'core_competency_remove_related_competency','core_competency\\external','remove_related_competency',NULL,'moodle','moodle/competency:competencymanage',NULL),(275,'core_competency_read_user_evidence','core_competency\\external','read_user_evidence',NULL,'moodle','moodle/competency:userevidenceview',NULL),(276,'core_competency_delete_user_evidence','core_competency\\external','delete_user_evidence',NULL,'moodle','moodle/competency:userevidencemanageown',NULL),(277,'core_competency_create_user_evidence_competency','core_competency\\external','create_user_evidence_competency',NULL,'moodle','moodle/competency:userevidencemanageown, moodle/competency:competencyview',NULL),(278,'core_competency_delete_user_evidence_competency','core_competency\\external','delete_user_evidence_competency',NULL,'moodle','moodle/competency:userevidencemanageown',NULL),(279,'core_competency_user_competency_cancel_review_request','core_competency\\external','user_competency_cancel_review_request',NULL,'moodle','moodle/competency:userevidencemanageown',NULL),(280,'core_competency_user_competency_request_review','core_competency\\external','user_competency_request_review',NULL,'moodle','moodle/competency:userevidencemanageown',NULL),(281,'core_competency_user_competency_start_review','core_competency\\external','user_competency_start_review',NULL,'moodle','moodle/competency:competencygrade',NULL),(282,'core_competency_user_competency_stop_review','core_competency\\external','user_competency_stop_review',NULL,'moodle','moodle/competency:competencygrade',NULL),(283,'core_competency_user_competency_viewed','core_competency\\external','user_competency_viewed',NULL,'moodle','moodle/competency:usercompetencyview','moodle_mobile_app'),(284,'core_competency_user_competency_viewed_in_plan','core_competency\\external','user_competency_viewed_in_plan',NULL,'moodle','moodle/competency:usercompetencyview','moodle_mobile_app'),(285,'core_competency_user_competency_viewed_in_course','core_competency\\external','user_competency_viewed_in_course',NULL,'moodle','moodle/competency:usercompetencyview','moodle_mobile_app'),(286,'core_competency_user_competency_plan_viewed','core_competency\\external','user_competency_plan_viewed',NULL,'moodle','moodle/competency:usercompetencyview','moodle_mobile_app'),(287,'core_competency_grade_competency','core_competency\\external','grade_competency',NULL,'moodle','moodle/competency:competencygrade',NULL),(288,'core_competency_grade_competency_in_plan','core_competency\\external','grade_competency_in_plan',NULL,'moodle','moodle/competency:competencygrade',NULL),(289,'core_competency_grade_competency_in_course','core_competency\\external','grade_competency_in_course',NULL,'moodle','moodle/competency:competencygrade','moodle_mobile_app'),(290,'core_competency_unlink_plan_from_template','core_competency\\external','unlink_plan_from_template',NULL,'moodle','moodle/competency:planmanage',NULL),(291,'core_competency_template_viewed','core_competency\\external','template_viewed',NULL,'moodle','moodle/competency:templateview',NULL),(292,'core_competency_request_review_of_user_evidence_linked_competencies','core_competency\\external','request_review_of_user_evidence_linked_competencies',NULL,'moodle','moodle/competency:userevidencemanageown',NULL),(293,'core_competency_update_course_competency_settings','core_competency\\external','update_course_competency_settings',NULL,'moodle','moodle/competency:coursecompetencyconfigure',NULL),(294,'core_competency_delete_evidence','core_competency\\external','delete_evidence',NULL,'moodle','moodle/competency:evidencedelete','moodle_mobile_app'),(295,'core_webservice_get_site_info','core_webservice_external','get_site_info','webservice/externallib.php','moodle','','moodle_mobile_app'),(296,'core_block_get_course_blocks','core_block_external','get_course_blocks',NULL,'moodle','','moodle_mobile_app'),(297,'core_block_get_dashboard_blocks','core_block_external','get_dashboard_blocks',NULL,'moodle','','moodle_mobile_app'),(298,'core_filters_get_available_in_context','core_filters\\external','get_available_in_context',NULL,'moodle','','moodle_mobile_app'),(299,'core_customfield_delete_field','core_customfield_external','delete_field','customfield/externallib.php','moodle','',NULL),(300,'core_customfield_reload_template','core_customfield_external','reload_template','customfield/externallib.php','moodle','',NULL),(301,'core_customfield_create_category','core_customfield_external','create_category','customfield/externallib.php','moodle','',NULL),(302,'core_customfield_delete_category','core_customfield_external','delete_category','customfield/externallib.php','moodle','',NULL),(303,'core_customfield_move_field','core_customfield_external','move_field','customfield/externallib.php','moodle','',NULL),(304,'core_customfield_move_category','core_customfield_external','move_category','customfield/externallib.php','moodle','',NULL),(305,'core_h5p_get_trusted_h5p_file','core_h5p\\external','get_trusted_h5p_file',NULL,'moodle','','moodle_mobile_app'),(306,'core_table_get_dynamic_table_content','core_table\\external\\dynamic\\get','execute',NULL,'moodle','','moodle_mobile_app'),(307,'core_xapi_statement_post','core_xapi\\external\\post_statement','execute',NULL,'moodle','','moodle_mobile_app'),(308,'core_contentbank_delete_content','core_contentbank\\external\\delete_content','execute',NULL,'moodle','moodle/contentbank:deleteanycontent',NULL),(309,'core_contentbank_rename_content','core_contentbank\\external\\rename_content','execute',NULL,'moodle','moodle/contentbank:manageowncontent',NULL),(310,'core_create_userfeedback_action_record','core\\external\\record_userfeedback_action','execute',NULL,'moodle','',NULL),(311,'core_payment_get_available_gateways','core_payment\\external\\get_available_gateways','execute',NULL,'moodle','',NULL),(312,'mod_assign_copy_previous_attempt','mod_assign_external','copy_previous_attempt','mod/assign/externallib.php','mod_assign','mod/assign:view, mod/assign:submit',NULL),(313,'mod_assign_get_grades','mod_assign_external','get_grades','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(314,'mod_assign_get_assignments','mod_assign_external','get_assignments','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(315,'mod_assign_get_submissions','mod_assign_external','get_submissions','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(316,'mod_assign_get_user_flags','mod_assign_external','get_user_flags','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(317,'mod_assign_set_user_flags','mod_assign_external','set_user_flags','mod/assign/externallib.php','mod_assign','mod/assign:grade','moodle_mobile_app'),(318,'mod_assign_get_user_mappings','mod_assign_external','get_user_mappings','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(319,'mod_assign_revert_submissions_to_draft','mod_assign_external','revert_submissions_to_draft','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(320,'mod_assign_lock_submissions','mod_assign_external','lock_submissions','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(321,'mod_assign_unlock_submissions','mod_assign_external','unlock_submissions','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(322,'mod_assign_save_submission','mod_assign_external','save_submission','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(323,'mod_assign_submit_for_grading','mod_assign_external','submit_for_grading','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(324,'mod_assign_save_grade','mod_assign_external','save_grade','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(325,'mod_assign_save_grades','mod_assign_external','save_grades','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(326,'mod_assign_save_user_extensions','mod_assign_external','save_user_extensions','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(327,'mod_assign_reveal_identities','mod_assign_external','reveal_identities','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(328,'mod_assign_view_grading_table','mod_assign_external','view_grading_table','mod/assign/externallib.php','mod_assign','mod/assign:view, mod/assign:viewgrades','moodle_mobile_app'),(329,'mod_assign_view_submission_status','mod_assign_external','view_submission_status','mod/assign/externallib.php','mod_assign','mod/assign:view','moodle_mobile_app'),(330,'mod_assign_get_submission_status','mod_assign_external','get_submission_status','mod/assign/externallib.php','mod_assign','mod/assign:view','moodle_mobile_app'),(331,'mod_assign_list_participants','mod_assign_external','list_participants','mod/assign/externallib.php','mod_assign','mod/assign:view, mod/assign:viewgrades','moodle_mobile_app'),(332,'mod_assign_submit_grading_form','mod_assign_external','submit_grading_form','mod/assign/externallib.php','mod_assign','mod/assign:grade','moodle_mobile_app'),(333,'mod_assign_get_participant','mod_assign_external','get_participant','mod/assign/externallib.php','mod_assign','mod/assign:view, mod/assign:viewgrades','moodle_mobile_app'),(334,'mod_assign_view_assign','mod_assign_external','view_assign','mod/assign/externallib.php','mod_assign','mod/assign:view','moodle_mobile_app'),(335,'mod_book_view_book','mod_book_external','view_book',NULL,'mod_book','mod/book:read','moodle_mobile_app'),(336,'mod_book_get_books_by_courses','mod_book_external','get_books_by_courses',NULL,'mod_book','','moodle_mobile_app'),(337,'mod_chat_login_user','mod_chat_external','login_user',NULL,'mod_chat','mod/chat:chat','moodle_mobile_app'),(338,'mod_chat_get_chat_users','mod_chat_external','get_chat_users',NULL,'mod_chat','mod/chat:chat','moodle_mobile_app'),(339,'mod_chat_send_chat_message','mod_chat_external','send_chat_message',NULL,'mod_chat','mod/chat:chat','moodle_mobile_app'),(340,'mod_chat_get_chat_latest_messages','mod_chat_external','get_chat_latest_messages',NULL,'mod_chat','mod/chat:chat','moodle_mobile_app'),(341,'mod_chat_view_chat','mod_chat_external','view_chat',NULL,'mod_chat','mod/chat:chat','moodle_mobile_app'),(342,'mod_chat_get_chats_by_courses','mod_chat_external','get_chats_by_courses',NULL,'mod_chat','','moodle_mobile_app'),(343,'mod_chat_get_sessions','mod_chat_external','get_sessions',NULL,'mod_chat','','moodle_mobile_app'),(344,'mod_chat_get_session_messages','mod_chat_external','get_session_messages',NULL,'mod_chat','','moodle_mobile_app'),(345,'mod_choice_get_choice_results','mod_choice_external','get_choice_results',NULL,'mod_choice','','moodle_mobile_app'),(346,'mod_choice_get_choice_options','mod_choice_external','get_choice_options',NULL,'mod_choice','mod/choice:choose','moodle_mobile_app'),(347,'mod_choice_submit_choice_response','mod_choice_external','submit_choice_response',NULL,'mod_choice','mod/choice:choose','moodle_mobile_app'),(348,'mod_choice_view_choice','mod_choice_external','view_choice',NULL,'mod_choice','','moodle_mobile_app'),(349,'mod_choice_get_choices_by_courses','mod_choice_external','get_choices_by_courses',NULL,'mod_choice','','moodle_mobile_app'),(350,'mod_choice_delete_choice_responses','mod_choice_external','delete_choice_responses',NULL,'mod_choice','mod/choice:choose','moodle_mobile_app'),(351,'mod_data_get_databases_by_courses','mod_data_external','get_databases_by_courses',NULL,'mod_data','mod/data:viewentry','moodle_mobile_app'),(352,'mod_data_view_database','mod_data_external','view_database',NULL,'mod_data','mod/data:viewentry','moodle_mobile_app'),(353,'mod_data_get_data_access_information','mod_data_external','get_data_access_information',NULL,'mod_data','mod/data:viewentry','moodle_mobile_app'),(354,'mod_data_get_entries','mod_data_external','get_entries',NULL,'mod_data','mod/data:viewentry','moodle_mobile_app'),(355,'mod_data_get_entry','mod_data_external','get_entry',NULL,'mod_data','mod/data:viewentry','moodle_mobile_app'),(356,'mod_data_get_fields','mod_data_external','get_fields',NULL,'mod_data','mod/data:viewentry','moodle_mobile_app'),(357,'mod_data_search_entries','mod_data_external','search_entries',NULL,'mod_data','mod/data:viewentry','moodle_mobile_app'),(358,'mod_data_approve_entry','mod_data_external','approve_entry',NULL,'mod_data','mod/data:approve','moodle_mobile_app'),(359,'mod_data_delete_entry','mod_data_external','delete_entry',NULL,'mod_data','mod/data:manageentries','moodle_mobile_app'),(360,'mod_data_add_entry','mod_data_external','add_entry',NULL,'mod_data','mod/data:writeentry','moodle_mobile_app'),(361,'mod_data_update_entry','mod_data_external','update_entry',NULL,'mod_data','mod/data:writeentry','moodle_mobile_app'),(362,'mod_feedback_get_feedbacks_by_courses','mod_feedback_external','get_feedbacks_by_courses',NULL,'mod_feedback','mod/feedback:view','moodle_mobile_app'),(363,'mod_feedback_get_feedback_access_information','mod_feedback_external','get_feedback_access_information',NULL,'mod_feedback','mod/feedback:view','moodle_mobile_app'),(364,'mod_feedback_view_feedback','mod_feedback_external','view_feedback',NULL,'mod_feedback','mod/feedback:view','moodle_mobile_app'),(365,'mod_feedback_get_current_completed_tmp','mod_feedback_external','get_current_completed_tmp',NULL,'mod_feedback','mod/feedback:view','moodle_mobile_app'),(366,'mod_feedback_get_items','mod_feedback_external','get_items',NULL,'mod_feedback','mod/feedback:view','moodle_mobile_app'),(367,'mod_feedback_launch_feedback','mod_feedback_external','launch_feedback',NULL,'mod_feedback','mod/feedback:complete','moodle_mobile_app'),(368,'mod_feedback_get_page_items','mod_feedback_external','get_page_items',NULL,'mod_feedback','mod/feedback:complete','moodle_mobile_app'),(369,'mod_feedback_process_page','mod_feedback_external','process_page',NULL,'mod_feedback','mod/feedback:complete','moodle_mobile_app'),(370,'mod_feedback_get_analysis','mod_feedback_external','get_analysis',NULL,'mod_feedback','mod/feedback:viewanalysepage','moodle_mobile_app'),(371,'mod_feedback_get_unfinished_responses','mod_feedback_external','get_unfinished_responses',NULL,'mod_feedback','mod/feedback:view','moodle_mobile_app'),(372,'mod_feedback_get_finished_responses','mod_feedback_external','get_finished_responses',NULL,'mod_feedback','mod/feedback:view','moodle_mobile_app'),(373,'mod_feedback_get_non_respondents','mod_feedback_external','get_non_respondents',NULL,'mod_feedback','mod/feedback:viewreports','moodle_mobile_app'),(374,'mod_feedback_get_responses_analysis','mod_feedback_external','get_responses_analysis',NULL,'mod_feedback','mod/feedback:viewreports','moodle_mobile_app'),(375,'mod_feedback_get_last_completed','mod_feedback_external','get_last_completed',NULL,'mod_feedback','mod/feedback:view','moodle_mobile_app'),(376,'mod_folder_view_folder','mod_folder_external','view_folder',NULL,'mod_folder','mod/folder:view','moodle_mobile_app'),(377,'mod_folder_get_folders_by_courses','mod_folder_external','get_folders_by_courses',NULL,'mod_folder','mod/folder:view','moodle_mobile_app'),(378,'mod_forum_get_forums_by_courses','mod_forum_external','get_forums_by_courses','mod/forum/externallib.php','mod_forum','mod/forum:viewdiscussion','moodle_mobile_app'),(379,'mod_forum_get_discussion_posts','mod_forum_external','get_discussion_posts','mod/forum/externallib.php','mod_forum','mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting','moodle_mobile_app'),(380,'mod_forum_get_forum_discussion_posts','mod_forum_external','get_forum_discussion_posts','mod/forum/externallib.php','mod_forum','mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting','moodle_mobile_app'),(381,'mod_forum_get_forum_discussions_paginated','mod_forum_external','get_forum_discussions_paginated','mod/forum/externallib.php','mod_forum','mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting','moodle_mobile_app'),(382,'mod_forum_get_forum_discussions','mod_forum_external','get_forum_discussions','mod/forum/externallib.php','mod_forum','mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting','moodle_mobile_app'),(383,'mod_forum_view_forum','mod_forum_external','view_forum','mod/forum/externallib.php','mod_forum','mod/forum:viewdiscussion','moodle_mobile_app'),(384,'mod_forum_view_forum_discussion','mod_forum_external','view_forum_discussion','mod/forum/externallib.php','mod_forum','mod/forum:viewdiscussion','moodle_mobile_app'),(385,'mod_forum_add_discussion_post','mod_forum_external','add_discussion_post','mod/forum/externallib.php','mod_forum','mod/forum:replypost','moodle_mobile_app'),(386,'mod_forum_add_discussion','mod_forum_external','add_discussion','mod/forum/externallib.php','mod_forum','mod/forum:startdiscussion','moodle_mobile_app'),(387,'mod_forum_can_add_discussion','mod_forum_external','can_add_discussion','mod/forum/externallib.php','mod_forum','','moodle_mobile_app'),(388,'mod_forum_get_forum_access_information','mod_forum_external','get_forum_access_information',NULL,'mod_forum','','moodle_mobile_app'),(389,'mod_forum_set_subscription_state','mod_forum_external','set_subscription_state','mod/forum/externallib.php','mod_forum','','moodle_mobile_app'),(390,'mod_forum_set_lock_state','mod_forum_external','set_lock_state','mod/forum/externallib.php','mod_forum','moodle/course:manageactivities','moodle_mobile_app'),(391,'mod_forum_toggle_favourite_state','mod_forum_external','toggle_favourite_state','mod/forum/externallib.php','mod_forum','','moodle_mobile_app'),(392,'mod_forum_set_pin_state','mod_forum_external','set_pin_state','mod/forum/externallib.php','mod_forum','','moodle_mobile_app'),(393,'mod_forum_delete_post','mod_forum_external','delete_post','mod/forum/externallib.php','mod_forum','','moodle_mobile_app'),(394,'mod_forum_get_discussion_posts_by_userid','mod_forum_external','get_discussion_posts_by_userid','mod/forum/externallib.php','mod_forum','mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting',NULL),(395,'mod_forum_get_discussion_post','mod_forum_external','get_discussion_post','mod/forum/externallib.php','mod_forum','','moodle_mobile_app'),(396,'mod_forum_prepare_draft_area_for_post','mod_forum_external','prepare_draft_area_for_post','mod/forum/externallib.php','mod_forum','','moodle_mobile_app'),(397,'mod_forum_update_discussion_post','mod_forum_external','update_discussion_post','mod/forum/externallib.php','mod_forum','','moodle_mobile_app'),(398,'mod_glossary_get_glossaries_by_courses','mod_glossary_external','get_glossaries_by_courses',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(399,'mod_glossary_view_glossary','mod_glossary_external','view_glossary',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(400,'mod_glossary_view_entry','mod_glossary_external','view_entry',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(401,'mod_glossary_get_entries_by_letter','mod_glossary_external','get_entries_by_letter',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(402,'mod_glossary_get_entries_by_date','mod_glossary_external','get_entries_by_date',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(403,'mod_glossary_get_categories','mod_glossary_external','get_categories',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(404,'mod_glossary_get_entries_by_category','mod_glossary_external','get_entries_by_category',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(405,'mod_glossary_get_authors','mod_glossary_external','get_authors',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(406,'mod_glossary_get_entries_by_author','mod_glossary_external','get_entries_by_author',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(407,'mod_glossary_get_entries_by_author_id','mod_glossary_external','get_entries_by_author_id',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(408,'mod_glossary_get_entries_by_search','mod_glossary_external','get_entries_by_search',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(409,'mod_glossary_get_entries_by_term','mod_glossary_external','get_entries_by_term',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(410,'mod_glossary_get_entries_to_approve','mod_glossary_external','get_entries_to_approve',NULL,'mod_glossary','mod/glossary:approve','moodle_mobile_app'),(411,'mod_glossary_get_entry_by_id','mod_glossary_external','get_entry_by_id',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(412,'mod_glossary_add_entry','mod_glossary_external','add_entry',NULL,'mod_glossary','mod/glossary:write','moodle_mobile_app'),(413,'mod_glossary_delete_entry','mod_glossary\\external\\delete_entry','execute',NULL,'mod_glossary','','moodle_mobile_app'),(414,'mod_glossary_update_entry','mod_glossary\\external\\update_entry','execute',NULL,'mod_glossary','','moodle_mobile_app'),(415,'mod_glossary_prepare_entry_for_edition','mod_glossary\\external\\prepare_entry','execute',NULL,'mod_glossary','','moodle_mobile_app'),(416,'mod_h5pactivity_get_h5pactivity_access_information','mod_h5pactivity\\external\\get_h5pactivity_access_information','execute',NULL,'mod_h5pactivity','mod/h5pactivity:view','moodle_mobile_app'),(417,'mod_h5pactivity_view_h5pactivity','mod_h5pactivity\\external\\view_h5pactivity','execute',NULL,'mod_h5pactivity','mod/h5pactivity:view','moodle_mobile_app'),(418,'mod_h5pactivity_get_attempts','mod_h5pactivity\\external\\get_attempts','execute',NULL,'mod_h5pactivity','mod/h5pactivity:view','moodle_mobile_app'),(419,'mod_h5pactivity_get_results','mod_h5pactivity\\external\\get_results','execute',NULL,'mod_h5pactivity','mod/h5pactivity:view','moodle_mobile_app'),(420,'mod_h5pactivity_get_h5pactivities_by_courses','mod_h5pactivity\\external\\get_h5pactivities_by_courses','execute',NULL,'mod_h5pactivity','mod/h5pactivity:view','moodle_mobile_app'),(421,'mod_imscp_view_imscp','mod_imscp_external','view_imscp',NULL,'mod_imscp','mod/imscp:view','moodle_mobile_app'),(422,'mod_imscp_get_imscps_by_courses','mod_imscp_external','get_imscps_by_courses',NULL,'mod_imscp','mod/imscp:view','moodle_mobile_app'),(423,'mod_label_get_labels_by_courses','mod_label_external','get_labels_by_courses',NULL,'mod_label','mod/label:view','moodle_mobile_app'),(424,'mod_lesson_get_lessons_by_courses','mod_lesson_external','get_lessons_by_courses',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(425,'mod_lesson_get_lesson_access_information','mod_lesson_external','get_lesson_access_information',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(426,'mod_lesson_view_lesson','mod_lesson_external','view_lesson',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(427,'mod_lesson_get_questions_attempts','mod_lesson_external','get_questions_attempts',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(428,'mod_lesson_get_user_grade','mod_lesson_external','get_user_grade',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(429,'mod_lesson_get_user_attempt_grade','mod_lesson_external','get_user_attempt_grade',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(430,'mod_lesson_get_content_pages_viewed','mod_lesson_external','get_content_pages_viewed',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(431,'mod_lesson_get_user_timers','mod_lesson_external','get_user_timers',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(432,'mod_lesson_get_pages','mod_lesson_external','get_pages',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(433,'mod_lesson_launch_attempt','mod_lesson_external','launch_attempt',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(434,'mod_lesson_get_page_data','mod_lesson_external','get_page_data',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(435,'mod_lesson_process_page','mod_lesson_external','process_page',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(436,'mod_lesson_finish_attempt','mod_lesson_external','finish_attempt',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(437,'mod_lesson_get_attempts_overview','mod_lesson_external','get_attempts_overview',NULL,'mod_lesson','mod/lesson:viewreports','moodle_mobile_app'),(438,'mod_lesson_get_user_attempt','mod_lesson_external','get_user_attempt',NULL,'mod_lesson','mod/lesson:viewreports','moodle_mobile_app'),(439,'mod_lesson_get_pages_possible_jumps','mod_lesson_external','get_pages_possible_jumps',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(440,'mod_lesson_get_lesson','mod_lesson_external','get_lesson',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(441,'mod_lti_get_tool_launch_data','mod_lti_external','get_tool_launch_data',NULL,'mod_lti','mod/lti:view','moodle_mobile_app'),(442,'mod_lti_get_ltis_by_courses','mod_lti_external','get_ltis_by_courses',NULL,'mod_lti','mod/lti:view','moodle_mobile_app'),(443,'mod_lti_view_lti','mod_lti_external','view_lti',NULL,'mod_lti','mod/lti:view','moodle_mobile_app'),(444,'mod_lti_get_tool_proxies','mod_lti_external','get_tool_proxies',NULL,'mod_lti','moodle/site:config',NULL),(445,'mod_lti_create_tool_proxy','mod_lti_external','create_tool_proxy',NULL,'mod_lti','moodle/site:config',NULL),(446,'mod_lti_delete_tool_proxy','mod_lti_external','delete_tool_proxy',NULL,'mod_lti','moodle/site:config',NULL),(447,'mod_lti_get_tool_proxy_registration_request','mod_lti_external','get_tool_proxy_registration_request',NULL,'mod_lti','moodle/site:config',NULL),(448,'mod_lti_get_tool_types','mod_lti_external','get_tool_types',NULL,'mod_lti','moodle/site:config',NULL),(449,'mod_lti_create_tool_type','mod_lti_external','create_tool_type',NULL,'mod_lti','moodle/site:config',NULL),(450,'mod_lti_update_tool_type','mod_lti_external','update_tool_type',NULL,'mod_lti','moodle/site:config',NULL),(451,'mod_lti_delete_tool_type','mod_lti_external','delete_tool_type',NULL,'mod_lti','moodle/site:config',NULL),(452,'mod_lti_is_cartridge','mod_lti_external','is_cartridge',NULL,'mod_lti','moodle/site:config',NULL),(453,'mod_page_view_page','mod_page_external','view_page',NULL,'mod_page','mod/page:view','moodle_mobile_app'),(454,'mod_page_get_pages_by_courses','mod_page_external','get_pages_by_courses',NULL,'mod_page','mod/page:view','moodle_mobile_app'),(455,'mod_quiz_get_quizzes_by_courses','mod_quiz_external','get_quizzes_by_courses',NULL,'mod_quiz','mod/quiz:view','moodle_mobile_app'),(456,'mod_quiz_view_quiz','mod_quiz_external','view_quiz',NULL,'mod_quiz','mod/quiz:view','moodle_mobile_app'),(457,'mod_quiz_get_user_attempts','mod_quiz_external','get_user_attempts',NULL,'mod_quiz','mod/quiz:view','moodle_mobile_app'),(458,'mod_quiz_get_user_best_grade','mod_quiz_external','get_user_best_grade',NULL,'mod_quiz','mod/quiz:view','moodle_mobile_app'),(459,'mod_quiz_get_combined_review_options','mod_quiz_external','get_combined_review_options',NULL,'mod_quiz','mod/quiz:view','moodle_mobile_app'),(460,'mod_quiz_start_attempt','mod_quiz_external','start_attempt',NULL,'mod_quiz','mod/quiz:attempt','moodle_mobile_app'),(461,'mod_quiz_get_attempt_data','mod_quiz_external','get_attempt_data',NULL,'mod_quiz','mod/quiz:attempt','moodle_mobile_app'),(462,'mod_quiz_get_attempt_summary','mod_quiz_external','get_attempt_summary',NULL,'mod_quiz','mod/quiz:attempt','moodle_mobile_app'),(463,'mod_quiz_save_attempt','mod_quiz_external','save_attempt',NULL,'mod_quiz','mod/quiz:attempt','moodle_mobile_app'),(464,'mod_quiz_process_attempt','mod_quiz_external','process_attempt',NULL,'mod_quiz','mod/quiz:attempt','moodle_mobile_app'),(465,'mod_quiz_get_attempt_review','mod_quiz_external','get_attempt_review',NULL,'mod_quiz','mod/quiz:reviewmyattempts','moodle_mobile_app'),(466,'mod_quiz_view_attempt','mod_quiz_external','view_attempt',NULL,'mod_quiz','mod/quiz:attempt','moodle_mobile_app'),(467,'mod_quiz_view_attempt_summary','mod_quiz_external','view_attempt_summary',NULL,'mod_quiz','mod/quiz:attempt','moodle_mobile_app'),(468,'mod_quiz_view_attempt_review','mod_quiz_external','view_attempt_review',NULL,'mod_quiz','mod/quiz:reviewmyattempts','moodle_mobile_app'),(469,'mod_quiz_get_quiz_feedback_for_grade','mod_quiz_external','get_quiz_feedback_for_grade',NULL,'mod_quiz','mod/quiz:view','moodle_mobile_app'),(470,'mod_quiz_get_quiz_access_information','mod_quiz_external','get_quiz_access_information',NULL,'mod_quiz','mod/quiz:view','moodle_mobile_app'),(471,'mod_quiz_get_attempt_access_information','mod_quiz_external','get_attempt_access_information',NULL,'mod_quiz','mod/quiz:view','moodle_mobile_app'),(472,'mod_quiz_get_quiz_required_qtypes','mod_quiz_external','get_quiz_required_qtypes',NULL,'mod_quiz','mod/quiz:view','moodle_mobile_app'),(473,'mod_resource_view_resource','mod_resource_external','view_resource',NULL,'mod_resource','mod/resource:view','moodle_mobile_app'),(474,'mod_resource_get_resources_by_courses','mod_resource_external','get_resources_by_courses',NULL,'mod_resource','mod/resource:view','moodle_mobile_app'),(475,'mod_scorm_view_scorm','mod_scorm_external','view_scorm',NULL,'mod_scorm','','moodle_mobile_app'),(476,'mod_scorm_get_scorm_attempt_count','mod_scorm_external','get_scorm_attempt_count',NULL,'mod_scorm','','moodle_mobile_app'),(477,'mod_scorm_get_scorm_scoes','mod_scorm_external','get_scorm_scoes',NULL,'mod_scorm','','moodle_mobile_app'),(478,'mod_scorm_get_scorm_user_data','mod_scorm_external','get_scorm_user_data',NULL,'mod_scorm','','moodle_mobile_app'),(479,'mod_scorm_insert_scorm_tracks','mod_scorm_external','insert_scorm_tracks',NULL,'mod_scorm','mod/scorm:savetrack','moodle_mobile_app'),(480,'mod_scorm_get_scorm_sco_tracks','mod_scorm_external','get_scorm_sco_tracks',NULL,'mod_scorm','','moodle_mobile_app'),(481,'mod_scorm_get_scorms_by_courses','mod_scorm_external','get_scorms_by_courses',NULL,'mod_scorm','','moodle_mobile_app'),(482,'mod_scorm_launch_sco','mod_scorm_external','launch_sco',NULL,'mod_scorm','','moodle_mobile_app'),(483,'mod_scorm_get_scorm_access_information','mod_scorm_external','get_scorm_access_information',NULL,'mod_scorm','','moodle_mobile_app'),(484,'mod_survey_get_surveys_by_courses','mod_survey_external','get_surveys_by_courses',NULL,'mod_survey','','moodle_mobile_app'),(485,'mod_survey_view_survey','mod_survey_external','view_survey',NULL,'mod_survey','mod/survey:participate','moodle_mobile_app'),(486,'mod_survey_get_questions','mod_survey_external','get_questions',NULL,'mod_survey','mod/survey:participate','moodle_mobile_app'),(487,'mod_survey_submit_answers','mod_survey_external','submit_answers',NULL,'mod_survey','mod/survey:participate','moodle_mobile_app'),(488,'mod_url_view_url','mod_url_external','view_url',NULL,'mod_url','mod/url:view','moodle_mobile_app'),(489,'mod_url_get_urls_by_courses','mod_url_external','get_urls_by_courses',NULL,'mod_url','mod/url:view','moodle_mobile_app'),(490,'mod_wiki_get_wikis_by_courses','mod_wiki_external','get_wikis_by_courses',NULL,'mod_wiki','mod/wiki:viewpage','moodle_mobile_app'),(491,'mod_wiki_view_wiki','mod_wiki_external','view_wiki',NULL,'mod_wiki','mod/wiki:viewpage','moodle_mobile_app'),(492,'mod_wiki_view_page','mod_wiki_external','view_page',NULL,'mod_wiki','mod/wiki:viewpage','moodle_mobile_app'),(493,'mod_wiki_get_subwikis','mod_wiki_external','get_subwikis',NULL,'mod_wiki','mod/wiki:viewpage','moodle_mobile_app'),(494,'mod_wiki_get_subwiki_pages','mod_wiki_external','get_subwiki_pages',NULL,'mod_wiki','mod/wiki:viewpage','moodle_mobile_app'),(495,'mod_wiki_get_subwiki_files','mod_wiki_external','get_subwiki_files',NULL,'mod_wiki','mod/wiki:viewpage','moodle_mobile_app'),(496,'mod_wiki_get_page_contents','mod_wiki_external','get_page_contents',NULL,'mod_wiki','mod/wiki:viewpage','moodle_mobile_app'),(497,'mod_wiki_get_page_for_editing','mod_wiki_external','get_page_for_editing',NULL,'mod_wiki','mod/wiki:editpage','moodle_mobile_app'),(498,'mod_wiki_new_page','mod_wiki_external','new_page',NULL,'mod_wiki','mod/wiki:editpage','moodle_mobile_app'),(499,'mod_wiki_edit_page','mod_wiki_external','edit_page',NULL,'mod_wiki','mod/wiki:editpage','moodle_mobile_app'),(500,'mod_workshop_get_workshops_by_courses','mod_workshop_external','get_workshops_by_courses',NULL,'mod_workshop','mod/workshop:view','moodle_mobile_app'),(501,'mod_workshop_get_workshop_access_information','mod_workshop_external','get_workshop_access_information',NULL,'mod_workshop','mod/workshop:view','moodle_mobile_app'),(502,'mod_workshop_get_user_plan','mod_workshop_external','get_user_plan',NULL,'mod_workshop','mod/workshop:view','moodle_mobile_app'),(503,'mod_workshop_view_workshop','mod_workshop_external','view_workshop',NULL,'mod_workshop','mod/workshop:view','moodle_mobile_app'),(504,'mod_workshop_add_submission','mod_workshop_external','add_submission',NULL,'mod_workshop','mod/workshop:submit','moodle_mobile_app'),(505,'mod_workshop_update_submission','mod_workshop_external','update_submission',NULL,'mod_workshop','mod/workshop:submit','moodle_mobile_app'),(506,'mod_workshop_delete_submission','mod_workshop_external','delete_submission',NULL,'mod_workshop','mod/workshop:submit','moodle_mobile_app'),(507,'mod_workshop_get_submissions','mod_workshop_external','get_submissions',NULL,'mod_workshop','','moodle_mobile_app'),(508,'mod_workshop_get_submission','mod_workshop_external','get_submission',NULL,'mod_workshop','','moodle_mobile_app'),(509,'mod_workshop_get_submission_assessments','mod_workshop_external','get_submission_assessments',NULL,'mod_workshop','','moodle_mobile_app'),(510,'mod_workshop_get_assessment','mod_workshop_external','get_assessment',NULL,'mod_workshop','','moodle_mobile_app'),(511,'mod_workshop_get_assessment_form_definition','mod_workshop_external','get_assessment_form_definition',NULL,'mod_workshop','','moodle_mobile_app'),(512,'mod_workshop_get_reviewer_assessments','mod_workshop_external','get_reviewer_assessments',NULL,'mod_workshop','','moodle_mobile_app'),(513,'mod_workshop_update_assessment','mod_workshop_external','update_assessment',NULL,'mod_workshop','','moodle_mobile_app'),(514,'mod_workshop_get_grades','mod_workshop_external','get_grades',NULL,'mod_workshop','','moodle_mobile_app'),(515,'mod_workshop_evaluate_assessment','mod_workshop_external','evaluate_assessment',NULL,'mod_workshop','','moodle_mobile_app'),(516,'mod_workshop_get_grades_report','mod_workshop_external','get_grades_report',NULL,'mod_workshop','','moodle_mobile_app'),(517,'mod_workshop_view_submission','mod_workshop_external','view_submission',NULL,'mod_workshop','mod/workshop:view','moodle_mobile_app'),(518,'mod_workshop_evaluate_submission','mod_workshop_external','evaluate_submission',NULL,'mod_workshop','','moodle_mobile_app'),(519,'auth_email_get_signup_settings','auth_email_external','get_signup_settings',NULL,'auth_email','',NULL),(520,'auth_email_signup_user','auth_email_external','signup_user',NULL,'auth_email','',NULL),(521,'enrol_guest_get_instance_info','enrol_guest_external','get_instance_info',NULL,'enrol_guest','','moodle_mobile_app'),(522,'enrol_manual_enrol_users','enrol_manual_external','enrol_users','enrol/manual/externallib.php','enrol_manual','enrol/manual:enrol',NULL),(523,'enrol_manual_unenrol_users','enrol_manual_external','unenrol_users','enrol/manual/externallib.php','enrol_manual','enrol/manual:unenrol',NULL),(524,'enrol_self_get_instance_info','enrol_self_external','get_instance_info','enrol/self/externallib.php','enrol_self','','moodle_mobile_app'),(525,'enrol_self_enrol_user','enrol_self_external','enrol_user','enrol/self/externallib.php','enrol_self','','moodle_mobile_app'),(526,'message_airnotifier_is_system_configured','message_airnotifier_external','is_system_configured','message/output/airnotifier/externallib.php','message_airnotifier','','moodle_mobile_app'),(527,'message_airnotifier_are_notification_preferences_configured','message_airnotifier_external','are_notification_preferences_configured','message/output/airnotifier/externallib.php','message_airnotifier','','moodle_mobile_app'),(528,'message_airnotifier_get_user_devices','message_airnotifier_external','get_user_devices','message/output/airnotifier/externallib.php','message_airnotifier','','moodle_mobile_app'),(529,'message_airnotifier_enable_device','message_airnotifier_external','enable_device','message/output/airnotifier/externallib.php','message_airnotifier','message/airnotifier:managedevice','moodle_mobile_app'),(530,'message_popup_get_popup_notifications','message_popup_external','get_popup_notifications','message/output/popup/externallib.php','message_popup','','moodle_mobile_app'),(531,'message_popup_get_unread_popup_notification_count','message_popup_external','get_unread_popup_notification_count','message/output/popup/externallib.php','message_popup','','moodle_mobile_app'),(532,'block_recentlyaccesseditems_get_recent_items','block_recentlyaccesseditems\\external','get_recent_items',NULL,'block_recentlyaccesseditems','','moodle_mobile_app'),(533,'block_starredcourses_get_starred_courses','block_starredcourses_external','get_starred_courses','block/starredcourses/classes/external.php','block_starredcourses','','moodle_mobile_app'),(534,'media_videojs_get_language','media_videojs\\external\\get_language','execute',NULL,'media_videojs','',NULL),(535,'report_competency_data_for_report','report_competency\\external','data_for_report',NULL,'report_competency','moodle/competency:coursecompetencyview',NULL),(536,'report_insights_set_notuseful_prediction','report_insights\\external','set_notuseful_prediction',NULL,'report_insights','','moodle_mobile_app'),(537,'report_insights_set_fixed_prediction','report_insights\\external','set_fixed_prediction',NULL,'report_insights','','moodle_mobile_app'),(538,'report_insights_action_executed','report_insights\\external','action_executed',NULL,'report_insights','','moodle_mobile_app'),(539,'gradereport_overview_get_course_grades','gradereport_overview_external','get_course_grades',NULL,'gradereport_overview','','moodle_mobile_app'),(540,'gradereport_overview_view_grade_report','gradereport_overview_external','view_grade_report',NULL,'gradereport_overview','gradereport/overview:view','moodle_mobile_app'),(541,'gradereport_user_get_grades_table','gradereport_user_external','get_grades_table','grade/report/user/externallib.php','gradereport_user','gradereport/user:view','moodle_mobile_app'),(542,'gradereport_user_view_grade_report','gradereport_user_external','view_grade_report','grade/report/user/externallib.php','gradereport_user','gradereport/user:view','moodle_mobile_app'),(543,'gradereport_user_get_grade_items','gradereport_user_external','get_grade_items','grade/report/user/externallib.php','gradereport_user','gradereport/user:view','moodle_mobile_app'),(544,'gradingform_guide_grader_gradingpanel_fetch','gradingform_guide\\grades\\grader\\gradingpanel\\external\\fetch','execute',NULL,'gradingform_guide','',NULL),(545,'gradingform_guide_grader_gradingpanel_store','gradingform_guide\\grades\\grader\\gradingpanel\\external\\store','execute',NULL,'gradingform_guide','',NULL),(546,'gradingform_rubric_grader_gradingpanel_fetch','gradingform_rubric\\grades\\grader\\gradingpanel\\external\\fetch','execute',NULL,'gradingform_rubric','',NULL),(547,'gradingform_rubric_grader_gradingpanel_store','gradingform_rubric\\grades\\grader\\gradingpanel\\external\\store','execute',NULL,'gradingform_rubric','',NULL),(548,'tool_analytics_potential_contexts','tool_analytics\\external','potential_contexts',NULL,'tool_analytics','','moodle_mobile_app'),(549,'tool_dataprivacy_cancel_data_request','tool_dataprivacy\\external','cancel_data_request',NULL,'tool_dataprivacy','',NULL),(550,'tool_dataprivacy_contact_dpo','tool_dataprivacy\\external','contact_dpo',NULL,'tool_dataprivacy','',NULL),(551,'tool_dataprivacy_mark_complete','tool_dataprivacy\\external','mark_complete',NULL,'tool_dataprivacy','tool/dataprivacy:managedatarequests',NULL),(552,'tool_dataprivacy_get_data_request','tool_dataprivacy\\external','get_data_request',NULL,'tool_dataprivacy','tool/dataprivacy:managedatarequests',NULL),(553,'tool_dataprivacy_approve_data_request','tool_dataprivacy\\external','approve_data_request',NULL,'tool_dataprivacy','tool/dataprivacy:managedatarequests',NULL),(554,'tool_dataprivacy_bulk_approve_data_requests','tool_dataprivacy\\external','bulk_approve_data_requests',NULL,'tool_dataprivacy','tool/dataprivacy:managedatarequests',NULL),(555,'tool_dataprivacy_deny_data_request','tool_dataprivacy\\external','deny_data_request',NULL,'tool_dataprivacy','tool/dataprivacy:managedatarequests',NULL),(556,'tool_dataprivacy_bulk_deny_data_requests','tool_dataprivacy\\external','bulk_deny_data_requests',NULL,'tool_dataprivacy','tool/dataprivacy:managedatarequests',NULL),(557,'tool_dataprivacy_get_users','tool_dataprivacy\\external','get_users',NULL,'tool_dataprivacy','tool/dataprivacy:managedatarequests',NULL),(558,'tool_dataprivacy_create_purpose_form','tool_dataprivacy\\external','create_purpose_form',NULL,'tool_dataprivacy','',NULL),(559,'tool_dataprivacy_create_category_form','tool_dataprivacy\\external','create_category_form',NULL,'tool_dataprivacy','',NULL),(560,'tool_dataprivacy_delete_purpose','tool_dataprivacy\\external','delete_purpose',NULL,'tool_dataprivacy','',NULL),(561,'tool_dataprivacy_delete_category','tool_dataprivacy\\external','delete_category',NULL,'tool_dataprivacy','',NULL),(562,'tool_dataprivacy_set_contextlevel_form','tool_dataprivacy\\external','set_contextlevel_form',NULL,'tool_dataprivacy','',NULL),(563,'tool_dataprivacy_set_context_form','tool_dataprivacy\\external','set_context_form',NULL,'tool_dataprivacy','',NULL),(564,'tool_dataprivacy_tree_extra_branches','tool_dataprivacy\\external','tree_extra_branches',NULL,'tool_dataprivacy','',NULL),(565,'tool_dataprivacy_confirm_contexts_for_deletion','tool_dataprivacy\\external','confirm_contexts_for_deletion',NULL,'tool_dataprivacy','',NULL),(566,'tool_dataprivacy_set_context_defaults','tool_dataprivacy\\external','set_context_defaults',NULL,'tool_dataprivacy','tool/dataprivacy:managedataregistry',NULL),(567,'tool_dataprivacy_get_category_options','tool_dataprivacy\\external','get_category_options',NULL,'tool_dataprivacy','tool/dataprivacy:managedataregistry',NULL),(568,'tool_dataprivacy_get_purpose_options','tool_dataprivacy\\external','get_purpose_options',NULL,'tool_dataprivacy','tool/dataprivacy:managedataregistry',NULL),(569,'tool_dataprivacy_get_activity_options','tool_dataprivacy\\external','get_activity_options',NULL,'tool_dataprivacy','tool/dataprivacy:managedataregistry',NULL),(570,'tool_lp_data_for_competency_frameworks_manage_page','tool_lp\\external','data_for_competency_frameworks_manage_page',NULL,'tool_lp','moodle/competency:competencyview',NULL),(571,'tool_lp_data_for_competency_summary','tool_lp\\external','data_for_competency_summary',NULL,'tool_lp','moodle/competency:competencyview',NULL),(572,'tool_lp_data_for_competencies_manage_page','tool_lp\\external','data_for_competencies_manage_page',NULL,'tool_lp','moodle/competency:competencyview',NULL),(573,'tool_lp_list_courses_using_competency','tool_lp\\external','list_courses_using_competency',NULL,'tool_lp','moodle/competency:coursecompetencyview',NULL),(574,'tool_lp_data_for_course_competencies_page','tool_lp\\external','data_for_course_competencies_page',NULL,'tool_lp','moodle/competency:coursecompetencyview','moodle_mobile_app'),(575,'tool_lp_data_for_template_competencies_page','tool_lp\\external','data_for_template_competencies_page',NULL,'tool_lp','moodle/competency:templateview',NULL),(576,'tool_lp_data_for_templates_manage_page','tool_lp\\external','data_for_templates_manage_page',NULL,'tool_lp','moodle/competency:templateview',NULL),(577,'tool_lp_data_for_plans_page','tool_lp\\external','data_for_plans_page',NULL,'tool_lp','moodle/competency:planviewown','moodle_mobile_app'),(578,'tool_lp_data_for_plan_page','tool_lp\\external','data_for_plan_page',NULL,'tool_lp','moodle/competency:planview','moodle_mobile_app'),(579,'tool_lp_data_for_related_competencies_section','tool_lp\\external','data_for_related_competencies_section',NULL,'tool_lp','moodle/competency:competencyview',NULL),(580,'tool_lp_search_users','tool_lp\\external','search_users',NULL,'tool_lp','',NULL),(581,'tool_lp_search_cohorts','core_cohort_external','search_cohorts','cohort/externallib.php','tool_lp','moodle/cohort:view',NULL),(582,'tool_lp_data_for_user_evidence_list_page','tool_lp\\external','data_for_user_evidence_list_page',NULL,'tool_lp','moodle/competency:userevidenceview','moodle_mobile_app'),(583,'tool_lp_data_for_user_evidence_page','tool_lp\\external','data_for_user_evidence_page',NULL,'tool_lp','moodle/competency:userevidenceview','moodle_mobile_app'),(584,'tool_lp_data_for_user_competency_summary','tool_lp\\external','data_for_user_competency_summary',NULL,'tool_lp','moodle/competency:planview','moodle_mobile_app'),(585,'tool_lp_data_for_user_competency_summary_in_plan','tool_lp\\external','data_for_user_competency_summary_in_plan',NULL,'tool_lp','moodle/competency:planview','moodle_mobile_app'),(586,'tool_lp_data_for_user_competency_summary_in_course','tool_lp\\external','data_for_user_competency_summary_in_course',NULL,'tool_lp','moodle/competency:coursecompetencyview','moodle_mobile_app'),(587,'tool_mobile_get_plugins_supporting_mobile','tool_mobile\\external','get_plugins_supporting_mobile',NULL,'tool_mobile','','moodle_mobile_app'),(588,'tool_mobile_get_public_config','tool_mobile\\external','get_public_config',NULL,'tool_mobile','','moodle_mobile_app'),(589,'tool_mobile_get_config','tool_mobile\\external','get_config',NULL,'tool_mobile','','moodle_mobile_app'),(590,'tool_mobile_get_autologin_key','tool_mobile\\external','get_autologin_key',NULL,'tool_mobile','','moodle_mobile_app'),(591,'tool_mobile_get_content','tool_mobile\\external','get_content',NULL,'tool_mobile','','moodle_mobile_app'),(592,'tool_mobile_call_external_functions','tool_mobile\\external','call_external_functions',NULL,'tool_mobile','','moodle_mobile_app'),(593,'tool_mobile_validate_subscription_key','tool_mobile\\external','validate_subscription_key',NULL,'tool_mobile','','moodle_mobile_app'),(594,'tool_mobile_get_tokens_for_qr_login','tool_mobile\\external','get_tokens_for_qr_login',NULL,'tool_mobile','','moodle_mobile_app'),(595,'tool_moodlenet_verify_webfinger','tool_moodlenet\\external','verify_webfinger',NULL,'tool_moodlenet','','moodle_mobile_app'),(596,'tool_moodlenet_search_courses','tool_moodlenet\\external','search_courses',NULL,'tool_moodlenet','','moodle_mobile_app'),(597,'tool_policy_get_policy_version','tool_policy\\external','get_policy_version',NULL,'tool_policy','',NULL),(598,'tool_policy_submit_accept_on_behalf','tool_policy\\external','submit_accept_on_behalf',NULL,'tool_policy','',NULL),(599,'tool_templatelibrary_list_templates','tool_templatelibrary\\external','list_templates',NULL,'tool_templatelibrary','',NULL),(600,'tool_templatelibrary_load_canonical_template','tool_templatelibrary\\external','load_canonical_template',NULL,'tool_templatelibrary','',NULL),(601,'tool_usertours_fetch_and_start_tour','tool_usertours\\external\\tour','fetch_and_start_tour',NULL,'tool_usertours','',NULL),(602,'tool_usertours_step_shown','tool_usertours\\external\\tour','step_shown',NULL,'tool_usertours','',NULL),(603,'tool_usertours_complete_tour','tool_usertours\\external\\tour','complete_tour',NULL,'tool_usertours','',NULL),(604,'tool_usertours_reset_tour','tool_usertours\\external\\tour','reset_tour',NULL,'tool_usertours','',NULL),(605,'tool_xmldb_invoke_move_action','tool_xmldb_external','invoke_move_action',NULL,'tool_xmldb','',NULL),(606,'paygw_paypal_get_config_for_js','paygw_paypal\\external\\get_config_for_js','execute',NULL,'paygw_paypal','',NULL),(607,'paygw_paypal_create_transaction_complete','paygw_paypal\\external\\transaction_complete','execute',NULL,'paygw_paypal','',NULL),(608,'mod_customcert_delete_issue','mod_customcert\\external','delete_issue',NULL,'mod_customcert','','moodle_mobile_app'),(609,'mod_customcert_save_element','mod_customcert\\external','save_element',NULL,'mod_customcert','',NULL),(610,'mod_customcert_get_element_html','mod_customcert\\external','get_element_html',NULL,'mod_customcert','',NULL); +/*!40000 ALTER TABLE `mdl_external_functions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_external_services` +-- + +DROP TABLE IF EXISTS `mdl_external_services`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_external_services` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `enabled` tinyint(1) NOT NULL, + `requiredcapability` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `restrictedusers` tinyint(1) NOT NULL, + `component` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) DEFAULT NULL, + `shortname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `downloadfiles` tinyint(1) NOT NULL DEFAULT 0, + `uploadfiles` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_exteserv_nam_uix` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='built in and custom external services'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_external_services` +-- + +LOCK TABLES `mdl_external_services` WRITE; +/*!40000 ALTER TABLE `mdl_external_services` DISABLE KEYS */; +INSERT INTO `mdl_external_services` VALUES (1,'Moodle mobile web service',1,NULL,0,'moodle',1619623687,1619626271,'moodle_mobile_app',1,1); +/*!40000 ALTER TABLE `mdl_external_services` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_external_services_functions` +-- + +DROP TABLE IF EXISTS `mdl_external_services_functions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_external_services_functions` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `externalserviceid` bigint(10) NOT NULL, + `functionname` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `mdl_exteservfunc_ext_ix` (`externalserviceid`) +) ENGINE=InnoDB AUTO_INCREMENT=373 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='lists functions available in each service group'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_external_services_functions` +-- + +LOCK TABLES `mdl_external_services_functions` WRITE; +/*!40000 ALTER TABLE `mdl_external_services_functions` DISABLE KEYS */; +INSERT INTO `mdl_external_services_functions` VALUES (1,1,'core_badges_get_user_badges'),(2,1,'core_blog_get_entries'),(3,1,'core_blog_view_entries'),(4,1,'core_calendar_get_calendar_monthly_view'),(5,1,'core_calendar_get_calendar_day_view'),(6,1,'core_calendar_get_calendar_upcoming_view'),(7,1,'core_calendar_update_event_start_day'),(8,1,'core_calendar_create_calendar_events'),(9,1,'core_calendar_delete_calendar_events'),(10,1,'core_calendar_get_calendar_events'),(11,1,'core_calendar_get_action_events_by_timesort'),(12,1,'core_calendar_get_action_events_by_course'),(13,1,'core_calendar_get_action_events_by_courses'),(14,1,'core_calendar_get_calendar_event_by_id'),(15,1,'core_calendar_submit_create_update_form'),(16,1,'core_calendar_get_calendar_access_information'),(17,1,'core_calendar_get_allowed_event_types'),(18,1,'core_calendar_get_calendar_export_token'),(19,1,'core_comment_get_comments'),(20,1,'core_comment_add_comments'),(21,1,'core_comment_delete_comments'),(22,1,'core_completion_get_activities_completion_status'),(23,1,'core_completion_get_course_completion_status'),(24,1,'core_completion_mark_course_self_completed'),(25,1,'core_completion_update_activity_completion_status_manually'),(26,1,'core_course_get_categories'),(27,1,'core_course_get_contents'),(28,1,'core_course_get_course_module'),(29,1,'core_course_get_course_module_by_instance'),(30,1,'core_course_get_courses'),(31,1,'core_course_search_courses'),(32,1,'core_course_view_course'),(33,1,'core_course_get_user_navigation_options'),(34,1,'core_course_get_user_administration_options'),(35,1,'core_course_get_courses_by_field'),(36,1,'core_course_check_updates'),(37,1,'core_course_get_updates_since'),(38,1,'core_course_get_enrolled_courses_by_timeline_classification'),(39,1,'core_course_get_recent_courses'),(40,1,'core_course_set_favourite_courses'),(41,1,'core_enrol_get_course_enrolment_methods'),(42,1,'core_enrol_get_enrolled_users'),(43,1,'core_enrol_search_users'),(44,1,'core_enrol_get_users_courses'),(45,1,'core_files_get_files'),(46,1,'core_files_delete_draft_files'),(47,1,'core_get_component_strings'),(48,1,'core_grades_grader_gradingpanel_point_fetch'),(49,1,'core_grades_grader_gradingpanel_point_store'),(50,1,'core_grades_grader_gradingpanel_scale_fetch'),(51,1,'core_grades_grader_gradingpanel_scale_store'),(52,1,'core_group_get_activity_allowed_groups'),(53,1,'core_group_get_activity_groupmode'),(54,1,'core_group_get_course_groupings'),(55,1,'core_group_get_course_groups'),(56,1,'core_group_get_course_user_groups'),(57,1,'core_message_mute_conversations'),(58,1,'core_message_unmute_conversations'),(59,1,'core_message_block_user'),(60,1,'core_message_get_contact_requests'),(61,1,'core_message_create_contact_request'),(62,1,'core_message_confirm_contact_request'),(63,1,'core_message_decline_contact_request'),(64,1,'core_message_get_received_contact_requests_count'),(65,1,'core_message_delete_contacts'),(66,1,'core_message_delete_conversations_by_id'),(67,1,'core_message_delete_message'),(68,1,'core_message_get_blocked_users'),(69,1,'core_message_data_for_messagearea_search_messages'),(70,1,'core_message_message_search_users'),(71,1,'core_message_get_user_contacts'),(72,1,'core_message_get_conversations'),(73,1,'core_message_get_conversation'),(74,1,'core_message_get_conversation_between_users'),(75,1,'core_message_get_self_conversation'),(76,1,'core_message_get_messages'),(77,1,'core_message_get_conversation_counts'),(78,1,'core_message_get_unread_conversation_counts'),(79,1,'core_message_get_conversation_members'),(80,1,'core_message_get_member_info'),(81,1,'core_message_get_unread_conversations_count'),(82,1,'core_message_mark_all_notifications_as_read'),(83,1,'core_message_mark_all_conversation_messages_as_read'),(84,1,'core_message_mark_message_read'),(85,1,'core_message_mark_notification_read'),(86,1,'core_message_message_processor_config_form'),(87,1,'core_message_search_contacts'),(88,1,'core_message_send_instant_messages'),(89,1,'core_message_send_messages_to_conversation'),(90,1,'core_message_get_conversation_messages'),(91,1,'core_message_unblock_user'),(92,1,'core_message_get_user_notification_preferences'),(93,1,'core_message_get_user_message_preferences'),(94,1,'core_message_set_favourite_conversations'),(95,1,'core_message_unset_favourite_conversations'),(96,1,'core_message_delete_message_for_all_users'),(97,1,'core_notes_create_notes'),(98,1,'core_notes_delete_notes'),(99,1,'core_notes_get_course_notes'),(100,1,'core_notes_view_notes'),(101,1,'core_question_update_flag'),(102,1,'core_rating_get_item_ratings'),(103,1,'core_rating_add_rating'),(104,1,'core_tag_get_tagindex'),(105,1,'core_tag_get_tagindex_per_area'),(106,1,'core_tag_get_tag_areas'),(107,1,'core_tag_get_tag_collections'),(108,1,'core_tag_get_tag_cloud'),(109,1,'core_user_add_user_device'),(110,1,'core_user_add_user_private_files'),(111,1,'core_user_get_course_user_profiles'),(112,1,'core_user_get_users_by_field'),(113,1,'core_user_remove_user_device'),(114,1,'core_user_update_user_preferences'),(115,1,'core_user_view_user_list'),(116,1,'core_user_view_user_profile'),(117,1,'core_user_get_user_preferences'),(118,1,'core_user_update_picture'),(119,1,'core_user_set_user_preferences'),(120,1,'core_user_agree_site_policy'),(121,1,'core_user_get_private_files_info'),(122,1,'core_competency_competency_viewed'),(123,1,'core_competency_list_course_competencies'),(124,1,'core_competency_get_scale_values'),(125,1,'core_competency_user_competency_viewed'),(126,1,'core_competency_user_competency_viewed_in_plan'),(127,1,'core_competency_user_competency_viewed_in_course'),(128,1,'core_competency_user_competency_plan_viewed'),(129,1,'core_competency_grade_competency_in_course'),(130,1,'core_competency_delete_evidence'),(131,1,'core_webservice_get_site_info'),(132,1,'core_block_get_course_blocks'),(133,1,'core_block_get_dashboard_blocks'),(134,1,'core_filters_get_available_in_context'),(135,1,'core_h5p_get_trusted_h5p_file'),(136,1,'core_table_get_dynamic_table_content'),(137,1,'core_xapi_statement_post'),(138,1,'mod_assign_get_grades'),(139,1,'mod_assign_get_assignments'),(140,1,'mod_assign_get_submissions'),(141,1,'mod_assign_get_user_flags'),(142,1,'mod_assign_set_user_flags'),(143,1,'mod_assign_get_user_mappings'),(144,1,'mod_assign_revert_submissions_to_draft'),(145,1,'mod_assign_lock_submissions'),(146,1,'mod_assign_unlock_submissions'),(147,1,'mod_assign_save_submission'),(148,1,'mod_assign_submit_for_grading'),(149,1,'mod_assign_save_grade'),(150,1,'mod_assign_save_grades'),(151,1,'mod_assign_save_user_extensions'),(152,1,'mod_assign_reveal_identities'),(153,1,'mod_assign_view_grading_table'),(154,1,'mod_assign_view_submission_status'),(155,1,'mod_assign_get_submission_status'),(156,1,'mod_assign_list_participants'),(157,1,'mod_assign_submit_grading_form'),(158,1,'mod_assign_get_participant'),(159,1,'mod_assign_view_assign'),(160,1,'mod_book_view_book'),(161,1,'mod_book_get_books_by_courses'),(162,1,'mod_chat_login_user'),(163,1,'mod_chat_get_chat_users'),(164,1,'mod_chat_send_chat_message'),(165,1,'mod_chat_get_chat_latest_messages'),(166,1,'mod_chat_view_chat'),(167,1,'mod_chat_get_chats_by_courses'),(168,1,'mod_chat_get_sessions'),(169,1,'mod_chat_get_session_messages'),(170,1,'mod_choice_get_choice_results'),(171,1,'mod_choice_get_choice_options'),(172,1,'mod_choice_submit_choice_response'),(173,1,'mod_choice_view_choice'),(174,1,'mod_choice_get_choices_by_courses'),(175,1,'mod_choice_delete_choice_responses'),(176,1,'mod_data_get_databases_by_courses'),(177,1,'mod_data_view_database'),(178,1,'mod_data_get_data_access_information'),(179,1,'mod_data_get_entries'),(180,1,'mod_data_get_entry'),(181,1,'mod_data_get_fields'),(182,1,'mod_data_search_entries'),(183,1,'mod_data_approve_entry'),(184,1,'mod_data_delete_entry'),(185,1,'mod_data_add_entry'),(186,1,'mod_data_update_entry'),(187,1,'mod_feedback_get_feedbacks_by_courses'),(188,1,'mod_feedback_get_feedback_access_information'),(189,1,'mod_feedback_view_feedback'),(190,1,'mod_feedback_get_current_completed_tmp'),(191,1,'mod_feedback_get_items'),(192,1,'mod_feedback_launch_feedback'),(193,1,'mod_feedback_get_page_items'),(194,1,'mod_feedback_process_page'),(195,1,'mod_feedback_get_analysis'),(196,1,'mod_feedback_get_unfinished_responses'),(197,1,'mod_feedback_get_finished_responses'),(198,1,'mod_feedback_get_non_respondents'),(199,1,'mod_feedback_get_responses_analysis'),(200,1,'mod_feedback_get_last_completed'),(201,1,'mod_folder_view_folder'),(202,1,'mod_folder_get_folders_by_courses'),(203,1,'mod_forum_get_forums_by_courses'),(204,1,'mod_forum_get_discussion_posts'),(205,1,'mod_forum_get_forum_discussion_posts'),(206,1,'mod_forum_get_forum_discussions_paginated'),(207,1,'mod_forum_get_forum_discussions'),(208,1,'mod_forum_view_forum'),(209,1,'mod_forum_view_forum_discussion'),(210,1,'mod_forum_add_discussion_post'),(211,1,'mod_forum_add_discussion'),(212,1,'mod_forum_can_add_discussion'),(213,1,'mod_forum_get_forum_access_information'),(214,1,'mod_forum_set_subscription_state'),(215,1,'mod_forum_set_lock_state'),(216,1,'mod_forum_toggle_favourite_state'),(217,1,'mod_forum_set_pin_state'),(218,1,'mod_forum_delete_post'),(219,1,'mod_forum_get_discussion_post'),(220,1,'mod_forum_prepare_draft_area_for_post'),(221,1,'mod_forum_update_discussion_post'),(222,1,'mod_glossary_get_glossaries_by_courses'),(223,1,'mod_glossary_view_glossary'),(224,1,'mod_glossary_view_entry'),(225,1,'mod_glossary_get_entries_by_letter'),(226,1,'mod_glossary_get_entries_by_date'),(227,1,'mod_glossary_get_categories'),(228,1,'mod_glossary_get_entries_by_category'),(229,1,'mod_glossary_get_authors'),(230,1,'mod_glossary_get_entries_by_author'),(231,1,'mod_glossary_get_entries_by_author_id'),(232,1,'mod_glossary_get_entries_by_search'),(233,1,'mod_glossary_get_entries_by_term'),(234,1,'mod_glossary_get_entries_to_approve'),(235,1,'mod_glossary_get_entry_by_id'),(236,1,'mod_glossary_add_entry'),(237,1,'mod_glossary_delete_entry'),(238,1,'mod_glossary_update_entry'),(239,1,'mod_glossary_prepare_entry_for_edition'),(240,1,'mod_h5pactivity_get_h5pactivity_access_information'),(241,1,'mod_h5pactivity_view_h5pactivity'),(242,1,'mod_h5pactivity_get_attempts'),(243,1,'mod_h5pactivity_get_results'),(244,1,'mod_h5pactivity_get_h5pactivities_by_courses'),(245,1,'mod_imscp_view_imscp'),(246,1,'mod_imscp_get_imscps_by_courses'),(247,1,'mod_label_get_labels_by_courses'),(248,1,'mod_lesson_get_lessons_by_courses'),(249,1,'mod_lesson_get_lesson_access_information'),(250,1,'mod_lesson_view_lesson'),(251,1,'mod_lesson_get_questions_attempts'),(252,1,'mod_lesson_get_user_grade'),(253,1,'mod_lesson_get_user_attempt_grade'),(254,1,'mod_lesson_get_content_pages_viewed'),(255,1,'mod_lesson_get_user_timers'),(256,1,'mod_lesson_get_pages'),(257,1,'mod_lesson_launch_attempt'),(258,1,'mod_lesson_get_page_data'),(259,1,'mod_lesson_process_page'),(260,1,'mod_lesson_finish_attempt'),(261,1,'mod_lesson_get_attempts_overview'),(262,1,'mod_lesson_get_user_attempt'),(263,1,'mod_lesson_get_pages_possible_jumps'),(264,1,'mod_lesson_get_lesson'),(265,1,'mod_lti_get_tool_launch_data'),(266,1,'mod_lti_get_ltis_by_courses'),(267,1,'mod_lti_view_lti'),(268,1,'mod_page_view_page'),(269,1,'mod_page_get_pages_by_courses'),(270,1,'mod_quiz_get_quizzes_by_courses'),(271,1,'mod_quiz_view_quiz'),(272,1,'mod_quiz_get_user_attempts'),(273,1,'mod_quiz_get_user_best_grade'),(274,1,'mod_quiz_get_combined_review_options'),(275,1,'mod_quiz_start_attempt'),(276,1,'mod_quiz_get_attempt_data'),(277,1,'mod_quiz_get_attempt_summary'),(278,1,'mod_quiz_save_attempt'),(279,1,'mod_quiz_process_attempt'),(280,1,'mod_quiz_get_attempt_review'),(281,1,'mod_quiz_view_attempt'),(282,1,'mod_quiz_view_attempt_summary'),(283,1,'mod_quiz_view_attempt_review'),(284,1,'mod_quiz_get_quiz_feedback_for_grade'),(285,1,'mod_quiz_get_quiz_access_information'),(286,1,'mod_quiz_get_attempt_access_information'),(287,1,'mod_quiz_get_quiz_required_qtypes'),(288,1,'mod_resource_view_resource'),(289,1,'mod_resource_get_resources_by_courses'),(290,1,'mod_scorm_view_scorm'),(291,1,'mod_scorm_get_scorm_attempt_count'),(292,1,'mod_scorm_get_scorm_scoes'),(293,1,'mod_scorm_get_scorm_user_data'),(294,1,'mod_scorm_insert_scorm_tracks'),(295,1,'mod_scorm_get_scorm_sco_tracks'),(296,1,'mod_scorm_get_scorms_by_courses'),(297,1,'mod_scorm_launch_sco'),(298,1,'mod_scorm_get_scorm_access_information'),(299,1,'mod_survey_get_surveys_by_courses'),(300,1,'mod_survey_view_survey'),(301,1,'mod_survey_get_questions'),(302,1,'mod_survey_submit_answers'),(303,1,'mod_url_view_url'),(304,1,'mod_url_get_urls_by_courses'),(305,1,'mod_wiki_get_wikis_by_courses'),(306,1,'mod_wiki_view_wiki'),(307,1,'mod_wiki_view_page'),(308,1,'mod_wiki_get_subwikis'),(309,1,'mod_wiki_get_subwiki_pages'),(310,1,'mod_wiki_get_subwiki_files'),(311,1,'mod_wiki_get_page_contents'),(312,1,'mod_wiki_get_page_for_editing'),(313,1,'mod_wiki_new_page'),(314,1,'mod_wiki_edit_page'),(315,1,'mod_workshop_get_workshops_by_courses'),(316,1,'mod_workshop_get_workshop_access_information'),(317,1,'mod_workshop_get_user_plan'),(318,1,'mod_workshop_view_workshop'),(319,1,'mod_workshop_add_submission'),(320,1,'mod_workshop_update_submission'),(321,1,'mod_workshop_delete_submission'),(322,1,'mod_workshop_get_submissions'),(323,1,'mod_workshop_get_submission'),(324,1,'mod_workshop_get_submission_assessments'),(325,1,'mod_workshop_get_assessment'),(326,1,'mod_workshop_get_assessment_form_definition'),(327,1,'mod_workshop_get_reviewer_assessments'),(328,1,'mod_workshop_update_assessment'),(329,1,'mod_workshop_get_grades'),(330,1,'mod_workshop_evaluate_assessment'),(331,1,'mod_workshop_get_grades_report'),(332,1,'mod_workshop_view_submission'),(333,1,'mod_workshop_evaluate_submission'),(334,1,'enrol_guest_get_instance_info'),(335,1,'enrol_self_get_instance_info'),(336,1,'enrol_self_enrol_user'),(337,1,'message_airnotifier_is_system_configured'),(338,1,'message_airnotifier_are_notification_preferences_configured'),(339,1,'message_airnotifier_get_user_devices'),(340,1,'message_airnotifier_enable_device'),(341,1,'message_popup_get_popup_notifications'),(342,1,'message_popup_get_unread_popup_notification_count'),(343,1,'block_recentlyaccesseditems_get_recent_items'),(344,1,'block_starredcourses_get_starred_courses'),(345,1,'report_insights_set_notuseful_prediction'),(346,1,'report_insights_set_fixed_prediction'),(347,1,'report_insights_action_executed'),(348,1,'gradereport_overview_get_course_grades'),(349,1,'gradereport_overview_view_grade_report'),(350,1,'gradereport_user_get_grades_table'),(351,1,'gradereport_user_view_grade_report'),(352,1,'gradereport_user_get_grade_items'),(353,1,'tool_analytics_potential_contexts'),(354,1,'tool_lp_data_for_course_competencies_page'),(355,1,'tool_lp_data_for_plans_page'),(356,1,'tool_lp_data_for_plan_page'),(357,1,'tool_lp_data_for_user_evidence_list_page'),(358,1,'tool_lp_data_for_user_evidence_page'),(359,1,'tool_lp_data_for_user_competency_summary'),(360,1,'tool_lp_data_for_user_competency_summary_in_plan'),(361,1,'tool_lp_data_for_user_competency_summary_in_course'),(362,1,'tool_mobile_get_plugins_supporting_mobile'),(363,1,'tool_mobile_get_public_config'),(364,1,'tool_mobile_get_config'),(365,1,'tool_mobile_get_autologin_key'),(366,1,'tool_mobile_get_content'),(367,1,'tool_mobile_call_external_functions'),(368,1,'tool_mobile_validate_subscription_key'),(369,1,'tool_mobile_get_tokens_for_qr_login'),(370,1,'tool_moodlenet_verify_webfinger'),(371,1,'tool_moodlenet_search_courses'),(372,1,'mod_customcert_delete_issue'); +/*!40000 ALTER TABLE `mdl_external_services_functions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_external_services_users` +-- + +DROP TABLE IF EXISTS `mdl_external_services_users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_external_services_users` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `externalserviceid` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `iprestriction` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `validuntil` bigint(10) DEFAULT NULL, + `timecreated` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_exteservuser_ext_ix` (`externalserviceid`), + KEY `mdl_exteservuser_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='users allowed to use services with restricted users flag'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_external_services_users` +-- + +LOCK TABLES `mdl_external_services_users` WRITE; +/*!40000 ALTER TABLE `mdl_external_services_users` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_external_services_users` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_external_tokens` +-- + +DROP TABLE IF EXISTS `mdl_external_tokens`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_external_tokens` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `token` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `privatetoken` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `tokentype` smallint(4) NOT NULL, + `userid` bigint(10) NOT NULL, + `externalserviceid` bigint(10) NOT NULL, + `sid` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `contextid` bigint(10) NOT NULL, + `creatorid` bigint(10) NOT NULL DEFAULT 1, + `iprestriction` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `validuntil` bigint(10) DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `lastaccess` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_extetoke_tok_ix` (`token`), + KEY `mdl_extetoke_use_ix` (`userid`), + KEY `mdl_extetoke_ext_ix` (`externalserviceid`), + KEY `mdl_extetoke_con_ix` (`contextid`), + KEY `mdl_extetoke_cre_ix` (`creatorid`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Security tokens for accessing of external services'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_external_tokens` +-- + +LOCK TABLES `mdl_external_tokens` WRITE; +/*!40000 ALTER TABLE `mdl_external_tokens` DISABLE KEYS */; +INSERT INTO `mdl_external_tokens` VALUES (1,'4f3417b1ef03949e44e97c977605c11b','jTiT25DowLEBropNyTBx2YFH2OmWL2CbQBPAa7reNsIw4raWqDkjhelyXOiMmVMY',0,2,1,NULL,1,2,NULL,1626884606,1619627006,1619628920); +/*!40000 ALTER TABLE `mdl_external_tokens` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_favourite` +-- + +DROP TABLE IF EXISTS `mdl_favourite`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_favourite` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `itemtype` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `itemid` bigint(10) NOT NULL, + `contextid` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `ordering` bigint(10) DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_favo_comiteiteconuse_uix` (`component`,`itemtype`,`itemid`,`contextid`,`userid`), + KEY `mdl_favo_con_ix` (`contextid`), + KEY `mdl_favo_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the relationship between an arbitrary item (itemtype,'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_favourite` +-- + +LOCK TABLES `mdl_favourite` WRITE; +/*!40000 ALTER TABLE `mdl_favourite` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_favourite` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_feedback` +-- + +DROP TABLE IF EXISTS `mdl_feedback`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_feedback` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `introformat` smallint(4) NOT NULL DEFAULT 0, + `anonymous` tinyint(1) NOT NULL DEFAULT 1, + `email_notification` tinyint(1) NOT NULL DEFAULT 1, + `multiple_submit` tinyint(1) NOT NULL DEFAULT 1, + `autonumbering` tinyint(1) NOT NULL DEFAULT 1, + `site_after_submit` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `page_after_submit` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `page_after_submitformat` tinyint(2) NOT NULL DEFAULT 0, + `publish_stats` tinyint(1) NOT NULL DEFAULT 0, + `timeopen` bigint(10) NOT NULL DEFAULT 0, + `timeclose` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `completionsubmit` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_feed_cou_ix` (`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='all feedbacks'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_feedback` +-- + +LOCK TABLES `mdl_feedback` WRITE; +/*!40000 ALTER TABLE `mdl_feedback` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_feedback` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_feedback_completed` +-- + +DROP TABLE IF EXISTS `mdl_feedback_completed`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_feedback_completed` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `feedback` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `random_response` bigint(10) NOT NULL DEFAULT 0, + `anonymous_response` tinyint(1) NOT NULL DEFAULT 0, + `courseid` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_feedcomp_use_ix` (`userid`), + KEY `mdl_feedcomp_fee_ix` (`feedback`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='filled out feedback'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_feedback_completed` +-- + +LOCK TABLES `mdl_feedback_completed` WRITE; +/*!40000 ALTER TABLE `mdl_feedback_completed` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_feedback_completed` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_feedback_completedtmp` +-- + +DROP TABLE IF EXISTS `mdl_feedback_completedtmp`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_feedback_completedtmp` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `feedback` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `guestid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `random_response` bigint(10) NOT NULL DEFAULT 0, + `anonymous_response` tinyint(1) NOT NULL DEFAULT 0, + `courseid` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_feedcomp_use2_ix` (`userid`), + KEY `mdl_feedcomp_fee2_ix` (`feedback`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='filled out feedback'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_feedback_completedtmp` +-- + +LOCK TABLES `mdl_feedback_completedtmp` WRITE; +/*!40000 ALTER TABLE `mdl_feedback_completedtmp` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_feedback_completedtmp` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_feedback_item` +-- + +DROP TABLE IF EXISTS `mdl_feedback_item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_feedback_item` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `feedback` bigint(10) NOT NULL DEFAULT 0, + `template` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `presentation` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `typ` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `hasvalue` tinyint(1) NOT NULL DEFAULT 0, + `position` smallint(3) NOT NULL DEFAULT 0, + `required` tinyint(1) NOT NULL DEFAULT 0, + `dependitem` bigint(10) NOT NULL DEFAULT 0, + `dependvalue` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `options` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `mdl_feeditem_fee_ix` (`feedback`), + KEY `mdl_feeditem_tem_ix` (`template`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='feedback_items'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_feedback_item` +-- + +LOCK TABLES `mdl_feedback_item` WRITE; +/*!40000 ALTER TABLE `mdl_feedback_item` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_feedback_item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_feedback_sitecourse_map` +-- + +DROP TABLE IF EXISTS `mdl_feedback_sitecourse_map`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_feedback_sitecourse_map` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `feedbackid` bigint(10) NOT NULL DEFAULT 0, + `courseid` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_feedsitemap_cou_ix` (`courseid`), + KEY `mdl_feedsitemap_fee_ix` (`feedbackid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='feedback sitecourse map'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_feedback_sitecourse_map` +-- + +LOCK TABLES `mdl_feedback_sitecourse_map` WRITE; +/*!40000 ALTER TABLE `mdl_feedback_sitecourse_map` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_feedback_sitecourse_map` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_feedback_template` +-- + +DROP TABLE IF EXISTS `mdl_feedback_template`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_feedback_template` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `ispublic` tinyint(1) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `mdl_feedtemp_cou_ix` (`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='templates of feedbackstructures'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_feedback_template` +-- + +LOCK TABLES `mdl_feedback_template` WRITE; +/*!40000 ALTER TABLE `mdl_feedback_template` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_feedback_template` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_feedback_value` +-- + +DROP TABLE IF EXISTS `mdl_feedback_value`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_feedback_value` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course_id` bigint(10) NOT NULL DEFAULT 0, + `item` bigint(10) NOT NULL DEFAULT 0, + `completed` bigint(10) NOT NULL DEFAULT 0, + `tmp_completed` bigint(10) NOT NULL DEFAULT 0, + `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_feedvalu_comitecou_uix` (`completed`,`item`,`course_id`), + KEY `mdl_feedvalu_cou_ix` (`course_id`), + KEY `mdl_feedvalu_ite_ix` (`item`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='values of the completeds'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_feedback_value` +-- + +LOCK TABLES `mdl_feedback_value` WRITE; +/*!40000 ALTER TABLE `mdl_feedback_value` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_feedback_value` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_feedback_valuetmp` +-- + +DROP TABLE IF EXISTS `mdl_feedback_valuetmp`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_feedback_valuetmp` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course_id` bigint(10) NOT NULL DEFAULT 0, + `item` bigint(10) NOT NULL DEFAULT 0, + `completed` bigint(10) NOT NULL DEFAULT 0, + `tmp_completed` bigint(10) NOT NULL DEFAULT 0, + `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_feedvalu_comitecou2_uix` (`completed`,`item`,`course_id`), + KEY `mdl_feedvalu_cou2_ix` (`course_id`), + KEY `mdl_feedvalu_ite2_ix` (`item`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='values of the completedstmp'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_feedback_valuetmp` +-- + +LOCK TABLES `mdl_feedback_valuetmp` WRITE; +/*!40000 ALTER TABLE `mdl_feedback_valuetmp` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_feedback_valuetmp` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_file_conversion` +-- + +DROP TABLE IF EXISTS `mdl_file_conversion`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_file_conversion` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `usermodified` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `sourcefileid` bigint(10) NOT NULL, + `targetformat` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `status` bigint(10) DEFAULT 0, + `statusmessage` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `converter` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `destfileid` bigint(10) DEFAULT NULL, + `data` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_fileconv_sou_ix` (`sourcefileid`), + KEY `mdl_fileconv_des_ix` (`destfileid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Table to track file conversions.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_file_conversion` +-- + +LOCK TABLES `mdl_file_conversion` WRITE; +/*!40000 ALTER TABLE `mdl_file_conversion` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_file_conversion` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_files` +-- + +DROP TABLE IF EXISTS `mdl_files`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_files` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `contenthash` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `pathnamehash` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `contextid` bigint(10) NOT NULL, + `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `filearea` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `itemid` bigint(10) NOT NULL, + `filepath` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `filename` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `userid` bigint(10) DEFAULT NULL, + `filesize` bigint(10) NOT NULL, + `mimetype` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `status` bigint(10) NOT NULL DEFAULT 0, + `source` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `author` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `license` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `sortorder` bigint(10) NOT NULL DEFAULT 0, + `referencefileid` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_file_pat_uix` (`pathnamehash`), + KEY `mdl_file_comfilconite_ix` (`component`,`filearea`,`contextid`,`itemid`), + KEY `mdl_file_con_ix` (`contenthash`), + KEY `mdl_file_lic_ix` (`license`), + KEY `mdl_file_con2_ix` (`contextid`), + KEY `mdl_file_use_ix` (`userid`), + KEY `mdl_file_ref_ix` (`referencefileid`) +) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='description of files, content is stored in sha1 file pool'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_files` +-- + +LOCK TABLES `mdl_files` WRITE; +/*!40000 ALTER TABLE `mdl_files` DISABLE KEYS */; +INSERT INTO `mdl_files` VALUES (1,'5f8e911d0da441e36f47c5c46f4393269211ca56','508e674d49c30d4fde325fe6c7f6fd3d56b247e1',1,'assignfeedback_editpdf','stamps',0,'/','smile.png',2,1085,'image/png',0,NULL,NULL,NULL,1619623719,1619623719,0,NULL),(2,'da39a3ee5e6b4b0d3255bfef95601890afd80709','70b7cdade7b4e27d4e83f0cdaad10d6a3c0cccb5',1,'assignfeedback_editpdf','stamps',0,'/','.',2,0,NULL,0,NULL,NULL,NULL,1619623719,1619623719,0,NULL),(3,'75c101cb8cb34ea573cd25ac38f8157b1de901b8','68317eab56c67d32aeaee5acf509a0c4aa828b6b',1,'assignfeedback_editpdf','stamps',0,'/','sad.png',2,966,'image/png',0,NULL,NULL,NULL,1619623719,1619623719,0,NULL),(4,'0c5190a24c3943966541401c883eacaa20ca20cb','695a55ff780e61c9e59428aa425430b0d6bde53b',1,'assignfeedback_editpdf','stamps',0,'/','tick.png',2,1039,'image/png',0,NULL,NULL,NULL,1619623719,1619623719,0,NULL),(5,'8c96a486d5801e0f4ab8c411f561f1c687e1f865','373e63af262a9b8466ba8632551520be793c37ff',1,'assignfeedback_editpdf','stamps',0,'/','cross.png',2,861,'image/png',0,NULL,NULL,NULL,1619623719,1619623719,0,NULL),(6,'a44e5c7aef709981c8de8614ba086bee6248c0a0','bca6a731123a20c5cc03cd87ecf71941b9f05010',5,'user','draft',21887174,'/','Droplet Text - Teal - Transparent.png',2,28987,'image/png',0,'O:8:\"stdClass\":1:{s:6:\"source\";s:39:\"Droplet & Text - Teal - Transparent.png\";}','Admin User','unknown',1619624833,1619624833,0,NULL),(7,'da39a3ee5e6b4b0d3255bfef95601890afd80709','d185f361631e32efc5c4eeed533842d228efaf7a',5,'user','draft',21887174,'/','.',2,0,NULL,0,NULL,NULL,NULL,1619624833,1619624833,0,NULL),(8,'fcde58d0c4c14f557291cc9938afc3b75df543b3','523f4999e7a27e465c3d03ad3a74eb405617a6e8',1,'core','preview',0,'/thumb/','a44e5c7aef709981c8de8614ba086bee6248c0a0',NULL,5470,'image/png',0,NULL,NULL,NULL,1619624834,1619624834,0,NULL),(9,'da39a3ee5e6b4b0d3255bfef95601890afd80709','74c104d54c05b5f8c633a36da516d37e6c5279e4',1,'core','preview',0,'/thumb/','.',NULL,0,NULL,0,NULL,NULL,NULL,1619624834,1619624834,0,NULL),(10,'da39a3ee5e6b4b0d3255bfef95601890afd80709','884555719c50529b9df662a38619d04b5b11e25c',1,'core','preview',0,'/','.',NULL,0,NULL,0,NULL,NULL,NULL,1619624834,1619624834,0,NULL),(11,'111633dac88c2c1f8a4a3ce418ec381274e012c6','3b8ed27402e2c1f32f82fb4574a7ab45469b2250',5,'user','draft',290325056,'/','Droplet - Teal - Transparent.png',2,72391,'image/png',0,'O:8:\"stdClass\":1:{s:6:\"source\";s:32:\"Droplet - Teal - Transparent.png\";}','Admin User','unknown',1619624847,1619624847,0,NULL),(12,'da39a3ee5e6b4b0d3255bfef95601890afd80709','d0644588e267f97996301245423800c130c95eeb',5,'user','draft',290325056,'/','.',2,0,NULL,0,NULL,NULL,NULL,1619624847,1619624847,0,NULL),(13,'55bf80f66bdb64c0ca71b884b2b61eff0b344ee9','b7edd68e6dad925ed7eda3b2e44aa154625122b3',1,'core','preview',0,'/thumb/','111633dac88c2c1f8a4a3ce418ec381274e012c6',NULL,7401,'image/png',0,NULL,NULL,NULL,1619624847,1619624847,0,NULL),(14,'a44e5c7aef709981c8de8614ba086bee6248c0a0','3d411fa3d19cbc1bcd6024df2a96046ffdbcff5b',1,'core_admin','logo',0,'/','Droplet Text - Teal - Transparent.png',2,28987,'image/png',0,'Droplet & Text - Teal - Transparent.png','Admin User','unknown',1619624833,1619624888,0,NULL),(15,'da39a3ee5e6b4b0d3255bfef95601890afd80709','13329bd7898f033eb0e93c11a609c6adfb8fb295',1,'core_admin','logo',0,'/','.',2,0,NULL,0,NULL,NULL,NULL,1619624833,1619624888,0,NULL),(16,'111633dac88c2c1f8a4a3ce418ec381274e012c6','0d626e8ba8127b8d1c94d5e1dbebb73a95ae9504',1,'core_admin','logocompact',0,'/','Droplet - Teal - Transparent.png',2,72391,'image/png',0,'Droplet - Teal - Transparent.png','Admin User','unknown',1619624847,1619624888,0,NULL),(17,'da39a3ee5e6b4b0d3255bfef95601890afd80709','ed928c2defdda280bb604ab3df79598e4c3adc00',1,'core_admin','logocompact',0,'/','.',2,0,NULL,0,NULL,NULL,NULL,1619624847,1619624888,0,NULL),(18,'4a17bda49cdc89d62a28615b7c21e81ec4a44bc0','2f93cd4d54ca9ff4dfb3826e3afd36c251a65ec1',5,'user','draft',53672959,'/','mod_customcert_moodle310_2020110900.zip',2,293711,'application/zip',0,'O:8:\"stdClass\":1:{s:6:\"source\";s:39:\"mod_customcert_moodle310_2020110900.zip\";}','Admin User','unknown',1619625636,1619625636,0,NULL),(19,'da39a3ee5e6b4b0d3255bfef95601890afd80709','aab2d93f3a4f15123b7f44e90e5a9fddb408809f',5,'user','draft',53672959,'/','.',2,0,NULL,0,NULL,NULL,NULL,1619625636,1619625636,0,NULL); +/*!40000 ALTER TABLE `mdl_files` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_files_reference` +-- + +DROP TABLE IF EXISTS `mdl_files_reference`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_files_reference` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `repositoryid` bigint(10) NOT NULL, + `lastsync` bigint(10) DEFAULT NULL, + `reference` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `referencehash` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_filerefe_refrep_uix` (`referencehash`,`repositoryid`), + KEY `mdl_filerefe_rep_ix` (`repositoryid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Store files references'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_files_reference` +-- + +LOCK TABLES `mdl_files_reference` WRITE; +/*!40000 ALTER TABLE `mdl_files_reference` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_files_reference` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_filter_active` +-- + +DROP TABLE IF EXISTS `mdl_filter_active`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_filter_active` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `filter` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `contextid` bigint(10) NOT NULL, + `active` smallint(4) NOT NULL, + `sortorder` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_filtacti_confil_uix` (`contextid`,`filter`), + KEY `mdl_filtacti_con_ix` (`contextid`) +) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores information about which filters are active in which c'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_filter_active` +-- + +LOCK TABLES `mdl_filter_active` WRITE; +/*!40000 ALTER TABLE `mdl_filter_active` DISABLE KEYS */; +INSERT INTO `mdl_filter_active` VALUES (1,'activitynames',1,1,2),(2,'displayh5p',1,1,1),(3,'emoticon',1,1,4),(4,'mathjaxloader',1,1,3),(5,'mediaplugin',1,1,6),(6,'urltolink',1,1,5); +/*!40000 ALTER TABLE `mdl_filter_active` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_filter_config` +-- + +DROP TABLE IF EXISTS `mdl_filter_config`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_filter_config` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `filter` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `contextid` bigint(10) NOT NULL, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_filtconf_confilnam_uix` (`contextid`,`filter`,`name`), + KEY `mdl_filtconf_con_ix` (`contextid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores per-context configuration settings for filters which '; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_filter_config` +-- + +LOCK TABLES `mdl_filter_config` WRITE; +/*!40000 ALTER TABLE `mdl_filter_config` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_filter_config` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_folder` +-- + +DROP TABLE IF EXISTS `mdl_folder`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_folder` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `introformat` smallint(4) NOT NULL DEFAULT 0, + `revision` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `display` smallint(4) NOT NULL DEFAULT 0, + `showexpanded` tinyint(1) NOT NULL DEFAULT 1, + `showdownloadfolder` tinyint(1) NOT NULL DEFAULT 1, + `forcedownload` tinyint(1) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`), + KEY `mdl_fold_cou_ix` (`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='each record is one folder resource'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_folder` +-- + +LOCK TABLES `mdl_folder` WRITE; +/*!40000 ALTER TABLE `mdl_folder` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_folder` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_forum` +-- + +DROP TABLE IF EXISTS `mdl_forum`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_forum` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'general', + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `introformat` smallint(4) NOT NULL DEFAULT 0, + `duedate` bigint(10) NOT NULL DEFAULT 0, + `cutoffdate` bigint(10) NOT NULL DEFAULT 0, + `assessed` bigint(10) NOT NULL DEFAULT 0, + `assesstimestart` bigint(10) NOT NULL DEFAULT 0, + `assesstimefinish` bigint(10) NOT NULL DEFAULT 0, + `scale` bigint(10) NOT NULL DEFAULT 0, + `grade_forum` bigint(10) NOT NULL DEFAULT 0, + `grade_forum_notify` smallint(4) NOT NULL DEFAULT 0, + `maxbytes` bigint(10) NOT NULL DEFAULT 0, + `maxattachments` bigint(10) NOT NULL DEFAULT 1, + `forcesubscribe` tinyint(1) NOT NULL DEFAULT 0, + `trackingtype` tinyint(2) NOT NULL DEFAULT 1, + `rsstype` tinyint(2) NOT NULL DEFAULT 0, + `rssarticles` tinyint(2) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `warnafter` bigint(10) NOT NULL DEFAULT 0, + `blockafter` bigint(10) NOT NULL DEFAULT 0, + `blockperiod` bigint(10) NOT NULL DEFAULT 0, + `completiondiscussions` int(9) NOT NULL DEFAULT 0, + `completionreplies` int(9) NOT NULL DEFAULT 0, + `completionposts` int(9) NOT NULL DEFAULT 0, + `displaywordcount` tinyint(1) NOT NULL DEFAULT 0, + `lockdiscussionafter` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_foru_cou_ix` (`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Forums contain and structure discussion'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_forum` +-- + +LOCK TABLES `mdl_forum` WRITE; +/*!40000 ALTER TABLE `mdl_forum` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_forum` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_forum_digests` +-- + +DROP TABLE IF EXISTS `mdl_forum_digests`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_forum_digests` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL, + `forum` bigint(10) NOT NULL, + `maildigest` tinyint(1) NOT NULL DEFAULT -1, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_forudige_forusemai_uix` (`forum`,`userid`,`maildigest`), + KEY `mdl_forudige_use_ix` (`userid`), + KEY `mdl_forudige_for_ix` (`forum`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Keeps track of user mail delivery preferences for each forum'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_forum_digests` +-- + +LOCK TABLES `mdl_forum_digests` WRITE; +/*!40000 ALTER TABLE `mdl_forum_digests` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_forum_digests` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_forum_discussion_subs` +-- + +DROP TABLE IF EXISTS `mdl_forum_discussion_subs`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_forum_discussion_subs` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `forum` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `discussion` bigint(10) NOT NULL, + `preference` bigint(10) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_forudiscsubs_usedis_uix` (`userid`,`discussion`), + KEY `mdl_forudiscsubs_for_ix` (`forum`), + KEY `mdl_forudiscsubs_use_ix` (`userid`), + KEY `mdl_forudiscsubs_dis_ix` (`discussion`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Users may choose to subscribe and unsubscribe from specific '; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_forum_discussion_subs` +-- + +LOCK TABLES `mdl_forum_discussion_subs` WRITE; +/*!40000 ALTER TABLE `mdl_forum_discussion_subs` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_forum_discussion_subs` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_forum_discussions` +-- + +DROP TABLE IF EXISTS `mdl_forum_discussions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_forum_discussions` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `forum` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `firstpost` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `groupid` bigint(10) NOT NULL DEFAULT -1, + `assessed` tinyint(1) NOT NULL DEFAULT 1, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `usermodified` bigint(10) NOT NULL DEFAULT 0, + `timestart` bigint(10) NOT NULL DEFAULT 0, + `timeend` bigint(10) NOT NULL DEFAULT 0, + `pinned` tinyint(1) NOT NULL DEFAULT 0, + `timelocked` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_forudisc_use_ix` (`userid`), + KEY `mdl_forudisc_cou_ix` (`course`), + KEY `mdl_forudisc_for_ix` (`forum`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Forums are composed of discussions'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_forum_discussions` +-- + +LOCK TABLES `mdl_forum_discussions` WRITE; +/*!40000 ALTER TABLE `mdl_forum_discussions` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_forum_discussions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_forum_grades` +-- + +DROP TABLE IF EXISTS `mdl_forum_grades`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_forum_grades` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `forum` bigint(10) NOT NULL, + `itemnumber` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `grade` decimal(10,5) DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_forugrad_foriteuse_uix` (`forum`,`itemnumber`,`userid`), + KEY `mdl_forugrad_use_ix` (`userid`), + KEY `mdl_forugrad_for_ix` (`forum`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Grading data for forum instances'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_forum_grades` +-- + +LOCK TABLES `mdl_forum_grades` WRITE; +/*!40000 ALTER TABLE `mdl_forum_grades` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_forum_grades` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_forum_posts` +-- + +DROP TABLE IF EXISTS `mdl_forum_posts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_forum_posts` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `discussion` bigint(10) NOT NULL DEFAULT 0, + `parent` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `created` bigint(10) NOT NULL DEFAULT 0, + `modified` bigint(10) NOT NULL DEFAULT 0, + `mailed` tinyint(2) NOT NULL DEFAULT 0, + `subject` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `messageformat` tinyint(2) NOT NULL DEFAULT 0, + `messagetrust` tinyint(2) NOT NULL DEFAULT 0, + `attachment` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `totalscore` smallint(4) NOT NULL DEFAULT 0, + `mailnow` bigint(10) NOT NULL DEFAULT 0, + `deleted` tinyint(1) NOT NULL DEFAULT 0, + `privatereplyto` bigint(10) NOT NULL DEFAULT 0, + `wordcount` bigint(20) DEFAULT NULL, + `charcount` bigint(20) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_forupost_use_ix` (`userid`), + KEY `mdl_forupost_cre_ix` (`created`), + KEY `mdl_forupost_mai_ix` (`mailed`), + KEY `mdl_forupost_pri_ix` (`privatereplyto`), + KEY `mdl_forupost_dis_ix` (`discussion`), + KEY `mdl_forupost_par_ix` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='All posts are stored in this table'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_forum_posts` +-- + +LOCK TABLES `mdl_forum_posts` WRITE; +/*!40000 ALTER TABLE `mdl_forum_posts` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_forum_posts` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_forum_queue` +-- + +DROP TABLE IF EXISTS `mdl_forum_queue`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_forum_queue` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL DEFAULT 0, + `discussionid` bigint(10) NOT NULL DEFAULT 0, + `postid` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_foruqueu_use_ix` (`userid`), + KEY `mdl_foruqueu_dis_ix` (`discussionid`), + KEY `mdl_foruqueu_pos_ix` (`postid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='For keeping track of posts that will be mailed in digest for'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_forum_queue` +-- + +LOCK TABLES `mdl_forum_queue` WRITE; +/*!40000 ALTER TABLE `mdl_forum_queue` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_forum_queue` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_forum_read` +-- + +DROP TABLE IF EXISTS `mdl_forum_read`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_forum_read` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL DEFAULT 0, + `forumid` bigint(10) NOT NULL DEFAULT 0, + `discussionid` bigint(10) NOT NULL DEFAULT 0, + `postid` bigint(10) NOT NULL DEFAULT 0, + `firstread` bigint(10) NOT NULL DEFAULT 0, + `lastread` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_foruread_usefor_ix` (`userid`,`forumid`), + KEY `mdl_foruread_usedis_ix` (`userid`,`discussionid`), + KEY `mdl_foruread_posuse_ix` (`postid`,`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Tracks each users read posts'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_forum_read` +-- + +LOCK TABLES `mdl_forum_read` WRITE; +/*!40000 ALTER TABLE `mdl_forum_read` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_forum_read` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_forum_subscriptions` +-- + +DROP TABLE IF EXISTS `mdl_forum_subscriptions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_forum_subscriptions` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL DEFAULT 0, + `forum` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_forusubs_usefor_uix` (`userid`,`forum`), + KEY `mdl_forusubs_use_ix` (`userid`), + KEY `mdl_forusubs_for_ix` (`forum`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Keeps track of who is subscribed to what forum'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_forum_subscriptions` +-- + +LOCK TABLES `mdl_forum_subscriptions` WRITE; +/*!40000 ALTER TABLE `mdl_forum_subscriptions` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_forum_subscriptions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_forum_track_prefs` +-- + +DROP TABLE IF EXISTS `mdl_forum_track_prefs`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_forum_track_prefs` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL DEFAULT 0, + `forumid` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_forutracpref_usefor_ix` (`userid`,`forumid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Tracks each users untracked forums'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_forum_track_prefs` +-- + +LOCK TABLES `mdl_forum_track_prefs` WRITE; +/*!40000 ALTER TABLE `mdl_forum_track_prefs` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_forum_track_prefs` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_glossary` +-- + +DROP TABLE IF EXISTS `mdl_glossary`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_glossary` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `introformat` smallint(4) NOT NULL DEFAULT 0, + `allowduplicatedentries` tinyint(2) NOT NULL DEFAULT 0, + `displayformat` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'dictionary', + `mainglossary` tinyint(2) NOT NULL DEFAULT 0, + `showspecial` tinyint(2) NOT NULL DEFAULT 1, + `showalphabet` tinyint(2) NOT NULL DEFAULT 1, + `showall` tinyint(2) NOT NULL DEFAULT 1, + `allowcomments` tinyint(2) NOT NULL DEFAULT 0, + `allowprintview` tinyint(2) NOT NULL DEFAULT 1, + `usedynalink` tinyint(2) NOT NULL DEFAULT 1, + `defaultapproval` tinyint(2) NOT NULL DEFAULT 1, + `approvaldisplayformat` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', + `globalglossary` tinyint(2) NOT NULL DEFAULT 0, + `entbypage` smallint(3) NOT NULL DEFAULT 10, + `editalways` tinyint(2) NOT NULL DEFAULT 0, + `rsstype` tinyint(2) NOT NULL DEFAULT 0, + `rssarticles` tinyint(2) NOT NULL DEFAULT 0, + `assessed` bigint(10) NOT NULL DEFAULT 0, + `assesstimestart` bigint(10) NOT NULL DEFAULT 0, + `assesstimefinish` bigint(10) NOT NULL DEFAULT 0, + `scale` bigint(10) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `completionentries` int(9) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_glos_cou_ix` (`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='all glossaries'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_glossary` +-- + +LOCK TABLES `mdl_glossary` WRITE; +/*!40000 ALTER TABLE `mdl_glossary` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_glossary` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_glossary_alias` +-- + +DROP TABLE IF EXISTS `mdl_glossary_alias`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_glossary_alias` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `entryid` bigint(10) NOT NULL DEFAULT 0, + `alias` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `mdl_glosalia_ent_ix` (`entryid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='entries alias'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_glossary_alias` +-- + +LOCK TABLES `mdl_glossary_alias` WRITE; +/*!40000 ALTER TABLE `mdl_glossary_alias` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_glossary_alias` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_glossary_categories` +-- + +DROP TABLE IF EXISTS `mdl_glossary_categories`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_glossary_categories` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `glossaryid` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `usedynalink` tinyint(2) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`), + KEY `mdl_gloscate_glo_ix` (`glossaryid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='all categories for glossary entries'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_glossary_categories` +-- + +LOCK TABLES `mdl_glossary_categories` WRITE; +/*!40000 ALTER TABLE `mdl_glossary_categories` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_glossary_categories` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_glossary_entries` +-- + +DROP TABLE IF EXISTS `mdl_glossary_entries`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_glossary_entries` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `glossaryid` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `concept` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `definition` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `definitionformat` tinyint(2) NOT NULL DEFAULT 0, + `definitiontrust` tinyint(2) NOT NULL DEFAULT 0, + `attachment` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `teacherentry` tinyint(2) NOT NULL DEFAULT 0, + `sourceglossaryid` bigint(10) NOT NULL DEFAULT 0, + `usedynalink` tinyint(2) NOT NULL DEFAULT 1, + `casesensitive` tinyint(2) NOT NULL DEFAULT 0, + `fullmatch` tinyint(2) NOT NULL DEFAULT 1, + `approved` tinyint(2) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`), + KEY `mdl_glosentr_use_ix` (`userid`), + KEY `mdl_glosentr_con_ix` (`concept`), + KEY `mdl_glosentr_glo_ix` (`glossaryid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='all glossary entries'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_glossary_entries` +-- + +LOCK TABLES `mdl_glossary_entries` WRITE; +/*!40000 ALTER TABLE `mdl_glossary_entries` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_glossary_entries` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_glossary_entries_categories` +-- + +DROP TABLE IF EXISTS `mdl_glossary_entries_categories`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_glossary_entries_categories` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `categoryid` bigint(10) NOT NULL DEFAULT 0, + `entryid` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_glosentrcate_cat_ix` (`categoryid`), + KEY `mdl_glosentrcate_ent_ix` (`entryid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='categories of each glossary entry'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_glossary_entries_categories` +-- + +LOCK TABLES `mdl_glossary_entries_categories` WRITE; +/*!40000 ALTER TABLE `mdl_glossary_entries_categories` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_glossary_entries_categories` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_glossary_formats` +-- + +DROP TABLE IF EXISTS `mdl_glossary_formats`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_glossary_formats` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `popupformatname` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `visible` tinyint(2) NOT NULL DEFAULT 1, + `showgroup` tinyint(2) NOT NULL DEFAULT 1, + `showtabs` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `defaultmode` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `defaulthook` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `sortkey` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `sortorder` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Setting of the display formats'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_glossary_formats` +-- + +LOCK TABLES `mdl_glossary_formats` WRITE; +/*!40000 ALTER TABLE `mdl_glossary_formats` DISABLE KEYS */; +INSERT INTO `mdl_glossary_formats` VALUES (1,'continuous','continuous',1,1,'standard,category,date','','','',''),(2,'dictionary','dictionary',1,1,'standard','','','',''),(3,'encyclopedia','encyclopedia',1,1,'standard,category,date,author','','','',''),(4,'entrylist','entrylist',1,1,'standard,category,date,author','','','',''),(5,'faq','faq',1,1,'standard,category,date,author','','','',''),(6,'fullwithauthor','fullwithauthor',1,1,'standard,category,date,author','','','',''),(7,'fullwithoutauthor','fullwithoutauthor',1,1,'standard,category,date','','','',''); +/*!40000 ALTER TABLE `mdl_glossary_formats` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_grade_categories` +-- + +DROP TABLE IF EXISTS `mdl_grade_categories`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_grade_categories` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `courseid` bigint(10) NOT NULL, + `parent` bigint(10) DEFAULT NULL, + `depth` bigint(10) NOT NULL DEFAULT 0, + `path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `fullname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `aggregation` bigint(10) NOT NULL DEFAULT 0, + `keephigh` bigint(10) NOT NULL DEFAULT 0, + `droplow` bigint(10) NOT NULL DEFAULT 0, + `aggregateonlygraded` tinyint(1) NOT NULL DEFAULT 0, + `aggregateoutcomes` tinyint(1) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `hidden` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_gradcate_cou_ix` (`courseid`), + KEY `mdl_gradcate_par_ix` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table keeps information about categories, used for grou'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_grade_categories` +-- + +LOCK TABLES `mdl_grade_categories` WRITE; +/*!40000 ALTER TABLE `mdl_grade_categories` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_grade_categories` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_grade_categories_history` +-- + +DROP TABLE IF EXISTS `mdl_grade_categories_history`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_grade_categories_history` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `action` bigint(10) NOT NULL DEFAULT 0, + `oldid` bigint(10) NOT NULL, + `source` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timemodified` bigint(10) DEFAULT NULL, + `loggeduser` bigint(10) DEFAULT NULL, + `courseid` bigint(10) NOT NULL, + `parent` bigint(10) DEFAULT NULL, + `depth` bigint(10) NOT NULL DEFAULT 0, + `path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `fullname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `aggregation` bigint(10) NOT NULL DEFAULT 0, + `keephigh` bigint(10) NOT NULL DEFAULT 0, + `droplow` bigint(10) NOT NULL DEFAULT 0, + `aggregateonlygraded` tinyint(1) NOT NULL DEFAULT 0, + `aggregateoutcomes` tinyint(1) NOT NULL DEFAULT 0, + `aggregatesubcats` tinyint(1) NOT NULL DEFAULT 0, + `hidden` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_gradcatehist_act_ix` (`action`), + KEY `mdl_gradcatehist_tim_ix` (`timemodified`), + KEY `mdl_gradcatehist_old_ix` (`oldid`), + KEY `mdl_gradcatehist_cou_ix` (`courseid`), + KEY `mdl_gradcatehist_par_ix` (`parent`), + KEY `mdl_gradcatehist_log_ix` (`loggeduser`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='History of grade_categories'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_grade_categories_history` +-- + +LOCK TABLES `mdl_grade_categories_history` WRITE; +/*!40000 ALTER TABLE `mdl_grade_categories_history` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_grade_categories_history` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_grade_grades` +-- + +DROP TABLE IF EXISTS `mdl_grade_grades`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_grade_grades` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `itemid` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `rawgrade` decimal(10,5) DEFAULT NULL, + `rawgrademax` decimal(10,5) NOT NULL DEFAULT 100.00000, + `rawgrademin` decimal(10,5) NOT NULL DEFAULT 0.00000, + `rawscaleid` bigint(10) DEFAULT NULL, + `usermodified` bigint(10) DEFAULT NULL, + `finalgrade` decimal(10,5) DEFAULT NULL, + `hidden` bigint(10) NOT NULL DEFAULT 0, + `locked` bigint(10) NOT NULL DEFAULT 0, + `locktime` bigint(10) NOT NULL DEFAULT 0, + `exported` bigint(10) NOT NULL DEFAULT 0, + `overridden` bigint(10) NOT NULL DEFAULT 0, + `excluded` bigint(10) NOT NULL DEFAULT 0, + `feedback` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `feedbackformat` bigint(10) NOT NULL DEFAULT 0, + `information` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `informationformat` bigint(10) NOT NULL DEFAULT 0, + `timecreated` bigint(10) DEFAULT NULL, + `timemodified` bigint(10) DEFAULT NULL, + `aggregationstatus` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unknown', + `aggregationweight` decimal(10,5) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_gradgrad_useite_uix` (`userid`,`itemid`), + KEY `mdl_gradgrad_locloc_ix` (`locked`,`locktime`), + KEY `mdl_gradgrad_ite_ix` (`itemid`), + KEY `mdl_gradgrad_use_ix` (`userid`), + KEY `mdl_gradgrad_raw_ix` (`rawscaleid`), + KEY `mdl_gradgrad_use2_ix` (`usermodified`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='grade_grades This table keeps individual grades for each us'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_grade_grades` +-- + +LOCK TABLES `mdl_grade_grades` WRITE; +/*!40000 ALTER TABLE `mdl_grade_grades` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_grade_grades` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_grade_grades_history` +-- + +DROP TABLE IF EXISTS `mdl_grade_grades_history`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_grade_grades_history` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `action` bigint(10) NOT NULL DEFAULT 0, + `oldid` bigint(10) NOT NULL, + `source` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timemodified` bigint(10) DEFAULT NULL, + `loggeduser` bigint(10) DEFAULT NULL, + `itemid` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `rawgrade` decimal(10,5) DEFAULT NULL, + `rawgrademax` decimal(10,5) NOT NULL DEFAULT 100.00000, + `rawgrademin` decimal(10,5) NOT NULL DEFAULT 0.00000, + `rawscaleid` bigint(10) DEFAULT NULL, + `usermodified` bigint(10) DEFAULT NULL, + `finalgrade` decimal(10,5) DEFAULT NULL, + `hidden` bigint(10) NOT NULL DEFAULT 0, + `locked` bigint(10) NOT NULL DEFAULT 0, + `locktime` bigint(10) NOT NULL DEFAULT 0, + `exported` bigint(10) NOT NULL DEFAULT 0, + `overridden` bigint(10) NOT NULL DEFAULT 0, + `excluded` bigint(10) NOT NULL DEFAULT 0, + `feedback` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `feedbackformat` bigint(10) NOT NULL DEFAULT 0, + `information` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `informationformat` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_gradgradhist_act_ix` (`action`), + KEY `mdl_gradgradhist_tim_ix` (`timemodified`), + KEY `mdl_gradgradhist_useitetim_ix` (`userid`,`itemid`,`timemodified`), + KEY `mdl_gradgradhist_old_ix` (`oldid`), + KEY `mdl_gradgradhist_ite_ix` (`itemid`), + KEY `mdl_gradgradhist_use_ix` (`userid`), + KEY `mdl_gradgradhist_raw_ix` (`rawscaleid`), + KEY `mdl_gradgradhist_use2_ix` (`usermodified`), + KEY `mdl_gradgradhist_log_ix` (`loggeduser`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='History table'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_grade_grades_history` +-- + +LOCK TABLES `mdl_grade_grades_history` WRITE; +/*!40000 ALTER TABLE `mdl_grade_grades_history` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_grade_grades_history` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_grade_import_newitem` +-- + +DROP TABLE IF EXISTS `mdl_grade_import_newitem`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_grade_import_newitem` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `itemname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `importcode` bigint(10) NOT NULL, + `importer` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_gradimponewi_imp_ix` (`importer`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='temporary table for storing new grade_item names from grade '; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_grade_import_newitem` +-- + +LOCK TABLES `mdl_grade_import_newitem` WRITE; +/*!40000 ALTER TABLE `mdl_grade_import_newitem` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_grade_import_newitem` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_grade_import_values` +-- + +DROP TABLE IF EXISTS `mdl_grade_import_values`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_grade_import_values` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `itemid` bigint(10) DEFAULT NULL, + `newgradeitem` bigint(10) DEFAULT NULL, + `userid` bigint(10) NOT NULL, + `finalgrade` decimal(10,5) DEFAULT NULL, + `feedback` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `importcode` bigint(10) NOT NULL, + `importer` bigint(10) DEFAULT NULL, + `importonlyfeedback` tinyint(1) DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_gradimpovalu_ite_ix` (`itemid`), + KEY `mdl_gradimpovalu_new_ix` (`newgradeitem`), + KEY `mdl_gradimpovalu_imp_ix` (`importer`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Temporary table for importing grades'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_grade_import_values` +-- + +LOCK TABLES `mdl_grade_import_values` WRITE; +/*!40000 ALTER TABLE `mdl_grade_import_values` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_grade_import_values` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_grade_items` +-- + +DROP TABLE IF EXISTS `mdl_grade_items`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_grade_items` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `courseid` bigint(10) DEFAULT NULL, + `categoryid` bigint(10) DEFAULT NULL, + `itemname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `itemtype` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `itemmodule` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `iteminstance` bigint(10) DEFAULT NULL, + `itemnumber` bigint(10) DEFAULT NULL, + `iteminfo` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `idnumber` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `calculation` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `gradetype` smallint(4) NOT NULL DEFAULT 1, + `grademax` decimal(10,5) NOT NULL DEFAULT 100.00000, + `grademin` decimal(10,5) NOT NULL DEFAULT 0.00000, + `scaleid` bigint(10) DEFAULT NULL, + `outcomeid` bigint(10) DEFAULT NULL, + `gradepass` decimal(10,5) NOT NULL DEFAULT 0.00000, + `multfactor` decimal(10,5) NOT NULL DEFAULT 1.00000, + `plusfactor` decimal(10,5) NOT NULL DEFAULT 0.00000, + `aggregationcoef` decimal(10,5) NOT NULL DEFAULT 0.00000, + `aggregationcoef2` decimal(10,5) NOT NULL DEFAULT 0.00000, + `sortorder` bigint(10) NOT NULL DEFAULT 0, + `display` bigint(10) NOT NULL DEFAULT 0, + `decimals` tinyint(1) DEFAULT NULL, + `hidden` bigint(10) NOT NULL DEFAULT 0, + `locked` bigint(10) NOT NULL DEFAULT 0, + `locktime` bigint(10) NOT NULL DEFAULT 0, + `needsupdate` bigint(10) NOT NULL DEFAULT 0, + `weightoverride` tinyint(1) NOT NULL DEFAULT 0, + `timecreated` bigint(10) DEFAULT NULL, + `timemodified` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_graditem_locloc_ix` (`locked`,`locktime`), + KEY `mdl_graditem_itenee_ix` (`itemtype`,`needsupdate`), + KEY `mdl_graditem_gra_ix` (`gradetype`), + KEY `mdl_graditem_idncou_ix` (`idnumber`,`courseid`), + KEY `mdl_graditem_cou_ix` (`courseid`), + KEY `mdl_graditem_cat_ix` (`categoryid`), + KEY `mdl_graditem_sca_ix` (`scaleid`), + KEY `mdl_graditem_out_ix` (`outcomeid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table keeps information about gradeable items (ie colum'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_grade_items` +-- + +LOCK TABLES `mdl_grade_items` WRITE; +/*!40000 ALTER TABLE `mdl_grade_items` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_grade_items` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_grade_items_history` +-- + +DROP TABLE IF EXISTS `mdl_grade_items_history`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_grade_items_history` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `action` bigint(10) NOT NULL DEFAULT 0, + `oldid` bigint(10) NOT NULL, + `source` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timemodified` bigint(10) DEFAULT NULL, + `loggeduser` bigint(10) DEFAULT NULL, + `courseid` bigint(10) DEFAULT NULL, + `categoryid` bigint(10) DEFAULT NULL, + `itemname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `itemtype` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `itemmodule` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `iteminstance` bigint(10) DEFAULT NULL, + `itemnumber` bigint(10) DEFAULT NULL, + `iteminfo` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `idnumber` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `calculation` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `gradetype` smallint(4) NOT NULL DEFAULT 1, + `grademax` decimal(10,5) NOT NULL DEFAULT 100.00000, + `grademin` decimal(10,5) NOT NULL DEFAULT 0.00000, + `scaleid` bigint(10) DEFAULT NULL, + `outcomeid` bigint(10) DEFAULT NULL, + `gradepass` decimal(10,5) NOT NULL DEFAULT 0.00000, + `multfactor` decimal(10,5) NOT NULL DEFAULT 1.00000, + `plusfactor` decimal(10,5) NOT NULL DEFAULT 0.00000, + `aggregationcoef` decimal(10,5) NOT NULL DEFAULT 0.00000, + `aggregationcoef2` decimal(10,5) NOT NULL DEFAULT 0.00000, + `sortorder` bigint(10) NOT NULL DEFAULT 0, + `hidden` bigint(10) NOT NULL DEFAULT 0, + `locked` bigint(10) NOT NULL DEFAULT 0, + `locktime` bigint(10) NOT NULL DEFAULT 0, + `needsupdate` bigint(10) NOT NULL DEFAULT 0, + `display` bigint(10) NOT NULL DEFAULT 0, + `decimals` tinyint(1) DEFAULT NULL, + `weightoverride` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_graditemhist_act_ix` (`action`), + KEY `mdl_graditemhist_tim_ix` (`timemodified`), + KEY `mdl_graditemhist_old_ix` (`oldid`), + KEY `mdl_graditemhist_cou_ix` (`courseid`), + KEY `mdl_graditemhist_cat_ix` (`categoryid`), + KEY `mdl_graditemhist_sca_ix` (`scaleid`), + KEY `mdl_graditemhist_out_ix` (`outcomeid`), + KEY `mdl_graditemhist_log_ix` (`loggeduser`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='History of grade_items'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_grade_items_history` +-- + +LOCK TABLES `mdl_grade_items_history` WRITE; +/*!40000 ALTER TABLE `mdl_grade_items_history` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_grade_items_history` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_grade_letters` +-- + +DROP TABLE IF EXISTS `mdl_grade_letters`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_grade_letters` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `contextid` bigint(10) NOT NULL, + `lowerboundary` decimal(10,5) NOT NULL, + `letter` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_gradlett_conlowlet_uix` (`contextid`,`lowerboundary`,`letter`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Repository for grade letters, for courses and other moodle e'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_grade_letters` +-- + +LOCK TABLES `mdl_grade_letters` WRITE; +/*!40000 ALTER TABLE `mdl_grade_letters` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_grade_letters` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_grade_outcomes` +-- + +DROP TABLE IF EXISTS `mdl_grade_outcomes`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_grade_outcomes` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `courseid` bigint(10) DEFAULT NULL, + `shortname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `fullname` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `scaleid` bigint(10) DEFAULT NULL, + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` tinyint(2) NOT NULL DEFAULT 0, + `timecreated` bigint(10) DEFAULT NULL, + `timemodified` bigint(10) DEFAULT NULL, + `usermodified` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_gradoutc_cousho_uix` (`courseid`,`shortname`), + KEY `mdl_gradoutc_cou_ix` (`courseid`), + KEY `mdl_gradoutc_sca_ix` (`scaleid`), + KEY `mdl_gradoutc_use_ix` (`usermodified`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table describes the outcomes used in the system. An out'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_grade_outcomes` +-- + +LOCK TABLES `mdl_grade_outcomes` WRITE; +/*!40000 ALTER TABLE `mdl_grade_outcomes` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_grade_outcomes` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_grade_outcomes_courses` +-- + +DROP TABLE IF EXISTS `mdl_grade_outcomes_courses`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_grade_outcomes_courses` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `courseid` bigint(10) NOT NULL, + `outcomeid` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_gradoutccour_couout_uix` (`courseid`,`outcomeid`), + KEY `mdl_gradoutccour_cou_ix` (`courseid`), + KEY `mdl_gradoutccour_out_ix` (`outcomeid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='stores what outcomes are used in what courses.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_grade_outcomes_courses` +-- + +LOCK TABLES `mdl_grade_outcomes_courses` WRITE; +/*!40000 ALTER TABLE `mdl_grade_outcomes_courses` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_grade_outcomes_courses` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_grade_outcomes_history` +-- + +DROP TABLE IF EXISTS `mdl_grade_outcomes_history`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_grade_outcomes_history` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `action` bigint(10) NOT NULL DEFAULT 0, + `oldid` bigint(10) NOT NULL, + `source` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timemodified` bigint(10) DEFAULT NULL, + `loggeduser` bigint(10) DEFAULT NULL, + `courseid` bigint(10) DEFAULT NULL, + `shortname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `fullname` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `scaleid` bigint(10) DEFAULT NULL, + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` tinyint(2) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_gradoutchist_act_ix` (`action`), + KEY `mdl_gradoutchist_tim_ix` (`timemodified`), + KEY `mdl_gradoutchist_old_ix` (`oldid`), + KEY `mdl_gradoutchist_cou_ix` (`courseid`), + KEY `mdl_gradoutchist_sca_ix` (`scaleid`), + KEY `mdl_gradoutchist_log_ix` (`loggeduser`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='History table'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_grade_outcomes_history` +-- + +LOCK TABLES `mdl_grade_outcomes_history` WRITE; +/*!40000 ALTER TABLE `mdl_grade_outcomes_history` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_grade_outcomes_history` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_grade_settings` +-- + +DROP TABLE IF EXISTS `mdl_grade_settings`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_grade_settings` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `courseid` bigint(10) NOT NULL, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_gradsett_counam_uix` (`courseid`,`name`), + KEY `mdl_gradsett_cou_ix` (`courseid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='gradebook settings'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_grade_settings` +-- + +LOCK TABLES `mdl_grade_settings` WRITE; +/*!40000 ALTER TABLE `mdl_grade_settings` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_grade_settings` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_grading_areas` +-- + +DROP TABLE IF EXISTS `mdl_grading_areas`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_grading_areas` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `contextid` bigint(10) NOT NULL, + `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `areaname` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `activemethod` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_gradarea_concomare_uix` (`contextid`,`component`,`areaname`), + KEY `mdl_gradarea_con_ix` (`contextid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Identifies gradable areas where advanced grading can happen.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_grading_areas` +-- + +LOCK TABLES `mdl_grading_areas` WRITE; +/*!40000 ALTER TABLE `mdl_grading_areas` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_grading_areas` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_grading_definitions` +-- + +DROP TABLE IF EXISTS `mdl_grading_definitions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_grading_definitions` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `areaid` bigint(10) NOT NULL, + `method` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` tinyint(2) DEFAULT NULL, + `status` bigint(10) NOT NULL DEFAULT 0, + `copiedfromid` bigint(10) DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `usercreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `usermodified` bigint(10) NOT NULL, + `timecopied` bigint(10) DEFAULT 0, + `options` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_graddefi_aremet_uix` (`areaid`,`method`), + KEY `mdl_graddefi_are_ix` (`areaid`), + KEY `mdl_graddefi_use_ix` (`usermodified`), + KEY `mdl_graddefi_use2_ix` (`usercreated`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Contains the basic information about an advanced grading for'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_grading_definitions` +-- + +LOCK TABLES `mdl_grading_definitions` WRITE; +/*!40000 ALTER TABLE `mdl_grading_definitions` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_grading_definitions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_grading_instances` +-- + +DROP TABLE IF EXISTS `mdl_grading_instances`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_grading_instances` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `definitionid` bigint(10) NOT NULL, + `raterid` bigint(10) NOT NULL, + `itemid` bigint(10) DEFAULT NULL, + `rawgrade` decimal(10,5) DEFAULT NULL, + `status` bigint(10) NOT NULL DEFAULT 0, + `feedback` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `feedbackformat` tinyint(2) DEFAULT NULL, + `timemodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_gradinst_def_ix` (`definitionid`), + KEY `mdl_gradinst_rat_ix` (`raterid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Grading form instance is an assessment record for one gradab'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_grading_instances` +-- + +LOCK TABLES `mdl_grading_instances` WRITE; +/*!40000 ALTER TABLE `mdl_grading_instances` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_grading_instances` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_gradingform_guide_comments` +-- + +DROP TABLE IF EXISTS `mdl_gradingform_guide_comments`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_gradingform_guide_comments` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `definitionid` bigint(10) NOT NULL, + `sortorder` bigint(10) NOT NULL, + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` tinyint(2) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_gradguidcomm_def_ix` (`definitionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='frequently used comments used in marking guide'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_gradingform_guide_comments` +-- + +LOCK TABLES `mdl_gradingform_guide_comments` WRITE; +/*!40000 ALTER TABLE `mdl_gradingform_guide_comments` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_gradingform_guide_comments` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_gradingform_guide_criteria` +-- + +DROP TABLE IF EXISTS `mdl_gradingform_guide_criteria`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_gradingform_guide_criteria` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `definitionid` bigint(10) NOT NULL, + `sortorder` bigint(10) NOT NULL, + `shortname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` tinyint(2) DEFAULT NULL, + `descriptionmarkers` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionmarkersformat` tinyint(2) DEFAULT NULL, + `maxscore` decimal(10,5) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_gradguidcrit_def_ix` (`definitionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the rows of the criteria grid.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_gradingform_guide_criteria` +-- + +LOCK TABLES `mdl_gradingform_guide_criteria` WRITE; +/*!40000 ALTER TABLE `mdl_gradingform_guide_criteria` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_gradingform_guide_criteria` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_gradingform_guide_fillings` +-- + +DROP TABLE IF EXISTS `mdl_gradingform_guide_fillings`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_gradingform_guide_fillings` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `instanceid` bigint(10) NOT NULL, + `criterionid` bigint(10) NOT NULL, + `remark` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `remarkformat` tinyint(2) DEFAULT NULL, + `score` decimal(10,5) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_gradguidfill_inscri_uix` (`instanceid`,`criterionid`), + KEY `mdl_gradguidfill_ins_ix` (`instanceid`), + KEY `mdl_gradguidfill_cri_ix` (`criterionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the data of how the guide is filled by a particular r'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_gradingform_guide_fillings` +-- + +LOCK TABLES `mdl_gradingform_guide_fillings` WRITE; +/*!40000 ALTER TABLE `mdl_gradingform_guide_fillings` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_gradingform_guide_fillings` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_gradingform_rubric_criteria` +-- + +DROP TABLE IF EXISTS `mdl_gradingform_rubric_criteria`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_gradingform_rubric_criteria` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `definitionid` bigint(10) NOT NULL, + `sortorder` bigint(10) NOT NULL, + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` tinyint(2) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_gradrubrcrit_def_ix` (`definitionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the rows of the rubric grid.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_gradingform_rubric_criteria` +-- + +LOCK TABLES `mdl_gradingform_rubric_criteria` WRITE; +/*!40000 ALTER TABLE `mdl_gradingform_rubric_criteria` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_gradingform_rubric_criteria` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_gradingform_rubric_fillings` +-- + +DROP TABLE IF EXISTS `mdl_gradingform_rubric_fillings`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_gradingform_rubric_fillings` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `instanceid` bigint(10) NOT NULL, + `criterionid` bigint(10) NOT NULL, + `levelid` bigint(10) DEFAULT NULL, + `remark` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `remarkformat` tinyint(2) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_gradrubrfill_inscri_uix` (`instanceid`,`criterionid`), + KEY `mdl_gradrubrfill_lev_ix` (`levelid`), + KEY `mdl_gradrubrfill_ins_ix` (`instanceid`), + KEY `mdl_gradrubrfill_cri_ix` (`criterionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the data of how the rubric is filled by a particular '; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_gradingform_rubric_fillings` +-- + +LOCK TABLES `mdl_gradingform_rubric_fillings` WRITE; +/*!40000 ALTER TABLE `mdl_gradingform_rubric_fillings` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_gradingform_rubric_fillings` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_gradingform_rubric_levels` +-- + +DROP TABLE IF EXISTS `mdl_gradingform_rubric_levels`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_gradingform_rubric_levels` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `criterionid` bigint(10) NOT NULL, + `score` decimal(10,5) NOT NULL, + `definition` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `definitionformat` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_gradrubrleve_cri_ix` (`criterionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the columns of the rubric grid.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_gradingform_rubric_levels` +-- + +LOCK TABLES `mdl_gradingform_rubric_levels` WRITE; +/*!40000 ALTER TABLE `mdl_gradingform_rubric_levels` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_gradingform_rubric_levels` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_groupings` +-- + +DROP TABLE IF EXISTS `mdl_groupings`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_groupings` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `courseid` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` tinyint(2) NOT NULL DEFAULT 0, + `configdata` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_grou_idn2_ix` (`idnumber`), + KEY `mdl_grou_cou2_ix` (`courseid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='A grouping is a collection of groups. WAS: groups_groupings'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_groupings` +-- + +LOCK TABLES `mdl_groupings` WRITE; +/*!40000 ALTER TABLE `mdl_groupings` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_groupings` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_groupings_groups` +-- + +DROP TABLE IF EXISTS `mdl_groupings_groups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_groupings_groups` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `groupingid` bigint(10) NOT NULL DEFAULT 0, + `groupid` bigint(10) NOT NULL DEFAULT 0, + `timeadded` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_grougrou_gro_ix` (`groupingid`), + KEY `mdl_grougrou_gro2_ix` (`groupid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Link a grouping to a group (note, groups can be in multiple '; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_groupings_groups` +-- + +LOCK TABLES `mdl_groupings_groups` WRITE; +/*!40000 ALTER TABLE `mdl_groupings_groups` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_groupings_groups` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_groups` +-- + +DROP TABLE IF EXISTS `mdl_groups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_groups` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `courseid` bigint(10) NOT NULL, + `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `name` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` tinyint(2) NOT NULL DEFAULT 0, + `enrolmentkey` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `picture` bigint(10) NOT NULL DEFAULT 0, + `hidepicture` tinyint(1) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_grou_idn_ix` (`idnumber`), + KEY `mdl_grou_cou_ix` (`courseid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Each record represents a group.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_groups` +-- + +LOCK TABLES `mdl_groups` WRITE; +/*!40000 ALTER TABLE `mdl_groups` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_groups` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_groups_members` +-- + +DROP TABLE IF EXISTS `mdl_groups_members`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_groups_members` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `groupid` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `timeadded` bigint(10) NOT NULL DEFAULT 0, + `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `itemid` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_groumemb_usegro_uix` (`userid`,`groupid`), + KEY `mdl_groumemb_gro_ix` (`groupid`), + KEY `mdl_groumemb_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Link a user to a group.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_groups_members` +-- + +LOCK TABLES `mdl_groups_members` WRITE; +/*!40000 ALTER TABLE `mdl_groups_members` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_groups_members` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_h5p` +-- + +DROP TABLE IF EXISTS `mdl_h5p`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_h5p` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `jsoncontent` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `mainlibraryid` bigint(10) NOT NULL, + `displayoptions` smallint(4) DEFAULT NULL, + `pathnamehash` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `contenthash` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `filtered` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_h5p_mai_ix` (`mainlibraryid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores H5P content information'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_h5p` +-- + +LOCK TABLES `mdl_h5p` WRITE; +/*!40000 ALTER TABLE `mdl_h5p` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_h5p` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_h5p_contents_libraries` +-- + +DROP TABLE IF EXISTS `mdl_h5p_contents_libraries`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_h5p_contents_libraries` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `h5pid` bigint(10) NOT NULL, + `libraryid` bigint(10) NOT NULL, + `dependencytype` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `dropcss` tinyint(1) NOT NULL, + `weight` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_h5pcontlibr_h5p_ix` (`h5pid`), + KEY `mdl_h5pcontlibr_lib_ix` (`libraryid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Store which library is used in which content.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_h5p_contents_libraries` +-- + +LOCK TABLES `mdl_h5p_contents_libraries` WRITE; +/*!40000 ALTER TABLE `mdl_h5p_contents_libraries` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_h5p_contents_libraries` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_h5p_libraries` +-- + +DROP TABLE IF EXISTS `mdl_h5p_libraries`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_h5p_libraries` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `machinename` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `majorversion` smallint(4) NOT NULL, + `minorversion` smallint(4) NOT NULL, + `patchversion` smallint(4) NOT NULL, + `runnable` tinyint(1) NOT NULL, + `fullscreen` tinyint(1) NOT NULL DEFAULT 0, + `embedtypes` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `preloadedjs` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `preloadedcss` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `droplibrarycss` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `semantics` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `addto` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `coremajor` smallint(4) DEFAULT NULL, + `coreminor` smallint(4) DEFAULT NULL, + `metadatasettings` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `tutorial` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `example` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_h5plibr_macmajminpatrun_ix` (`machinename`,`majorversion`,`minorversion`,`patchversion`,`runnable`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores information about libraries used by H5P content.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_h5p_libraries` +-- + +LOCK TABLES `mdl_h5p_libraries` WRITE; +/*!40000 ALTER TABLE `mdl_h5p_libraries` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_h5p_libraries` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_h5p_libraries_cachedassets` +-- + +DROP TABLE IF EXISTS `mdl_h5p_libraries_cachedassets`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_h5p_libraries_cachedassets` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `libraryid` bigint(10) NOT NULL, + `hash` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `mdl_h5plibrcach_lib_ix` (`libraryid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='H5P cached library assets'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_h5p_libraries_cachedassets` +-- + +LOCK TABLES `mdl_h5p_libraries_cachedassets` WRITE; +/*!40000 ALTER TABLE `mdl_h5p_libraries_cachedassets` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_h5p_libraries_cachedassets` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_h5p_library_dependencies` +-- + +DROP TABLE IF EXISTS `mdl_h5p_library_dependencies`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_h5p_library_dependencies` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `libraryid` bigint(10) NOT NULL, + `requiredlibraryid` bigint(10) NOT NULL, + `dependencytype` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `mdl_h5plibrdepe_lib_ix` (`libraryid`), + KEY `mdl_h5plibrdepe_req_ix` (`requiredlibraryid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores H5P library dependencies'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_h5p_library_dependencies` +-- + +LOCK TABLES `mdl_h5p_library_dependencies` WRITE; +/*!40000 ALTER TABLE `mdl_h5p_library_dependencies` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_h5p_library_dependencies` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_h5pactivity` +-- + +DROP TABLE IF EXISTS `mdl_h5pactivity`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_h5pactivity` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `introformat` smallint(4) NOT NULL DEFAULT 0, + `grade` bigint(10) DEFAULT 0, + `displayoptions` smallint(4) NOT NULL DEFAULT 0, + `enabletracking` tinyint(1) NOT NULL DEFAULT 1, + `grademethod` smallint(4) NOT NULL DEFAULT 1, + `reviewmode` smallint(4) DEFAULT 1, + PRIMARY KEY (`id`), + KEY `mdl_h5pa_cou_ix` (`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the h5pactivity activity module instances.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_h5pactivity` +-- + +LOCK TABLES `mdl_h5pactivity` WRITE; +/*!40000 ALTER TABLE `mdl_h5pactivity` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_h5pactivity` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_h5pactivity_attempts` +-- + +DROP TABLE IF EXISTS `mdl_h5pactivity_attempts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_h5pactivity_attempts` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `h5pactivityid` bigint(10) NOT NULL, + `userid` bigint(20) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `attempt` mediumint(6) NOT NULL DEFAULT 1, + `rawscore` bigint(10) DEFAULT 0, + `maxscore` bigint(10) DEFAULT 0, + `scaled` decimal(10,5) NOT NULL DEFAULT 0.00000, + `duration` bigint(10) DEFAULT 0, + `completion` tinyint(1) DEFAULT NULL, + `success` tinyint(1) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_h5paatte_h5puseatt_uix` (`h5pactivityid`,`userid`,`attempt`), + KEY `mdl_h5paatte_tim_ix` (`timecreated`), + KEY `mdl_h5paatte_h5ptim_ix` (`h5pactivityid`,`timecreated`), + KEY `mdl_h5paatte_h5puse_ix` (`h5pactivityid`,`userid`), + KEY `mdl_h5paatte_h5p_ix` (`h5pactivityid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Users attempts inside H5P activities'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_h5pactivity_attempts` +-- + +LOCK TABLES `mdl_h5pactivity_attempts` WRITE; +/*!40000 ALTER TABLE `mdl_h5pactivity_attempts` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_h5pactivity_attempts` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_h5pactivity_attempts_results` +-- + +DROP TABLE IF EXISTS `mdl_h5pactivity_attempts_results`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_h5pactivity_attempts_results` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `attemptid` bigint(10) NOT NULL, + `subcontent` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `interactiontype` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `correctpattern` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `response` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `additionals` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `rawscore` bigint(10) NOT NULL DEFAULT 0, + `maxscore` bigint(10) NOT NULL DEFAULT 0, + `duration` bigint(10) DEFAULT 0, + `completion` tinyint(1) DEFAULT NULL, + `success` tinyint(1) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_h5paatteresu_atttim_ix` (`attemptid`,`timecreated`), + KEY `mdl_h5paatteresu_att_ix` (`attemptid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='H5Pactivities_attempts tracking info'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_h5pactivity_attempts_results` +-- + +LOCK TABLES `mdl_h5pactivity_attempts_results` WRITE; +/*!40000 ALTER TABLE `mdl_h5pactivity_attempts_results` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_h5pactivity_attempts_results` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_imscp` +-- + +DROP TABLE IF EXISTS `mdl_imscp`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_imscp` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `introformat` smallint(4) NOT NULL DEFAULT 0, + `revision` bigint(10) NOT NULL DEFAULT 0, + `keepold` bigint(10) NOT NULL DEFAULT -1, + `structure` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_imsc_cou_ix` (`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='each record is one imscp resource'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_imscp` +-- + +LOCK TABLES `mdl_imscp` WRITE; +/*!40000 ALTER TABLE `mdl_imscp` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_imscp` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_infected_files` +-- + +DROP TABLE IF EXISTS `mdl_infected_files`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_infected_files` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `filename` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `quarantinedfile` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `userid` bigint(10) NOT NULL, + `reason` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_infefile_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Table to store infected file details.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_infected_files` +-- + +LOCK TABLES `mdl_infected_files` WRITE; +/*!40000 ALTER TABLE `mdl_infected_files` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_infected_files` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_label` +-- + +DROP TABLE IF EXISTS `mdl_label`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_label` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `introformat` smallint(4) DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_labe_cou_ix` (`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines labels'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_label` +-- + +LOCK TABLES `mdl_label` WRITE; +/*!40000 ALTER TABLE `mdl_label` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_label` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_lesson` +-- + +DROP TABLE IF EXISTS `mdl_lesson`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_lesson` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `introformat` smallint(4) NOT NULL DEFAULT 0, + `practice` smallint(3) NOT NULL DEFAULT 0, + `modattempts` smallint(3) NOT NULL DEFAULT 0, + `usepassword` smallint(3) NOT NULL DEFAULT 0, + `password` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `dependency` bigint(10) NOT NULL DEFAULT 0, + `conditions` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `grade` bigint(10) NOT NULL DEFAULT 0, + `custom` smallint(3) NOT NULL DEFAULT 0, + `ongoing` smallint(3) NOT NULL DEFAULT 0, + `usemaxgrade` smallint(3) NOT NULL DEFAULT 0, + `maxanswers` smallint(3) NOT NULL DEFAULT 4, + `maxattempts` smallint(3) NOT NULL DEFAULT 5, + `review` smallint(3) NOT NULL DEFAULT 0, + `nextpagedefault` smallint(3) NOT NULL DEFAULT 0, + `feedback` smallint(3) NOT NULL DEFAULT 1, + `minquestions` smallint(3) NOT NULL DEFAULT 0, + `maxpages` smallint(3) NOT NULL DEFAULT 0, + `timelimit` bigint(10) NOT NULL DEFAULT 0, + `retake` smallint(3) NOT NULL DEFAULT 1, + `activitylink` bigint(10) NOT NULL DEFAULT 0, + `mediafile` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `mediaheight` bigint(10) NOT NULL DEFAULT 100, + `mediawidth` bigint(10) NOT NULL DEFAULT 650, + `mediaclose` smallint(3) NOT NULL DEFAULT 0, + `slideshow` smallint(3) NOT NULL DEFAULT 0, + `width` bigint(10) NOT NULL DEFAULT 640, + `height` bigint(10) NOT NULL DEFAULT 480, + `bgcolor` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#FFFFFF', + `displayleft` smallint(3) NOT NULL DEFAULT 0, + `displayleftif` smallint(3) NOT NULL DEFAULT 0, + `progressbar` smallint(3) NOT NULL DEFAULT 0, + `available` bigint(10) NOT NULL DEFAULT 0, + `deadline` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `completionendreached` tinyint(1) DEFAULT 0, + `completiontimespent` bigint(11) DEFAULT 0, + `allowofflineattempts` tinyint(1) DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_less_cou_ix` (`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines lesson'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_lesson` +-- + +LOCK TABLES `mdl_lesson` WRITE; +/*!40000 ALTER TABLE `mdl_lesson` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_lesson` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_lesson_answers` +-- + +DROP TABLE IF EXISTS `mdl_lesson_answers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_lesson_answers` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `lessonid` bigint(10) NOT NULL DEFAULT 0, + `pageid` bigint(10) NOT NULL DEFAULT 0, + `jumpto` bigint(11) NOT NULL DEFAULT 0, + `grade` smallint(4) NOT NULL DEFAULT 0, + `score` bigint(10) NOT NULL DEFAULT 0, + `flags` smallint(3) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `answer` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `answerformat` tinyint(2) NOT NULL DEFAULT 0, + `response` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `responseformat` tinyint(2) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_lessansw_les_ix` (`lessonid`), + KEY `mdl_lessansw_pag_ix` (`pageid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines lesson_answers'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_lesson_answers` +-- + +LOCK TABLES `mdl_lesson_answers` WRITE; +/*!40000 ALTER TABLE `mdl_lesson_answers` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_lesson_answers` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_lesson_attempts` +-- + +DROP TABLE IF EXISTS `mdl_lesson_attempts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_lesson_attempts` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `lessonid` bigint(10) NOT NULL DEFAULT 0, + `pageid` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `answerid` bigint(10) NOT NULL DEFAULT 0, + `retry` smallint(3) NOT NULL DEFAULT 0, + `correct` bigint(10) NOT NULL DEFAULT 0, + `useranswer` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timeseen` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_lessatte_use_ix` (`userid`), + KEY `mdl_lessatte_les_ix` (`lessonid`), + KEY `mdl_lessatte_pag_ix` (`pageid`), + KEY `mdl_lessatte_ans_ix` (`answerid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines lesson_attempts'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_lesson_attempts` +-- + +LOCK TABLES `mdl_lesson_attempts` WRITE; +/*!40000 ALTER TABLE `mdl_lesson_attempts` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_lesson_attempts` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_lesson_branch` +-- + +DROP TABLE IF EXISTS `mdl_lesson_branch`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_lesson_branch` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `lessonid` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `pageid` bigint(10) NOT NULL DEFAULT 0, + `retry` bigint(10) NOT NULL DEFAULT 0, + `flag` smallint(3) NOT NULL DEFAULT 0, + `timeseen` bigint(10) NOT NULL DEFAULT 0, + `nextpageid` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_lessbran_use_ix` (`userid`), + KEY `mdl_lessbran_les_ix` (`lessonid`), + KEY `mdl_lessbran_pag_ix` (`pageid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='branches for each lesson/user'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_lesson_branch` +-- + +LOCK TABLES `mdl_lesson_branch` WRITE; +/*!40000 ALTER TABLE `mdl_lesson_branch` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_lesson_branch` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_lesson_grades` +-- + +DROP TABLE IF EXISTS `mdl_lesson_grades`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_lesson_grades` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `lessonid` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `grade` double NOT NULL DEFAULT 0, + `late` smallint(3) NOT NULL DEFAULT 0, + `completed` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_lessgrad_use_ix` (`userid`), + KEY `mdl_lessgrad_les_ix` (`lessonid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines lesson_grades'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_lesson_grades` +-- + +LOCK TABLES `mdl_lesson_grades` WRITE; +/*!40000 ALTER TABLE `mdl_lesson_grades` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_lesson_grades` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_lesson_overrides` +-- + +DROP TABLE IF EXISTS `mdl_lesson_overrides`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_lesson_overrides` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `lessonid` bigint(10) NOT NULL DEFAULT 0, + `groupid` bigint(10) DEFAULT NULL, + `userid` bigint(10) DEFAULT NULL, + `available` bigint(10) DEFAULT NULL, + `deadline` bigint(10) DEFAULT NULL, + `timelimit` bigint(10) DEFAULT NULL, + `review` smallint(3) DEFAULT NULL, + `maxattempts` smallint(3) DEFAULT NULL, + `retake` smallint(3) DEFAULT NULL, + `password` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_lessover_les_ix` (`lessonid`), + KEY `mdl_lessover_gro_ix` (`groupid`), + KEY `mdl_lessover_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The overrides to lesson settings.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_lesson_overrides` +-- + +LOCK TABLES `mdl_lesson_overrides` WRITE; +/*!40000 ALTER TABLE `mdl_lesson_overrides` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_lesson_overrides` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_lesson_pages` +-- + +DROP TABLE IF EXISTS `mdl_lesson_pages`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_lesson_pages` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `lessonid` bigint(10) NOT NULL DEFAULT 0, + `prevpageid` bigint(10) NOT NULL DEFAULT 0, + `nextpageid` bigint(10) NOT NULL DEFAULT 0, + `qtype` smallint(3) NOT NULL DEFAULT 0, + `qoption` smallint(3) NOT NULL DEFAULT 0, + `layout` smallint(3) NOT NULL DEFAULT 1, + `display` smallint(3) NOT NULL DEFAULT 1, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `contents` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `contentsformat` tinyint(2) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_lesspage_les_ix` (`lessonid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines lesson_pages'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_lesson_pages` +-- + +LOCK TABLES `mdl_lesson_pages` WRITE; +/*!40000 ALTER TABLE `mdl_lesson_pages` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_lesson_pages` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_lesson_timer` +-- + +DROP TABLE IF EXISTS `mdl_lesson_timer`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_lesson_timer` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `lessonid` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `starttime` bigint(10) NOT NULL DEFAULT 0, + `lessontime` bigint(10) NOT NULL DEFAULT 0, + `completed` tinyint(1) DEFAULT 0, + `timemodifiedoffline` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_lesstime_use_ix` (`userid`), + KEY `mdl_lesstime_les_ix` (`lessonid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='lesson timer for each lesson'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_lesson_timer` +-- + +LOCK TABLES `mdl_lesson_timer` WRITE; +/*!40000 ALTER TABLE `mdl_lesson_timer` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_lesson_timer` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_license` +-- + +DROP TABLE IF EXISTS `mdl_license`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_license` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `shortname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `fullname` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `source` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `enabled` tinyint(1) NOT NULL DEFAULT 1, + `version` bigint(10) NOT NULL DEFAULT 0, + `custom` tinyint(1) NOT NULL DEFAULT 0, + `sortorder` mediumint(5) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='store licenses used by moodle'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_license` +-- + +LOCK TABLES `mdl_license` WRITE; +/*!40000 ALTER TABLE `mdl_license` DISABLE KEYS */; +INSERT INTO `mdl_license` VALUES (1,'unknown','Licence not specified','',1,2010033100,0,1),(2,'allrightsreserved','All rights reserved','https://en.wikipedia.org/wiki/All_rights_reserved',1,2010033100,0,2),(3,'public','Public domain','https://en.wikipedia.org/wiki/Public_domain',1,2010033100,0,3),(4,'cc','Creative Commons','https://creativecommons.org/licenses/by/3.0/',1,2010033100,0,4),(5,'cc-nd','Creative Commons - NoDerivs','https://creativecommons.org/licenses/by-nd/3.0/',1,2010033100,0,5),(6,'cc-nc-nd','Creative Commons - No Commercial NoDerivs','https://creativecommons.org/licenses/by-nc-nd/3.0/',1,2010033100,0,6),(7,'cc-nc','Creative Commons - No Commercial','https://creativecommons.org/licenses/by-nc/3.0/',1,2010033100,0,7),(8,'cc-nc-sa','Creative Commons - No Commercial ShareAlike','https://creativecommons.org/licenses/by-nc-sa/3.0/',1,2010033100,0,8),(9,'cc-sa','Creative Commons - ShareAlike','https://creativecommons.org/licenses/by-sa/3.0/',1,2010033100,0,9); +/*!40000 ALTER TABLE `mdl_license` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_lock_db` +-- + +DROP TABLE IF EXISTS `mdl_lock_db`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_lock_db` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `resourcekey` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `expires` bigint(10) DEFAULT NULL, + `owner` varchar(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_lockdb_res_uix` (`resourcekey`), + KEY `mdl_lockdb_exp_ix` (`expires`), + KEY `mdl_lockdb_own_ix` (`owner`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores active and inactive lock types for db locking method.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_lock_db` +-- + +LOCK TABLES `mdl_lock_db` WRITE; +/*!40000 ALTER TABLE `mdl_lock_db` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_lock_db` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_log` +-- + +DROP TABLE IF EXISTS `mdl_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_log` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `time` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `ip` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `course` bigint(10) NOT NULL DEFAULT 0, + `module` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `cmid` bigint(10) NOT NULL DEFAULT 0, + `action` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `info` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `mdl_log_coumodact_ix` (`course`,`module`,`action`), + KEY `mdl_log_tim_ix` (`time`), + KEY `mdl_log_act_ix` (`action`), + KEY `mdl_log_usecou_ix` (`userid`,`course`), + KEY `mdl_log_cmi_ix` (`cmid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Every action is logged as far as possible'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_log` +-- + +LOCK TABLES `mdl_log` WRITE; +/*!40000 ALTER TABLE `mdl_log` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_log` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_log_display` +-- + +DROP TABLE IF EXISTS `mdl_log_display`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_log_display` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `module` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `action` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `mtable` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `field` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_logdisp_modact_uix` (`module`,`action`) +) ENGINE=InnoDB AUTO_INCREMENT=194 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='For a particular module/action, specifies a moodle table/fie'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_log_display` +-- + +LOCK TABLES `mdl_log_display` WRITE; +/*!40000 ALTER TABLE `mdl_log_display` DISABLE KEYS */; +INSERT INTO `mdl_log_display` VALUES (1,'course','user report','user','CONCAT(firstname, \' \', lastname)','moodle'),(2,'course','view','course','fullname','moodle'),(3,'course','view section','course_sections','name','moodle'),(4,'course','update','course','fullname','moodle'),(5,'course','hide','course','fullname','moodle'),(6,'course','show','course','fullname','moodle'),(7,'course','move','course','fullname','moodle'),(8,'course','enrol','course','fullname','moodle'),(9,'course','unenrol','course','fullname','moodle'),(10,'course','report log','course','fullname','moodle'),(11,'course','report live','course','fullname','moodle'),(12,'course','report outline','course','fullname','moodle'),(13,'course','report participation','course','fullname','moodle'),(14,'course','report stats','course','fullname','moodle'),(15,'category','add','course_categories','name','moodle'),(16,'category','hide','course_categories','name','moodle'),(17,'category','move','course_categories','name','moodle'),(18,'category','show','course_categories','name','moodle'),(19,'category','update','course_categories','name','moodle'),(20,'message','write','user','CONCAT(firstname, \' \', lastname)','moodle'),(21,'message','read','user','CONCAT(firstname, \' \', lastname)','moodle'),(22,'message','add contact','user','CONCAT(firstname, \' \', lastname)','moodle'),(23,'message','remove contact','user','CONCAT(firstname, \' \', lastname)','moodle'),(24,'message','block contact','user','CONCAT(firstname, \' \', lastname)','moodle'),(25,'message','unblock contact','user','CONCAT(firstname, \' \', lastname)','moodle'),(26,'group','view','groups','name','moodle'),(27,'tag','update','tag','name','moodle'),(28,'tag','flag','tag','name','moodle'),(29,'user','view','user','CONCAT(firstname, \' \', lastname)','moodle'),(30,'assign','add','assign','name','mod_assign'),(31,'assign','delete mod','assign','name','mod_assign'),(32,'assign','download all submissions','assign','name','mod_assign'),(33,'assign','grade submission','assign','name','mod_assign'),(34,'assign','lock submission','assign','name','mod_assign'),(35,'assign','reveal identities','assign','name','mod_assign'),(36,'assign','revert submission to draft','assign','name','mod_assign'),(37,'assign','set marking workflow state','assign','name','mod_assign'),(38,'assign','submission statement accepted','assign','name','mod_assign'),(39,'assign','submit','assign','name','mod_assign'),(40,'assign','submit for grading','assign','name','mod_assign'),(41,'assign','unlock submission','assign','name','mod_assign'),(42,'assign','update','assign','name','mod_assign'),(43,'assign','upload','assign','name','mod_assign'),(44,'assign','view','assign','name','mod_assign'),(45,'assign','view all','course','fullname','mod_assign'),(46,'assign','view confirm submit assignment form','assign','name','mod_assign'),(47,'assign','view grading form','assign','name','mod_assign'),(48,'assign','view submission','assign','name','mod_assign'),(49,'assign','view submission grading table','assign','name','mod_assign'),(50,'assign','view submit assignment form','assign','name','mod_assign'),(51,'assign','view feedback','assign','name','mod_assign'),(52,'assign','view batch set marking workflow state','assign','name','mod_assign'),(53,'assignment','view','assignment','name','mod_assignment'),(54,'assignment','add','assignment','name','mod_assignment'),(55,'assignment','update','assignment','name','mod_assignment'),(56,'assignment','view submission','assignment','name','mod_assignment'),(57,'assignment','upload','assignment','name','mod_assignment'),(58,'book','add','book','name','mod_book'),(59,'book','update','book','name','mod_book'),(60,'book','view','book','name','mod_book'),(61,'book','add chapter','book_chapters','title','mod_book'),(62,'book','update chapter','book_chapters','title','mod_book'),(63,'book','view chapter','book_chapters','title','mod_book'),(64,'chat','view','chat','name','mod_chat'),(65,'chat','add','chat','name','mod_chat'),(66,'chat','update','chat','name','mod_chat'),(67,'chat','report','chat','name','mod_chat'),(68,'chat','talk','chat','name','mod_chat'),(69,'choice','view','choice','name','mod_choice'),(70,'choice','update','choice','name','mod_choice'),(71,'choice','add','choice','name','mod_choice'),(72,'choice','report','choice','name','mod_choice'),(73,'choice','choose','choice','name','mod_choice'),(74,'choice','choose again','choice','name','mod_choice'),(75,'data','view','data','name','mod_data'),(76,'data','add','data','name','mod_data'),(77,'data','update','data','name','mod_data'),(78,'data','record delete','data','name','mod_data'),(79,'data','fields add','data_fields','name','mod_data'),(80,'data','fields update','data_fields','name','mod_data'),(81,'data','templates saved','data','name','mod_data'),(82,'data','templates def','data','name','mod_data'),(83,'feedback','startcomplete','feedback','name','mod_feedback'),(84,'feedback','submit','feedback','name','mod_feedback'),(85,'feedback','delete','feedback','name','mod_feedback'),(86,'feedback','view','feedback','name','mod_feedback'),(87,'feedback','view all','course','shortname','mod_feedback'),(88,'folder','view','folder','name','mod_folder'),(89,'folder','view all','folder','name','mod_folder'),(90,'folder','update','folder','name','mod_folder'),(91,'folder','add','folder','name','mod_folder'),(92,'forum','add','forum','name','mod_forum'),(93,'forum','update','forum','name','mod_forum'),(94,'forum','add discussion','forum_discussions','name','mod_forum'),(95,'forum','add post','forum_posts','subject','mod_forum'),(96,'forum','update post','forum_posts','subject','mod_forum'),(97,'forum','user report','user','CONCAT(firstname, \' \', lastname)','mod_forum'),(98,'forum','move discussion','forum_discussions','name','mod_forum'),(99,'forum','view subscribers','forum','name','mod_forum'),(100,'forum','view discussion','forum_discussions','name','mod_forum'),(101,'forum','view forum','forum','name','mod_forum'),(102,'forum','subscribe','forum','name','mod_forum'),(103,'forum','unsubscribe','forum','name','mod_forum'),(104,'forum','pin discussion','forum_discussions','name','mod_forum'),(105,'forum','unpin discussion','forum_discussions','name','mod_forum'),(106,'glossary','add','glossary','name','mod_glossary'),(107,'glossary','update','glossary','name','mod_glossary'),(108,'glossary','view','glossary','name','mod_glossary'),(109,'glossary','view all','glossary','name','mod_glossary'),(110,'glossary','add entry','glossary','name','mod_glossary'),(111,'glossary','update entry','glossary','name','mod_glossary'),(112,'glossary','add category','glossary','name','mod_glossary'),(113,'glossary','update category','glossary','name','mod_glossary'),(114,'glossary','delete category','glossary','name','mod_glossary'),(115,'glossary','approve entry','glossary','name','mod_glossary'),(116,'glossary','disapprove entry','glossary','name','mod_glossary'),(117,'glossary','view entry','glossary_entries','concept','mod_glossary'),(118,'imscp','view','imscp','name','mod_imscp'),(119,'imscp','view all','imscp','name','mod_imscp'),(120,'imscp','update','imscp','name','mod_imscp'),(121,'imscp','add','imscp','name','mod_imscp'),(122,'label','add','label','name','mod_label'),(123,'label','update','label','name','mod_label'),(124,'lesson','start','lesson','name','mod_lesson'),(125,'lesson','end','lesson','name','mod_lesson'),(126,'lesson','view','lesson_pages','title','mod_lesson'),(127,'lti','view','lti','name','mod_lti'),(128,'lti','launch','lti','name','mod_lti'),(129,'lti','view all','lti','name','mod_lti'),(130,'page','view','page','name','mod_page'),(131,'page','view all','page','name','mod_page'),(132,'page','update','page','name','mod_page'),(133,'page','add','page','name','mod_page'),(134,'quiz','add','quiz','name','mod_quiz'),(135,'quiz','update','quiz','name','mod_quiz'),(136,'quiz','view','quiz','name','mod_quiz'),(137,'quiz','report','quiz','name','mod_quiz'),(138,'quiz','attempt','quiz','name','mod_quiz'),(139,'quiz','submit','quiz','name','mod_quiz'),(140,'quiz','review','quiz','name','mod_quiz'),(141,'quiz','editquestions','quiz','name','mod_quiz'),(142,'quiz','preview','quiz','name','mod_quiz'),(143,'quiz','start attempt','quiz','name','mod_quiz'),(144,'quiz','close attempt','quiz','name','mod_quiz'),(145,'quiz','continue attempt','quiz','name','mod_quiz'),(146,'quiz','edit override','quiz','name','mod_quiz'),(147,'quiz','delete override','quiz','name','mod_quiz'),(148,'quiz','view summary','quiz','name','mod_quiz'),(149,'resource','view','resource','name','mod_resource'),(150,'resource','view all','resource','name','mod_resource'),(151,'resource','update','resource','name','mod_resource'),(152,'resource','add','resource','name','mod_resource'),(153,'scorm','view','scorm','name','mod_scorm'),(154,'scorm','review','scorm','name','mod_scorm'),(155,'scorm','update','scorm','name','mod_scorm'),(156,'scorm','add','scorm','name','mod_scorm'),(157,'survey','add','survey','name','mod_survey'),(158,'survey','update','survey','name','mod_survey'),(159,'survey','download','survey','name','mod_survey'),(160,'survey','view form','survey','name','mod_survey'),(161,'survey','view graph','survey','name','mod_survey'),(162,'survey','view report','survey','name','mod_survey'),(163,'survey','submit','survey','name','mod_survey'),(164,'url','view','url','name','mod_url'),(165,'url','view all','url','name','mod_url'),(166,'url','update','url','name','mod_url'),(167,'url','add','url','name','mod_url'),(168,'workshop','add','workshop','name','mod_workshop'),(169,'workshop','update','workshop','name','mod_workshop'),(170,'workshop','view','workshop','name','mod_workshop'),(171,'workshop','view all','workshop','name','mod_workshop'),(172,'workshop','add submission','workshop_submissions','title','mod_workshop'),(173,'workshop','update submission','workshop_submissions','title','mod_workshop'),(174,'workshop','view submission','workshop_submissions','title','mod_workshop'),(175,'workshop','add assessment','workshop_submissions','title','mod_workshop'),(176,'workshop','update assessment','workshop_submissions','title','mod_workshop'),(177,'workshop','add example','workshop_submissions','title','mod_workshop'),(178,'workshop','update example','workshop_submissions','title','mod_workshop'),(179,'workshop','view example','workshop_submissions','title','mod_workshop'),(180,'workshop','add reference assessment','workshop_submissions','title','mod_workshop'),(181,'workshop','update reference assessment','workshop_submissions','title','mod_workshop'),(182,'workshop','add example assessment','workshop_submissions','title','mod_workshop'),(183,'workshop','update example assessment','workshop_submissions','title','mod_workshop'),(184,'workshop','update aggregate grades','workshop','name','mod_workshop'),(185,'workshop','update clear aggregated grades','workshop','name','mod_workshop'),(186,'workshop','update clear assessments','workshop','name','mod_workshop'),(187,'book','exportimscp','book','name','booktool_exportimscp'),(188,'book','print','book','name','booktool_print'),(189,'book','print chapter','book_chapters','title','booktool_print'),(190,'customcert','view','customcert','name','mod_customcert'),(191,'customcert','add','customcert','name','mod_customcert'),(192,'customcert','update','customcert','name','mod_customcert'),(193,'customcert','received','customcert','name','mod_customcert'); +/*!40000 ALTER TABLE `mdl_log_display` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_log_queries` +-- + +DROP TABLE IF EXISTS `mdl_log_queries`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_log_queries` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `qtype` mediumint(5) NOT NULL, + `sqltext` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `sqlparams` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `error` mediumint(5) NOT NULL DEFAULT 0, + `info` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `backtrace` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `exectime` decimal(10,5) NOT NULL, + `timelogged` bigint(10) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Logged database queries.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_log_queries` +-- + +LOCK TABLES `mdl_log_queries` WRITE; +/*!40000 ALTER TABLE `mdl_log_queries` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_log_queries` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_logstore_standard_log` +-- + +DROP TABLE IF EXISTS `mdl_logstore_standard_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_logstore_standard_log` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `eventname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `action` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `target` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `objecttable` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `objectid` bigint(10) DEFAULT NULL, + `crud` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `edulevel` tinyint(1) NOT NULL, + `contextid` bigint(10) NOT NULL, + `contextlevel` bigint(10) NOT NULL, + `contextinstanceid` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `courseid` bigint(10) DEFAULT NULL, + `relateduserid` bigint(10) DEFAULT NULL, + `anonymous` tinyint(1) NOT NULL DEFAULT 0, + `other` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `origin` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `ip` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `realuserid` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_logsstanlog_tim_ix` (`timecreated`), + KEY `mdl_logsstanlog_couanotim_ix` (`courseid`,`anonymous`,`timecreated`), + KEY `mdl_logsstanlog_useconconcr_ix` (`userid`,`contextlevel`,`contextinstanceid`,`crud`,`edulevel`,`timecreated`), + KEY `mdl_logsstanlog_con_ix` (`contextid`) +) ENGINE=InnoDB AUTO_INCREMENT=1175 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Standard log table'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_logstore_standard_log` +-- + +LOCK TABLES `mdl_logstore_standard_log` WRITE; +/*!40000 ALTER TABLE `mdl_logstore_standard_log` DISABLE KEYS */; +INSERT INTO `mdl_logstore_standard_log` VALUES (1,'\\core\\event\\user_loggedin','core','loggedin','user','user',2,'r',0,1,10,0,2,0,NULL,0,'a:1:{s:8:\"username\";s:5:\"admin\";}',1619623752,'web','65.129.132.97',NULL),(2,'\\core\\event\\user_password_updated','core','updated','user_password',NULL,NULL,'u',0,5,30,2,2,0,2,0,'a:1:{s:14:\"forgottenreset\";b:0;}',1619623789,'web','65.129.132.97',NULL),(3,'\\core\\event\\user_updated','core','updated','user','user',2,'u',0,5,30,2,2,0,2,0,'N;',1619623789,'web','65.129.132.97',NULL),(4,'\\core\\event\\config_log_created','core','created','config_log','config_log',618,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"notloggedinroleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"6\";s:6:\"plugin\";N;}',1619623789,'web','65.129.132.97',NULL),(5,'\\core\\event\\config_log_created','core','created','config_log','config_log',619,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"guestroleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"6\";s:6:\"plugin\";N;}',1619623789,'web','65.129.132.97',NULL),(6,'\\core\\event\\config_log_created','core','created','config_log','config_log',620,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"defaultuserroleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"7\";s:6:\"plugin\";N;}',1619623789,'web','65.129.132.97',NULL),(7,'\\core\\event\\config_log_created','core','created','config_log','config_log',621,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"creatornewroleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";N;}',1619623789,'web','65.129.132.97',NULL),(8,'\\core\\event\\config_log_created','core','created','config_log','config_log',622,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"restorernewroleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";N;}',1619623789,'web','65.129.132.97',NULL),(9,'\\core\\event\\config_log_created','core','created','config_log','config_log',623,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"contactdataprotectionofficer\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:16:\"tool_dataprivacy\";}',1619623789,'web','65.129.132.97',NULL),(10,'\\core\\event\\config_log_created','core','created','config_log','config_log',624,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"automaticdataexportapproval\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:16:\"tool_dataprivacy\";}',1619623789,'web','65.129.132.97',NULL),(11,'\\core\\event\\config_log_created','core','created','config_log','config_log',625,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"automaticdatadeletionapproval\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:16:\"tool_dataprivacy\";}',1619623789,'web','65.129.132.97',NULL),(12,'\\core\\event\\config_log_created','core','created','config_log','config_log',626,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"automaticdeletionrequests\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"tool_dataprivacy\";}',1619623789,'web','65.129.132.97',NULL),(13,'\\core\\event\\config_log_created','core','created','config_log','config_log',627,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"privacyrequestexpiry\";s:8:\"oldvalue\";N;s:5:\"value\";s:6:\"604800\";s:6:\"plugin\";s:16:\"tool_dataprivacy\";}',1619623789,'web','65.129.132.97',NULL),(14,'\\core\\event\\config_log_created','core','created','config_log','config_log',628,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:33:\"requireallenddatesforuserdeletion\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"tool_dataprivacy\";}',1619623789,'web','65.129.132.97',NULL),(15,'\\core\\event\\config_log_created','core','created','config_log','config_log',629,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"showdataretentionsummary\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"tool_dataprivacy\";}',1619623789,'web','65.129.132.97',NULL),(16,'\\core\\event\\config_log_created','core','created','config_log','config_log',630,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"exportlog\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:8:\"tool_log\";}',1619623789,'web','65.129.132.97',NULL),(17,'\\core\\event\\config_log_created','core','created','config_log','config_log',631,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"sitepolicyhandler\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623789,'web','65.129.132.97',NULL),(18,'\\core\\event\\config_log_created','core','created','config_log','config_log',632,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"gradebookroles\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";N;}',1619623789,'web','65.129.132.97',NULL),(19,'\\core\\event\\config_log_created','core','created','config_log','config_log',633,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"logstore\";s:8:\"oldvalue\";N;s:5:\"value\";s:17:\"logstore_standard\";s:6:\"plugin\";s:9:\"analytics\";}',1619623789,'web','65.129.132.97',NULL),(20,'\\core\\event\\config_log_created','core','created','config_log','config_log',634,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"h5plibraryhandler\";s:8:\"oldvalue\";N;s:5:\"value\";s:11:\"h5plib_v124\";s:6:\"plugin\";N;}',1619623789,'web','65.129.132.97',NULL),(21,'\\core\\event\\config_log_created','core','created','config_log','config_log',635,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"jabberhost\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(22,'\\core\\event\\config_log_created','core','created','config_log','config_log',636,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"jabberserver\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(23,'\\core\\event\\config_log_created','core','created','config_log','config_log',637,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"jabberusername\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(24,'\\core\\event\\config_log_created','core','created','config_log','config_log',638,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"jabberpassword\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(25,'\\core\\event\\config_log_created','core','created','config_log','config_log',639,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"jabberport\";s:8:\"oldvalue\";N;s:5:\"value\";s:4:\"5222\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(26,'\\core\\event\\config_log_created','core','created','config_log','config_log',640,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"airnotifierurl\";s:8:\"oldvalue\";N;s:5:\"value\";s:27:\"https://messages.moodle.net\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(27,'\\core\\event\\config_log_created','core','created','config_log','config_log',641,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"airnotifierport\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"443\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(28,'\\core\\event\\config_log_created','core','created','config_log','config_log',642,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"airnotifiermobileappname\";s:8:\"oldvalue\";N;s:5:\"value\";s:23:\"com.moodle.moodlemobile\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(29,'\\core\\event\\config_log_created','core','created','config_log','config_log',643,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"airnotifierappname\";s:8:\"oldvalue\";N;s:5:\"value\";s:21:\"commoodlemoodlemobile\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(30,'\\core\\event\\config_log_created','core','created','config_log','config_log',644,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"airnotifieraccesskey\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(31,'\\core\\event\\config_log_created','core','created','config_log','config_log',645,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"feedback_plugin_for_gradebook\";s:8:\"oldvalue\";N;s:5:\"value\";s:23:\"assignfeedback_comments\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(32,'\\core\\event\\config_log_created','core','created','config_log','config_log',646,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"showrecentsubmissions\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(33,'\\core\\event\\config_log_created','core','created','config_log','config_log',647,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"submissionreceipts\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(34,'\\core\\event\\config_log_created','core','created','config_log','config_log',648,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"submissionstatement\";s:8:\"oldvalue\";N;s:5:\"value\";s:102:\"This submission is my own work, except where I have acknowledged the use of the works of other people.\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(35,'\\core\\event\\config_log_created','core','created','config_log','config_log',649,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:33:\"submissionstatementteamsubmission\";s:8:\"oldvalue\";N;s:5:\"value\";s:112:\"This submission is the work of my group, except where we have acknowledged the use of the works of other people.\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(36,'\\core\\event\\config_log_created','core','created','config_log','config_log',650,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:42:\"submissionstatementteamsubmissionallsubmit\";s:8:\"oldvalue\";N;s:5:\"value\";s:120:\"This submission is my own work as a group member, except where I have acknowledged the use of the works of other people.\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(37,'\\core\\event\\config_log_created','core','created','config_log','config_log',651,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"maxperpage\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"-1\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(38,'\\core\\event\\config_log_created','core','created','config_log','config_log',652,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"alwaysshowdescription\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(39,'\\core\\event\\config_log_created','core','created','config_log','config_log',653,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"alwaysshowdescription_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(40,'\\core\\event\\config_log_created','core','created','config_log','config_log',654,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"alwaysshowdescription_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(41,'\\core\\event\\config_log_created','core','created','config_log','config_log',655,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"allowsubmissionsfromdate\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(42,'\\core\\event\\config_log_created','core','created','config_log','config_log',656,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:32:\"allowsubmissionsfromdate_enabled\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(43,'\\core\\event\\config_log_created','core','created','config_log','config_log',657,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"allowsubmissionsfromdate_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(44,'\\core\\event\\config_log_created','core','created','config_log','config_log',658,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"duedate\";s:8:\"oldvalue\";N;s:5:\"value\";s:6:\"604800\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(45,'\\core\\event\\config_log_created','core','created','config_log','config_log',659,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"duedate_enabled\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(46,'\\core\\event\\config_log_created','core','created','config_log','config_log',660,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"duedate_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(47,'\\core\\event\\config_log_created','core','created','config_log','config_log',661,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"cutoffdate\";s:8:\"oldvalue\";N;s:5:\"value\";s:7:\"1209600\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(48,'\\core\\event\\config_log_created','core','created','config_log','config_log',662,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"cutoffdate_enabled\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(49,'\\core\\event\\config_log_created','core','created','config_log','config_log',663,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"cutoffdate_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(50,'\\core\\event\\config_log_created','core','created','config_log','config_log',664,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"gradingduedate\";s:8:\"oldvalue\";N;s:5:\"value\";s:7:\"1209600\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(51,'\\core\\event\\config_log_created','core','created','config_log','config_log',665,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"gradingduedate_enabled\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(52,'\\core\\event\\config_log_created','core','created','config_log','config_log',666,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"gradingduedate_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(53,'\\core\\event\\config_log_created','core','created','config_log','config_log',667,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"submissiondrafts\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(54,'\\core\\event\\config_log_created','core','created','config_log','config_log',668,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"submissiondrafts_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(55,'\\core\\event\\config_log_created','core','created','config_log','config_log',669,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"submissiondrafts_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(56,'\\core\\event\\config_log_created','core','created','config_log','config_log',670,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"requiresubmissionstatement\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(57,'\\core\\event\\config_log_created','core','created','config_log','config_log',671,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:30:\"requiresubmissionstatement_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(58,'\\core\\event\\config_log_created','core','created','config_log','config_log',672,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:33:\"requiresubmissionstatement_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(59,'\\core\\event\\config_log_created','core','created','config_log','config_log',673,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"attemptreopenmethod\";s:8:\"oldvalue\";N;s:5:\"value\";s:4:\"none\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(60,'\\core\\event\\config_log_created','core','created','config_log','config_log',674,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"attemptreopenmethod_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(61,'\\core\\event\\config_log_created','core','created','config_log','config_log',675,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"attemptreopenmethod_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(62,'\\core\\event\\config_log_created','core','created','config_log','config_log',676,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"maxattempts\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"-1\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(63,'\\core\\event\\config_log_created','core','created','config_log','config_log',677,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"maxattempts_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(64,'\\core\\event\\config_log_created','core','created','config_log','config_log',678,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"maxattempts_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(65,'\\core\\event\\config_log_created','core','created','config_log','config_log',679,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"teamsubmission\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(66,'\\core\\event\\config_log_created','core','created','config_log','config_log',680,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"teamsubmission_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(67,'\\core\\event\\config_log_created','core','created','config_log','config_log',681,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"teamsubmission_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(68,'\\core\\event\\config_log_created','core','created','config_log','config_log',682,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"preventsubmissionnotingroup\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(69,'\\core\\event\\config_log_created','core','created','config_log','config_log',683,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:31:\"preventsubmissionnotingroup_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(70,'\\core\\event\\config_log_created','core','created','config_log','config_log',684,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:34:\"preventsubmissionnotingroup_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(71,'\\core\\event\\config_log_created','core','created','config_log','config_log',685,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"requireallteammemberssubmit\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(72,'\\core\\event\\config_log_created','core','created','config_log','config_log',686,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:31:\"requireallteammemberssubmit_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(73,'\\core\\event\\config_log_created','core','created','config_log','config_log',687,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:34:\"requireallteammemberssubmit_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(74,'\\core\\event\\config_log_created','core','created','config_log','config_log',688,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"teamsubmissiongroupingid\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(75,'\\core\\event\\config_log_created','core','created','config_log','config_log',689,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"teamsubmissiongroupingid_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(76,'\\core\\event\\config_log_created','core','created','config_log','config_log',690,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"sendnotifications\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(77,'\\core\\event\\config_log_created','core','created','config_log','config_log',691,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"sendnotifications_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(78,'\\core\\event\\config_log_created','core','created','config_log','config_log',692,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"sendnotifications_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(79,'\\core\\event\\config_log_created','core','created','config_log','config_log',693,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"sendlatenotifications\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(80,'\\core\\event\\config_log_created','core','created','config_log','config_log',694,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"sendlatenotifications_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(81,'\\core\\event\\config_log_created','core','created','config_log','config_log',695,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"sendlatenotifications_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(82,'\\core\\event\\config_log_created','core','created','config_log','config_log',696,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"sendstudentnotifications\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(83,'\\core\\event\\config_log_created','core','created','config_log','config_log',697,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"sendstudentnotifications_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(84,'\\core\\event\\config_log_created','core','created','config_log','config_log',698,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:31:\"sendstudentnotifications_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(85,'\\core\\event\\config_log_created','core','created','config_log','config_log',699,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"blindmarking\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(86,'\\core\\event\\config_log_created','core','created','config_log','config_log',700,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"blindmarking_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(87,'\\core\\event\\config_log_created','core','created','config_log','config_log',701,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"blindmarking_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(88,'\\core\\event\\config_log_created','core','created','config_log','config_log',702,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"hidegrader\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(89,'\\core\\event\\config_log_created','core','created','config_log','config_log',703,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"hidegrader_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(90,'\\core\\event\\config_log_created','core','created','config_log','config_log',704,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"hidegrader_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(91,'\\core\\event\\config_log_created','core','created','config_log','config_log',705,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"markingworkflow\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(92,'\\core\\event\\config_log_created','core','created','config_log','config_log',706,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"markingworkflow_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(93,'\\core\\event\\config_log_created','core','created','config_log','config_log',707,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"markingworkflow_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(94,'\\core\\event\\config_log_created','core','created','config_log','config_log',708,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"markingallocation\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(95,'\\core\\event\\config_log_created','core','created','config_log','config_log',709,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"markingallocation_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(96,'\\core\\event\\config_log_created','core','created','config_log','config_log',710,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"markingallocation_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(97,'\\core\\event\\config_log_created','core','created','config_log','config_log',711,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"default\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:21:\"assignsubmission_file\";}',1619623790,'web','65.129.132.97',NULL),(98,'\\core\\event\\config_log_created','core','created','config_log','config_log',712,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"maxfiles\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"20\";s:6:\"plugin\";s:21:\"assignsubmission_file\";}',1619623790,'web','65.129.132.97',NULL),(99,'\\core\\event\\config_log_created','core','created','config_log','config_log',713,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"filetypes\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:21:\"assignsubmission_file\";}',1619623790,'web','65.129.132.97',NULL),(100,'\\core\\event\\config_log_created','core','created','config_log','config_log',714,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"maxbytes\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:21:\"assignsubmission_file\";}',1619623790,'web','65.129.132.97',NULL),(101,'\\core\\event\\config_log_created','core','created','config_log','config_log',715,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"default\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:27:\"assignsubmission_onlinetext\";}',1619623790,'web','65.129.132.97',NULL),(102,'\\core\\event\\config_log_created','core','created','config_log','config_log',716,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"default\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:23:\"assignfeedback_comments\";}',1619623790,'web','65.129.132.97',NULL),(103,'\\core\\event\\config_log_created','core','created','config_log','config_log',717,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"inline\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:23:\"assignfeedback_comments\";}',1619623790,'web','65.129.132.97',NULL),(104,'\\core\\event\\config_log_created','core','created','config_log','config_log',718,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"inline_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:23:\"assignfeedback_comments\";}',1619623790,'web','65.129.132.97',NULL),(105,'\\core\\event\\config_log_created','core','created','config_log','config_log',719,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"inline_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:23:\"assignfeedback_comments\";}',1619623790,'web','65.129.132.97',NULL),(106,'\\core\\event\\config_log_created','core','created','config_log','config_log',720,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"default\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:22:\"assignfeedback_editpdf\";}',1619623790,'web','65.129.132.97',NULL),(107,'\\core\\event\\config_log_created','core','created','config_log','config_log',721,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"stamps\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:22:\"assignfeedback_editpdf\";}',1619623790,'web','65.129.132.97',NULL),(108,'\\core\\event\\config_log_created','core','created','config_log','config_log',722,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"default\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"assignfeedback_file\";}',1619623790,'web','65.129.132.97',NULL),(109,'\\core\\event\\config_log_created','core','created','config_log','config_log',723,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"default\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:22:\"assignfeedback_offline\";}',1619623790,'web','65.129.132.97',NULL),(110,'\\core\\event\\config_log_created','core','created','config_log','config_log',724,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"numberingoptions\";s:8:\"oldvalue\";N;s:5:\"value\";s:7:\"0,1,2,3\";s:6:\"plugin\";s:4:\"book\";}',1619623790,'web','65.129.132.97',NULL),(111,'\\core\\event\\config_log_created','core','created','config_log','config_log',725,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"navoptions\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"0,1,2\";s:6:\"plugin\";s:4:\"book\";}',1619623790,'web','65.129.132.97',NULL),(112,'\\core\\event\\config_log_created','core','created','config_log','config_log',726,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"numbering\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"book\";}',1619623790,'web','65.129.132.97',NULL),(113,'\\core\\event\\config_log_created','core','created','config_log','config_log',727,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"navstyle\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"book\";}',1619623790,'web','65.129.132.97',NULL),(114,'\\core\\event\\config_log_created','core','created','config_log','config_log',728,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"chat_method\";s:8:\"oldvalue\";N;s:5:\"value\";s:4:\"ajax\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(115,'\\core\\event\\config_log_created','core','created','config_log','config_log',729,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"chat_refresh_userlist\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"10\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(116,'\\core\\event\\config_log_created','core','created','config_log','config_log',730,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"chat_old_ping\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"35\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(117,'\\core\\event\\config_log_created','core','created','config_log','config_log',731,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"chat_refresh_room\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(118,'\\core\\event\\config_log_created','core','created','config_log','config_log',732,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"chat_normal_updatemode\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"jsupdate\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(119,'\\core\\event\\config_log_created','core','created','config_log','config_log',733,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"chat_serverhost\";s:8:\"oldvalue\";N;s:5:\"value\";s:34:\"learn.dev-defaults.derekmaxson.com\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(120,'\\core\\event\\config_log_created','core','created','config_log','config_log',734,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"chat_serverip\";s:8:\"oldvalue\";N;s:5:\"value\";s:9:\"127.0.0.1\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(121,'\\core\\event\\config_log_created','core','created','config_log','config_log',735,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"chat_serverport\";s:8:\"oldvalue\";N;s:5:\"value\";s:4:\"9111\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(122,'\\core\\event\\config_log_created','core','created','config_log','config_log',736,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"chat_servermax\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"100\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(123,'\\core\\event\\config_log_created','core','created','config_log','config_log',737,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"data_enablerssfeeds\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(124,'\\core\\event\\config_log_created','core','created','config_log','config_log',738,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"feedback_allowfullanonymous\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(125,'\\core\\event\\config_log_created','core','created','config_log','config_log',739,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"framesize\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"130\";s:6:\"plugin\";s:8:\"resource\";}',1619623790,'web','65.129.132.97',NULL),(126,'\\core\\event\\config_log_created','core','created','config_log','config_log',740,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"displayoptions\";s:8:\"oldvalue\";N;s:5:\"value\";s:9:\"0,1,4,5,6\";s:6:\"plugin\";s:8:\"resource\";}',1619623790,'web','65.129.132.97',NULL),(127,'\\core\\event\\config_log_created','core','created','config_log','config_log',741,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"printintro\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:8:\"resource\";}',1619623790,'web','65.129.132.97',NULL),(128,'\\core\\event\\config_log_created','core','created','config_log','config_log',742,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"display\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"resource\";}',1619623790,'web','65.129.132.97',NULL),(129,'\\core\\event\\config_log_created','core','created','config_log','config_log',743,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"showsize\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"resource\";}',1619623790,'web','65.129.132.97',NULL),(130,'\\core\\event\\config_log_created','core','created','config_log','config_log',744,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"showtype\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"resource\";}',1619623790,'web','65.129.132.97',NULL),(131,'\\core\\event\\config_log_created','core','created','config_log','config_log',745,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"showdate\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"resource\";}',1619623790,'web','65.129.132.97',NULL),(132,'\\core\\event\\config_log_created','core','created','config_log','config_log',746,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"popupwidth\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"620\";s:6:\"plugin\";s:8:\"resource\";}',1619623790,'web','65.129.132.97',NULL),(133,'\\core\\event\\config_log_created','core','created','config_log','config_log',747,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"popupheight\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"450\";s:6:\"plugin\";s:8:\"resource\";}',1619623790,'web','65.129.132.97',NULL),(134,'\\core\\event\\config_log_created','core','created','config_log','config_log',748,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"filterfiles\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"resource\";}',1619623790,'web','65.129.132.97',NULL),(135,'\\core\\event\\config_log_created','core','created','config_log','config_log',749,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"showexpanded\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:6:\"folder\";}',1619623790,'web','65.129.132.97',NULL),(136,'\\core\\event\\config_log_created','core','created','config_log','config_log',750,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"maxsizetodownload\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"folder\";}',1619623790,'web','65.129.132.97',NULL),(137,'\\core\\event\\config_log_created','core','created','config_log','config_log',751,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"forum_displaymode\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(138,'\\core\\event\\config_log_created','core','created','config_log','config_log',752,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"forum_shortpost\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"300\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(139,'\\core\\event\\config_log_created','core','created','config_log','config_log',753,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"forum_longpost\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"600\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(140,'\\core\\event\\config_log_created','core','created','config_log','config_log',754,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"forum_manydiscussions\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"100\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(141,'\\core\\event\\config_log_created','core','created','config_log','config_log',755,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"forum_maxbytes\";s:8:\"oldvalue\";N;s:5:\"value\";s:6:\"512000\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(142,'\\core\\event\\config_log_created','core','created','config_log','config_log',756,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"forum_maxattachments\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"9\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(143,'\\core\\event\\config_log_created','core','created','config_log','config_log',757,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"forum_subscription\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(144,'\\core\\event\\config_log_created','core','created','config_log','config_log',758,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"forum_trackingtype\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(145,'\\core\\event\\config_log_created','core','created','config_log','config_log',759,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"forum_trackreadposts\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(146,'\\core\\event\\config_log_created','core','created','config_log','config_log',760,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"forum_allowforcedreadtracking\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(147,'\\core\\event\\config_log_created','core','created','config_log','config_log',761,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"forum_oldpostdays\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"14\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(148,'\\core\\event\\config_log_created','core','created','config_log','config_log',762,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"forum_usermarksread\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(149,'\\core\\event\\config_log_created','core','created','config_log','config_log',763,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"forum_cleanreadtime\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"2\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(150,'\\core\\event\\config_log_created','core','created','config_log','config_log',764,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"digestmailtime\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"17\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(151,'\\core\\event\\config_log_created','core','created','config_log','config_log',765,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"forum_enablerssfeeds\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(152,'\\core\\event\\config_log_created','core','created','config_log','config_log',766,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"forum_enabletimedposts\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(153,'\\core\\event\\config_log_created','core','created','config_log','config_log',767,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"glossary_entbypage\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"10\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(154,'\\core\\event\\config_log_created','core','created','config_log','config_log',768,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"glossary_dupentries\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(155,'\\core\\event\\config_log_created','core','created','config_log','config_log',769,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"glossary_allowcomments\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(156,'\\core\\event\\config_log_created','core','created','config_log','config_log',770,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"glossary_linkbydefault\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(157,'\\core\\event\\config_log_created','core','created','config_log','config_log',771,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"glossary_defaultapproval\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(158,'\\core\\event\\config_log_created','core','created','config_log','config_log',772,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"glossary_enablerssfeeds\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(159,'\\core\\event\\config_log_created','core','created','config_log','config_log',773,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"glossary_linkentries\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(160,'\\core\\event\\config_log_created','core','created','config_log','config_log',774,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"glossary_casesensitive\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(161,'\\core\\event\\config_log_created','core','created','config_log','config_log',775,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"glossary_fullmatch\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(162,'\\core\\event\\config_log_created','core','created','config_log','config_log',776,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"keepold\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"imscp\";}',1619623790,'web','65.129.132.97',NULL),(163,'\\core\\event\\config_log_created','core','created','config_log','config_log',777,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"keepold_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:5:\"imscp\";}',1619623790,'web','65.129.132.97',NULL),(164,'\\core\\event\\config_log_created','core','created','config_log','config_log',778,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"dndmedia\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"label\";}',1619623790,'web','65.129.132.97',NULL),(165,'\\core\\event\\config_log_created','core','created','config_log','config_log',779,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"dndresizewidth\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"400\";s:6:\"plugin\";s:5:\"label\";}',1619623790,'web','65.129.132.97',NULL),(166,'\\core\\event\\config_log_created','core','created','config_log','config_log',780,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"dndresizeheight\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"400\";s:6:\"plugin\";s:5:\"label\";}',1619623790,'web','65.129.132.97',NULL),(167,'\\core\\event\\config_log_created','core','created','config_log','config_log',781,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"mediafile\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(168,'\\core\\event\\config_log_created','core','created','config_log','config_log',782,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"mediafile_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(169,'\\core\\event\\config_log_created','core','created','config_log','config_log',783,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"mediawidth\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"640\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(170,'\\core\\event\\config_log_created','core','created','config_log','config_log',784,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"mediaheight\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"480\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(171,'\\core\\event\\config_log_created','core','created','config_log','config_log',785,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"mediaclose\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(172,'\\core\\event\\config_log_created','core','created','config_log','config_log',786,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"progressbar\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(173,'\\core\\event\\config_log_created','core','created','config_log','config_log',787,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"progressbar_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(174,'\\core\\event\\config_log_created','core','created','config_log','config_log',788,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"ongoing\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(175,'\\core\\event\\config_log_created','core','created','config_log','config_log',789,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"ongoing_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(176,'\\core\\event\\config_log_created','core','created','config_log','config_log',790,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"displayleftmenu\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(177,'\\core\\event\\config_log_created','core','created','config_log','config_log',791,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"displayleftmenu_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(178,'\\core\\event\\config_log_created','core','created','config_log','config_log',792,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"displayleftif\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(179,'\\core\\event\\config_log_created','core','created','config_log','config_log',793,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"displayleftif_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(180,'\\core\\event\\config_log_created','core','created','config_log','config_log',794,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"slideshow\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(181,'\\core\\event\\config_log_created','core','created','config_log','config_log',795,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"slideshow_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(182,'\\core\\event\\config_log_created','core','created','config_log','config_log',796,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"slideshowwidth\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"640\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(183,'\\core\\event\\config_log_created','core','created','config_log','config_log',797,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"slideshowheight\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"480\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(184,'\\core\\event\\config_log_created','core','created','config_log','config_log',798,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"slideshowbgcolor\";s:8:\"oldvalue\";N;s:5:\"value\";s:7:\"#FFFFFF\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(185,'\\core\\event\\config_log_created','core','created','config_log','config_log',799,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"maxanswers\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(186,'\\core\\event\\config_log_created','core','created','config_log','config_log',800,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"maxanswers_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(187,'\\core\\event\\config_log_created','core','created','config_log','config_log',801,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"defaultfeedback\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(188,'\\core\\event\\config_log_created','core','created','config_log','config_log',802,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"defaultfeedback_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(189,'\\core\\event\\config_log_created','core','created','config_log','config_log',803,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"activitylink\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(190,'\\core\\event\\config_log_created','core','created','config_log','config_log',804,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"activitylink_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(191,'\\core\\event\\config_log_created','core','created','config_log','config_log',805,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"timelimit\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(192,'\\core\\event\\config_log_created','core','created','config_log','config_log',806,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"timelimit_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(193,'\\core\\event\\config_log_created','core','created','config_log','config_log',807,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"password\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(194,'\\core\\event\\config_log_created','core','created','config_log','config_log',808,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"password_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(195,'\\core\\event\\config_log_created','core','created','config_log','config_log',809,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"modattempts\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(196,'\\core\\event\\config_log_created','core','created','config_log','config_log',810,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"modattempts_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(197,'\\core\\event\\config_log_created','core','created','config_log','config_log',811,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"displayreview\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(198,'\\core\\event\\config_log_created','core','created','config_log','config_log',812,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"displayreview_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(199,'\\core\\event\\config_log_created','core','created','config_log','config_log',813,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"maximumnumberofattempts\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(200,'\\core\\event\\config_log_created','core','created','config_log','config_log',814,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"maximumnumberofattempts_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(201,'\\core\\event\\config_log_created','core','created','config_log','config_log',815,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"defaultnextpage\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(202,'\\core\\event\\config_log_created','core','created','config_log','config_log',816,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"defaultnextpage_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(203,'\\core\\event\\config_log_created','core','created','config_log','config_log',817,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"numberofpagestoshow\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(204,'\\core\\event\\config_log_created','core','created','config_log','config_log',818,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"numberofpagestoshow_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(205,'\\core\\event\\config_log_created','core','created','config_log','config_log',819,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"practice\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(206,'\\core\\event\\config_log_created','core','created','config_log','config_log',820,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"practice_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(207,'\\core\\event\\config_log_created','core','created','config_log','config_log',821,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"customscoring\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(208,'\\core\\event\\config_log_created','core','created','config_log','config_log',822,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"customscoring_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(209,'\\core\\event\\config_log_created','core','created','config_log','config_log',823,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"retakesallowed\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(210,'\\core\\event\\config_log_created','core','created','config_log','config_log',824,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"retakesallowed_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(211,'\\core\\event\\config_log_created','core','created','config_log','config_log',825,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"handlingofretakes\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(212,'\\core\\event\\config_log_created','core','created','config_log','config_log',826,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"handlingofretakes_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(213,'\\core\\event\\config_log_created','core','created','config_log','config_log',827,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"minimumnumberofquestions\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(214,'\\core\\event\\config_log_created','core','created','config_log','config_log',828,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"minimumnumberofquestions_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(215,'\\core\\event\\config_log_created','core','created','config_log','config_log',829,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"displayoptions\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:4:\"page\";}',1619623790,'web','65.129.132.97',NULL),(216,'\\core\\event\\config_log_created','core','created','config_log','config_log',830,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"printheading\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"page\";}',1619623790,'web','65.129.132.97',NULL),(217,'\\core\\event\\config_log_created','core','created','config_log','config_log',831,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"printintro\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:4:\"page\";}',1619623790,'web','65.129.132.97',NULL),(218,'\\core\\event\\config_log_created','core','created','config_log','config_log',832,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"printlastmodified\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"page\";}',1619623790,'web','65.129.132.97',NULL),(219,'\\core\\event\\config_log_created','core','created','config_log','config_log',833,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"display\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:4:\"page\";}',1619623790,'web','65.129.132.97',NULL),(220,'\\core\\event\\config_log_created','core','created','config_log','config_log',834,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"popupwidth\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"620\";s:6:\"plugin\";s:4:\"page\";}',1619623790,'web','65.129.132.97',NULL),(221,'\\core\\event\\config_log_created','core','created','config_log','config_log',835,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"popupheight\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"450\";s:6:\"plugin\";s:4:\"page\";}',1619623790,'web','65.129.132.97',NULL),(222,'\\core\\event\\config_log_created','core','created','config_log','config_log',836,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"timelimit\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(223,'\\core\\event\\config_log_created','core','created','config_log','config_log',837,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"timelimit_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(224,'\\core\\event\\config_log_created','core','created','config_log','config_log',838,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"overduehandling\";s:8:\"oldvalue\";N;s:5:\"value\";s:10:\"autosubmit\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(225,'\\core\\event\\config_log_created','core','created','config_log','config_log',839,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"overduehandling_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(226,'\\core\\event\\config_log_created','core','created','config_log','config_log',840,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"graceperiod\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"86400\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(227,'\\core\\event\\config_log_created','core','created','config_log','config_log',841,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"graceperiod_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(228,'\\core\\event\\config_log_created','core','created','config_log','config_log',842,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"graceperiodmin\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"60\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(229,'\\core\\event\\config_log_created','core','created','config_log','config_log',843,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"attempts\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(230,'\\core\\event\\config_log_created','core','created','config_log','config_log',844,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"attempts_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(231,'\\core\\event\\config_log_created','core','created','config_log','config_log',845,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"grademethod\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(232,'\\core\\event\\config_log_created','core','created','config_log','config_log',846,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"grademethod_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(233,'\\core\\event\\config_log_created','core','created','config_log','config_log',847,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"maximumgrade\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"10\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(234,'\\core\\event\\config_log_created','core','created','config_log','config_log',848,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"questionsperpage\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(235,'\\core\\event\\config_log_created','core','created','config_log','config_log',849,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"questionsperpage_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(236,'\\core\\event\\config_log_created','core','created','config_log','config_log',850,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"navmethod\";s:8:\"oldvalue\";N;s:5:\"value\";s:4:\"free\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(237,'\\core\\event\\config_log_created','core','created','config_log','config_log',851,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"navmethod_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(238,'\\core\\event\\config_log_created','core','created','config_log','config_log',852,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"shuffleanswers\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(239,'\\core\\event\\config_log_created','core','created','config_log','config_log',853,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"shuffleanswers_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(240,'\\core\\event\\config_log_created','core','created','config_log','config_log',854,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"preferredbehaviour\";s:8:\"oldvalue\";N;s:5:\"value\";s:16:\"deferredfeedback\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(241,'\\core\\event\\config_log_created','core','created','config_log','config_log',855,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"canredoquestions\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(242,'\\core\\event\\config_log_created','core','created','config_log','config_log',856,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"canredoquestions_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(243,'\\core\\event\\config_log_created','core','created','config_log','config_log',857,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"attemptonlast\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(244,'\\core\\event\\config_log_created','core','created','config_log','config_log',858,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"attemptonlast_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(245,'\\core\\event\\config_log_created','core','created','config_log','config_log',859,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"reviewattempt\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"69904\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(246,'\\core\\event\\config_log_created','core','created','config_log','config_log',860,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"reviewcorrectness\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"69904\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(247,'\\core\\event\\config_log_created','core','created','config_log','config_log',861,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"reviewmarks\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"69904\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(248,'\\core\\event\\config_log_created','core','created','config_log','config_log',862,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"reviewspecificfeedback\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"69904\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(249,'\\core\\event\\config_log_created','core','created','config_log','config_log',863,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"reviewgeneralfeedback\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"69904\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(250,'\\core\\event\\config_log_created','core','created','config_log','config_log',864,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"reviewrightanswer\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"69904\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(251,'\\core\\event\\config_log_created','core','created','config_log','config_log',865,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"reviewoverallfeedback\";s:8:\"oldvalue\";N;s:5:\"value\";s:4:\"4368\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(252,'\\core\\event\\config_log_created','core','created','config_log','config_log',866,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"showuserpicture\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(253,'\\core\\event\\config_log_created','core','created','config_log','config_log',867,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"showuserpicture_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(254,'\\core\\event\\config_log_created','core','created','config_log','config_log',868,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"decimalpoints\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"2\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(255,'\\core\\event\\config_log_created','core','created','config_log','config_log',869,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"decimalpoints_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(256,'\\core\\event\\config_log_created','core','created','config_log','config_log',870,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"questiondecimalpoints\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"-1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(257,'\\core\\event\\config_log_created','core','created','config_log','config_log',871,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"questiondecimalpoints_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(258,'\\core\\event\\config_log_created','core','created','config_log','config_log',872,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"showblocks\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(259,'\\core\\event\\config_log_created','core','created','config_log','config_log',873,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"showblocks_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(260,'\\core\\event\\config_log_created','core','created','config_log','config_log',874,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"quizpassword\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(261,'\\core\\event\\config_log_created','core','created','config_log','config_log',875,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"quizpassword_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(262,'\\core\\event\\config_log_created','core','created','config_log','config_log',876,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"quizpassword_required\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(263,'\\core\\event\\config_log_created','core','created','config_log','config_log',877,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"subnet\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(264,'\\core\\event\\config_log_created','core','created','config_log','config_log',878,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"subnet_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(265,'\\core\\event\\config_log_created','core','created','config_log','config_log',879,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"delay1\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(266,'\\core\\event\\config_log_created','core','created','config_log','config_log',880,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"delay1_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(267,'\\core\\event\\config_log_created','core','created','config_log','config_log',881,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"delay2\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(268,'\\core\\event\\config_log_created','core','created','config_log','config_log',882,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"delay2_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(269,'\\core\\event\\config_log_created','core','created','config_log','config_log',883,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"browsersecurity\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"-\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(270,'\\core\\event\\config_log_created','core','created','config_log','config_log',884,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"browsersecurity_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(271,'\\core\\event\\config_log_created','core','created','config_log','config_log',885,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"initialnumfeedbacks\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"2\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(272,'\\core\\event\\config_log_created','core','created','config_log','config_log',886,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"autosaveperiod\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"60\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(273,'\\core\\event\\config_log_created','core','created','config_log','config_log',887,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"autoreconfigureseb\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:14:\"quizaccess_seb\";}',1619623790,'web','65.129.132.97',NULL),(274,'\\core\\event\\config_log_created','core','created','config_log','config_log',888,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"showseblinks\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"seb,http\";s:6:\"plugin\";s:14:\"quizaccess_seb\";}',1619623790,'web','65.129.132.97',NULL),(275,'\\core\\event\\config_log_created','core','created','config_log','config_log',889,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"downloadlink\";s:8:\"oldvalue\";N;s:5:\"value\";s:44:\"https://safeexambrowser.org/download_en.html\";s:6:\"plugin\";s:14:\"quizaccess_seb\";}',1619623790,'web','65.129.132.97',NULL),(276,'\\core\\event\\config_log_created','core','created','config_log','config_log',890,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"quizpasswordrequired\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:14:\"quizaccess_seb\";}',1619623790,'web','65.129.132.97',NULL),(277,'\\core\\event\\config_log_created','core','created','config_log','config_log',891,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"displayblocksbeforestart\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:14:\"quizaccess_seb\";}',1619623790,'web','65.129.132.97',NULL),(278,'\\core\\event\\config_log_created','core','created','config_log','config_log',892,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"displayblockswhenfinished\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:14:\"quizaccess_seb\";}',1619623790,'web','65.129.132.97',NULL),(279,'\\core\\event\\config_log_created','core','created','config_log','config_log',893,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"displaycoursestructure\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(280,'\\core\\event\\config_log_created','core','created','config_log','config_log',894,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"displaycoursestructure_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(281,'\\core\\event\\config_log_created','core','created','config_log','config_log',895,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:5:\"popup\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(282,'\\core\\event\\config_log_created','core','created','config_log','config_log',896,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"popup_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(283,'\\core\\event\\config_log_created','core','created','config_log','config_log',897,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"displayactivityname\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(284,'\\core\\event\\config_log_created','core','created','config_log','config_log',898,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"framewidth\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"100\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(285,'\\core\\event\\config_log_created','core','created','config_log','config_log',899,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"framewidth_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(286,'\\core\\event\\config_log_created','core','created','config_log','config_log',900,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"frameheight\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"500\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(287,'\\core\\event\\config_log_created','core','created','config_log','config_log',901,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"frameheight_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(288,'\\core\\event\\config_log_created','core','created','config_log','config_log',902,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"winoptgrp_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(289,'\\core\\event\\config_log_created','core','created','config_log','config_log',903,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"scrollbars\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(290,'\\core\\event\\config_log_created','core','created','config_log','config_log',904,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"directories\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(291,'\\core\\event\\config_log_created','core','created','config_log','config_log',905,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"location\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(292,'\\core\\event\\config_log_created','core','created','config_log','config_log',906,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"menubar\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(293,'\\core\\event\\config_log_created','core','created','config_log','config_log',907,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"toolbar\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(294,'\\core\\event\\config_log_created','core','created','config_log','config_log',908,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"status\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(295,'\\core\\event\\config_log_created','core','created','config_log','config_log',909,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"skipview\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(296,'\\core\\event\\config_log_created','core','created','config_log','config_log',910,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"skipview_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(297,'\\core\\event\\config_log_created','core','created','config_log','config_log',911,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"hidebrowse\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(298,'\\core\\event\\config_log_created','core','created','config_log','config_log',912,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"hidebrowse_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(299,'\\core\\event\\config_log_created','core','created','config_log','config_log',913,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"hidetoc\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(300,'\\core\\event\\config_log_created','core','created','config_log','config_log',914,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"hidetoc_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(301,'\\core\\event\\config_log_created','core','created','config_log','config_log',915,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:3:\"nav\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(302,'\\core\\event\\config_log_created','core','created','config_log','config_log',916,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"nav_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(303,'\\core\\event\\config_log_created','core','created','config_log','config_log',917,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"navpositionleft\";s:8:\"oldvalue\";N;s:5:\"value\";s:4:\"-100\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(304,'\\core\\event\\config_log_created','core','created','config_log','config_log',918,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"navpositionleft_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(305,'\\core\\event\\config_log_created','core','created','config_log','config_log',919,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"navpositiontop\";s:8:\"oldvalue\";N;s:5:\"value\";s:4:\"-100\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(306,'\\core\\event\\config_log_created','core','created','config_log','config_log',920,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"navpositiontop_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(307,'\\core\\event\\config_log_created','core','created','config_log','config_log',921,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"collapsetocwinsize\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"767\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(308,'\\core\\event\\config_log_created','core','created','config_log','config_log',922,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"collapsetocwinsize_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(309,'\\core\\event\\config_log_created','core','created','config_log','config_log',923,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"displayattemptstatus\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(310,'\\core\\event\\config_log_created','core','created','config_log','config_log',924,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"displayattemptstatus_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(311,'\\core\\event\\config_log_created','core','created','config_log','config_log',925,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"grademethod\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(312,'\\core\\event\\config_log_created','core','created','config_log','config_log',926,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"maxgrade\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"100\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(313,'\\core\\event\\config_log_created','core','created','config_log','config_log',927,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"maxattempt\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(314,'\\core\\event\\config_log_created','core','created','config_log','config_log',928,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"whatgrade\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(315,'\\core\\event\\config_log_created','core','created','config_log','config_log',929,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"forcecompleted\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(316,'\\core\\event\\config_log_created','core','created','config_log','config_log',930,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"forcenewattempt\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(317,'\\core\\event\\config_log_created','core','created','config_log','config_log',931,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"autocommit\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(318,'\\core\\event\\config_log_created','core','created','config_log','config_log',932,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"masteryoverride\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(319,'\\core\\event\\config_log_created','core','created','config_log','config_log',933,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"lastattemptlock\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(320,'\\core\\event\\config_log_created','core','created','config_log','config_log',934,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"auto\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(321,'\\core\\event\\config_log_created','core','created','config_log','config_log',935,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"updatefreq\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(322,'\\core\\event\\config_log_created','core','created','config_log','config_log',936,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"scormstandard\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(323,'\\core\\event\\config_log_created','core','created','config_log','config_log',937,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"allowtypeexternal\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(324,'\\core\\event\\config_log_created','core','created','config_log','config_log',938,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"allowtypelocalsync\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(325,'\\core\\event\\config_log_created','core','created','config_log','config_log',939,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"allowtypeexternalaicc\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(326,'\\core\\event\\config_log_created','core','created','config_log','config_log',940,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"allowaicchacp\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(327,'\\core\\event\\config_log_created','core','created','config_log','config_log',941,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"aicchacptimeout\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"30\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(328,'\\core\\event\\config_log_created','core','created','config_log','config_log',942,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"aicchacpkeepsessiondata\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(329,'\\core\\event\\config_log_created','core','created','config_log','config_log',943,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"aiccuserid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(330,'\\core\\event\\config_log_created','core','created','config_log','config_log',944,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"forcejavascript\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(331,'\\core\\event\\config_log_created','core','created','config_log','config_log',945,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"allowapidebug\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(332,'\\core\\event\\config_log_created','core','created','config_log','config_log',946,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"apidebugmask\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\".*\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(333,'\\core\\event\\config_log_created','core','created','config_log','config_log',947,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"protectpackagedownloads\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(334,'\\core\\event\\config_log_created','core','created','config_log','config_log',948,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"framesize\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"130\";s:6:\"plugin\";s:3:\"url\";}',1619623791,'web','65.129.132.97',NULL),(335,'\\core\\event\\config_log_created','core','created','config_log','config_log',949,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"secretphrase\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:3:\"url\";}',1619623791,'web','65.129.132.97',NULL),(336,'\\core\\event\\config_log_created','core','created','config_log','config_log',950,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"rolesinparams\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:3:\"url\";}',1619623791,'web','65.129.132.97',NULL),(337,'\\core\\event\\config_log_created','core','created','config_log','config_log',951,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"displayoptions\";s:8:\"oldvalue\";N;s:5:\"value\";s:7:\"0,1,5,6\";s:6:\"plugin\";s:3:\"url\";}',1619623791,'web','65.129.132.97',NULL),(338,'\\core\\event\\config_log_created','core','created','config_log','config_log',952,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"printintro\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:3:\"url\";}',1619623791,'web','65.129.132.97',NULL),(339,'\\core\\event\\config_log_created','core','created','config_log','config_log',953,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"display\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:3:\"url\";}',1619623791,'web','65.129.132.97',NULL),(340,'\\core\\event\\config_log_created','core','created','config_log','config_log',954,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"popupwidth\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"620\";s:6:\"plugin\";s:3:\"url\";}',1619623791,'web','65.129.132.97',NULL),(341,'\\core\\event\\config_log_created','core','created','config_log','config_log',955,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"popupheight\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"450\";s:6:\"plugin\";s:3:\"url\";}',1619623791,'web','65.129.132.97',NULL),(342,'\\core\\event\\config_log_created','core','created','config_log','config_log',956,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:5:\"grade\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"80\";s:6:\"plugin\";s:8:\"workshop\";}',1619623791,'web','65.129.132.97',NULL),(343,'\\core\\event\\config_log_created','core','created','config_log','config_log',957,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"gradinggrade\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"20\";s:6:\"plugin\";s:8:\"workshop\";}',1619623791,'web','65.129.132.97',NULL),(344,'\\core\\event\\config_log_created','core','created','config_log','config_log',958,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"gradedecimals\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"workshop\";}',1619623791,'web','65.129.132.97',NULL),(345,'\\core\\event\\config_log_created','core','created','config_log','config_log',959,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"maxbytes\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"workshop\";}',1619623791,'web','65.129.132.97',NULL),(346,'\\core\\event\\config_log_created','core','created','config_log','config_log',960,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"strategy\";s:8:\"oldvalue\";N;s:5:\"value\";s:12:\"accumulative\";s:6:\"plugin\";s:8:\"workshop\";}',1619623791,'web','65.129.132.97',NULL),(347,'\\core\\event\\config_log_created','core','created','config_log','config_log',961,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"examplesmode\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"workshop\";}',1619623791,'web','65.129.132.97',NULL),(348,'\\core\\event\\config_log_created','core','created','config_log','config_log',962,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"numofreviews\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:25:\"workshopallocation_random\";}',1619623791,'web','65.129.132.97',NULL),(349,'\\core\\event\\config_log_created','core','created','config_log','config_log',963,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"grade0\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"No\";s:6:\"plugin\";s:22:\"workshopform_numerrors\";}',1619623791,'web','65.129.132.97',NULL),(350,'\\core\\event\\config_log_created','core','created','config_log','config_log',964,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"grade1\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"Yes\";s:6:\"plugin\";s:22:\"workshopform_numerrors\";}',1619623791,'web','65.129.132.97',NULL),(351,'\\core\\event\\config_log_created','core','created','config_log','config_log',965,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"comparison\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:17:\"workshopeval_best\";}',1619623791,'web','65.129.132.97',NULL),(352,'\\core\\event\\config_log_created','core','created','config_log','config_log',966,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"coursebinenable\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:15:\"tool_recyclebin\";}',1619623791,'web','65.129.132.97',NULL),(353,'\\core\\event\\config_log_created','core','created','config_log','config_log',967,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"coursebinexpiry\";s:8:\"oldvalue\";N;s:5:\"value\";s:6:\"604800\";s:6:\"plugin\";s:15:\"tool_recyclebin\";}',1619623791,'web','65.129.132.97',NULL),(354,'\\core\\event\\config_log_created','core','created','config_log','config_log',968,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"categorybinenable\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:15:\"tool_recyclebin\";}',1619623791,'web','65.129.132.97',NULL),(355,'\\core\\event\\config_log_created','core','created','config_log','config_log',969,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"categorybinexpiry\";s:8:\"oldvalue\";N;s:5:\"value\";s:6:\"604800\";s:6:\"plugin\";s:15:\"tool_recyclebin\";}',1619623791,'web','65.129.132.97',NULL),(356,'\\core\\event\\config_log_created','core','created','config_log','config_log',970,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"autohide\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:15:\"tool_recyclebin\";}',1619623791,'web','65.129.132.97',NULL),(357,'\\core\\event\\config_log_created','core','created','config_log','config_log',971,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"runningmethod\";s:8:\"oldvalue\";N;s:5:\"value\";s:11:\"commandline\";s:6:\"plugin\";s:16:\"antivirus_clamav\";}',1619623791,'web','65.129.132.97',NULL),(358,'\\core\\event\\config_log_created','core','created','config_log','config_log',972,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"pathtoclam\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:16:\"antivirus_clamav\";}',1619623791,'web','65.129.132.97',NULL),(359,'\\core\\event\\config_log_created','core','created','config_log','config_log',973,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"pathtounixsocket\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:16:\"antivirus_clamav\";}',1619623791,'web','65.129.132.97',NULL),(360,'\\core\\event\\config_log_created','core','created','config_log','config_log',974,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"tcpsockethost\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:16:\"antivirus_clamav\";}',1619623791,'web','65.129.132.97',NULL),(361,'\\core\\event\\config_log_created','core','created','config_log','config_log',975,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"tcpsocketport\";s:8:\"oldvalue\";N;s:5:\"value\";s:4:\"3310\";s:6:\"plugin\";s:16:\"antivirus_clamav\";}',1619623791,'web','65.129.132.97',NULL),(362,'\\core\\event\\config_log_created','core','created','config_log','config_log',976,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"clamfailureonupload\";s:8:\"oldvalue\";N;s:5:\"value\";s:9:\"donothing\";s:6:\"plugin\";s:16:\"antivirus_clamav\";}',1619623791,'web','65.129.132.97',NULL),(363,'\\core\\event\\config_log_created','core','created','config_log','config_log',977,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:5:\"tries\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"antivirus_clamav\";}',1619623791,'web','65.129.132.97',NULL),(364,'\\core\\event\\config_log_created','core','created','config_log','config_log',978,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_map_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(365,'\\core\\event\\config_log_created','core','created','config_log','config_log',979,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_updatelocal_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(366,'\\core\\event\\config_log_created','core','created','config_log','config_log',980,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_updateremote_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(367,'\\core\\event\\config_log_created','core','created','config_log','config_log',981,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_lock_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(368,'\\core\\event\\config_log_created','core','created','config_log','config_log',982,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_map_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(369,'\\core\\event\\config_log_created','core','created','config_log','config_log',983,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updatelocal_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(370,'\\core\\event\\config_log_created','core','created','config_log','config_log',984,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_updateremote_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(371,'\\core\\event\\config_log_created','core','created','config_log','config_log',985,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(372,'\\core\\event\\config_log_created','core','created','config_log','config_log',986,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_map_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(373,'\\core\\event\\config_log_created','core','created','config_log','config_log',987,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_updatelocal_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(374,'\\core\\event\\config_log_created','core','created','config_log','config_log',988,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_updateremote_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(375,'\\core\\event\\config_log_created','core','created','config_log','config_log',989,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_lock_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(376,'\\core\\event\\config_log_created','core','created','config_log','config_log',990,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_map_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(377,'\\core\\event\\config_log_created','core','created','config_log','config_log',991,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_updatelocal_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(378,'\\core\\event\\config_log_created','core','created','config_log','config_log',992,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_updateremote_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(379,'\\core\\event\\config_log_created','core','created','config_log','config_log',993,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(380,'\\core\\event\\config_log_created','core','created','config_log','config_log',994,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_map_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(381,'\\core\\event\\config_log_created','core','created','config_log','config_log',995,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updatelocal_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(382,'\\core\\event\\config_log_created','core','created','config_log','config_log',996,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updateremote_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(383,'\\core\\event\\config_log_created','core','created','config_log','config_log',997,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(384,'\\core\\event\\config_log_created','core','created','config_log','config_log',998,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_map_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(385,'\\core\\event\\config_log_created','core','created','config_log','config_log',999,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_updatelocal_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(386,'\\core\\event\\config_log_created','core','created','config_log','config_log',1000,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_updateremote_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(387,'\\core\\event\\config_log_created','core','created','config_log','config_log',1001,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(388,'\\core\\event\\config_log_created','core','created','config_log','config_log',1002,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_map_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(389,'\\core\\event\\config_log_created','core','created','config_log','config_log',1003,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updatelocal_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(390,'\\core\\event\\config_log_created','core','created','config_log','config_log',1004,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:30:\"field_updateremote_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(391,'\\core\\event\\config_log_created','core','created','config_log','config_log',1005,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(392,'\\core\\event\\config_log_created','core','created','config_log','config_log',1006,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"field_map_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(393,'\\core\\event\\config_log_created','core','created','config_log','config_log',1007,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_updatelocal_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(394,'\\core\\event\\config_log_created','core','created','config_log','config_log',1008,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_updateremote_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(395,'\\core\\event\\config_log_created','core','created','config_log','config_log',1009,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_lock_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(396,'\\core\\event\\config_log_created','core','created','config_log','config_log',1010,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_map_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(397,'\\core\\event\\config_log_created','core','created','config_log','config_log',1011,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updatelocal_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(398,'\\core\\event\\config_log_created','core','created','config_log','config_log',1012,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_updateremote_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(399,'\\core\\event\\config_log_created','core','created','config_log','config_log',1013,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(400,'\\core\\event\\config_log_created','core','created','config_log','config_log',1014,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_map_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(401,'\\core\\event\\config_log_created','core','created','config_log','config_log',1015,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updatelocal_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(402,'\\core\\event\\config_log_created','core','created','config_log','config_log',1016,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:30:\"field_updateremote_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(403,'\\core\\event\\config_log_created','core','created','config_log','config_log',1017,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(404,'\\core\\event\\config_log_created','core','created','config_log','config_log',1018,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_map_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(405,'\\core\\event\\config_log_created','core','created','config_log','config_log',1019,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_updatelocal_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(406,'\\core\\event\\config_log_created','core','created','config_log','config_log',1020,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updateremote_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(407,'\\core\\event\\config_log_created','core','created','config_log','config_log',1021,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(408,'\\core\\event\\config_log_created','core','created','config_log','config_log',1022,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_map_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(409,'\\core\\event\\config_log_created','core','created','config_log','config_log',1023,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_updatelocal_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(410,'\\core\\event\\config_log_created','core','created','config_log','config_log',1024,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updateremote_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(411,'\\core\\event\\config_log_created','core','created','config_log','config_log',1025,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(412,'\\core\\event\\config_log_created','core','created','config_log','config_log',1026,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_map_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(413,'\\core\\event\\config_log_created','core','created','config_log','config_log',1027,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_updatelocal_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(414,'\\core\\event\\config_log_created','core','created','config_log','config_log',1028,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updateremote_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(415,'\\core\\event\\config_log_created','core','created','config_log','config_log',1029,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(416,'\\core\\event\\config_log_created','core','created','config_log','config_log',1030,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_map_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(417,'\\core\\event\\config_log_created','core','created','config_log','config_log',1031,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updatelocal_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(418,'\\core\\event\\config_log_created','core','created','config_log','config_log',1032,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updateremote_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(419,'\\core\\event\\config_log_created','core','created','config_log','config_log',1033,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(420,'\\core\\event\\config_log_created','core','created','config_log','config_log',1034,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_map_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(421,'\\core\\event\\config_log_created','core','created','config_log','config_log',1035,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:35:\"field_updatelocal_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(422,'\\core\\event\\config_log_created','core','created','config_log','config_log',1036,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:36:\"field_updateremote_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(423,'\\core\\event\\config_log_created','core','created','config_log','config_log',1037,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_lock_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(424,'\\core\\event\\config_log_created','core','created','config_log','config_log',1038,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_map_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(425,'\\core\\event\\config_log_created','core','created','config_log','config_log',1039,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:34:\"field_updatelocal_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(426,'\\core\\event\\config_log_created','core','created','config_log','config_log',1040,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:35:\"field_updateremote_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(427,'\\core\\event\\config_log_created','core','created','config_log','config_log',1041,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_lock_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(428,'\\core\\event\\config_log_created','core','created','config_log','config_log',1042,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_map_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(429,'\\core\\event\\config_log_created','core','created','config_log','config_log',1043,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_updatelocal_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(430,'\\core\\event\\config_log_created','core','created','config_log','config_log',1044,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updateremote_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(431,'\\core\\event\\config_log_created','core','created','config_log','config_log',1045,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(432,'\\core\\event\\config_log_created','core','created','config_log','config_log',1046,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_map_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(433,'\\core\\event\\config_log_created','core','created','config_log','config_log',1047,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:31:\"field_updatelocal_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(434,'\\core\\event\\config_log_created','core','created','config_log','config_log',1048,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:32:\"field_updateremote_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(435,'\\core\\event\\config_log_created','core','created','config_log','config_log',1049,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_lock_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(436,'\\core\\event\\config_log_created','core','created','config_log','config_log',1050,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"recaptcha\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(437,'\\core\\event\\config_log_created','core','created','config_log','config_log',1051,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_lock_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(438,'\\core\\event\\config_log_created','core','created','config_log','config_log',1052,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(439,'\\core\\event\\config_log_created','core','created','config_log','config_log',1053,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_lock_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(440,'\\core\\event\\config_log_created','core','created','config_log','config_log',1054,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(441,'\\core\\event\\config_log_created','core','created','config_log','config_log',1055,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(442,'\\core\\event\\config_log_created','core','created','config_log','config_log',1056,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(443,'\\core\\event\\config_log_created','core','created','config_log','config_log',1057,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(444,'\\core\\event\\config_log_created','core','created','config_log','config_log',1058,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_lock_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(445,'\\core\\event\\config_log_created','core','created','config_log','config_log',1059,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(446,'\\core\\event\\config_log_created','core','created','config_log','config_log',1060,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(447,'\\core\\event\\config_log_created','core','created','config_log','config_log',1061,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(448,'\\core\\event\\config_log_created','core','created','config_log','config_log',1062,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(449,'\\core\\event\\config_log_created','core','created','config_log','config_log',1063,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(450,'\\core\\event\\config_log_created','core','created','config_log','config_log',1064,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(451,'\\core\\event\\config_log_created','core','created','config_log','config_log',1065,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_lock_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(452,'\\core\\event\\config_log_created','core','created','config_log','config_log',1066,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_lock_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(453,'\\core\\event\\config_log_created','core','created','config_log','config_log',1067,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(454,'\\core\\event\\config_log_created','core','created','config_log','config_log',1068,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_lock_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(455,'\\core\\event\\config_log_created','core','created','config_log','config_log',1069,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"host\";s:8:\"oldvalue\";N;s:5:\"value\";s:9:\"127.0.0.1\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(456,'\\core\\event\\config_log_created','core','created','config_log','config_log',1070,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"type\";s:8:\"oldvalue\";N;s:5:\"value\";s:6:\"mysqli\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(457,'\\core\\event\\config_log_created','core','created','config_log','config_log',1071,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"sybasequoting\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(458,'\\core\\event\\config_log_created','core','created','config_log','config_log',1072,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"name\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(459,'\\core\\event\\config_log_created','core','created','config_log','config_log',1073,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"user\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(460,'\\core\\event\\config_log_created','core','created','config_log','config_log',1074,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"pass\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(461,'\\core\\event\\config_log_created','core','created','config_log','config_log',1075,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:5:\"table\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(462,'\\core\\event\\config_log_created','core','created','config_log','config_log',1076,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"fielduser\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(463,'\\core\\event\\config_log_created','core','created','config_log','config_log',1077,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"fieldpass\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(464,'\\core\\event\\config_log_created','core','created','config_log','config_log',1078,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"passtype\";s:8:\"oldvalue\";N;s:5:\"value\";s:9:\"plaintext\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(465,'\\core\\event\\config_log_created','core','created','config_log','config_log',1079,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"extencoding\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"utf-8\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(466,'\\core\\event\\config_log_created','core','created','config_log','config_log',1080,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"setupsql\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(467,'\\core\\event\\config_log_created','core','created','config_log','config_log',1081,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"debugauthdb\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(468,'\\core\\event\\config_log_created','core','created','config_log','config_log',1082,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"changepasswordurl\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(469,'\\core\\event\\config_log_created','core','created','config_log','config_log',1083,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"removeuser\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(470,'\\core\\event\\config_log_created','core','created','config_log','config_log',1084,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"updateusers\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(471,'\\core\\event\\config_log_created','core','created','config_log','config_log',1085,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_map_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(472,'\\core\\event\\config_log_created','core','created','config_log','config_log',1086,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_updatelocal_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(473,'\\core\\event\\config_log_created','core','created','config_log','config_log',1087,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_updateremote_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(474,'\\core\\event\\config_log_created','core','created','config_log','config_log',1088,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_lock_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(475,'\\core\\event\\config_log_created','core','created','config_log','config_log',1089,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_map_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(476,'\\core\\event\\config_log_created','core','created','config_log','config_log',1090,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updatelocal_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(477,'\\core\\event\\config_log_created','core','created','config_log','config_log',1091,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_updateremote_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(478,'\\core\\event\\config_log_created','core','created','config_log','config_log',1092,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(479,'\\core\\event\\config_log_created','core','created','config_log','config_log',1093,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_map_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(480,'\\core\\event\\config_log_created','core','created','config_log','config_log',1094,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_updatelocal_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(481,'\\core\\event\\config_log_created','core','created','config_log','config_log',1095,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_updateremote_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(482,'\\core\\event\\config_log_created','core','created','config_log','config_log',1096,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_lock_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(483,'\\core\\event\\config_log_created','core','created','config_log','config_log',1097,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_map_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(484,'\\core\\event\\config_log_created','core','created','config_log','config_log',1098,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_updatelocal_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(485,'\\core\\event\\config_log_created','core','created','config_log','config_log',1099,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_updateremote_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(486,'\\core\\event\\config_log_created','core','created','config_log','config_log',1100,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(487,'\\core\\event\\config_log_created','core','created','config_log','config_log',1101,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_map_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(488,'\\core\\event\\config_log_created','core','created','config_log','config_log',1102,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updatelocal_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(489,'\\core\\event\\config_log_created','core','created','config_log','config_log',1103,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updateremote_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(490,'\\core\\event\\config_log_created','core','created','config_log','config_log',1104,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(491,'\\core\\event\\config_log_created','core','created','config_log','config_log',1105,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_map_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(492,'\\core\\event\\config_log_created','core','created','config_log','config_log',1106,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_updatelocal_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(493,'\\core\\event\\config_log_created','core','created','config_log','config_log',1107,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_updateremote_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(494,'\\core\\event\\config_log_created','core','created','config_log','config_log',1108,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(495,'\\core\\event\\config_log_created','core','created','config_log','config_log',1109,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_map_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(496,'\\core\\event\\config_log_created','core','created','config_log','config_log',1110,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updatelocal_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(497,'\\core\\event\\config_log_created','core','created','config_log','config_log',1111,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:30:\"field_updateremote_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(498,'\\core\\event\\config_log_created','core','created','config_log','config_log',1112,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(499,'\\core\\event\\config_log_created','core','created','config_log','config_log',1113,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"field_map_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(500,'\\core\\event\\config_log_created','core','created','config_log','config_log',1114,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_updatelocal_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(501,'\\core\\event\\config_log_created','core','created','config_log','config_log',1115,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_updateremote_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(502,'\\core\\event\\config_log_created','core','created','config_log','config_log',1116,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_lock_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(503,'\\core\\event\\config_log_created','core','created','config_log','config_log',1117,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_map_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(504,'\\core\\event\\config_log_created','core','created','config_log','config_log',1118,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updatelocal_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(505,'\\core\\event\\config_log_created','core','created','config_log','config_log',1119,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_updateremote_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(506,'\\core\\event\\config_log_created','core','created','config_log','config_log',1120,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(507,'\\core\\event\\config_log_created','core','created','config_log','config_log',1121,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_map_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(508,'\\core\\event\\config_log_created','core','created','config_log','config_log',1122,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updatelocal_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(509,'\\core\\event\\config_log_created','core','created','config_log','config_log',1123,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:30:\"field_updateremote_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(510,'\\core\\event\\config_log_created','core','created','config_log','config_log',1124,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(511,'\\core\\event\\config_log_created','core','created','config_log','config_log',1125,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_map_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(512,'\\core\\event\\config_log_created','core','created','config_log','config_log',1126,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_updatelocal_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(513,'\\core\\event\\config_log_created','core','created','config_log','config_log',1127,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updateremote_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(514,'\\core\\event\\config_log_created','core','created','config_log','config_log',1128,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(515,'\\core\\event\\config_log_created','core','created','config_log','config_log',1129,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_map_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(516,'\\core\\event\\config_log_created','core','created','config_log','config_log',1130,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_updatelocal_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(517,'\\core\\event\\config_log_created','core','created','config_log','config_log',1131,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updateremote_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(518,'\\core\\event\\config_log_created','core','created','config_log','config_log',1132,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(519,'\\core\\event\\config_log_created','core','created','config_log','config_log',1133,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_map_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(520,'\\core\\event\\config_log_created','core','created','config_log','config_log',1134,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_updatelocal_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(521,'\\core\\event\\config_log_created','core','created','config_log','config_log',1135,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updateremote_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(522,'\\core\\event\\config_log_created','core','created','config_log','config_log',1136,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(523,'\\core\\event\\config_log_created','core','created','config_log','config_log',1137,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_map_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(524,'\\core\\event\\config_log_created','core','created','config_log','config_log',1138,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updatelocal_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(525,'\\core\\event\\config_log_created','core','created','config_log','config_log',1139,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updateremote_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(526,'\\core\\event\\config_log_created','core','created','config_log','config_log',1140,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(527,'\\core\\event\\config_log_created','core','created','config_log','config_log',1141,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_map_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(528,'\\core\\event\\config_log_created','core','created','config_log','config_log',1142,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:35:\"field_updatelocal_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(529,'\\core\\event\\config_log_created','core','created','config_log','config_log',1143,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:36:\"field_updateremote_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(530,'\\core\\event\\config_log_created','core','created','config_log','config_log',1144,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_lock_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(531,'\\core\\event\\config_log_created','core','created','config_log','config_log',1145,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_map_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(532,'\\core\\event\\config_log_created','core','created','config_log','config_log',1146,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:34:\"field_updatelocal_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(533,'\\core\\event\\config_log_created','core','created','config_log','config_log',1147,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:35:\"field_updateremote_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(534,'\\core\\event\\config_log_created','core','created','config_log','config_log',1148,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_lock_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(535,'\\core\\event\\config_log_created','core','created','config_log','config_log',1149,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_map_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(536,'\\core\\event\\config_log_created','core','created','config_log','config_log',1150,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_updatelocal_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(537,'\\core\\event\\config_log_created','core','created','config_log','config_log',1151,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updateremote_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(538,'\\core\\event\\config_log_created','core','created','config_log','config_log',1152,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(539,'\\core\\event\\config_log_created','core','created','config_log','config_log',1153,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_map_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(540,'\\core\\event\\config_log_created','core','created','config_log','config_log',1154,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:31:\"field_updatelocal_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(541,'\\core\\event\\config_log_created','core','created','config_log','config_log',1155,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:32:\"field_updateremote_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(542,'\\core\\event\\config_log_created','core','created','config_log','config_log',1156,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_lock_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(543,'\\core\\event\\config_log_created','core','created','config_log','config_log',1157,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_map_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(544,'\\core\\event\\config_log_created','core','created','config_log','config_log',1158,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_updatelocal_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(545,'\\core\\event\\config_log_created','core','created','config_log','config_log',1159,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_updateremote_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(546,'\\core\\event\\config_log_created','core','created','config_log','config_log',1160,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_lock_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(547,'\\core\\event\\config_log_created','core','created','config_log','config_log',1161,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_map_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(548,'\\core\\event\\config_log_created','core','created','config_log','config_log',1162,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updatelocal_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(549,'\\core\\event\\config_log_created','core','created','config_log','config_log',1163,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_updateremote_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(550,'\\core\\event\\config_log_created','core','created','config_log','config_log',1164,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(551,'\\core\\event\\config_log_created','core','created','config_log','config_log',1165,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_map_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(552,'\\core\\event\\config_log_created','core','created','config_log','config_log',1166,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_updatelocal_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(553,'\\core\\event\\config_log_created','core','created','config_log','config_log',1167,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_updateremote_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(554,'\\core\\event\\config_log_created','core','created','config_log','config_log',1168,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_lock_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(555,'\\core\\event\\config_log_created','core','created','config_log','config_log',1169,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_map_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(556,'\\core\\event\\config_log_created','core','created','config_log','config_log',1170,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_updatelocal_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(557,'\\core\\event\\config_log_created','core','created','config_log','config_log',1171,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_updateremote_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(558,'\\core\\event\\config_log_created','core','created','config_log','config_log',1172,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(559,'\\core\\event\\config_log_created','core','created','config_log','config_log',1173,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_map_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(560,'\\core\\event\\config_log_created','core','created','config_log','config_log',1174,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updatelocal_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(561,'\\core\\event\\config_log_created','core','created','config_log','config_log',1175,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updateremote_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(562,'\\core\\event\\config_log_created','core','created','config_log','config_log',1176,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(563,'\\core\\event\\config_log_created','core','created','config_log','config_log',1177,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_map_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(564,'\\core\\event\\config_log_created','core','created','config_log','config_log',1178,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_updatelocal_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(565,'\\core\\event\\config_log_created','core','created','config_log','config_log',1179,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_updateremote_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(566,'\\core\\event\\config_log_created','core','created','config_log','config_log',1180,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(567,'\\core\\event\\config_log_created','core','created','config_log','config_log',1181,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_map_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(568,'\\core\\event\\config_log_created','core','created','config_log','config_log',1182,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updatelocal_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(569,'\\core\\event\\config_log_created','core','created','config_log','config_log',1183,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:30:\"field_updateremote_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(570,'\\core\\event\\config_log_created','core','created','config_log','config_log',1184,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(571,'\\core\\event\\config_log_created','core','created','config_log','config_log',1185,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"field_map_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(572,'\\core\\event\\config_log_created','core','created','config_log','config_log',1186,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_updatelocal_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(573,'\\core\\event\\config_log_created','core','created','config_log','config_log',1187,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_updateremote_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(574,'\\core\\event\\config_log_created','core','created','config_log','config_log',1188,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_lock_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(575,'\\core\\event\\config_log_created','core','created','config_log','config_log',1189,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_map_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(576,'\\core\\event\\config_log_created','core','created','config_log','config_log',1190,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updatelocal_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(577,'\\core\\event\\config_log_created','core','created','config_log','config_log',1191,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_updateremote_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(578,'\\core\\event\\config_log_created','core','created','config_log','config_log',1192,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(579,'\\core\\event\\config_log_created','core','created','config_log','config_log',1193,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_map_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(580,'\\core\\event\\config_log_created','core','created','config_log','config_log',1194,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updatelocal_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(581,'\\core\\event\\config_log_created','core','created','config_log','config_log',1195,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:30:\"field_updateremote_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(582,'\\core\\event\\config_log_created','core','created','config_log','config_log',1196,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(583,'\\core\\event\\config_log_created','core','created','config_log','config_log',1197,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_map_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(584,'\\core\\event\\config_log_created','core','created','config_log','config_log',1198,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_updatelocal_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(585,'\\core\\event\\config_log_created','core','created','config_log','config_log',1199,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updateremote_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(586,'\\core\\event\\config_log_created','core','created','config_log','config_log',1200,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(587,'\\core\\event\\config_log_created','core','created','config_log','config_log',1201,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_map_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(588,'\\core\\event\\config_log_created','core','created','config_log','config_log',1202,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_updatelocal_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(589,'\\core\\event\\config_log_created','core','created','config_log','config_log',1203,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updateremote_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(590,'\\core\\event\\config_log_created','core','created','config_log','config_log',1204,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(591,'\\core\\event\\config_log_created','core','created','config_log','config_log',1205,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_map_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(592,'\\core\\event\\config_log_created','core','created','config_log','config_log',1206,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_updatelocal_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(593,'\\core\\event\\config_log_created','core','created','config_log','config_log',1207,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updateremote_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(594,'\\core\\event\\config_log_created','core','created','config_log','config_log',1208,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(595,'\\core\\event\\config_log_created','core','created','config_log','config_log',1209,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_map_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(596,'\\core\\event\\config_log_created','core','created','config_log','config_log',1210,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updatelocal_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(597,'\\core\\event\\config_log_created','core','created','config_log','config_log',1211,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updateremote_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(598,'\\core\\event\\config_log_created','core','created','config_log','config_log',1212,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(599,'\\core\\event\\config_log_created','core','created','config_log','config_log',1213,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_map_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(600,'\\core\\event\\config_log_created','core','created','config_log','config_log',1214,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:35:\"field_updatelocal_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(601,'\\core\\event\\config_log_created','core','created','config_log','config_log',1215,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:36:\"field_updateremote_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(602,'\\core\\event\\config_log_created','core','created','config_log','config_log',1216,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_lock_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(603,'\\core\\event\\config_log_created','core','created','config_log','config_log',1217,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_map_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(604,'\\core\\event\\config_log_created','core','created','config_log','config_log',1218,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:34:\"field_updatelocal_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(605,'\\core\\event\\config_log_created','core','created','config_log','config_log',1219,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:35:\"field_updateremote_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(606,'\\core\\event\\config_log_created','core','created','config_log','config_log',1220,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_lock_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(607,'\\core\\event\\config_log_created','core','created','config_log','config_log',1221,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_map_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(608,'\\core\\event\\config_log_created','core','created','config_log','config_log',1222,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_updatelocal_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(609,'\\core\\event\\config_log_created','core','created','config_log','config_log',1223,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updateremote_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(610,'\\core\\event\\config_log_created','core','created','config_log','config_log',1224,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(611,'\\core\\event\\config_log_created','core','created','config_log','config_log',1225,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_map_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(612,'\\core\\event\\config_log_created','core','created','config_log','config_log',1226,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:31:\"field_updatelocal_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(613,'\\core\\event\\config_log_created','core','created','config_log','config_log',1227,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:32:\"field_updateremote_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(614,'\\core\\event\\config_log_created','core','created','config_log','config_log',1228,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_lock_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(615,'\\core\\event\\config_log_created','core','created','config_log','config_log',1229,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"expiration\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(616,'\\core\\event\\config_log_created','core','created','config_log','config_log',1230,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"expirationtime\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"30\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(617,'\\core\\event\\config_log_created','core','created','config_log','config_log',1231,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"expiration_warning\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(618,'\\core\\event\\config_log_created','core','created','config_log','config_log',1232,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_lock_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(619,'\\core\\event\\config_log_created','core','created','config_log','config_log',1233,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(620,'\\core\\event\\config_log_created','core','created','config_log','config_log',1234,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_lock_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(621,'\\core\\event\\config_log_created','core','created','config_log','config_log',1235,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(622,'\\core\\event\\config_log_created','core','created','config_log','config_log',1236,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(623,'\\core\\event\\config_log_created','core','created','config_log','config_log',1237,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(624,'\\core\\event\\config_log_created','core','created','config_log','config_log',1238,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(625,'\\core\\event\\config_log_created','core','created','config_log','config_log',1239,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_lock_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(626,'\\core\\event\\config_log_created','core','created','config_log','config_log',1240,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(627,'\\core\\event\\config_log_created','core','created','config_log','config_log',1241,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(628,'\\core\\event\\config_log_created','core','created','config_log','config_log',1242,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(629,'\\core\\event\\config_log_created','core','created','config_log','config_log',1243,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(630,'\\core\\event\\config_log_created','core','created','config_log','config_log',1244,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(631,'\\core\\event\\config_log_created','core','created','config_log','config_log',1245,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(632,'\\core\\event\\config_log_created','core','created','config_log','config_log',1246,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_lock_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(633,'\\core\\event\\config_log_created','core','created','config_log','config_log',1247,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_lock_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(634,'\\core\\event\\config_log_created','core','created','config_log','config_log',1248,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(635,'\\core\\event\\config_log_created','core','created','config_log','config_log',1249,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_lock_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(636,'\\core\\event\\config_log_created','core','created','config_log','config_log',1250,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"rpc_negotiation_timeout\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"30\";s:6:\"plugin\";s:9:\"auth_mnet\";}',1619623792,'web','65.129.132.97',NULL),(637,'\\core\\event\\config_log_created','core','created','config_log','config_log',1251,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_lock_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(638,'\\core\\event\\config_log_created','core','created','config_log','config_log',1252,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(639,'\\core\\event\\config_log_created','core','created','config_log','config_log',1253,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_lock_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(640,'\\core\\event\\config_log_created','core','created','config_log','config_log',1254,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(641,'\\core\\event\\config_log_created','core','created','config_log','config_log',1255,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(642,'\\core\\event\\config_log_created','core','created','config_log','config_log',1256,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(643,'\\core\\event\\config_log_created','core','created','config_log','config_log',1257,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(644,'\\core\\event\\config_log_created','core','created','config_log','config_log',1258,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_lock_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(645,'\\core\\event\\config_log_created','core','created','config_log','config_log',1259,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(646,'\\core\\event\\config_log_created','core','created','config_log','config_log',1260,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(647,'\\core\\event\\config_log_created','core','created','config_log','config_log',1261,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(648,'\\core\\event\\config_log_created','core','created','config_log','config_log',1262,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(649,'\\core\\event\\config_log_created','core','created','config_log','config_log',1263,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(650,'\\core\\event\\config_log_created','core','created','config_log','config_log',1264,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(651,'\\core\\event\\config_log_created','core','created','config_log','config_log',1265,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_lock_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(652,'\\core\\event\\config_log_created','core','created','config_log','config_log',1266,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_lock_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(653,'\\core\\event\\config_log_created','core','created','config_log','config_log',1267,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(654,'\\core\\event\\config_log_created','core','created','config_log','config_log',1268,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_lock_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(655,'\\core\\event\\config_log_created','core','created','config_log','config_log',1269,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_lock_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(656,'\\core\\event\\config_log_created','core','created','config_log','config_log',1270,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(657,'\\core\\event\\config_log_created','core','created','config_log','config_log',1271,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_lock_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(658,'\\core\\event\\config_log_created','core','created','config_log','config_log',1272,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(659,'\\core\\event\\config_log_created','core','created','config_log','config_log',1273,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(660,'\\core\\event\\config_log_created','core','created','config_log','config_log',1274,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(661,'\\core\\event\\config_log_created','core','created','config_log','config_log',1275,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(662,'\\core\\event\\config_log_created','core','created','config_log','config_log',1276,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_lock_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(663,'\\core\\event\\config_log_created','core','created','config_log','config_log',1277,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(664,'\\core\\event\\config_log_created','core','created','config_log','config_log',1278,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(665,'\\core\\event\\config_log_created','core','created','config_log','config_log',1279,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(666,'\\core\\event\\config_log_created','core','created','config_log','config_log',1280,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(667,'\\core\\event\\config_log_created','core','created','config_log','config_log',1281,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(668,'\\core\\event\\config_log_created','core','created','config_log','config_log',1282,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(669,'\\core\\event\\config_log_created','core','created','config_log','config_log',1283,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_lock_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(670,'\\core\\event\\config_log_created','core','created','config_log','config_log',1284,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_lock_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(671,'\\core\\event\\config_log_created','core','created','config_log','config_log',1285,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(672,'\\core\\event\\config_log_created','core','created','config_log','config_log',1286,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_lock_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(673,'\\core\\event\\config_log_created','core','created','config_log','config_log',1287,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"user_attribute\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(674,'\\core\\event\\config_log_created','core','created','config_log','config_log',1288,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"convert_data\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(675,'\\core\\event\\config_log_created','core','created','config_log','config_log',1289,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"alt_login\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"off\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(676,'\\core\\event\\config_log_created','core','created','config_log','config_log',1290,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"organization_selection\";s:8:\"oldvalue\";N;s:5:\"value\";s:259:\"urn:mace:organization1:providerID, Example Organization 1\n https://another.idp-id.com/shibboleth, Other Example Organization, /Shibboleth.sso/DS/SWITCHaai\n urn:mace:organization2:providerID, Example Organization 2, /Shibboleth.sso/WAYF/SWITCHaai\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(677,'\\core\\event\\config_log_created','core','created','config_log','config_log',1291,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"logout_handler\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(678,'\\core\\event\\config_log_created','core','created','config_log','config_log',1292,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"logout_return_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(679,'\\core\\event\\config_log_created','core','created','config_log','config_log',1293,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"login_name\";s:8:\"oldvalue\";N;s:5:\"value\";s:16:\"Shibboleth Login\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(680,'\\core\\event\\config_log_created','core','created','config_log','config_log',1294,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"auth_logo\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(681,'\\core\\event\\config_log_created','core','created','config_log','config_log',1295,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"auth_instructions\";s:8:\"oldvalue\";N;s:5:\"value\";s:218:\"Use the Shibboleth login to get access via Shibboleth, if your institution supports it. Otherwise, use the normal login form shown here.\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(682,'\\core\\event\\config_log_created','core','created','config_log','config_log',1296,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"changepasswordurl\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(683,'\\core\\event\\config_log_created','core','created','config_log','config_log',1297,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_map_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(684,'\\core\\event\\config_log_created','core','created','config_log','config_log',1298,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_updatelocal_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(685,'\\core\\event\\config_log_created','core','created','config_log','config_log',1299,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_lock_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(686,'\\core\\event\\config_log_created','core','created','config_log','config_log',1300,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_map_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(687,'\\core\\event\\config_log_created','core','created','config_log','config_log',1301,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updatelocal_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(688,'\\core\\event\\config_log_created','core','created','config_log','config_log',1302,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(689,'\\core\\event\\config_log_created','core','created','config_log','config_log',1303,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_map_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(690,'\\core\\event\\config_log_created','core','created','config_log','config_log',1304,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_updatelocal_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(691,'\\core\\event\\config_log_created','core','created','config_log','config_log',1305,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_lock_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(692,'\\core\\event\\config_log_created','core','created','config_log','config_log',1306,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_map_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(693,'\\core\\event\\config_log_created','core','created','config_log','config_log',1307,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_updatelocal_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(694,'\\core\\event\\config_log_created','core','created','config_log','config_log',1308,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(695,'\\core\\event\\config_log_created','core','created','config_log','config_log',1309,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_map_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(696,'\\core\\event\\config_log_created','core','created','config_log','config_log',1310,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updatelocal_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(697,'\\core\\event\\config_log_created','core','created','config_log','config_log',1311,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(698,'\\core\\event\\config_log_created','core','created','config_log','config_log',1312,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_map_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(699,'\\core\\event\\config_log_created','core','created','config_log','config_log',1313,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_updatelocal_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(700,'\\core\\event\\config_log_created','core','created','config_log','config_log',1314,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(701,'\\core\\event\\config_log_created','core','created','config_log','config_log',1315,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_map_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(702,'\\core\\event\\config_log_created','core','created','config_log','config_log',1316,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updatelocal_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(703,'\\core\\event\\config_log_created','core','created','config_log','config_log',1317,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(704,'\\core\\event\\config_log_created','core','created','config_log','config_log',1318,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"field_map_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(705,'\\core\\event\\config_log_created','core','created','config_log','config_log',1319,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_updatelocal_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(706,'\\core\\event\\config_log_created','core','created','config_log','config_log',1320,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_lock_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(707,'\\core\\event\\config_log_created','core','created','config_log','config_log',1321,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_map_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(708,'\\core\\event\\config_log_created','core','created','config_log','config_log',1322,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updatelocal_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(709,'\\core\\event\\config_log_created','core','created','config_log','config_log',1323,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(710,'\\core\\event\\config_log_created','core','created','config_log','config_log',1324,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_map_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(711,'\\core\\event\\config_log_created','core','created','config_log','config_log',1325,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updatelocal_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(712,'\\core\\event\\config_log_created','core','created','config_log','config_log',1326,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(713,'\\core\\event\\config_log_created','core','created','config_log','config_log',1327,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_map_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(714,'\\core\\event\\config_log_created','core','created','config_log','config_log',1328,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_updatelocal_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(715,'\\core\\event\\config_log_created','core','created','config_log','config_log',1329,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(716,'\\core\\event\\config_log_created','core','created','config_log','config_log',1330,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_map_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(717,'\\core\\event\\config_log_created','core','created','config_log','config_log',1331,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_updatelocal_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(718,'\\core\\event\\config_log_created','core','created','config_log','config_log',1332,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(719,'\\core\\event\\config_log_created','core','created','config_log','config_log',1333,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_map_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(720,'\\core\\event\\config_log_created','core','created','config_log','config_log',1334,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_updatelocal_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(721,'\\core\\event\\config_log_created','core','created','config_log','config_log',1335,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(722,'\\core\\event\\config_log_created','core','created','config_log','config_log',1336,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_map_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(723,'\\core\\event\\config_log_created','core','created','config_log','config_log',1337,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updatelocal_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(724,'\\core\\event\\config_log_created','core','created','config_log','config_log',1338,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(725,'\\core\\event\\config_log_created','core','created','config_log','config_log',1339,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_map_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(726,'\\core\\event\\config_log_created','core','created','config_log','config_log',1340,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:35:\"field_updatelocal_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(727,'\\core\\event\\config_log_created','core','created','config_log','config_log',1341,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_lock_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(728,'\\core\\event\\config_log_created','core','created','config_log','config_log',1342,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_map_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(729,'\\core\\event\\config_log_created','core','created','config_log','config_log',1343,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:34:\"field_updatelocal_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(730,'\\core\\event\\config_log_created','core','created','config_log','config_log',1344,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_lock_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(731,'\\core\\event\\config_log_created','core','created','config_log','config_log',1345,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_map_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(732,'\\core\\event\\config_log_created','core','created','config_log','config_log',1346,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_updatelocal_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(733,'\\core\\event\\config_log_created','core','created','config_log','config_log',1347,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(734,'\\core\\event\\config_log_created','core','created','config_log','config_log',1348,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_map_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(735,'\\core\\event\\config_log_created','core','created','config_log','config_log',1349,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:31:\"field_updatelocal_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(736,'\\core\\event\\config_log_created','core','created','config_log','config_log',1350,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_lock_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(737,'\\core\\event\\config_log_created','core','created','config_log','config_log',1351,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"config_showbest\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(738,'\\core\\event\\config_log_created','core','created','config_log','config_log',1352,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"config_showbest_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(739,'\\core\\event\\config_log_created','core','created','config_log','config_log',1353,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"config_showworst\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(740,'\\core\\event\\config_log_created','core','created','config_log','config_log',1354,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"config_showworst_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(741,'\\core\\event\\config_log_created','core','created','config_log','config_log',1355,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"config_usegroups\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(742,'\\core\\event\\config_log_created','core','created','config_log','config_log',1356,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"config_usegroups_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(743,'\\core\\event\\config_log_created','core','created','config_log','config_log',1357,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"config_nameformat\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(744,'\\core\\event\\config_log_created','core','created','config_log','config_log',1358,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"config_nameformat_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(745,'\\core\\event\\config_log_created','core','created','config_log','config_log',1359,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"config_gradeformat\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(746,'\\core\\event\\config_log_created','core','created','config_log','config_log',1360,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"config_gradeformat_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(747,'\\core\\event\\config_log_created','core','created','config_log','config_log',1361,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"config_decimalpoints\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"2\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(748,'\\core\\event\\config_log_created','core','created','config_log','config_log',1362,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"config_decimalpoints_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(749,'\\core\\event\\config_log_created','core','created','config_log','config_log',1363,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"displaycategories\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"block_myoverview\";}',1619623792,'web','65.129.132.97',NULL),(750,'\\core\\event\\config_log_created','core','created','config_log','config_log',1364,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"layouts\";s:8:\"oldvalue\";N;s:5:\"value\";s:17:\"card,list,summary\";s:6:\"plugin\";s:16:\"block_myoverview\";}',1619623792,'web','65.129.132.97',NULL),(751,'\\core\\event\\config_log_created','core','created','config_log','config_log',1365,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:33:\"displaygroupingallincludinghidden\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:16:\"block_myoverview\";}',1619623792,'web','65.129.132.97',NULL),(752,'\\core\\event\\config_log_created','core','created','config_log','config_log',1366,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"displaygroupingall\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"block_myoverview\";}',1619623792,'web','65.129.132.97',NULL),(753,'\\core\\event\\config_log_created','core','created','config_log','config_log',1367,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"displaygroupinginprogress\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"block_myoverview\";}',1619623792,'web','65.129.132.97',NULL),(754,'\\core\\event\\config_log_created','core','created','config_log','config_log',1368,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"displaygroupingpast\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"block_myoverview\";}',1619623792,'web','65.129.132.97',NULL),(755,'\\core\\event\\config_log_created','core','created','config_log','config_log',1369,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"displaygroupingfuture\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"block_myoverview\";}',1619623792,'web','65.129.132.97',NULL),(756,'\\core\\event\\config_log_created','core','created','config_log','config_log',1370,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"displaygroupingcustomfield\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:16:\"block_myoverview\";}',1619623792,'web','65.129.132.97',NULL),(757,'\\core\\event\\config_log_created','core','created','config_log','config_log',1371,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"customfiltergrouping\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:16:\"block_myoverview\";}',1619623792,'web','65.129.132.97',NULL),(758,'\\core\\event\\config_log_created','core','created','config_log','config_log',1372,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"displaygroupingfavourites\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"block_myoverview\";}',1619623792,'web','65.129.132.97',NULL),(759,'\\core\\event\\config_log_created','core','created','config_log','config_log',1373,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"displaygroupinghidden\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"block_myoverview\";}',1619623792,'web','65.129.132.97',NULL),(760,'\\core\\event\\config_log_created','core','created','config_log','config_log',1374,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"block_course_list_adminview\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"all\";s:6:\"plugin\";N;}',1619623792,'web','65.129.132.97',NULL),(761,'\\core\\event\\config_log_created','core','created','config_log','config_log',1375,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:36:\"block_course_list_hideallcourseslink\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623792,'web','65.129.132.97',NULL),(762,'\\core\\event\\config_log_created','core','created','config_log','config_log',1376,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"block_html_allowcssclasses\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623792,'web','65.129.132.97',NULL),(763,'\\core\\event\\config_log_created','core','created','config_log','config_log',1377,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"block_online_users_timetosee\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";N;}',1619623792,'web','65.129.132.97',NULL),(764,'\\core\\event\\config_log_created','core','created','config_log','config_log',1378,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:37:\"block_online_users_onlinestatushiding\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";N;}',1619623792,'web','65.129.132.97',NULL),(765,'\\core\\event\\config_log_created','core','created','config_log','config_log',1379,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"displaycategories\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:29:\"block_recentlyaccessedcourses\";}',1619623792,'web','65.129.132.97',NULL),(766,'\\core\\event\\config_log_created','core','created','config_log','config_log',1380,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"block_rss_client_num_entries\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";N;}',1619623792,'web','65.129.132.97',NULL),(767,'\\core\\event\\config_log_created','core','created','config_log','config_log',1381,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"block_rss_client_timeout\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"30\";s:6:\"plugin\";N;}',1619623792,'web','65.129.132.97',NULL),(768,'\\core\\event\\config_log_created','core','created','config_log','config_log',1382,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"numsections1\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"22\";s:6:\"plugin\";s:19:\"block_section_links\";}',1619623792,'web','65.129.132.97',NULL),(769,'\\core\\event\\config_log_created','core','created','config_log','config_log',1383,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"incby1\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"2\";s:6:\"plugin\";s:19:\"block_section_links\";}',1619623792,'web','65.129.132.97',NULL),(770,'\\core\\event\\config_log_created','core','created','config_log','config_log',1384,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"numsections2\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"40\";s:6:\"plugin\";s:19:\"block_section_links\";}',1619623792,'web','65.129.132.97',NULL),(771,'\\core\\event\\config_log_created','core','created','config_log','config_log',1385,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"incby2\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:19:\"block_section_links\";}',1619623792,'web','65.129.132.97',NULL),(772,'\\core\\event\\config_log_created','core','created','config_log','config_log',1386,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"displaycategories\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:20:\"block_starredcourses\";}',1619623792,'web','65.129.132.97',NULL),(773,'\\core\\event\\config_log_created','core','created','config_log','config_log',1387,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"apikey\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"block_tag_youtube\";}',1619623792,'web','65.129.132.97',NULL),(774,'\\core\\event\\config_log_created','core','created','config_log','config_log',1388,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"activitytype\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"forum\";s:6:\"plugin\";s:21:\"format_singleactivity\";}',1619623792,'web','65.129.132.97',NULL),(775,'\\core\\event\\config_log_created','core','created','config_log','config_log',1389,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"issuerid\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:25:\"fileconverter_googledrive\";}',1619623792,'web','65.129.132.97',NULL),(776,'\\core\\event\\config_log_created','core','created','config_log','config_log',1390,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"pathtounoconv\";s:8:\"oldvalue\";N;s:5:\"value\";s:16:\"/usr/bin/unoconv\";s:6:\"plugin\";N;}',1619623792,'web','65.129.132.97',NULL),(777,'\\core\\event\\config_log_created','core','created','config_log','config_log',1391,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"roleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:12:\"enrol_cohort\";}',1619623792,'web','65.129.132.97',NULL),(778,'\\core\\event\\config_log_created','core','created','config_log','config_log',1392,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"unenrolaction\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:12:\"enrol_cohort\";}',1619623792,'web','65.129.132.97',NULL),(779,'\\core\\event\\config_log_created','core','created','config_log','config_log',1393,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"nosyncroleids\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"enrol_meta\";}',1619623792,'web','65.129.132.97',NULL),(780,'\\core\\event\\config_log_created','core','created','config_log','config_log',1394,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"syncall\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"enrol_meta\";}',1619623792,'web','65.129.132.97',NULL),(781,'\\core\\event\\config_log_created','core','created','config_log','config_log',1395,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"unenrolaction\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";s:10:\"enrol_meta\";}',1619623792,'web','65.129.132.97',NULL),(782,'\\core\\event\\config_log_created','core','created','config_log','config_log',1396,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"coursesort\";s:8:\"oldvalue\";N;s:5:\"value\";s:9:\"sortorder\";s:6:\"plugin\";s:10:\"enrol_meta\";}',1619623792,'web','65.129.132.97',NULL),(783,'\\core\\event\\config_log_created','core','created','config_log','config_log',1397,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"expiredaction\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";s:9:\"enrol_fee\";}',1619623792,'web','65.129.132.97',NULL),(784,'\\core\\event\\config_log_created','core','created','config_log','config_log',1398,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"status\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:9:\"enrol_fee\";}',1619623792,'web','65.129.132.97',NULL),(785,'\\core\\event\\config_log_created','core','created','config_log','config_log',1399,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"cost\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"enrol_fee\";}',1619623792,'web','65.129.132.97',NULL),(786,'\\core\\event\\config_log_created','core','created','config_log','config_log',1400,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"currency\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"USD\";s:6:\"plugin\";s:9:\"enrol_fee\";}',1619623792,'web','65.129.132.97',NULL),(787,'\\core\\event\\config_log_created','core','created','config_log','config_log',1401,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"roleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:9:\"enrol_fee\";}',1619623792,'web','65.129.132.97',NULL),(788,'\\core\\event\\config_log_created','core','created','config_log','config_log',1402,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"enrolperiod\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"enrol_fee\";}',1619623792,'web','65.129.132.97',NULL),(789,'\\core\\event\\config_log_created','core','created','config_log','config_log',1403,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"dbtype\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(790,'\\core\\event\\config_log_created','core','created','config_log','config_log',1404,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"dbhost\";s:8:\"oldvalue\";N;s:5:\"value\";s:9:\"localhost\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(791,'\\core\\event\\config_log_created','core','created','config_log','config_log',1405,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"dbuser\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(792,'\\core\\event\\config_log_created','core','created','config_log','config_log',1406,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"dbpass\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(793,'\\core\\event\\config_log_created','core','created','config_log','config_log',1407,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"dbname\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(794,'\\core\\event\\config_log_created','core','created','config_log','config_log',1408,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"dbencoding\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"utf-8\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(795,'\\core\\event\\config_log_created','core','created','config_log','config_log',1409,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"dbsetupsql\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(796,'\\core\\event\\config_log_created','core','created','config_log','config_log',1410,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"dbsybasequoting\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(797,'\\core\\event\\config_log_created','core','created','config_log','config_log',1411,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"debugdb\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(798,'\\core\\event\\config_log_created','core','created','config_log','config_log',1412,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"localcoursefield\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"idnumber\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(799,'\\core\\event\\config_log_created','core','created','config_log','config_log',1413,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"localuserfield\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"idnumber\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(800,'\\core\\event\\config_log_created','core','created','config_log','config_log',1414,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"localrolefield\";s:8:\"oldvalue\";N;s:5:\"value\";s:9:\"shortname\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(801,'\\core\\event\\config_log_created','core','created','config_log','config_log',1415,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"localcategoryfield\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"id\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(802,'\\core\\event\\config_log_created','core','created','config_log','config_log',1416,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"remoteenroltable\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(803,'\\core\\event\\config_log_created','core','created','config_log','config_log',1417,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"remotecoursefield\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(804,'\\core\\event\\config_log_created','core','created','config_log','config_log',1418,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"remoteuserfield\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(805,'\\core\\event\\config_log_created','core','created','config_log','config_log',1419,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"remoterolefield\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(806,'\\core\\event\\config_log_created','core','created','config_log','config_log',1420,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"remoteotheruserfield\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(807,'\\core\\event\\config_log_created','core','created','config_log','config_log',1421,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"defaultrole\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(808,'\\core\\event\\config_log_created','core','created','config_log','config_log',1422,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"ignorehiddencourses\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(809,'\\core\\event\\config_log_created','core','created','config_log','config_log',1423,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"unenrolaction\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(810,'\\core\\event\\config_log_created','core','created','config_log','config_log',1424,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"newcoursetable\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(811,'\\core\\event\\config_log_created','core','created','config_log','config_log',1425,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"newcoursefullname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"fullname\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(812,'\\core\\event\\config_log_created','core','created','config_log','config_log',1426,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"newcourseshortname\";s:8:\"oldvalue\";N;s:5:\"value\";s:9:\"shortname\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(813,'\\core\\event\\config_log_created','core','created','config_log','config_log',1427,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"newcourseidnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"idnumber\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(814,'\\core\\event\\config_log_created','core','created','config_log','config_log',1428,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"newcoursecategory\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(815,'\\core\\event\\config_log_created','core','created','config_log','config_log',1429,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"defaultcategory\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(816,'\\core\\event\\config_log_created','core','created','config_log','config_log',1430,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"templatecourse\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(817,'\\core\\event\\config_log_created','core','created','config_log','config_log',1431,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"location\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_flatfile\";}',1619623792,'web','65.129.132.97',NULL),(818,'\\core\\event\\config_log_created','core','created','config_log','config_log',1432,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"encoding\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"UTF-8\";s:6:\"plugin\";s:14:\"enrol_flatfile\";}',1619623792,'web','65.129.132.97',NULL),(819,'\\core\\event\\config_log_created','core','created','config_log','config_log',1433,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"mailstudents\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:14:\"enrol_flatfile\";}',1619623792,'web','65.129.132.97',NULL),(820,'\\core\\event\\config_log_created','core','created','config_log','config_log',1434,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"mailteachers\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:14:\"enrol_flatfile\";}',1619623792,'web','65.129.132.97',NULL),(821,'\\core\\event\\config_log_created','core','created','config_log','config_log',1435,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"mailadmins\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:14:\"enrol_flatfile\";}',1619623792,'web','65.129.132.97',NULL),(822,'\\core\\event\\config_log_created','core','created','config_log','config_log',1436,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"unenrolaction\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";s:14:\"enrol_flatfile\";}',1619623792,'web','65.129.132.97',NULL),(823,'\\core\\event\\config_log_created','core','created','config_log','config_log',1437,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"expiredaction\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";s:14:\"enrol_flatfile\";}',1619623792,'web','65.129.132.97',NULL),(824,'\\core\\event\\config_log_created','core','created','config_log','config_log',1438,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"requirepassword\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:11:\"enrol_guest\";}',1619623792,'web','65.129.132.97',NULL),(825,'\\core\\event\\config_log_created','core','created','config_log','config_log',1439,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"usepasswordpolicy\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:11:\"enrol_guest\";}',1619623792,'web','65.129.132.97',NULL),(826,'\\core\\event\\config_log_created','core','created','config_log','config_log',1440,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"showhint\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:11:\"enrol_guest\";}',1619623792,'web','65.129.132.97',NULL),(827,'\\core\\event\\config_log_created','core','created','config_log','config_log',1441,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"defaultenrol\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:11:\"enrol_guest\";}',1619623792,'web','65.129.132.97',NULL),(828,'\\core\\event\\config_log_created','core','created','config_log','config_log',1442,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"status\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:11:\"enrol_guest\";}',1619623792,'web','65.129.132.97',NULL),(829,'\\core\\event\\config_log_created','core','created','config_log','config_log',1443,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"status_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:11:\"enrol_guest\";}',1619623792,'web','65.129.132.97',NULL),(830,'\\core\\event\\config_log_created','core','created','config_log','config_log',1444,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"imsfilelocation\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(831,'\\core\\event\\config_log_created','core','created','config_log','config_log',1445,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"logtolocation\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(832,'\\core\\event\\config_log_created','core','created','config_log','config_log',1446,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"mailadmins\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(833,'\\core\\event\\config_log_created','core','created','config_log','config_log',1447,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"createnewusers\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(834,'\\core\\event\\config_log_created','core','created','config_log','config_log',1448,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"imsupdateusers\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(835,'\\core\\event\\config_log_created','core','created','config_log','config_log',1449,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"imsdeleteusers\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(836,'\\core\\event\\config_log_created','core','created','config_log','config_log',1450,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"fixcaseusernames\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(837,'\\core\\event\\config_log_created','core','created','config_log','config_log',1451,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"fixcasepersonalnames\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(838,'\\core\\event\\config_log_created','core','created','config_log','config_log',1452,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"imssourcedidfallback\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(839,'\\core\\event\\config_log_created','core','created','config_log','config_log',1453,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"imsrolemap01\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(840,'\\core\\event\\config_log_created','core','created','config_log','config_log',1454,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"imsrolemap02\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(841,'\\core\\event\\config_log_created','core','created','config_log','config_log',1455,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"imsrolemap03\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(842,'\\core\\event\\config_log_created','core','created','config_log','config_log',1456,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"imsrolemap04\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(843,'\\core\\event\\config_log_created','core','created','config_log','config_log',1457,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"imsrolemap05\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(844,'\\core\\event\\config_log_created','core','created','config_log','config_log',1458,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"imsrolemap06\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"4\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(845,'\\core\\event\\config_log_created','core','created','config_log','config_log',1459,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"imsrolemap07\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(846,'\\core\\event\\config_log_created','core','created','config_log','config_log',1460,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"imsrolemap08\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"4\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(847,'\\core\\event\\config_log_created','core','created','config_log','config_log',1461,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"truncatecoursecodes\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(848,'\\core\\event\\config_log_created','core','created','config_log','config_log',1462,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"createnewcourses\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(849,'\\core\\event\\config_log_created','core','created','config_log','config_log',1463,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"updatecourses\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(850,'\\core\\event\\config_log_created','core','created','config_log','config_log',1464,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"createnewcategories\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(851,'\\core\\event\\config_log_created','core','created','config_log','config_log',1465,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"nestedcategories\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(852,'\\core\\event\\config_log_created','core','created','config_log','config_log',1466,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"categoryidnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(853,'\\core\\event\\config_log_created','core','created','config_log','config_log',1467,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"categoryseparator\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(854,'\\core\\event\\config_log_created','core','created','config_log','config_log',1468,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"imsunenrol\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(855,'\\core\\event\\config_log_created','core','created','config_log','config_log',1469,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"imscoursemapshortname\";s:8:\"oldvalue\";N;s:5:\"value\";s:10:\"coursecode\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(856,'\\core\\event\\config_log_created','core','created','config_log','config_log',1470,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"imscoursemapfullname\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"short\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(857,'\\core\\event\\config_log_created','core','created','config_log','config_log',1471,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"imscoursemapsummary\";s:8:\"oldvalue\";N;s:5:\"value\";s:6:\"ignore\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(858,'\\core\\event\\config_log_created','core','created','config_log','config_log',1472,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"imsrestricttarget\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(859,'\\core\\event\\config_log_created','core','created','config_log','config_log',1473,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"imscapitafix\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(860,'\\core\\event\\config_log_created','core','created','config_log','config_log',1474,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"expiredaction\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:12:\"enrol_manual\";}',1619623792,'web','65.129.132.97',NULL),(861,'\\core\\event\\config_log_created','core','created','config_log','config_log',1475,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"expirynotifyhour\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"6\";s:6:\"plugin\";s:12:\"enrol_manual\";}',1619623792,'web','65.129.132.97',NULL),(862,'\\core\\event\\config_log_created','core','created','config_log','config_log',1476,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"defaultenrol\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:12:\"enrol_manual\";}',1619623792,'web','65.129.132.97',NULL),(863,'\\core\\event\\config_log_created','core','created','config_log','config_log',1477,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"status\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:12:\"enrol_manual\";}',1619623792,'web','65.129.132.97',NULL),(864,'\\core\\event\\config_log_created','core','created','config_log','config_log',1478,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"roleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:12:\"enrol_manual\";}',1619623792,'web','65.129.132.97',NULL),(865,'\\core\\event\\config_log_created','core','created','config_log','config_log',1479,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"enrolstart\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"4\";s:6:\"plugin\";s:12:\"enrol_manual\";}',1619623792,'web','65.129.132.97',NULL),(866,'\\core\\event\\config_log_created','core','created','config_log','config_log',1480,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"enrolperiod\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:12:\"enrol_manual\";}',1619623792,'web','65.129.132.97',NULL),(867,'\\core\\event\\config_log_created','core','created','config_log','config_log',1481,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"expirynotify\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:12:\"enrol_manual\";}',1619623792,'web','65.129.132.97',NULL),(868,'\\core\\event\\config_log_created','core','created','config_log','config_log',1482,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"expirythreshold\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"86400\";s:6:\"plugin\";s:12:\"enrol_manual\";}',1619623792,'web','65.129.132.97',NULL),(869,'\\core\\event\\config_log_created','core','created','config_log','config_log',1483,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"roleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:10:\"enrol_mnet\";}',1619623792,'web','65.129.132.97',NULL),(870,'\\core\\event\\config_log_created','core','created','config_log','config_log',1484,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"roleid_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"enrol_mnet\";}',1619623792,'web','65.129.132.97',NULL),(871,'\\core\\event\\config_log_created','core','created','config_log','config_log',1485,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"paypalbusiness\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:12:\"enrol_paypal\";}',1619623792,'web','65.129.132.97',NULL),(872,'\\core\\event\\config_log_created','core','created','config_log','config_log',1486,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"mailstudents\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:12:\"enrol_paypal\";}',1619623792,'web','65.129.132.97',NULL),(873,'\\core\\event\\config_log_created','core','created','config_log','config_log',1487,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"mailteachers\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:12:\"enrol_paypal\";}',1619623792,'web','65.129.132.97',NULL),(874,'\\core\\event\\config_log_created','core','created','config_log','config_log',1488,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"mailadmins\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:12:\"enrol_paypal\";}',1619623792,'web','65.129.132.97',NULL),(875,'\\core\\event\\config_log_created','core','created','config_log','config_log',1489,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"expiredaction\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";s:12:\"enrol_paypal\";}',1619623792,'web','65.129.132.97',NULL),(876,'\\core\\event\\config_log_created','core','created','config_log','config_log',1490,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"status\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:12:\"enrol_paypal\";}',1619623792,'web','65.129.132.97',NULL),(877,'\\core\\event\\config_log_created','core','created','config_log','config_log',1491,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"cost\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:12:\"enrol_paypal\";}',1619623792,'web','65.129.132.97',NULL),(878,'\\core\\event\\config_log_created','core','created','config_log','config_log',1492,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"currency\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"USD\";s:6:\"plugin\";s:12:\"enrol_paypal\";}',1619623792,'web','65.129.132.97',NULL),(879,'\\core\\event\\config_log_created','core','created','config_log','config_log',1493,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"roleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:12:\"enrol_paypal\";}',1619623792,'web','65.129.132.97',NULL),(880,'\\core\\event\\config_log_created','core','created','config_log','config_log',1494,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"enrolperiod\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:12:\"enrol_paypal\";}',1619623792,'web','65.129.132.97',NULL),(881,'\\core\\event\\config_log_created','core','created','config_log','config_log',1495,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"emaildisplay\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"2\";s:6:\"plugin\";s:9:\"enrol_lti\";}',1619623792,'web','65.129.132.97',NULL),(882,'\\core\\event\\config_log_created','core','created','config_log','config_log',1496,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"city\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"enrol_lti\";}',1619623792,'web','65.129.132.97',NULL),(883,'\\core\\event\\config_log_created','core','created','config_log','config_log',1497,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"country\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"enrol_lti\";}',1619623792,'web','65.129.132.97',NULL),(884,'\\core\\event\\config_log_created','core','created','config_log','config_log',1498,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"timezone\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"99\";s:6:\"plugin\";s:9:\"enrol_lti\";}',1619623792,'web','65.129.132.97',NULL),(885,'\\core\\event\\config_log_created','core','created','config_log','config_log',1499,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"en\";s:6:\"plugin\";s:9:\"enrol_lti\";}',1619623792,'web','65.129.132.97',NULL),(886,'\\core\\event\\config_log_created','core','created','config_log','config_log',1500,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"enrol_lti\";}',1619623792,'web','65.129.132.97',NULL),(887,'\\core\\event\\config_log_created','core','created','config_log','config_log',1501,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"requirepassword\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(888,'\\core\\event\\config_log_created','core','created','config_log','config_log',1502,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"usepasswordpolicy\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(889,'\\core\\event\\config_log_created','core','created','config_log','config_log',1503,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"showhint\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(890,'\\core\\event\\config_log_created','core','created','config_log','config_log',1504,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"expiredaction\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(891,'\\core\\event\\config_log_created','core','created','config_log','config_log',1505,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"expirynotifyhour\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"6\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(892,'\\core\\event\\config_log_created','core','created','config_log','config_log',1506,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"defaultenrol\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(893,'\\core\\event\\config_log_created','core','created','config_log','config_log',1507,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"status\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(894,'\\core\\event\\config_log_created','core','created','config_log','config_log',1508,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"newenrols\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(895,'\\core\\event\\config_log_created','core','created','config_log','config_log',1509,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"groupkey\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(896,'\\core\\event\\config_log_created','core','created','config_log','config_log',1510,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"roleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(897,'\\core\\event\\config_log_created','core','created','config_log','config_log',1511,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"enrolperiod\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(898,'\\core\\event\\config_log_created','core','created','config_log','config_log',1512,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"expirynotify\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(899,'\\core\\event\\config_log_created','core','created','config_log','config_log',1513,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"expirythreshold\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"86400\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(900,'\\core\\event\\config_log_created','core','created','config_log','config_log',1514,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"longtimenosee\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(901,'\\core\\event\\config_log_created','core','created','config_log','config_log',1515,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"maxenrolled\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(902,'\\core\\event\\config_log_created','core','created','config_log','config_log',1516,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"sendcoursewelcomemessage\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(903,'\\core\\event\\config_log_created','core','created','config_log','config_log',1517,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"formats\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"1,4,0\";s:6:\"plugin\";s:16:\"filter_urltolink\";}',1619623792,'web','65.129.132.97',NULL),(904,'\\core\\event\\config_log_created','core','created','config_log','config_log',1518,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"embedimages\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"filter_urltolink\";}',1619623792,'web','65.129.132.97',NULL),(905,'\\core\\event\\config_log_created','core','created','config_log','config_log',1519,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"formats\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"1,4,0\";s:6:\"plugin\";s:15:\"filter_emoticon\";}',1619623792,'web','65.129.132.97',NULL),(906,'\\core\\event\\config_log_created','core','created','config_log','config_log',1520,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"allowedsources\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"filter_displayh5p\";}',1619623792,'web','65.129.132.97',NULL),(907,'\\core\\event\\config_log_created','core','created','config_log','config_log',1521,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"httpsurl\";s:8:\"oldvalue\";N;s:5:\"value\";s:53:\"https://cdn.jsdelivr.net/npm/mathjax@2.7.8/MathJax.js\";s:6:\"plugin\";s:20:\"filter_mathjaxloader\";}',1619623792,'web','65.129.132.97',NULL),(908,'\\core\\event\\config_log_created','core','created','config_log','config_log',1522,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"texfiltercompatibility\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:20:\"filter_mathjaxloader\";}',1619623792,'web','65.129.132.97',NULL),(909,'\\core\\event\\config_log_created','core','created','config_log','config_log',1523,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"mathjaxconfig\";s:8:\"oldvalue\";N;s:5:\"value\";s:162:\"\nMathJax.Hub.Config({\n config: [\"Accessible.js\", \"Safe.js\"],\n errorSettings: { message: [\"!\"] },\n skipStartupTypeset: true,\n messageStyle: \"none\"\n});\n\";s:6:\"plugin\";s:20:\"filter_mathjaxloader\";}',1619623792,'web','65.129.132.97',NULL),(910,'\\core\\event\\config_log_created','core','created','config_log','config_log',1524,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"additionaldelimiters\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:20:\"filter_mathjaxloader\";}',1619623792,'web','65.129.132.97',NULL),(911,'\\core\\event\\config_log_created','core','created','config_log','config_log',1525,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"filter_multilang_force_old\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623792,'web','65.129.132.97',NULL),(912,'\\core\\event\\config_log_created','core','created','config_log','config_log',1526,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"latexpreamble\";s:8:\"oldvalue\";N;s:5:\"value\";s:115:\"\\usepackage[latin1]{inputenc}\n\\usepackage{amsmath}\n\\usepackage{amsfonts}\n\\RequirePackage{amsmath,amssymb,latexsym}\n\";s:6:\"plugin\";s:10:\"filter_tex\";}',1619623792,'web','65.129.132.97',NULL),(913,'\\core\\event\\config_log_created','core','created','config_log','config_log',1527,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"latexbackground\";s:8:\"oldvalue\";N;s:5:\"value\";s:7:\"#FFFFFF\";s:6:\"plugin\";s:10:\"filter_tex\";}',1619623792,'web','65.129.132.97',NULL),(914,'\\core\\event\\config_log_created','core','created','config_log','config_log',1528,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"density\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"120\";s:6:\"plugin\";s:10:\"filter_tex\";}',1619623792,'web','65.129.132.97',NULL),(915,'\\core\\event\\config_log_created','core','created','config_log','config_log',1529,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"pathlatex\";s:8:\"oldvalue\";N;s:5:\"value\";s:14:\"/usr/bin/latex\";s:6:\"plugin\";s:10:\"filter_tex\";}',1619623792,'web','65.129.132.97',NULL),(916,'\\core\\event\\config_log_created','core','created','config_log','config_log',1530,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"pathdvips\";s:8:\"oldvalue\";N;s:5:\"value\";s:14:\"/usr/bin/dvips\";s:6:\"plugin\";s:10:\"filter_tex\";}',1619623792,'web','65.129.132.97',NULL),(917,'\\core\\event\\config_log_created','core','created','config_log','config_log',1531,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"pathconvert\";s:8:\"oldvalue\";N;s:5:\"value\";s:16:\"/usr/bin/convert\";s:6:\"plugin\";s:10:\"filter_tex\";}',1619623792,'web','65.129.132.97',NULL),(918,'\\core\\event\\config_log_created','core','created','config_log','config_log',1532,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"pathdvisvgm\";s:8:\"oldvalue\";N;s:5:\"value\";s:16:\"/usr/bin/dvisvgm\";s:6:\"plugin\";s:10:\"filter_tex\";}',1619623792,'web','65.129.132.97',NULL),(919,'\\core\\event\\config_log_created','core','created','config_log','config_log',1533,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"pathmimetex\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"filter_tex\";}',1619623792,'web','65.129.132.97',NULL),(920,'\\core\\event\\config_log_created','core','created','config_log','config_log',1534,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"convertformat\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"gif\";s:6:\"plugin\";s:10:\"filter_tex\";}',1619623793,'web','65.129.132.97',NULL),(921,'\\core\\event\\config_log_created','core','created','config_log','config_log',1535,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"filter_censor_badwords\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(922,'\\core\\event\\config_log_created','core','created','config_log','config_log',1536,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"messaging_support_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:22:\"local_chat_attachments\";}',1619623793,'web','65.129.132.97',NULL),(923,'\\core\\event\\config_log_created','core','created','config_log','config_log',1537,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"messaging_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:22:\"local_chat_attachments\";}',1619623793,'web','65.129.132.97',NULL),(924,'\\core\\event\\config_log_created','core','created','config_log','config_log',1538,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"messaging_token\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:22:\"local_chat_attachments\";}',1619623793,'web','65.129.132.97',NULL),(925,'\\core\\event\\config_log_created','core','created','config_log','config_log',1539,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"dbdriver\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(926,'\\core\\event\\config_log_created','core','created','config_log','config_log',1540,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"dbhost\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(927,'\\core\\event\\config_log_created','core','created','config_log','config_log',1541,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"dbuser\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(928,'\\core\\event\\config_log_created','core','created','config_log','config_log',1542,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"dbpass\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(929,'\\core\\event\\config_log_created','core','created','config_log','config_log',1543,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"dbname\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(930,'\\core\\event\\config_log_created','core','created','config_log','config_log',1544,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"dbtable\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(931,'\\core\\event\\config_log_created','core','created','config_log','config_log',1545,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"dbpersist\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(932,'\\core\\event\\config_log_created','core','created','config_log','config_log',1546,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"dbsocket\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(933,'\\core\\event\\config_log_created','core','created','config_log','config_log',1547,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"dbport\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(934,'\\core\\event\\config_log_created','core','created','config_log','config_log',1548,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"dbschema\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(935,'\\core\\event\\config_log_created','core','created','config_log','config_log',1549,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"dbcollation\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(936,'\\core\\event\\config_log_created','core','created','config_log','config_log',1550,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"dbhandlesoptions\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(937,'\\core\\event\\config_log_created','core','created','config_log','config_log',1551,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"buffersize\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"50\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(938,'\\core\\event\\config_log_created','core','created','config_log','config_log',1552,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"jsonformat\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(939,'\\core\\event\\config_log_created','core','created','config_log','config_log',1553,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"logguests\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(940,'\\core\\event\\config_log_created','core','created','config_log','config_log',1554,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"includelevels\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"1,2,0\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(941,'\\core\\event\\config_log_created','core','created','config_log','config_log',1555,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"includeactions\";s:8:\"oldvalue\";N;s:5:\"value\";s:7:\"c,r,u,d\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(942,'\\core\\event\\config_log_created','core','created','config_log','config_log',1556,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"loglegacy\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:15:\"logstore_legacy\";}',1619623793,'web','65.129.132.97',NULL),(943,'\\core\\event\\config_log_created','core','created','config_log','config_log',1557,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"logguests\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(944,'\\core\\event\\config_log_created','core','created','config_log','config_log',1558,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"loglifetime\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(945,'\\core\\event\\config_log_created','core','created','config_log','config_log',1559,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"logguests\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:17:\"logstore_standard\";}',1619623793,'web','65.129.132.97',NULL),(946,'\\core\\event\\config_log_created','core','created','config_log','config_log',1560,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"jsonformat\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:17:\"logstore_standard\";}',1619623793,'web','65.129.132.97',NULL),(947,'\\core\\event\\config_log_created','core','created','config_log','config_log',1561,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"loglifetime\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:17:\"logstore_standard\";}',1619623793,'web','65.129.132.97',NULL),(948,'\\core\\event\\config_log_created','core','created','config_log','config_log',1562,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"buffersize\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"50\";s:6:\"plugin\";s:17:\"logstore_standard\";}',1619623793,'web','65.129.132.97',NULL),(949,'\\core\\event\\config_log_created','core','created','config_log','config_log',1563,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"useserver\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:16:\"mlbackend_python\";}',1619623793,'web','65.129.132.97',NULL),(950,'\\core\\event\\config_log_created','core','created','config_log','config_log',1564,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"host\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:16:\"mlbackend_python\";}',1619623793,'web','65.129.132.97',NULL),(951,'\\core\\event\\config_log_created','core','created','config_log','config_log',1565,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"port\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:16:\"mlbackend_python\";}',1619623793,'web','65.129.132.97',NULL),(952,'\\core\\event\\config_log_created','core','created','config_log','config_log',1566,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"secure\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:16:\"mlbackend_python\";}',1619623793,'web','65.129.132.97',NULL),(953,'\\core\\event\\config_log_created','core','created','config_log','config_log',1567,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"username\";s:8:\"oldvalue\";N;s:5:\"value\";s:7:\"default\";s:6:\"plugin\";s:16:\"mlbackend_python\";}',1619623793,'web','65.129.132.97',NULL),(954,'\\core\\event\\config_log_created','core','created','config_log','config_log',1568,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"password\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:16:\"mlbackend_python\";}',1619623793,'web','65.129.132.97',NULL),(955,'\\core\\event\\config_log_created','core','created','config_log','config_log',1569,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"videoextensions\";s:8:\"oldvalue\";N;s:5:\"value\";s:33:\"html_video,media_source,.f4v,.flv\";s:6:\"plugin\";s:13:\"media_videojs\";}',1619623793,'web','65.129.132.97',NULL),(956,'\\core\\event\\config_log_created','core','created','config_log','config_log',1570,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"audioextensions\";s:8:\"oldvalue\";N;s:5:\"value\";s:10:\"html_audio\";s:6:\"plugin\";s:13:\"media_videojs\";}',1619623793,'web','65.129.132.97',NULL),(957,'\\core\\event\\config_log_created','core','created','config_log','config_log',1571,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"rtmp\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:13:\"media_videojs\";}',1619623793,'web','65.129.132.97',NULL),(958,'\\core\\event\\config_log_created','core','created','config_log','config_log',1572,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"useflash\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:13:\"media_videojs\";}',1619623793,'web','65.129.132.97',NULL),(959,'\\core\\event\\config_log_created','core','created','config_log','config_log',1573,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"youtube\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:13:\"media_videojs\";}',1619623793,'web','65.129.132.97',NULL),(960,'\\core\\event\\config_log_created','core','created','config_log','config_log',1574,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"videocssclass\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"video-js\";s:6:\"plugin\";s:13:\"media_videojs\";}',1619623793,'web','65.129.132.97',NULL),(961,'\\core\\event\\config_log_created','core','created','config_log','config_log',1575,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"audiocssclass\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"video-js\";s:6:\"plugin\";s:13:\"media_videojs\";}',1619623793,'web','65.129.132.97',NULL),(962,'\\core\\event\\config_log_created','core','created','config_log','config_log',1576,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"limitsize\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:13:\"media_videojs\";}',1619623793,'web','65.129.132.97',NULL),(963,'\\core\\event\\config_log_created','core','created','config_log','config_log',1577,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"surcharge\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:12:\"paygw_paypal\";}',1619623793,'web','65.129.132.97',NULL),(964,'\\core\\event\\config_log_created','core','created','config_log','config_log',1578,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"answerhowmany\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:17:\"qtype_multichoice\";}',1619623793,'web','65.129.132.97',NULL),(965,'\\core\\event\\config_log_created','core','created','config_log','config_log',1579,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"shuffleanswers\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:17:\"qtype_multichoice\";}',1619623793,'web','65.129.132.97',NULL),(966,'\\core\\event\\config_log_created','core','created','config_log','config_log',1580,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"answernumbering\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"abc\";s:6:\"plugin\";s:17:\"qtype_multichoice\";}',1619623793,'web','65.129.132.97',NULL),(967,'\\core\\event\\config_log_created','core','created','config_log','config_log',1581,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"toolbar\";s:8:\"oldvalue\";N;s:5:\"value\";s:355:\"collapse = collapse\nstyle1 = title, bold, italic\nlist = unorderedlist, orderedlist, indent\nlinks = link\nfiles = emojipicker, image, media, recordrtc, managefiles, h5p\nstyle2 = underline, strike, subscript, superscript\nalign = align\ninsert = equation, charmap, table, clear\nundo = undo\naccessibility = accessibilitychecker, accessibilityhelper\nother = html\";s:6:\"plugin\";s:11:\"editor_atto\";}',1619623793,'web','65.129.132.97',NULL),(968,'\\core\\event\\config_log_created','core','created','config_log','config_log',1582,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"autosavefrequency\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"60\";s:6:\"plugin\";s:11:\"editor_atto\";}',1619623793,'web','65.129.132.97',NULL),(969,'\\core\\event\\config_log_created','core','created','config_log','config_log',1583,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"showgroups\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:13:\"atto_collapse\";}',1619623793,'web','65.129.132.97',NULL),(970,'\\core\\event\\config_log_created','core','created','config_log','config_log',1584,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"librarygroup1\";s:8:\"oldvalue\";N;s:5:\"value\";s:244:\"\n\\cdot\n\\times\n\\ast\n\\div\n\\diamond\n\\pm\n\\mp\n\\oplus\n\\ominus\n\\otimes\n\\oslash\n\\odot\n\\circ\n\\bullet\n\\asymp\n\\equiv\n\\subseteq\n\\supseteq\n\\leq\n\\geq\n\\preceq\n\\succeq\n\\sim\n\\simeq\n\\approx\n\\subset\n\\supset\n\\ll\n\\gg\n\\prec\n\\succ\n\\infty\n\\in\n\\ni\n\\forall\n\\exists\n\\neq\n\";s:6:\"plugin\";s:13:\"atto_equation\";}',1619623793,'web','65.129.132.97',NULL),(971,'\\core\\event\\config_log_created','core','created','config_log','config_log',1585,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"librarygroup2\";s:8:\"oldvalue\";N;s:5:\"value\";s:155:\"\n\\leftarrow\n\\rightarrow\n\\uparrow\n\\downarrow\n\\leftrightarrow\n\\nearrow\n\\searrow\n\\swarrow\n\\nwarrow\n\\Leftarrow\n\\Rightarrow\n\\Uparrow\n\\Downarrow\n\\Leftrightarrow\n\";s:6:\"plugin\";s:13:\"atto_equation\";}',1619623793,'web','65.129.132.97',NULL),(972,'\\core\\event\\config_log_created','core','created','config_log','config_log',1586,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"librarygroup3\";s:8:\"oldvalue\";N;s:5:\"value\";s:210:\"\n\\alpha\n\\beta\n\\gamma\n\\delta\n\\epsilon\n\\zeta\n\\eta\n\\theta\n\\iota\n\\kappa\n\\lambda\n\\mu\n\\nu\n\\xi\n\\pi\n\\rho\n\\sigma\n\\tau\n\\upsilon\n\\phi\n\\chi\n\\psi\n\\omega\n\\Gamma\n\\Delta\n\\Theta\n\\Lambda\n\\Xi\n\\Pi\n\\Sigma\n\\Upsilon\n\\Phi\n\\Psi\n\\Omega\n\";s:6:\"plugin\";s:13:\"atto_equation\";}',1619623793,'web','65.129.132.97',NULL),(973,'\\core\\event\\config_log_created','core','created','config_log','config_log',1587,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"librarygroup4\";s:8:\"oldvalue\";N;s:5:\"value\";s:239:\"\n\\sum{a,b}\n\\sqrt[a]{b+c}\n\\int_{a}^{b}{c}\n\\iint_{a}^{b}{c}\n\\iiint_{a}^{b}{c}\n\\oint{a}\n(a)\n[a]\n\\lbrace{a}\\rbrace\n\\left| \\begin{matrix} a_1 & a_2 \\ a_3 & a_4 \\end{matrix} \\right|\n\\frac{a}{b+c}\n\\vec{a}\n\\binom {a} {b}\n{a \\brack b}\n{a \\brace b}\n\";s:6:\"plugin\";s:13:\"atto_equation\";}',1619623793,'web','65.129.132.97',NULL),(974,'\\core\\event\\config_log_created','core','created','config_log','config_log',1588,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"allowedtypes\";s:8:\"oldvalue\";N;s:5:\"value\";s:4:\"both\";s:6:\"plugin\";s:14:\"atto_recordrtc\";}',1619623793,'web','65.129.132.97',NULL),(975,'\\core\\event\\config_log_created','core','created','config_log','config_log',1589,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"audiobitrate\";s:8:\"oldvalue\";N;s:5:\"value\";s:6:\"128000\";s:6:\"plugin\";s:14:\"atto_recordrtc\";}',1619623793,'web','65.129.132.97',NULL),(976,'\\core\\event\\config_log_created','core','created','config_log','config_log',1590,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"videobitrate\";s:8:\"oldvalue\";N;s:5:\"value\";s:7:\"2500000\";s:6:\"plugin\";s:14:\"atto_recordrtc\";}',1619623793,'web','65.129.132.97',NULL),(977,'\\core\\event\\config_log_created','core','created','config_log','config_log',1591,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"timelimit\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"120\";s:6:\"plugin\";s:14:\"atto_recordrtc\";}',1619623793,'web','65.129.132.97',NULL),(978,'\\core\\event\\config_log_created','core','created','config_log','config_log',1592,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"allowborders\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"atto_table\";}',1619623793,'web','65.129.132.97',NULL),(979,'\\core\\event\\config_log_created','core','created','config_log','config_log',1593,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"allowbackgroundcolour\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"atto_table\";}',1619623793,'web','65.129.132.97',NULL),(980,'\\core\\event\\config_log_created','core','created','config_log','config_log',1594,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"allowwidth\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"atto_table\";}',1619623793,'web','65.129.132.97',NULL),(981,'\\core\\event\\config_log_created','core','created','config_log','config_log',1595,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"customtoolbar\";s:8:\"oldvalue\";N;s:5:\"value\";s:378:\"wrap,formatselect,wrap,bold,italic,wrap,bullist,numlist,wrap,link,unlink,wrap,image\n\nundo,redo,wrap,underline,strikethrough,sub,sup,wrap,justifyleft,justifycenter,justifyright,wrap,outdent,indent,wrap,forecolor,backcolor,wrap,ltr,rtl\n\nfontselect,fontsizeselect,wrap,code,search,replace,wrap,nonbreaking,charmap,table,wrap,cleanup,removeformat,pastetext,pasteword,wrap,fullscreen\";s:6:\"plugin\";s:14:\"editor_tinymce\";}',1619623793,'web','65.129.132.97',NULL),(982,'\\core\\event\\config_log_created','core','created','config_log','config_log',1596,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"fontselectlist\";s:8:\"oldvalue\";N;s:5:\"value\";s:338:\"Trebuchet=Trebuchet MS,Verdana,Arial,Helvetica,sans-serif;Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;Wingdings=wingdings\";s:6:\"plugin\";s:14:\"editor_tinymce\";}',1619623793,'web','65.129.132.97',NULL),(983,'\\core\\event\\config_log_created','core','created','config_log','config_log',1597,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"customconfig\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"editor_tinymce\";}',1619623793,'web','65.129.132.97',NULL),(984,'\\core\\event\\config_log_created','core','created','config_log','config_log',1598,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"requireemoticon\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:22:\"tinymce_moodleemoticon\";}',1619623793,'web','65.129.132.97',NULL),(985,'\\core\\event\\config_log_created','core','created','config_log','config_log',1599,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"spellengine\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:20:\"tinymce_spellchecker\";}',1619623793,'web','65.129.132.97',NULL),(986,'\\core\\event\\config_log_created','core','created','config_log','config_log',1600,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"spelllanguagelist\";s:8:\"oldvalue\";N;s:5:\"value\";s:118:\"+English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv\";s:6:\"plugin\";s:20:\"tinymce_spellchecker\";}',1619623793,'web','65.129.132.97',NULL),(987,'\\core\\event\\config_log_created','core','created','config_log','config_log',1601,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"profileroles\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"5,4,3\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(988,'\\core\\event\\config_log_created','core','created','config_log','config_log',1602,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"coursecontact\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(989,'\\core\\event\\config_log_created','core','created','config_log','config_log',1603,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"frontpage\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"6\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(990,'\\core\\event\\config_log_created','core','created','config_log','config_log',1604,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"frontpageloggedin\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"6\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(991,'\\core\\event\\config_log_created','core','created','config_log','config_log',1605,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"maxcategorydepth\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"2\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(992,'\\core\\event\\config_log_created','core','created','config_log','config_log',1606,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"frontpagecourselimit\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"200\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(993,'\\core\\event\\config_log_created','core','created','config_log','config_log',1607,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"commentsperpage\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"15\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(994,'\\core\\event\\config_log_created','core','created','config_log','config_log',1608,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"defaultfrontpageroleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"8\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(995,'\\core\\event\\config_log_created','core','created','config_log','config_log',1609,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"messageinbound_enabled\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(996,'\\core\\event\\config_log_created','core','created','config_log','config_log',1610,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"messageinbound_mailbox\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(997,'\\core\\event\\config_log_created','core','created','config_log','config_log',1611,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"messageinbound_domain\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(998,'\\core\\event\\config_log_created','core','created','config_log','config_log',1612,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"messageinbound_host\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(999,'\\core\\event\\config_log_created','core','created','config_log','config_log',1613,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"messageinbound_hostssl\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"ssl\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(1000,'\\core\\event\\config_log_created','core','created','config_log','config_log',1614,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"messageinbound_hostuser\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(1001,'\\core\\event\\config_log_created','core','created','config_log','config_log',1615,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"messageinbound_hostpass\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(1002,'\\core\\event\\config_log_created','core','created','config_log','config_log',1616,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"enablemobilewebservice\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(1003,'\\core\\event\\config_log_created','core','created','config_log','config_log',1617,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"apppolicy\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1004,'\\core\\event\\config_log_created','core','created','config_log','config_log',1618,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"typeoflogin\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1005,'\\core\\event\\config_log_created','core','created','config_log','config_log',1619,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"qrcodetype\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"2\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1006,'\\core\\event\\config_log_created','core','created','config_log','config_log',1620,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"forcedurlscheme\";s:8:\"oldvalue\";N;s:5:\"value\";s:12:\"moodlemobile\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1007,'\\core\\event\\config_log_created','core','created','config_log','config_log',1621,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"minimumversion\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1008,'\\core\\event\\config_log_created','core','created','config_log','config_log',1622,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"mobilecssurl\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(1009,'\\core\\event\\config_log_created','core','created','config_log','config_log',1623,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"enablesmartappbanners\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1010,'\\core\\event\\config_log_created','core','created','config_log','config_log',1624,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"iosappid\";s:8:\"oldvalue\";N;s:5:\"value\";s:9:\"633359593\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1011,'\\core\\event\\config_log_created','core','created','config_log','config_log',1625,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"androidappid\";s:8:\"oldvalue\";N;s:5:\"value\";s:23:\"com.moodle.moodlemobile\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1012,'\\core\\event\\config_log_created','core','created','config_log','config_log',1626,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"setuplink\";s:8:\"oldvalue\";N;s:5:\"value\";s:34:\"https://download.moodle.org/mobile\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1013,'\\core\\event\\config_log_created','core','created','config_log','config_log',1627,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"forcelogout\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1014,'\\core\\event\\config_log_created','core','created','config_log','config_log',1628,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"disabledfeatures\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1015,'\\core\\event\\config_log_created','core','created','config_log','config_log',1629,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"custommenuitems\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1016,'\\core\\event\\config_log_created','core','created','config_log','config_log',1630,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"filetypeexclusionlist\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1017,'\\core\\event\\config_log_created','core','created','config_log','config_log',1631,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"customlangstrings\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1018,'\\core\\event\\config_log_created','core','created','config_log','config_log',1632,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"enablemoodlenet\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:14:\"tool_moodlenet\";}',1619623793,'web','65.129.132.97',NULL),(1019,'\\core\\event\\config_log_created','core','created','config_log','config_log',1633,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"defaultmoodlenetname\";s:8:\"oldvalue\";N;s:5:\"value\";s:17:\"MoodleNet Central\";s:6:\"plugin\";s:14:\"tool_moodlenet\";}',1619623793,'web','65.129.132.97',NULL),(1020,'\\core\\event\\config_log_created','core','created','config_log','config_log',1634,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"defaultmoodlenet\";s:8:\"oldvalue\";N;s:5:\"value\";s:18:\"https://moodle.net\";s:6:\"plugin\";s:14:\"tool_moodlenet\";}',1619623793,'web','65.129.132.97',NULL),(1021,'\\core\\event\\config_log_created','core','created','config_log','config_log',1635,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"timezone\",\"oldvalue\":null,\"value\":\"Europe\\/London\",\"plugin\":null}',1619623812,'web','65.129.132.97',NULL),(1022,'\\core\\event\\config_log_created','core','created','config_log','config_log',1636,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"registerauth\",\"oldvalue\":null,\"value\":\"\",\"plugin\":null}',1619623812,'web','65.129.132.97',NULL),(1023,'\\core\\event\\dashboard_viewed','core','viewed','dashboard',NULL,NULL,'r',0,5,30,2,2,0,2,0,'null',1619623884,'web','65.129.132.97',NULL),(1024,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,0,1,NULL,0,'null',1619623982,'web','67.177.209.214',NULL),(1025,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,0,1,NULL,0,'null',1619624006,'web','67.177.209.214',NULL),(1026,'\\core\\event\\user_created','core','created','user','user',3,'c',0,25,30,3,2,0,3,0,'null',1619624264,'web','65.129.132.97',NULL),(1027,'\\core\\event\\user_created','core','created','user','user',4,'c',0,26,30,4,2,0,4,0,'null',1619624308,'web','65.129.132.97',NULL),(1028,'\\core\\event\\user_created','core','created','user','user',5,'c',0,27,30,5,2,0,5,0,'null',1619624342,'web','65.129.132.97',NULL),(1029,'\\core\\event\\user_created','core','created','user','user',6,'c',0,28,30,6,2,0,6,0,'null',1619624369,'web','65.129.132.97',NULL),(1030,'\\core\\event\\user_profile_viewed','core','viewed','user_profile','user',6,'r',0,28,30,6,2,0,6,0,'null',1619624392,'web','65.129.132.97',NULL),(1031,'\\core\\event\\user_list_viewed','core','viewed','user_list','course',1,'r',0,2,50,1,2,1,NULL,0,'{\"courseshortname\":\"short site name\",\"coursefullname\":\"full site name\"}',1619624400,'web','65.129.132.97',NULL),(1032,'\\core\\event\\user_profile_viewed','core','viewed','user_profile','user',6,'r',0,28,30,6,2,0,6,0,'null',1619624406,'web','65.129.132.97',NULL),(1033,'\\core\\event\\user_list_viewed','core','viewed','user_list','course',1,'r',0,2,50,1,2,1,NULL,0,'{\"courseshortname\":\"short site name\",\"coursefullname\":\"full site name\"}',1619624409,'web','65.129.132.97',NULL),(1034,'\\core\\event\\role_assigned','core','assigned','role','role',1,'c',0,2,50,1,2,1,6,0,'{\"id\":1,\"component\":\"\",\"itemid\":0}',1619624454,'web','65.129.132.97',NULL),(1035,'\\core\\event\\user_profile_viewed','core','viewed','user_profile','user',6,'r',0,28,30,6,2,0,6,0,'null',1619624516,'web','65.129.132.97',NULL),(1036,'\\core\\event\\user_list_viewed','core','viewed','user_list','course',1,'r',0,2,50,1,2,1,NULL,0,'{\"courseshortname\":\"short site name\",\"coursefullname\":\"full site name\"}',1619624522,'web','65.129.132.97',NULL),(1037,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,0,1,NULL,0,'null',1619624539,'web','34.229.19.21',NULL),(1038,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,0,1,NULL,0,'null',1619624539,'web','34.229.19.21',NULL),(1039,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,0,1,NULL,0,'null',1619624542,'web','54.89.250.183',NULL),(1040,'\\core\\event\\user_profile_viewed','core','viewed','user_profile','user',6,'r',0,28,30,6,2,0,6,0,'null',1619624552,'web','65.129.132.97',NULL),(1041,'\\core\\event\\user_profile_viewed','core','viewed','user_profile','user',6,'r',0,28,30,6,2,0,6,0,'null',1619624564,'web','65.129.132.97',NULL),(1042,'\\core\\event\\user_profile_viewed','core','viewed','user_profile','user',6,'r',0,28,30,6,2,0,6,0,'null',1619624567,'web','65.129.132.97',NULL),(1043,'\\core\\event\\user_profile_viewed','core','viewed','user_profile','user',6,'r',0,28,30,6,2,0,6,0,'null',1619624568,'web','65.129.132.97',NULL),(1044,'\\core\\event\\user_list_viewed','core','viewed','user_list','course',1,'r',0,2,50,1,2,1,NULL,0,'{\"courseshortname\":\"short site name\",\"coursefullname\":\"full site name\"}',1619624571,'web','65.129.132.97',NULL),(1045,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,0,1,NULL,0,'null',1619624619,'web','3.88.16.136',NULL),(1046,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619624641,'web','65.129.132.97',NULL),(1047,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619624645,'web','65.129.132.97',NULL),(1048,'\\core\\event\\course_section_created','core','created','course_section','course_sections',1,'c',1,2,50,1,2,1,NULL,0,'{\"sectionnum\":1}',1619624645,'web','65.129.132.97',NULL),(1049,'\\core\\event\\course_section_updated','core','updated','course_section','course_sections',1,'u',1,2,50,1,2,1,NULL,0,'{\"sectionnum\":\"1\"}',1619624713,'web','65.129.132.97',NULL),(1050,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619624713,'web','65.129.132.97',NULL),(1051,'\\core\\event\\course_section_updated','core','updated','course_section','course_sections',1,'u',1,2,50,1,2,1,NULL,0,'{\"sectionnum\":\"1\"}',1619624739,'web','65.129.132.97',NULL),(1052,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619624739,'web','65.129.132.97',NULL),(1053,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619624751,'web','65.129.132.97',NULL),(1054,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619624758,'web','65.129.132.97',NULL),(1055,'\\core\\event\\config_log_created','core','created','config_log','config_log',1637,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"logo\",\"oldvalue\":\"\",\"value\":\"\\/Droplet Text - Teal - Transparent.png\",\"plugin\":\"core_admin\"}',1619624888,'web','65.129.132.97',NULL),(1056,'\\core\\event\\config_log_created','core','created','config_log','config_log',1638,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"logocompact\",\"oldvalue\":\"\",\"value\":\"\\/Droplet - Teal - Transparent.png\",\"plugin\":\"core_admin\"}',1619624888,'web','65.129.132.97',NULL),(1057,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619624953,'web','65.129.132.97',NULL),(1058,'\\core\\event\\dashboard_viewed','core','viewed','dashboard',NULL,NULL,'r',0,5,30,2,2,0,2,0,'null',1619624960,'web','65.129.132.97',NULL),(1059,'\\core\\event\\dashboards_reset','core','reset','dashboards',NULL,NULL,'u',0,1,10,0,2,0,NULL,0,'{\"private\":1,\"pagetype\":\"my-index\"}',1619625189,'web','65.129.132.97',NULL),(1060,'\\core\\event\\config_log_created','core','created','config_log','config_log',1639,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"customusermenuitems\",\"oldvalue\":\"grades,grades|\\/grade\\/report\\/mygrades.php|t\\/grades\\nmessages,message|\\/message\\/index.php|t\\/message\\npreferences,moodle|\\/user\\/preferences.php|t\\/preferences\",\"value\":\"grades,grades|\\/grade\\/report\\/mygrades.php|t\\/grades\\r\\nmessages,message|\\/message\\/index.php|t\\/message\\r\\npreferences,moodle|\\/user\\/preferences.php|t\\/preferences\",\"plugin\":null}',1619625300,'web','65.129.132.97',NULL),(1061,'\\core\\event\\config_log_created','core','created','config_log','config_log',1640,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"brandcolor\",\"oldvalue\":\"\",\"value\":\"#A4175B\",\"plugin\":\"theme_boost\"}',1619625300,'web','65.129.132.97',NULL),(1062,'\\core\\event\\config_log_created','core','created','config_log','config_log',1641,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"status\",\"oldvalue\":\"1\",\"value\":\"0\",\"plugin\":\"enrol_self\"}',1619625519,'web','65.129.132.97',NULL),(1063,'\\core\\event\\config_log_created','core','created','config_log','config_log',1642,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"newenrols\",\"oldvalue\":\"1\",\"value\":\"0\",\"plugin\":\"enrol_self\"}',1619625519,'web','65.129.132.97',NULL),(1064,'\\core\\event\\config_log_created','core','created','config_log','config_log',1643,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"status\",\"oldvalue\":\"0\",\"value\":\"1\",\"plugin\":\"enrol_self\"}',1619625569,'web','65.129.132.97',NULL),(1065,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',3,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:addinstance\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1066,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:addinstance\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1067,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',5,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:view\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1068,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',4,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:view\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1069,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',3,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:view\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1070,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:view\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1071,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',4,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manage\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1072,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',3,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manage\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1073,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manage\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1074,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',5,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:receiveissue\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1075,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',4,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:viewreport\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1076,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',3,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:viewreport\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1077,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:viewreport\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1078,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:viewallcertificates\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1079,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',4,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:verifycertificate\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1080,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',3,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:verifycertificate\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1081,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:verifycertificate\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1082,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:verifyallcertificates\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1083,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',3,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manageemailstudents\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1084,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manageemailstudents\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1085,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',3,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manageemailteachers\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1086,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manageemailteachers\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1087,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',3,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manageemailothers\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1088,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manageemailothers\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1089,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',3,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manageverifyany\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1090,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manageverifyany\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1091,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',3,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:managerequiredtime\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1092,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:managerequiredtime\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1093,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',3,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manageprotection\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1094,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manageprotection\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1095,'\\core\\event\\config_log_created','core','created','config_log','config_log',1644,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"verifycertificate\",\"oldvalue\":null,\"value\":\"\",\"plugin\":\"customcert\"}',1619625665,'web','65.129.132.97',NULL),(1096,'\\core\\event\\config_log_created','core','created','config_log','config_log',1645,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"managetemplates\",\"oldvalue\":null,\"value\":\"\",\"plugin\":\"customcert\"}',1619625665,'web','65.129.132.97',NULL),(1097,'\\core\\event\\config_log_created','core','created','config_log','config_log',1646,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"uploadimage\",\"oldvalue\":null,\"value\":\"\",\"plugin\":\"customcert\"}',1619625665,'web','65.129.132.97',NULL),(1098,'\\core\\event\\email_failed','core','failed','email',NULL,NULL,'c',0,1,10,0,2,0,2,0,'{\"subject\":\"Moodle updates are available (http:\\/\\/learn.dev-defaults.derekmaxson.com)\",\"message\":\"Update notifications\\n\\nThere is a newer Moodle version available!\\nMoodle 3.10.3+ (Build: 20210427) Version 2020110903.07 (Stable version)\\n\\nSee http:\\/\\/learn.dev-defaults.derekmaxson.com\\/admin\\/index.php for more\\ndetails\\n\\nIt is strongly recommended that you update your site to the latest version\\nto obtain all recent security and bug fixes.\\n\\nYour Moodle site http:\\/\\/learn.dev-defaults.derekmaxson.com is configured to\\nautomatically check for available updates. You are receiving this message\\nas the administrator of the site. You can disable automatic checks for\\navailable updates in Site administration \\/ Server \\/ Update notifications or\\ncustomise the delivery of this message via your preferences page.\",\"errorinfo\":\"Could not instantiate mail function.\"}',1619625666,'cli',NULL,NULL),(1099,'\\core\\event\\notification_sent','core','sent','notification','notifications',1,'c',0,1,10,0,2,0,2,0,'{\"courseid\":\"1\"}',1619625666,'cli',NULL,NULL),(1100,'\\core\\event\\config_log_created','core','created','config_log','config_log',1647,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"verifyallcertificates\",\"oldvalue\":null,\"value\":\"0\",\"plugin\":\"customcert\"}',1619625678,'web','65.129.132.97',NULL),(1101,'\\core\\event\\config_log_created','core','created','config_log','config_log',1648,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"showposxy\",\"oldvalue\":null,\"value\":\"0\",\"plugin\":\"customcert\"}',1619625678,'web','65.129.132.97',NULL),(1102,'\\core\\event\\config_log_created','core','created','config_log','config_log',1649,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"emailstudents\",\"oldvalue\":null,\"value\":\"0\",\"plugin\":\"customcert\"}',1619625678,'web','65.129.132.97',NULL),(1103,'\\core\\event\\config_log_created','core','created','config_log','config_log',1650,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"emailteachers\",\"oldvalue\":null,\"value\":\"0\",\"plugin\":\"customcert\"}',1619625678,'web','65.129.132.97',NULL),(1104,'\\core\\event\\config_log_created','core','created','config_log','config_log',1651,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"emailothers\",\"oldvalue\":null,\"value\":\"\",\"plugin\":\"customcert\"}',1619625678,'web','65.129.132.97',NULL),(1105,'\\core\\event\\config_log_created','core','created','config_log','config_log',1652,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"verifyany\",\"oldvalue\":null,\"value\":\"0\",\"plugin\":\"customcert\"}',1619625678,'web','65.129.132.97',NULL),(1106,'\\core\\event\\config_log_created','core','created','config_log','config_log',1653,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"requiredtime\",\"oldvalue\":null,\"value\":\"0\",\"plugin\":\"customcert\"}',1619625678,'web','65.129.132.97',NULL),(1107,'\\core\\event\\config_log_created','core','created','config_log','config_log',1654,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"protection_print\",\"oldvalue\":null,\"value\":\"0\",\"plugin\":\"customcert\"}',1619625678,'web','65.129.132.97',NULL),(1108,'\\core\\event\\config_log_created','core','created','config_log','config_log',1655,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"protection_modify\",\"oldvalue\":null,\"value\":\"0\",\"plugin\":\"customcert\"}',1619625678,'web','65.129.132.97',NULL),(1109,'\\core\\event\\config_log_created','core','created','config_log','config_log',1656,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"protection_copy\",\"oldvalue\":null,\"value\":\"0\",\"plugin\":\"customcert\"}',1619625678,'web','65.129.132.97',NULL),(1110,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',7,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"webservice\\/rest:use\",\"oldpermission\":0,\"permission\":1}',1619625777,'web','65.129.132.97',NULL),(1111,'\\core\\event\\config_log_created','core','created','config_log','config_log',1657,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"enablemobilewebservice\",\"oldvalue\":\"0\",\"value\":\"1\",\"plugin\":null}',1619625777,'web','65.129.132.97',NULL),(1112,'\\core\\event\\config_log_created','core','created','config_log','config_log',1658,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"apppolicy\",\"oldvalue\":\"\",\"value\":\"https:\\/\\/www.relaytrust.org\\/thewell\\/privacypolicy.html\",\"plugin\":\"tool_mobile\"}',1619626061,'web','65.129.132.97',NULL),(1113,'\\core\\event\\config_log_created','core','created','config_log','config_log',1659,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"forcedurlscheme\",\"oldvalue\":\"moodlemobile\",\"value\":\"org.relaytrust.thewell\",\"plugin\":\"tool_mobile\"}',1619626061,'web','65.129.132.97',NULL),(1114,'\\core\\event\\config_log_created','core','created','config_log','config_log',1660,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"enablesmartappbanners\",\"oldvalue\":\"0\",\"value\":\"1\",\"plugin\":\"tool_mobile\"}',1619626061,'web','65.129.132.97',NULL),(1115,'\\core\\event\\config_log_created','core','created','config_log','config_log',1661,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"iosappid\",\"oldvalue\":\"633359593\",\"value\":\"\",\"plugin\":\"tool_mobile\"}',1619626061,'web','65.129.132.97',NULL),(1116,'\\core\\event\\config_log_created','core','created','config_log','config_log',1662,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"androidappid\",\"oldvalue\":\"com.moodle.moodlemobile\",\"value\":\"org.relaytrust.thewell\",\"plugin\":\"tool_mobile\"}',1619626061,'web','65.129.132.97',NULL),(1117,'\\core\\event\\config_log_created','core','created','config_log','config_log',1663,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"setuplink\",\"oldvalue\":\"https:\\/\\/download.moodle.org\\/mobile\",\"value\":\"https:\\/\\/www.relaytrust.org\\/thewell\\/thewellapp.html\",\"plugin\":\"tool_mobile\"}',1619626061,'web','65.129.132.97',NULL),(1118,'\\core\\event\\config_log_created','core','created','config_log','config_log',1664,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"disabledfeatures\",\"oldvalue\":\"\",\"value\":\"$mmLoginEmailSignup,NoDelegate_ForgottenPassword,$mmSideMenuDelegate_mmaFrontpage,$mmSideMenuDelegate_mmaCalendar,$mmSideMenuDelegate_mmaNotifications,$mmSideMenuDelegate_mmaGrades,$mmSideMenuDelegate_mmaCompetency,CoreMainMenuDelegate_AddonBlog,CoreMainMenuDelegate_CoreTag,$mmSideMenuDelegate_website,$mmSideMenuDelegate_help,CoreCourseOptionsDelegate_AddonBlog,CoreUserDelegate_AddonBlog:blogs,$mmUserDelegate_mmaMessages:blockContact\",\"plugin\":\"tool_mobile\"}',1619626061,'web','65.129.132.97',NULL),(1119,'\\core\\event\\config_log_created','core','created','config_log','config_log',1665,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"custommenuitems\",\"oldvalue\":\"\",\"value\":\"Get Resources from The Well|http:\\/\\/thewell|browser\\r\\nHelp|internal link in Well Device|embedded\\r\\nAbout The Well|internal link in Well Device|embedded\",\"plugin\":\"tool_mobile\"}',1619626271,'web','65.129.132.97',NULL),(1120,'\\core\\event\\dashboard_viewed','core','viewed','dashboard',NULL,NULL,'r',0,5,30,2,2,0,2,0,'null',1619626357,'web','65.129.132.97',NULL),(1121,'\\core\\event\\config_log_created','core','created','config_log','config_log',1666,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"downloadcontentsitedefault\",\"oldvalue\":\"0\",\"value\":\"1\",\"plugin\":\"moodlecourse\"}',1619626699,'web','65.129.132.97',NULL),(1122,'\\core\\event\\config_log_created','core','created','config_log','config_log',1667,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"courseduration\",\"oldvalue\":\"31536000\",\"value\":\"15552000\",\"plugin\":\"moodlecourse\"}',1619626699,'web','65.129.132.97',NULL),(1123,'\\core\\event\\config_log_created','core','created','config_log','config_log',1668,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"downloadcoursecontentallowed\",\"oldvalue\":\"0\",\"value\":\"1\",\"plugin\":null}',1619626786,'web','65.129.132.97',NULL),(1124,'\\core\\event\\config_log_created','core','created','config_log','config_log',1669,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"maxsizeperdownloadcoursefile\",\"oldvalue\":\"52428800\",\"value\":\"536870912\",\"plugin\":null}',1619626786,'web','65.129.132.97',NULL),(1125,'\\core\\event\\user_login_failed','core','failed','user_login',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"username\":\"admin\",\"reason\":3}',1619626834,'web','65.129.132.97',NULL),(1126,'\\core\\event\\user_login_failed','core','failed','user_login',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"username\":\"admin\",\"reason\":3}',1619626846,'web','65.129.132.97',NULL),(1127,'\\core\\event\\user_login_failed','core','failed','user_login',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"username\":\"admin\",\"reason\":3}',1619626854,'web','65.129.132.97',NULL),(1128,'\\core\\event\\user_profile_viewed','core','viewed','user_profile','user',2,'r',0,5,30,2,2,0,2,0,'null',1619626871,'web','65.129.132.97',NULL),(1129,'\\core\\event\\user_updated','core','updated','user','user',2,'u',0,5,30,2,2,0,2,0,'null',1619626917,'web','65.129.132.97',NULL),(1130,'\\core\\event\\user_profile_viewed','core','viewed','user_profile','user',2,'r',0,5,30,2,2,0,2,0,'null',1619626917,'web','65.129.132.97',NULL),(1131,'\\core\\event\\user_login_failed','core','failed','user_login',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"username\":\"admin\",\"reason\":3}',1619626928,'web','65.129.132.97',NULL),(1132,'\\core\\event\\user_login_failed','core','failed','user_login',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"username\":\"admin\",\"reason\":3}',1619626934,'web','65.129.132.97',NULL),(1133,'\\core\\event\\user_login_failed','core','failed','user_login',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"username\":\"admin\",\"reason\":3}',1619626942,'web','65.129.132.97',NULL),(1134,'\\core\\event\\dashboard_viewed','core','viewed','dashboard',NULL,NULL,'r',0,5,30,2,2,0,2,0,'null',1619626973,'web','65.129.132.97',NULL),(1135,'\\core\\event\\user_loggedout','core','loggedout','user','user',2,'r',0,1,10,0,2,0,NULL,0,'{\"sessionid\":\"j47vb36c46i4t072g05h7c0tci\"}',1619626977,'web','65.129.132.97',NULL),(1136,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,0,1,NULL,0,'null',1619626977,'web','65.129.132.97',NULL),(1137,'\\core\\event\\user_loggedin','core','loggedin','user','user',2,'r',0,1,10,0,2,0,NULL,0,'{\"username\":\"admin\"}',1619626991,'web','65.129.132.97',NULL),(1138,'\\core\\event\\dashboard_viewed','core','viewed','dashboard',NULL,NULL,'r',0,5,30,2,2,0,2,0,'null',1619626992,'web','65.129.132.97',NULL),(1139,'\\core\\event\\webservice_token_created','core','created','webservice_token','external_tokens',1,'c',0,1,10,0,2,0,2,0,'{\"auto\":true}',1619627006,'web','65.129.132.97',NULL),(1140,'\\core\\event\\webservice_token_sent','core','sent','webservice_token','external_tokens',1,'r',0,1,10,0,2,0,NULL,0,'null',1619627006,'web','65.129.132.97',NULL),(1141,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_webservice_get_site_info\"}',1619627006,'ws','65.129.132.97',NULL),(1142,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"tool_mobile_get_config\"}',1619627011,'ws','65.129.132.97',NULL),(1143,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"tool_mobile_call_external_functions\"}',1619627011,'ws','65.129.132.97',NULL),(1144,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_user_add_user_device\"}',1619627012,'ws','65.129.132.97',NULL),(1145,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"message_airnotifier_get_user_devices\"}',1619627012,'ws','65.129.132.97',NULL),(1146,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"tool_mobile_call_external_functions\"}',1619627012,'ws','65.129.132.97',NULL),(1147,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619627012,'ws','65.129.132.97',NULL),(1148,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"tool_mobile_call_external_functions\"}',1619627012,'ws','65.129.132.97',NULL),(1149,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_enrol_get_users_courses\"}',1619627014,'ws','65.129.132.97',NULL),(1150,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"tool_mobile_call_external_functions\"}',1619627015,'ws','65.129.132.97',NULL),(1151,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"tool_mobile_call_external_functions\"}',1619627050,'ws','65.129.132.97',NULL),(1152,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_block_get_dashboard_blocks\"}',1619627122,'ws','65.129.132.97',NULL),(1153,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_enrol_get_users_courses\"}',1619627123,'ws','65.129.132.97',NULL),(1154,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_calendar_get_action_events_by_timesort\"}',1619627123,'ws','65.129.132.97',NULL),(1155,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_course_view_course\"}',1619627135,'ws','65.129.132.97',NULL),(1156,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619627135,'ws','65.129.132.97',NULL),(1157,'\\core\\event\\config_log_created','core','created','config_log','config_log',1670,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"custommenuitems\",\"oldvalue\":\"Get Resources from The Well|http:\\/\\/thewell|browser\\r\\nHelp|internal link in Well Device|embedded\\r\\nAbout The Well|internal link in Well Device|embedded\",\"value\":\"Get Resources from The Well|http:\\/\\/thewell|browser\\r\\nAbout The Well|internal link in Well Device|embedded\",\"plugin\":\"tool_mobile\"}',1619627174,'web','65.129.132.97',NULL),(1158,'\\core\\event\\config_log_created','core','created','config_log','config_log',1671,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"custommenuitems\",\"oldvalue\":\"Get Resources from The Well|http:\\/\\/thewell|browser\\r\\nAbout The Well|internal link in Well Device|embedded\",\"value\":\"Get Resources from The Well|http:\\/\\/thewell|browser\\r\\nHelp|internal link in Well|embedded\\r\\nAbout The Well|internal link in Well Device|embedded\",\"plugin\":\"tool_mobile\"}',1619627241,'web','65.129.132.97',NULL),(1159,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_webservice_get_site_info\"}',1619627269,'ws','65.129.132.97',NULL),(1160,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"tool_mobile_call_external_functions\"}',1619627270,'ws','65.129.132.97',NULL),(1161,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_course_view_course\"}',1619627271,'ws','65.129.132.97',NULL),(1162,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619627271,'ws','65.129.132.97',NULL),(1163,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"tool_mobile_call_external_functions\"}',1619627271,'ws','65.129.132.97',NULL),(1164,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_course_view_course\"}',1619627571,'ws','65.129.132.97',NULL),(1165,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619627571,'ws','65.129.132.97',NULL),(1166,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,0,1,NULL,0,'null',1619628106,'web','67.177.209.214',NULL),(1167,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"tool_mobile_call_external_functions\"}',1619628192,'ws','65.129.132.97',NULL),(1168,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_course_view_course\"}',1619628618,'ws','65.129.132.97',NULL),(1169,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619628618,'ws','65.129.132.97',NULL),(1170,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"tool_mobile_call_external_functions\"}',1619628764,'ws','65.129.132.97',NULL),(1171,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_course_view_course\"}',1619628920,'ws','65.129.132.97',NULL),(1172,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619628920,'ws','65.129.132.97',NULL),(1173,'\\core\\event\\dashboard_viewed','core','viewed','dashboard',NULL,NULL,'r',0,5,30,2,2,0,2,0,'null',1619629897,'web','65.129.132.97',NULL),(1174,'\\core\\event\\dashboard_viewed','core','viewed','dashboard',NULL,NULL,'r',0,5,30,2,2,0,2,0,'null',1619629910,'web','65.129.132.97',NULL); +/*!40000 ALTER TABLE `mdl_logstore_standard_log` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_lti` +-- + +DROP TABLE IF EXISTS `mdl_lti`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_lti` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `introformat` smallint(4) DEFAULT 0, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `typeid` bigint(10) DEFAULT NULL, + `toolurl` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `securetoolurl` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `instructorchoicesendname` tinyint(1) DEFAULT NULL, + `instructorchoicesendemailaddr` tinyint(1) DEFAULT NULL, + `instructorchoiceallowroster` tinyint(1) DEFAULT NULL, + `instructorchoiceallowsetting` tinyint(1) DEFAULT NULL, + `instructorcustomparameters` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `instructorchoiceacceptgrades` tinyint(1) DEFAULT NULL, + `grade` bigint(10) NOT NULL DEFAULT 100, + `launchcontainer` tinyint(2) NOT NULL DEFAULT 1, + `resourcekey` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `password` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `debuglaunch` tinyint(1) NOT NULL DEFAULT 0, + `showtitlelaunch` tinyint(1) NOT NULL DEFAULT 0, + `showdescriptionlaunch` tinyint(1) NOT NULL DEFAULT 0, + `servicesalt` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `icon` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `secureicon` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_lti_cou_ix` (`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table contains Basic LTI activities instances'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_lti` +-- + +LOCK TABLES `mdl_lti` WRITE; +/*!40000 ALTER TABLE `mdl_lti` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_lti` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_lti_access_tokens` +-- + +DROP TABLE IF EXISTS `mdl_lti_access_tokens`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_lti_access_tokens` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `typeid` bigint(10) NOT NULL, + `scope` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `token` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `validuntil` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `lastaccess` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_ltiaccetoke_tok_uix` (`token`), + KEY `mdl_ltiaccetoke_typ_ix` (`typeid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Security tokens for accessing of LTI services'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_lti_access_tokens` +-- + +LOCK TABLES `mdl_lti_access_tokens` WRITE; +/*!40000 ALTER TABLE `mdl_lti_access_tokens` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_lti_access_tokens` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_lti_submission` +-- + +DROP TABLE IF EXISTS `mdl_lti_submission`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_lti_submission` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `ltiid` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `datesubmitted` bigint(10) NOT NULL, + `dateupdated` bigint(10) NOT NULL, + `gradepercent` decimal(10,5) NOT NULL, + `originalgrade` decimal(10,5) NOT NULL, + `launchid` bigint(10) NOT NULL, + `state` tinyint(2) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_ltisubm_lti_ix` (`ltiid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Keeps track of individual submissions for LTI activities.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_lti_submission` +-- + +LOCK TABLES `mdl_lti_submission` WRITE; +/*!40000 ALTER TABLE `mdl_lti_submission` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_lti_submission` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_lti_tool_proxies` +-- + +DROP TABLE IF EXISTS `mdl_lti_tool_proxies`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_lti_tool_proxies` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Tool Provider', + `regurl` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `state` tinyint(2) NOT NULL DEFAULT 1, + `guid` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `secret` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `vendorcode` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `capabilityoffered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `serviceoffered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `toolproxy` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `createdby` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_ltitoolprox_gui_uix` (`guid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='LTI tool proxy registrations'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_lti_tool_proxies` +-- + +LOCK TABLES `mdl_lti_tool_proxies` WRITE; +/*!40000 ALTER TABLE `mdl_lti_tool_proxies` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_lti_tool_proxies` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_lti_tool_settings` +-- + +DROP TABLE IF EXISTS `mdl_lti_tool_settings`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_lti_tool_settings` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `toolproxyid` bigint(10) NOT NULL, + `typeid` bigint(10) DEFAULT NULL, + `course` bigint(10) DEFAULT NULL, + `coursemoduleid` bigint(10) DEFAULT NULL, + `settings` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_ltitoolsett_too_ix` (`toolproxyid`), + KEY `mdl_ltitoolsett_typ_ix` (`typeid`), + KEY `mdl_ltitoolsett_cou_ix` (`course`), + KEY `mdl_ltitoolsett_cou2_ix` (`coursemoduleid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='LTI tool setting values'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_lti_tool_settings` +-- + +LOCK TABLES `mdl_lti_tool_settings` WRITE; +/*!40000 ALTER TABLE `mdl_lti_tool_settings` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_lti_tool_settings` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_lti_types` +-- + +DROP TABLE IF EXISTS `mdl_lti_types`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_lti_types` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'basiclti Activity', + `baseurl` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `tooldomain` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `state` tinyint(2) NOT NULL DEFAULT 2, + `course` bigint(10) NOT NULL, + `coursevisible` tinyint(1) NOT NULL DEFAULT 0, + `ltiversion` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `clientid` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `toolproxyid` bigint(10) DEFAULT NULL, + `enabledcapability` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `parameter` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `icon` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `secureicon` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `createdby` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_ltitype_cli_uix` (`clientid`), + KEY `mdl_ltitype_cou_ix` (`course`), + KEY `mdl_ltitype_too_ix` (`tooldomain`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Basic LTI pre-configured activities'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_lti_types` +-- + +LOCK TABLES `mdl_lti_types` WRITE; +/*!40000 ALTER TABLE `mdl_lti_types` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_lti_types` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_lti_types_config` +-- + +DROP TABLE IF EXISTS `mdl_lti_types_config`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_lti_types_config` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `typeid` bigint(10) NOT NULL, + `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_ltitypeconf_typ_ix` (`typeid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Basic LTI types configuration'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_lti_types_config` +-- + +LOCK TABLES `mdl_lti_types_config` WRITE; +/*!40000 ALTER TABLE `mdl_lti_types_config` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_lti_types_config` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_ltiservice_gradebookservices` +-- + +DROP TABLE IF EXISTS `mdl_ltiservice_gradebookservices`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_ltiservice_gradebookservices` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `gradeitemid` bigint(10) NOT NULL, + `courseid` bigint(10) NOT NULL, + `toolproxyid` bigint(10) DEFAULT NULL, + `typeid` bigint(10) DEFAULT NULL, + `baseurl` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `ltilinkid` bigint(10) DEFAULT NULL, + `resourceid` varchar(512) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `tag` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_ltisgrad_lti_ix` (`ltilinkid`), + KEY `mdl_ltisgrad_gracou_ix` (`gradeitemid`,`courseid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This file records the grade items created by the LTI Gradebo'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_ltiservice_gradebookservices` +-- + +LOCK TABLES `mdl_ltiservice_gradebookservices` WRITE; +/*!40000 ALTER TABLE `mdl_ltiservice_gradebookservices` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_ltiservice_gradebookservices` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_message` +-- + +DROP TABLE IF EXISTS `mdl_message`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_message` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `useridfrom` bigint(10) NOT NULL DEFAULT 0, + `useridto` bigint(10) NOT NULL DEFAULT 0, + `subject` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `fullmessage` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `fullmessageformat` smallint(4) DEFAULT 0, + `fullmessagehtml` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `smallmessage` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `notification` tinyint(1) DEFAULT 0, + `contexturl` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `contexturlname` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timeuserfromdeleted` bigint(10) NOT NULL DEFAULT 0, + `timeusertodeleted` bigint(10) NOT NULL DEFAULT 0, + `component` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `eventtype` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `customdata` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_mess_useusetimtim_ix` (`useridfrom`,`useridto`,`timeuserfromdeleted`,`timeusertodeleted`), + KEY `mdl_mess_usetimnot_ix` (`useridfrom`,`timeuserfromdeleted`,`notification`), + KEY `mdl_mess_usetimnot2_ix` (`useridto`,`timeusertodeleted`,`notification`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores all unread messages'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_message` +-- + +LOCK TABLES `mdl_message` WRITE; +/*!40000 ALTER TABLE `mdl_message` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_message` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_message_airnotifier_devices` +-- + +DROP TABLE IF EXISTS `mdl_message_airnotifier_devices`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_message_airnotifier_devices` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userdeviceid` bigint(10) NOT NULL, + `enable` tinyint(1) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_messairndevi_use_uix` (`userdeviceid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Store information about the devices registered in Airnotifie'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_message_airnotifier_devices` +-- + +LOCK TABLES `mdl_message_airnotifier_devices` WRITE; +/*!40000 ALTER TABLE `mdl_message_airnotifier_devices` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_message_airnotifier_devices` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_message_contact_requests` +-- + +DROP TABLE IF EXISTS `mdl_message_contact_requests`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_message_contact_requests` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL, + `requesteduserid` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_messcontrequ_usereq_uix` (`userid`,`requesteduserid`), + KEY `mdl_messcontrequ_use_ix` (`userid`), + KEY `mdl_messcontrequ_req_ix` (`requesteduserid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Maintains list of contact requests between users'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_message_contact_requests` +-- + +LOCK TABLES `mdl_message_contact_requests` WRITE; +/*!40000 ALTER TABLE `mdl_message_contact_requests` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_message_contact_requests` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_message_contacts` +-- + +DROP TABLE IF EXISTS `mdl_message_contacts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_message_contacts` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL, + `contactid` bigint(10) NOT NULL, + `timecreated` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_messcont_usecon_uix` (`userid`,`contactid`), + KEY `mdl_messcont_use_ix` (`userid`), + KEY `mdl_messcont_con_ix` (`contactid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Maintains lists of contacts between users'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_message_contacts` +-- + +LOCK TABLES `mdl_message_contacts` WRITE; +/*!40000 ALTER TABLE `mdl_message_contacts` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_message_contacts` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_message_conversation_actions` +-- + +DROP TABLE IF EXISTS `mdl_message_conversation_actions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_message_conversation_actions` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL, + `conversationid` bigint(10) NOT NULL, + `action` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_messconvacti_use_ix` (`userid`), + KEY `mdl_messconvacti_con_ix` (`conversationid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores all per-user actions on individual conversations'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_message_conversation_actions` +-- + +LOCK TABLES `mdl_message_conversation_actions` WRITE; +/*!40000 ALTER TABLE `mdl_message_conversation_actions` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_message_conversation_actions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_message_conversation_members` +-- + +DROP TABLE IF EXISTS `mdl_message_conversation_members`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_message_conversation_members` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `conversationid` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_messconvmemb_con_ix` (`conversationid`), + KEY `mdl_messconvmemb_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores all members in a conversations'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_message_conversation_members` +-- + +LOCK TABLES `mdl_message_conversation_members` WRITE; +/*!40000 ALTER TABLE `mdl_message_conversation_members` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_message_conversation_members` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_message_conversations` +-- + +DROP TABLE IF EXISTS `mdl_message_conversations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_message_conversations` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `type` bigint(10) NOT NULL DEFAULT 1, + `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `convhash` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `component` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `itemtype` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `itemid` bigint(10) DEFAULT NULL, + `contextid` bigint(10) DEFAULT NULL, + `enabled` tinyint(1) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_messconv_typ_ix` (`type`), + KEY `mdl_messconv_con_ix` (`convhash`), + KEY `mdl_messconv_comiteitecon_ix` (`component`,`itemtype`,`itemid`,`contextid`), + KEY `mdl_messconv_con2_ix` (`contextid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores all message conversations'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_message_conversations` +-- + +LOCK TABLES `mdl_message_conversations` WRITE; +/*!40000 ALTER TABLE `mdl_message_conversations` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_message_conversations` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_message_email_messages` +-- + +DROP TABLE IF EXISTS `mdl_message_email_messages`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_message_email_messages` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `useridto` bigint(10) NOT NULL, + `conversationid` bigint(10) NOT NULL, + `messageid` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_messemaimess_use_ix` (`useridto`), + KEY `mdl_messemaimess_con_ix` (`conversationid`), + KEY `mdl_messemaimess_mes_ix` (`messageid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Keeps track of what emails to send in an email digest'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_message_email_messages` +-- + +LOCK TABLES `mdl_message_email_messages` WRITE; +/*!40000 ALTER TABLE `mdl_message_email_messages` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_message_email_messages` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_message_popup` +-- + +DROP TABLE IF EXISTS `mdl_message_popup`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_message_popup` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `messageid` bigint(10) NOT NULL, + `isread` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_messpopu_mesisr_uix` (`messageid`,`isread`), + KEY `mdl_messpopu_isr_ix` (`isread`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Keep state of notifications for the popup message processor'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_message_popup` +-- + +LOCK TABLES `mdl_message_popup` WRITE; +/*!40000 ALTER TABLE `mdl_message_popup` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_message_popup` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_message_popup_notifications` +-- + +DROP TABLE IF EXISTS `mdl_message_popup_notifications`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_message_popup_notifications` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `notificationid` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_messpopunoti_not_ix` (`notificationid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='List of notifications to display in the message output popup'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_message_popup_notifications` +-- + +LOCK TABLES `mdl_message_popup_notifications` WRITE; +/*!40000 ALTER TABLE `mdl_message_popup_notifications` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_message_popup_notifications` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_message_processors` +-- + +DROP TABLE IF EXISTS `mdl_message_processors`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_message_processors` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(166) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `enabled` tinyint(1) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='List of message output plugins'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_message_processors` +-- + +LOCK TABLES `mdl_message_processors` WRITE; +/*!40000 ALTER TABLE `mdl_message_processors` DISABLE KEYS */; +INSERT INTO `mdl_message_processors` VALUES (1,'airnotifier',1),(2,'email',1),(3,'jabber',1),(4,'popup',1); +/*!40000 ALTER TABLE `mdl_message_processors` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_message_providers` +-- + +DROP TABLE IF EXISTS `mdl_message_providers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_message_providers` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `component` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `capability` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_messprov_comnam_uix` (`component`,`name`) +) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table stores the message providers (modules and core sy'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_message_providers` +-- + +LOCK TABLES `mdl_message_providers` WRITE; +/*!40000 ALTER TABLE `mdl_message_providers` DISABLE KEYS */; +INSERT INTO `mdl_message_providers` VALUES (1,'notices','moodle','moodle/site:config'),(2,'errors','moodle','moodle/site:config'),(3,'availableupdate','moodle','moodle/site:config'),(4,'instantmessage','moodle',NULL),(5,'backup','moodle','moodle/site:config'),(6,'courserequested','moodle','moodle/site:approvecourse'),(7,'courserequestapproved','moodle','moodle/course:request'),(8,'courserequestrejected','moodle','moodle/course:request'),(9,'coursecompleted','moodle',NULL),(10,'badgerecipientnotice','moodle','moodle/badges:earnbadge'),(11,'badgecreatornotice','moodle',NULL),(12,'competencyplancomment','moodle',NULL),(13,'competencyusercompcomment','moodle',NULL),(14,'insights','moodle',NULL),(15,'messagecontactrequests','moodle',NULL),(16,'asyncbackupnotification','moodle',NULL),(17,'gradenotifications','moodle',NULL),(18,'infected','moodle','moodle/site:config'),(19,'assign_notification','mod_assign',NULL),(20,'assignment_updates','mod_assignment',NULL),(21,'submission','mod_feedback',NULL),(22,'message','mod_feedback',NULL),(23,'posts','mod_forum',NULL),(24,'digests','mod_forum',NULL),(25,'graded_essay','mod_lesson',NULL),(26,'submission','mod_quiz','mod/quiz:emailnotifysubmission'),(27,'confirmation','mod_quiz','mod/quiz:emailconfirmsubmission'),(28,'attempt_overdue','mod_quiz','mod/quiz:emailwarnoverdue'),(29,'flatfile_enrolment','enrol_flatfile',NULL),(30,'imsenterprise_enrolment','enrol_imsenterprise',NULL),(31,'expiry_notification','enrol_manual',NULL),(32,'paypal_enrolment','enrol_paypal',NULL),(33,'expiry_notification','enrol_self',NULL),(34,'contactdataprotectionofficer','tool_dataprivacy','tool/dataprivacy:managedatarequests'),(35,'datarequestprocessingresults','tool_dataprivacy',NULL),(36,'notifyexceptions','tool_dataprivacy','tool/dataprivacy:managedatarequests'),(37,'invalidrecipienthandler','tool_messageinbound',NULL),(38,'messageprocessingerror','tool_messageinbound',NULL),(39,'messageprocessingsuccess','tool_messageinbound',NULL),(40,'notification','tool_monitor','tool/monitor:subscribe'); +/*!40000 ALTER TABLE `mdl_message_providers` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_message_read` +-- + +DROP TABLE IF EXISTS `mdl_message_read`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_message_read` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `useridfrom` bigint(10) NOT NULL DEFAULT 0, + `useridto` bigint(10) NOT NULL DEFAULT 0, + `subject` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `fullmessage` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `fullmessageformat` smallint(4) DEFAULT 0, + `fullmessagehtml` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `smallmessage` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `notification` tinyint(1) DEFAULT 0, + `contexturl` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `contexturlname` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timeread` bigint(10) NOT NULL DEFAULT 0, + `timeuserfromdeleted` bigint(10) NOT NULL DEFAULT 0, + `timeusertodeleted` bigint(10) NOT NULL DEFAULT 0, + `component` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `eventtype` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_messread_useusetimtim_ix` (`useridfrom`,`useridto`,`timeuserfromdeleted`,`timeusertodeleted`), + KEY `mdl_messread_nottim_ix` (`notification`,`timeread`), + KEY `mdl_messread_usetimnot_ix` (`useridfrom`,`timeuserfromdeleted`,`notification`), + KEY `mdl_messread_usetimnot2_ix` (`useridto`,`timeusertodeleted`,`notification`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores all messages that have been read'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_message_read` +-- + +LOCK TABLES `mdl_message_read` WRITE; +/*!40000 ALTER TABLE `mdl_message_read` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_message_read` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_message_user_actions` +-- + +DROP TABLE IF EXISTS `mdl_message_user_actions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_message_user_actions` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL, + `messageid` bigint(10) NOT NULL, + `action` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_messuseracti_usemesact_uix` (`userid`,`messageid`,`action`), + KEY `mdl_messuseracti_use_ix` (`userid`), + KEY `mdl_messuseracti_mes_ix` (`messageid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores all per-user actions on individual messages'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_message_user_actions` +-- + +LOCK TABLES `mdl_message_user_actions` WRITE; +/*!40000 ALTER TABLE `mdl_message_user_actions` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_message_user_actions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_message_users_blocked` +-- + +DROP TABLE IF EXISTS `mdl_message_users_blocked`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_message_users_blocked` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL, + `blockeduserid` bigint(10) NOT NULL, + `timecreated` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_messuserbloc_useblo_uix` (`userid`,`blockeduserid`), + KEY `mdl_messuserbloc_use_ix` (`userid`), + KEY `mdl_messuserbloc_blo_ix` (`blockeduserid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Maintains lists of blocked users'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_message_users_blocked` +-- + +LOCK TABLES `mdl_message_users_blocked` WRITE; +/*!40000 ALTER TABLE `mdl_message_users_blocked` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_message_users_blocked` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_messageinbound_datakeys` +-- + +DROP TABLE IF EXISTS `mdl_messageinbound_datakeys`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_messageinbound_datakeys` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `handler` bigint(10) NOT NULL, + `datavalue` bigint(10) NOT NULL, + `datakey` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `expires` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_messdata_handat_uix` (`handler`,`datavalue`), + KEY `mdl_messdata_han_ix` (`handler`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Inbound Message data item secret keys.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_messageinbound_datakeys` +-- + +LOCK TABLES `mdl_messageinbound_datakeys` WRITE; +/*!40000 ALTER TABLE `mdl_messageinbound_datakeys` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_messageinbound_datakeys` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_messageinbound_handlers` +-- + +DROP TABLE IF EXISTS `mdl_messageinbound_handlers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_messageinbound_handlers` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `classname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `defaultexpiration` bigint(10) NOT NULL DEFAULT 86400, + `validateaddress` tinyint(1) NOT NULL DEFAULT 1, + `enabled` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_messhand_cla_uix` (`classname`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Inbound Message Handler definitions.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_messageinbound_handlers` +-- + +LOCK TABLES `mdl_messageinbound_handlers` WRITE; +/*!40000 ALTER TABLE `mdl_messageinbound_handlers` DISABLE KEYS */; +INSERT INTO `mdl_messageinbound_handlers` VALUES (1,'core','\\core\\message\\inbound\\private_files_handler',0,1,0),(2,'mod_forum','\\mod_forum\\message\\inbound\\reply_handler',604800,1,0),(3,'tool_messageinbound','\\tool_messageinbound\\message\\inbound\\invalid_recipient_handler',604800,0,1); +/*!40000 ALTER TABLE `mdl_messageinbound_handlers` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_messageinbound_messagelist` +-- + +DROP TABLE IF EXISTS `mdl_messageinbound_messagelist`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_messageinbound_messagelist` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `messageid` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `userid` bigint(10) NOT NULL, + `address` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `timecreated` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_messmess_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='A list of message IDs for existing replies'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_messageinbound_messagelist` +-- + +LOCK TABLES `mdl_messageinbound_messagelist` WRITE; +/*!40000 ALTER TABLE `mdl_messageinbound_messagelist` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_messageinbound_messagelist` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_messages` +-- + +DROP TABLE IF EXISTS `mdl_messages`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_messages` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `useridfrom` bigint(10) NOT NULL, + `conversationid` bigint(10) NOT NULL, + `subject` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `fullmessage` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `fullmessageformat` tinyint(1) NOT NULL DEFAULT 0, + `fullmessagehtml` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `smallmessage` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `fullmessagetrust` tinyint(2) NOT NULL DEFAULT 0, + `customdata` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_mess_contim_ix` (`conversationid`,`timecreated`), + KEY `mdl_mess_use_ix` (`useridfrom`), + KEY `mdl_mess_con_ix` (`conversationid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores all messages'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_messages` +-- + +LOCK TABLES `mdl_messages` WRITE; +/*!40000 ALTER TABLE `mdl_messages` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_messages` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_mnet_application` +-- + +DROP TABLE IF EXISTS `mdl_mnet_application`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_mnet_application` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `display_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `xmlrpc_server_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `sso_land_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `sso_jump_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Information about applications on remote hosts'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_mnet_application` +-- + +LOCK TABLES `mdl_mnet_application` WRITE; +/*!40000 ALTER TABLE `mdl_mnet_application` DISABLE KEYS */; +INSERT INTO `mdl_mnet_application` VALUES (1,'moodle','Moodle','/mnet/xmlrpc/server.php','/auth/mnet/land.php','/auth/mnet/jump.php'),(2,'mahara','Mahara','/api/xmlrpc/server.php','/auth/xmlrpc/land.php','/auth/xmlrpc/jump.php'); +/*!40000 ALTER TABLE `mdl_mnet_application` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_mnet_host` +-- + +DROP TABLE IF EXISTS `mdl_mnet_host`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_mnet_host` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `deleted` tinyint(1) NOT NULL DEFAULT 0, + `wwwroot` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `name` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `public_key` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `public_key_expires` bigint(10) NOT NULL DEFAULT 0, + `transport` tinyint(2) NOT NULL DEFAULT 0, + `portno` mediumint(5) NOT NULL DEFAULT 0, + `last_connect_time` bigint(10) NOT NULL DEFAULT 0, + `last_log_id` bigint(10) NOT NULL DEFAULT 0, + `force_theme` tinyint(1) NOT NULL DEFAULT 0, + `theme` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `applicationid` bigint(10) NOT NULL DEFAULT 1, + `sslverification` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_mnethost_app_ix` (`applicationid`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Information about the local and remote hosts for RPC'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_mnet_host` +-- + +LOCK TABLES `mdl_mnet_host` WRITE; +/*!40000 ALTER TABLE `mdl_mnet_host` DISABLE KEYS */; +INSERT INTO `mdl_mnet_host` VALUES (1,0,'http://learn.dev-defaults.derekmaxson.com','172.30.2.9','','',0,0,0,0,0,0,NULL,1,0),(2,0,'','','All Hosts','',0,0,0,0,0,0,NULL,1,0); +/*!40000 ALTER TABLE `mdl_mnet_host` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_mnet_host2service` +-- + +DROP TABLE IF EXISTS `mdl_mnet_host2service`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_mnet_host2service` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `hostid` bigint(10) NOT NULL DEFAULT 0, + `serviceid` bigint(10) NOT NULL DEFAULT 0, + `publish` tinyint(1) NOT NULL DEFAULT 0, + `subscribe` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_mnethost_hosser_uix` (`hostid`,`serviceid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Information about the services for a given host'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_mnet_host2service` +-- + +LOCK TABLES `mdl_mnet_host2service` WRITE; +/*!40000 ALTER TABLE `mdl_mnet_host2service` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_mnet_host2service` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_mnet_log` +-- + +DROP TABLE IF EXISTS `mdl_mnet_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_mnet_log` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `hostid` bigint(10) NOT NULL DEFAULT 0, + `remoteid` bigint(10) NOT NULL DEFAULT 0, + `time` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `ip` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `course` bigint(10) NOT NULL DEFAULT 0, + `coursename` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `module` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `cmid` bigint(10) NOT NULL DEFAULT 0, + `action` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `info` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `mdl_mnetlog_hosusecou_ix` (`hostid`,`userid`,`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Store session data from users migrating to other sites'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_mnet_log` +-- + +LOCK TABLES `mdl_mnet_log` WRITE; +/*!40000 ALTER TABLE `mdl_mnet_log` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_mnet_log` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_mnet_remote_rpc` +-- + +DROP TABLE IF EXISTS `mdl_mnet_remote_rpc`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_mnet_remote_rpc` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `functionname` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `xmlrpcpath` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `plugintype` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `pluginname` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `enabled` tinyint(1) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table describes functions that might be called remotely'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_mnet_remote_rpc` +-- + +LOCK TABLES `mdl_mnet_remote_rpc` WRITE; +/*!40000 ALTER TABLE `mdl_mnet_remote_rpc` DISABLE KEYS */; +INSERT INTO `mdl_mnet_remote_rpc` VALUES (1,'user_authorise','auth/mnet/auth.php/user_authorise','auth','mnet',1),(2,'keepalive_server','auth/mnet/auth.php/keepalive_server','auth','mnet',1),(3,'kill_children','auth/mnet/auth.php/kill_children','auth','mnet',1),(4,'refresh_log','auth/mnet/auth.php/refresh_log','auth','mnet',1),(5,'fetch_user_image','auth/mnet/auth.php/fetch_user_image','auth','mnet',1),(6,'fetch_theme_info','auth/mnet/auth.php/fetch_theme_info','auth','mnet',1),(7,'update_enrolments','auth/mnet/auth.php/update_enrolments','auth','mnet',1),(8,'keepalive_client','auth/mnet/auth.php/keepalive_client','auth','mnet',1),(9,'kill_child','auth/mnet/auth.php/kill_child','auth','mnet',1),(10,'available_courses','enrol/mnet/enrol.php/available_courses','enrol','mnet',1),(11,'user_enrolments','enrol/mnet/enrol.php/user_enrolments','enrol','mnet',1),(12,'enrol_user','enrol/mnet/enrol.php/enrol_user','enrol','mnet',1),(13,'unenrol_user','enrol/mnet/enrol.php/unenrol_user','enrol','mnet',1),(14,'course_enrolments','enrol/mnet/enrol.php/course_enrolments','enrol','mnet',1),(15,'send_content_intent','portfolio/mahara/lib.php/send_content_intent','portfolio','mahara',1),(16,'send_content_ready','portfolio/mahara/lib.php/send_content_ready','portfolio','mahara',1); +/*!40000 ALTER TABLE `mdl_mnet_remote_rpc` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_mnet_remote_service2rpc` +-- + +DROP TABLE IF EXISTS `mdl_mnet_remote_service2rpc`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_mnet_remote_service2rpc` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `serviceid` bigint(10) NOT NULL DEFAULT 0, + `rpcid` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_mnetremoserv_rpcser_uix` (`rpcid`,`serviceid`) +) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Group functions or methods under a service'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_mnet_remote_service2rpc` +-- + +LOCK TABLES `mdl_mnet_remote_service2rpc` WRITE; +/*!40000 ALTER TABLE `mdl_mnet_remote_service2rpc` DISABLE KEYS */; +INSERT INTO `mdl_mnet_remote_service2rpc` VALUES (1,1,1),(2,1,2),(3,1,3),(4,1,4),(5,1,5),(6,1,6),(7,1,7),(8,2,8),(9,2,9),(10,3,10),(11,3,11),(12,3,12),(13,3,13),(14,3,14),(15,4,15),(16,4,16); +/*!40000 ALTER TABLE `mdl_mnet_remote_service2rpc` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_mnet_rpc` +-- + +DROP TABLE IF EXISTS `mdl_mnet_rpc`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_mnet_rpc` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `functionname` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `xmlrpcpath` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `plugintype` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `pluginname` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `enabled` tinyint(1) NOT NULL DEFAULT 0, + `help` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `profile` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `filename` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `classname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `static` tinyint(1) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_mnetrpc_enaxml_ix` (`enabled`,`xmlrpcpath`) +) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Functions or methods that we may publish or subscribe to'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_mnet_rpc` +-- + +LOCK TABLES `mdl_mnet_rpc` WRITE; +/*!40000 ALTER TABLE `mdl_mnet_rpc` DISABLE KEYS */; +INSERT INTO `mdl_mnet_rpc` VALUES (1,'user_authorise','auth/mnet/auth.php/user_authorise','auth','mnet',1,'Return user data for the provided token, compare with user_agent string.','a:2:{s:10:\"parameters\";a:2:{i:0;a:3:{s:4:\"name\";s:5:\"token\";s:4:\"type\";s:6:\"string\";s:11:\"description\";s:37:\"The unique ID provided by remotehost.\";}i:1;a:3:{s:4:\"name\";s:9:\"useragent\";s:4:\"type\";s:6:\"string\";s:11:\"description\";s:18:\"User Agent string.\";}}s:6:\"return\";a:2:{s:4:\"type\";s:5:\"array\";s:11:\"description\";s:44:\"$userdata Array of user info for remote host\";}}','auth.php','auth_plugin_mnet',0),(2,'keepalive_server','auth/mnet/auth.php/keepalive_server','auth','mnet',1,'Receives an array of usernames from a remote machine and prods their\nsessions to keep them alive','a:2:{s:10:\"parameters\";a:1:{i:0;a:3:{s:4:\"name\";s:5:\"array\";s:4:\"type\";s:5:\"array\";s:11:\"description\";s:21:\"An array of usernames\";}}s:6:\"return\";a:2:{s:4:\"type\";s:6:\"string\";s:11:\"description\";s:28:\"\"All ok\" or an error message\";}}','auth.php','auth_plugin_mnet',0),(3,'kill_children','auth/mnet/auth.php/kill_children','auth','mnet',1,'The IdP uses this function to kill child sessions on other hosts','a:2:{s:10:\"parameters\";a:2:{i:0;a:3:{s:4:\"name\";s:8:\"username\";s:4:\"type\";s:6:\"string\";s:11:\"description\";s:28:\"Username for session to kill\";}i:1;a:3:{s:4:\"name\";s:9:\"useragent\";s:4:\"type\";s:6:\"string\";s:11:\"description\";s:35:\"SHA1 hash of user agent to look for\";}}s:6:\"return\";a:2:{s:4:\"type\";s:6:\"string\";s:11:\"description\";s:39:\"A plaintext report of what has happened\";}}','auth.php','auth_plugin_mnet',0),(4,'refresh_log','auth/mnet/auth.php/refresh_log','auth','mnet',1,'Receives an array of log entries from an SP and adds them to the mnet_log\ntable','a:2:{s:10:\"parameters\";a:1:{i:0;a:3:{s:4:\"name\";s:5:\"array\";s:4:\"type\";s:5:\"array\";s:11:\"description\";s:21:\"An array of usernames\";}}s:6:\"return\";a:2:{s:4:\"type\";s:6:\"string\";s:11:\"description\";s:28:\"\"All ok\" or an error message\";}}','auth.php','auth_plugin_mnet',0),(5,'fetch_user_image','auth/mnet/auth.php/fetch_user_image','auth','mnet',1,'Returns the user\'s profile image info\nIf the user exists and has a profile picture, the returned array will contain keys:\nf1 - the content of the default 100x100px image\nf1_mimetype - the mimetype of the f1 file\nf2 - the content of the 35x35px variant of the image\nf2_mimetype - the mimetype of the f2 file\nThe mimetype information was added in Moodle 2.0. In Moodle 1.x, images are always jpegs.','a:2:{s:10:\"parameters\";a:1:{i:0;a:3:{s:4:\"name\";s:8:\"username\";s:4:\"type\";s:3:\"int\";s:11:\"description\";s:18:\"The id of the user\";}}s:6:\"return\";a:2:{s:4:\"type\";s:11:\"false|array\";s:11:\"description\";s:84:\"false if user not found, empty array if no picture exists, array with data otherwise\";}}','auth.php','auth_plugin_mnet',0),(6,'fetch_theme_info','auth/mnet/auth.php/fetch_theme_info','auth','mnet',1,'Returns the theme information and logo url as strings.','a:2:{s:10:\"parameters\";a:0:{}s:6:\"return\";a:2:{s:4:\"type\";s:6:\"string\";s:11:\"description\";s:14:\"The theme info\";}}','auth.php','auth_plugin_mnet',0),(7,'update_enrolments','auth/mnet/auth.php/update_enrolments','auth','mnet',1,'Invoke this function _on_ the IDP to update it with enrolment info local to\nthe SP right after calling user_authorise()\nNormally called by the SP after calling user_authorise()','a:2:{s:10:\"parameters\";a:2:{i:0;a:3:{s:4:\"name\";s:8:\"username\";s:4:\"type\";s:6:\"string\";s:11:\"description\";s:12:\"The username\";}i:1;a:3:{s:4:\"name\";s:7:\"courses\";s:4:\"type\";s:5:\"array\";s:11:\"description\";s:75:\"Assoc array of courses following the structure of mnetservice_enrol_courses\";}}s:6:\"return\";a:2:{s:4:\"type\";s:4:\"bool\";s:11:\"description\";s:0:\"\";}}','auth.php','auth_plugin_mnet',0),(8,'keepalive_client','auth/mnet/auth.php/keepalive_client','auth','mnet',1,'Poll the IdP server to let it know that a user it has authenticated is still\nonline','a:2:{s:10:\"parameters\";a:0:{}s:6:\"return\";a:2:{s:4:\"type\";s:4:\"void\";s:11:\"description\";s:0:\"\";}}','auth.php','auth_plugin_mnet',0),(9,'kill_child','auth/mnet/auth.php/kill_child','auth','mnet',1,'When the IdP requests that child sessions are terminated,\nthis function will be called on each of the child hosts. The machine that\ncalls the function (over xmlrpc) provides us with the mnethostid we need.','a:2:{s:10:\"parameters\";a:2:{i:0;a:3:{s:4:\"name\";s:8:\"username\";s:4:\"type\";s:6:\"string\";s:11:\"description\";s:28:\"Username for session to kill\";}i:1;a:3:{s:4:\"name\";s:9:\"useragent\";s:4:\"type\";s:6:\"string\";s:11:\"description\";s:35:\"SHA1 hash of user agent to look for\";}}s:6:\"return\";a:2:{s:4:\"type\";s:4:\"bool\";s:11:\"description\";s:15:\"True on success\";}}','auth.php','auth_plugin_mnet',0),(10,'available_courses','enrol/mnet/enrol.php/available_courses','enrol','mnet',1,'Returns list of courses that we offer to the caller for remote enrolment of their users\nSince Moodle 2.0, courses are made available for MNet peers by creating an instance\nof enrol_mnet plugin for the course. Hidden courses are not returned. If there are two\ninstances - one specific for the host and one for \'All hosts\', the setting of the specific\none is used. The id of the peer is kept in customint1, no other custom fields are used.','a:2:{s:10:\"parameters\";a:0:{}s:6:\"return\";a:2:{s:4:\"type\";s:5:\"array\";s:11:\"description\";s:0:\"\";}}','enrol.php','enrol_mnet_mnetservice_enrol',0),(11,'user_enrolments','enrol/mnet/enrol.php/user_enrolments','enrol','mnet',1,'This method has never been implemented in Moodle MNet API','a:2:{s:10:\"parameters\";a:0:{}s:6:\"return\";a:2:{s:4:\"type\";s:5:\"array\";s:11:\"description\";s:11:\"empty array\";}}','enrol.php','enrol_mnet_mnetservice_enrol',0),(12,'enrol_user','enrol/mnet/enrol.php/enrol_user','enrol','mnet',1,'Enrol remote user to our course\nIf we do not have local record for the remote user in our database,\nit gets created here.','a:2:{s:10:\"parameters\";a:2:{i:0;a:3:{s:4:\"name\";s:8:\"userdata\";s:4:\"type\";s:5:\"array\";s:11:\"description\";s:43:\"user details {@see mnet_fields_to_import()}\";}i:1;a:3:{s:4:\"name\";s:8:\"courseid\";s:4:\"type\";s:3:\"int\";s:11:\"description\";s:19:\"our local course id\";}}s:6:\"return\";a:2:{s:4:\"type\";s:4:\"bool\";s:11:\"description\";s:69:\"true if the enrolment has been successful, throws exception otherwise\";}}','enrol.php','enrol_mnet_mnetservice_enrol',0),(13,'unenrol_user','enrol/mnet/enrol.php/unenrol_user','enrol','mnet',1,'Unenrol remote user from our course\nOnly users enrolled via enrol_mnet plugin can be unenrolled remotely. If the\nremote user is enrolled into the local course via some other enrol plugin\n(enrol_manual for example), the remote host can\'t touch such enrolment. Please\ndo not report this behaviour as bug, it is a feature ;-)','a:2:{s:10:\"parameters\";a:2:{i:0;a:3:{s:4:\"name\";s:8:\"username\";s:4:\"type\";s:6:\"string\";s:11:\"description\";s:18:\"of the remote user\";}i:1;a:3:{s:4:\"name\";s:8:\"courseid\";s:4:\"type\";s:3:\"int\";s:11:\"description\";s:19:\"of our local course\";}}s:6:\"return\";a:2:{s:4:\"type\";s:4:\"bool\";s:11:\"description\";s:71:\"true if the unenrolment has been successful, throws exception otherwise\";}}','enrol.php','enrol_mnet_mnetservice_enrol',0),(14,'course_enrolments','enrol/mnet/enrol.php/course_enrolments','enrol','mnet',1,'Returns a list of users from the client server who are enrolled in our course\nSuitable instance of enrol_mnet must be created in the course. This method will not\nreturn any information about the enrolments in courses that are not available for\nremote enrolment, even if their users are enrolled into them via other plugin\n(note the difference from {@link self::user_enrolments()}).\nThis method will return enrolment information for users from hosts regardless\nthe enrolment plugin. It does not matter if the user was enrolled remotely by\ntheir admin or locally. Once the course is available for remote enrolments, we\nwill tell them everything about their users.\nIn Moodle 1.x the returned array used to be indexed by username. The side effect\nof MDL-19219 fix is that we do not need to use such index and therefore we can\nreturn all enrolment records. MNet clients 1.x will only use the last record for\nthe student, if she is enrolled via multiple plugins.','a:2:{s:10:\"parameters\";a:2:{i:0;a:3:{s:4:\"name\";s:8:\"courseid\";s:4:\"type\";s:3:\"int\";s:11:\"description\";s:16:\"ID of our course\";}i:1;a:3:{s:4:\"name\";s:5:\"roles\";s:4:\"type\";s:12:\"string|array\";s:11:\"description\";s:58:\"comma separated list of role shortnames (or array of them)\";}}s:6:\"return\";a:2:{s:4:\"type\";s:5:\"array\";s:11:\"description\";s:0:\"\";}}','enrol.php','enrol_mnet_mnetservice_enrol',0),(15,'fetch_file','portfolio/mahara/lib.php/fetch_file','portfolio','mahara',1,'xmlrpc (mnet) function to get the file.\nreads in the file and returns it base_64 encoded\nso that it can be enrypted by mnet.','a:2:{s:10:\"parameters\";a:1:{i:0;a:3:{s:4:\"name\";s:5:\"token\";s:4:\"type\";s:6:\"string\";s:11:\"description\";s:56:\"the token recieved previously during send_content_intent\";}}s:6:\"return\";a:2:{s:4:\"type\";s:4:\"void\";s:11:\"description\";s:0:\"\";}}','lib.php','portfolio_plugin_mahara',1); +/*!40000 ALTER TABLE `mdl_mnet_rpc` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_mnet_service` +-- + +DROP TABLE IF EXISTS `mdl_mnet_service`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_mnet_service` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `apiversion` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `offer` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='A service is a group of functions'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_mnet_service` +-- + +LOCK TABLES `mdl_mnet_service` WRITE; +/*!40000 ALTER TABLE `mdl_mnet_service` DISABLE KEYS */; +INSERT INTO `mdl_mnet_service` VALUES (1,'sso_idp','','1',1),(2,'sso_sp','','1',1),(3,'mnet_enrol','','1',1),(4,'pf','','1',1); +/*!40000 ALTER TABLE `mdl_mnet_service` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_mnet_service2rpc` +-- + +DROP TABLE IF EXISTS `mdl_mnet_service2rpc`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_mnet_service2rpc` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `serviceid` bigint(10) NOT NULL DEFAULT 0, + `rpcid` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_mnetserv_rpcser_uix` (`rpcid`,`serviceid`) +) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Group functions or methods under a service'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_mnet_service2rpc` +-- + +LOCK TABLES `mdl_mnet_service2rpc` WRITE; +/*!40000 ALTER TABLE `mdl_mnet_service2rpc` DISABLE KEYS */; +INSERT INTO `mdl_mnet_service2rpc` VALUES (1,1,1),(2,1,2),(3,1,3),(4,1,4),(5,1,5),(6,1,6),(7,1,7),(8,2,8),(9,2,9),(10,3,10),(11,3,11),(12,3,12),(13,3,13),(14,3,14),(15,4,15); +/*!40000 ALTER TABLE `mdl_mnet_service2rpc` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_mnet_session` +-- + +DROP TABLE IF EXISTS `mdl_mnet_session`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_mnet_session` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL DEFAULT 0, + `username` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `token` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `mnethostid` bigint(10) NOT NULL DEFAULT 0, + `useragent` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `confirm_timeout` bigint(10) NOT NULL DEFAULT 0, + `session_id` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `expires` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_mnetsess_tok_uix` (`token`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Store session data from users migrating to other sites'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_mnet_session` +-- + +LOCK TABLES `mdl_mnet_session` WRITE; +/*!40000 ALTER TABLE `mdl_mnet_session` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_mnet_session` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_mnet_sso_access_control` +-- + +DROP TABLE IF EXISTS `mdl_mnet_sso_access_control`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_mnet_sso_access_control` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `username` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `mnet_host_id` bigint(10) NOT NULL DEFAULT 0, + `accessctrl` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'allow', + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_mnetssoaccecont_mneuse_uix` (`mnet_host_id`,`username`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Users by host permitted (or not) to login from a remote prov'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_mnet_sso_access_control` +-- + +LOCK TABLES `mdl_mnet_sso_access_control` WRITE; +/*!40000 ALTER TABLE `mdl_mnet_sso_access_control` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_mnet_sso_access_control` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_mnetservice_enrol_courses` +-- + +DROP TABLE IF EXISTS `mdl_mnetservice_enrol_courses`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_mnetservice_enrol_courses` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `hostid` bigint(10) NOT NULL, + `remoteid` bigint(10) NOT NULL, + `categoryid` bigint(10) NOT NULL, + `categoryname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `sortorder` bigint(10) NOT NULL DEFAULT 0, + `fullname` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `shortname` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `summary` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `summaryformat` smallint(3) DEFAULT 0, + `startdate` bigint(10) NOT NULL, + `roleid` bigint(10) NOT NULL, + `rolename` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_mnetenrocour_hosrem_uix` (`hostid`,`remoteid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Caches the information fetched via XML-RPC about courses on '; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_mnetservice_enrol_courses` +-- + +LOCK TABLES `mdl_mnetservice_enrol_courses` WRITE; +/*!40000 ALTER TABLE `mdl_mnetservice_enrol_courses` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_mnetservice_enrol_courses` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_mnetservice_enrol_enrolments` +-- + +DROP TABLE IF EXISTS `mdl_mnetservice_enrol_enrolments`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_mnetservice_enrol_enrolments` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `hostid` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `remotecourseid` bigint(10) NOT NULL, + `rolename` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `enroltime` bigint(10) NOT NULL DEFAULT 0, + `enroltype` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `mdl_mnetenroenro_use_ix` (`userid`), + KEY `mdl_mnetenroenro_hos_ix` (`hostid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Caches the information about enrolments of our local users i'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_mnetservice_enrol_enrolments` +-- + +LOCK TABLES `mdl_mnetservice_enrol_enrolments` WRITE; +/*!40000 ALTER TABLE `mdl_mnetservice_enrol_enrolments` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_mnetservice_enrol_enrolments` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_modules` +-- + +DROP TABLE IF EXISTS `mdl_modules`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_modules` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `cron` bigint(10) NOT NULL DEFAULT 0, + `lastcron` bigint(10) NOT NULL DEFAULT 0, + `search` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `visible` tinyint(1) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`), + KEY `mdl_modu_nam_ix` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='modules available in the site'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_modules` +-- + +LOCK TABLES `mdl_modules` WRITE; +/*!40000 ALTER TABLE `mdl_modules` DISABLE KEYS */; +INSERT INTO `mdl_modules` VALUES (1,'assign',0,0,'',1),(2,'assignment',60,0,'',0),(3,'book',0,0,'',1),(4,'chat',0,0,'',1),(5,'choice',0,0,'',1),(6,'data',0,0,'',1),(7,'feedback',0,0,'',1),(8,'folder',0,0,'',1),(9,'forum',0,0,'',1),(10,'glossary',0,0,'',1),(11,'h5pactivity',0,0,'',1),(12,'imscp',0,0,'',1),(13,'label',0,0,'',1),(14,'lesson',0,0,'',1),(15,'lti',0,0,'',1),(16,'page',0,0,'',1),(17,'quiz',0,0,'',1),(18,'resource',0,0,'',1),(19,'scorm',0,0,'',1),(20,'survey',0,0,'',1),(21,'url',0,0,'',1),(22,'wiki',0,0,'',1),(23,'workshop',0,0,'',1),(24,'customcert',0,0,'',1); +/*!40000 ALTER TABLE `mdl_modules` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_my_pages` +-- + +DROP TABLE IF EXISTS `mdl_my_pages`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_my_pages` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) DEFAULT 0, + `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `private` tinyint(1) NOT NULL DEFAULT 1, + `sortorder` mediumint(6) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_mypage_usepri_ix` (`userid`,`private`) +) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Extra user pages for the My Moodle system'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_my_pages` +-- + +LOCK TABLES `mdl_my_pages` WRITE; +/*!40000 ALTER TABLE `mdl_my_pages` DISABLE KEYS */; +INSERT INTO `mdl_my_pages` VALUES (1,NULL,'__default',0,0),(2,NULL,'__default',1,0),(4,6,'__default',0,0),(5,2,'__default',1,0),(6,2,'__default',0,0); +/*!40000 ALTER TABLE `mdl_my_pages` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_notifications` +-- + +DROP TABLE IF EXISTS `mdl_notifications`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_notifications` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `useridfrom` bigint(10) NOT NULL, + `useridto` bigint(10) NOT NULL, + `subject` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `fullmessage` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `fullmessageformat` tinyint(1) NOT NULL DEFAULT 0, + `fullmessagehtml` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `smallmessage` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `component` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `eventtype` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `contexturl` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `contexturlname` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timeread` bigint(10) DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `customdata` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_noti_use_ix` (`useridfrom`), + KEY `mdl_noti_use2_ix` (`useridto`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores all notifications'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_notifications` +-- + +LOCK TABLES `mdl_notifications` WRITE; +/*!40000 ALTER TABLE `mdl_notifications` DISABLE KEYS */; +INSERT INTO `mdl_notifications` VALUES (1,2,2,'Moodle updates are available (http://learn.dev-defaults.derekmaxson.com)','Update notifications\n\nThere is a newer Moodle version available!\nMoodle 3.10.3+ (Build: 20210427) Version 2020110903.07 (Stable version)\n\nSee http://learn.dev-defaults.derekmaxson.com/admin/index.php for more details\n\nIt is strongly recommended that you update your site to the latest version to obtain all recent security and bug fixes.\n\nYour Moodle site http://learn.dev-defaults.derekmaxson.com is configured to automatically check for available updates. You are receiving this message as the administrator of the site. You can disable automatic checks for available updates in Site administration / Server / Update notifications or customise the delivery of this message via your preferences page.\n',2,'

Update notifications

\n

There is a newer Moodle version available!

\n
    \n
  • Moodle 3.10.3+ (Build: 20210427) Version 2020110903.07 (Stable version)
  • \n
\n

See http://learn.dev-defaults.derekmaxson.com/admin/index.php for more details

\n

It is strongly recommended that you update your site to the latest version to obtain all recent security and bug fixes.

\n

Your Moodle site http://learn.dev-defaults.derekmaxson.com is configured to automatically check for available updates. You are receiving this message as the administrator of the site. You can disable automatic checks for available updates in Site administration / Server / Update notifications or customise the delivery of this message via your preferences page.

','Update notifications','moodle','availableupdate',NULL,NULL,NULL,1619625665,NULL); +/*!40000 ALTER TABLE `mdl_notifications` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_oauth2_access_token` +-- + +DROP TABLE IF EXISTS `mdl_oauth2_access_token`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_oauth2_access_token` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `usermodified` bigint(10) NOT NULL, + `issuerid` bigint(10) NOT NULL, + `token` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `expires` bigint(10) NOT NULL, + `scope` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_oautaccetoke_iss_uix` (`issuerid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores access tokens for system accounts in order to be able'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_oauth2_access_token` +-- + +LOCK TABLES `mdl_oauth2_access_token` WRITE; +/*!40000 ALTER TABLE `mdl_oauth2_access_token` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_oauth2_access_token` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_oauth2_endpoint` +-- + +DROP TABLE IF EXISTS `mdl_oauth2_endpoint`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_oauth2_endpoint` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `usermodified` bigint(10) NOT NULL, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `url` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `issuerid` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_oautendp_iss_ix` (`issuerid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Describes the named endpoint for an oauth2 service.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_oauth2_endpoint` +-- + +LOCK TABLES `mdl_oauth2_endpoint` WRITE; +/*!40000 ALTER TABLE `mdl_oauth2_endpoint` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_oauth2_endpoint` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_oauth2_issuer` +-- + +DROP TABLE IF EXISTS `mdl_oauth2_issuer`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_oauth2_issuer` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `usermodified` bigint(10) NOT NULL, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `image` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `baseurl` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `clientid` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `clientsecret` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `loginscopes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `loginscopesoffline` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `loginparams` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `loginparamsoffline` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `alloweddomains` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `scopessupported` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `enabled` tinyint(2) NOT NULL DEFAULT 1, + `showonloginpage` tinyint(2) NOT NULL DEFAULT 1, + `basicauth` tinyint(2) NOT NULL DEFAULT 0, + `sortorder` bigint(10) NOT NULL, + `requireconfirmation` tinyint(2) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Details for an oauth 2 connect identity issuer.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_oauth2_issuer` +-- + +LOCK TABLES `mdl_oauth2_issuer` WRITE; +/*!40000 ALTER TABLE `mdl_oauth2_issuer` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_oauth2_issuer` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_oauth2_refresh_token` +-- + +DROP TABLE IF EXISTS `mdl_oauth2_refresh_token`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_oauth2_refresh_token` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `issuerid` bigint(10) NOT NULL, + `token` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `scopehash` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_oautrefrtoke_useisssco_uix` (`userid`,`issuerid`,`scopehash`), + KEY `mdl_oautrefrtoke_iss_ix` (`issuerid`), + KEY `mdl_oautrefrtoke_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores refresh tokens which can be exchanged for access toke'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_oauth2_refresh_token` +-- + +LOCK TABLES `mdl_oauth2_refresh_token` WRITE; +/*!40000 ALTER TABLE `mdl_oauth2_refresh_token` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_oauth2_refresh_token` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_oauth2_system_account` +-- + +DROP TABLE IF EXISTS `mdl_oauth2_system_account`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_oauth2_system_account` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `usermodified` bigint(10) NOT NULL, + `issuerid` bigint(10) NOT NULL, + `refreshtoken` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `grantedscopes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `email` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `username` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_oautsystacco_iss_uix` (`issuerid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stored details used to get an access token as a system user '; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_oauth2_system_account` +-- + +LOCK TABLES `mdl_oauth2_system_account` WRITE; +/*!40000 ALTER TABLE `mdl_oauth2_system_account` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_oauth2_system_account` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_oauth2_user_field_mapping` +-- + +DROP TABLE IF EXISTS `mdl_oauth2_user_field_mapping`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_oauth2_user_field_mapping` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `timemodified` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `usermodified` bigint(10) NOT NULL, + `issuerid` bigint(10) NOT NULL, + `externalfield` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `internalfield` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_oautuserfielmapp_issin_uix` (`issuerid`,`internalfield`), + KEY `mdl_oautuserfielmapp_iss_ix` (`issuerid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Mapping of oauth user fields to moodle fields.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_oauth2_user_field_mapping` +-- + +LOCK TABLES `mdl_oauth2_user_field_mapping` WRITE; +/*!40000 ALTER TABLE `mdl_oauth2_user_field_mapping` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_oauth2_user_field_mapping` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_page` +-- + +DROP TABLE IF EXISTS `mdl_page`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_page` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `introformat` smallint(4) NOT NULL DEFAULT 0, + `content` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `contentformat` smallint(4) NOT NULL DEFAULT 0, + `legacyfiles` smallint(4) NOT NULL DEFAULT 0, + `legacyfileslast` bigint(10) DEFAULT NULL, + `display` smallint(4) NOT NULL DEFAULT 0, + `displayoptions` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `revision` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_page_cou_ix` (`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Each record is one page and its config data'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_page` +-- + +LOCK TABLES `mdl_page` WRITE; +/*!40000 ALTER TABLE `mdl_page` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_page` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_paygw_paypal` +-- + +DROP TABLE IF EXISTS `mdl_paygw_paypal`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_paygw_paypal` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `paymentid` bigint(10) NOT NULL, + `pp_orderid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'The ID of the order in PayPal', + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_paygpayp_pay_uix` (`paymentid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores PayPal related information'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_paygw_paypal` +-- + +LOCK TABLES `mdl_paygw_paypal` WRITE; +/*!40000 ALTER TABLE `mdl_paygw_paypal` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_paygw_paypal` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_payment_accounts` +-- + +DROP TABLE IF EXISTS `mdl_payment_accounts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_payment_accounts` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `contextid` bigint(10) NOT NULL, + `enabled` tinyint(1) NOT NULL DEFAULT 0, + `archived` tinyint(1) NOT NULL DEFAULT 0, + `timecreated` bigint(10) DEFAULT NULL, + `timemodified` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Payment accounts'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_payment_accounts` +-- + +LOCK TABLES `mdl_payment_accounts` WRITE; +/*!40000 ALTER TABLE `mdl_payment_accounts` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_payment_accounts` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_payment_gateways` +-- + +DROP TABLE IF EXISTS `mdl_payment_gateways`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_payment_gateways` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `accountid` bigint(10) NOT NULL, + `gateway` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `enabled` tinyint(1) NOT NULL DEFAULT 1, + `config` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_paymgate_acc_ix` (`accountid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Configuration for one gateway for one payment account'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_payment_gateways` +-- + +LOCK TABLES `mdl_payment_gateways` WRITE; +/*!40000 ALTER TABLE `mdl_payment_gateways` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_payment_gateways` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_payments` +-- + +DROP TABLE IF EXISTS `mdl_payments`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_payments` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `paymentarea` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `itemid` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `amount` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `currency` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `accountid` bigint(10) NOT NULL, + `gateway` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_paym_gat_ix` (`gateway`), + KEY `mdl_paym_compayite_ix` (`component`,`paymentarea`,`itemid`), + KEY `mdl_paym_use_ix` (`userid`), + KEY `mdl_paym_acc_ix` (`accountid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores information about payments'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_payments` +-- + +LOCK TABLES `mdl_payments` WRITE; +/*!40000 ALTER TABLE `mdl_payments` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_payments` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_portfolio_instance` +-- + +DROP TABLE IF EXISTS `mdl_portfolio_instance`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_portfolio_instance` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `plugin` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `visible` tinyint(1) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='base table (not including config data) for instances of port'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_portfolio_instance` +-- + +LOCK TABLES `mdl_portfolio_instance` WRITE; +/*!40000 ALTER TABLE `mdl_portfolio_instance` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_portfolio_instance` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_portfolio_instance_config` +-- + +DROP TABLE IF EXISTS `mdl_portfolio_instance_config`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_portfolio_instance_config` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `instance` bigint(10) NOT NULL, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_portinstconf_nam_ix` (`name`), + KEY `mdl_portinstconf_ins_ix` (`instance`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='config for portfolio plugin instances'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_portfolio_instance_config` +-- + +LOCK TABLES `mdl_portfolio_instance_config` WRITE; +/*!40000 ALTER TABLE `mdl_portfolio_instance_config` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_portfolio_instance_config` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_portfolio_instance_user` +-- + +DROP TABLE IF EXISTS `mdl_portfolio_instance_user`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_portfolio_instance_user` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `instance` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_portinstuser_ins_ix` (`instance`), + KEY `mdl_portinstuser_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='user data for portfolio instances.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_portfolio_instance_user` +-- + +LOCK TABLES `mdl_portfolio_instance_user` WRITE; +/*!40000 ALTER TABLE `mdl_portfolio_instance_user` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_portfolio_instance_user` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_portfolio_log` +-- + +DROP TABLE IF EXISTS `mdl_portfolio_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_portfolio_log` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL, + `time` bigint(10) NOT NULL, + `portfolio` bigint(10) NOT NULL, + `caller_class` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `caller_file` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `caller_component` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `caller_sha1` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `tempdataid` bigint(10) NOT NULL DEFAULT 0, + `returnurl` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `continueurl` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `mdl_portlog_use_ix` (`userid`), + KEY `mdl_portlog_por_ix` (`portfolio`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='log of portfolio transfers (used to later check for duplicat'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_portfolio_log` +-- + +LOCK TABLES `mdl_portfolio_log` WRITE; +/*!40000 ALTER TABLE `mdl_portfolio_log` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_portfolio_log` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_portfolio_mahara_queue` +-- + +DROP TABLE IF EXISTS `mdl_portfolio_mahara_queue`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_portfolio_mahara_queue` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `transferid` bigint(10) NOT NULL, + `token` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `mdl_portmahaqueu_tok_ix` (`token`), + KEY `mdl_portmahaqueu_tra_ix` (`transferid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='maps mahara tokens to transfer ids'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_portfolio_mahara_queue` +-- + +LOCK TABLES `mdl_portfolio_mahara_queue` WRITE; +/*!40000 ALTER TABLE `mdl_portfolio_mahara_queue` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_portfolio_mahara_queue` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_portfolio_tempdata` +-- + +DROP TABLE IF EXISTS `mdl_portfolio_tempdata`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_portfolio_tempdata` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `data` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `expirytime` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `instance` bigint(10) DEFAULT 0, + `queued` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_porttemp_use_ix` (`userid`), + KEY `mdl_porttemp_ins_ix` (`instance`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='stores temporary data for portfolio exports. the id of this '; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_portfolio_tempdata` +-- + +LOCK TABLES `mdl_portfolio_tempdata` WRITE; +/*!40000 ALTER TABLE `mdl_portfolio_tempdata` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_portfolio_tempdata` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_post` +-- + +DROP TABLE IF EXISTS `mdl_post`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_post` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `module` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `userid` bigint(10) NOT NULL DEFAULT 0, + `courseid` bigint(10) NOT NULL DEFAULT 0, + `groupid` bigint(10) NOT NULL DEFAULT 0, + `moduleid` bigint(10) NOT NULL DEFAULT 0, + `coursemoduleid` bigint(10) NOT NULL DEFAULT 0, + `subject` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `summary` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `content` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `uniquehash` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `rating` bigint(10) NOT NULL DEFAULT 0, + `format` bigint(10) NOT NULL DEFAULT 0, + `summaryformat` tinyint(2) NOT NULL DEFAULT 0, + `attachment` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `publishstate` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'draft', + `lastmodified` bigint(10) NOT NULL DEFAULT 0, + `created` bigint(10) NOT NULL DEFAULT 0, + `usermodified` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_post_iduse_uix` (`id`,`userid`), + KEY `mdl_post_las_ix` (`lastmodified`), + KEY `mdl_post_mod_ix` (`module`), + KEY `mdl_post_sub_ix` (`subject`), + KEY `mdl_post_use_ix` (`usermodified`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Generic post table to hold data blog entries etc in differen'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_post` +-- + +LOCK TABLES `mdl_post` WRITE; +/*!40000 ALTER TABLE `mdl_post` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_post` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_profiling` +-- + +DROP TABLE IF EXISTS `mdl_profiling`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_profiling` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `runid` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `data` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `totalexecutiontime` bigint(10) NOT NULL, + `totalcputime` bigint(10) NOT NULL, + `totalcalls` bigint(10) NOT NULL, + `totalmemory` bigint(10) NOT NULL, + `runreference` tinyint(2) NOT NULL DEFAULT 0, + `runcomment` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `timecreated` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_prof_run_uix` (`runid`), + KEY `mdl_prof_urlrun_ix` (`url`,`runreference`), + KEY `mdl_prof_timrun_ix` (`timecreated`,`runreference`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the results of all the profiling runs'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_profiling` +-- + +LOCK TABLES `mdl_profiling` WRITE; +/*!40000 ALTER TABLE `mdl_profiling` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_profiling` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_qtype_ddimageortext` +-- + +DROP TABLE IF EXISTS `mdl_qtype_ddimageortext`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_qtype_ddimageortext` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `questionid` bigint(10) NOT NULL DEFAULT 0, + `shuffleanswers` smallint(4) NOT NULL DEFAULT 1, + `correctfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `correctfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `partiallycorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `partiallycorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `incorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `incorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `shownumcorrect` tinyint(2) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_qtypddim_que_ix` (`questionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines drag and drop (text or images onto a background imag'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_qtype_ddimageortext` +-- + +LOCK TABLES `mdl_qtype_ddimageortext` WRITE; +/*!40000 ALTER TABLE `mdl_qtype_ddimageortext` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_qtype_ddimageortext` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_qtype_ddimageortext_drags` +-- + +DROP TABLE IF EXISTS `mdl_qtype_ddimageortext_drags`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_qtype_ddimageortext_drags` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `questionid` bigint(10) NOT NULL DEFAULT 0, + `no` bigint(10) NOT NULL DEFAULT 0, + `draggroup` bigint(10) NOT NULL DEFAULT 0, + `infinite` smallint(4) NOT NULL DEFAULT 0, + `label` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_qtypddimdrag_que_ix` (`questionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Images to drag. Actual file names are not stored here we use'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_qtype_ddimageortext_drags` +-- + +LOCK TABLES `mdl_qtype_ddimageortext_drags` WRITE; +/*!40000 ALTER TABLE `mdl_qtype_ddimageortext_drags` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_qtype_ddimageortext_drags` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_qtype_ddimageortext_drops` +-- + +DROP TABLE IF EXISTS `mdl_qtype_ddimageortext_drops`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_qtype_ddimageortext_drops` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `questionid` bigint(10) NOT NULL DEFAULT 0, + `no` bigint(10) NOT NULL DEFAULT 0, + `xleft` bigint(10) NOT NULL DEFAULT 0, + `ytop` bigint(10) NOT NULL DEFAULT 0, + `choice` bigint(10) NOT NULL DEFAULT 0, + `label` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_qtypddimdrop_que_ix` (`questionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Drop boxes'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_qtype_ddimageortext_drops` +-- + +LOCK TABLES `mdl_qtype_ddimageortext_drops` WRITE; +/*!40000 ALTER TABLE `mdl_qtype_ddimageortext_drops` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_qtype_ddimageortext_drops` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_qtype_ddmarker` +-- + +DROP TABLE IF EXISTS `mdl_qtype_ddmarker`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_qtype_ddmarker` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `questionid` bigint(10) NOT NULL DEFAULT 0, + `shuffleanswers` smallint(4) NOT NULL DEFAULT 1, + `correctfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `correctfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `partiallycorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `partiallycorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `incorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `incorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `shownumcorrect` tinyint(2) NOT NULL DEFAULT 0, + `showmisplaced` smallint(4) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_qtypddma_que_ix` (`questionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines drag and drop (text or images onto a background imag'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_qtype_ddmarker` +-- + +LOCK TABLES `mdl_qtype_ddmarker` WRITE; +/*!40000 ALTER TABLE `mdl_qtype_ddmarker` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_qtype_ddmarker` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_qtype_ddmarker_drags` +-- + +DROP TABLE IF EXISTS `mdl_qtype_ddmarker_drags`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_qtype_ddmarker_drags` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `questionid` bigint(10) NOT NULL DEFAULT 0, + `no` bigint(10) NOT NULL DEFAULT 0, + `label` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `infinite` smallint(4) NOT NULL DEFAULT 0, + `noofdrags` bigint(10) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`), + KEY `mdl_qtypddmadrag_que_ix` (`questionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Labels for markers to drag.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_qtype_ddmarker_drags` +-- + +LOCK TABLES `mdl_qtype_ddmarker_drags` WRITE; +/*!40000 ALTER TABLE `mdl_qtype_ddmarker_drags` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_qtype_ddmarker_drags` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_qtype_ddmarker_drops` +-- + +DROP TABLE IF EXISTS `mdl_qtype_ddmarker_drops`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_qtype_ddmarker_drops` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `questionid` bigint(10) NOT NULL DEFAULT 0, + `no` bigint(10) NOT NULL DEFAULT 0, + `shape` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `coords` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `choice` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_qtypddmadrop_que_ix` (`questionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='drop regions'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_qtype_ddmarker_drops` +-- + +LOCK TABLES `mdl_qtype_ddmarker_drops` WRITE; +/*!40000 ALTER TABLE `mdl_qtype_ddmarker_drops` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_qtype_ddmarker_drops` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_qtype_essay_options` +-- + +DROP TABLE IF EXISTS `mdl_qtype_essay_options`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_qtype_essay_options` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `questionid` bigint(10) NOT NULL, + `responseformat` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'editor', + `responserequired` tinyint(2) NOT NULL DEFAULT 1, + `responsefieldlines` smallint(4) NOT NULL DEFAULT 15, + `attachments` smallint(4) NOT NULL DEFAULT 0, + `attachmentsrequired` smallint(4) NOT NULL DEFAULT 0, + `graderinfo` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `graderinfoformat` smallint(4) NOT NULL DEFAULT 0, + `responsetemplate` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `responsetemplateformat` smallint(4) NOT NULL DEFAULT 0, + `maxbytes` bigint(10) NOT NULL DEFAULT 0, + `filetypeslist` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_qtypessaopti_que_uix` (`questionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Extra options for essay questions.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_qtype_essay_options` +-- + +LOCK TABLES `mdl_qtype_essay_options` WRITE; +/*!40000 ALTER TABLE `mdl_qtype_essay_options` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_qtype_essay_options` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_qtype_match_options` +-- + +DROP TABLE IF EXISTS `mdl_qtype_match_options`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_qtype_match_options` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `questionid` bigint(10) NOT NULL DEFAULT 0, + `shuffleanswers` smallint(4) NOT NULL DEFAULT 1, + `correctfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `correctfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `partiallycorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `partiallycorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `incorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `incorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `shownumcorrect` tinyint(2) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_qtypmatcopti_que_uix` (`questionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines the question-type specific options for matching ques'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_qtype_match_options` +-- + +LOCK TABLES `mdl_qtype_match_options` WRITE; +/*!40000 ALTER TABLE `mdl_qtype_match_options` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_qtype_match_options` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_qtype_match_subquestions` +-- + +DROP TABLE IF EXISTS `mdl_qtype_match_subquestions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_qtype_match_subquestions` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `questionid` bigint(10) NOT NULL DEFAULT 0, + `questiontext` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `questiontextformat` tinyint(2) NOT NULL DEFAULT 0, + `answertext` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `mdl_qtypmatcsubq_que_ix` (`questionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The subquestions that make up a matching question'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_qtype_match_subquestions` +-- + +LOCK TABLES `mdl_qtype_match_subquestions` WRITE; +/*!40000 ALTER TABLE `mdl_qtype_match_subquestions` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_qtype_match_subquestions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_qtype_multichoice_options` +-- + +DROP TABLE IF EXISTS `mdl_qtype_multichoice_options`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_qtype_multichoice_options` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `questionid` bigint(10) NOT NULL DEFAULT 0, + `layout` smallint(4) NOT NULL DEFAULT 0, + `single` smallint(4) NOT NULL DEFAULT 0, + `shuffleanswers` smallint(4) NOT NULL DEFAULT 1, + `correctfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `correctfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `partiallycorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `partiallycorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `incorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `incorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `answernumbering` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'abc', + `shownumcorrect` tinyint(2) NOT NULL DEFAULT 0, + `showstandardinstruction` tinyint(2) NOT NULL DEFAULT 1, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_qtypmultopti_que_uix` (`questionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Options for multiple choice questions'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_qtype_multichoice_options` +-- + +LOCK TABLES `mdl_qtype_multichoice_options` WRITE; +/*!40000 ALTER TABLE `mdl_qtype_multichoice_options` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_qtype_multichoice_options` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_qtype_randomsamatch_options` +-- + +DROP TABLE IF EXISTS `mdl_qtype_randomsamatch_options`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_qtype_randomsamatch_options` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `questionid` bigint(10) NOT NULL DEFAULT 0, + `choose` bigint(10) NOT NULL DEFAULT 4, + `subcats` tinyint(2) NOT NULL DEFAULT 1, + `correctfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `correctfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `partiallycorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `partiallycorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `incorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `incorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `shownumcorrect` tinyint(2) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_qtyprandopti_que_uix` (`questionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Info about a random short-answer matching question'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_qtype_randomsamatch_options` +-- + +LOCK TABLES `mdl_qtype_randomsamatch_options` WRITE; +/*!40000 ALTER TABLE `mdl_qtype_randomsamatch_options` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_qtype_randomsamatch_options` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_qtype_shortanswer_options` +-- + +DROP TABLE IF EXISTS `mdl_qtype_shortanswer_options`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_qtype_shortanswer_options` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `questionid` bigint(10) NOT NULL DEFAULT 0, + `usecase` tinyint(2) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_qtypshoropti_que_uix` (`questionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Options for short answer questions'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_qtype_shortanswer_options` +-- + +LOCK TABLES `mdl_qtype_shortanswer_options` WRITE; +/*!40000 ALTER TABLE `mdl_qtype_shortanswer_options` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_qtype_shortanswer_options` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_question` +-- + +DROP TABLE IF EXISTS `mdl_question`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_question` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `category` bigint(10) NOT NULL DEFAULT 0, + `parent` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `questiontext` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `questiontextformat` tinyint(2) NOT NULL DEFAULT 0, + `generalfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `generalfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `defaultmark` decimal(12,7) NOT NULL DEFAULT 1.0000000, + `penalty` decimal(12,7) NOT NULL DEFAULT 0.3333333, + `qtype` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `length` bigint(10) NOT NULL DEFAULT 1, + `stamp` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `version` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `hidden` tinyint(1) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `createdby` bigint(10) DEFAULT NULL, + `modifiedby` bigint(10) DEFAULT NULL, + `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_ques_catidn_uix` (`category`,`idnumber`), + KEY `mdl_ques_qty_ix` (`qtype`), + KEY `mdl_ques_cat_ix` (`category`), + KEY `mdl_ques_par_ix` (`parent`), + KEY `mdl_ques_cre_ix` (`createdby`), + KEY `mdl_ques_mod_ix` (`modifiedby`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The questions themselves'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_question` +-- + +LOCK TABLES `mdl_question` WRITE; +/*!40000 ALTER TABLE `mdl_question` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_question` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_question_answers` +-- + +DROP TABLE IF EXISTS `mdl_question_answers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_question_answers` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `question` bigint(10) NOT NULL DEFAULT 0, + `answer` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `answerformat` tinyint(2) NOT NULL DEFAULT 0, + `fraction` decimal(12,7) NOT NULL DEFAULT 0.0000000, + `feedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `feedbackformat` tinyint(2) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_quesansw_que_ix` (`question`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Answers, with a fractional grade (0-1) and feedback'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_question_answers` +-- + +LOCK TABLES `mdl_question_answers` WRITE; +/*!40000 ALTER TABLE `mdl_question_answers` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_question_answers` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_question_attempt_step_data` +-- + +DROP TABLE IF EXISTS `mdl_question_attempt_step_data`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_question_attempt_step_data` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `attemptstepid` bigint(10) NOT NULL, + `name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_quesattestepdata_att_ix` (`attemptstepid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Each question_attempt_step has an associative array of the d'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_question_attempt_step_data` +-- + +LOCK TABLES `mdl_question_attempt_step_data` WRITE; +/*!40000 ALTER TABLE `mdl_question_attempt_step_data` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_question_attempt_step_data` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_question_attempt_steps` +-- + +DROP TABLE IF EXISTS `mdl_question_attempt_steps`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_question_attempt_steps` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `questionattemptid` bigint(10) NOT NULL, + `sequencenumber` bigint(10) NOT NULL, + `state` varchar(13) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `fraction` decimal(12,7) DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `userid` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_quesattestep_queseq_uix` (`questionattemptid`,`sequencenumber`), + KEY `mdl_quesattestep_que_ix` (`questionattemptid`), + KEY `mdl_quesattestep_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores one step in in a question attempt. As well as the dat'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_question_attempt_steps` +-- + +LOCK TABLES `mdl_question_attempt_steps` WRITE; +/*!40000 ALTER TABLE `mdl_question_attempt_steps` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_question_attempt_steps` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_question_attempts` +-- + +DROP TABLE IF EXISTS `mdl_question_attempts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_question_attempts` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `questionusageid` bigint(10) NOT NULL, + `slot` bigint(10) NOT NULL, + `behaviour` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `questionid` bigint(10) NOT NULL, + `variant` bigint(10) NOT NULL DEFAULT 1, + `maxmark` decimal(12,7) NOT NULL, + `minfraction` decimal(12,7) NOT NULL, + `maxfraction` decimal(12,7) NOT NULL DEFAULT 1.0000000, + `flagged` tinyint(1) NOT NULL DEFAULT 0, + `questionsummary` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `rightanswer` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `responsesummary` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timemodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_quesatte_queslo_uix` (`questionusageid`,`slot`), + KEY `mdl_quesatte_beh_ix` (`behaviour`), + KEY `mdl_quesatte_que_ix` (`questionid`), + KEY `mdl_quesatte_que2_ix` (`questionusageid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Each row here corresponds to an attempt at one question, as '; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_question_attempts` +-- + +LOCK TABLES `mdl_question_attempts` WRITE; +/*!40000 ALTER TABLE `mdl_question_attempts` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_question_attempts` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_question_calculated` +-- + +DROP TABLE IF EXISTS `mdl_question_calculated`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_question_calculated` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `question` bigint(10) NOT NULL DEFAULT 0, + `answer` bigint(10) NOT NULL DEFAULT 0, + `tolerance` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.0', + `tolerancetype` bigint(10) NOT NULL DEFAULT 1, + `correctanswerlength` bigint(10) NOT NULL DEFAULT 2, + `correctanswerformat` bigint(10) NOT NULL DEFAULT 2, + PRIMARY KEY (`id`), + KEY `mdl_quescalc_ans_ix` (`answer`), + KEY `mdl_quescalc_que_ix` (`question`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Options for questions of type calculated'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_question_calculated` +-- + +LOCK TABLES `mdl_question_calculated` WRITE; +/*!40000 ALTER TABLE `mdl_question_calculated` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_question_calculated` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_question_calculated_options` +-- + +DROP TABLE IF EXISTS `mdl_question_calculated_options`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_question_calculated_options` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `question` bigint(10) NOT NULL DEFAULT 0, + `synchronize` tinyint(2) NOT NULL DEFAULT 0, + `single` smallint(4) NOT NULL DEFAULT 0, + `shuffleanswers` smallint(4) NOT NULL DEFAULT 0, + `correctfeedback` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `correctfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `partiallycorrectfeedback` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `partiallycorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `incorrectfeedback` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `incorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `answernumbering` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'abc', + `shownumcorrect` tinyint(2) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_quescalcopti_que_ix` (`question`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Options for questions of type calculated'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_question_calculated_options` +-- + +LOCK TABLES `mdl_question_calculated_options` WRITE; +/*!40000 ALTER TABLE `mdl_question_calculated_options` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_question_calculated_options` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_question_categories` +-- + +DROP TABLE IF EXISTS `mdl_question_categories`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_question_categories` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `contextid` bigint(10) NOT NULL DEFAULT 0, + `info` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `infoformat` tinyint(2) NOT NULL DEFAULT 0, + `stamp` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `parent` bigint(10) NOT NULL DEFAULT 0, + `sortorder` bigint(10) NOT NULL DEFAULT 999, + `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_quescate_consta_uix` (`contextid`,`stamp`), + UNIQUE KEY `mdl_quescate_conidn_uix` (`contextid`,`idnumber`), + KEY `mdl_quescate_con_ix` (`contextid`), + KEY `mdl_quescate_par_ix` (`parent`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Categories are for grouping questions'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_question_categories` +-- + +LOCK TABLES `mdl_question_categories` WRITE; +/*!40000 ALTER TABLE `mdl_question_categories` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_question_categories` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_question_dataset_definitions` +-- + +DROP TABLE IF EXISTS `mdl_question_dataset_definitions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_question_dataset_definitions` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `category` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `type` bigint(10) NOT NULL DEFAULT 0, + `options` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `itemcount` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_quesdatadefi_cat_ix` (`category`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Organises and stores properties for dataset items'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_question_dataset_definitions` +-- + +LOCK TABLES `mdl_question_dataset_definitions` WRITE; +/*!40000 ALTER TABLE `mdl_question_dataset_definitions` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_question_dataset_definitions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_question_dataset_items` +-- + +DROP TABLE IF EXISTS `mdl_question_dataset_items`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_question_dataset_items` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `definition` bigint(10) NOT NULL DEFAULT 0, + `itemnumber` bigint(10) NOT NULL DEFAULT 0, + `value` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `mdl_quesdataitem_def_ix` (`definition`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Individual dataset items'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_question_dataset_items` +-- + +LOCK TABLES `mdl_question_dataset_items` WRITE; +/*!40000 ALTER TABLE `mdl_question_dataset_items` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_question_dataset_items` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_question_datasets` +-- + +DROP TABLE IF EXISTS `mdl_question_datasets`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_question_datasets` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `question` bigint(10) NOT NULL DEFAULT 0, + `datasetdefinition` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_quesdata_quedat_ix` (`question`,`datasetdefinition`), + KEY `mdl_quesdata_que_ix` (`question`), + KEY `mdl_quesdata_dat_ix` (`datasetdefinition`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Many-many relation between questions and dataset definitions'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_question_datasets` +-- + +LOCK TABLES `mdl_question_datasets` WRITE; +/*!40000 ALTER TABLE `mdl_question_datasets` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_question_datasets` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_question_ddwtos` +-- + +DROP TABLE IF EXISTS `mdl_question_ddwtos`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_question_ddwtos` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `questionid` bigint(10) NOT NULL DEFAULT 0, + `shuffleanswers` smallint(4) NOT NULL DEFAULT 1, + `correctfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `correctfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `partiallycorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `partiallycorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `incorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `incorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `shownumcorrect` tinyint(2) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_quesddwt_que_ix` (`questionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines drag and drop (words into sentences) questions'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_question_ddwtos` +-- + +LOCK TABLES `mdl_question_ddwtos` WRITE; +/*!40000 ALTER TABLE `mdl_question_ddwtos` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_question_ddwtos` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_question_gapselect` +-- + +DROP TABLE IF EXISTS `mdl_question_gapselect`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_question_gapselect` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `questionid` bigint(10) NOT NULL DEFAULT 0, + `shuffleanswers` smallint(4) NOT NULL DEFAULT 1, + `correctfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `correctfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `partiallycorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `partiallycorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `incorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `incorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, + `shownumcorrect` tinyint(2) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_quesgaps_que_ix` (`questionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines select missing words questions'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_question_gapselect` +-- + +LOCK TABLES `mdl_question_gapselect` WRITE; +/*!40000 ALTER TABLE `mdl_question_gapselect` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_question_gapselect` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_question_hints` +-- + +DROP TABLE IF EXISTS `mdl_question_hints`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_question_hints` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `questionid` bigint(10) NOT NULL, + `hint` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `hintformat` smallint(4) NOT NULL DEFAULT 0, + `shownumcorrect` tinyint(1) DEFAULT NULL, + `clearwrong` tinyint(1) DEFAULT NULL, + `options` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_queshint_que_ix` (`questionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the the part of the question definition that gives di'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_question_hints` +-- + +LOCK TABLES `mdl_question_hints` WRITE; +/*!40000 ALTER TABLE `mdl_question_hints` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_question_hints` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_question_multianswer` +-- + +DROP TABLE IF EXISTS `mdl_question_multianswer`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_question_multianswer` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `question` bigint(10) NOT NULL DEFAULT 0, + `sequence` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_quesmult_que_ix` (`question`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Options for multianswer questions'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_question_multianswer` +-- + +LOCK TABLES `mdl_question_multianswer` WRITE; +/*!40000 ALTER TABLE `mdl_question_multianswer` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_question_multianswer` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_question_numerical` +-- + +DROP TABLE IF EXISTS `mdl_question_numerical`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_question_numerical` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `question` bigint(10) NOT NULL DEFAULT 0, + `answer` bigint(10) NOT NULL DEFAULT 0, + `tolerance` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.0', + PRIMARY KEY (`id`), + KEY `mdl_quesnume_ans_ix` (`answer`), + KEY `mdl_quesnume_que_ix` (`question`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Options for numerical questions.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_question_numerical` +-- + +LOCK TABLES `mdl_question_numerical` WRITE; +/*!40000 ALTER TABLE `mdl_question_numerical` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_question_numerical` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_question_numerical_options` +-- + +DROP TABLE IF EXISTS `mdl_question_numerical_options`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_question_numerical_options` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `question` bigint(10) NOT NULL DEFAULT 0, + `showunits` smallint(4) NOT NULL DEFAULT 0, + `unitsleft` smallint(4) NOT NULL DEFAULT 0, + `unitgradingtype` smallint(4) NOT NULL DEFAULT 0, + `unitpenalty` decimal(12,7) NOT NULL DEFAULT 0.1000000, + PRIMARY KEY (`id`), + KEY `mdl_quesnumeopti_que_ix` (`question`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Options for questions of type numerical This table is also u'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_question_numerical_options` +-- + +LOCK TABLES `mdl_question_numerical_options` WRITE; +/*!40000 ALTER TABLE `mdl_question_numerical_options` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_question_numerical_options` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_question_numerical_units` +-- + +DROP TABLE IF EXISTS `mdl_question_numerical_units`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_question_numerical_units` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `question` bigint(10) NOT NULL DEFAULT 0, + `multiplier` decimal(38,19) NOT NULL DEFAULT 1.0000000000000000000, + `unit` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_quesnumeunit_queuni_uix` (`question`,`unit`), + KEY `mdl_quesnumeunit_que_ix` (`question`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Optional unit options for numerical questions. This table is'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_question_numerical_units` +-- + +LOCK TABLES `mdl_question_numerical_units` WRITE; +/*!40000 ALTER TABLE `mdl_question_numerical_units` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_question_numerical_units` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_question_response_analysis` +-- + +DROP TABLE IF EXISTS `mdl_question_response_analysis`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_question_response_analysis` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `hashcode` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `whichtries` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `timemodified` bigint(10) NOT NULL, + `questionid` bigint(10) NOT NULL, + `variant` bigint(10) DEFAULT NULL, + `subqid` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `aid` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `response` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `credit` decimal(15,5) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Analysis of student responses given to questions.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_question_response_analysis` +-- + +LOCK TABLES `mdl_question_response_analysis` WRITE; +/*!40000 ALTER TABLE `mdl_question_response_analysis` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_question_response_analysis` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_question_response_count` +-- + +DROP TABLE IF EXISTS `mdl_question_response_count`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_question_response_count` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `analysisid` bigint(10) NOT NULL, + `try` bigint(10) NOT NULL, + `rcount` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_quesrespcoun_ana_ix` (`analysisid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Count for each responses for each try at a question.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_question_response_count` +-- + +LOCK TABLES `mdl_question_response_count` WRITE; +/*!40000 ALTER TABLE `mdl_question_response_count` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_question_response_count` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_question_statistics` +-- + +DROP TABLE IF EXISTS `mdl_question_statistics`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_question_statistics` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `hashcode` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `timemodified` bigint(10) NOT NULL, + `questionid` bigint(10) NOT NULL, + `slot` bigint(10) DEFAULT NULL, + `subquestion` smallint(4) NOT NULL, + `variant` bigint(10) DEFAULT NULL, + `s` bigint(10) NOT NULL DEFAULT 0, + `effectiveweight` decimal(15,5) DEFAULT NULL, + `negcovar` tinyint(2) NOT NULL DEFAULT 0, + `discriminationindex` decimal(15,5) DEFAULT NULL, + `discriminativeefficiency` decimal(15,5) DEFAULT NULL, + `sd` decimal(15,10) DEFAULT NULL, + `facility` decimal(15,10) DEFAULT NULL, + `subquestions` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `maxmark` decimal(12,7) DEFAULT NULL, + `positions` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `randomguessscore` decimal(12,7) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Statistics for individual questions used in an activity.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_question_statistics` +-- + +LOCK TABLES `mdl_question_statistics` WRITE; +/*!40000 ALTER TABLE `mdl_question_statistics` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_question_statistics` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_question_truefalse` +-- + +DROP TABLE IF EXISTS `mdl_question_truefalse`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_question_truefalse` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `question` bigint(10) NOT NULL DEFAULT 0, + `trueanswer` bigint(10) NOT NULL DEFAULT 0, + `falseanswer` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_questrue_que_ix` (`question`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Options for True-False questions'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_question_truefalse` +-- + +LOCK TABLES `mdl_question_truefalse` WRITE; +/*!40000 ALTER TABLE `mdl_question_truefalse` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_question_truefalse` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_question_usages` +-- + +DROP TABLE IF EXISTS `mdl_question_usages`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_question_usages` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `contextid` bigint(10) NOT NULL, + `component` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `preferredbehaviour` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `mdl_quesusag_con_ix` (`contextid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table''s main purpose it to assign a unique id to each a'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_question_usages` +-- + +LOCK TABLES `mdl_question_usages` WRITE; +/*!40000 ALTER TABLE `mdl_question_usages` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_question_usages` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_quiz` +-- + +DROP TABLE IF EXISTS `mdl_quiz`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_quiz` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `introformat` smallint(4) NOT NULL DEFAULT 0, + `timeopen` bigint(10) NOT NULL DEFAULT 0, + `timeclose` bigint(10) NOT NULL DEFAULT 0, + `timelimit` bigint(10) NOT NULL DEFAULT 0, + `overduehandling` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'autoabandon', + `graceperiod` bigint(10) NOT NULL DEFAULT 0, + `preferredbehaviour` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `canredoquestions` smallint(4) NOT NULL DEFAULT 0, + `attempts` mediumint(6) NOT NULL DEFAULT 0, + `attemptonlast` smallint(4) NOT NULL DEFAULT 0, + `grademethod` smallint(4) NOT NULL DEFAULT 1, + `decimalpoints` smallint(4) NOT NULL DEFAULT 2, + `questiondecimalpoints` smallint(4) NOT NULL DEFAULT -1, + `reviewattempt` mediumint(6) NOT NULL DEFAULT 0, + `reviewcorrectness` mediumint(6) NOT NULL DEFAULT 0, + `reviewmarks` mediumint(6) NOT NULL DEFAULT 0, + `reviewspecificfeedback` mediumint(6) NOT NULL DEFAULT 0, + `reviewgeneralfeedback` mediumint(6) NOT NULL DEFAULT 0, + `reviewrightanswer` mediumint(6) NOT NULL DEFAULT 0, + `reviewoverallfeedback` mediumint(6) NOT NULL DEFAULT 0, + `questionsperpage` bigint(10) NOT NULL DEFAULT 0, + `navmethod` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'free', + `shuffleanswers` smallint(4) NOT NULL DEFAULT 0, + `sumgrades` decimal(10,5) NOT NULL DEFAULT 0.00000, + `grade` decimal(10,5) NOT NULL DEFAULT 0.00000, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `subnet` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `browsersecurity` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `delay1` bigint(10) NOT NULL DEFAULT 0, + `delay2` bigint(10) NOT NULL DEFAULT 0, + `showuserpicture` smallint(4) NOT NULL DEFAULT 0, + `showblocks` smallint(4) NOT NULL DEFAULT 0, + `completionattemptsexhausted` tinyint(1) DEFAULT 0, + `completionpass` tinyint(1) DEFAULT 0, + `completionminattempts` bigint(10) NOT NULL DEFAULT 0, + `allowofflineattempts` tinyint(1) DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_quiz_cou_ix` (`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The settings for each quiz.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_quiz` +-- + +LOCK TABLES `mdl_quiz` WRITE; +/*!40000 ALTER TABLE `mdl_quiz` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_quiz` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_quiz_attempts` +-- + +DROP TABLE IF EXISTS `mdl_quiz_attempts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_quiz_attempts` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `quiz` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `attempt` mediumint(6) NOT NULL DEFAULT 0, + `uniqueid` bigint(10) NOT NULL DEFAULT 0, + `layout` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `currentpage` bigint(10) NOT NULL DEFAULT 0, + `preview` smallint(3) NOT NULL DEFAULT 0, + `state` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'inprogress', + `timestart` bigint(10) NOT NULL DEFAULT 0, + `timefinish` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `timemodifiedoffline` bigint(10) NOT NULL DEFAULT 0, + `timecheckstate` bigint(10) DEFAULT 0, + `sumgrades` decimal(10,5) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_quizatte_quiuseatt_uix` (`quiz`,`userid`,`attempt`), + UNIQUE KEY `mdl_quizatte_uni_uix` (`uniqueid`), + KEY `mdl_quizatte_statim_ix` (`state`,`timecheckstate`), + KEY `mdl_quizatte_qui_ix` (`quiz`), + KEY `mdl_quizatte_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores users attempts at quizzes.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_quiz_attempts` +-- + +LOCK TABLES `mdl_quiz_attempts` WRITE; +/*!40000 ALTER TABLE `mdl_quiz_attempts` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_quiz_attempts` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_quiz_feedback` +-- + +DROP TABLE IF EXISTS `mdl_quiz_feedback`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_quiz_feedback` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `quizid` bigint(10) NOT NULL DEFAULT 0, + `feedbacktext` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `feedbacktextformat` tinyint(2) NOT NULL DEFAULT 0, + `mingrade` decimal(10,5) NOT NULL DEFAULT 0.00000, + `maxgrade` decimal(10,5) NOT NULL DEFAULT 0.00000, + PRIMARY KEY (`id`), + KEY `mdl_quizfeed_qui_ix` (`quizid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Feedback given to students based on which grade band their o'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_quiz_feedback` +-- + +LOCK TABLES `mdl_quiz_feedback` WRITE; +/*!40000 ALTER TABLE `mdl_quiz_feedback` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_quiz_feedback` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_quiz_grades` +-- + +DROP TABLE IF EXISTS `mdl_quiz_grades`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_quiz_grades` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `quiz` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `grade` decimal(10,5) NOT NULL DEFAULT 0.00000, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_quizgrad_use_ix` (`userid`), + KEY `mdl_quizgrad_qui_ix` (`quiz`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the overall grade for each user on the quiz, based on'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_quiz_grades` +-- + +LOCK TABLES `mdl_quiz_grades` WRITE; +/*!40000 ALTER TABLE `mdl_quiz_grades` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_quiz_grades` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_quiz_overrides` +-- + +DROP TABLE IF EXISTS `mdl_quiz_overrides`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_quiz_overrides` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `quiz` bigint(10) NOT NULL DEFAULT 0, + `groupid` bigint(10) DEFAULT NULL, + `userid` bigint(10) DEFAULT NULL, + `timeopen` bigint(10) DEFAULT NULL, + `timeclose` bigint(10) DEFAULT NULL, + `timelimit` bigint(10) DEFAULT NULL, + `attempts` mediumint(6) DEFAULT NULL, + `password` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_quizover_qui_ix` (`quiz`), + KEY `mdl_quizover_gro_ix` (`groupid`), + KEY `mdl_quizover_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The overrides to quiz settings on a per-user and per-group b'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_quiz_overrides` +-- + +LOCK TABLES `mdl_quiz_overrides` WRITE; +/*!40000 ALTER TABLE `mdl_quiz_overrides` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_quiz_overrides` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_quiz_overview_regrades` +-- + +DROP TABLE IF EXISTS `mdl_quiz_overview_regrades`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_quiz_overview_regrades` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `questionusageid` bigint(10) NOT NULL, + `slot` bigint(10) NOT NULL, + `newfraction` decimal(12,7) DEFAULT NULL, + `oldfraction` decimal(12,7) DEFAULT NULL, + `regraded` smallint(4) NOT NULL, + `timemodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_quizoverregr_queslo_ix` (`questionusageid`,`slot`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table records which question attempts need regrading an'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_quiz_overview_regrades` +-- + +LOCK TABLES `mdl_quiz_overview_regrades` WRITE; +/*!40000 ALTER TABLE `mdl_quiz_overview_regrades` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_quiz_overview_regrades` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_quiz_reports` +-- + +DROP TABLE IF EXISTS `mdl_quiz_reports`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_quiz_reports` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `displayorder` bigint(10) NOT NULL, + `capability` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_quizrepo_nam_uix` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Lists all the installed quiz reports and their display order'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_quiz_reports` +-- + +LOCK TABLES `mdl_quiz_reports` WRITE; +/*!40000 ALTER TABLE `mdl_quiz_reports` DISABLE KEYS */; +INSERT INTO `mdl_quiz_reports` VALUES (1,'grading',6000,'mod/quiz:grade'),(2,'overview',10000,NULL),(3,'responses',9000,NULL),(4,'statistics',8000,'quiz/statistics:view'); +/*!40000 ALTER TABLE `mdl_quiz_reports` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_quiz_sections` +-- + +DROP TABLE IF EXISTS `mdl_quiz_sections`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_quiz_sections` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `quizid` bigint(10) NOT NULL, + `firstslot` bigint(10) NOT NULL, + `heading` varchar(1333) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `shufflequestions` smallint(4) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_quizsect_quifir_uix` (`quizid`,`firstslot`), + KEY `mdl_quizsect_qui_ix` (`quizid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores sections of a quiz with section name (heading), from '; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_quiz_sections` +-- + +LOCK TABLES `mdl_quiz_sections` WRITE; +/*!40000 ALTER TABLE `mdl_quiz_sections` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_quiz_sections` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_quiz_slot_tags` +-- + +DROP TABLE IF EXISTS `mdl_quiz_slot_tags`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_quiz_slot_tags` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `slotid` bigint(10) DEFAULT NULL, + `tagid` bigint(10) DEFAULT NULL, + `tagname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_quizslottags_slo_ix` (`slotid`), + KEY `mdl_quizslottags_tag_ix` (`tagid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores data about the tags that a question must have so that'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_quiz_slot_tags` +-- + +LOCK TABLES `mdl_quiz_slot_tags` WRITE; +/*!40000 ALTER TABLE `mdl_quiz_slot_tags` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_quiz_slot_tags` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_quiz_slots` +-- + +DROP TABLE IF EXISTS `mdl_quiz_slots`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_quiz_slots` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `slot` bigint(10) NOT NULL, + `quizid` bigint(10) NOT NULL DEFAULT 0, + `page` bigint(10) NOT NULL, + `requireprevious` smallint(4) NOT NULL DEFAULT 0, + `questionid` bigint(10) NOT NULL DEFAULT 0, + `questioncategoryid` bigint(10) DEFAULT NULL, + `includingsubcategories` smallint(4) DEFAULT NULL, + `maxmark` decimal(12,7) NOT NULL DEFAULT 0.0000000, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_quizslot_quislo_uix` (`quizid`,`slot`), + KEY `mdl_quizslot_qui_ix` (`quizid`), + KEY `mdl_quizslot_que_ix` (`questionid`), + KEY `mdl_quizslot_que2_ix` (`questioncategoryid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the question used in a quiz, with the order, and for '; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_quiz_slots` +-- + +LOCK TABLES `mdl_quiz_slots` WRITE; +/*!40000 ALTER TABLE `mdl_quiz_slots` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_quiz_slots` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_quiz_statistics` +-- + +DROP TABLE IF EXISTS `mdl_quiz_statistics`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_quiz_statistics` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `hashcode` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `whichattempts` smallint(4) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `firstattemptscount` bigint(10) NOT NULL, + `highestattemptscount` bigint(10) NOT NULL, + `lastattemptscount` bigint(10) NOT NULL, + `allattemptscount` bigint(10) NOT NULL, + `firstattemptsavg` decimal(15,5) DEFAULT NULL, + `highestattemptsavg` decimal(15,5) DEFAULT NULL, + `lastattemptsavg` decimal(15,5) DEFAULT NULL, + `allattemptsavg` decimal(15,5) DEFAULT NULL, + `median` decimal(15,5) DEFAULT NULL, + `standarddeviation` decimal(15,5) DEFAULT NULL, + `skewness` decimal(15,10) DEFAULT NULL, + `kurtosis` decimal(15,5) DEFAULT NULL, + `cic` decimal(15,10) DEFAULT NULL, + `errorratio` decimal(15,10) DEFAULT NULL, + `standarderror` decimal(15,10) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='table to cache results from analysis done in statistics repo'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_quiz_statistics` +-- + +LOCK TABLES `mdl_quiz_statistics` WRITE; +/*!40000 ALTER TABLE `mdl_quiz_statistics` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_quiz_statistics` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_quizaccess_seb_quizsettings` +-- + +DROP TABLE IF EXISTS `mdl_quizaccess_seb_quizsettings`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_quizaccess_seb_quizsettings` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `quizid` bigint(10) NOT NULL, + `cmid` bigint(10) NOT NULL, + `templateid` bigint(10) NOT NULL, + `requiresafeexambrowser` tinyint(1) NOT NULL, + `showsebtaskbar` tinyint(1) DEFAULT NULL, + `showwificontrol` tinyint(1) DEFAULT NULL, + `showreloadbutton` tinyint(1) DEFAULT NULL, + `showtime` tinyint(1) DEFAULT NULL, + `showkeyboardlayout` tinyint(1) DEFAULT NULL, + `allowuserquitseb` tinyint(1) DEFAULT NULL, + `quitpassword` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `linkquitseb` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `userconfirmquit` tinyint(1) DEFAULT NULL, + `enableaudiocontrol` tinyint(1) DEFAULT NULL, + `muteonstartup` tinyint(1) DEFAULT NULL, + `allowspellchecking` tinyint(1) DEFAULT NULL, + `allowreloadinexam` tinyint(1) DEFAULT NULL, + `activateurlfiltering` tinyint(1) DEFAULT NULL, + `filterembeddedcontent` tinyint(1) DEFAULT NULL, + `expressionsallowed` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `regexallowed` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `expressionsblocked` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `regexblocked` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `allowedbrowserexamkeys` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `showsebdownloadlink` tinyint(1) DEFAULT NULL, + `usermodified` bigint(10) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_quizsebquiz_qui_uix` (`quizid`), + UNIQUE KEY `mdl_quizsebquiz_cmi_uix` (`cmid`), + KEY `mdl_quizsebquiz_tem_ix` (`templateid`), + KEY `mdl_quizsebquiz_use_ix` (`usermodified`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the quiz level Safe Exam Browser configuration.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_quizaccess_seb_quizsettings` +-- + +LOCK TABLES `mdl_quizaccess_seb_quizsettings` WRITE; +/*!40000 ALTER TABLE `mdl_quizaccess_seb_quizsettings` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_quizaccess_seb_quizsettings` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_quizaccess_seb_template` +-- + +DROP TABLE IF EXISTS `mdl_quizaccess_seb_template`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_quizaccess_seb_template` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `enabled` tinyint(1) NOT NULL, + `sortorder` bigint(10) NOT NULL, + `usermodified` bigint(10) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_quizsebtemp_use_ix` (`usermodified`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Templates for Safe Exam Browser configuration.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_quizaccess_seb_template` +-- + +LOCK TABLES `mdl_quizaccess_seb_template` WRITE; +/*!40000 ALTER TABLE `mdl_quizaccess_seb_template` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_quizaccess_seb_template` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_rating` +-- + +DROP TABLE IF EXISTS `mdl_rating`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_rating` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `contextid` bigint(10) NOT NULL, + `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `ratingarea` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `itemid` bigint(10) NOT NULL, + `scaleid` bigint(10) NOT NULL, + `rating` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_rati_comratconite_ix` (`component`,`ratingarea`,`contextid`,`itemid`), + KEY `mdl_rati_con_ix` (`contextid`), + KEY `mdl_rati_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='moodle ratings'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_rating` +-- + +LOCK TABLES `mdl_rating` WRITE; +/*!40000 ALTER TABLE `mdl_rating` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_rating` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_registration_hubs` +-- + +DROP TABLE IF EXISTS `mdl_registration_hubs`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_registration_hubs` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `hubname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `huburl` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `confirmed` tinyint(1) NOT NULL DEFAULT 0, + `secret` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='hub where the site is registered on with their associated to'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_registration_hubs` +-- + +LOCK TABLES `mdl_registration_hubs` WRITE; +/*!40000 ALTER TABLE `mdl_registration_hubs` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_registration_hubs` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_repository` +-- + +DROP TABLE IF EXISTS `mdl_repository`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_repository` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `visible` tinyint(1) DEFAULT 1, + `sortorder` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table contains one entry for every configured external '; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_repository` +-- + +LOCK TABLES `mdl_repository` WRITE; +/*!40000 ALTER TABLE `mdl_repository` DISABLE KEYS */; +INSERT INTO `mdl_repository` VALUES (1,'areafiles',1,1),(2,'contentbank',1,2),(3,'local',1,3),(4,'recent',1,4),(5,'upload',1,5),(6,'url',1,6),(7,'user',1,7),(8,'wikimedia',1,8); +/*!40000 ALTER TABLE `mdl_repository` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_repository_instance_config` +-- + +DROP TABLE IF EXISTS `mdl_repository_instance_config`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_repository_instance_config` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `instanceid` bigint(10) NOT NULL, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The config for intances'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_repository_instance_config` +-- + +LOCK TABLES `mdl_repository_instance_config` WRITE; +/*!40000 ALTER TABLE `mdl_repository_instance_config` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_repository_instance_config` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_repository_instances` +-- + +DROP TABLE IF EXISTS `mdl_repository_instances`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_repository_instances` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `typeid` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL DEFAULT 0, + `contextid` bigint(10) NOT NULL, + `username` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `password` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timecreated` bigint(10) DEFAULT NULL, + `timemodified` bigint(10) DEFAULT NULL, + `readonly` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table contains one entry for every configured external '; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_repository_instances` +-- + +LOCK TABLES `mdl_repository_instances` WRITE; +/*!40000 ALTER TABLE `mdl_repository_instances` DISABLE KEYS */; +INSERT INTO `mdl_repository_instances` VALUES (1,'',1,0,1,NULL,NULL,1619623713,1619623713,0),(2,'',2,0,1,NULL,NULL,1619623713,1619623713,0),(3,'',3,0,1,NULL,NULL,1619623714,1619623714,0),(4,'',4,0,1,NULL,NULL,1619623714,1619623714,0),(5,'',5,0,1,NULL,NULL,1619623714,1619623714,0),(6,'',6,0,1,NULL,NULL,1619623714,1619623714,0),(7,'',7,0,1,NULL,NULL,1619623715,1619623715,0),(8,'',8,0,1,NULL,NULL,1619623715,1619623715,0); +/*!40000 ALTER TABLE `mdl_repository_instances` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_repository_onedrive_access` +-- + +DROP TABLE IF EXISTS `mdl_repository_onedrive_access`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_repository_onedrive_access` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `timemodified` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `usermodified` bigint(10) NOT NULL, + `permissionid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `itemid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `mdl_repoonedacce_use_ix` (`usermodified`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='List of temporary access grants.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_repository_onedrive_access` +-- + +LOCK TABLES `mdl_repository_onedrive_access` WRITE; +/*!40000 ALTER TABLE `mdl_repository_onedrive_access` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_repository_onedrive_access` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_resource` +-- + +DROP TABLE IF EXISTS `mdl_resource`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_resource` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `introformat` smallint(4) NOT NULL DEFAULT 0, + `tobemigrated` smallint(4) NOT NULL DEFAULT 0, + `legacyfiles` smallint(4) NOT NULL DEFAULT 0, + `legacyfileslast` bigint(10) DEFAULT NULL, + `display` smallint(4) NOT NULL DEFAULT 0, + `displayoptions` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `filterfiles` smallint(4) NOT NULL DEFAULT 0, + `revision` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_reso_cou_ix` (`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Each record is one resource and its config data'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_resource` +-- + +LOCK TABLES `mdl_resource` WRITE; +/*!40000 ALTER TABLE `mdl_resource` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_resource` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_resource_old` +-- + +DROP TABLE IF EXISTS `mdl_resource_old`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_resource_old` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `type` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `reference` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `introformat` smallint(4) NOT NULL DEFAULT 0, + `alltext` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `popup` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `options` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `oldid` bigint(10) NOT NULL, + `cmid` bigint(10) DEFAULT NULL, + `newmodule` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `newid` bigint(10) DEFAULT NULL, + `migrated` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_resoold_old_uix` (`oldid`), + KEY `mdl_resoold_cmi_ix` (`cmid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='backup of all old resource instances from 1.9'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_resource_old` +-- + +LOCK TABLES `mdl_resource_old` WRITE; +/*!40000 ALTER TABLE `mdl_resource_old` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_resource_old` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_role` +-- + +DROP TABLE IF EXISTS `mdl_role`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_role` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `shortname` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `sortorder` bigint(10) NOT NULL DEFAULT 0, + `archetype` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_role_sor_uix` (`sortorder`), + UNIQUE KEY `mdl_role_sho_uix` (`shortname`) +) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='moodle roles'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_role` +-- + +LOCK TABLES `mdl_role` WRITE; +/*!40000 ALTER TABLE `mdl_role` DISABLE KEYS */; +INSERT INTO `mdl_role` VALUES (1,'','manager','',1,'manager'),(2,'','coursecreator','',2,'coursecreator'),(3,'','editingteacher','',3,'editingteacher'),(4,'','teacher','',4,'teacher'),(5,'','student','',5,'student'),(6,'','guest','',6,'guest'),(7,'','user','',7,'user'),(8,'','frontpage','',8,'frontpage'); +/*!40000 ALTER TABLE `mdl_role` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_role_allow_assign` +-- + +DROP TABLE IF EXISTS `mdl_role_allow_assign`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_role_allow_assign` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `roleid` bigint(10) NOT NULL DEFAULT 0, + `allowassign` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_rolealloassi_rolall_uix` (`roleid`,`allowassign`), + KEY `mdl_rolealloassi_rol_ix` (`roleid`), + KEY `mdl_rolealloassi_all_ix` (`allowassign`) +) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='this defines what role can assign what role'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_role_allow_assign` +-- + +LOCK TABLES `mdl_role_allow_assign` WRITE; +/*!40000 ALTER TABLE `mdl_role_allow_assign` DISABLE KEYS */; +INSERT INTO `mdl_role_allow_assign` VALUES (1,1,1),(2,1,2),(3,1,3),(4,1,4),(5,1,5),(6,3,4),(7,3,5); +/*!40000 ALTER TABLE `mdl_role_allow_assign` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_role_allow_override` +-- + +DROP TABLE IF EXISTS `mdl_role_allow_override`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_role_allow_override` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `roleid` bigint(10) NOT NULL DEFAULT 0, + `allowoverride` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_rolealloover_rolall_uix` (`roleid`,`allowoverride`), + KEY `mdl_rolealloover_rol_ix` (`roleid`), + KEY `mdl_rolealloover_all_ix` (`allowoverride`) +) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='this defines what role can override what role'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_role_allow_override` +-- + +LOCK TABLES `mdl_role_allow_override` WRITE; +/*!40000 ALTER TABLE `mdl_role_allow_override` DISABLE KEYS */; +INSERT INTO `mdl_role_allow_override` VALUES (1,1,1),(2,1,2),(3,1,3),(4,1,4),(5,1,5),(6,1,6),(7,1,7),(8,1,8),(9,3,4),(10,3,5),(11,3,6); +/*!40000 ALTER TABLE `mdl_role_allow_override` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_role_allow_switch` +-- + +DROP TABLE IF EXISTS `mdl_role_allow_switch`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_role_allow_switch` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `roleid` bigint(10) NOT NULL, + `allowswitch` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_rolealloswit_rolall_uix` (`roleid`,`allowswitch`), + KEY `mdl_rolealloswit_rol_ix` (`roleid`), + KEY `mdl_rolealloswit_all_ix` (`allowswitch`) +) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table stores which which other roles a user is allowed '; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_role_allow_switch` +-- + +LOCK TABLES `mdl_role_allow_switch` WRITE; +/*!40000 ALTER TABLE `mdl_role_allow_switch` DISABLE KEYS */; +INSERT INTO `mdl_role_allow_switch` VALUES (1,1,3),(2,1,4),(3,1,5),(4,1,6),(5,3,4),(6,3,5),(7,3,6),(8,4,5),(9,4,6); +/*!40000 ALTER TABLE `mdl_role_allow_switch` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_role_allow_view` +-- + +DROP TABLE IF EXISTS `mdl_role_allow_view`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_role_allow_view` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `roleid` bigint(10) NOT NULL, + `allowview` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_rolealloview_rolall_uix` (`roleid`,`allowview`), + KEY `mdl_rolealloview_rol_ix` (`roleid`), + KEY `mdl_rolealloview_all_ix` (`allowview`) +) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table stores which which other roles a user is allowed '; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_role_allow_view` +-- + +LOCK TABLES `mdl_role_allow_view` WRITE; +/*!40000 ALTER TABLE `mdl_role_allow_view` DISABLE KEYS */; +INSERT INTO `mdl_role_allow_view` VALUES (1,1,1),(2,1,2),(3,1,3),(4,1,4),(5,1,5),(6,1,6),(7,1,7),(8,1,8),(9,2,2),(10,2,3),(11,2,4),(12,2,5),(13,3,2),(14,3,3),(15,3,4),(16,3,5),(17,4,2),(18,4,3),(19,4,4),(20,4,5),(21,5,2),(22,5,3),(23,5,4),(24,5,5); +/*!40000 ALTER TABLE `mdl_role_allow_view` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_role_assignments` +-- + +DROP TABLE IF EXISTS `mdl_role_assignments`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_role_assignments` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `roleid` bigint(10) NOT NULL DEFAULT 0, + `contextid` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `modifierid` bigint(10) NOT NULL DEFAULT 0, + `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `itemid` bigint(10) NOT NULL DEFAULT 0, + `sortorder` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_roleassi_sor_ix` (`sortorder`), + KEY `mdl_roleassi_rolcon_ix` (`roleid`,`contextid`), + KEY `mdl_roleassi_useconrol_ix` (`userid`,`contextid`,`roleid`), + KEY `mdl_roleassi_comiteuse_ix` (`component`,`itemid`,`userid`), + KEY `mdl_roleassi_rol_ix` (`roleid`), + KEY `mdl_roleassi_con_ix` (`contextid`), + KEY `mdl_roleassi_use_ix` (`userid`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='assigning roles in different context'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_role_assignments` +-- + +LOCK TABLES `mdl_role_assignments` WRITE; +/*!40000 ALTER TABLE `mdl_role_assignments` DISABLE KEYS */; +INSERT INTO `mdl_role_assignments` VALUES (1,1,2,6,1619624454,2,'',0,0); +/*!40000 ALTER TABLE `mdl_role_assignments` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_role_capabilities` +-- + +DROP TABLE IF EXISTS `mdl_role_capabilities`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_role_capabilities` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `contextid` bigint(10) NOT NULL DEFAULT 0, + `roleid` bigint(10) NOT NULL DEFAULT 0, + `capability` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `permission` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `modifierid` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_rolecapa_rolconcap_uix` (`roleid`,`contextid`,`capability`), + KEY `mdl_rolecapa_rol_ix` (`roleid`), + KEY `mdl_rolecapa_con_ix` (`contextid`), + KEY `mdl_rolecapa_mod_ix` (`modifierid`), + KEY `mdl_rolecapa_cap_ix` (`capability`) +) ENGINE=InnoDB AUTO_INCREMENT=1465 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='permission has to be signed, overriding a capability for a p'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_role_capabilities` +-- + +LOCK TABLES `mdl_role_capabilities` WRITE; +/*!40000 ALTER TABLE `mdl_role_capabilities` DISABLE KEYS */; +INSERT INTO `mdl_role_capabilities` VALUES (1,1,1,'moodle/site:configview',1,1619623682,0),(2,1,2,'moodle/site:configview',1,1619623682,0),(3,1,1,'moodle/site:readallmessages',1,1619623682,0),(4,1,3,'moodle/site:readallmessages',1,1619623682,0),(5,1,1,'moodle/site:manageallmessaging',1,1619623682,0),(6,1,1,'moodle/site:deleteanymessage',1,1619623682,0),(7,1,1,'moodle/site:sendmessage',1,1619623682,0),(8,1,7,'moodle/site:sendmessage',1,1619623682,0),(9,1,7,'moodle/site:senderrormessage',1,1619623682,0),(10,1,7,'moodle/site:deleteownmessage',1,1619623682,0),(11,1,1,'moodle/site:approvecourse',1,1619623682,0),(12,1,3,'moodle/backup:backupcourse',1,1619623682,0),(13,1,1,'moodle/backup:backupcourse',1,1619623682,0),(14,1,3,'moodle/backup:backupsection',1,1619623682,0),(15,1,1,'moodle/backup:backupsection',1,1619623682,0),(16,1,3,'moodle/backup:backupactivity',1,1619623682,0),(17,1,1,'moodle/backup:backupactivity',1,1619623682,0),(18,1,3,'moodle/backup:backuptargetimport',1,1619623682,0),(19,1,1,'moodle/backup:backuptargetimport',1,1619623682,0),(20,1,3,'moodle/backup:downloadfile',1,1619623682,0),(21,1,1,'moodle/backup:downloadfile',1,1619623682,0),(22,1,3,'moodle/backup:configure',1,1619623682,0),(23,1,1,'moodle/backup:configure',1,1619623682,0),(24,1,1,'moodle/backup:userinfo',1,1619623682,0),(25,1,1,'moodle/backup:anonymise',1,1619623682,0),(26,1,3,'moodle/restore:restorecourse',1,1619623682,0),(27,1,1,'moodle/restore:restorecourse',1,1619623682,0),(28,1,3,'moodle/restore:restoresection',1,1619623682,0),(29,1,1,'moodle/restore:restoresection',1,1619623682,0),(30,1,3,'moodle/restore:restoreactivity',1,1619623682,0),(31,1,1,'moodle/restore:restoreactivity',1,1619623682,0),(32,1,3,'moodle/restore:viewautomatedfilearea',1,1619623682,0),(33,1,1,'moodle/restore:viewautomatedfilearea',1,1619623682,0),(34,1,3,'moodle/restore:restoretargetimport',1,1619623682,0),(35,1,1,'moodle/restore:restoretargetimport',1,1619623682,0),(36,1,3,'moodle/restore:uploadfile',1,1619623682,0),(37,1,1,'moodle/restore:uploadfile',1,1619623682,0),(38,1,3,'moodle/restore:configure',1,1619623682,0),(39,1,1,'moodle/restore:configure',1,1619623682,0),(40,1,2,'moodle/restore:rolldates',1,1619623682,0),(41,1,1,'moodle/restore:rolldates',1,1619623682,0),(42,1,1,'moodle/restore:userinfo',1,1619623682,0),(43,1,1,'moodle/restore:createuser',1,1619623683,0),(44,1,3,'moodle/site:manageblocks',1,1619623683,0),(45,1,1,'moodle/site:manageblocks',1,1619623683,0),(46,1,3,'moodle/site:accessallgroups',1,1619623683,0),(47,1,1,'moodle/site:accessallgroups',1,1619623683,0),(48,1,1,'moodle/site:viewanonymousevents',1,1619623683,0),(49,1,4,'moodle/site:viewfullnames',1,1619623683,0),(50,1,3,'moodle/site:viewfullnames',1,1619623683,0),(51,1,1,'moodle/site:viewfullnames',1,1619623683,0),(52,1,4,'moodle/site:viewuseridentity',1,1619623683,0),(53,1,3,'moodle/site:viewuseridentity',1,1619623683,0),(54,1,1,'moodle/site:viewuseridentity',1,1619623683,0),(55,1,4,'moodle/site:viewreports',1,1619623683,0),(56,1,3,'moodle/site:viewreports',1,1619623683,0),(57,1,1,'moodle/site:viewreports',1,1619623683,0),(58,1,3,'moodle/site:trustcontent',1,1619623683,0),(59,1,1,'moodle/site:trustcontent',1,1619623683,0),(60,1,1,'moodle/site:uploadusers',1,1619623683,0),(61,1,3,'moodle/filter:manage',1,1619623683,0),(62,1,1,'moodle/filter:manage',1,1619623683,0),(63,1,1,'moodle/user:create',1,1619623683,0),(64,1,1,'moodle/user:delete',1,1619623683,0),(65,1,1,'moodle/user:update',1,1619623683,0),(66,1,6,'moodle/user:viewdetails',1,1619623683,0),(67,1,5,'moodle/user:viewdetails',1,1619623683,0),(68,1,4,'moodle/user:viewdetails',1,1619623683,0),(69,1,3,'moodle/user:viewdetails',1,1619623683,0),(70,1,1,'moodle/user:viewdetails',1,1619623683,0),(71,1,1,'moodle/user:viewalldetails',1,1619623683,0),(72,1,1,'moodle/user:viewlastip',1,1619623683,0),(73,1,4,'moodle/user:viewhiddendetails',1,1619623683,0),(74,1,3,'moodle/user:viewhiddendetails',1,1619623683,0),(75,1,1,'moodle/user:viewhiddendetails',1,1619623683,0),(76,1,1,'moodle/user:loginas',1,1619623683,0),(77,1,1,'moodle/user:managesyspages',1,1619623683,0),(78,1,7,'moodle/user:manageownblocks',1,1619623683,0),(79,1,7,'moodle/user:manageownfiles',1,1619623683,0),(80,1,1,'moodle/my:configsyspages',1,1619623683,0),(81,1,3,'moodle/role:assign',1,1619623683,0),(82,1,1,'moodle/role:assign',1,1619623683,0),(83,1,4,'moodle/role:review',1,1619623683,0),(84,1,3,'moodle/role:review',1,1619623683,0),(85,1,1,'moodle/role:review',1,1619623683,0),(86,1,1,'moodle/role:override',1,1619623683,0),(87,1,3,'moodle/role:safeoverride',1,1619623683,0),(88,1,1,'moodle/role:manage',1,1619623683,0),(89,1,3,'moodle/role:switchroles',1,1619623683,0),(90,1,1,'moodle/role:switchroles',1,1619623683,0),(91,1,1,'moodle/category:manage',1,1619623683,0),(92,1,6,'moodle/category:viewcourselist',1,1619623683,0),(93,1,7,'moodle/category:viewcourselist',1,1619623683,0),(94,1,2,'moodle/category:viewhiddencategories',1,1619623683,0),(95,1,1,'moodle/category:viewhiddencategories',1,1619623683,0),(96,1,1,'moodle/cohort:manage',1,1619623683,0),(97,1,1,'moodle/cohort:assign',1,1619623683,0),(98,1,3,'moodle/cohort:view',1,1619623683,0),(99,1,1,'moodle/cohort:view',1,1619623683,0),(100,1,2,'moodle/course:create',1,1619623683,0),(101,1,1,'moodle/course:create',1,1619623683,0),(102,1,3,'moodle/course:creategroupconversations',1,1619623683,0),(103,1,1,'moodle/course:creategroupconversations',1,1619623683,0),(104,1,1,'moodle/course:delete',1,1619623683,0),(105,1,3,'moodle/course:update',1,1619623683,0),(106,1,1,'moodle/course:update',1,1619623683,0),(107,1,1,'moodle/course:view',1,1619623683,0),(108,1,3,'moodle/course:enrolreview',1,1619623683,0),(109,1,1,'moodle/course:enrolreview',1,1619623683,0),(110,1,3,'moodle/course:enrolconfig',1,1619623683,0),(111,1,1,'moodle/course:enrolconfig',1,1619623683,0),(112,1,3,'moodle/course:reviewotherusers',1,1619623683,0),(113,1,1,'moodle/course:reviewotherusers',1,1619623683,0),(114,1,4,'moodle/course:bulkmessaging',1,1619623683,0),(115,1,3,'moodle/course:bulkmessaging',1,1619623683,0),(116,1,1,'moodle/course:bulkmessaging',1,1619623683,0),(117,1,4,'moodle/course:viewhiddenuserfields',1,1619623683,0),(118,1,3,'moodle/course:viewhiddenuserfields',1,1619623683,0),(119,1,1,'moodle/course:viewhiddenuserfields',1,1619623683,0),(120,1,2,'moodle/course:viewhiddencourses',1,1619623683,0),(121,1,4,'moodle/course:viewhiddencourses',1,1619623683,0),(122,1,3,'moodle/course:viewhiddencourses',1,1619623683,0),(123,1,1,'moodle/course:viewhiddencourses',1,1619623683,0),(124,1,3,'moodle/course:visibility',1,1619623683,0),(125,1,1,'moodle/course:visibility',1,1619623683,0),(126,1,3,'moodle/course:managefiles',1,1619623683,0),(127,1,1,'moodle/course:managefiles',1,1619623683,0),(128,1,1,'moodle/course:ignoreavailabilityrestrictions',1,1619623683,0),(129,1,2,'moodle/course:ignoreavailabilityrestrictions',1,1619623683,0),(130,1,3,'moodle/course:ignoreavailabilityrestrictions',1,1619623683,0),(131,1,4,'moodle/course:ignoreavailabilityrestrictions',1,1619623683,0),(132,1,3,'moodle/course:manageactivities',1,1619623683,0),(133,1,1,'moodle/course:manageactivities',1,1619623683,0),(134,1,3,'moodle/course:activityvisibility',1,1619623683,0),(135,1,1,'moodle/course:activityvisibility',1,1619623683,0),(136,1,4,'moodle/course:viewhiddenactivities',1,1619623683,0),(137,1,3,'moodle/course:viewhiddenactivities',1,1619623683,0),(138,1,1,'moodle/course:viewhiddenactivities',1,1619623683,0),(139,1,5,'moodle/course:viewparticipants',1,1619623683,0),(140,1,4,'moodle/course:viewparticipants',1,1619623683,0),(141,1,3,'moodle/course:viewparticipants',1,1619623683,0),(142,1,1,'moodle/course:viewparticipants',1,1619623683,0),(143,1,3,'moodle/course:changefullname',1,1619623683,0),(144,1,1,'moodle/course:changefullname',1,1619623683,0),(145,1,3,'moodle/course:changeshortname',1,1619623683,0),(146,1,1,'moodle/course:changeshortname',1,1619623683,0),(147,1,1,'moodle/course:changelockedcustomfields',1,1619623683,0),(148,1,3,'moodle/course:renameroles',1,1619623683,0),(149,1,1,'moodle/course:renameroles',1,1619623683,0),(150,1,3,'moodle/course:changeidnumber',1,1619623683,0),(151,1,1,'moodle/course:changeidnumber',1,1619623683,0),(152,1,3,'moodle/course:changecategory',1,1619623684,0),(153,1,1,'moodle/course:changecategory',1,1619623684,0),(154,1,3,'moodle/course:changesummary',1,1619623684,0),(155,1,1,'moodle/course:changesummary',1,1619623684,0),(156,1,3,'moodle/course:setforcedlanguage',1,1619623684,0),(157,1,1,'moodle/course:setforcedlanguage',1,1619623684,0),(158,1,1,'moodle/site:viewparticipants',1,1619623684,0),(159,1,5,'moodle/course:isincompletionreports',1,1619623684,0),(160,1,5,'moodle/course:viewscales',1,1619623684,0),(161,1,4,'moodle/course:viewscales',1,1619623684,0),(162,1,3,'moodle/course:viewscales',1,1619623684,0),(163,1,1,'moodle/course:viewscales',1,1619623684,0),(164,1,3,'moodle/course:managescales',1,1619623684,0),(165,1,1,'moodle/course:managescales',1,1619623684,0),(166,1,3,'moodle/course:managegroups',1,1619623684,0),(167,1,1,'moodle/course:managegroups',1,1619623684,0),(168,1,3,'moodle/course:reset',1,1619623684,0),(169,1,1,'moodle/course:reset',1,1619623684,0),(170,1,3,'moodle/course:viewsuspendedusers',1,1619623684,0),(171,1,1,'moodle/course:viewsuspendedusers',1,1619623684,0),(172,1,1,'moodle/course:tag',1,1619623684,0),(173,1,3,'moodle/course:tag',1,1619623684,0),(174,1,6,'moodle/blog:view',1,1619623684,0),(175,1,7,'moodle/blog:view',1,1619623684,0),(176,1,5,'moodle/blog:view',1,1619623684,0),(177,1,4,'moodle/blog:view',1,1619623684,0),(178,1,3,'moodle/blog:view',1,1619623684,0),(179,1,1,'moodle/blog:view',1,1619623684,0),(180,1,6,'moodle/blog:search',1,1619623684,0),(181,1,7,'moodle/blog:search',1,1619623684,0),(182,1,5,'moodle/blog:search',1,1619623684,0),(183,1,4,'moodle/blog:search',1,1619623684,0),(184,1,3,'moodle/blog:search',1,1619623684,0),(185,1,1,'moodle/blog:search',1,1619623684,0),(186,1,1,'moodle/blog:viewdrafts',1,1619623684,0),(187,1,7,'moodle/blog:create',1,1619623684,0),(188,1,1,'moodle/blog:create',1,1619623684,0),(189,1,4,'moodle/blog:manageentries',1,1619623684,0),(190,1,3,'moodle/blog:manageentries',1,1619623684,0),(191,1,1,'moodle/blog:manageentries',1,1619623684,0),(192,1,5,'moodle/blog:manageexternal',1,1619623684,0),(193,1,7,'moodle/blog:manageexternal',1,1619623684,0),(194,1,4,'moodle/blog:manageexternal',1,1619623684,0),(195,1,3,'moodle/blog:manageexternal',1,1619623684,0),(196,1,1,'moodle/blog:manageexternal',1,1619623684,0),(197,1,7,'moodle/calendar:manageownentries',1,1619623684,0),(198,1,1,'moodle/calendar:manageownentries',1,1619623684,0),(199,1,4,'moodle/calendar:managegroupentries',1,1619623684,0),(200,1,3,'moodle/calendar:managegroupentries',1,1619623684,0),(201,1,1,'moodle/calendar:managegroupentries',1,1619623684,0),(202,1,4,'moodle/calendar:manageentries',1,1619623684,0),(203,1,3,'moodle/calendar:manageentries',1,1619623684,0),(204,1,1,'moodle/calendar:manageentries',1,1619623684,0),(205,1,1,'moodle/user:editprofile',1,1619623684,0),(206,1,6,'moodle/user:editownprofile',-1000,1619623684,0),(207,1,7,'moodle/user:editownprofile',1,1619623684,0),(208,1,1,'moodle/user:editownprofile',1,1619623684,0),(209,1,6,'moodle/user:changeownpassword',-1000,1619623684,0),(210,1,7,'moodle/user:changeownpassword',1,1619623684,0),(211,1,1,'moodle/user:changeownpassword',1,1619623684,0),(212,1,5,'moodle/user:readuserposts',1,1619623684,0),(213,1,4,'moodle/user:readuserposts',1,1619623684,0),(214,1,3,'moodle/user:readuserposts',1,1619623684,0),(215,1,1,'moodle/user:readuserposts',1,1619623684,0),(216,1,5,'moodle/user:readuserblogs',1,1619623684,0),(217,1,4,'moodle/user:readuserblogs',1,1619623684,0),(218,1,3,'moodle/user:readuserblogs',1,1619623684,0),(219,1,1,'moodle/user:readuserblogs',1,1619623684,0),(220,1,1,'moodle/user:editmessageprofile',1,1619623684,0),(221,1,6,'moodle/user:editownmessageprofile',-1000,1619623684,0),(222,1,7,'moodle/user:editownmessageprofile',1,1619623684,0),(223,1,1,'moodle/user:editownmessageprofile',1,1619623684,0),(224,1,3,'moodle/question:managecategory',1,1619623684,0),(225,1,1,'moodle/question:managecategory',1,1619623684,0),(226,1,3,'moodle/question:add',1,1619623684,0),(227,1,1,'moodle/question:add',1,1619623684,0),(228,1,3,'moodle/question:editmine',1,1619623684,0),(229,1,1,'moodle/question:editmine',1,1619623684,0),(230,1,3,'moodle/question:editall',1,1619623684,0),(231,1,1,'moodle/question:editall',1,1619623684,0),(232,1,3,'moodle/question:viewmine',1,1619623684,0),(233,1,1,'moodle/question:viewmine',1,1619623684,0),(234,1,3,'moodle/question:viewall',1,1619623684,0),(235,1,1,'moodle/question:viewall',1,1619623684,0),(236,1,3,'moodle/question:usemine',1,1619623684,0),(237,1,1,'moodle/question:usemine',1,1619623684,0),(238,1,3,'moodle/question:useall',1,1619623684,0),(239,1,1,'moodle/question:useall',1,1619623684,0),(240,1,3,'moodle/question:movemine',1,1619623684,0),(241,1,1,'moodle/question:movemine',1,1619623684,0),(242,1,3,'moodle/question:moveall',1,1619623684,0),(243,1,1,'moodle/question:moveall',1,1619623684,0),(244,1,1,'moodle/question:config',1,1619623684,0),(245,1,5,'moodle/question:flag',1,1619623684,0),(246,1,4,'moodle/question:flag',1,1619623684,0),(247,1,3,'moodle/question:flag',1,1619623684,0),(248,1,1,'moodle/question:flag',1,1619623684,0),(249,1,3,'moodle/question:tagmine',1,1619623684,0),(250,1,1,'moodle/question:tagmine',1,1619623684,0),(251,1,3,'moodle/question:tagall',1,1619623684,0),(252,1,1,'moodle/question:tagall',1,1619623684,0),(253,1,4,'moodle/site:doclinks',1,1619623684,0),(254,1,3,'moodle/site:doclinks',1,1619623684,0),(255,1,1,'moodle/site:doclinks',1,1619623684,0),(256,1,3,'moodle/course:sectionvisibility',1,1619623684,0),(257,1,1,'moodle/course:sectionvisibility',1,1619623684,0),(258,1,3,'moodle/course:useremail',1,1619623684,0),(259,1,1,'moodle/course:useremail',1,1619623684,0),(260,1,3,'moodle/course:viewhiddensections',1,1619623684,0),(261,1,1,'moodle/course:viewhiddensections',1,1619623684,0),(262,1,3,'moodle/course:setcurrentsection',1,1619623684,0),(263,1,1,'moodle/course:setcurrentsection',1,1619623684,0),(264,1,3,'moodle/course:movesections',1,1619623684,0),(265,1,1,'moodle/course:movesections',1,1619623684,0),(266,1,4,'moodle/grade:viewall',1,1619623685,0),(267,1,3,'moodle/grade:viewall',1,1619623685,0),(268,1,1,'moodle/grade:viewall',1,1619623685,0),(269,1,5,'moodle/grade:view',1,1619623685,0),(270,1,4,'moodle/grade:viewhidden',1,1619623685,0),(271,1,3,'moodle/grade:viewhidden',1,1619623685,0),(272,1,1,'moodle/grade:viewhidden',1,1619623685,0),(273,1,3,'moodle/grade:import',1,1619623685,0),(274,1,1,'moodle/grade:import',1,1619623685,0),(275,1,4,'moodle/grade:export',1,1619623685,0),(276,1,3,'moodle/grade:export',1,1619623685,0),(277,1,1,'moodle/grade:export',1,1619623685,0),(278,1,3,'moodle/grade:manage',1,1619623685,0),(279,1,1,'moodle/grade:manage',1,1619623685,0),(280,1,3,'moodle/grade:edit',1,1619623685,0),(281,1,1,'moodle/grade:edit',1,1619623685,0),(282,1,3,'moodle/grade:managegradingforms',1,1619623685,0),(283,1,1,'moodle/grade:managegradingforms',1,1619623685,0),(284,1,1,'moodle/grade:sharegradingforms',1,1619623685,0),(285,1,1,'moodle/grade:managesharedforms',1,1619623685,0),(286,1,3,'moodle/grade:manageoutcomes',1,1619623685,0),(287,1,1,'moodle/grade:manageoutcomes',1,1619623685,0),(288,1,3,'moodle/grade:manageletters',1,1619623685,0),(289,1,1,'moodle/grade:manageletters',1,1619623685,0),(290,1,3,'moodle/grade:hide',1,1619623685,0),(291,1,1,'moodle/grade:hide',1,1619623685,0),(292,1,3,'moodle/grade:lock',1,1619623685,0),(293,1,1,'moodle/grade:lock',1,1619623685,0),(294,1,3,'moodle/grade:unlock',1,1619623685,0),(295,1,1,'moodle/grade:unlock',1,1619623685,0),(296,1,7,'moodle/my:manageblocks',1,1619623685,0),(297,1,4,'moodle/notes:view',1,1619623685,0),(298,1,3,'moodle/notes:view',1,1619623685,0),(299,1,1,'moodle/notes:view',1,1619623685,0),(300,1,4,'moodle/notes:manage',1,1619623685,0),(301,1,3,'moodle/notes:manage',1,1619623685,0),(302,1,1,'moodle/notes:manage',1,1619623685,0),(303,1,1,'moodle/tag:manage',1,1619623685,0),(304,1,1,'moodle/tag:edit',1,1619623685,0),(305,1,7,'moodle/tag:flag',1,1619623685,0),(306,1,4,'moodle/tag:editblocks',1,1619623685,0),(307,1,3,'moodle/tag:editblocks',1,1619623685,0),(308,1,1,'moodle/tag:editblocks',1,1619623685,0),(309,1,6,'moodle/block:view',1,1619623685,0),(310,1,7,'moodle/block:view',1,1619623685,0),(311,1,5,'moodle/block:view',1,1619623685,0),(312,1,4,'moodle/block:view',1,1619623685,0),(313,1,3,'moodle/block:view',1,1619623685,0),(314,1,3,'moodle/block:edit',1,1619623685,0),(315,1,1,'moodle/block:edit',1,1619623685,0),(316,1,7,'moodle/portfolio:export',1,1619623685,0),(317,1,5,'moodle/portfolio:export',1,1619623685,0),(318,1,4,'moodle/portfolio:export',1,1619623685,0),(319,1,3,'moodle/portfolio:export',1,1619623685,0),(320,1,8,'moodle/comment:view',1,1619623685,0),(321,1,6,'moodle/comment:view',1,1619623685,0),(322,1,7,'moodle/comment:view',1,1619623685,0),(323,1,5,'moodle/comment:view',1,1619623685,0),(324,1,4,'moodle/comment:view',1,1619623685,0),(325,1,3,'moodle/comment:view',1,1619623685,0),(326,1,1,'moodle/comment:view',1,1619623685,0),(327,1,7,'moodle/comment:post',1,1619623685,0),(328,1,5,'moodle/comment:post',1,1619623685,0),(329,1,4,'moodle/comment:post',1,1619623685,0),(330,1,3,'moodle/comment:post',1,1619623685,0),(331,1,1,'moodle/comment:post',1,1619623685,0),(332,1,3,'moodle/comment:delete',1,1619623685,0),(333,1,1,'moodle/comment:delete',1,1619623685,0),(334,1,1,'moodle/webservice:createtoken',1,1619623685,0),(335,1,7,'moodle/webservice:createmobiletoken',1,1619623685,0),(336,1,7,'moodle/rating:view',1,1619623685,0),(337,1,5,'moodle/rating:view',1,1619623685,0),(338,1,4,'moodle/rating:view',1,1619623685,0),(339,1,3,'moodle/rating:view',1,1619623685,0),(340,1,1,'moodle/rating:view',1,1619623685,0),(341,1,7,'moodle/rating:viewany',1,1619623685,0),(342,1,5,'moodle/rating:viewany',1,1619623685,0),(343,1,4,'moodle/rating:viewany',1,1619623685,0),(344,1,3,'moodle/rating:viewany',1,1619623685,0),(345,1,1,'moodle/rating:viewany',1,1619623685,0),(346,1,7,'moodle/rating:viewall',1,1619623685,0),(347,1,5,'moodle/rating:viewall',1,1619623685,0),(348,1,4,'moodle/rating:viewall',1,1619623685,0),(349,1,3,'moodle/rating:viewall',1,1619623685,0),(350,1,1,'moodle/rating:viewall',1,1619623685,0),(351,1,7,'moodle/rating:rate',1,1619623685,0),(352,1,5,'moodle/rating:rate',1,1619623685,0),(353,1,4,'moodle/rating:rate',1,1619623685,0),(354,1,3,'moodle/rating:rate',1,1619623685,0),(355,1,1,'moodle/rating:rate',1,1619623685,0),(356,1,4,'moodle/course:markcomplete',1,1619623685,0),(357,1,3,'moodle/course:markcomplete',1,1619623685,0),(358,1,1,'moodle/course:markcomplete',1,1619623685,0),(359,1,4,'moodle/course:overridecompletion',1,1619623685,0),(360,1,3,'moodle/course:overridecompletion',1,1619623685,0),(361,1,1,'moodle/course:overridecompletion',1,1619623685,0),(362,1,1,'moodle/badges:manageglobalsettings',1,1619623685,0),(363,1,7,'moodle/badges:viewbadges',1,1619623685,0),(364,1,7,'moodle/badges:manageownbadges',1,1619623685,0),(365,1,7,'moodle/badges:viewotherbadges',1,1619623685,0),(366,1,7,'moodle/badges:earnbadge',1,1619623685,0),(367,1,1,'moodle/badges:createbadge',1,1619623685,0),(368,1,3,'moodle/badges:createbadge',1,1619623685,0),(369,1,1,'moodle/badges:deletebadge',1,1619623685,0),(370,1,3,'moodle/badges:deletebadge',1,1619623685,0),(371,1,1,'moodle/badges:configuredetails',1,1619623685,0),(372,1,3,'moodle/badges:configuredetails',1,1619623685,0),(373,1,1,'moodle/badges:configurecriteria',1,1619623685,0),(374,1,3,'moodle/badges:configurecriteria',1,1619623685,0),(375,1,1,'moodle/badges:configuremessages',1,1619623685,0),(376,1,3,'moodle/badges:configuremessages',1,1619623686,0),(377,1,1,'moodle/badges:awardbadge',1,1619623686,0),(378,1,4,'moodle/badges:awardbadge',1,1619623686,0),(379,1,3,'moodle/badges:awardbadge',1,1619623686,0),(380,1,1,'moodle/badges:revokebadge',1,1619623686,0),(381,1,4,'moodle/badges:revokebadge',1,1619623686,0),(382,1,3,'moodle/badges:revokebadge',1,1619623686,0),(383,1,1,'moodle/badges:viewawarded',1,1619623686,0),(384,1,4,'moodle/badges:viewawarded',1,1619623686,0),(385,1,3,'moodle/badges:viewawarded',1,1619623686,0),(386,1,6,'moodle/search:query',1,1619623686,0),(387,1,7,'moodle/search:query',1,1619623686,0),(388,1,5,'moodle/search:query',1,1619623686,0),(389,1,4,'moodle/search:query',1,1619623686,0),(390,1,3,'moodle/search:query',1,1619623686,0),(391,1,1,'moodle/search:query',1,1619623686,0),(392,1,1,'moodle/competency:competencymanage',1,1619623686,0),(393,1,7,'moodle/competency:competencyview',1,1619623686,0),(394,1,3,'moodle/competency:competencygrade',1,1619623686,0),(395,1,4,'moodle/competency:competencygrade',1,1619623686,0),(396,1,1,'moodle/competency:competencygrade',1,1619623686,0),(397,1,3,'moodle/competency:coursecompetencymanage',1,1619623686,0),(398,1,1,'moodle/competency:coursecompetencymanage',1,1619623686,0),(399,1,1,'moodle/competency:coursecompetencyconfigure',1,1619623686,0),(400,1,5,'moodle/competency:coursecompetencygradable',1,1619623686,0),(401,1,7,'moodle/competency:coursecompetencyview',1,1619623686,0),(402,1,1,'moodle/competency:planmanage',1,1619623686,0),(403,1,1,'moodle/competency:planmanagedraft',1,1619623686,0),(404,1,1,'moodle/competency:planview',1,1619623686,0),(405,1,1,'moodle/competency:planviewdraft',1,1619623686,0),(406,1,7,'moodle/competency:planviewown',1,1619623686,0),(407,1,1,'moodle/competency:planrequestreview',1,1619623686,0),(408,1,7,'moodle/competency:planrequestreviewown',1,1619623686,0),(409,1,1,'moodle/competency:planreview',1,1619623686,0),(410,1,1,'moodle/competency:plancomment',1,1619623686,0),(411,1,7,'moodle/competency:plancommentown',1,1619623686,0),(412,1,1,'moodle/competency:usercompetencyview',1,1619623686,0),(413,1,3,'moodle/competency:usercompetencyview',1,1619623686,0),(414,1,4,'moodle/competency:usercompetencyview',1,1619623686,0),(415,1,1,'moodle/competency:usercompetencyrequestreview',1,1619623686,0),(416,1,7,'moodle/competency:usercompetencyrequestreviewown',1,1619623686,0),(417,1,1,'moodle/competency:usercompetencyreview',1,1619623686,0),(418,1,1,'moodle/competency:usercompetencycomment',1,1619623686,0),(419,1,7,'moodle/competency:usercompetencycommentown',1,1619623686,0),(420,1,1,'moodle/competency:templatemanage',1,1619623686,0),(421,1,4,'moodle/analytics:listinsights',1,1619623686,0),(422,1,3,'moodle/analytics:listinsights',1,1619623686,0),(423,1,1,'moodle/analytics:listinsights',1,1619623686,0),(424,1,1,'moodle/analytics:managemodels',1,1619623686,0),(425,1,1,'moodle/competency:templateview',1,1619623686,0),(426,1,1,'moodle/competency:userevidencemanage',1,1619623686,0),(427,1,7,'moodle/competency:userevidencemanageown',1,1619623686,0),(428,1,1,'moodle/competency:userevidenceview',1,1619623686,0),(429,1,4,'moodle/site:messageanyuser',1,1619623686,0),(430,1,3,'moodle/site:messageanyuser',1,1619623686,0),(431,1,1,'moodle/site:messageanyuser',1,1619623686,0),(432,1,7,'moodle/course:togglecompletion',1,1619623686,0),(433,1,7,'moodle/analytics:listowninsights',1,1619623686,0),(434,1,3,'moodle/h5p:setdisplayoptions',1,1619623686,0),(435,1,1,'moodle/h5p:deploy',1,1619623686,0),(436,1,3,'moodle/h5p:deploy',1,1619623686,0),(437,1,1,'moodle/h5p:updatelibraries',1,1619623686,0),(438,1,1,'moodle/course:recommendactivity',1,1619623686,0),(439,1,1,'moodle/contentbank:access',1,1619623686,0),(440,1,2,'moodle/contentbank:access',1,1619623686,0),(441,1,3,'moodle/contentbank:access',1,1619623686,0),(442,1,1,'moodle/contentbank:upload',1,1619623686,0),(443,1,2,'moodle/contentbank:upload',1,1619623686,0),(444,1,3,'moodle/contentbank:upload',1,1619623686,0),(445,1,1,'moodle/contentbank:deleteanycontent',1,1619623686,0),(446,1,2,'moodle/contentbank:deleteanycontent',1,1619623686,0),(447,1,7,'moodle/contentbank:deleteowncontent',1,1619623686,0),(448,1,1,'moodle/contentbank:manageanycontent',1,1619623686,0),(449,1,2,'moodle/contentbank:manageanycontent',1,1619623686,0),(450,1,1,'moodle/contentbank:manageowncontent',1,1619623686,0),(451,1,2,'moodle/contentbank:manageowncontent',1,1619623686,0),(452,1,3,'moodle/contentbank:manageowncontent',1,1619623686,0),(453,1,1,'moodle/contentbank:useeditor',1,1619623686,0),(454,1,2,'moodle/contentbank:useeditor',1,1619623686,0),(455,1,3,'moodle/contentbank:useeditor',1,1619623686,0),(456,1,1,'moodle/contentbank:downloadcontent',1,1619623686,0),(457,1,2,'moodle/contentbank:downloadcontent',1,1619623686,0),(458,1,3,'moodle/contentbank:downloadcontent',1,1619623686,0),(459,1,5,'moodle/course:downloadcoursecontent',1,1619623686,0),(460,1,4,'moodle/course:downloadcoursecontent',1,1619623686,0),(461,1,3,'moodle/course:downloadcoursecontent',1,1619623686,0),(462,1,1,'moodle/course:downloadcoursecontent',1,1619623686,0),(463,1,3,'moodle/course:configuredownloadcontent',1,1619623686,0),(464,1,1,'moodle/course:configuredownloadcontent',1,1619623686,0),(465,1,6,'mod/assign:view',1,1619623696,0),(466,1,5,'mod/assign:view',1,1619623696,0),(467,1,4,'mod/assign:view',1,1619623696,0),(468,1,3,'mod/assign:view',1,1619623696,0),(469,1,1,'mod/assign:view',1,1619623696,0),(470,1,5,'mod/assign:submit',1,1619623696,0),(471,1,4,'mod/assign:grade',1,1619623696,0),(472,1,3,'mod/assign:grade',1,1619623696,0),(473,1,1,'mod/assign:grade',1,1619623696,0),(474,1,4,'mod/assign:exportownsubmission',1,1619623696,0),(475,1,3,'mod/assign:exportownsubmission',1,1619623696,0),(476,1,1,'mod/assign:exportownsubmission',1,1619623696,0),(477,1,5,'mod/assign:exportownsubmission',1,1619623696,0),(478,1,3,'mod/assign:addinstance',1,1619623696,0),(479,1,1,'mod/assign:addinstance',1,1619623696,0),(480,1,4,'mod/assign:grantextension',1,1619623696,0),(481,1,3,'mod/assign:grantextension',1,1619623696,0),(482,1,1,'mod/assign:grantextension',1,1619623696,0),(483,1,3,'mod/assign:revealidentities',1,1619623696,0),(484,1,1,'mod/assign:revealidentities',1,1619623696,0),(485,1,3,'mod/assign:reviewgrades',1,1619623696,0),(486,1,1,'mod/assign:reviewgrades',1,1619623696,0),(487,1,3,'mod/assign:releasegrades',1,1619623696,0),(488,1,1,'mod/assign:releasegrades',1,1619623696,0),(489,1,3,'mod/assign:managegrades',1,1619623696,0),(490,1,1,'mod/assign:managegrades',1,1619623696,0),(491,1,3,'mod/assign:manageallocations',1,1619623696,0),(492,1,1,'mod/assign:manageallocations',1,1619623696,0),(493,1,3,'mod/assign:viewgrades',1,1619623696,0),(494,1,1,'mod/assign:viewgrades',1,1619623696,0),(495,1,4,'mod/assign:viewgrades',1,1619623696,0),(496,1,1,'mod/assign:viewblinddetails',1,1619623696,0),(497,1,4,'mod/assign:receivegradernotifications',1,1619623696,0),(498,1,3,'mod/assign:receivegradernotifications',1,1619623696,0),(499,1,1,'mod/assign:receivegradernotifications',1,1619623696,0),(500,1,3,'mod/assign:manageoverrides',1,1619623696,0),(501,1,1,'mod/assign:manageoverrides',1,1619623696,0),(502,1,4,'mod/assign:showhiddengrader',1,1619623696,0),(503,1,3,'mod/assign:showhiddengrader',1,1619623696,0),(504,1,1,'mod/assign:showhiddengrader',1,1619623696,0),(505,1,6,'mod/assignment:view',1,1619623696,0),(506,1,5,'mod/assignment:view',1,1619623696,0),(507,1,4,'mod/assignment:view',1,1619623696,0),(508,1,3,'mod/assignment:view',1,1619623696,0),(509,1,1,'mod/assignment:view',1,1619623696,0),(510,1,3,'mod/assignment:addinstance',1,1619623696,0),(511,1,1,'mod/assignment:addinstance',1,1619623696,0),(512,1,5,'mod/assignment:submit',1,1619623696,0),(513,1,4,'mod/assignment:grade',1,1619623696,0),(514,1,3,'mod/assignment:grade',1,1619623696,0),(515,1,1,'mod/assignment:grade',1,1619623696,0),(516,1,4,'mod/assignment:exportownsubmission',1,1619623696,0),(517,1,3,'mod/assignment:exportownsubmission',1,1619623696,0),(518,1,1,'mod/assignment:exportownsubmission',1,1619623696,0),(519,1,5,'mod/assignment:exportownsubmission',1,1619623696,0),(520,1,3,'mod/book:addinstance',1,1619623697,0),(521,1,1,'mod/book:addinstance',1,1619623697,0),(522,1,6,'mod/book:read',1,1619623697,0),(523,1,8,'mod/book:read',1,1619623697,0),(524,1,5,'mod/book:read',1,1619623697,0),(525,1,4,'mod/book:read',1,1619623697,0),(526,1,3,'mod/book:read',1,1619623697,0),(527,1,1,'mod/book:read',1,1619623697,0),(528,1,4,'mod/book:viewhiddenchapters',1,1619623697,0),(529,1,3,'mod/book:viewhiddenchapters',1,1619623697,0),(530,1,1,'mod/book:viewhiddenchapters',1,1619623697,0),(531,1,3,'mod/book:edit',1,1619623697,0),(532,1,1,'mod/book:edit',1,1619623697,0),(533,1,3,'mod/chat:addinstance',1,1619623697,0),(534,1,1,'mod/chat:addinstance',1,1619623697,0),(535,1,5,'mod/chat:chat',1,1619623697,0),(536,1,4,'mod/chat:chat',1,1619623697,0),(537,1,3,'mod/chat:chat',1,1619623697,0),(538,1,1,'mod/chat:chat',1,1619623697,0),(539,1,5,'mod/chat:readlog',1,1619623697,0),(540,1,4,'mod/chat:readlog',1,1619623697,0),(541,1,3,'mod/chat:readlog',1,1619623697,0),(542,1,1,'mod/chat:readlog',1,1619623697,0),(543,1,4,'mod/chat:deletelog',1,1619623697,0),(544,1,3,'mod/chat:deletelog',1,1619623697,0),(545,1,1,'mod/chat:deletelog',1,1619623697,0),(546,1,4,'mod/chat:exportparticipatedsession',1,1619623697,0),(547,1,3,'mod/chat:exportparticipatedsession',1,1619623697,0),(548,1,1,'mod/chat:exportparticipatedsession',1,1619623697,0),(549,1,4,'mod/chat:exportsession',1,1619623697,0),(550,1,3,'mod/chat:exportsession',1,1619623697,0),(551,1,1,'mod/chat:exportsession',1,1619623697,0),(552,1,7,'mod/chat:view',1,1619623697,0),(553,1,6,'mod/chat:view',1,1619623697,0),(554,1,3,'mod/choice:addinstance',1,1619623697,0),(555,1,1,'mod/choice:addinstance',1,1619623697,0),(556,1,5,'mod/choice:choose',1,1619623697,0),(557,1,4,'mod/choice:choose',1,1619623697,0),(558,1,3,'mod/choice:choose',1,1619623697,0),(559,1,4,'mod/choice:readresponses',1,1619623697,0),(560,1,3,'mod/choice:readresponses',1,1619623697,0),(561,1,1,'mod/choice:readresponses',1,1619623697,0),(562,1,4,'mod/choice:deleteresponses',1,1619623697,0),(563,1,3,'mod/choice:deleteresponses',1,1619623697,0),(564,1,1,'mod/choice:deleteresponses',1,1619623697,0),(565,1,4,'mod/choice:downloadresponses',1,1619623697,0),(566,1,3,'mod/choice:downloadresponses',1,1619623697,0),(567,1,1,'mod/choice:downloadresponses',1,1619623697,0),(568,1,7,'mod/choice:view',1,1619623697,0),(569,1,6,'mod/choice:view',1,1619623697,0),(570,1,3,'mod/data:addinstance',1,1619623697,0),(571,1,1,'mod/data:addinstance',1,1619623697,0),(572,1,8,'mod/data:viewentry',1,1619623697,0),(573,1,6,'mod/data:viewentry',1,1619623697,0),(574,1,5,'mod/data:viewentry',1,1619623697,0),(575,1,4,'mod/data:viewentry',1,1619623697,0),(576,1,3,'mod/data:viewentry',1,1619623697,0),(577,1,1,'mod/data:viewentry',1,1619623697,0),(578,1,5,'mod/data:writeentry',1,1619623697,0),(579,1,4,'mod/data:writeentry',1,1619623697,0),(580,1,3,'mod/data:writeentry',1,1619623697,0),(581,1,1,'mod/data:writeentry',1,1619623697,0),(582,1,5,'mod/data:comment',1,1619623697,0),(583,1,4,'mod/data:comment',1,1619623697,0),(584,1,3,'mod/data:comment',1,1619623697,0),(585,1,1,'mod/data:comment',1,1619623697,0),(586,1,4,'mod/data:rate',1,1619623697,0),(587,1,3,'mod/data:rate',1,1619623697,0),(588,1,1,'mod/data:rate',1,1619623697,0),(589,1,4,'mod/data:viewrating',1,1619623697,0),(590,1,3,'mod/data:viewrating',1,1619623697,0),(591,1,1,'mod/data:viewrating',1,1619623698,0),(592,1,4,'mod/data:viewanyrating',1,1619623698,0),(593,1,3,'mod/data:viewanyrating',1,1619623698,0),(594,1,1,'mod/data:viewanyrating',1,1619623698,0),(595,1,4,'mod/data:viewallratings',1,1619623698,0),(596,1,3,'mod/data:viewallratings',1,1619623698,0),(597,1,1,'mod/data:viewallratings',1,1619623698,0),(598,1,4,'mod/data:approve',1,1619623698,0),(599,1,3,'mod/data:approve',1,1619623698,0),(600,1,1,'mod/data:approve',1,1619623698,0),(601,1,4,'mod/data:manageentries',1,1619623698,0),(602,1,3,'mod/data:manageentries',1,1619623698,0),(603,1,1,'mod/data:manageentries',1,1619623698,0),(604,1,4,'mod/data:managecomments',1,1619623698,0),(605,1,3,'mod/data:managecomments',1,1619623698,0),(606,1,1,'mod/data:managecomments',1,1619623698,0),(607,1,3,'mod/data:managetemplates',1,1619623698,0),(608,1,1,'mod/data:managetemplates',1,1619623698,0),(609,1,4,'mod/data:viewalluserpresets',1,1619623698,0),(610,1,3,'mod/data:viewalluserpresets',1,1619623698,0),(611,1,1,'mod/data:viewalluserpresets',1,1619623698,0),(612,1,1,'mod/data:manageuserpresets',1,1619623698,0),(613,1,1,'mod/data:exportentry',1,1619623698,0),(614,1,4,'mod/data:exportentry',1,1619623698,0),(615,1,3,'mod/data:exportentry',1,1619623698,0),(616,1,1,'mod/data:exportownentry',1,1619623698,0),(617,1,4,'mod/data:exportownentry',1,1619623698,0),(618,1,3,'mod/data:exportownentry',1,1619623698,0),(619,1,5,'mod/data:exportownentry',1,1619623698,0),(620,1,1,'mod/data:exportallentries',1,1619623698,0),(621,1,4,'mod/data:exportallentries',1,1619623698,0),(622,1,3,'mod/data:exportallentries',1,1619623698,0),(623,1,1,'mod/data:exportuserinfo',1,1619623698,0),(624,1,4,'mod/data:exportuserinfo',1,1619623698,0),(625,1,3,'mod/data:exportuserinfo',1,1619623698,0),(626,1,6,'mod/data:view',1,1619623698,0),(627,1,5,'mod/data:view',1,1619623698,0),(628,1,4,'mod/data:view',1,1619623698,0),(629,1,3,'mod/data:view',1,1619623698,0),(630,1,1,'mod/data:view',1,1619623698,0),(631,1,3,'mod/feedback:addinstance',1,1619623698,0),(632,1,1,'mod/feedback:addinstance',1,1619623698,0),(633,1,6,'mod/feedback:view',1,1619623698,0),(634,1,8,'mod/feedback:view',1,1619623698,0),(635,1,5,'mod/feedback:view',1,1619623698,0),(636,1,4,'mod/feedback:view',1,1619623698,0),(637,1,3,'mod/feedback:view',1,1619623698,0),(638,1,1,'mod/feedback:view',1,1619623698,0),(639,1,8,'mod/feedback:complete',1,1619623698,0),(640,1,5,'mod/feedback:complete',1,1619623698,0),(641,1,5,'mod/feedback:viewanalysepage',1,1619623698,0),(642,1,3,'mod/feedback:viewanalysepage',1,1619623698,0),(643,1,1,'mod/feedback:viewanalysepage',1,1619623698,0),(644,1,3,'mod/feedback:deletesubmissions',1,1619623698,0),(645,1,1,'mod/feedback:deletesubmissions',1,1619623698,0),(646,1,1,'mod/feedback:mapcourse',1,1619623698,0),(647,1,3,'mod/feedback:edititems',1,1619623698,0),(648,1,1,'mod/feedback:edititems',1,1619623698,0),(649,1,3,'mod/feedback:createprivatetemplate',1,1619623698,0),(650,1,1,'mod/feedback:createprivatetemplate',1,1619623698,0),(651,1,3,'mod/feedback:createpublictemplate',1,1619623698,0),(652,1,1,'mod/feedback:createpublictemplate',1,1619623698,0),(653,1,3,'mod/feedback:deletetemplate',1,1619623698,0),(654,1,1,'mod/feedback:deletetemplate',1,1619623698,0),(655,1,4,'mod/feedback:viewreports',1,1619623698,0),(656,1,3,'mod/feedback:viewreports',1,1619623698,0),(657,1,1,'mod/feedback:viewreports',1,1619623698,0),(658,1,4,'mod/feedback:receivemail',1,1619623698,0),(659,1,3,'mod/feedback:receivemail',1,1619623698,0),(660,1,3,'mod/folder:addinstance',1,1619623698,0),(661,1,1,'mod/folder:addinstance',1,1619623698,0),(662,1,6,'mod/folder:view',1,1619623698,0),(663,1,7,'mod/folder:view',1,1619623698,0),(664,1,3,'mod/folder:managefiles',1,1619623698,0),(665,1,3,'mod/forum:addinstance',1,1619623699,0),(666,1,1,'mod/forum:addinstance',1,1619623699,0),(667,1,8,'mod/forum:viewdiscussion',1,1619623699,0),(668,1,6,'mod/forum:viewdiscussion',1,1619623699,0),(669,1,5,'mod/forum:viewdiscussion',1,1619623699,0),(670,1,4,'mod/forum:viewdiscussion',1,1619623699,0),(671,1,3,'mod/forum:viewdiscussion',1,1619623699,0),(672,1,1,'mod/forum:viewdiscussion',1,1619623699,0),(673,1,4,'mod/forum:viewhiddentimedposts',1,1619623699,0),(674,1,3,'mod/forum:viewhiddentimedposts',1,1619623699,0),(675,1,1,'mod/forum:viewhiddentimedposts',1,1619623699,0),(676,1,5,'mod/forum:startdiscussion',1,1619623699,0),(677,1,4,'mod/forum:startdiscussion',1,1619623699,0),(678,1,3,'mod/forum:startdiscussion',1,1619623699,0),(679,1,1,'mod/forum:startdiscussion',1,1619623699,0),(680,1,5,'mod/forum:replypost',1,1619623699,0),(681,1,4,'mod/forum:replypost',1,1619623699,0),(682,1,3,'mod/forum:replypost',1,1619623699,0),(683,1,1,'mod/forum:replypost',1,1619623699,0),(684,1,4,'mod/forum:addnews',1,1619623699,0),(685,1,3,'mod/forum:addnews',1,1619623699,0),(686,1,1,'mod/forum:addnews',1,1619623699,0),(687,1,4,'mod/forum:replynews',1,1619623699,0),(688,1,3,'mod/forum:replynews',1,1619623699,0),(689,1,1,'mod/forum:replynews',1,1619623699,0),(690,1,5,'mod/forum:viewrating',1,1619623699,0),(691,1,4,'mod/forum:viewrating',1,1619623699,0),(692,1,3,'mod/forum:viewrating',1,1619623699,0),(693,1,1,'mod/forum:viewrating',1,1619623699,0),(694,1,4,'mod/forum:viewanyrating',1,1619623699,0),(695,1,3,'mod/forum:viewanyrating',1,1619623699,0),(696,1,1,'mod/forum:viewanyrating',1,1619623699,0),(697,1,4,'mod/forum:viewallratings',1,1619623699,0),(698,1,3,'mod/forum:viewallratings',1,1619623699,0),(699,1,1,'mod/forum:viewallratings',1,1619623699,0),(700,1,4,'mod/forum:rate',1,1619623699,0),(701,1,3,'mod/forum:rate',1,1619623699,0),(702,1,1,'mod/forum:rate',1,1619623699,0),(703,1,4,'mod/forum:postprivatereply',1,1619623699,0),(704,1,3,'mod/forum:postprivatereply',1,1619623699,0),(705,1,1,'mod/forum:postprivatereply',1,1619623699,0),(706,1,4,'mod/forum:readprivatereplies',1,1619623699,0),(707,1,3,'mod/forum:readprivatereplies',1,1619623699,0),(708,1,1,'mod/forum:readprivatereplies',1,1619623699,0),(709,1,5,'mod/forum:createattachment',1,1619623699,0),(710,1,4,'mod/forum:createattachment',1,1619623699,0),(711,1,3,'mod/forum:createattachment',1,1619623699,0),(712,1,1,'mod/forum:createattachment',1,1619623699,0),(713,1,5,'mod/forum:deleteownpost',1,1619623699,0),(714,1,4,'mod/forum:deleteownpost',1,1619623699,0),(715,1,3,'mod/forum:deleteownpost',1,1619623699,0),(716,1,1,'mod/forum:deleteownpost',1,1619623699,0),(717,1,4,'mod/forum:deleteanypost',1,1619623699,0),(718,1,3,'mod/forum:deleteanypost',1,1619623699,0),(719,1,1,'mod/forum:deleteanypost',1,1619623699,0),(720,1,4,'mod/forum:splitdiscussions',1,1619623699,0),(721,1,3,'mod/forum:splitdiscussions',1,1619623699,0),(722,1,1,'mod/forum:splitdiscussions',1,1619623699,0),(723,1,4,'mod/forum:movediscussions',1,1619623699,0),(724,1,3,'mod/forum:movediscussions',1,1619623699,0),(725,1,1,'mod/forum:movediscussions',1,1619623699,0),(726,1,4,'mod/forum:pindiscussions',1,1619623699,0),(727,1,3,'mod/forum:pindiscussions',1,1619623699,0),(728,1,1,'mod/forum:pindiscussions',1,1619623699,0),(729,1,4,'mod/forum:editanypost',1,1619623699,0),(730,1,3,'mod/forum:editanypost',1,1619623699,0),(731,1,1,'mod/forum:editanypost',1,1619623699,0),(732,1,4,'mod/forum:viewqandawithoutposting',1,1619623699,0),(733,1,3,'mod/forum:viewqandawithoutposting',1,1619623699,0),(734,1,1,'mod/forum:viewqandawithoutposting',1,1619623699,0),(735,1,4,'mod/forum:viewsubscribers',1,1619623699,0),(736,1,3,'mod/forum:viewsubscribers',1,1619623699,0),(737,1,1,'mod/forum:viewsubscribers',1,1619623699,0),(738,1,4,'mod/forum:managesubscriptions',1,1619623699,0),(739,1,3,'mod/forum:managesubscriptions',1,1619623699,0),(740,1,1,'mod/forum:managesubscriptions',1,1619623699,0),(741,1,4,'mod/forum:postwithoutthrottling',1,1619623699,0),(742,1,3,'mod/forum:postwithoutthrottling',1,1619623699,0),(743,1,1,'mod/forum:postwithoutthrottling',1,1619623699,0),(744,1,4,'mod/forum:exportdiscussion',1,1619623699,0),(745,1,3,'mod/forum:exportdiscussion',1,1619623699,0),(746,1,1,'mod/forum:exportdiscussion',1,1619623699,0),(747,1,4,'mod/forum:exportforum',1,1619623699,0),(748,1,3,'mod/forum:exportforum',1,1619623699,0),(749,1,1,'mod/forum:exportforum',1,1619623699,0),(750,1,4,'mod/forum:exportpost',1,1619623699,0),(751,1,3,'mod/forum:exportpost',1,1619623699,0),(752,1,1,'mod/forum:exportpost',1,1619623699,0),(753,1,4,'mod/forum:exportownpost',1,1619623699,0),(754,1,3,'mod/forum:exportownpost',1,1619623699,0),(755,1,1,'mod/forum:exportownpost',1,1619623699,0),(756,1,5,'mod/forum:exportownpost',1,1619623699,0),(757,1,4,'mod/forum:addquestion',1,1619623699,0),(758,1,3,'mod/forum:addquestion',1,1619623699,0),(759,1,1,'mod/forum:addquestion',1,1619623699,0),(760,1,5,'mod/forum:allowforcesubscribe',1,1619623699,0),(761,1,4,'mod/forum:allowforcesubscribe',1,1619623700,0),(762,1,3,'mod/forum:allowforcesubscribe',1,1619623700,0),(763,1,8,'mod/forum:allowforcesubscribe',1,1619623700,0),(764,1,4,'mod/forum:canposttomygroups',1,1619623700,0),(765,1,3,'mod/forum:canposttomygroups',1,1619623700,0),(766,1,1,'mod/forum:canposttomygroups',1,1619623700,0),(767,1,4,'mod/forum:canoverridediscussionlock',1,1619623700,0),(768,1,3,'mod/forum:canoverridediscussionlock',1,1619623700,0),(769,1,1,'mod/forum:canoverridediscussionlock',1,1619623700,0),(770,1,4,'mod/forum:canoverridecutoff',1,1619623700,0),(771,1,3,'mod/forum:canoverridecutoff',1,1619623700,0),(772,1,1,'mod/forum:canoverridecutoff',1,1619623700,0),(773,1,7,'mod/forum:cantogglefavourite',1,1619623700,0),(774,1,4,'mod/forum:grade',1,1619623700,0),(775,1,3,'mod/forum:grade',1,1619623700,0),(776,1,1,'mod/forum:grade',1,1619623700,0),(777,1,3,'mod/glossary:addinstance',1,1619623700,0),(778,1,1,'mod/glossary:addinstance',1,1619623700,0),(779,1,8,'mod/glossary:view',1,1619623700,0),(780,1,6,'mod/glossary:view',1,1619623700,0),(781,1,5,'mod/glossary:view',1,1619623700,0),(782,1,4,'mod/glossary:view',1,1619623700,0),(783,1,3,'mod/glossary:view',1,1619623700,0),(784,1,1,'mod/glossary:view',1,1619623700,0),(785,1,5,'mod/glossary:write',1,1619623700,0),(786,1,4,'mod/glossary:write',1,1619623700,0),(787,1,3,'mod/glossary:write',1,1619623700,0),(788,1,1,'mod/glossary:write',1,1619623700,0),(789,1,4,'mod/glossary:manageentries',1,1619623700,0),(790,1,3,'mod/glossary:manageentries',1,1619623700,0),(791,1,1,'mod/glossary:manageentries',1,1619623700,0),(792,1,4,'mod/glossary:managecategories',1,1619623700,0),(793,1,3,'mod/glossary:managecategories',1,1619623700,0),(794,1,1,'mod/glossary:managecategories',1,1619623700,0),(795,1,5,'mod/glossary:comment',1,1619623700,0),(796,1,4,'mod/glossary:comment',1,1619623700,0),(797,1,3,'mod/glossary:comment',1,1619623700,0),(798,1,1,'mod/glossary:comment',1,1619623700,0),(799,1,4,'mod/glossary:managecomments',1,1619623700,0),(800,1,3,'mod/glossary:managecomments',1,1619623700,0),(801,1,1,'mod/glossary:managecomments',1,1619623700,0),(802,1,4,'mod/glossary:import',1,1619623700,0),(803,1,3,'mod/glossary:import',1,1619623700,0),(804,1,1,'mod/glossary:import',1,1619623700,0),(805,1,4,'mod/glossary:export',1,1619623700,0),(806,1,3,'mod/glossary:export',1,1619623700,0),(807,1,1,'mod/glossary:export',1,1619623700,0),(808,1,4,'mod/glossary:approve',1,1619623700,0),(809,1,3,'mod/glossary:approve',1,1619623700,0),(810,1,1,'mod/glossary:approve',1,1619623700,0),(811,1,4,'mod/glossary:rate',1,1619623700,0),(812,1,3,'mod/glossary:rate',1,1619623700,0),(813,1,1,'mod/glossary:rate',1,1619623700,0),(814,1,4,'mod/glossary:viewrating',1,1619623700,0),(815,1,3,'mod/glossary:viewrating',1,1619623700,0),(816,1,1,'mod/glossary:viewrating',1,1619623700,0),(817,1,4,'mod/glossary:viewanyrating',1,1619623700,0),(818,1,3,'mod/glossary:viewanyrating',1,1619623700,0),(819,1,1,'mod/glossary:viewanyrating',1,1619623700,0),(820,1,4,'mod/glossary:viewallratings',1,1619623700,0),(821,1,3,'mod/glossary:viewallratings',1,1619623700,0),(822,1,1,'mod/glossary:viewallratings',1,1619623700,0),(823,1,4,'mod/glossary:exportentry',1,1619623700,0),(824,1,3,'mod/glossary:exportentry',1,1619623700,0),(825,1,1,'mod/glossary:exportentry',1,1619623700,0),(826,1,4,'mod/glossary:exportownentry',1,1619623700,0),(827,1,3,'mod/glossary:exportownentry',1,1619623700,0),(828,1,1,'mod/glossary:exportownentry',1,1619623700,0),(829,1,5,'mod/glossary:exportownentry',1,1619623700,0),(830,1,6,'mod/h5pactivity:view',1,1619623700,0),(831,1,5,'mod/h5pactivity:view',1,1619623700,0),(832,1,4,'mod/h5pactivity:view',1,1619623700,0),(833,1,3,'mod/h5pactivity:view',1,1619623700,0),(834,1,1,'mod/h5pactivity:view',1,1619623701,0),(835,1,3,'mod/h5pactivity:addinstance',1,1619623701,0),(836,1,1,'mod/h5pactivity:addinstance',1,1619623701,0),(837,1,5,'mod/h5pactivity:submit',1,1619623701,0),(838,1,3,'mod/h5pactivity:reviewattempts',1,1619623701,0),(839,1,1,'mod/h5pactivity:reviewattempts',1,1619623701,0),(840,1,6,'mod/imscp:view',1,1619623701,0),(841,1,7,'mod/imscp:view',1,1619623701,0),(842,1,3,'mod/imscp:addinstance',1,1619623701,0),(843,1,1,'mod/imscp:addinstance',1,1619623701,0),(844,1,3,'mod/label:addinstance',1,1619623701,0),(845,1,1,'mod/label:addinstance',1,1619623701,0),(846,1,7,'mod/label:view',1,1619623701,0),(847,1,6,'mod/label:view',1,1619623701,0),(848,1,3,'mod/lesson:addinstance',1,1619623701,0),(849,1,1,'mod/lesson:addinstance',1,1619623701,0),(850,1,3,'mod/lesson:edit',1,1619623701,0),(851,1,1,'mod/lesson:edit',1,1619623701,0),(852,1,4,'mod/lesson:grade',1,1619623701,0),(853,1,3,'mod/lesson:grade',1,1619623701,0),(854,1,1,'mod/lesson:grade',1,1619623701,0),(855,1,4,'mod/lesson:viewreports',1,1619623701,0),(856,1,3,'mod/lesson:viewreports',1,1619623701,0),(857,1,1,'mod/lesson:viewreports',1,1619623701,0),(858,1,4,'mod/lesson:manage',1,1619623701,0),(859,1,3,'mod/lesson:manage',1,1619623701,0),(860,1,1,'mod/lesson:manage',1,1619623701,0),(861,1,3,'mod/lesson:manageoverrides',1,1619623701,0),(862,1,1,'mod/lesson:manageoverrides',1,1619623701,0),(863,1,7,'mod/lesson:view',1,1619623701,0),(864,1,6,'mod/lesson:view',1,1619623701,0),(865,1,5,'mod/lti:view',1,1619623701,0),(866,1,4,'mod/lti:view',1,1619623701,0),(867,1,3,'mod/lti:view',1,1619623701,0),(868,1,1,'mod/lti:view',1,1619623701,0),(869,1,3,'mod/lti:addinstance',1,1619623701,0),(870,1,1,'mod/lti:addinstance',1,1619623701,0),(871,1,4,'mod/lti:manage',1,1619623701,0),(872,1,3,'mod/lti:manage',1,1619623701,0),(873,1,1,'mod/lti:manage',1,1619623701,0),(874,1,3,'mod/lti:addcoursetool',1,1619623702,0),(875,1,1,'mod/lti:addcoursetool',1,1619623702,0),(876,1,3,'mod/lti:addpreconfiguredinstance',1,1619623702,0),(877,1,1,'mod/lti:addpreconfiguredinstance',1,1619623702,0),(878,1,3,'mod/lti:addmanualinstance',1,1619623702,0),(879,1,1,'mod/lti:addmanualinstance',1,1619623702,0),(880,1,3,'mod/lti:requesttooladd',1,1619623702,0),(881,1,1,'mod/lti:requesttooladd',1,1619623702,0),(882,1,6,'mod/page:view',1,1619623702,0),(883,1,7,'mod/page:view',1,1619623702,0),(884,1,3,'mod/page:addinstance',1,1619623702,0),(885,1,1,'mod/page:addinstance',1,1619623702,0),(886,1,6,'mod/quiz:view',1,1619623702,0),(887,1,5,'mod/quiz:view',1,1619623702,0),(888,1,4,'mod/quiz:view',1,1619623702,0),(889,1,3,'mod/quiz:view',1,1619623702,0),(890,1,1,'mod/quiz:view',1,1619623702,0),(891,1,3,'mod/quiz:addinstance',1,1619623702,0),(892,1,1,'mod/quiz:addinstance',1,1619623702,0),(893,1,5,'mod/quiz:attempt',1,1619623702,0),(894,1,5,'mod/quiz:reviewmyattempts',1,1619623702,0),(895,1,3,'mod/quiz:manage',1,1619623702,0),(896,1,1,'mod/quiz:manage',1,1619623702,0),(897,1,3,'mod/quiz:manageoverrides',1,1619623702,0),(898,1,1,'mod/quiz:manageoverrides',1,1619623702,0),(899,1,4,'mod/quiz:preview',1,1619623702,0),(900,1,3,'mod/quiz:preview',1,1619623702,0),(901,1,1,'mod/quiz:preview',1,1619623702,0),(902,1,4,'mod/quiz:grade',1,1619623702,0),(903,1,3,'mod/quiz:grade',1,1619623702,0),(904,1,1,'mod/quiz:grade',1,1619623702,0),(905,1,4,'mod/quiz:regrade',1,1619623702,0),(906,1,3,'mod/quiz:regrade',1,1619623702,0),(907,1,1,'mod/quiz:regrade',1,1619623702,0),(908,1,4,'mod/quiz:viewreports',1,1619623702,0),(909,1,3,'mod/quiz:viewreports',1,1619623702,0),(910,1,1,'mod/quiz:viewreports',1,1619623702,0),(911,1,3,'mod/quiz:deleteattempts',1,1619623702,0),(912,1,1,'mod/quiz:deleteattempts',1,1619623702,0),(913,1,6,'mod/resource:view',1,1619623702,0),(914,1,7,'mod/resource:view',1,1619623702,0),(915,1,3,'mod/resource:addinstance',1,1619623702,0),(916,1,1,'mod/resource:addinstance',1,1619623702,0),(917,1,3,'mod/scorm:addinstance',1,1619623702,0),(918,1,1,'mod/scorm:addinstance',1,1619623702,0),(919,1,4,'mod/scorm:viewreport',1,1619623702,0),(920,1,3,'mod/scorm:viewreport',1,1619623702,0),(921,1,1,'mod/scorm:viewreport',1,1619623702,0),(922,1,5,'mod/scorm:skipview',1,1619623703,0),(923,1,5,'mod/scorm:savetrack',1,1619623703,0),(924,1,4,'mod/scorm:savetrack',1,1619623703,0),(925,1,3,'mod/scorm:savetrack',1,1619623703,0),(926,1,1,'mod/scorm:savetrack',1,1619623703,0),(927,1,5,'mod/scorm:viewscores',1,1619623703,0),(928,1,4,'mod/scorm:viewscores',1,1619623703,0),(929,1,3,'mod/scorm:viewscores',1,1619623703,0),(930,1,1,'mod/scorm:viewscores',1,1619623703,0),(931,1,4,'mod/scorm:deleteresponses',1,1619623703,0),(932,1,3,'mod/scorm:deleteresponses',1,1619623703,0),(933,1,1,'mod/scorm:deleteresponses',1,1619623703,0),(934,1,3,'mod/survey:addinstance',1,1619623703,0),(935,1,1,'mod/survey:addinstance',1,1619623703,0),(936,1,5,'mod/survey:participate',1,1619623703,0),(937,1,4,'mod/survey:participate',1,1619623703,0),(938,1,3,'mod/survey:participate',1,1619623703,0),(939,1,1,'mod/survey:participate',1,1619623703,0),(940,1,4,'mod/survey:readresponses',1,1619623703,0),(941,1,3,'mod/survey:readresponses',1,1619623703,0),(942,1,1,'mod/survey:readresponses',1,1619623703,0),(943,1,4,'mod/survey:download',1,1619623703,0),(944,1,3,'mod/survey:download',1,1619623703,0),(945,1,1,'mod/survey:download',1,1619623703,0),(946,1,6,'mod/url:view',1,1619623703,0),(947,1,7,'mod/url:view',1,1619623703,0),(948,1,3,'mod/url:addinstance',1,1619623703,0),(949,1,1,'mod/url:addinstance',1,1619623703,0),(950,1,3,'mod/wiki:addinstance',1,1619623703,0),(951,1,1,'mod/wiki:addinstance',1,1619623703,0),(952,1,6,'mod/wiki:viewpage',1,1619623703,0),(953,1,8,'mod/wiki:viewpage',1,1619623703,0),(954,1,5,'mod/wiki:viewpage',1,1619623703,0),(955,1,4,'mod/wiki:viewpage',1,1619623703,0),(956,1,3,'mod/wiki:viewpage',1,1619623703,0),(957,1,1,'mod/wiki:viewpage',1,1619623703,0),(958,1,5,'mod/wiki:editpage',1,1619623703,0),(959,1,4,'mod/wiki:editpage',1,1619623703,0),(960,1,3,'mod/wiki:editpage',1,1619623703,0),(961,1,1,'mod/wiki:editpage',1,1619623703,0),(962,1,5,'mod/wiki:createpage',1,1619623703,0),(963,1,4,'mod/wiki:createpage',1,1619623703,0),(964,1,3,'mod/wiki:createpage',1,1619623703,0),(965,1,1,'mod/wiki:createpage',1,1619623703,0),(966,1,5,'mod/wiki:viewcomment',1,1619623703,0),(967,1,4,'mod/wiki:viewcomment',1,1619623703,0),(968,1,3,'mod/wiki:viewcomment',1,1619623703,0),(969,1,1,'mod/wiki:viewcomment',1,1619623703,0),(970,1,5,'mod/wiki:editcomment',1,1619623703,0),(971,1,4,'mod/wiki:editcomment',1,1619623703,0),(972,1,3,'mod/wiki:editcomment',1,1619623703,0),(973,1,1,'mod/wiki:editcomment',1,1619623703,0),(974,1,4,'mod/wiki:managecomment',1,1619623703,0),(975,1,3,'mod/wiki:managecomment',1,1619623703,0),(976,1,1,'mod/wiki:managecomment',1,1619623703,0),(977,1,4,'mod/wiki:managefiles',1,1619623703,0),(978,1,3,'mod/wiki:managefiles',1,1619623703,0),(979,1,1,'mod/wiki:managefiles',1,1619623703,0),(980,1,4,'mod/wiki:overridelock',1,1619623703,0),(981,1,3,'mod/wiki:overridelock',1,1619623703,0),(982,1,1,'mod/wiki:overridelock',1,1619623703,0),(983,1,4,'mod/wiki:managewiki',1,1619623703,0),(984,1,3,'mod/wiki:managewiki',1,1619623703,0),(985,1,1,'mod/wiki:managewiki',1,1619623703,0),(986,1,6,'mod/workshop:view',1,1619623704,0),(987,1,5,'mod/workshop:view',1,1619623704,0),(988,1,4,'mod/workshop:view',1,1619623704,0),(989,1,3,'mod/workshop:view',1,1619623704,0),(990,1,1,'mod/workshop:view',1,1619623704,0),(991,1,3,'mod/workshop:addinstance',1,1619623704,0),(992,1,1,'mod/workshop:addinstance',1,1619623704,0),(993,1,4,'mod/workshop:switchphase',1,1619623704,0),(994,1,3,'mod/workshop:switchphase',1,1619623704,0),(995,1,1,'mod/workshop:switchphase',1,1619623704,0),(996,1,3,'mod/workshop:editdimensions',1,1619623704,0),(997,1,1,'mod/workshop:editdimensions',1,1619623704,0),(998,1,5,'mod/workshop:submit',1,1619623704,0),(999,1,5,'mod/workshop:peerassess',1,1619623704,0),(1000,1,4,'mod/workshop:manageexamples',1,1619623704,0),(1001,1,3,'mod/workshop:manageexamples',1,1619623704,0),(1002,1,1,'mod/workshop:manageexamples',1,1619623704,0),(1003,1,4,'mod/workshop:allocate',1,1619623704,0),(1004,1,3,'mod/workshop:allocate',1,1619623704,0),(1005,1,1,'mod/workshop:allocate',1,1619623704,0),(1006,1,4,'mod/workshop:publishsubmissions',1,1619623704,0),(1007,1,3,'mod/workshop:publishsubmissions',1,1619623704,0),(1008,1,1,'mod/workshop:publishsubmissions',1,1619623704,0),(1009,1,5,'mod/workshop:viewauthornames',1,1619623704,0),(1010,1,4,'mod/workshop:viewauthornames',1,1619623704,0),(1011,1,3,'mod/workshop:viewauthornames',1,1619623704,0),(1012,1,1,'mod/workshop:viewauthornames',1,1619623704,0),(1013,1,4,'mod/workshop:viewreviewernames',1,1619623704,0),(1014,1,3,'mod/workshop:viewreviewernames',1,1619623704,0),(1015,1,1,'mod/workshop:viewreviewernames',1,1619623704,0),(1016,1,4,'mod/workshop:viewallsubmissions',1,1619623704,0),(1017,1,3,'mod/workshop:viewallsubmissions',1,1619623704,0),(1018,1,1,'mod/workshop:viewallsubmissions',1,1619623704,0),(1019,1,5,'mod/workshop:viewpublishedsubmissions',1,1619623704,0),(1020,1,4,'mod/workshop:viewpublishedsubmissions',1,1619623704,0),(1021,1,3,'mod/workshop:viewpublishedsubmissions',1,1619623704,0),(1022,1,1,'mod/workshop:viewpublishedsubmissions',1,1619623704,0),(1023,1,5,'mod/workshop:viewauthorpublished',1,1619623704,0),(1024,1,4,'mod/workshop:viewauthorpublished',1,1619623704,0),(1025,1,3,'mod/workshop:viewauthorpublished',1,1619623704,0),(1026,1,1,'mod/workshop:viewauthorpublished',1,1619623704,0),(1027,1,4,'mod/workshop:viewallassessments',1,1619623704,0),(1028,1,3,'mod/workshop:viewallassessments',1,1619623704,0),(1029,1,1,'mod/workshop:viewallassessments',1,1619623704,0),(1030,1,4,'mod/workshop:overridegrades',1,1619623704,0),(1031,1,3,'mod/workshop:overridegrades',1,1619623704,0),(1032,1,1,'mod/workshop:overridegrades',1,1619623704,0),(1033,1,4,'mod/workshop:ignoredeadlines',1,1619623704,0),(1034,1,3,'mod/workshop:ignoredeadlines',1,1619623704,0),(1035,1,1,'mod/workshop:ignoredeadlines',1,1619623704,0),(1036,1,4,'mod/workshop:deletesubmissions',1,1619623704,0),(1037,1,3,'mod/workshop:deletesubmissions',1,1619623704,0),(1038,1,1,'mod/workshop:deletesubmissions',1,1619623704,0),(1039,1,1,'mod/workshop:exportsubmissions',1,1619623704,0),(1040,1,4,'mod/workshop:exportsubmissions',1,1619623704,0),(1041,1,3,'mod/workshop:exportsubmissions',1,1619623704,0),(1042,1,5,'mod/workshop:exportsubmissions',1,1619623704,0),(1043,1,7,'auth/oauth2:managelinkedlogins',1,1619623705,0),(1044,1,1,'enrol/category:config',1,1619623705,0),(1045,1,3,'enrol/category:config',1,1619623705,0),(1046,1,3,'enrol/cohort:config',1,1619623705,0),(1047,1,1,'enrol/cohort:config',1,1619623705,0),(1048,1,1,'enrol/cohort:unenrol',1,1619623705,0),(1049,1,1,'enrol/database:unenrol',1,1619623705,0),(1050,1,1,'enrol/database:config',1,1619623705,0),(1051,1,3,'enrol/database:config',1,1619623705,0),(1052,1,1,'enrol/fee:config',1,1619623705,0),(1053,1,1,'enrol/fee:manage',1,1619623705,0),(1054,1,3,'enrol/fee:manage',1,1619623705,0),(1055,1,1,'enrol/fee:unenrol',1,1619623705,0),(1056,1,1,'enrol/guest:config',1,1619623705,0),(1057,1,3,'enrol/guest:config',1,1619623705,0),(1058,1,1,'enrol/imsenterprise:config',1,1619623705,0),(1059,1,3,'enrol/imsenterprise:config',1,1619623705,0),(1060,1,1,'enrol/ldap:manage',1,1619623705,0),(1061,1,1,'enrol/lti:config',1,1619623706,0),(1062,1,3,'enrol/lti:config',1,1619623706,0),(1063,1,1,'enrol/lti:unenrol',1,1619623706,0),(1064,1,3,'enrol/lti:unenrol',1,1619623706,0),(1065,1,1,'enrol/manual:config',1,1619623706,0),(1066,1,1,'enrol/manual:enrol',1,1619623706,0),(1067,1,3,'enrol/manual:enrol',1,1619623706,0),(1068,1,1,'enrol/manual:manage',1,1619623706,0),(1069,1,3,'enrol/manual:manage',1,1619623706,0),(1070,1,1,'enrol/manual:unenrol',1,1619623706,0),(1071,1,3,'enrol/manual:unenrol',1,1619623706,0),(1072,1,1,'enrol/meta:config',1,1619623706,0),(1073,1,3,'enrol/meta:config',1,1619623706,0),(1074,1,1,'enrol/meta:selectaslinked',1,1619623706,0),(1075,1,1,'enrol/meta:unenrol',1,1619623706,0),(1076,1,1,'enrol/mnet:config',1,1619623706,0),(1077,1,3,'enrol/mnet:config',1,1619623706,0),(1078,1,1,'enrol/paypal:config',1,1619623706,0),(1079,1,1,'enrol/paypal:manage',1,1619623706,0),(1080,1,3,'enrol/paypal:manage',1,1619623706,0),(1081,1,1,'enrol/paypal:unenrol',1,1619623706,0),(1082,1,3,'enrol/self:config',1,1619623706,0),(1083,1,1,'enrol/self:config',1,1619623706,0),(1084,1,3,'enrol/self:manage',1,1619623706,0),(1085,1,1,'enrol/self:manage',1,1619623706,0),(1086,1,5,'enrol/self:unenrolself',1,1619623706,0),(1087,1,3,'enrol/self:unenrol',1,1619623706,0),(1088,1,1,'enrol/self:unenrol',1,1619623706,0),(1089,1,7,'enrol/self:enrolself',1,1619623706,0),(1090,1,7,'message/airnotifier:managedevice',1,1619623706,0),(1091,1,3,'block/activity_modules:addinstance',1,1619623707,0),(1092,1,1,'block/activity_modules:addinstance',1,1619623707,0),(1093,1,3,'block/activity_results:addinstance',1,1619623707,0),(1094,1,1,'block/activity_results:addinstance',1,1619623707,0),(1095,1,7,'block/admin_bookmarks:myaddinstance',1,1619623707,0),(1096,1,3,'block/admin_bookmarks:addinstance',1,1619623707,0),(1097,1,1,'block/admin_bookmarks:addinstance',1,1619623707,0),(1098,1,3,'block/badges:addinstance',1,1619623707,0),(1099,1,1,'block/badges:addinstance',1,1619623707,0),(1100,1,7,'block/badges:myaddinstance',1,1619623707,0),(1101,1,3,'block/blog_menu:addinstance',1,1619623707,0),(1102,1,1,'block/blog_menu:addinstance',1,1619623707,0),(1103,1,3,'block/blog_recent:addinstance',1,1619623707,0),(1104,1,1,'block/blog_recent:addinstance',1,1619623707,0),(1105,1,3,'block/blog_tags:addinstance',1,1619623707,0),(1106,1,1,'block/blog_tags:addinstance',1,1619623707,0),(1107,1,7,'block/calendar_month:myaddinstance',1,1619623707,0),(1108,1,3,'block/calendar_month:addinstance',1,1619623707,0),(1109,1,1,'block/calendar_month:addinstance',1,1619623707,0),(1110,1,7,'block/calendar_upcoming:myaddinstance',1,1619623707,0),(1111,1,3,'block/calendar_upcoming:addinstance',1,1619623707,0),(1112,1,1,'block/calendar_upcoming:addinstance',1,1619623707,0),(1113,1,7,'block/comments:myaddinstance',1,1619623707,0),(1114,1,3,'block/comments:addinstance',1,1619623707,0),(1115,1,1,'block/comments:addinstance',1,1619623707,0),(1116,1,3,'block/completionstatus:addinstance',1,1619623707,0),(1117,1,1,'block/completionstatus:addinstance',1,1619623707,0),(1118,1,7,'block/course_list:myaddinstance',1,1619623707,0),(1119,1,3,'block/course_list:addinstance',1,1619623708,0),(1120,1,1,'block/course_list:addinstance',1,1619623708,0),(1121,1,3,'block/course_summary:addinstance',1,1619623708,0),(1122,1,1,'block/course_summary:addinstance',1,1619623708,0),(1123,1,3,'block/feedback:addinstance',1,1619623708,0),(1124,1,1,'block/feedback:addinstance',1,1619623708,0),(1125,1,7,'block/globalsearch:myaddinstance',1,1619623708,0),(1126,1,3,'block/globalsearch:addinstance',1,1619623708,0),(1127,1,1,'block/globalsearch:addinstance',1,1619623708,0),(1128,1,7,'block/glossary_random:myaddinstance',1,1619623708,0),(1129,1,3,'block/glossary_random:addinstance',1,1619623708,0),(1130,1,1,'block/glossary_random:addinstance',1,1619623708,0),(1131,1,7,'block/html:myaddinstance',1,1619623708,0),(1132,1,3,'block/html:addinstance',1,1619623708,0),(1133,1,1,'block/html:addinstance',1,1619623708,0),(1134,1,3,'block/login:addinstance',1,1619623708,0),(1135,1,1,'block/login:addinstance',1,1619623708,0),(1136,1,3,'block/lp:addinstance',1,1619623708,0),(1137,1,1,'block/lp:addinstance',1,1619623708,0),(1138,1,7,'block/lp:myaddinstance',1,1619623708,0),(1139,1,7,'block/mentees:myaddinstance',1,1619623708,0),(1140,1,3,'block/mentees:addinstance',1,1619623708,0),(1141,1,1,'block/mentees:addinstance',1,1619623708,0),(1142,1,7,'block/mnet_hosts:myaddinstance',1,1619623708,0),(1143,1,3,'block/mnet_hosts:addinstance',1,1619623708,0),(1144,1,1,'block/mnet_hosts:addinstance',1,1619623708,0),(1145,1,7,'block/myoverview:myaddinstance',1,1619623708,0),(1146,1,7,'block/myprofile:myaddinstance',1,1619623708,0),(1147,1,3,'block/myprofile:addinstance',1,1619623708,0),(1148,1,1,'block/myprofile:addinstance',1,1619623708,0),(1149,1,7,'block/navigation:myaddinstance',1,1619623708,0),(1150,1,3,'block/navigation:addinstance',1,1619623708,0),(1151,1,1,'block/navigation:addinstance',1,1619623708,0),(1152,1,7,'block/news_items:myaddinstance',1,1619623708,0),(1153,1,3,'block/news_items:addinstance',1,1619623708,0),(1154,1,1,'block/news_items:addinstance',1,1619623708,0),(1155,1,7,'block/online_users:myaddinstance',1,1619623708,0),(1156,1,3,'block/online_users:addinstance',1,1619623708,0),(1157,1,1,'block/online_users:addinstance',1,1619623708,0),(1158,1,7,'block/online_users:viewlist',1,1619623708,0),(1159,1,6,'block/online_users:viewlist',1,1619623708,0),(1160,1,5,'block/online_users:viewlist',1,1619623708,0),(1161,1,4,'block/online_users:viewlist',1,1619623708,0),(1162,1,3,'block/online_users:viewlist',1,1619623708,0),(1163,1,1,'block/online_users:viewlist',1,1619623708,0),(1164,1,7,'block/private_files:myaddinstance',1,1619623709,0),(1165,1,3,'block/private_files:addinstance',1,1619623709,0),(1166,1,1,'block/private_files:addinstance',1,1619623709,0),(1167,1,3,'block/quiz_results:addinstance',1,1619623709,0),(1168,1,1,'block/quiz_results:addinstance',1,1619623709,0),(1169,1,3,'block/recent_activity:addinstance',1,1619623709,0),(1170,1,1,'block/recent_activity:addinstance',1,1619623709,0),(1171,1,7,'block/recent_activity:viewaddupdatemodule',1,1619623709,0),(1172,1,7,'block/recent_activity:viewdeletemodule',1,1619623709,0),(1173,1,7,'block/recentlyaccessedcourses:myaddinstance',1,1619623709,0),(1174,1,7,'block/recentlyaccesseditems:myaddinstance',1,1619623709,0),(1175,1,7,'block/rss_client:myaddinstance',1,1619623709,0),(1176,1,3,'block/rss_client:addinstance',1,1619623709,0),(1177,1,1,'block/rss_client:addinstance',1,1619623709,0),(1178,1,4,'block/rss_client:manageownfeeds',1,1619623709,0),(1179,1,3,'block/rss_client:manageownfeeds',1,1619623709,0),(1180,1,1,'block/rss_client:manageownfeeds',1,1619623709,0),(1181,1,1,'block/rss_client:manageanyfeeds',1,1619623709,0),(1182,1,3,'block/search_forums:addinstance',1,1619623709,0),(1183,1,1,'block/search_forums:addinstance',1,1619623709,0),(1184,1,3,'block/section_links:addinstance',1,1619623709,0),(1185,1,1,'block/section_links:addinstance',1,1619623709,0),(1186,1,3,'block/selfcompletion:addinstance',1,1619623709,0),(1187,1,1,'block/selfcompletion:addinstance',1,1619623709,0),(1188,1,7,'block/settings:myaddinstance',1,1619623709,0),(1189,1,3,'block/settings:addinstance',1,1619623709,0),(1190,1,1,'block/settings:addinstance',1,1619623709,0),(1191,1,3,'block/site_main_menu:addinstance',1,1619623709,0),(1192,1,1,'block/site_main_menu:addinstance',1,1619623709,0),(1193,1,3,'block/social_activities:addinstance',1,1619623709,0),(1194,1,1,'block/social_activities:addinstance',1,1619623709,0),(1195,1,7,'block/starredcourses:myaddinstance',1,1619623709,0),(1196,1,3,'block/tag_flickr:addinstance',1,1619623709,0),(1197,1,1,'block/tag_flickr:addinstance',1,1619623709,0),(1198,1,3,'block/tag_youtube:addinstance',1,1619623709,0),(1199,1,1,'block/tag_youtube:addinstance',1,1619623709,0),(1200,1,7,'block/tags:myaddinstance',1,1619623709,0),(1201,1,3,'block/tags:addinstance',1,1619623709,0),(1202,1,1,'block/tags:addinstance',1,1619623709,0),(1203,1,7,'block/timeline:myaddinstance',1,1619623710,0),(1204,1,4,'report/completion:view',1,1619623711,0),(1205,1,3,'report/completion:view',1,1619623711,0),(1206,1,1,'report/completion:view',1,1619623711,0),(1207,1,4,'report/courseoverview:view',1,1619623711,0),(1208,1,3,'report/courseoverview:view',1,1619623711,0),(1209,1,1,'report/courseoverview:view',1,1619623711,0),(1210,1,4,'report/log:view',1,1619623711,0),(1211,1,3,'report/log:view',1,1619623711,0),(1212,1,1,'report/log:view',1,1619623711,0),(1213,1,4,'report/log:viewtoday',1,1619623711,0),(1214,1,3,'report/log:viewtoday',1,1619623711,0),(1215,1,1,'report/log:viewtoday',1,1619623711,0),(1216,1,4,'report/loglive:view',1,1619623711,0),(1217,1,3,'report/loglive:view',1,1619623711,0),(1218,1,1,'report/loglive:view',1,1619623711,0),(1219,1,4,'report/outline:view',1,1619623711,0),(1220,1,3,'report/outline:view',1,1619623711,0),(1221,1,1,'report/outline:view',1,1619623712,0),(1222,1,4,'report/outline:viewuserreport',1,1619623712,0),(1223,1,3,'report/outline:viewuserreport',1,1619623712,0),(1224,1,1,'report/outline:viewuserreport',1,1619623712,0),(1225,1,4,'report/participation:view',1,1619623712,0),(1226,1,3,'report/participation:view',1,1619623712,0),(1227,1,1,'report/participation:view',1,1619623712,0),(1228,1,1,'report/performance:view',1,1619623712,0),(1229,1,4,'report/progress:view',1,1619623712,0),(1230,1,3,'report/progress:view',1,1619623712,0),(1231,1,1,'report/progress:view',1,1619623712,0),(1232,1,1,'report/security:view',1,1619623712,0),(1233,1,4,'report/stats:view',1,1619623712,0),(1234,1,3,'report/stats:view',1,1619623712,0),(1235,1,1,'report/stats:view',1,1619623712,0),(1236,1,1,'report/status:view',1,1619623712,0),(1237,1,6,'report/usersessions:manageownsessions',-1000,1619623712,0),(1238,1,7,'report/usersessions:manageownsessions',1,1619623712,0),(1239,1,1,'report/usersessions:manageownsessions',1,1619623712,0),(1240,1,4,'gradeexport/ods:view',1,1619623712,0),(1241,1,3,'gradeexport/ods:view',1,1619623712,0),(1242,1,1,'gradeexport/ods:view',1,1619623712,0),(1243,1,1,'gradeexport/ods:publish',1,1619623712,0),(1244,1,4,'gradeexport/txt:view',1,1619623712,0),(1245,1,3,'gradeexport/txt:view',1,1619623712,0),(1246,1,1,'gradeexport/txt:view',1,1619623712,0),(1247,1,1,'gradeexport/txt:publish',1,1619623712,0),(1248,1,4,'gradeexport/xls:view',1,1619623712,0),(1249,1,3,'gradeexport/xls:view',1,1619623712,0),(1250,1,1,'gradeexport/xls:view',1,1619623712,0),(1251,1,1,'gradeexport/xls:publish',1,1619623712,0),(1252,1,4,'gradeexport/xml:view',1,1619623712,0),(1253,1,3,'gradeexport/xml:view',1,1619623712,0),(1254,1,1,'gradeexport/xml:view',1,1619623712,0),(1255,1,1,'gradeexport/xml:publish',1,1619623712,0),(1256,1,3,'gradeimport/csv:view',1,1619623712,0),(1257,1,1,'gradeimport/csv:view',1,1619623712,0),(1258,1,3,'gradeimport/direct:view',1,1619623712,0),(1259,1,1,'gradeimport/direct:view',1,1619623712,0),(1260,1,3,'gradeimport/xml:view',1,1619623712,0),(1261,1,1,'gradeimport/xml:view',1,1619623712,0),(1262,1,1,'gradeimport/xml:publish',1,1619623712,0),(1263,1,4,'gradereport/grader:view',1,1619623712,0),(1264,1,3,'gradereport/grader:view',1,1619623712,0),(1265,1,1,'gradereport/grader:view',1,1619623713,0),(1266,1,4,'gradereport/history:view',1,1619623713,0),(1267,1,3,'gradereport/history:view',1,1619623713,0),(1268,1,1,'gradereport/history:view',1,1619623713,0),(1269,1,4,'gradereport/outcomes:view',1,1619623713,0),(1270,1,3,'gradereport/outcomes:view',1,1619623713,0),(1271,1,1,'gradereport/outcomes:view',1,1619623713,0),(1272,1,7,'gradereport/overview:view',1,1619623713,0),(1273,1,3,'gradereport/singleview:view',1,1619623713,0),(1274,1,1,'gradereport/singleview:view',1,1619623713,0),(1275,1,5,'gradereport/user:view',1,1619623713,0),(1276,1,4,'gradereport/user:view',1,1619623713,0),(1277,1,3,'gradereport/user:view',1,1619623713,0),(1278,1,1,'gradereport/user:view',1,1619623713,0),(1279,1,7,'repository/areafiles:view',1,1619623713,0),(1280,1,7,'repository/boxnet:view',1,1619623713,0),(1281,1,2,'repository/contentbank:view',1,1619623713,0),(1282,1,3,'repository/contentbank:view',1,1619623713,0),(1283,1,1,'repository/contentbank:view',1,1619623713,0),(1284,1,2,'repository/contentbank:accesscoursecontent',1,1619623713,0),(1285,1,3,'repository/contentbank:accesscoursecontent',1,1619623713,0),(1286,1,1,'repository/contentbank:accesscoursecontent',1,1619623713,0),(1287,1,2,'repository/contentbank:accesscoursecategorycontent',1,1619623714,0),(1288,1,1,'repository/contentbank:accesscoursecategorycontent',1,1619623714,0),(1289,1,7,'repository/contentbank:accessgeneralcontent',1,1619623714,0),(1290,1,2,'repository/coursefiles:view',1,1619623714,0),(1291,1,4,'repository/coursefiles:view',1,1619623714,0),(1292,1,3,'repository/coursefiles:view',1,1619623714,0),(1293,1,1,'repository/coursefiles:view',1,1619623714,0),(1294,1,7,'repository/dropbox:view',1,1619623714,0),(1295,1,7,'repository/equella:view',1,1619623714,0),(1296,1,2,'repository/filesystem:view',1,1619623714,0),(1297,1,4,'repository/filesystem:view',1,1619623714,0),(1298,1,3,'repository/filesystem:view',1,1619623714,0),(1299,1,1,'repository/filesystem:view',1,1619623714,0),(1300,1,7,'repository/flickr:view',1,1619623714,0),(1301,1,7,'repository/flickr_public:view',1,1619623714,0),(1302,1,7,'repository/googledocs:view',1,1619623714,0),(1303,1,2,'repository/local:view',1,1619623714,0),(1304,1,4,'repository/local:view',1,1619623714,0),(1305,1,3,'repository/local:view',1,1619623714,0),(1306,1,1,'repository/local:view',1,1619623714,0),(1307,1,7,'repository/merlot:view',1,1619623714,0),(1308,1,7,'repository/nextcloud:view',1,1619623714,0),(1309,1,7,'repository/onedrive:view',1,1619623714,0),(1310,1,7,'repository/picasa:view',1,1619623714,0),(1311,1,7,'repository/recent:view',1,1619623714,0),(1312,1,7,'repository/s3:view',1,1619623714,0),(1313,1,7,'repository/skydrive:view',1,1619623714,0),(1314,1,7,'repository/upload:view',1,1619623714,0),(1315,1,7,'repository/url:view',1,1619623715,0),(1316,1,7,'repository/user:view',1,1619623715,0),(1317,1,2,'repository/webdav:view',1,1619623715,0),(1318,1,4,'repository/webdav:view',1,1619623715,0),(1319,1,3,'repository/webdav:view',1,1619623715,0),(1320,1,1,'repository/webdav:view',1,1619623715,0),(1321,1,7,'repository/wikimedia:view',1,1619623715,0),(1322,1,7,'repository/youtube:view',1,1619623715,0),(1323,1,1,'tool/customlang:view',1,1619623716,0),(1324,1,1,'tool/customlang:edit',1,1619623716,0),(1325,1,1,'tool/customlang:export',1,1619623716,0),(1326,1,7,'tool/dataprivacy:downloadownrequest',1,1619623716,0),(1327,1,7,'tool/dataprivacy:requestdelete',1,1619623716,0),(1328,1,1,'tool/lpmigrate:frameworksmigrate',1,1619623717,0),(1329,1,4,'tool/monitor:subscribe',1,1619623717,0),(1330,1,3,'tool/monitor:subscribe',1,1619623717,0),(1331,1,1,'tool/monitor:subscribe',1,1619623717,0),(1332,1,4,'tool/monitor:managerules',1,1619623717,0),(1333,1,3,'tool/monitor:managerules',1,1619623717,0),(1334,1,1,'tool/monitor:managerules',1,1619623717,0),(1335,1,1,'tool/monitor:managetool',1,1619623717,0),(1336,1,7,'tool/policy:accept',1,1619623717,0),(1337,1,1,'tool/policy:managedocs',1,1619623717,0),(1338,1,1,'tool/policy:viewacceptances',1,1619623717,0),(1339,1,3,'tool/recyclebin:deleteitems',1,1619623718,0),(1340,1,1,'tool/recyclebin:deleteitems',1,1619623718,0),(1341,1,3,'tool/recyclebin:restoreitems',1,1619623718,0),(1342,1,1,'tool/recyclebin:restoreitems',1,1619623718,0),(1343,1,4,'tool/recyclebin:viewitems',1,1619623718,0),(1344,1,3,'tool/recyclebin:viewitems',1,1619623718,0),(1345,1,1,'tool/recyclebin:viewitems',1,1619623718,0),(1346,1,1,'tool/uploaduser:uploaduserpictures',1,1619623718,0),(1347,1,1,'tool/usertours:managetours',1,1619623718,0),(1348,1,1,'contenttype/h5p:access',1,1619623718,0),(1349,1,2,'contenttype/h5p:access',1,1619623718,0),(1350,1,3,'contenttype/h5p:access',1,1619623718,0),(1351,1,1,'contenttype/h5p:upload',1,1619623718,0),(1352,1,2,'contenttype/h5p:upload',1,1619623718,0),(1353,1,3,'contenttype/h5p:upload',1,1619623718,0),(1354,1,1,'contenttype/h5p:useeditor',1,1619623718,0),(1355,1,2,'contenttype/h5p:useeditor',1,1619623718,0),(1356,1,3,'contenttype/h5p:useeditor',1,1619623718,0),(1357,1,3,'booktool/importhtml:import',1,1619623719,0),(1358,1,1,'booktool/importhtml:import',1,1619623719,0),(1359,1,6,'booktool/print:print',1,1619623719,0),(1360,1,8,'booktool/print:print',1,1619623719,0),(1361,1,5,'booktool/print:print',1,1619623719,0),(1362,1,4,'booktool/print:print',1,1619623719,0),(1363,1,3,'booktool/print:print',1,1619623719,0),(1364,1,1,'booktool/print:print',1,1619623719,0),(1365,1,4,'forumreport/summary:view',1,1619623720,0),(1366,1,3,'forumreport/summary:view',1,1619623720,0),(1367,1,1,'forumreport/summary:view',1,1619623720,0),(1368,1,4,'forumreport/summary:viewall',1,1619623720,0),(1369,1,3,'forumreport/summary:viewall',1,1619623720,0),(1370,1,1,'forumreport/summary:viewall',1,1619623720,0),(1371,1,4,'quiz/grading:viewstudentnames',1,1619623720,0),(1372,1,3,'quiz/grading:viewstudentnames',1,1619623720,0),(1373,1,1,'quiz/grading:viewstudentnames',1,1619623720,0),(1374,1,4,'quiz/grading:viewidnumber',1,1619623720,0),(1375,1,3,'quiz/grading:viewidnumber',1,1619623720,0),(1376,1,1,'quiz/grading:viewidnumber',1,1619623720,0),(1377,1,4,'quiz/statistics:view',1,1619623720,0),(1378,1,3,'quiz/statistics:view',1,1619623720,0),(1379,1,1,'quiz/statistics:view',1,1619623720,0),(1380,1,1,'quizaccess/seb:managetemplates',1,1619623721,0),(1381,1,1,'quizaccess/seb:bypassseb',1,1619623721,0),(1382,1,3,'quizaccess/seb:bypassseb',1,1619623721,0),(1383,1,1,'quizaccess/seb:manage_seb_requiresafeexambrowser',1,1619623721,0),(1384,1,3,'quizaccess/seb:manage_seb_requiresafeexambrowser',1,1619623721,0),(1385,1,1,'quizaccess/seb:manage_seb_templateid',1,1619623721,0),(1386,1,3,'quizaccess/seb:manage_seb_templateid',1,1619623721,0),(1387,1,1,'quizaccess/seb:manage_filemanager_sebconfigfile',1,1619623721,0),(1388,1,3,'quizaccess/seb:manage_filemanager_sebconfigfile',1,1619623721,0),(1389,1,1,'quizaccess/seb:manage_seb_showsebdownloadlink',1,1619623721,0),(1390,1,3,'quizaccess/seb:manage_seb_showsebdownloadlink',1,1619623721,0),(1391,1,1,'quizaccess/seb:manage_seb_allowedbrowserexamkeys',1,1619623721,0),(1392,1,3,'quizaccess/seb:manage_seb_allowedbrowserexamkeys',1,1619623721,0),(1393,1,1,'quizaccess/seb:manage_seb_linkquitseb',1,1619623721,0),(1394,1,3,'quizaccess/seb:manage_seb_linkquitseb',1,1619623721,0),(1395,1,1,'quizaccess/seb:manage_seb_userconfirmquit',1,1619623721,0),(1396,1,3,'quizaccess/seb:manage_seb_userconfirmquit',1,1619623721,0),(1397,1,1,'quizaccess/seb:manage_seb_allowuserquitseb',1,1619623721,0),(1398,1,3,'quizaccess/seb:manage_seb_allowuserquitseb',1,1619623721,0),(1399,1,1,'quizaccess/seb:manage_seb_quitpassword',1,1619623721,0),(1400,1,3,'quizaccess/seb:manage_seb_quitpassword',1,1619623721,0),(1401,1,1,'quizaccess/seb:manage_seb_allowreloadinexam',1,1619623721,0),(1402,1,3,'quizaccess/seb:manage_seb_allowreloadinexam',1,1619623721,0),(1403,1,1,'quizaccess/seb:manage_seb_showsebtaskbar',1,1619623721,0),(1404,1,3,'quizaccess/seb:manage_seb_showsebtaskbar',1,1619623721,0),(1405,1,1,'quizaccess/seb:manage_seb_showreloadbutton',1,1619623721,0),(1406,1,3,'quizaccess/seb:manage_seb_showreloadbutton',1,1619623721,0),(1407,1,1,'quizaccess/seb:manage_seb_showtime',1,1619623721,0),(1408,1,3,'quizaccess/seb:manage_seb_showtime',1,1619623721,0),(1409,1,1,'quizaccess/seb:manage_seb_showkeyboardlayout',1,1619623721,0),(1410,1,3,'quizaccess/seb:manage_seb_showkeyboardlayout',1,1619623721,0),(1411,1,1,'quizaccess/seb:manage_seb_showwificontrol',1,1619623721,0),(1412,1,3,'quizaccess/seb:manage_seb_showwificontrol',1,1619623721,0),(1413,1,1,'quizaccess/seb:manage_seb_enableaudiocontrol',1,1619623721,0),(1414,1,3,'quizaccess/seb:manage_seb_enableaudiocontrol',1,1619623721,0),(1415,1,1,'quizaccess/seb:manage_seb_muteonstartup',1,1619623721,0),(1416,1,3,'quizaccess/seb:manage_seb_muteonstartup',1,1619623721,0),(1417,1,1,'quizaccess/seb:manage_seb_allowspellchecking',1,1619623721,0),(1418,1,3,'quizaccess/seb:manage_seb_allowspellchecking',1,1619623721,0),(1419,1,1,'quizaccess/seb:manage_seb_activateurlfiltering',1,1619623721,0),(1420,1,3,'quizaccess/seb:manage_seb_activateurlfiltering',1,1619623721,0),(1421,1,1,'quizaccess/seb:manage_seb_filterembeddedcontent',1,1619623721,0),(1422,1,3,'quizaccess/seb:manage_seb_filterembeddedcontent',1,1619623721,0),(1423,1,1,'quizaccess/seb:manage_seb_expressionsallowed',1,1619623721,0),(1424,1,3,'quizaccess/seb:manage_seb_expressionsallowed',1,1619623721,0),(1425,1,1,'quizaccess/seb:manage_seb_regexallowed',1,1619623721,0),(1426,1,3,'quizaccess/seb:manage_seb_regexallowed',1,1619623721,0),(1427,1,1,'quizaccess/seb:manage_seb_expressionsblocked',1,1619623721,0),(1428,1,3,'quizaccess/seb:manage_seb_expressionsblocked',1,1619623721,0),(1429,1,1,'quizaccess/seb:manage_seb_regexblocked',1,1619623721,0),(1430,1,3,'quizaccess/seb:manage_seb_regexblocked',1,1619623721,0),(1431,1,3,'atto/h5p:addembed',1,1619623722,0),(1432,1,7,'atto/recordrtc:recordaudio',1,1619623723,0),(1433,1,7,'atto/recordrtc:recordvideo',1,1619623723,0),(1434,1,3,'mod/customcert:addinstance',1,1619625659,2),(1435,1,1,'mod/customcert:addinstance',1,1619625659,2),(1436,1,5,'mod/customcert:view',1,1619625659,2),(1437,1,4,'mod/customcert:view',1,1619625659,2),(1438,1,3,'mod/customcert:view',1,1619625659,2),(1439,1,1,'mod/customcert:view',1,1619625659,2),(1440,1,4,'mod/customcert:manage',1,1619625659,2),(1441,1,3,'mod/customcert:manage',1,1619625659,2),(1442,1,1,'mod/customcert:manage',1,1619625659,2),(1443,1,5,'mod/customcert:receiveissue',1,1619625659,2),(1444,1,4,'mod/customcert:viewreport',1,1619625659,2),(1445,1,3,'mod/customcert:viewreport',1,1619625659,2),(1446,1,1,'mod/customcert:viewreport',1,1619625659,2),(1447,1,1,'mod/customcert:viewallcertificates',1,1619625659,2),(1448,1,4,'mod/customcert:verifycertificate',1,1619625659,2),(1449,1,3,'mod/customcert:verifycertificate',1,1619625659,2),(1450,1,1,'mod/customcert:verifycertificate',1,1619625659,2),(1451,1,1,'mod/customcert:verifyallcertificates',1,1619625659,2),(1452,1,3,'mod/customcert:manageemailstudents',1,1619625659,2),(1453,1,1,'mod/customcert:manageemailstudents',1,1619625659,2),(1454,1,3,'mod/customcert:manageemailteachers',1,1619625659,2),(1455,1,1,'mod/customcert:manageemailteachers',1,1619625659,2),(1456,1,3,'mod/customcert:manageemailothers',1,1619625659,2),(1457,1,1,'mod/customcert:manageemailothers',1,1619625659,2),(1458,1,3,'mod/customcert:manageverifyany',1,1619625659,2),(1459,1,1,'mod/customcert:manageverifyany',1,1619625659,2),(1460,1,3,'mod/customcert:managerequiredtime',1,1619625659,2),(1461,1,1,'mod/customcert:managerequiredtime',1,1619625659,2),(1462,1,3,'mod/customcert:manageprotection',1,1619625659,2),(1463,1,1,'mod/customcert:manageprotection',1,1619625659,2),(1464,1,7,'webservice/rest:use',1,1619625777,2); +/*!40000 ALTER TABLE `mdl_role_capabilities` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_role_context_levels` +-- + +DROP TABLE IF EXISTS `mdl_role_context_levels`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_role_context_levels` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `roleid` bigint(10) NOT NULL, + `contextlevel` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_rolecontleve_conrol_uix` (`contextlevel`,`roleid`), + KEY `mdl_rolecontleve_rol_ix` (`roleid`) +) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Lists which roles can be assigned at which context levels. T'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_role_context_levels` +-- + +LOCK TABLES `mdl_role_context_levels` WRITE; +/*!40000 ALTER TABLE `mdl_role_context_levels` DISABLE KEYS */; +INSERT INTO `mdl_role_context_levels` VALUES (1,1,10),(4,2,10),(2,1,40),(5,2,40),(3,1,50),(6,3,50),(8,4,50),(10,5,50),(7,3,70),(9,4,70),(11,5,70); +/*!40000 ALTER TABLE `mdl_role_context_levels` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_role_names` +-- + +DROP TABLE IF EXISTS `mdl_role_names`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_role_names` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `roleid` bigint(10) NOT NULL DEFAULT 0, + `contextid` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_rolename_rolcon_uix` (`roleid`,`contextid`), + KEY `mdl_rolename_rol_ix` (`roleid`), + KEY `mdl_rolename_con_ix` (`contextid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='role names in native strings'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_role_names` +-- + +LOCK TABLES `mdl_role_names` WRITE; +/*!40000 ALTER TABLE `mdl_role_names` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_role_names` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_scale` +-- + +DROP TABLE IF EXISTS `mdl_scale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_scale` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `courseid` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `scale` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `descriptionformat` tinyint(2) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_scal_cou_ix` (`courseid`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines grading scales'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_scale` +-- + +LOCK TABLES `mdl_scale` WRITE; +/*!40000 ALTER TABLE `mdl_scale` DISABLE KEYS */; +INSERT INTO `mdl_scale` VALUES (1,0,0,'Separate and Connected ways of knowing','Mostly separate knowing,Separate and connected,Mostly connected knowing','The scale based on the theory of separate and connected knowing. This theory describes two different ways that we can evaluate and learn about the things we see and hear.
  • Separate knowers remain as objective as possible without including feelings and emotions. In a discussion with other people, they like to defend their own ideas, using logic to find holes in opponent\'s ideas.
  • Connected knowers are more sensitive to other people. They are skilled at empathy and tend to listen and ask questions until they feel they can connect and \"understand things from their point of view\". They learn by trying to share the experiences that led to the knowledge they find in other people.
',0,1619623687),(2,0,0,'Default competence scale','Not yet competent,Competent','A binary rating scale that provides no further information beyond whether someone has demonstrated proficiency or not.',0,1619623687); +/*!40000 ALTER TABLE `mdl_scale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_scale_history` +-- + +DROP TABLE IF EXISTS `mdl_scale_history`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_scale_history` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `action` bigint(10) NOT NULL DEFAULT 0, + `oldid` bigint(10) NOT NULL, + `source` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timemodified` bigint(10) DEFAULT NULL, + `loggeduser` bigint(10) DEFAULT NULL, + `courseid` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `scale` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_scalhist_act_ix` (`action`), + KEY `mdl_scalhist_tim_ix` (`timemodified`), + KEY `mdl_scalhist_old_ix` (`oldid`), + KEY `mdl_scalhist_cou_ix` (`courseid`), + KEY `mdl_scalhist_log_ix` (`loggeduser`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='History table'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_scale_history` +-- + +LOCK TABLES `mdl_scale_history` WRITE; +/*!40000 ALTER TABLE `mdl_scale_history` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_scale_history` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_scorm` +-- + +DROP TABLE IF EXISTS `mdl_scorm`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_scorm` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `scormtype` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'local', + `reference` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `introformat` smallint(4) NOT NULL DEFAULT 0, + `version` varchar(9) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `maxgrade` double NOT NULL DEFAULT 0, + `grademethod` tinyint(2) NOT NULL DEFAULT 0, + `whatgrade` bigint(10) NOT NULL DEFAULT 0, + `maxattempt` bigint(10) NOT NULL DEFAULT 1, + `forcecompleted` tinyint(1) NOT NULL DEFAULT 0, + `forcenewattempt` tinyint(1) NOT NULL DEFAULT 0, + `lastattemptlock` tinyint(1) NOT NULL DEFAULT 0, + `masteryoverride` tinyint(1) NOT NULL DEFAULT 1, + `displayattemptstatus` tinyint(1) NOT NULL DEFAULT 1, + `displaycoursestructure` tinyint(1) NOT NULL DEFAULT 0, + `updatefreq` tinyint(1) NOT NULL DEFAULT 0, + `sha1hash` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `md5hash` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `revision` bigint(10) NOT NULL DEFAULT 0, + `launch` bigint(10) NOT NULL DEFAULT 0, + `skipview` tinyint(1) NOT NULL DEFAULT 1, + `hidebrowse` tinyint(1) NOT NULL DEFAULT 0, + `hidetoc` tinyint(1) NOT NULL DEFAULT 0, + `nav` tinyint(1) NOT NULL DEFAULT 1, + `navpositionleft` bigint(10) DEFAULT -100, + `navpositiontop` bigint(10) DEFAULT -100, + `auto` tinyint(1) NOT NULL DEFAULT 0, + `popup` tinyint(1) NOT NULL DEFAULT 0, + `options` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `width` bigint(10) NOT NULL DEFAULT 100, + `height` bigint(10) NOT NULL DEFAULT 600, + `timeopen` bigint(10) NOT NULL DEFAULT 0, + `timeclose` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `completionstatusrequired` tinyint(1) DEFAULT NULL, + `completionscorerequired` bigint(10) DEFAULT NULL, + `completionstatusallscos` tinyint(1) DEFAULT NULL, + `displayactivityname` smallint(4) NOT NULL DEFAULT 1, + `autocommit` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_scor_cou_ix` (`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='each table is one SCORM module and its configuration'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_scorm` +-- + +LOCK TABLES `mdl_scorm` WRITE; +/*!40000 ALTER TABLE `mdl_scorm` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_scorm` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_scorm_aicc_session` +-- + +DROP TABLE IF EXISTS `mdl_scorm_aicc_session`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_scorm_aicc_session` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL DEFAULT 0, + `scormid` bigint(10) NOT NULL DEFAULT 0, + `hacpsession` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `scoid` bigint(10) DEFAULT 0, + `scormmode` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `scormstatus` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `attempt` bigint(10) DEFAULT NULL, + `lessonstatus` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `sessiontime` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_scoraiccsess_sco_ix` (`scormid`), + KEY `mdl_scoraiccsess_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Used by AICC HACP to store session information'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_scorm_aicc_session` +-- + +LOCK TABLES `mdl_scorm_aicc_session` WRITE; +/*!40000 ALTER TABLE `mdl_scorm_aicc_session` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_scorm_aicc_session` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_scorm_scoes` +-- + +DROP TABLE IF EXISTS `mdl_scorm_scoes`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_scorm_scoes` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `scorm` bigint(10) NOT NULL DEFAULT 0, + `manifest` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `organization` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `parent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `identifier` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `launch` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `scormtype` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `sortorder` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_scorscoe_sco_ix` (`scorm`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='each SCO part of the SCORM module'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_scorm_scoes` +-- + +LOCK TABLES `mdl_scorm_scoes` WRITE; +/*!40000 ALTER TABLE `mdl_scorm_scoes` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_scorm_scoes` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_scorm_scoes_data` +-- + +DROP TABLE IF EXISTS `mdl_scorm_scoes_data`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_scorm_scoes_data` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `scoid` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_scorscoedata_sco_ix` (`scoid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Contains variable data get from packages'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_scorm_scoes_data` +-- + +LOCK TABLES `mdl_scorm_scoes_data` WRITE; +/*!40000 ALTER TABLE `mdl_scorm_scoes_data` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_scorm_scoes_data` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_scorm_scoes_track` +-- + +DROP TABLE IF EXISTS `mdl_scorm_scoes_track`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_scorm_scoes_track` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL DEFAULT 0, + `scormid` bigint(10) NOT NULL DEFAULT 0, + `scoid` bigint(10) NOT NULL DEFAULT 0, + `attempt` bigint(10) NOT NULL DEFAULT 1, + `element` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_scorscoetrac_usescosco_uix` (`userid`,`scormid`,`scoid`,`attempt`,`element`), + KEY `mdl_scorscoetrac_use_ix` (`userid`), + KEY `mdl_scorscoetrac_sco_ix` (`scormid`), + KEY `mdl_scorscoetrac_sco2_ix` (`scoid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='to track SCOes'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_scorm_scoes_track` +-- + +LOCK TABLES `mdl_scorm_scoes_track` WRITE; +/*!40000 ALTER TABLE `mdl_scorm_scoes_track` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_scorm_scoes_track` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_scorm_seq_mapinfo` +-- + +DROP TABLE IF EXISTS `mdl_scorm_seq_mapinfo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_scorm_seq_mapinfo` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `scoid` bigint(10) NOT NULL DEFAULT 0, + `objectiveid` bigint(10) NOT NULL DEFAULT 0, + `targetobjectiveid` bigint(10) NOT NULL DEFAULT 0, + `readsatisfiedstatus` tinyint(1) NOT NULL DEFAULT 1, + `readnormalizedmeasure` tinyint(1) NOT NULL DEFAULT 1, + `writesatisfiedstatus` tinyint(1) NOT NULL DEFAULT 0, + `writenormalizedmeasure` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_scorseqmapi_scoidobj_uix` (`scoid`,`id`,`objectiveid`), + KEY `mdl_scorseqmapi_sco_ix` (`scoid`), + KEY `mdl_scorseqmapi_obj_ix` (`objectiveid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='SCORM2004 objective mapinfo description'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_scorm_seq_mapinfo` +-- + +LOCK TABLES `mdl_scorm_seq_mapinfo` WRITE; +/*!40000 ALTER TABLE `mdl_scorm_seq_mapinfo` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_scorm_seq_mapinfo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_scorm_seq_objective` +-- + +DROP TABLE IF EXISTS `mdl_scorm_seq_objective`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_scorm_seq_objective` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `scoid` bigint(10) NOT NULL DEFAULT 0, + `primaryobj` tinyint(1) NOT NULL DEFAULT 0, + `objectiveid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `satisfiedbymeasure` tinyint(1) NOT NULL DEFAULT 1, + `minnormalizedmeasure` float(11,4) NOT NULL DEFAULT 0.0000, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_scorseqobje_scoid_uix` (`scoid`,`id`), + KEY `mdl_scorseqobje_sco_ix` (`scoid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='SCORM2004 objective description'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_scorm_seq_objective` +-- + +LOCK TABLES `mdl_scorm_seq_objective` WRITE; +/*!40000 ALTER TABLE `mdl_scorm_seq_objective` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_scorm_seq_objective` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_scorm_seq_rolluprule` +-- + +DROP TABLE IF EXISTS `mdl_scorm_seq_rolluprule`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_scorm_seq_rolluprule` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `scoid` bigint(10) NOT NULL DEFAULT 0, + `childactivityset` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `minimumcount` bigint(10) NOT NULL DEFAULT 0, + `minimumpercent` float(11,4) NOT NULL DEFAULT 0.0000, + `conditioncombination` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'all', + `action` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_scorseqroll_scoid_uix` (`scoid`,`id`), + KEY `mdl_scorseqroll_sco_ix` (`scoid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='SCORM2004 sequencing rule'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_scorm_seq_rolluprule` +-- + +LOCK TABLES `mdl_scorm_seq_rolluprule` WRITE; +/*!40000 ALTER TABLE `mdl_scorm_seq_rolluprule` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_scorm_seq_rolluprule` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_scorm_seq_rolluprulecond` +-- + +DROP TABLE IF EXISTS `mdl_scorm_seq_rolluprulecond`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_scorm_seq_rolluprulecond` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `scoid` bigint(10) NOT NULL DEFAULT 0, + `rollupruleid` bigint(10) NOT NULL DEFAULT 0, + `operator` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'noOp', + `cond` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_scorseqroll_scorolid_uix` (`scoid`,`rollupruleid`,`id`), + KEY `mdl_scorseqroll_sco2_ix` (`scoid`), + KEY `mdl_scorseqroll_rol_ix` (`rollupruleid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='SCORM2004 sequencing rule'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_scorm_seq_rolluprulecond` +-- + +LOCK TABLES `mdl_scorm_seq_rolluprulecond` WRITE; +/*!40000 ALTER TABLE `mdl_scorm_seq_rolluprulecond` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_scorm_seq_rolluprulecond` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_scorm_seq_rulecond` +-- + +DROP TABLE IF EXISTS `mdl_scorm_seq_rulecond`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_scorm_seq_rulecond` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `scoid` bigint(10) NOT NULL DEFAULT 0, + `ruleconditionsid` bigint(10) NOT NULL DEFAULT 0, + `refrencedobjective` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `measurethreshold` float(11,4) NOT NULL DEFAULT 0.0000, + `operator` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'noOp', + `cond` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'always', + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_scorseqrule_idscorul_uix` (`id`,`scoid`,`ruleconditionsid`), + KEY `mdl_scorseqrule_sco2_ix` (`scoid`), + KEY `mdl_scorseqrule_rul_ix` (`ruleconditionsid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='SCORM2004 rule condition'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_scorm_seq_rulecond` +-- + +LOCK TABLES `mdl_scorm_seq_rulecond` WRITE; +/*!40000 ALTER TABLE `mdl_scorm_seq_rulecond` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_scorm_seq_rulecond` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_scorm_seq_ruleconds` +-- + +DROP TABLE IF EXISTS `mdl_scorm_seq_ruleconds`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_scorm_seq_ruleconds` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `scoid` bigint(10) NOT NULL DEFAULT 0, + `conditioncombination` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'all', + `ruletype` tinyint(2) NOT NULL DEFAULT 0, + `action` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_scorseqrule_scoid_uix` (`scoid`,`id`), + KEY `mdl_scorseqrule_sco_ix` (`scoid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='SCORM2004 rule conditions'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_scorm_seq_ruleconds` +-- + +LOCK TABLES `mdl_scorm_seq_ruleconds` WRITE; +/*!40000 ALTER TABLE `mdl_scorm_seq_ruleconds` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_scorm_seq_ruleconds` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_search_index_requests` +-- + +DROP TABLE IF EXISTS `mdl_search_index_requests`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_search_index_requests` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `contextid` bigint(10) NOT NULL, + `searcharea` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `timerequested` bigint(10) NOT NULL, + `partialarea` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `partialtime` bigint(10) NOT NULL, + `indexpriority` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_searinderequ_indtim_ix` (`indexpriority`,`timerequested`), + KEY `mdl_searinderequ_con_ix` (`contextid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Records requests for (re)indexing of specific contexts. Entr'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_search_index_requests` +-- + +LOCK TABLES `mdl_search_index_requests` WRITE; +/*!40000 ALTER TABLE `mdl_search_index_requests` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_search_index_requests` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_search_simpledb_index` +-- + +DROP TABLE IF EXISTS `mdl_search_simpledb_index`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_search_simpledb_index` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `docid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `itemid` bigint(10) NOT NULL, + `title` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `content` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `contextid` bigint(10) NOT NULL, + `areaid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `type` tinyint(1) NOT NULL, + `courseid` bigint(10) NOT NULL, + `owneruserid` bigint(10) DEFAULT NULL, + `modified` bigint(10) NOT NULL, + `userid` bigint(10) DEFAULT NULL, + `description1` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description2` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_searsimpinde_doc_uix` (`docid`), + KEY `mdl_searsimpinde_owncon_ix` (`owneruserid`,`contextid`), + FULLTEXT KEY `mdl_search_simpledb_index_index` (`title`,`content`,`description1`,`description2`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='search_simpledb table containing the index data.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_search_simpledb_index` +-- + +LOCK TABLES `mdl_search_simpledb_index` WRITE; +/*!40000 ALTER TABLE `mdl_search_simpledb_index` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_search_simpledb_index` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_sessions` +-- + +DROP TABLE IF EXISTS `mdl_sessions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_sessions` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `state` bigint(10) NOT NULL DEFAULT 0, + `sid` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `userid` bigint(10) NOT NULL, + `sessdata` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `firstip` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `lastip` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_sess_sid_uix` (`sid`), + KEY `mdl_sess_sta_ix` (`state`), + KEY `mdl_sess_tim_ix` (`timecreated`), + KEY `mdl_sess_tim2_ix` (`timemodified`), + KEY `mdl_sess_use_ix` (`userid`) +) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Database based session storage - now recommended'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_sessions` +-- + +LOCK TABLES `mdl_sessions` WRITE; +/*!40000 ALTER TABLE `mdl_sessions` DISABLE KEYS */; +INSERT INTO `mdl_sessions` VALUES (3,0,'e9323s5rst1ssvvcmpkd7hu48q',0,NULL,1619623982,1619628106,'67.177.209.214','67.177.209.214'),(8,0,'lf8thdk6bm6kvuouaf9g598dhl',0,NULL,1619626479,1619627269,'65.129.132.97','65.129.132.97'),(10,0,'c2dk5l52lue1i7as4epaifc80a',2,NULL,1619626991,1619629897,'65.129.132.97','65.129.132.97'); +/*!40000 ALTER TABLE `mdl_sessions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_stats_daily` +-- + +DROP TABLE IF EXISTS `mdl_stats_daily`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_stats_daily` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `courseid` bigint(10) NOT NULL DEFAULT 0, + `timeend` bigint(10) NOT NULL DEFAULT 0, + `roleid` bigint(10) NOT NULL DEFAULT 0, + `stattype` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'activity', + `stat1` bigint(10) NOT NULL DEFAULT 0, + `stat2` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_statdail_cou_ix` (`courseid`), + KEY `mdl_statdail_tim_ix` (`timeend`), + KEY `mdl_statdail_rol_ix` (`roleid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='to accumulate daily stats'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_stats_daily` +-- + +LOCK TABLES `mdl_stats_daily` WRITE; +/*!40000 ALTER TABLE `mdl_stats_daily` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_stats_daily` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_stats_monthly` +-- + +DROP TABLE IF EXISTS `mdl_stats_monthly`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_stats_monthly` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `courseid` bigint(10) NOT NULL DEFAULT 0, + `timeend` bigint(10) NOT NULL DEFAULT 0, + `roleid` bigint(10) NOT NULL DEFAULT 0, + `stattype` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'activity', + `stat1` bigint(10) NOT NULL DEFAULT 0, + `stat2` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_statmont_cou_ix` (`courseid`), + KEY `mdl_statmont_tim_ix` (`timeend`), + KEY `mdl_statmont_rol_ix` (`roleid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='To accumulate monthly stats'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_stats_monthly` +-- + +LOCK TABLES `mdl_stats_monthly` WRITE; +/*!40000 ALTER TABLE `mdl_stats_monthly` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_stats_monthly` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_stats_user_daily` +-- + +DROP TABLE IF EXISTS `mdl_stats_user_daily`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_stats_user_daily` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `courseid` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `roleid` bigint(10) NOT NULL DEFAULT 0, + `timeend` bigint(10) NOT NULL DEFAULT 0, + `statsreads` bigint(10) NOT NULL DEFAULT 0, + `statswrites` bigint(10) NOT NULL DEFAULT 0, + `stattype` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `mdl_statuserdail_cou_ix` (`courseid`), + KEY `mdl_statuserdail_use_ix` (`userid`), + KEY `mdl_statuserdail_rol_ix` (`roleid`), + KEY `mdl_statuserdail_tim_ix` (`timeend`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='To accumulate daily stats per course/user'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_stats_user_daily` +-- + +LOCK TABLES `mdl_stats_user_daily` WRITE; +/*!40000 ALTER TABLE `mdl_stats_user_daily` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_stats_user_daily` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_stats_user_monthly` +-- + +DROP TABLE IF EXISTS `mdl_stats_user_monthly`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_stats_user_monthly` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `courseid` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `roleid` bigint(10) NOT NULL DEFAULT 0, + `timeend` bigint(10) NOT NULL DEFAULT 0, + `statsreads` bigint(10) NOT NULL DEFAULT 0, + `statswrites` bigint(10) NOT NULL DEFAULT 0, + `stattype` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `mdl_statusermont_cou_ix` (`courseid`), + KEY `mdl_statusermont_use_ix` (`userid`), + KEY `mdl_statusermont_rol_ix` (`roleid`), + KEY `mdl_statusermont_tim_ix` (`timeend`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='To accumulate monthly stats per course/user'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_stats_user_monthly` +-- + +LOCK TABLES `mdl_stats_user_monthly` WRITE; +/*!40000 ALTER TABLE `mdl_stats_user_monthly` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_stats_user_monthly` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_stats_user_weekly` +-- + +DROP TABLE IF EXISTS `mdl_stats_user_weekly`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_stats_user_weekly` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `courseid` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `roleid` bigint(10) NOT NULL DEFAULT 0, + `timeend` bigint(10) NOT NULL DEFAULT 0, + `statsreads` bigint(10) NOT NULL DEFAULT 0, + `statswrites` bigint(10) NOT NULL DEFAULT 0, + `stattype` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `mdl_statuserweek_cou_ix` (`courseid`), + KEY `mdl_statuserweek_use_ix` (`userid`), + KEY `mdl_statuserweek_rol_ix` (`roleid`), + KEY `mdl_statuserweek_tim_ix` (`timeend`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='To accumulate weekly stats per course/user'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_stats_user_weekly` +-- + +LOCK TABLES `mdl_stats_user_weekly` WRITE; +/*!40000 ALTER TABLE `mdl_stats_user_weekly` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_stats_user_weekly` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_stats_weekly` +-- + +DROP TABLE IF EXISTS `mdl_stats_weekly`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_stats_weekly` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `courseid` bigint(10) NOT NULL DEFAULT 0, + `timeend` bigint(10) NOT NULL DEFAULT 0, + `roleid` bigint(10) NOT NULL DEFAULT 0, + `stattype` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'activity', + `stat1` bigint(10) NOT NULL DEFAULT 0, + `stat2` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_statweek_cou_ix` (`courseid`), + KEY `mdl_statweek_tim_ix` (`timeend`), + KEY `mdl_statweek_rol_ix` (`roleid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='To accumulate weekly stats'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_stats_weekly` +-- + +LOCK TABLES `mdl_stats_weekly` WRITE; +/*!40000 ALTER TABLE `mdl_stats_weekly` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_stats_weekly` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_survey` +-- + +DROP TABLE IF EXISTS `mdl_survey`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_survey` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `template` bigint(10) NOT NULL DEFAULT 0, + `days` mediumint(6) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `introformat` smallint(4) NOT NULL DEFAULT 0, + `questions` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `completionsubmit` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_surv_cou_ix` (`course`) +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Each record is one SURVEY module with its configuration'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_survey` +-- + +LOCK TABLES `mdl_survey` WRITE; +/*!40000 ALTER TABLE `mdl_survey` DISABLE KEYS */; +INSERT INTO `mdl_survey` VALUES (1,0,0,0,985017600,985017600,'collesaname','collesaintro',0,'25,26,27,28,29,30,43,44',0),(2,0,0,0,985017600,985017600,'collespname','collespintro',0,'31,32,33,34,35,36,43,44',0),(3,0,0,0,985017600,985017600,'collesapname','collesapintro',0,'37,38,39,40,41,42,43,44',0),(4,0,0,0,985017600,985017600,'attlsname','attlsintro',0,'65,67,68',0),(5,0,0,0,985017600,985017600,'ciqname','ciqintro',0,'69,70,71,72,73',0); +/*!40000 ALTER TABLE `mdl_survey` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_survey_analysis` +-- + +DROP TABLE IF EXISTS `mdl_survey_analysis`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_survey_analysis` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `survey` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_survanal_use_ix` (`userid`), + KEY `mdl_survanal_sur_ix` (`survey`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='text about each survey submission'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_survey_analysis` +-- + +LOCK TABLES `mdl_survey_analysis` WRITE; +/*!40000 ALTER TABLE `mdl_survey_analysis` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_survey_analysis` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_survey_answers` +-- + +DROP TABLE IF EXISTS `mdl_survey_answers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_survey_answers` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL DEFAULT 0, + `survey` bigint(10) NOT NULL DEFAULT 0, + `question` bigint(10) NOT NULL DEFAULT 0, + `time` bigint(10) NOT NULL DEFAULT 0, + `answer1` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `answer2` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_survansw_use_ix` (`userid`), + KEY `mdl_survansw_sur_ix` (`survey`), + KEY `mdl_survansw_que_ix` (`question`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='the answers to each questions filled by the users'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_survey_answers` +-- + +LOCK TABLES `mdl_survey_answers` WRITE; +/*!40000 ALTER TABLE `mdl_survey_answers` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_survey_answers` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_survey_questions` +-- + +DROP TABLE IF EXISTS `mdl_survey_questions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_survey_questions` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `text` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `shorttext` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `multi` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `type` smallint(3) NOT NULL DEFAULT 0, + `options` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=74 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='the questions conforming one survey'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_survey_questions` +-- + +LOCK TABLES `mdl_survey_questions` WRITE; +/*!40000 ALTER TABLE `mdl_survey_questions` DISABLE KEYS */; +INSERT INTO `mdl_survey_questions` VALUES (1,'colles1','colles1short','','',1,'scaletimes5'),(2,'colles2','colles2short','','',1,'scaletimes5'),(3,'colles3','colles3short','','',1,'scaletimes5'),(4,'colles4','colles4short','','',1,'scaletimes5'),(5,'colles5','colles5short','','',1,'scaletimes5'),(6,'colles6','colles6short','','',1,'scaletimes5'),(7,'colles7','colles7short','','',1,'scaletimes5'),(8,'colles8','colles8short','','',1,'scaletimes5'),(9,'colles9','colles9short','','',1,'scaletimes5'),(10,'colles10','colles10short','','',1,'scaletimes5'),(11,'colles11','colles11short','','',1,'scaletimes5'),(12,'colles12','colles12short','','',1,'scaletimes5'),(13,'colles13','colles13short','','',1,'scaletimes5'),(14,'colles14','colles14short','','',1,'scaletimes5'),(15,'colles15','colles15short','','',1,'scaletimes5'),(16,'colles16','colles16short','','',1,'scaletimes5'),(17,'colles17','colles17short','','',1,'scaletimes5'),(18,'colles18','colles18short','','',1,'scaletimes5'),(19,'colles19','colles19short','','',1,'scaletimes5'),(20,'colles20','colles20short','','',1,'scaletimes5'),(21,'colles21','colles21short','','',1,'scaletimes5'),(22,'colles22','colles22short','','',1,'scaletimes5'),(23,'colles23','colles23short','','',1,'scaletimes5'),(24,'colles24','colles24short','','',1,'scaletimes5'),(25,'collesm1','collesm1short','1,2,3,4','collesmintro',1,'scaletimes5'),(26,'collesm2','collesm2short','5,6,7,8','collesmintro',1,'scaletimes5'),(27,'collesm3','collesm3short','9,10,11,12','collesmintro',1,'scaletimes5'),(28,'collesm4','collesm4short','13,14,15,16','collesmintro',1,'scaletimes5'),(29,'collesm5','collesm5short','17,18,19,20','collesmintro',1,'scaletimes5'),(30,'collesm6','collesm6short','21,22,23,24','collesmintro',1,'scaletimes5'),(31,'collesm1','collesm1short','1,2,3,4','collesmintro',2,'scaletimes5'),(32,'collesm2','collesm2short','5,6,7,8','collesmintro',2,'scaletimes5'),(33,'collesm3','collesm3short','9,10,11,12','collesmintro',2,'scaletimes5'),(34,'collesm4','collesm4short','13,14,15,16','collesmintro',2,'scaletimes5'),(35,'collesm5','collesm5short','17,18,19,20','collesmintro',2,'scaletimes5'),(36,'collesm6','collesm6short','21,22,23,24','collesmintro',2,'scaletimes5'),(37,'collesm1','collesm1short','1,2,3,4','collesmintro',3,'scaletimes5'),(38,'collesm2','collesm2short','5,6,7,8','collesmintro',3,'scaletimes5'),(39,'collesm3','collesm3short','9,10,11,12','collesmintro',3,'scaletimes5'),(40,'collesm4','collesm4short','13,14,15,16','collesmintro',3,'scaletimes5'),(41,'collesm5','collesm5short','17,18,19,20','collesmintro',3,'scaletimes5'),(42,'collesm6','collesm6short','21,22,23,24','collesmintro',3,'scaletimes5'),(43,'howlong','','','',1,'howlongoptions'),(44,'othercomments','','','',0,NULL),(45,'attls1','attls1short','','',1,'scaleagree5'),(46,'attls2','attls2short','','',1,'scaleagree5'),(47,'attls3','attls3short','','',1,'scaleagree5'),(48,'attls4','attls4short','','',1,'scaleagree5'),(49,'attls5','attls5short','','',1,'scaleagree5'),(50,'attls6','attls6short','','',1,'scaleagree5'),(51,'attls7','attls7short','','',1,'scaleagree5'),(52,'attls8','attls8short','','',1,'scaleagree5'),(53,'attls9','attls9short','','',1,'scaleagree5'),(54,'attls10','attls10short','','',1,'scaleagree5'),(55,'attls11','attls11short','','',1,'scaleagree5'),(56,'attls12','attls12short','','',1,'scaleagree5'),(57,'attls13','attls13short','','',1,'scaleagree5'),(58,'attls14','attls14short','','',1,'scaleagree5'),(59,'attls15','attls15short','','',1,'scaleagree5'),(60,'attls16','attls16short','','',1,'scaleagree5'),(61,'attls17','attls17short','','',1,'scaleagree5'),(62,'attls18','attls18short','','',1,'scaleagree5'),(63,'attls19','attls19short','','',1,'scaleagree5'),(64,'attls20','attls20short','','',1,'scaleagree5'),(65,'attlsm1','attlsm1','45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64','attlsmintro',1,'scaleagree5'),(66,'-','-','-','-',0,'-'),(67,'attlsm2','attlsm2','63,62,59,57,55,49,52,50,48,47','attlsmintro',-1,'scaleagree5'),(68,'attlsm3','attlsm3','46,54,45,51,60,53,56,58,61,64','attlsmintro',-1,'scaleagree5'),(69,'ciq1','ciq1short','','',0,NULL),(70,'ciq2','ciq2short','','',0,NULL),(71,'ciq3','ciq3short','','',0,NULL),(72,'ciq4','ciq4short','','',0,NULL),(73,'ciq5','ciq5short','','',0,NULL); +/*!40000 ALTER TABLE `mdl_survey_questions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tag` +-- + +DROP TABLE IF EXISTS `mdl_tag`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tag` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL, + `tagcollid` bigint(10) NOT NULL, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `rawname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `isstandard` tinyint(1) NOT NULL DEFAULT 0, + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` tinyint(2) NOT NULL DEFAULT 0, + `flag` smallint(4) DEFAULT 0, + `timemodified` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_tag_tagnam_uix` (`tagcollid`,`name`), + KEY `mdl_tag_tagiss_ix` (`tagcollid`,`isstandard`), + KEY `mdl_tag_use_ix` (`userid`), + KEY `mdl_tag_tag_ix` (`tagcollid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Tag table - this generic table will replace the old "tags" t'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tag` +-- + +LOCK TABLES `mdl_tag` WRITE; +/*!40000 ALTER TABLE `mdl_tag` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tag` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tag_area` +-- + +DROP TABLE IF EXISTS `mdl_tag_area`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tag_area` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `itemtype` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `enabled` tinyint(1) NOT NULL DEFAULT 1, + `tagcollid` bigint(10) NOT NULL, + `callback` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `callbackfile` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `showstandard` tinyint(1) NOT NULL DEFAULT 0, + `multiplecontexts` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_tagarea_comite_uix` (`component`,`itemtype`), + KEY `mdl_tagarea_tag_ix` (`tagcollid`) +) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines various tag areas, one area is identified by compone'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tag_area` +-- + +LOCK TABLES `mdl_tag_area` WRITE; +/*!40000 ALTER TABLE `mdl_tag_area` DISABLE KEYS */; +INSERT INTO `mdl_tag_area` VALUES (1,'core','user',1,1,'user_get_tagged_users','/user/lib.php',2,0),(2,'core','course',1,1,'course_get_tagged_courses','/course/lib.php',0,0),(3,'core_question','question',1,1,NULL,NULL,0,1),(4,'core','post',1,1,'blog_get_tagged_posts','/blog/lib.php',0,0),(5,'core','blog_external',1,1,NULL,NULL,0,0),(6,'core','course_modules',1,1,'course_get_tagged_course_modules','/course/lib.php',0,0),(7,'mod_book','book_chapters',1,1,'mod_book_get_tagged_chapters','/mod/book/locallib.php',0,0),(8,'mod_data','data_records',1,1,'mod_data_get_tagged_records','/mod/data/locallib.php',0,0),(9,'mod_forum','forum_posts',1,1,'mod_forum_get_tagged_posts','/mod/forum/locallib.php',0,0),(10,'mod_glossary','glossary_entries',1,1,'mod_glossary_get_tagged_entries','/mod/glossary/locallib.php',0,0),(11,'mod_wiki','wiki_pages',1,1,'mod_wiki_get_tagged_pages','/mod/wiki/locallib.php',0,0); +/*!40000 ALTER TABLE `mdl_tag_area` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tag_coll` +-- + +DROP TABLE IF EXISTS `mdl_tag_coll`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tag_coll` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `isdefault` tinyint(2) NOT NULL DEFAULT 0, + `component` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `sortorder` mediumint(5) NOT NULL DEFAULT 0, + `searchable` tinyint(2) NOT NULL DEFAULT 1, + `customurl` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines different set of tags'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tag_coll` +-- + +LOCK TABLES `mdl_tag_coll` WRITE; +/*!40000 ALTER TABLE `mdl_tag_coll` DISABLE KEYS */; +INSERT INTO `mdl_tag_coll` VALUES (1,NULL,1,NULL,0,1,NULL); +/*!40000 ALTER TABLE `mdl_tag_coll` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tag_correlation` +-- + +DROP TABLE IF EXISTS `mdl_tag_correlation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tag_correlation` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `tagid` bigint(10) NOT NULL, + `correlatedtags` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_tagcorr_tag_ix` (`tagid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The rationale for the ''tag_correlation'' table is performance'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tag_correlation` +-- + +LOCK TABLES `mdl_tag_correlation` WRITE; +/*!40000 ALTER TABLE `mdl_tag_correlation` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tag_correlation` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tag_instance` +-- + +DROP TABLE IF EXISTS `mdl_tag_instance`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tag_instance` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `tagid` bigint(10) NOT NULL, + `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `itemtype` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `itemid` bigint(10) NOT NULL, + `contextid` bigint(10) DEFAULT NULL, + `tiuserid` bigint(10) NOT NULL DEFAULT 0, + `ordering` bigint(10) DEFAULT NULL, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_taginst_comiteiteconti_uix` (`component`,`itemtype`,`itemid`,`contextid`,`tiuserid`,`tagid`), + KEY `mdl_taginst_itecomtagcon_ix` (`itemtype`,`component`,`tagid`,`contextid`), + KEY `mdl_taginst_tag_ix` (`tagid`), + KEY `mdl_taginst_con_ix` (`contextid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='tag_instance table holds the information of associations bet'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tag_instance` +-- + +LOCK TABLES `mdl_tag_instance` WRITE; +/*!40000 ALTER TABLE `mdl_tag_instance` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tag_instance` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_task_adhoc` +-- + +DROP TABLE IF EXISTS `mdl_task_adhoc`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_task_adhoc` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `component` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `classname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `nextruntime` bigint(10) NOT NULL, + `faildelay` bigint(10) DEFAULT NULL, + `customdata` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `userid` bigint(10) DEFAULT NULL, + `blocking` tinyint(2) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timestarted` bigint(10) DEFAULT NULL, + `hostname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `pid` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_taskadho_nex_ix` (`nextruntime`), + KEY `mdl_taskadho_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='List of adhoc tasks waiting to run.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_task_adhoc` +-- + +LOCK TABLES `mdl_task_adhoc` WRITE; +/*!40000 ALTER TABLE `mdl_task_adhoc` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_task_adhoc` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_task_log` +-- + +DROP TABLE IF EXISTS `mdl_task_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_task_log` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `type` smallint(4) NOT NULL, + `component` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `classname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `userid` bigint(10) NOT NULL, + `timestart` decimal(20,10) NOT NULL, + `timeend` decimal(20,10) NOT NULL, + `dbreads` bigint(10) NOT NULL, + `dbwrites` bigint(10) NOT NULL, + `result` tinyint(2) NOT NULL, + `output` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `hostname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `pid` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_tasklog_cla_ix` (`classname`), + KEY `mdl_tasklog_tim_ix` (`timestart`) +) ENGINE=InnoDB AUTO_INCREMENT=771 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The log table for all tasks'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_task_log` +-- + +LOCK TABLES `mdl_task_log` WRITE; +/*!40000 ALTER TABLE `mdl_task_log` DISABLE KEYS */; +INSERT INTO `mdl_task_log` VALUES (1,0,'moodle','core\\task\\session_cleanup_task',0,1619623861.4467000000,1619623861.4601000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 16:31:01. Current memory use 15.1MB.\n... used 7 dbqueries\n... used 0.0087389945983887 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',213049),(2,0,'moodle','core\\task\\cache_cleanup_task',0,1619623861.4667000000,1619623861.4674000000,0,1,0,'Execute scheduled task: Remove expired cache entries (core\\task\\cache_cleanup_task)\n... started 16:31:01. Current memory use 16.4MB.\n... used 1 dbqueries\n... used 0.00022482872009277 seconds\nScheduled task complete: Remove expired cache entries (core\\task\\cache_cleanup_task)\n','dev-defaults.derekmaxson.com',213049),(3,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619623861.4775000000,1619623861.4782000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 16:31:01. Current memory use 16.4MB.\n... used 1 dbqueries\n... used 0.00029802322387695 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',213049),(4,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619623861.4834000000,1619623861.4838000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 16:31:01. Current memory use 16.4MB.\n... used 0 dbqueries\n... used 2.5033950805664E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',213049),(5,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619623861.4893000000,1619623861.6487000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 16:31:01. Current memory use 16.4MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.15904188156128 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',213049),(6,0,'moodle','core\\task\\grade_cron_task',0,1619623861.6570000000,1619623861.6590000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 16:31:01. Current memory use 37.6MB.\n... used 2 dbqueries\n... used 0.0014371871948242 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',213049),(7,0,'moodle','core\\task\\completion_regular_task',0,1619623861.6651000000,1619623861.6783000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 16:31:01. Current memory use 37.7MB.\n... used 6 dbqueries\n... used 0.012699127197266 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',213049),(8,0,'moodle','core\\task\\portfolio_cron_task',0,1619623861.6846000000,1619623861.6851000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 16:31:01. Current memory use 37.9MB.\n... used 0 dbqueries\n... used 3.1948089599609E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',213049),(9,0,'moodle','core\\task\\plagiarism_cron_task',0,1619623861.6910000000,1619623861.6915000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 16:31:01. Current memory use 37.9MB.\n... used 0 dbqueries\n... used 3.0994415283203E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',213049),(10,0,'moodle','core\\task\\calendar_cron_task',0,1619623861.6990000000,1619623861.7086000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 16:31:01. Current memory use 37.9MB.\n... used 1 dbqueries\n... used 0.0091791152954102 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',213049),(11,0,'moodle','core\\task\\blog_cron_task',0,1619623861.7148000000,1619623861.7188000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 16:31:01. Current memory use 38.3MB.\n... used 2 dbqueries\n... used 0.0034852027893066 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',213049),(12,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619623861.7247000000,1619623861.7386000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 16:31:01. Current memory use 38.6MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.013391971588135 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',213049),(13,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619623861.7462000000,1619623861.7483000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 16:31:01. Current memory use 40.2MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.001554012298584 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',213049),(14,0,'moodle','core\\task\\badges_cron_task',0,1619623861.7541000000,1619623861.7581000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 16:31:01. Current memory use 40.2MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0034539699554443 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',213049),(15,0,'moodle','core\\task\\badges_message_task',0,1619623861.7631000000,1619623861.7639000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 16:31:01. Current memory use 40.6MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00032281875610352 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',213049),(16,0,'moodle','core\\task\\search_index_task',0,1619623861.7690000000,1619623861.7713000000,0,0,0,'Execute scheduled task: Global search indexing (core\\task\\search_index_task)\n... started 16:31:01. Current memory use 40.6MB.\n... used 0 dbqueries\n... used 0.0018908977508545 seconds\nScheduled task complete: Global search indexing (core\\task\\search_index_task)\n','dev-defaults.derekmaxson.com',213049),(17,0,'moodle','core\\oauth2\\refresh_system_tokens_task',0,1619623861.7786000000,1619623861.7812000000,1,0,0,'Execute scheduled task: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n... started 16:31:01. Current memory use 40.8MB.\n... used 1 dbqueries\n... used 0.0020558834075928 seconds\nScheduled task complete: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n','dev-defaults.derekmaxson.com',213049),(18,0,'mod_assign','mod_assign\\task\\cron_task',0,1619623861.7931000000,1619623861.8068000000,4,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 16:31:01. Current memory use 42.3MB.\n... used 4 dbqueries\n... used 0.012952089309692 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',213049),(19,0,'mod_chat','mod_chat\\task\\cron_task',0,1619623861.8121000000,1619623861.8150000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 16:31:01. Current memory use 42.8MB.\n... used 4 dbqueries\n... used 0.0020489692687988 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',213049),(20,0,'mod_forum','mod_forum\\task\\cron_task',0,1619623861.8209000000,1619623861.8228000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 16:31:01. Current memory use 42.9MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0011940002441406 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',213049),(21,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619623861.8389000000,1619623861.8425000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 16:31:01. Current memory use 43.8MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0028669834136963 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',213049),(22,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619623861.8481000000,1619623861.8489000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 16:31:01. Current memory use 43.8MB.\n... used 0 dbqueries\n... used 7.7009201049805E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',213049),(23,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619623861.8539000000,1619623861.8546000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 16:31:01. Current memory use 43.8MB.\n... used 0 dbqueries\n... used 6.8902969360352E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',213049),(24,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619623861.8598000000,1619623861.8676000000,3,2,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 16:31:01. Current memory use 43.8MB.\nUpdating scorm packages which require daily update\n... used 5 dbqueries\n... used 0.0071349143981934 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',213049),(25,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619623861.8754000000,1619623861.8769000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 16:31:01. Current memory use 44.1MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.0006868839263916 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',213049),(26,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619623861.8824000000,1619623861.8832000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 16:31:01. Current memory use 44.1MB.\n... used 0 dbqueries\n... used 7.3909759521484E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',213049),(27,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619623861.8938000000,1619623861.8951000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 16:31:01. Current memory use 43.5MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00072789192199707 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',213049),(28,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619623861.9045000000,1619623861.9071000000,2,1,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 16:31:01. Current memory use 43.5MB.\nProcessing manual enrolment expiration notifications...\n...notification processing finished.\n... used 3 dbqueries\n... used 0.0018990039825439 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',213049),(29,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619623861.9138000000,1619623861.9158000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 16:31:01. Current memory use 43.5MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0014278888702393 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',213049),(30,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619623861.9244000000,1619623861.9268000000,2,1,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 16:31:01. Current memory use 43.6MB.\nProcessing self enrolment expiration notifications...\n...notification processing finished.\n... used 3 dbqueries\n... used 0.0018620491027832 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',213049),(31,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619623861.9363000000,1619623861.9507000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 16:31:01. Current memory use 43.3MB.\n\n0 feeds refreshed (took 0.00063199999999997 seconds)\n... used 1 dbqueries\n... used 0.013840913772583 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',213049),(32,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619623861.9617000000,1619623861.9646000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 16:31:01. Current memory use 44.4MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0023059844970703 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',213049),(33,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619623861.9714000000,1619623861.9720000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 16:31:01. Current memory use 44.6MB.\n... used 0 dbqueries\n... used 0.00010299682617188 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',213049),(34,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_course_bin',0,1619623861.9813000000,1619623861.9843000000,1,0,0,'Execute scheduled task: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n... started 16:31:01. Current memory use 44.6MB.\n... used 1 dbqueries\n... used 0.0024039745330811 seconds\nScheduled task complete: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n','dev-defaults.derekmaxson.com',213049),(35,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_category_bin',0,1619623861.9932000000,1619623861.9955000000,1,0,0,'Execute scheduled task: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n... started 16:31:01. Current memory use 44.7MB.\n... used 1 dbqueries\n... used 0.0016441345214844 seconds\nScheduled task complete: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n','dev-defaults.derekmaxson.com',213049),(36,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619623862.0026000000,1619623862.0037000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 16:31:02. Current memory use 44.7MB.\n... used 1 dbqueries\n... used 0.00049901008605957 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',213049),(37,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619623862.0118000000,1619623862.0131000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 16:31:02. Current memory use 44.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00070405006408691 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',213049),(38,0,'moodle','core\\task\\messaging_cleanup_task',0,1619624761.1952000000,1619624761.2078000000,1,4,0,'Execute scheduled task: Background processing for messaging (core\\task\\messaging_cleanup_task)\n... started 16:46:01. Current memory use 15.1MB.\n... used 5 dbqueries\n... used 0.0086958408355713 seconds\nScheduled task complete: Background processing for messaging (core\\task\\messaging_cleanup_task)\n','dev-defaults.derekmaxson.com',215856),(39,0,'moodle','core\\task\\analytics_cleanup_task',0,1619624761.2144000000,1619624761.2821000000,20,3,0,'Execute scheduled task: Analytics cleanup (core\\task\\analytics_cleanup_task)\n... started 16:46:01. Current memory use 16.5MB.\n... used 23 dbqueries\n... used 0.067129135131836 seconds\nScheduled task complete: Analytics cleanup (core\\task\\analytics_cleanup_task)\n','dev-defaults.derekmaxson.com',215856),(40,0,'moodle','core\\task\\session_cleanup_task',0,1619624761.3002000000,1619624761.3132000000,6,4,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 16:46:01. Current memory use 22.7MB.\n... used 10 dbqueries\n... used 0.011809825897217 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',215856),(41,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619624761.3200000000,1619624761.3209000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 16:46:01. Current memory use 23MB.\n... used 1 dbqueries\n... used 0.00032687187194824 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',215856),(42,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619624761.3279000000,1619624761.3284000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 16:46:01. Current memory use 23MB.\n... used 0 dbqueries\n... used 3.3140182495117E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',215856),(43,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619624761.3381000000,1619624761.3605000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 16:46:01. Current memory use 23MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.021852016448975 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',215856),(44,0,'moodle','core\\task\\grade_cron_task',0,1619624761.3701000000,1619624761.3716000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 16:46:01. Current memory use 25.6MB.\n... used 2 dbqueries\n... used 0.00088000297546387 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',215856),(45,0,'moodle','core\\task\\completion_regular_task',0,1619624761.3783000000,1619624761.3832000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 16:46:01. Current memory use 25.7MB.\n... used 6 dbqueries\n... used 0.0044541358947754 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',215856),(46,0,'moodle','core\\task\\portfolio_cron_task',0,1619624761.3897000000,1619624761.3903000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 16:46:01. Current memory use 25.9MB.\n... used 0 dbqueries\n... used 3.1948089599609E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',215856),(47,0,'moodle','core\\task\\plagiarism_cron_task',0,1619624761.4024000000,1619624761.4030000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 16:46:01. Current memory use 25.9MB.\n... used 0 dbqueries\n... used 3.1948089599609E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',215856),(48,0,'moodle','core\\task\\calendar_cron_task',0,1619624761.4099000000,1619624761.4135000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 16:46:01. Current memory use 25.9MB.\n... used 1 dbqueries\n... used 0.0030629634857178 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',215856),(49,0,'moodle','core\\task\\blog_cron_task',0,1619624761.4203000000,1619624761.4238000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 16:46:01. Current memory use 26.3MB.\n... used 2 dbqueries\n... used 0.0029768943786621 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',215856),(50,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619624761.4301000000,1619624761.4423000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 16:46:01. Current memory use 26.5MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.011757850646973 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',215856),(51,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619624761.4530000000,1619624761.4542000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 16:46:01. Current memory use 28.2MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.000640869140625 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',215856),(52,0,'moodle','core\\task\\badges_cron_task',0,1619624761.4611000000,1619624761.4660000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 16:46:01. Current memory use 28.2MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0044209957122803 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',215856),(53,0,'moodle','core\\task\\badges_message_task',0,1619624761.4736000000,1619624761.4744000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 16:46:01. Current memory use 29.8MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00029897689819336 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',215856),(54,0,'mod_assign','mod_assign\\task\\cron_task',0,1619624761.4846000000,1619624761.5098000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 16:46:01. Current memory use 30.7MB.\n... used 3 dbqueries\n... used 0.024657011032104 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',215856),(55,0,'mod_chat','mod_chat\\task\\cron_task',0,1619624761.5191000000,1619624761.5230000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 16:46:01. Current memory use 33.6MB.\n... used 4 dbqueries\n... used 0.0030810832977295 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',215856),(56,0,'mod_forum','mod_forum\\task\\cron_task',0,1619624761.5388000000,1619624761.5402000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 16:46:01. Current memory use 34.8MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00065898895263672 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',215856),(57,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619624761.5563000000,1619624761.5584000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 16:46:01. Current memory use 35.9MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0013949871063232 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',215856),(58,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619624761.5658000000,1619624761.5666000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 16:46:01. Current memory use 35.9MB.\n... used 0 dbqueries\n... used 7.6055526733398E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',215856),(59,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619624761.5730000000,1619624761.5738000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 16:46:01. Current memory use 35.9MB.\n... used 0 dbqueries\n... used 7.4148178100586E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',215856),(60,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619624761.5832000000,1619624761.5889000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 16:46:01. Current memory use 35.9MB.\n... used 0 dbqueries\n... used 0.0049660205841064 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',215856),(61,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619624761.5964000000,1619624761.5975000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 16:46:01. Current memory use 36.5MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00033998489379883 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',215856),(62,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619624761.6069000000,1619624761.6078000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 16:46:01. Current memory use 36.5MB.\n... used 0 dbqueries\n... used 8.5115432739258E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',215856),(63,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619624761.6152000000,1619624761.6173000000,1,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 16:46:01. Current memory use 36.5MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 1 dbqueries\n... used 0.00062203407287598 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',215856),(64,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619624761.6250000000,1619624761.6260000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 16:46:01. Current memory use 36.5MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00018501281738281 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',215856),(65,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619624761.6331000000,1619624761.6361000000,3,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 16:46:01. Current memory use 36.5MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 3 dbqueries\n... used 0.0014889240264893 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',215856),(66,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619624761.6457000000,1619624761.6466000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 16:46:01. Current memory use 36.5MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016498565673828 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',215856),(67,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619624761.6581000000,1619624761.6645000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 16:46:01. Current memory use 35.6MB.\n\n0 feeds refreshed (took 0.00032799999999999 seconds)\n... used 1 dbqueries\n... used 0.0057520866394043 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',215856),(68,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619624761.6746000000,1619624761.6767000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 16:46:01. Current memory use 36.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014278888702393 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',215856),(69,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619624761.6836000000,1619624761.6843000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 16:46:01. Current memory use 36.8MB.\n... used 0 dbqueries\n... used 0.00010395050048828 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',215856),(70,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619624761.6935000000,1619624761.6944000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 16:46:01. Current memory use 36.9MB.\n... used 1 dbqueries\n... used 0.00025200843811035 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',215856),(71,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619624761.7019000000,1619624761.7029000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 16:46:01. Current memory use 36.9MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00040197372436523 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',215856),(72,0,'moodle','core\\task\\delete_unconfirmed_users_task',0,1619625661.9014000000,1619625661.9162000000,1,0,0,'Execute scheduled task: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n... started 17:01:01. Current memory use 15.2MB.\n... used 1 dbqueries\n... used 0.0043540000915527 seconds\nScheduled task complete: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n','dev-defaults.derekmaxson.com',218595),(73,0,'moodle','core\\task\\check_for_updates_task',0,1619625661.9263000000,1619625666.0176000000,23,3,0,'Execute scheduled task: Check for updates (core\\task\\check_for_updates_task)\n... started 17:01:01. Current memory use 16.1MB.\nOutdated or missing info about available updates, forced fetching ... sending notifications ... Error: lib/moodlelib.php email_to_user(): Could not instantiate mail function.\ndone\n... used 26 dbqueries\n... used 4.0908360481262 seconds\nScheduled task complete: Check for updates (core\\task\\check_for_updates_task)\n','dev-defaults.derekmaxson.com',218595),(74,0,'moodle','core\\task\\cache_cron_task',0,1619625666.0354000000,1619625666.0374000000,0,0,0,'Execute scheduled task: Background processing for caches (core\\task\\cache_cron_task)\n... started 17:01:06. Current memory use 47.4MB.\nCleaning up stale session data from cache stores.\n... used 0 dbqueries\n... used 0.00024986267089844 seconds\nScheduled task complete: Background processing for caches (core\\task\\cache_cron_task)\n','dev-defaults.derekmaxson.com',218595),(75,0,'moodle','core\\task\\automated_backup_task',0,1619625666.0469000000,1619625666.4821000000,0,0,0,'Execute scheduled task: Automated backups (core\\task\\automated_backup_task)\n... started 17:01:06. Current memory use 47.5MB.\nChecking automated backup status...INACTIVE\n... used 0 dbqueries\n... used 0.43434810638428 seconds\nScheduled task complete: Automated backups (core\\task\\automated_backup_task)\n','dev-defaults.derekmaxson.com',218595),(76,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619625666.4956000000,1619625666.4979000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 17:01:06. Current memory use 54.3MB.\n... used 1 dbqueries\n... used 0.0010437965393066 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',218595),(77,0,'moodle','core\\task\\search_index_task',0,1619625666.5143000000,1619625666.5169000000,0,0,0,'Execute scheduled task: Global search indexing (core\\task\\search_index_task)\n... started 17:01:06. Current memory use 54.3MB.\n... used 0 dbqueries\n... used 0.0017728805541992 seconds\nScheduled task complete: Global search indexing (core\\task\\search_index_task)\n','dev-defaults.derekmaxson.com',218595),(78,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_course_bin',0,1619625666.5271000000,1619625666.5288000000,1,0,0,'Execute scheduled task: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n... started 17:01:06. Current memory use 54.5MB.\n... used 1 dbqueries\n... used 0.0008549690246582 seconds\nScheduled task complete: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n','dev-defaults.derekmaxson.com',218595),(79,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_category_bin',0,1619625666.5423000000,1619625666.5442000000,1,0,0,'Execute scheduled task: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n... started 17:01:06. Current memory use 54.6MB.\n... used 1 dbqueries\n... used 0.00079083442687988 seconds\nScheduled task complete: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n','dev-defaults.derekmaxson.com',218595),(80,0,'moodle','core\\task\\session_cleanup_task',0,1619625666.5526000000,1619625666.5588000000,6,2,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 17:01:06. Current memory use 54.6MB.\n... used 8 dbqueries\n... used 0.0050938129425049 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',218595),(81,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619625666.5660000000,1619625666.5673000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 17:01:06. Current memory use 54.8MB.\n... used 1 dbqueries\n... used 0.00029397010803223 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',218595),(82,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619625666.5805000000,1619625666.5813000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 17:01:06. Current memory use 54.9MB.\n... used 0 dbqueries\n... used 3.3855438232422E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',218595),(83,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619625666.5929000000,1619625666.5965000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 17:01:06. Current memory use 54.9MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.0028259754180908 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',218595),(84,0,'moodle','core\\task\\grade_cron_task',0,1619625666.6049000000,1619625666.6068000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 17:01:06. Current memory use 54.9MB.\n... used 2 dbqueries\n... used 0.00092697143554688 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',218595),(85,0,'moodle','core\\task\\completion_regular_task',0,1619625666.6182000000,1619625666.6237000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 17:01:06. Current memory use 54.9MB.\n... used 6 dbqueries\n... used 0.0046398639678955 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',218595),(86,0,'moodle','core\\task\\portfolio_cron_task',0,1619625666.6394000000,1619625666.6402000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 17:01:06. Current memory use 55.1MB.\n... used 0 dbqueries\n... used 3.0040740966797E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',218595),(87,0,'moodle','core\\task\\plagiarism_cron_task',0,1619625666.6480000000,1619625666.6488000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 17:01:06. Current memory use 55.1MB.\n... used 0 dbqueries\n... used 3.4093856811523E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',218595),(88,0,'moodle','core\\task\\calendar_cron_task',0,1619625666.6652000000,1619625666.6696000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 17:01:06. Current memory use 55.1MB.\n... used 1 dbqueries\n... used 0.0036051273345947 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',218595),(89,0,'moodle','core\\task\\blog_cron_task',0,1619625666.6783000000,1619625666.6819000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 17:01:06. Current memory use 55.5MB.\n... used 2 dbqueries\n... used 0.0027709007263184 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',218595),(90,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619625666.6908000000,1619625666.6924000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 17:01:06. Current memory use 55.8MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.00095105171203613 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',218595),(91,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619625666.7198000000,1619625666.7212000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 17:01:06. Current memory use 55.8MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00062084197998047 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',218595),(92,0,'moodle','core\\task\\badges_cron_task',0,1619625666.7303000000,1619625666.7344000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 17:01:06. Current memory use 55.9MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0033609867095947 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',218595),(93,0,'moodle','core\\task\\badges_message_task',0,1619625666.7492000000,1619625666.7504000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 17:01:06. Current memory use 56.2MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00038409233093262 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',218595),(94,0,'mod_assign','mod_assign\\task\\cron_task',0,1619625666.7631000000,1619625666.7732000000,4,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 17:01:06. Current memory use 56.2MB.\n... used 4 dbqueries\n... used 0.0073931217193604 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',218595),(95,0,'mod_chat','mod_chat\\task\\cron_task',0,1619625666.7823000000,1619625666.7848000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 17:01:06. Current memory use 56.9MB.\n... used 4 dbqueries\n... used 0.0012900829315186 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',218595),(96,0,'mod_forum','mod_forum\\task\\cron_task',0,1619625666.7952000000,1619625666.7970000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 17:01:06. Current memory use 57MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00061798095703125 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',218595),(97,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619625666.8165000000,1619625666.8203000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 17:01:06. Current memory use 57.9MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.001838207244873 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',218595),(98,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619625666.8405000000,1619625666.8419000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 17:01:06. Current memory use 58MB.\n... used 0 dbqueries\n... used 9.2029571533203E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',218595),(99,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619625666.8517000000,1619625666.8529000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 17:01:06. Current memory use 58MB.\n... used 0 dbqueries\n... used 8.2015991210938E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',218595),(100,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619625666.8610000000,1619625666.8668000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 17:01:06. Current memory use 58MB.\n... used 0 dbqueries\n... used 0.0036728382110596 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',218595),(101,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619625666.8785000000,1619625666.8799000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 17:01:06. Current memory use 58.5MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00033688545227051 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',218595),(102,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619625666.8868000000,1619625666.8875000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 17:01:06. Current memory use 58.5MB.\n... used 0 dbqueries\n... used 7.2002410888672E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',218595),(103,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619625666.8996000000,1619625666.9010000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 17:01:06. Current memory use 58.5MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.0001828670501709 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',218595),(104,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619625666.9177000000,1619625666.9190000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 17:01:06. Current memory use 58.5MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016093254089355 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',218595),(105,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619625666.9288000000,1619625666.9309000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 17:01:06. Current memory use 58.5MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.00097107887268066 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',218595),(106,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619625666.9401000000,1619625666.9413000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 17:01:06. Current memory use 58.5MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016093254089355 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',218595),(107,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619625666.9485000000,1619625666.9552000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 17:01:06. Current memory use 58.5MB.\n\n0 feeds refreshed (took 0.0002930000000001 seconds)\n... used 1 dbqueries\n... used 0.0055880546569824 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',218595),(108,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619625666.9637000000,1619625666.9667000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 17:01:06. Current memory use 59.2MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014488697052002 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',218595),(109,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619625666.9769000000,1619625666.9785000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 17:01:06. Current memory use 59.5MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',218595),(110,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619625666.9861000000,1619625666.9879000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 17:01:06. Current memory use 59.5MB.\n... used 1 dbqueries\n... used 0.00026416778564453 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',218595),(111,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619625666.9987000000,1619625667.0004000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 17:01:06. Current memory use 59.5MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00041794776916504 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',218595),(112,0,'moodle','core\\task\\delete_incomplete_users_task',0,1619626561.1791000000,1619626561.1862000000,0,0,0,'Execute scheduled task: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n... started 17:16:01. Current memory use 15.2MB.\n... used 0 dbqueries\n... used 0.0035748481750488 seconds\nScheduled task complete: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n','dev-defaults.derekmaxson.com',221423),(113,0,'moodle','core\\task\\backup_cleanup_task',0,1619626561.1932000000,1619626561.1945000000,1,0,0,'Execute scheduled task: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n... started 17:16:01. Current memory use 16.1MB.\n... used 1 dbqueries\n... used 0.00085091590881348 seconds\nScheduled task complete: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n','dev-defaults.derekmaxson.com',221423),(114,0,'moodle','core\\task\\complete_plans_task',0,1619626561.2006000000,1619626561.2086000000,1,0,0,'Execute scheduled task: Complete learning plans which are due (core\\task\\complete_plans_task)\n... started 17:16:01. Current memory use 16.1MB.\n... used 1 dbqueries\n... used 0.0070531368255615 seconds\nScheduled task complete: Complete learning plans which are due (core\\task\\complete_plans_task)\n','dev-defaults.derekmaxson.com',221423),(115,0,'qtype_random','qtype_random\\task\\remove_unused_questions',0,1619626561.2206000000,1619626561.2443000000,1,0,0,'Execute scheduled task: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n... started 17:16:01. Current memory use 17.5MB.\nCleaned up 0 unused random questions.\n... used 1 dbqueries\n... used 0.023098945617676 seconds\nScheduled task complete: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n','dev-defaults.derekmaxson.com',221423),(116,0,'enrol_flatfile','enrol_flatfile\\task\\flatfile_sync_task',0,1619626561.2585000000,1619626561.2610000000,2,0,0,'Execute scheduled task: Flat file enrolment sync (enrol_flatfile\\task\\flatfile_sync_task)\n... started 17:16:01. Current memory use 20.3MB.\n... used 2 dbqueries\n... used 0.0019071102142334 seconds\nScheduled task complete: Flat file enrolment sync (enrol_flatfile\\task\\flatfile_sync_task)\n','dev-defaults.derekmaxson.com',221423),(117,0,'tool_cohortroles','tool_cohortroles\\task\\cohort_role_sync',0,1619626561.2765000000,1619626561.2818000000,2,1,0,'Execute scheduled task: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n... started 17:16:01. Current memory use 20.9MB.\nSync cohort roles...\nAdded 0\nRemoved 0\n... used 3 dbqueries\n... used 0.0045580863952637 seconds\nScheduled task complete: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n','dev-defaults.derekmaxson.com',221423),(118,0,'moodle','core\\task\\session_cleanup_task',0,1619626561.2923000000,1619626561.2988000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 17:16:01. Current memory use 21.6MB.\n... used 7 dbqueries\n... used 0.0048530101776123 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',221423),(119,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619626561.3076000000,1619626561.3087000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 17:16:01. Current memory use 22MB.\n... used 1 dbqueries\n... used 0.0003049373626709 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',221423),(120,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619626561.3174000000,1619626561.3181000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 17:16:01. Current memory use 22MB.\n... used 0 dbqueries\n... used 3.6001205444336E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',221423),(121,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619626561.3295000000,1619626561.3594000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 17:16:01. Current memory use 22MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.029263019561768 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',221423),(122,0,'moodle','core\\task\\grade_cron_task',0,1619626561.3675000000,1619626561.3694000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 17:16:01. Current memory use 25.4MB.\n... used 2 dbqueries\n... used 0.0010299682617188 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',221423),(123,0,'moodle','core\\task\\completion_regular_task',0,1619626561.3782000000,1619626561.3853000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 17:16:01. Current memory use 25.4MB.\n... used 6 dbqueries\n... used 0.0064101219177246 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',221423),(124,0,'moodle','core\\task\\portfolio_cron_task',0,1619626561.3933000000,1619626561.3940000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 17:16:01. Current memory use 25.7MB.\n... used 0 dbqueries\n... used 3.4809112548828E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',221423),(125,0,'moodle','core\\task\\plagiarism_cron_task',0,1619626561.4047000000,1619626561.4054000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 17:16:01. Current memory use 25.8MB.\n... used 0 dbqueries\n... used 3.6001205444336E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',221423),(126,0,'moodle','core\\task\\calendar_cron_task',0,1619626561.4251000000,1619626561.4291000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 17:16:01. Current memory use 27.5MB.\n... used 1 dbqueries\n... used 0.0032479763031006 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',221423),(127,0,'moodle','core\\task\\blog_cron_task',0,1619626561.4366000000,1619626561.4402000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 17:16:01. Current memory use 27.9MB.\n... used 2 dbqueries\n... used 0.0030138492584229 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',221423),(128,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619626561.4495000000,1619626561.4511000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 17:16:01. Current memory use 28.2MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.00094079971313477 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',221423),(129,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619626561.4612000000,1619626561.4627000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 17:16:01. Current memory use 28.2MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00079989433288574 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',221423),(130,0,'moodle','core\\task\\badges_cron_task',0,1619626561.4742000000,1619626561.4785000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 17:16:01. Current memory use 28.2MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0035209655761719 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',221423),(131,0,'moodle','core\\task\\badges_message_task',0,1619626561.4872000000,1619626561.4882000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 17:16:01. Current memory use 28.5MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00038385391235352 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',221423),(132,0,'mod_assign','mod_assign\\task\\cron_task',0,1619626561.5021000000,1619626561.5295000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 17:16:01. Current memory use 29.4MB.\n... used 3 dbqueries\n... used 0.026519060134888 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',221423),(133,0,'mod_chat','mod_chat\\task\\cron_task',0,1619626561.5380000000,1619626561.5436000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 17:16:01. Current memory use 32.2MB.\n... used 4 dbqueries\n... used 0.0046441555023193 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',221423),(134,0,'mod_forum','mod_forum\\task\\cron_task',0,1619626561.5652000000,1619626561.5667000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 17:16:01. Current memory use 33.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00066900253295898 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',221423),(135,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619626561.5833000000,1619626561.5861000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 17:16:01. Current memory use 34.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0020041465759277 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',221423),(136,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619626561.5933000000,1619626561.5944000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 17:16:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 8.1062316894531E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',221423),(137,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619626561.6015000000,1619626561.6026000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 17:16:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 8.4161758422852E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',221423),(138,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619626561.6129000000,1619626561.6189000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 17:16:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 0.0050289630889893 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',221423),(139,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619626561.6271000000,1619626561.6283000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 17:16:01. Current memory use 35.1MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00041007995605469 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',221423),(140,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619626561.6361000000,1619626561.6370000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 17:16:01. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',221423),(141,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619626561.6447000000,1619626561.6468000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 17:16:01. Current memory use 35.1MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.0004119873046875 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',221423),(142,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619626561.6572000000,1619626561.6584000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 17:16:01. Current memory use 35.1MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00017118453979492 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',221423),(143,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619626561.6698000000,1619626561.6729000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 17:16:01. Current memory use 35.1MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0013790130615234 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',221423),(144,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619626561.6806000000,1619626561.6818000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 17:16:01. Current memory use 35.1MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016117095947266 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',221423),(145,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619626561.6926000000,1619626561.6991000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 17:16:01. Current memory use 34.2MB.\n\n0 feeds refreshed (took 0.00031300000000001 seconds)\n... used 1 dbqueries\n... used 0.0056848526000977 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',221423),(146,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619626561.7076000000,1619626561.7097000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 17:16:01. Current memory use 34.9MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014128684997559 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',221423),(147,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619626561.7221000000,1619626561.7229000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 17:16:01. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 9.4175338745117E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',221423),(148,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619626561.7319000000,1619626561.7329000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 17:16:01. Current memory use 35.1MB.\n... used 1 dbqueries\n... used 0.00023508071899414 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',221423),(149,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619626561.7427000000,1619626561.7438000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 17:16:01. Current memory use 35.2MB.\n... used 1 dbqueries\n... used 0.00040602684020996 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',221423),(150,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619626561.7523000000,1619626561.7531000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 17:16:01. Current memory use 35.2MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00039005279541016 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',221423),(151,0,'moodle','core\\task\\context_cleanup_task',0,1619627462.0099000000,1619627462.0207000000,9,1,0,'Execute scheduled task: Cleanup contexts (core\\task\\context_cleanup_task)\n... started 17:31:02. Current memory use 15.2MB.\n Cleaned up context instances\n... used 10 dbqueries\n... used 0.0072119235992432 seconds\nScheduled task complete: Cleanup contexts (core\\task\\context_cleanup_task)\n','dev-defaults.derekmaxson.com',224213),(152,0,'moodle','core\\task\\sync_plans_from_template_cohorts_task',0,1619627462.0267000000,1619627462.0350000000,1,0,0,'Execute scheduled task: Sync plans from learning plan template cohorts (core\\task\\sync_plans_from_template_cohorts_task)\n... started 17:31:02. Current memory use 16.3MB.\n... used 1 dbqueries\n... used 0.007451057434082 seconds\nScheduled task complete: Sync plans from learning plan template cohorts (core\\task\\sync_plans_from_template_cohorts_task)\n','dev-defaults.derekmaxson.com',224213),(153,0,'moodle','core\\task\\cache_cleanup_task',0,1619627462.0541000000,1619627462.0556000000,0,1,0,'Execute scheduled task: Remove expired cache entries (core\\task\\cache_cleanup_task)\n... started 17:31:02. Current memory use 17.6MB.\n... used 1 dbqueries\n... used 0.0002899169921875 seconds\nScheduled task complete: Remove expired cache entries (core\\task\\cache_cleanup_task)\n','dev-defaults.derekmaxson.com',224213),(154,0,'moodle','core\\oauth2\\refresh_system_tokens_task',0,1619627462.0634000000,1619627462.0770000000,1,0,0,'Execute scheduled task: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n... started 17:31:02. Current memory use 17.6MB.\n... used 1 dbqueries\n... used 0.013114929199219 seconds\nScheduled task complete: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n','dev-defaults.derekmaxson.com',224213),(155,0,'moodle','core\\task\\search_index_task',0,1619627462.0843000000,1619627462.0865000000,0,0,0,'Execute scheduled task: Global search indexing (core\\task\\search_index_task)\n... started 17:31:02. Current memory use 19.3MB.\n... used 0 dbqueries\n... used 0.0017189979553223 seconds\nScheduled task complete: Global search indexing (core\\task\\search_index_task)\n','dev-defaults.derekmaxson.com',224213),(156,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_course_bin',0,1619627462.0965000000,1619627462.0977000000,1,0,0,'Execute scheduled task: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n... started 17:31:02. Current memory use 19.6MB.\n... used 1 dbqueries\n... used 0.0007331371307373 seconds\nScheduled task complete: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n','dev-defaults.derekmaxson.com',224213),(157,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_category_bin',0,1619627462.1050000000,1619627462.1062000000,1,0,0,'Execute scheduled task: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n... started 17:31:02. Current memory use 19.6MB.\n... used 1 dbqueries\n... used 0.00067996978759766 seconds\nScheduled task complete: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n','dev-defaults.derekmaxson.com',224213),(158,0,'moodle','core\\task\\session_cleanup_task',0,1619627462.1160000000,1619627462.1219000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 17:31:02. Current memory use 19.9MB.\n... used 7 dbqueries\n... used 0.0044970512390137 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',224213),(159,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619627462.1291000000,1619627462.1300000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 17:31:02. Current memory use 20.2MB.\n... used 1 dbqueries\n... used 0.00029611587524414 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',224213),(160,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619627462.1419000000,1619627462.1426000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 17:31:02. Current memory use 20.2MB.\n... used 0 dbqueries\n... used 3.504753112793E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',224213),(161,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619627462.1509000000,1619627462.1810000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 17:31:02. Current memory use 20.2MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.029411792755127 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',224213),(162,0,'moodle','core\\task\\grade_cron_task',0,1619627462.1900000000,1619627462.1917000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 17:31:02. Current memory use 23.6MB.\n... used 2 dbqueries\n... used 0.00096511840820312 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',224213),(163,0,'moodle','core\\task\\completion_regular_task',0,1619627462.2002000000,1619627462.2074000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 17:31:02. Current memory use 23.7MB.\n... used 6 dbqueries\n... used 0.0065751075744629 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',224213),(164,0,'moodle','core\\task\\portfolio_cron_task',0,1619627462.2177000000,1619627462.2183000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 17:31:02. Current memory use 24.1MB.\n... used 0 dbqueries\n... used 3.2901763916016E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',224213),(165,0,'moodle','core\\task\\plagiarism_cron_task',0,1619627462.2256000000,1619627462.2262000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 17:31:02. Current memory use 24.1MB.\n... used 0 dbqueries\n... used 3.1948089599609E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',224213),(166,0,'moodle','core\\task\\calendar_cron_task',0,1619627462.2383000000,1619627462.2422000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 17:31:02. Current memory use 24.6MB.\n... used 1 dbqueries\n... used 0.0032479763031006 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',224213),(167,0,'moodle','core\\task\\blog_cron_task',0,1619627462.2522000000,1619627462.2564000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 17:31:02. Current memory use 25MB.\n... used 2 dbqueries\n... used 0.0036168098449707 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',224213),(168,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619627462.2744000000,1619627462.2879000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 17:31:02. Current memory use 25.2MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.012801170349121 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',224213),(169,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619627462.3008000000,1619627462.3022000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 17:31:02. Current memory use 28.2MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00069403648376465 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',224213),(170,0,'moodle','core\\task\\badges_cron_task',0,1619627462.3130000000,1619627462.3171000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 17:31:02. Current memory use 28.2MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.003486156463623 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',224213),(171,0,'moodle','core\\task\\badges_message_task',0,1619627462.3281000000,1619627462.3290000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 17:31:02. Current memory use 28.5MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00035691261291504 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',224213),(172,0,'mod_assign','mod_assign\\task\\cron_task',0,1619627462.3429000000,1619627462.3694000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 17:31:02. Current memory use 29.4MB.\n... used 3 dbqueries\n... used 0.025687217712402 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',224213),(173,0,'mod_chat','mod_chat\\task\\cron_task',0,1619627462.3780000000,1619627462.3819000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 17:31:02. Current memory use 32.1MB.\n... used 4 dbqueries\n... used 0.0029959678649902 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',224213),(174,0,'mod_forum','mod_forum\\task\\cron_task',0,1619627462.4007000000,1619627462.4021000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 17:31:02. Current memory use 33.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00062108039855957 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',224213),(175,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619627462.4212000000,1619627462.4239000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 17:31:02. Current memory use 34.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0019819736480713 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',224213),(176,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619627462.4348000000,1619627462.4357000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 17:31:02. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 8.2969665527344E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',224213),(177,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619627462.4431000000,1619627462.4439000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 17:31:02. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 7.6055526733398E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',224213),(178,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619627462.4512000000,1619627462.4568000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 17:31:02. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 0.0049128532409668 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',224213),(179,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619627462.4644000000,1619627462.4656000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 17:31:02. Current memory use 35MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00037908554077148 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',224213),(180,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619627462.4783000000,1619627462.4791000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 17:31:02. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 8.5830688476562E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',224213),(181,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619627462.4870000000,1619627462.4888000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 17:31:02. Current memory use 35.1MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.0003821849822998 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',224213),(182,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619627462.4974000000,1619627462.4983000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 17:31:02. Current memory use 35.1MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00015783309936523 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',224213),(183,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619627462.5068000000,1619627462.5094000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 17:31:02. Current memory use 35.1MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0011770725250244 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',224213),(184,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619627462.5191000000,1619627462.5200000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 17:31:02. Current memory use 35.1MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00017189979553223 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',224213),(185,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619627462.5315000000,1619627462.5381000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 17:31:02. Current memory use 34.2MB.\n\n0 feeds refreshed (took 0.00038800000000005 seconds)\n... used 1 dbqueries\n... used 0.0059390068054199 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',224213),(186,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619627462.5459000000,1619627462.5479000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 17:31:02. Current memory use 34.9MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0013828277587891 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',224213),(187,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619627462.5558000000,1619627462.5565000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 17:31:02. Current memory use 35MB.\n... used 0 dbqueries\n... used 8.8930130004883E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',224213),(188,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619627462.5672000000,1619627462.5681000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 17:31:02. Current memory use 35.1MB.\n... used 1 dbqueries\n... used 0.00025081634521484 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',224213),(189,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619627462.5755000000,1619627462.5765000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 17:31:02. Current memory use 35.1MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00039911270141602 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',224213),(190,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619627462.5878000000,1619627462.5889000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 17:31:02. Current memory use 35.2MB.\n... used 1 dbqueries\n... used 0.00043296813964844 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',224213),(191,0,'moodle','core\\task\\messaging_cleanup_task',0,1619628361.7781000000,1619628361.7892000000,1,4,0,'Execute scheduled task: Background processing for messaging (core\\task\\messaging_cleanup_task)\n... started 17:46:01. Current memory use 16MB.\n... used 5 dbqueries\n... used 0.0081639289855957 seconds\nScheduled task complete: Background processing for messaging (core\\task\\messaging_cleanup_task)\n','dev-defaults.derekmaxson.com',226996),(192,0,'moodle','core\\task\\analytics_cleanup_task',0,1619628361.7965000000,1619628361.8510000000,20,3,0,'Execute scheduled task: Analytics cleanup (core\\task\\analytics_cleanup_task)\n... started 17:46:01. Current memory use 17.4MB.\n... used 23 dbqueries\n... used 0.053968191146851 seconds\nScheduled task complete: Analytics cleanup (core\\task\\analytics_cleanup_task)\n','dev-defaults.derekmaxson.com',226996),(193,0,'moodle','core\\task\\session_cleanup_task',0,1619628361.8615000000,1619628361.8665000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 17:46:01. Current memory use 23.1MB.\n... used 7 dbqueries\n... used 0.0043411254882812 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',226996),(194,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619628361.8744000000,1619628361.8753000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 17:46:01. Current memory use 23.3MB.\n... used 1 dbqueries\n... used 0.00029706954956055 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',226996),(195,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619628361.8826000000,1619628361.8831000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 17:46:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 2.7894973754883E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',226996),(196,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619628361.8910000000,1619628361.9135000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 17:46:01. Current memory use 23.5MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.022027969360352 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',226996),(197,0,'moodle','core\\task\\grade_cron_task',0,1619628361.9234000000,1619628361.9249000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 17:46:01. Current memory use 26MB.\n... used 2 dbqueries\n... used 0.00084185600280762 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',226996),(198,0,'moodle','core\\task\\completion_regular_task',0,1619628361.9329000000,1619628361.9381000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 17:46:01. Current memory use 26.1MB.\n... used 6 dbqueries\n... used 0.0045480728149414 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',226996),(199,0,'moodle','core\\task\\portfolio_cron_task',0,1619628361.9478000000,1619628361.9485000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 17:46:01. Current memory use 26.2MB.\n... used 0 dbqueries\n... used 3.504753112793E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',226996),(200,0,'moodle','core\\task\\plagiarism_cron_task',0,1619628361.9556000000,1619628361.9562000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 17:46:01. Current memory use 26.3MB.\n... used 0 dbqueries\n... used 2.9087066650391E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',226996),(201,0,'moodle','core\\task\\calendar_cron_task',0,1619628361.9637000000,1619628361.9673000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 17:46:01. Current memory use 26.3MB.\n... used 1 dbqueries\n... used 0.0031390190124512 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',226996),(202,0,'moodle','core\\task\\blog_cron_task',0,1619628361.9765000000,1619628361.9798000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 17:46:01. Current memory use 26.7MB.\n... used 2 dbqueries\n... used 0.0028030872344971 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',226996),(203,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619628361.9868000000,1619628361.9989000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 17:46:01. Current memory use 26.9MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.011622905731201 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',226996),(204,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619628362.0072000000,1619628362.0086000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 17:46:02. Current memory use 28.6MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00071597099304199 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',226996),(205,0,'moodle','core\\task\\badges_cron_task',0,1619628362.0164000000,1619628362.0212000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 17:46:02. Current memory use 28.6MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0042381286621094 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',226996),(206,0,'moodle','core\\task\\badges_message_task',0,1619628362.0325000000,1619628362.0335000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 17:46:02. Current memory use 30.1MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00033807754516602 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',226996),(207,0,'mod_assign','mod_assign\\task\\cron_task',0,1619628362.0462000000,1619628362.0721000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 17:46:02. Current memory use 31.2MB.\n... used 3 dbqueries\n... used 0.024996995925903 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',226996),(208,0,'mod_chat','mod_chat\\task\\cron_task',0,1619628362.0857000000,1619628362.0896000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 17:46:02. Current memory use 34MB.\n... used 4 dbqueries\n... used 0.0029869079589844 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',226996),(209,0,'mod_forum','mod_forum\\task\\cron_task',0,1619628362.1074000000,1619628362.1088000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 17:46:02. Current memory use 35.2MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00063705444335938 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',226996),(210,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619628362.1255000000,1619628362.1283000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 17:46:02. Current memory use 36.3MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0020110607147217 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',226996),(211,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619628362.1357000000,1619628362.1366000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 17:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 7.8916549682617E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',226996),(212,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619628362.1483000000,1619628362.1493000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 17:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 8.6069107055664E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',226996),(213,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619628362.1569000000,1619628362.1626000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 17:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 0.0049378871917725 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',226996),(214,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619628362.1754000000,1619628362.1766000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 17:46:02. Current memory use 36.9MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00033903121948242 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',226996),(215,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619628362.1858000000,1619628362.1867000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 17:46:02. Current memory use 36.9MB.\n... used 0 dbqueries\n... used 8.1062316894531E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',226996),(216,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619628362.1950000000,1619628362.1969000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 17:46:02. Current memory use 36.9MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00038886070251465 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',226996),(217,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619628362.2064000000,1619628362.2074000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 17:46:02. Current memory use 36.9MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00018000602722168 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',226996),(218,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619628362.2184000000,1619628362.2210000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 17:46:02. Current memory use 36.9MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.00111985206604 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',226996),(219,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619628362.2297000000,1619628362.2307000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 17:46:02. Current memory use 36.9MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.0001518726348877 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',226996),(220,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619628362.2421000000,1619628362.2488000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 17:46:02. Current memory use 35.7MB.\n\n0 feeds refreshed (took 0.00037600000000002 seconds)\n... used 1 dbqueries\n... used 0.0060710906982422 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',226996),(221,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619628362.2600000000,1619628362.2622000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 17:46:02. Current memory use 36.8MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0015408992767334 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',226996),(222,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619628362.2724000000,1619628362.2731000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 17:46:02. Current memory use 36.9MB.\n... used 0 dbqueries\n... used 0.00010085105895996 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',226996),(223,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619628362.2819000000,1619628362.2829000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 17:46:02. Current memory use 37MB.\n... used 1 dbqueries\n... used 0.00028705596923828 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',226996),(224,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619628362.2903000000,1619628362.2912000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 17:46:02. Current memory use 37MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00039100646972656 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',226996),(225,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619628362.3017000000,1619628362.3028000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 17:46:02. Current memory use 37MB.\n... used 1 dbqueries\n... used 0.00042486190795898 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',226996),(226,0,'moodle','core\\task\\delete_unconfirmed_users_task',0,1619629261.4880000000,1619629261.4950000000,1,0,0,'Execute scheduled task: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n... started 18:01:01. Current memory use 16MB.\n... used 1 dbqueries\n... used 0.0040040016174316 seconds\nScheduled task complete: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n','dev-defaults.derekmaxson.com',229751),(227,0,'moodle','core\\task\\check_for_updates_task',0,1619629261.5033000000,1619629261.5049000000,0,0,0,'Execute scheduled task: Check for updates (core\\task\\check_for_updates_task)\n... started 18:01:01. Current memory use 16.9MB.\nRecently fetched info about available updates is still fresh enough, skipping.\n... used 0 dbqueries\n... used 0.0010209083557129 seconds\nScheduled task complete: Check for updates (core\\task\\check_for_updates_task)\n','dev-defaults.derekmaxson.com',229751),(228,0,'moodle','core\\task\\cache_cron_task',0,1619629261.5157000000,1619629261.5166000000,0,0,0,'Execute scheduled task: Background processing for caches (core\\task\\cache_cron_task)\n... started 18:01:01. Current memory use 17MB.\nCleaning up stale session data from cache stores.\n... used 0 dbqueries\n... used 0.00024008750915527 seconds\nScheduled task complete: Background processing for caches (core\\task\\cache_cron_task)\n','dev-defaults.derekmaxson.com',229751),(229,0,'moodle','core\\task\\automated_backup_task',0,1619629261.5242000000,1619629261.6611000000,0,0,0,'Execute scheduled task: Automated backups (core\\task\\automated_backup_task)\n... started 18:01:01. Current memory use 17.1MB.\nChecking automated backup status...INACTIVE\n... used 0 dbqueries\n... used 0.13631510734558 seconds\nScheduled task complete: Automated backups (core\\task\\automated_backup_task)\n','dev-defaults.derekmaxson.com',229751),(230,0,'moodle','core\\task\\search_index_task',0,1619629261.6691000000,1619629261.6717000000,0,0,0,'Execute scheduled task: Global search indexing (core\\task\\search_index_task)\n... started 18:01:01. Current memory use 36.7MB.\n... used 0 dbqueries\n... used 0.0019509792327881 seconds\nScheduled task complete: Global search indexing (core\\task\\search_index_task)\n','dev-defaults.derekmaxson.com',229751),(231,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_course_bin',0,1619629261.6835000000,1619629261.6848000000,1,0,0,'Execute scheduled task: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n... started 18:01:01. Current memory use 36.7MB.\n... used 1 dbqueries\n... used 0.00077986717224121 seconds\nScheduled task complete: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n','dev-defaults.derekmaxson.com',229751),(232,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_category_bin',0,1619629261.6927000000,1619629261.6940000000,1,0,0,'Execute scheduled task: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n... started 18:01:01. Current memory use 36.7MB.\n... used 1 dbqueries\n... used 0.0007021427154541 seconds\nScheduled task complete: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n','dev-defaults.derekmaxson.com',229751),(233,0,'moodle','core\\task\\session_cleanup_task',0,1619629261.7038000000,1619629261.7096000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 18:01:01. Current memory use 37MB.\n... used 7 dbqueries\n... used 0.0044372081756592 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',229751),(234,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619629261.7173000000,1619629261.7182000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 18:01:01. Current memory use 37.3MB.\n... used 1 dbqueries\n... used 0.00028109550476074 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',229751),(235,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619629261.7256000000,1619629261.7261000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 18:01:01. Current memory use 37.3MB.\n... used 0 dbqueries\n... used 2.9087066650391E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',229751),(236,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619629261.7343000000,1619629261.7484000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 18:01:01. Current memory use 37.4MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.013644933700562 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',229751),(237,0,'moodle','core\\task\\grade_cron_task',0,1619629261.7594000000,1619629261.7610000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 18:01:01. Current memory use 38.8MB.\n... used 2 dbqueries\n... used 0.00087118148803711 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',229751),(238,0,'moodle','core\\task\\completion_regular_task',0,1619629261.7688000000,1619629261.7737000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 18:01:01. Current memory use 38.8MB.\n... used 6 dbqueries\n... used 0.0043871402740479 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',229751),(239,0,'moodle','core\\task\\portfolio_cron_task',0,1619629261.7861000000,1619629261.7868000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 18:01:01. Current memory use 39MB.\n... used 0 dbqueries\n... used 5.9843063354492E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',229751),(240,0,'moodle','core\\task\\plagiarism_cron_task',0,1619629261.7955000000,1619629261.7961000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 18:01:01. Current memory use 39.1MB.\n... used 0 dbqueries\n... used 3.6954879760742E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',229751),(241,0,'moodle','core\\task\\calendar_cron_task',0,1619629261.8089000000,1619629261.8126000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 18:01:01. Current memory use 39.1MB.\n... used 1 dbqueries\n... used 0.0031797885894775 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',229751),(242,0,'moodle','core\\task\\blog_cron_task',0,1619629261.8220000000,1619629261.8263000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 18:01:01. Current memory use 39.5MB.\n... used 2 dbqueries\n... used 0.00364089012146 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',229751),(243,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619629261.8341000000,1619629261.8356000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 18:01:01. Current memory use 39.7MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.00089788436889648 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',229751),(244,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619629261.8438000000,1619629261.8450000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 18:01:01. Current memory use 39.7MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00069713592529297 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',229751),(245,0,'moodle','core\\task\\badges_cron_task',0,1619629261.8611000000,1619629261.8653000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 18:01:01. Current memory use 39.7MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0035829544067383 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',229751),(246,0,'moodle','core\\task\\badges_message_task',0,1619629261.8745000000,1619629261.8755000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 18:01:01. Current memory use 40MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00036501884460449 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',229751),(247,0,'mod_assign','mod_assign\\task\\cron_task',0,1619629261.8905000000,1619629261.8976000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 18:01:01. Current memory use 41MB.\n... used 3 dbqueries\n... used 0.0062270164489746 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',229751),(248,0,'mod_chat','mod_chat\\task\\cron_task',0,1619629261.9064000000,1619629261.9082000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 18:01:01. Current memory use 41.5MB.\n... used 4 dbqueries\n... used 0.0010068416595459 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',229751),(249,0,'mod_forum','mod_forum\\task\\cron_task',0,1619629261.9204000000,1619629261.9218000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 18:01:01. Current memory use 41.6MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00066614151000977 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',229751),(250,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619629261.9376000000,1619629261.9405000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 18:01:01. Current memory use 42.4MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0021021366119385 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',229751),(251,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619629261.9492000000,1619629261.9500000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 18:01:01. Current memory use 42.5MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',229751),(252,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619629261.9578000000,1619629261.9584000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 18:01:01. Current memory use 42.5MB.\n... used 0 dbqueries\n... used 5.8174133300781E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',229751),(253,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619629261.9667000000,1619629261.9707000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 18:01:01. Current memory use 42.5MB.\n... used 0 dbqueries\n... used 0.003187894821167 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',229751),(254,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619629261.9815000000,1619629261.9826000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 18:01:01. Current memory use 42.8MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00034403800964355 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',229751),(255,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619629261.9897000000,1619629261.9904000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 18:01:01. Current memory use 42.8MB.\n... used 0 dbqueries\n... used 8.5115432739258E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',229751),(256,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619629262.0013000000,1619629262.0032000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 18:01:02. Current memory use 42.8MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00038313865661621 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',229751),(257,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619629262.0113000000,1619629262.0123000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 18:01:02. Current memory use 42.8MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016307830810547 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',229751),(258,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619629262.0193000000,1619629262.0220000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 18:01:02. Current memory use 42.8MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0011649131774902 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',229751),(259,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619629262.0298000000,1619629262.0309000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 18:01:02. Current memory use 42.8MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.0001988410949707 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',229751),(260,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619629262.0437000000,1619629262.0501000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 18:01:02. Current memory use 41.8MB.\n\n0 feeds refreshed (took 0.000349 seconds)\n... used 1 dbqueries\n... used 0.0057728290557861 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',229751),(261,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619629262.0579000000,1619629262.0600000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 18:01:02. Current memory use 42.6MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014910697937012 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',229751),(262,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619629262.0679000000,1619629262.0686000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 18:01:02. Current memory use 42.8MB.\n... used 0 dbqueries\n... used 8.4877014160156E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',229751),(263,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619629262.0771000000,1619629262.0779000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 18:01:02. Current memory use 42.8MB.\n... used 1 dbqueries\n... used 0.00023198127746582 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',229751),(264,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619629262.0884000000,1619629262.0894000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 18:01:02. Current memory use 42.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00040292739868164 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',229751),(265,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619629262.0974000000,1619629262.0985000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 18:01:02. Current memory use 42.9MB.\n... used 1 dbqueries\n... used 0.00040197372436523 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',229751),(266,0,'block_recent_activity','block_recent_activity\\task\\cleanup',0,1619630161.2849000000,1619630161.3087000000,0,1,0,'Execute scheduled task: Cleanup task for recent activity block (block_recent_activity\\task\\cleanup)\n... started 18:16:01. Current memory use 15.7MB.\n... used 1 dbqueries\n... used 0.021638154983521 seconds\nScheduled task complete: Cleanup task for recent activity block (block_recent_activity\\task\\cleanup)\n','dev-defaults.derekmaxson.com',232522),(267,0,'moodle','core\\task\\delete_incomplete_users_task',0,1619630161.3269000000,1619630161.3282000000,0,0,0,'Execute scheduled task: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n... started 18:16:01. Current memory use 19.4MB.\n... used 0 dbqueries\n... used 3.6001205444336E-5 seconds\nScheduled task complete: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n','dev-defaults.derekmaxson.com',232522),(268,0,'moodle','core\\task\\backup_cleanup_task',0,1619630161.3368000000,1619630161.3378000000,1,0,0,'Execute scheduled task: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n... started 18:16:01. Current memory use 19.4MB.\n... used 1 dbqueries\n... used 0.00035309791564941 seconds\nScheduled task complete: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n','dev-defaults.derekmaxson.com',232522),(269,0,'moodle','core\\task\\complete_plans_task',0,1619630161.3470000000,1619630161.3553000000,1,0,0,'Execute scheduled task: Complete learning plans which are due (core\\task\\complete_plans_task)\n... started 18:16:01. Current memory use 19.5MB.\n... used 1 dbqueries\n... used 0.0074031352996826 seconds\nScheduled task complete: Complete learning plans which are due (core\\task\\complete_plans_task)\n','dev-defaults.derekmaxson.com',232522),(270,0,'qtype_random','qtype_random\\task\\remove_unused_questions',0,1619630161.3703000000,1619630161.3824000000,1,0,0,'Execute scheduled task: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n... started 18:16:01. Current memory use 20.1MB.\nCleaned up 0 unused random questions.\n... used 1 dbqueries\n... used 0.011371850967407 seconds\nScheduled task complete: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n','dev-defaults.derekmaxson.com',232522),(271,0,'enrol_flatfile','enrol_flatfile\\task\\flatfile_sync_task',0,1619630161.4010000000,1619630161.4034000000,2,0,0,'Execute scheduled task: Flat file enrolment sync (enrol_flatfile\\task\\flatfile_sync_task)\n... started 18:16:01. Current memory use 21.8MB.\n... used 2 dbqueries\n... used 0.0017499923706055 seconds\nScheduled task complete: Flat file enrolment sync (enrol_flatfile\\task\\flatfile_sync_task)\n','dev-defaults.derekmaxson.com',232522),(272,0,'tool_cohortroles','tool_cohortroles\\task\\cohort_role_sync',0,1619630161.4180000000,1619630161.4212000000,2,1,0,'Execute scheduled task: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n... started 18:16:01. Current memory use 21.9MB.\nSync cohort roles...\nAdded 0\nRemoved 0\n... used 3 dbqueries\n... used 0.0025770664215088 seconds\nScheduled task complete: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n','dev-defaults.derekmaxson.com',232522),(273,0,'moodle','core\\task\\session_cleanup_task',0,1619630161.4303000000,1619630161.4378000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 18:16:01. Current memory use 22.6MB.\n... used 7 dbqueries\n... used 0.0054020881652832 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',232522),(274,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619630161.4491000000,1619630161.4503000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 18:16:01. Current memory use 22.9MB.\n... used 1 dbqueries\n... used 0.00031900405883789 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',232522),(275,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619630161.4589000000,1619630161.4595000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 18:16:01. Current memory use 23MB.\n... used 0 dbqueries\n... used 3.1948089599609E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',232522),(276,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619630161.4686000000,1619630161.4976000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 18:16:01. Current memory use 23MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.028495073318481 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',232522),(277,0,'moodle','core\\task\\grade_cron_task',0,1619630161.5098000000,1619630161.5116000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 18:16:01. Current memory use 27.6MB.\n... used 2 dbqueries\n... used 0.00095391273498535 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',232522),(278,0,'moodle','core\\task\\completion_regular_task',0,1619630161.5202000000,1619630161.5253000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 18:16:01. Current memory use 27.6MB.\n... used 6 dbqueries\n... used 0.0045311450958252 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',232522),(279,0,'moodle','core\\task\\portfolio_cron_task',0,1619630161.5375000000,1619630161.5382000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 18:16:01. Current memory use 27.8MB.\n... used 0 dbqueries\n... used 3.504753112793E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',232522),(280,0,'moodle','core\\task\\plagiarism_cron_task',0,1619630161.5465000000,1619630161.5471000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 18:16:01. Current memory use 27.8MB.\n... used 0 dbqueries\n... used 3.0994415283203E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',232522),(281,0,'moodle','core\\task\\calendar_cron_task',0,1619630161.5613000000,1619630161.5651000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 18:16:01. Current memory use 28.2MB.\n... used 1 dbqueries\n... used 0.0030698776245117 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',232522),(282,0,'moodle','core\\task\\blog_cron_task',0,1619630161.5763000000,1619630161.5800000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 18:16:01. Current memory use 28.7MB.\n... used 2 dbqueries\n... used 0.0030269622802734 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',232522),(283,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619630161.5908000000,1619630161.5926000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 18:16:01. Current memory use 28.9MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.0010430812835693 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',232522),(284,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619630161.6062000000,1619630161.6077000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 18:16:01. Current memory use 28.9MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00084900856018066 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',232522),(285,0,'moodle','core\\task\\badges_cron_task',0,1619630161.6183000000,1619630161.6227000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 18:16:01. Current memory use 29MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0036389827728271 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',232522),(286,0,'moodle','core\\task\\badges_message_task',0,1619630161.6330000000,1619630161.6340000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 18:16:01. Current memory use 29.3MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.0003361701965332 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',232522),(287,0,'mod_assign','mod_assign\\task\\cron_task',0,1619630161.6499000000,1619630161.6769000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 18:16:01. Current memory use 30.1MB.\n... used 3 dbqueries\n... used 0.026180982589722 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',232522),(288,0,'mod_chat','mod_chat\\task\\cron_task',0,1619630161.6913000000,1619630161.6955000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 18:16:01. Current memory use 33MB.\n... used 4 dbqueries\n... used 0.0030629634857178 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',232522),(289,0,'mod_forum','mod_forum\\task\\cron_task',0,1619630161.7156000000,1619630161.7171000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 18:16:01. Current memory use 34.1MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00072717666625977 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',232522),(290,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619630161.7375000000,1619630161.7405000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 18:16:01. Current memory use 35.3MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0021319389343262 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',232522),(291,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619630161.7549000000,1619630161.7561000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 18:16:01. Current memory use 35.3MB.\n... used 0 dbqueries\n... used 8.9168548583984E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',232522),(292,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619630161.7661000000,1619630161.7673000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 18:16:01. Current memory use 35.3MB.\n... used 0 dbqueries\n... used 8.8930130004883E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',232522),(293,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619630161.7784000000,1619630161.7850000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 18:16:01. Current memory use 35.3MB.\n... used 0 dbqueries\n... used 0.0054609775543213 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',232522),(294,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619630161.8011000000,1619630161.8025000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 18:16:01. Current memory use 35.8MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00057387351989746 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',232522),(295,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619630161.8126000000,1619630161.8135000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 18:16:01. Current memory use 35.8MB.\n... used 0 dbqueries\n... used 8.4877014160156E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',232522),(296,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619630161.8227000000,1619630161.8239000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 18:16:01. Current memory use 35.8MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.0001380443572998 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',232522),(297,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619630161.8324000000,1619630161.8336000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 18:16:01. Current memory use 35.8MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016903877258301 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',232522),(298,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619630161.8427000000,1619630161.8448000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 18:16:01. Current memory use 35.9MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.00098299980163574 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',232522),(299,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619630161.8572000000,1619630161.8583000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 18:16:01. Current memory use 35.9MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00015401840209961 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',232522),(300,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619630161.8665000000,1619630161.8732000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 18:16:01. Current memory use 35.9MB.\n\n0 feeds refreshed (took 0.00032299999999996 seconds)\n... used 1 dbqueries\n... used 0.0056891441345215 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',232522),(301,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619630161.8816000000,1619630161.8844000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 18:16:01. Current memory use 36.6MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014069080352783 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',232522),(302,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619630161.8927000000,1619630161.8943000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 18:16:01. Current memory use 36.5MB.\n... used 0 dbqueries\n... used 0.00031709671020508 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',232522),(303,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619630161.9078000000,1619630161.9090000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 18:16:01. Current memory use 36.5MB.\n... used 1 dbqueries\n... used 0.00026106834411621 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',232522),(304,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619630161.9193000000,1619630161.9203000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 18:16:01. Current memory use 36.6MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00039911270141602 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',232522),(305,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619630161.9342000000,1619630161.9353000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 18:16:01. Current memory use 36.6MB.\n... used 1 dbqueries\n... used 0.00036096572875977 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',232522),(306,0,'moodle','core\\task\\context_cleanup_task',0,1619631062.1413000000,1619631062.1516000000,9,1,0,'Execute scheduled task: Cleanup contexts (core\\task\\context_cleanup_task)\n... started 18:31:02. Current memory use 16MB.\n Cleaned up context instances\n... used 10 dbqueries\n... used 0.0072290897369385 seconds\nScheduled task complete: Cleanup contexts (core\\task\\context_cleanup_task)\n','dev-defaults.derekmaxson.com',235273),(307,0,'moodle','core\\task\\cache_cleanup_task',0,1619631062.1600000000,1619631062.1608000000,0,1,0,'Execute scheduled task: Remove expired cache entries (core\\task\\cache_cleanup_task)\n... started 18:31:02. Current memory use 17MB.\n... used 1 dbqueries\n... used 0.00021505355834961 seconds\nScheduled task complete: Remove expired cache entries (core\\task\\cache_cleanup_task)\n','dev-defaults.derekmaxson.com',235273),(308,0,'moodle','core\\task\\sync_plans_from_template_cohorts_task',0,1619631062.1685000000,1619631062.1770000000,1,0,0,'Execute scheduled task: Sync plans from learning plan template cohorts (core\\task\\sync_plans_from_template_cohorts_task)\n... started 18:31:02. Current memory use 17.1MB.\n... used 1 dbqueries\n... used 0.0076630115509033 seconds\nScheduled task complete: Sync plans from learning plan template cohorts (core\\task\\sync_plans_from_template_cohorts_task)\n','dev-defaults.derekmaxson.com',235273),(309,0,'moodle','core\\oauth2\\refresh_system_tokens_task',0,1619631062.1872000000,1619631062.2017000000,1,0,0,'Execute scheduled task: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n... started 18:31:02. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.013787031173706 seconds\nScheduled task complete: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n','dev-defaults.derekmaxson.com',235273),(310,0,'moodle','core\\task\\search_index_task',0,1619631062.2113000000,1619631062.2138000000,0,0,0,'Execute scheduled task: Global search indexing (core\\task\\search_index_task)\n... started 18:31:02. Current memory use 19.6MB.\n... used 0 dbqueries\n... used 0.0018570423126221 seconds\nScheduled task complete: Global search indexing (core\\task\\search_index_task)\n','dev-defaults.derekmaxson.com',235273),(311,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_course_bin',0,1619631062.2236000000,1619631062.2249000000,1,0,0,'Execute scheduled task: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n... started 18:31:02. Current memory use 19.6MB.\n... used 1 dbqueries\n... used 0.00078511238098145 seconds\nScheduled task complete: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n','dev-defaults.derekmaxson.com',235273),(312,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_category_bin',0,1619631062.2323000000,1619631062.2336000000,1,0,0,'Execute scheduled task: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n... started 18:31:02. Current memory use 19.6MB.\n... used 1 dbqueries\n... used 0.00073909759521484 seconds\nScheduled task complete: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n','dev-defaults.derekmaxson.com',235273),(313,0,'moodle','core\\task\\session_cleanup_task',0,1619631062.2415000000,1619631062.2489000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 18:31:02. Current memory use 19.9MB.\n... used 7 dbqueries\n... used 0.0058279037475586 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',235273),(314,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619631062.2586000000,1619631062.2596000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 18:31:02. Current memory use 20.2MB.\n... used 1 dbqueries\n... used 0.00032711029052734 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',235273),(315,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619631062.2676000000,1619631062.2683000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 18:31:02. Current memory use 20.2MB.\n... used 0 dbqueries\n... used 3.9100646972656E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',235273),(316,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619631062.2763000000,1619631062.3062000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 18:31:02. Current memory use 20.2MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.029345035552979 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',235273),(317,0,'moodle','core\\task\\grade_cron_task',0,1619631062.3142000000,1619631062.3157000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 18:31:02. Current memory use 23.6MB.\n... used 2 dbqueries\n... used 0.00083494186401367 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',235273),(318,0,'moodle','core\\task\\completion_regular_task',0,1619631062.3254000000,1619631062.3324000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 18:31:02. Current memory use 23.7MB.\n... used 6 dbqueries\n... used 0.0063679218292236 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',235273),(319,0,'moodle','core\\task\\portfolio_cron_task',0,1619631062.3397000000,1619631062.3403000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 18:31:02. Current memory use 24.1MB.\n... used 0 dbqueries\n... used 3.4093856811523E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',235273),(320,0,'moodle','core\\task\\plagiarism_cron_task',0,1619631062.3514000000,1619631062.3521000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 18:31:02. Current memory use 24.1MB.\n... used 0 dbqueries\n... used 3.4809112548828E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',235273),(321,0,'moodle','core\\task\\calendar_cron_task',0,1619631062.3645000000,1619631062.3683000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 18:31:02. Current memory use 24.6MB.\n... used 1 dbqueries\n... used 0.0032129287719727 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',235273),(322,0,'moodle','core\\task\\blog_cron_task',0,1619631062.3762000000,1619631062.3802000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 18:31:02. Current memory use 25MB.\n... used 2 dbqueries\n... used 0.0034139156341553 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',235273),(323,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619631062.3876000000,1619631062.4007000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 18:31:02. Current memory use 25.2MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.012427091598511 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',235273),(324,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619631062.4085000000,1619631062.4097000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 18:31:02. Current memory use 28.2MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00063085556030273 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',235273),(325,0,'moodle','core\\task\\badges_cron_task',0,1619631062.4190000000,1619631062.4228000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 18:31:02. Current memory use 28.2MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0032660961151123 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',235273),(326,0,'moodle','core\\task\\badges_message_task',0,1619631062.4305000000,1619631062.4315000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 18:31:02. Current memory use 28.5MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00034189224243164 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',235273),(327,0,'mod_assign','mod_assign\\task\\cron_task',0,1619631062.4450000000,1619631062.4713000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 18:31:02. Current memory use 29.4MB.\n... used 3 dbqueries\n... used 0.025497913360596 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',235273),(328,0,'mod_chat','mod_chat\\task\\cron_task',0,1619631062.4790000000,1619631062.4827000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 18:31:02. Current memory use 32.1MB.\n... used 4 dbqueries\n... used 0.0029270648956299 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',235273),(329,0,'mod_forum','mod_forum\\task\\cron_task',0,1619631062.5042000000,1619631062.5057000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 18:31:02. Current memory use 33.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00072312355041504 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',235273),(330,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619631062.5223000000,1619631062.5251000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 18:31:02. Current memory use 34.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0020220279693604 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',235273),(331,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619631062.5329000000,1619631062.5338000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 18:31:02. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 8.702278137207E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',235273),(332,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619631062.5412000000,1619631062.5421000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 18:31:02. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 8.2015991210938E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',235273),(333,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619631062.5524000000,1619631062.5581000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 18:31:02. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 0.0049259662628174 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',235273),(334,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619631062.5656000000,1619631062.5666000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 18:31:02. Current memory use 35MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00032401084899902 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',235273),(335,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619631062.5735000000,1619631062.5741000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 18:31:02. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 7.8201293945312E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',235273),(336,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619631062.5841000000,1619631062.5861000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 18:31:02. Current memory use 35.1MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.0003969669342041 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',235273),(337,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619631062.5940000000,1619631062.5950000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 18:31:02. Current memory use 35.1MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016283988952637 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',235273),(338,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619631062.6068000000,1619631062.6094000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 18:31:02. Current memory use 35.1MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0011792182922363 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',235273),(339,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619631062.6170000000,1619631062.6180000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 18:31:02. Current memory use 35.1MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00015711784362793 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',235273),(340,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619631062.6287000000,1619631062.6349000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 18:31:02. Current memory use 34.2MB.\n\n0 feeds refreshed (took 0.000336 seconds)\n... used 1 dbqueries\n... used 0.0056138038635254 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',235273),(341,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619631062.6464000000,1619631062.6484000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 18:31:02. Current memory use 34.9MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0013899803161621 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',235273),(342,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619631062.6576000000,1619631062.6582000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 18:31:02. Current memory use 35MB.\n... used 0 dbqueries\n... used 8.2969665527344E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',235273),(343,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619631062.6667000000,1619631062.6676000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 18:31:02. Current memory use 35.1MB.\n... used 1 dbqueries\n... used 0.00025701522827148 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',235273),(344,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619631062.6771000000,1619631062.6781000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 18:31:02. Current memory use 35.1MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00038409233093262 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',235273),(345,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619631062.6853000000,1619631062.6862000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 18:31:02. Current memory use 35.2MB.\n... used 1 dbqueries\n... used 0.00036501884460449 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',235273),(346,0,'moodle','core\\task\\messaging_cleanup_task',0,1619631961.8770000000,1619631961.8895000000,1,4,0,'Execute scheduled task: Background processing for messaging (core\\task\\messaging_cleanup_task)\n... started 18:46:01. Current memory use 16MB.\n... used 5 dbqueries\n... used 0.0093109607696533 seconds\nScheduled task complete: Background processing for messaging (core\\task\\messaging_cleanup_task)\n','dev-defaults.derekmaxson.com',238038),(347,0,'moodle','core\\task\\analytics_cleanup_task',0,1619631961.8990000000,1619631961.9574000000,20,3,0,'Execute scheduled task: Analytics cleanup (core\\task\\analytics_cleanup_task)\n... started 18:46:01. Current memory use 17.4MB.\n... used 23 dbqueries\n... used 0.057687044143677 seconds\nScheduled task complete: Analytics cleanup (core\\task\\analytics_cleanup_task)\n','dev-defaults.derekmaxson.com',238038),(348,0,'moodle','core\\task\\session_cleanup_task',0,1619631961.9719000000,1619631961.9772000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 18:46:01. Current memory use 23.1MB.\n... used 7 dbqueries\n... used 0.004673957824707 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',238038),(349,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619631961.9862000000,1619631961.9873000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 18:46:01. Current memory use 23.3MB.\n... used 1 dbqueries\n... used 0.00031495094299316 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',238038),(350,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619631961.9968000000,1619631961.9975000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 18:46:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 3.3855438232422E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',238038),(351,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619631962.0076000000,1619631962.0308000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 18:46:02. Current memory use 23.5MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.022558212280273 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',238038),(352,0,'moodle','core\\task\\grade_cron_task',0,1619631962.0443000000,1619631962.0459000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 18:46:02. Current memory use 26MB.\n... used 2 dbqueries\n... used 0.00089597702026367 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',238038),(353,0,'moodle','core\\task\\completion_regular_task',0,1619631962.0561000000,1619631962.0610000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 18:46:02. Current memory use 26.1MB.\n... used 6 dbqueries\n... used 0.0044550895690918 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',238038),(354,0,'moodle','core\\task\\portfolio_cron_task',0,1619631962.0706000000,1619631962.0712000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 18:46:02. Current memory use 26.2MB.\n... used 0 dbqueries\n... used 3.0040740966797E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',238038),(355,0,'moodle','core\\task\\plagiarism_cron_task',0,1619631962.0847000000,1619631962.0852000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 18:46:02. Current memory use 26.3MB.\n... used 0 dbqueries\n... used 2.8133392333984E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',238038),(356,0,'moodle','core\\task\\calendar_cron_task',0,1619631962.0941000000,1619631962.0977000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 18:46:02. Current memory use 26.3MB.\n... used 1 dbqueries\n... used 0.0031709671020508 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',238038),(357,0,'moodle','core\\task\\blog_cron_task',0,1619631962.1078000000,1619631962.1110000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 18:46:02. Current memory use 26.7MB.\n... used 2 dbqueries\n... used 0.0027308464050293 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',238038),(358,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619631962.1201000000,1619631962.1320000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 18:46:02. Current memory use 26.9MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.011454105377197 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',238038),(359,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619631962.1455000000,1619631962.1468000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 18:46:02. Current memory use 28.6MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00067400932312012 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',238038),(360,0,'moodle','core\\task\\badges_cron_task',0,1619631962.1559000000,1619631962.1605000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 18:46:02. Current memory use 28.6MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0040960311889648 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',238038),(361,0,'moodle','core\\task\\badges_message_task',0,1619631962.1704000000,1619631962.1713000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 18:46:02. Current memory use 30.1MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00025200843811035 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',238038),(362,0,'mod_assign','mod_assign\\task\\cron_task',0,1619631962.1846000000,1619631962.2099000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 18:46:02. Current memory use 31.2MB.\n... used 3 dbqueries\n... used 0.024679183959961 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',238038),(363,0,'mod_chat','mod_chat\\task\\cron_task',0,1619631962.2223000000,1619631962.2258000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 18:46:02. Current memory use 34MB.\n... used 4 dbqueries\n... used 0.0027318000793457 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',238038),(364,0,'mod_forum','mod_forum\\task\\cron_task',0,1619631962.2423000000,1619631962.2437000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 18:46:02. Current memory use 35.2MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00064396858215332 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',238038),(365,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619631962.2597000000,1619631962.2623000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 18:46:02. Current memory use 36.3MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.00193190574646 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',238038),(366,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619631962.2713000000,1619631962.2721000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 18:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 7.8916549682617E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',238038),(367,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619631962.2805000000,1619631962.2813000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 18:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 7.7962875366211E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',238038),(368,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619631962.2918000000,1619631962.2976000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 18:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 0.0052490234375 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',238038),(369,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619631962.3112000000,1619631962.3123000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 18:46:02. Current memory use 36.9MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.0003209114074707 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',238038),(370,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619631962.3194000000,1619631962.3200000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 18:46:02. Current memory use 36.9MB.\n... used 0 dbqueries\n... used 7.2956085205078E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',238038),(371,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619631962.3281000000,1619631962.3298000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 18:46:02. Current memory use 36.9MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00038504600524902 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',238038),(372,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619631962.3405000000,1619631962.3414000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 18:46:02. Current memory use 36.9MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016617774963379 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',238038),(373,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619631962.3496000000,1619631962.3522000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 18:46:02. Current memory use 36.9MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0011589527130127 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',238038),(374,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619631962.3636000000,1619631962.3645000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 18:46:02. Current memory use 36.9MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00014781951904297 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',238038),(375,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619631962.3770000000,1619631962.3832000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 18:46:02. Current memory use 35.7MB.\n\n0 feeds refreshed (took 0.00024600000000002 seconds)\n... used 1 dbqueries\n... used 0.0057978630065918 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',238038),(376,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619631962.3925000000,1619631962.3942000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 18:46:02. Current memory use 36.8MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0012428760528564 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',238038),(377,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619631962.4014000000,1619631962.4019000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 18:46:02. Current memory use 36.9MB.\n... used 0 dbqueries\n... used 8.0108642578125E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',238038),(378,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619631962.4098000000,1619631962.4104000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 18:46:02. Current memory use 37MB.\n... used 1 dbqueries\n... used 0.00023007392883301 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',238038),(379,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619631962.4184000000,1619631962.4191000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 18:46:02. Current memory use 37MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.0003669261932373 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',238038),(380,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619631962.4289000000,1619631962.4298000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 18:46:02. Current memory use 37MB.\n... used 1 dbqueries\n... used 0.00035309791564941 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',238038),(381,0,'moodle','core\\task\\password_reset_cleanup_task',0,1619632861.6054000000,1619632861.6132000000,0,1,0,'Execute scheduled task: Cleanup password reset attempts (core\\task\\password_reset_cleanup_task)\n... started 19:01:01. Current memory use 15.2MB.\n Cleaned up old password reset records\n... used 1 dbqueries\n... used 0.0040559768676758 seconds\nScheduled task complete: Cleanup password reset attempts (core\\task\\password_reset_cleanup_task)\n','dev-defaults.derekmaxson.com',240782),(382,0,'moodle','core\\task\\delete_unconfirmed_users_task',0,1619632861.6359000000,1619632861.6376000000,1,0,0,'Execute scheduled task: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n... started 19:01:01. Current memory use 16.6MB.\n... used 1 dbqueries\n... used 0.00045514106750488 seconds\nScheduled task complete: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n','dev-defaults.derekmaxson.com',240782),(383,0,'moodle','core\\task\\cache_cron_task',0,1619632861.6454000000,1619632861.6463000000,0,0,0,'Execute scheduled task: Background processing for caches (core\\task\\cache_cron_task)\n... started 19:01:01. Current memory use 16.7MB.\nCleaning up stale session data from cache stores.\n... used 0 dbqueries\n... used 0.00026702880859375 seconds\nScheduled task complete: Background processing for caches (core\\task\\cache_cron_task)\n','dev-defaults.derekmaxson.com',240782),(384,0,'moodle','core\\task\\automated_backup_task',0,1619632861.6565000000,1619632861.8005000000,0,0,0,'Execute scheduled task: Automated backups (core\\task\\automated_backup_task)\n... started 19:01:01. Current memory use 16.7MB.\nChecking automated backup status...INACTIVE\n... used 0 dbqueries\n... used 0.1433961391449 seconds\nScheduled task complete: Automated backups (core\\task\\automated_backup_task)\n','dev-defaults.derekmaxson.com',240782),(385,0,'moodle','core\\task\\search_index_task',0,1619632861.8095000000,1619632861.8122000000,0,0,0,'Execute scheduled task: Global search indexing (core\\task\\search_index_task)\n... started 19:01:01. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 0.0020549297332764 seconds\nScheduled task complete: Global search indexing (core\\task\\search_index_task)\n','dev-defaults.derekmaxson.com',240782),(386,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_course_bin',0,1619632861.8250000000,1619632861.8265000000,1,0,0,'Execute scheduled task: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n... started 19:01:01. Current memory use 36.6MB.\n... used 1 dbqueries\n... used 0.00091910362243652 seconds\nScheduled task complete: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n','dev-defaults.derekmaxson.com',240782),(387,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_category_bin',0,1619632861.8352000000,1619632861.8366000000,1,0,0,'Execute scheduled task: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n... started 19:01:01. Current memory use 36.6MB.\n... used 1 dbqueries\n... used 0.00074315071105957 seconds\nScheduled task complete: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n','dev-defaults.derekmaxson.com',240782),(388,0,'moodle','core\\task\\session_cleanup_task',0,1619632861.8446000000,1619632861.8507000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 19:01:01. Current memory use 36.9MB.\n... used 7 dbqueries\n... used 0.0046248435974121 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',240782),(389,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619632861.8624000000,1619632861.8634000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 19:01:01. Current memory use 37.2MB.\n... used 1 dbqueries\n... used 0.0003049373626709 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',240782),(390,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619632861.8732000000,1619632861.8739000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 19:01:01. Current memory use 37.2MB.\n... used 0 dbqueries\n... used 3.9100646972656E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',240782),(391,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619632861.8828000000,1619632861.8971000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 19:01:01. Current memory use 37.3MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.0136399269104 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',240782),(392,0,'moodle','core\\task\\grade_cron_task',0,1619632861.9076000000,1619632861.9092000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 19:01:01. Current memory use 38.7MB.\n... used 2 dbqueries\n... used 0.00090503692626953 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',240782),(393,0,'moodle','core\\task\\completion_regular_task',0,1619632861.9178000000,1619632861.9235000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 19:01:01. Current memory use 38.7MB.\n... used 6 dbqueries\n... used 0.0049488544464111 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',240782),(394,0,'moodle','core\\task\\portfolio_cron_task',0,1619632861.9318000000,1619632861.9325000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 19:01:01. Current memory use 39MB.\n... used 0 dbqueries\n... used 3.3855438232422E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',240782),(395,0,'moodle','core\\task\\plagiarism_cron_task',0,1619632861.9407000000,1619632861.9413000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 19:01:01. Current memory use 39MB.\n... used 0 dbqueries\n... used 3.6001205444336E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',240782),(396,0,'moodle','core\\task\\calendar_cron_task',0,1619632861.9496000000,1619632861.9537000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 19:01:01. Current memory use 39MB.\n... used 1 dbqueries\n... used 0.0033500194549561 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',240782),(397,0,'moodle','core\\task\\blog_cron_task',0,1619632861.9643000000,1619632861.9687000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 19:01:01. Current memory use 39.4MB.\n... used 2 dbqueries\n... used 0.0037519931793213 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',240782),(398,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619632861.9765000000,1619632861.9781000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 19:01:01. Current memory use 39.6MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.0009920597076416 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',240782),(399,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619632861.9860000000,1619632861.9874000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 19:01:01. Current memory use 39.6MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00076794624328613 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',240782),(400,0,'moodle','core\\task\\badges_cron_task',0,1619632861.9960000000,1619632862.0002000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 19:01:01. Current memory use 39.6MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0035839080810547 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',240782),(401,0,'moodle','core\\task\\badges_message_task',0,1619632862.0141000000,1619632862.0152000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 19:01:02. Current memory use 39.9MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00035190582275391 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',240782),(402,0,'mod_assign','mod_assign\\task\\cron_task',0,1619632862.0310000000,1619632862.0396000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 19:01:02. Current memory use 40.8MB.\n... used 3 dbqueries\n... used 0.0078001022338867 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',240782),(403,0,'mod_chat','mod_chat\\task\\cron_task',0,1619632862.0482000000,1619632862.0500000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 19:01:02. Current memory use 41.4MB.\n... used 4 dbqueries\n... used 0.00099515914916992 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',240782),(404,0,'mod_forum','mod_forum\\task\\cron_task',0,1619632862.0583000000,1619632862.0597000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 19:01:02. Current memory use 41.5MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00066304206848145 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',240782),(405,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619632862.0736000000,1619632862.0764000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 19:01:02. Current memory use 42.3MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0019750595092773 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',240782),(406,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619632862.0836000000,1619632862.0844000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 19:01:02. Current memory use 42.4MB.\n... used 0 dbqueries\n... used 7.6055526733398E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',240782),(407,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619632862.0955000000,1619632862.0962000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 19:01:02. Current memory use 42.4MB.\n... used 0 dbqueries\n... used 7.2002410888672E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',240782),(408,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619632862.1031000000,1619632862.1069000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 19:01:02. Current memory use 42.4MB.\n... used 0 dbqueries\n... used 0.00319504737854 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',240782),(409,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619632862.1172000000,1619632862.1184000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 19:01:02. Current memory use 42.7MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00041890144348145 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',240782),(410,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619632862.1262000000,1619632862.1269000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 19:01:02. Current memory use 42.7MB.\n... used 0 dbqueries\n... used 7.5101852416992E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',240782),(411,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619632862.1344000000,1619632862.1360000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 19:01:02. Current memory use 42.7MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00035619735717773 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',240782),(412,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619632862.1463000000,1619632862.1470000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 19:01:02. Current memory use 42.7MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00014495849609375 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',240782),(413,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619632862.1545000000,1619632862.1566000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 19:01:02. Current memory use 42.7MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0010819435119629 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',240782),(414,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619632862.1640000000,1619632862.1648000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 19:01:02. Current memory use 42.7MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00012898445129395 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',240782),(415,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619632862.1749000000,1619632862.1812000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 19:01:02. Current memory use 41.8MB.\n\n0 feeds refreshed (took 0.00026699999999999 seconds)\n... used 1 dbqueries\n... used 0.0057470798492432 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',240782),(416,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619632862.1902000000,1619632862.1920000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 19:01:02. Current memory use 42.5MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0013220310211182 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',240782),(417,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619632862.1994000000,1619632862.2000000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 19:01:02. Current memory use 42.7MB.\n... used 0 dbqueries\n... used 7.9154968261719E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',240782),(418,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619632862.2129000000,1619632862.2137000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 19:01:02. Current memory use 42.7MB.\n... used 1 dbqueries\n... used 0.00023412704467773 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',240782),(419,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619632862.2208000000,1619632862.2215000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 19:01:02. Current memory use 42.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00034499168395996 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',240782),(420,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619632862.2289000000,1619632862.2297000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 19:01:02. Current memory use 42.8MB.\n... used 1 dbqueries\n... used 0.00035190582275391 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',240782),(421,0,'moodle','core\\task\\delete_incomplete_users_task',0,1619633761.4294000000,1619633761.4364000000,0,0,0,'Execute scheduled task: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n... started 19:16:01. Current memory use 16MB.\n... used 0 dbqueries\n... used 0.0037319660186768 seconds\nScheduled task complete: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n','dev-defaults.derekmaxson.com',243565),(422,0,'moodle','core\\task\\backup_cleanup_task',0,1619633761.4521000000,1619633761.4533000000,1,0,0,'Execute scheduled task: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n... started 19:16:01. Current memory use 16.9MB.\n... used 1 dbqueries\n... used 0.00049304962158203 seconds\nScheduled task complete: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n','dev-defaults.derekmaxson.com',243565),(423,0,'moodle','core\\task\\complete_plans_task',0,1619633761.4644000000,1619633761.4715000000,1,0,0,'Execute scheduled task: Complete learning plans which are due (core\\task\\complete_plans_task)\n... started 19:16:01. Current memory use 17MB.\n... used 1 dbqueries\n... used 0.0062651634216309 seconds\nScheduled task complete: Complete learning plans which are due (core\\task\\complete_plans_task)\n','dev-defaults.derekmaxson.com',243565),(424,0,'qtype_random','qtype_random\\task\\remove_unused_questions',0,1619633761.4829000000,1619633761.5070000000,1,0,0,'Execute scheduled task: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n... started 19:16:01. Current memory use 17.9MB.\nCleaned up 0 unused random questions.\n... used 1 dbqueries\n... used 0.023440837860107 seconds\nScheduled task complete: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n','dev-defaults.derekmaxson.com',243565),(425,0,'enrol_flatfile','enrol_flatfile\\task\\flatfile_sync_task',0,1619633761.5181000000,1619633761.5217000000,2,0,0,'Execute scheduled task: Flat file enrolment sync (enrol_flatfile\\task\\flatfile_sync_task)\n... started 19:16:01. Current memory use 21.1MB.\n... used 2 dbqueries\n... used 0.0022060871124268 seconds\nScheduled task complete: Flat file enrolment sync (enrol_flatfile\\task\\flatfile_sync_task)\n','dev-defaults.derekmaxson.com',243565),(426,0,'tool_cohortroles','tool_cohortroles\\task\\cohort_role_sync',0,1619633761.5457000000,1619633761.5511000000,3,1,0,'Execute scheduled task: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n... started 19:16:01. Current memory use 20.9MB.\nSync cohort roles...\nAdded 0\nRemoved 0\n... used 4 dbqueries\n... used 0.0046792030334473 seconds\nScheduled task complete: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n','dev-defaults.derekmaxson.com',243565),(427,0,'moodle','core\\task\\session_cleanup_task',0,1619633761.5611000000,1619633761.5672000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 19:16:01. Current memory use 21.6MB.\n... used 7 dbqueries\n... used 0.00453782081604 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',243565),(428,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619633761.5766000000,1619633761.5778000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 19:16:01. Current memory use 21.9MB.\n... used 1 dbqueries\n... used 0.00037288665771484 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',243565),(429,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619633761.5891000000,1619633761.5898000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 19:16:01. Current memory use 22MB.\n... used 0 dbqueries\n... used 3.4093856811523E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',243565),(430,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619633761.5982000000,1619633761.6288000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 19:16:01. Current memory use 22MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.029860973358154 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',243565),(431,0,'moodle','core\\task\\grade_cron_task',0,1619633761.6379000000,1619633761.6397000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 19:16:01. Current memory use 25.3MB.\n... used 2 dbqueries\n... used 0.00094485282897949 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',243565),(432,0,'moodle','core\\task\\completion_regular_task',0,1619633761.6504000000,1619633761.6579000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 19:16:01. Current memory use 25.3MB.\n... used 6 dbqueries\n... used 0.0067880153656006 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',243565),(433,0,'moodle','core\\task\\portfolio_cron_task',0,1619633761.6662000000,1619633761.6669000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 19:16:01. Current memory use 25.7MB.\n... used 0 dbqueries\n... used 3.6001205444336E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',243565),(434,0,'moodle','core\\task\\plagiarism_cron_task',0,1619633761.6746000000,1619633761.6753000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 19:16:01. Current memory use 25.7MB.\n... used 0 dbqueries\n... used 3.4809112548828E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',243565),(435,0,'moodle','core\\task\\calendar_cron_task',0,1619633761.6952000000,1619633761.6991000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 19:16:01. Current memory use 26.2MB.\n... used 1 dbqueries\n... used 0.0032129287719727 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',243565),(436,0,'moodle','core\\task\\blog_cron_task',0,1619633761.7068000000,1619633761.7112000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 19:16:01. Current memory use 26.6MB.\n... used 2 dbqueries\n... used 0.0037741661071777 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',243565),(437,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619633761.7186000000,1619633761.7202000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 19:16:01. Current memory use 28.1MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.0009300708770752 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',243565),(438,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619633761.7302000000,1619633761.7316000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 19:16:01. Current memory use 28.1MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00065207481384277 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',243565),(439,0,'moodle','core\\task\\badges_cron_task',0,1619633761.7425000000,1619633761.7466000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 19:16:01. Current memory use 28.1MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0034089088439941 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',243565),(440,0,'moodle','core\\task\\badges_message_task',0,1619633761.7547000000,1619633761.7557000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 19:16:01. Current memory use 28.5MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.0003199577331543 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',243565),(441,0,'mod_assign','mod_assign\\task\\cron_task',0,1619633761.7698000000,1619633761.7970000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 19:16:01. Current memory use 29.4MB.\n... used 3 dbqueries\n... used 0.026336193084717 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',243565),(442,0,'mod_chat','mod_chat\\task\\cron_task',0,1619633761.8070000000,1619633761.8111000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 19:16:01. Current memory use 32.2MB.\n... used 4 dbqueries\n... used 0.0030608177185059 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',243565),(443,0,'mod_forum','mod_forum\\task\\cron_task',0,1619633761.8335000000,1619633761.8350000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 19:16:01. Current memory use 33.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00069403648376465 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',243565),(444,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619633761.8528000000,1619633761.8555000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 19:16:01. Current memory use 34.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0020020008087158 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',243565),(445,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619633761.8665000000,1619633761.8677000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 19:16:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 8.702278137207E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',243565),(446,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619633761.8784000000,1619633761.8795000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 19:16:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 8.392333984375E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',243565),(447,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619633761.8946000000,1619633761.9009000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 19:16:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 0.0052769184112549 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',243565),(448,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619633761.9098000000,1619633761.9110000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 19:16:01. Current memory use 35.1MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.0004279613494873 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',243565),(449,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619633761.9218000000,1619633761.9227000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 19:16:01. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',243565),(450,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619633761.9344000000,1619633761.9365000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 19:16:01. Current memory use 35.1MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.0003960132598877 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',243565),(451,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619633761.9454000000,1619633761.9465000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 19:16:01. Current memory use 35.1MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00015997886657715 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',243565),(452,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619633761.9551000000,1619633761.9580000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 19:16:01. Current memory use 35.1MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0012459754943848 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',243565),(453,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619633761.9667000000,1619633761.9678000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 19:16:01. Current memory use 35.1MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00015020370483398 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',243565),(454,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619633761.9825000000,1619633761.9894000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 19:16:01. Current memory use 34.1MB.\n\n0 feeds refreshed (took 0.00033699999999992 seconds)\n... used 1 dbqueries\n... used 0.006072998046875 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',243565),(455,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619633761.9984000000,1619633762.0005000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 19:16:01. Current memory use 34.9MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0015079975128174 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',243565),(456,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619633762.0095000000,1619633762.0102000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 19:16:02. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 8.6069107055664E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',243565),(457,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619633762.0207000000,1619633762.0218000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 19:16:02. Current memory use 35.1MB.\n... used 1 dbqueries\n... used 0.00027799606323242 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',243565),(458,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619633762.0300000000,1619633762.0310000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 19:16:02. Current memory use 35.1MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00041103363037109 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',243565),(459,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619633762.0391000000,1619633762.0401000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 19:16:02. Current memory use 35.2MB.\n... used 1 dbqueries\n... used 0.00040602684020996 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',243565),(460,0,'moodle','core\\task\\context_cleanup_task',0,1619634661.3163000000,1619634661.3264000000,9,1,0,'Execute scheduled task: Cleanup contexts (core\\task\\context_cleanup_task)\n... started 19:31:01. Current memory use 16MB.\n Cleaned up context instances\n... used 10 dbqueries\n... used 0.0071179866790771 seconds\nScheduled task complete: Cleanup contexts (core\\task\\context_cleanup_task)\n','dev-defaults.derekmaxson.com',246322),(461,0,'moodle','core\\task\\cache_cleanup_task',0,1619634661.3338000000,1619634661.3346000000,0,1,0,'Execute scheduled task: Remove expired cache entries (core\\task\\cache_cleanup_task)\n... started 19:31:01. Current memory use 17MB.\n... used 1 dbqueries\n... used 0.00025486946105957 seconds\nScheduled task complete: Remove expired cache entries (core\\task\\cache_cleanup_task)\n','dev-defaults.derekmaxson.com',246322),(462,0,'moodle','core\\task\\sync_plans_from_template_cohorts_task',0,1619634661.3443000000,1619634661.3520000000,1,0,0,'Execute scheduled task: Sync plans from learning plan template cohorts (core\\task\\sync_plans_from_template_cohorts_task)\n... started 19:31:01. Current memory use 17.1MB.\n... used 1 dbqueries\n... used 0.0071589946746826 seconds\nScheduled task complete: Sync plans from learning plan template cohorts (core\\task\\sync_plans_from_template_cohorts_task)\n','dev-defaults.derekmaxson.com',246322),(463,0,'moodle','core\\oauth2\\refresh_system_tokens_task',0,1619634661.3595000000,1619634661.3727000000,1,0,0,'Execute scheduled task: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n... started 19:31:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.012621164321899 seconds\nScheduled task complete: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n','dev-defaults.derekmaxson.com',246322),(464,0,'moodle','core\\task\\search_index_task',0,1619634661.3825000000,1619634661.3846000000,0,0,0,'Execute scheduled task: Global search indexing (core\\task\\search_index_task)\n... started 19:31:01. Current memory use 19.6MB.\n... used 0 dbqueries\n... used 0.0015749931335449 seconds\nScheduled task complete: Global search indexing (core\\task\\search_index_task)\n','dev-defaults.derekmaxson.com',246322),(465,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_course_bin',0,1619634661.3944000000,1619634661.3955000000,1,0,0,'Execute scheduled task: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n... started 19:31:01. Current memory use 19.6MB.\n... used 1 dbqueries\n... used 0.00071001052856445 seconds\nScheduled task complete: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n','dev-defaults.derekmaxson.com',246322),(466,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_category_bin',0,1619634661.4027000000,1619634661.4038000000,1,0,0,'Execute scheduled task: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n... started 19:31:01. Current memory use 19.6MB.\n... used 1 dbqueries\n... used 0.00064182281494141 seconds\nScheduled task complete: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n','dev-defaults.derekmaxson.com',246322),(467,0,'moodle','core\\task\\session_cleanup_task',0,1619634661.4129000000,1619634661.4195000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 19:31:01. Current memory use 19.9MB.\n... used 7 dbqueries\n... used 0.0054728984832764 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',246322),(468,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619634661.4265000000,1619634661.4273000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 19:31:01. Current memory use 20.2MB.\n... used 1 dbqueries\n... used 0.00029492378234863 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',246322),(469,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619634661.4341000000,1619634661.4345000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 19:31:01. Current memory use 20.2MB.\n... used 0 dbqueries\n... used 2.0980834960938E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',246322),(470,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619634661.4418000000,1619634661.4704000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 19:31:01. Current memory use 20.2MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.028185129165649 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',246322),(471,0,'moodle','core\\task\\grade_cron_task',0,1619634661.4820000000,1619634661.4835000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 19:31:01. Current memory use 23.6MB.\n... used 2 dbqueries\n... used 0.00085687637329102 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',246322),(472,0,'moodle','core\\task\\completion_regular_task',0,1619634661.4904000000,1619634661.4967000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 19:31:01. Current memory use 23.7MB.\n... used 6 dbqueries\n... used 0.0058870315551758 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',246322),(473,0,'moodle','core\\task\\portfolio_cron_task',0,1619634661.5035000000,1619634661.5039000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 19:31:01. Current memory use 24.1MB.\n... used 0 dbqueries\n... used 2.0980834960938E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',246322),(474,0,'moodle','core\\task\\plagiarism_cron_task',0,1619634661.5116000000,1619634661.5120000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 19:31:01. Current memory use 24.1MB.\n... used 0 dbqueries\n... used 2.0980834960938E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',246322),(475,0,'moodle','core\\task\\calendar_cron_task',0,1619634661.5280000000,1619634661.5315000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 19:31:01. Current memory use 24.6MB.\n... used 1 dbqueries\n... used 0.0030210018157959 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',246322),(476,0,'moodle','core\\task\\blog_cron_task',0,1619634661.5383000000,1619634661.5418000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 19:31:01. Current memory use 25MB.\n... used 2 dbqueries\n... used 0.003140926361084 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',246322),(477,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619634661.5488000000,1619634661.5605000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 19:31:01. Current memory use 25.2MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.011299133300781 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',246322),(478,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619634661.5698000000,1619634661.5710000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 19:31:01. Current memory use 28.2MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00061202049255371 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',246322),(479,0,'moodle','core\\task\\badges_cron_task',0,1619634661.5785000000,1619634661.5821000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 19:31:01. Current memory use 28.2MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0032060146331787 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',246322),(480,0,'moodle','core\\task\\badges_message_task',0,1619634661.5897000000,1619634661.5905000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 19:31:01. Current memory use 28.5MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00029993057250977 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',246322),(481,0,'mod_assign','mod_assign\\task\\cron_task',0,1619634661.6056000000,1619634661.6309000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 19:31:01. Current memory use 29.4MB.\n... used 3 dbqueries\n... used 0.024749040603638 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',246322),(482,0,'mod_chat','mod_chat\\task\\cron_task',0,1619634661.6385000000,1619634661.6417000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 19:31:01. Current memory use 32.1MB.\n... used 4 dbqueries\n... used 0.0024600028991699 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',246322),(483,0,'mod_forum','mod_forum\\task\\cron_task',0,1619634661.6568000000,1619634661.6579000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 19:31:01. Current memory use 33.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0005500316619873 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',246322),(484,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619634661.6731000000,1619634661.6758000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 19:31:01. Current memory use 34.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0019600391387939 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',246322),(485,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619634661.6827000000,1619634661.6834000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 19:31:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 7.2002410888672E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',246322),(486,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619634661.6954000000,1619634661.6962000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 19:31:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 7.1048736572266E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',246322),(487,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619634661.7037000000,1619634661.7092000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 19:31:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 0.0049221515655518 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',246322),(488,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619634661.7191000000,1619634661.7201000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 19:31:01. Current memory use 35MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00034403800964355 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',246322),(489,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619634661.7295000000,1619634661.7303000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 19:31:01. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 8.702278137207E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',246322),(490,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619634661.7383000000,1619634661.7400000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 19:31:01. Current memory use 35.1MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00037407875061035 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',246322),(491,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619634661.7476000000,1619634661.7483000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 19:31:01. Current memory use 35.1MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00014615058898926 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',246322),(492,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619634661.7552000000,1619634661.7573000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 19:31:01. Current memory use 35.1MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.001147985458374 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',246322),(493,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619634661.7665000000,1619634661.7675000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 19:31:01. Current memory use 35.1MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00015401840209961 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',246322),(494,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619634661.7778000000,1619634661.7841000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 19:31:01. Current memory use 34.2MB.\n\n0 feeds refreshed (took 0.00024900000000005 seconds)\n... used 1 dbqueries\n... used 0.0057430267333984 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',246322),(495,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619634661.7912000000,1619634661.7930000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 19:31:01. Current memory use 34.9MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0012309551239014 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',246322),(496,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619634661.7996000000,1619634661.8001000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 19:31:01. Current memory use 35MB.\n... used 0 dbqueries\n... used 7.4863433837891E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',246322),(497,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619634661.8116000000,1619634661.8123000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 19:31:01. Current memory use 35.1MB.\n... used 1 dbqueries\n... used 0.00024199485778809 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',246322),(498,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619634661.8204000000,1619634661.8211000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 19:31:01. Current memory use 35.1MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00037002563476562 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',246322),(499,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619634661.8320000000,1619634661.8329000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 19:31:01. Current memory use 35.2MB.\n... used 1 dbqueries\n... used 0.00039410591125488 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',246322),(500,0,'moodle','core\\task\\messaging_cleanup_task',0,1619635562.0213000000,1619635562.0327000000,1,4,0,'Execute scheduled task: Background processing for messaging (core\\task\\messaging_cleanup_task)\n... started 19:46:02. Current memory use 16MB.\n... used 5 dbqueries\n... used 0.0082101821899414 seconds\nScheduled task complete: Background processing for messaging (core\\task\\messaging_cleanup_task)\n','dev-defaults.derekmaxson.com',249110),(501,0,'moodle','core\\task\\analytics_cleanup_task',0,1619635562.0414000000,1619635562.0978000000,20,3,0,'Execute scheduled task: Analytics cleanup (core\\task\\analytics_cleanup_task)\n... started 19:46:02. Current memory use 17.4MB.\n... used 23 dbqueries\n... used 0.055804014205933 seconds\nScheduled task complete: Analytics cleanup (core\\task\\analytics_cleanup_task)\n','dev-defaults.derekmaxson.com',249110),(502,0,'moodle','core\\task\\session_cleanup_task',0,1619635562.1078000000,1619635562.1131000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 19:46:02. Current memory use 23.1MB.\n... used 7 dbqueries\n... used 0.0047049522399902 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',249110),(503,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619635562.1231000000,1619635562.1241000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 19:46:02. Current memory use 23.3MB.\n... used 1 dbqueries\n... used 0.00031304359436035 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',249110),(504,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619635562.1317000000,1619635562.1322000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 19:46:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 3.0994415283203E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',249110),(505,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619635562.1399000000,1619635562.1629000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 19:46:02. Current memory use 23.5MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.022479772567749 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',249110),(506,0,'moodle','core\\task\\grade_cron_task',0,1619635562.1710000000,1619635562.1725000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 19:46:02. Current memory use 26MB.\n... used 2 dbqueries\n... used 0.00087094306945801 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',249110),(507,0,'moodle','core\\task\\completion_regular_task',0,1619635562.1821000000,1619635562.1870000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 19:46:02. Current memory use 26.1MB.\n... used 6 dbqueries\n... used 0.0042960643768311 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',249110),(508,0,'moodle','core\\task\\portfolio_cron_task',0,1619635562.1942000000,1619635562.1948000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 19:46:02. Current memory use 26.2MB.\n... used 0 dbqueries\n... used 3.3855438232422E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',249110),(509,0,'moodle','core\\task\\plagiarism_cron_task',0,1619635562.2021000000,1619635562.2028000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 19:46:02. Current memory use 26.3MB.\n... used 0 dbqueries\n... used 5.3882598876953E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',249110),(510,0,'moodle','core\\task\\calendar_cron_task',0,1619635562.2099000000,1619635562.2135000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 19:46:02. Current memory use 26.3MB.\n... used 1 dbqueries\n... used 0.0031158924102783 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',249110),(511,0,'moodle','core\\task\\blog_cron_task',0,1619635562.2208000000,1619635562.2243000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 19:46:02. Current memory use 26.7MB.\n... used 2 dbqueries\n... used 0.0029840469360352 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',249110),(512,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619635562.2333000000,1619635562.2464000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 19:46:02. Current memory use 26.9MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.012427091598511 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',249110),(513,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619635562.2546000000,1619635562.2558000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 19:46:02. Current memory use 28.6MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00060510635375977 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',249110),(514,0,'moodle','core\\task\\badges_cron_task',0,1619635562.2652000000,1619635562.2700000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 19:46:02. Current memory use 28.6MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0041928291320801 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',249110),(515,0,'moodle','core\\task\\badges_message_task',0,1619635562.2789000000,1619635562.2798000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 19:46:02. Current memory use 30.1MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00025510787963867 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',249110),(516,0,'mod_assign','mod_assign\\task\\cron_task',0,1619635562.2925000000,1619635562.3186000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 19:46:02. Current memory use 31.2MB.\n... used 3 dbqueries\n... used 0.025357961654663 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',249110),(517,0,'mod_chat','mod_chat\\task\\cron_task',0,1619635562.3278000000,1619635562.3314000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 19:46:02. Current memory use 34MB.\n... used 4 dbqueries\n... used 0.0028460025787354 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',249110),(518,0,'mod_forum','mod_forum\\task\\cron_task',0,1619635562.3496000000,1619635562.3511000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 19:46:02. Current memory use 35.2MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00075483322143555 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',249110),(519,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619635562.3721000000,1619635562.3749000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 19:46:02. Current memory use 36.3MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0019989013671875 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',249110),(520,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619635562.3833000000,1619635562.3842000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 19:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 8.2015991210938E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',249110),(521,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619635562.3919000000,1619635562.3926000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 19:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 6.9141387939453E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',249110),(522,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619635562.4033000000,1619635562.4090000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 19:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 0.0049300193786621 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',249110),(523,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619635562.4189000000,1619635562.4200000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 19:46:02. Current memory use 36.9MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00034189224243164 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',249110),(524,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619635562.4280000000,1619635562.4288000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 19:46:02. Current memory use 36.9MB.\n... used 0 dbqueries\n... used 7.9870223999023E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',249110),(525,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619635562.4375000000,1619635562.4392000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 19:46:02. Current memory use 36.9MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00037693977355957 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',249110),(526,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619635562.4474000000,1619635562.4483000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 19:46:02. Current memory use 36.9MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016498565673828 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',249110),(527,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619635562.4591000000,1619635562.4617000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 19:46:02. Current memory use 36.9MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0011358261108398 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',249110),(528,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619635562.4697000000,1619635562.4706000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 19:46:02. Current memory use 36.9MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.0001521110534668 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',249110),(529,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619635562.4883000000,1619635562.4945000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 19:46:02. Current memory use 35.7MB.\n\n0 feeds refreshed (took 0.00030799999999997 seconds)\n... used 1 dbqueries\n... used 0.005634069442749 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',249110),(530,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619635562.5058000000,1619635562.5078000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 19:46:02. Current memory use 36.8MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014300346374512 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',249110),(531,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619635562.5197000000,1619635562.5203000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 19:46:02. Current memory use 36.9MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',249110),(532,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619635562.5288000000,1619635562.5296000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 19:46:02. Current memory use 37MB.\n... used 1 dbqueries\n... used 0.00024318695068359 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',249110),(533,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619635562.5381000000,1619635562.5390000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 19:46:02. Current memory use 37MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.0004119873046875 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',249110),(534,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619635562.5503000000,1619635562.5513000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 19:46:02. Current memory use 37MB.\n... used 1 dbqueries\n... used 0.00039815902709961 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',249110),(535,0,'moodle','core\\task\\file_temp_cleanup_task',0,1619636461.7299000000,1619636461.7381000000,0,0,0,'Execute scheduled task: Delete stale temp files (core\\task\\file_temp_cleanup_task)\n... started 20:01:01. Current memory use 15.2MB.\n... used 0 dbqueries\n... used 0.0046749114990234 seconds\nScheduled task complete: Delete stale temp files (core\\task\\file_temp_cleanup_task)\n','dev-defaults.derekmaxson.com',251838),(536,0,'moodle','core\\task\\file_trash_cleanup_task',0,1619636461.7452000000,1619636461.7614000000,4,1,0,'Execute scheduled task: Cleanup files in trash (core\\task\\file_trash_cleanup_task)\n... started 20:01:01. Current memory use 16.1MB.\nDeleting old draft files... ... started 20:01:01. Current memory use 17.8MB.\ndone.\nDeleting orphaned preview, and document conversion files... ... started 20:01:01. Current memory use 17.8MB.\ndone.\nCleaning up files from deleted contexts... ... started 20:01:01. Current memory use 17.8MB.\ndone.\nCall filesystem cron tasks.... started 20:01:01. Current memory use 17.8MB.\ndone.\n... used 5 dbqueries\n... used 0.015806198120117 seconds\nScheduled task complete: Cleanup files in trash (core\\task\\file_trash_cleanup_task)\n','dev-defaults.derekmaxson.com',251838),(537,0,'moodle','core\\task\\check_for_updates_task',0,1619636461.7785000000,1619636461.7808000000,0,0,0,'Execute scheduled task: Check for updates (core\\task\\check_for_updates_task)\n... started 20:01:01. Current memory use 18.2MB.\nRecently fetched info about available updates is still fresh enough, skipping.\n... used 0 dbqueries\n... used 0.0010871887207031 seconds\nScheduled task complete: Check for updates (core\\task\\check_for_updates_task)\n','dev-defaults.derekmaxson.com',251838),(538,0,'moodle','core\\task\\delete_unconfirmed_users_task',0,1619636461.7930000000,1619636461.7939000000,1,0,0,'Execute scheduled task: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n... started 20:01:01. Current memory use 18.3MB.\n... used 1 dbqueries\n... used 0.00037503242492676 seconds\nScheduled task complete: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n','dev-defaults.derekmaxson.com',251838),(539,0,'moodle','core\\task\\cache_cron_task',0,1619636461.8026000000,1619636461.8033000000,0,0,0,'Execute scheduled task: Background processing for caches (core\\task\\cache_cron_task)\n... started 20:01:01. Current memory use 18.3MB.\nCleaning up stale session data from cache stores.\n... used 0 dbqueries\n... used 0.00027704238891602 seconds\nScheduled task complete: Background processing for caches (core\\task\\cache_cron_task)\n','dev-defaults.derekmaxson.com',251838),(540,0,'moodle','core\\task\\automated_backup_task',0,1619636461.8119000000,1619636461.9367000000,0,0,0,'Execute scheduled task: Automated backups (core\\task\\automated_backup_task)\n... started 20:01:01. Current memory use 18.4MB.\nChecking automated backup status...INACTIVE\n... used 0 dbqueries\n... used 0.12425303459167 seconds\nScheduled task complete: Automated backups (core\\task\\automated_backup_task)\n','dev-defaults.derekmaxson.com',251838),(541,0,'moodle','core\\task\\search_index_task',0,1619636461.9451000000,1619636461.9479000000,0,0,0,'Execute scheduled task: Global search indexing (core\\task\\search_index_task)\n... started 20:01:01. Current memory use 36.5MB.\n... used 0 dbqueries\n... used 0.002068042755127 seconds\nScheduled task complete: Global search indexing (core\\task\\search_index_task)\n','dev-defaults.derekmaxson.com',251838),(542,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_course_bin',0,1619636461.9603000000,1619636461.9617000000,1,0,0,'Execute scheduled task: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n... started 20:01:01. Current memory use 36.7MB.\n... used 1 dbqueries\n... used 0.00085902214050293 seconds\nScheduled task complete: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n','dev-defaults.derekmaxson.com',251838),(543,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_category_bin',0,1619636461.9709000000,1619636461.9723000000,1,0,0,'Execute scheduled task: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n... started 20:01:01. Current memory use 36.7MB.\n... used 1 dbqueries\n... used 0.00073409080505371 seconds\nScheduled task complete: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n','dev-defaults.derekmaxson.com',251838),(544,0,'moodle','core\\task\\session_cleanup_task',0,1619636461.9800000000,1619636461.9860000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 20:01:01. Current memory use 37.1MB.\n... used 7 dbqueries\n... used 0.0045778751373291 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',251838),(545,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619636461.9952000000,1619636461.9962000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 20:01:01. Current memory use 37.3MB.\n... used 1 dbqueries\n... used 0.00031709671020508 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',251838),(546,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619636462.0041000000,1619636462.0047000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 20:01:02. Current memory use 37.4MB.\n... used 0 dbqueries\n... used 3.6954879760742E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',251838),(547,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619636462.0131000000,1619636462.0273000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 20:01:02. Current memory use 37.4MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.013636112213135 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',251838),(548,0,'moodle','core\\task\\grade_cron_task',0,1619636462.0359000000,1619636462.0375000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 20:01:02. Current memory use 38.8MB.\n... used 2 dbqueries\n... used 0.00090909004211426 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',251838),(549,0,'moodle','core\\task\\completion_regular_task',0,1619636462.0461000000,1619636462.0514000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 20:01:02. Current memory use 38.8MB.\n... used 6 dbqueries\n... used 0.0045819282531738 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',251838),(550,0,'moodle','core\\task\\portfolio_cron_task',0,1619636462.0632000000,1619636462.0639000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 20:01:02. Current memory use 39.1MB.\n... used 0 dbqueries\n... used 3.3855438232422E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',251838),(551,0,'moodle','core\\task\\plagiarism_cron_task',0,1619636462.0720000000,1619636462.0726000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 20:01:02. Current memory use 39.1MB.\n... used 0 dbqueries\n... used 3.1948089599609E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',251838),(552,0,'moodle','core\\task\\calendar_cron_task',0,1619636462.0800000000,1619636462.0836000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 20:01:02. Current memory use 39.1MB.\n... used 1 dbqueries\n... used 0.003093957901001 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',251838),(553,0,'moodle','core\\task\\blog_cron_task',0,1619636462.0944000000,1619636462.0986000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 20:01:02. Current memory use 39.5MB.\n... used 2 dbqueries\n... used 0.0035359859466553 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',251838),(554,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619636462.1060000000,1619636462.1075000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 20:01:02. Current memory use 39.7MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.00087594985961914 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',251838),(555,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619636462.1151000000,1619636462.1164000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 20:01:02. Current memory use 39.8MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00069284439086914 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',251838),(556,0,'moodle','core\\task\\badges_cron_task',0,1619636462.1239000000,1619636462.1281000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 20:01:02. Current memory use 39.8MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0035731792449951 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',251838),(557,0,'moodle','core\\task\\badges_message_task',0,1619636462.1360000000,1619636462.1370000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 20:01:02. Current memory use 40.1MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00031304359436035 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',251838),(558,0,'mod_assign','mod_assign\\task\\cron_task',0,1619636462.1527000000,1619636462.1594000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 20:01:02. Current memory use 41MB.\n... used 3 dbqueries\n... used 0.0059688091278076 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',251838),(559,0,'mod_chat','mod_chat\\task\\cron_task',0,1619636462.1682000000,1619636462.1699000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 20:01:02. Current memory use 41.5MB.\n... used 4 dbqueries\n... used 0.00088620185852051 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',251838),(560,0,'mod_forum','mod_forum\\task\\cron_task',0,1619636462.1783000000,1619636462.1795000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 20:01:02. Current memory use 41.7MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00060701370239258 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',251838),(561,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619636462.1965000000,1619636462.1992000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 20:01:02. Current memory use 42.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0019469261169434 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',251838),(562,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619636462.2064000000,1619636462.2073000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 20:01:02. Current memory use 42.5MB.\n... used 0 dbqueries\n... used 7.7962875366211E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',251838),(563,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619636462.2178000000,1619636462.2187000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 20:01:02. Current memory use 42.5MB.\n... used 0 dbqueries\n... used 8.082389831543E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',251838),(564,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619636462.2265000000,1619636462.2305000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 20:01:02. Current memory use 42.5MB.\n... used 0 dbqueries\n... used 0.0032401084899902 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',251838),(565,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619636462.2386000000,1619636462.2397000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 20:01:02. Current memory use 42.8MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.0003509521484375 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',251838),(566,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619636462.2473000000,1619636462.2482000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 20:01:02. Current memory use 42.8MB.\n... used 0 dbqueries\n... used 8.2015991210938E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',251838),(567,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619636462.2567000000,1619636462.2586000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 20:01:02. Current memory use 42.8MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00039792060852051 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',251838),(568,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619636462.2706000000,1619636462.2716000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 20:01:02. Current memory use 42.8MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016498565673828 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',251838),(569,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619636462.2813000000,1619636462.2838000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 20:01:02. Current memory use 42.8MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0010960102081299 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',251838),(570,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619636462.2908000000,1619636462.2914000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 20:01:02. Current memory use 42.9MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00013589859008789 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',251838),(571,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619636462.3014000000,1619636462.3076000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 20:01:02. Current memory use 41.9MB.\n\n0 feeds refreshed (took 0.00028 seconds)\n... used 1 dbqueries\n... used 0.0055489540100098 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',251838),(572,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619636462.3174000000,1619636462.3194000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 20:01:02. Current memory use 42.6MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0013809204101562 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',251838),(573,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619636462.3270000000,1619636462.3277000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 20:01:02. Current memory use 42.8MB.\n... used 0 dbqueries\n... used 8.9883804321289E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',251838),(574,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619636462.3353000000,1619636462.3359000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 20:01:02. Current memory use 42.9MB.\n... used 1 dbqueries\n... used 0.00019121170043945 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',251838),(575,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619636462.3429000000,1619636462.3436000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 20:01:02. Current memory use 42.9MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00032305717468262 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',251838),(576,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619636462.3538000000,1619636462.3549000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 20:01:02. Current memory use 42.9MB.\n... used 1 dbqueries\n... used 0.00041794776916504 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',251838),(577,0,'quiz_statistics','quiz_statistics\\task\\quiz_statistics_cleanup',0,1619637361.5474000000,1619637361.5538000000,0,1,0,'Execute scheduled task: Clean up old quiz statistics cache records (quiz_statistics\\task\\quiz_statistics_cleanup)\n... started 20:16:01. Current memory use 15.8MB.\n... used 1 dbqueries\n... used 0.0039410591125488 seconds\nScheduled task complete: Clean up old quiz statistics cache records (quiz_statistics\\task\\quiz_statistics_cleanup)\n','dev-defaults.derekmaxson.com',254613),(578,0,'moodle','core\\task\\delete_incomplete_users_task',0,1619637361.5649000000,1619637361.5663000000,0,0,0,'Execute scheduled task: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n... started 20:16:01. Current memory use 16.9MB.\n... used 0 dbqueries\n... used 3.6001205444336E-5 seconds\nScheduled task complete: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n','dev-defaults.derekmaxson.com',254613),(579,0,'moodle','core\\task\\backup_cleanup_task',0,1619637361.5748000000,1619637361.5757000000,1,0,0,'Execute scheduled task: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n... started 20:16:01. Current memory use 17MB.\n... used 1 dbqueries\n... used 0.00035190582275391 seconds\nScheduled task complete: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n','dev-defaults.derekmaxson.com',254613),(580,0,'moodle','core\\task\\complete_plans_task',0,1619637361.5826000000,1619637361.5896000000,1,0,0,'Execute scheduled task: Complete learning plans which are due (core\\task\\complete_plans_task)\n... started 20:16:01. Current memory use 17MB.\n... used 1 dbqueries\n... used 0.0062990188598633 seconds\nScheduled task complete: Complete learning plans which are due (core\\task\\complete_plans_task)\n','dev-defaults.derekmaxson.com',254613),(581,0,'qtype_random','qtype_random\\task\\remove_unused_questions',0,1619637361.5990000000,1619637361.6220000000,1,0,0,'Execute scheduled task: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n... started 20:16:01. Current memory use 17.9MB.\nCleaned up 0 unused random questions.\n... used 1 dbqueries\n... used 0.022397041320801 seconds\nScheduled task complete: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n','dev-defaults.derekmaxson.com',254613),(582,0,'enrol_flatfile','enrol_flatfile\\task\\flatfile_sync_task',0,1619637361.6298000000,1619637361.6330000000,2,0,0,'Execute scheduled task: Flat file enrolment sync (enrol_flatfile\\task\\flatfile_sync_task)\n... started 20:16:01. Current memory use 21.1MB.\n... used 2 dbqueries\n... used 0.0018949508666992 seconds\nScheduled task complete: Flat file enrolment sync (enrol_flatfile\\task\\flatfile_sync_task)\n','dev-defaults.derekmaxson.com',254613),(583,0,'tool_cohortroles','tool_cohortroles\\task\\cohort_role_sync',0,1619637361.6474000000,1619637361.6504000000,2,1,0,'Execute scheduled task: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n... started 20:16:01. Current memory use 20.9MB.\nSync cohort roles...\nAdded 0\nRemoved 0\n... used 3 dbqueries\n... used 0.0024380683898926 seconds\nScheduled task complete: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n','dev-defaults.derekmaxson.com',254613),(584,0,'moodle','core\\task\\session_cleanup_task',0,1619637361.6585000000,1619637361.6647000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 20:16:01. Current memory use 21.7MB.\n... used 7 dbqueries\n... used 0.0045480728149414 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',254613),(585,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619637361.6725000000,1619637361.6737000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 20:16:01. Current memory use 22MB.\n... used 1 dbqueries\n... used 0.00031685829162598 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',254613),(586,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619637361.6815000000,1619637361.6821000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 20:16:01. Current memory use 22MB.\n... used 0 dbqueries\n... used 3.3855438232422E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',254613),(587,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619637361.6927000000,1619637361.7223000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 20:16:01. Current memory use 22.1MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.028887987136841 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',254613),(588,0,'moodle','core\\task\\grade_cron_task',0,1619637361.7303000000,1619637361.7321000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 20:16:01. Current memory use 25.4MB.\n... used 2 dbqueries\n... used 0.000885009765625 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',254613),(589,0,'moodle','core\\task\\completion_regular_task',0,1619637361.7442000000,1619637361.7511000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 20:16:01. Current memory use 25.4MB.\n... used 6 dbqueries\n... used 0.0063669681549072 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',254613),(590,0,'moodle','core\\task\\portfolio_cron_task',0,1619637361.7588000000,1619637361.7595000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 20:16:01. Current memory use 25.8MB.\n... used 0 dbqueries\n... used 3.2901763916016E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',254613),(591,0,'moodle','core\\task\\plagiarism_cron_task',0,1619637361.7667000000,1619637361.7672000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 20:16:01. Current memory use 25.8MB.\n... used 0 dbqueries\n... used 2.598762512207E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',254613),(592,0,'moodle','core\\task\\calendar_cron_task',0,1619637361.7828000000,1619637361.7864000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 20:16:01. Current memory use 27.5MB.\n... used 1 dbqueries\n... used 0.003007173538208 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',254613),(593,0,'moodle','core\\task\\blog_cron_task',0,1619637361.7946000000,1619637361.7978000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 20:16:01. Current memory use 27.9MB.\n... used 2 dbqueries\n... used 0.0026590824127197 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',254613),(594,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619637361.8053000000,1619637361.8068000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 20:16:01. Current memory use 28.2MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.00090408325195312 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',254613),(595,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619637361.8143000000,1619637361.8155000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 20:16:01. Current memory use 28.2MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00063514709472656 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',254613),(596,0,'moodle','core\\task\\badges_cron_task',0,1619637361.8258000000,1619637361.8299000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 20:16:01. Current memory use 28.2MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.003511905670166 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',254613),(597,0,'moodle','core\\task\\badges_message_task',0,1619637361.8381000000,1619637361.8390000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 20:16:01. Current memory use 28.6MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00034117698669434 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',254613),(598,0,'mod_assign','mod_assign\\task\\cron_task',0,1619637361.8526000000,1619637361.8793000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 20:16:01. Current memory use 29.4MB.\n... used 3 dbqueries\n... used 0.026015996932983 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',254613),(599,0,'mod_chat','mod_chat\\task\\cron_task',0,1619637361.8885000000,1619637361.8925000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 20:16:01. Current memory use 32.2MB.\n... used 4 dbqueries\n... used 0.0030169486999512 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',254613),(600,0,'mod_forum','mod_forum\\task\\cron_task',0,1619637361.9135000000,1619637361.9149000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 20:16:01. Current memory use 33.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00066184997558594 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',254613),(601,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619637361.9347000000,1619637361.9374000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 20:16:01. Current memory use 34.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0019168853759766 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',254613),(602,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619637361.9449000000,1619637361.9459000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 20:16:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 7.8916549682617E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',254613),(603,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619637361.9537000000,1619637361.9545000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 20:16:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 6.6041946411133E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',254613),(604,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619637361.9624000000,1619637361.9685000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 20:16:01. Current memory use 34.6MB.\n... used 0 dbqueries\n... used 0.0052850246429443 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',254613),(605,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619637361.9794000000,1619637361.9804000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 20:16:01. Current memory use 35.1MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00034213066101074 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',254613),(606,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619637361.9885000000,1619637361.9890000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 20:16:01. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 6.8902969360352E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',254613),(607,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619637361.9970000000,1619637361.9992000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 20:16:01. Current memory use 35.1MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.0005500316619873 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',254613),(608,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619637362.0075000000,1619637362.0086000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 20:16:02. Current memory use 35.1MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016379356384277 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',254613),(609,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619637362.0188000000,1619637362.0214000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 20:16:02. Current memory use 35.1MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.001147985458374 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',254613),(610,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619637362.0284000000,1619637362.0294000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 20:16:02. Current memory use 35.2MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00014400482177734 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',254613),(611,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619637362.0422000000,1619637362.0488000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 20:16:02. Current memory use 34.2MB.\n\n0 feeds refreshed (took 0.000391 seconds)\n... used 1 dbqueries\n... used 0.0058197975158691 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',254613),(612,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619637362.0564000000,1619637362.0584000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 20:16:02. Current memory use 34.9MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014138221740723 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',254613),(613,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619637362.0667000000,1619637362.0673000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 20:16:02. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 7.7009201049805E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',254613),(614,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619637362.0779000000,1619637362.0790000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 20:16:02. Current memory use 35.2MB.\n... used 1 dbqueries\n... used 0.00026702880859375 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',254613),(615,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619637362.0892000000,1619637362.0899000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 20:16:02. Current memory use 35.2MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00037693977355957 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',254613),(616,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619637362.0987000000,1619637362.0996000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 20:16:02. Current memory use 35.2MB.\n... used 1 dbqueries\n... used 0.00037407875061035 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',254613),(617,0,'moodle','core\\task\\context_cleanup_task',0,1619638261.2898000000,1619638261.2996000000,9,1,0,'Execute scheduled task: Cleanup contexts (core\\task\\context_cleanup_task)\n... started 20:31:01. Current memory use 16MB.\n Cleaned up context instances\n... used 10 dbqueries\n... used 0.006882905960083 seconds\nScheduled task complete: Cleanup contexts (core\\task\\context_cleanup_task)\n','dev-defaults.derekmaxson.com',257344),(618,0,'moodle','core\\task\\cache_cleanup_task',0,1619638261.3101000000,1619638261.3110000000,0,1,0,'Execute scheduled task: Remove expired cache entries (core\\task\\cache_cleanup_task)\n... started 20:31:01. Current memory use 17MB.\n... used 1 dbqueries\n... used 0.00030088424682617 seconds\nScheduled task complete: Remove expired cache entries (core\\task\\cache_cleanup_task)\n','dev-defaults.derekmaxson.com',257344),(619,0,'moodle','core\\task\\sync_plans_from_template_cohorts_task',0,1619638261.3185000000,1619638261.3265000000,1,0,0,'Execute scheduled task: Sync plans from learning plan template cohorts (core\\task\\sync_plans_from_template_cohorts_task)\n... started 20:31:01. Current memory use 17.1MB.\n... used 1 dbqueries\n... used 0.0074300765991211 seconds\nScheduled task complete: Sync plans from learning plan template cohorts (core\\task\\sync_plans_from_template_cohorts_task)\n','dev-defaults.derekmaxson.com',257344),(620,0,'moodle','core\\oauth2\\refresh_system_tokens_task',0,1619638261.3348000000,1619638261.3494000000,1,0,0,'Execute scheduled task: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n... started 20:31:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.013902902603149 seconds\nScheduled task complete: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n','dev-defaults.derekmaxson.com',257344),(621,0,'moodle','core\\task\\search_index_task',0,1619638261.3571000000,1619638261.3594000000,0,0,0,'Execute scheduled task: Global search indexing (core\\task\\search_index_task)\n... started 20:31:01. Current memory use 19.6MB.\n... used 0 dbqueries\n... used 0.0017859935760498 seconds\nScheduled task complete: Global search indexing (core\\task\\search_index_task)\n','dev-defaults.derekmaxson.com',257344),(622,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_course_bin',0,1619638261.3692000000,1619638261.3704000000,1,0,0,'Execute scheduled task: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n... started 20:31:01. Current memory use 19.6MB.\n... used 1 dbqueries\n... used 0.00080108642578125 seconds\nScheduled task complete: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n','dev-defaults.derekmaxson.com',257344),(623,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_category_bin',0,1619638261.3800000000,1619638261.3813000000,1,0,0,'Execute scheduled task: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n... started 20:31:01. Current memory use 19.6MB.\n... used 1 dbqueries\n... used 0.00070905685424805 seconds\nScheduled task complete: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n','dev-defaults.derekmaxson.com',257344),(624,0,'moodle','core\\task\\session_cleanup_task',0,1619638261.3905000000,1619638261.3976000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 20:31:01. Current memory use 19.9MB.\n... used 7 dbqueries\n... used 0.005648136138916 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',257344),(625,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619638261.4053000000,1619638261.4062000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 20:31:01. Current memory use 20.2MB.\n... used 1 dbqueries\n... used 0.0003209114074707 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',257344),(626,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619638261.4170000000,1619638261.4175000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 20:31:01. Current memory use 20.2MB.\n... used 0 dbqueries\n... used 2.9087066650391E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',257344),(627,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619638261.4248000000,1619638261.4536000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 20:31:01. Current memory use 20.2MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.028409957885742 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',257344),(628,0,'moodle','core\\task\\grade_cron_task',0,1619638261.4639000000,1619638261.4654000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 20:31:01. Current memory use 23.6MB.\n... used 2 dbqueries\n... used 0.00081181526184082 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',257344),(629,0,'moodle','core\\task\\completion_regular_task',0,1619638261.4721000000,1619638261.4787000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 20:31:01. Current memory use 23.7MB.\n... used 6 dbqueries\n... used 0.0061378479003906 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',257344),(630,0,'moodle','core\\task\\portfolio_cron_task',0,1619638261.4861000000,1619638261.4867000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 20:31:01. Current memory use 24.1MB.\n... used 0 dbqueries\n... used 2.7894973754883E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',257344),(631,0,'moodle','core\\task\\plagiarism_cron_task',0,1619638261.4936000000,1619638261.4940000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 20:31:01. Current memory use 24.1MB.\n... used 0 dbqueries\n... used 2.288818359375E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',257344),(632,0,'moodle','core\\task\\calendar_cron_task',0,1619638261.5074000000,1619638261.5109000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 20:31:01. Current memory use 24.6MB.\n... used 1 dbqueries\n... used 0.0030078887939453 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',257344),(633,0,'moodle','core\\task\\blog_cron_task',0,1619638261.5208000000,1619638261.5249000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 20:31:01. Current memory use 25MB.\n... used 2 dbqueries\n... used 0.0034952163696289 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',257344),(634,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619638261.5323000000,1619638261.5450000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 20:31:01. Current memory use 25.2MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.012148857116699 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',257344),(635,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619638261.5530000000,1619638261.5543000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 20:31:01. Current memory use 28.2MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00064396858215332 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',257344),(636,0,'moodle','core\\task\\badges_cron_task',0,1619638261.5613000000,1619638261.5649000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 20:31:01. Current memory use 28.2MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0031619071960449 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',257344),(637,0,'moodle','core\\task\\badges_message_task',0,1619638261.5748000000,1619638261.5757000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 20:31:01. Current memory use 28.5MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00032186508178711 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',257344),(638,0,'mod_assign','mod_assign\\task\\cron_task',0,1619638261.5886000000,1619638261.6146000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 20:31:01. Current memory use 29.4MB.\n... used 3 dbqueries\n... used 0.025377035140991 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',257344),(639,0,'mod_chat','mod_chat\\task\\cron_task',0,1619638261.6230000000,1619638261.6266000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 20:31:01. Current memory use 32.1MB.\n... used 4 dbqueries\n... used 0.0027921199798584 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',257344),(640,0,'mod_forum','mod_forum\\task\\cron_task',0,1619638261.6439000000,1619638261.6454000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 20:31:01. Current memory use 33.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00068116188049316 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',257344),(641,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619638261.6642000000,1619638261.6670000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 20:31:01. Current memory use 34.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0020091533660889 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',257344),(642,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619638261.6746000000,1619638261.6754000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 20:31:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 8.1062316894531E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',257344),(643,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619638261.6862000000,1619638261.6871000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 20:31:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 7.9870223999023E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',257344),(644,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619638261.6947000000,1619638261.7006000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 20:31:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 0.0051188468933105 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',257344),(645,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619638261.7080000000,1619638261.7091000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 20:31:01. Current memory use 35MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00035309791564941 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',257344),(646,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619638261.7164000000,1619638261.7171000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 20:31:01. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 8.0108642578125E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',257344),(647,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619638261.7246000000,1619638261.7263000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 20:31:01. Current memory use 35.1MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00037980079650879 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',257344),(648,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619638261.7386000000,1619638261.7396000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 20:31:01. Current memory use 35.1MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00017499923706055 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',257344),(649,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619638261.7477000000,1619638261.7507000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 20:31:01. Current memory use 35.1MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0014090538024902 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',257344),(650,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619638261.7600000000,1619638261.7610000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 20:31:01. Current memory use 35.1MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00015687942504883 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',257344),(651,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619638261.7770000000,1619638261.7839000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 20:31:01. Current memory use 34.2MB.\n\n0 feeds refreshed (took 0.00040099999999998 seconds)\n... used 1 dbqueries\n... used 0.0062029361724854 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',257344),(652,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619638261.7943000000,1619638261.7964000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 20:31:01. Current memory use 34.9MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.001399040222168 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',257344),(653,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619638261.8042000000,1619638261.8050000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 20:31:01. Current memory use 35MB.\n... used 0 dbqueries\n... used 8.6069107055664E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',257344),(654,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619638261.8129000000,1619638261.8138000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 20:31:01. Current memory use 35.1MB.\n... used 1 dbqueries\n... used 0.00026607513427734 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',257344),(655,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619638261.8213000000,1619638261.8222000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 20:31:01. Current memory use 35.1MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00038003921508789 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',257344),(656,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619638261.8378000000,1619638261.8389000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 20:31:01. Current memory use 35.2MB.\n... used 1 dbqueries\n... used 0.00040698051452637 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',257344),(657,0,'moodle','core\\task\\messaging_cleanup_task',0,1619639162.0233000000,1619639162.0342000000,1,4,0,'Execute scheduled task: Background processing for messaging (core\\task\\messaging_cleanup_task)\n... started 20:46:02. Current memory use 16MB.\n... used 5 dbqueries\n... used 0.0081121921539307 seconds\nScheduled task complete: Background processing for messaging (core\\task\\messaging_cleanup_task)\n','dev-defaults.derekmaxson.com',260206),(658,0,'moodle','core\\task\\analytics_cleanup_task',0,1619639162.0438000000,1619639162.0986000000,20,3,0,'Execute scheduled task: Analytics cleanup (core\\task\\analytics_cleanup_task)\n... started 20:46:02. Current memory use 17.4MB.\n... used 23 dbqueries\n... used 0.054168939590454 seconds\nScheduled task complete: Analytics cleanup (core\\task\\analytics_cleanup_task)\n','dev-defaults.derekmaxson.com',260206),(659,0,'moodle','core\\task\\session_cleanup_task',0,1619639162.1089000000,1619639162.1138000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 20:46:02. Current memory use 23.1MB.\n... used 7 dbqueries\n... used 0.0043728351593018 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',260206),(660,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619639162.1272000000,1619639162.1281000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 20:46:02. Current memory use 23.3MB.\n... used 1 dbqueries\n... used 0.00029683113098145 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',260206),(661,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619639162.1380000000,1619639162.1385000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 20:46:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 3.0994415283203E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',260206),(662,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619639162.1480000000,1619639162.1703000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 20:46:02. Current memory use 23.5MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.021864175796509 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',260206),(663,0,'moodle','core\\task\\grade_cron_task',0,1619639162.1832000000,1619639162.1846000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 20:46:02. Current memory use 26MB.\n... used 2 dbqueries\n... used 0.0008399486541748 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',260206),(664,0,'moodle','core\\task\\completion_regular_task',0,1619639162.1970000000,1619639162.2020000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 20:46:02. Current memory use 26.1MB.\n... used 6 dbqueries\n... used 0.0044541358947754 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',260206),(665,0,'moodle','core\\task\\portfolio_cron_task',0,1619639162.2119000000,1619639162.2124000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 20:46:02. Current memory use 26.2MB.\n... used 0 dbqueries\n... used 2.7894973754883E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',260206),(666,0,'moodle','core\\task\\plagiarism_cron_task',0,1619639162.2225000000,1619639162.2229000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 20:46:02. Current memory use 26.3MB.\n... used 0 dbqueries\n... used 2.3841857910156E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',260206),(667,0,'moodle','core\\task\\calendar_cron_task',0,1619639162.2321000000,1619639162.2356000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 20:46:02. Current memory use 26.3MB.\n... used 1 dbqueries\n... used 0.0031030178070068 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',260206),(668,0,'moodle','core\\task\\blog_cron_task',0,1619639162.2482000000,1619639162.2515000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 20:46:02. Current memory use 26.7MB.\n... used 2 dbqueries\n... used 0.0029070377349854 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',260206),(669,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619639162.2600000000,1619639162.2724000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 20:46:02. Current memory use 26.9MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.012022972106934 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',260206),(670,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619639162.2871000000,1619639162.2884000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 20:46:02. Current memory use 28.6MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00065994262695312 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',260206),(671,0,'moodle','core\\task\\badges_cron_task',0,1619639162.2967000000,1619639162.3013000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 20:46:02. Current memory use 28.6MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0042269229888916 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',260206),(672,0,'moodle','core\\task\\badges_message_task',0,1619639162.3127000000,1619639162.3135000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 20:46:02. Current memory use 30.1MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00027799606323242 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',260206),(673,0,'mod_assign','mod_assign\\task\\cron_task',0,1619639162.3264000000,1619639162.3519000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 20:46:02. Current memory use 31.2MB.\n... used 3 dbqueries\n... used 0.024631023406982 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',260206),(674,0,'mod_chat','mod_chat\\task\\cron_task',0,1619639162.3612000000,1619639162.3648000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 20:46:02. Current memory use 34MB.\n... used 4 dbqueries\n... used 0.0027408599853516 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',260206),(675,0,'mod_forum','mod_forum\\task\\cron_task',0,1619639162.3857000000,1619639162.3871000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 20:46:02. Current memory use 35.2MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00065398216247559 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',260206),(676,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619639162.4034000000,1619639162.4062000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 20:46:02. Current memory use 36.3MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0020120143890381 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',260206),(677,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619639162.4145000000,1619639162.4153000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 20:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 7.4863433837891E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',260206),(678,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619639162.4226000000,1619639162.4232000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 20:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 5.1975250244141E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',260206),(679,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619639162.4305000000,1619639162.4360000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 20:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 0.0049519538879395 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',260206),(680,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619639162.4451000000,1619639162.4460000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 20:46:02. Current memory use 36.9MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00035595893859863 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',260206),(681,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619639162.4652000000,1619639162.4661000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 20:46:02. Current memory use 36.9MB.\n... used 0 dbqueries\n... used 8.5115432739258E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',260206),(682,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619639162.4764000000,1619639162.4783000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 20:46:02. Current memory use 36.9MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.0003960132598877 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',260206),(683,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619639162.4886000000,1619639162.4895000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 20:46:02. Current memory use 36.9MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00015497207641602 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',260206),(684,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619639162.4964000000,1619639162.4986000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 20:46:02. Current memory use 36.9MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0010378360748291 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',260206),(685,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619639162.5064000000,1619639162.5071000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 20:46:02. Current memory use 36.9MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00014090538024902 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',260206),(686,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619639162.5175000000,1619639162.5235000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 20:46:02. Current memory use 35.7MB.\n\n0 feeds refreshed (took 0.00028399999999995 seconds)\n... used 1 dbqueries\n... used 0.0055320262908936 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',260206),(687,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619639162.5339000000,1619639162.5359000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 20:46:02. Current memory use 36.8MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014839172363281 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',260206),(688,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619639162.5465000000,1619639162.5471000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 20:46:02. Current memory use 36.9MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',260206),(689,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619639162.5567000000,1619639162.5574000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 20:46:02. Current memory use 37MB.\n... used 1 dbqueries\n... used 0.00023603439331055 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',260206),(690,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619639162.5686000000,1619639162.5695000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 20:46:02. Current memory use 37MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00036501884460449 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',260206),(691,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619639162.5788000000,1619639162.5799000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 20:46:02. Current memory use 37MB.\n... used 1 dbqueries\n... used 0.00038003921508789 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',260206),(692,0,'mod_lti','mod_lti\\task\\clean_access_tokens',0,1619640061.7653000000,1619640061.7718000000,0,1,0,'Execute scheduled task: External tool removal of expired access tokens (mod_lti\\task\\clean_access_tokens)\n... started 21:01:01. Current memory use 16.3MB.\n... used 1 dbqueries\n... used 0.0041840076446533 seconds\nScheduled task complete: External tool removal of expired access tokens (mod_lti\\task\\clean_access_tokens)\n','dev-defaults.derekmaxson.com',262985),(693,0,'moodle','core\\task\\delete_unconfirmed_users_task',0,1619640061.7973000000,1619640061.7990000000,1,0,0,'Execute scheduled task: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n... started 21:01:01. Current memory use 16.9MB.\n... used 1 dbqueries\n... used 0.00044393539428711 seconds\nScheduled task complete: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n','dev-defaults.derekmaxson.com',262985),(694,0,'moodle','core\\task\\cache_cron_task',0,1619640061.8080000000,1619640061.8087000000,0,0,0,'Execute scheduled task: Background processing for caches (core\\task\\cache_cron_task)\n... started 21:01:01. Current memory use 16.9MB.\nCleaning up stale session data from cache stores.\n... used 0 dbqueries\n... used 0.00025606155395508 seconds\nScheduled task complete: Background processing for caches (core\\task\\cache_cron_task)\n','dev-defaults.derekmaxson.com',262985),(695,0,'moodle','core\\task\\automated_backup_task',0,1619640061.8220000000,1619640061.9689000000,0,0,0,'Execute scheduled task: Automated backups (core\\task\\automated_backup_task)\n... started 21:01:01. Current memory use 16.9MB.\nChecking automated backup status...INACTIVE\n... used 0 dbqueries\n... used 0.14637279510498 seconds\nScheduled task complete: Automated backups (core\\task\\automated_backup_task)\n','dev-defaults.derekmaxson.com',262985),(696,0,'moodle','core\\task\\search_index_task',0,1619640061.9783000000,1619640061.9810000000,0,0,0,'Execute scheduled task: Global search indexing (core\\task\\search_index_task)\n... started 21:01:01. Current memory use 36.5MB.\n... used 0 dbqueries\n... used 0.002007007598877 seconds\nScheduled task complete: Global search indexing (core\\task\\search_index_task)\n','dev-defaults.derekmaxson.com',262985),(697,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_course_bin',0,1619640061.9972000000,1619640061.9988000000,1,0,0,'Execute scheduled task: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n... started 21:01:01. Current memory use 36.8MB.\n... used 1 dbqueries\n... used 0.00093507766723633 seconds\nScheduled task complete: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n','dev-defaults.derekmaxson.com',262985),(698,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_category_bin',0,1619640062.0086000000,1619640062.0101000000,1,0,0,'Execute scheduled task: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n... started 21:01:02. Current memory use 36.8MB.\n... used 1 dbqueries\n... used 0.00083804130554199 seconds\nScheduled task complete: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n','dev-defaults.derekmaxson.com',262985),(699,0,'moodle','core\\task\\session_cleanup_task',0,1619640062.0211000000,1619640062.0279000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 21:01:02. Current memory use 37.1MB.\n... used 7 dbqueries\n... used 0.0051901340484619 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',262985),(700,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619640062.0383000000,1619640062.0394000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 21:01:02. Current memory use 37.4MB.\n... used 1 dbqueries\n... used 0.00032210350036621 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',262985),(701,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619640062.0483000000,1619640062.0489000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 21:01:02. Current memory use 37.5MB.\n... used 0 dbqueries\n... used 3.4093856811523E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',262985),(702,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619640062.0583000000,1619640062.0738000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 21:01:02. Current memory use 37.5MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.014780044555664 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',262985),(703,0,'moodle','core\\task\\grade_cron_task',0,1619640062.0902000000,1619640062.0919000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 21:01:02. Current memory use 38.9MB.\n... used 2 dbqueries\n... used 0.00093317031860352 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',262985),(704,0,'moodle','core\\task\\completion_regular_task',0,1619640062.1009000000,1619640062.1063000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 21:01:02. Current memory use 38.9MB.\n... used 6 dbqueries\n... used 0.0047259330749512 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',262985),(705,0,'moodle','core\\task\\portfolio_cron_task',0,1619640062.1206000000,1619640062.1213000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 21:01:02. Current memory use 39.2MB.\n... used 0 dbqueries\n... used 3.504753112793E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',262985),(706,0,'moodle','core\\task\\plagiarism_cron_task',0,1619640062.1336000000,1619640062.1343000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 21:01:02. Current memory use 39.2MB.\n... used 0 dbqueries\n... used 3.6001205444336E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',262985),(707,0,'moodle','core\\task\\calendar_cron_task',0,1619640062.1437000000,1619640062.1477000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 21:01:02. Current memory use 39.2MB.\n... used 1 dbqueries\n... used 0.0033059120178223 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',262985),(708,0,'moodle','core\\task\\blog_cron_task',0,1619640062.1568000000,1619640062.1610000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 21:01:02. Current memory use 39.6MB.\n... used 2 dbqueries\n... used 0.0035300254821777 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',262985),(709,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619640062.1701000000,1619640062.1717000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 21:01:02. Current memory use 39.8MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.00092577934265137 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',262985),(710,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619640062.1804000000,1619640062.1816000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 21:01:02. Current memory use 39.8MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00069999694824219 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',262985),(711,0,'moodle','core\\task\\badges_cron_task',0,1619640062.1948000000,1619640062.1991000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 21:01:02. Current memory use 39.9MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0036029815673828 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',262985),(712,0,'moodle','core\\task\\badges_message_task',0,1619640062.2083000000,1619640062.2091000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 21:01:02. Current memory use 40.2MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00027704238891602 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',262985),(713,0,'mod_assign','mod_assign\\task\\cron_task',0,1619640062.2181000000,1619640062.2254000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 21:01:02. Current memory use 40.2MB.\n... used 3 dbqueries\n... used 0.0064480304718018 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',262985),(714,0,'mod_chat','mod_chat\\task\\cron_task',0,1619640062.2345000000,1619640062.2368000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 21:01:02. Current memory use 40.9MB.\n... used 4 dbqueries\n... used 0.00098514556884766 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',262985),(715,0,'mod_forum','mod_forum\\task\\cron_task',0,1619640062.2506000000,1619640062.2529000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 21:01:02. Current memory use 41MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00073003768920898 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',262985),(716,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619640062.2697000000,1619640062.2722000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 21:01:02. Current memory use 42MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0013649463653564 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',262985),(717,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619640062.2809000000,1619640062.2817000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 21:01:02. Current memory use 42MB.\n... used 0 dbqueries\n... used 8.2015991210938E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',262985),(718,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619640062.2909000000,1619640062.2915000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 21:01:02. Current memory use 42MB.\n... used 0 dbqueries\n... used 7.2956085205078E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',262985),(719,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619640062.3012000000,1619640062.3052000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 21:01:02. Current memory use 42.1MB.\n... used 0 dbqueries\n... used 0.0031440258026123 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',262985),(720,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619640062.3199000000,1619640062.3216000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 21:01:02. Current memory use 42.4MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00034499168395996 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',262985),(721,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619640062.3308000000,1619640062.3315000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 21:01:02. Current memory use 42.5MB.\n... used 0 dbqueries\n... used 8.0108642578125E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',262985),(722,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619640062.3439000000,1619640062.3456000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 21:01:02. Current memory use 42.4MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00036501884460449 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',262985),(723,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619640062.3552000000,1619640062.3561000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 21:01:02. Current memory use 42.5MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016212463378906 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',262985),(724,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619640062.3652000000,1619640062.3675000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 21:01:02. Current memory use 42.5MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0010828971862793 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',262985),(725,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619640062.3813000000,1619640062.3821000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 21:01:02. Current memory use 42.5MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00014495849609375 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',262985),(726,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619640062.3939000000,1619640062.3999000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 21:01:02. Current memory use 41.8MB.\n\n0 feeds refreshed (took 0.00024000000000002 seconds)\n... used 1 dbqueries\n... used 0.0054800510406494 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',262985),(727,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619640062.4089000000,1619640062.4107000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 21:01:02. Current memory use 42.5MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0012459754943848 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',262985),(728,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619640062.4199000000,1619640062.4205000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 21:01:02. Current memory use 42.7MB.\n... used 0 dbqueries\n... used 8.0108642578125E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',262985),(729,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619640062.4362000000,1619640062.4369000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 21:01:02. Current memory use 42.7MB.\n... used 1 dbqueries\n... used 0.00020694732666016 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',262985),(730,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619640062.4646000000,1619640062.4655000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 21:01:02. Current memory use 42.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00039196014404297 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',262985),(731,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619640062.4776000000,1619640062.4786000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 21:01:02. Current memory use 42.8MB.\n... used 1 dbqueries\n... used 0.00039505958557129 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',262985),(732,0,'moodle','core\\task\\delete_incomplete_users_task',0,1619640961.6796000000,1619640961.6867000000,0,0,0,'Execute scheduled task: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n... started 21:16:01. Current memory use 16MB.\n... used 0 dbqueries\n... used 0.0037589073181152 seconds\nScheduled task complete: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n','dev-defaults.derekmaxson.com',265768),(733,0,'moodle','core\\task\\backup_cleanup_task',0,1619640961.6961000000,1619640961.6971000000,1,0,0,'Execute scheduled task: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n... started 21:16:01. Current memory use 16.9MB.\n... used 1 dbqueries\n... used 0.00037002563476562 seconds\nScheduled task complete: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n','dev-defaults.derekmaxson.com',265768),(734,0,'moodle','core\\task\\complete_plans_task',0,1619640961.7056000000,1619640961.7125000000,1,0,0,'Execute scheduled task: Complete learning plans which are due (core\\task\\complete_plans_task)\n... started 21:16:01. Current memory use 17MB.\n... used 1 dbqueries\n... used 0.0061972141265869 seconds\nScheduled task complete: Complete learning plans which are due (core\\task\\complete_plans_task)\n','dev-defaults.derekmaxson.com',265768),(735,0,'qtype_random','qtype_random\\task\\remove_unused_questions',0,1619640961.7224000000,1619640961.7470000000,1,0,0,'Execute scheduled task: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n... started 21:16:01. Current memory use 17.9MB.\nCleaned up 0 unused random questions.\n... used 1 dbqueries\n... used 0.023850917816162 seconds\nScheduled task complete: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n','dev-defaults.derekmaxson.com',265768),(736,0,'enrol_flatfile','enrol_flatfile\\task\\flatfile_sync_task',0,1619640961.7589000000,1619640961.7624000000,2,0,0,'Execute scheduled task: Flat file enrolment sync (enrol_flatfile\\task\\flatfile_sync_task)\n... started 21:16:01. Current memory use 21.1MB.\n... used 2 dbqueries\n... used 0.0022590160369873 seconds\nScheduled task complete: Flat file enrolment sync (enrol_flatfile\\task\\flatfile_sync_task)\n','dev-defaults.derekmaxson.com',265768),(737,0,'tool_cohortroles','tool_cohortroles\\task\\cohort_role_sync',0,1619640961.7758000000,1619640961.7814000000,3,1,0,'Execute scheduled task: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n... started 21:16:01. Current memory use 20.9MB.\nSync cohort roles...\nAdded 0\nRemoved 0\n... used 4 dbqueries\n... used 0.0047800540924072 seconds\nScheduled task complete: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n','dev-defaults.derekmaxson.com',265768),(738,0,'moodle','core\\task\\session_cleanup_task',0,1619640961.7923000000,1619640961.7988000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 21:16:01. Current memory use 21.6MB.\n... used 7 dbqueries\n... used 0.0049149990081787 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',265768),(739,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619640961.8064000000,1619640961.8077000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 21:16:01. Current memory use 21.9MB.\n... used 1 dbqueries\n... used 0.00034499168395996 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',265768),(740,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619640961.8162000000,1619640961.8169000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 21:16:01. Current memory use 22MB.\n... used 0 dbqueries\n... used 3.6001205444336E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',265768),(741,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619640961.8252000000,1619640961.8548000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 21:16:01. Current memory use 22MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.029015064239502 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',265768),(742,0,'moodle','core\\task\\grade_cron_task',0,1619640961.8654000000,1619640961.8673000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 21:16:01. Current memory use 25.3MB.\n... used 2 dbqueries\n... used 0.00097990036010742 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',265768),(743,0,'moodle','core\\task\\completion_regular_task',0,1619640961.8752000000,1619640961.8823000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 21:16:01. Current memory use 25.3MB.\n... used 6 dbqueries\n... used 0.006450891494751 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',265768),(744,0,'moodle','core\\task\\portfolio_cron_task',0,1619640961.8895000000,1619640961.8901000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 21:16:01. Current memory use 25.7MB.\n... used 0 dbqueries\n... used 2.9087066650391E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',265768),(745,0,'moodle','core\\task\\plagiarism_cron_task',0,1619640961.9001000000,1619640961.9008000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 21:16:01. Current memory use 25.7MB.\n... used 0 dbqueries\n... used 3.504753112793E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',265768),(746,0,'moodle','core\\task\\calendar_cron_task',0,1619640961.9239000000,1619640961.9278000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 21:16:01. Current memory use 26.2MB.\n... used 1 dbqueries\n... used 0.0031700134277344 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',265768),(747,0,'moodle','core\\task\\blog_cron_task',0,1619640961.9351000000,1619640961.9393000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 21:16:01. Current memory use 26.6MB.\n... used 2 dbqueries\n... used 0.0037000179290771 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',265768),(748,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619640961.9468000000,1619640961.9482000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 21:16:01. Current memory use 28.1MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.00086212158203125 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',265768),(749,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619640961.9560000000,1619640961.9573000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 21:16:01. Current memory use 28.1MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00068807601928711 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',265768),(750,0,'moodle','core\\task\\badges_cron_task',0,1619640961.9665000000,1619640961.9704000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 21:16:01. Current memory use 28.1MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0032868385314941 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',265768),(751,0,'moodle','core\\task\\badges_message_task',0,1619640961.9806000000,1619640961.9815000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 21:16:01. Current memory use 28.5MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00033211708068848 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',265768),(752,0,'mod_assign','mod_assign\\task\\cron_task',0,1619640961.9959000000,1619640962.0232000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 21:16:01. Current memory use 29.4MB.\n... used 3 dbqueries\n... used 0.026537895202637 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',265768),(753,0,'mod_chat','mod_chat\\task\\cron_task',0,1619640962.0312000000,1619640962.0351000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 21:16:02. Current memory use 32.2MB.\n... used 4 dbqueries\n... used 0.0028879642486572 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',265768),(754,0,'mod_forum','mod_forum\\task\\cron_task',0,1619640962.0545000000,1619640962.0560000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 21:16:02. Current memory use 33.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00067615509033203 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',265768),(755,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619640962.0722000000,1619640962.0749000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 21:16:02. Current memory use 34.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0019948482513428 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',265768),(756,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619640962.0827000000,1619640962.0837000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 21:16:02. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 7.2956085205078E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',265768),(757,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619640962.0912000000,1619640962.0920000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 21:16:02. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 6.6041946411133E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',265768),(758,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619640962.1015000000,1619640962.1073000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 21:16:02. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 0.0049910545349121 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',265768),(759,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619640962.1153000000,1619640962.1164000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 21:16:02. Current memory use 35.1MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00035190582275391 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',265768),(760,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619640962.1236000000,1619640962.1244000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 21:16:02. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 7.7962875366211E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',265768),(761,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619640962.1335000000,1619640962.1356000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 21:16:02. Current memory use 35.1MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00039410591125488 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',265768),(762,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619640962.1430000000,1619640962.1439000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 21:16:02. Current memory use 35.1MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00014281272888184 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',265768),(763,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619640962.1532000000,1619640962.1562000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 21:16:02. Current memory use 35.1MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0012938976287842 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',265768),(764,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619640962.1637000000,1619640962.1648000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 21:16:02. Current memory use 35.1MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00014686584472656 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',265768),(765,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619640962.1769000000,1619640962.1837000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 21:16:02. Current memory use 34.1MB.\n\n0 feeds refreshed (took 0.00039399999999998 seconds)\n... used 1 dbqueries\n... used 0.006152868270874 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',265768),(766,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619640962.1910000000,1619640962.1930000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 21:16:02. Current memory use 34.9MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0013787746429443 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',265768),(767,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619640962.2001000000,1619640962.2008000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 21:16:02. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 7.9154968261719E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',265768),(768,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619640962.2089000000,1619640962.2100000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 21:16:02. Current memory use 35.1MB.\n... used 1 dbqueries\n... used 0.00026202201843262 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',265768),(769,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619640962.2205000000,1619640962.2216000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 21:16:02. Current memory use 35.1MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00043201446533203 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',265768),(770,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619640962.2300000000,1619640962.2311000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 21:16:02. Current memory use 35.2MB.\n... used 1 dbqueries\n... used 0.00044417381286621 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',265768); +/*!40000 ALTER TABLE `mdl_task_log` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_task_scheduled` +-- + +DROP TABLE IF EXISTS `mdl_task_scheduled`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_task_scheduled` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `component` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `classname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `lastruntime` bigint(10) DEFAULT NULL, + `nextruntime` bigint(10) DEFAULT NULL, + `blocking` tinyint(2) NOT NULL DEFAULT 0, + `minute` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `hour` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `day` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `month` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `dayofweek` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `faildelay` bigint(10) DEFAULT NULL, + `customised` tinyint(2) NOT NULL DEFAULT 0, + `disabled` tinyint(1) NOT NULL DEFAULT 0, + `timestarted` bigint(10) DEFAULT NULL, + `hostname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `pid` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_tasksche_cla_uix` (`classname`) +) ENGINE=InnoDB AUTO_INCREMENT=101 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='List of scheduled tasks to be run by cron.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_task_scheduled` +-- + +LOCK TABLES `mdl_task_scheduled` WRITE; +/*!40000 ALTER TABLE `mdl_task_scheduled` DISABLE KEYS */; +INSERT INTO `mdl_task_scheduled` VALUES (1,'moodle','\\core\\task\\session_cleanup_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(2,'moodle','\\core\\task\\delete_unconfirmed_users_task',1619640061,1619643600,0,'0','*','*','*','*',0,0,0,NULL,NULL,NULL),(3,'moodle','\\core\\task\\delete_incomplete_users_task',1619640961,1619643900,0,'5','*','*','*','*',0,0,0,NULL,NULL,NULL),(4,'moodle','\\core\\task\\backup_cleanup_task',1619640961,1619644200,0,'10','*','*','*','*',0,0,0,NULL,NULL,NULL),(5,'moodle','\\core\\task\\tag_cron_task',0,1619665920,0,'12','3','*','*','*',0,0,0,NULL,NULL,NULL),(6,'moodle','\\core\\task\\context_cleanup_task',1619638261,1619641500,0,'25','*','*','*','*',0,0,0,NULL,NULL,NULL),(7,'moodle','\\core\\task\\cache_cleanup_task',1619638261,1619641800,0,'30','*','*','*','*',0,0,0,NULL,NULL,NULL),(8,'moodle','\\core\\task\\messaging_cleanup_task',1619639162,1619642100,0,'35','*','*','*','*',0,0,0,NULL,NULL,NULL),(9,'moodle','\\core\\task\\send_new_user_passwords_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(10,'moodle','\\core\\task\\send_failed_login_notifications_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(11,'moodle','\\core\\task\\create_contexts_task',0,1619654400,1,'0','0','*','*','*',0,0,0,NULL,NULL,NULL),(12,'moodle','\\core\\task\\legacy_plugin_cron_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(13,'moodle','\\core\\task\\grade_cron_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(14,'moodle','\\core\\task\\grade_history_cleanup_task',0,1619656140,0,'*','0','*','*','*',0,0,0,NULL,NULL,NULL),(15,'moodle','\\core\\task\\completion_regular_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(16,'moodle','\\core\\task\\completion_daily_task',0,1619701260,0,'1','13','*','*','*',0,0,0,NULL,NULL,NULL),(17,'moodle','\\core\\task\\portfolio_cron_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(18,'moodle','\\core\\task\\plagiarism_cron_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(19,'moodle','\\core\\task\\calendar_cron_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(20,'moodle','\\core\\task\\blog_cron_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(21,'moodle','\\core\\task\\question_preview_cleanup_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(22,'moodle','\\core\\task\\question_stats_cleanup_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(23,'moodle','\\core\\task\\registration_cron_task',0,1620036600,0,'10','10','*','*','1',0,0,0,NULL,NULL,NULL),(24,'moodle','\\core\\task\\check_for_updates_task',1619636461,1619643600,0,'0','*/2','*','*','*',0,0,0,NULL,NULL,NULL),(25,'moodle','\\core\\task\\cache_cron_task',1619640061,1619643000,0,'50','*','*','*','*',0,0,0,NULL,NULL,NULL),(26,'moodle','\\core\\task\\automated_backup_task',1619640061,1619643000,0,'50','*','*','*','*',0,0,0,NULL,NULL,NULL),(27,'moodle','\\core\\task\\badges_cron_task',1619640961,1619641200,0,'*/5','*','*','*','*',0,0,0,NULL,NULL,NULL),(28,'moodle','\\core\\task\\badges_message_task',1619640961,1619641200,0,'*/5','*','*','*','*',0,0,0,NULL,NULL,NULL),(29,'moodle','\\core\\task\\file_temp_cleanup_task',1619636461,1619654100,0,'55','*/6','*','*','*',0,0,0,NULL,NULL,NULL),(30,'moodle','\\core\\task\\file_trash_cleanup_task',1619636461,1619654100,0,'55','*/6','*','*','*',0,0,0,NULL,NULL,NULL),(31,'moodle','\\core\\task\\search_index_task',1619640061,1619641800,0,'*/30','*','*','*','*',0,0,0,NULL,NULL,NULL),(32,'moodle','\\core\\task\\search_optimize_task',0,1619655300,0,'15','*/12','*','*','*',0,0,0,NULL,NULL,NULL),(33,'moodle','\\core\\task\\stats_cron_task',0,1619654400,0,'0','0','*','*','*',0,0,0,NULL,NULL,NULL),(34,'moodle','\\core\\task\\password_reset_cleanup_task',1619632861,1619650800,0,'0','*/6','*','*','*',0,0,0,NULL,NULL,NULL),(35,'moodle','\\core\\task\\complete_plans_task',1619640961,1619644200,0,'10','*','*','*','*',0,0,0,NULL,NULL,NULL),(36,'moodle','\\core\\task\\sync_plans_from_template_cohorts_task',1619638261,1619641020,0,'17','*','*','*','*',0,0,0,NULL,NULL,NULL),(37,'moodle','\\core_files\\task\\conversion_cleanup_task',0,1619661720,0,'2','2','*','*','*',0,0,0,NULL,NULL,NULL),(38,'moodle','\\core\\oauth2\\refresh_system_tokens_task',1619638261,1619641800,0,'30','*','*','*','*',0,0,0,NULL,NULL,NULL),(39,'moodle','\\core\\task\\analytics_cleanup_task',1619639162,1619642520,0,'42','*','*','*','*',0,0,0,NULL,NULL,NULL),(40,'moodle','\\core\\task\\task_log_cleanup_task',0,1619694540,0,'9','11','*','*','*',0,0,0,NULL,NULL,NULL),(41,'moodle','\\core\\task\\h5p_get_content_types_task',0,1619892420,0,'7','18','1','*','*',0,0,0,NULL,NULL,NULL),(42,'moodle','\\core\\task\\antivirus_cleanup_task',0,1619655120,0,'12','0','*','*','*',0,0,0,NULL,NULL,NULL),(43,'qtype_random','\\qtype_random\\task\\remove_unused_questions',1619640961,1619644500,0,'15','*','*','*','*',0,0,0,NULL,NULL,NULL),(44,'mod_assign','\\mod_assign\\task\\cron_task',1619640962,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(45,'mod_chat','\\mod_chat\\task\\cron_task',1619640962,1619641200,0,'*/5','*','*','*','*',0,0,0,NULL,NULL,NULL),(46,'mod_forum','\\mod_forum\\task\\cron_task',1619640962,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(47,'mod_lti','\\mod_lti\\task\\clean_access_tokens',1619640061,1619726400,0,'0','21','*','*','*',0,0,0,NULL,NULL,NULL),(48,'mod_quiz','\\mod_quiz\\task\\update_overdue_attempts',1619640962,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(49,'mod_quiz','\\mod_quiz\\task\\legacy_quiz_reports_cron',1619640962,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(50,'mod_quiz','\\mod_quiz\\task\\legacy_quiz_accessrules_cron',1619640962,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(51,'mod_scorm','\\mod_scorm\\task\\cron_task',1619640962,1619641200,0,'*/5','*','*','*','*',0,0,0,NULL,NULL,NULL),(52,'mod_workshop','\\mod_workshop\\task\\cron_task',1619640962,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(53,'mod_workshop','\\mod_workshop\\task\\legacy_workshop_allocation_cron',1619640962,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(54,'auth_cas','\\auth_cas\\task\\sync_task',0,1619650800,0,'0','0','*','*','*',0,0,1,NULL,NULL,NULL),(55,'auth_db','\\auth_db\\task\\sync_users',0,1619708640,0,'4','16','*','*','*',0,0,1,NULL,NULL,NULL),(56,'auth_ldap','\\auth_ldap\\task\\sync_roles',0,1619650800,0,'0','0','*','*','*',0,0,1,NULL,NULL,NULL),(57,'auth_ldap','\\auth_ldap\\task\\sync_task',0,1619650800,0,'0','0','*','*','*',0,0,1,NULL,NULL,NULL),(58,'auth_mnet','\\auth_mnet\\task\\cron_task',0,1619623740,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(59,'enrol_category','\\enrol_category\\task\\enrol_category_sync',0,1619623740,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(60,'enrol_cohort','\\enrol_cohort\\task\\enrol_cohort_sync',0,1619625600,0,'0','*','*','*','*',0,0,0,NULL,NULL,NULL),(61,'enrol_database','\\enrol_database\\task\\sync_enrolments',0,1619673180,0,'13','6','*','*','*',0,0,1,NULL,NULL,NULL),(62,'enrol_flatfile','\\enrol_flatfile\\task\\flatfile_sync_task',1619640961,1619644500,0,'15','*','*','*','*',0,0,0,NULL,NULL,NULL),(63,'enrol_imsenterprise','\\enrol_imsenterprise\\task\\cron_task',0,1619626200,0,'10','*','*','*','*',0,0,0,NULL,NULL,NULL),(64,'enrol_ldap','\\enrol_ldap\\task\\sync_enrolments',0,1619680200,0,'10','8','*','*','*',0,0,1,NULL,NULL,NULL),(65,'enrol_lti','\\enrol_lti\\task\\sync_grades',0,1619623800,0,'*/30','*','*','*','*',0,0,0,NULL,NULL,NULL),(66,'enrol_lti','\\enrol_lti\\task\\sync_members',0,1619623800,0,'*/30','*','*','*','*',0,0,0,NULL,NULL,NULL),(67,'enrol_manual','\\enrol_manual\\task\\sync_enrolments',1619640962,1619641200,0,'*/10','*','*','*','*',0,0,0,NULL,NULL,NULL),(68,'enrol_manual','\\enrol_manual\\task\\send_expiry_notifications',1619640962,1619641200,0,'*/10','*','*','*','*',0,0,0,NULL,NULL,NULL),(69,'enrol_meta','\\enrol_meta\\task\\enrol_meta_sync',0,1619625660,0,'1','*','*','*','*',0,0,0,NULL,NULL,NULL),(70,'enrol_paypal','\\enrol_paypal\\task\\process_expirations',0,1619623740,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(71,'enrol_self','\\enrol_self\\task\\sync_enrolments',1619640962,1619641200,0,'*/10','*','*','*','*',0,0,0,NULL,NULL,NULL),(72,'enrol_self','\\enrol_self\\task\\send_expiry_notifications',1619640962,1619641200,0,'*/10','*','*','*','*',0,0,0,NULL,NULL,NULL),(73,'message_email','\\message_email\\task\\send_email_task',0,1619643600,0,'0','22','*','*','*',0,0,0,NULL,NULL,NULL),(74,'block_recent_activity','\\block_recent_activity\\task\\cleanup',1619630161,1619716200,0,'10','18','*','*','*',0,0,0,NULL,NULL,NULL),(75,'block_rss_client','\\block_rss_client\\task\\refreshfeeds',1619640962,1619641200,0,'*/5','*','*','*','*',0,0,0,NULL,NULL,NULL),(76,'editor_atto','\\editor_atto\\task\\autosave_cleanup_task',0,1620199320,0,'22','8','*','*','3',0,0,0,NULL,NULL,NULL),(77,'repository_dropbox','\\repository_dropbox\\task\\cron_task',0,1619623740,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(78,'repository_filesystem','\\repository_filesystem\\task\\cron_task',0,1619623740,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(79,'repository_onedrive','\\repository_onedrive\\remove_temp_access_task',0,1619694240,0,'4','12','*','*','0',0,0,0,NULL,NULL,NULL),(80,'tool_analytics','\\tool_analytics\\task\\train_models',0,1619665200,0,'0','4','*','*','*',0,0,0,NULL,NULL,NULL),(81,'tool_analytics','\\tool_analytics\\task\\predict_models',0,1619679600,0,'0','8','*','*','*',0,0,0,NULL,NULL,NULL),(82,'tool_cohortroles','\\tool_cohortroles\\task\\cohort_role_sync',1619640961,1619644500,0,'15','*','*','*','*',0,0,0,NULL,NULL,NULL),(83,'tool_dataprivacy','\\tool_dataprivacy\\task\\expired_retention_period',0,1619676000,0,'0','7','*','*','*',0,0,0,NULL,NULL,NULL),(84,'tool_dataprivacy','\\tool_dataprivacy\\task\\delete_expired_contexts',0,1619686800,0,'0','10','*','*','*',0,0,0,NULL,NULL,NULL),(85,'tool_dataprivacy','\\tool_dataprivacy\\task\\delete_expired_requests',0,1619648400,0,'20','23','*','*','*',0,0,0,NULL,NULL,NULL),(86,'tool_dataprivacy','\\tool_dataprivacy\\task\\delete_existing_deleted_users',0,1619666040,0,'14','4','*','*','*',0,0,1,NULL,NULL,NULL),(87,'tool_langimport','\\tool_langimport\\task\\update_langpacks_task',0,1619666580,0,'23','4','*','*','*',0,0,0,NULL,NULL,NULL),(88,'tool_messageinbound','\\tool_messageinbound\\task\\pickup_task',1619640962,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(89,'tool_messageinbound','\\tool_messageinbound\\task\\cleanup_task',0,1619657700,0,'55','1','*','*','*',0,0,0,NULL,NULL,NULL),(90,'tool_monitor','\\tool_monitor\\task\\clean_events',1619640962,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(91,'tool_monitor','\\tool_monitor\\task\\check_subscriptions',0,1619709720,0,'22','16','*','*','*',0,0,0,NULL,NULL,NULL),(92,'tool_recyclebin','\\tool_recyclebin\\task\\cleanup_course_bin',1619640062,1619641800,0,'*/30','*','*','*','*',0,0,0,NULL,NULL,NULL),(93,'tool_recyclebin','\\tool_recyclebin\\task\\cleanup_category_bin',1619640062,1619641800,0,'*/30','*','*','*','*',0,0,0,NULL,NULL,NULL),(94,'assignfeedback_editpdf','\\assignfeedback_editpdf\\task\\convert_submissions',1619640962,1619641800,0,'*/15','*','*','*','*',0,0,0,NULL,NULL,NULL),(95,'ltiservice_gradebookservices','\\ltiservice_gradebookservices\\task\\cleanup_task',0,1619683560,0,'6','9','*','*','*',0,0,0,NULL,NULL,NULL),(96,'quiz_statistics','\\quiz_statistics\\task\\quiz_statistics_cleanup',1619637361,1619651640,0,'14','*/5','*','*','*',0,0,0,NULL,NULL,NULL),(97,'workshopallocation_scheduled','\\workshopallocation_scheduled\\task\\cron_task',1619640962,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(98,'logstore_legacy','\\logstore_legacy\\task\\cleanup_task',0,1619669220,0,'7','5','*','*','*',0,0,0,NULL,NULL,NULL),(99,'logstore_standard','\\logstore_standard\\task\\cleanup_task',0,1619665200,0,'0','4','*','*','*',0,0,0,NULL,NULL,NULL),(100,'mod_customcert','\\mod_customcert\\task\\email_certificate_task',1619640962,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL); +/*!40000 ALTER TABLE `mdl_task_scheduled` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tool_cohortroles` +-- + +DROP TABLE IF EXISTS `mdl_tool_cohortroles`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tool_cohortroles` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `cohortid` bigint(10) NOT NULL, + `roleid` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `usermodified` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_toolcoho_cohroluse_uix` (`cohortid`,`roleid`,`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Mapping of users to cohort role assignments.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tool_cohortroles` +-- + +LOCK TABLES `mdl_tool_cohortroles` WRITE; +/*!40000 ALTER TABLE `mdl_tool_cohortroles` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tool_cohortroles` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tool_customlang` +-- + +DROP TABLE IF EXISTS `mdl_tool_customlang`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tool_customlang` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `lang` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `componentid` bigint(10) NOT NULL, + `stringid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `original` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `master` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `local` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timemodified` bigint(10) NOT NULL, + `timecustomized` bigint(10) DEFAULT NULL, + `outdated` smallint(3) DEFAULT 0, + `modified` smallint(3) DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_toolcust_lancomstr_uix` (`lang`,`componentid`,`stringid`), + KEY `mdl_toolcust_com_ix` (`componentid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Contains the working checkout of all strings and their custo'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tool_customlang` +-- + +LOCK TABLES `mdl_tool_customlang` WRITE; +/*!40000 ALTER TABLE `mdl_tool_customlang` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tool_customlang` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tool_customlang_components` +-- + +DROP TABLE IF EXISTS `mdl_tool_customlang_components`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tool_customlang_components` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `version` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Contains the list of all installed plugins that provide thei'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tool_customlang_components` +-- + +LOCK TABLES `mdl_tool_customlang_components` WRITE; +/*!40000 ALTER TABLE `mdl_tool_customlang_components` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tool_customlang_components` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tool_dataprivacy_category` +-- + +DROP TABLE IF EXISTS `mdl_tool_dataprivacy_category`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tool_dataprivacy_category` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` tinyint(1) DEFAULT NULL, + `usermodified` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Data categories'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tool_dataprivacy_category` +-- + +LOCK TABLES `mdl_tool_dataprivacy_category` WRITE; +/*!40000 ALTER TABLE `mdl_tool_dataprivacy_category` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tool_dataprivacy_category` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tool_dataprivacy_ctxexpired` +-- + +DROP TABLE IF EXISTS `mdl_tool_dataprivacy_ctxexpired`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tool_dataprivacy_ctxexpired` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `contextid` bigint(10) NOT NULL, + `unexpiredroles` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `expiredroles` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `defaultexpired` tinyint(1) NOT NULL, + `status` tinyint(2) NOT NULL DEFAULT 0, + `usermodified` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_tooldatactxe_con_uix` (`contextid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Default comment for the table, please edit me'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tool_dataprivacy_ctxexpired` +-- + +LOCK TABLES `mdl_tool_dataprivacy_ctxexpired` WRITE; +/*!40000 ALTER TABLE `mdl_tool_dataprivacy_ctxexpired` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tool_dataprivacy_ctxexpired` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tool_dataprivacy_ctxinstance` +-- + +DROP TABLE IF EXISTS `mdl_tool_dataprivacy_ctxinstance`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tool_dataprivacy_ctxinstance` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `contextid` bigint(10) NOT NULL, + `purposeid` bigint(10) DEFAULT NULL, + `categoryid` bigint(10) DEFAULT NULL, + `usermodified` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_tooldatactxi_con_uix` (`contextid`), + KEY `mdl_tooldatactxi_pur_ix` (`purposeid`), + KEY `mdl_tooldatactxi_cat_ix` (`categoryid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Default comment for the table, please edit me'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tool_dataprivacy_ctxinstance` +-- + +LOCK TABLES `mdl_tool_dataprivacy_ctxinstance` WRITE; +/*!40000 ALTER TABLE `mdl_tool_dataprivacy_ctxinstance` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tool_dataprivacy_ctxinstance` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tool_dataprivacy_ctxlevel` +-- + +DROP TABLE IF EXISTS `mdl_tool_dataprivacy_ctxlevel`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tool_dataprivacy_ctxlevel` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `contextlevel` smallint(3) NOT NULL, + `purposeid` bigint(10) DEFAULT NULL, + `categoryid` bigint(10) DEFAULT NULL, + `usermodified` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_tooldatactxl_con_uix` (`contextlevel`), + KEY `mdl_tooldatactxl_cat_ix` (`categoryid`), + KEY `mdl_tooldatactxl_pur_ix` (`purposeid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Default comment for the table, please edit me'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tool_dataprivacy_ctxlevel` +-- + +LOCK TABLES `mdl_tool_dataprivacy_ctxlevel` WRITE; +/*!40000 ALTER TABLE `mdl_tool_dataprivacy_ctxlevel` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tool_dataprivacy_ctxlevel` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tool_dataprivacy_purpose` +-- + +DROP TABLE IF EXISTS `mdl_tool_dataprivacy_purpose`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tool_dataprivacy_purpose` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` tinyint(1) DEFAULT NULL, + `lawfulbases` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `sensitivedatareasons` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `retentionperiod` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `protected` tinyint(1) DEFAULT NULL, + `usermodified` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Data purposes'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tool_dataprivacy_purpose` +-- + +LOCK TABLES `mdl_tool_dataprivacy_purpose` WRITE; +/*!40000 ALTER TABLE `mdl_tool_dataprivacy_purpose` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tool_dataprivacy_purpose` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tool_dataprivacy_purposerole` +-- + +DROP TABLE IF EXISTS `mdl_tool_dataprivacy_purposerole`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tool_dataprivacy_purposerole` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `purposeid` bigint(10) NOT NULL, + `roleid` bigint(10) NOT NULL, + `lawfulbases` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `sensitivedatareasons` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `retentionperiod` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `protected` tinyint(1) DEFAULT NULL, + `usermodified` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_tooldatapurp_purrol_uix` (`purposeid`,`roleid`), + KEY `mdl_tooldatapurp_pur_ix` (`purposeid`), + KEY `mdl_tooldatapurp_rol_ix` (`roleid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Data purpose overrides for a specific role'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tool_dataprivacy_purposerole` +-- + +LOCK TABLES `mdl_tool_dataprivacy_purposerole` WRITE; +/*!40000 ALTER TABLE `mdl_tool_dataprivacy_purposerole` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tool_dataprivacy_purposerole` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tool_dataprivacy_request` +-- + +DROP TABLE IF EXISTS `mdl_tool_dataprivacy_request`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tool_dataprivacy_request` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `type` bigint(10) NOT NULL DEFAULT 0, + `comments` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `commentsformat` tinyint(2) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `requestedby` bigint(10) NOT NULL DEFAULT 0, + `status` tinyint(2) NOT NULL DEFAULT 0, + `dpo` bigint(10) DEFAULT 0, + `dpocomment` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `dpocommentformat` tinyint(2) NOT NULL DEFAULT 0, + `systemapproved` smallint(4) NOT NULL DEFAULT 0, + `usermodified` bigint(10) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `creationmethod` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_tooldatarequ_use_ix` (`userid`), + KEY `mdl_tooldatarequ_req_ix` (`requestedby`), + KEY `mdl_tooldatarequ_dpo_ix` (`dpo`), + KEY `mdl_tooldatarequ_use2_ix` (`usermodified`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Table for data requests'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tool_dataprivacy_request` +-- + +LOCK TABLES `mdl_tool_dataprivacy_request` WRITE; +/*!40000 ALTER TABLE `mdl_tool_dataprivacy_request` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tool_dataprivacy_request` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tool_monitor_events` +-- + +DROP TABLE IF EXISTS `mdl_tool_monitor_events`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tool_monitor_events` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `eventname` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `contextid` bigint(10) NOT NULL, + `contextlevel` bigint(10) NOT NULL, + `contextinstanceid` bigint(10) NOT NULL, + `link` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `courseid` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='A table that keeps a log of events related to subscriptions'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tool_monitor_events` +-- + +LOCK TABLES `mdl_tool_monitor_events` WRITE; +/*!40000 ALTER TABLE `mdl_tool_monitor_events` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tool_monitor_events` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tool_monitor_history` +-- + +DROP TABLE IF EXISTS `mdl_tool_monitor_history`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tool_monitor_history` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `sid` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `timesent` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_toolmonihist_sidusetim_uix` (`sid`,`userid`,`timesent`), + KEY `mdl_toolmonihist_sid_ix` (`sid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Table to store history of message notifications sent'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tool_monitor_history` +-- + +LOCK TABLES `mdl_tool_monitor_history` WRITE; +/*!40000 ALTER TABLE `mdl_tool_monitor_history` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tool_monitor_history` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tool_monitor_rules` +-- + +DROP TABLE IF EXISTS `mdl_tool_monitor_rules`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tool_monitor_rules` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` tinyint(1) NOT NULL, + `name` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `userid` bigint(10) NOT NULL, + `courseid` bigint(10) NOT NULL, + `plugin` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `eventname` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `template` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `templateformat` tinyint(1) NOT NULL, + `frequency` smallint(4) NOT NULL, + `timewindow` mediumint(5) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_toolmonirule_couuse_ix` (`courseid`,`userid`), + KEY `mdl_toolmonirule_eve_ix` (`eventname`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Table to store rules'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tool_monitor_rules` +-- + +LOCK TABLES `mdl_tool_monitor_rules` WRITE; +/*!40000 ALTER TABLE `mdl_tool_monitor_rules` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tool_monitor_rules` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tool_monitor_subscriptions` +-- + +DROP TABLE IF EXISTS `mdl_tool_monitor_subscriptions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tool_monitor_subscriptions` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `courseid` bigint(10) NOT NULL, + `ruleid` bigint(10) NOT NULL, + `cmid` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `lastnotificationsent` bigint(10) NOT NULL DEFAULT 0, + `inactivedate` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_toolmonisubs_couuse_ix` (`courseid`,`userid`), + KEY `mdl_toolmonisubs_rul_ix` (`ruleid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Table to store user subscriptions to various rules'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tool_monitor_subscriptions` +-- + +LOCK TABLES `mdl_tool_monitor_subscriptions` WRITE; +/*!40000 ALTER TABLE `mdl_tool_monitor_subscriptions` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tool_monitor_subscriptions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tool_policy` +-- + +DROP TABLE IF EXISTS `mdl_tool_policy`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tool_policy` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `sortorder` mediumint(5) NOT NULL DEFAULT 999, + `currentversionid` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_toolpoli_cur_ix` (`currentversionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Contains the list of policy documents defined on the site.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tool_policy` +-- + +LOCK TABLES `mdl_tool_policy` WRITE; +/*!40000 ALTER TABLE `mdl_tool_policy` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tool_policy` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tool_policy_acceptances` +-- + +DROP TABLE IF EXISTS `mdl_tool_policy_acceptances`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tool_policy_acceptances` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `policyversionid` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `status` tinyint(1) DEFAULT NULL, + `lang` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `usermodified` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `note` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_toolpoliacce_poluse_uix` (`policyversionid`,`userid`), + KEY `mdl_toolpoliacce_pol_ix` (`policyversionid`), + KEY `mdl_toolpoliacce_use_ix` (`userid`), + KEY `mdl_toolpoliacce_use2_ix` (`usermodified`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Tracks users accepting the policy versions'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tool_policy_acceptances` +-- + +LOCK TABLES `mdl_tool_policy_acceptances` WRITE; +/*!40000 ALTER TABLE `mdl_tool_policy_acceptances` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tool_policy_acceptances` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tool_policy_versions` +-- + +DROP TABLE IF EXISTS `mdl_tool_policy_versions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tool_policy_versions` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(1333) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `type` smallint(3) NOT NULL DEFAULT 0, + `audience` smallint(3) NOT NULL DEFAULT 0, + `archived` smallint(3) NOT NULL DEFAULT 0, + `usermodified` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `policyid` bigint(10) NOT NULL, + `agreementstyle` smallint(3) NOT NULL DEFAULT 0, + `optional` smallint(3) NOT NULL DEFAULT 0, + `revision` varchar(1333) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `summary` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `summaryformat` smallint(3) NOT NULL, + `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `contentformat` smallint(3) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_toolpolivers_use_ix` (`usermodified`), + KEY `mdl_toolpolivers_pol_ix` (`policyid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Holds versions of the policy documents'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tool_policy_versions` +-- + +LOCK TABLES `mdl_tool_policy_versions` WRITE; +/*!40000 ALTER TABLE `mdl_tool_policy_versions` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tool_policy_versions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tool_recyclebin_category` +-- + +DROP TABLE IF EXISTS `mdl_tool_recyclebin_category`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tool_recyclebin_category` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `categoryid` bigint(10) NOT NULL, + `shortname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `fullname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `timecreated` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_toolrecycate_tim_ix` (`timecreated`), + KEY `mdl_toolrecycate_cat_ix` (`categoryid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='A list of items in the category recycle bin'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tool_recyclebin_category` +-- + +LOCK TABLES `mdl_tool_recyclebin_category` WRITE; +/*!40000 ALTER TABLE `mdl_tool_recyclebin_category` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tool_recyclebin_category` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tool_recyclebin_course` +-- + +DROP TABLE IF EXISTS `mdl_tool_recyclebin_course`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tool_recyclebin_course` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `courseid` bigint(10) NOT NULL, + `section` bigint(10) NOT NULL, + `module` bigint(10) NOT NULL, + `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_toolrecycour_tim_ix` (`timecreated`), + KEY `mdl_toolrecycour_cou_ix` (`courseid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='A list of items in the course recycle bin'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tool_recyclebin_course` +-- + +LOCK TABLES `mdl_tool_recyclebin_course` WRITE; +/*!40000 ALTER TABLE `mdl_tool_recyclebin_course` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tool_recyclebin_course` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tool_usertours_steps` +-- + +DROP TABLE IF EXISTS `mdl_tool_usertours_steps`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tool_usertours_steps` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `tourid` bigint(10) NOT NULL, + `title` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `content` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `targettype` tinyint(2) NOT NULL, + `targetvalue` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `sortorder` bigint(10) NOT NULL DEFAULT 0, + `configdata` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_tooluserstep_tousor_ix` (`tourid`,`sortorder`), + KEY `mdl_tooluserstep_tou_ix` (`tourid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Steps in an tour'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tool_usertours_steps` +-- + +LOCK TABLES `mdl_tool_usertours_steps` WRITE; +/*!40000 ALTER TABLE `mdl_tool_usertours_steps` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tool_usertours_steps` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_tool_usertours_tours` +-- + +DROP TABLE IF EXISTS `mdl_tool_usertours_tours`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_tool_usertours_tours` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `pathmatch` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `enabled` tinyint(1) NOT NULL DEFAULT 0, + `sortorder` bigint(10) NOT NULL DEFAULT 0, + `configdata` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='List of tours'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_tool_usertours_tours` +-- + +LOCK TABLES `mdl_tool_usertours_tours` WRITE; +/*!40000 ALTER TABLE `mdl_tool_usertours_tours` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_tool_usertours_tours` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_upgrade_log` +-- + +DROP TABLE IF EXISTS `mdl_upgrade_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_upgrade_log` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `type` bigint(10) NOT NULL, + `plugin` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `version` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `targetversion` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `info` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `details` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `backtrace` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `userid` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_upgrlog_tim_ix` (`timemodified`), + KEY `mdl_upgrlog_typtim_ix` (`type`,`timemodified`), + KEY `mdl_upgrlog_use_ix` (`userid`) +) ENGINE=InnoDB AUTO_INCREMENT=1305 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Upgrade logging'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_upgrade_log` +-- + +LOCK TABLES `mdl_upgrade_log` WRITE; +/*!40000 ALTER TABLE `mdl_upgrade_log` DISABLE KEYS */; +INSERT INTO `mdl_upgrade_log` VALUES (1,0,'core','2020110901.04','2020110901.04','Upgrade savepoint reached',NULL,'',0,1619623687),(2,0,'core','2020110901.04','2020110901.04','Core installed',NULL,'',0,1619623694),(3,0,'antivirus_clamav',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623694),(4,0,'antivirus_clamav','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623694),(5,0,'antivirus_clamav','2020110900','2020110900','Plugin installed',NULL,'',0,1619623694),(6,0,'availability_completion',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623694),(7,0,'availability_completion','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623694),(8,0,'availability_completion','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(9,0,'availability_date',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(10,0,'availability_date','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(11,0,'availability_date','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(12,0,'availability_grade',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(13,0,'availability_grade','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(14,0,'availability_grade','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(15,0,'availability_group',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(16,0,'availability_group','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(17,0,'availability_group','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(18,0,'availability_grouping',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(19,0,'availability_grouping','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(20,0,'availability_grouping','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(21,0,'availability_profile',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(22,0,'availability_profile','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(23,0,'availability_profile','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(24,0,'qtype_calculated',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(25,0,'qtype_calculated','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(26,0,'qtype_calculated','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(27,0,'qtype_calculatedmulti',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(28,0,'qtype_calculatedmulti','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(29,0,'qtype_calculatedmulti','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(30,0,'qtype_calculatedsimple',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(31,0,'qtype_calculatedsimple','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(32,0,'qtype_calculatedsimple','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(33,0,'qtype_ddimageortext',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(34,0,'qtype_ddimageortext','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(35,0,'qtype_ddimageortext','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(36,0,'qtype_ddmarker',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(37,0,'qtype_ddmarker','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(38,0,'qtype_ddmarker','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(39,0,'qtype_ddwtos',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(40,0,'qtype_ddwtos','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(41,0,'qtype_ddwtos','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(42,0,'qtype_description',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(43,0,'qtype_description','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(44,0,'qtype_description','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(45,0,'qtype_essay',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(46,0,'qtype_essay','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(47,0,'qtype_essay','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(48,0,'qtype_gapselect',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(49,0,'qtype_gapselect','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(50,0,'qtype_gapselect','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(51,0,'qtype_match',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(52,0,'qtype_match','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(53,0,'qtype_match','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(54,0,'qtype_missingtype',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(55,0,'qtype_missingtype','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(56,0,'qtype_missingtype','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(57,0,'qtype_multianswer',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(58,0,'qtype_multianswer','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(59,0,'qtype_multianswer','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(60,0,'qtype_multichoice',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(61,0,'qtype_multichoice','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(62,0,'qtype_multichoice','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(63,0,'qtype_numerical',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(64,0,'qtype_numerical','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(65,0,'qtype_numerical','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(66,0,'qtype_random',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(67,0,'qtype_random','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(68,0,'qtype_random','2020110900','2020110900','Plugin installed',NULL,'',0,1619623696),(69,0,'qtype_randomsamatch',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623696),(70,0,'qtype_randomsamatch','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623696),(71,0,'qtype_randomsamatch','2020110900','2020110900','Plugin installed',NULL,'',0,1619623696),(72,0,'qtype_shortanswer',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623696),(73,0,'qtype_shortanswer','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623696),(74,0,'qtype_shortanswer','2020110900','2020110900','Plugin installed',NULL,'',0,1619623696),(75,0,'qtype_truefalse',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623696),(76,0,'qtype_truefalse','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623696),(77,0,'qtype_truefalse','2020110900','2020110900','Plugin installed',NULL,'',0,1619623696),(78,0,'mod_assign',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623696),(79,0,'mod_assign','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623696),(80,0,'mod_assign','2020110900','2020110900','Plugin installed',NULL,'',0,1619623696),(81,0,'mod_assignment',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623696),(82,0,'mod_assignment','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623696),(83,0,'mod_assignment','2020110900','2020110900','Plugin installed',NULL,'',0,1619623696),(84,0,'mod_book',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623696),(85,0,'mod_book','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623697),(86,0,'mod_book','2020110900','2020110900','Plugin installed',NULL,'',0,1619623697),(87,0,'mod_chat',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623697),(88,0,'mod_chat','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623697),(89,0,'mod_chat','2020110900','2020110900','Plugin installed',NULL,'',0,1619623697),(90,0,'mod_choice',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623697),(91,0,'mod_choice','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623697),(92,0,'mod_choice','2020110900','2020110900','Plugin installed',NULL,'',0,1619623697),(93,0,'mod_data',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623697),(94,0,'mod_data','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623697),(95,0,'mod_data','2020110900','2020110900','Plugin installed',NULL,'',0,1619623698),(96,0,'mod_feedback',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623698),(97,0,'mod_feedback','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623698),(98,0,'mod_feedback','2020110900','2020110900','Plugin installed',NULL,'',0,1619623698),(99,0,'mod_folder',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623698),(100,0,'mod_folder','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623698),(101,0,'mod_folder','2020110900','2020110900','Plugin installed',NULL,'',0,1619623698),(102,0,'mod_forum',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623698),(103,0,'mod_forum','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623699),(104,0,'mod_forum','2020110900','2020110900','Plugin installed',NULL,'',0,1619623700),(105,0,'mod_glossary',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623700),(106,0,'mod_glossary','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623700),(107,0,'mod_glossary','2020110900','2020110900','Plugin installed',NULL,'',0,1619623700),(108,0,'mod_h5pactivity',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623700),(109,0,'mod_h5pactivity','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623700),(110,0,'mod_h5pactivity','2020110900','2020110900','Plugin installed',NULL,'',0,1619623701),(111,0,'mod_imscp',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623701),(112,0,'mod_imscp','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623701),(113,0,'mod_imscp','2020110900','2020110900','Plugin installed',NULL,'',0,1619623701),(114,0,'mod_label',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623701),(115,0,'mod_label','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623701),(116,0,'mod_label','2020110900','2020110900','Plugin installed',NULL,'',0,1619623701),(117,0,'mod_lesson',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623701),(118,0,'mod_lesson','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623701),(119,0,'mod_lesson','2020110900','2020110900','Plugin installed',NULL,'',0,1619623701),(120,0,'mod_lti',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623701),(121,0,'mod_lti','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623701),(122,0,'mod_lti','2020110900','2020110900','Plugin installed',NULL,'',0,1619623702),(123,0,'mod_page',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623702),(124,0,'mod_page','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623702),(125,0,'mod_page','2020110900','2020110900','Plugin installed',NULL,'',0,1619623702),(126,0,'mod_quiz',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623702),(127,0,'mod_quiz','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623702),(128,0,'mod_quiz','2020110900','2020110900','Plugin installed',NULL,'',0,1619623702),(129,0,'mod_resource',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623702),(130,0,'mod_resource','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623702),(131,0,'mod_resource','2020110900','2020110900','Plugin installed',NULL,'',0,1619623702),(132,0,'mod_scorm',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623702),(133,0,'mod_scorm','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623702),(134,0,'mod_scorm','2020110900','2020110900','Plugin installed',NULL,'',0,1619623703),(135,0,'mod_survey',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623703),(136,0,'mod_survey','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623703),(137,0,'mod_survey','2020110900','2020110900','Plugin installed',NULL,'',0,1619623703),(138,0,'mod_url',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623703),(139,0,'mod_url','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623703),(140,0,'mod_url','2020110900','2020110900','Plugin installed',NULL,'',0,1619623703),(141,0,'mod_wiki',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623703),(142,0,'mod_wiki','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623703),(143,0,'mod_wiki','2020110900','2020110900','Plugin installed',NULL,'',0,1619623704),(144,0,'mod_workshop',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623704),(145,0,'mod_workshop','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623704),(146,0,'mod_workshop','2020110900','2020110900','Plugin installed',NULL,'',0,1619623704),(147,0,'auth_cas',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623704),(148,0,'auth_cas','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623704),(149,0,'auth_cas','2020110900','2020110900','Plugin installed',NULL,'',0,1619623704),(150,0,'auth_db',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623704),(151,0,'auth_db','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623704),(152,0,'auth_db','2020110900','2020110900','Plugin installed',NULL,'',0,1619623704),(153,0,'auth_email',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623704),(154,0,'auth_email','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623704),(155,0,'auth_email','2020110900','2020110900','Plugin installed',NULL,'',0,1619623704),(156,0,'auth_ldap',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623704),(157,0,'auth_ldap','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623704),(158,0,'auth_ldap','2020110900','2020110900','Plugin installed',NULL,'',0,1619623704),(159,0,'auth_lti',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623704),(160,0,'auth_lti','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623704),(161,0,'auth_lti','2020110900','2020110900','Plugin installed',NULL,'',0,1619623704),(162,0,'auth_manual',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623704),(163,0,'auth_manual','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623704),(164,0,'auth_manual','2020110900','2020110900','Plugin installed',NULL,'',0,1619623704),(165,0,'auth_mnet',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623704),(166,0,'auth_mnet','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623704),(167,0,'auth_mnet','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(168,0,'auth_nologin',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(169,0,'auth_nologin','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(170,0,'auth_nologin','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(171,0,'auth_none',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(172,0,'auth_none','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(173,0,'auth_none','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(174,0,'auth_oauth2',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(175,0,'auth_oauth2','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(176,0,'auth_oauth2','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(177,0,'auth_shibboleth',NULL,'2020110901','Starting plugin installation',NULL,'',0,1619623705),(178,0,'auth_shibboleth','2020110901','2020110901','Upgrade savepoint reached',NULL,'',0,1619623705),(179,0,'auth_shibboleth','2020110901','2020110901','Plugin installed',NULL,'',0,1619623705),(180,0,'auth_webservice',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(181,0,'auth_webservice','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(182,0,'auth_webservice','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(183,0,'calendartype_gregorian',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(184,0,'calendartype_gregorian','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(185,0,'calendartype_gregorian','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(186,0,'customfield_checkbox',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(187,0,'customfield_checkbox','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(188,0,'customfield_checkbox','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(189,0,'customfield_date',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(190,0,'customfield_date','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(191,0,'customfield_date','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(192,0,'customfield_select',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(193,0,'customfield_select','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(194,0,'customfield_select','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(195,0,'customfield_text',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(196,0,'customfield_text','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(197,0,'customfield_text','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(198,0,'customfield_textarea',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(199,0,'customfield_textarea','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(200,0,'customfield_textarea','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(201,0,'enrol_category',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(202,0,'enrol_category','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(203,0,'enrol_category','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(204,0,'enrol_cohort',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(205,0,'enrol_cohort','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(206,0,'enrol_cohort','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(207,0,'enrol_database',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(208,0,'enrol_database','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(209,0,'enrol_database','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(210,0,'enrol_fee',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(211,0,'enrol_fee','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(212,0,'enrol_fee','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(213,0,'enrol_flatfile',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(214,0,'enrol_flatfile','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(215,0,'enrol_flatfile','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(216,0,'enrol_guest',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(217,0,'enrol_guest','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(218,0,'enrol_guest','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(219,0,'enrol_imsenterprise',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(220,0,'enrol_imsenterprise','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(221,0,'enrol_imsenterprise','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(222,0,'enrol_ldap',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(223,0,'enrol_ldap','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(224,0,'enrol_ldap','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(225,0,'enrol_lti',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(226,0,'enrol_lti','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623706),(227,0,'enrol_lti','2020110900','2020110900','Plugin installed',NULL,'',0,1619623706),(228,0,'enrol_manual',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623706),(229,0,'enrol_manual','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623706),(230,0,'enrol_manual','2020110900','2020110900','Plugin installed',NULL,'',0,1619623706),(231,0,'enrol_meta',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623706),(232,0,'enrol_meta','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623706),(233,0,'enrol_meta','2020110900','2020110900','Plugin installed',NULL,'',0,1619623706),(234,0,'enrol_mnet',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623706),(235,0,'enrol_mnet','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623706),(236,0,'enrol_mnet','2020110900','2020110900','Plugin installed',NULL,'',0,1619623706),(237,0,'enrol_paypal',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623706),(238,0,'enrol_paypal','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623706),(239,0,'enrol_paypal','2020110900','2020110900','Plugin installed',NULL,'',0,1619623706),(240,0,'enrol_self',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623706),(241,0,'enrol_self','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623706),(242,0,'enrol_self','2020110900','2020110900','Plugin installed',NULL,'',0,1619623706),(243,0,'message_airnotifier',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623706),(244,0,'message_airnotifier','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623706),(245,0,'message_airnotifier','2020110900','2020110900','Plugin installed',NULL,'',0,1619623706),(246,0,'message_email',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623706),(247,0,'message_email','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623706),(248,0,'message_email','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(249,0,'message_jabber',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(250,0,'message_jabber','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(251,0,'message_jabber','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(252,0,'message_popup',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(253,0,'message_popup','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(254,0,'message_popup','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(255,0,'block_activity_modules',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(256,0,'block_activity_modules','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(257,0,'block_activity_modules','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(258,0,'block_activity_results',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(259,0,'block_activity_results','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(260,0,'block_activity_results','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(261,0,'block_admin_bookmarks',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(262,0,'block_admin_bookmarks','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(263,0,'block_admin_bookmarks','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(264,0,'block_badges',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(265,0,'block_badges','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(266,0,'block_badges','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(267,0,'block_blog_menu',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(268,0,'block_blog_menu','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(269,0,'block_blog_menu','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(270,0,'block_blog_recent',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(271,0,'block_blog_recent','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(272,0,'block_blog_recent','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(273,0,'block_blog_tags',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(274,0,'block_blog_tags','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(275,0,'block_blog_tags','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(276,0,'block_calendar_month',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(277,0,'block_calendar_month','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(278,0,'block_calendar_month','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(279,0,'block_calendar_upcoming',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(280,0,'block_calendar_upcoming','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(281,0,'block_calendar_upcoming','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(282,0,'block_comments',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(283,0,'block_comments','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(284,0,'block_comments','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(285,0,'block_completionstatus',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(286,0,'block_completionstatus','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(287,0,'block_completionstatus','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(288,0,'block_course_list',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(289,0,'block_course_list','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(290,0,'block_course_list','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(291,0,'block_course_summary',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(292,0,'block_course_summary','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(293,0,'block_course_summary','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(294,0,'block_feedback',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(295,0,'block_feedback','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(296,0,'block_feedback','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(297,0,'block_globalsearch',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(298,0,'block_globalsearch','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(299,0,'block_globalsearch','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(300,0,'block_glossary_random',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(301,0,'block_glossary_random','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(302,0,'block_glossary_random','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(303,0,'block_html',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(304,0,'block_html','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(305,0,'block_html','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(306,0,'block_login',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(307,0,'block_login','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(308,0,'block_login','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(309,0,'block_lp',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(310,0,'block_lp','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(311,0,'block_lp','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(312,0,'block_mentees',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(313,0,'block_mentees','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(314,0,'block_mentees','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(315,0,'block_mnet_hosts',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(316,0,'block_mnet_hosts','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(317,0,'block_mnet_hosts','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(318,0,'block_myoverview',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(319,0,'block_myoverview','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(320,0,'block_myoverview','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(321,0,'block_myprofile',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(322,0,'block_myprofile','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(323,0,'block_myprofile','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(324,0,'block_navigation',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(325,0,'block_navigation','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(326,0,'block_navigation','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(327,0,'block_news_items',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(328,0,'block_news_items','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(329,0,'block_news_items','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(330,0,'block_online_users',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(331,0,'block_online_users','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(332,0,'block_online_users','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(333,0,'block_private_files',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(334,0,'block_private_files','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(335,0,'block_private_files','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(336,0,'block_quiz_results',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(337,0,'block_quiz_results','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(338,0,'block_quiz_results','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(339,0,'block_recent_activity',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(340,0,'block_recent_activity','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(341,0,'block_recent_activity','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(342,0,'block_recentlyaccessedcourses',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(343,0,'block_recentlyaccessedcourses','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(344,0,'block_recentlyaccessedcourses','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(345,0,'block_recentlyaccesseditems',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(346,0,'block_recentlyaccesseditems','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(347,0,'block_recentlyaccesseditems','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(348,0,'block_rss_client',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(349,0,'block_rss_client','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(350,0,'block_rss_client','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(351,0,'block_search_forums',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(352,0,'block_search_forums','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(353,0,'block_search_forums','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(354,0,'block_section_links',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(355,0,'block_section_links','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(356,0,'block_section_links','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(357,0,'block_selfcompletion',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(358,0,'block_selfcompletion','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(359,0,'block_selfcompletion','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(360,0,'block_settings',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(361,0,'block_settings','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(362,0,'block_settings','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(363,0,'block_site_main_menu',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(364,0,'block_site_main_menu','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(365,0,'block_site_main_menu','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(366,0,'block_social_activities',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(367,0,'block_social_activities','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(368,0,'block_social_activities','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(369,0,'block_starredcourses',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(370,0,'block_starredcourses','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(371,0,'block_starredcourses','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(372,0,'block_tag_flickr',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(373,0,'block_tag_flickr','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(374,0,'block_tag_flickr','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(375,0,'block_tag_youtube',NULL,'2020110901','Starting plugin installation',NULL,'',0,1619623709),(376,0,'block_tag_youtube','2020110901','2020110901','Upgrade savepoint reached',NULL,'',0,1619623709),(377,0,'block_tag_youtube','2020110901','2020110901','Plugin installed',NULL,'',0,1619623709),(378,0,'block_tags',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(379,0,'block_tags','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(380,0,'block_tags','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(381,0,'block_timeline',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(382,0,'block_timeline','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(383,0,'block_timeline','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(384,0,'media_html5audio',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(385,0,'media_html5audio','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(386,0,'media_html5audio','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(387,0,'media_html5video',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(388,0,'media_html5video','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(389,0,'media_html5video','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(390,0,'media_swf',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(391,0,'media_swf','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(392,0,'media_swf','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(393,0,'media_videojs',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(394,0,'media_videojs','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(395,0,'media_videojs','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(396,0,'media_vimeo',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(397,0,'media_vimeo','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(398,0,'media_vimeo','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(399,0,'media_youtube',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(400,0,'media_youtube','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(401,0,'media_youtube','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(402,0,'filter_activitynames',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(403,0,'filter_activitynames','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(404,0,'filter_activitynames','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(405,0,'filter_algebra',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(406,0,'filter_algebra','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(407,0,'filter_algebra','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(408,0,'filter_censor',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(409,0,'filter_censor','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(410,0,'filter_censor','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(411,0,'filter_data',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(412,0,'filter_data','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(413,0,'filter_data','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(414,0,'filter_displayh5p',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(415,0,'filter_displayh5p','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(416,0,'filter_displayh5p','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(417,0,'filter_emailprotect',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(418,0,'filter_emailprotect','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(419,0,'filter_emailprotect','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(420,0,'filter_emoticon',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(421,0,'filter_emoticon','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(422,0,'filter_emoticon','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(423,0,'filter_glossary',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(424,0,'filter_glossary','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(425,0,'filter_glossary','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(426,0,'filter_mathjaxloader',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(427,0,'filter_mathjaxloader','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(428,0,'filter_mathjaxloader','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(429,0,'filter_mediaplugin',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(430,0,'filter_mediaplugin','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(431,0,'filter_mediaplugin','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(432,0,'filter_multilang',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(433,0,'filter_multilang','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(434,0,'filter_multilang','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(435,0,'filter_tex',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(436,0,'filter_tex','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(437,0,'filter_tex','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(438,0,'filter_tidy',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(439,0,'filter_tidy','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(440,0,'filter_tidy','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(441,0,'filter_urltolink',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(442,0,'filter_urltolink','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(443,0,'filter_urltolink','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(444,0,'editor_atto',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(445,0,'editor_atto','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(446,0,'editor_atto','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(447,0,'editor_textarea',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(448,0,'editor_textarea','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(449,0,'editor_textarea','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(450,0,'editor_tinymce',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(451,0,'editor_tinymce','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(452,0,'editor_tinymce','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(453,0,'format_singleactivity',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(454,0,'format_singleactivity','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(455,0,'format_singleactivity','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(456,0,'format_social',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(457,0,'format_social','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(458,0,'format_social','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(459,0,'format_topics',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(460,0,'format_topics','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(461,0,'format_topics','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(462,0,'format_weeks',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(463,0,'format_weeks','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(464,0,'format_weeks','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(465,0,'dataformat_csv',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(466,0,'dataformat_csv','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(467,0,'dataformat_csv','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(468,0,'dataformat_excel',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(469,0,'dataformat_excel','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(470,0,'dataformat_excel','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(471,0,'dataformat_html',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(472,0,'dataformat_html','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(473,0,'dataformat_html','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(474,0,'dataformat_json',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(475,0,'dataformat_json','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(476,0,'dataformat_json','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(477,0,'dataformat_ods',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(478,0,'dataformat_ods','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(479,0,'dataformat_ods','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(480,0,'dataformat_pdf',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(481,0,'dataformat_pdf','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(482,0,'dataformat_pdf','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(483,0,'profilefield_checkbox',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(484,0,'profilefield_checkbox','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(485,0,'profilefield_checkbox','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(486,0,'profilefield_datetime',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(487,0,'profilefield_datetime','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(488,0,'profilefield_datetime','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(489,0,'profilefield_menu',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(490,0,'profilefield_menu','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(491,0,'profilefield_menu','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(492,0,'profilefield_text',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(493,0,'profilefield_text','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(494,0,'profilefield_text','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(495,0,'profilefield_textarea',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(496,0,'profilefield_textarea','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(497,0,'profilefield_textarea','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(498,0,'report_backups',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(499,0,'report_backups','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(500,0,'report_backups','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(501,0,'report_competency',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(502,0,'report_competency','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(503,0,'report_competency','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(504,0,'report_completion',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(505,0,'report_completion','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(506,0,'report_completion','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(507,0,'report_configlog',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(508,0,'report_configlog','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(509,0,'report_configlog','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(510,0,'report_courseoverview',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(511,0,'report_courseoverview','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(512,0,'report_courseoverview','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(513,0,'report_eventlist',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(514,0,'report_eventlist','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(515,0,'report_eventlist','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(516,0,'report_infectedfiles',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(517,0,'report_infectedfiles','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(518,0,'report_infectedfiles','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(519,0,'report_insights',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(520,0,'report_insights','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(521,0,'report_insights','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(522,0,'report_log',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(523,0,'report_log','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(524,0,'report_log','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(525,0,'report_loglive',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(526,0,'report_loglive','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(527,0,'report_loglive','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(528,0,'report_outline',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(529,0,'report_outline','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(530,0,'report_outline','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(531,0,'report_participation',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(532,0,'report_participation','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(533,0,'report_participation','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(534,0,'report_performance',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(535,0,'report_performance','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(536,0,'report_performance','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(537,0,'report_progress',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(538,0,'report_progress','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(539,0,'report_progress','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(540,0,'report_questioninstances',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(541,0,'report_questioninstances','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(542,0,'report_questioninstances','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(543,0,'report_security',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(544,0,'report_security','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(545,0,'report_security','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(546,0,'report_stats',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(547,0,'report_stats','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(548,0,'report_stats','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(549,0,'report_status',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(550,0,'report_status','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(551,0,'report_status','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(552,0,'report_usersessions',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(553,0,'report_usersessions','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(554,0,'report_usersessions','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(555,0,'gradeexport_ods',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(556,0,'gradeexport_ods','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(557,0,'gradeexport_ods','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(558,0,'gradeexport_txt',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(559,0,'gradeexport_txt','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(560,0,'gradeexport_txt','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(561,0,'gradeexport_xls',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(562,0,'gradeexport_xls','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(563,0,'gradeexport_xls','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(564,0,'gradeexport_xml',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(565,0,'gradeexport_xml','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(566,0,'gradeexport_xml','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(567,0,'gradeimport_csv',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(568,0,'gradeimport_csv','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(569,0,'gradeimport_csv','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(570,0,'gradeimport_direct',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(571,0,'gradeimport_direct','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(572,0,'gradeimport_direct','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(573,0,'gradeimport_xml',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(574,0,'gradeimport_xml','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(575,0,'gradeimport_xml','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(576,0,'gradereport_grader',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(577,0,'gradereport_grader','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(578,0,'gradereport_grader','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(579,0,'gradereport_history',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(580,0,'gradereport_history','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(581,0,'gradereport_history','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(582,0,'gradereport_outcomes',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(583,0,'gradereport_outcomes','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(584,0,'gradereport_outcomes','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(585,0,'gradereport_overview',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(586,0,'gradereport_overview','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(587,0,'gradereport_overview','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(588,0,'gradereport_singleview',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(589,0,'gradereport_singleview','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(590,0,'gradereport_singleview','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(591,0,'gradereport_user',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(592,0,'gradereport_user','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(593,0,'gradereport_user','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(594,0,'gradingform_guide',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(595,0,'gradingform_guide','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(596,0,'gradingform_guide','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(597,0,'gradingform_rubric',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(598,0,'gradingform_rubric','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(599,0,'gradingform_rubric','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(600,0,'mlbackend_php',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(601,0,'mlbackend_php','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(602,0,'mlbackend_php','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(603,0,'mlbackend_python',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(604,0,'mlbackend_python','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(605,0,'mlbackend_python','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(606,0,'mnetservice_enrol',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(607,0,'mnetservice_enrol','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(608,0,'mnetservice_enrol','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(609,0,'webservice_rest',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(610,0,'webservice_rest','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(611,0,'webservice_rest','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(612,0,'webservice_soap',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(613,0,'webservice_soap','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(614,0,'webservice_soap','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(615,0,'webservice_xmlrpc',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(616,0,'webservice_xmlrpc','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(617,0,'webservice_xmlrpc','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(618,0,'repository_areafiles',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(619,0,'repository_areafiles','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(620,0,'repository_areafiles','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(621,0,'repository_boxnet',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(622,0,'repository_boxnet','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(623,0,'repository_boxnet','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(624,0,'repository_contentbank',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(625,0,'repository_contentbank','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(626,0,'repository_contentbank','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(627,0,'repository_coursefiles',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(628,0,'repository_coursefiles','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(629,0,'repository_coursefiles','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(630,0,'repository_dropbox',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(631,0,'repository_dropbox','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(632,0,'repository_dropbox','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(633,0,'repository_equella',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(634,0,'repository_equella','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(635,0,'repository_equella','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(636,0,'repository_filesystem',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(637,0,'repository_filesystem','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(638,0,'repository_filesystem','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(639,0,'repository_flickr',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(640,0,'repository_flickr','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(641,0,'repository_flickr','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(642,0,'repository_flickr_public',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(643,0,'repository_flickr_public','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(644,0,'repository_flickr_public','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(645,0,'repository_googledocs',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(646,0,'repository_googledocs','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(647,0,'repository_googledocs','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(648,0,'repository_local',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(649,0,'repository_local','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(650,0,'repository_local','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(651,0,'repository_merlot',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(652,0,'repository_merlot','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(653,0,'repository_merlot','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(654,0,'repository_nextcloud',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(655,0,'repository_nextcloud','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(656,0,'repository_nextcloud','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(657,0,'repository_onedrive',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(658,0,'repository_onedrive','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(659,0,'repository_onedrive','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(660,0,'repository_picasa',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(661,0,'repository_picasa','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(662,0,'repository_picasa','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(663,0,'repository_recent',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(664,0,'repository_recent','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(665,0,'repository_recent','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(666,0,'repository_s3',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(667,0,'repository_s3','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(668,0,'repository_s3','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(669,0,'repository_skydrive',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(670,0,'repository_skydrive','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(671,0,'repository_skydrive','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(672,0,'repository_upload',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(673,0,'repository_upload','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(674,0,'repository_upload','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(675,0,'repository_url',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(676,0,'repository_url','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(677,0,'repository_url','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(678,0,'repository_user',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(679,0,'repository_user','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(680,0,'repository_user','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(681,0,'repository_webdav',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(682,0,'repository_webdav','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(683,0,'repository_webdav','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(684,0,'repository_wikimedia',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(685,0,'repository_wikimedia','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(686,0,'repository_wikimedia','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(687,0,'repository_youtube',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(688,0,'repository_youtube','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(689,0,'repository_youtube','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(690,0,'portfolio_boxnet',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(691,0,'portfolio_boxnet','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(692,0,'portfolio_boxnet','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(693,0,'portfolio_download',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(694,0,'portfolio_download','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(695,0,'portfolio_download','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(696,0,'portfolio_flickr',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(697,0,'portfolio_flickr','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(698,0,'portfolio_flickr','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(699,0,'portfolio_googledocs',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(700,0,'portfolio_googledocs','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(701,0,'portfolio_googledocs','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(702,0,'portfolio_mahara',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(703,0,'portfolio_mahara','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(704,0,'portfolio_mahara','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(705,0,'portfolio_picasa',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(706,0,'portfolio_picasa','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(707,0,'portfolio_picasa','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(708,0,'search_simpledb',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(709,0,'search_simpledb','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(710,0,'search_simpledb','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(711,0,'search_solr',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(712,0,'search_solr','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(713,0,'search_solr','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(714,0,'qbehaviour_adaptive',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(715,0,'qbehaviour_adaptive','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(716,0,'qbehaviour_adaptive','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(717,0,'qbehaviour_adaptivenopenalty',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(718,0,'qbehaviour_adaptivenopenalty','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(719,0,'qbehaviour_adaptivenopenalty','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(720,0,'qbehaviour_deferredcbm',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(721,0,'qbehaviour_deferredcbm','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(722,0,'qbehaviour_deferredcbm','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(723,0,'qbehaviour_deferredfeedback',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(724,0,'qbehaviour_deferredfeedback','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(725,0,'qbehaviour_deferredfeedback','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(726,0,'qbehaviour_immediatecbm',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(727,0,'qbehaviour_immediatecbm','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(728,0,'qbehaviour_immediatecbm','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(729,0,'qbehaviour_immediatefeedback',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(730,0,'qbehaviour_immediatefeedback','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(731,0,'qbehaviour_immediatefeedback','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(732,0,'qbehaviour_informationitem',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(733,0,'qbehaviour_informationitem','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(734,0,'qbehaviour_informationitem','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(735,0,'qbehaviour_interactive',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(736,0,'qbehaviour_interactive','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(737,0,'qbehaviour_interactive','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(738,0,'qbehaviour_interactivecountback',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(739,0,'qbehaviour_interactivecountback','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(740,0,'qbehaviour_interactivecountback','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(741,0,'qbehaviour_manualgraded',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(742,0,'qbehaviour_manualgraded','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(743,0,'qbehaviour_manualgraded','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(744,0,'qbehaviour_missing',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(745,0,'qbehaviour_missing','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(746,0,'qbehaviour_missing','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(747,0,'qformat_aiken',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(748,0,'qformat_aiken','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(749,0,'qformat_aiken','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(750,0,'qformat_blackboard_six',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(751,0,'qformat_blackboard_six','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(752,0,'qformat_blackboard_six','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(753,0,'qformat_examview',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(754,0,'qformat_examview','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(755,0,'qformat_examview','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(756,0,'qformat_gift',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(757,0,'qformat_gift','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(758,0,'qformat_gift','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(759,0,'qformat_missingword',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(760,0,'qformat_missingword','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(761,0,'qformat_missingword','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(762,0,'qformat_multianswer',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(763,0,'qformat_multianswer','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(764,0,'qformat_multianswer','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(765,0,'qformat_webct',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(766,0,'qformat_webct','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(767,0,'qformat_webct','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(768,0,'qformat_xhtml',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(769,0,'qformat_xhtml','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(770,0,'qformat_xhtml','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(771,0,'qformat_xml',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(772,0,'qformat_xml','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(773,0,'qformat_xml','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(774,0,'tool_analytics',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(775,0,'tool_analytics','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(776,0,'tool_analytics','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(777,0,'tool_availabilityconditions',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(778,0,'tool_availabilityconditions','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(779,0,'tool_availabilityconditions','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(780,0,'tool_behat',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(781,0,'tool_behat','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(782,0,'tool_behat','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(783,0,'tool_capability',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(784,0,'tool_capability','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(785,0,'tool_capability','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(786,0,'tool_cohortroles',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(787,0,'tool_cohortroles','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(788,0,'tool_cohortroles','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(789,0,'tool_customlang',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(790,0,'tool_customlang','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(791,0,'tool_customlang','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(792,0,'tool_dataprivacy',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(793,0,'tool_dataprivacy','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(794,0,'tool_dataprivacy','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(795,0,'tool_dbtransfer',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(796,0,'tool_dbtransfer','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(797,0,'tool_dbtransfer','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(798,0,'tool_filetypes',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(799,0,'tool_filetypes','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(800,0,'tool_filetypes','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(801,0,'tool_generator',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(802,0,'tool_generator','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(803,0,'tool_generator','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(804,0,'tool_health',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(805,0,'tool_health','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(806,0,'tool_health','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(807,0,'tool_httpsreplace',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(808,0,'tool_httpsreplace','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(809,0,'tool_httpsreplace','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(810,0,'tool_innodb',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(811,0,'tool_innodb','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(812,0,'tool_innodb','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(813,0,'tool_installaddon',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(814,0,'tool_installaddon','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(815,0,'tool_installaddon','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(816,0,'tool_langimport',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(817,0,'tool_langimport','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(818,0,'tool_langimport','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(819,0,'tool_licensemanager',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(820,0,'tool_licensemanager','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(821,0,'tool_licensemanager','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(822,0,'tool_log',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(823,0,'tool_log','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(824,0,'tool_log','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(825,0,'tool_lp',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(826,0,'tool_lp','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(827,0,'tool_lp','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(828,0,'tool_lpimportcsv',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(829,0,'tool_lpimportcsv','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(830,0,'tool_lpimportcsv','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(831,0,'tool_lpmigrate',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(832,0,'tool_lpmigrate','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(833,0,'tool_lpmigrate','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(834,0,'tool_messageinbound',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(835,0,'tool_messageinbound','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(836,0,'tool_messageinbound','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(837,0,'tool_mobile',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(838,0,'tool_mobile','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(839,0,'tool_mobile','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(840,0,'tool_monitor',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(841,0,'tool_monitor','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(842,0,'tool_monitor','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(843,0,'tool_moodlenet',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(844,0,'tool_moodlenet','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(845,0,'tool_moodlenet','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(846,0,'tool_multilangupgrade',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(847,0,'tool_multilangupgrade','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(848,0,'tool_multilangupgrade','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(849,0,'tool_oauth2',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(850,0,'tool_oauth2','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(851,0,'tool_oauth2','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(852,0,'tool_phpunit',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(853,0,'tool_phpunit','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(854,0,'tool_phpunit','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(855,0,'tool_policy',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(856,0,'tool_policy','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(857,0,'tool_policy','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(858,0,'tool_profiling',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(859,0,'tool_profiling','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(860,0,'tool_profiling','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(861,0,'tool_recyclebin',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(862,0,'tool_recyclebin','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(863,0,'tool_recyclebin','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(864,0,'tool_replace',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(865,0,'tool_replace','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(866,0,'tool_replace','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(867,0,'tool_spamcleaner',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(868,0,'tool_spamcleaner','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(869,0,'tool_spamcleaner','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(870,0,'tool_task',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(871,0,'tool_task','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(872,0,'tool_task','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(873,0,'tool_templatelibrary',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(874,0,'tool_templatelibrary','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(875,0,'tool_templatelibrary','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(876,0,'tool_unsuproles',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(877,0,'tool_unsuproles','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(878,0,'tool_unsuproles','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(879,0,'tool_uploadcourse',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(880,0,'tool_uploadcourse','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(881,0,'tool_uploadcourse','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(882,0,'tool_uploaduser',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(883,0,'tool_uploaduser','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(884,0,'tool_uploaduser','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(885,0,'tool_usertours',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(886,0,'tool_usertours','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(887,0,'tool_usertours','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(888,0,'tool_xmldb',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(889,0,'tool_xmldb','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(890,0,'tool_xmldb','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(891,0,'cachestore_apcu',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(892,0,'cachestore_apcu','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(893,0,'cachestore_apcu','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(894,0,'cachestore_file',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(895,0,'cachestore_file','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(896,0,'cachestore_file','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(897,0,'cachestore_memcached',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(898,0,'cachestore_memcached','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(899,0,'cachestore_memcached','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(900,0,'cachestore_mongodb',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(901,0,'cachestore_mongodb','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(902,0,'cachestore_mongodb','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(903,0,'cachestore_redis',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(904,0,'cachestore_redis','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(905,0,'cachestore_redis','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(906,0,'cachestore_session',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(907,0,'cachestore_session','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(908,0,'cachestore_session','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(909,0,'cachestore_static',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(910,0,'cachestore_static','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(911,0,'cachestore_static','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(912,0,'cachelock_file',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(913,0,'cachelock_file','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(914,0,'cachelock_file','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(915,0,'fileconverter_googledrive',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(916,0,'fileconverter_googledrive','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(917,0,'fileconverter_googledrive','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(918,0,'fileconverter_unoconv',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(919,0,'fileconverter_unoconv','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(920,0,'fileconverter_unoconv','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(921,0,'contenttype_h5p',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(922,0,'contenttype_h5p','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(923,0,'contenttype_h5p','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(924,0,'theme_boost',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(925,0,'theme_boost','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(926,0,'theme_boost','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(927,0,'theme_classic',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(928,0,'theme_classic','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(929,0,'theme_classic','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(930,0,'local_chat_attachments',NULL,'10026','Starting plugin installation',NULL,'',0,1619623719),(931,0,'local_chat_attachments','10026','10026','Upgrade savepoint reached',NULL,'',0,1619623719),(932,0,'local_chat_attachments','10026','10026','Plugin installed',NULL,'',0,1619623719),(933,0,'h5plib_v124',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(934,0,'h5plib_v124','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(935,0,'h5plib_v124','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(936,0,'paygw_paypal',NULL,'2020110901','Starting plugin installation',NULL,'',0,1619623719),(937,0,'paygw_paypal','2020110901','2020110901','Upgrade savepoint reached',NULL,'',0,1619623719),(938,0,'paygw_paypal','2020110901','2020110901','Plugin installed',NULL,'',0,1619623719),(939,0,'assignsubmission_comments',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(940,0,'assignsubmission_comments','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(941,0,'assignsubmission_comments','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(942,0,'assignsubmission_file',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(943,0,'assignsubmission_file','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(944,0,'assignsubmission_file','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(945,0,'assignsubmission_onlinetext',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(946,0,'assignsubmission_onlinetext','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(947,0,'assignsubmission_onlinetext','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(948,0,'assignfeedback_comments',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(949,0,'assignfeedback_comments','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(950,0,'assignfeedback_comments','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(951,0,'assignfeedback_editpdf',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(952,0,'assignfeedback_editpdf','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(953,0,'assignfeedback_editpdf','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(954,0,'assignfeedback_file',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(955,0,'assignfeedback_file','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(956,0,'assignfeedback_file','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(957,0,'assignfeedback_offline',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(958,0,'assignfeedback_offline','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(959,0,'assignfeedback_offline','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(960,0,'assignment_offline',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(961,0,'assignment_offline','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(962,0,'assignment_offline','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(963,0,'assignment_online',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(964,0,'assignment_online','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(965,0,'assignment_online','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(966,0,'assignment_upload',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(967,0,'assignment_upload','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(968,0,'assignment_upload','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(969,0,'assignment_uploadsingle',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(970,0,'assignment_uploadsingle','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(971,0,'assignment_uploadsingle','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(972,0,'booktool_exportimscp',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(973,0,'booktool_exportimscp','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(974,0,'booktool_exportimscp','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(975,0,'booktool_importhtml',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(976,0,'booktool_importhtml','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(977,0,'booktool_importhtml','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(978,0,'booktool_print',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(979,0,'booktool_print','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(980,0,'booktool_print','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(981,0,'datafield_checkbox',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(982,0,'datafield_checkbox','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(983,0,'datafield_checkbox','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(984,0,'datafield_date',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(985,0,'datafield_date','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(986,0,'datafield_date','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(987,0,'datafield_file',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(988,0,'datafield_file','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(989,0,'datafield_file','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(990,0,'datafield_latlong',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(991,0,'datafield_latlong','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(992,0,'datafield_latlong','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(993,0,'datafield_menu',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(994,0,'datafield_menu','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(995,0,'datafield_menu','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(996,0,'datafield_multimenu',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(997,0,'datafield_multimenu','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(998,0,'datafield_multimenu','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(999,0,'datafield_number',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1000,0,'datafield_number','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1001,0,'datafield_number','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1002,0,'datafield_picture',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1003,0,'datafield_picture','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1004,0,'datafield_picture','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1005,0,'datafield_radiobutton',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1006,0,'datafield_radiobutton','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1007,0,'datafield_radiobutton','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1008,0,'datafield_text',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1009,0,'datafield_text','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1010,0,'datafield_text','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1011,0,'datafield_textarea',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1012,0,'datafield_textarea','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1013,0,'datafield_textarea','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1014,0,'datafield_url',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1015,0,'datafield_url','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1016,0,'datafield_url','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1017,0,'datapreset_imagegallery',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1018,0,'datapreset_imagegallery','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1019,0,'datapreset_imagegallery','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1020,0,'forumreport_summary',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1021,0,'forumreport_summary','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1022,0,'forumreport_summary','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1023,0,'ltiservice_basicoutcomes',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1024,0,'ltiservice_basicoutcomes','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1025,0,'ltiservice_basicoutcomes','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1026,0,'ltiservice_gradebookservices',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1027,0,'ltiservice_gradebookservices','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1028,0,'ltiservice_gradebookservices','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1029,0,'ltiservice_memberships',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1030,0,'ltiservice_memberships','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1031,0,'ltiservice_memberships','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1032,0,'ltiservice_profile',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1033,0,'ltiservice_profile','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1034,0,'ltiservice_profile','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1035,0,'ltiservice_toolproxy',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1036,0,'ltiservice_toolproxy','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1037,0,'ltiservice_toolproxy','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1038,0,'ltiservice_toolsettings',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1039,0,'ltiservice_toolsettings','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1040,0,'ltiservice_toolsettings','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1041,0,'quiz_grading',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1042,0,'quiz_grading','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1043,0,'quiz_grading','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1044,0,'quiz_overview',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1045,0,'quiz_overview','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1046,0,'quiz_overview','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1047,0,'quiz_responses',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1048,0,'quiz_responses','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1049,0,'quiz_responses','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1050,0,'quiz_statistics',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1051,0,'quiz_statistics','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1052,0,'quiz_statistics','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1053,0,'quizaccess_delaybetweenattempts',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1054,0,'quizaccess_delaybetweenattempts','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1055,0,'quizaccess_delaybetweenattempts','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1056,0,'quizaccess_ipaddress',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1057,0,'quizaccess_ipaddress','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1058,0,'quizaccess_ipaddress','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1059,0,'quizaccess_numattempts',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1060,0,'quizaccess_numattempts','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1061,0,'quizaccess_numattempts','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1062,0,'quizaccess_offlineattempts',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1063,0,'quizaccess_offlineattempts','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1064,0,'quizaccess_offlineattempts','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1065,0,'quizaccess_openclosedate',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1066,0,'quizaccess_openclosedate','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1067,0,'quizaccess_openclosedate','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1068,0,'quizaccess_password',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1069,0,'quizaccess_password','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1070,0,'quizaccess_password','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1071,0,'quizaccess_seb',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1072,0,'quizaccess_seb','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1073,0,'quizaccess_seb','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1074,0,'quizaccess_securewindow',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1075,0,'quizaccess_securewindow','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1076,0,'quizaccess_securewindow','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1077,0,'quizaccess_timelimit',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1078,0,'quizaccess_timelimit','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1079,0,'quizaccess_timelimit','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1080,0,'scormreport_basic',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1081,0,'scormreport_basic','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1082,0,'scormreport_basic','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1083,0,'scormreport_graphs',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1084,0,'scormreport_graphs','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1085,0,'scormreport_graphs','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1086,0,'scormreport_interactions',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1087,0,'scormreport_interactions','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1088,0,'scormreport_interactions','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1089,0,'scormreport_objectives',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1090,0,'scormreport_objectives','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1091,0,'scormreport_objectives','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1092,0,'workshopform_accumulative',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1093,0,'workshopform_accumulative','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1094,0,'workshopform_accumulative','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1095,0,'workshopform_comments',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1096,0,'workshopform_comments','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1097,0,'workshopform_comments','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1098,0,'workshopform_numerrors',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1099,0,'workshopform_numerrors','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1100,0,'workshopform_numerrors','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1101,0,'workshopform_rubric',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1102,0,'workshopform_rubric','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1103,0,'workshopform_rubric','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1104,0,'workshopallocation_manual',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1105,0,'workshopallocation_manual','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1106,0,'workshopallocation_manual','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1107,0,'workshopallocation_random',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1108,0,'workshopallocation_random','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1109,0,'workshopallocation_random','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1110,0,'workshopallocation_scheduled',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1111,0,'workshopallocation_scheduled','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1112,0,'workshopallocation_scheduled','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1113,0,'workshopeval_best',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1114,0,'workshopeval_best','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1115,0,'workshopeval_best','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1116,0,'atto_accessibilitychecker',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1117,0,'atto_accessibilitychecker','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1118,0,'atto_accessibilitychecker','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1119,0,'atto_accessibilityhelper',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1120,0,'atto_accessibilityhelper','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1121,0,'atto_accessibilityhelper','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1122,0,'atto_align',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1123,0,'atto_align','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1124,0,'atto_align','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1125,0,'atto_backcolor',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1126,0,'atto_backcolor','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1127,0,'atto_backcolor','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1128,0,'atto_bold',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1129,0,'atto_bold','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1130,0,'atto_bold','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1131,0,'atto_charmap',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1132,0,'atto_charmap','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1133,0,'atto_charmap','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1134,0,'atto_clear',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1135,0,'atto_clear','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1136,0,'atto_clear','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1137,0,'atto_collapse',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1138,0,'atto_collapse','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1139,0,'atto_collapse','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1140,0,'atto_emojipicker',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1141,0,'atto_emojipicker','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1142,0,'atto_emojipicker','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1143,0,'atto_emoticon',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1144,0,'atto_emoticon','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1145,0,'atto_emoticon','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1146,0,'atto_equation',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1147,0,'atto_equation','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1148,0,'atto_equation','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1149,0,'atto_fontcolor',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1150,0,'atto_fontcolor','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1151,0,'atto_fontcolor','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1152,0,'atto_h5p',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1153,0,'atto_h5p','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1154,0,'atto_h5p','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1155,0,'atto_html',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1156,0,'atto_html','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1157,0,'atto_html','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1158,0,'atto_image',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1159,0,'atto_image','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1160,0,'atto_image','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1161,0,'atto_indent',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1162,0,'atto_indent','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1163,0,'atto_indent','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1164,0,'atto_italic',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1165,0,'atto_italic','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1166,0,'atto_italic','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1167,0,'atto_link',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1168,0,'atto_link','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1169,0,'atto_link','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1170,0,'atto_managefiles',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1171,0,'atto_managefiles','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1172,0,'atto_managefiles','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1173,0,'atto_media',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1174,0,'atto_media','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1175,0,'atto_media','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1176,0,'atto_noautolink',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1177,0,'atto_noautolink','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1178,0,'atto_noautolink','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1179,0,'atto_orderedlist',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1180,0,'atto_orderedlist','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1181,0,'atto_orderedlist','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1182,0,'atto_recordrtc',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1183,0,'atto_recordrtc','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1184,0,'atto_recordrtc','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1185,0,'atto_rtl',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1186,0,'atto_rtl','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1187,0,'atto_rtl','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1188,0,'atto_strike',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1189,0,'atto_strike','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1190,0,'atto_strike','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1191,0,'atto_subscript',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1192,0,'atto_subscript','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1193,0,'atto_subscript','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1194,0,'atto_superscript',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1195,0,'atto_superscript','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1196,0,'atto_superscript','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1197,0,'atto_table',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1198,0,'atto_table','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1199,0,'atto_table','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1200,0,'atto_title',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1201,0,'atto_title','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1202,0,'atto_title','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1203,0,'atto_underline',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1204,0,'atto_underline','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1205,0,'atto_underline','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1206,0,'atto_undo',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1207,0,'atto_undo','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1208,0,'atto_undo','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1209,0,'atto_unorderedlist',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1210,0,'atto_unorderedlist','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1211,0,'atto_unorderedlist','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1212,0,'tinymce_ctrlhelp',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1213,0,'tinymce_ctrlhelp','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1214,0,'tinymce_ctrlhelp','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1215,0,'tinymce_managefiles',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1216,0,'tinymce_managefiles','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1217,0,'tinymce_managefiles','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1218,0,'tinymce_moodleemoticon',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1219,0,'tinymce_moodleemoticon','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1220,0,'tinymce_moodleemoticon','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1221,0,'tinymce_moodleimage',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1222,0,'tinymce_moodleimage','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1223,0,'tinymce_moodleimage','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1224,0,'tinymce_moodlemedia',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1225,0,'tinymce_moodlemedia','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1226,0,'tinymce_moodlemedia','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1227,0,'tinymce_moodlenolink',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1228,0,'tinymce_moodlenolink','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1229,0,'tinymce_moodlenolink','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1230,0,'tinymce_pdw',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1231,0,'tinymce_pdw','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1232,0,'tinymce_pdw','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1233,0,'tinymce_spellchecker',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1234,0,'tinymce_spellchecker','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1235,0,'tinymce_spellchecker','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1236,0,'tinymce_wrap',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1237,0,'tinymce_wrap','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1238,0,'tinymce_wrap','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1239,0,'logstore_database',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1240,0,'logstore_database','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1241,0,'logstore_database','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1242,0,'logstore_legacy',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1243,0,'logstore_legacy','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1244,0,'logstore_legacy','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1245,0,'logstore_standard',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1246,0,'logstore_standard','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1247,0,'logstore_standard','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1248,0,'mod_customcert',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625659),(1249,0,'mod_customcert','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625659),(1250,0,'mod_customcert','2020110900','2020110900','Plugin installed',NULL,'',2,1619625659),(1251,0,'customcertelement_bgimage',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1252,0,'customcertelement_bgimage','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1253,0,'customcertelement_bgimage','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1254,0,'customcertelement_border',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1255,0,'customcertelement_border','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1256,0,'customcertelement_border','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1257,0,'customcertelement_categoryname',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1258,0,'customcertelement_categoryname','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1259,0,'customcertelement_categoryname','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1260,0,'customcertelement_code',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1261,0,'customcertelement_code','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1262,0,'customcertelement_code','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1263,0,'customcertelement_coursefield',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1264,0,'customcertelement_coursefield','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1265,0,'customcertelement_coursefield','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1266,0,'customcertelement_coursename',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1267,0,'customcertelement_coursename','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1268,0,'customcertelement_coursename','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1269,0,'customcertelement_date',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1270,0,'customcertelement_date','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1271,0,'customcertelement_date','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1272,0,'customcertelement_daterange',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1273,0,'customcertelement_daterange','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1274,0,'customcertelement_daterange','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1275,0,'customcertelement_digitalsignature',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1276,0,'customcertelement_digitalsignature','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1277,0,'customcertelement_digitalsignature','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1278,0,'customcertelement_grade',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1279,0,'customcertelement_grade','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1280,0,'customcertelement_grade','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1281,0,'customcertelement_gradeitemname',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1282,0,'customcertelement_gradeitemname','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1283,0,'customcertelement_gradeitemname','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1284,0,'customcertelement_image',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1285,0,'customcertelement_image','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1286,0,'customcertelement_image','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1287,0,'customcertelement_qrcode',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1288,0,'customcertelement_qrcode','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1289,0,'customcertelement_qrcode','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1290,0,'customcertelement_studentname',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1291,0,'customcertelement_studentname','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1292,0,'customcertelement_studentname','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1293,0,'customcertelement_teachername',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1294,0,'customcertelement_teachername','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1295,0,'customcertelement_teachername','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1296,0,'customcertelement_text',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1297,0,'customcertelement_text','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1298,0,'customcertelement_text','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1299,0,'customcertelement_userfield',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1300,0,'customcertelement_userfield','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1301,0,'customcertelement_userfield','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1302,0,'customcertelement_userpicture',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1303,0,'customcertelement_userpicture','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1304,0,'customcertelement_userpicture','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660); +/*!40000 ALTER TABLE `mdl_upgrade_log` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_url` +-- + +DROP TABLE IF EXISTS `mdl_url`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_url` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `introformat` smallint(4) NOT NULL DEFAULT 0, + `externalurl` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `display` smallint(4) NOT NULL DEFAULT 0, + `displayoptions` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `parameters` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_url_cou_ix` (`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='each record is one url resource'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_url` +-- + +LOCK TABLES `mdl_url` WRITE; +/*!40000 ALTER TABLE `mdl_url` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_url` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_user` +-- + +DROP TABLE IF EXISTS `mdl_user`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_user` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `auth` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'manual', + `confirmed` tinyint(1) NOT NULL DEFAULT 0, + `policyagreed` tinyint(1) NOT NULL DEFAULT 0, + `deleted` tinyint(1) NOT NULL DEFAULT 0, + `suspended` tinyint(1) NOT NULL DEFAULT 0, + `mnethostid` bigint(10) NOT NULL DEFAULT 0, + `username` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `idnumber` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `firstname` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `lastname` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `emailstop` tinyint(1) NOT NULL DEFAULT 0, + `icq` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `skype` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `yahoo` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `aim` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `msn` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `phone1` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `phone2` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `institution` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `department` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `city` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `country` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `lang` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', + `calendartype` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'gregorian', + `theme` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `timezone` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '99', + `firstaccess` bigint(10) NOT NULL DEFAULT 0, + `lastaccess` bigint(10) NOT NULL DEFAULT 0, + `lastlogin` bigint(10) NOT NULL DEFAULT 0, + `currentlogin` bigint(10) NOT NULL DEFAULT 0, + `lastip` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `secret` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `picture` bigint(10) NOT NULL DEFAULT 0, + `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` tinyint(2) NOT NULL DEFAULT 1, + `mailformat` tinyint(1) NOT NULL DEFAULT 1, + `maildigest` tinyint(1) NOT NULL DEFAULT 0, + `maildisplay` tinyint(2) NOT NULL DEFAULT 2, + `autosubscribe` tinyint(1) NOT NULL DEFAULT 1, + `trackforums` tinyint(1) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `trustbitmask` bigint(10) NOT NULL DEFAULT 0, + `imagealt` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `lastnamephonetic` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `firstnamephonetic` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `middlename` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `alternatename` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `moodlenetprofile` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_user_mneuse_uix` (`mnethostid`,`username`), + KEY `mdl_user_del_ix` (`deleted`), + KEY `mdl_user_con_ix` (`confirmed`), + KEY `mdl_user_fir_ix` (`firstname`), + KEY `mdl_user_las_ix` (`lastname`), + KEY `mdl_user_cit_ix` (`city`), + KEY `mdl_user_cou_ix` (`country`), + KEY `mdl_user_las2_ix` (`lastaccess`), + KEY `mdl_user_ema_ix` (`email`), + KEY `mdl_user_aut_ix` (`auth`), + KEY `mdl_user_idn_ix` (`idnumber`), + KEY `mdl_user_fir2_ix` (`firstnamephonetic`), + KEY `mdl_user_las3_ix` (`lastnamephonetic`), + KEY `mdl_user_mid_ix` (`middlename`), + KEY `mdl_user_alt_ix` (`alternatename`) +) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='One record for each person'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_user` +-- + +LOCK TABLES `mdl_user` WRITE; +/*!40000 ALTER TABLE `mdl_user` DISABLE KEYS */; +INSERT INTO `mdl_user` VALUES (1,'manual',1,0,0,0,1,'guest','$2y$10$l8z64BA6GYnci6/v9moAjOlcBzzdZxGwMkQk01Xu0mVmSbpQnihDC','','Guest user',' ','root@localhost',0,'','','','','','','','','','','','','en','gregorian','','99',0,0,0,0,'','',0,'','This user is a special user that allows read-only access to some courses.',1,1,0,2,1,0,0,1619623682,0,NULL,NULL,NULL,NULL,NULL,NULL),(2,'manual',1,0,0,0,1,'admin','$2y$10$k.xjSmoHesYKLOFjOe3ikOdSXIiOjQrM4GbBOtTuB7XsO/E8lLEtW','','Admin','User','admin@email.com',0,'','','','','','','','','','','','','en','gregorian','','99',1619623752,1619629897,1619623752,1619626991,'65.129.132.97','',0,'','',1,1,0,1,1,0,0,1619626917,0,'','','','','',''),(3,'manual',1,0,0,0,1,'student1','$2y$10$EumThRSvDH.IAMiLOWWHn.UUSBP9VX8O.qiBUjuGbxoXC3wGnYQfS','','Student1','User','student1@email.com',0,'','','','','','','','','','','','','en','gregorian','','99',0,0,0,0,'','',0,'','',1,1,0,2,1,0,1619624264,1619624264,0,'','','','','',''),(4,'manual',1,0,0,0,1,'student2','$2y$10$ZO8VMKp4pnLbPhfzoXWqZ..wjEjgQCNjMaSH/gmQQI5sgDmZt4GzG','','Student2','User','student2@email.com',0,'','','','','','','','','','','','','en','gregorian','','99',0,0,0,0,'','',0,'','',1,1,0,2,1,0,1619624308,1619624308,0,'','','','','',''),(5,'manual',1,0,0,0,1,'teacher','$2y$10$h3E2s77CJKHP8FXs0/5s1.oPDfwMMOf36jVSMagDnBHJthyc60hXq','','Teacher','User','teacher@email.com',0,'','','','','','','','','','','','','en','gregorian','','99',0,0,0,0,'','',0,'','',1,1,0,2,1,0,1619624342,1619624342,0,'','','','','',''),(6,'manual',1,0,0,0,1,'lta','$2y$10$vryJZvREZjyJCTBd/BcI6uRk5eBw2gPGTUcxO6O1p1hplCvav4SxC','','LTA','User','lta@email.com',0,'','','','','','','','','','','','','en','gregorian','','99',0,0,0,0,'','',0,'','',1,1,0,2,1,0,1619624369,1619624369,0,'','','','','',''); +/*!40000 ALTER TABLE `mdl_user` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_user_devices` +-- + +DROP TABLE IF EXISTS `mdl_user_devices`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_user_devices` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL DEFAULT 0, + `appid` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `model` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `platform` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `version` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `pushid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_userdevi_pususe_uix` (`pushid`,`userid`), + KEY `mdl_userdevi_uuiuse_ix` (`uuid`,`userid`), + KEY `mdl_userdevi_use_ix` (`userid`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table stores user''s mobile devices information in order'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_user_devices` +-- + +LOCK TABLES `mdl_user_devices` WRITE; +/*!40000 ALTER TABLE `mdl_user_devices` DISABLE KEYS */; +INSERT INTO `mdl_user_devices` VALUES (1,2,'org.relaytrust.thewell','motorola','moto g(6)','Android-fcm','9','deKqpyYqTQI:APA91bERP_49yPBTJibxujhOvbjaANguzUg26_AwFzH79LS8ghUfEw33LeSPoiXrkPPa5kFbLW3lDLr0AJ3pOnFOdbi_21u-PpKj6DCyzAUE0zCJuURwDQUQMKJ99xvpfBUbGw653Gw3','3055bf31abb34726',1619627012,1619627012); +/*!40000 ALTER TABLE `mdl_user_devices` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_user_enrolments` +-- + +DROP TABLE IF EXISTS `mdl_user_enrolments`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_user_enrolments` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `status` bigint(10) NOT NULL DEFAULT 0, + `enrolid` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `timestart` bigint(10) NOT NULL DEFAULT 0, + `timeend` bigint(10) NOT NULL DEFAULT 2147483647, + `modifierid` bigint(10) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_userenro_enruse_uix` (`enrolid`,`userid`), + KEY `mdl_userenro_enr_ix` (`enrolid`), + KEY `mdl_userenro_use_ix` (`userid`), + KEY `mdl_userenro_mod_ix` (`modifierid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Users participating in courses (aka enrolled users) - everyb'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_user_enrolments` +-- + +LOCK TABLES `mdl_user_enrolments` WRITE; +/*!40000 ALTER TABLE `mdl_user_enrolments` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_user_enrolments` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_user_info_category` +-- + +DROP TABLE IF EXISTS `mdl_user_info_category`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_user_info_category` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `sortorder` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Customisable fields categories'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_user_info_category` +-- + +LOCK TABLES `mdl_user_info_category` WRITE; +/*!40000 ALTER TABLE `mdl_user_info_category` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_user_info_category` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_user_info_data` +-- + +DROP TABLE IF EXISTS `mdl_user_info_data`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_user_info_data` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL DEFAULT 0, + `fieldid` bigint(10) NOT NULL DEFAULT 0, + `data` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `dataformat` tinyint(2) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_userinfodata_usefie_uix` (`userid`,`fieldid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Data for the customisable user fields'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_user_info_data` +-- + +LOCK TABLES `mdl_user_info_data` WRITE; +/*!40000 ALTER TABLE `mdl_user_info_data` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_user_info_data` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_user_info_field` +-- + +DROP TABLE IF EXISTS `mdl_user_info_field`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_user_info_field` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `shortname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'shortname', + `name` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `datatype` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` tinyint(2) NOT NULL DEFAULT 0, + `categoryid` bigint(10) NOT NULL DEFAULT 0, + `sortorder` bigint(10) NOT NULL DEFAULT 0, + `required` tinyint(2) NOT NULL DEFAULT 0, + `locked` tinyint(2) NOT NULL DEFAULT 0, + `visible` smallint(4) NOT NULL DEFAULT 0, + `forceunique` tinyint(2) NOT NULL DEFAULT 0, + `signup` tinyint(2) NOT NULL DEFAULT 0, + `defaultdata` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `defaultdataformat` tinyint(2) NOT NULL DEFAULT 0, + `param1` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `param2` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `param3` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `param4` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `param5` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Customisable user profile fields'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_user_info_field` +-- + +LOCK TABLES `mdl_user_info_field` WRITE; +/*!40000 ALTER TABLE `mdl_user_info_field` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_user_info_field` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_user_lastaccess` +-- + +DROP TABLE IF EXISTS `mdl_user_lastaccess`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_user_lastaccess` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL DEFAULT 0, + `courseid` bigint(10) NOT NULL DEFAULT 0, + `timeaccess` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_userlast_usecou_uix` (`userid`,`courseid`), + KEY `mdl_userlast_use_ix` (`userid`), + KEY `mdl_userlast_cou_ix` (`courseid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='To keep track of course page access times, used in online pa'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_user_lastaccess` +-- + +LOCK TABLES `mdl_user_lastaccess` WRITE; +/*!40000 ALTER TABLE `mdl_user_lastaccess` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_user_lastaccess` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_user_password_history` +-- + +DROP TABLE IF EXISTS `mdl_user_password_history`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_user_password_history` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL, + `hash` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `timecreated` bigint(10) NOT NULL, + PRIMARY KEY (`id`), + KEY `mdl_userpasshist_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='A rotating log of hashes of previously used passwords for ea'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_user_password_history` +-- + +LOCK TABLES `mdl_user_password_history` WRITE; +/*!40000 ALTER TABLE `mdl_user_password_history` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_user_password_history` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_user_password_resets` +-- + +DROP TABLE IF EXISTS `mdl_user_password_resets`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_user_password_resets` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL, + `timerequested` bigint(10) NOT NULL, + `timererequested` bigint(10) NOT NULL DEFAULT 0, + `token` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + KEY `mdl_userpassrese_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='table tracking password reset confirmation tokens'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_user_password_resets` +-- + +LOCK TABLES `mdl_user_password_resets` WRITE; +/*!40000 ALTER TABLE `mdl_user_password_resets` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_user_password_resets` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_user_preferences` +-- + +DROP TABLE IF EXISTS `mdl_user_preferences`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_user_preferences` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `userid` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `value` varchar(1333) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_userpref_usenam_uix` (`userid`,`name`) +) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Allows modules to store arbitrary user preferences'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_user_preferences` +-- + +LOCK TABLES `mdl_user_preferences` WRITE; +/*!40000 ALTER TABLE `mdl_user_preferences` DISABLE KEYS */; +INSERT INTO `mdl_user_preferences` VALUES (1,2,'core_message_migrate_data','1'),(2,2,'auth_manual_passwordupdatetime','1619626917'),(3,2,'email_bounce_count','1'),(4,2,'email_send_count','1'),(5,3,'auth_forcepasswordchange','0'),(6,3,'email_bounce_count','1'),(7,3,'email_send_count','1'),(8,4,'auth_forcepasswordchange','0'),(9,4,'email_bounce_count','1'),(10,4,'email_send_count','1'),(11,5,'auth_forcepasswordchange','0'),(12,5,'email_bounce_count','1'),(13,5,'email_send_count','1'),(14,6,'auth_forcepasswordchange','0'),(15,6,'email_bounce_count','1'),(16,6,'email_send_count','1'),(17,2,'filepicker_recentrepository','5'),(18,2,'filepicker_recentlicense','unknown'),(19,2,'login_failed_count_since_success','6'); +/*!40000 ALTER TABLE `mdl_user_preferences` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_user_private_key` +-- + +DROP TABLE IF EXISTS `mdl_user_private_key`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_user_private_key` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `script` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `value` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `userid` bigint(10) NOT NULL, + `instance` bigint(10) DEFAULT NULL, + `iprestriction` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `validuntil` bigint(10) DEFAULT NULL, + `timecreated` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_userprivkey_scrval_ix` (`script`,`value`), + KEY `mdl_userprivkey_use_ix` (`userid`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='access keys used in cookieless scripts - rss, etc.'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_user_private_key` +-- + +LOCK TABLES `mdl_user_private_key` WRITE; +/*!40000 ALTER TABLE `mdl_user_private_key` DISABLE KEYS */; +INSERT INTO `mdl_user_private_key` VALUES (1,'core_files','f7fc5a8f7aeee9c6c196498ff953ba0b',2,NULL,NULL,NULL,1619627006); +/*!40000 ALTER TABLE `mdl_user_private_key` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_wiki` +-- + +DROP TABLE IF EXISTS `mdl_wiki`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_wiki` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL DEFAULT 0, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Wiki', + `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `introformat` smallint(4) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `firstpagetitle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'First Page', + `wikimode` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'collaborative', + `defaultformat` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'creole', + `forceformat` tinyint(1) NOT NULL DEFAULT 1, + `editbegin` bigint(10) NOT NULL DEFAULT 0, + `editend` bigint(10) DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_wiki_cou_ix` (`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores Wiki activity configuration'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_wiki` +-- + +LOCK TABLES `mdl_wiki` WRITE; +/*!40000 ALTER TABLE `mdl_wiki` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_wiki` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_wiki_links` +-- + +DROP TABLE IF EXISTS `mdl_wiki_links`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_wiki_links` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `subwikiid` bigint(10) NOT NULL DEFAULT 0, + `frompageid` bigint(10) NOT NULL DEFAULT 0, + `topageid` bigint(10) NOT NULL DEFAULT 0, + `tomissingpage` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `mdl_wikilink_fro_ix` (`frompageid`), + KEY `mdl_wikilink_sub_ix` (`subwikiid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Page wiki links'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_wiki_links` +-- + +LOCK TABLES `mdl_wiki_links` WRITE; +/*!40000 ALTER TABLE `mdl_wiki_links` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_wiki_links` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_wiki_locks` +-- + +DROP TABLE IF EXISTS `mdl_wiki_locks`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_wiki_locks` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `pageid` bigint(10) NOT NULL DEFAULT 0, + `sectionname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `userid` bigint(10) NOT NULL DEFAULT 0, + `lockedat` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Manages page locks'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_wiki_locks` +-- + +LOCK TABLES `mdl_wiki_locks` WRITE; +/*!40000 ALTER TABLE `mdl_wiki_locks` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_wiki_locks` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_wiki_pages` +-- + +DROP TABLE IF EXISTS `mdl_wiki_pages`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_wiki_pages` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `subwikiid` bigint(10) NOT NULL DEFAULT 0, + `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'title', + `cachedcontent` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL DEFAULT 0, + `timerendered` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + `pageviews` bigint(10) NOT NULL DEFAULT 0, + `readonly` tinyint(1) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_wikipage_subtituse_uix` (`subwikiid`,`title`,`userid`), + KEY `mdl_wikipage_sub_ix` (`subwikiid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores wiki pages'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_wiki_pages` +-- + +LOCK TABLES `mdl_wiki_pages` WRITE; +/*!40000 ALTER TABLE `mdl_wiki_pages` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_wiki_pages` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_wiki_subwikis` +-- + +DROP TABLE IF EXISTS `mdl_wiki_subwikis`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_wiki_subwikis` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `wikiid` bigint(10) NOT NULL DEFAULT 0, + `groupid` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_wikisubw_wikgrouse_uix` (`wikiid`,`groupid`,`userid`), + KEY `mdl_wikisubw_wik_ix` (`wikiid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores subwiki instances'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_wiki_subwikis` +-- + +LOCK TABLES `mdl_wiki_subwikis` WRITE; +/*!40000 ALTER TABLE `mdl_wiki_subwikis` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_wiki_subwikis` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_wiki_synonyms` +-- + +DROP TABLE IF EXISTS `mdl_wiki_synonyms`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_wiki_synonyms` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `subwikiid` bigint(10) NOT NULL DEFAULT 0, + `pageid` bigint(10) NOT NULL DEFAULT 0, + `pagesynonym` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Pagesynonym', + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_wikisyno_pagpag_uix` (`pageid`,`pagesynonym`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores wiki pages synonyms'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_wiki_synonyms` +-- + +LOCK TABLES `mdl_wiki_synonyms` WRITE; +/*!40000 ALTER TABLE `mdl_wiki_synonyms` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_wiki_synonyms` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_wiki_versions` +-- + +DROP TABLE IF EXISTS `mdl_wiki_versions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_wiki_versions` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `pageid` bigint(10) NOT NULL DEFAULT 0, + `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, + `contentformat` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'creole', + `version` mediumint(5) NOT NULL DEFAULT 0, + `timecreated` bigint(10) NOT NULL DEFAULT 0, + `userid` bigint(10) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_wikivers_pag_ix` (`pageid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores wiki page history'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_wiki_versions` +-- + +LOCK TABLES `mdl_wiki_versions` WRITE; +/*!40000 ALTER TABLE `mdl_wiki_versions` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_wiki_versions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_workshop` +-- + +DROP TABLE IF EXISTS `mdl_workshop`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_workshop` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `course` bigint(10) NOT NULL, + `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `introformat` smallint(3) NOT NULL DEFAULT 0, + `instructauthors` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `instructauthorsformat` smallint(3) NOT NULL DEFAULT 0, + `instructreviewers` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `instructreviewersformat` smallint(3) NOT NULL DEFAULT 0, + `timemodified` bigint(10) NOT NULL, + `phase` smallint(3) DEFAULT 0, + `useexamples` tinyint(2) DEFAULT 0, + `usepeerassessment` tinyint(2) DEFAULT 0, + `useselfassessment` tinyint(2) DEFAULT 0, + `grade` decimal(10,5) DEFAULT 80.00000, + `gradinggrade` decimal(10,5) DEFAULT 20.00000, + `strategy` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `evaluation` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `gradedecimals` smallint(3) DEFAULT 0, + `submissiontypetext` tinyint(1) NOT NULL DEFAULT 1, + `submissiontypefile` tinyint(1) NOT NULL DEFAULT 1, + `nattachments` smallint(3) DEFAULT 1, + `submissionfiletypes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `latesubmissions` tinyint(2) DEFAULT 0, + `maxbytes` bigint(10) DEFAULT 100000, + `examplesmode` smallint(3) DEFAULT 0, + `submissionstart` bigint(10) DEFAULT 0, + `submissionend` bigint(10) DEFAULT 0, + `assessmentstart` bigint(10) DEFAULT 0, + `assessmentend` bigint(10) DEFAULT 0, + `phaseswitchassessment` tinyint(2) NOT NULL DEFAULT 0, + `conclusion` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `conclusionformat` smallint(3) NOT NULL DEFAULT 1, + `overallfeedbackmode` smallint(3) DEFAULT 1, + `overallfeedbackfiles` smallint(3) DEFAULT 0, + `overallfeedbackfiletypes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `overallfeedbackmaxbytes` bigint(10) DEFAULT 100000, + PRIMARY KEY (`id`), + KEY `mdl_work_cou_ix` (`course`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table keeps information about the module instances and '; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_workshop` +-- + +LOCK TABLES `mdl_workshop` WRITE; +/*!40000 ALTER TABLE `mdl_workshop` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_workshop` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_workshop_aggregations` +-- + +DROP TABLE IF EXISTS `mdl_workshop_aggregations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_workshop_aggregations` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `workshopid` bigint(10) NOT NULL, + `userid` bigint(10) NOT NULL, + `gradinggrade` decimal(10,5) DEFAULT NULL, + `timegraded` bigint(10) DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_workaggr_woruse_uix` (`workshopid`,`userid`), + KEY `mdl_workaggr_wor_ix` (`workshopid`), + KEY `mdl_workaggr_use_ix` (`userid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Aggregated grades for assessment are stored here. The aggreg'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_workshop_aggregations` +-- + +LOCK TABLES `mdl_workshop_aggregations` WRITE; +/*!40000 ALTER TABLE `mdl_workshop_aggregations` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_workshop_aggregations` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_workshop_assessments` +-- + +DROP TABLE IF EXISTS `mdl_workshop_assessments`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_workshop_assessments` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `submissionid` bigint(10) NOT NULL, + `reviewerid` bigint(10) NOT NULL, + `weight` bigint(10) NOT NULL DEFAULT 1, + `timecreated` bigint(10) DEFAULT 0, + `timemodified` bigint(10) DEFAULT 0, + `grade` decimal(10,5) DEFAULT NULL, + `gradinggrade` decimal(10,5) DEFAULT NULL, + `gradinggradeover` decimal(10,5) DEFAULT NULL, + `gradinggradeoverby` bigint(10) DEFAULT NULL, + `feedbackauthor` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `feedbackauthorformat` smallint(3) DEFAULT 0, + `feedbackauthorattachment` smallint(3) DEFAULT 0, + `feedbackreviewer` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `feedbackreviewerformat` smallint(3) DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_workasse_sub_ix` (`submissionid`), + KEY `mdl_workasse_gra_ix` (`gradinggradeoverby`), + KEY `mdl_workasse_rev_ix` (`reviewerid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Info about the made assessment and automatically calculated '; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_workshop_assessments` +-- + +LOCK TABLES `mdl_workshop_assessments` WRITE; +/*!40000 ALTER TABLE `mdl_workshop_assessments` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_workshop_assessments` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_workshop_grades` +-- + +DROP TABLE IF EXISTS `mdl_workshop_grades`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_workshop_grades` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `assessmentid` bigint(10) NOT NULL, + `strategy` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `dimensionid` bigint(10) NOT NULL, + `grade` decimal(10,5) NOT NULL, + `peercomment` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `peercommentformat` smallint(3) DEFAULT 0, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_workgrad_assstrdim_uix` (`assessmentid`,`strategy`,`dimensionid`), + KEY `mdl_workgrad_ass_ix` (`assessmentid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='How the reviewers filled-up the grading forms, given grades '; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_workshop_grades` +-- + +LOCK TABLES `mdl_workshop_grades` WRITE; +/*!40000 ALTER TABLE `mdl_workshop_grades` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_workshop_grades` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_workshop_submissions` +-- + +DROP TABLE IF EXISTS `mdl_workshop_submissions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_workshop_submissions` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `workshopid` bigint(10) NOT NULL, + `example` tinyint(2) DEFAULT 0, + `authorid` bigint(10) NOT NULL, + `timecreated` bigint(10) NOT NULL, + `timemodified` bigint(10) NOT NULL, + `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', + `content` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `contentformat` smallint(3) NOT NULL DEFAULT 0, + `contenttrust` smallint(3) NOT NULL DEFAULT 0, + `attachment` tinyint(2) DEFAULT 0, + `grade` decimal(10,5) DEFAULT NULL, + `gradeover` decimal(10,5) DEFAULT NULL, + `gradeoverby` bigint(10) DEFAULT NULL, + `feedbackauthor` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `feedbackauthorformat` smallint(3) DEFAULT 0, + `timegraded` bigint(10) DEFAULT NULL, + `published` tinyint(2) DEFAULT 0, + `late` tinyint(2) NOT NULL DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_worksubm_wor_ix` (`workshopid`), + KEY `mdl_worksubm_gra_ix` (`gradeoverby`), + KEY `mdl_worksubm_aut_ix` (`authorid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Info about the submission and the aggregation of the grade f'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_workshop_submissions` +-- + +LOCK TABLES `mdl_workshop_submissions` WRITE; +/*!40000 ALTER TABLE `mdl_workshop_submissions` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_workshop_submissions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_workshopallocation_scheduled` +-- + +DROP TABLE IF EXISTS `mdl_workshopallocation_scheduled`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_workshopallocation_scheduled` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `workshopid` bigint(10) NOT NULL, + `enabled` tinyint(2) NOT NULL DEFAULT 0, + `submissionend` bigint(10) NOT NULL, + `timeallocated` bigint(10) DEFAULT NULL, + `settings` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `resultstatus` bigint(10) DEFAULT NULL, + `resultmessage` varchar(1333) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `resultlog` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_worksche_wor_uix` (`workshopid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the allocation settings for the scheduled allocator'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_workshopallocation_scheduled` +-- + +LOCK TABLES `mdl_workshopallocation_scheduled` WRITE; +/*!40000 ALTER TABLE `mdl_workshopallocation_scheduled` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_workshopallocation_scheduled` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_workshopeval_best_settings` +-- + +DROP TABLE IF EXISTS `mdl_workshopeval_best_settings`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_workshopeval_best_settings` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `workshopid` bigint(10) NOT NULL, + `comparison` smallint(3) DEFAULT 5, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_workbestsett_wor_uix` (`workshopid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Settings for the grading evaluation subplugin Comparison wit'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_workshopeval_best_settings` +-- + +LOCK TABLES `mdl_workshopeval_best_settings` WRITE; +/*!40000 ALTER TABLE `mdl_workshopeval_best_settings` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_workshopeval_best_settings` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_workshopform_accumulative` +-- + +DROP TABLE IF EXISTS `mdl_workshopform_accumulative`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_workshopform_accumulative` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `workshopid` bigint(10) NOT NULL, + `sort` bigint(10) DEFAULT 0, + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` smallint(3) DEFAULT 0, + `grade` bigint(10) NOT NULL, + `weight` mediumint(5) DEFAULT 1, + PRIMARY KEY (`id`), + KEY `mdl_workaccu_wor_ix` (`workshopid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The assessment dimensions definitions of Accumulative gradin'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_workshopform_accumulative` +-- + +LOCK TABLES `mdl_workshopform_accumulative` WRITE; +/*!40000 ALTER TABLE `mdl_workshopform_accumulative` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_workshopform_accumulative` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_workshopform_comments` +-- + +DROP TABLE IF EXISTS `mdl_workshopform_comments`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_workshopform_comments` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `workshopid` bigint(10) NOT NULL, + `sort` bigint(10) DEFAULT 0, + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` smallint(3) DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_workcomm_wor_ix` (`workshopid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The assessment dimensions definitions of Comments strategy f'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_workshopform_comments` +-- + +LOCK TABLES `mdl_workshopform_comments` WRITE; +/*!40000 ALTER TABLE `mdl_workshopform_comments` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_workshopform_comments` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_workshopform_numerrors` +-- + +DROP TABLE IF EXISTS `mdl_workshopform_numerrors`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_workshopform_numerrors` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `workshopid` bigint(10) NOT NULL, + `sort` bigint(10) DEFAULT 0, + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` smallint(3) DEFAULT 0, + `descriptiontrust` bigint(10) DEFAULT NULL, + `grade0` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `grade1` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `weight` mediumint(5) DEFAULT 1, + PRIMARY KEY (`id`), + KEY `mdl_worknume_wor_ix` (`workshopid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The assessment dimensions definitions of Number of errors gr'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_workshopform_numerrors` +-- + +LOCK TABLES `mdl_workshopform_numerrors` WRITE; +/*!40000 ALTER TABLE `mdl_workshopform_numerrors` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_workshopform_numerrors` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_workshopform_numerrors_map` +-- + +DROP TABLE IF EXISTS `mdl_workshopform_numerrors_map`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_workshopform_numerrors_map` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `workshopid` bigint(10) NOT NULL, + `nonegative` bigint(10) NOT NULL, + `grade` decimal(10,5) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_worknumemap_wornon_uix` (`workshopid`,`nonegative`), + KEY `mdl_worknumemap_wor_ix` (`workshopid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This maps the number of errors to a percentual grade for sub'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_workshopform_numerrors_map` +-- + +LOCK TABLES `mdl_workshopform_numerrors_map` WRITE; +/*!40000 ALTER TABLE `mdl_workshopform_numerrors_map` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_workshopform_numerrors_map` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_workshopform_rubric` +-- + +DROP TABLE IF EXISTS `mdl_workshopform_rubric`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_workshopform_rubric` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `workshopid` bigint(10) NOT NULL, + `sort` bigint(10) DEFAULT 0, + `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `descriptionformat` smallint(3) DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_workrubr_wor_ix` (`workshopid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The assessment dimensions definitions of Rubric grading stra'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_workshopform_rubric` +-- + +LOCK TABLES `mdl_workshopform_rubric` WRITE; +/*!40000 ALTER TABLE `mdl_workshopform_rubric` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_workshopform_rubric` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_workshopform_rubric_config` +-- + +DROP TABLE IF EXISTS `mdl_workshopform_rubric_config`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_workshopform_rubric_config` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `workshopid` bigint(10) NOT NULL, + `layout` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT 'list', + PRIMARY KEY (`id`), + UNIQUE KEY `mdl_workrubrconf_wor_uix` (`workshopid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Configuration table for the Rubric grading strategy'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_workshopform_rubric_config` +-- + +LOCK TABLES `mdl_workshopform_rubric_config` WRITE; +/*!40000 ALTER TABLE `mdl_workshopform_rubric_config` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_workshopform_rubric_config` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mdl_workshopform_rubric_levels` +-- + +DROP TABLE IF EXISTS `mdl_workshopform_rubric_levels`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `mdl_workshopform_rubric_levels` ( + `id` bigint(10) NOT NULL AUTO_INCREMENT, + `dimensionid` bigint(10) NOT NULL, + `grade` decimal(10,5) NOT NULL, + `definition` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `definitionformat` smallint(3) DEFAULT 0, + PRIMARY KEY (`id`), + KEY `mdl_workrubrleve_dim_ix` (`dimensionid`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The definition of rubric rating scales'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mdl_workshopform_rubric_levels` +-- + +LOCK TABLES `mdl_workshopform_rubric_levels` WRITE; +/*!40000 ALTER TABLE `mdl_workshopform_rubric_levels` DISABLE KEYS */; +/*!40000 ALTER TABLE `mdl_workshopform_rubric_levels` ENABLE KEYS */; +UNLOCK TABLES; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2021-04-28 20:29:18 From bbc66b2c446918b56809f77f80578b0eec20f3ce Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 28 Apr 2021 14:51:17 -0700 Subject: [PATCH 078/129] Updated moodle config and database restore process --- ansible/roles/moodle/tasks/main.yml | 50 ++++++++++++++++++++++++++--- 1 file changed, 45 insertions(+), 5 deletions(-) diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml index 02037857..69d90bf5 100644 --- a/ansible/roles/moodle/tasks/main.yml +++ b/ansible/roles/moodle/tasks/main.yml @@ -13,19 +13,30 @@ ignore_errors: yes - name: Add the packages in sources lists - shell: sh -c 'echo "deb https://mirror.nodesdirect.com/mariadb/repo/10.3/debian $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list' + shell: sh -c 'echo "deb https://mirror.nodesdirect.com/mariadb/repo/10.5/debian $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list' when: ansible_os_family == 'Debian' - name: Install mariadb (mysql) package apt: update_cache: yes - pkg: mariadb-server-10.3 + pkg: mariadb-server-10.5 state: present - name: Start mariadb service command: systemctl restart mysql become: true +- name: Check For Existing Moodle Database + command: mysql moodle -e "select * from mdl_course;" + become: true + register: buildDatabase + ignore_errors: yes + +- name: Overwrite database (overwrite_database=true) when no database + ansible.builtin.set_fact: + overwrite_database: true + when: buildDatabase is not true + - name: Remove Existing Moodle database command: mysql -e 'drop database if exists moodle;' become: true @@ -37,12 +48,20 @@ when: overwrite_database - name: Create moodleuser - command: mysql -e "GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,CREATE TEMPORARY TABLES,DROP,INDEX,ALTER ON moodle.* TO 'moodleuser'@'%' IDENTIFIED BY '!1TheWell';" + command: mysql -e "GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,CREATE TEMPORARY TABLES,DROP,INDEX,ALTER ON moodle.* TO 'moodleuser'@'%' IDENTIFIED BY '\!1TheWell';" become: true when: overwrite_database + +- name: Copy Default Moodle Database To /tmp (Create a new template -> sudo mysqldump --databases moodle >/tmp/moodle_database_template.txt) + template: + src: "moodle_database_template.txt" + dest: "/tmp/moodle_database_template.txt" + mode: 0666 + when: overwrite_database - name: Install Default Moodle database - command: ls + shell: "mysql moodle Date: Mon, 3 May 2021 16:36:04 -0700 Subject: [PATCH 079/129] Restoring Postgres --- ansible/roles/moodle/tasks/main.yml | 70 ------------------- .../templates/var_www_moodle_config_php.j2 | 6 +- ansible/roles/php/tasks/main.yml | 2 +- 3 files changed, 4 insertions(+), 74 deletions(-) diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml index 69d90bf5..c031b7a1 100644 --- a/ansible/roles/moodle/tasks/main.yml +++ b/ansible/roles/moodle/tasks/main.yml @@ -3,75 +3,6 @@ # Moodle installation presumes previously installed PHP and PostgreSQL as per the playbooks -###################################################### -# mysql Installation - -- name: Add mariadb (mysql) apt key - ansible.builtin.apt_key: - url: https://mariadb.org/mariadb_release_signing_key.asc - state: present - ignore_errors: yes - -- name: Add the packages in sources lists - shell: sh -c 'echo "deb https://mirror.nodesdirect.com/mariadb/repo/10.5/debian $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list' - when: ansible_os_family == 'Debian' - -- name: Install mariadb (mysql) package - apt: - update_cache: yes - pkg: mariadb-server-10.5 - state: present - -- name: Start mariadb service - command: systemctl restart mysql - become: true - -- name: Check For Existing Moodle Database - command: mysql moodle -e "select * from mdl_course;" - become: true - register: buildDatabase - ignore_errors: yes - -- name: Overwrite database (overwrite_database=true) when no database - ansible.builtin.set_fact: - overwrite_database: true - when: buildDatabase is not true - -- name: Remove Existing Moodle database - command: mysql -e 'drop database if exists moodle;' - become: true - when: overwrite_database - -- name: Create Empty Moodle database - command: mysql -e 'CREATE DATABASE moodle DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;' - become: true - when: overwrite_database - -- name: Create moodleuser - command: mysql -e "GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,CREATE TEMPORARY TABLES,DROP,INDEX,ALTER ON moodle.* TO 'moodleuser'@'%' IDENTIFIED BY '\!1TheWell';" - become: true - when: overwrite_database - -- name: Copy Default Moodle Database To /tmp (Create a new template -> sudo mysqldump --databases moodle >/tmp/moodle_database_template.txt) - template: - src: "moodle_database_template.txt" - dest: "/tmp/moodle_database_template.txt" - mode: 0666 - when: overwrite_database - -- name: Install Default Moodle database - shell: "mysql moodle dbtype = 'mariadb'; +$CFG->dbtype = 'pgsql'; $CFG->dblibrary = 'native'; $CFG->dbhost = 'localhost'; $CFG->dbname = 'moodle'; -$CFG->dbuser = 'moodleuser'; -$CFG->dbpass = '!1TheWell'; +$CFG->dbuser = 'postgres'; +$CFG->dbpass = 'mypassword'; $CFG->prefix = 'mdl_'; $CFG->dboptions = array ( 'dbpersist' => 0, diff --git a/ansible/roles/php/tasks/main.yml b/ansible/roles/php/tasks/main.yml index 0168246f..ab5e9e4a 100644 --- a/ansible/roles/php/tasks/main.yml +++ b/ansible/roles/php/tasks/main.yml @@ -37,7 +37,7 @@ - php{{ php_version }}-common - php{{ php_version }}-curl - php{{ php_version }}-mbstring - - php{{ php_version }}-mysqli + - php{{ php_version }}-pgsql - php{{ php_version }}-xml - php{{ php_version }}-zip - php{{ php_version }}-intl From a8fc956bb0635444ff8286abbdb40e7ed0beb62e Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Sat, 8 May 2021 09:49:15 -0700 Subject: [PATCH 080/129] Add ffmpeg for file compression --- ansible/roles/moodle/tasks/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml index c031b7a1..fe6cb361 100644 --- a/ansible/roles/moodle/tasks/main.yml +++ b/ansible/roles/moodle/tasks/main.yml @@ -99,3 +99,9 @@ hour: "*" user: www-data job: "/usr/bin/php /var/www/moodle/admin/cli/cron.php >/dev/null" + +# Install ffmpeg to handle mpeg +- name: Install ffmpeg to handle video compression of chat attachments + apt: + pkg: + - ffmpeg From c585f75cb7d9c7743499e719822a7f0aa9ffa9d7 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 1 Jun 2021 15:29:34 -0700 Subject: [PATCH 081/129] Update crons --- ansible/roles/moodle/tasks/main.yml | 31 +++++++++++++++++++++++++++-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml index fe6cb361..aa3e5102 100644 --- a/ansible/roles/moodle/tasks/main.yml +++ b/ansible/roles/moodle/tasks/main.yml @@ -92,14 +92,41 @@ dest: /var/www/moodle/info.php # Setup Moodle's Cron -- name: Setup Moodle's Cron To Run Every Minute as Per Moodle +- name: Setup Moodle's Cron To Run Every 15 Minutes as Per Moodle ansible.builtin.cron: name: "moodle cron" minute: "1,16,31,46" hour: "*" user: www-data - job: "/usr/bin/php /var/www/moodle/admin/cli/cron.php >/dev/null" + job: "/usr/bin/php /var/www/moodle/admin/cli/cron.php >/tmp/cron.log" +# Setup Moodle's Cron +- name: Setup chat_attachments/clean_up.php To Run Every Day + ansible.builtin.cron: + name: "chat_attachments/clean_up.php" + minute: "3" + hour: "3" + user: www-data + job: "/usr/bin/php /var/www/moodle/local/chat_attachments/clean_up.php >/tmp/cleanup.log" + +# Setup Moodle's Cron +- name: Setup chat_attachments/clean_up.php To Run Every 10 Minutes on Pi + ansible.builtin.cron: + name: "chat_attachments/push_messages.php true" + minute: "*/10" + user: www-data + job: "/usr/bin/php /var/www/moodle/local/chat_attachments/push_messages.php true >/tmp/push_messages.log" + when: not developer_mode + +# Setup Moodle's Cron +- name: Setup chat_attachments/clean_up.php To Run Every Minute in Developer Mode + ansible.builtin.cron: + name: "chat_attachments/push_messages.php true" + minute: "*" + user: www-data + job: "/usr/bin/php /var/www/moodle/local/chat_attachments/push_messages.php true >/tmp/push_messages.log" + when: developer_mode + # Install ffmpeg to handle mpeg - name: Install ffmpeg to handle video compression of chat attachments apt: From 43521ce5e1298c7e0a36ec449b0d218bc3373c7e Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 1 Jun 2021 15:29:44 -0700 Subject: [PATCH 082/129] Re-Add Postgres in Ansible --- ansible/roles/connectbox-pi/meta/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible/roles/connectbox-pi/meta/main.yml b/ansible/roles/connectbox-pi/meta/main.yml index 54dd0883..98fae8b7 100644 --- a/ansible/roles/connectbox-pi/meta/main.yml +++ b/ansible/roles/connectbox-pi/meta/main.yml @@ -8,6 +8,7 @@ dependencies: - mikegleasonjr.firewall - nginx - php + - ansible-postgresql - moodle - captive-portal - webserver-content From 46f5fb67fea711104046853a32de69614fb619e3 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 1 Jun 2021 15:29:52 -0700 Subject: [PATCH 083/129] Add in files and sitename --- .../templates/moodle_database_template.dump | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump index cc6a034a..e39c60ce 100644 --- a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump +++ b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump @@ -29698,7 +29698,7 @@ COPY public.mdl_context_temp (id, path, depth, locked) FROM stdin; -- COPY public.mdl_course (id, category, sortorder, fullname, shortname, idnumber, summary, summaryformat, format, showgrades, newsitems, startdate, enddate, relativedatesmode, marker, maxbytes, legacyfiles, showreports, visible, visibleold, downloadcontent, groupmode, groupmodeforce, defaultgroupingid, lang, calendartype, theme, timecreated, timemodified, requested, enablecompletion, completionnotify, cacherev, originalcourseid) FROM stdin; -1 0 0 FROMDUMP:fullsitename shortsitename 0 site 1 3 0 0 0 0 0 0 0 1 1 \N 0 0 0 1612889052 1612889167 0 0 0 1612889104 \N +1 0 0 The Well TheWell 0 site 1 3 0 0 0 0 0 0 0 1 1 \N 0 0 0 1612889052 1612889167 0 0 0 1612889104 \N \. @@ -31489,6 +31489,7 @@ SELECT pg_catalog.setval('public.mdl_file_conversion_id_seq', 1, false); -- -- Data for Name: mdl_files; Type: TABLE DATA; Schema: public; Owner: postgres -- +-- Lines 1-5 are default Moodle, Lines 6-xx are added for TheWell 20210601 COPY public.mdl_files (id, contenthash, pathnamehash, contextid, component, filearea, itemid, filepath, filename, userid, filesize, mimetype, status, source, author, license, timecreated, timemodified, sortorder, referencefileid) FROM stdin; 1 5f8e911d0da441e36f47c5c46f4393269211ca56 508e674d49c30d4fde325fe6c7f6fd3d56b247e1 1 assignfeedback_editpdf stamps 0 / smile.png 2 1085 image/png 0 \N \N \N 1612889097 1612889097 0 \N @@ -31496,6 +31497,20 @@ COPY public.mdl_files (id, contenthash, pathnamehash, contextid, component, file 3 75c101cb8cb34ea573cd25ac38f8157b1de901b8 68317eab56c67d32aeaee5acf509a0c4aa828b6b 1 assignfeedback_editpdf stamps 0 / sad.png 2 966 image/png 0 \N \N \N 1612889097 1612889097 0 \N 4 0c5190a24c3943966541401c883eacaa20ca20cb 695a55ff780e61c9e59428aa425430b0d6bde53b 1 assignfeedback_editpdf stamps 0 / tick.png 2 1039 image/png 0 \N \N \N 1612889097 1612889097 0 \N 5 8c96a486d5801e0f4ab8c411f561f1c687e1f865 373e63af262a9b8466ba8632551520be793c37ff 1 assignfeedback_editpdf stamps 0 / cross.png 2 861 image/png 0 \N \N \N 1612889097 1612889097 0 \N +6 a44e5c7aef709981c8de8614ba086bee6248c0a0 bca6a731123a20c5cc03cd87ecf71941b9f05010 5 user draft 21887174 / Droplet Text - Teal - Transparent.png 2 28987 image/png 0 O:8:\"stdClass\":1:{s:6:\"source\";s:39:\"Droplet & Text - Teal - Transparent.png\";} Admin User unknown 1619624833 1619624833 0 \N +7 da39a3ee5e6b4b0d3255bfef95601890afd80709 d185f361631e32efc5c4eeed533842d228efaf7a 5 user draft 21887174 / . 2 0 \N 0 \N \N \N 1619624833 1619624833 0 \N +8 fcde58d0c4c14f557291cc9938afc3b75df543b3 523f4999e7a27e465c3d03ad3a74eb405617a6e8 1 core preview 0 /thumb/ a44e5c7aef709981c8de8614ba086bee6248c0a0 \N 5470 image/png 0 \N \N \N 1619624834 1619624834 0 \N +9 da39a3ee5e6b4b0d3255bfef95601890afd80709 74c104d54c05b5f8c633a36da516d37e6c5279e4 1 core preview 0 /thumb/ . \N 0 \N 0 \N \N \N 1619624834 1619624834 0 \N +10 da39a3ee5e6b4b0d3255bfef95601890afd80709 884555719c50529b9df662a38619d04b5b11e25c 1 core preview 0 / . \N 0 \N 0 \N \N \N 1619624834 1619624834 0 \N +11 111633dac88c2c1f8a4a3ce418ec381274e012c6 3b8ed27402e2c1f32f82fb4574a7ab45469b2250 5 user draft 290325056 / Droplet - Teal - Transparent.png 2 72391 image/png 0 O:8:\"stdClass\":1:{s:6:\"source\";s:32:\"Droplet - Teal - Transparent.png\";} Admin User unknown 1619624847 1619624847 0 \N +12 da39a3ee5e6b4b0d3255bfef95601890afd80709 d0644588e267f97996301245423800c130c95eeb 5 user draft 290325056 / . 2 0 \N 0 \N \N \N 1619624847 1619624847 0 \N +13 55bf80f66bdb64c0ca71b884b2b61eff0b344ee9 b7edd68e6dad925ed7eda3b2e44aa154625122b3 1 core preview 0 /thumb/ 111633dac88c2c1f8a4a3ce418ec381274e012c6 \N 7401 image/png 0 \N \N \N 1619624847 1619624847 0 \N +14 a44e5c7aef709981c8de8614ba086bee6248c0a0 3d411fa3d19cbc1bcd6024df2a96046ffdbcff5b 1 core_admin logo 0 / Droplet Text - Teal - Transparent.png 2 28987 image/png 0 Droplet & Text - Teal - Transparent.png Admin User unknown 1619624833 1619624888 0 \N +15 da39a3ee5e6b4b0d3255bfef95601890afd80709 13329bd7898f033eb0e93c11a609c6adfb8fb295 1 core_admin logo 0 / . 2 0 \N 0 \N \N \N 1619624833 1619624888 0 \N +16 111633dac88c2c1f8a4a3ce418ec381274e012c6 0d626e8ba8127b8d1c94d5e1dbebb73a95ae9504 1 core_admin logocompact 0 / Droplet - Teal - Transparent.png 2 72391 image/png 0 Droplet - Teal - Transparent.png Admin User unknown 1619624847 1619624888 0 \N +17 da39a3ee5e6b4b0d3255bfef95601890afd80709 ed928c2defdda280bb604ab3df79598e4c3adc00 1 core_admin logocompact 0 / . 2 0 \N 0 \N \N \N 1619624847 1619624888 0 \N +18 4a17bda49cdc89d62a28615b7c21e81ec4a44bc0 2f93cd4d54ca9ff4dfb3826e3afd36c251a65ec1 5 user draft 53672959 / mod_customcert_moodle310_2020110900.zip 2 293711 application/zip 0 O:8:\"stdClass\":1:{s:6:\"source\";s:39:\"mod_customcert_moodle310_2020110900.zip\";} Admin User unknown 1619625636 1619625636 0 \N +19 da39a3ee5e6b4b0d3255bfef95601890afd80709 aab2d93f3a4f15123b7f44e90e5a9fddb408809f 5 user draft 53672959 / . 2 0 \N 0 \N \N \N 1619625636 1619625636 0 \N \. From 2d24ed9d3b4cef9835b1637cf143c0263c697cbb Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 1 Jun 2021 18:00:21 -0700 Subject: [PATCH 084/129] Force all existing user sessions out prior to reloading database --- ansible/roles/ansible-postgresql/tasks/overwrite.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ansible/roles/ansible-postgresql/tasks/overwrite.yml b/ansible/roles/ansible-postgresql/tasks/overwrite.yml index 1ec2182b..5d7eeaf3 100644 --- a/ansible/roles/ansible-postgresql/tasks/overwrite.yml +++ b/ansible/roles/ansible-postgresql/tasks/overwrite.yml @@ -6,6 +6,11 @@ become: true become_user: postgres +- name: Force all existing user sessions out + command: psql -c "SELECT pg_terminate_backend(pg_stat_activity.pid) FROM pg_stat_activity WHERE pg_stat_activity.datname = 'moodle' AND pid <> pg_backend_pid();" + become: true + become_user: postgres + - name: Delete Existing Moodle Database command: psql -c "DROP DATABASE IF EXISTS moodle;" become: true From 521772cdf4eaa69e1e637b39487cb4c62af83dd0 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 1 Jun 2021 18:00:34 -0700 Subject: [PATCH 085/129] Incremental Update of Default Settings --- .../templates/moodle_database_template.dump | 31 ++++++++++--------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump index e39c60ce..4faa9657 100644 --- a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump +++ b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump @@ -25586,7 +25586,7 @@ SELECT pg_catalog.setval('public.mdl_competency_userevidencecomp_id_seq', 1, fal COPY public.mdl_config (id, name, value) FROM stdin; 3 auth email -4 enrol_plugins_enabled manual,guest,self,cohort +4 enrol_plugins_enabled manual,flatfile,self 5 theme boost 6 filter_multilang_converted 1 7 siteidentifier jRSjQJvZuUXioZNGA7SIWZUwGExyMD9mdev.derekmaxson.com @@ -26086,7 +26086,7 @@ COPY public.mdl_config (id, name, value) FROM stdin; 504 loglifetime 0 505 profileroles 5,4,3 506 coursecontact 3 -507 frontpage 6 +507 frontpage 508 frontpageloggedin 6 509 maxcategorydepth 2 510 frontpagecourselimit 200 @@ -26565,7 +26565,7 @@ COPY public.mdl_config_log (id, userid, timemodified, plugin, name, value, oldva 441 0 1612889063 theme_boost preset default.scss \N 442 0 1612889063 theme_boost presetfiles \N 443 0 1612889063 theme_boost backgroundimage \N -444 0 1612889063 theme_boost brandcolor \N +444 0 1612889063 theme_boost brandcolor #A4175B \N 445 0 1612889063 theme_boost scsspre \N 446 0 1612889063 theme_boost scss \N 447 0 1612889063 theme_classic navbardark 0 \N @@ -26575,8 +26575,8 @@ COPY public.mdl_config_log (id, userid, timemodified, plugin, name, value, oldva 451 0 1612889063 theme_classic brandcolor \N 452 0 1612889063 theme_classic scsspre \N 453 0 1612889063 theme_classic scss \N -454 0 1612889063 core_admin logo \N -455 0 1612889063 core_admin logocompact \N +454 0 1612889063 core_admin logo /Droplet Text - Teal - Transparent.png \N +455 0 1612889063 core_admin logocompact /Droplet - Teal - Transparent.png \N 456 0 1612889063 core_admin coursecolor1 #81ecec \N 457 0 1612889063 core_admin coursecolor2 #74b9ff \N 458 0 1612889063 core_admin coursecolor3 #a29bfe \N @@ -27629,7 +27629,7 @@ COPY public.mdl_config_log (id, userid, timemodified, plugin, name, value, oldva 1505 2 1612889144 enrol_self expirynotifyhour 6 \N 1506 2 1612889144 enrol_self defaultenrol 1 \N 1507 2 1612889144 enrol_self status 1 \N -1508 2 1612889144 enrol_self newenrols 1 \N +1508 2 1612889144 enrol_self newenrols 0 \N 1509 2 1612889144 enrol_self groupkey 0 \N 1510 2 1612889144 enrol_self roleid 5 \N 1511 2 1612889144 enrol_self enrolperiod 0 \N @@ -27741,12 +27741,12 @@ COPY public.mdl_config_log (id, userid, timemodified, plugin, name, value, oldva 1617 2 1612889145 tool_mobile forcedurlscheme moodlemobile \N 1618 2 1612889145 tool_mobile minimumversion \N 1619 2 1612889145 \N mobilecssurl \N -1620 2 1612889145 tool_mobile enablesmartappbanners 0 \N +1620 2 1612889145 tool_mobile enablesmartappbanners 1 \N 1621 2 1612889145 tool_mobile iosappid 633359593 \N 1622 2 1612889145 tool_mobile androidappid com.moodle.moodlemobile \N 1623 2 1612889145 tool_mobile setuplink https://download.moodle.org/mobile \N 1624 2 1612889145 tool_mobile forcelogout 0 \N -1625 2 1612889145 tool_mobile disabledfeatures \N +1625 2 1612889145 tool_mobile disabledfeatures $mmLoginEmailSignup,NoDelegate_ForgottenPassword,$mmSideMenuDelegate_mmaFrontpage,$mmSideMenuDelegate_mmaGrades,$mmSideMenuDelegate_mmaCompetency,$mmSideMenuDelegate_mmaFiles,CoreMainMenuDelegate_CoreTag,$mmSideMenuDelegate_website,$mmSideMenuDelegate_help,CoreCourseOptionsDelegate_AddonBlog,CoreUserDelegate_AddonBlog:blogs,$mmUserDelegate_mmaMessages:blockContact, \N 1626 2 1612889145 tool_mobile custommenuitems \N 1627 2 1612889145 tool_mobile filetypeexclusionlist \N 1628 2 1612889145 tool_mobile customlangstrings \N @@ -27978,8 +27978,8 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 204 theme_classic brandcolor 205 theme_classic scsspre 206 theme_classic scss -207 core_admin logo -208 core_admin logocompact +207 core_admin logo /Droplet Text - Teal - Transparent.png +208 core_admin logocompact /Droplet - Teal - Transparent.png 209 core_admin coursecolor1 #81ecec 210 core_admin coursecolor2 #74b9ff 211 core_admin coursecolor3 #a29bfe @@ -29592,17 +29592,17 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 1897 tinymce_moodleemoticon requireemoticon 1 1898 tinymce_spellchecker spellengine 1899 tinymce_spellchecker spelllanguagelist +English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv -1900 tool_mobile apppolicy +1900 tool_mobile apppolicy https://www.relaytrust.org/thewell/privacypolicy.html 1901 tool_mobile typeoflogin 1 -1903 tool_mobile forcedurlscheme moodlemobile +1903 tool_mobile forcedurlscheme 1904 tool_mobile minimumversion 1905 tool_mobile enablesmartappbanners 0 1906 tool_mobile iosappid 633359593 -1907 tool_mobile androidappid com.moodle.moodlemobile -1908 tool_mobile setuplink https://download.moodle.org/mobile +1907 tool_mobile androidappid org.relaytrust.thewell +1908 tool_mobile setuplink https://www.relaytrust.org/thewell/thewellapp.html 1909 tool_mobile forcelogout 0 1910 tool_mobile disabledfeatures -1911 tool_mobile custommenuitems +1911 tool_mobile custommenuitems Get Resources from The Well|http://thewell|browser||fa-cart-arrow-down\r\nHelp|http://learn.thewell/help|embedded||fa-question-circle\r\nAbout The Well|http://learn.thewell/help/about.html|embedded||fa-tint 1912 tool_mobile filetypeexclusionlist 1913 tool_mobile customlangstrings 1914 tool_moodlenet enablemoodlenet 0 @@ -29881,6 +29881,7 @@ SELECT pg_catalog.setval('public.mdl_course_request_id_seq', 1, false); -- COPY public.mdl_course_sections (id, course, section, name, summary, summaryformat, sequence, visible, availability, timemodified) FROM stdin; +1 1 1

realsitesummary

1 1 {"op":"&","c":[],"showc":[]} 1622589234 \. From 9c44bea30218067c376302fc5a56754634c6b72c Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 2 Jun 2021 12:02:15 -0700 Subject: [PATCH 086/129] Incremental Default Checkin --- .../templates/moodle_database_template.dump | 31 ++++++------------- ansible/roles/moodle/tasks/main.yml | 1 - 2 files changed, 9 insertions(+), 23 deletions(-) diff --git a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump index 4faa9657..3d076864 100644 --- a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump +++ b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump @@ -25647,8 +25647,8 @@ COPY public.mdl_config (id, name, value) FROM stdin; 68 agedigitalconsentmap *, 16\nAT, 14\nBE, 13\nBG, 14\nCY, 14\nCZ, 15\nDK, 13\nEE, 13\nES, 14\nFI, 13\nFR, 15\nGB, 13\nGR, 15\nIT, 14\nLT, 14\nLV, 13\nMT, 13\nNO, 13\nPT, 13\nSE, 13\nUS, 13 69 sitepolicy 70 sitepolicyguest -71 downloadcoursecontentallowed 0 -72 maxsizeperdownloadcoursefile 52428800 +71 downloadcoursecontentallowed 1 +72 maxsizeperdownloadcoursefile 536870912 73 enablecourserequests 1 74 defaultrequestcategory 1 75 lockrequestcategory 0 @@ -25993,7 +25993,7 @@ COPY public.mdl_config (id, name, value) FROM stdin; 412 contextlockappliestoadmin 1 413 forceclean 0 414 enablecourserelativedates 0 -415 debug 0 +415 debug 15 416 debugdisplay 0 417 perfdebug 7 418 debugstringids 0 @@ -27743,8 +27743,8 @@ COPY public.mdl_config_log (id, userid, timemodified, plugin, name, value, oldva 1619 2 1612889145 \N mobilecssurl \N 1620 2 1612889145 tool_mobile enablesmartappbanners 1 \N 1621 2 1612889145 tool_mobile iosappid 633359593 \N -1622 2 1612889145 tool_mobile androidappid com.moodle.moodlemobile \N -1623 2 1612889145 tool_mobile setuplink https://download.moodle.org/mobile \N +1622 2 1612889145 tool_mobile androidappid org.relaytrust.moodlemobile \N +1623 2 1612889145 tool_mobile setuplink /wellapp \N 1624 2 1612889145 tool_mobile forcelogout 0 \N 1625 2 1612889145 tool_mobile disabledfeatures $mmLoginEmailSignup,NoDelegate_ForgottenPassword,$mmSideMenuDelegate_mmaFrontpage,$mmSideMenuDelegate_mmaGrades,$mmSideMenuDelegate_mmaCompetency,$mmSideMenuDelegate_mmaFiles,CoreMainMenuDelegate_CoreTag,$mmSideMenuDelegate_website,$mmSideMenuDelegate_help,CoreCourseOptionsDelegate_AddonBlog,CoreUserDelegate_AddonBlog:blogs,$mmUserDelegate_mmaMessages:blockContact, \N 1626 2 1612889145 tool_mobile custommenuitems \N @@ -27779,14 +27779,14 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 5 question numerical_sortorder 5 6 question essay_sortorder 6 7 moodlecourse visible 1 -8 moodlecourse downloadcontentsitedefault 0 +8 moodlecourse downloadcontentsitedefault 1 9 moodlecourse format topics 10 moodlecourse maxsections 52 11 moodlecourse numsections 4 12 moodlecourse hiddensections 0 13 moodlecourse coursedisplay 0 14 moodlecourse courseenddateenabled 1 -15 moodlecourse courseduration 31536000 +15 moodlecourse courseduration 15552000 16 moodlecourse lang 17 moodlecourse newsitems 5 18 moodlecourse showgrades 1 @@ -29698,7 +29698,7 @@ COPY public.mdl_context_temp (id, path, depth, locked) FROM stdin; -- COPY public.mdl_course (id, category, sortorder, fullname, shortname, idnumber, summary, summaryformat, format, showgrades, newsitems, startdate, enddate, relativedatesmode, marker, maxbytes, legacyfiles, showreports, visible, visibleold, downloadcontent, groupmode, groupmodeforce, defaultgroupingid, lang, calendartype, theme, timecreated, timemodified, requested, enablecompletion, completionnotify, cacherev, originalcourseid) FROM stdin; -1 0 0 The Well TheWell 0 site 1 3 0 0 0 0 0 0 0 1 1 \N 0 0 0 1612889052 1612889167 0 0 0 1612889104 \N +1 0 0 The Well The Well 0 site 1 3 0 0 0 0 0 0 0 1 1 \N 0 0 0 1612889052 1612889167 0 0 0 1622640268 \N \. @@ -29889,7 +29889,7 @@ COPY public.mdl_course_sections (id, course, section, name, summary, summaryform -- Name: mdl_course_sections_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_course_sections_id_seq', 1, false); +SELECT pg_catalog.setval('public.mdl_course_sections_id_seq', 1, true); -- @@ -31494,24 +31494,11 @@ SELECT pg_catalog.setval('public.mdl_file_conversion_id_seq', 1, false); COPY public.mdl_files (id, contenthash, pathnamehash, contextid, component, filearea, itemid, filepath, filename, userid, filesize, mimetype, status, source, author, license, timecreated, timemodified, sortorder, referencefileid) FROM stdin; 1 5f8e911d0da441e36f47c5c46f4393269211ca56 508e674d49c30d4fde325fe6c7f6fd3d56b247e1 1 assignfeedback_editpdf stamps 0 / smile.png 2 1085 image/png 0 \N \N \N 1612889097 1612889097 0 \N -2 da39a3ee5e6b4b0d3255bfef95601890afd80709 70b7cdade7b4e27d4e83f0cdaad10d6a3c0cccb5 1 assignfeedback_editpdf stamps 0 / . 2 0 \N 0 \N \N \N 1612889097 1612889097 0 \N 3 75c101cb8cb34ea573cd25ac38f8157b1de901b8 68317eab56c67d32aeaee5acf509a0c4aa828b6b 1 assignfeedback_editpdf stamps 0 / sad.png 2 966 image/png 0 \N \N \N 1612889097 1612889097 0 \N 4 0c5190a24c3943966541401c883eacaa20ca20cb 695a55ff780e61c9e59428aa425430b0d6bde53b 1 assignfeedback_editpdf stamps 0 / tick.png 2 1039 image/png 0 \N \N \N 1612889097 1612889097 0 \N 5 8c96a486d5801e0f4ab8c411f561f1c687e1f865 373e63af262a9b8466ba8632551520be793c37ff 1 assignfeedback_editpdf stamps 0 / cross.png 2 861 image/png 0 \N \N \N 1612889097 1612889097 0 \N -6 a44e5c7aef709981c8de8614ba086bee6248c0a0 bca6a731123a20c5cc03cd87ecf71941b9f05010 5 user draft 21887174 / Droplet Text - Teal - Transparent.png 2 28987 image/png 0 O:8:\"stdClass\":1:{s:6:\"source\";s:39:\"Droplet & Text - Teal - Transparent.png\";} Admin User unknown 1619624833 1619624833 0 \N -7 da39a3ee5e6b4b0d3255bfef95601890afd80709 d185f361631e32efc5c4eeed533842d228efaf7a 5 user draft 21887174 / . 2 0 \N 0 \N \N \N 1619624833 1619624833 0 \N -8 fcde58d0c4c14f557291cc9938afc3b75df543b3 523f4999e7a27e465c3d03ad3a74eb405617a6e8 1 core preview 0 /thumb/ a44e5c7aef709981c8de8614ba086bee6248c0a0 \N 5470 image/png 0 \N \N \N 1619624834 1619624834 0 \N -9 da39a3ee5e6b4b0d3255bfef95601890afd80709 74c104d54c05b5f8c633a36da516d37e6c5279e4 1 core preview 0 /thumb/ . \N 0 \N 0 \N \N \N 1619624834 1619624834 0 \N -10 da39a3ee5e6b4b0d3255bfef95601890afd80709 884555719c50529b9df662a38619d04b5b11e25c 1 core preview 0 / . \N 0 \N 0 \N \N \N 1619624834 1619624834 0 \N -11 111633dac88c2c1f8a4a3ce418ec381274e012c6 3b8ed27402e2c1f32f82fb4574a7ab45469b2250 5 user draft 290325056 / Droplet - Teal - Transparent.png 2 72391 image/png 0 O:8:\"stdClass\":1:{s:6:\"source\";s:32:\"Droplet - Teal - Transparent.png\";} Admin User unknown 1619624847 1619624847 0 \N -12 da39a3ee5e6b4b0d3255bfef95601890afd80709 d0644588e267f97996301245423800c130c95eeb 5 user draft 290325056 / . 2 0 \N 0 \N \N \N 1619624847 1619624847 0 \N -13 55bf80f66bdb64c0ca71b884b2b61eff0b344ee9 b7edd68e6dad925ed7eda3b2e44aa154625122b3 1 core preview 0 /thumb/ 111633dac88c2c1f8a4a3ce418ec381274e012c6 \N 7401 image/png 0 \N \N \N 1619624847 1619624847 0 \N 14 a44e5c7aef709981c8de8614ba086bee6248c0a0 3d411fa3d19cbc1bcd6024df2a96046ffdbcff5b 1 core_admin logo 0 / Droplet Text - Teal - Transparent.png 2 28987 image/png 0 Droplet & Text - Teal - Transparent.png Admin User unknown 1619624833 1619624888 0 \N -15 da39a3ee5e6b4b0d3255bfef95601890afd80709 13329bd7898f033eb0e93c11a609c6adfb8fb295 1 core_admin logo 0 / . 2 0 \N 0 \N \N \N 1619624833 1619624888 0 \N 16 111633dac88c2c1f8a4a3ce418ec381274e012c6 0d626e8ba8127b8d1c94d5e1dbebb73a95ae9504 1 core_admin logocompact 0 / Droplet - Teal - Transparent.png 2 72391 image/png 0 Droplet - Teal - Transparent.png Admin User unknown 1619624847 1619624888 0 \N -17 da39a3ee5e6b4b0d3255bfef95601890afd80709 ed928c2defdda280bb604ab3df79598e4c3adc00 1 core_admin logocompact 0 / . 2 0 \N 0 \N \N \N 1619624847 1619624888 0 \N -18 4a17bda49cdc89d62a28615b7c21e81ec4a44bc0 2f93cd4d54ca9ff4dfb3826e3afd36c251a65ec1 5 user draft 53672959 / mod_customcert_moodle310_2020110900.zip 2 293711 application/zip 0 O:8:\"stdClass\":1:{s:6:\"source\";s:39:\"mod_customcert_moodle310_2020110900.zip\";} Admin User unknown 1619625636 1619625636 0 \N -19 da39a3ee5e6b4b0d3255bfef95601890afd80709 aab2d93f3a4f15123b7f44e90e5a9fddb408809f 5 user draft 53672959 / . 2 0 \N 0 \N \N \N 1619625636 1619625636 0 \N \. diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml index aa3e5102..d33f0c2f 100644 --- a/ansible/roles/moodle/tasks/main.yml +++ b/ansible/roles/moodle/tasks/main.yml @@ -44,7 +44,6 @@ owner: www-data group: www-data mode: 0775 - when: overwrite_database - name: Copy filedir to /var/www/moodledata/filedir ansible.builtin.unarchive: From 782d5c5bf9b8d3c5720f8ddeeffce32be3612b46 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 2 Jun 2021 12:02:32 -0700 Subject: [PATCH 087/129] Remove entries in config changes log --- .../templates/moodle_database_template.dump | 1635 ----------------- 1 file changed, 1635 deletions(-) diff --git a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump index 3d076864..e6b0c88d 100644 --- a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump +++ b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump @@ -26122,1641 +26122,6 @@ SELECT pg_catalog.setval('public.mdl_config_id_seq', 526, true); -- COPY public.mdl_config_log (id, userid, timemodified, plugin, name, value, oldvalue) FROM stdin; -1 0 1612889060 \N enableuserfeedback 0 \N -2 0 1612889060 \N userfeedback_nextreminder 1 \N -3 0 1612889060 \N userfeedback_remindafter 90 \N -4 0 1612889060 \N enableoutcomes 0 \N -5 0 1612889060 \N usecomments 1 \N -6 0 1612889060 \N usetags 1 \N -7 0 1612889060 \N enablenotes 1 \N -8 0 1612889060 \N enableportfolios 0 \N -9 0 1612889060 \N enablewebservices 1 \N -10 0 1612889060 \N enablestats 0 \N -11 0 1612889060 \N enablerssfeeds 0 \N -12 0 1612889060 \N enableblogs 1 \N -13 0 1612889060 \N enablecompletion 1 \N -14 0 1612889060 \N completiondefault 1 \N -15 0 1612889060 \N enableavailability 1 \N -16 0 1612889060 \N enableplagiarism 0 \N -17 0 1612889060 \N enablebadges 1 \N -18 0 1612889060 \N enableglobalsearch 0 \N -19 0 1612889060 \N allowstealth 0 \N -20 0 1612889060 \N enableanalytics 1 \N -21 0 1612889060 \N allowemojipicker 1 \N -22 0 1612889060 \N userfiltersdefault realname \N -23 0 1612889060 \N defaultpreference_maildisplay 2 \N -24 0 1612889060 \N defaultpreference_mailformat 1 \N -25 0 1612889060 \N defaultpreference_maildigest 0 \N -26 0 1612889060 \N defaultpreference_autosubscribe 1 \N -27 0 1612889060 \N defaultpreference_trackforums 0 \N -28 0 1612889060 \N autologinguests 0 \N -29 0 1612889060 \N hiddenuserfields \N -30 0 1612889060 \N showuseridentity email \N -31 0 1612889060 \N fullnamedisplay language \N -32 0 1612889060 \N alternativefullnameformat language \N -33 0 1612889060 \N maxusersperpage 100 \N -34 0 1612889060 \N enablegravatar 0 \N -35 0 1612889060 \N gravatardefaulturl mm \N -36 0 1612889060 \N agedigitalconsentverification 0 \N -37 0 1612889060 \N agedigitalconsentmap *, 16\nAT, 14\nBE, 13\nBG, 14\nCY, 14\nCZ, 15\nDK, 13\nEE, 13\nES, 14\nFI, 13\nFR, 15\nGB, 13\nGR, 15\nIT, 14\nLT, 14\nLV, 13\nMT, 13\nNO, 13\nPT, 13\nSE, 13\nUS, 13 \N -38 0 1612889060 \N sitepolicy \N -39 0 1612889060 \N sitepolicyguest \N -40 0 1612889060 moodlecourse visible 1 \N -41 0 1612889060 moodlecourse downloadcontentsitedefault 0 \N -42 0 1612889060 moodlecourse format topics \N -43 0 1612889060 moodlecourse maxsections 52 \N -44 0 1612889060 moodlecourse numsections 4 \N -45 0 1612889060 moodlecourse hiddensections 0 \N -46 0 1612889060 moodlecourse coursedisplay 0 \N -47 0 1612889060 moodlecourse courseenddateenabled 1 \N -48 0 1612889060 moodlecourse courseduration 31536000 \N -49 0 1612889060 moodlecourse lang \N -50 0 1612889060 moodlecourse newsitems 5 \N -51 0 1612889060 moodlecourse showgrades 1 \N -52 0 1612889060 moodlecourse showreports 0 \N -53 0 1612889060 moodlecourse maxbytes 0 \N -54 0 1612889060 moodlecourse enablecompletion 1 \N -55 0 1612889060 moodlecourse groupmode 0 \N -56 0 1612889060 moodlecourse groupmodeforce 0 \N -57 0 1612889060 \N downloadcoursecontentallowed 0 \N -58 0 1612889060 \N maxsizeperdownloadcoursefile 52428800 \N -59 0 1612889060 \N enablecourserequests 1 \N -60 0 1612889060 \N defaultrequestcategory 1 \N -61 0 1612889060 \N lockrequestcategory 0 \N -62 0 1612889060 \N courserequestnotify \N -63 0 1612889060 \N activitychoosertabmode 0 \N -64 0 1612889060 \N activitychooseractivefooter hidden \N -65 0 1612889060 backup loglifetime 30 \N -66 0 1612889060 backup backup_general_users 1 \N -67 0 1612889060 backup backup_general_users_locked \N -68 0 1612889060 backup backup_general_anonymize 0 \N -69 0 1612889060 backup backup_general_anonymize_locked \N -70 0 1612889060 backup backup_general_role_assignments 1 \N -71 0 1612889060 backup backup_general_role_assignments_locked \N -72 0 1612889060 backup backup_general_activities 1 \N -73 0 1612889060 backup backup_general_activities_locked \N -74 0 1612889060 backup backup_general_blocks 1 \N -75 0 1612889060 backup backup_general_blocks_locked \N -76 0 1612889060 backup backup_general_files 1 \N -77 0 1612889060 backup backup_general_files_locked \N -78 0 1612889060 backup backup_general_filters 1 \N -79 0 1612889060 backup backup_general_filters_locked \N -80 0 1612889060 backup backup_general_comments 1 \N -81 0 1612889060 backup backup_general_comments_locked \N -82 0 1612889060 backup backup_general_badges 1 \N -83 0 1612889060 backup backup_general_badges_locked \N -84 0 1612889060 backup backup_general_calendarevents 1 \N -85 0 1612889060 backup backup_general_calendarevents_locked \N -86 0 1612889060 backup backup_general_userscompletion 1 \N -87 0 1612889060 backup backup_general_userscompletion_locked \N -88 0 1612889060 backup backup_general_logs 0 \N -89 0 1612889060 backup backup_general_logs_locked \N -90 0 1612889060 backup backup_general_histories 0 \N -91 0 1612889060 backup backup_general_histories_locked \N -92 0 1612889060 backup backup_general_questionbank 1 \N -93 0 1612889060 backup backup_general_questionbank_locked \N -94 0 1612889060 backup backup_general_groups 1 \N -95 0 1612889060 backup backup_general_groups_locked \N -96 0 1612889060 backup backup_general_competencies 1 \N -97 0 1612889060 backup backup_general_competencies_locked \N -98 0 1612889060 backup backup_general_contentbankcontent 1 \N -99 0 1612889060 backup backup_general_contentbankcontent_locked \N -100 0 1612889060 backup backup_general_legacyfiles 1 \N -101 0 1612889060 backup backup_general_legacyfiles_locked \N -102 0 1612889060 backup import_general_maxresults 10 \N -103 0 1612889060 backup import_general_duplicate_admin_allowed 0 \N -104 0 1612889060 backup backup_import_activities 1 \N -105 0 1612889060 backup backup_import_activities_locked \N -106 0 1612889060 backup backup_import_blocks 1 \N -107 0 1612889060 backup backup_import_blocks_locked \N -108 0 1612889060 backup backup_import_filters 1 \N -109 0 1612889060 backup backup_import_filters_locked \N -110 0 1612889060 backup backup_import_calendarevents 1 \N -111 0 1612889060 backup backup_import_calendarevents_locked \N -112 0 1612889060 backup backup_import_questionbank 1 \N -113 0 1612889060 backup backup_import_questionbank_locked \N -114 0 1612889060 backup backup_import_groups 1 \N -115 0 1612889060 backup backup_import_groups_locked \N -116 0 1612889060 backup backup_import_competencies 1 \N -117 0 1612889060 backup backup_import_competencies_locked \N -118 0 1612889060 backup backup_import_contentbankcontent 1 \N -119 0 1612889060 backup backup_import_contentbankcontent_locked \N -120 0 1612889060 backup backup_import_legacyfiles 1 \N -121 0 1612889061 backup backup_import_legacyfiles_locked \N -122 0 1612889061 backup backup_auto_active 0 \N -123 0 1612889061 backup backup_auto_weekdays 0000000 \N -124 0 1612889061 backup backup_auto_hour 0 \N -125 0 1612889061 backup backup_auto_minute 0 \N -126 0 1612889061 backup backup_auto_storage 0 \N -127 0 1612889061 backup backup_auto_destination \N -128 0 1612889061 backup backup_auto_max_kept 1 \N -129 0 1612889061 backup backup_auto_delete_days 0 \N -130 0 1612889061 backup backup_auto_min_kept 0 \N -131 0 1612889061 backup backup_shortname 0 \N -132 0 1612889061 backup backup_auto_skip_hidden 1 \N -133 0 1612889061 backup backup_auto_skip_modif_days 30 \N -134 0 1612889061 backup backup_auto_skip_modif_prev 0 \N -135 0 1612889061 backup backup_auto_users 1 \N -136 0 1612889061 backup backup_auto_role_assignments 1 \N -137 0 1612889061 backup backup_auto_activities 1 \N -138 0 1612889061 backup backup_auto_blocks 1 \N -139 0 1612889061 backup backup_auto_files 1 \N -140 0 1612889061 backup backup_auto_filters 1 \N -141 0 1612889061 backup backup_auto_comments 1 \N -142 0 1612889061 backup backup_auto_badges 1 \N -143 0 1612889061 backup backup_auto_calendarevents 1 \N -144 0 1612889061 backup backup_auto_userscompletion 1 \N -145 0 1612889061 backup backup_auto_logs 0 \N -146 0 1612889061 backup backup_auto_histories 0 \N -147 0 1612889061 backup backup_auto_questionbank 1 \N -148 0 1612889061 backup backup_auto_groups 1 \N -149 0 1612889061 backup backup_auto_competencies 1 \N -150 0 1612889061 backup backup_auto_contentbankcontent 1 \N -151 0 1612889061 backup backup_auto_legacyfiles 1 \N -152 0 1612889061 restore restore_general_users 1 \N -153 0 1612889061 restore restore_general_users_locked \N -154 0 1612889061 restore restore_general_enrolments 1 \N -155 0 1612889061 restore restore_general_enrolments_locked \N -156 0 1612889061 restore restore_general_role_assignments 1 \N -157 0 1612889061 restore restore_general_role_assignments_locked \N -158 0 1612889061 restore restore_general_activities 1 \N -159 0 1612889061 restore restore_general_activities_locked \N -160 0 1612889061 restore restore_general_blocks 1 \N -161 0 1612889061 restore restore_general_blocks_locked \N -162 0 1612889061 restore restore_general_filters 1 \N -163 0 1612889061 restore restore_general_filters_locked \N -164 0 1612889061 restore restore_general_comments 1 \N -165 0 1612889061 restore restore_general_comments_locked \N -166 0 1612889061 restore restore_general_badges 1 \N -167 0 1612889061 restore restore_general_badges_locked \N -168 0 1612889061 restore restore_general_calendarevents 1 \N -169 0 1612889061 restore restore_general_calendarevents_locked \N -170 0 1612889061 restore restore_general_userscompletion 1 \N -171 0 1612889061 restore restore_general_userscompletion_locked \N -172 0 1612889061 restore restore_general_logs 1 \N -173 0 1612889061 restore restore_general_logs_locked \N -174 0 1612889061 restore restore_general_histories 1 \N -175 0 1612889061 restore restore_general_histories_locked \N -176 0 1612889061 restore restore_general_groups 1 \N -177 0 1612889061 restore restore_general_groups_locked \N -178 0 1612889061 restore restore_general_competencies 1 \N -179 0 1612889061 restore restore_general_competencies_locked \N -180 0 1612889061 restore restore_general_contentbankcontent 1 \N -181 0 1612889061 restore restore_general_contentbankcontent_locked \N -182 0 1612889061 restore restore_general_legacyfiles 1 \N -183 0 1612889061 restore restore_general_legacyfiles_locked \N -184 0 1612889061 restore restore_merge_overwrite_conf 0 \N -185 0 1612889061 restore restore_merge_overwrite_conf_locked \N -186 0 1612889061 restore restore_merge_course_fullname 1 \N -187 0 1612889061 restore restore_merge_course_fullname_locked \N -188 0 1612889061 restore restore_merge_course_shortname 1 \N -189 0 1612889061 restore restore_merge_course_shortname_locked \N -190 0 1612889061 restore restore_merge_course_startdate 1 \N -191 0 1612889061 restore restore_merge_course_startdate_locked \N -192 0 1612889061 restore restore_replace_overwrite_conf 0 \N -193 0 1612889061 restore restore_replace_overwrite_conf_locked \N -194 0 1612889061 restore restore_replace_course_fullname 1 \N -195 0 1612889061 restore restore_replace_course_fullname_locked \N -196 0 1612889061 restore restore_replace_course_shortname 1 \N -197 0 1612889061 restore restore_replace_course_shortname_locked \N -198 0 1612889061 restore restore_replace_course_startdate 1 \N -199 0 1612889061 restore restore_replace_course_startdate_locked \N -200 0 1612889061 restore restore_replace_keep_roles_and_enrolments 0 \N -201 0 1612889061 restore restore_replace_keep_roles_and_enrolments_locked \N -202 0 1612889061 restore restore_replace_keep_groups_and_groupings 0 \N -203 0 1612889061 restore restore_replace_keep_groups_and_groupings_locked \N -204 0 1612889061 \N enableasyncbackup 0 \N -205 0 1612889061 backup backup_async_message_users 0 \N -206 0 1612889061 backup backup_async_message_subject Moodle {operation} completed successfully \N -207 0 1612889061 backup backup_async_message Hi {user_firstname},
Your {operation} (ID: {backupid}) has completed successfully.

You can access it here: {link}. \N -208 0 1612889061 \N grade_profilereport user \N -209 0 1612889061 \N grade_aggregationposition 1 \N -210 0 1612889061 \N grade_includescalesinaggregation 1 \N -211 0 1612889061 \N grade_hiddenasdate 0 \N -212 0 1612889061 \N gradepublishing 0 \N -213 0 1612889061 \N grade_export_exportfeedback 0 \N -214 0 1612889061 \N grade_export_displaytype 1 \N -215 0 1612889061 \N grade_export_decimalpoints 2 \N -216 0 1612889061 \N grade_navmethod 1 \N -217 0 1612889061 \N grade_export_userprofilefields firstname,lastname,idnumber,institution,department,email \N -218 0 1612889061 \N grade_export_customprofilefields \N -219 0 1612889061 \N recovergradesdefault 0 \N -220 0 1612889061 \N gradeexport \N -221 0 1612889061 \N unlimitedgrades 0 \N -222 0 1612889061 \N grade_report_showmin 1 \N -223 0 1612889061 \N gradepointmax 100 \N -224 0 1612889061 \N gradepointdefault 100 \N -225 0 1612889061 \N grade_minmaxtouse 1 \N -226 0 1612889061 \N grade_mygrades_report overview \N -227 0 1612889061 \N gradereport_mygradeurl \N -228 0 1612889061 \N grade_hideforcedsettings 1 \N -229 0 1612889061 \N grade_aggregation 13 \N -230 0 1612889061 \N grade_aggregation_flag 0 \N -231 0 1612889061 \N grade_aggregations_visible 13 \N -232 0 1612889061 \N grade_aggregateonlygraded 1 \N -233 0 1612889061 \N grade_aggregateonlygraded_flag 2 \N -234 0 1612889061 \N grade_aggregateoutcomes 0 \N -235 0 1612889061 \N grade_aggregateoutcomes_flag 2 \N -236 0 1612889061 \N grade_keephigh 0 \N -237 0 1612889061 \N grade_keephigh_flag 3 \N -238 0 1612889061 \N grade_droplow 0 \N -239 0 1612889061 \N grade_droplow_flag 2 \N -240 0 1612889061 \N grade_overridecat 1 \N -241 0 1612889061 \N grade_displaytype 1 \N -242 0 1612889061 \N grade_decimalpoints 2 \N -243 0 1612889061 \N grade_item_advanced iteminfo,idnumber,gradepass,plusfactor,multfactor,display,decimals,hiddenuntil,locktime \N -244 0 1612889061 \N grade_report_studentsperpage 100 \N -245 0 1612889061 \N grade_report_showonlyactiveenrol 1 \N -246 0 1612889061 \N grade_report_quickgrading 1 \N -247 0 1612889061 \N grade_report_showquickfeedback 0 \N -248 0 1612889061 \N grade_report_meanselection 1 \N -249 0 1612889061 \N grade_report_enableajax 0 \N -250 0 1612889061 \N grade_report_showcalculations 1 \N -251 0 1612889061 \N grade_report_showeyecons 0 \N -252 0 1612889061 \N grade_report_showaverages 1 \N -253 0 1612889061 \N grade_report_showlocks 0 \N -254 0 1612889061 \N grade_report_showranges 0 \N -255 0 1612889061 \N grade_report_showanalysisicon 1 \N -256 0 1612889061 \N grade_report_showuserimage 1 \N -257 0 1612889061 \N grade_report_showactivityicons 1 \N -258 0 1612889061 \N grade_report_shownumberofgrades 0 \N -259 0 1612889061 \N grade_report_averagesdisplaytype inherit \N -260 0 1612889061 \N grade_report_rangesdisplaytype inherit \N -261 0 1612889061 \N grade_report_averagesdecimalpoints inherit \N -262 0 1612889061 \N grade_report_rangesdecimalpoints inherit \N -263 0 1612889061 \N grade_report_historyperpage 50 \N -264 0 1612889061 \N grade_report_overview_showrank 0 \N -265 0 1612889061 \N grade_report_overview_showtotalsifcontainhidden 0 \N -266 0 1612889061 \N grade_report_user_showrank 0 \N -267 0 1612889061 \N grade_report_user_showpercentage 1 \N -268 0 1612889061 \N grade_report_user_showgrade 1 \N -269 0 1612889061 \N grade_report_user_showfeedback 1 \N -270 0 1612889061 \N grade_report_user_showrange 1 \N -271 0 1612889061 \N grade_report_user_showweight 1 \N -272 0 1612889061 \N grade_report_user_showaverage 0 \N -273 0 1612889061 \N grade_report_user_showlettergrade 0 \N -274 0 1612889061 \N grade_report_user_rangedecimals 0 \N -275 0 1612889061 \N grade_report_user_showhiddenitems 1 \N -276 0 1612889061 \N grade_report_user_showtotalsifcontainhidden 0 \N -277 0 1612889061 \N grade_report_user_showcontributiontocoursetotal 1 \N -278 0 1612889061 analytics modeinstruction \N -279 0 1612889061 analytics percentonline 0 \N -280 0 1612889061 analytics typeinstitution \N -281 0 1612889061 analytics levelinstitution \N -282 0 1612889061 analytics predictionsprocessor \\mlbackend_php\\processor \N -283 0 1612889061 analytics defaulttimesplittingsevaluation \\core\\analytics\\time_splitting\\quarters_accum,\\core\\analytics\\time_splitting\\quarters,\\core\\analytics\\time_splitting\\single_range \N -284 0 1612889061 analytics modeloutputdir \N -285 0 1612889061 analytics onlycli 1 \N -286 0 1612889061 analytics modeltimelimit 1200 \N -287 0 1612889061 core_competency enabled 1 \N -288 0 1612889061 core_competency pushcourseratingstouserplans 1 \N -289 0 1612889061 \N badges_defaultissuername \N -290 0 1612889061 \N badges_defaultissuercontact \N -291 0 1612889061 \N badges_badgesalt badges1612889052 \N -292 0 1612889061 \N badges_allowcoursebadges 1 \N -293 0 1612889061 \N badges_allowexternalbackpack 1 \N -294 0 1612889061 \N rememberuserlicensepref 1 \N -295 0 1612889062 \N timezone Europe/London \N -296 0 1612889062 \N forcetimezone 99 \N -297 0 1612889062 \N country 0 \N -298 0 1612889062 \N defaultcity \N -299 0 1612889062 \N geoip2file /var/www/moodledata/geoip/GeoLite2-City.mmdb \N -300 0 1612889062 \N googlemapkey3 \N -301 0 1612889062 \N allcountrycodes \N -302 0 1612889062 \N autolang 1 \N -303 0 1612889062 \N lang en \N -304 0 1612889062 \N autolangusercreation 1 \N -305 0 1612889062 \N langmenu 1 \N -306 0 1612889062 \N langlist \N -307 0 1612889062 \N langcache 1 \N -308 0 1612889062 \N langstringcache 1 \N -309 0 1612889062 \N locale \N -310 0 1612889062 \N latinexcelexport 0 \N -311 0 1612889062 \N messaging 1 \N -312 0 1612889062 \N messagingallusers 0 \N -313 0 1612889062 \N messagingdefaultpressenter 1 \N -314 0 1612889062 \N messagingdeletereadnotificationsdelay 604800 \N -315 0 1612889062 \N messagingdeleteallnotificationsdelay 2620800 \N -316 0 1612889062 \N messagingallowemailoverride 0 \N -317 0 1612889062 \N requiremodintro 0 \N -318 0 1612889062 antivirus notifyemail \N -319 0 1612889062 antivirus enablequarantine 0 \N -320 0 1612889062 antivirus quarantinetime 2419200 \N -321 0 1612889062 \N registerauth \N -322 0 1612889062 \N authloginviaemail 0 \N -323 0 1612889062 \N allowaccountssameemail 0 \N -324 0 1612889062 \N authpreventaccountcreation 0 \N -325 0 1612889062 \N loginpageautofocus 0 \N -326 0 1612889062 \N guestloginbutton 1 \N -327 0 1612889062 \N limitconcurrentlogins 0 \N -328 0 1612889062 \N alternateloginurl \N -329 0 1612889062 \N forgottenpasswordurl \N -330 0 1612889062 \N auth_instructions \N -331 0 1612889062 \N allowemailaddresses \N -332 0 1612889062 \N denyemailaddresses \N -333 0 1612889062 \N verifychangedemail 1 \N -334 0 1612889062 \N recaptchapublickey \N -335 0 1612889062 \N recaptchaprivatekey \N -336 0 1612889062 cachestore_apcu testperformance 0 \N -337 0 1612889062 cachestore_memcached testservers \N -338 0 1612889063 cachestore_mongodb testserver \N -339 0 1612889063 cachestore_redis test_server \N -340 0 1612889063 cachestore_redis test_password \N -341 0 1612889063 \N filteruploadedfiles 0 \N -342 0 1612889063 \N filtermatchoneperpage 0 \N -343 0 1612889063 \N filtermatchonepertext 0 \N -344 0 1612889063 \N media_default_width 400 \N -345 0 1612889063 \N media_default_height 300 \N -346 0 1612889063 \N portfolio_moderate_filesize_threshold 1048576 \N -347 0 1612889063 \N portfolio_high_filesize_threshold 5242880 \N -348 0 1612889063 \N portfolio_moderate_db_threshold 20 \N -349 0 1612889063 \N portfolio_high_db_threshold 50 \N -350 0 1612889063 question_preview behaviour deferredfeedback \N -351 0 1612889063 question_preview correctness 1 \N -352 0 1612889063 question_preview marks 2 \N -353 0 1612889063 question_preview markdp 2 \N -354 0 1612889063 question_preview feedback 1 \N -355 0 1612889063 question_preview generalfeedback 1 \N -356 0 1612889063 question_preview rightanswer 1 \N -357 0 1612889063 question_preview history 0 \N -358 0 1612889063 \N repositorycacheexpire 120 \N -359 0 1612889063 \N repositorygetfiletimeout 30 \N -360 0 1612889063 \N repositorysyncfiletimeout 1 \N -361 0 1612889063 \N repositorysyncimagetimeout 3 \N -362 0 1612889063 \N repositoryallowexternallinks 1 \N -363 0 1612889063 \N legacyfilesinnewcourses 0 \N -364 0 1612889063 \N legacyfilesaddallowed 1 \N -365 0 1612889063 \N searchengine simpledb \N -366 0 1612889063 \N searchindexwhendisabled 0 \N -367 0 1612889063 \N searchindextime 600 \N -368 0 1612889063 \N searchallavailablecourses 0 \N -369 0 1612889063 \N searchincludeallcourses 0 \N -370 0 1612889063 \N searchenablecategories 0 \N -371 0 1612889063 \N searchdefaultcategory core-all \N -372 0 1612889063 \N searchhideallcategory 0 \N -373 0 1612889063 \N searchenginequeryonly \N -374 0 1612889063 \N searchbannerenable 0 \N -375 0 1612889063 \N searchbanner \N -376 0 1612889063 \N enablewsdocumentation 0 \N -377 0 1612889063 \N allowbeforeblock 0 \N -378 0 1612889063 \N allowedip \N -379 0 1612889063 \N blockedip \N -380 0 1612889063 \N protectusernames 1 \N -381 0 1612889063 \N forcelogin 0 \N -382 0 1612889063 \N forceloginforprofiles 1 \N -383 0 1612889063 \N forceloginforprofileimage 0 \N -384 0 1612889063 \N opentowebcrawlers 0 \N -385 0 1612889063 \N allowindexing 0 \N -386 0 1612889063 \N maxbytes 0 \N -387 0 1612889063 \N userquota 104857600 \N -388 0 1612889063 \N allowobjectembed 0 \N -389 0 1612889063 \N enabletrusttext 0 \N -390 0 1612889063 \N maxeditingtime 1800 \N -391 0 1612889063 \N extendedusernamechars 0 \N -392 0 1612889063 \N keeptagnamecase 1 \N -393 0 1612889063 \N profilesforenrolledusersonly 1 \N -394 0 1612889063 \N cronclionly 1 \N -395 0 1612889063 \N cronremotepassword \N -396 0 1612889063 tool_task enablerunnow 1 \N -397 0 1612889063 \N lockoutthreshold 0 \N -398 0 1612889063 \N lockoutwindow 1800 \N -399 0 1612889063 \N lockoutduration 1800 \N -400 0 1612889063 \N passwordpolicy 1 \N -401 0 1612889063 \N minpasswordlength 8 \N -402 0 1612889063 \N minpassworddigits 1 \N -403 0 1612889063 \N minpasswordlower 1 \N -404 0 1612889063 \N minpasswordupper 1 \N -405 0 1612889063 \N minpasswordnonalphanum 1 \N -406 0 1612889063 \N maxconsecutiveidentchars 0 \N -407 0 1612889063 \N passwordpolicycheckonlogin 0 \N -408 0 1612889063 \N passwordreuselimit 0 \N -409 0 1612889063 \N pwresettime 1800 \N -410 0 1612889063 \N passwordchangelogout 0 \N -411 0 1612889063 \N passwordchangetokendeletion 0 \N -412 0 1612889063 \N tokenduration 7257600 \N -413 0 1612889063 \N groupenrolmentkeypolicy 1 \N -414 0 1612889063 \N disableuserimages 0 \N -415 0 1612889063 \N emailchangeconfirmation 1 \N -416 0 1612889063 \N rememberusername 2 \N -417 0 1612889063 \N strictformsrequired 0 \N -418 0 1612889063 \N cookiesecure 1 \N -419 0 1612889063 \N cookiehttponly 0 \N -420 0 1612889063 \N allowframembedding 0 \N -421 0 1612889063 \N curlsecurityblockedhosts \N -422 0 1612889063 \N curlsecurityallowedport \N -423 0 1612889063 \N referrerpolicy default \N -424 0 1612889063 \N displayloginfailures 0 \N -425 0 1612889063 \N notifyloginfailures \N -426 0 1612889063 \N notifyloginthreshold 10 \N -427 0 1612889063 \N themelist \N -428 0 1612889063 \N themedesignermode 0 \N -429 0 1612889063 \N allowuserthemes 0 \N -430 0 1612889063 \N allowcoursethemes 0 \N -431 0 1612889063 \N allowcategorythemes 0 \N -432 0 1612889063 \N allowcohortthemes 0 \N -433 0 1612889063 \N allowthemechangeonurl 0 \N -434 0 1612889063 \N allowuserblockhiding 1 \N -435 0 1612889063 \N langmenuinsecurelayout 0 \N -436 0 1612889063 \N logininfoinsecurelayout 0 \N -437 0 1612889063 \N custommenuitems \N -438 0 1612889063 \N customusermenuitems grades,grades|/grade/report/mygrades.php|t/grades\nmessages,message|/message/index.php|t/message\npreferences,moodle|/user/preferences.php|t/preferences \N -439 0 1612889063 \N enabledevicedetection 1 \N -440 0 1612889063 \N devicedetectregex [] \N -441 0 1612889063 theme_boost preset default.scss \N -442 0 1612889063 theme_boost presetfiles \N -443 0 1612889063 theme_boost backgroundimage \N -444 0 1612889063 theme_boost brandcolor #A4175B \N -445 0 1612889063 theme_boost scsspre \N -446 0 1612889063 theme_boost scss \N -447 0 1612889063 theme_classic navbardark 0 \N -448 0 1612889063 theme_classic preset default.scss \N -449 0 1612889063 theme_classic presetfiles \N -450 0 1612889063 theme_classic backgroundimage \N -451 0 1612889063 theme_classic brandcolor \N -452 0 1612889063 theme_classic scsspre \N -453 0 1612889063 theme_classic scss \N -454 0 1612889063 core_admin logo /Droplet Text - Teal - Transparent.png \N -455 0 1612889063 core_admin logocompact /Droplet - Teal - Transparent.png \N -456 0 1612889063 core_admin coursecolor1 #81ecec \N -457 0 1612889063 core_admin coursecolor2 #74b9ff \N -458 0 1612889063 core_admin coursecolor3 #a29bfe \N -459 0 1612889063 core_admin coursecolor4 #dfe6e9 \N -460 0 1612889063 core_admin coursecolor5 #00b894 \N -461 0 1612889063 core_admin coursecolor6 #0984e3 \N -462 0 1612889063 core_admin coursecolor7 #b2bec3 \N -463 0 1612889063 core_admin coursecolor8 #fdcb6e \N -464 0 1612889063 core_admin coursecolor9 #fd79a8 \N -465 0 1612889063 core_admin coursecolor10 #6c5ce7 \N -466 0 1612889063 \N calendartype gregorian \N -467 0 1612889063 \N calendar_adminseesall 0 \N -468 0 1612889063 \N calendar_site_timeformat 0 \N -469 0 1612889063 \N calendar_startwday 1 \N -470 0 1612889063 \N calendar_weekend 65 \N -471 0 1612889063 \N calendar_lookahead 21 \N -472 0 1612889063 \N calendar_maxevents 10 \N -473 0 1612889063 \N enablecalendarexport 1 \N -474 0 1612889063 \N calendar_customexport 1 \N -475 0 1612889063 \N calendar_exportlookahead 365 \N -476 0 1612889063 \N calendar_exportlookback 5 \N -477 0 1612889063 \N calendar_exportsalt BPDupDDE9GhMuNOVYYjFNbBnd9XgPFbVUmYZg7LwZhELtrXkVd8bXnIBg3rx \N -478 0 1612889063 \N calendar_showicalsource 1 \N -479 0 1612889063 \N useblogassociations 1 \N -480 0 1612889063 \N bloglevel 4 \N -481 0 1612889063 \N useexternalblogs 1 \N -482 0 1612889063 \N externalblogcrontime 86400 \N -483 0 1612889063 \N maxexternalblogsperuser 1 \N -484 0 1612889063 \N blogusecomments 1 \N -485 0 1612889063 \N blogshowcommentscount 1 \N -486 0 1612889063 \N defaulthomepage 1 \N -487 0 1612889063 \N allowguestmymoodle 1 \N -488 0 1612889063 \N navshowfullcoursenames 0 \N -489 0 1612889063 \N navshowcategories 1 \N -490 0 1612889063 \N navshowmycoursecategories 0 \N -491 0 1612889063 \N navshowallcourses 0 \N -492 0 1612889063 \N navsortmycoursessort sortorder \N -493 0 1612889063 \N navsortmycourseshiddenlast 1 \N -494 0 1612889063 \N navcourselimit 10 \N -495 0 1612889063 \N usesitenameforsitepages 0 \N -496 0 1612889063 \N linkadmincategories 1 \N -497 0 1612889063 \N linkcoursesections 1 \N -498 0 1612889063 \N navshowfrontpagemods 1 \N -499 0 1612889063 \N navadduserpostslinks 1 \N -500 0 1612889063 \N formatstringstriptags 1 \N -501 0 1612889063 \N emoticons [{"text":":-)","imagename":"s\\/smiley","imagecomponent":"core","altidentifier":"smiley","altcomponent":"core_pix"},{"text":":)","imagename":"s\\/smiley","imagecomponent":"core","altidentifier":"smiley","altcomponent":"core_pix"},{"text":":-D","imagename":"s\\/biggrin","imagecomponent":"core","altidentifier":"biggrin","altcomponent":"core_pix"},{"text":";-)","imagename":"s\\/wink","imagecomponent":"core","altidentifier":"wink","altcomponent":"core_pix"},{"text":":-\\/","imagename":"s\\/mixed","imagecomponent":"core","altidentifier":"mixed","altcomponent":"core_pix"},{"text":"V-.","imagename":"s\\/thoughtful","imagecomponent":"core","altidentifier":"thoughtful","altcomponent":"core_pix"},{"text":":-P","imagename":"s\\/tongueout","imagecomponent":"core","altidentifier":"tongueout","altcomponent":"core_pix"},{"text":":-p","imagename":"s\\/tongueout","imagecomponent":"core","altidentifier":"tongueout","altcomponent":"core_pix"},{"text":"B-)","imagename":"s\\/cool","imagecomponent":"core","altidentifier":"cool","altcomponent":"core_pix"},{"text":"^-)","imagename":"s\\/approve","imagecomponent":"core","altidentifier":"approve","altcomponent":"core_pix"},{"text":"8-)","imagename":"s\\/wideeyes","imagecomponent":"core","altidentifier":"wideeyes","altcomponent":"core_pix"},{"text":":o)","imagename":"s\\/clown","imagecomponent":"core","altidentifier":"clown","altcomponent":"core_pix"},{"text":":-(","imagename":"s\\/sad","imagecomponent":"core","altidentifier":"sad","altcomponent":"core_pix"},{"text":":(","imagename":"s\\/sad","imagecomponent":"core","altidentifier":"sad","altcomponent":"core_pix"},{"text":"8-.","imagename":"s\\/shy","imagecomponent":"core","altidentifier":"shy","altcomponent":"core_pix"},{"text":":-I","imagename":"s\\/blush","imagecomponent":"core","altidentifier":"blush","altcomponent":"core_pix"},{"text":":-X","imagename":"s\\/kiss","imagecomponent":"core","altidentifier":"kiss","altcomponent":"core_pix"},{"text":"8-o","imagename":"s\\/surprise","imagecomponent":"core","altidentifier":"surprise","altcomponent":"core_pix"},{"text":"P-|","imagename":"s\\/blackeye","imagecomponent":"core","altidentifier":"blackeye","altcomponent":"core_pix"},{"text":"8-[","imagename":"s\\/angry","imagecomponent":"core","altidentifier":"angry","altcomponent":"core_pix"},{"text":"(grr)","imagename":"s\\/angry","imagecomponent":"core","altidentifier":"angry","altcomponent":"core_pix"},{"text":"xx-P","imagename":"s\\/dead","imagecomponent":"core","altidentifier":"dead","altcomponent":"core_pix"},{"text":"|-.","imagename":"s\\/sleepy","imagecomponent":"core","altidentifier":"sleepy","altcomponent":"core_pix"},{"text":"}-]","imagename":"s\\/evil","imagecomponent":"core","altidentifier":"evil","altcomponent":"core_pix"},{"text":"(h)","imagename":"s\\/heart","imagecomponent":"core","altidentifier":"heart","altcomponent":"core_pix"},{"text":"(heart)","imagename":"s\\/heart","imagecomponent":"core","altidentifier":"heart","altcomponent":"core_pix"},{"text":"(y)","imagename":"s\\/yes","imagecomponent":"core","altidentifier":"yes","altcomponent":"core"},{"text":"(n)","imagename":"s\\/no","imagecomponent":"core","altidentifier":"no","altcomponent":"core"},{"text":"(martin)","imagename":"s\\/martin","imagecomponent":"core","altidentifier":"martin","altcomponent":"core_pix"},{"text":"( )","imagename":"s\\/egg","imagecomponent":"core","altidentifier":"egg","altcomponent":"core_pix"}] \N -502 0 1612889063 \N docroot https://docs.moodle.org \N -503 0 1612889063 \N doclang \N -504 0 1612889063 \N doctonewwindow 0 \N -505 0 1612889063 \N coursecontactduplicates 0 \N -506 0 1612889063 \N courselistshortnames 0 \N -507 0 1612889063 \N coursesperpage 20 \N -508 0 1612889063 \N courseswithsummarieslimit 10 \N -509 0 1612889063 \N courseoverviewfileslimit 1 \N -510 0 1612889063 \N courseoverviewfilesext .jpg,.gif,.png \N -511 0 1612889063 \N coursegraceperiodbefore 0 \N -512 0 1612889063 \N coursegraceperiodafter 0 \N -513 0 1612889063 \N useexternalyui 0 \N -514 0 1612889063 \N yuicomboloading 1 \N -515 0 1612889063 \N cachejs 1 \N -516 0 1612889063 \N modchooserdefault 1 \N -517 0 1612889063 \N additionalhtmlhead \N -518 0 1612889063 \N additionalhtmltopofbody \N -519 0 1612889063 \N additionalhtmlfooter \N -520 0 1612889063 \N cachetemplates 1 \N -521 0 1612889063 \N pathtophp \N -522 0 1612889064 \N pathtodu \N -523 0 1612889064 \N aspellpath \N -524 0 1612889064 \N pathtodot \N -525 0 1612889064 \N pathtogs /usr/bin/gs \N -526 0 1612889064 \N pathtopython \N -527 0 1612889064 \N supportname Admin User \N -528 0 1612889064 \N supportemail \N -529 0 1612889064 \N supportpage \N -530 0 1612889064 \N dbsessions 0 \N -531 0 1612889064 \N sessioncookie \N -532 0 1612889064 \N sessioncookiepath \N -533 0 1612889064 \N sessioncookiedomain \N -534 0 1612889064 \N statsfirstrun none \N -535 0 1612889064 \N statsmaxruntime 0 \N -536 0 1612889064 \N statsruntimedays 31 \N -537 0 1612889064 \N statsuserthreshold 0 \N -538 0 1612889064 \N slasharguments 1 \N -539 0 1612889064 \N getremoteaddrconf 3 \N -540 0 1612889064 \N reverseproxyignore \N -541 0 1612889064 \N proxyhost \N -542 0 1612889064 \N proxyport 0 \N -543 0 1612889064 \N proxytype HTTP \N -544 0 1612889064 \N proxyuser \N -545 0 1612889064 \N proxypassword \N -546 0 1612889064 \N proxybypass localhost, 127.0.0.1 \N -547 0 1612889064 \N maintenance_enabled 0 \N -548 0 1612889064 \N maintenance_message \N -549 0 1612889064 \N deleteunconfirmed 168 \N -550 0 1612889064 \N deleteincompleteusers 0 \N -551 0 1612889064 \N disablegradehistory 0 \N -552 0 1612889064 \N gradehistorylifetime 0 \N -553 0 1612889064 \N tempdatafoldercleanup 168 \N -554 0 1612889064 \N filescleanupperiod 86400 \N -555 0 1612889064 \N extramemorylimit 512M \N -556 0 1612889064 \N maxtimelimit 0 \N -557 0 1612889064 \N curlcache 120 \N -558 0 1612889064 \N curltimeoutkbitrate 56 \N -559 0 1612889064 \N cron_enabled 1 \N -560 0 1612889064 \N task_scheduled_concurrency_limit 3 \N -561 0 1612889064 \N task_scheduled_max_runtime 1800 \N -562 0 1612889064 \N task_adhoc_concurrency_limit 3 \N -563 0 1612889064 \N task_adhoc_max_runtime 1800 \N -564 0 1612889064 \N task_logmode 1 \N -565 0 1612889064 \N task_logtostdout 1 \N -566 0 1612889064 \N task_logretention 2419200 \N -567 0 1612889064 \N task_logretainruns 20 \N -568 0 1612889064 \N smtphosts \N -569 0 1612889064 \N smtpsecure \N -570 0 1612889064 \N smtpauthtype LOGIN \N -571 0 1612889064 \N smtpuser \N -572 0 1612889064 \N smtppass \N -573 0 1612889064 \N smtpmaxbulk 1 \N -574 0 1612889064 \N noreplyaddress noreply@dev.derekmaxson.com \N -575 0 1612889064 \N allowedemaildomains \N -576 0 1612889064 \N divertallemailsto \N -577 0 1612889064 \N divertallemailsexcept \N -578 0 1612889064 \N emaildkimselector \N -579 0 1612889064 \N sitemailcharset 0 \N -580 0 1612889064 \N allowusermailcharset 0 \N -581 0 1612889064 \N allowattachments 1 \N -582 0 1612889064 \N mailnewline LF \N -583 0 1612889064 \N emailfromvia 1 \N -584 0 1612889064 \N emailsubjectprefix \N -585 0 1612889064 \N emailheaders \N -586 0 1612889064 \N updateautocheck 1 \N -587 0 1612889064 \N updateminmaturity 200 \N -588 0 1612889064 \N updatenotifybuilds 0 \N -589 0 1612889064 \N dndallowtextandlinks 0 \N -590 0 1612889064 \N pathtosassc \N -591 0 1612889064 \N contextlocking 0 \N -592 0 1612889064 \N contextlockappliestoadmin 1 \N -593 0 1612889064 \N forceclean 0 \N -594 0 1612889064 \N enablecourserelativedates 0 \N -595 0 1612889064 \N debug 0 \N -596 0 1612889064 \N debugdisplay 0 \N -597 0 1612889064 \N perfdebug 7 \N -598 0 1612889064 \N debugstringids 0 \N -599 0 1612889064 \N debugsqltrace 0 \N -600 0 1612889064 \N debugvalidators 0 \N -601 0 1612889064 \N debugpageinfo 0 \N -602 0 1612889064 \N profilingenabled 0 \N -603 0 1612889064 \N profilingincluded \N -604 0 1612889064 \N profilingexcluded \N -605 0 1612889064 \N profilingautofrec 0 \N -606 0 1612889064 \N profilingallowme 0 \N -607 0 1612889064 \N profilingallowall 0 \N -608 0 1612889064 \N profilingslow 0 \N -609 0 1612889064 \N profilinglifetime 1440 \N -610 0 1612889064 \N profilingimportprefix (I) \N -611 0 1612889067 \N calendar_exportsalt DaSq4Dykd5LKpXJuifuvgPNkhOICXEKjaJU1TXKQC1DHDpxHUubuGyQfAR73 BPDupDDE9GhMuNOVYYjFNbBnd9XgPFbVUmYZg7LwZhELtrXkVd8bXnIBg3rx -612 0 1612889086 activitynames filter_active 1 -613 0 1612889086 displayh5p filter_active 1 -614 0 1612889086 emoticon filter_active 1 -615 0 1612889086 mathjaxloader filter_active 1 -616 0 1612889086 mediaplugin filter_active 1 -617 0 1612889087 urltolink filter_active 1 -618 2 1612889142 \N notloggedinroleid 6 \N -619 2 1612889142 \N guestroleid 6 \N -620 2 1612889142 \N defaultuserroleid 7 \N -621 2 1612889142 \N creatornewroleid 3 \N -622 2 1612889142 \N restorernewroleid 3 \N -623 2 1612889142 tool_dataprivacy contactdataprotectionofficer 0 \N -624 2 1612889142 tool_dataprivacy automaticdataexportapproval 0 \N -625 2 1612889142 tool_dataprivacy automaticdatadeletionapproval 0 \N -626 2 1612889142 tool_dataprivacy automaticdeletionrequests 1 \N -627 2 1612889142 tool_dataprivacy privacyrequestexpiry 604800 \N -628 2 1612889142 tool_dataprivacy requireallenddatesforuserdeletion 1 \N -629 2 1612889142 tool_dataprivacy showdataretentionsummary 1 \N -630 2 1612889142 tool_log exportlog 1 \N -631 2 1612889142 \N sitepolicyhandler \N -632 2 1612889142 \N gradebookroles 5 \N -633 2 1612889142 analytics logstore logstore_standard \N -634 2 1612889142 \N h5plibraryhandler h5plib_v124 \N -635 2 1612889142 \N jabberhost \N -636 2 1612889142 \N jabberserver \N -637 2 1612889142 \N jabberusername \N -638 2 1612889142 \N jabberpassword \N -639 2 1612889142 \N jabberport 5222 \N -640 2 1612889142 \N airnotifierurl https://messages.moodle.net \N -641 2 1612889142 \N airnotifierport 443 \N -642 2 1612889142 \N airnotifiermobileappname com.moodle.moodlemobile \N -643 2 1612889142 \N airnotifierappname commoodlemoodlemobile \N -644 2 1612889142 \N airnotifieraccesskey \N -645 2 1612889142 assign feedback_plugin_for_gradebook assignfeedback_comments \N -646 2 1612889142 assign showrecentsubmissions 0 \N -647 2 1612889142 assign submissionreceipts 1 \N -648 2 1612889142 assign submissionstatement This submission is my own work, except where I have acknowledged the use of the works of other people. \N -649 2 1612889142 assign submissionstatementteamsubmission This submission is the work of my group, except where we have acknowledged the use of the works of other people. \N -650 2 1612889142 assign submissionstatementteamsubmissionallsubmit This submission is my own work as a group member, except where I have acknowledged the use of the works of other people. \N -651 2 1612889142 assign maxperpage -1 \N -652 2 1612889142 assign alwaysshowdescription 1 \N -653 2 1612889142 assign alwaysshowdescription_adv \N -654 2 1612889142 assign alwaysshowdescription_locked \N -655 2 1612889142 assign allowsubmissionsfromdate 0 \N -656 2 1612889142 assign allowsubmissionsfromdate_enabled 1 \N -657 2 1612889142 assign allowsubmissionsfromdate_adv \N -658 2 1612889142 assign duedate 604800 \N -659 2 1612889142 assign duedate_enabled 1 \N -660 2 1612889142 assign duedate_adv \N -661 2 1612889142 assign cutoffdate 1209600 \N -662 2 1612889142 assign cutoffdate_enabled \N -663 2 1612889142 assign cutoffdate_adv \N -664 2 1612889142 assign gradingduedate 1209600 \N -665 2 1612889142 assign gradingduedate_enabled 1 \N -666 2 1612889142 assign gradingduedate_adv \N -667 2 1612889142 assign submissiondrafts 0 \N -668 2 1612889142 assign submissiondrafts_adv \N -669 2 1612889142 assign submissiondrafts_locked \N -670 2 1612889142 assign requiresubmissionstatement 0 \N -671 2 1612889142 assign requiresubmissionstatement_adv \N -672 2 1612889142 assign requiresubmissionstatement_locked \N -673 2 1612889142 assign attemptreopenmethod none \N -674 2 1612889142 assign attemptreopenmethod_adv \N -675 2 1612889142 assign attemptreopenmethod_locked \N -676 2 1612889142 assign maxattempts -1 \N -677 2 1612889142 assign maxattempts_adv \N -678 2 1612889142 assign maxattempts_locked \N -679 2 1612889142 assign teamsubmission 0 \N -680 2 1612889142 assign teamsubmission_adv \N -681 2 1612889142 assign teamsubmission_locked \N -682 2 1612889142 assign preventsubmissionnotingroup 0 \N -683 2 1612889142 assign preventsubmissionnotingroup_adv \N -684 2 1612889142 assign preventsubmissionnotingroup_locked \N -685 2 1612889142 assign requireallteammemberssubmit 0 \N -686 2 1612889142 assign requireallteammemberssubmit_adv \N -687 2 1612889142 assign requireallteammemberssubmit_locked \N -688 2 1612889142 assign teamsubmissiongroupingid \N -689 2 1612889142 assign teamsubmissiongroupingid_adv \N -690 2 1612889142 assign sendnotifications 0 \N -691 2 1612889142 assign sendnotifications_adv \N -692 2 1612889142 assign sendnotifications_locked \N -693 2 1612889142 assign sendlatenotifications 0 \N -694 2 1612889142 assign sendlatenotifications_adv \N -695 2 1612889142 assign sendlatenotifications_locked \N -696 2 1612889142 assign sendstudentnotifications 1 \N -697 2 1612889142 assign sendstudentnotifications_adv \N -698 2 1612889142 assign sendstudentnotifications_locked \N -699 2 1612889142 assign blindmarking 0 \N -700 2 1612889142 assign blindmarking_adv \N -701 2 1612889142 assign blindmarking_locked \N -702 2 1612889142 assign hidegrader 0 \N -703 2 1612889142 assign hidegrader_adv \N -704 2 1612889142 assign hidegrader_locked \N -705 2 1612889142 assign markingworkflow 0 \N -706 2 1612889142 assign markingworkflow_adv \N -707 2 1612889142 assign markingworkflow_locked \N -708 2 1612889142 assign markingallocation 0 \N -709 2 1612889142 assign markingallocation_adv \N -710 2 1612889142 assign markingallocation_locked \N -711 2 1612889142 assignsubmission_file default 1 \N -712 2 1612889142 assignsubmission_file maxfiles 20 \N -713 2 1612889142 assignsubmission_file filetypes \N -714 2 1612889142 assignsubmission_file maxbytes 0 \N -715 2 1612889142 assignsubmission_onlinetext default 0 \N -716 2 1612889142 assignfeedback_comments default 1 \N -717 2 1612889142 assignfeedback_comments inline 0 \N -718 2 1612889142 assignfeedback_comments inline_adv \N -719 2 1612889142 assignfeedback_comments inline_locked \N -720 2 1612889142 assignfeedback_editpdf default 1 \N -721 2 1612889142 assignfeedback_editpdf stamps \N -722 2 1612889142 assignfeedback_file default 0 \N -723 2 1612889142 assignfeedback_offline default 0 \N -724 2 1612889142 book numberingoptions 0,1,2,3 \N -725 2 1612889142 book navoptions 0,1,2 \N -726 2 1612889142 book numbering 1 \N -727 2 1612889142 book navstyle 1 \N -728 2 1612889142 \N chat_method ajax \N -729 2 1612889142 \N chat_refresh_userlist 10 \N -730 2 1612889142 \N chat_old_ping 35 \N -731 2 1612889142 \N chat_refresh_room 5 \N -732 2 1612889142 \N chat_normal_updatemode jsupdate \N -733 2 1612889142 \N chat_serverhost dev.derekmaxson.com \N -734 2 1612889142 \N chat_serverip 127.0.0.1 \N -735 2 1612889142 \N chat_serverport 9111 \N -736 2 1612889142 \N chat_servermax 100 \N -737 2 1612889142 \N data_enablerssfeeds 0 \N -738 2 1612889142 \N feedback_allowfullanonymous 0 \N -739 2 1612889142 resource framesize 130 \N -740 2 1612889142 resource displayoptions 0,1,4,5,6 \N -741 2 1612889142 resource printintro 1 \N -742 2 1612889142 resource display 0 \N -743 2 1612889142 resource showsize 0 \N -744 2 1612889142 resource showtype 0 \N -745 2 1612889142 resource showdate 0 \N -746 2 1612889142 resource popupwidth 620 \N -747 2 1612889142 resource popupheight 450 \N -748 2 1612889142 resource filterfiles 0 \N -749 2 1612889142 folder showexpanded 1 \N -750 2 1612889142 folder maxsizetodownload 0 \N -751 2 1612889142 \N forum_displaymode 3 \N -752 2 1612889142 \N forum_shortpost 300 \N -753 2 1612889143 \N forum_longpost 600 \N -754 2 1612889143 \N forum_manydiscussions 100 \N -755 2 1612889143 \N forum_maxbytes 512000 \N -756 2 1612889143 \N forum_maxattachments 9 \N -757 2 1612889143 \N forum_subscription 0 \N -758 2 1612889143 \N forum_trackingtype 1 \N -759 2 1612889143 \N forum_trackreadposts 1 \N -760 2 1612889143 \N forum_allowforcedreadtracking 0 \N -761 2 1612889143 \N forum_oldpostdays 14 \N -762 2 1612889143 \N forum_usermarksread 0 \N -763 2 1612889143 \N forum_cleanreadtime 2 \N -764 2 1612889143 \N digestmailtime 17 \N -765 2 1612889143 \N forum_enablerssfeeds 0 \N -766 2 1612889143 \N forum_enabletimedposts 1 \N -767 2 1612889143 \N glossary_entbypage 10 \N -768 2 1612889143 \N glossary_dupentries 0 \N -769 2 1612889143 \N glossary_allowcomments 0 \N -770 2 1612889143 \N glossary_linkbydefault 1 \N -771 2 1612889143 \N glossary_defaultapproval 1 \N -772 2 1612889143 \N glossary_enablerssfeeds 0 \N -773 2 1612889143 \N glossary_linkentries 0 \N -774 2 1612889143 \N glossary_casesensitive 0 \N -775 2 1612889143 \N glossary_fullmatch 0 \N -776 2 1612889143 imscp keepold 1 \N -777 2 1612889143 imscp keepold_adv \N -778 2 1612889143 label dndmedia 1 \N -779 2 1612889143 label dndresizewidth 400 \N -780 2 1612889143 label dndresizeheight 400 \N -781 2 1612889143 mod_lesson mediafile \N -782 2 1612889143 mod_lesson mediafile_adv 1 \N -783 2 1612889143 mod_lesson mediawidth 640 \N -784 2 1612889143 mod_lesson mediaheight 480 \N -785 2 1612889143 mod_lesson mediaclose 0 \N -786 2 1612889143 mod_lesson progressbar 0 \N -787 2 1612889143 mod_lesson progressbar_adv \N -788 2 1612889143 mod_lesson ongoing 0 \N -789 2 1612889143 mod_lesson ongoing_adv 1 \N -790 2 1612889143 mod_lesson displayleftmenu 0 \N -791 2 1612889143 mod_lesson displayleftmenu_adv \N -792 2 1612889143 mod_lesson displayleftif 0 \N -793 2 1612889143 mod_lesson displayleftif_adv 1 \N -794 2 1612889143 mod_lesson slideshow 0 \N -795 2 1612889143 mod_lesson slideshow_adv 1 \N -796 2 1612889143 mod_lesson slideshowwidth 640 \N -797 2 1612889143 mod_lesson slideshowheight 480 \N -798 2 1612889143 mod_lesson slideshowbgcolor #FFFFFF \N -799 2 1612889143 mod_lesson maxanswers 5 \N -800 2 1612889143 mod_lesson maxanswers_adv 1 \N -801 2 1612889143 mod_lesson defaultfeedback 0 \N -802 2 1612889143 mod_lesson defaultfeedback_adv 1 \N -803 2 1612889143 mod_lesson activitylink \N -804 2 1612889143 mod_lesson activitylink_adv 1 \N -805 2 1612889143 mod_lesson timelimit 0 \N -806 2 1612889143 mod_lesson timelimit_adv \N -807 2 1612889143 mod_lesson password 0 \N -808 2 1612889143 mod_lesson password_adv 1 \N -809 2 1612889143 mod_lesson modattempts 0 \N -810 2 1612889143 mod_lesson modattempts_adv \N -811 2 1612889143 mod_lesson displayreview 0 \N -812 2 1612889143 mod_lesson displayreview_adv \N -813 2 1612889143 mod_lesson maximumnumberofattempts 1 \N -814 2 1612889143 mod_lesson maximumnumberofattempts_adv \N -815 2 1612889143 mod_lesson defaultnextpage 0 \N -816 2 1612889143 mod_lesson defaultnextpage_adv 1 \N -817 2 1612889143 mod_lesson numberofpagestoshow 1 \N -818 2 1612889143 mod_lesson numberofpagestoshow_adv 1 \N -819 2 1612889143 mod_lesson practice 0 \N -820 2 1612889143 mod_lesson practice_adv \N -821 2 1612889143 mod_lesson customscoring 1 \N -822 2 1612889143 mod_lesson customscoring_adv 1 \N -823 2 1612889143 mod_lesson retakesallowed 0 \N -824 2 1612889143 mod_lesson retakesallowed_adv \N -825 2 1612889143 mod_lesson handlingofretakes 0 \N -826 2 1612889143 mod_lesson handlingofretakes_adv 1 \N -827 2 1612889143 mod_lesson minimumnumberofquestions 0 \N -828 2 1612889143 mod_lesson minimumnumberofquestions_adv 1 \N -829 2 1612889143 page displayoptions 5 \N -830 2 1612889143 page printheading 1 \N -831 2 1612889143 page printintro 0 \N -832 2 1612889143 page printlastmodified 1 \N -833 2 1612889143 page display 5 \N -834 2 1612889143 page popupwidth 620 \N -835 2 1612889143 page popupheight 450 \N -836 2 1612889143 quiz timelimit 0 \N -837 2 1612889143 quiz timelimit_adv \N -838 2 1612889143 quiz overduehandling autosubmit \N -839 2 1612889143 quiz overduehandling_adv \N -840 2 1612889143 quiz graceperiod 86400 \N -841 2 1612889143 quiz graceperiod_adv \N -842 2 1612889143 quiz graceperiodmin 60 \N -843 2 1612889143 quiz attempts 0 \N -844 2 1612889143 quiz attempts_adv \N -845 2 1612889143 quiz grademethod 1 \N -846 2 1612889143 quiz grademethod_adv \N -847 2 1612889143 quiz maximumgrade 10 \N -848 2 1612889143 quiz questionsperpage 1 \N -849 2 1612889143 quiz questionsperpage_adv \N -850 2 1612889143 quiz navmethod free \N -851 2 1612889143 quiz navmethod_adv 1 \N -852 2 1612889143 quiz shuffleanswers 1 \N -853 2 1612889143 quiz shuffleanswers_adv \N -854 2 1612889143 quiz preferredbehaviour deferredfeedback \N -855 2 1612889143 quiz canredoquestions 0 \N -856 2 1612889143 quiz canredoquestions_adv 1 \N -857 2 1612889143 quiz attemptonlast 0 \N -858 2 1612889143 quiz attemptonlast_adv 1 \N -859 2 1612889143 quiz reviewattempt 69904 \N -860 2 1612889143 quiz reviewcorrectness 69904 \N -861 2 1612889143 quiz reviewmarks 69904 \N -862 2 1612889143 quiz reviewspecificfeedback 69904 \N -863 2 1612889143 quiz reviewgeneralfeedback 69904 \N -864 2 1612889143 quiz reviewrightanswer 69904 \N -865 2 1612889143 quiz reviewoverallfeedback 4368 \N -866 2 1612889143 quiz showuserpicture 0 \N -867 2 1612889143 quiz showuserpicture_adv \N -868 2 1612889143 quiz decimalpoints 2 \N -869 2 1612889143 quiz decimalpoints_adv \N -870 2 1612889143 quiz questiondecimalpoints -1 \N -871 2 1612889143 quiz questiondecimalpoints_adv \N -872 2 1612889143 quiz showblocks 0 \N -873 2 1612889143 quiz showblocks_adv 1 \N -874 2 1612889143 quiz quizpassword \N -875 2 1612889143 quiz quizpassword_adv \N -876 2 1612889143 quiz quizpassword_required \N -877 2 1612889143 quiz subnet \N -878 2 1612889143 quiz subnet_adv 1 \N -879 2 1612889143 quiz delay1 0 \N -880 2 1612889143 quiz delay1_adv 1 \N -881 2 1612889143 quiz delay2 0 \N -882 2 1612889143 quiz delay2_adv 1 \N -883 2 1612889143 quiz browsersecurity - \N -884 2 1612889143 quiz browsersecurity_adv 1 \N -885 2 1612889143 quiz initialnumfeedbacks 2 \N -886 2 1612889143 quiz autosaveperiod 60 \N -887 2 1612889143 quizaccess_seb autoreconfigureseb 1 \N -888 2 1612889143 quizaccess_seb showseblinks seb,http \N -889 2 1612889143 quizaccess_seb downloadlink https://safeexambrowser.org/download_en.html \N -890 2 1612889143 quizaccess_seb quizpasswordrequired 0 \N -891 2 1612889143 quizaccess_seb displayblocksbeforestart 0 \N -892 2 1612889143 quizaccess_seb displayblockswhenfinished 1 \N -893 2 1612889143 scorm displaycoursestructure 0 \N -894 2 1612889143 scorm displaycoursestructure_adv \N -895 2 1612889143 scorm popup 0 \N -896 2 1612889143 scorm popup_adv \N -897 2 1612889143 scorm displayactivityname 1 \N -898 2 1612889143 scorm framewidth 100 \N -899 2 1612889143 scorm framewidth_adv 1 \N -900 2 1612889143 scorm frameheight 500 \N -901 2 1612889143 scorm frameheight_adv 1 \N -902 2 1612889143 scorm winoptgrp_adv 1 \N -903 2 1612889143 scorm scrollbars 0 \N -904 2 1612889143 scorm directories 0 \N -905 2 1612889143 scorm location 0 \N -906 2 1612889143 scorm menubar 0 \N -907 2 1612889143 scorm toolbar 0 \N -908 2 1612889143 scorm status 0 \N -909 2 1612889143 scorm skipview 0 \N -910 2 1612889143 scorm skipview_adv 1 \N -911 2 1612889143 scorm hidebrowse 0 \N -912 2 1612889143 scorm hidebrowse_adv 1 \N -913 2 1612889143 scorm hidetoc 0 \N -914 2 1612889143 scorm hidetoc_adv 1 \N -915 2 1612889143 scorm nav 1 \N -916 2 1612889143 scorm nav_adv 1 \N -917 2 1612889143 scorm navpositionleft -100 \N -918 2 1612889143 scorm navpositionleft_adv 1 \N -919 2 1612889143 scorm navpositiontop -100 \N -920 2 1612889143 scorm navpositiontop_adv 1 \N -921 2 1612889143 scorm collapsetocwinsize 767 \N -922 2 1612889143 scorm collapsetocwinsize_adv 1 \N -923 2 1612889143 scorm displayattemptstatus 1 \N -924 2 1612889143 scorm displayattemptstatus_adv \N -925 2 1612889143 scorm grademethod 1 \N -926 2 1612889143 scorm maxgrade 100 \N -927 2 1612889143 scorm maxattempt 0 \N -928 2 1612889143 scorm whatgrade 0 \N -929 2 1612889143 scorm forcecompleted 0 \N -930 2 1612889143 scorm forcenewattempt 0 \N -931 2 1612889143 scorm autocommit 0 \N -932 2 1612889143 scorm masteryoverride 1 \N -933 2 1612889143 scorm lastattemptlock 0 \N -934 2 1612889143 scorm auto 0 \N -935 2 1612889143 scorm updatefreq 0 \N -936 2 1612889143 scorm scormstandard 0 \N -937 2 1612889143 scorm allowtypeexternal 0 \N -938 2 1612889143 scorm allowtypelocalsync 0 \N -939 2 1612889143 scorm allowtypeexternalaicc 0 \N -940 2 1612889143 scorm allowaicchacp 0 \N -941 2 1612889143 scorm aicchacptimeout 30 \N -942 2 1612889143 scorm aicchacpkeepsessiondata 1 \N -943 2 1612889143 scorm aiccuserid 1 \N -944 2 1612889143 scorm forcejavascript 1 \N -945 2 1612889143 scorm allowapidebug 0 \N -946 2 1612889143 scorm apidebugmask .* \N -947 2 1612889143 scorm protectpackagedownloads 0 \N -948 2 1612889143 url framesize 130 \N -949 2 1612889143 url secretphrase \N -950 2 1612889143 url rolesinparams 0 \N -951 2 1612889143 url displayoptions 0,1,5,6 \N -952 2 1612889143 url printintro 1 \N -953 2 1612889143 url display 0 \N -954 2 1612889143 url popupwidth 620 \N -955 2 1612889143 url popupheight 450 \N -956 2 1612889143 workshop grade 80 \N -957 2 1612889143 workshop gradinggrade 20 \N -958 2 1612889143 workshop gradedecimals 0 \N -959 2 1612889143 workshop maxbytes 0 \N -960 2 1612889143 workshop strategy accumulative \N -961 2 1612889143 workshop examplesmode 0 \N -962 2 1612889143 workshopallocation_random numofreviews 5 \N -963 2 1612889143 workshopform_numerrors grade0 No \N -964 2 1612889143 workshopform_numerrors grade1 Yes \N -965 2 1612889143 workshopeval_best comparison 5 \N -966 2 1612889143 tool_recyclebin coursebinenable 1 \N -967 2 1612889143 tool_recyclebin coursebinexpiry 604800 \N -968 2 1612889143 tool_recyclebin categorybinenable 1 \N -969 2 1612889143 tool_recyclebin categorybinexpiry 604800 \N -970 2 1612889143 tool_recyclebin autohide 1 \N -971 2 1612889143 antivirus_clamav runningmethod commandline \N -972 2 1612889143 antivirus_clamav pathtoclam \N -973 2 1612889143 antivirus_clamav pathtounixsocket \N -974 2 1612889143 antivirus_clamav tcpsockethost \N -975 2 1612889143 antivirus_clamav tcpsocketport 3310 \N -976 2 1612889143 antivirus_clamav clamfailureonupload donothing \N -977 2 1612889143 antivirus_clamav tries 1 \N -978 2 1612889143 auth_cas field_map_firstname \N -979 2 1612889143 auth_cas field_updatelocal_firstname oncreate \N -980 2 1612889143 auth_cas field_updateremote_firstname 0 \N -981 2 1612889143 auth_cas field_lock_firstname unlocked \N -982 2 1612889143 auth_cas field_map_lastname \N -983 2 1612889143 auth_cas field_updatelocal_lastname oncreate \N -984 2 1612889143 auth_cas field_updateremote_lastname 0 \N -985 2 1612889143 auth_cas field_lock_lastname unlocked \N -986 2 1612889143 auth_cas field_map_email \N -987 2 1612889143 auth_cas field_updatelocal_email oncreate \N -988 2 1612889143 auth_cas field_updateremote_email 0 \N -989 2 1612889143 auth_cas field_lock_email unlocked \N -990 2 1612889143 auth_cas field_map_city \N -991 2 1612889143 auth_cas field_updatelocal_city oncreate \N -992 2 1612889143 auth_cas field_updateremote_city 0 \N -993 2 1612889143 auth_cas field_lock_city unlocked \N -994 2 1612889143 auth_cas field_map_country \N -995 2 1612889143 auth_cas field_updatelocal_country oncreate \N -996 2 1612889143 auth_cas field_updateremote_country 0 \N -997 2 1612889143 auth_cas field_lock_country unlocked \N -998 2 1612889143 auth_cas field_map_lang \N -999 2 1612889143 auth_cas field_updatelocal_lang oncreate \N -1000 2 1612889143 auth_cas field_updateremote_lang 0 \N -1001 2 1612889143 auth_cas field_lock_lang unlocked \N -1002 2 1612889143 auth_cas field_map_description \N -1003 2 1612889143 auth_cas field_updatelocal_description oncreate \N -1004 2 1612889143 auth_cas field_updateremote_description 0 \N -1005 2 1612889143 auth_cas field_lock_description unlocked \N -1006 2 1612889143 auth_cas field_map_url \N -1007 2 1612889143 auth_cas field_updatelocal_url oncreate \N -1008 2 1612889143 auth_cas field_updateremote_url 0 \N -1009 2 1612889143 auth_cas field_lock_url unlocked \N -1010 2 1612889143 auth_cas field_map_idnumber \N -1011 2 1612889143 auth_cas field_updatelocal_idnumber oncreate \N -1012 2 1612889143 auth_cas field_updateremote_idnumber 0 \N -1013 2 1612889143 auth_cas field_lock_idnumber unlocked \N -1014 2 1612889143 auth_cas field_map_institution \N -1015 2 1612889143 auth_cas field_updatelocal_institution oncreate \N -1016 2 1612889143 auth_cas field_updateremote_institution 0 \N -1017 2 1612889143 auth_cas field_lock_institution unlocked \N -1018 2 1612889143 auth_cas field_map_department \N -1019 2 1612889143 auth_cas field_updatelocal_department oncreate \N -1020 2 1612889143 auth_cas field_updateremote_department 0 \N -1021 2 1612889143 auth_cas field_lock_department unlocked \N -1022 2 1612889143 auth_cas field_map_phone1 \N -1023 2 1612889143 auth_cas field_updatelocal_phone1 oncreate \N -1024 2 1612889143 auth_cas field_updateremote_phone1 0 \N -1025 2 1612889143 auth_cas field_lock_phone1 unlocked \N -1026 2 1612889143 auth_cas field_map_phone2 \N -1027 2 1612889143 auth_cas field_updatelocal_phone2 oncreate \N -1028 2 1612889143 auth_cas field_updateremote_phone2 0 \N -1029 2 1612889143 auth_cas field_lock_phone2 unlocked \N -1030 2 1612889143 auth_cas field_map_address \N -1031 2 1612889143 auth_cas field_updatelocal_address oncreate \N -1032 2 1612889143 auth_cas field_updateremote_address 0 \N -1033 2 1612889143 auth_cas field_lock_address unlocked \N -1034 2 1612889143 auth_cas field_map_firstnamephonetic \N -1035 2 1612889143 auth_cas field_updatelocal_firstnamephonetic oncreate \N -1036 2 1612889143 auth_cas field_updateremote_firstnamephonetic 0 \N -1037 2 1612889143 auth_cas field_lock_firstnamephonetic unlocked \N -1038 2 1612889143 auth_cas field_map_lastnamephonetic \N -1039 2 1612889143 auth_cas field_updatelocal_lastnamephonetic oncreate \N -1040 2 1612889143 auth_cas field_updateremote_lastnamephonetic 0 \N -1041 2 1612889143 auth_cas field_lock_lastnamephonetic unlocked \N -1042 2 1612889143 auth_cas field_map_middlename \N -1043 2 1612889143 auth_cas field_updatelocal_middlename oncreate \N -1044 2 1612889143 auth_cas field_updateremote_middlename 0 \N -1045 2 1612889143 auth_cas field_lock_middlename unlocked \N -1046 2 1612889143 auth_cas field_map_alternatename \N -1047 2 1612889143 auth_cas field_updatelocal_alternatename oncreate \N -1048 2 1612889143 auth_cas field_updateremote_alternatename 0 \N -1049 2 1612889143 auth_cas field_lock_alternatename unlocked \N -1050 2 1612889143 auth_email recaptcha 0 \N -1051 2 1612889143 auth_email field_lock_firstname unlocked \N -1052 2 1612889143 auth_email field_lock_lastname unlocked \N -1053 2 1612889143 auth_email field_lock_email unlocked \N -1054 2 1612889143 auth_email field_lock_city unlocked \N -1055 2 1612889143 auth_email field_lock_country unlocked \N -1056 2 1612889143 auth_email field_lock_lang unlocked \N -1057 2 1612889143 auth_email field_lock_description unlocked \N -1058 2 1612889143 auth_email field_lock_url unlocked \N -1059 2 1612889143 auth_email field_lock_idnumber unlocked \N -1060 2 1612889143 auth_email field_lock_institution unlocked \N -1061 2 1612889143 auth_email field_lock_department unlocked \N -1062 2 1612889143 auth_email field_lock_phone1 unlocked \N -1063 2 1612889143 auth_email field_lock_phone2 unlocked \N -1064 2 1612889143 auth_email field_lock_address unlocked \N -1065 2 1612889143 auth_email field_lock_firstnamephonetic unlocked \N -1066 2 1612889143 auth_email field_lock_lastnamephonetic unlocked \N -1067 2 1612889143 auth_email field_lock_middlename unlocked \N -1068 2 1612889143 auth_email field_lock_alternatename unlocked \N -1069 2 1612889143 auth_db host 127.0.0.1 \N -1070 2 1612889143 auth_db type mysqli \N -1071 2 1612889143 auth_db sybasequoting 0 \N -1072 2 1612889143 auth_db name \N -1073 2 1612889143 auth_db user \N -1074 2 1612889143 auth_db pass \N -1075 2 1612889143 auth_db table \N -1076 2 1612889143 auth_db fielduser \N -1077 2 1612889143 auth_db fieldpass \N -1078 2 1612889143 auth_db passtype plaintext \N -1079 2 1612889143 auth_db extencoding utf-8 \N -1080 2 1612889143 auth_db setupsql \N -1081 2 1612889143 auth_db debugauthdb 0 \N -1082 2 1612889143 auth_db changepasswordurl \N -1083 2 1612889143 auth_db removeuser 0 \N -1084 2 1612889143 auth_db updateusers 0 \N -1085 2 1612889143 auth_db field_map_firstname \N -1086 2 1612889143 auth_db field_updatelocal_firstname oncreate \N -1087 2 1612889143 auth_db field_updateremote_firstname 0 \N -1088 2 1612889143 auth_db field_lock_firstname unlocked \N -1089 2 1612889143 auth_db field_map_lastname \N -1090 2 1612889143 auth_db field_updatelocal_lastname oncreate \N -1091 2 1612889143 auth_db field_updateremote_lastname 0 \N -1092 2 1612889143 auth_db field_lock_lastname unlocked \N -1093 2 1612889143 auth_db field_map_email \N -1094 2 1612889143 auth_db field_updatelocal_email oncreate \N -1095 2 1612889143 auth_db field_updateremote_email 0 \N -1096 2 1612889143 auth_db field_lock_email unlocked \N -1097 2 1612889143 auth_db field_map_city \N -1098 2 1612889143 auth_db field_updatelocal_city oncreate \N -1099 2 1612889143 auth_db field_updateremote_city 0 \N -1100 2 1612889143 auth_db field_lock_city unlocked \N -1101 2 1612889143 auth_db field_map_country \N -1102 2 1612889143 auth_db field_updatelocal_country oncreate \N -1103 2 1612889143 auth_db field_updateremote_country 0 \N -1104 2 1612889143 auth_db field_lock_country unlocked \N -1105 2 1612889143 auth_db field_map_lang \N -1106 2 1612889143 auth_db field_updatelocal_lang oncreate \N -1107 2 1612889143 auth_db field_updateremote_lang 0 \N -1108 2 1612889143 auth_db field_lock_lang unlocked \N -1109 2 1612889143 auth_db field_map_description \N -1110 2 1612889143 auth_db field_updatelocal_description oncreate \N -1111 2 1612889143 auth_db field_updateremote_description 0 \N -1112 2 1612889143 auth_db field_lock_description unlocked \N -1113 2 1612889143 auth_db field_map_url \N -1114 2 1612889143 auth_db field_updatelocal_url oncreate \N -1115 2 1612889143 auth_db field_updateremote_url 0 \N -1116 2 1612889143 auth_db field_lock_url unlocked \N -1117 2 1612889143 auth_db field_map_idnumber \N -1118 2 1612889143 auth_db field_updatelocal_idnumber oncreate \N -1119 2 1612889143 auth_db field_updateremote_idnumber 0 \N -1120 2 1612889143 auth_db field_lock_idnumber unlocked \N -1121 2 1612889143 auth_db field_map_institution \N -1122 2 1612889143 auth_db field_updatelocal_institution oncreate \N -1123 2 1612889143 auth_db field_updateremote_institution 0 \N -1124 2 1612889143 auth_db field_lock_institution unlocked \N -1125 2 1612889143 auth_db field_map_department \N -1126 2 1612889143 auth_db field_updatelocal_department oncreate \N -1127 2 1612889143 auth_db field_updateremote_department 0 \N -1128 2 1612889144 auth_db field_lock_department unlocked \N -1129 2 1612889144 auth_db field_map_phone1 \N -1130 2 1612889144 auth_db field_updatelocal_phone1 oncreate \N -1131 2 1612889144 auth_db field_updateremote_phone1 0 \N -1132 2 1612889144 auth_db field_lock_phone1 unlocked \N -1133 2 1612889144 auth_db field_map_phone2 \N -1134 2 1612889144 auth_db field_updatelocal_phone2 oncreate \N -1135 2 1612889144 auth_db field_updateremote_phone2 0 \N -1136 2 1612889144 auth_db field_lock_phone2 unlocked \N -1137 2 1612889144 auth_db field_map_address \N -1138 2 1612889144 auth_db field_updatelocal_address oncreate \N -1139 2 1612889144 auth_db field_updateremote_address 0 \N -1140 2 1612889144 auth_db field_lock_address unlocked \N -1141 2 1612889144 auth_db field_map_firstnamephonetic \N -1142 2 1612889144 auth_db field_updatelocal_firstnamephonetic oncreate \N -1143 2 1612889144 auth_db field_updateremote_firstnamephonetic 0 \N -1144 2 1612889144 auth_db field_lock_firstnamephonetic unlocked \N -1145 2 1612889144 auth_db field_map_lastnamephonetic \N -1146 2 1612889144 auth_db field_updatelocal_lastnamephonetic oncreate \N -1147 2 1612889144 auth_db field_updateremote_lastnamephonetic 0 \N -1148 2 1612889144 auth_db field_lock_lastnamephonetic unlocked \N -1149 2 1612889144 auth_db field_map_middlename \N -1150 2 1612889144 auth_db field_updatelocal_middlename oncreate \N -1151 2 1612889144 auth_db field_updateremote_middlename 0 \N -1152 2 1612889144 auth_db field_lock_middlename unlocked \N -1153 2 1612889144 auth_db field_map_alternatename \N -1154 2 1612889144 auth_db field_updatelocal_alternatename oncreate \N -1155 2 1612889144 auth_db field_updateremote_alternatename 0 \N -1156 2 1612889144 auth_db field_lock_alternatename unlocked \N -1157 2 1612889144 auth_ldap field_map_firstname \N -1158 2 1612889144 auth_ldap field_updatelocal_firstname oncreate \N -1159 2 1612889144 auth_ldap field_updateremote_firstname 0 \N -1160 2 1612889144 auth_ldap field_lock_firstname unlocked \N -1161 2 1612889144 auth_ldap field_map_lastname \N -1162 2 1612889144 auth_ldap field_updatelocal_lastname oncreate \N -1163 2 1612889144 auth_ldap field_updateremote_lastname 0 \N -1164 2 1612889144 auth_ldap field_lock_lastname unlocked \N -1165 2 1612889144 auth_ldap field_map_email \N -1166 2 1612889144 auth_ldap field_updatelocal_email oncreate \N -1167 2 1612889144 auth_ldap field_updateremote_email 0 \N -1168 2 1612889144 auth_ldap field_lock_email unlocked \N -1169 2 1612889144 auth_ldap field_map_city \N -1170 2 1612889144 auth_ldap field_updatelocal_city oncreate \N -1171 2 1612889144 auth_ldap field_updateremote_city 0 \N -1172 2 1612889144 auth_ldap field_lock_city unlocked \N -1173 2 1612889144 auth_ldap field_map_country \N -1174 2 1612889144 auth_ldap field_updatelocal_country oncreate \N -1175 2 1612889144 auth_ldap field_updateremote_country 0 \N -1176 2 1612889144 auth_ldap field_lock_country unlocked \N -1177 2 1612889144 auth_ldap field_map_lang \N -1178 2 1612889144 auth_ldap field_updatelocal_lang oncreate \N -1179 2 1612889144 auth_ldap field_updateremote_lang 0 \N -1180 2 1612889144 auth_ldap field_lock_lang unlocked \N -1181 2 1612889144 auth_ldap field_map_description \N -1182 2 1612889144 auth_ldap field_updatelocal_description oncreate \N -1183 2 1612889144 auth_ldap field_updateremote_description 0 \N -1184 2 1612889144 auth_ldap field_lock_description unlocked \N -1185 2 1612889144 auth_ldap field_map_url \N -1186 2 1612889144 auth_ldap field_updatelocal_url oncreate \N -1187 2 1612889144 auth_ldap field_updateremote_url 0 \N -1188 2 1612889144 auth_ldap field_lock_url unlocked \N -1189 2 1612889144 auth_ldap field_map_idnumber \N -1190 2 1612889144 auth_ldap field_updatelocal_idnumber oncreate \N -1191 2 1612889144 auth_ldap field_updateremote_idnumber 0 \N -1192 2 1612889144 auth_ldap field_lock_idnumber unlocked \N -1193 2 1612889144 auth_ldap field_map_institution \N -1194 2 1612889144 auth_ldap field_updatelocal_institution oncreate \N -1195 2 1612889144 auth_ldap field_updateremote_institution 0 \N -1196 2 1612889144 auth_ldap field_lock_institution unlocked \N -1197 2 1612889144 auth_ldap field_map_department \N -1198 2 1612889144 auth_ldap field_updatelocal_department oncreate \N -1199 2 1612889144 auth_ldap field_updateremote_department 0 \N -1200 2 1612889144 auth_ldap field_lock_department unlocked \N -1201 2 1612889144 auth_ldap field_map_phone1 \N -1202 2 1612889144 auth_ldap field_updatelocal_phone1 oncreate \N -1203 2 1612889144 auth_ldap field_updateremote_phone1 0 \N -1204 2 1612889144 auth_ldap field_lock_phone1 unlocked \N -1205 2 1612889144 auth_ldap field_map_phone2 \N -1206 2 1612889144 auth_ldap field_updatelocal_phone2 oncreate \N -1207 2 1612889144 auth_ldap field_updateremote_phone2 0 \N -1208 2 1612889144 auth_ldap field_lock_phone2 unlocked \N -1209 2 1612889144 auth_ldap field_map_address \N -1210 2 1612889144 auth_ldap field_updatelocal_address oncreate \N -1211 2 1612889144 auth_ldap field_updateremote_address 0 \N -1212 2 1612889144 auth_ldap field_lock_address unlocked \N -1213 2 1612889144 auth_ldap field_map_firstnamephonetic \N -1214 2 1612889144 auth_ldap field_updatelocal_firstnamephonetic oncreate \N -1215 2 1612889144 auth_ldap field_updateremote_firstnamephonetic 0 \N -1216 2 1612889144 auth_ldap field_lock_firstnamephonetic unlocked \N -1217 2 1612889144 auth_ldap field_map_lastnamephonetic \N -1218 2 1612889144 auth_ldap field_updatelocal_lastnamephonetic oncreate \N -1219 2 1612889144 auth_ldap field_updateremote_lastnamephonetic 0 \N -1220 2 1612889144 auth_ldap field_lock_lastnamephonetic unlocked \N -1221 2 1612889144 auth_ldap field_map_middlename \N -1222 2 1612889144 auth_ldap field_updatelocal_middlename oncreate \N -1223 2 1612889144 auth_ldap field_updateremote_middlename 0 \N -1224 2 1612889144 auth_ldap field_lock_middlename unlocked \N -1225 2 1612889144 auth_ldap field_map_alternatename \N -1226 2 1612889144 auth_ldap field_updatelocal_alternatename oncreate \N -1227 2 1612889144 auth_ldap field_updateremote_alternatename 0 \N -1228 2 1612889144 auth_ldap field_lock_alternatename unlocked \N -1229 2 1612889144 auth_manual expiration 0 \N -1230 2 1612889144 auth_manual expirationtime 30 \N -1231 2 1612889144 auth_manual expiration_warning 0 \N -1232 2 1612889144 auth_manual field_lock_firstname unlocked \N -1233 2 1612889144 auth_manual field_lock_lastname unlocked \N -1234 2 1612889144 auth_manual field_lock_email unlocked \N -1235 2 1612889144 auth_manual field_lock_city unlocked \N -1236 2 1612889144 auth_manual field_lock_country unlocked \N -1237 2 1612889144 auth_manual field_lock_lang unlocked \N -1238 2 1612889144 auth_manual field_lock_description unlocked \N -1239 2 1612889144 auth_manual field_lock_url unlocked \N -1240 2 1612889144 auth_manual field_lock_idnumber unlocked \N -1241 2 1612889144 auth_manual field_lock_institution unlocked \N -1242 2 1612889144 auth_manual field_lock_department unlocked \N -1243 2 1612889144 auth_manual field_lock_phone1 unlocked \N -1244 2 1612889144 auth_manual field_lock_phone2 unlocked \N -1245 2 1612889144 auth_manual field_lock_address unlocked \N -1246 2 1612889144 auth_manual field_lock_firstnamephonetic unlocked \N -1247 2 1612889144 auth_manual field_lock_lastnamephonetic unlocked \N -1248 2 1612889144 auth_manual field_lock_middlename unlocked \N -1249 2 1612889144 auth_manual field_lock_alternatename unlocked \N -1250 2 1612889144 auth_mnet rpc_negotiation_timeout 30 \N -1251 2 1612889144 auth_none field_lock_firstname unlocked \N -1252 2 1612889144 auth_none field_lock_lastname unlocked \N -1253 2 1612889144 auth_none field_lock_email unlocked \N -1254 2 1612889144 auth_none field_lock_city unlocked \N -1255 2 1612889144 auth_none field_lock_country unlocked \N -1256 2 1612889144 auth_none field_lock_lang unlocked \N -1257 2 1612889144 auth_none field_lock_description unlocked \N -1258 2 1612889144 auth_none field_lock_url unlocked \N -1259 2 1612889144 auth_none field_lock_idnumber unlocked \N -1260 2 1612889144 auth_none field_lock_institution unlocked \N -1261 2 1612889144 auth_none field_lock_department unlocked \N -1262 2 1612889144 auth_none field_lock_phone1 unlocked \N -1263 2 1612889144 auth_none field_lock_phone2 unlocked \N -1264 2 1612889144 auth_none field_lock_address unlocked \N -1265 2 1612889144 auth_none field_lock_firstnamephonetic unlocked \N -1266 2 1612889144 auth_none field_lock_lastnamephonetic unlocked \N -1267 2 1612889144 auth_none field_lock_middlename unlocked \N -1268 2 1612889144 auth_none field_lock_alternatename unlocked \N -1269 2 1612889144 auth_oauth2 field_lock_firstname unlocked \N -1270 2 1612889144 auth_oauth2 field_lock_lastname unlocked \N -1271 2 1612889144 auth_oauth2 field_lock_email unlocked \N -1272 2 1612889144 auth_oauth2 field_lock_city unlocked \N -1273 2 1612889144 auth_oauth2 field_lock_country unlocked \N -1274 2 1612889144 auth_oauth2 field_lock_lang unlocked \N -1275 2 1612889144 auth_oauth2 field_lock_description unlocked \N -1276 2 1612889144 auth_oauth2 field_lock_url unlocked \N -1277 2 1612889144 auth_oauth2 field_lock_idnumber unlocked \N -1278 2 1612889144 auth_oauth2 field_lock_institution unlocked \N -1279 2 1612889144 auth_oauth2 field_lock_department unlocked \N -1280 2 1612889144 auth_oauth2 field_lock_phone1 unlocked \N -1281 2 1612889144 auth_oauth2 field_lock_phone2 unlocked \N -1282 2 1612889144 auth_oauth2 field_lock_address unlocked \N -1283 2 1612889144 auth_oauth2 field_lock_firstnamephonetic unlocked \N -1284 2 1612889144 auth_oauth2 field_lock_lastnamephonetic unlocked \N -1285 2 1612889144 auth_oauth2 field_lock_middlename unlocked \N -1286 2 1612889144 auth_oauth2 field_lock_alternatename unlocked \N -1287 2 1612889144 auth_shibboleth user_attribute \N -1288 2 1612889144 auth_shibboleth convert_data \N -1289 2 1612889144 auth_shibboleth alt_login off \N -1290 2 1612889144 auth_shibboleth organization_selection urn:mace:organization1:providerID, Example Organization 1\n https://another.idp-id.com/shibboleth, Other Example Organization, /Shibboleth.sso/DS/SWITCHaai\n urn:mace:organization2:providerID, Example Organization 2, /Shibboleth.sso/WAYF/SWITCHaai \N -1291 2 1612889144 auth_shibboleth logout_handler \N -1292 2 1612889144 auth_shibboleth logout_return_url \N -1293 2 1612889144 auth_shibboleth login_name Shibboleth Login \N -1294 2 1612889144 auth_shibboleth auth_logo \N -1295 2 1612889144 auth_shibboleth auth_instructions Use the Shibboleth login to get access via Shibboleth, if your institution supports it. Otherwise, use the normal login form shown here. \N -1296 2 1612889144 auth_shibboleth changepasswordurl \N -1297 2 1612889144 auth_shibboleth field_map_firstname \N -1298 2 1612889144 auth_shibboleth field_updatelocal_firstname oncreate \N -1299 2 1612889144 auth_shibboleth field_lock_firstname unlocked \N -1300 2 1612889144 auth_shibboleth field_map_lastname \N -1301 2 1612889144 auth_shibboleth field_updatelocal_lastname oncreate \N -1302 2 1612889144 auth_shibboleth field_lock_lastname unlocked \N -1303 2 1612889144 auth_shibboleth field_map_email \N -1304 2 1612889144 auth_shibboleth field_updatelocal_email oncreate \N -1305 2 1612889144 auth_shibboleth field_lock_email unlocked \N -1306 2 1612889144 auth_shibboleth field_map_city \N -1307 2 1612889144 auth_shibboleth field_updatelocal_city oncreate \N -1308 2 1612889144 auth_shibboleth field_lock_city unlocked \N -1309 2 1612889144 auth_shibboleth field_map_country \N -1310 2 1612889144 auth_shibboleth field_updatelocal_country oncreate \N -1311 2 1612889144 auth_shibboleth field_lock_country unlocked \N -1312 2 1612889144 auth_shibboleth field_map_lang \N -1313 2 1612889144 auth_shibboleth field_updatelocal_lang oncreate \N -1314 2 1612889144 auth_shibboleth field_lock_lang unlocked \N -1315 2 1612889144 auth_shibboleth field_map_description \N -1316 2 1612889144 auth_shibboleth field_updatelocal_description oncreate \N -1317 2 1612889144 auth_shibboleth field_lock_description unlocked \N -1318 2 1612889144 auth_shibboleth field_map_url \N -1319 2 1612889144 auth_shibboleth field_updatelocal_url oncreate \N -1320 2 1612889144 auth_shibboleth field_lock_url unlocked \N -1321 2 1612889144 auth_shibboleth field_map_idnumber \N -1322 2 1612889144 auth_shibboleth field_updatelocal_idnumber oncreate \N -1323 2 1612889144 auth_shibboleth field_lock_idnumber unlocked \N -1324 2 1612889144 auth_shibboleth field_map_institution \N -1325 2 1612889144 auth_shibboleth field_updatelocal_institution oncreate \N -1326 2 1612889144 auth_shibboleth field_lock_institution unlocked \N -1327 2 1612889144 auth_shibboleth field_map_department \N -1328 2 1612889144 auth_shibboleth field_updatelocal_department oncreate \N -1329 2 1612889144 auth_shibboleth field_lock_department unlocked \N -1330 2 1612889144 auth_shibboleth field_map_phone1 \N -1331 2 1612889144 auth_shibboleth field_updatelocal_phone1 oncreate \N -1332 2 1612889144 auth_shibboleth field_lock_phone1 unlocked \N -1333 2 1612889144 auth_shibboleth field_map_phone2 \N -1334 2 1612889144 auth_shibboleth field_updatelocal_phone2 oncreate \N -1335 2 1612889144 auth_shibboleth field_lock_phone2 unlocked \N -1336 2 1612889144 auth_shibboleth field_map_address \N -1337 2 1612889144 auth_shibboleth field_updatelocal_address oncreate \N -1338 2 1612889144 auth_shibboleth field_lock_address unlocked \N -1339 2 1612889144 auth_shibboleth field_map_firstnamephonetic \N -1340 2 1612889144 auth_shibboleth field_updatelocal_firstnamephonetic oncreate \N -1341 2 1612889144 auth_shibboleth field_lock_firstnamephonetic unlocked \N -1342 2 1612889144 auth_shibboleth field_map_lastnamephonetic \N -1343 2 1612889144 auth_shibboleth field_updatelocal_lastnamephonetic oncreate \N -1344 2 1612889144 auth_shibboleth field_lock_lastnamephonetic unlocked \N -1345 2 1612889144 auth_shibboleth field_map_middlename \N -1346 2 1612889144 auth_shibboleth field_updatelocal_middlename oncreate \N -1347 2 1612889144 auth_shibboleth field_lock_middlename unlocked \N -1348 2 1612889144 auth_shibboleth field_map_alternatename \N -1349 2 1612889144 auth_shibboleth field_updatelocal_alternatename oncreate \N -1350 2 1612889144 auth_shibboleth field_lock_alternatename unlocked \N -1351 2 1612889144 block_activity_results config_showbest 3 \N -1352 2 1612889144 block_activity_results config_showbest_locked \N -1353 2 1612889144 block_activity_results config_showworst 0 \N -1354 2 1612889144 block_activity_results config_showworst_locked \N -1355 2 1612889144 block_activity_results config_usegroups 0 \N -1356 2 1612889144 block_activity_results config_usegroups_locked \N -1357 2 1612889144 block_activity_results config_nameformat 1 \N -1358 2 1612889144 block_activity_results config_nameformat_locked \N -1359 2 1612889144 block_activity_results config_gradeformat 1 \N -1360 2 1612889144 block_activity_results config_gradeformat_locked \N -1361 2 1612889144 block_activity_results config_decimalpoints 2 \N -1362 2 1612889144 block_activity_results config_decimalpoints_locked \N -1363 2 1612889144 block_myoverview displaycategories 1 \N -1364 2 1612889144 block_myoverview layouts card,list,summary \N -1365 2 1612889144 block_myoverview displaygroupingallincludinghidden 0 \N -1366 2 1612889144 block_myoverview displaygroupingall 1 \N -1367 2 1612889144 block_myoverview displaygroupinginprogress 1 \N -1368 2 1612889144 block_myoverview displaygroupingpast 1 \N -1369 2 1612889144 block_myoverview displaygroupingfuture 1 \N -1370 2 1612889144 block_myoverview displaygroupingcustomfield 0 \N -1371 2 1612889144 block_myoverview customfiltergrouping \N -1372 2 1612889144 block_myoverview displaygroupingfavourites 1 \N -1373 2 1612889144 block_myoverview displaygroupinghidden 1 \N -1374 2 1612889144 \N block_course_list_adminview all \N -1375 2 1612889144 \N block_course_list_hideallcourseslink 0 \N -1376 2 1612889144 \N block_html_allowcssclasses 0 \N -1377 2 1612889144 \N block_online_users_timetosee 5 \N -1378 2 1612889144 \N block_online_users_onlinestatushiding 1 \N -1379 2 1612889144 block_recentlyaccessedcourses displaycategories 1 \N -1380 2 1612889144 \N block_rss_client_num_entries 5 \N -1381 2 1612889144 \N block_rss_client_timeout 30 \N -1382 2 1612889144 block_section_links numsections1 22 \N -1383 2 1612889144 block_section_links incby1 2 \N -1384 2 1612889144 block_section_links numsections2 40 \N -1385 2 1612889144 block_section_links incby2 5 \N -1386 2 1612889144 block_starredcourses displaycategories 1 \N -1387 2 1612889144 block_tag_youtube apikey \N -1388 2 1612889144 format_singleactivity activitytype forum \N -1389 2 1612889144 fileconverter_googledrive issuerid \N -1390 2 1612889144 \N pathtounoconv /usr/bin/unoconv \N -1391 2 1612889144 enrol_cohort roleid 5 \N -1392 2 1612889144 enrol_cohort unenrolaction 0 \N -1393 2 1612889144 enrol_meta nosyncroleids \N -1394 2 1612889144 enrol_meta syncall 1 \N -1395 2 1612889144 enrol_meta unenrolaction 3 \N -1396 2 1612889144 enrol_meta coursesort sortorder \N -1397 2 1612889144 enrol_fee expiredaction 3 \N -1398 2 1612889144 enrol_fee status 1 \N -1399 2 1612889144 enrol_fee cost 0 \N -1400 2 1612889144 enrol_fee currency USD \N -1401 2 1612889144 enrol_fee roleid 5 \N -1402 2 1612889144 enrol_fee enrolperiod 0 \N -1403 2 1612889144 enrol_database dbtype \N -1404 2 1612889144 enrol_database dbhost localhost \N -1405 2 1612889144 enrol_database dbuser \N -1406 2 1612889144 enrol_database dbpass \N -1407 2 1612889144 enrol_database dbname \N -1408 2 1612889144 enrol_database dbencoding utf-8 \N -1409 2 1612889144 enrol_database dbsetupsql \N -1410 2 1612889144 enrol_database dbsybasequoting 0 \N -1411 2 1612889144 enrol_database debugdb 0 \N -1412 2 1612889144 enrol_database localcoursefield idnumber \N -1413 2 1612889144 enrol_database localuserfield idnumber \N -1414 2 1612889144 enrol_database localrolefield shortname \N -1415 2 1612889144 enrol_database localcategoryfield id \N -1416 2 1612889144 enrol_database remoteenroltable \N -1417 2 1612889144 enrol_database remotecoursefield \N -1418 2 1612889144 enrol_database remoteuserfield \N -1419 2 1612889144 enrol_database remoterolefield \N -1420 2 1612889144 enrol_database remoteotheruserfield \N -1421 2 1612889144 enrol_database defaultrole 5 \N -1422 2 1612889144 enrol_database ignorehiddencourses 0 \N -1423 2 1612889144 enrol_database unenrolaction 0 \N -1424 2 1612889144 enrol_database newcoursetable \N -1425 2 1612889144 enrol_database newcoursefullname fullname \N -1426 2 1612889144 enrol_database newcourseshortname shortname \N -1427 2 1612889144 enrol_database newcourseidnumber idnumber \N -1428 2 1612889144 enrol_database newcoursecategory \N -1429 2 1612889144 enrol_database defaultcategory 1 \N -1430 2 1612889144 enrol_database templatecourse \N -1431 2 1612889144 enrol_flatfile location \N -1432 2 1612889144 enrol_flatfile encoding UTF-8 \N -1433 2 1612889144 enrol_flatfile mailstudents 0 \N -1434 2 1612889144 enrol_flatfile mailteachers 0 \N -1435 2 1612889144 enrol_flatfile mailadmins 0 \N -1436 2 1612889144 enrol_flatfile unenrolaction 3 \N -1437 2 1612889144 enrol_flatfile expiredaction 3 \N -1438 2 1612889144 enrol_guest requirepassword 0 \N -1439 2 1612889144 enrol_guest usepasswordpolicy 0 \N -1440 2 1612889144 enrol_guest showhint 0 \N -1441 2 1612889144 enrol_guest defaultenrol 1 \N -1442 2 1612889144 enrol_guest status 1 \N -1443 2 1612889144 enrol_guest status_adv \N -1444 2 1612889144 enrol_imsenterprise imsfilelocation \N -1445 2 1612889144 enrol_imsenterprise logtolocation \N -1446 2 1612889144 enrol_imsenterprise mailadmins 0 \N -1447 2 1612889144 enrol_imsenterprise createnewusers 0 \N -1448 2 1612889144 enrol_imsenterprise imsupdateusers 0 \N -1449 2 1612889144 enrol_imsenterprise imsdeleteusers 0 \N -1450 2 1612889144 enrol_imsenterprise fixcaseusernames 0 \N -1451 2 1612889144 enrol_imsenterprise fixcasepersonalnames 0 \N -1452 2 1612889144 enrol_imsenterprise imssourcedidfallback 0 \N -1453 2 1612889144 enrol_imsenterprise imsrolemap01 5 \N -1454 2 1612889144 enrol_imsenterprise imsrolemap02 3 \N -1455 2 1612889144 enrol_imsenterprise imsrolemap03 3 \N -1456 2 1612889144 enrol_imsenterprise imsrolemap04 5 \N -1457 2 1612889144 enrol_imsenterprise imsrolemap05 0 \N -1458 2 1612889144 enrol_imsenterprise imsrolemap06 4 \N -1459 2 1612889144 enrol_imsenterprise imsrolemap07 0 \N -1460 2 1612889144 enrol_imsenterprise imsrolemap08 4 \N -1461 2 1612889144 enrol_imsenterprise truncatecoursecodes 0 \N -1462 2 1612889144 enrol_imsenterprise createnewcourses 0 \N -1463 2 1612889144 enrol_imsenterprise updatecourses 0 \N -1464 2 1612889144 enrol_imsenterprise createnewcategories 0 \N -1465 2 1612889144 enrol_imsenterprise nestedcategories 0 \N -1466 2 1612889144 enrol_imsenterprise categoryidnumber 0 \N -1467 2 1612889144 enrol_imsenterprise categoryseparator \N -1468 2 1612889144 enrol_imsenterprise imsunenrol 0 \N -1469 2 1612889144 enrol_imsenterprise imscoursemapshortname coursecode \N -1470 2 1612889144 enrol_imsenterprise imscoursemapfullname short \N -1471 2 1612889144 enrol_imsenterprise imscoursemapsummary ignore \N -1472 2 1612889144 enrol_imsenterprise imsrestricttarget \N -1473 2 1612889144 enrol_imsenterprise imscapitafix 0 \N -1474 2 1612889144 enrol_manual expiredaction 1 \N -1475 2 1612889144 enrol_manual expirynotifyhour 6 \N -1476 2 1612889144 enrol_manual defaultenrol 1 \N -1477 2 1612889144 enrol_manual status 0 \N -1478 2 1612889144 enrol_manual roleid 5 \N -1479 2 1612889144 enrol_manual enrolstart 4 \N -1480 2 1612889144 enrol_manual enrolperiod 0 \N -1481 2 1612889144 enrol_manual expirynotify 0 \N -1482 2 1612889144 enrol_manual expirythreshold 86400 \N -1483 2 1612889144 enrol_mnet roleid 5 \N -1484 2 1612889144 enrol_mnet roleid_adv 1 \N -1485 2 1612889144 enrol_paypal paypalbusiness \N -1486 2 1612889144 enrol_paypal mailstudents 0 \N -1487 2 1612889144 enrol_paypal mailteachers 0 \N -1488 2 1612889144 enrol_paypal mailadmins 0 \N -1489 2 1612889144 enrol_paypal expiredaction 3 \N -1490 2 1612889144 enrol_paypal status 1 \N -1491 2 1612889144 enrol_paypal cost 0 \N -1492 2 1612889144 enrol_paypal currency USD \N -1493 2 1612889144 enrol_paypal roleid 5 \N -1494 2 1612889144 enrol_paypal enrolperiod 0 \N -1495 2 1612889144 enrol_lti emaildisplay 2 \N -1496 2 1612889144 enrol_lti city \N -1497 2 1612889144 enrol_lti country \N -1498 2 1612889144 enrol_lti timezone 99 \N -1499 2 1612889144 enrol_lti lang en \N -1500 2 1612889144 enrol_lti institution \N -1501 2 1612889144 enrol_self requirepassword 0 \N -1502 2 1612889144 enrol_self usepasswordpolicy 0 \N -1503 2 1612889144 enrol_self showhint 0 \N -1504 2 1612889144 enrol_self expiredaction 1 \N -1505 2 1612889144 enrol_self expirynotifyhour 6 \N -1506 2 1612889144 enrol_self defaultenrol 1 \N -1507 2 1612889144 enrol_self status 1 \N -1508 2 1612889144 enrol_self newenrols 0 \N -1509 2 1612889144 enrol_self groupkey 0 \N -1510 2 1612889144 enrol_self roleid 5 \N -1511 2 1612889144 enrol_self enrolperiod 0 \N -1512 2 1612889144 enrol_self expirynotify 0 \N -1513 2 1612889144 enrol_self expirythreshold 86400 \N -1514 2 1612889144 enrol_self longtimenosee 0 \N -1515 2 1612889144 enrol_self maxenrolled 0 \N -1516 2 1612889144 enrol_self sendcoursewelcomemessage 1 \N -1517 2 1612889144 filter_urltolink formats 1,4,0 \N -1518 2 1612889144 filter_urltolink embedimages 1 \N -1519 2 1612889144 filter_emoticon formats 1,4,0 \N -1520 2 1612889144 filter_displayh5p allowedsources \N -1521 2 1612889144 filter_mathjaxloader httpsurl https://cdn.jsdelivr.net/npm/mathjax@2.7.8/MathJax.js \N -1522 2 1612889144 filter_mathjaxloader texfiltercompatibility 0 \N -1523 2 1612889144 filter_mathjaxloader mathjaxconfig \nMathJax.Hub.Config({\n config: ["Accessible.js", "Safe.js"],\n errorSettings: { message: ["!"] },\n skipStartupTypeset: true,\n messageStyle: "none"\n});\n \N -1524 2 1612889144 filter_mathjaxloader additionaldelimiters \N -1525 2 1612889144 \N filter_multilang_force_old 0 \N -1526 2 1612889144 filter_tex latexpreamble \\usepackage[latin1]{inputenc}\n\\usepackage{amsmath}\n\\usepackage{amsfonts}\n\\RequirePackage{amsmath,amssymb,latexsym}\n \N -1527 2 1612889145 filter_tex latexbackground #FFFFFF \N -1528 2 1612889145 filter_tex density 120 \N -1529 2 1612889145 filter_tex pathlatex /usr/bin/latex \N -1530 2 1612889145 filter_tex pathdvips /usr/bin/dvips \N -1531 2 1612889145 filter_tex pathconvert /usr/bin/convert \N -1532 2 1612889145 filter_tex pathdvisvgm /usr/bin/dvisvgm \N -1533 2 1612889145 filter_tex pathmimetex \N -1534 2 1612889145 filter_tex convertformat gif \N -1535 2 1612889145 \N filter_censor_badwords \N -1536 2 1612889145 logstore_database dbdriver \N -1537 2 1612889145 logstore_database dbhost \N -1538 2 1612889145 logstore_database dbuser \N -1539 2 1612889145 logstore_database dbpass \N -1540 2 1612889145 logstore_database dbname \N -1541 2 1612889145 logstore_database dbtable \N -1542 2 1612889145 logstore_database dbpersist 0 \N -1543 2 1612889145 logstore_database dbsocket \N -1544 2 1612889145 logstore_database dbport \N -1545 2 1612889145 logstore_database dbschema \N -1546 2 1612889145 logstore_database dbcollation \N -1547 2 1612889145 logstore_database dbhandlesoptions 0 \N -1548 2 1612889145 logstore_database buffersize 50 \N -1549 2 1612889145 logstore_database jsonformat 1 \N -1550 2 1612889145 logstore_database logguests 0 \N -1551 2 1612889145 logstore_database includelevels 1,2,0 \N -1552 2 1612889145 logstore_database includeactions c,r,u,d \N -1553 2 1612889145 logstore_legacy loglegacy 0 \N -1554 2 1612889145 \N logguests 1 \N -1555 2 1612889145 \N loglifetime 0 \N -1556 2 1612889145 logstore_standard logguests 1 \N -1557 2 1612889145 logstore_standard jsonformat 1 \N -1558 2 1612889145 logstore_standard loglifetime 0 \N -1559 2 1612889145 logstore_standard buffersize 50 \N -1560 2 1612889145 mlbackend_python useserver 0 \N -1561 2 1612889145 mlbackend_python host \N -1562 2 1612889145 mlbackend_python port 0 \N -1563 2 1612889145 mlbackend_python secure 0 \N -1564 2 1612889145 mlbackend_python username default \N -1565 2 1612889145 mlbackend_python password \N -1566 2 1612889145 media_videojs videoextensions html_video,media_source,.f4v,.flv \N -1567 2 1612889145 media_videojs audioextensions html_audio \N -1568 2 1612889145 media_videojs rtmp 0 \N -1569 2 1612889145 media_videojs useflash 0 \N -1570 2 1612889145 media_videojs youtube 1 \N -1571 2 1612889145 media_videojs videocssclass video-js \N -1572 2 1612889145 media_videojs audiocssclass video-js \N -1573 2 1612889145 media_videojs limitsize 1 \N -1574 2 1612889145 paygw_paypal surcharge 0 \N -1575 2 1612889145 qtype_multichoice answerhowmany 1 \N -1576 2 1612889145 qtype_multichoice shuffleanswers 1 \N -1577 2 1612889145 qtype_multichoice answernumbering abc \N -1578 2 1612889145 editor_atto toolbar collapse = collapse\nstyle1 = title, bold, italic\nlist = unorderedlist, orderedlist, indent\nlinks = link\nfiles = emojipicker, image, media, recordrtc, managefiles, h5p\nstyle2 = underline, strike, subscript, superscript\nalign = align\ninsert = equation, charmap, table, clear\nundo = undo\naccessibility = accessibilitychecker, accessibilityhelper\nother = html \N -1579 2 1612889145 editor_atto autosavefrequency 60 \N -1580 2 1612889145 atto_collapse showgroups 5 \N -1581 2 1612889145 atto_equation librarygroup1 \n\\cdot\n\\times\n\\ast\n\\div\n\\diamond\n\\pm\n\\mp\n\\oplus\n\\ominus\n\\otimes\n\\oslash\n\\odot\n\\circ\n\\bullet\n\\asymp\n\\equiv\n\\subseteq\n\\supseteq\n\\leq\n\\geq\n\\preceq\n\\succeq\n\\sim\n\\simeq\n\\approx\n\\subset\n\\supset\n\\ll\n\\gg\n\\prec\n\\succ\n\\infty\n\\in\n\\ni\n\\forall\n\\exists\n\\neq\n \N -1582 2 1612889145 atto_equation librarygroup2 \n\\leftarrow\n\\rightarrow\n\\uparrow\n\\downarrow\n\\leftrightarrow\n\\nearrow\n\\searrow\n\\swarrow\n\\nwarrow\n\\Leftarrow\n\\Rightarrow\n\\Uparrow\n\\Downarrow\n\\Leftrightarrow\n \N -1583 2 1612889145 atto_equation librarygroup3 \n\\alpha\n\\beta\n\\gamma\n\\delta\n\\epsilon\n\\zeta\n\\eta\n\\theta\n\\iota\n\\kappa\n\\lambda\n\\mu\n\\nu\n\\xi\n\\pi\n\\rho\n\\sigma\n\\tau\n\\upsilon\n\\phi\n\\chi\n\\psi\n\\omega\n\\Gamma\n\\Delta\n\\Theta\n\\Lambda\n\\Xi\n\\Pi\n\\Sigma\n\\Upsilon\n\\Phi\n\\Psi\n\\Omega\n \N -1584 2 1612889145 atto_equation librarygroup4 \n\\sum{a,b}\n\\sqrt[a]{b+c}\n\\int_{a}^{b}{c}\n\\iint_{a}^{b}{c}\n\\iiint_{a}^{b}{c}\n\\oint{a}\n(a)\n[a]\n\\lbrace{a}\\rbrace\n\\left| \\begin{matrix} a_1 & a_2 \\ a_3 & a_4 \\end{matrix} \\right|\n\\frac{a}{b+c}\n\\vec{a}\n\\binom {a} {b}\n{a \\brack b}\n{a \\brace b}\n \N -1585 2 1612889145 atto_recordrtc allowedtypes both \N -1586 2 1612889145 atto_recordrtc audiobitrate 128000 \N -1587 2 1612889145 atto_recordrtc videobitrate 2500000 \N -1588 2 1612889145 atto_recordrtc timelimit 120 \N -1589 2 1612889145 atto_table allowborders 0 \N -1590 2 1612889145 atto_table allowbackgroundcolour 0 \N -1591 2 1612889145 atto_table allowwidth 0 \N -1592 2 1612889145 editor_tinymce customtoolbar wrap,formatselect,wrap,bold,italic,wrap,bullist,numlist,wrap,link,unlink,wrap,image\n\nundo,redo,wrap,underline,strikethrough,sub,sup,wrap,justifyleft,justifycenter,justifyright,wrap,outdent,indent,wrap,forecolor,backcolor,wrap,ltr,rtl\n\nfontselect,fontsizeselect,wrap,code,search,replace,wrap,nonbreaking,charmap,table,wrap,cleanup,removeformat,pastetext,pasteword,wrap,fullscreen \N -1593 2 1612889145 editor_tinymce fontselectlist Trebuchet=Trebuchet MS,Verdana,Arial,Helvetica,sans-serif;Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;Wingdings=wingdings \N -1594 2 1612889145 editor_tinymce customconfig \N -1595 2 1612889145 tinymce_moodleemoticon requireemoticon 1 \N -1596 2 1612889145 tinymce_spellchecker spellengine \N -1597 2 1612889145 tinymce_spellchecker spelllanguagelist +English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv \N -1598 2 1612889145 \N profileroles 5,4,3 \N -1599 2 1612889145 \N coursecontact 3 \N -1600 2 1612889145 \N frontpage 6 \N -1601 2 1612889145 \N frontpageloggedin 6 \N -1602 2 1612889145 \N maxcategorydepth 2 \N -1603 2 1612889145 \N frontpagecourselimit 200 \N -1604 2 1612889145 \N commentsperpage 15 \N -1605 2 1612889145 \N defaultfrontpageroleid 8 \N -1606 2 1612889145 \N messageinbound_enabled 0 \N -1607 2 1612889145 \N messageinbound_mailbox \N -1608 2 1612889145 \N messageinbound_domain \N -1609 2 1612889145 \N messageinbound_host \N -1610 2 1612889145 \N messageinbound_hostssl ssl \N -1611 2 1612889145 \N messageinbound_hostuser \N -1612 2 1612889145 \N messageinbound_hostpass \N -1613 2 1612889145 \N enablemobilewebservice 1 \N -1614 2 1612889145 tool_mobile apppolicy \N -1615 2 1612889145 tool_mobile typeoflogin 1 \N -1616 2 1612889145 tool_mobile qrcodetype 1 \N -1617 2 1612889145 tool_mobile forcedurlscheme moodlemobile \N -1618 2 1612889145 tool_mobile minimumversion \N -1619 2 1612889145 \N mobilecssurl \N -1620 2 1612889145 tool_mobile enablesmartappbanners 1 \N -1621 2 1612889145 tool_mobile iosappid 633359593 \N -1622 2 1612889145 tool_mobile androidappid org.relaytrust.moodlemobile \N -1623 2 1612889145 tool_mobile setuplink /wellapp \N -1624 2 1612889145 tool_mobile forcelogout 0 \N -1625 2 1612889145 tool_mobile disabledfeatures $mmLoginEmailSignup,NoDelegate_ForgottenPassword,$mmSideMenuDelegate_mmaFrontpage,$mmSideMenuDelegate_mmaGrades,$mmSideMenuDelegate_mmaCompetency,$mmSideMenuDelegate_mmaFiles,CoreMainMenuDelegate_CoreTag,$mmSideMenuDelegate_website,$mmSideMenuDelegate_help,CoreCourseOptionsDelegate_AddonBlog,CoreUserDelegate_AddonBlog:blogs,$mmUserDelegate_mmaMessages:blockContact, \N -1626 2 1612889145 tool_mobile custommenuitems \N -1627 2 1612889145 tool_mobile filetypeexclusionlist \N -1628 2 1612889145 tool_mobile customlangstrings \N -1629 2 1612889145 tool_moodlenet enablemoodlenet 0 \N -1630 2 1612889145 tool_moodlenet defaultmoodlenetname MoodleNet Central \N -1631 2 1612889145 tool_moodlenet defaultmoodlenet https://moodle.net \N -1632 2 1612889167 \N timezone Europe/London \N -1633 2 1612889167 \N registerauth \N -1634 2 1613080312 \N enablemobilewebservice 1 0 -1635 2 1613084183 tool_mobile qrcodetype 2 1 \. From e7364515966cec4df2adf41ae2653355179ba467 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 2 Jun 2021 15:14:38 -0700 Subject: [PATCH 088/129] Final Beta Defaults --- .../templates/moodle_database_template.dump | 31 +++++++++++-------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump index e6b0c88d..de2b4dbf 100644 --- a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump +++ b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump @@ -24297,12 +24297,12 @@ COPY public.mdl_block_instances (id, blockname, parentcontextid, showinsubcontex 10 myoverview 1 0 0 my-index 2 content 2 1612889086 1612889086 11 myoverview 5 0 0 my-index 3 content 2 1612889167 1612889167 12 recentlyaccessedcourses 5 0 0 my-index 3 content 1 1612889167 1612889167 -13 lp 5 0 0 my-index 3 content 0 1612889167 1612889167 +13 lp 5 0 0 Amy-index 3 content 0 1612889167 1612889167 14 calendar_upcoming 5 0 0 my-index 3 side-post 5 1612889167 1612889167 15 calendar_month 5 0 0 my-index 3 side-post 4 1612889167 1612889167 -16 badges 5 0 0 my-index 3 side-post 3 1612889167 1612889167 -17 online_users 5 0 0 my-index 3 side-post 2 1612889167 1612889167 -18 private_files 5 0 0 my-index 3 side-post 1 1612889167 1612889167 +16 badges 5 0 0 Amy-index 3 side-post 3 1612889167 1612889167 +17 online_users 5 0 0 Amy-index 3 side-post 2 1612889167 1612889167 +18 private_files 5 0 0 Amy-index 3 side-post 1 1612889167 1612889167 19 timeline 5 0 0 my-index 3 side-post 0 1612889167 1612889167 20 timeline 25 0 0 my-index 4 side-post 0 1613080109 1613080109 21 private_files 25 0 0 my-index 4 side-post 1 1613080110 1613080110 @@ -24313,14 +24313,15 @@ COPY public.mdl_block_instances (id, blockname, parentcontextid, showinsubcontex 26 lp 25 0 0 my-index 4 content 0 1613080110 1613080110 27 recentlyaccessedcourses 25 0 0 my-index 4 content 1 1613080110 1613080110 28 myoverview 25 0 0 my-index 4 content 2 1613080110 1613080110 +29 html 5 0 0 my-index \N content 0 Tzo4OiJzdGRDbGFzcyI6Mzp7czo0OiJ0ZXh0IjtzOjU1OiI8cCBkaXI9Imx0ciIgc3R5bGU9InRleHQtYWxpZ246IGxlZnQ7Ij5ibG9ja2NvbnRlbnQ8L3A+IjtzOjU6InRpdGxlIjtzOjEwOiJibG9ja3RpdGxlIjtzOjY6ImZvcm1hdCI7czoxOiIxIjt9 1622670350 1622670378 \. - +-- TO UPDATE THE Block Text, copy the content into https://www.base64decode.org/, then change the text and re-encode (DM 20210602) -- -- Name: mdl_block_instances_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_block_instances_id_seq', 28, true); +SELECT pg_catalog.setval('public.mdl_block_instances_id_seq', 29, true); -- @@ -24328,6 +24329,10 @@ SELECT pg_catalog.setval('public.mdl_block_instances_id_seq', 28, true); -- COPY public.mdl_block_positions (id, blockinstanceid, contextid, pagetype, subpage, visible, region, weight) FROM stdin; +1 13 5 my-index 3 0 content 0 +2 18 5 my-index 3 0 side-post 1 +3 17 5 my-index 3 0 side-post 2 +4 16 5 my-index 3 0 side-post 3 \. @@ -24335,7 +24340,7 @@ COPY public.mdl_block_positions (id, blockinstanceid, contextid, pagetype, subpa -- Name: mdl_block_positions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_block_positions_id_seq', 1, false); +SELECT pg_catalog.setval('public.mdl_block_positions_id_seq', 4, false); -- @@ -26333,7 +26338,7 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 194 theme_boost preset default.scss 195 theme_boost presetfiles 196 theme_boost backgroundimage -197 theme_boost brandcolor +197 theme_boost brandcolor #A4175B 198 theme_boost scsspre 199 theme_boost scss 200 theme_classic navbardark 0 @@ -27871,7 +27876,7 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 1811 enrol_self expirynotifyhour 6 1812 enrol_self defaultenrol 1 1813 enrol_self status 1 -1814 enrol_self newenrols 1 +1814 enrol_self newenrols 0 1815 enrol_self groupkey 0 1816 enrol_self roleid 5 1817 enrol_self enrolperiod 0 @@ -27961,12 +27966,12 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 1901 tool_mobile typeoflogin 1 1903 tool_mobile forcedurlscheme 1904 tool_mobile minimumversion -1905 tool_mobile enablesmartappbanners 0 -1906 tool_mobile iosappid 633359593 +1905 tool_mobile enablesmartappbanners 1 +1906 tool_mobile iosappid 1907 tool_mobile androidappid org.relaytrust.thewell -1908 tool_mobile setuplink https://www.relaytrust.org/thewell/thewellapp.html +1908 tool_mobile setuplink /thewell/ 1909 tool_mobile forcelogout 0 -1910 tool_mobile disabledfeatures +1910 tool_mobile disabledfeatures $mmLoginEmailSignup,NoDelegate_ForgottenPassword,$mmSideMenuDelegate_mmaFrontpage,$mmSideMenuDelegate_mmaGrades,$mmSideMenuDelegate_mmaCompetency,$mmSideMenuDelegate_mmaFiles,CoreMainMenuDelegate_CoreTag,$mmSideMenuDelegate_website,$mmSideMenuDelegate_help,CoreCourseOptionsDelegate_AddonBlog,CoreUserDelegate_AddonBlog:blogs,$mmUserDelegate_mmaMessages:blockContact 1911 tool_mobile custommenuitems Get Resources from The Well|http://thewell|browser||fa-cart-arrow-down\r\nHelp|http://learn.thewell/help|embedded||fa-question-circle\r\nAbout The Well|http://learn.thewell/help/about.html|embedded||fa-tint 1912 tool_mobile filetypeexclusionlist 1913 tool_mobile customlangstrings From e662b63adee6187a88c1bb7217a17a07f5c648ba Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 2 Jun 2021 15:20:24 -0700 Subject: [PATCH 089/129] Remove User Account --- .../ansible-postgresql/templates/moodle_database_template.dump | 1 - 1 file changed, 1 deletion(-) diff --git a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump index de2b4dbf..7bcdd19d 100644 --- a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump +++ b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump @@ -38637,7 +38637,6 @@ SELECT pg_catalog.setval('public.mdl_url_id_seq', 1, false); COPY public.mdl_user (id, auth, confirmed, policyagreed, deleted, suspended, mnethostid, username, password, idnumber, firstname, lastname, email, emailstop, icq, skype, yahoo, aim, msn, phone1, phone2, institution, department, address, city, country, lang, calendartype, theme, timezone, firstaccess, lastaccess, lastlogin, currentlogin, lastip, secret, picture, url, description, descriptionformat, mailformat, maildigest, maildisplay, autosubscribe, trackforums, timecreated, timemodified, trustbitmask, imagealt, lastnamephonetic, firstnamephonetic, middlename, alternatename, moodlenetprofile) FROM stdin; 1 manual 1 0 0 0 1 guest $2y$10$kUowCQcP6CK4rthRvesKDO.QVRXnUfgAKl3I/fvAJv.zGltjWnDSq Guest user guest@email.com 0 en gregorian 99 0 0 0 0 0 This user is a special user that allows read-only access to some courses. 1 1 0 2 1 0 0 1612889053 0 \N \N \N \N \N \N -3 manual 1 0 0 0 1 user $2y$10$zo7Pb0Z.ki5s.X63jbgJlOEN6uVvQOUihe4CGrJz0eUhlAM.He6iG User User user@email.com 0 en gregorian 99 1613080106 1613081315 0 1613080106 67.182.30.218 0 1 1 0 0 1 0 1612889205 1612889205 0 2 manual 1 0 0 0 1 admin $2y$10$75u/DYN/ajTm7NobTnIkE.wFwnZBpN1bnd8L0nSnh9ZJGLyRKFBLu Admin User admin@email.com 0 en gregorian 99 1612889108 1613084183 1613080121 1613081196 67.182.30.218 0 1 1 0 0 1 0 0 1612889141 0 \N \. From ac203906e523ab63b0b677bf499eed9f04949d0f Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 2 Jun 2021 16:00:13 -0700 Subject: [PATCH 090/129] Download App Support --- ansible/roles/moodle/defaults/main.yml | 4 +- ansible/roles/moodle/tasks/main.yml | 10 + .../moodle/templates/thewell_index_html.j2 | 241 ++++++++++++++++++ 3 files changed, 254 insertions(+), 1 deletion(-) create mode 100644 ansible/roles/moodle/templates/thewell_index_html.j2 diff --git a/ansible/roles/moodle/defaults/main.yml b/ansible/roles/moodle/defaults/main.yml index 6020bf37..7a06481e 100644 --- a/ansible/roles/moodle/defaults/main.yml +++ b/ansible/roles/moodle/defaults/main.yml @@ -2,4 +2,6 @@ moodle_base_directory: "/var/www/moodle" # This is the default hostname of the connectbox and Moodle will use it unless provided by env variable during Ansible install -hostname: "{{ connectbox_default_hostname }}" \ No newline at end of file +hostname: "{{ connectbox_default_hostname }}" + +app_download_local_filename: "the-well-v1.apk" \ No newline at end of file diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml index d33f0c2f..927d89b5 100644 --- a/ansible/roles/moodle/tasks/main.yml +++ b/ansible/roles/moodle/tasks/main.yml @@ -24,6 +24,16 @@ clone: yes update: yes +- name: Download The Well App (Moodle Android App) from URL + get_url: + url: 'https://thewell-images.s3-us-west-2.amazonaws.com/{{app_download_local_filename}}' + dest: /var/www/moodle/thewell + +- name: Customize App Download Page + template: + src: var_www_moodle_config_php.j2 + dest: /var/www/moodle/config.php + - name: Copy customcert plugin to /var/www/moodle/mod/ ansible.builtin.unarchive: src: ../templates/customcert.tar.gz diff --git a/ansible/roles/moodle/templates/thewell_index_html.j2 b/ansible/roles/moodle/templates/thewell_index_html.j2 new file mode 100644 index 00000000..0253d03e --- /dev/null +++ b/ansible/roles/moodle/templates/thewell_index_html.j2 @@ -0,0 +1,241 @@ + + + + + Error + + + + + + + + + +
+ +
+ + + + + + + + + + + +
+ + +
+
+ + + + +
+
+ + + +
+
+ + + +
You are not logged in. (Log in)
+
+ + + Get the mobile app + + + + + + +
+
+ + + + \ No newline at end of file From b8173c83672482e9a8a6c431ef13dd749002ff73 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 2 Jun 2021 16:20:50 -0700 Subject: [PATCH 091/129] Rename --- .../templates/{thewell_index_html.j2 => thewell_index_php.j2} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename ansible/roles/moodle/templates/{thewell_index_html.j2 => thewell_index_php.j2} (99%) diff --git a/ansible/roles/moodle/templates/thewell_index_html.j2 b/ansible/roles/moodle/templates/thewell_index_php.j2 similarity index 99% rename from ansible/roles/moodle/templates/thewell_index_html.j2 rename to ansible/roles/moodle/templates/thewell_index_php.j2 index 0253d03e..060e5ad9 100644 --- a/ansible/roles/moodle/templates/thewell_index_html.j2 +++ b/ansible/roles/moodle/templates/thewell_index_php.j2 @@ -129,7 +129,7 @@ document.body.className += ' jsenabled'; From 81c8a2b4ea0a0933d6f09711b633859db6d9231a Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 2 Jun 2021 16:20:59 -0700 Subject: [PATCH 092/129] Rename --- ansible/roles/moodle/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml index 927d89b5..9221e720 100644 --- a/ansible/roles/moodle/tasks/main.yml +++ b/ansible/roles/moodle/tasks/main.yml @@ -31,8 +31,8 @@ - name: Customize App Download Page template: - src: var_www_moodle_config_php.j2 - dest: /var/www/moodle/config.php + src: thewell_index_php.j2 + dest: /var/www/moodle/thewell/index.php - name: Copy customcert plugin to /var/www/moodle/mod/ ansible.builtin.unarchive: From 79e8973441a5880831d1898f6874c920ff7207fa Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Thu, 3 Jun 2021 09:42:43 -0700 Subject: [PATCH 093/129] Use Android Icon For Download --- .gitignore | 1 + ansible/group_vars/raspbian | 4 ++-- .../templates/moodle_database_template.dump | 2 +- ansible/roles/moodle/tasks/main.yml | 2 +- ansible/roles/moodle/templates/thewell_index_php.j2 | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index b9c68858..f353cc85 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ ci/terraform.tfstate* ansible/inventory makenewimage.sh ansible/inventory-* +makenewimage.pl diff --git a/ansible/group_vars/raspbian b/ansible/group_vars/raspbian index de306733..289e7bf8 100644 --- a/ansible/group_vars/raspbian +++ b/ansible/group_vars/raspbian @@ -2,5 +2,5 @@ connectbox_os: raspbian ansible_user: pi -client_facing_if: "wlan1" -eth_facing_if: "wlan0" +client_facing_if: "wlan0" +eth_facing_if: "eth0" diff --git a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump index 7bcdd19d..372e89bc 100644 --- a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump +++ b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump @@ -27972,7 +27972,7 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 1908 tool_mobile setuplink /thewell/ 1909 tool_mobile forcelogout 0 1910 tool_mobile disabledfeatures $mmLoginEmailSignup,NoDelegate_ForgottenPassword,$mmSideMenuDelegate_mmaFrontpage,$mmSideMenuDelegate_mmaGrades,$mmSideMenuDelegate_mmaCompetency,$mmSideMenuDelegate_mmaFiles,CoreMainMenuDelegate_CoreTag,$mmSideMenuDelegate_website,$mmSideMenuDelegate_help,CoreCourseOptionsDelegate_AddonBlog,CoreUserDelegate_AddonBlog:blogs,$mmUserDelegate_mmaMessages:blockContact -1911 tool_mobile custommenuitems Get Resources from The Well|http://thewell|browser||fa-cart-arrow-down\r\nHelp|http://learn.thewell/help|embedded||fa-question-circle\r\nAbout The Well|http://learn.thewell/help/about.html|embedded||fa-tint +1911 tool_mobile custommenuitems Get Resources from The Well|http://{{connectbox_default_hostname}}|browser||fa-cart-arrow-down\r\nHelp|http://learn.{{connectbox_default_hostname}}/help|embedded||fa-question-circle\r\nAbout The Well|http://learn.{{connectbox_default_hostname}}/help/about.html|embedded||fa-tint 1912 tool_mobile filetypeexclusionlist 1913 tool_mobile customlangstrings 1914 tool_moodlenet enablemoodlenet 0 diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml index 9221e720..800eff14 100644 --- a/ansible/roles/moodle/tasks/main.yml +++ b/ansible/roles/moodle/tasks/main.yml @@ -128,7 +128,7 @@ when: not developer_mode # Setup Moodle's Cron -- name: Setup chat_attachments/clean_up.php To Run Every Minute in Developer Mode +- name: Setup chat_attachments/clean_up.php To Run Every Day in Developer Mode ansible.builtin.cron: name: "chat_attachments/push_messages.php true" minute: "*" diff --git a/ansible/roles/moodle/templates/thewell_index_php.j2 b/ansible/roles/moodle/templates/thewell_index_php.j2 index 060e5ad9..d612f732 100644 --- a/ansible/roles/moodle/templates/thewell_index_php.j2 +++ b/ansible/roles/moodle/templates/thewell_index_php.j2 @@ -129,7 +129,7 @@ document.body.className += ' jsenabled';
From df5acf87b95adece4e281c045c818aa1a1d164d1 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Thu, 3 Jun 2021 09:44:54 -0700 Subject: [PATCH 094/129] Use default hostname as the SSID --- ansible/roles/wifi-ap/defaults/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/roles/wifi-ap/defaults/main.yml b/ansible/roles/wifi-ap/defaults/main.yml index 168f303d..82b94eed 100644 --- a/ansible/roles/wifi-ap/defaults/main.yml +++ b/ansible/roles/wifi-ap/defaults/main.yml @@ -1,5 +1,5 @@ --- -ssid: "ConnectBox - Free Media" +ssid: "{{connectbox_default_hostname}} - Free Media" wireless_channel: 1 # Only used as an override. Country code is automatically set when the # wifi device comes up, and defaults to the world regulatory domain 00. From e0700bd5ff977c0a57d0c1ba1c75ff053a05414b Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Thu, 3 Jun 2021 11:34:05 -0700 Subject: [PATCH 095/129] Make sure that we do the initial build --- ansible/roles/moodle/tasks/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml index 800eff14..2b3af1d4 100644 --- a/ansible/roles/moodle/tasks/main.yml +++ b/ansible/roles/moodle/tasks/main.yml @@ -39,13 +39,13 @@ src: ../templates/customcert.tar.gz dest: /var/www/moodle/mod/ become: true - when: overwrite_database + when: buildDatabase.rc > 0 or overwrite_database - name: Recursively empty existing moodledata directory shell: rm -rf /var/www/moodledata/* become: true ignore_errors: yes - when: overwrite_database + when: buildDatabase.rc > 0 or overwrite_database - name: Restore moodledata directory that Moodle requires for all its functions file: @@ -60,7 +60,7 @@ src: ../templates/filedir.tar.gz dest: /var/www/moodledata/ become: true - when: overwrite_database + when: buildDatabase.rc > 0 or overwrite_database - name: configure temporary storage for Moodle cache when: connectbox_os == "raspbian" From bcbf94f0f46794098ad4732b59e7594ba90b97ed Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Thu, 3 Jun 2021 13:42:12 -0700 Subject: [PATCH 096/129] Delete mariadb database dump because we use postgres --- .../templates/moodle_database_template.txt | 14272 ---------------- 1 file changed, 14272 deletions(-) delete mode 100644 ansible/roles/moodle/templates/moodle_database_template.txt diff --git a/ansible/roles/moodle/templates/moodle_database_template.txt b/ansible/roles/moodle/templates/moodle_database_template.txt deleted file mode 100644 index b8bbf166..00000000 --- a/ansible/roles/moodle/templates/moodle_database_template.txt +++ /dev/null @@ -1,14272 +0,0 @@ --- MariaDB dump 10.19 Distrib 10.5.9-MariaDB, for debian-linux-gnu (x86_64) --- --- Host: localhost Database: moodle --- ------------------------------------------------------ --- Server version 10.5.9-MariaDB-1:10.5.9+maria~buster - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Current Database: `moodle` --- - -CREATE DATABASE /*!32312 IF NOT EXISTS*/ `moodle` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci */; - -USE `moodle`; - --- --- Table structure for table `mdl_analytics_indicator_calc` --- - -DROP TABLE IF EXISTS `mdl_analytics_indicator_calc`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_analytics_indicator_calc` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `starttime` bigint(10) NOT NULL, - `endtime` bigint(10) NOT NULL, - `contextid` bigint(10) NOT NULL, - `sampleorigin` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `sampleid` bigint(10) NOT NULL, - `indicator` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `value` decimal(10,2) DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_analindicalc_staendcon_ix` (`starttime`,`endtime`,`contextid`), - KEY `mdl_analindicalc_con_ix` (`contextid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stored indicator calculations'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_analytics_indicator_calc` --- - -LOCK TABLES `mdl_analytics_indicator_calc` WRITE; -/*!40000 ALTER TABLE `mdl_analytics_indicator_calc` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_analytics_indicator_calc` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_analytics_models` --- - -DROP TABLE IF EXISTS `mdl_analytics_models`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_analytics_models` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `enabled` tinyint(1) NOT NULL DEFAULT 0, - `trained` tinyint(1) NOT NULL DEFAULT 0, - `name` varchar(1333) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `target` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `indicators` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `timesplitting` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `predictionsprocessor` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `version` bigint(10) NOT NULL, - `contextids` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timecreated` bigint(10) DEFAULT NULL, - `timemodified` bigint(10) NOT NULL, - `usermodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_analmode_enatra_ix` (`enabled`,`trained`) -) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Analytic models.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_analytics_models` --- - -LOCK TABLES `mdl_analytics_models` WRITE; -/*!40000 ALTER TABLE `mdl_analytics_models` DISABLE KEYS */; -INSERT INTO `mdl_analytics_models` VALUES (1,0,0,NULL,'\\core_course\\analytics\\target\\course_dropout','[\"\\\\core\\\\analytics\\\\indicator\\\\any_access_after_end\",\"\\\\core\\\\analytics\\\\indicator\\\\any_access_before_start\",\"\\\\core\\\\analytics\\\\indicator\\\\any_write_action_in_course\",\"\\\\core\\\\analytics\\\\indicator\\\\read_actions\",\"\\\\core_course\\\\analytics\\\\indicator\\\\completion_enabled\",\"\\\\core_course\\\\analytics\\\\indicator\\\\potential_cognitive_depth\",\"\\\\core_course\\\\analytics\\\\indicator\\\\potential_social_breadth\",\"\\\\mod_assign\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_assign\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_book\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_book\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_chat\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_chat\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_choice\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_choice\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_data\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_data\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_feedback\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_feedback\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_folder\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_folder\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_forum\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_forum\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_glossary\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_glossary\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_imscp\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_imscp\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_label\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_label\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_lesson\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_lesson\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_lti\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_lti\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_page\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_page\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_quiz\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_quiz\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_resource\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_resource\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_scorm\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_scorm\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_survey\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_survey\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_url\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_url\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_wiki\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_wiki\\\\analytics\\\\indicator\\\\social_breadth\",\"\\\\mod_workshop\\\\analytics\\\\indicator\\\\cognitive_depth\",\"\\\\mod_workshop\\\\analytics\\\\indicator\\\\social_breadth\"]',NULL,NULL,1619623687,NULL,1619623687,1619623687,0),(2,1,1,NULL,'\\core_course\\analytics\\target\\no_teaching','[\"\\\\core_course\\\\analytics\\\\indicator\\\\no_teacher\",\"\\\\core_course\\\\analytics\\\\indicator\\\\no_student\"]','\\core\\analytics\\time_splitting\\single_range',NULL,1619623687,NULL,1619623687,1619623687,0),(3,1,1,NULL,'\\core_user\\analytics\\target\\upcoming_activities_due','[\"\\\\core_course\\\\analytics\\\\indicator\\\\activities_due\"]','\\core\\analytics\\time_splitting\\upcoming_week',NULL,1619623687,NULL,1619623687,1619623687,0),(4,1,1,NULL,'\\core_course\\analytics\\target\\no_access_since_course_start','[\"\\\\core\\\\analytics\\\\indicator\\\\any_course_access\"]','\\core\\analytics\\time_splitting\\one_month_after_start',NULL,1619623687,NULL,1619623687,1619623687,0),(5,1,1,NULL,'\\core_course\\analytics\\target\\no_recent_accesses','[\"\\\\core\\\\analytics\\\\indicator\\\\any_course_access\"]','\\core\\analytics\\time_splitting\\past_month',NULL,1619623687,NULL,1619623687,1619623687,0); -/*!40000 ALTER TABLE `mdl_analytics_models` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_analytics_models_log` --- - -DROP TABLE IF EXISTS `mdl_analytics_models_log`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_analytics_models_log` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `modelid` bigint(10) NOT NULL, - `version` bigint(10) NOT NULL, - `evaluationmode` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `target` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `indicators` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `timesplitting` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `score` decimal(10,5) NOT NULL DEFAULT 0.00000, - `info` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `dir` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `timecreated` bigint(10) NOT NULL, - `usermodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_analmodelog_mod_ix` (`modelid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Analytic models changes during evaluation.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_analytics_models_log` --- - -LOCK TABLES `mdl_analytics_models_log` WRITE; -/*!40000 ALTER TABLE `mdl_analytics_models_log` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_analytics_models_log` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_analytics_predict_samples` --- - -DROP TABLE IF EXISTS `mdl_analytics_predict_samples`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_analytics_predict_samples` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `modelid` bigint(10) NOT NULL, - `analysableid` bigint(10) NOT NULL, - `timesplitting` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `rangeindex` bigint(10) NOT NULL, - `sampleids` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_analpredsamp_modanatimr_ix` (`modelid`,`analysableid`,`timesplitting`,`rangeindex`), - KEY `mdl_analpredsamp_mod_ix` (`modelid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Samples already used for predictions.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_analytics_predict_samples` --- - -LOCK TABLES `mdl_analytics_predict_samples` WRITE; -/*!40000 ALTER TABLE `mdl_analytics_predict_samples` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_analytics_predict_samples` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_analytics_prediction_actions` --- - -DROP TABLE IF EXISTS `mdl_analytics_prediction_actions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_analytics_prediction_actions` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `predictionid` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `actionname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `timecreated` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_analpredacti_preuseact_ix` (`predictionid`,`userid`,`actionname`), - KEY `mdl_analpredacti_pre_ix` (`predictionid`), - KEY `mdl_analpredacti_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Register of user actions over predictions.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_analytics_prediction_actions` --- - -LOCK TABLES `mdl_analytics_prediction_actions` WRITE; -/*!40000 ALTER TABLE `mdl_analytics_prediction_actions` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_analytics_prediction_actions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_analytics_predictions` --- - -DROP TABLE IF EXISTS `mdl_analytics_predictions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_analytics_predictions` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `modelid` bigint(10) NOT NULL, - `contextid` bigint(10) NOT NULL, - `sampleid` bigint(10) NOT NULL, - `rangeindex` mediumint(5) NOT NULL, - `prediction` decimal(10,2) NOT NULL, - `predictionscore` decimal(10,5) NOT NULL, - `calculations` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timestart` bigint(10) DEFAULT NULL, - `timeend` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_analpred_modcon_ix` (`modelid`,`contextid`), - KEY `mdl_analpred_mod_ix` (`modelid`), - KEY `mdl_analpred_con_ix` (`contextid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Predictions'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_analytics_predictions` --- - -LOCK TABLES `mdl_analytics_predictions` WRITE; -/*!40000 ALTER TABLE `mdl_analytics_predictions` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_analytics_predictions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_analytics_train_samples` --- - -DROP TABLE IF EXISTS `mdl_analytics_train_samples`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_analytics_train_samples` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `modelid` bigint(10) NOT NULL, - `analysableid` bigint(10) NOT NULL, - `timesplitting` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `sampleids` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_analtraisamp_modanatim_ix` (`modelid`,`analysableid`,`timesplitting`), - KEY `mdl_analtraisamp_mod_ix` (`modelid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Samples used for training'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_analytics_train_samples` --- - -LOCK TABLES `mdl_analytics_train_samples` WRITE; -/*!40000 ALTER TABLE `mdl_analytics_train_samples` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_analytics_train_samples` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_analytics_used_analysables` --- - -DROP TABLE IF EXISTS `mdl_analytics_used_analysables`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_analytics_used_analysables` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `modelid` bigint(10) NOT NULL, - `action` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `analysableid` bigint(10) NOT NULL, - `firstanalysis` bigint(10) NOT NULL, - `timeanalysed` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_analusedanal_modact_ix` (`modelid`,`action`), - KEY `mdl_analusedanal_ana_ix` (`analysableid`), - KEY `mdl_analusedanal_mod_ix` (`modelid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='List of analysables used by each model'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_analytics_used_analysables` --- - -LOCK TABLES `mdl_analytics_used_analysables` WRITE; -/*!40000 ALTER TABLE `mdl_analytics_used_analysables` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_analytics_used_analysables` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_analytics_used_files` --- - -DROP TABLE IF EXISTS `mdl_analytics_used_files`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_analytics_used_files` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `modelid` bigint(10) NOT NULL DEFAULT 0, - `fileid` bigint(10) NOT NULL DEFAULT 0, - `action` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `time` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_analusedfile_modactfil_ix` (`modelid`,`action`,`fileid`), - KEY `mdl_analusedfile_mod_ix` (`modelid`), - KEY `mdl_analusedfile_fil_ix` (`fileid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Files that have already been used for training and predictio'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_analytics_used_files` --- - -LOCK TABLES `mdl_analytics_used_files` WRITE; -/*!40000 ALTER TABLE `mdl_analytics_used_files` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_analytics_used_files` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_assign` --- - -DROP TABLE IF EXISTS `mdl_assign`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_assign` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `introformat` smallint(4) NOT NULL DEFAULT 0, - `alwaysshowdescription` tinyint(2) NOT NULL DEFAULT 0, - `nosubmissions` tinyint(2) NOT NULL DEFAULT 0, - `submissiondrafts` tinyint(2) NOT NULL DEFAULT 0, - `sendnotifications` tinyint(2) NOT NULL DEFAULT 0, - `sendlatenotifications` tinyint(2) NOT NULL DEFAULT 0, - `duedate` bigint(10) NOT NULL DEFAULT 0, - `allowsubmissionsfromdate` bigint(10) NOT NULL DEFAULT 0, - `grade` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `requiresubmissionstatement` tinyint(2) NOT NULL DEFAULT 0, - `completionsubmit` tinyint(2) NOT NULL DEFAULT 0, - `cutoffdate` bigint(10) NOT NULL DEFAULT 0, - `gradingduedate` bigint(10) NOT NULL DEFAULT 0, - `teamsubmission` tinyint(2) NOT NULL DEFAULT 0, - `requireallteammemberssubmit` tinyint(2) NOT NULL DEFAULT 0, - `teamsubmissiongroupingid` bigint(10) NOT NULL DEFAULT 0, - `blindmarking` tinyint(2) NOT NULL DEFAULT 0, - `hidegrader` tinyint(2) NOT NULL DEFAULT 0, - `revealidentities` tinyint(2) NOT NULL DEFAULT 0, - `attemptreopenmethod` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'none', - `maxattempts` mediumint(6) NOT NULL DEFAULT -1, - `markingworkflow` tinyint(2) NOT NULL DEFAULT 0, - `markingallocation` tinyint(2) NOT NULL DEFAULT 0, - `sendstudentnotifications` tinyint(2) NOT NULL DEFAULT 1, - `preventsubmissionnotingroup` tinyint(2) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_assi_cou_ix` (`course`), - KEY `mdl_assi_tea_ix` (`teamsubmissiongroupingid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table saves information about an instance of mod_assign'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_assign` --- - -LOCK TABLES `mdl_assign` WRITE; -/*!40000 ALTER TABLE `mdl_assign` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_assign` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_assign_grades` --- - -DROP TABLE IF EXISTS `mdl_assign_grades`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_assign_grades` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `assignment` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `grader` bigint(10) NOT NULL DEFAULT 0, - `grade` decimal(10,5) DEFAULT 0.00000, - `attemptnumber` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_assigrad_assuseatt_uix` (`assignment`,`userid`,`attemptnumber`), - KEY `mdl_assigrad_use_ix` (`userid`), - KEY `mdl_assigrad_att_ix` (`attemptnumber`), - KEY `mdl_assigrad_ass_ix` (`assignment`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Grading information about a single assignment submission.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_assign_grades` --- - -LOCK TABLES `mdl_assign_grades` WRITE; -/*!40000 ALTER TABLE `mdl_assign_grades` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_assign_grades` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_assign_overrides` --- - -DROP TABLE IF EXISTS `mdl_assign_overrides`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_assign_overrides` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `assignid` bigint(10) NOT NULL DEFAULT 0, - `groupid` bigint(10) DEFAULT NULL, - `userid` bigint(10) DEFAULT NULL, - `sortorder` bigint(10) DEFAULT NULL, - `allowsubmissionsfromdate` bigint(10) DEFAULT NULL, - `duedate` bigint(10) DEFAULT NULL, - `cutoffdate` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_assiover_ass_ix` (`assignid`), - KEY `mdl_assiover_gro_ix` (`groupid`), - KEY `mdl_assiover_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The overrides to assign settings.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_assign_overrides` --- - -LOCK TABLES `mdl_assign_overrides` WRITE; -/*!40000 ALTER TABLE `mdl_assign_overrides` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_assign_overrides` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_assign_plugin_config` --- - -DROP TABLE IF EXISTS `mdl_assign_plugin_config`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_assign_plugin_config` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `assignment` bigint(10) NOT NULL DEFAULT 0, - `plugin` varchar(28) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `subtype` varchar(28) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `name` varchar(28) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_assiplugconf_plu_ix` (`plugin`), - KEY `mdl_assiplugconf_sub_ix` (`subtype`), - KEY `mdl_assiplugconf_nam_ix` (`name`), - KEY `mdl_assiplugconf_ass_ix` (`assignment`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Config data for an instance of a plugin in an assignment.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_assign_plugin_config` --- - -LOCK TABLES `mdl_assign_plugin_config` WRITE; -/*!40000 ALTER TABLE `mdl_assign_plugin_config` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_assign_plugin_config` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_assign_submission` --- - -DROP TABLE IF EXISTS `mdl_assign_submission`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_assign_submission` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `assignment` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `status` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `groupid` bigint(10) NOT NULL DEFAULT 0, - `attemptnumber` bigint(10) NOT NULL DEFAULT 0, - `latest` tinyint(2) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_assisubm_assusegroatt_uix` (`assignment`,`userid`,`groupid`,`attemptnumber`), - KEY `mdl_assisubm_use_ix` (`userid`), - KEY `mdl_assisubm_att_ix` (`attemptnumber`), - KEY `mdl_assisubm_assusegrolat_ix` (`assignment`,`userid`,`groupid`,`latest`), - KEY `mdl_assisubm_ass_ix` (`assignment`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table keeps information about student interactions with'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_assign_submission` --- - -LOCK TABLES `mdl_assign_submission` WRITE; -/*!40000 ALTER TABLE `mdl_assign_submission` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_assign_submission` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_assign_user_flags` --- - -DROP TABLE IF EXISTS `mdl_assign_user_flags`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_assign_user_flags` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL DEFAULT 0, - `assignment` bigint(10) NOT NULL DEFAULT 0, - `locked` bigint(10) NOT NULL DEFAULT 0, - `mailed` smallint(4) NOT NULL DEFAULT 0, - `extensionduedate` bigint(10) NOT NULL DEFAULT 0, - `workflowstate` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `allocatedmarker` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_assiuserflag_mai_ix` (`mailed`), - KEY `mdl_assiuserflag_use_ix` (`userid`), - KEY `mdl_assiuserflag_ass_ix` (`assignment`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='List of flags that can be set for a single user in a single '; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_assign_user_flags` --- - -LOCK TABLES `mdl_assign_user_flags` WRITE; -/*!40000 ALTER TABLE `mdl_assign_user_flags` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_assign_user_flags` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_assign_user_mapping` --- - -DROP TABLE IF EXISTS `mdl_assign_user_mapping`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_assign_user_mapping` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `assignment` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_assiusermapp_ass_ix` (`assignment`), - KEY `mdl_assiusermapp_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Map an assignment specific id number to a user'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_assign_user_mapping` --- - -LOCK TABLES `mdl_assign_user_mapping` WRITE; -/*!40000 ALTER TABLE `mdl_assign_user_mapping` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_assign_user_mapping` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_assignfeedback_comments` --- - -DROP TABLE IF EXISTS `mdl_assignfeedback_comments`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_assignfeedback_comments` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `assignment` bigint(10) NOT NULL DEFAULT 0, - `grade` bigint(10) NOT NULL DEFAULT 0, - `commenttext` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `commentformat` smallint(4) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_assicomm_ass_ix` (`assignment`), - KEY `mdl_assicomm_gra_ix` (`grade`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Text feedback for submitted assignments'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_assignfeedback_comments` --- - -LOCK TABLES `mdl_assignfeedback_comments` WRITE; -/*!40000 ALTER TABLE `mdl_assignfeedback_comments` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_assignfeedback_comments` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_assignfeedback_editpdf_annot` --- - -DROP TABLE IF EXISTS `mdl_assignfeedback_editpdf_annot`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_assignfeedback_editpdf_annot` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `gradeid` bigint(10) NOT NULL DEFAULT 0, - `pageno` bigint(10) NOT NULL DEFAULT 0, - `x` bigint(10) DEFAULT 0, - `y` bigint(10) DEFAULT 0, - `endx` bigint(10) DEFAULT 0, - `endy` bigint(10) DEFAULT 0, - `path` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT 'line', - `colour` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT 'black', - `draft` tinyint(2) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`), - KEY `mdl_assieditanno_grapag_ix` (`gradeid`,`pageno`), - KEY `mdl_assieditanno_gra_ix` (`gradeid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='stores annotations added to pdfs submitted by students'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_assignfeedback_editpdf_annot` --- - -LOCK TABLES `mdl_assignfeedback_editpdf_annot` WRITE; -/*!40000 ALTER TABLE `mdl_assignfeedback_editpdf_annot` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_assignfeedback_editpdf_annot` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_assignfeedback_editpdf_cmnt` --- - -DROP TABLE IF EXISTS `mdl_assignfeedback_editpdf_cmnt`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_assignfeedback_editpdf_cmnt` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `gradeid` bigint(10) NOT NULL DEFAULT 0, - `x` bigint(10) DEFAULT 0, - `y` bigint(10) DEFAULT 0, - `width` bigint(10) DEFAULT 120, - `rawtext` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `pageno` bigint(10) NOT NULL DEFAULT 0, - `colour` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT 'black', - `draft` tinyint(2) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`), - KEY `mdl_assieditcmnt_grapag_ix` (`gradeid`,`pageno`), - KEY `mdl_assieditcmnt_gra_ix` (`gradeid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores comments added to pdfs'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_assignfeedback_editpdf_cmnt` --- - -LOCK TABLES `mdl_assignfeedback_editpdf_cmnt` WRITE; -/*!40000 ALTER TABLE `mdl_assignfeedback_editpdf_cmnt` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_assignfeedback_editpdf_cmnt` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_assignfeedback_editpdf_queue` --- - -DROP TABLE IF EXISTS `mdl_assignfeedback_editpdf_queue`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_assignfeedback_editpdf_queue` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `submissionid` bigint(10) NOT NULL, - `submissionattempt` bigint(10) NOT NULL, - `attemptedconversions` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_assieditqueu_subsub_uix` (`submissionid`,`submissionattempt`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Queue for processing.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_assignfeedback_editpdf_queue` --- - -LOCK TABLES `mdl_assignfeedback_editpdf_queue` WRITE; -/*!40000 ALTER TABLE `mdl_assignfeedback_editpdf_queue` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_assignfeedback_editpdf_queue` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_assignfeedback_editpdf_quick` --- - -DROP TABLE IF EXISTS `mdl_assignfeedback_editpdf_quick`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_assignfeedback_editpdf_quick` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL DEFAULT 0, - `rawtext` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `width` bigint(10) NOT NULL DEFAULT 120, - `colour` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT 'yellow', - PRIMARY KEY (`id`), - KEY `mdl_assieditquic_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores teacher specified quicklist comments'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_assignfeedback_editpdf_quick` --- - -LOCK TABLES `mdl_assignfeedback_editpdf_quick` WRITE; -/*!40000 ALTER TABLE `mdl_assignfeedback_editpdf_quick` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_assignfeedback_editpdf_quick` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_assignfeedback_editpdf_rot` --- - -DROP TABLE IF EXISTS `mdl_assignfeedback_editpdf_rot`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_assignfeedback_editpdf_rot` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `gradeid` bigint(10) NOT NULL DEFAULT 0, - `pageno` bigint(10) NOT NULL DEFAULT 0, - `pathnamehash` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `isrotated` tinyint(1) NOT NULL DEFAULT 0, - `degree` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_assieditrot_grapag_uix` (`gradeid`,`pageno`), - KEY `mdl_assieditrot_gra_ix` (`gradeid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores rotation information of a page.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_assignfeedback_editpdf_rot` --- - -LOCK TABLES `mdl_assignfeedback_editpdf_rot` WRITE; -/*!40000 ALTER TABLE `mdl_assignfeedback_editpdf_rot` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_assignfeedback_editpdf_rot` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_assignfeedback_file` --- - -DROP TABLE IF EXISTS `mdl_assignfeedback_file`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_assignfeedback_file` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `assignment` bigint(10) NOT NULL DEFAULT 0, - `grade` bigint(10) NOT NULL DEFAULT 0, - `numfiles` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_assifile_ass2_ix` (`assignment`), - KEY `mdl_assifile_gra_ix` (`grade`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores info about the number of files submitted by a student'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_assignfeedback_file` --- - -LOCK TABLES `mdl_assignfeedback_file` WRITE; -/*!40000 ALTER TABLE `mdl_assignfeedback_file` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_assignfeedback_file` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_assignment` --- - -DROP TABLE IF EXISTS `mdl_assignment`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_assignment` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `introformat` smallint(4) NOT NULL DEFAULT 0, - `assignmenttype` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `resubmit` tinyint(2) NOT NULL DEFAULT 0, - `preventlate` tinyint(2) NOT NULL DEFAULT 0, - `emailteachers` tinyint(2) NOT NULL DEFAULT 0, - `var1` bigint(10) DEFAULT 0, - `var2` bigint(10) DEFAULT 0, - `var3` bigint(10) DEFAULT 0, - `var4` bigint(10) DEFAULT 0, - `var5` bigint(10) DEFAULT 0, - `maxbytes` bigint(10) NOT NULL DEFAULT 100000, - `timedue` bigint(10) NOT NULL DEFAULT 0, - `timeavailable` bigint(10) NOT NULL DEFAULT 0, - `grade` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_assi_cou2_ix` (`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines assignments'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_assignment` --- - -LOCK TABLES `mdl_assignment` WRITE; -/*!40000 ALTER TABLE `mdl_assignment` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_assignment` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_assignment_submissions` --- - -DROP TABLE IF EXISTS `mdl_assignment_submissions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_assignment_submissions` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `assignment` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `numfiles` bigint(10) NOT NULL DEFAULT 0, - `data1` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `data2` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `grade` bigint(11) NOT NULL DEFAULT 0, - `submissioncomment` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `format` smallint(4) NOT NULL DEFAULT 0, - `teacher` bigint(10) NOT NULL DEFAULT 0, - `timemarked` bigint(10) NOT NULL DEFAULT 0, - `mailed` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_assisubm_use2_ix` (`userid`), - KEY `mdl_assisubm_mai_ix` (`mailed`), - KEY `mdl_assisubm_tim_ix` (`timemarked`), - KEY `mdl_assisubm_ass2_ix` (`assignment`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Info about submitted assignments'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_assignment_submissions` --- - -LOCK TABLES `mdl_assignment_submissions` WRITE; -/*!40000 ALTER TABLE `mdl_assignment_submissions` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_assignment_submissions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_assignment_upgrade` --- - -DROP TABLE IF EXISTS `mdl_assignment_upgrade`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_assignment_upgrade` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `oldcmid` bigint(10) NOT NULL DEFAULT 0, - `oldinstance` bigint(10) NOT NULL DEFAULT 0, - `newcmid` bigint(10) NOT NULL DEFAULT 0, - `newinstance` bigint(10) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_assiupgr_old_ix` (`oldcmid`), - KEY `mdl_assiupgr_old2_ix` (`oldinstance`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Info about upgraded assignments'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_assignment_upgrade` --- - -LOCK TABLES `mdl_assignment_upgrade` WRITE; -/*!40000 ALTER TABLE `mdl_assignment_upgrade` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_assignment_upgrade` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_assignsubmission_file` --- - -DROP TABLE IF EXISTS `mdl_assignsubmission_file`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_assignsubmission_file` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `assignment` bigint(10) NOT NULL DEFAULT 0, - `submission` bigint(10) NOT NULL DEFAULT 0, - `numfiles` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_assifile_ass_ix` (`assignment`), - KEY `mdl_assifile_sub_ix` (`submission`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Info about file submissions for assignments'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_assignsubmission_file` --- - -LOCK TABLES `mdl_assignsubmission_file` WRITE; -/*!40000 ALTER TABLE `mdl_assignsubmission_file` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_assignsubmission_file` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_assignsubmission_onlinetext` --- - -DROP TABLE IF EXISTS `mdl_assignsubmission_onlinetext`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_assignsubmission_onlinetext` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `assignment` bigint(10) NOT NULL DEFAULT 0, - `submission` bigint(10) NOT NULL DEFAULT 0, - `onlinetext` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `onlineformat` smallint(4) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_assionli_ass_ix` (`assignment`), - KEY `mdl_assionli_sub_ix` (`submission`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Info about onlinetext submission'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_assignsubmission_onlinetext` --- - -LOCK TABLES `mdl_assignsubmission_onlinetext` WRITE; -/*!40000 ALTER TABLE `mdl_assignsubmission_onlinetext` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_assignsubmission_onlinetext` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_auth_oauth2_linked_login` --- - -DROP TABLE IF EXISTS `mdl_auth_oauth2_linked_login`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_auth_oauth2_linked_login` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `usermodified` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `issuerid` bigint(10) NOT NULL, - `username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `email` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `confirmtoken` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `confirmtokenexpires` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_authoautlinklogi_useis_uix` (`userid`,`issuerid`,`username`), - KEY `mdl_authoautlinklogi_issuse_ix` (`issuerid`,`username`), - KEY `mdl_authoautlinklogi_use_ix` (`usermodified`), - KEY `mdl_authoautlinklogi_use2_ix` (`userid`), - KEY `mdl_authoautlinklogi_iss_ix` (`issuerid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Accounts linked to a users Moodle account.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_auth_oauth2_linked_login` --- - -LOCK TABLES `mdl_auth_oauth2_linked_login` WRITE; -/*!40000 ALTER TABLE `mdl_auth_oauth2_linked_login` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_auth_oauth2_linked_login` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_backup_controllers` --- - -DROP TABLE IF EXISTS `mdl_backup_controllers`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_backup_controllers` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `backupid` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `operation` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'backup', - `type` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `itemid` bigint(10) NOT NULL, - `format` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `interactive` smallint(4) NOT NULL, - `purpose` smallint(4) NOT NULL, - `userid` bigint(10) NOT NULL, - `status` smallint(4) NOT NULL, - `execution` smallint(4) NOT NULL, - `executiontime` bigint(10) NOT NULL, - `checksum` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `progress` decimal(15,14) NOT NULL DEFAULT 0.00000000000000, - `controller` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_backcont_bac_uix` (`backupid`), - KEY `mdl_backcont_typite_ix` (`type`,`itemid`), - KEY `mdl_backcont_useite_ix` (`userid`,`itemid`), - KEY `mdl_backcont_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='To store the backup_controllers as they are used'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_backup_controllers` --- - -LOCK TABLES `mdl_backup_controllers` WRITE; -/*!40000 ALTER TABLE `mdl_backup_controllers` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_backup_controllers` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_backup_courses` --- - -DROP TABLE IF EXISTS `mdl_backup_courses`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_backup_courses` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `courseid` bigint(10) NOT NULL DEFAULT 0, - `laststarttime` bigint(10) NOT NULL DEFAULT 0, - `lastendtime` bigint(10) NOT NULL DEFAULT 0, - `laststatus` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '5', - `nextstarttime` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_backcour_cou_uix` (`courseid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='To store every course backup status'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_backup_courses` --- - -LOCK TABLES `mdl_backup_courses` WRITE; -/*!40000 ALTER TABLE `mdl_backup_courses` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_backup_courses` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_backup_logs` --- - -DROP TABLE IF EXISTS `mdl_backup_logs`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_backup_logs` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `backupid` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `loglevel` smallint(4) NOT NULL, - `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `timecreated` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_backlogs_bacid_uix` (`backupid`,`id`), - KEY `mdl_backlogs_bac_ix` (`backupid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='To store all the logs from backup and restore operations (by'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_backup_logs` --- - -LOCK TABLES `mdl_backup_logs` WRITE; -/*!40000 ALTER TABLE `mdl_backup_logs` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_backup_logs` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_badge` --- - -DROP TABLE IF EXISTS `mdl_badge`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_badge` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `usercreated` bigint(10) NOT NULL, - `usermodified` bigint(10) NOT NULL, - `issuername` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `issuerurl` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `issuercontact` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `expiredate` bigint(10) DEFAULT NULL, - `expireperiod` bigint(10) DEFAULT NULL, - `type` tinyint(1) NOT NULL DEFAULT 1, - `courseid` bigint(10) DEFAULT NULL, - `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `messagesubject` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `attachment` tinyint(1) NOT NULL DEFAULT 1, - `notification` tinyint(1) NOT NULL DEFAULT 1, - `status` tinyint(1) NOT NULL DEFAULT 0, - `nextcron` bigint(10) DEFAULT NULL, - `version` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `language` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `imageauthorname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `imageauthoremail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `imageauthorurl` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `imagecaption` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_badg_typ_ix` (`type`), - KEY `mdl_badg_cou_ix` (`courseid`), - KEY `mdl_badg_use_ix` (`usermodified`), - KEY `mdl_badg_use2_ix` (`usercreated`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines badge'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_badge` --- - -LOCK TABLES `mdl_badge` WRITE; -/*!40000 ALTER TABLE `mdl_badge` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_badge` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_badge_alignment` --- - -DROP TABLE IF EXISTS `mdl_badge_alignment`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_badge_alignment` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `badgeid` bigint(10) NOT NULL DEFAULT 0, - `targetname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `targeturl` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `targetdescription` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `targetframework` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `targetcode` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_badgalig_bad_ix` (`badgeid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines alignment for badges'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_badge_alignment` --- - -LOCK TABLES `mdl_badge_alignment` WRITE; -/*!40000 ALTER TABLE `mdl_badge_alignment` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_badge_alignment` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_badge_backpack` --- - -DROP TABLE IF EXISTS `mdl_badge_backpack`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_badge_backpack` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL DEFAULT 0, - `email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `backpackuid` bigint(10) NOT NULL, - `autosync` tinyint(1) NOT NULL DEFAULT 0, - `password` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `externalbackpackid` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_badgback_useext_uix` (`userid`,`externalbackpackid`), - KEY `mdl_badgback_use_ix` (`userid`), - KEY `mdl_badgback_ext_ix` (`externalbackpackid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines settings for connecting external backpack'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_badge_backpack` --- - -LOCK TABLES `mdl_badge_backpack` WRITE; -/*!40000 ALTER TABLE `mdl_badge_backpack` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_badge_backpack` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_badge_backpack_oauth2` --- - -DROP TABLE IF EXISTS `mdl_badge_backpack_oauth2`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_badge_backpack_oauth2` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `usermodified` bigint(10) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL, - `issuerid` bigint(10) NOT NULL, - `externalbackpackid` bigint(10) NOT NULL, - `token` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `refreshtoken` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `expires` bigint(10) DEFAULT NULL, - `scope` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_badgbackoaut_use_ix` (`usermodified`), - KEY `mdl_badgbackoaut_use2_ix` (`userid`), - KEY `mdl_badgbackoaut_iss_ix` (`issuerid`), - KEY `mdl_badgbackoaut_ext_ix` (`externalbackpackid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Default comment for the table, please edit me'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_badge_backpack_oauth2` --- - -LOCK TABLES `mdl_badge_backpack_oauth2` WRITE; -/*!40000 ALTER TABLE `mdl_badge_backpack_oauth2` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_badge_backpack_oauth2` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_badge_criteria` --- - -DROP TABLE IF EXISTS `mdl_badge_criteria`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_badge_criteria` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `badgeid` bigint(10) NOT NULL DEFAULT 0, - `criteriatype` bigint(10) DEFAULT NULL, - `method` tinyint(1) NOT NULL DEFAULT 1, - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` tinyint(2) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_badgcrit_badcri_uix` (`badgeid`,`criteriatype`), - KEY `mdl_badgcrit_cri_ix` (`criteriatype`), - KEY `mdl_badgcrit_bad_ix` (`badgeid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines criteria for issuing badges'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_badge_criteria` --- - -LOCK TABLES `mdl_badge_criteria` WRITE; -/*!40000 ALTER TABLE `mdl_badge_criteria` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_badge_criteria` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_badge_criteria_met` --- - -DROP TABLE IF EXISTS `mdl_badge_criteria_met`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_badge_criteria_met` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `issuedid` bigint(10) DEFAULT NULL, - `critid` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `datemet` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_badgcritmet_cri_ix` (`critid`), - KEY `mdl_badgcritmet_use_ix` (`userid`), - KEY `mdl_badgcritmet_iss_ix` (`issuedid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines criteria that were met for an issued badge'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_badge_criteria_met` --- - -LOCK TABLES `mdl_badge_criteria_met` WRITE; -/*!40000 ALTER TABLE `mdl_badge_criteria_met` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_badge_criteria_met` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_badge_criteria_param` --- - -DROP TABLE IF EXISTS `mdl_badge_criteria_param`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_badge_criteria_param` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `critid` bigint(10) NOT NULL, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `value` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_badgcritpara_cri_ix` (`critid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines parameters for badges criteria'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_badge_criteria_param` --- - -LOCK TABLES `mdl_badge_criteria_param` WRITE; -/*!40000 ALTER TABLE `mdl_badge_criteria_param` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_badge_criteria_param` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_badge_endorsement` --- - -DROP TABLE IF EXISTS `mdl_badge_endorsement`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_badge_endorsement` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `badgeid` bigint(10) NOT NULL DEFAULT 0, - `issuername` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `issuerurl` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `issueremail` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `claimid` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `claimcomment` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `dateissued` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_badgendo_bad_ix` (`badgeid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines endorsement for badge'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_badge_endorsement` --- - -LOCK TABLES `mdl_badge_endorsement` WRITE; -/*!40000 ALTER TABLE `mdl_badge_endorsement` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_badge_endorsement` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_badge_external` --- - -DROP TABLE IF EXISTS `mdl_badge_external`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_badge_external` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `backpackid` bigint(10) NOT NULL, - `collectionid` bigint(10) NOT NULL, - `entityid` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `assertion` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_badgexte_bac_ix` (`backpackid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Setting for external badges display'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_badge_external` --- - -LOCK TABLES `mdl_badge_external` WRITE; -/*!40000 ALTER TABLE `mdl_badge_external` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_badge_external` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_badge_external_backpack` --- - -DROP TABLE IF EXISTS `mdl_badge_external_backpack`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_badge_external_backpack` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `backpackapiurl` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `backpackweburl` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `apiversion` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1.0', - `sortorder` bigint(10) NOT NULL DEFAULT 0, - `oauth2_issuerid` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_badgexteback_bac_uix` (`backpackapiurl`), - UNIQUE KEY `mdl_badgexteback_bac2_uix` (`backpackweburl`), - KEY `mdl_badgexteback_oau_ix` (`oauth2_issuerid`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines settings for site level backpacks that a user can co'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_badge_external_backpack` --- - -LOCK TABLES `mdl_badge_external_backpack` WRITE; -/*!40000 ALTER TABLE `mdl_badge_external_backpack` DISABLE KEYS */; -INSERT INTO `mdl_badge_external_backpack` VALUES (1,'https://api.badgr.io/v2','https://badgr.io','2',1,NULL); -/*!40000 ALTER TABLE `mdl_badge_external_backpack` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_badge_external_identifier` --- - -DROP TABLE IF EXISTS `mdl_badge_external_identifier`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_badge_external_identifier` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `sitebackpackid` bigint(10) NOT NULL, - `internalid` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `externalid` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `type` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_badgexteiden_sitintext_uix` (`sitebackpackid`,`internalid`,`externalid`,`type`), - KEY `mdl_badgexteiden_sit_ix` (`sitebackpackid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Setting for external badges mappings'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_badge_external_identifier` --- - -LOCK TABLES `mdl_badge_external_identifier` WRITE; -/*!40000 ALTER TABLE `mdl_badge_external_identifier` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_badge_external_identifier` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_badge_issued` --- - -DROP TABLE IF EXISTS `mdl_badge_issued`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_badge_issued` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `badgeid` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `uniquehash` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `dateissued` bigint(10) NOT NULL DEFAULT 0, - `dateexpire` bigint(10) DEFAULT NULL, - `visible` tinyint(1) NOT NULL DEFAULT 0, - `issuernotified` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_badgissu_baduse_uix` (`badgeid`,`userid`), - KEY `mdl_badgissu_bad_ix` (`badgeid`), - KEY `mdl_badgissu_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines issued badges'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_badge_issued` --- - -LOCK TABLES `mdl_badge_issued` WRITE; -/*!40000 ALTER TABLE `mdl_badge_issued` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_badge_issued` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_badge_manual_award` --- - -DROP TABLE IF EXISTS `mdl_badge_manual_award`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_badge_manual_award` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `badgeid` bigint(10) NOT NULL, - `recipientid` bigint(10) NOT NULL, - `issuerid` bigint(10) NOT NULL, - `issuerrole` bigint(10) NOT NULL, - `datemet` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_badgmanuawar_bad_ix` (`badgeid`), - KEY `mdl_badgmanuawar_rec_ix` (`recipientid`), - KEY `mdl_badgmanuawar_iss_ix` (`issuerid`), - KEY `mdl_badgmanuawar_iss2_ix` (`issuerrole`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Track manual award criteria for badges'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_badge_manual_award` --- - -LOCK TABLES `mdl_badge_manual_award` WRITE; -/*!40000 ALTER TABLE `mdl_badge_manual_award` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_badge_manual_award` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_badge_related` --- - -DROP TABLE IF EXISTS `mdl_badge_related`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_badge_related` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `badgeid` bigint(10) NOT NULL DEFAULT 0, - `relatedbadgeid` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_badgrela_badrel_uix` (`badgeid`,`relatedbadgeid`), - KEY `mdl_badgrela_bad_ix` (`badgeid`), - KEY `mdl_badgrela_rel_ix` (`relatedbadgeid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines badge related for badges'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_badge_related` --- - -LOCK TABLES `mdl_badge_related` WRITE; -/*!40000 ALTER TABLE `mdl_badge_related` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_badge_related` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_block` --- - -DROP TABLE IF EXISTS `mdl_block`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_block` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `cron` bigint(10) NOT NULL DEFAULT 0, - `lastcron` bigint(10) NOT NULL DEFAULT 0, - `visible` tinyint(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_bloc_nam_uix` (`name`) -) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='contains all installed blocks'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_block` --- - -LOCK TABLES `mdl_block` WRITE; -/*!40000 ALTER TABLE `mdl_block` DISABLE KEYS */; -INSERT INTO `mdl_block` VALUES (1,'activity_modules',0,0,1),(2,'activity_results',0,0,1),(3,'admin_bookmarks',0,0,1),(4,'badges',0,0,1),(5,'blog_menu',0,0,1),(6,'blog_recent',0,0,1),(7,'blog_tags',0,0,1),(8,'calendar_month',0,0,1),(9,'calendar_upcoming',0,0,1),(10,'comments',0,0,1),(11,'completionstatus',0,0,1),(12,'course_list',0,0,1),(13,'course_summary',0,0,1),(14,'feedback',0,0,1),(15,'globalsearch',0,0,1),(16,'glossary_random',0,0,1),(17,'html',0,0,1),(18,'login',0,0,1),(19,'lp',0,0,1),(20,'mentees',0,0,1),(21,'mnet_hosts',0,0,1),(22,'myoverview',0,0,1),(23,'myprofile',0,0,1),(24,'navigation',0,0,1),(25,'news_items',0,0,1),(26,'online_users',0,0,1),(27,'private_files',0,0,1),(28,'quiz_results',0,0,0),(29,'recent_activity',0,0,1),(30,'recentlyaccessedcourses',0,0,1),(31,'recentlyaccesseditems',0,0,1),(32,'rss_client',0,0,1),(33,'search_forums',0,0,1),(34,'section_links',0,0,1),(35,'selfcompletion',0,0,1),(36,'settings',0,0,1),(37,'site_main_menu',0,0,1),(38,'social_activities',0,0,1),(39,'starredcourses',0,0,1),(40,'tag_flickr',0,0,1),(41,'tag_youtube',0,0,0),(42,'tags',0,0,1),(43,'timeline',0,0,1); -/*!40000 ALTER TABLE `mdl_block` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_block_instances` --- - -DROP TABLE IF EXISTS `mdl_block_instances`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_block_instances` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `blockname` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `parentcontextid` bigint(10) NOT NULL, - `showinsubcontexts` smallint(4) NOT NULL, - `requiredbytheme` smallint(4) NOT NULL DEFAULT 0, - `pagetypepattern` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `subpagepattern` varchar(16) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `defaultregion` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `defaultweight` bigint(10) NOT NULL, - `configdata` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_blocinst_parshopagsub_ix` (`parentcontextid`,`showinsubcontexts`,`pagetypepattern`,`subpagepattern`), - KEY `mdl_blocinst_tim_ix` (`timemodified`), - KEY `mdl_blocinst_par_ix` (`parentcontextid`) -) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table stores block instances. The type of block this is'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_block_instances` --- - -LOCK TABLES `mdl_block_instances` WRITE; -/*!40000 ALTER TABLE `mdl_block_instances` DISABLE KEYS */; -INSERT INTO `mdl_block_instances` VALUES (1,'admin_bookmarks',1,0,0,'admin-*',NULL,'side-pre',2,'',1619623710,1619623710),(2,'timeline',1,0,0,'my-index','2','side-post',0,'',1619623710,1619623710),(3,'private_files',1,0,0,'my-index','2','side-post',1,'',1619623710,1619623710),(4,'online_users',1,0,0,'my-index','2','side-post',2,'',1619623710,1619623710),(5,'badges',1,0,0,'my-index','2','side-post',3,'',1619623710,1619623710),(6,'calendar_month',1,0,0,'my-index','2','side-post',4,'',1619623710,1619623710),(7,'calendar_upcoming',1,0,0,'my-index','2','side-post',5,'',1619623710,1619623710),(8,'lp',1,0,0,'my-index','2','content',0,'',1619623710,1619623710),(9,'recentlyaccessedcourses',1,0,0,'my-index','2','content',1,'',1619623710,1619623710),(10,'myoverview',1,0,0,'my-index','2','content',2,'',1619623710,1619623710),(20,'html',1,1,0,'my-index','2','content',0,'Tzo4OiJzdGRDbGFzcyI6Mzp7czo0OiJ0ZXh0IjtzOjE5MDoiPHAgZGlyPSJsdHIiIHN0eWxlPSJ0ZXh0LWFsaWduOiBsZWZ0OyI+U2hvdyBvcmdhbml6YXRpb24gbG9nby4gU2hvdyBpbmZvcm1hdGlvbiBhYm91dCB3aG8gdGhlIFdlbGwgRGV2aWNlIGlzIG1hbmFnZWQgYnkgYW5kIHdoYXQgaXRzIHB1cnBvc2UgaXMgYW5kIGlmIG5lY2Vzc2FyeSwgY29udGFjdCBpbmZvcm1hdGlvbi48YnI+PC9wPiI7czo1OiJ0aXRsZSI7czoyNDoiTmFtZSBvZiBUcmFpbmluZyBQcm9ncmFtIjtzOjY6ImZvcm1hdCI7czoxOiIxIjt9',1619624980,1619625062),(21,'timeline',5,0,0,'my-index','5','side-post',0,'',1619626356,1619626356),(22,'private_files',5,0,0,'my-index','5','side-post',1,'',1619626356,1619626356),(23,'online_users',5,0,0,'my-index','5','side-post',2,'',1619626356,1619626356),(24,'badges',5,0,0,'my-index','5','side-post',3,'',1619626356,1619626356),(25,'calendar_month',5,0,0,'my-index','5','side-post',4,'',1619626356,1619626356),(26,'calendar_upcoming',5,0,0,'my-index','5','side-post',5,'',1619626356,1619626356),(27,'lp',5,0,0,'my-index','5','content',0,'',1619626356,1619626356),(28,'recentlyaccessedcourses',5,0,0,'my-index','5','content',1,'',1619626356,1619626356),(29,'myoverview',5,0,0,'my-index','5','content',2,'',1619626356,1619626356),(30,'html',5,1,0,'my-index','5','content',0,'Tzo4OiJzdGRDbGFzcyI6Mzp7czo0OiJ0ZXh0IjtzOjE5MDoiPHAgZGlyPSJsdHIiIHN0eWxlPSJ0ZXh0LWFsaWduOiBsZWZ0OyI+U2hvdyBvcmdhbml6YXRpb24gbG9nby4gU2hvdyBpbmZvcm1hdGlvbiBhYm91dCB3aG8gdGhlIFdlbGwgRGV2aWNlIGlzIG1hbmFnZWQgYnkgYW5kIHdoYXQgaXRzIHB1cnBvc2UgaXMgYW5kIGlmIG5lY2Vzc2FyeSwgY29udGFjdCBpbmZvcm1hdGlvbi48YnI+PC9wPiI7czo1OiJ0aXRsZSI7czoyNDoiTmFtZSBvZiBUcmFpbmluZyBQcm9ncmFtIjtzOjY6ImZvcm1hdCI7czoxOiIxIjt9',1619626356,1619626356); -/*!40000 ALTER TABLE `mdl_block_instances` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_block_positions` --- - -DROP TABLE IF EXISTS `mdl_block_positions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_block_positions` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `blockinstanceid` bigint(10) NOT NULL, - `contextid` bigint(10) NOT NULL, - `pagetype` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `subpage` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `visible` smallint(4) NOT NULL, - `region` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `weight` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_blocposi_bloconpagsub_uix` (`blockinstanceid`,`contextid`,`pagetype`,`subpage`), - KEY `mdl_blocposi_blo_ix` (`blockinstanceid`), - KEY `mdl_blocposi_con_ix` (`contextid`) -) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the position of a sticky block_instance on a another '; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_block_positions` --- - -LOCK TABLES `mdl_block_positions` WRITE; -/*!40000 ALTER TABLE `mdl_block_positions` DISABLE KEYS */; -INSERT INTO `mdl_block_positions` VALUES (1,8,1,'my-index','2',0,'content',0),(2,3,1,'my-index','2',0,'side-post',1),(3,4,1,'my-index','2',0,'side-post',2),(4,5,1,'my-index','2',0,'side-post',3),(5,27,5,'my-index','5',0,'content',0),(6,22,5,'my-index','5',0,'side-post',1),(7,23,5,'my-index','5',0,'side-post',2),(8,24,5,'my-index','5',0,'side-post',3); -/*!40000 ALTER TABLE `mdl_block_positions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_block_recent_activity` --- - -DROP TABLE IF EXISTS `mdl_block_recent_activity`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_block_recent_activity` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `courseid` bigint(10) NOT NULL, - `cmid` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `action` tinyint(1) NOT NULL, - `modname` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_blocreceacti_coutim_ix` (`courseid`,`timecreated`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Recent activity block'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_block_recent_activity` --- - -LOCK TABLES `mdl_block_recent_activity` WRITE; -/*!40000 ALTER TABLE `mdl_block_recent_activity` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_block_recent_activity` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_block_recentlyaccesseditems` --- - -DROP TABLE IF EXISTS `mdl_block_recentlyaccesseditems`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_block_recentlyaccesseditems` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `courseid` bigint(10) NOT NULL, - `cmid` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `timeaccess` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_blocrece_usecoucmi_uix` (`userid`,`courseid`,`cmid`), - KEY `mdl_blocrece_use_ix` (`userid`), - KEY `mdl_blocrece_cou_ix` (`courseid`), - KEY `mdl_blocrece_cmi_ix` (`cmid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Most recently accessed items accessed by a user'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_block_recentlyaccesseditems` --- - -LOCK TABLES `mdl_block_recentlyaccesseditems` WRITE; -/*!40000 ALTER TABLE `mdl_block_recentlyaccesseditems` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_block_recentlyaccesseditems` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_block_rss_client` --- - -DROP TABLE IF EXISTS `mdl_block_rss_client`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_block_rss_client` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL DEFAULT 0, - `title` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `preferredtitle` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `shared` tinyint(2) NOT NULL DEFAULT 0, - `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `skiptime` bigint(10) NOT NULL DEFAULT 0, - `skipuntil` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Remote news feed information. Contains the news feed id, the'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_block_rss_client` --- - -LOCK TABLES `mdl_block_rss_client` WRITE; -/*!40000 ALTER TABLE `mdl_block_rss_client` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_block_rss_client` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_blog_association` --- - -DROP TABLE IF EXISTS `mdl_blog_association`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_blog_association` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `contextid` bigint(10) NOT NULL, - `blogid` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_blogasso_con_ix` (`contextid`), - KEY `mdl_blogasso_blo_ix` (`blogid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Associations of blog entries with courses and module instanc'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_blog_association` --- - -LOCK TABLES `mdl_blog_association` WRITE; -/*!40000 ALTER TABLE `mdl_blog_association` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_blog_association` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_blog_external` --- - -DROP TABLE IF EXISTS `mdl_blog_external`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_blog_external` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `url` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `filtertags` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `failedlastsync` tinyint(1) NOT NULL DEFAULT 0, - `timemodified` bigint(10) DEFAULT NULL, - `timefetched` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_blogexte_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='External blog links used for RSS copying of blog entries to '; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_blog_external` --- - -LOCK TABLES `mdl_blog_external` WRITE; -/*!40000 ALTER TABLE `mdl_blog_external` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_blog_external` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_book` --- - -DROP TABLE IF EXISTS `mdl_book`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_book` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `introformat` smallint(4) NOT NULL DEFAULT 0, - `numbering` smallint(4) NOT NULL DEFAULT 0, - `navstyle` smallint(4) NOT NULL DEFAULT 1, - `customtitles` tinyint(2) NOT NULL DEFAULT 0, - `revision` bigint(10) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines book'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_book` --- - -LOCK TABLES `mdl_book` WRITE; -/*!40000 ALTER TABLE `mdl_book` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_book` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_book_chapters` --- - -DROP TABLE IF EXISTS `mdl_book_chapters`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_book_chapters` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `bookid` bigint(10) NOT NULL DEFAULT 0, - `pagenum` bigint(10) NOT NULL DEFAULT 0, - `subchapter` bigint(10) NOT NULL DEFAULT 0, - `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `contentformat` smallint(4) NOT NULL DEFAULT 0, - `hidden` tinyint(2) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `importsrc` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `mdl_bookchap_boo_ix` (`bookid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines book_chapters'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_book_chapters` --- - -LOCK TABLES `mdl_book_chapters` WRITE; -/*!40000 ALTER TABLE `mdl_book_chapters` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_book_chapters` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_cache_filters` --- - -DROP TABLE IF EXISTS `mdl_cache_filters`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_cache_filters` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `filter` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `version` bigint(10) NOT NULL DEFAULT 0, - `md5key` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `rawtext` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_cachfilt_filmd5_ix` (`filter`,`md5key`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='For keeping information about cached data'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_cache_filters` --- - -LOCK TABLES `mdl_cache_filters` WRITE; -/*!40000 ALTER TABLE `mdl_cache_filters` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_cache_filters` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_cache_flags` --- - -DROP TABLE IF EXISTS `mdl_cache_flags`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_cache_flags` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `flagtype` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `expiry` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_cachflag_fla_ix` (`flagtype`), - KEY `mdl_cachflag_nam_ix` (`name`) -) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Cache of time-sensitive flags'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_cache_flags` --- - -LOCK TABLES `mdl_cache_flags` WRITE; -/*!40000 ALTER TABLE `mdl_cache_flags` DISABLE KEYS */; -INSERT INTO `mdl_cache_flags` VALUES (1,'userpreferenceschanged','2',1619627006,'1',1619655806),(2,'userpreferenceschanged','3',1619624264,'1',1619653064),(3,'userpreferenceschanged','4',1619624308,'1',1619653108),(4,'userpreferenceschanged','5',1619624342,'1',1619653142),(5,'userpreferenceschanged','6',1619624369,'1',1619653169),(6,'accesslib/dirtyusers','6',1619624454,'1',1619653254),(7,'accesslib/dirtycontexts','/1',1619625361,'1',1619654161); -/*!40000 ALTER TABLE `mdl_cache_flags` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_capabilities` --- - -DROP TABLE IF EXISTS `mdl_capabilities`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_capabilities` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `captype` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `contextlevel` bigint(10) NOT NULL DEFAULT 0, - `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `riskbitmask` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_capa_nam_uix` (`name`) -) ENGINE=InnoDB AUTO_INCREMENT=700 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='this defines all capabilities'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_capabilities` --- - -LOCK TABLES `mdl_capabilities` WRITE; -/*!40000 ALTER TABLE `mdl_capabilities` DISABLE KEYS */; -INSERT INTO `mdl_capabilities` VALUES (1,'moodle/site:config','write',10,'moodle',62),(2,'moodle/site:configview','read',10,'moodle',0),(3,'moodle/site:readallmessages','read',10,'moodle',8),(4,'moodle/site:manageallmessaging','write',10,'moodle',8),(5,'moodle/site:deleteanymessage','write',10,'moodle',32),(6,'moodle/site:sendmessage','write',10,'moodle',16),(7,'moodle/site:senderrormessage','write',10,'moodle',16),(8,'moodle/site:deleteownmessage','write',10,'moodle',0),(9,'moodle/site:approvecourse','write',40,'moodle',4),(10,'moodle/backup:backupcourse','write',50,'moodle',28),(11,'moodle/backup:backupsection','write',50,'moodle',28),(12,'moodle/backup:backupactivity','write',70,'moodle',28),(13,'moodle/backup:backuptargetimport','read',50,'moodle',28),(14,'moodle/backup:downloadfile','write',50,'moodle',28),(15,'moodle/backup:configure','write',50,'moodle',28),(16,'moodle/backup:userinfo','read',50,'moodle',8),(17,'moodle/backup:anonymise','read',50,'moodle',8),(18,'moodle/restore:restorecourse','write',50,'moodle',28),(19,'moodle/restore:restoresection','write',50,'moodle',28),(20,'moodle/restore:restoreactivity','write',50,'moodle',28),(21,'moodle/restore:viewautomatedfilearea','write',50,'moodle',28),(22,'moodle/restore:restoretargetimport','write',50,'moodle',28),(23,'moodle/restore:uploadfile','write',50,'moodle',28),(24,'moodle/restore:configure','write',50,'moodle',28),(25,'moodle/restore:rolldates','write',50,'moodle',0),(26,'moodle/restore:userinfo','write',50,'moodle',30),(27,'moodle/restore:createuser','write',10,'moodle',24),(28,'moodle/site:manageblocks','write',80,'moodle',20),(29,'moodle/site:accessallgroups','read',70,'moodle',0),(30,'moodle/site:viewanonymousevents','read',70,'moodle',8),(31,'moodle/site:viewfullnames','read',70,'moodle',0),(32,'moodle/site:viewuseridentity','read',70,'moodle',0),(33,'moodle/site:viewreports','read',50,'moodle',8),(34,'moodle/site:trustcontent','write',70,'moodle',4),(35,'moodle/site:uploadusers','write',10,'moodle',24),(36,'moodle/filter:manage','write',50,'moodle',0),(37,'moodle/user:create','write',10,'moodle',24),(38,'moodle/user:delete','write',10,'moodle',40),(39,'moodle/user:update','write',10,'moodle',24),(40,'moodle/user:viewdetails','read',50,'moodle',0),(41,'moodle/user:viewalldetails','read',30,'moodle',8),(42,'moodle/user:viewlastip','read',30,'moodle',8),(43,'moodle/user:viewhiddendetails','read',50,'moodle',8),(44,'moodle/user:loginas','write',50,'moodle',30),(45,'moodle/user:managesyspages','write',10,'moodle',0),(46,'moodle/user:manageblocks','write',30,'moodle',0),(47,'moodle/user:manageownblocks','write',10,'moodle',0),(48,'moodle/user:manageownfiles','write',10,'moodle',0),(49,'moodle/user:ignoreuserquota','write',10,'moodle',0),(50,'moodle/my:configsyspages','write',10,'moodle',0),(51,'moodle/role:assign','write',50,'moodle',28),(52,'moodle/role:review','read',50,'moodle',8),(53,'moodle/role:override','write',50,'moodle',28),(54,'moodle/role:safeoverride','write',50,'moodle',16),(55,'moodle/role:manage','write',10,'moodle',28),(56,'moodle/role:switchroles','read',50,'moodle',12),(57,'moodle/category:manage','write',40,'moodle',4),(58,'moodle/category:viewcourselist','read',40,'moodle',0),(59,'moodle/category:viewhiddencategories','read',40,'moodle',0),(60,'moodle/cohort:manage','write',40,'moodle',0),(61,'moodle/cohort:assign','write',40,'moodle',0),(62,'moodle/cohort:view','read',50,'moodle',0),(63,'moodle/course:create','write',40,'moodle',4),(64,'moodle/course:creategroupconversations','write',50,'moodle',4),(65,'moodle/course:request','write',40,'moodle',0),(66,'moodle/course:delete','write',50,'moodle',32),(67,'moodle/course:update','write',50,'moodle',4),(68,'moodle/course:view','read',50,'moodle',0),(69,'moodle/course:enrolreview','read',50,'moodle',8),(70,'moodle/course:enrolconfig','write',50,'moodle',8),(71,'moodle/course:reviewotherusers','read',50,'moodle',0),(72,'moodle/course:bulkmessaging','write',50,'moodle',16),(73,'moodle/course:viewhiddenuserfields','read',50,'moodle',8),(74,'moodle/course:viewhiddencourses','read',50,'moodle',0),(75,'moodle/course:visibility','write',50,'moodle',0),(76,'moodle/course:managefiles','write',50,'moodle',4),(77,'moodle/course:ignoreavailabilityrestrictions','read',70,'moodle',0),(78,'moodle/course:ignorefilesizelimits','write',50,'moodle',0),(79,'moodle/course:manageactivities','write',70,'moodle',4),(80,'moodle/course:activityvisibility','write',70,'moodle',0),(81,'moodle/course:viewhiddenactivities','read',70,'moodle',0),(82,'moodle/course:viewparticipants','read',50,'moodle',0),(83,'moodle/course:changefullname','write',50,'moodle',4),(84,'moodle/course:changeshortname','write',50,'moodle',4),(85,'moodle/course:changelockedcustomfields','write',50,'moodle',16),(86,'moodle/course:configurecustomfields','write',10,'moodle',16),(87,'moodle/course:renameroles','write',50,'moodle',0),(88,'moodle/course:changeidnumber','write',50,'moodle',4),(89,'moodle/course:changecategory','write',50,'moodle',4),(90,'moodle/course:changesummary','write',50,'moodle',4),(91,'moodle/course:setforcedlanguage','write',50,'moodle',0),(92,'moodle/site:viewparticipants','read',10,'moodle',0),(93,'moodle/course:isincompletionreports','read',50,'moodle',0),(94,'moodle/course:viewscales','read',50,'moodle',0),(95,'moodle/course:managescales','write',50,'moodle',0),(96,'moodle/course:managegroups','write',50,'moodle',4),(97,'moodle/course:reset','write',50,'moodle',32),(98,'moodle/course:viewsuspendedusers','read',50,'moodle',0),(99,'moodle/course:tag','write',50,'moodle',16),(100,'moodle/blog:view','read',10,'moodle',0),(101,'moodle/blog:search','read',10,'moodle',0),(102,'moodle/blog:viewdrafts','read',10,'moodle',8),(103,'moodle/blog:create','write',10,'moodle',16),(104,'moodle/blog:manageentries','write',10,'moodle',16),(105,'moodle/blog:manageexternal','write',10,'moodle',16),(106,'moodle/calendar:manageownentries','write',50,'moodle',16),(107,'moodle/calendar:managegroupentries','write',50,'moodle',16),(108,'moodle/calendar:manageentries','write',50,'moodle',16),(109,'moodle/user:editprofile','write',30,'moodle',24),(110,'moodle/user:editownprofile','write',10,'moodle',16),(111,'moodle/user:changeownpassword','write',10,'moodle',0),(112,'moodle/user:readuserposts','read',30,'moodle',0),(113,'moodle/user:readuserblogs','read',30,'moodle',0),(114,'moodle/user:viewuseractivitiesreport','read',30,'moodle',8),(115,'moodle/user:editmessageprofile','write',30,'moodle',16),(116,'moodle/user:editownmessageprofile','write',10,'moodle',0),(117,'moodle/question:managecategory','write',50,'moodle',20),(118,'moodle/question:add','write',50,'moodle',20),(119,'moodle/question:editmine','write',50,'moodle',20),(120,'moodle/question:editall','write',50,'moodle',20),(121,'moodle/question:viewmine','read',50,'moodle',0),(122,'moodle/question:viewall','read',50,'moodle',0),(123,'moodle/question:usemine','read',50,'moodle',0),(124,'moodle/question:useall','read',50,'moodle',0),(125,'moodle/question:movemine','write',50,'moodle',0),(126,'moodle/question:moveall','write',50,'moodle',0),(127,'moodle/question:config','write',10,'moodle',2),(128,'moodle/question:flag','write',50,'moodle',0),(129,'moodle/question:tagmine','write',50,'moodle',0),(130,'moodle/question:tagall','write',50,'moodle',0),(131,'moodle/site:doclinks','read',10,'moodle',0),(132,'moodle/course:sectionvisibility','write',50,'moodle',0),(133,'moodle/course:useremail','write',50,'moodle',0),(134,'moodle/course:viewhiddensections','read',50,'moodle',0),(135,'moodle/course:setcurrentsection','write',50,'moodle',0),(136,'moodle/course:movesections','write',50,'moodle',0),(137,'moodle/site:mnetlogintoremote','read',10,'moodle',0),(138,'moodle/grade:viewall','read',50,'moodle',8),(139,'moodle/grade:view','read',50,'moodle',0),(140,'moodle/grade:viewhidden','read',50,'moodle',8),(141,'moodle/grade:import','write',50,'moodle',12),(142,'moodle/grade:export','read',50,'moodle',8),(143,'moodle/grade:manage','write',50,'moodle',12),(144,'moodle/grade:edit','write',50,'moodle',12),(145,'moodle/grade:managegradingforms','write',50,'moodle',12),(146,'moodle/grade:sharegradingforms','write',10,'moodle',4),(147,'moodle/grade:managesharedforms','write',10,'moodle',4),(148,'moodle/grade:manageoutcomes','write',50,'moodle',0),(149,'moodle/grade:manageletters','write',50,'moodle',0),(150,'moodle/grade:hide','write',50,'moodle',0),(151,'moodle/grade:lock','write',50,'moodle',0),(152,'moodle/grade:unlock','write',50,'moodle',0),(153,'moodle/my:manageblocks','write',10,'moodle',0),(154,'moodle/notes:view','read',50,'moodle',0),(155,'moodle/notes:manage','write',50,'moodle',16),(156,'moodle/tag:manage','write',10,'moodle',16),(157,'moodle/tag:edit','write',10,'moodle',16),(158,'moodle/tag:flag','write',10,'moodle',16),(159,'moodle/tag:editblocks','write',10,'moodle',0),(160,'moodle/block:view','read',80,'moodle',0),(161,'moodle/block:edit','write',80,'moodle',20),(162,'moodle/portfolio:export','read',10,'moodle',0),(163,'moodle/comment:view','read',50,'moodle',0),(164,'moodle/comment:post','write',50,'moodle',24),(165,'moodle/comment:delete','write',50,'moodle',32),(166,'moodle/webservice:createtoken','write',10,'moodle',62),(167,'moodle/webservice:managealltokens','write',10,'moodle',42),(168,'moodle/webservice:createmobiletoken','write',10,'moodle',24),(169,'moodle/rating:view','read',50,'moodle',0),(170,'moodle/rating:viewany','read',50,'moodle',8),(171,'moodle/rating:viewall','read',50,'moodle',8),(172,'moodle/rating:rate','write',50,'moodle',0),(173,'moodle/course:markcomplete','write',50,'moodle',0),(174,'moodle/course:overridecompletion','write',50,'moodle',0),(175,'moodle/badges:manageglobalsettings','write',10,'moodle',34),(176,'moodle/badges:viewbadges','read',50,'moodle',0),(177,'moodle/badges:manageownbadges','write',30,'moodle',0),(178,'moodle/badges:viewotherbadges','read',30,'moodle',0),(179,'moodle/badges:earnbadge','write',50,'moodle',0),(180,'moodle/badges:createbadge','write',50,'moodle',16),(181,'moodle/badges:deletebadge','write',50,'moodle',32),(182,'moodle/badges:configuredetails','write',50,'moodle',16),(183,'moodle/badges:configurecriteria','write',50,'moodle',4),(184,'moodle/badges:configuremessages','write',50,'moodle',16),(185,'moodle/badges:awardbadge','write',50,'moodle',16),(186,'moodle/badges:revokebadge','write',50,'moodle',16),(187,'moodle/badges:viewawarded','read',50,'moodle',8),(188,'moodle/site:forcelanguage','read',10,'moodle',0),(189,'moodle/search:query','read',10,'moodle',0),(190,'moodle/competency:competencymanage','write',40,'moodle',0),(191,'moodle/competency:competencyview','read',40,'moodle',0),(192,'moodle/competency:competencygrade','write',50,'moodle',0),(193,'moodle/competency:coursecompetencymanage','write',50,'moodle',0),(194,'moodle/competency:coursecompetencyconfigure','write',70,'moodle',0),(195,'moodle/competency:coursecompetencygradable','read',50,'moodle',0),(196,'moodle/competency:coursecompetencyview','read',50,'moodle',0),(197,'moodle/competency:evidencedelete','write',30,'moodle',0),(198,'moodle/competency:planmanage','write',30,'moodle',0),(199,'moodle/competency:planmanagedraft','write',30,'moodle',0),(200,'moodle/competency:planmanageown','write',30,'moodle',0),(201,'moodle/competency:planmanageowndraft','write',30,'moodle',0),(202,'moodle/competency:planview','read',30,'moodle',0),(203,'moodle/competency:planviewdraft','read',30,'moodle',0),(204,'moodle/competency:planviewown','read',30,'moodle',0),(205,'moodle/competency:planviewowndraft','read',30,'moodle',0),(206,'moodle/competency:planrequestreview','write',30,'moodle',0),(207,'moodle/competency:planrequestreviewown','write',30,'moodle',0),(208,'moodle/competency:planreview','write',30,'moodle',0),(209,'moodle/competency:plancomment','write',30,'moodle',0),(210,'moodle/competency:plancommentown','write',30,'moodle',0),(211,'moodle/competency:usercompetencyview','read',30,'moodle',0),(212,'moodle/competency:usercompetencyrequestreview','write',30,'moodle',0),(213,'moodle/competency:usercompetencyrequestreviewown','write',30,'moodle',0),(214,'moodle/competency:usercompetencyreview','write',30,'moodle',0),(215,'moodle/competency:usercompetencycomment','write',30,'moodle',0),(216,'moodle/competency:usercompetencycommentown','write',30,'moodle',0),(217,'moodle/competency:templatemanage','write',40,'moodle',0),(218,'moodle/analytics:listinsights','read',50,'moodle',8),(219,'moodle/analytics:managemodels','write',10,'moodle',2),(220,'moodle/competency:templateview','read',40,'moodle',0),(221,'moodle/competency:userevidencemanage','write',30,'moodle',0),(222,'moodle/competency:userevidencemanageown','write',30,'moodle',0),(223,'moodle/competency:userevidenceview','read',30,'moodle',0),(224,'moodle/site:maintenanceaccess','write',10,'moodle',0),(225,'moodle/site:messageanyuser','write',10,'moodle',16),(226,'moodle/site:managecontextlocks','write',70,'moodle',0),(227,'moodle/course:togglecompletion','write',70,'moodle',0),(228,'moodle/analytics:listowninsights','read',10,'moodle',0),(229,'moodle/h5p:setdisplayoptions','write',70,'moodle',0),(230,'moodle/h5p:deploy','write',70,'moodle',4),(231,'moodle/h5p:updatelibraries','write',70,'moodle',4),(232,'moodle/course:recommendactivity','write',10,'moodle',0),(233,'moodle/contentbank:access','read',50,'moodle',0),(234,'moodle/contentbank:upload','write',50,'moodle',16),(235,'moodle/contentbank:deleteanycontent','write',50,'moodle',32),(236,'moodle/contentbank:deleteowncontent','write',50,'moodle',0),(237,'moodle/contentbank:manageanycontent','write',50,'moodle',32),(238,'moodle/contentbank:manageowncontent','write',50,'moodle',0),(239,'moodle/contentbank:useeditor','write',50,'moodle',16),(240,'moodle/contentbank:downloadcontent','read',50,'moodle',0),(241,'moodle/course:downloadcoursecontent','read',50,'moodle',0),(242,'moodle/course:configuredownloadcontent','write',50,'moodle',0),(243,'moodle/payment:manageaccounts','write',50,'moodle',42),(244,'moodle/payment:viewpayments','read',50,'moodle',8),(245,'mod/assign:view','read',70,'mod_assign',0),(246,'mod/assign:submit','write',70,'mod_assign',0),(247,'mod/assign:grade','write',70,'mod_assign',4),(248,'mod/assign:exportownsubmission','read',70,'mod_assign',0),(249,'mod/assign:addinstance','write',50,'mod_assign',4),(250,'mod/assign:editothersubmission','write',70,'mod_assign',41),(251,'mod/assign:grantextension','write',70,'mod_assign',0),(252,'mod/assign:revealidentities','write',70,'mod_assign',0),(253,'mod/assign:reviewgrades','write',70,'mod_assign',0),(254,'mod/assign:releasegrades','write',70,'mod_assign',0),(255,'mod/assign:managegrades','write',70,'mod_assign',0),(256,'mod/assign:manageallocations','write',70,'mod_assign',0),(257,'mod/assign:viewgrades','read',70,'mod_assign',0),(258,'mod/assign:viewblinddetails','write',70,'mod_assign',8),(259,'mod/assign:receivegradernotifications','read',70,'mod_assign',0),(260,'mod/assign:manageoverrides','write',70,'mod_assign',0),(261,'mod/assign:showhiddengrader','read',70,'mod_assign',0),(262,'mod/assignment:view','read',70,'mod_assignment',0),(263,'mod/assignment:addinstance','write',50,'mod_assignment',4),(264,'mod/assignment:submit','write',70,'mod_assignment',0),(265,'mod/assignment:grade','write',70,'mod_assignment',4),(266,'mod/assignment:exportownsubmission','read',70,'mod_assignment',0),(267,'mod/book:addinstance','write',50,'mod_book',4),(268,'mod/book:read','read',70,'mod_book',0),(269,'mod/book:viewhiddenchapters','read',70,'mod_book',0),(270,'mod/book:edit','write',70,'mod_book',4),(271,'mod/chat:addinstance','write',50,'mod_chat',4),(272,'mod/chat:chat','write',70,'mod_chat',16),(273,'mod/chat:readlog','read',70,'mod_chat',0),(274,'mod/chat:deletelog','write',70,'mod_chat',0),(275,'mod/chat:exportparticipatedsession','read',70,'mod_chat',8),(276,'mod/chat:exportsession','read',70,'mod_chat',8),(277,'mod/chat:view','read',70,'mod_chat',0),(278,'mod/choice:addinstance','write',50,'mod_choice',4),(279,'mod/choice:choose','write',70,'mod_choice',0),(280,'mod/choice:readresponses','read',70,'mod_choice',0),(281,'mod/choice:deleteresponses','write',70,'mod_choice',0),(282,'mod/choice:downloadresponses','read',70,'mod_choice',0),(283,'mod/choice:view','read',70,'mod_choice',0),(284,'mod/data:addinstance','write',50,'mod_data',4),(285,'mod/data:viewentry','read',70,'mod_data',0),(286,'mod/data:writeentry','write',70,'mod_data',16),(287,'mod/data:comment','write',70,'mod_data',16),(288,'mod/data:rate','write',70,'mod_data',0),(289,'mod/data:viewrating','read',70,'mod_data',0),(290,'mod/data:viewanyrating','read',70,'mod_data',8),(291,'mod/data:viewallratings','read',70,'mod_data',8),(292,'mod/data:approve','write',70,'mod_data',16),(293,'mod/data:manageentries','write',70,'mod_data',16),(294,'mod/data:managecomments','write',70,'mod_data',16),(295,'mod/data:managetemplates','write',70,'mod_data',20),(296,'mod/data:viewalluserpresets','read',70,'mod_data',0),(297,'mod/data:manageuserpresets','write',70,'mod_data',20),(298,'mod/data:exportentry','read',70,'mod_data',8),(299,'mod/data:exportownentry','read',70,'mod_data',0),(300,'mod/data:exportallentries','read',70,'mod_data',8),(301,'mod/data:exportuserinfo','read',70,'mod_data',8),(302,'mod/data:view','read',70,'mod_data',0),(303,'mod/feedback:addinstance','write',50,'mod_feedback',4),(304,'mod/feedback:view','read',70,'mod_feedback',0),(305,'mod/feedback:complete','write',70,'mod_feedback',16),(306,'mod/feedback:viewanalysepage','read',70,'mod_feedback',8),(307,'mod/feedback:deletesubmissions','write',70,'mod_feedback',0),(308,'mod/feedback:mapcourse','write',70,'mod_feedback',0),(309,'mod/feedback:edititems','write',70,'mod_feedback',20),(310,'mod/feedback:createprivatetemplate','write',70,'mod_feedback',16),(311,'mod/feedback:createpublictemplate','write',70,'mod_feedback',16),(312,'mod/feedback:deletetemplate','write',70,'mod_feedback',0),(313,'mod/feedback:viewreports','read',70,'mod_feedback',8),(314,'mod/feedback:receivemail','read',70,'mod_feedback',8),(315,'mod/folder:addinstance','write',50,'mod_folder',4),(316,'mod/folder:view','read',70,'mod_folder',0),(317,'mod/folder:managefiles','write',70,'mod_folder',20),(318,'mod/forum:addinstance','write',50,'mod_forum',4),(319,'mod/forum:viewdiscussion','read',70,'mod_forum',0),(320,'mod/forum:viewhiddentimedposts','read',70,'mod_forum',0),(321,'mod/forum:startdiscussion','write',70,'mod_forum',16),(322,'mod/forum:replypost','write',70,'mod_forum',16),(323,'mod/forum:addnews','write',70,'mod_forum',16),(324,'mod/forum:replynews','write',70,'mod_forum',16),(325,'mod/forum:viewrating','read',70,'mod_forum',0),(326,'mod/forum:viewanyrating','read',70,'mod_forum',8),(327,'mod/forum:viewallratings','read',70,'mod_forum',8),(328,'mod/forum:rate','write',70,'mod_forum',0),(329,'mod/forum:postprivatereply','write',70,'mod_forum',0),(330,'mod/forum:readprivatereplies','read',70,'mod_forum',0),(331,'mod/forum:createattachment','write',70,'mod_forum',16),(332,'mod/forum:deleteownpost','write',70,'mod_forum',0),(333,'mod/forum:deleteanypost','write',70,'mod_forum',0),(334,'mod/forum:splitdiscussions','write',70,'mod_forum',0),(335,'mod/forum:movediscussions','write',70,'mod_forum',0),(336,'mod/forum:pindiscussions','write',70,'mod_forum',0),(337,'mod/forum:editanypost','write',70,'mod_forum',16),(338,'mod/forum:viewqandawithoutposting','read',70,'mod_forum',0),(339,'mod/forum:viewsubscribers','read',70,'mod_forum',0),(340,'mod/forum:managesubscriptions','write',70,'mod_forum',16),(341,'mod/forum:postwithoutthrottling','write',70,'mod_forum',16),(342,'mod/forum:exportdiscussion','read',70,'mod_forum',8),(343,'mod/forum:exportforum','read',70,'mod_forum',8),(344,'mod/forum:exportpost','read',70,'mod_forum',8),(345,'mod/forum:exportownpost','read',70,'mod_forum',8),(346,'mod/forum:addquestion','write',70,'mod_forum',16),(347,'mod/forum:allowforcesubscribe','read',70,'mod_forum',0),(348,'mod/forum:canposttomygroups','write',70,'mod_forum',0),(349,'mod/forum:canoverridediscussionlock','write',70,'mod_forum',0),(350,'mod/forum:canoverridecutoff','write',70,'mod_forum',0),(351,'mod/forum:cantogglefavourite','write',70,'mod_forum',0),(352,'mod/forum:grade','write',70,'mod_forum',0),(353,'mod/glossary:addinstance','write',50,'mod_glossary',4),(354,'mod/glossary:view','read',70,'mod_glossary',0),(355,'mod/glossary:write','write',70,'mod_glossary',16),(356,'mod/glossary:manageentries','write',70,'mod_glossary',16),(357,'mod/glossary:managecategories','write',70,'mod_glossary',16),(358,'mod/glossary:comment','write',70,'mod_glossary',16),(359,'mod/glossary:managecomments','write',70,'mod_glossary',16),(360,'mod/glossary:import','write',70,'mod_glossary',16),(361,'mod/glossary:export','read',70,'mod_glossary',0),(362,'mod/glossary:approve','write',70,'mod_glossary',16),(363,'mod/glossary:rate','write',70,'mod_glossary',0),(364,'mod/glossary:viewrating','read',70,'mod_glossary',0),(365,'mod/glossary:viewanyrating','read',70,'mod_glossary',8),(366,'mod/glossary:viewallratings','read',70,'mod_glossary',8),(367,'mod/glossary:exportentry','read',70,'mod_glossary',8),(368,'mod/glossary:exportownentry','read',70,'mod_glossary',0),(369,'mod/h5pactivity:view','read',70,'mod_h5pactivity',0),(370,'mod/h5pactivity:addinstance','write',50,'mod_h5pactivity',0),(371,'mod/h5pactivity:submit','write',70,'mod_h5pactivity',0),(372,'mod/h5pactivity:reviewattempts','read',70,'mod_h5pactivity',0),(373,'mod/imscp:view','read',70,'mod_imscp',0),(374,'mod/imscp:addinstance','write',50,'mod_imscp',4),(375,'mod/label:addinstance','write',50,'mod_label',4),(376,'mod/label:view','read',70,'mod_label',0),(377,'mod/lesson:addinstance','write',50,'mod_lesson',4),(378,'mod/lesson:edit','write',70,'mod_lesson',4),(379,'mod/lesson:grade','write',70,'mod_lesson',20),(380,'mod/lesson:viewreports','read',70,'mod_lesson',8),(381,'mod/lesson:manage','write',70,'mod_lesson',0),(382,'mod/lesson:manageoverrides','write',70,'mod_lesson',0),(383,'mod/lesson:view','read',70,'mod_lesson',0),(384,'mod/lti:view','read',70,'mod_lti',0),(385,'mod/lti:addinstance','write',50,'mod_lti',4),(386,'mod/lti:manage','write',70,'mod_lti',8),(387,'mod/lti:admin','write',70,'mod_lti',8),(388,'mod/lti:addcoursetool','write',50,'mod_lti',0),(389,'mod/lti:addpreconfiguredinstance','write',50,'mod_lti',0),(390,'mod/lti:addmanualinstance','write',50,'mod_lti',0),(391,'mod/lti:requesttooladd','write',50,'mod_lti',0),(392,'mod/page:view','read',70,'mod_page',0),(393,'mod/page:addinstance','write',50,'mod_page',4),(394,'mod/quiz:view','read',70,'mod_quiz',0),(395,'mod/quiz:addinstance','write',50,'mod_quiz',4),(396,'mod/quiz:attempt','write',70,'mod_quiz',16),(397,'mod/quiz:reviewmyattempts','read',70,'mod_quiz',0),(398,'mod/quiz:manage','write',70,'mod_quiz',16),(399,'mod/quiz:manageoverrides','write',70,'mod_quiz',0),(400,'mod/quiz:preview','write',70,'mod_quiz',0),(401,'mod/quiz:grade','write',70,'mod_quiz',20),(402,'mod/quiz:regrade','write',70,'mod_quiz',16),(403,'mod/quiz:viewreports','read',70,'mod_quiz',8),(404,'mod/quiz:deleteattempts','write',70,'mod_quiz',32),(405,'mod/quiz:ignoretimelimits','read',70,'mod_quiz',0),(406,'mod/quiz:emailconfirmsubmission','read',70,'mod_quiz',0),(407,'mod/quiz:emailnotifysubmission','read',70,'mod_quiz',0),(408,'mod/quiz:emailwarnoverdue','read',70,'mod_quiz',0),(409,'mod/resource:view','read',70,'mod_resource',0),(410,'mod/resource:addinstance','write',50,'mod_resource',4),(411,'mod/scorm:addinstance','write',50,'mod_scorm',4),(412,'mod/scorm:viewreport','read',70,'mod_scorm',0),(413,'mod/scorm:skipview','read',70,'mod_scorm',0),(414,'mod/scorm:savetrack','write',70,'mod_scorm',0),(415,'mod/scorm:viewscores','read',70,'mod_scorm',0),(416,'mod/scorm:deleteresponses','write',70,'mod_scorm',0),(417,'mod/scorm:deleteownresponses','write',70,'mod_scorm',0),(418,'mod/survey:addinstance','write',50,'mod_survey',4),(419,'mod/survey:participate','read',70,'mod_survey',0),(420,'mod/survey:readresponses','read',70,'mod_survey',0),(421,'mod/survey:download','read',70,'mod_survey',0),(422,'mod/url:view','read',70,'mod_url',0),(423,'mod/url:addinstance','write',50,'mod_url',4),(424,'mod/wiki:addinstance','write',50,'mod_wiki',4),(425,'mod/wiki:viewpage','read',70,'mod_wiki',0),(426,'mod/wiki:editpage','write',70,'mod_wiki',16),(427,'mod/wiki:createpage','write',70,'mod_wiki',16),(428,'mod/wiki:viewcomment','read',70,'mod_wiki',0),(429,'mod/wiki:editcomment','write',70,'mod_wiki',16),(430,'mod/wiki:managecomment','write',70,'mod_wiki',0),(431,'mod/wiki:managefiles','write',70,'mod_wiki',0),(432,'mod/wiki:overridelock','write',70,'mod_wiki',0),(433,'mod/wiki:managewiki','write',70,'mod_wiki',0),(434,'mod/workshop:view','read',70,'mod_workshop',0),(435,'mod/workshop:addinstance','write',50,'mod_workshop',4),(436,'mod/workshop:switchphase','write',70,'mod_workshop',0),(437,'mod/workshop:editdimensions','write',70,'mod_workshop',4),(438,'mod/workshop:submit','write',70,'mod_workshop',0),(439,'mod/workshop:peerassess','write',70,'mod_workshop',0),(440,'mod/workshop:manageexamples','write',70,'mod_workshop',0),(441,'mod/workshop:allocate','write',70,'mod_workshop',0),(442,'mod/workshop:publishsubmissions','write',70,'mod_workshop',0),(443,'mod/workshop:viewauthornames','read',70,'mod_workshop',0),(444,'mod/workshop:viewreviewernames','read',70,'mod_workshop',0),(445,'mod/workshop:viewallsubmissions','read',70,'mod_workshop',0),(446,'mod/workshop:viewpublishedsubmissions','read',70,'mod_workshop',0),(447,'mod/workshop:viewauthorpublished','read',70,'mod_workshop',0),(448,'mod/workshop:viewallassessments','read',70,'mod_workshop',0),(449,'mod/workshop:overridegrades','write',70,'mod_workshop',0),(450,'mod/workshop:ignoredeadlines','write',70,'mod_workshop',0),(451,'mod/workshop:deletesubmissions','write',70,'mod_workshop',0),(452,'mod/workshop:exportsubmissions','read',70,'mod_workshop',0),(453,'auth/oauth2:managelinkedlogins','write',30,'auth_oauth2',0),(454,'enrol/category:synchronised','write',10,'enrol_category',0),(455,'enrol/category:config','write',50,'enrol_category',0),(456,'enrol/cohort:config','write',50,'enrol_cohort',0),(457,'enrol/cohort:unenrol','write',50,'enrol_cohort',0),(458,'enrol/database:unenrol','write',50,'enrol_database',0),(459,'enrol/database:config','write',50,'enrol_database',0),(460,'enrol/fee:config','write',50,'enrol_fee',0),(461,'enrol/fee:manage','write',50,'enrol_fee',0),(462,'enrol/fee:unenrol','write',50,'enrol_fee',0),(463,'enrol/fee:unenrolself','write',50,'enrol_fee',0),(464,'enrol/flatfile:manage','write',50,'enrol_flatfile',0),(465,'enrol/flatfile:unenrol','write',50,'enrol_flatfile',0),(466,'enrol/guest:config','write',50,'enrol_guest',0),(467,'enrol/imsenterprise:config','write',50,'enrol_imsenterprise',0),(468,'enrol/ldap:manage','write',50,'enrol_ldap',0),(469,'enrol/lti:config','write',50,'enrol_lti',0),(470,'enrol/lti:unenrol','write',50,'enrol_lti',0),(471,'enrol/manual:config','write',50,'enrol_manual',0),(472,'enrol/manual:enrol','write',50,'enrol_manual',0),(473,'enrol/manual:manage','write',50,'enrol_manual',0),(474,'enrol/manual:unenrol','write',50,'enrol_manual',0),(475,'enrol/manual:unenrolself','write',50,'enrol_manual',0),(476,'enrol/meta:config','write',50,'enrol_meta',0),(477,'enrol/meta:selectaslinked','read',50,'enrol_meta',0),(478,'enrol/meta:unenrol','write',50,'enrol_meta',0),(479,'enrol/mnet:config','write',50,'enrol_mnet',0),(480,'enrol/paypal:config','write',50,'enrol_paypal',0),(481,'enrol/paypal:manage','write',50,'enrol_paypal',0),(482,'enrol/paypal:unenrol','write',50,'enrol_paypal',0),(483,'enrol/paypal:unenrolself','write',50,'enrol_paypal',0),(484,'enrol/self:config','write',50,'enrol_self',0),(485,'enrol/self:manage','write',50,'enrol_self',0),(486,'enrol/self:holdkey','write',50,'enrol_self',0),(487,'enrol/self:unenrolself','write',50,'enrol_self',0),(488,'enrol/self:unenrol','write',50,'enrol_self',0),(489,'enrol/self:enrolself','write',50,'enrol_self',0),(490,'message/airnotifier:managedevice','write',10,'message_airnotifier',0),(491,'block/activity_modules:addinstance','write',80,'block_activity_modules',20),(492,'block/activity_results:addinstance','write',80,'block_activity_results',20),(493,'block/admin_bookmarks:myaddinstance','write',10,'block_admin_bookmarks',0),(494,'block/admin_bookmarks:addinstance','write',80,'block_admin_bookmarks',20),(495,'block/badges:addinstance','read',80,'block_badges',0),(496,'block/badges:myaddinstance','read',10,'block_badges',8),(497,'block/blog_menu:addinstance','write',80,'block_blog_menu',20),(498,'block/blog_recent:addinstance','write',80,'block_blog_recent',20),(499,'block/blog_tags:addinstance','write',80,'block_blog_tags',20),(500,'block/calendar_month:myaddinstance','write',10,'block_calendar_month',0),(501,'block/calendar_month:addinstance','write',80,'block_calendar_month',20),(502,'block/calendar_upcoming:myaddinstance','write',10,'block_calendar_upcoming',0),(503,'block/calendar_upcoming:addinstance','write',80,'block_calendar_upcoming',20),(504,'block/comments:myaddinstance','write',10,'block_comments',0),(505,'block/comments:addinstance','write',80,'block_comments',20),(506,'block/completionstatus:addinstance','write',80,'block_completionstatus',20),(507,'block/course_list:myaddinstance','write',10,'block_course_list',0),(508,'block/course_list:addinstance','write',80,'block_course_list',20),(509,'block/course_summary:addinstance','write',80,'block_course_summary',20),(510,'block/feedback:addinstance','write',80,'block_feedback',20),(511,'block/globalsearch:myaddinstance','write',10,'block_globalsearch',0),(512,'block/globalsearch:addinstance','write',80,'block_globalsearch',0),(513,'block/glossary_random:myaddinstance','write',10,'block_glossary_random',0),(514,'block/glossary_random:addinstance','write',80,'block_glossary_random',20),(515,'block/html:myaddinstance','write',10,'block_html',0),(516,'block/html:addinstance','write',80,'block_html',20),(517,'block/login:addinstance','write',80,'block_login',20),(518,'block/lp:addinstance','write',10,'block_lp',0),(519,'block/lp:myaddinstance','write',10,'block_lp',0),(520,'block/mentees:myaddinstance','write',10,'block_mentees',0),(521,'block/mentees:addinstance','write',80,'block_mentees',20),(522,'block/mnet_hosts:myaddinstance','write',10,'block_mnet_hosts',0),(523,'block/mnet_hosts:addinstance','write',80,'block_mnet_hosts',20),(524,'block/myoverview:myaddinstance','write',10,'block_myoverview',0),(525,'block/myprofile:myaddinstance','write',10,'block_myprofile',0),(526,'block/myprofile:addinstance','write',80,'block_myprofile',20),(527,'block/navigation:myaddinstance','write',10,'block_navigation',0),(528,'block/navigation:addinstance','write',80,'block_navigation',20),(529,'block/news_items:myaddinstance','write',10,'block_news_items',0),(530,'block/news_items:addinstance','write',80,'block_news_items',20),(531,'block/online_users:myaddinstance','write',10,'block_online_users',0),(532,'block/online_users:addinstance','write',80,'block_online_users',20),(533,'block/online_users:viewlist','read',80,'block_online_users',0),(534,'block/private_files:myaddinstance','write',10,'block_private_files',0),(535,'block/private_files:addinstance','write',80,'block_private_files',20),(536,'block/quiz_results:addinstance','write',80,'block_quiz_results',20),(537,'block/recent_activity:addinstance','write',80,'block_recent_activity',20),(538,'block/recent_activity:viewaddupdatemodule','read',50,'block_recent_activity',0),(539,'block/recent_activity:viewdeletemodule','read',50,'block_recent_activity',0),(540,'block/recentlyaccessedcourses:myaddinstance','write',10,'block_recentlyaccessedcourses',0),(541,'block/recentlyaccesseditems:myaddinstance','write',10,'block_recentlyaccesseditems',0),(542,'block/rss_client:myaddinstance','write',10,'block_rss_client',0),(543,'block/rss_client:addinstance','write',80,'block_rss_client',20),(544,'block/rss_client:manageownfeeds','write',80,'block_rss_client',0),(545,'block/rss_client:manageanyfeeds','write',80,'block_rss_client',16),(546,'block/search_forums:addinstance','write',80,'block_search_forums',20),(547,'block/section_links:addinstance','write',80,'block_section_links',20),(548,'block/selfcompletion:addinstance','write',80,'block_selfcompletion',20),(549,'block/settings:myaddinstance','write',10,'block_settings',0),(550,'block/settings:addinstance','write',80,'block_settings',20),(551,'block/site_main_menu:addinstance','write',80,'block_site_main_menu',20),(552,'block/social_activities:addinstance','write',80,'block_social_activities',20),(553,'block/starredcourses:myaddinstance','write',10,'block_starredcourses',0),(554,'block/tag_flickr:addinstance','write',80,'block_tag_flickr',20),(555,'block/tag_youtube:addinstance','write',80,'block_tag_youtube',20),(556,'block/tags:myaddinstance','write',10,'block_tags',0),(557,'block/tags:addinstance','write',80,'block_tags',20),(558,'block/timeline:myaddinstance','write',10,'block_timeline',0),(559,'report/completion:view','read',50,'report_completion',8),(560,'report/courseoverview:view','read',10,'report_courseoverview',8),(561,'report/log:view','read',50,'report_log',8),(562,'report/log:viewtoday','read',50,'report_log',8),(563,'report/loglive:view','read',50,'report_loglive',8),(564,'report/outline:view','read',50,'report_outline',8),(565,'report/outline:viewuserreport','read',50,'report_outline',8),(566,'report/participation:view','read',50,'report_participation',8),(567,'report/performance:view','read',10,'report_performance',2),(568,'report/progress:view','read',50,'report_progress',8),(569,'report/questioninstances:view','read',10,'report_questioninstances',0),(570,'report/security:view','read',10,'report_security',2),(571,'report/stats:view','read',50,'report_stats',8),(572,'report/status:view','read',10,'report_status',2),(573,'report/usersessions:manageownsessions','write',30,'report_usersessions',0),(574,'gradeexport/ods:view','read',50,'gradeexport_ods',8),(575,'gradeexport/ods:publish','read',50,'gradeexport_ods',8),(576,'gradeexport/txt:view','read',50,'gradeexport_txt',8),(577,'gradeexport/txt:publish','read',50,'gradeexport_txt',8),(578,'gradeexport/xls:view','read',50,'gradeexport_xls',8),(579,'gradeexport/xls:publish','read',50,'gradeexport_xls',8),(580,'gradeexport/xml:view','read',50,'gradeexport_xml',8),(581,'gradeexport/xml:publish','read',50,'gradeexport_xml',8),(582,'gradeimport/csv:view','write',50,'gradeimport_csv',0),(583,'gradeimport/direct:view','write',50,'gradeimport_direct',0),(584,'gradeimport/xml:view','write',50,'gradeimport_xml',0),(585,'gradeimport/xml:publish','write',50,'gradeimport_xml',0),(586,'gradereport/grader:view','read',50,'gradereport_grader',8),(587,'gradereport/history:view','read',50,'gradereport_history',8),(588,'gradereport/outcomes:view','read',50,'gradereport_outcomes',8),(589,'gradereport/overview:view','read',50,'gradereport_overview',8),(590,'gradereport/singleview:view','read',50,'gradereport_singleview',8),(591,'gradereport/user:view','read',50,'gradereport_user',8),(592,'webservice/rest:use','read',50,'webservice_rest',0),(593,'webservice/soap:use','read',50,'webservice_soap',0),(594,'webservice/xmlrpc:use','read',50,'webservice_xmlrpc',0),(595,'repository/areafiles:view','read',70,'repository_areafiles',0),(596,'repository/boxnet:view','read',70,'repository_boxnet',0),(597,'repository/contentbank:view','read',70,'repository_contentbank',0),(598,'repository/contentbank:accesscoursecontent','read',50,'repository_contentbank',0),(599,'repository/contentbank:accesscoursecategorycontent','read',40,'repository_contentbank',0),(600,'repository/contentbank:accessgeneralcontent','read',40,'repository_contentbank',0),(601,'repository/coursefiles:view','read',70,'repository_coursefiles',0),(602,'repository/dropbox:view','read',70,'repository_dropbox',0),(603,'repository/equella:view','read',70,'repository_equella',0),(604,'repository/filesystem:view','read',70,'repository_filesystem',0),(605,'repository/flickr:view','read',70,'repository_flickr',0),(606,'repository/flickr_public:view','read',70,'repository_flickr_public',0),(607,'repository/googledocs:view','read',70,'repository_googledocs',0),(608,'repository/local:view','read',70,'repository_local',0),(609,'repository/merlot:view','read',70,'repository_merlot',0),(610,'repository/nextcloud:view','read',70,'repository_nextcloud',0),(611,'repository/onedrive:view','read',70,'repository_onedrive',0),(612,'repository/picasa:view','read',70,'repository_picasa',0),(613,'repository/recent:view','read',70,'repository_recent',0),(614,'repository/s3:view','read',70,'repository_s3',0),(615,'repository/skydrive:view','read',70,'repository_skydrive',0),(616,'repository/upload:view','read',70,'repository_upload',0),(617,'repository/url:view','read',70,'repository_url',0),(618,'repository/user:view','read',70,'repository_user',0),(619,'repository/webdav:view','read',70,'repository_webdav',0),(620,'repository/wikimedia:view','read',70,'repository_wikimedia',0),(621,'repository/youtube:view','read',70,'repository_youtube',0),(622,'tool/customlang:view','read',10,'tool_customlang',2),(623,'tool/customlang:edit','write',10,'tool_customlang',6),(624,'tool/customlang:export','read',10,'tool_customlang',2),(625,'tool/dataprivacy:managedatarequests','write',10,'tool_dataprivacy',60),(626,'tool/dataprivacy:requestdeleteforotheruser','write',10,'tool_dataprivacy',60),(627,'tool/dataprivacy:managedataregistry','write',10,'tool_dataprivacy',60),(628,'tool/dataprivacy:makedatarequestsforchildren','write',30,'tool_dataprivacy',24),(629,'tool/dataprivacy:makedatadeletionrequestsforchildren','write',30,'tool_dataprivacy',24),(630,'tool/dataprivacy:downloadownrequest','read',30,'tool_dataprivacy',0),(631,'tool/dataprivacy:downloadallrequests','read',30,'tool_dataprivacy',8),(632,'tool/dataprivacy:requestdelete','write',30,'tool_dataprivacy',32),(633,'tool/lpmigrate:frameworksmigrate','write',10,'tool_lpmigrate',0),(634,'tool/monitor:subscribe','read',50,'tool_monitor',8),(635,'tool/monitor:managerules','write',50,'tool_monitor',4),(636,'tool/monitor:managetool','write',10,'tool_monitor',4),(637,'tool/policy:accept','write',10,'tool_policy',0),(638,'tool/policy:acceptbehalf','write',30,'tool_policy',8),(639,'tool/policy:managedocs','write',10,'tool_policy',0),(640,'tool/policy:viewacceptances','read',10,'tool_policy',0),(641,'tool/recyclebin:deleteitems','write',50,'tool_recyclebin',32),(642,'tool/recyclebin:restoreitems','write',50,'tool_recyclebin',0),(643,'tool/recyclebin:viewitems','read',50,'tool_recyclebin',0),(644,'tool/uploaduser:uploaduserpictures','write',10,'tool_uploaduser',16),(645,'tool/usertours:managetours','write',10,'tool_usertours',4),(646,'contenttype/h5p:access','read',50,'contenttype_h5p',0),(647,'contenttype/h5p:upload','write',50,'contenttype_h5p',16),(648,'contenttype/h5p:useeditor','write',50,'contenttype_h5p',16),(649,'booktool/exportimscp:export','read',70,'booktool_exportimscp',0),(650,'booktool/importhtml:import','write',70,'booktool_importhtml',4),(651,'booktool/print:print','read',70,'booktool_print',0),(652,'forumreport/summary:view','read',70,'forumreport_summary',0),(653,'forumreport/summary:viewall','read',70,'forumreport_summary',8),(654,'quiz/grading:viewstudentnames','read',70,'quiz_grading',0),(655,'quiz/grading:viewidnumber','read',70,'quiz_grading',0),(656,'quiz/statistics:view','read',70,'quiz_statistics',0),(657,'quizaccess/seb:managetemplates','write',10,'quizaccess_seb',0),(658,'quizaccess/seb:bypassseb','read',70,'quizaccess_seb',0),(659,'quizaccess/seb:manage_seb_requiresafeexambrowser','write',70,'quizaccess_seb',0),(660,'quizaccess/seb:manage_seb_templateid','read',70,'quizaccess_seb',0),(661,'quizaccess/seb:manage_filemanager_sebconfigfile','write',70,'quizaccess_seb',0),(662,'quizaccess/seb:manage_seb_showsebdownloadlink','write',70,'quizaccess_seb',0),(663,'quizaccess/seb:manage_seb_allowedbrowserexamkeys','write',70,'quizaccess_seb',0),(664,'quizaccess/seb:manage_seb_linkquitseb','write',70,'quizaccess_seb',0),(665,'quizaccess/seb:manage_seb_userconfirmquit','write',70,'quizaccess_seb',0),(666,'quizaccess/seb:manage_seb_allowuserquitseb','write',70,'quizaccess_seb',0),(667,'quizaccess/seb:manage_seb_quitpassword','write',70,'quizaccess_seb',0),(668,'quizaccess/seb:manage_seb_allowreloadinexam','write',70,'quizaccess_seb',0),(669,'quizaccess/seb:manage_seb_showsebtaskbar','write',70,'quizaccess_seb',0),(670,'quizaccess/seb:manage_seb_showreloadbutton','write',70,'quizaccess_seb',0),(671,'quizaccess/seb:manage_seb_showtime','write',70,'quizaccess_seb',0),(672,'quizaccess/seb:manage_seb_showkeyboardlayout','write',70,'quizaccess_seb',0),(673,'quizaccess/seb:manage_seb_showwificontrol','write',70,'quizaccess_seb',0),(674,'quizaccess/seb:manage_seb_enableaudiocontrol','write',70,'quizaccess_seb',0),(675,'quizaccess/seb:manage_seb_muteonstartup','write',70,'quizaccess_seb',0),(676,'quizaccess/seb:manage_seb_allowspellchecking','write',70,'quizaccess_seb',0),(677,'quizaccess/seb:manage_seb_activateurlfiltering','write',70,'quizaccess_seb',0),(678,'quizaccess/seb:manage_seb_filterembeddedcontent','write',70,'quizaccess_seb',0),(679,'quizaccess/seb:manage_seb_expressionsallowed','write',70,'quizaccess_seb',0),(680,'quizaccess/seb:manage_seb_regexallowed','write',70,'quizaccess_seb',0),(681,'quizaccess/seb:manage_seb_expressionsblocked','write',70,'quizaccess_seb',0),(682,'quizaccess/seb:manage_seb_regexblocked','write',70,'quizaccess_seb',0),(683,'atto/h5p:addembed','write',70,'atto_h5p',0),(684,'atto/recordrtc:recordaudio','write',70,'atto_recordrtc',0),(685,'atto/recordrtc:recordvideo','write',70,'atto_recordrtc',0),(686,'mod/customcert:addinstance','write',50,'mod_customcert',4),(687,'mod/customcert:view','read',70,'mod_customcert',0),(688,'mod/customcert:manage','write',70,'mod_customcert',0),(689,'mod/customcert:receiveissue','read',70,'mod_customcert',0),(690,'mod/customcert:viewreport','read',70,'mod_customcert',0),(691,'mod/customcert:viewallcertificates','read',10,'mod_customcert',0),(692,'mod/customcert:verifycertificate','read',70,'mod_customcert',0),(693,'mod/customcert:verifyallcertificates','read',10,'mod_customcert',0),(694,'mod/customcert:manageemailstudents','write',50,'mod_customcert',0),(695,'mod/customcert:manageemailteachers','write',50,'mod_customcert',0),(696,'mod/customcert:manageemailothers','write',50,'mod_customcert',0),(697,'mod/customcert:manageverifyany','write',50,'mod_customcert',0),(698,'mod/customcert:managerequiredtime','write',50,'mod_customcert',0),(699,'mod/customcert:manageprotection','write',50,'mod_customcert',0); -/*!40000 ALTER TABLE `mdl_capabilities` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_chat` --- - -DROP TABLE IF EXISTS `mdl_chat`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_chat` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `introformat` smallint(4) NOT NULL DEFAULT 0, - `keepdays` bigint(11) NOT NULL DEFAULT 0, - `studentlogs` smallint(4) NOT NULL DEFAULT 0, - `chattime` bigint(10) NOT NULL DEFAULT 0, - `schedule` smallint(4) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_chat_cou_ix` (`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Each of these is a chat room'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_chat` --- - -LOCK TABLES `mdl_chat` WRITE; -/*!40000 ALTER TABLE `mdl_chat` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_chat` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_chat_messages` --- - -DROP TABLE IF EXISTS `mdl_chat_messages`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_chat_messages` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `chatid` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `groupid` bigint(10) NOT NULL DEFAULT 0, - `issystem` tinyint(1) NOT NULL DEFAULT 0, - `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `timestamp` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_chatmess_use_ix` (`userid`), - KEY `mdl_chatmess_gro_ix` (`groupid`), - KEY `mdl_chatmess_timcha_ix` (`timestamp`,`chatid`), - KEY `mdl_chatmess_cha_ix` (`chatid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores all the actual chat messages'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_chat_messages` --- - -LOCK TABLES `mdl_chat_messages` WRITE; -/*!40000 ALTER TABLE `mdl_chat_messages` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_chat_messages` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_chat_messages_current` --- - -DROP TABLE IF EXISTS `mdl_chat_messages_current`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_chat_messages_current` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `chatid` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `groupid` bigint(10) NOT NULL DEFAULT 0, - `issystem` tinyint(1) NOT NULL DEFAULT 0, - `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `timestamp` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_chatmesscurr_use_ix` (`userid`), - KEY `mdl_chatmesscurr_gro_ix` (`groupid`), - KEY `mdl_chatmesscurr_timcha_ix` (`timestamp`,`chatid`), - KEY `mdl_chatmesscurr_cha_ix` (`chatid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores current session'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_chat_messages_current` --- - -LOCK TABLES `mdl_chat_messages_current` WRITE; -/*!40000 ALTER TABLE `mdl_chat_messages_current` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_chat_messages_current` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_chat_users` --- - -DROP TABLE IF EXISTS `mdl_chat_users`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_chat_users` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `chatid` bigint(11) NOT NULL DEFAULT 0, - `userid` bigint(11) NOT NULL DEFAULT 0, - `groupid` bigint(11) NOT NULL DEFAULT 0, - `version` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `ip` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `firstping` bigint(10) NOT NULL DEFAULT 0, - `lastping` bigint(10) NOT NULL DEFAULT 0, - `lastmessageping` bigint(10) NOT NULL DEFAULT 0, - `sid` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `course` bigint(10) NOT NULL DEFAULT 0, - `lang` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `mdl_chatuser_use_ix` (`userid`), - KEY `mdl_chatuser_las_ix` (`lastping`), - KEY `mdl_chatuser_gro_ix` (`groupid`), - KEY `mdl_chatuser_cha_ix` (`chatid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Keeps track of which users are in which chat rooms'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_chat_users` --- - -LOCK TABLES `mdl_chat_users` WRITE; -/*!40000 ALTER TABLE `mdl_chat_users` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_chat_users` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_choice` --- - -DROP TABLE IF EXISTS `mdl_choice`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_choice` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `introformat` smallint(4) NOT NULL DEFAULT 0, - `publish` tinyint(2) NOT NULL DEFAULT 0, - `showresults` tinyint(2) NOT NULL DEFAULT 0, - `display` smallint(4) NOT NULL DEFAULT 0, - `allowupdate` tinyint(2) NOT NULL DEFAULT 0, - `allowmultiple` tinyint(2) NOT NULL DEFAULT 0, - `showunanswered` tinyint(2) NOT NULL DEFAULT 0, - `includeinactive` tinyint(2) NOT NULL DEFAULT 1, - `limitanswers` tinyint(2) NOT NULL DEFAULT 0, - `timeopen` bigint(10) NOT NULL DEFAULT 0, - `timeclose` bigint(10) NOT NULL DEFAULT 0, - `showpreview` tinyint(2) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `completionsubmit` tinyint(1) NOT NULL DEFAULT 0, - `showavailable` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_choi_cou_ix` (`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Available choices are stored here'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_choice` --- - -LOCK TABLES `mdl_choice` WRITE; -/*!40000 ALTER TABLE `mdl_choice` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_choice` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_choice_answers` --- - -DROP TABLE IF EXISTS `mdl_choice_answers`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_choice_answers` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `choiceid` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `optionid` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_choiansw_use_ix` (`userid`), - KEY `mdl_choiansw_cho_ix` (`choiceid`), - KEY `mdl_choiansw_opt_ix` (`optionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='choices performed by users'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_choice_answers` --- - -LOCK TABLES `mdl_choice_answers` WRITE; -/*!40000 ALTER TABLE `mdl_choice_answers` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_choice_answers` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_choice_options` --- - -DROP TABLE IF EXISTS `mdl_choice_options`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_choice_options` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `choiceid` bigint(10) NOT NULL DEFAULT 0, - `text` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `maxanswers` bigint(10) DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_choiopti_cho_ix` (`choiceid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='available options to choice'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_choice_options` --- - -LOCK TABLES `mdl_choice_options` WRITE; -/*!40000 ALTER TABLE `mdl_choice_options` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_choice_options` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_cohort` --- - -DROP TABLE IF EXISTS `mdl_cohort`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_cohort` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `contextid` bigint(10) NOT NULL, - `name` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` tinyint(2) NOT NULL, - `visible` tinyint(1) NOT NULL DEFAULT 1, - `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `theme` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_coho_con_ix` (`contextid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Each record represents one cohort (aka site-wide group).'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_cohort` --- - -LOCK TABLES `mdl_cohort` WRITE; -/*!40000 ALTER TABLE `mdl_cohort` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_cohort` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_cohort_members` --- - -DROP TABLE IF EXISTS `mdl_cohort_members`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_cohort_members` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `cohortid` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `timeadded` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_cohomemb_cohuse_uix` (`cohortid`,`userid`), - KEY `mdl_cohomemb_coh_ix` (`cohortid`), - KEY `mdl_cohomemb_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Link a user to a cohort.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_cohort_members` --- - -LOCK TABLES `mdl_cohort_members` WRITE; -/*!40000 ALTER TABLE `mdl_cohort_members` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_cohort_members` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_comments` --- - -DROP TABLE IF EXISTS `mdl_comments`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_comments` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `contextid` bigint(10) NOT NULL, - `component` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `commentarea` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `itemid` bigint(10) NOT NULL, - `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `format` tinyint(2) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_comm_concomite_ix` (`contextid`,`commentarea`,`itemid`), - KEY `mdl_comm_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='moodle comments module'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_comments` --- - -LOCK TABLES `mdl_comments` WRITE; -/*!40000 ALTER TABLE `mdl_comments` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_comments` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_competency` --- - -DROP TABLE IF EXISTS `mdl_competency`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_competency` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `shortname` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` smallint(4) NOT NULL DEFAULT 0, - `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `competencyframeworkid` bigint(10) NOT NULL, - `parentid` bigint(10) NOT NULL DEFAULT 0, - `path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `sortorder` bigint(10) NOT NULL, - `ruletype` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `ruleoutcome` tinyint(2) NOT NULL DEFAULT 0, - `ruleconfig` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `scaleid` bigint(10) DEFAULT NULL, - `scaleconfiguration` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `usermodified` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_comp_comidn_uix` (`competencyframeworkid`,`idnumber`), - KEY `mdl_comp_rul_ix` (`ruleoutcome`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table contains the master record of each competency in '; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_competency` --- - -LOCK TABLES `mdl_competency` WRITE; -/*!40000 ALTER TABLE `mdl_competency` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_competency` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_competency_coursecomp` --- - -DROP TABLE IF EXISTS `mdl_competency_coursecomp`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_competency_coursecomp` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `courseid` bigint(10) NOT NULL, - `competencyid` bigint(10) NOT NULL, - `ruleoutcome` tinyint(2) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `usermodified` bigint(10) NOT NULL, - `sortorder` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_compcour_coucom_uix` (`courseid`,`competencyid`), - KEY `mdl_compcour_courul_ix` (`courseid`,`ruleoutcome`), - KEY `mdl_compcour_cou2_ix` (`courseid`), - KEY `mdl_compcour_com_ix` (`competencyid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Link a competency to a course.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_competency_coursecomp` --- - -LOCK TABLES `mdl_competency_coursecomp` WRITE; -/*!40000 ALTER TABLE `mdl_competency_coursecomp` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_competency_coursecomp` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_competency_coursecompsetting` --- - -DROP TABLE IF EXISTS `mdl_competency_coursecompsetting`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_competency_coursecompsetting` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `courseid` bigint(10) NOT NULL, - `pushratingstouserplans` tinyint(2) DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `usermodified` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_compcour_cou_uix` (`courseid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table contains the course specific settings for compete'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_competency_coursecompsetting` --- - -LOCK TABLES `mdl_competency_coursecompsetting` WRITE; -/*!40000 ALTER TABLE `mdl_competency_coursecompsetting` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_competency_coursecompsetting` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_competency_evidence` --- - -DROP TABLE IF EXISTS `mdl_competency_evidence`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_competency_evidence` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `usercompetencyid` bigint(10) NOT NULL, - `contextid` bigint(10) NOT NULL, - `action` tinyint(2) NOT NULL, - `actionuserid` bigint(10) DEFAULT NULL, - `descidentifier` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `desccomponent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `desca` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `grade` bigint(10) DEFAULT NULL, - `note` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `usermodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_compevid_use_ix` (`usercompetencyid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The evidence linked to a user competency'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_competency_evidence` --- - -LOCK TABLES `mdl_competency_evidence` WRITE; -/*!40000 ALTER TABLE `mdl_competency_evidence` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_competency_evidence` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_competency_framework` --- - -DROP TABLE IF EXISTS `mdl_competency_framework`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_competency_framework` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `shortname` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `contextid` bigint(10) NOT NULL, - `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` smallint(4) NOT NULL DEFAULT 0, - `scaleid` bigint(11) DEFAULT NULL, - `scaleconfiguration` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `visible` tinyint(2) NOT NULL DEFAULT 1, - `taxonomies` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `usermodified` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_compfram_idn_uix` (`idnumber`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='List of competency frameworks.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_competency_framework` --- - -LOCK TABLES `mdl_competency_framework` WRITE; -/*!40000 ALTER TABLE `mdl_competency_framework` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_competency_framework` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_competency_modulecomp` --- - -DROP TABLE IF EXISTS `mdl_competency_modulecomp`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_competency_modulecomp` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `cmid` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `usermodified` bigint(10) NOT NULL, - `sortorder` bigint(10) NOT NULL, - `competencyid` bigint(10) NOT NULL, - `ruleoutcome` tinyint(2) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_compmodu_cmicom_uix` (`cmid`,`competencyid`), - KEY `mdl_compmodu_cmirul_ix` (`cmid`,`ruleoutcome`), - KEY `mdl_compmodu_cmi_ix` (`cmid`), - KEY `mdl_compmodu_com_ix` (`competencyid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Link a competency to a module.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_competency_modulecomp` --- - -LOCK TABLES `mdl_competency_modulecomp` WRITE; -/*!40000 ALTER TABLE `mdl_competency_modulecomp` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_competency_modulecomp` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_competency_plan` --- - -DROP TABLE IF EXISTS `mdl_competency_plan`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_competency_plan` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` smallint(4) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL, - `templateid` bigint(10) DEFAULT NULL, - `origtemplateid` bigint(10) DEFAULT NULL, - `status` tinyint(1) NOT NULL, - `duedate` bigint(10) DEFAULT 0, - `reviewerid` bigint(10) DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `usermodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_compplan_usesta_ix` (`userid`,`status`), - KEY `mdl_compplan_tem_ix` (`templateid`), - KEY `mdl_compplan_stadue_ix` (`status`,`duedate`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Learning plans'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_competency_plan` --- - -LOCK TABLES `mdl_competency_plan` WRITE; -/*!40000 ALTER TABLE `mdl_competency_plan` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_competency_plan` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_competency_plancomp` --- - -DROP TABLE IF EXISTS `mdl_competency_plancomp`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_competency_plancomp` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `planid` bigint(10) NOT NULL, - `competencyid` bigint(10) NOT NULL, - `sortorder` bigint(10) DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) DEFAULT NULL, - `usermodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_compplan_placom_uix` (`planid`,`competencyid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Plan competencies'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_competency_plancomp` --- - -LOCK TABLES `mdl_competency_plancomp` WRITE; -/*!40000 ALTER TABLE `mdl_competency_plancomp` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_competency_plancomp` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_competency_relatedcomp` --- - -DROP TABLE IF EXISTS `mdl_competency_relatedcomp`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_competency_relatedcomp` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `competencyid` bigint(10) NOT NULL, - `relatedcompetencyid` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) DEFAULT NULL, - `usermodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Related competencies'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_competency_relatedcomp` --- - -LOCK TABLES `mdl_competency_relatedcomp` WRITE; -/*!40000 ALTER TABLE `mdl_competency_relatedcomp` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_competency_relatedcomp` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_competency_template` --- - -DROP TABLE IF EXISTS `mdl_competency_template`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_competency_template` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `shortname` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `contextid` bigint(10) NOT NULL, - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` smallint(4) NOT NULL DEFAULT 0, - `visible` tinyint(2) NOT NULL DEFAULT 1, - `duedate` bigint(10) DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `usermodified` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Learning plan templates.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_competency_template` --- - -LOCK TABLES `mdl_competency_template` WRITE; -/*!40000 ALTER TABLE `mdl_competency_template` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_competency_template` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_competency_templatecohort` --- - -DROP TABLE IF EXISTS `mdl_competency_templatecohort`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_competency_templatecohort` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `templateid` bigint(10) NOT NULL, - `cohortid` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `usermodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_comptemp_temcoh_uix` (`templateid`,`cohortid`), - KEY `mdl_comptemp_tem2_ix` (`templateid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Default comment for the table, please edit me'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_competency_templatecohort` --- - -LOCK TABLES `mdl_competency_templatecohort` WRITE; -/*!40000 ALTER TABLE `mdl_competency_templatecohort` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_competency_templatecohort` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_competency_templatecomp` --- - -DROP TABLE IF EXISTS `mdl_competency_templatecomp`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_competency_templatecomp` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `templateid` bigint(10) NOT NULL, - `competencyid` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `usermodified` bigint(10) NOT NULL, - `sortorder` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_comptemp_tem_ix` (`templateid`), - KEY `mdl_comptemp_com_ix` (`competencyid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Link a competency to a learning plan template.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_competency_templatecomp` --- - -LOCK TABLES `mdl_competency_templatecomp` WRITE; -/*!40000 ALTER TABLE `mdl_competency_templatecomp` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_competency_templatecomp` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_competency_usercomp` --- - -DROP TABLE IF EXISTS `mdl_competency_usercomp`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_competency_usercomp` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL, - `competencyid` bigint(10) NOT NULL, - `status` tinyint(2) NOT NULL DEFAULT 0, - `reviewerid` bigint(10) DEFAULT NULL, - `proficiency` tinyint(2) DEFAULT NULL, - `grade` bigint(10) DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) DEFAULT NULL, - `usermodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_compuser_usecom_uix` (`userid`,`competencyid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='User competencies'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_competency_usercomp` --- - -LOCK TABLES `mdl_competency_usercomp` WRITE; -/*!40000 ALTER TABLE `mdl_competency_usercomp` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_competency_usercomp` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_competency_usercompcourse` --- - -DROP TABLE IF EXISTS `mdl_competency_usercompcourse`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_competency_usercompcourse` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL, - `courseid` bigint(10) NOT NULL, - `competencyid` bigint(10) NOT NULL, - `proficiency` tinyint(2) DEFAULT NULL, - `grade` bigint(10) DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) DEFAULT NULL, - `usermodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_compuser_usecoucom_uix` (`userid`,`courseid`,`competencyid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='User competencies in a course'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_competency_usercompcourse` --- - -LOCK TABLES `mdl_competency_usercompcourse` WRITE; -/*!40000 ALTER TABLE `mdl_competency_usercompcourse` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_competency_usercompcourse` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_competency_usercompplan` --- - -DROP TABLE IF EXISTS `mdl_competency_usercompplan`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_competency_usercompplan` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL, - `competencyid` bigint(10) NOT NULL, - `planid` bigint(10) NOT NULL, - `proficiency` tinyint(2) DEFAULT NULL, - `grade` bigint(10) DEFAULT NULL, - `sortorder` bigint(10) DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) DEFAULT NULL, - `usermodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_compuser_usecompla_uix` (`userid`,`competencyid`,`planid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='User competencies plans'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_competency_usercompplan` --- - -LOCK TABLES `mdl_competency_usercompplan` WRITE; -/*!40000 ALTER TABLE `mdl_competency_usercompplan` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_competency_usercompplan` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_competency_userevidence` --- - -DROP TABLE IF EXISTS `mdl_competency_userevidence`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_competency_userevidence` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL, - `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `descriptionformat` tinyint(1) NOT NULL, - `url` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `usermodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_compuser_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The evidence of prior learning'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_competency_userevidence` --- - -LOCK TABLES `mdl_competency_userevidence` WRITE; -/*!40000 ALTER TABLE `mdl_competency_userevidence` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_competency_userevidence` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_competency_userevidencecomp` --- - -DROP TABLE IF EXISTS `mdl_competency_userevidencecomp`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_competency_userevidencecomp` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userevidenceid` bigint(10) NOT NULL, - `competencyid` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `usermodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_compuser_usecom2_uix` (`userevidenceid`,`competencyid`), - KEY `mdl_compuser_use2_ix` (`userevidenceid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Relationship between user evidence and competencies'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_competency_userevidencecomp` --- - -LOCK TABLES `mdl_competency_userevidencecomp` WRITE; -/*!40000 ALTER TABLE `mdl_competency_userevidencecomp` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_competency_userevidencecomp` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_config` --- - -DROP TABLE IF EXISTS `mdl_config`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_config` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_conf_nam_uix` (`name`) -) ENGINE=InnoDB AUTO_INCREMENT=528 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Moodle configuration variables'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_config` --- - -LOCK TABLES `mdl_config` WRITE; -/*!40000 ALTER TABLE `mdl_config` DISABLE KEYS */; -INSERT INTO `mdl_config` VALUES (2,'rolesactive','1'),(3,'auth','email'),(4,'enrol_plugins_enabled','manual,guest,self,flatfile'),(5,'theme','boost'),(6,'filter_multilang_converted','1'),(7,'siteidentifier','iwly4Wv0NDwBjqk0Oi2EFQBH7j9lOccYlearn.dev-defaults.derekmaxson.com'),(8,'backup_version','2008111700'),(9,'backup_release','2.0 dev'),(10,'mnet_dispatcher_mode','off'),(11,'sessiontimeout','28800'),(12,'stringfilters',''),(13,'filterall','0'),(14,'texteditors','atto,tinymce,textarea'),(15,'antiviruses',''),(16,'media_plugins_sortorder','videojs,youtube,swf'),(17,'upgrade_extracreditweightsstepignored','1'),(18,'upgrade_calculatedgradeitemsignored','1'),(19,'upgrade_letterboundarycourses','1'),(20,'mnet_localhost_id','1'),(21,'mnet_all_hosts_id','2'),(22,'siteguest','1'),(23,'siteadmins','2'),(24,'themerev','1619625660'),(25,'jsrev','1619625660'),(26,'templaterev','1619625660'),(27,'gdversion','2'),(28,'licenses','unknown,allrightsreserved,public,cc,cc-nd,cc-nc-nd,cc-nc,cc-nc-sa,cc-sa'),(29,'sitedefaultlicense','unknown'),(30,'badges_site_backpack','1'),(31,'version','2020110901.04'),(32,'enableuserfeedback','0'),(33,'userfeedback_nextreminder','1'),(34,'userfeedback_remindafter','90'),(35,'enableoutcomes','0'),(36,'usecomments','1'),(37,'usetags','1'),(38,'enablenotes','1'),(39,'enableportfolios','0'),(40,'enablewebservices','1'),(41,'enablestats','0'),(42,'enablerssfeeds','0'),(43,'enableblogs','1'),(44,'enablecompletion','1'),(45,'completiondefault','1'),(46,'enableavailability','1'),(47,'enableplagiarism','0'),(48,'enablebadges','1'),(49,'enableglobalsearch','0'),(50,'allowstealth','0'),(51,'enableanalytics','1'),(52,'allowemojipicker','1'),(53,'userfiltersdefault','realname'),(54,'defaultpreference_maildisplay','2'),(55,'defaultpreference_mailformat','1'),(56,'defaultpreference_maildigest','0'),(57,'defaultpreference_autosubscribe','1'),(58,'defaultpreference_trackforums','0'),(59,'autologinguests','0'),(60,'hiddenuserfields',''),(61,'showuseridentity','email'),(62,'fullnamedisplay','language'),(63,'alternativefullnameformat','language'),(64,'maxusersperpage','100'),(65,'enablegravatar','0'),(66,'gravatardefaulturl','mm'),(67,'agedigitalconsentverification','0'),(68,'agedigitalconsentmap','*, 16\nAT, 14\nBE, 13\nBG, 14\nCY, 14\nCZ, 15\nDK, 13\nEE, 13\nES, 14\nFI, 13\nFR, 15\nGB, 13\nGR, 15\nIT, 14\nLT, 14\nLV, 13\nMT, 13\nNO, 13\nPT, 13\nSE, 13\nUS, 13'),(69,'sitepolicy',''),(70,'sitepolicyguest',''),(71,'downloadcoursecontentallowed','1'),(72,'maxsizeperdownloadcoursefile','536870912'),(73,'enablecourserequests','1'),(74,'defaultrequestcategory','1'),(75,'lockrequestcategory','0'),(76,'courserequestnotify',''),(77,'activitychoosertabmode','0'),(78,'activitychooseractivefooter','hidden'),(79,'enableasyncbackup','0'),(80,'grade_profilereport','user'),(81,'grade_aggregationposition','1'),(82,'grade_includescalesinaggregation','1'),(83,'grade_hiddenasdate','0'),(84,'gradepublishing','0'),(85,'grade_export_exportfeedback','0'),(86,'grade_export_displaytype','1'),(87,'grade_export_decimalpoints','2'),(88,'grade_navmethod','1'),(89,'grade_export_userprofilefields','firstname,lastname,idnumber,institution,department,email'),(90,'grade_export_customprofilefields',''),(91,'recovergradesdefault','0'),(92,'gradeexport',''),(93,'unlimitedgrades','0'),(94,'grade_report_showmin','1'),(95,'gradepointmax','100'),(96,'gradepointdefault','100'),(97,'grade_minmaxtouse','1'),(98,'grade_mygrades_report','overview'),(99,'gradereport_mygradeurl',''),(100,'grade_hideforcedsettings','1'),(101,'grade_aggregation','13'),(102,'grade_aggregation_flag','0'),(103,'grade_aggregations_visible','13'),(104,'grade_aggregateonlygraded','1'),(105,'grade_aggregateonlygraded_flag','2'),(106,'grade_aggregateoutcomes','0'),(107,'grade_aggregateoutcomes_flag','2'),(108,'grade_keephigh','0'),(109,'grade_keephigh_flag','3'),(110,'grade_droplow','0'),(111,'grade_droplow_flag','2'),(112,'grade_overridecat','1'),(113,'grade_displaytype','1'),(114,'grade_decimalpoints','2'),(115,'grade_item_advanced','iteminfo,idnumber,gradepass,plusfactor,multfactor,display,decimals,hiddenuntil,locktime'),(116,'grade_report_studentsperpage','100'),(117,'grade_report_showonlyactiveenrol','1'),(118,'grade_report_quickgrading','1'),(119,'grade_report_showquickfeedback','0'),(120,'grade_report_meanselection','1'),(121,'grade_report_enableajax','0'),(122,'grade_report_showcalculations','1'),(123,'grade_report_showeyecons','0'),(124,'grade_report_showaverages','1'),(125,'grade_report_showlocks','0'),(126,'grade_report_showranges','0'),(127,'grade_report_showanalysisicon','1'),(128,'grade_report_showuserimage','1'),(129,'grade_report_showactivityicons','1'),(130,'grade_report_shownumberofgrades','0'),(131,'grade_report_averagesdisplaytype','inherit'),(132,'grade_report_rangesdisplaytype','inherit'),(133,'grade_report_averagesdecimalpoints','inherit'),(134,'grade_report_rangesdecimalpoints','inherit'),(135,'grade_report_historyperpage','50'),(136,'grade_report_overview_showrank','0'),(137,'grade_report_overview_showtotalsifcontainhidden','0'),(138,'grade_report_user_showrank','0'),(139,'grade_report_user_showpercentage','1'),(140,'grade_report_user_showgrade','1'),(141,'grade_report_user_showfeedback','1'),(142,'grade_report_user_showrange','1'),(143,'grade_report_user_showweight','1'),(144,'grade_report_user_showaverage','0'),(145,'grade_report_user_showlettergrade','0'),(146,'grade_report_user_rangedecimals','0'),(147,'grade_report_user_showhiddenitems','1'),(148,'grade_report_user_showtotalsifcontainhidden','0'),(149,'grade_report_user_showcontributiontocoursetotal','1'),(150,'badges_defaultissuername',''),(151,'badges_defaultissuercontact',''),(152,'badges_badgesalt','badges1619623682'),(153,'badges_allowcoursebadges','1'),(154,'badges_allowexternalbackpack','1'),(155,'rememberuserlicensepref','1'),(157,'forcetimezone','99'),(158,'country','0'),(159,'defaultcity',''),(160,'geoip2file','/var/www/moodledata/geoip/GeoLite2-City.mmdb'),(161,'googlemapkey3',''),(162,'allcountrycodes',''),(163,'autolang','1'),(164,'lang','en'),(165,'autolangusercreation','1'),(166,'langmenu','1'),(167,'langlist',''),(168,'langrev','1619625660'),(169,'langcache','1'),(170,'langstringcache','1'),(171,'locale',''),(172,'latinexcelexport','0'),(173,'messaging','1'),(174,'messagingallusers','0'),(175,'messagingdefaultpressenter','1'),(176,'messagingdeletereadnotificationsdelay','604800'),(177,'messagingdeleteallnotificationsdelay','2620800'),(178,'messagingallowemailoverride','0'),(179,'requiremodintro','0'),(181,'authloginviaemail','0'),(182,'allowaccountssameemail','0'),(183,'authpreventaccountcreation','0'),(184,'loginpageautofocus','0'),(185,'guestloginbutton','1'),(186,'limitconcurrentlogins','0'),(187,'alternateloginurl',''),(188,'forgottenpasswordurl',''),(189,'auth_instructions',''),(190,'allowemailaddresses',''),(191,'denyemailaddresses',''),(192,'verifychangedemail','1'),(193,'recaptchapublickey',''),(194,'recaptchaprivatekey',''),(195,'filteruploadedfiles','0'),(196,'filtermatchoneperpage','0'),(197,'filtermatchonepertext','0'),(198,'media_default_width','400'),(199,'media_default_height','300'),(200,'portfolio_moderate_filesize_threshold','1048576'),(201,'portfolio_high_filesize_threshold','5242880'),(202,'portfolio_moderate_db_threshold','20'),(203,'portfolio_high_db_threshold','50'),(204,'repositorycacheexpire','120'),(205,'repositorygetfiletimeout','30'),(206,'repositorysyncfiletimeout','1'),(207,'repositorysyncimagetimeout','3'),(208,'repositoryallowexternallinks','1'),(209,'legacyfilesinnewcourses','0'),(210,'legacyfilesaddallowed','1'),(211,'searchengine','simpledb'),(212,'searchindexwhendisabled','0'),(213,'searchindextime','600'),(214,'searchallavailablecourses','0'),(215,'searchincludeallcourses','0'),(216,'searchenablecategories','0'),(217,'searchdefaultcategory','core-all'),(218,'searchhideallcategory','0'),(219,'searchenginequeryonly',''),(220,'searchbannerenable','0'),(221,'searchbanner',''),(222,'enablewsdocumentation','0'),(223,'allowbeforeblock','0'),(224,'allowedip',''),(225,'blockedip',''),(226,'protectusernames','1'),(227,'forcelogin','0'),(228,'forceloginforprofiles','1'),(229,'forceloginforprofileimage','0'),(230,'opentowebcrawlers','0'),(231,'allowindexing','0'),(232,'maxbytes','0'),(233,'userquota','104857600'),(234,'allowobjectembed','0'),(235,'enabletrusttext','0'),(236,'maxeditingtime','1800'),(237,'extendedusernamechars','0'),(238,'keeptagnamecase','1'),(239,'profilesforenrolledusersonly','1'),(240,'cronclionly','1'),(241,'cronremotepassword',''),(242,'lockoutthreshold','0'),(243,'lockoutwindow','1800'),(244,'lockoutduration','1800'),(245,'passwordpolicy','1'),(246,'minpasswordlength','8'),(247,'minpassworddigits','1'),(248,'minpasswordlower','1'),(249,'minpasswordupper','1'),(250,'minpasswordnonalphanum','1'),(251,'maxconsecutiveidentchars','0'),(252,'passwordpolicycheckonlogin','0'),(253,'passwordreuselimit','0'),(254,'pwresettime','1800'),(255,'passwordchangelogout','0'),(256,'passwordchangetokendeletion','0'),(257,'tokenduration','7257600'),(258,'groupenrolmentkeypolicy','1'),(259,'disableuserimages','0'),(260,'emailchangeconfirmation','1'),(261,'rememberusername','2'),(262,'strictformsrequired','0'),(263,'cookiesecure','1'),(264,'cookiehttponly','0'),(265,'allowframembedding','0'),(266,'curlsecurityblockedhosts',''),(267,'curlsecurityallowedport',''),(268,'referrerpolicy','default'),(269,'displayloginfailures','0'),(270,'notifyloginfailures',''),(271,'notifyloginthreshold','10'),(272,'themelist',''),(273,'themedesignermode','0'),(274,'allowuserthemes','0'),(275,'allowcoursethemes','0'),(276,'allowcategorythemes','0'),(277,'allowcohortthemes','0'),(278,'allowthemechangeonurl','0'),(279,'allowuserblockhiding','1'),(280,'langmenuinsecurelayout','0'),(281,'logininfoinsecurelayout','0'),(282,'custommenuitems',''),(283,'customusermenuitems','grades,grades|/grade/report/mygrades.php|t/grades\r\nmessages,message|/message/index.php|t/message\r\npreferences,moodle|/user/preferences.php|t/preferences'),(284,'enabledevicedetection','1'),(285,'devicedetectregex','[]'),(286,'calendartype','gregorian'),(287,'calendar_adminseesall','0'),(288,'calendar_site_timeformat','0'),(289,'calendar_startwday','1'),(290,'calendar_weekend','65'),(291,'calendar_lookahead','21'),(292,'calendar_maxevents','10'),(293,'enablecalendarexport','1'),(294,'calendar_customexport','1'),(295,'calendar_exportlookahead','365'),(296,'calendar_exportlookback','5'),(297,'calendar_exportsalt','QQWEEsBDItPik6yOcGggNmfCDolHtqABUyw7eoCJXInMGB7izbIE6t3kVpSq'),(298,'calendar_showicalsource','1'),(299,'useblogassociations','1'),(300,'bloglevel','4'),(301,'useexternalblogs','1'),(302,'externalblogcrontime','86400'),(303,'maxexternalblogsperuser','1'),(304,'blogusecomments','1'),(305,'blogshowcommentscount','1'),(306,'defaulthomepage','1'),(307,'allowguestmymoodle','1'),(308,'navshowfullcoursenames','0'),(309,'navshowcategories','1'),(310,'navshowmycoursecategories','0'),(311,'navshowallcourses','0'),(312,'navsortmycoursessort','sortorder'),(313,'navsortmycourseshiddenlast','1'),(314,'navcourselimit','10'),(315,'usesitenameforsitepages','0'),(316,'linkadmincategories','1'),(317,'linkcoursesections','1'),(318,'navshowfrontpagemods','1'),(319,'navadduserpostslinks','1'),(320,'formatstringstriptags','1'),(321,'emoticons','[{\"text\":\":-)\",\"imagename\":\"s\\/smiley\",\"imagecomponent\":\"core\",\"altidentifier\":\"smiley\",\"altcomponent\":\"core_pix\"},{\"text\":\":)\",\"imagename\":\"s\\/smiley\",\"imagecomponent\":\"core\",\"altidentifier\":\"smiley\",\"altcomponent\":\"core_pix\"},{\"text\":\":-D\",\"imagename\":\"s\\/biggrin\",\"imagecomponent\":\"core\",\"altidentifier\":\"biggrin\",\"altcomponent\":\"core_pix\"},{\"text\":\";-)\",\"imagename\":\"s\\/wink\",\"imagecomponent\":\"core\",\"altidentifier\":\"wink\",\"altcomponent\":\"core_pix\"},{\"text\":\":-\\/\",\"imagename\":\"s\\/mixed\",\"imagecomponent\":\"core\",\"altidentifier\":\"mixed\",\"altcomponent\":\"core_pix\"},{\"text\":\"V-.\",\"imagename\":\"s\\/thoughtful\",\"imagecomponent\":\"core\",\"altidentifier\":\"thoughtful\",\"altcomponent\":\"core_pix\"},{\"text\":\":-P\",\"imagename\":\"s\\/tongueout\",\"imagecomponent\":\"core\",\"altidentifier\":\"tongueout\",\"altcomponent\":\"core_pix\"},{\"text\":\":-p\",\"imagename\":\"s\\/tongueout\",\"imagecomponent\":\"core\",\"altidentifier\":\"tongueout\",\"altcomponent\":\"core_pix\"},{\"text\":\"B-)\",\"imagename\":\"s\\/cool\",\"imagecomponent\":\"core\",\"altidentifier\":\"cool\",\"altcomponent\":\"core_pix\"},{\"text\":\"^-)\",\"imagename\":\"s\\/approve\",\"imagecomponent\":\"core\",\"altidentifier\":\"approve\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-)\",\"imagename\":\"s\\/wideeyes\",\"imagecomponent\":\"core\",\"altidentifier\":\"wideeyes\",\"altcomponent\":\"core_pix\"},{\"text\":\":o)\",\"imagename\":\"s\\/clown\",\"imagecomponent\":\"core\",\"altidentifier\":\"clown\",\"altcomponent\":\"core_pix\"},{\"text\":\":-(\",\"imagename\":\"s\\/sad\",\"imagecomponent\":\"core\",\"altidentifier\":\"sad\",\"altcomponent\":\"core_pix\"},{\"text\":\":(\",\"imagename\":\"s\\/sad\",\"imagecomponent\":\"core\",\"altidentifier\":\"sad\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-.\",\"imagename\":\"s\\/shy\",\"imagecomponent\":\"core\",\"altidentifier\":\"shy\",\"altcomponent\":\"core_pix\"},{\"text\":\":-I\",\"imagename\":\"s\\/blush\",\"imagecomponent\":\"core\",\"altidentifier\":\"blush\",\"altcomponent\":\"core_pix\"},{\"text\":\":-X\",\"imagename\":\"s\\/kiss\",\"imagecomponent\":\"core\",\"altidentifier\":\"kiss\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-o\",\"imagename\":\"s\\/surprise\",\"imagecomponent\":\"core\",\"altidentifier\":\"surprise\",\"altcomponent\":\"core_pix\"},{\"text\":\"P-|\",\"imagename\":\"s\\/blackeye\",\"imagecomponent\":\"core\",\"altidentifier\":\"blackeye\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-[\",\"imagename\":\"s\\/angry\",\"imagecomponent\":\"core\",\"altidentifier\":\"angry\",\"altcomponent\":\"core_pix\"},{\"text\":\"(grr)\",\"imagename\":\"s\\/angry\",\"imagecomponent\":\"core\",\"altidentifier\":\"angry\",\"altcomponent\":\"core_pix\"},{\"text\":\"xx-P\",\"imagename\":\"s\\/dead\",\"imagecomponent\":\"core\",\"altidentifier\":\"dead\",\"altcomponent\":\"core_pix\"},{\"text\":\"|-.\",\"imagename\":\"s\\/sleepy\",\"imagecomponent\":\"core\",\"altidentifier\":\"sleepy\",\"altcomponent\":\"core_pix\"},{\"text\":\"}-]\",\"imagename\":\"s\\/evil\",\"imagecomponent\":\"core\",\"altidentifier\":\"evil\",\"altcomponent\":\"core_pix\"},{\"text\":\"(h)\",\"imagename\":\"s\\/heart\",\"imagecomponent\":\"core\",\"altidentifier\":\"heart\",\"altcomponent\":\"core_pix\"},{\"text\":\"(heart)\",\"imagename\":\"s\\/heart\",\"imagecomponent\":\"core\",\"altidentifier\":\"heart\",\"altcomponent\":\"core_pix\"},{\"text\":\"(y)\",\"imagename\":\"s\\/yes\",\"imagecomponent\":\"core\",\"altidentifier\":\"yes\",\"altcomponent\":\"core\"},{\"text\":\"(n)\",\"imagename\":\"s\\/no\",\"imagecomponent\":\"core\",\"altidentifier\":\"no\",\"altcomponent\":\"core\"},{\"text\":\"(martin)\",\"imagename\":\"s\\/martin\",\"imagecomponent\":\"core\",\"altidentifier\":\"martin\",\"altcomponent\":\"core_pix\"},{\"text\":\"( )\",\"imagename\":\"s\\/egg\",\"imagecomponent\":\"core\",\"altidentifier\":\"egg\",\"altcomponent\":\"core_pix\"}]'),(322,'docroot','https://docs.moodle.org'),(323,'doclang',''),(324,'doctonewwindow','0'),(325,'coursecontactduplicates','0'),(326,'courselistshortnames','0'),(327,'coursesperpage','20'),(328,'courseswithsummarieslimit','10'),(329,'courseoverviewfileslimit','1'),(330,'courseoverviewfilesext','.jpg,.gif,.png'),(331,'coursegraceperiodbefore','0'),(332,'coursegraceperiodafter','0'),(333,'useexternalyui','0'),(334,'yuicomboloading','1'),(335,'cachejs','1'),(336,'modchooserdefault','1'),(337,'additionalhtmlhead',''),(338,'additionalhtmltopofbody',''),(339,'additionalhtmlfooter',''),(340,'cachetemplates','1'),(341,'pathtophp',''),(342,'pathtodu',''),(343,'aspellpath',''),(344,'pathtodot',''),(345,'pathtogs','/usr/bin/gs'),(346,'pathtopython',''),(347,'supportname','Admin User'),(348,'supportemail',''),(349,'supportpage',''),(350,'dbsessions','0'),(351,'sessioncookie',''),(352,'sessioncookiepath',''),(353,'sessioncookiedomain',''),(354,'statsfirstrun','none'),(355,'statsmaxruntime','0'),(356,'statsruntimedays','31'),(357,'statsuserthreshold','0'),(358,'slasharguments','1'),(359,'getremoteaddrconf','3'),(360,'reverseproxyignore',''),(361,'proxyhost',''),(362,'proxyport','0'),(363,'proxytype','HTTP'),(364,'proxyuser',''),(365,'proxypassword',''),(366,'proxybypass','localhost, 127.0.0.1'),(367,'maintenance_enabled','0'),(368,'maintenance_message',''),(369,'deleteunconfirmed','168'),(370,'deleteincompleteusers','0'),(371,'disablegradehistory','0'),(372,'gradehistorylifetime','0'),(373,'tempdatafoldercleanup','168'),(374,'filescleanupperiod','86400'),(375,'extramemorylimit','512M'),(376,'maxtimelimit','0'),(377,'curlcache','120'),(378,'curltimeoutkbitrate','56'),(379,'cron_enabled','1'),(380,'task_scheduled_concurrency_limit','3'),(381,'task_scheduled_max_runtime','1800'),(382,'task_adhoc_concurrency_limit','3'),(383,'task_adhoc_max_runtime','1800'),(384,'task_logmode','1'),(385,'task_logtostdout','1'),(386,'task_logretention','2419200'),(387,'task_logretainruns','20'),(388,'smtphosts',''),(389,'smtpsecure',''),(390,'smtpauthtype','LOGIN'),(391,'smtpuser',''),(392,'smtppass',''),(393,'smtpmaxbulk','1'),(394,'noreplyaddress','noreply@learn.dev-defaults.derekmaxson.com'),(395,'allowedemaildomains',''),(396,'divertallemailsto',''),(397,'divertallemailsexcept',''),(398,'emaildkimselector',''),(399,'sitemailcharset','0'),(400,'allowusermailcharset','0'),(401,'allowattachments','1'),(402,'mailnewline','LF'),(403,'emailfromvia','1'),(404,'emailsubjectprefix',''),(405,'emailheaders',''),(406,'updateautocheck','1'),(407,'updateminmaturity','200'),(408,'updatenotifybuilds','0'),(409,'dndallowtextandlinks','0'),(410,'pathtosassc',''),(411,'contextlocking','0'),(412,'contextlockappliestoadmin','1'),(413,'forceclean','0'),(414,'enablecourserelativedates','0'),(415,'debug','0'),(416,'debugdisplay','0'),(417,'perfdebug','7'),(418,'debugstringids','0'),(419,'debugsqltrace','0'),(420,'debugvalidators','0'),(421,'debugpageinfo','0'),(422,'profilingenabled','0'),(423,'profilingincluded',''),(424,'profilingexcluded',''),(425,'profilingautofrec','0'),(426,'profilingallowme','0'),(427,'profilingallowall','0'),(428,'profilingslow','0'),(429,'profilinglifetime','1440'),(430,'profilingimportprefix','(I)'),(431,'release','3.10.1+ (Build: 20210204)'),(432,'localcachedirpurged','1619625660'),(433,'scheduledtaskreset','1619625661'),(434,'paygw_plugins_sortorder','paypal'),(435,'allversionshash','692ee2f38a8153e3e0044e36a4a7e118d5afcd04'),(437,'registrationpending','0'),(438,'branch','310'),(439,'notloggedinroleid','6'),(440,'guestroleid','6'),(441,'defaultuserroleid','7'),(442,'creatornewroleid','3'),(443,'restorernewroleid','3'),(444,'sitepolicyhandler',''),(445,'gradebookroles','5'),(446,'h5plibraryhandler','h5plib_v124'),(447,'jabberhost',''),(448,'jabberserver',''),(449,'jabberusername',''),(450,'jabberpassword',''),(451,'jabberport','5222'),(452,'airnotifierurl','https://messages.moodle.net'),(453,'airnotifierport','443'),(454,'airnotifiermobileappname','com.moodle.moodlemobile'),(455,'airnotifierappname','commoodlemoodlemobile'),(456,'airnotifieraccesskey',''),(457,'chat_method','ajax'),(458,'chat_refresh_userlist','10'),(459,'chat_old_ping','35'),(460,'chat_refresh_room','5'),(461,'chat_normal_updatemode','jsupdate'),(462,'chat_serverhost','learn.dev-defaults.derekmaxson.com'),(463,'chat_serverip','127.0.0.1'),(464,'chat_serverport','9111'),(465,'chat_servermax','100'),(466,'data_enablerssfeeds','0'),(467,'feedback_allowfullanonymous','0'),(468,'forum_displaymode','3'),(469,'forum_shortpost','300'),(470,'forum_longpost','600'),(471,'forum_manydiscussions','100'),(472,'forum_maxbytes','512000'),(473,'forum_maxattachments','9'),(474,'forum_subscription','0'),(475,'forum_trackingtype','1'),(476,'forum_trackreadposts','1'),(477,'forum_allowforcedreadtracking','0'),(478,'forum_oldpostdays','14'),(479,'forum_usermarksread','0'),(480,'forum_cleanreadtime','2'),(481,'digestmailtime','17'),(482,'forum_enablerssfeeds','0'),(483,'forum_enabletimedposts','1'),(484,'glossary_entbypage','10'),(485,'glossary_dupentries','0'),(486,'glossary_allowcomments','0'),(487,'glossary_linkbydefault','1'),(488,'glossary_defaultapproval','1'),(489,'glossary_enablerssfeeds','0'),(490,'glossary_linkentries','0'),(491,'glossary_casesensitive','0'),(492,'glossary_fullmatch','0'),(493,'block_course_list_adminview','all'),(494,'block_course_list_hideallcourseslink','0'),(495,'block_html_allowcssclasses','0'),(496,'block_online_users_timetosee','5'),(497,'block_online_users_onlinestatushiding','1'),(498,'block_rss_client_num_entries','5'),(499,'block_rss_client_timeout','30'),(500,'pathtounoconv','/usr/bin/unoconv'),(501,'filter_multilang_force_old','0'),(502,'filter_censor_badwords',''),(503,'logguests','1'),(504,'loglifetime','0'),(505,'profileroles','5,4,3'),(506,'coursecontact','3'),(507,'frontpage','6'),(508,'frontpageloggedin','6'),(509,'maxcategorydepth','2'),(510,'frontpagecourselimit','200'),(511,'commentsperpage','15'),(512,'defaultfrontpageroleid','8'),(513,'messageinbound_enabled','0'),(514,'messageinbound_mailbox',''),(515,'messageinbound_domain',''),(516,'messageinbound_host',''),(517,'messageinbound_hostssl','ssl'),(518,'messageinbound_hostuser',''),(519,'messageinbound_hostpass',''),(520,'enablemobilewebservice','1'),(521,'mobilecssurl',''),(522,'timezone','Europe/London'),(523,'registerauth',''),(524,'scorm_updatetimelast','1619623861'),(526,'webserviceprotocols','rest'),(527,'fileslastcleanup','1619636461'); -/*!40000 ALTER TABLE `mdl_config` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_config_log` --- - -DROP TABLE IF EXISTS `mdl_config_log`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_config_log` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `plugin` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `oldvalue` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_conflog_tim_ix` (`timemodified`), - KEY `mdl_conflog_use_ix` (`userid`) -) ENGINE=InnoDB AUTO_INCREMENT=1672 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Changes done in server configuration through admin UI'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_config_log` --- - -LOCK TABLES `mdl_config_log` WRITE; -/*!40000 ALTER TABLE `mdl_config_log` DISABLE KEYS */; -INSERT INTO `mdl_config_log` VALUES (1,0,1619623688,NULL,'enableuserfeedback','0',NULL),(2,0,1619623688,NULL,'userfeedback_nextreminder','1',NULL),(3,0,1619623688,NULL,'userfeedback_remindafter','90',NULL),(4,0,1619623688,NULL,'enableoutcomes','0',NULL),(5,0,1619623688,NULL,'usecomments','1',NULL),(6,0,1619623688,NULL,'usetags','1',NULL),(7,0,1619623688,NULL,'enablenotes','1',NULL),(8,0,1619623688,NULL,'enableportfolios','0',NULL),(9,0,1619623688,NULL,'enablewebservices','0',NULL),(10,0,1619623688,NULL,'enablestats','0',NULL),(11,0,1619623688,NULL,'enablerssfeeds','0',NULL),(12,0,1619623688,NULL,'enableblogs','1',NULL),(13,0,1619623688,NULL,'enablecompletion','1',NULL),(14,0,1619623688,NULL,'completiondefault','1',NULL),(15,0,1619623688,NULL,'enableavailability','1',NULL),(16,0,1619623688,NULL,'enableplagiarism','0',NULL),(17,0,1619623688,NULL,'enablebadges','1',NULL),(18,0,1619623688,NULL,'enableglobalsearch','0',NULL),(19,0,1619623688,NULL,'allowstealth','0',NULL),(20,0,1619623688,NULL,'enableanalytics','1',NULL),(21,0,1619623688,NULL,'allowemojipicker','1',NULL),(22,0,1619623688,NULL,'userfiltersdefault','realname',NULL),(23,0,1619623688,NULL,'defaultpreference_maildisplay','2',NULL),(24,0,1619623688,NULL,'defaultpreference_mailformat','1',NULL),(25,0,1619623688,NULL,'defaultpreference_maildigest','0',NULL),(26,0,1619623688,NULL,'defaultpreference_autosubscribe','1',NULL),(27,0,1619623688,NULL,'defaultpreference_trackforums','0',NULL),(28,0,1619623688,NULL,'autologinguests','0',NULL),(29,0,1619623688,NULL,'hiddenuserfields','',NULL),(30,0,1619623688,NULL,'showuseridentity','email',NULL),(31,0,1619623688,NULL,'fullnamedisplay','language',NULL),(32,0,1619623688,NULL,'alternativefullnameformat','language',NULL),(33,0,1619623688,NULL,'maxusersperpage','100',NULL),(34,0,1619623689,NULL,'enablegravatar','0',NULL),(35,0,1619623689,NULL,'gravatardefaulturl','mm',NULL),(36,0,1619623689,NULL,'agedigitalconsentverification','0',NULL),(37,0,1619623689,NULL,'agedigitalconsentmap','*, 16\nAT, 14\nBE, 13\nBG, 14\nCY, 14\nCZ, 15\nDK, 13\nEE, 13\nES, 14\nFI, 13\nFR, 15\nGB, 13\nGR, 15\nIT, 14\nLT, 14\nLV, 13\nMT, 13\nNO, 13\nPT, 13\nSE, 13\nUS, 13',NULL),(38,0,1619623689,NULL,'sitepolicy','',NULL),(39,0,1619623689,NULL,'sitepolicyguest','',NULL),(40,0,1619623689,'moodlecourse','visible','1',NULL),(41,0,1619623689,'moodlecourse','downloadcontentsitedefault','0',NULL),(42,0,1619623689,'moodlecourse','format','topics',NULL),(43,0,1619623689,'moodlecourse','maxsections','52',NULL),(44,0,1619623689,'moodlecourse','numsections','4',NULL),(45,0,1619623689,'moodlecourse','hiddensections','0',NULL),(46,0,1619623689,'moodlecourse','coursedisplay','0',NULL),(47,0,1619623689,'moodlecourse','courseenddateenabled','1',NULL),(48,0,1619623689,'moodlecourse','courseduration','31536000',NULL),(49,0,1619623689,'moodlecourse','lang','',NULL),(50,0,1619623689,'moodlecourse','newsitems','5',NULL),(51,0,1619623689,'moodlecourse','showgrades','1',NULL),(52,0,1619623689,'moodlecourse','showreports','0',NULL),(53,0,1619623689,'moodlecourse','maxbytes','0',NULL),(54,0,1619623689,'moodlecourse','enablecompletion','1',NULL),(55,0,1619623689,'moodlecourse','groupmode','0',NULL),(56,0,1619623689,'moodlecourse','groupmodeforce','0',NULL),(57,0,1619623689,NULL,'downloadcoursecontentallowed','0',NULL),(58,0,1619623689,NULL,'maxsizeperdownloadcoursefile','52428800',NULL),(59,0,1619623689,NULL,'enablecourserequests','1',NULL),(60,0,1619623689,NULL,'defaultrequestcategory','1',NULL),(61,0,1619623689,NULL,'lockrequestcategory','0',NULL),(62,0,1619623689,NULL,'courserequestnotify','',NULL),(63,0,1619623689,NULL,'activitychoosertabmode','0',NULL),(64,0,1619623689,NULL,'activitychooseractivefooter','hidden',NULL),(65,0,1619623689,'backup','loglifetime','30',NULL),(66,0,1619623689,'backup','backup_general_users','1',NULL),(67,0,1619623689,'backup','backup_general_users_locked','',NULL),(68,0,1619623689,'backup','backup_general_anonymize','0',NULL),(69,0,1619623689,'backup','backup_general_anonymize_locked','',NULL),(70,0,1619623689,'backup','backup_general_role_assignments','1',NULL),(71,0,1619623689,'backup','backup_general_role_assignments_locked','',NULL),(72,0,1619623689,'backup','backup_general_activities','1',NULL),(73,0,1619623689,'backup','backup_general_activities_locked','',NULL),(74,0,1619623689,'backup','backup_general_blocks','1',NULL),(75,0,1619623689,'backup','backup_general_blocks_locked','',NULL),(76,0,1619623689,'backup','backup_general_files','1',NULL),(77,0,1619623689,'backup','backup_general_files_locked','',NULL),(78,0,1619623689,'backup','backup_general_filters','1',NULL),(79,0,1619623689,'backup','backup_general_filters_locked','',NULL),(80,0,1619623689,'backup','backup_general_comments','1',NULL),(81,0,1619623689,'backup','backup_general_comments_locked','',NULL),(82,0,1619623689,'backup','backup_general_badges','1',NULL),(83,0,1619623689,'backup','backup_general_badges_locked','',NULL),(84,0,1619623689,'backup','backup_general_calendarevents','1',NULL),(85,0,1619623689,'backup','backup_general_calendarevents_locked','',NULL),(86,0,1619623689,'backup','backup_general_userscompletion','1',NULL),(87,0,1619623689,'backup','backup_general_userscompletion_locked','',NULL),(88,0,1619623689,'backup','backup_general_logs','0',NULL),(89,0,1619623689,'backup','backup_general_logs_locked','',NULL),(90,0,1619623689,'backup','backup_general_histories','0',NULL),(91,0,1619623689,'backup','backup_general_histories_locked','',NULL),(92,0,1619623689,'backup','backup_general_questionbank','1',NULL),(93,0,1619623689,'backup','backup_general_questionbank_locked','',NULL),(94,0,1619623689,'backup','backup_general_groups','1',NULL),(95,0,1619623689,'backup','backup_general_groups_locked','',NULL),(96,0,1619623689,'backup','backup_general_competencies','1',NULL),(97,0,1619623689,'backup','backup_general_competencies_locked','',NULL),(98,0,1619623689,'backup','backup_general_contentbankcontent','1',NULL),(99,0,1619623689,'backup','backup_general_contentbankcontent_locked','',NULL),(100,0,1619623689,'backup','backup_general_legacyfiles','1',NULL),(101,0,1619623689,'backup','backup_general_legacyfiles_locked','',NULL),(102,0,1619623689,'backup','import_general_maxresults','10',NULL),(103,0,1619623689,'backup','import_general_duplicate_admin_allowed','0',NULL),(104,0,1619623689,'backup','backup_import_activities','1',NULL),(105,0,1619623689,'backup','backup_import_activities_locked','',NULL),(106,0,1619623689,'backup','backup_import_blocks','1',NULL),(107,0,1619623689,'backup','backup_import_blocks_locked','',NULL),(108,0,1619623689,'backup','backup_import_filters','1',NULL),(109,0,1619623689,'backup','backup_import_filters_locked','',NULL),(110,0,1619623689,'backup','backup_import_calendarevents','1',NULL),(111,0,1619623689,'backup','backup_import_calendarevents_locked','',NULL),(112,0,1619623689,'backup','backup_import_questionbank','1',NULL),(113,0,1619623689,'backup','backup_import_questionbank_locked','',NULL),(114,0,1619623689,'backup','backup_import_groups','1',NULL),(115,0,1619623689,'backup','backup_import_groups_locked','',NULL),(116,0,1619623689,'backup','backup_import_competencies','1',NULL),(117,0,1619623689,'backup','backup_import_competencies_locked','',NULL),(118,0,1619623689,'backup','backup_import_contentbankcontent','1',NULL),(119,0,1619623689,'backup','backup_import_contentbankcontent_locked','',NULL),(120,0,1619623689,'backup','backup_import_legacyfiles','1',NULL),(121,0,1619623689,'backup','backup_import_legacyfiles_locked','',NULL),(122,0,1619623689,'backup','backup_auto_active','0',NULL),(123,0,1619623689,'backup','backup_auto_weekdays','0000000',NULL),(124,0,1619623689,'backup','backup_auto_hour','0',NULL),(125,0,1619623689,'backup','backup_auto_minute','0',NULL),(126,0,1619623689,'backup','backup_auto_storage','0',NULL),(127,0,1619623689,'backup','backup_auto_destination','',NULL),(128,0,1619623689,'backup','backup_auto_max_kept','1',NULL),(129,0,1619623689,'backup','backup_auto_delete_days','0',NULL),(130,0,1619623689,'backup','backup_auto_min_kept','0',NULL),(131,0,1619623689,'backup','backup_shortname','0',NULL),(132,0,1619623689,'backup','backup_auto_skip_hidden','1',NULL),(133,0,1619623689,'backup','backup_auto_skip_modif_days','30',NULL),(134,0,1619623689,'backup','backup_auto_skip_modif_prev','0',NULL),(135,0,1619623689,'backup','backup_auto_users','1',NULL),(136,0,1619623689,'backup','backup_auto_role_assignments','1',NULL),(137,0,1619623689,'backup','backup_auto_activities','1',NULL),(138,0,1619623689,'backup','backup_auto_blocks','1',NULL),(139,0,1619623689,'backup','backup_auto_files','1',NULL),(140,0,1619623689,'backup','backup_auto_filters','1',NULL),(141,0,1619623689,'backup','backup_auto_comments','1',NULL),(142,0,1619623689,'backup','backup_auto_badges','1',NULL),(143,0,1619623689,'backup','backup_auto_calendarevents','1',NULL),(144,0,1619623689,'backup','backup_auto_userscompletion','1',NULL),(145,0,1619623689,'backup','backup_auto_logs','0',NULL),(146,0,1619623689,'backup','backup_auto_histories','0',NULL),(147,0,1619623689,'backup','backup_auto_questionbank','1',NULL),(148,0,1619623689,'backup','backup_auto_groups','1',NULL),(149,0,1619623689,'backup','backup_auto_competencies','1',NULL),(150,0,1619623689,'backup','backup_auto_contentbankcontent','1',NULL),(151,0,1619623689,'backup','backup_auto_legacyfiles','1',NULL),(152,0,1619623689,'restore','restore_general_users','1',NULL),(153,0,1619623689,'restore','restore_general_users_locked','',NULL),(154,0,1619623689,'restore','restore_general_enrolments','1',NULL),(155,0,1619623689,'restore','restore_general_enrolments_locked','',NULL),(156,0,1619623689,'restore','restore_general_role_assignments','1',NULL),(157,0,1619623689,'restore','restore_general_role_assignments_locked','',NULL),(158,0,1619623689,'restore','restore_general_activities','1',NULL),(159,0,1619623689,'restore','restore_general_activities_locked','',NULL),(160,0,1619623689,'restore','restore_general_blocks','1',NULL),(161,0,1619623689,'restore','restore_general_blocks_locked','',NULL),(162,0,1619623689,'restore','restore_general_filters','1',NULL),(163,0,1619623689,'restore','restore_general_filters_locked','',NULL),(164,0,1619623689,'restore','restore_general_comments','1',NULL),(165,0,1619623689,'restore','restore_general_comments_locked','',NULL),(166,0,1619623689,'restore','restore_general_badges','1',NULL),(167,0,1619623689,'restore','restore_general_badges_locked','',NULL),(168,0,1619623689,'restore','restore_general_calendarevents','1',NULL),(169,0,1619623689,'restore','restore_general_calendarevents_locked','',NULL),(170,0,1619623689,'restore','restore_general_userscompletion','1',NULL),(171,0,1619623689,'restore','restore_general_userscompletion_locked','',NULL),(172,0,1619623689,'restore','restore_general_logs','1',NULL),(173,0,1619623689,'restore','restore_general_logs_locked','',NULL),(174,0,1619623689,'restore','restore_general_histories','1',NULL),(175,0,1619623689,'restore','restore_general_histories_locked','',NULL),(176,0,1619623689,'restore','restore_general_groups','1',NULL),(177,0,1619623689,'restore','restore_general_groups_locked','',NULL),(178,0,1619623689,'restore','restore_general_competencies','1',NULL),(179,0,1619623689,'restore','restore_general_competencies_locked','',NULL),(180,0,1619623689,'restore','restore_general_contentbankcontent','1',NULL),(181,0,1619623689,'restore','restore_general_contentbankcontent_locked','',NULL),(182,0,1619623689,'restore','restore_general_legacyfiles','1',NULL),(183,0,1619623689,'restore','restore_general_legacyfiles_locked','',NULL),(184,0,1619623689,'restore','restore_merge_overwrite_conf','0',NULL),(185,0,1619623689,'restore','restore_merge_overwrite_conf_locked','',NULL),(186,0,1619623689,'restore','restore_merge_course_fullname','1',NULL),(187,0,1619623689,'restore','restore_merge_course_fullname_locked','',NULL),(188,0,1619623689,'restore','restore_merge_course_shortname','1',NULL),(189,0,1619623689,'restore','restore_merge_course_shortname_locked','',NULL),(190,0,1619623689,'restore','restore_merge_course_startdate','1',NULL),(191,0,1619623689,'restore','restore_merge_course_startdate_locked','',NULL),(192,0,1619623689,'restore','restore_replace_overwrite_conf','0',NULL),(193,0,1619623689,'restore','restore_replace_overwrite_conf_locked','',NULL),(194,0,1619623689,'restore','restore_replace_course_fullname','1',NULL),(195,0,1619623689,'restore','restore_replace_course_fullname_locked','',NULL),(196,0,1619623689,'restore','restore_replace_course_shortname','1',NULL),(197,0,1619623689,'restore','restore_replace_course_shortname_locked','',NULL),(198,0,1619623689,'restore','restore_replace_course_startdate','1',NULL),(199,0,1619623689,'restore','restore_replace_course_startdate_locked','',NULL),(200,0,1619623689,'restore','restore_replace_keep_roles_and_enrolments','0',NULL),(201,0,1619623689,'restore','restore_replace_keep_roles_and_enrolments_locked','',NULL),(202,0,1619623689,'restore','restore_replace_keep_groups_and_groupings','0',NULL),(203,0,1619623689,'restore','restore_replace_keep_groups_and_groupings_locked','',NULL),(204,0,1619623689,NULL,'enableasyncbackup','0',NULL),(205,0,1619623689,'backup','backup_async_message_users','0',NULL),(206,0,1619623689,'backup','backup_async_message_subject','Moodle {operation} completed successfully',NULL),(207,0,1619623689,'backup','backup_async_message','Hi {user_firstname},
Your {operation} (ID: {backupid}) has completed successfully.

You can access it here: {link}.',NULL),(208,0,1619623689,NULL,'grade_profilereport','user',NULL),(209,0,1619623689,NULL,'grade_aggregationposition','1',NULL),(210,0,1619623689,NULL,'grade_includescalesinaggregation','1',NULL),(211,0,1619623689,NULL,'grade_hiddenasdate','0',NULL),(212,0,1619623689,NULL,'gradepublishing','0',NULL),(213,0,1619623689,NULL,'grade_export_exportfeedback','0',NULL),(214,0,1619623689,NULL,'grade_export_displaytype','1',NULL),(215,0,1619623689,NULL,'grade_export_decimalpoints','2',NULL),(216,0,1619623689,NULL,'grade_navmethod','1',NULL),(217,0,1619623689,NULL,'grade_export_userprofilefields','firstname,lastname,idnumber,institution,department,email',NULL),(218,0,1619623689,NULL,'grade_export_customprofilefields','',NULL),(219,0,1619623689,NULL,'recovergradesdefault','0',NULL),(220,0,1619623689,NULL,'gradeexport','',NULL),(221,0,1619623689,NULL,'unlimitedgrades','0',NULL),(222,0,1619623689,NULL,'grade_report_showmin','1',NULL),(223,0,1619623689,NULL,'gradepointmax','100',NULL),(224,0,1619623689,NULL,'gradepointdefault','100',NULL),(225,0,1619623689,NULL,'grade_minmaxtouse','1',NULL),(226,0,1619623689,NULL,'grade_mygrades_report','overview',NULL),(227,0,1619623689,NULL,'gradereport_mygradeurl','',NULL),(228,0,1619623689,NULL,'grade_hideforcedsettings','1',NULL),(229,0,1619623689,NULL,'grade_aggregation','13',NULL),(230,0,1619623689,NULL,'grade_aggregation_flag','0',NULL),(231,0,1619623689,NULL,'grade_aggregations_visible','13',NULL),(232,0,1619623689,NULL,'grade_aggregateonlygraded','1',NULL),(233,0,1619623689,NULL,'grade_aggregateonlygraded_flag','2',NULL),(234,0,1619623689,NULL,'grade_aggregateoutcomes','0',NULL),(235,0,1619623689,NULL,'grade_aggregateoutcomes_flag','2',NULL),(236,0,1619623689,NULL,'grade_keephigh','0',NULL),(237,0,1619623689,NULL,'grade_keephigh_flag','3',NULL),(238,0,1619623689,NULL,'grade_droplow','0',NULL),(239,0,1619623689,NULL,'grade_droplow_flag','2',NULL),(240,0,1619623689,NULL,'grade_overridecat','1',NULL),(241,0,1619623689,NULL,'grade_displaytype','1',NULL),(242,0,1619623689,NULL,'grade_decimalpoints','2',NULL),(243,0,1619623689,NULL,'grade_item_advanced','iteminfo,idnumber,gradepass,plusfactor,multfactor,display,decimals,hiddenuntil,locktime',NULL),(244,0,1619623689,NULL,'grade_report_studentsperpage','100',NULL),(245,0,1619623689,NULL,'grade_report_showonlyactiveenrol','1',NULL),(246,0,1619623689,NULL,'grade_report_quickgrading','1',NULL),(247,0,1619623689,NULL,'grade_report_showquickfeedback','0',NULL),(248,0,1619623689,NULL,'grade_report_meanselection','1',NULL),(249,0,1619623689,NULL,'grade_report_enableajax','0',NULL),(250,0,1619623689,NULL,'grade_report_showcalculations','1',NULL),(251,0,1619623689,NULL,'grade_report_showeyecons','0',NULL),(252,0,1619623689,NULL,'grade_report_showaverages','1',NULL),(253,0,1619623689,NULL,'grade_report_showlocks','0',NULL),(254,0,1619623689,NULL,'grade_report_showranges','0',NULL),(255,0,1619623689,NULL,'grade_report_showanalysisicon','1',NULL),(256,0,1619623689,NULL,'grade_report_showuserimage','1',NULL),(257,0,1619623689,NULL,'grade_report_showactivityicons','1',NULL),(258,0,1619623689,NULL,'grade_report_shownumberofgrades','0',NULL),(259,0,1619623689,NULL,'grade_report_averagesdisplaytype','inherit',NULL),(260,0,1619623689,NULL,'grade_report_rangesdisplaytype','inherit',NULL),(261,0,1619623689,NULL,'grade_report_averagesdecimalpoints','inherit',NULL),(262,0,1619623689,NULL,'grade_report_rangesdecimalpoints','inherit',NULL),(263,0,1619623689,NULL,'grade_report_historyperpage','50',NULL),(264,0,1619623689,NULL,'grade_report_overview_showrank','0',NULL),(265,0,1619623689,NULL,'grade_report_overview_showtotalsifcontainhidden','0',NULL),(266,0,1619623689,NULL,'grade_report_user_showrank','0',NULL),(267,0,1619623689,NULL,'grade_report_user_showpercentage','1',NULL),(268,0,1619623689,NULL,'grade_report_user_showgrade','1',NULL),(269,0,1619623689,NULL,'grade_report_user_showfeedback','1',NULL),(270,0,1619623689,NULL,'grade_report_user_showrange','1',NULL),(271,0,1619623689,NULL,'grade_report_user_showweight','1',NULL),(272,0,1619623689,NULL,'grade_report_user_showaverage','0',NULL),(273,0,1619623689,NULL,'grade_report_user_showlettergrade','0',NULL),(274,0,1619623689,NULL,'grade_report_user_rangedecimals','0',NULL),(275,0,1619623689,NULL,'grade_report_user_showhiddenitems','1',NULL),(276,0,1619623690,NULL,'grade_report_user_showtotalsifcontainhidden','0',NULL),(277,0,1619623690,NULL,'grade_report_user_showcontributiontocoursetotal','1',NULL),(278,0,1619623690,'analytics','modeinstruction','',NULL),(279,0,1619623690,'analytics','percentonline','0',NULL),(280,0,1619623690,'analytics','typeinstitution','',NULL),(281,0,1619623690,'analytics','levelinstitution','',NULL),(282,0,1619623690,'analytics','predictionsprocessor','\\mlbackend_php\\processor',NULL),(283,0,1619623690,'analytics','defaulttimesplittingsevaluation','\\core\\analytics\\time_splitting\\quarters_accum,\\core\\analytics\\time_splitting\\quarters,\\core\\analytics\\time_splitting\\single_range',NULL),(284,0,1619623690,'analytics','modeloutputdir','',NULL),(285,0,1619623690,'analytics','onlycli','1',NULL),(286,0,1619623690,'analytics','modeltimelimit','1200',NULL),(287,0,1619623690,'core_competency','enabled','1',NULL),(288,0,1619623690,'core_competency','pushcourseratingstouserplans','1',NULL),(289,0,1619623690,NULL,'badges_defaultissuername','',NULL),(290,0,1619623690,NULL,'badges_defaultissuercontact','',NULL),(291,0,1619623690,NULL,'badges_badgesalt','badges1619623682',NULL),(292,0,1619623690,NULL,'badges_allowcoursebadges','1',NULL),(293,0,1619623690,NULL,'badges_allowexternalbackpack','1',NULL),(294,0,1619623690,NULL,'rememberuserlicensepref','1',NULL),(295,0,1619623690,NULL,'timezone','Europe/London',NULL),(296,0,1619623690,NULL,'forcetimezone','99',NULL),(297,0,1619623690,NULL,'country','0',NULL),(298,0,1619623690,NULL,'defaultcity','',NULL),(299,0,1619623690,NULL,'geoip2file','/var/www/moodledata/geoip/GeoLite2-City.mmdb',NULL),(300,0,1619623690,NULL,'googlemapkey3','',NULL),(301,0,1619623690,NULL,'allcountrycodes','',NULL),(302,0,1619623690,NULL,'autolang','1',NULL),(303,0,1619623690,NULL,'lang','en',NULL),(304,0,1619623690,NULL,'autolangusercreation','1',NULL),(305,0,1619623690,NULL,'langmenu','1',NULL),(306,0,1619623690,NULL,'langlist','',NULL),(307,0,1619623690,NULL,'langcache','1',NULL),(308,0,1619623690,NULL,'langstringcache','1',NULL),(309,0,1619623690,NULL,'locale','',NULL),(310,0,1619623690,NULL,'latinexcelexport','0',NULL),(311,0,1619623690,NULL,'messaging','1',NULL),(312,0,1619623690,NULL,'messagingallusers','0',NULL),(313,0,1619623690,NULL,'messagingdefaultpressenter','1',NULL),(314,0,1619623690,NULL,'messagingdeletereadnotificationsdelay','604800',NULL),(315,0,1619623690,NULL,'messagingdeleteallnotificationsdelay','2620800',NULL),(316,0,1619623690,NULL,'messagingallowemailoverride','0',NULL),(317,0,1619623690,NULL,'requiremodintro','0',NULL),(318,0,1619623690,'antivirus','notifyemail','',NULL),(319,0,1619623690,'antivirus','enablequarantine','0',NULL),(320,0,1619623691,'antivirus','quarantinetime','2419200',NULL),(321,0,1619623691,NULL,'registerauth','',NULL),(322,0,1619623691,NULL,'authloginviaemail','0',NULL),(323,0,1619623691,NULL,'allowaccountssameemail','0',NULL),(324,0,1619623691,NULL,'authpreventaccountcreation','0',NULL),(325,0,1619623691,NULL,'loginpageautofocus','0',NULL),(326,0,1619623691,NULL,'guestloginbutton','1',NULL),(327,0,1619623691,NULL,'limitconcurrentlogins','0',NULL),(328,0,1619623691,NULL,'alternateloginurl','',NULL),(329,0,1619623691,NULL,'forgottenpasswordurl','',NULL),(330,0,1619623691,NULL,'auth_instructions','',NULL),(331,0,1619623691,NULL,'allowemailaddresses','',NULL),(332,0,1619623691,NULL,'denyemailaddresses','',NULL),(333,0,1619623691,NULL,'verifychangedemail','1',NULL),(334,0,1619623691,NULL,'recaptchapublickey','',NULL),(335,0,1619623691,NULL,'recaptchaprivatekey','',NULL),(336,0,1619623691,'cachestore_apcu','testperformance','0',NULL),(337,0,1619623691,'cachestore_memcached','testservers','',NULL),(338,0,1619623691,'cachestore_mongodb','testserver','',NULL),(339,0,1619623691,'cachestore_redis','test_server','',NULL),(340,0,1619623691,'cachestore_redis','test_password','',NULL),(341,0,1619623691,NULL,'filteruploadedfiles','0',NULL),(342,0,1619623691,NULL,'filtermatchoneperpage','0',NULL),(343,0,1619623691,NULL,'filtermatchonepertext','0',NULL),(344,0,1619623691,NULL,'media_default_width','400',NULL),(345,0,1619623691,NULL,'media_default_height','300',NULL),(346,0,1619623691,NULL,'portfolio_moderate_filesize_threshold','1048576',NULL),(347,0,1619623691,NULL,'portfolio_high_filesize_threshold','5242880',NULL),(348,0,1619623691,NULL,'portfolio_moderate_db_threshold','20',NULL),(349,0,1619623691,NULL,'portfolio_high_db_threshold','50',NULL),(350,0,1619623691,'question_preview','behaviour','deferredfeedback',NULL),(351,0,1619623691,'question_preview','correctness','1',NULL),(352,0,1619623691,'question_preview','marks','2',NULL),(353,0,1619623691,'question_preview','markdp','2',NULL),(354,0,1619623691,'question_preview','feedback','1',NULL),(355,0,1619623691,'question_preview','generalfeedback','1',NULL),(356,0,1619623691,'question_preview','rightanswer','1',NULL),(357,0,1619623691,'question_preview','history','0',NULL),(358,0,1619623691,NULL,'repositorycacheexpire','120',NULL),(359,0,1619623691,NULL,'repositorygetfiletimeout','30',NULL),(360,0,1619623691,NULL,'repositorysyncfiletimeout','1',NULL),(361,0,1619623691,NULL,'repositorysyncimagetimeout','3',NULL),(362,0,1619623691,NULL,'repositoryallowexternallinks','1',NULL),(363,0,1619623691,NULL,'legacyfilesinnewcourses','0',NULL),(364,0,1619623691,NULL,'legacyfilesaddallowed','1',NULL),(365,0,1619623691,NULL,'searchengine','simpledb',NULL),(366,0,1619623691,NULL,'searchindexwhendisabled','0',NULL),(367,0,1619623691,NULL,'searchindextime','600',NULL),(368,0,1619623691,NULL,'searchallavailablecourses','0',NULL),(369,0,1619623691,NULL,'searchincludeallcourses','0',NULL),(370,0,1619623691,NULL,'searchenablecategories','0',NULL),(371,0,1619623691,NULL,'searchdefaultcategory','core-all',NULL),(372,0,1619623691,NULL,'searchhideallcategory','0',NULL),(373,0,1619623691,NULL,'searchenginequeryonly','',NULL),(374,0,1619623691,NULL,'searchbannerenable','0',NULL),(375,0,1619623691,NULL,'searchbanner','',NULL),(376,0,1619623691,NULL,'enablewsdocumentation','0',NULL),(377,0,1619623691,NULL,'allowbeforeblock','0',NULL),(378,0,1619623691,NULL,'allowedip','',NULL),(379,0,1619623691,NULL,'blockedip','',NULL),(380,0,1619623691,NULL,'protectusernames','1',NULL),(381,0,1619623691,NULL,'forcelogin','0',NULL),(382,0,1619623691,NULL,'forceloginforprofiles','1',NULL),(383,0,1619623691,NULL,'forceloginforprofileimage','0',NULL),(384,0,1619623691,NULL,'opentowebcrawlers','0',NULL),(385,0,1619623691,NULL,'allowindexing','0',NULL),(386,0,1619623691,NULL,'maxbytes','0',NULL),(387,0,1619623691,NULL,'userquota','104857600',NULL),(388,0,1619623691,NULL,'allowobjectembed','0',NULL),(389,0,1619623691,NULL,'enabletrusttext','0',NULL),(390,0,1619623691,NULL,'maxeditingtime','1800',NULL),(391,0,1619623691,NULL,'extendedusernamechars','0',NULL),(392,0,1619623691,NULL,'keeptagnamecase','1',NULL),(393,0,1619623691,NULL,'profilesforenrolledusersonly','1',NULL),(394,0,1619623691,NULL,'cronclionly','1',NULL),(395,0,1619623691,NULL,'cronremotepassword','',NULL),(396,0,1619623691,'tool_task','enablerunnow','1',NULL),(397,0,1619623691,NULL,'lockoutthreshold','0',NULL),(398,0,1619623691,NULL,'lockoutwindow','1800',NULL),(399,0,1619623691,NULL,'lockoutduration','1800',NULL),(400,0,1619623691,NULL,'passwordpolicy','1',NULL),(401,0,1619623691,NULL,'minpasswordlength','8',NULL),(402,0,1619623691,NULL,'minpassworddigits','1',NULL),(403,0,1619623691,NULL,'minpasswordlower','1',NULL),(404,0,1619623691,NULL,'minpasswordupper','1',NULL),(405,0,1619623691,NULL,'minpasswordnonalphanum','1',NULL),(406,0,1619623691,NULL,'maxconsecutiveidentchars','0',NULL),(407,0,1619623691,NULL,'passwordpolicycheckonlogin','0',NULL),(408,0,1619623691,NULL,'passwordreuselimit','0',NULL),(409,0,1619623691,NULL,'pwresettime','1800',NULL),(410,0,1619623691,NULL,'passwordchangelogout','0',NULL),(411,0,1619623691,NULL,'passwordchangetokendeletion','0',NULL),(412,0,1619623691,NULL,'tokenduration','7257600',NULL),(413,0,1619623691,NULL,'groupenrolmentkeypolicy','1',NULL),(414,0,1619623691,NULL,'disableuserimages','0',NULL),(415,0,1619623691,NULL,'emailchangeconfirmation','1',NULL),(416,0,1619623691,NULL,'rememberusername','2',NULL),(417,0,1619623691,NULL,'strictformsrequired','0',NULL),(418,0,1619623691,NULL,'cookiesecure','1',NULL),(419,0,1619623691,NULL,'cookiehttponly','0',NULL),(420,0,1619623691,NULL,'allowframembedding','0',NULL),(421,0,1619623691,NULL,'curlsecurityblockedhosts','',NULL),(422,0,1619623691,NULL,'curlsecurityallowedport','',NULL),(423,0,1619623691,NULL,'referrerpolicy','default',NULL),(424,0,1619623691,NULL,'displayloginfailures','0',NULL),(425,0,1619623691,NULL,'notifyloginfailures','',NULL),(426,0,1619623691,NULL,'notifyloginthreshold','10',NULL),(427,0,1619623691,NULL,'themelist','',NULL),(428,0,1619623691,NULL,'themedesignermode','0',NULL),(429,0,1619623691,NULL,'allowuserthemes','0',NULL),(430,0,1619623691,NULL,'allowcoursethemes','0',NULL),(431,0,1619623691,NULL,'allowcategorythemes','0',NULL),(432,0,1619623691,NULL,'allowcohortthemes','0',NULL),(433,0,1619623691,NULL,'allowthemechangeonurl','0',NULL),(434,0,1619623691,NULL,'allowuserblockhiding','1',NULL),(435,0,1619623691,NULL,'langmenuinsecurelayout','0',NULL),(436,0,1619623691,NULL,'logininfoinsecurelayout','0',NULL),(437,0,1619623691,NULL,'custommenuitems','',NULL),(438,0,1619623691,NULL,'customusermenuitems','grades,grades|/grade/report/mygrades.php|t/grades\nmessages,message|/message/index.php|t/message\npreferences,moodle|/user/preferences.php|t/preferences',NULL),(439,0,1619623691,NULL,'enabledevicedetection','1',NULL),(440,0,1619623691,NULL,'devicedetectregex','[]',NULL),(441,0,1619623691,'theme_boost','preset','default.scss',NULL),(442,0,1619623691,'theme_boost','presetfiles','',NULL),(443,0,1619623691,'theme_boost','backgroundimage','',NULL),(444,0,1619623691,'theme_boost','brandcolor','',NULL),(445,0,1619623691,'theme_boost','scsspre','',NULL),(446,0,1619623691,'theme_boost','scss','',NULL),(447,0,1619623691,'theme_classic','navbardark','0',NULL),(448,0,1619623691,'theme_classic','preset','default.scss',NULL),(449,0,1619623691,'theme_classic','presetfiles','',NULL),(450,0,1619623691,'theme_classic','backgroundimage','',NULL),(451,0,1619623691,'theme_classic','brandcolor','',NULL),(452,0,1619623691,'theme_classic','scsspre','',NULL),(453,0,1619623691,'theme_classic','scss','',NULL),(454,0,1619623691,'core_admin','logo','',NULL),(455,0,1619623691,'core_admin','logocompact','',NULL),(456,0,1619623691,'core_admin','coursecolor1','#81ecec',NULL),(457,0,1619623691,'core_admin','coursecolor2','#74b9ff',NULL),(458,0,1619623691,'core_admin','coursecolor3','#a29bfe',NULL),(459,0,1619623691,'core_admin','coursecolor4','#dfe6e9',NULL),(460,0,1619623691,'core_admin','coursecolor5','#00b894',NULL),(461,0,1619623691,'core_admin','coursecolor6','#0984e3',NULL),(462,0,1619623691,'core_admin','coursecolor7','#b2bec3',NULL),(463,0,1619623691,'core_admin','coursecolor8','#fdcb6e',NULL),(464,0,1619623691,'core_admin','coursecolor9','#fd79a8',NULL),(465,0,1619623691,'core_admin','coursecolor10','#6c5ce7',NULL),(466,0,1619623691,NULL,'calendartype','gregorian',NULL),(467,0,1619623691,NULL,'calendar_adminseesall','0',NULL),(468,0,1619623691,NULL,'calendar_site_timeformat','0',NULL),(469,0,1619623691,NULL,'calendar_startwday','1',NULL),(470,0,1619623691,NULL,'calendar_weekend','65',NULL),(471,0,1619623691,NULL,'calendar_lookahead','21',NULL),(472,0,1619623691,NULL,'calendar_maxevents','10',NULL),(473,0,1619623691,NULL,'enablecalendarexport','1',NULL),(474,0,1619623691,NULL,'calendar_customexport','1',NULL),(475,0,1619623691,NULL,'calendar_exportlookahead','365',NULL),(476,0,1619623691,NULL,'calendar_exportlookback','5',NULL),(477,0,1619623691,NULL,'calendar_exportsalt','I5exB8dsSVw3lwqBfUPJqCl9M9J0GO0vUP2rTdbKbNcwvY9V3LnLf39IxCpK',NULL),(478,0,1619623691,NULL,'calendar_showicalsource','1',NULL),(479,0,1619623691,NULL,'useblogassociations','1',NULL),(480,0,1619623691,NULL,'bloglevel','4',NULL),(481,0,1619623691,NULL,'useexternalblogs','1',NULL),(482,0,1619623691,NULL,'externalblogcrontime','86400',NULL),(483,0,1619623691,NULL,'maxexternalblogsperuser','1',NULL),(484,0,1619623691,NULL,'blogusecomments','1',NULL),(485,0,1619623691,NULL,'blogshowcommentscount','1',NULL),(486,0,1619623691,NULL,'defaulthomepage','1',NULL),(487,0,1619623691,NULL,'allowguestmymoodle','1',NULL),(488,0,1619623691,NULL,'navshowfullcoursenames','0',NULL),(489,0,1619623691,NULL,'navshowcategories','1',NULL),(490,0,1619623691,NULL,'navshowmycoursecategories','0',NULL),(491,0,1619623691,NULL,'navshowallcourses','0',NULL),(492,0,1619623691,NULL,'navsortmycoursessort','sortorder',NULL),(493,0,1619623691,NULL,'navsortmycourseshiddenlast','1',NULL),(494,0,1619623691,NULL,'navcourselimit','10',NULL),(495,0,1619623691,NULL,'usesitenameforsitepages','0',NULL),(496,0,1619623691,NULL,'linkadmincategories','1',NULL),(497,0,1619623691,NULL,'linkcoursesections','1',NULL),(498,0,1619623691,NULL,'navshowfrontpagemods','1',NULL),(499,0,1619623691,NULL,'navadduserpostslinks','1',NULL),(500,0,1619623691,NULL,'formatstringstriptags','1',NULL),(501,0,1619623691,NULL,'emoticons','[{\"text\":\":-)\",\"imagename\":\"s\\/smiley\",\"imagecomponent\":\"core\",\"altidentifier\":\"smiley\",\"altcomponent\":\"core_pix\"},{\"text\":\":)\",\"imagename\":\"s\\/smiley\",\"imagecomponent\":\"core\",\"altidentifier\":\"smiley\",\"altcomponent\":\"core_pix\"},{\"text\":\":-D\",\"imagename\":\"s\\/biggrin\",\"imagecomponent\":\"core\",\"altidentifier\":\"biggrin\",\"altcomponent\":\"core_pix\"},{\"text\":\";-)\",\"imagename\":\"s\\/wink\",\"imagecomponent\":\"core\",\"altidentifier\":\"wink\",\"altcomponent\":\"core_pix\"},{\"text\":\":-\\/\",\"imagename\":\"s\\/mixed\",\"imagecomponent\":\"core\",\"altidentifier\":\"mixed\",\"altcomponent\":\"core_pix\"},{\"text\":\"V-.\",\"imagename\":\"s\\/thoughtful\",\"imagecomponent\":\"core\",\"altidentifier\":\"thoughtful\",\"altcomponent\":\"core_pix\"},{\"text\":\":-P\",\"imagename\":\"s\\/tongueout\",\"imagecomponent\":\"core\",\"altidentifier\":\"tongueout\",\"altcomponent\":\"core_pix\"},{\"text\":\":-p\",\"imagename\":\"s\\/tongueout\",\"imagecomponent\":\"core\",\"altidentifier\":\"tongueout\",\"altcomponent\":\"core_pix\"},{\"text\":\"B-)\",\"imagename\":\"s\\/cool\",\"imagecomponent\":\"core\",\"altidentifier\":\"cool\",\"altcomponent\":\"core_pix\"},{\"text\":\"^-)\",\"imagename\":\"s\\/approve\",\"imagecomponent\":\"core\",\"altidentifier\":\"approve\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-)\",\"imagename\":\"s\\/wideeyes\",\"imagecomponent\":\"core\",\"altidentifier\":\"wideeyes\",\"altcomponent\":\"core_pix\"},{\"text\":\":o)\",\"imagename\":\"s\\/clown\",\"imagecomponent\":\"core\",\"altidentifier\":\"clown\",\"altcomponent\":\"core_pix\"},{\"text\":\":-(\",\"imagename\":\"s\\/sad\",\"imagecomponent\":\"core\",\"altidentifier\":\"sad\",\"altcomponent\":\"core_pix\"},{\"text\":\":(\",\"imagename\":\"s\\/sad\",\"imagecomponent\":\"core\",\"altidentifier\":\"sad\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-.\",\"imagename\":\"s\\/shy\",\"imagecomponent\":\"core\",\"altidentifier\":\"shy\",\"altcomponent\":\"core_pix\"},{\"text\":\":-I\",\"imagename\":\"s\\/blush\",\"imagecomponent\":\"core\",\"altidentifier\":\"blush\",\"altcomponent\":\"core_pix\"},{\"text\":\":-X\",\"imagename\":\"s\\/kiss\",\"imagecomponent\":\"core\",\"altidentifier\":\"kiss\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-o\",\"imagename\":\"s\\/surprise\",\"imagecomponent\":\"core\",\"altidentifier\":\"surprise\",\"altcomponent\":\"core_pix\"},{\"text\":\"P-|\",\"imagename\":\"s\\/blackeye\",\"imagecomponent\":\"core\",\"altidentifier\":\"blackeye\",\"altcomponent\":\"core_pix\"},{\"text\":\"8-[\",\"imagename\":\"s\\/angry\",\"imagecomponent\":\"core\",\"altidentifier\":\"angry\",\"altcomponent\":\"core_pix\"},{\"text\":\"(grr)\",\"imagename\":\"s\\/angry\",\"imagecomponent\":\"core\",\"altidentifier\":\"angry\",\"altcomponent\":\"core_pix\"},{\"text\":\"xx-P\",\"imagename\":\"s\\/dead\",\"imagecomponent\":\"core\",\"altidentifier\":\"dead\",\"altcomponent\":\"core_pix\"},{\"text\":\"|-.\",\"imagename\":\"s\\/sleepy\",\"imagecomponent\":\"core\",\"altidentifier\":\"sleepy\",\"altcomponent\":\"core_pix\"},{\"text\":\"}-]\",\"imagename\":\"s\\/evil\",\"imagecomponent\":\"core\",\"altidentifier\":\"evil\",\"altcomponent\":\"core_pix\"},{\"text\":\"(h)\",\"imagename\":\"s\\/heart\",\"imagecomponent\":\"core\",\"altidentifier\":\"heart\",\"altcomponent\":\"core_pix\"},{\"text\":\"(heart)\",\"imagename\":\"s\\/heart\",\"imagecomponent\":\"core\",\"altidentifier\":\"heart\",\"altcomponent\":\"core_pix\"},{\"text\":\"(y)\",\"imagename\":\"s\\/yes\",\"imagecomponent\":\"core\",\"altidentifier\":\"yes\",\"altcomponent\":\"core\"},{\"text\":\"(n)\",\"imagename\":\"s\\/no\",\"imagecomponent\":\"core\",\"altidentifier\":\"no\",\"altcomponent\":\"core\"},{\"text\":\"(martin)\",\"imagename\":\"s\\/martin\",\"imagecomponent\":\"core\",\"altidentifier\":\"martin\",\"altcomponent\":\"core_pix\"},{\"text\":\"( )\",\"imagename\":\"s\\/egg\",\"imagecomponent\":\"core\",\"altidentifier\":\"egg\",\"altcomponent\":\"core_pix\"}]',NULL),(502,0,1619623691,NULL,'docroot','https://docs.moodle.org',NULL),(503,0,1619623691,NULL,'doclang','',NULL),(504,0,1619623691,NULL,'doctonewwindow','0',NULL),(505,0,1619623691,NULL,'coursecontactduplicates','0',NULL),(506,0,1619623691,NULL,'courselistshortnames','0',NULL),(507,0,1619623691,NULL,'coursesperpage','20',NULL),(508,0,1619623691,NULL,'courseswithsummarieslimit','10',NULL),(509,0,1619623691,NULL,'courseoverviewfileslimit','1',NULL),(510,0,1619623691,NULL,'courseoverviewfilesext','.jpg,.gif,.png',NULL),(511,0,1619623691,NULL,'coursegraceperiodbefore','0',NULL),(512,0,1619623691,NULL,'coursegraceperiodafter','0',NULL),(513,0,1619623691,NULL,'useexternalyui','0',NULL),(514,0,1619623691,NULL,'yuicomboloading','1',NULL),(515,0,1619623691,NULL,'cachejs','1',NULL),(516,0,1619623691,NULL,'modchooserdefault','1',NULL),(517,0,1619623692,NULL,'additionalhtmlhead','',NULL),(518,0,1619623692,NULL,'additionalhtmltopofbody','',NULL),(519,0,1619623692,NULL,'additionalhtmlfooter','',NULL),(520,0,1619623692,NULL,'cachetemplates','1',NULL),(521,0,1619623692,NULL,'pathtophp','',NULL),(522,0,1619623692,NULL,'pathtodu','',NULL),(523,0,1619623692,NULL,'aspellpath','',NULL),(524,0,1619623692,NULL,'pathtodot','',NULL),(525,0,1619623692,NULL,'pathtogs','/usr/bin/gs',NULL),(526,0,1619623692,NULL,'pathtopython','',NULL),(527,0,1619623692,NULL,'supportname','Admin User',NULL),(528,0,1619623692,NULL,'supportemail','',NULL),(529,0,1619623692,NULL,'supportpage','',NULL),(530,0,1619623692,NULL,'dbsessions','0',NULL),(531,0,1619623692,NULL,'sessioncookie','',NULL),(532,0,1619623692,NULL,'sessioncookiepath','',NULL),(533,0,1619623692,NULL,'sessioncookiedomain','',NULL),(534,0,1619623692,NULL,'statsfirstrun','none',NULL),(535,0,1619623692,NULL,'statsmaxruntime','0',NULL),(536,0,1619623692,NULL,'statsruntimedays','31',NULL),(537,0,1619623692,NULL,'statsuserthreshold','0',NULL),(538,0,1619623692,NULL,'slasharguments','1',NULL),(539,0,1619623692,NULL,'getremoteaddrconf','3',NULL),(540,0,1619623692,NULL,'reverseproxyignore','',NULL),(541,0,1619623692,NULL,'proxyhost','',NULL),(542,0,1619623692,NULL,'proxyport','0',NULL),(543,0,1619623692,NULL,'proxytype','HTTP',NULL),(544,0,1619623692,NULL,'proxyuser','',NULL),(545,0,1619623692,NULL,'proxypassword','',NULL),(546,0,1619623692,NULL,'proxybypass','localhost, 127.0.0.1',NULL),(547,0,1619623692,NULL,'maintenance_enabled','0',NULL),(548,0,1619623692,NULL,'maintenance_message','',NULL),(549,0,1619623692,NULL,'deleteunconfirmed','168',NULL),(550,0,1619623692,NULL,'deleteincompleteusers','0',NULL),(551,0,1619623692,NULL,'disablegradehistory','0',NULL),(552,0,1619623692,NULL,'gradehistorylifetime','0',NULL),(553,0,1619623692,NULL,'tempdatafoldercleanup','168',NULL),(554,0,1619623692,NULL,'filescleanupperiod','86400',NULL),(555,0,1619623692,NULL,'extramemorylimit','512M',NULL),(556,0,1619623692,NULL,'maxtimelimit','0',NULL),(557,0,1619623692,NULL,'curlcache','120',NULL),(558,0,1619623692,NULL,'curltimeoutkbitrate','56',NULL),(559,0,1619623692,NULL,'cron_enabled','1',NULL),(560,0,1619623692,NULL,'task_scheduled_concurrency_limit','3',NULL),(561,0,1619623692,NULL,'task_scheduled_max_runtime','1800',NULL),(562,0,1619623692,NULL,'task_adhoc_concurrency_limit','3',NULL),(563,0,1619623692,NULL,'task_adhoc_max_runtime','1800',NULL),(564,0,1619623692,NULL,'task_logmode','1',NULL),(565,0,1619623692,NULL,'task_logtostdout','1',NULL),(566,0,1619623692,NULL,'task_logretention','2419200',NULL),(567,0,1619623692,NULL,'task_logretainruns','20',NULL),(568,0,1619623692,NULL,'smtphosts','',NULL),(569,0,1619623692,NULL,'smtpsecure','',NULL),(570,0,1619623692,NULL,'smtpauthtype','LOGIN',NULL),(571,0,1619623692,NULL,'smtpuser','',NULL),(572,0,1619623692,NULL,'smtppass','',NULL),(573,0,1619623692,NULL,'smtpmaxbulk','1',NULL),(574,0,1619623692,NULL,'noreplyaddress','noreply@learn.dev-defaults.derekmaxson.com',NULL),(575,0,1619623692,NULL,'allowedemaildomains','',NULL),(576,0,1619623692,NULL,'divertallemailsto','',NULL),(577,0,1619623692,NULL,'divertallemailsexcept','',NULL),(578,0,1619623692,NULL,'emaildkimselector','',NULL),(579,0,1619623692,NULL,'sitemailcharset','0',NULL),(580,0,1619623692,NULL,'allowusermailcharset','0',NULL),(581,0,1619623692,NULL,'allowattachments','1',NULL),(582,0,1619623692,NULL,'mailnewline','LF',NULL),(583,0,1619623692,NULL,'emailfromvia','1',NULL),(584,0,1619623692,NULL,'emailsubjectprefix','',NULL),(585,0,1619623692,NULL,'emailheaders','',NULL),(586,0,1619623692,NULL,'updateautocheck','1',NULL),(587,0,1619623692,NULL,'updateminmaturity','200',NULL),(588,0,1619623692,NULL,'updatenotifybuilds','0',NULL),(589,0,1619623692,NULL,'dndallowtextandlinks','0',NULL),(590,0,1619623692,NULL,'pathtosassc','',NULL),(591,0,1619623692,NULL,'contextlocking','0',NULL),(592,0,1619623692,NULL,'contextlockappliestoadmin','1',NULL),(593,0,1619623692,NULL,'forceclean','0',NULL),(594,0,1619623692,NULL,'enablecourserelativedates','0',NULL),(595,0,1619623692,NULL,'debug','0',NULL),(596,0,1619623692,NULL,'debugdisplay','0',NULL),(597,0,1619623692,NULL,'perfdebug','7',NULL),(598,0,1619623692,NULL,'debugstringids','0',NULL),(599,0,1619623692,NULL,'debugsqltrace','0',NULL),(600,0,1619623692,NULL,'debugvalidators','0',NULL),(601,0,1619623692,NULL,'debugpageinfo','0',NULL),(602,0,1619623692,NULL,'profilingenabled','0',NULL),(603,0,1619623692,NULL,'profilingincluded','',NULL),(604,0,1619623692,NULL,'profilingexcluded','',NULL),(605,0,1619623692,NULL,'profilingautofrec','0',NULL),(606,0,1619623692,NULL,'profilingallowme','0',NULL),(607,0,1619623692,NULL,'profilingallowall','0',NULL),(608,0,1619623692,NULL,'profilingslow','0',NULL),(609,0,1619623692,NULL,'profilinglifetime','1440',NULL),(610,0,1619623692,NULL,'profilingimportprefix','(I)',NULL),(611,0,1619623694,NULL,'calendar_exportsalt','QQWEEsBDItPik6yOcGggNmfCDolHtqABUyw7eoCJXInMGB7izbIE6t3kVpSq','I5exB8dsSVw3lwqBfUPJqCl9M9J0GO0vUP2rTdbKbNcwvY9V3LnLf39IxCpK'),(612,0,1619623710,'activitynames','filter_active','1',''),(613,0,1619623710,'displayh5p','filter_active','1',''),(614,0,1619623710,'emoticon','filter_active','1',''),(615,0,1619623710,'mathjaxloader','filter_active','1',''),(616,0,1619623710,'mediaplugin','filter_active','1',''),(617,0,1619623710,'urltolink','filter_active','1',''),(618,2,1619623789,NULL,'notloggedinroleid','6',NULL),(619,2,1619623789,NULL,'guestroleid','6',NULL),(620,2,1619623789,NULL,'defaultuserroleid','7',NULL),(621,2,1619623789,NULL,'creatornewroleid','3',NULL),(622,2,1619623789,NULL,'restorernewroleid','3',NULL),(623,2,1619623789,'tool_dataprivacy','contactdataprotectionofficer','0',NULL),(624,2,1619623789,'tool_dataprivacy','automaticdataexportapproval','0',NULL),(625,2,1619623789,'tool_dataprivacy','automaticdatadeletionapproval','0',NULL),(626,2,1619623789,'tool_dataprivacy','automaticdeletionrequests','1',NULL),(627,2,1619623789,'tool_dataprivacy','privacyrequestexpiry','604800',NULL),(628,2,1619623789,'tool_dataprivacy','requireallenddatesforuserdeletion','1',NULL),(629,2,1619623789,'tool_dataprivacy','showdataretentionsummary','1',NULL),(630,2,1619623789,'tool_log','exportlog','1',NULL),(631,2,1619623789,NULL,'sitepolicyhandler','',NULL),(632,2,1619623789,NULL,'gradebookroles','5',NULL),(633,2,1619623789,'analytics','logstore','logstore_standard',NULL),(634,2,1619623789,NULL,'h5plibraryhandler','h5plib_v124',NULL),(635,2,1619623790,NULL,'jabberhost','',NULL),(636,2,1619623790,NULL,'jabberserver','',NULL),(637,2,1619623790,NULL,'jabberusername','',NULL),(638,2,1619623790,NULL,'jabberpassword','',NULL),(639,2,1619623790,NULL,'jabberport','5222',NULL),(640,2,1619623790,NULL,'airnotifierurl','https://messages.moodle.net',NULL),(641,2,1619623790,NULL,'airnotifierport','443',NULL),(642,2,1619623790,NULL,'airnotifiermobileappname','com.moodle.moodlemobile',NULL),(643,2,1619623790,NULL,'airnotifierappname','commoodlemoodlemobile',NULL),(644,2,1619623790,NULL,'airnotifieraccesskey','',NULL),(645,2,1619623790,'assign','feedback_plugin_for_gradebook','assignfeedback_comments',NULL),(646,2,1619623790,'assign','showrecentsubmissions','0',NULL),(647,2,1619623790,'assign','submissionreceipts','1',NULL),(648,2,1619623790,'assign','submissionstatement','This submission is my own work, except where I have acknowledged the use of the works of other people.',NULL),(649,2,1619623790,'assign','submissionstatementteamsubmission','This submission is the work of my group, except where we have acknowledged the use of the works of other people.',NULL),(650,2,1619623790,'assign','submissionstatementteamsubmissionallsubmit','This submission is my own work as a group member, except where I have acknowledged the use of the works of other people.',NULL),(651,2,1619623790,'assign','maxperpage','-1',NULL),(652,2,1619623790,'assign','alwaysshowdescription','1',NULL),(653,2,1619623790,'assign','alwaysshowdescription_adv','',NULL),(654,2,1619623790,'assign','alwaysshowdescription_locked','',NULL),(655,2,1619623790,'assign','allowsubmissionsfromdate','0',NULL),(656,2,1619623790,'assign','allowsubmissionsfromdate_enabled','1',NULL),(657,2,1619623790,'assign','allowsubmissionsfromdate_adv','',NULL),(658,2,1619623790,'assign','duedate','604800',NULL),(659,2,1619623790,'assign','duedate_enabled','1',NULL),(660,2,1619623790,'assign','duedate_adv','',NULL),(661,2,1619623790,'assign','cutoffdate','1209600',NULL),(662,2,1619623790,'assign','cutoffdate_enabled','',NULL),(663,2,1619623790,'assign','cutoffdate_adv','',NULL),(664,2,1619623790,'assign','gradingduedate','1209600',NULL),(665,2,1619623790,'assign','gradingduedate_enabled','1',NULL),(666,2,1619623790,'assign','gradingduedate_adv','',NULL),(667,2,1619623790,'assign','submissiondrafts','0',NULL),(668,2,1619623790,'assign','submissiondrafts_adv','',NULL),(669,2,1619623790,'assign','submissiondrafts_locked','',NULL),(670,2,1619623790,'assign','requiresubmissionstatement','0',NULL),(671,2,1619623790,'assign','requiresubmissionstatement_adv','',NULL),(672,2,1619623790,'assign','requiresubmissionstatement_locked','',NULL),(673,2,1619623790,'assign','attemptreopenmethod','none',NULL),(674,2,1619623790,'assign','attemptreopenmethod_adv','',NULL),(675,2,1619623790,'assign','attemptreopenmethod_locked','',NULL),(676,2,1619623790,'assign','maxattempts','-1',NULL),(677,2,1619623790,'assign','maxattempts_adv','',NULL),(678,2,1619623790,'assign','maxattempts_locked','',NULL),(679,2,1619623790,'assign','teamsubmission','0',NULL),(680,2,1619623790,'assign','teamsubmission_adv','',NULL),(681,2,1619623790,'assign','teamsubmission_locked','',NULL),(682,2,1619623790,'assign','preventsubmissionnotingroup','0',NULL),(683,2,1619623790,'assign','preventsubmissionnotingroup_adv','',NULL),(684,2,1619623790,'assign','preventsubmissionnotingroup_locked','',NULL),(685,2,1619623790,'assign','requireallteammemberssubmit','0',NULL),(686,2,1619623790,'assign','requireallteammemberssubmit_adv','',NULL),(687,2,1619623790,'assign','requireallteammemberssubmit_locked','',NULL),(688,2,1619623790,'assign','teamsubmissiongroupingid','',NULL),(689,2,1619623790,'assign','teamsubmissiongroupingid_adv','',NULL),(690,2,1619623790,'assign','sendnotifications','0',NULL),(691,2,1619623790,'assign','sendnotifications_adv','',NULL),(692,2,1619623790,'assign','sendnotifications_locked','',NULL),(693,2,1619623790,'assign','sendlatenotifications','0',NULL),(694,2,1619623790,'assign','sendlatenotifications_adv','',NULL),(695,2,1619623790,'assign','sendlatenotifications_locked','',NULL),(696,2,1619623790,'assign','sendstudentnotifications','1',NULL),(697,2,1619623790,'assign','sendstudentnotifications_adv','',NULL),(698,2,1619623790,'assign','sendstudentnotifications_locked','',NULL),(699,2,1619623790,'assign','blindmarking','0',NULL),(700,2,1619623790,'assign','blindmarking_adv','',NULL),(701,2,1619623790,'assign','blindmarking_locked','',NULL),(702,2,1619623790,'assign','hidegrader','0',NULL),(703,2,1619623790,'assign','hidegrader_adv','',NULL),(704,2,1619623790,'assign','hidegrader_locked','',NULL),(705,2,1619623790,'assign','markingworkflow','0',NULL),(706,2,1619623790,'assign','markingworkflow_adv','',NULL),(707,2,1619623790,'assign','markingworkflow_locked','',NULL),(708,2,1619623790,'assign','markingallocation','0',NULL),(709,2,1619623790,'assign','markingallocation_adv','',NULL),(710,2,1619623790,'assign','markingallocation_locked','',NULL),(711,2,1619623790,'assignsubmission_file','default','1',NULL),(712,2,1619623790,'assignsubmission_file','maxfiles','20',NULL),(713,2,1619623790,'assignsubmission_file','filetypes','',NULL),(714,2,1619623790,'assignsubmission_file','maxbytes','0',NULL),(715,2,1619623790,'assignsubmission_onlinetext','default','0',NULL),(716,2,1619623790,'assignfeedback_comments','default','1',NULL),(717,2,1619623790,'assignfeedback_comments','inline','0',NULL),(718,2,1619623790,'assignfeedback_comments','inline_adv','',NULL),(719,2,1619623790,'assignfeedback_comments','inline_locked','',NULL),(720,2,1619623790,'assignfeedback_editpdf','default','1',NULL),(721,2,1619623790,'assignfeedback_editpdf','stamps','',NULL),(722,2,1619623790,'assignfeedback_file','default','0',NULL),(723,2,1619623790,'assignfeedback_offline','default','0',NULL),(724,2,1619623790,'book','numberingoptions','0,1,2,3',NULL),(725,2,1619623790,'book','navoptions','0,1,2',NULL),(726,2,1619623790,'book','numbering','1',NULL),(727,2,1619623790,'book','navstyle','1',NULL),(728,2,1619623790,NULL,'chat_method','ajax',NULL),(729,2,1619623790,NULL,'chat_refresh_userlist','10',NULL),(730,2,1619623790,NULL,'chat_old_ping','35',NULL),(731,2,1619623790,NULL,'chat_refresh_room','5',NULL),(732,2,1619623790,NULL,'chat_normal_updatemode','jsupdate',NULL),(733,2,1619623790,NULL,'chat_serverhost','learn.dev-defaults.derekmaxson.com',NULL),(734,2,1619623790,NULL,'chat_serverip','127.0.0.1',NULL),(735,2,1619623790,NULL,'chat_serverport','9111',NULL),(736,2,1619623790,NULL,'chat_servermax','100',NULL),(737,2,1619623790,NULL,'data_enablerssfeeds','0',NULL),(738,2,1619623790,NULL,'feedback_allowfullanonymous','0',NULL),(739,2,1619623790,'resource','framesize','130',NULL),(740,2,1619623790,'resource','displayoptions','0,1,4,5,6',NULL),(741,2,1619623790,'resource','printintro','1',NULL),(742,2,1619623790,'resource','display','0',NULL),(743,2,1619623790,'resource','showsize','0',NULL),(744,2,1619623790,'resource','showtype','0',NULL),(745,2,1619623790,'resource','showdate','0',NULL),(746,2,1619623790,'resource','popupwidth','620',NULL),(747,2,1619623790,'resource','popupheight','450',NULL),(748,2,1619623790,'resource','filterfiles','0',NULL),(749,2,1619623790,'folder','showexpanded','1',NULL),(750,2,1619623790,'folder','maxsizetodownload','0',NULL),(751,2,1619623790,NULL,'forum_displaymode','3',NULL),(752,2,1619623790,NULL,'forum_shortpost','300',NULL),(753,2,1619623790,NULL,'forum_longpost','600',NULL),(754,2,1619623790,NULL,'forum_manydiscussions','100',NULL),(755,2,1619623790,NULL,'forum_maxbytes','512000',NULL),(756,2,1619623790,NULL,'forum_maxattachments','9',NULL),(757,2,1619623790,NULL,'forum_subscription','0',NULL),(758,2,1619623790,NULL,'forum_trackingtype','1',NULL),(759,2,1619623790,NULL,'forum_trackreadposts','1',NULL),(760,2,1619623790,NULL,'forum_allowforcedreadtracking','0',NULL),(761,2,1619623790,NULL,'forum_oldpostdays','14',NULL),(762,2,1619623790,NULL,'forum_usermarksread','0',NULL),(763,2,1619623790,NULL,'forum_cleanreadtime','2',NULL),(764,2,1619623790,NULL,'digestmailtime','17',NULL),(765,2,1619623790,NULL,'forum_enablerssfeeds','0',NULL),(766,2,1619623790,NULL,'forum_enabletimedposts','1',NULL),(767,2,1619623790,NULL,'glossary_entbypage','10',NULL),(768,2,1619623790,NULL,'glossary_dupentries','0',NULL),(769,2,1619623790,NULL,'glossary_allowcomments','0',NULL),(770,2,1619623790,NULL,'glossary_linkbydefault','1',NULL),(771,2,1619623790,NULL,'glossary_defaultapproval','1',NULL),(772,2,1619623790,NULL,'glossary_enablerssfeeds','0',NULL),(773,2,1619623790,NULL,'glossary_linkentries','0',NULL),(774,2,1619623790,NULL,'glossary_casesensitive','0',NULL),(775,2,1619623790,NULL,'glossary_fullmatch','0',NULL),(776,2,1619623790,'imscp','keepold','1',NULL),(777,2,1619623790,'imscp','keepold_adv','',NULL),(778,2,1619623790,'label','dndmedia','1',NULL),(779,2,1619623790,'label','dndresizewidth','400',NULL),(780,2,1619623790,'label','dndresizeheight','400',NULL),(781,2,1619623790,'mod_lesson','mediafile','',NULL),(782,2,1619623790,'mod_lesson','mediafile_adv','1',NULL),(783,2,1619623790,'mod_lesson','mediawidth','640',NULL),(784,2,1619623790,'mod_lesson','mediaheight','480',NULL),(785,2,1619623790,'mod_lesson','mediaclose','0',NULL),(786,2,1619623790,'mod_lesson','progressbar','0',NULL),(787,2,1619623790,'mod_lesson','progressbar_adv','',NULL),(788,2,1619623790,'mod_lesson','ongoing','0',NULL),(789,2,1619623790,'mod_lesson','ongoing_adv','1',NULL),(790,2,1619623790,'mod_lesson','displayleftmenu','0',NULL),(791,2,1619623790,'mod_lesson','displayleftmenu_adv','',NULL),(792,2,1619623790,'mod_lesson','displayleftif','0',NULL),(793,2,1619623790,'mod_lesson','displayleftif_adv','1',NULL),(794,2,1619623790,'mod_lesson','slideshow','0',NULL),(795,2,1619623790,'mod_lesson','slideshow_adv','1',NULL),(796,2,1619623790,'mod_lesson','slideshowwidth','640',NULL),(797,2,1619623790,'mod_lesson','slideshowheight','480',NULL),(798,2,1619623790,'mod_lesson','slideshowbgcolor','#FFFFFF',NULL),(799,2,1619623790,'mod_lesson','maxanswers','5',NULL),(800,2,1619623790,'mod_lesson','maxanswers_adv','1',NULL),(801,2,1619623790,'mod_lesson','defaultfeedback','0',NULL),(802,2,1619623790,'mod_lesson','defaultfeedback_adv','1',NULL),(803,2,1619623790,'mod_lesson','activitylink','',NULL),(804,2,1619623790,'mod_lesson','activitylink_adv','1',NULL),(805,2,1619623790,'mod_lesson','timelimit','0',NULL),(806,2,1619623790,'mod_lesson','timelimit_adv','',NULL),(807,2,1619623790,'mod_lesson','password','0',NULL),(808,2,1619623790,'mod_lesson','password_adv','1',NULL),(809,2,1619623790,'mod_lesson','modattempts','0',NULL),(810,2,1619623790,'mod_lesson','modattempts_adv','',NULL),(811,2,1619623790,'mod_lesson','displayreview','0',NULL),(812,2,1619623790,'mod_lesson','displayreview_adv','',NULL),(813,2,1619623790,'mod_lesson','maximumnumberofattempts','1',NULL),(814,2,1619623790,'mod_lesson','maximumnumberofattempts_adv','',NULL),(815,2,1619623790,'mod_lesson','defaultnextpage','0',NULL),(816,2,1619623790,'mod_lesson','defaultnextpage_adv','1',NULL),(817,2,1619623790,'mod_lesson','numberofpagestoshow','1',NULL),(818,2,1619623790,'mod_lesson','numberofpagestoshow_adv','1',NULL),(819,2,1619623790,'mod_lesson','practice','0',NULL),(820,2,1619623790,'mod_lesson','practice_adv','',NULL),(821,2,1619623790,'mod_lesson','customscoring','1',NULL),(822,2,1619623790,'mod_lesson','customscoring_adv','1',NULL),(823,2,1619623790,'mod_lesson','retakesallowed','0',NULL),(824,2,1619623790,'mod_lesson','retakesallowed_adv','',NULL),(825,2,1619623790,'mod_lesson','handlingofretakes','0',NULL),(826,2,1619623790,'mod_lesson','handlingofretakes_adv','1',NULL),(827,2,1619623790,'mod_lesson','minimumnumberofquestions','0',NULL),(828,2,1619623790,'mod_lesson','minimumnumberofquestions_adv','1',NULL),(829,2,1619623790,'page','displayoptions','5',NULL),(830,2,1619623790,'page','printheading','1',NULL),(831,2,1619623790,'page','printintro','0',NULL),(832,2,1619623790,'page','printlastmodified','1',NULL),(833,2,1619623790,'page','display','5',NULL),(834,2,1619623790,'page','popupwidth','620',NULL),(835,2,1619623790,'page','popupheight','450',NULL),(836,2,1619623790,'quiz','timelimit','0',NULL),(837,2,1619623790,'quiz','timelimit_adv','',NULL),(838,2,1619623790,'quiz','overduehandling','autosubmit',NULL),(839,2,1619623790,'quiz','overduehandling_adv','',NULL),(840,2,1619623790,'quiz','graceperiod','86400',NULL),(841,2,1619623790,'quiz','graceperiod_adv','',NULL),(842,2,1619623790,'quiz','graceperiodmin','60',NULL),(843,2,1619623790,'quiz','attempts','0',NULL),(844,2,1619623790,'quiz','attempts_adv','',NULL),(845,2,1619623790,'quiz','grademethod','1',NULL),(846,2,1619623790,'quiz','grademethod_adv','',NULL),(847,2,1619623790,'quiz','maximumgrade','10',NULL),(848,2,1619623790,'quiz','questionsperpage','1',NULL),(849,2,1619623790,'quiz','questionsperpage_adv','',NULL),(850,2,1619623790,'quiz','navmethod','free',NULL),(851,2,1619623790,'quiz','navmethod_adv','1',NULL),(852,2,1619623790,'quiz','shuffleanswers','1',NULL),(853,2,1619623790,'quiz','shuffleanswers_adv','',NULL),(854,2,1619623790,'quiz','preferredbehaviour','deferredfeedback',NULL),(855,2,1619623790,'quiz','canredoquestions','0',NULL),(856,2,1619623790,'quiz','canredoquestions_adv','1',NULL),(857,2,1619623790,'quiz','attemptonlast','0',NULL),(858,2,1619623790,'quiz','attemptonlast_adv','1',NULL),(859,2,1619623790,'quiz','reviewattempt','69904',NULL),(860,2,1619623790,'quiz','reviewcorrectness','69904',NULL),(861,2,1619623790,'quiz','reviewmarks','69904',NULL),(862,2,1619623790,'quiz','reviewspecificfeedback','69904',NULL),(863,2,1619623790,'quiz','reviewgeneralfeedback','69904',NULL),(864,2,1619623790,'quiz','reviewrightanswer','69904',NULL),(865,2,1619623790,'quiz','reviewoverallfeedback','4368',NULL),(866,2,1619623790,'quiz','showuserpicture','0',NULL),(867,2,1619623790,'quiz','showuserpicture_adv','',NULL),(868,2,1619623790,'quiz','decimalpoints','2',NULL),(869,2,1619623790,'quiz','decimalpoints_adv','',NULL),(870,2,1619623790,'quiz','questiondecimalpoints','-1',NULL),(871,2,1619623790,'quiz','questiondecimalpoints_adv','',NULL),(872,2,1619623790,'quiz','showblocks','0',NULL),(873,2,1619623790,'quiz','showblocks_adv','1',NULL),(874,2,1619623790,'quiz','quizpassword','',NULL),(875,2,1619623790,'quiz','quizpassword_adv','',NULL),(876,2,1619623790,'quiz','quizpassword_required','',NULL),(877,2,1619623790,'quiz','subnet','',NULL),(878,2,1619623790,'quiz','subnet_adv','1',NULL),(879,2,1619623790,'quiz','delay1','0',NULL),(880,2,1619623790,'quiz','delay1_adv','1',NULL),(881,2,1619623790,'quiz','delay2','0',NULL),(882,2,1619623790,'quiz','delay2_adv','1',NULL),(883,2,1619623790,'quiz','browsersecurity','-',NULL),(884,2,1619623790,'quiz','browsersecurity_adv','1',NULL),(885,2,1619623790,'quiz','initialnumfeedbacks','2',NULL),(886,2,1619623790,'quiz','autosaveperiod','60',NULL),(887,2,1619623790,'quizaccess_seb','autoreconfigureseb','1',NULL),(888,2,1619623790,'quizaccess_seb','showseblinks','seb,http',NULL),(889,2,1619623790,'quizaccess_seb','downloadlink','https://safeexambrowser.org/download_en.html',NULL),(890,2,1619623790,'quizaccess_seb','quizpasswordrequired','0',NULL),(891,2,1619623790,'quizaccess_seb','displayblocksbeforestart','0',NULL),(892,2,1619623790,'quizaccess_seb','displayblockswhenfinished','1',NULL),(893,2,1619623790,'scorm','displaycoursestructure','0',NULL),(894,2,1619623790,'scorm','displaycoursestructure_adv','',NULL),(895,2,1619623790,'scorm','popup','0',NULL),(896,2,1619623790,'scorm','popup_adv','',NULL),(897,2,1619623790,'scorm','displayactivityname','1',NULL),(898,2,1619623790,'scorm','framewidth','100',NULL),(899,2,1619623790,'scorm','framewidth_adv','1',NULL),(900,2,1619623790,'scorm','frameheight','500',NULL),(901,2,1619623790,'scorm','frameheight_adv','1',NULL),(902,2,1619623790,'scorm','winoptgrp_adv','1',NULL),(903,2,1619623790,'scorm','scrollbars','0',NULL),(904,2,1619623790,'scorm','directories','0',NULL),(905,2,1619623790,'scorm','location','0',NULL),(906,2,1619623790,'scorm','menubar','0',NULL),(907,2,1619623790,'scorm','toolbar','0',NULL),(908,2,1619623790,'scorm','status','0',NULL),(909,2,1619623790,'scorm','skipview','0',NULL),(910,2,1619623790,'scorm','skipview_adv','1',NULL),(911,2,1619623790,'scorm','hidebrowse','0',NULL),(912,2,1619623790,'scorm','hidebrowse_adv','1',NULL),(913,2,1619623790,'scorm','hidetoc','0',NULL),(914,2,1619623790,'scorm','hidetoc_adv','1',NULL),(915,2,1619623791,'scorm','nav','1',NULL),(916,2,1619623791,'scorm','nav_adv','1',NULL),(917,2,1619623791,'scorm','navpositionleft','-100',NULL),(918,2,1619623791,'scorm','navpositionleft_adv','1',NULL),(919,2,1619623791,'scorm','navpositiontop','-100',NULL),(920,2,1619623791,'scorm','navpositiontop_adv','1',NULL),(921,2,1619623791,'scorm','collapsetocwinsize','767',NULL),(922,2,1619623791,'scorm','collapsetocwinsize_adv','1',NULL),(923,2,1619623791,'scorm','displayattemptstatus','1',NULL),(924,2,1619623791,'scorm','displayattemptstatus_adv','',NULL),(925,2,1619623791,'scorm','grademethod','1',NULL),(926,2,1619623791,'scorm','maxgrade','100',NULL),(927,2,1619623791,'scorm','maxattempt','0',NULL),(928,2,1619623791,'scorm','whatgrade','0',NULL),(929,2,1619623791,'scorm','forcecompleted','0',NULL),(930,2,1619623791,'scorm','forcenewattempt','0',NULL),(931,2,1619623791,'scorm','autocommit','0',NULL),(932,2,1619623791,'scorm','masteryoverride','1',NULL),(933,2,1619623791,'scorm','lastattemptlock','0',NULL),(934,2,1619623791,'scorm','auto','0',NULL),(935,2,1619623791,'scorm','updatefreq','0',NULL),(936,2,1619623791,'scorm','scormstandard','0',NULL),(937,2,1619623791,'scorm','allowtypeexternal','0',NULL),(938,2,1619623791,'scorm','allowtypelocalsync','0',NULL),(939,2,1619623791,'scorm','allowtypeexternalaicc','0',NULL),(940,2,1619623791,'scorm','allowaicchacp','0',NULL),(941,2,1619623791,'scorm','aicchacptimeout','30',NULL),(942,2,1619623791,'scorm','aicchacpkeepsessiondata','1',NULL),(943,2,1619623791,'scorm','aiccuserid','1',NULL),(944,2,1619623791,'scorm','forcejavascript','1',NULL),(945,2,1619623791,'scorm','allowapidebug','0',NULL),(946,2,1619623791,'scorm','apidebugmask','.*',NULL),(947,2,1619623791,'scorm','protectpackagedownloads','0',NULL),(948,2,1619623791,'url','framesize','130',NULL),(949,2,1619623791,'url','secretphrase','',NULL),(950,2,1619623791,'url','rolesinparams','0',NULL),(951,2,1619623791,'url','displayoptions','0,1,5,6',NULL),(952,2,1619623791,'url','printintro','1',NULL),(953,2,1619623791,'url','display','0',NULL),(954,2,1619623791,'url','popupwidth','620',NULL),(955,2,1619623791,'url','popupheight','450',NULL),(956,2,1619623791,'workshop','grade','80',NULL),(957,2,1619623791,'workshop','gradinggrade','20',NULL),(958,2,1619623791,'workshop','gradedecimals','0',NULL),(959,2,1619623791,'workshop','maxbytes','0',NULL),(960,2,1619623791,'workshop','strategy','accumulative',NULL),(961,2,1619623791,'workshop','examplesmode','0',NULL),(962,2,1619623791,'workshopallocation_random','numofreviews','5',NULL),(963,2,1619623791,'workshopform_numerrors','grade0','No',NULL),(964,2,1619623791,'workshopform_numerrors','grade1','Yes',NULL),(965,2,1619623791,'workshopeval_best','comparison','5',NULL),(966,2,1619623791,'tool_recyclebin','coursebinenable','1',NULL),(967,2,1619623791,'tool_recyclebin','coursebinexpiry','604800',NULL),(968,2,1619623791,'tool_recyclebin','categorybinenable','1',NULL),(969,2,1619623791,'tool_recyclebin','categorybinexpiry','604800',NULL),(970,2,1619623791,'tool_recyclebin','autohide','1',NULL),(971,2,1619623791,'antivirus_clamav','runningmethod','commandline',NULL),(972,2,1619623791,'antivirus_clamav','pathtoclam','',NULL),(973,2,1619623791,'antivirus_clamav','pathtounixsocket','',NULL),(974,2,1619623791,'antivirus_clamav','tcpsockethost','',NULL),(975,2,1619623791,'antivirus_clamav','tcpsocketport','3310',NULL),(976,2,1619623791,'antivirus_clamav','clamfailureonupload','donothing',NULL),(977,2,1619623791,'antivirus_clamav','tries','1',NULL),(978,2,1619623791,'auth_cas','field_map_firstname','',NULL),(979,2,1619623791,'auth_cas','field_updatelocal_firstname','oncreate',NULL),(980,2,1619623791,'auth_cas','field_updateremote_firstname','0',NULL),(981,2,1619623791,'auth_cas','field_lock_firstname','unlocked',NULL),(982,2,1619623791,'auth_cas','field_map_lastname','',NULL),(983,2,1619623791,'auth_cas','field_updatelocal_lastname','oncreate',NULL),(984,2,1619623791,'auth_cas','field_updateremote_lastname','0',NULL),(985,2,1619623791,'auth_cas','field_lock_lastname','unlocked',NULL),(986,2,1619623791,'auth_cas','field_map_email','',NULL),(987,2,1619623791,'auth_cas','field_updatelocal_email','oncreate',NULL),(988,2,1619623791,'auth_cas','field_updateremote_email','0',NULL),(989,2,1619623791,'auth_cas','field_lock_email','unlocked',NULL),(990,2,1619623791,'auth_cas','field_map_city','',NULL),(991,2,1619623791,'auth_cas','field_updatelocal_city','oncreate',NULL),(992,2,1619623791,'auth_cas','field_updateremote_city','0',NULL),(993,2,1619623791,'auth_cas','field_lock_city','unlocked',NULL),(994,2,1619623791,'auth_cas','field_map_country','',NULL),(995,2,1619623791,'auth_cas','field_updatelocal_country','oncreate',NULL),(996,2,1619623791,'auth_cas','field_updateremote_country','0',NULL),(997,2,1619623791,'auth_cas','field_lock_country','unlocked',NULL),(998,2,1619623791,'auth_cas','field_map_lang','',NULL),(999,2,1619623791,'auth_cas','field_updatelocal_lang','oncreate',NULL),(1000,2,1619623791,'auth_cas','field_updateremote_lang','0',NULL),(1001,2,1619623791,'auth_cas','field_lock_lang','unlocked',NULL),(1002,2,1619623791,'auth_cas','field_map_description','',NULL),(1003,2,1619623791,'auth_cas','field_updatelocal_description','oncreate',NULL),(1004,2,1619623791,'auth_cas','field_updateremote_description','0',NULL),(1005,2,1619623791,'auth_cas','field_lock_description','unlocked',NULL),(1006,2,1619623791,'auth_cas','field_map_url','',NULL),(1007,2,1619623791,'auth_cas','field_updatelocal_url','oncreate',NULL),(1008,2,1619623791,'auth_cas','field_updateremote_url','0',NULL),(1009,2,1619623791,'auth_cas','field_lock_url','unlocked',NULL),(1010,2,1619623791,'auth_cas','field_map_idnumber','',NULL),(1011,2,1619623791,'auth_cas','field_updatelocal_idnumber','oncreate',NULL),(1012,2,1619623791,'auth_cas','field_updateremote_idnumber','0',NULL),(1013,2,1619623791,'auth_cas','field_lock_idnumber','unlocked',NULL),(1014,2,1619623791,'auth_cas','field_map_institution','',NULL),(1015,2,1619623791,'auth_cas','field_updatelocal_institution','oncreate',NULL),(1016,2,1619623791,'auth_cas','field_updateremote_institution','0',NULL),(1017,2,1619623791,'auth_cas','field_lock_institution','unlocked',NULL),(1018,2,1619623791,'auth_cas','field_map_department','',NULL),(1019,2,1619623791,'auth_cas','field_updatelocal_department','oncreate',NULL),(1020,2,1619623791,'auth_cas','field_updateremote_department','0',NULL),(1021,2,1619623791,'auth_cas','field_lock_department','unlocked',NULL),(1022,2,1619623791,'auth_cas','field_map_phone1','',NULL),(1023,2,1619623791,'auth_cas','field_updatelocal_phone1','oncreate',NULL),(1024,2,1619623791,'auth_cas','field_updateremote_phone1','0',NULL),(1025,2,1619623791,'auth_cas','field_lock_phone1','unlocked',NULL),(1026,2,1619623791,'auth_cas','field_map_phone2','',NULL),(1027,2,1619623791,'auth_cas','field_updatelocal_phone2','oncreate',NULL),(1028,2,1619623791,'auth_cas','field_updateremote_phone2','0',NULL),(1029,2,1619623791,'auth_cas','field_lock_phone2','unlocked',NULL),(1030,2,1619623791,'auth_cas','field_map_address','',NULL),(1031,2,1619623791,'auth_cas','field_updatelocal_address','oncreate',NULL),(1032,2,1619623791,'auth_cas','field_updateremote_address','0',NULL),(1033,2,1619623791,'auth_cas','field_lock_address','unlocked',NULL),(1034,2,1619623791,'auth_cas','field_map_firstnamephonetic','',NULL),(1035,2,1619623791,'auth_cas','field_updatelocal_firstnamephonetic','oncreate',NULL),(1036,2,1619623791,'auth_cas','field_updateremote_firstnamephonetic','0',NULL),(1037,2,1619623791,'auth_cas','field_lock_firstnamephonetic','unlocked',NULL),(1038,2,1619623791,'auth_cas','field_map_lastnamephonetic','',NULL),(1039,2,1619623791,'auth_cas','field_updatelocal_lastnamephonetic','oncreate',NULL),(1040,2,1619623791,'auth_cas','field_updateremote_lastnamephonetic','0',NULL),(1041,2,1619623791,'auth_cas','field_lock_lastnamephonetic','unlocked',NULL),(1042,2,1619623791,'auth_cas','field_map_middlename','',NULL),(1043,2,1619623791,'auth_cas','field_updatelocal_middlename','oncreate',NULL),(1044,2,1619623791,'auth_cas','field_updateremote_middlename','0',NULL),(1045,2,1619623791,'auth_cas','field_lock_middlename','unlocked',NULL),(1046,2,1619623791,'auth_cas','field_map_alternatename','',NULL),(1047,2,1619623791,'auth_cas','field_updatelocal_alternatename','oncreate',NULL),(1048,2,1619623791,'auth_cas','field_updateremote_alternatename','0',NULL),(1049,2,1619623791,'auth_cas','field_lock_alternatename','unlocked',NULL),(1050,2,1619623791,'auth_email','recaptcha','0',NULL),(1051,2,1619623791,'auth_email','field_lock_firstname','unlocked',NULL),(1052,2,1619623791,'auth_email','field_lock_lastname','unlocked',NULL),(1053,2,1619623791,'auth_email','field_lock_email','unlocked',NULL),(1054,2,1619623791,'auth_email','field_lock_city','unlocked',NULL),(1055,2,1619623791,'auth_email','field_lock_country','unlocked',NULL),(1056,2,1619623791,'auth_email','field_lock_lang','unlocked',NULL),(1057,2,1619623791,'auth_email','field_lock_description','unlocked',NULL),(1058,2,1619623791,'auth_email','field_lock_url','unlocked',NULL),(1059,2,1619623791,'auth_email','field_lock_idnumber','unlocked',NULL),(1060,2,1619623791,'auth_email','field_lock_institution','unlocked',NULL),(1061,2,1619623791,'auth_email','field_lock_department','unlocked',NULL),(1062,2,1619623791,'auth_email','field_lock_phone1','unlocked',NULL),(1063,2,1619623791,'auth_email','field_lock_phone2','unlocked',NULL),(1064,2,1619623791,'auth_email','field_lock_address','unlocked',NULL),(1065,2,1619623791,'auth_email','field_lock_firstnamephonetic','unlocked',NULL),(1066,2,1619623791,'auth_email','field_lock_lastnamephonetic','unlocked',NULL),(1067,2,1619623791,'auth_email','field_lock_middlename','unlocked',NULL),(1068,2,1619623791,'auth_email','field_lock_alternatename','unlocked',NULL),(1069,2,1619623791,'auth_db','host','127.0.0.1',NULL),(1070,2,1619623791,'auth_db','type','mysqli',NULL),(1071,2,1619623791,'auth_db','sybasequoting','0',NULL),(1072,2,1619623791,'auth_db','name','',NULL),(1073,2,1619623791,'auth_db','user','',NULL),(1074,2,1619623791,'auth_db','pass','',NULL),(1075,2,1619623791,'auth_db','table','',NULL),(1076,2,1619623791,'auth_db','fielduser','',NULL),(1077,2,1619623791,'auth_db','fieldpass','',NULL),(1078,2,1619623791,'auth_db','passtype','plaintext',NULL),(1079,2,1619623791,'auth_db','extencoding','utf-8',NULL),(1080,2,1619623791,'auth_db','setupsql','',NULL),(1081,2,1619623791,'auth_db','debugauthdb','0',NULL),(1082,2,1619623791,'auth_db','changepasswordurl','',NULL),(1083,2,1619623791,'auth_db','removeuser','0',NULL),(1084,2,1619623791,'auth_db','updateusers','0',NULL),(1085,2,1619623791,'auth_db','field_map_firstname','',NULL),(1086,2,1619623791,'auth_db','field_updatelocal_firstname','oncreate',NULL),(1087,2,1619623791,'auth_db','field_updateremote_firstname','0',NULL),(1088,2,1619623791,'auth_db','field_lock_firstname','unlocked',NULL),(1089,2,1619623791,'auth_db','field_map_lastname','',NULL),(1090,2,1619623791,'auth_db','field_updatelocal_lastname','oncreate',NULL),(1091,2,1619623791,'auth_db','field_updateremote_lastname','0',NULL),(1092,2,1619623791,'auth_db','field_lock_lastname','unlocked',NULL),(1093,2,1619623791,'auth_db','field_map_email','',NULL),(1094,2,1619623791,'auth_db','field_updatelocal_email','oncreate',NULL),(1095,2,1619623791,'auth_db','field_updateremote_email','0',NULL),(1096,2,1619623791,'auth_db','field_lock_email','unlocked',NULL),(1097,2,1619623791,'auth_db','field_map_city','',NULL),(1098,2,1619623791,'auth_db','field_updatelocal_city','oncreate',NULL),(1099,2,1619623791,'auth_db','field_updateremote_city','0',NULL),(1100,2,1619623791,'auth_db','field_lock_city','unlocked',NULL),(1101,2,1619623791,'auth_db','field_map_country','',NULL),(1102,2,1619623791,'auth_db','field_updatelocal_country','oncreate',NULL),(1103,2,1619623791,'auth_db','field_updateremote_country','0',NULL),(1104,2,1619623791,'auth_db','field_lock_country','unlocked',NULL),(1105,2,1619623791,'auth_db','field_map_lang','',NULL),(1106,2,1619623791,'auth_db','field_updatelocal_lang','oncreate',NULL),(1107,2,1619623791,'auth_db','field_updateremote_lang','0',NULL),(1108,2,1619623791,'auth_db','field_lock_lang','unlocked',NULL),(1109,2,1619623791,'auth_db','field_map_description','',NULL),(1110,2,1619623791,'auth_db','field_updatelocal_description','oncreate',NULL),(1111,2,1619623791,'auth_db','field_updateremote_description','0',NULL),(1112,2,1619623791,'auth_db','field_lock_description','unlocked',NULL),(1113,2,1619623791,'auth_db','field_map_url','',NULL),(1114,2,1619623791,'auth_db','field_updatelocal_url','oncreate',NULL),(1115,2,1619623791,'auth_db','field_updateremote_url','0',NULL),(1116,2,1619623791,'auth_db','field_lock_url','unlocked',NULL),(1117,2,1619623791,'auth_db','field_map_idnumber','',NULL),(1118,2,1619623791,'auth_db','field_updatelocal_idnumber','oncreate',NULL),(1119,2,1619623791,'auth_db','field_updateremote_idnumber','0',NULL),(1120,2,1619623791,'auth_db','field_lock_idnumber','unlocked',NULL),(1121,2,1619623791,'auth_db','field_map_institution','',NULL),(1122,2,1619623791,'auth_db','field_updatelocal_institution','oncreate',NULL),(1123,2,1619623791,'auth_db','field_updateremote_institution','0',NULL),(1124,2,1619623791,'auth_db','field_lock_institution','unlocked',NULL),(1125,2,1619623791,'auth_db','field_map_department','',NULL),(1126,2,1619623791,'auth_db','field_updatelocal_department','oncreate',NULL),(1127,2,1619623791,'auth_db','field_updateremote_department','0',NULL),(1128,2,1619623791,'auth_db','field_lock_department','unlocked',NULL),(1129,2,1619623791,'auth_db','field_map_phone1','',NULL),(1130,2,1619623791,'auth_db','field_updatelocal_phone1','oncreate',NULL),(1131,2,1619623791,'auth_db','field_updateremote_phone1','0',NULL),(1132,2,1619623791,'auth_db','field_lock_phone1','unlocked',NULL),(1133,2,1619623791,'auth_db','field_map_phone2','',NULL),(1134,2,1619623791,'auth_db','field_updatelocal_phone2','oncreate',NULL),(1135,2,1619623791,'auth_db','field_updateremote_phone2','0',NULL),(1136,2,1619623791,'auth_db','field_lock_phone2','unlocked',NULL),(1137,2,1619623791,'auth_db','field_map_address','',NULL),(1138,2,1619623791,'auth_db','field_updatelocal_address','oncreate',NULL),(1139,2,1619623791,'auth_db','field_updateremote_address','0',NULL),(1140,2,1619623791,'auth_db','field_lock_address','unlocked',NULL),(1141,2,1619623791,'auth_db','field_map_firstnamephonetic','',NULL),(1142,2,1619623791,'auth_db','field_updatelocal_firstnamephonetic','oncreate',NULL),(1143,2,1619623791,'auth_db','field_updateremote_firstnamephonetic','0',NULL),(1144,2,1619623791,'auth_db','field_lock_firstnamephonetic','unlocked',NULL),(1145,2,1619623791,'auth_db','field_map_lastnamephonetic','',NULL),(1146,2,1619623791,'auth_db','field_updatelocal_lastnamephonetic','oncreate',NULL),(1147,2,1619623791,'auth_db','field_updateremote_lastnamephonetic','0',NULL),(1148,2,1619623791,'auth_db','field_lock_lastnamephonetic','unlocked',NULL),(1149,2,1619623791,'auth_db','field_map_middlename','',NULL),(1150,2,1619623791,'auth_db','field_updatelocal_middlename','oncreate',NULL),(1151,2,1619623791,'auth_db','field_updateremote_middlename','0',NULL),(1152,2,1619623791,'auth_db','field_lock_middlename','unlocked',NULL),(1153,2,1619623791,'auth_db','field_map_alternatename','',NULL),(1154,2,1619623791,'auth_db','field_updatelocal_alternatename','oncreate',NULL),(1155,2,1619623791,'auth_db','field_updateremote_alternatename','0',NULL),(1156,2,1619623791,'auth_db','field_lock_alternatename','unlocked',NULL),(1157,2,1619623791,'auth_ldap','field_map_firstname','',NULL),(1158,2,1619623791,'auth_ldap','field_updatelocal_firstname','oncreate',NULL),(1159,2,1619623791,'auth_ldap','field_updateremote_firstname','0',NULL),(1160,2,1619623791,'auth_ldap','field_lock_firstname','unlocked',NULL),(1161,2,1619623791,'auth_ldap','field_map_lastname','',NULL),(1162,2,1619623791,'auth_ldap','field_updatelocal_lastname','oncreate',NULL),(1163,2,1619623791,'auth_ldap','field_updateremote_lastname','0',NULL),(1164,2,1619623791,'auth_ldap','field_lock_lastname','unlocked',NULL),(1165,2,1619623791,'auth_ldap','field_map_email','',NULL),(1166,2,1619623791,'auth_ldap','field_updatelocal_email','oncreate',NULL),(1167,2,1619623791,'auth_ldap','field_updateremote_email','0',NULL),(1168,2,1619623791,'auth_ldap','field_lock_email','unlocked',NULL),(1169,2,1619623791,'auth_ldap','field_map_city','',NULL),(1170,2,1619623791,'auth_ldap','field_updatelocal_city','oncreate',NULL),(1171,2,1619623791,'auth_ldap','field_updateremote_city','0',NULL),(1172,2,1619623791,'auth_ldap','field_lock_city','unlocked',NULL),(1173,2,1619623791,'auth_ldap','field_map_country','',NULL),(1174,2,1619623791,'auth_ldap','field_updatelocal_country','oncreate',NULL),(1175,2,1619623791,'auth_ldap','field_updateremote_country','0',NULL),(1176,2,1619623791,'auth_ldap','field_lock_country','unlocked',NULL),(1177,2,1619623791,'auth_ldap','field_map_lang','',NULL),(1178,2,1619623791,'auth_ldap','field_updatelocal_lang','oncreate',NULL),(1179,2,1619623791,'auth_ldap','field_updateremote_lang','0',NULL),(1180,2,1619623791,'auth_ldap','field_lock_lang','unlocked',NULL),(1181,2,1619623791,'auth_ldap','field_map_description','',NULL),(1182,2,1619623791,'auth_ldap','field_updatelocal_description','oncreate',NULL),(1183,2,1619623791,'auth_ldap','field_updateremote_description','0',NULL),(1184,2,1619623791,'auth_ldap','field_lock_description','unlocked',NULL),(1185,2,1619623791,'auth_ldap','field_map_url','',NULL),(1186,2,1619623791,'auth_ldap','field_updatelocal_url','oncreate',NULL),(1187,2,1619623791,'auth_ldap','field_updateremote_url','0',NULL),(1188,2,1619623791,'auth_ldap','field_lock_url','unlocked',NULL),(1189,2,1619623791,'auth_ldap','field_map_idnumber','',NULL),(1190,2,1619623791,'auth_ldap','field_updatelocal_idnumber','oncreate',NULL),(1191,2,1619623791,'auth_ldap','field_updateremote_idnumber','0',NULL),(1192,2,1619623791,'auth_ldap','field_lock_idnumber','unlocked',NULL),(1193,2,1619623791,'auth_ldap','field_map_institution','',NULL),(1194,2,1619623791,'auth_ldap','field_updatelocal_institution','oncreate',NULL),(1195,2,1619623791,'auth_ldap','field_updateremote_institution','0',NULL),(1196,2,1619623791,'auth_ldap','field_lock_institution','unlocked',NULL),(1197,2,1619623791,'auth_ldap','field_map_department','',NULL),(1198,2,1619623791,'auth_ldap','field_updatelocal_department','oncreate',NULL),(1199,2,1619623791,'auth_ldap','field_updateremote_department','0',NULL),(1200,2,1619623791,'auth_ldap','field_lock_department','unlocked',NULL),(1201,2,1619623791,'auth_ldap','field_map_phone1','',NULL),(1202,2,1619623791,'auth_ldap','field_updatelocal_phone1','oncreate',NULL),(1203,2,1619623791,'auth_ldap','field_updateremote_phone1','0',NULL),(1204,2,1619623791,'auth_ldap','field_lock_phone1','unlocked',NULL),(1205,2,1619623791,'auth_ldap','field_map_phone2','',NULL),(1206,2,1619623791,'auth_ldap','field_updatelocal_phone2','oncreate',NULL),(1207,2,1619623791,'auth_ldap','field_updateremote_phone2','0',NULL),(1208,2,1619623791,'auth_ldap','field_lock_phone2','unlocked',NULL),(1209,2,1619623791,'auth_ldap','field_map_address','',NULL),(1210,2,1619623791,'auth_ldap','field_updatelocal_address','oncreate',NULL),(1211,2,1619623791,'auth_ldap','field_updateremote_address','0',NULL),(1212,2,1619623791,'auth_ldap','field_lock_address','unlocked',NULL),(1213,2,1619623791,'auth_ldap','field_map_firstnamephonetic','',NULL),(1214,2,1619623791,'auth_ldap','field_updatelocal_firstnamephonetic','oncreate',NULL),(1215,2,1619623792,'auth_ldap','field_updateremote_firstnamephonetic','0',NULL),(1216,2,1619623792,'auth_ldap','field_lock_firstnamephonetic','unlocked',NULL),(1217,2,1619623792,'auth_ldap','field_map_lastnamephonetic','',NULL),(1218,2,1619623792,'auth_ldap','field_updatelocal_lastnamephonetic','oncreate',NULL),(1219,2,1619623792,'auth_ldap','field_updateremote_lastnamephonetic','0',NULL),(1220,2,1619623792,'auth_ldap','field_lock_lastnamephonetic','unlocked',NULL),(1221,2,1619623792,'auth_ldap','field_map_middlename','',NULL),(1222,2,1619623792,'auth_ldap','field_updatelocal_middlename','oncreate',NULL),(1223,2,1619623792,'auth_ldap','field_updateremote_middlename','0',NULL),(1224,2,1619623792,'auth_ldap','field_lock_middlename','unlocked',NULL),(1225,2,1619623792,'auth_ldap','field_map_alternatename','',NULL),(1226,2,1619623792,'auth_ldap','field_updatelocal_alternatename','oncreate',NULL),(1227,2,1619623792,'auth_ldap','field_updateremote_alternatename','0',NULL),(1228,2,1619623792,'auth_ldap','field_lock_alternatename','unlocked',NULL),(1229,2,1619623792,'auth_manual','expiration','0',NULL),(1230,2,1619623792,'auth_manual','expirationtime','30',NULL),(1231,2,1619623792,'auth_manual','expiration_warning','0',NULL),(1232,2,1619623792,'auth_manual','field_lock_firstname','unlocked',NULL),(1233,2,1619623792,'auth_manual','field_lock_lastname','unlocked',NULL),(1234,2,1619623792,'auth_manual','field_lock_email','unlocked',NULL),(1235,2,1619623792,'auth_manual','field_lock_city','unlocked',NULL),(1236,2,1619623792,'auth_manual','field_lock_country','unlocked',NULL),(1237,2,1619623792,'auth_manual','field_lock_lang','unlocked',NULL),(1238,2,1619623792,'auth_manual','field_lock_description','unlocked',NULL),(1239,2,1619623792,'auth_manual','field_lock_url','unlocked',NULL),(1240,2,1619623792,'auth_manual','field_lock_idnumber','unlocked',NULL),(1241,2,1619623792,'auth_manual','field_lock_institution','unlocked',NULL),(1242,2,1619623792,'auth_manual','field_lock_department','unlocked',NULL),(1243,2,1619623792,'auth_manual','field_lock_phone1','unlocked',NULL),(1244,2,1619623792,'auth_manual','field_lock_phone2','unlocked',NULL),(1245,2,1619623792,'auth_manual','field_lock_address','unlocked',NULL),(1246,2,1619623792,'auth_manual','field_lock_firstnamephonetic','unlocked',NULL),(1247,2,1619623792,'auth_manual','field_lock_lastnamephonetic','unlocked',NULL),(1248,2,1619623792,'auth_manual','field_lock_middlename','unlocked',NULL),(1249,2,1619623792,'auth_manual','field_lock_alternatename','unlocked',NULL),(1250,2,1619623792,'auth_mnet','rpc_negotiation_timeout','30',NULL),(1251,2,1619623792,'auth_none','field_lock_firstname','unlocked',NULL),(1252,2,1619623792,'auth_none','field_lock_lastname','unlocked',NULL),(1253,2,1619623792,'auth_none','field_lock_email','unlocked',NULL),(1254,2,1619623792,'auth_none','field_lock_city','unlocked',NULL),(1255,2,1619623792,'auth_none','field_lock_country','unlocked',NULL),(1256,2,1619623792,'auth_none','field_lock_lang','unlocked',NULL),(1257,2,1619623792,'auth_none','field_lock_description','unlocked',NULL),(1258,2,1619623792,'auth_none','field_lock_url','unlocked',NULL),(1259,2,1619623792,'auth_none','field_lock_idnumber','unlocked',NULL),(1260,2,1619623792,'auth_none','field_lock_institution','unlocked',NULL),(1261,2,1619623792,'auth_none','field_lock_department','unlocked',NULL),(1262,2,1619623792,'auth_none','field_lock_phone1','unlocked',NULL),(1263,2,1619623792,'auth_none','field_lock_phone2','unlocked',NULL),(1264,2,1619623792,'auth_none','field_lock_address','unlocked',NULL),(1265,2,1619623792,'auth_none','field_lock_firstnamephonetic','unlocked',NULL),(1266,2,1619623792,'auth_none','field_lock_lastnamephonetic','unlocked',NULL),(1267,2,1619623792,'auth_none','field_lock_middlename','unlocked',NULL),(1268,2,1619623792,'auth_none','field_lock_alternatename','unlocked',NULL),(1269,2,1619623792,'auth_oauth2','field_lock_firstname','unlocked',NULL),(1270,2,1619623792,'auth_oauth2','field_lock_lastname','unlocked',NULL),(1271,2,1619623792,'auth_oauth2','field_lock_email','unlocked',NULL),(1272,2,1619623792,'auth_oauth2','field_lock_city','unlocked',NULL),(1273,2,1619623792,'auth_oauth2','field_lock_country','unlocked',NULL),(1274,2,1619623792,'auth_oauth2','field_lock_lang','unlocked',NULL),(1275,2,1619623792,'auth_oauth2','field_lock_description','unlocked',NULL),(1276,2,1619623792,'auth_oauth2','field_lock_url','unlocked',NULL),(1277,2,1619623792,'auth_oauth2','field_lock_idnumber','unlocked',NULL),(1278,2,1619623792,'auth_oauth2','field_lock_institution','unlocked',NULL),(1279,2,1619623792,'auth_oauth2','field_lock_department','unlocked',NULL),(1280,2,1619623792,'auth_oauth2','field_lock_phone1','unlocked',NULL),(1281,2,1619623792,'auth_oauth2','field_lock_phone2','unlocked',NULL),(1282,2,1619623792,'auth_oauth2','field_lock_address','unlocked',NULL),(1283,2,1619623792,'auth_oauth2','field_lock_firstnamephonetic','unlocked',NULL),(1284,2,1619623792,'auth_oauth2','field_lock_lastnamephonetic','unlocked',NULL),(1285,2,1619623792,'auth_oauth2','field_lock_middlename','unlocked',NULL),(1286,2,1619623792,'auth_oauth2','field_lock_alternatename','unlocked',NULL),(1287,2,1619623792,'auth_shibboleth','user_attribute','',NULL),(1288,2,1619623792,'auth_shibboleth','convert_data','',NULL),(1289,2,1619623792,'auth_shibboleth','alt_login','off',NULL),(1290,2,1619623792,'auth_shibboleth','organization_selection','urn:mace:organization1:providerID, Example Organization 1\n https://another.idp-id.com/shibboleth, Other Example Organization, /Shibboleth.sso/DS/SWITCHaai\n urn:mace:organization2:providerID, Example Organization 2, /Shibboleth.sso/WAYF/SWITCHaai',NULL),(1291,2,1619623792,'auth_shibboleth','logout_handler','',NULL),(1292,2,1619623792,'auth_shibboleth','logout_return_url','',NULL),(1293,2,1619623792,'auth_shibboleth','login_name','Shibboleth Login',NULL),(1294,2,1619623792,'auth_shibboleth','auth_logo','',NULL),(1295,2,1619623792,'auth_shibboleth','auth_instructions','Use the Shibboleth login to get access via Shibboleth, if your institution supports it. Otherwise, use the normal login form shown here.',NULL),(1296,2,1619623792,'auth_shibboleth','changepasswordurl','',NULL),(1297,2,1619623792,'auth_shibboleth','field_map_firstname','',NULL),(1298,2,1619623792,'auth_shibboleth','field_updatelocal_firstname','oncreate',NULL),(1299,2,1619623792,'auth_shibboleth','field_lock_firstname','unlocked',NULL),(1300,2,1619623792,'auth_shibboleth','field_map_lastname','',NULL),(1301,2,1619623792,'auth_shibboleth','field_updatelocal_lastname','oncreate',NULL),(1302,2,1619623792,'auth_shibboleth','field_lock_lastname','unlocked',NULL),(1303,2,1619623792,'auth_shibboleth','field_map_email','',NULL),(1304,2,1619623792,'auth_shibboleth','field_updatelocal_email','oncreate',NULL),(1305,2,1619623792,'auth_shibboleth','field_lock_email','unlocked',NULL),(1306,2,1619623792,'auth_shibboleth','field_map_city','',NULL),(1307,2,1619623792,'auth_shibboleth','field_updatelocal_city','oncreate',NULL),(1308,2,1619623792,'auth_shibboleth','field_lock_city','unlocked',NULL),(1309,2,1619623792,'auth_shibboleth','field_map_country','',NULL),(1310,2,1619623792,'auth_shibboleth','field_updatelocal_country','oncreate',NULL),(1311,2,1619623792,'auth_shibboleth','field_lock_country','unlocked',NULL),(1312,2,1619623792,'auth_shibboleth','field_map_lang','',NULL),(1313,2,1619623792,'auth_shibboleth','field_updatelocal_lang','oncreate',NULL),(1314,2,1619623792,'auth_shibboleth','field_lock_lang','unlocked',NULL),(1315,2,1619623792,'auth_shibboleth','field_map_description','',NULL),(1316,2,1619623792,'auth_shibboleth','field_updatelocal_description','oncreate',NULL),(1317,2,1619623792,'auth_shibboleth','field_lock_description','unlocked',NULL),(1318,2,1619623792,'auth_shibboleth','field_map_url','',NULL),(1319,2,1619623792,'auth_shibboleth','field_updatelocal_url','oncreate',NULL),(1320,2,1619623792,'auth_shibboleth','field_lock_url','unlocked',NULL),(1321,2,1619623792,'auth_shibboleth','field_map_idnumber','',NULL),(1322,2,1619623792,'auth_shibboleth','field_updatelocal_idnumber','oncreate',NULL),(1323,2,1619623792,'auth_shibboleth','field_lock_idnumber','unlocked',NULL),(1324,2,1619623792,'auth_shibboleth','field_map_institution','',NULL),(1325,2,1619623792,'auth_shibboleth','field_updatelocal_institution','oncreate',NULL),(1326,2,1619623792,'auth_shibboleth','field_lock_institution','unlocked',NULL),(1327,2,1619623792,'auth_shibboleth','field_map_department','',NULL),(1328,2,1619623792,'auth_shibboleth','field_updatelocal_department','oncreate',NULL),(1329,2,1619623792,'auth_shibboleth','field_lock_department','unlocked',NULL),(1330,2,1619623792,'auth_shibboleth','field_map_phone1','',NULL),(1331,2,1619623792,'auth_shibboleth','field_updatelocal_phone1','oncreate',NULL),(1332,2,1619623792,'auth_shibboleth','field_lock_phone1','unlocked',NULL),(1333,2,1619623792,'auth_shibboleth','field_map_phone2','',NULL),(1334,2,1619623792,'auth_shibboleth','field_updatelocal_phone2','oncreate',NULL),(1335,2,1619623792,'auth_shibboleth','field_lock_phone2','unlocked',NULL),(1336,2,1619623792,'auth_shibboleth','field_map_address','',NULL),(1337,2,1619623792,'auth_shibboleth','field_updatelocal_address','oncreate',NULL),(1338,2,1619623792,'auth_shibboleth','field_lock_address','unlocked',NULL),(1339,2,1619623792,'auth_shibboleth','field_map_firstnamephonetic','',NULL),(1340,2,1619623792,'auth_shibboleth','field_updatelocal_firstnamephonetic','oncreate',NULL),(1341,2,1619623792,'auth_shibboleth','field_lock_firstnamephonetic','unlocked',NULL),(1342,2,1619623792,'auth_shibboleth','field_map_lastnamephonetic','',NULL),(1343,2,1619623792,'auth_shibboleth','field_updatelocal_lastnamephonetic','oncreate',NULL),(1344,2,1619623792,'auth_shibboleth','field_lock_lastnamephonetic','unlocked',NULL),(1345,2,1619623792,'auth_shibboleth','field_map_middlename','',NULL),(1346,2,1619623792,'auth_shibboleth','field_updatelocal_middlename','oncreate',NULL),(1347,2,1619623792,'auth_shibboleth','field_lock_middlename','unlocked',NULL),(1348,2,1619623792,'auth_shibboleth','field_map_alternatename','',NULL),(1349,2,1619623792,'auth_shibboleth','field_updatelocal_alternatename','oncreate',NULL),(1350,2,1619623792,'auth_shibboleth','field_lock_alternatename','unlocked',NULL),(1351,2,1619623792,'block_activity_results','config_showbest','3',NULL),(1352,2,1619623792,'block_activity_results','config_showbest_locked','',NULL),(1353,2,1619623792,'block_activity_results','config_showworst','0',NULL),(1354,2,1619623792,'block_activity_results','config_showworst_locked','',NULL),(1355,2,1619623792,'block_activity_results','config_usegroups','0',NULL),(1356,2,1619623792,'block_activity_results','config_usegroups_locked','',NULL),(1357,2,1619623792,'block_activity_results','config_nameformat','1',NULL),(1358,2,1619623792,'block_activity_results','config_nameformat_locked','',NULL),(1359,2,1619623792,'block_activity_results','config_gradeformat','1',NULL),(1360,2,1619623792,'block_activity_results','config_gradeformat_locked','',NULL),(1361,2,1619623792,'block_activity_results','config_decimalpoints','2',NULL),(1362,2,1619623792,'block_activity_results','config_decimalpoints_locked','',NULL),(1363,2,1619623792,'block_myoverview','displaycategories','1',NULL),(1364,2,1619623792,'block_myoverview','layouts','card,list,summary',NULL),(1365,2,1619623792,'block_myoverview','displaygroupingallincludinghidden','0',NULL),(1366,2,1619623792,'block_myoverview','displaygroupingall','1',NULL),(1367,2,1619623792,'block_myoverview','displaygroupinginprogress','1',NULL),(1368,2,1619623792,'block_myoverview','displaygroupingpast','1',NULL),(1369,2,1619623792,'block_myoverview','displaygroupingfuture','1',NULL),(1370,2,1619623792,'block_myoverview','displaygroupingcustomfield','0',NULL),(1371,2,1619623792,'block_myoverview','customfiltergrouping','',NULL),(1372,2,1619623792,'block_myoverview','displaygroupingfavourites','1',NULL),(1373,2,1619623792,'block_myoverview','displaygroupinghidden','1',NULL),(1374,2,1619623792,NULL,'block_course_list_adminview','all',NULL),(1375,2,1619623792,NULL,'block_course_list_hideallcourseslink','0',NULL),(1376,2,1619623792,NULL,'block_html_allowcssclasses','0',NULL),(1377,2,1619623792,NULL,'block_online_users_timetosee','5',NULL),(1378,2,1619623792,NULL,'block_online_users_onlinestatushiding','1',NULL),(1379,2,1619623792,'block_recentlyaccessedcourses','displaycategories','1',NULL),(1380,2,1619623792,NULL,'block_rss_client_num_entries','5',NULL),(1381,2,1619623792,NULL,'block_rss_client_timeout','30',NULL),(1382,2,1619623792,'block_section_links','numsections1','22',NULL),(1383,2,1619623792,'block_section_links','incby1','2',NULL),(1384,2,1619623792,'block_section_links','numsections2','40',NULL),(1385,2,1619623792,'block_section_links','incby2','5',NULL),(1386,2,1619623792,'block_starredcourses','displaycategories','1',NULL),(1387,2,1619623792,'block_tag_youtube','apikey','',NULL),(1388,2,1619623792,'format_singleactivity','activitytype','forum',NULL),(1389,2,1619623792,'fileconverter_googledrive','issuerid','',NULL),(1390,2,1619623792,NULL,'pathtounoconv','/usr/bin/unoconv',NULL),(1391,2,1619623792,'enrol_cohort','roleid','5',NULL),(1392,2,1619623792,'enrol_cohort','unenrolaction','0',NULL),(1393,2,1619623792,'enrol_meta','nosyncroleids','',NULL),(1394,2,1619623792,'enrol_meta','syncall','1',NULL),(1395,2,1619623792,'enrol_meta','unenrolaction','3',NULL),(1396,2,1619623792,'enrol_meta','coursesort','sortorder',NULL),(1397,2,1619623792,'enrol_fee','expiredaction','3',NULL),(1398,2,1619623792,'enrol_fee','status','1',NULL),(1399,2,1619623792,'enrol_fee','cost','0',NULL),(1400,2,1619623792,'enrol_fee','currency','USD',NULL),(1401,2,1619623792,'enrol_fee','roleid','5',NULL),(1402,2,1619623792,'enrol_fee','enrolperiod','0',NULL),(1403,2,1619623792,'enrol_database','dbtype','',NULL),(1404,2,1619623792,'enrol_database','dbhost','localhost',NULL),(1405,2,1619623792,'enrol_database','dbuser','',NULL),(1406,2,1619623792,'enrol_database','dbpass','',NULL),(1407,2,1619623792,'enrol_database','dbname','',NULL),(1408,2,1619623792,'enrol_database','dbencoding','utf-8',NULL),(1409,2,1619623792,'enrol_database','dbsetupsql','',NULL),(1410,2,1619623792,'enrol_database','dbsybasequoting','0',NULL),(1411,2,1619623792,'enrol_database','debugdb','0',NULL),(1412,2,1619623792,'enrol_database','localcoursefield','idnumber',NULL),(1413,2,1619623792,'enrol_database','localuserfield','idnumber',NULL),(1414,2,1619623792,'enrol_database','localrolefield','shortname',NULL),(1415,2,1619623792,'enrol_database','localcategoryfield','id',NULL),(1416,2,1619623792,'enrol_database','remoteenroltable','',NULL),(1417,2,1619623792,'enrol_database','remotecoursefield','',NULL),(1418,2,1619623792,'enrol_database','remoteuserfield','',NULL),(1419,2,1619623792,'enrol_database','remoterolefield','',NULL),(1420,2,1619623792,'enrol_database','remoteotheruserfield','',NULL),(1421,2,1619623792,'enrol_database','defaultrole','5',NULL),(1422,2,1619623792,'enrol_database','ignorehiddencourses','0',NULL),(1423,2,1619623792,'enrol_database','unenrolaction','0',NULL),(1424,2,1619623792,'enrol_database','newcoursetable','',NULL),(1425,2,1619623792,'enrol_database','newcoursefullname','fullname',NULL),(1426,2,1619623792,'enrol_database','newcourseshortname','shortname',NULL),(1427,2,1619623792,'enrol_database','newcourseidnumber','idnumber',NULL),(1428,2,1619623792,'enrol_database','newcoursecategory','',NULL),(1429,2,1619623792,'enrol_database','defaultcategory','1',NULL),(1430,2,1619623792,'enrol_database','templatecourse','',NULL),(1431,2,1619623792,'enrol_flatfile','location','',NULL),(1432,2,1619623792,'enrol_flatfile','encoding','UTF-8',NULL),(1433,2,1619623792,'enrol_flatfile','mailstudents','0',NULL),(1434,2,1619623792,'enrol_flatfile','mailteachers','0',NULL),(1435,2,1619623792,'enrol_flatfile','mailadmins','0',NULL),(1436,2,1619623792,'enrol_flatfile','unenrolaction','3',NULL),(1437,2,1619623792,'enrol_flatfile','expiredaction','3',NULL),(1438,2,1619623792,'enrol_guest','requirepassword','0',NULL),(1439,2,1619623792,'enrol_guest','usepasswordpolicy','0',NULL),(1440,2,1619623792,'enrol_guest','showhint','0',NULL),(1441,2,1619623792,'enrol_guest','defaultenrol','1',NULL),(1442,2,1619623792,'enrol_guest','status','1',NULL),(1443,2,1619623792,'enrol_guest','status_adv','',NULL),(1444,2,1619623792,'enrol_imsenterprise','imsfilelocation','',NULL),(1445,2,1619623792,'enrol_imsenterprise','logtolocation','',NULL),(1446,2,1619623792,'enrol_imsenterprise','mailadmins','0',NULL),(1447,2,1619623792,'enrol_imsenterprise','createnewusers','0',NULL),(1448,2,1619623792,'enrol_imsenterprise','imsupdateusers','0',NULL),(1449,2,1619623792,'enrol_imsenterprise','imsdeleteusers','0',NULL),(1450,2,1619623792,'enrol_imsenterprise','fixcaseusernames','0',NULL),(1451,2,1619623792,'enrol_imsenterprise','fixcasepersonalnames','0',NULL),(1452,2,1619623792,'enrol_imsenterprise','imssourcedidfallback','0',NULL),(1453,2,1619623792,'enrol_imsenterprise','imsrolemap01','5',NULL),(1454,2,1619623792,'enrol_imsenterprise','imsrolemap02','3',NULL),(1455,2,1619623792,'enrol_imsenterprise','imsrolemap03','3',NULL),(1456,2,1619623792,'enrol_imsenterprise','imsrolemap04','5',NULL),(1457,2,1619623792,'enrol_imsenterprise','imsrolemap05','0',NULL),(1458,2,1619623792,'enrol_imsenterprise','imsrolemap06','4',NULL),(1459,2,1619623792,'enrol_imsenterprise','imsrolemap07','0',NULL),(1460,2,1619623792,'enrol_imsenterprise','imsrolemap08','4',NULL),(1461,2,1619623792,'enrol_imsenterprise','truncatecoursecodes','0',NULL),(1462,2,1619623792,'enrol_imsenterprise','createnewcourses','0',NULL),(1463,2,1619623792,'enrol_imsenterprise','updatecourses','0',NULL),(1464,2,1619623792,'enrol_imsenterprise','createnewcategories','0',NULL),(1465,2,1619623792,'enrol_imsenterprise','nestedcategories','0',NULL),(1466,2,1619623792,'enrol_imsenterprise','categoryidnumber','0',NULL),(1467,2,1619623792,'enrol_imsenterprise','categoryseparator','',NULL),(1468,2,1619623792,'enrol_imsenterprise','imsunenrol','0',NULL),(1469,2,1619623792,'enrol_imsenterprise','imscoursemapshortname','coursecode',NULL),(1470,2,1619623792,'enrol_imsenterprise','imscoursemapfullname','short',NULL),(1471,2,1619623792,'enrol_imsenterprise','imscoursemapsummary','ignore',NULL),(1472,2,1619623792,'enrol_imsenterprise','imsrestricttarget','',NULL),(1473,2,1619623792,'enrol_imsenterprise','imscapitafix','0',NULL),(1474,2,1619623792,'enrol_manual','expiredaction','1',NULL),(1475,2,1619623792,'enrol_manual','expirynotifyhour','6',NULL),(1476,2,1619623792,'enrol_manual','defaultenrol','1',NULL),(1477,2,1619623792,'enrol_manual','status','0',NULL),(1478,2,1619623792,'enrol_manual','roleid','5',NULL),(1479,2,1619623792,'enrol_manual','enrolstart','4',NULL),(1480,2,1619623792,'enrol_manual','enrolperiod','0',NULL),(1481,2,1619623792,'enrol_manual','expirynotify','0',NULL),(1482,2,1619623792,'enrol_manual','expirythreshold','86400',NULL),(1483,2,1619623792,'enrol_mnet','roleid','5',NULL),(1484,2,1619623792,'enrol_mnet','roleid_adv','1',NULL),(1485,2,1619623792,'enrol_paypal','paypalbusiness','',NULL),(1486,2,1619623792,'enrol_paypal','mailstudents','0',NULL),(1487,2,1619623792,'enrol_paypal','mailteachers','0',NULL),(1488,2,1619623792,'enrol_paypal','mailadmins','0',NULL),(1489,2,1619623792,'enrol_paypal','expiredaction','3',NULL),(1490,2,1619623792,'enrol_paypal','status','1',NULL),(1491,2,1619623792,'enrol_paypal','cost','0',NULL),(1492,2,1619623792,'enrol_paypal','currency','USD',NULL),(1493,2,1619623792,'enrol_paypal','roleid','5',NULL),(1494,2,1619623792,'enrol_paypal','enrolperiod','0',NULL),(1495,2,1619623792,'enrol_lti','emaildisplay','2',NULL),(1496,2,1619623792,'enrol_lti','city','',NULL),(1497,2,1619623792,'enrol_lti','country','',NULL),(1498,2,1619623792,'enrol_lti','timezone','99',NULL),(1499,2,1619623792,'enrol_lti','lang','en',NULL),(1500,2,1619623792,'enrol_lti','institution','',NULL),(1501,2,1619623792,'enrol_self','requirepassword','0',NULL),(1502,2,1619623792,'enrol_self','usepasswordpolicy','0',NULL),(1503,2,1619623792,'enrol_self','showhint','0',NULL),(1504,2,1619623792,'enrol_self','expiredaction','1',NULL),(1505,2,1619623792,'enrol_self','expirynotifyhour','6',NULL),(1506,2,1619623792,'enrol_self','defaultenrol','1',NULL),(1507,2,1619623792,'enrol_self','status','1',NULL),(1508,2,1619623792,'enrol_self','newenrols','1',NULL),(1509,2,1619623792,'enrol_self','groupkey','0',NULL),(1510,2,1619623792,'enrol_self','roleid','5',NULL),(1511,2,1619623792,'enrol_self','enrolperiod','0',NULL),(1512,2,1619623792,'enrol_self','expirynotify','0',NULL),(1513,2,1619623792,'enrol_self','expirythreshold','86400',NULL),(1514,2,1619623792,'enrol_self','longtimenosee','0',NULL),(1515,2,1619623792,'enrol_self','maxenrolled','0',NULL),(1516,2,1619623792,'enrol_self','sendcoursewelcomemessage','1',NULL),(1517,2,1619623792,'filter_urltolink','formats','1,4,0',NULL),(1518,2,1619623792,'filter_urltolink','embedimages','1',NULL),(1519,2,1619623792,'filter_emoticon','formats','1,4,0',NULL),(1520,2,1619623792,'filter_displayh5p','allowedsources','',NULL),(1521,2,1619623792,'filter_mathjaxloader','httpsurl','https://cdn.jsdelivr.net/npm/mathjax@2.7.8/MathJax.js',NULL),(1522,2,1619623792,'filter_mathjaxloader','texfiltercompatibility','0',NULL),(1523,2,1619623792,'filter_mathjaxloader','mathjaxconfig','\nMathJax.Hub.Config({\n config: [\"Accessible.js\", \"Safe.js\"],\n errorSettings: { message: [\"!\"] },\n skipStartupTypeset: true,\n messageStyle: \"none\"\n});\n',NULL),(1524,2,1619623792,'filter_mathjaxloader','additionaldelimiters','',NULL),(1525,2,1619623792,NULL,'filter_multilang_force_old','0',NULL),(1526,2,1619623792,'filter_tex','latexpreamble','\\usepackage[latin1]{inputenc}\n\\usepackage{amsmath}\n\\usepackage{amsfonts}\n\\RequirePackage{amsmath,amssymb,latexsym}\n',NULL),(1527,2,1619623792,'filter_tex','latexbackground','#FFFFFF',NULL),(1528,2,1619623792,'filter_tex','density','120',NULL),(1529,2,1619623792,'filter_tex','pathlatex','/usr/bin/latex',NULL),(1530,2,1619623792,'filter_tex','pathdvips','/usr/bin/dvips',NULL),(1531,2,1619623792,'filter_tex','pathconvert','/usr/bin/convert',NULL),(1532,2,1619623792,'filter_tex','pathdvisvgm','/usr/bin/dvisvgm',NULL),(1533,2,1619623792,'filter_tex','pathmimetex','',NULL),(1534,2,1619623793,'filter_tex','convertformat','gif',NULL),(1535,2,1619623793,NULL,'filter_censor_badwords','',NULL),(1536,2,1619623793,'local_chat_attachments','messaging_support_email','',NULL),(1537,2,1619623793,'local_chat_attachments','messaging_url','',NULL),(1538,2,1619623793,'local_chat_attachments','messaging_token','',NULL),(1539,2,1619623793,'logstore_database','dbdriver','',NULL),(1540,2,1619623793,'logstore_database','dbhost','',NULL),(1541,2,1619623793,'logstore_database','dbuser','',NULL),(1542,2,1619623793,'logstore_database','dbpass','',NULL),(1543,2,1619623793,'logstore_database','dbname','',NULL),(1544,2,1619623793,'logstore_database','dbtable','',NULL),(1545,2,1619623793,'logstore_database','dbpersist','0',NULL),(1546,2,1619623793,'logstore_database','dbsocket','',NULL),(1547,2,1619623793,'logstore_database','dbport','',NULL),(1548,2,1619623793,'logstore_database','dbschema','',NULL),(1549,2,1619623793,'logstore_database','dbcollation','',NULL),(1550,2,1619623793,'logstore_database','dbhandlesoptions','0',NULL),(1551,2,1619623793,'logstore_database','buffersize','50',NULL),(1552,2,1619623793,'logstore_database','jsonformat','1',NULL),(1553,2,1619623793,'logstore_database','logguests','0',NULL),(1554,2,1619623793,'logstore_database','includelevels','1,2,0',NULL),(1555,2,1619623793,'logstore_database','includeactions','c,r,u,d',NULL),(1556,2,1619623793,'logstore_legacy','loglegacy','0',NULL),(1557,2,1619623793,NULL,'logguests','1',NULL),(1558,2,1619623793,NULL,'loglifetime','0',NULL),(1559,2,1619623793,'logstore_standard','logguests','1',NULL),(1560,2,1619623793,'logstore_standard','jsonformat','1',NULL),(1561,2,1619623793,'logstore_standard','loglifetime','0',NULL),(1562,2,1619623793,'logstore_standard','buffersize','50',NULL),(1563,2,1619623793,'mlbackend_python','useserver','0',NULL),(1564,2,1619623793,'mlbackend_python','host','',NULL),(1565,2,1619623793,'mlbackend_python','port','0',NULL),(1566,2,1619623793,'mlbackend_python','secure','0',NULL),(1567,2,1619623793,'mlbackend_python','username','default',NULL),(1568,2,1619623793,'mlbackend_python','password','',NULL),(1569,2,1619623793,'media_videojs','videoextensions','html_video,media_source,.f4v,.flv',NULL),(1570,2,1619623793,'media_videojs','audioextensions','html_audio',NULL),(1571,2,1619623793,'media_videojs','rtmp','0',NULL),(1572,2,1619623793,'media_videojs','useflash','0',NULL),(1573,2,1619623793,'media_videojs','youtube','1',NULL),(1574,2,1619623793,'media_videojs','videocssclass','video-js',NULL),(1575,2,1619623793,'media_videojs','audiocssclass','video-js',NULL),(1576,2,1619623793,'media_videojs','limitsize','1',NULL),(1577,2,1619623793,'paygw_paypal','surcharge','0',NULL),(1578,2,1619623793,'qtype_multichoice','answerhowmany','1',NULL),(1579,2,1619623793,'qtype_multichoice','shuffleanswers','1',NULL),(1580,2,1619623793,'qtype_multichoice','answernumbering','abc',NULL),(1581,2,1619623793,'editor_atto','toolbar','collapse = collapse\nstyle1 = title, bold, italic\nlist = unorderedlist, orderedlist, indent\nlinks = link\nfiles = emojipicker, image, media, recordrtc, managefiles, h5p\nstyle2 = underline, strike, subscript, superscript\nalign = align\ninsert = equation, charmap, table, clear\nundo = undo\naccessibility = accessibilitychecker, accessibilityhelper\nother = html',NULL),(1582,2,1619623793,'editor_atto','autosavefrequency','60',NULL),(1583,2,1619623793,'atto_collapse','showgroups','5',NULL),(1584,2,1619623793,'atto_equation','librarygroup1','\n\\cdot\n\\times\n\\ast\n\\div\n\\diamond\n\\pm\n\\mp\n\\oplus\n\\ominus\n\\otimes\n\\oslash\n\\odot\n\\circ\n\\bullet\n\\asymp\n\\equiv\n\\subseteq\n\\supseteq\n\\leq\n\\geq\n\\preceq\n\\succeq\n\\sim\n\\simeq\n\\approx\n\\subset\n\\supset\n\\ll\n\\gg\n\\prec\n\\succ\n\\infty\n\\in\n\\ni\n\\forall\n\\exists\n\\neq\n',NULL),(1585,2,1619623793,'atto_equation','librarygroup2','\n\\leftarrow\n\\rightarrow\n\\uparrow\n\\downarrow\n\\leftrightarrow\n\\nearrow\n\\searrow\n\\swarrow\n\\nwarrow\n\\Leftarrow\n\\Rightarrow\n\\Uparrow\n\\Downarrow\n\\Leftrightarrow\n',NULL),(1586,2,1619623793,'atto_equation','librarygroup3','\n\\alpha\n\\beta\n\\gamma\n\\delta\n\\epsilon\n\\zeta\n\\eta\n\\theta\n\\iota\n\\kappa\n\\lambda\n\\mu\n\\nu\n\\xi\n\\pi\n\\rho\n\\sigma\n\\tau\n\\upsilon\n\\phi\n\\chi\n\\psi\n\\omega\n\\Gamma\n\\Delta\n\\Theta\n\\Lambda\n\\Xi\n\\Pi\n\\Sigma\n\\Upsilon\n\\Phi\n\\Psi\n\\Omega\n',NULL),(1587,2,1619623793,'atto_equation','librarygroup4','\n\\sum{a,b}\n\\sqrt[a]{b+c}\n\\int_{a}^{b}{c}\n\\iint_{a}^{b}{c}\n\\iiint_{a}^{b}{c}\n\\oint{a}\n(a)\n[a]\n\\lbrace{a}\\rbrace\n\\left| \\begin{matrix} a_1 & a_2 \\ a_3 & a_4 \\end{matrix} \\right|\n\\frac{a}{b+c}\n\\vec{a}\n\\binom {a} {b}\n{a \\brack b}\n{a \\brace b}\n',NULL),(1588,2,1619623793,'atto_recordrtc','allowedtypes','both',NULL),(1589,2,1619623793,'atto_recordrtc','audiobitrate','128000',NULL),(1590,2,1619623793,'atto_recordrtc','videobitrate','2500000',NULL),(1591,2,1619623793,'atto_recordrtc','timelimit','120',NULL),(1592,2,1619623793,'atto_table','allowborders','0',NULL),(1593,2,1619623793,'atto_table','allowbackgroundcolour','0',NULL),(1594,2,1619623793,'atto_table','allowwidth','0',NULL),(1595,2,1619623793,'editor_tinymce','customtoolbar','wrap,formatselect,wrap,bold,italic,wrap,bullist,numlist,wrap,link,unlink,wrap,image\n\nundo,redo,wrap,underline,strikethrough,sub,sup,wrap,justifyleft,justifycenter,justifyright,wrap,outdent,indent,wrap,forecolor,backcolor,wrap,ltr,rtl\n\nfontselect,fontsizeselect,wrap,code,search,replace,wrap,nonbreaking,charmap,table,wrap,cleanup,removeformat,pastetext,pasteword,wrap,fullscreen',NULL),(1596,2,1619623793,'editor_tinymce','fontselectlist','Trebuchet=Trebuchet MS,Verdana,Arial,Helvetica,sans-serif;Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;Wingdings=wingdings',NULL),(1597,2,1619623793,'editor_tinymce','customconfig','',NULL),(1598,2,1619623793,'tinymce_moodleemoticon','requireemoticon','1',NULL),(1599,2,1619623793,'tinymce_spellchecker','spellengine','',NULL),(1600,2,1619623793,'tinymce_spellchecker','spelllanguagelist','+English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv',NULL),(1601,2,1619623793,NULL,'profileroles','5,4,3',NULL),(1602,2,1619623793,NULL,'coursecontact','3',NULL),(1603,2,1619623793,NULL,'frontpage','6',NULL),(1604,2,1619623793,NULL,'frontpageloggedin','6',NULL),(1605,2,1619623793,NULL,'maxcategorydepth','2',NULL),(1606,2,1619623793,NULL,'frontpagecourselimit','200',NULL),(1607,2,1619623793,NULL,'commentsperpage','15',NULL),(1608,2,1619623793,NULL,'defaultfrontpageroleid','8',NULL),(1609,2,1619623793,NULL,'messageinbound_enabled','0',NULL),(1610,2,1619623793,NULL,'messageinbound_mailbox','',NULL),(1611,2,1619623793,NULL,'messageinbound_domain','',NULL),(1612,2,1619623793,NULL,'messageinbound_host','',NULL),(1613,2,1619623793,NULL,'messageinbound_hostssl','ssl',NULL),(1614,2,1619623793,NULL,'messageinbound_hostuser','',NULL),(1615,2,1619623793,NULL,'messageinbound_hostpass','',NULL),(1616,2,1619623793,NULL,'enablemobilewebservice','0',NULL),(1617,2,1619623793,'tool_mobile','apppolicy','',NULL),(1618,2,1619623793,'tool_mobile','typeoflogin','1',NULL),(1619,2,1619623793,'tool_mobile','qrcodetype','2',NULL),(1620,2,1619623793,'tool_mobile','forcedurlscheme','moodlemobile',NULL),(1621,2,1619623793,'tool_mobile','minimumversion','',NULL),(1622,2,1619623793,NULL,'mobilecssurl','',NULL),(1623,2,1619623793,'tool_mobile','enablesmartappbanners','0',NULL),(1624,2,1619623793,'tool_mobile','iosappid','633359593',NULL),(1625,2,1619623793,'tool_mobile','androidappid','com.moodle.moodlemobile',NULL),(1626,2,1619623793,'tool_mobile','setuplink','https://download.moodle.org/mobile',NULL),(1627,2,1619623793,'tool_mobile','forcelogout','0',NULL),(1628,2,1619623793,'tool_mobile','disabledfeatures','',NULL),(1629,2,1619623793,'tool_mobile','custommenuitems','',NULL),(1630,2,1619623793,'tool_mobile','filetypeexclusionlist','',NULL),(1631,2,1619623793,'tool_mobile','customlangstrings','',NULL),(1632,2,1619623793,'tool_moodlenet','enablemoodlenet','0',NULL),(1633,2,1619623793,'tool_moodlenet','defaultmoodlenetname','MoodleNet Central',NULL),(1634,2,1619623793,'tool_moodlenet','defaultmoodlenet','https://moodle.net',NULL),(1635,2,1619623812,NULL,'timezone','Europe/London',NULL),(1636,2,1619623812,NULL,'registerauth','',NULL),(1637,2,1619624888,'core_admin','logo','/Droplet Text - Teal - Transparent.png',''),(1638,2,1619624888,'core_admin','logocompact','/Droplet - Teal - Transparent.png',''),(1639,2,1619625300,NULL,'customusermenuitems','grades,grades|/grade/report/mygrades.php|t/grades\r\nmessages,message|/message/index.php|t/message\r\npreferences,moodle|/user/preferences.php|t/preferences','grades,grades|/grade/report/mygrades.php|t/grades\nmessages,message|/message/index.php|t/message\npreferences,moodle|/user/preferences.php|t/preferences'),(1640,2,1619625300,'theme_boost','brandcolor','#A4175B',''),(1641,2,1619625519,'enrol_self','status','0','1'),(1642,2,1619625519,'enrol_self','newenrols','0','1'),(1643,2,1619625569,'enrol_self','status','1','0'),(1644,2,1619625665,'customcert','verifycertificate','',NULL),(1645,2,1619625665,'customcert','managetemplates','',NULL),(1646,2,1619625665,'customcert','uploadimage','',NULL),(1647,2,1619625678,'customcert','verifyallcertificates','0',NULL),(1648,2,1619625678,'customcert','showposxy','0',NULL),(1649,2,1619625678,'customcert','emailstudents','0',NULL),(1650,2,1619625678,'customcert','emailteachers','0',NULL),(1651,2,1619625678,'customcert','emailothers','',NULL),(1652,2,1619625678,'customcert','verifyany','0',NULL),(1653,2,1619625678,'customcert','requiredtime','0',NULL),(1654,2,1619625678,'customcert','protection_print','0',NULL),(1655,2,1619625678,'customcert','protection_modify','0',NULL),(1656,2,1619625678,'customcert','protection_copy','0',NULL),(1657,2,1619625777,NULL,'enablemobilewebservice','1','0'),(1658,2,1619626061,'tool_mobile','apppolicy','https://www.relaytrust.org/thewell/privacypolicy.html',''),(1659,2,1619626061,'tool_mobile','forcedurlscheme','org.relaytrust.thewell','moodlemobile'),(1660,2,1619626061,'tool_mobile','enablesmartappbanners','1','0'),(1661,2,1619626061,'tool_mobile','iosappid','','633359593'),(1662,2,1619626061,'tool_mobile','androidappid','org.relaytrust.thewell','com.moodle.moodlemobile'),(1663,2,1619626061,'tool_mobile','setuplink','https://www.relaytrust.org/thewell/thewellapp.html','https://download.moodle.org/mobile'),(1664,2,1619626061,'tool_mobile','disabledfeatures','$mmLoginEmailSignup,NoDelegate_ForgottenPassword,$mmSideMenuDelegate_mmaFrontpage,$mmSideMenuDelegate_mmaCalendar,$mmSideMenuDelegate_mmaNotifications,$mmSideMenuDelegate_mmaGrades,$mmSideMenuDelegate_mmaCompetency,CoreMainMenuDelegate_AddonBlog,CoreMainMenuDelegate_CoreTag,$mmSideMenuDelegate_website,$mmSideMenuDelegate_help,CoreCourseOptionsDelegate_AddonBlog,CoreUserDelegate_AddonBlog:blogs,$mmUserDelegate_mmaMessages:blockContact',''),(1665,2,1619626271,'tool_mobile','custommenuitems','Get Resources from The Well|http://thewell|browser\r\nHelp|internal link in Well Device|embedded\r\nAbout The Well|internal link in Well Device|embedded',''),(1666,2,1619626699,'moodlecourse','downloadcontentsitedefault','1','0'),(1667,2,1619626699,'moodlecourse','courseduration','15552000','31536000'),(1668,2,1619626786,NULL,'downloadcoursecontentallowed','1','0'),(1669,2,1619626786,NULL,'maxsizeperdownloadcoursefile','536870912','52428800'),(1670,2,1619627174,'tool_mobile','custommenuitems','Get Resources from The Well|http://thewell|browser\r\nAbout The Well|internal link in Well Device|embedded','Get Resources from The Well|http://thewell|browser\r\nHelp|internal link in Well Device|embedded\r\nAbout The Well|internal link in Well Device|embedded'),(1671,2,1619627241,'tool_mobile','custommenuitems','Get Resources from The Well|http://thewell|browser\r\nHelp|internal link in Well|embedded\r\nAbout The Well|internal link in Well Device|embedded','Get Resources from The Well|http://thewell|browser\r\nAbout The Well|internal link in Well Device|embedded'); -/*!40000 ALTER TABLE `mdl_config_log` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_config_plugins` --- - -DROP TABLE IF EXISTS `mdl_config_plugins`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_config_plugins` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `plugin` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'core', - `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_confplug_plunam_uix` (`plugin`,`name`) -) ENGINE=InnoDB AUTO_INCREMENT=1960 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Moodle modules and plugins configuration variables'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_config_plugins` --- - -LOCK TABLES `mdl_config_plugins` WRITE; -/*!40000 ALTER TABLE `mdl_config_plugins` DISABLE KEYS */; -INSERT INTO `mdl_config_plugins` VALUES (1,'question','multichoice_sortorder','1'),(2,'question','truefalse_sortorder','2'),(3,'question','match_sortorder','3'),(4,'question','shortanswer_sortorder','4'),(5,'question','numerical_sortorder','5'),(6,'question','essay_sortorder','6'),(7,'moodlecourse','visible','1'),(8,'moodlecourse','downloadcontentsitedefault','1'),(9,'moodlecourse','format','topics'),(10,'moodlecourse','maxsections','52'),(11,'moodlecourse','numsections','4'),(12,'moodlecourse','hiddensections','0'),(13,'moodlecourse','coursedisplay','0'),(14,'moodlecourse','courseenddateenabled','1'),(15,'moodlecourse','courseduration','15552000'),(16,'moodlecourse','lang',''),(17,'moodlecourse','newsitems','5'),(18,'moodlecourse','showgrades','1'),(19,'moodlecourse','showreports','0'),(20,'moodlecourse','maxbytes','0'),(21,'moodlecourse','enablecompletion','1'),(22,'moodlecourse','groupmode','0'),(23,'moodlecourse','groupmodeforce','0'),(24,'backup','loglifetime','30'),(25,'backup','backup_general_users','1'),(26,'backup','backup_general_users_locked',''),(27,'backup','backup_general_anonymize','0'),(28,'backup','backup_general_anonymize_locked',''),(29,'backup','backup_general_role_assignments','1'),(30,'backup','backup_general_role_assignments_locked',''),(31,'backup','backup_general_activities','1'),(32,'backup','backup_general_activities_locked',''),(33,'backup','backup_general_blocks','1'),(34,'backup','backup_general_blocks_locked',''),(35,'backup','backup_general_files','1'),(36,'backup','backup_general_files_locked',''),(37,'backup','backup_general_filters','1'),(38,'backup','backup_general_filters_locked',''),(39,'backup','backup_general_comments','1'),(40,'backup','backup_general_comments_locked',''),(41,'backup','backup_general_badges','1'),(42,'backup','backup_general_badges_locked',''),(43,'backup','backup_general_calendarevents','1'),(44,'backup','backup_general_calendarevents_locked',''),(45,'backup','backup_general_userscompletion','1'),(46,'backup','backup_general_userscompletion_locked',''),(47,'backup','backup_general_logs','0'),(48,'backup','backup_general_logs_locked',''),(49,'backup','backup_general_histories','0'),(50,'backup','backup_general_histories_locked',''),(51,'backup','backup_general_questionbank','1'),(52,'backup','backup_general_questionbank_locked',''),(53,'backup','backup_general_groups','1'),(54,'backup','backup_general_groups_locked',''),(55,'backup','backup_general_competencies','1'),(56,'backup','backup_general_competencies_locked',''),(57,'backup','backup_general_contentbankcontent','1'),(58,'backup','backup_general_contentbankcontent_locked',''),(59,'backup','backup_general_legacyfiles','1'),(60,'backup','backup_general_legacyfiles_locked',''),(61,'backup','import_general_maxresults','10'),(62,'backup','import_general_duplicate_admin_allowed','0'),(63,'backup','backup_import_activities','1'),(64,'backup','backup_import_activities_locked',''),(65,'backup','backup_import_blocks','1'),(66,'backup','backup_import_blocks_locked',''),(67,'backup','backup_import_filters','1'),(68,'backup','backup_import_filters_locked',''),(69,'backup','backup_import_calendarevents','1'),(70,'backup','backup_import_calendarevents_locked',''),(71,'backup','backup_import_questionbank','1'),(72,'backup','backup_import_questionbank_locked',''),(73,'backup','backup_import_groups','1'),(74,'backup','backup_import_groups_locked',''),(75,'backup','backup_import_competencies','1'),(76,'backup','backup_import_competencies_locked',''),(77,'backup','backup_import_contentbankcontent','1'),(78,'backup','backup_import_contentbankcontent_locked',''),(79,'backup','backup_import_legacyfiles','1'),(80,'backup','backup_import_legacyfiles_locked',''),(81,'backup','backup_auto_active','0'),(82,'backup','backup_auto_weekdays','0000000'),(83,'backup','backup_auto_hour','0'),(84,'backup','backup_auto_minute','0'),(85,'backup','backup_auto_storage','0'),(86,'backup','backup_auto_destination',''),(87,'backup','backup_auto_max_kept','1'),(88,'backup','backup_auto_delete_days','0'),(89,'backup','backup_auto_min_kept','0'),(90,'backup','backup_shortname','0'),(91,'backup','backup_auto_skip_hidden','1'),(92,'backup','backup_auto_skip_modif_days','30'),(93,'backup','backup_auto_skip_modif_prev','0'),(94,'backup','backup_auto_users','1'),(95,'backup','backup_auto_role_assignments','1'),(96,'backup','backup_auto_activities','1'),(97,'backup','backup_auto_blocks','1'),(98,'backup','backup_auto_files','1'),(99,'backup','backup_auto_filters','1'),(100,'backup','backup_auto_comments','1'),(101,'backup','backup_auto_badges','1'),(102,'backup','backup_auto_calendarevents','1'),(103,'backup','backup_auto_userscompletion','1'),(104,'backup','backup_auto_logs','0'),(105,'backup','backup_auto_histories','0'),(106,'backup','backup_auto_questionbank','1'),(107,'backup','backup_auto_groups','1'),(108,'backup','backup_auto_competencies','1'),(109,'backup','backup_auto_contentbankcontent','1'),(110,'backup','backup_auto_legacyfiles','1'),(111,'restore','restore_general_users','1'),(112,'restore','restore_general_users_locked',''),(113,'restore','restore_general_enrolments','1'),(114,'restore','restore_general_enrolments_locked',''),(115,'restore','restore_general_role_assignments','1'),(116,'restore','restore_general_role_assignments_locked',''),(117,'restore','restore_general_activities','1'),(118,'restore','restore_general_activities_locked',''),(119,'restore','restore_general_blocks','1'),(120,'restore','restore_general_blocks_locked',''),(121,'restore','restore_general_filters','1'),(122,'restore','restore_general_filters_locked',''),(123,'restore','restore_general_comments','1'),(124,'restore','restore_general_comments_locked',''),(125,'restore','restore_general_badges','1'),(126,'restore','restore_general_badges_locked',''),(127,'restore','restore_general_calendarevents','1'),(128,'restore','restore_general_calendarevents_locked',''),(129,'restore','restore_general_userscompletion','1'),(130,'restore','restore_general_userscompletion_locked',''),(131,'restore','restore_general_logs','1'),(132,'restore','restore_general_logs_locked',''),(133,'restore','restore_general_histories','1'),(134,'restore','restore_general_histories_locked',''),(135,'restore','restore_general_groups','1'),(136,'restore','restore_general_groups_locked',''),(137,'restore','restore_general_competencies','1'),(138,'restore','restore_general_competencies_locked',''),(139,'restore','restore_general_contentbankcontent','1'),(140,'restore','restore_general_contentbankcontent_locked',''),(141,'restore','restore_general_legacyfiles','1'),(142,'restore','restore_general_legacyfiles_locked',''),(143,'restore','restore_merge_overwrite_conf','0'),(144,'restore','restore_merge_overwrite_conf_locked',''),(145,'restore','restore_merge_course_fullname','1'),(146,'restore','restore_merge_course_fullname_locked',''),(147,'restore','restore_merge_course_shortname','1'),(148,'restore','restore_merge_course_shortname_locked',''),(149,'restore','restore_merge_course_startdate','1'),(150,'restore','restore_merge_course_startdate_locked',''),(151,'restore','restore_replace_overwrite_conf','0'),(152,'restore','restore_replace_overwrite_conf_locked',''),(153,'restore','restore_replace_course_fullname','1'),(154,'restore','restore_replace_course_fullname_locked',''),(155,'restore','restore_replace_course_shortname','1'),(156,'restore','restore_replace_course_shortname_locked',''),(157,'restore','restore_replace_course_startdate','1'),(158,'restore','restore_replace_course_startdate_locked',''),(159,'restore','restore_replace_keep_roles_and_enrolments','0'),(160,'restore','restore_replace_keep_roles_and_enrolments_locked',''),(161,'restore','restore_replace_keep_groups_and_groupings','0'),(162,'restore','restore_replace_keep_groups_and_groupings_locked',''),(163,'backup','backup_async_message_users','0'),(164,'backup','backup_async_message_subject','Moodle {operation} completed successfully'),(165,'backup','backup_async_message','Hi {user_firstname},
Your {operation} (ID: {backupid}) has completed successfully.

You can access it here: {link}.'),(166,'analytics','modeinstruction',''),(167,'analytics','percentonline','0'),(168,'analytics','typeinstitution',''),(169,'analytics','levelinstitution',''),(170,'analytics','predictionsprocessor','\\mlbackend_php\\processor'),(171,'analytics','defaulttimesplittingsevaluation','\\core\\analytics\\time_splitting\\quarters_accum,\\core\\analytics\\time_splitting\\quarters,\\core\\analytics\\time_splitting\\single_range'),(172,'analytics','modeloutputdir',''),(173,'analytics','onlycli','1'),(174,'analytics','modeltimelimit','1200'),(175,'core_competency','enabled','1'),(176,'core_competency','pushcourseratingstouserplans','1'),(177,'antivirus','notifyemail',''),(178,'antivirus','enablequarantine','0'),(179,'antivirus','quarantinetime','2419200'),(180,'cachestore_apcu','testperformance','0'),(181,'cachestore_memcached','testservers',''),(182,'cachestore_mongodb','testserver',''),(183,'cachestore_redis','test_server',''),(184,'cachestore_redis','test_password',''),(185,'question_preview','behaviour','deferredfeedback'),(186,'question_preview','correctness','1'),(187,'question_preview','marks','2'),(188,'question_preview','markdp','2'),(189,'question_preview','feedback','1'),(190,'question_preview','generalfeedback','1'),(191,'question_preview','rightanswer','1'),(192,'question_preview','history','0'),(193,'tool_task','enablerunnow','1'),(194,'theme_boost','preset','default.scss'),(195,'theme_boost','presetfiles',''),(196,'theme_boost','backgroundimage',''),(197,'theme_boost','brandcolor','#A4175B'),(198,'theme_boost','scsspre',''),(199,'theme_boost','scss',''),(200,'theme_classic','navbardark','0'),(201,'theme_classic','preset','default.scss'),(202,'theme_classic','presetfiles',''),(203,'theme_classic','backgroundimage',''),(204,'theme_classic','brandcolor',''),(205,'theme_classic','scsspre',''),(206,'theme_classic','scss',''),(207,'core_admin','logo','/Droplet Text - Teal - Transparent.png'),(208,'core_admin','logocompact','/Droplet - Teal - Transparent.png'),(209,'core_admin','coursecolor1','#81ecec'),(210,'core_admin','coursecolor2','#74b9ff'),(211,'core_admin','coursecolor3','#a29bfe'),(212,'core_admin','coursecolor4','#dfe6e9'),(213,'core_admin','coursecolor5','#00b894'),(214,'core_admin','coursecolor6','#0984e3'),(215,'core_admin','coursecolor7','#b2bec3'),(216,'core_admin','coursecolor8','#fdcb6e'),(217,'core_admin','coursecolor9','#fd79a8'),(218,'core_admin','coursecolor10','#6c5ce7'),(219,'antivirus_clamav','version','2020110900'),(220,'availability_completion','version','2020110900'),(221,'availability_date','version','2020110900'),(222,'availability_grade','version','2020110900'),(223,'availability_group','version','2020110900'),(224,'availability_grouping','version','2020110900'),(225,'availability_profile','version','2020110900'),(226,'qtype_calculated','version','2020110900'),(227,'qtype_calculatedmulti','version','2020110900'),(228,'qtype_calculatedsimple','version','2020110900'),(229,'qtype_ddimageortext','version','2020110900'),(230,'qtype_ddmarker','version','2020110900'),(231,'qtype_ddwtos','version','2020110900'),(232,'qtype_description','version','2020110900'),(233,'qtype_essay','version','2020110900'),(234,'qtype_gapselect','version','2020110900'),(235,'qtype_match','version','2020110900'),(236,'qtype_missingtype','version','2020110900'),(237,'qtype_multianswer','version','2020110900'),(238,'qtype_multichoice','version','2020110900'),(239,'qtype_numerical','version','2020110900'),(240,'qtype_random','version','2020110900'),(241,'qtype_randomsamatch','version','2020110900'),(242,'qtype_shortanswer','version','2020110900'),(243,'qtype_truefalse','version','2020110900'),(244,'mod_assign','version','2020110900'),(245,'mod_assignment','version','2020110900'),(247,'mod_book','version','2020110900'),(248,'mod_chat','version','2020110900'),(249,'mod_choice','version','2020110900'),(250,'mod_data','version','2020110900'),(251,'mod_feedback','version','2020110900'),(253,'mod_folder','version','2020110900'),(255,'mod_forum','version','2020110900'),(256,'mod_glossary','version','2020110900'),(257,'mod_h5pactivity','version','2020110900'),(258,'mod_imscp','version','2020110900'),(260,'mod_label','version','2020110900'),(261,'mod_lesson','version','2020110900'),(262,'mod_lti','version','2020110900'),(264,'mod_lti','kid','d293de2e806f861de0f7'),(265,'mod_lti','privatekey','-----BEGIN PRIVATE KEY-----\nMIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQC1o6VZX2CR8aXM\nfB61KukyfOazczDwXy4Mf6HUhVNLE+wMahSX09vrgFFTI0g/QwYevlpzQPplPUCg\nyFUnl6A0qqwPR819Ju4iug65hzzGSlna/1FtjGwFINoE9AnZyXUljhdiyVeS8pLz\nzmQnPUl2i/QGWjAtS9wL6+B1U1mKzE1p7dkIr/M5MltjY14w38gGUrWNCB0nZ1bZ\nXlKXJrj2Z0h9t/9BlQYPE5u8F0vw/MInuEQDw7bpMX1QZoBEvnrkij6yBpGEWR2F\nxQdc8aS4dnvhAfVqDNu1vz5TK2fkbRScIfsYFo/tKItvKkkuOYtaTdTtCt1K+Nsp\nrUc/86cvAgMBAAECggEAHC/K5vWQDNXM/tB8C20fRwBu5IYJoCOFB9d+i3YtGMd8\np+iGTZFI3WDKPfaJrZd/CaJMcvowYSmCL/EmlcBH0iRyEuT3lGZIKgdpZY0A91xu\nWTepsTBLSvhwHLiqFqvWi/9izaek+V6/QypSDGzMS6MoORwhwcW13fu6lzpZ+Nm8\nXQGMRkH3UW3s7eEMaiw9NTRKaDtwRkztfrJsKQyaC+2uBFeXJbGf453ttrySui6m\nvrD/EQ6m50VZMmDWkbzMK6tJH/it/9eb4tX7q5iskPjkc73/oEXKxkywE6cPE7bF\n4x/tiWqY5LaQws8reQKu60wS5W49I6TjjNgHVTGLAQKBgQDjPl2XrBVWTPpl5Vl4\ncHd0XVBFENXRyiJRnOZxpYFkQIHGqWp0MnrEU3FzXtQ/JqnmXll2t/Z6kH8OESpc\nY93Ay8eFhf4Rzl0pdMWJfJXIG6Wma06oIfnDsSKBq6QDuGuYDS6mJ1JG0+pAIvIy\nfMPbdXeqZmQNiS67xPw5NM23bwKBgQDMn+k7RmVo7rRZrp8PThwfEIecBQkmhNw1\nhpOyijhCBP56rg0dlBemPSxrZ+16eKF5ByYrvYlFqX43RW0myK2hQ+tUwQ6KeKzE\n1Rd+PUkUTVYCMyJTnjpi4KE1RTp/VpnJo0tRFJvALgyRPdKJkvJ98/cWGUaKCIW5\np48rNl8sQQKBgQDE1oC7oJPa7VL4cHHPoZvXb/zX1n1f+3c+umnihzpNXJMNQjKz\n9AXjiWP8S2gOS69fnNphu3gFMqTbyoKnBNpQ5jMttaMeSWLpRfzV2tTjQQ971/eK\nK+PtXsJFEChCEL0iOEjwI59hOq7uX1br5KbCsj21nHuOPgX9H+RaqSKIgQKBgHlS\ngs2TQoNBrIrT3xkK/d9pRI476h39fjb6MM4V5581KNECK2KTMKZu9MxF1Wbc6RhC\nJd6fRSmZge0xa7MoHtJT287nnEB7piwaEBDYM2EnLUymlr6vPPztJIfaIQHpDcug\n1wIezu3WH7tpxU+uYbpOEPz4RXuH7AmUkG1Vkn5BAoGAFEIzYB6AwZ9FwS3nQSc6\n9JF+apeRA+kU+gvEg3ARnu4qipB8pdygmKsLqC/LIN1WtQ3eazUbHepzBqlt63lA\nvtIjiz+zg6daAMm/g5mpAdVMLFTw9cYHqHyBKF8eSNtt8gk/qQX33HhwdVKwBktU\nSK8ufeRwNuM0OcAiu9Gp9WQ=\n-----END PRIVATE KEY-----\n'),(266,'mod_page','version','2020110900'),(268,'mod_quiz','version','2020110900'),(269,'mod_resource','version','2020110900'),(270,'mod_scorm','version','2020110900'),(271,'mod_survey','version','2020110900'),(273,'mod_url','version','2020110900'),(275,'mod_wiki','version','2020110900'),(277,'mod_workshop','version','2020110900'),(278,'auth_cas','version','2020110900'),(280,'auth_db','version','2020110900'),(282,'auth_email','version','2020110900'),(283,'auth_ldap','version','2020110900'),(285,'auth_lti','version','2020110900'),(286,'auth_manual','version','2020110900'),(287,'auth_mnet','version','2020110900'),(289,'auth_nologin','version','2020110900'),(290,'auth_none','version','2020110900'),(291,'auth_oauth2','version','2020110900'),(292,'auth_shibboleth','version','2020110901'),(294,'auth_webservice','version','2020110900'),(295,'calendartype_gregorian','version','2020110900'),(296,'customfield_checkbox','version','2020110900'),(297,'customfield_date','version','2020110900'),(298,'customfield_select','version','2020110900'),(299,'customfield_text','version','2020110900'),(300,'customfield_textarea','version','2020110900'),(301,'enrol_category','version','2020110900'),(303,'enrol_cohort','version','2020110900'),(304,'enrol_database','version','2020110900'),(306,'enrol_fee','version','2020110900'),(307,'enrol_flatfile','version','2020110900'),(309,'enrol_flatfile','map_1','manager'),(310,'enrol_flatfile','map_2','coursecreator'),(311,'enrol_flatfile','map_3','editingteacher'),(312,'enrol_flatfile','map_4','teacher'),(313,'enrol_flatfile','map_5','student'),(314,'enrol_flatfile','map_6','guest'),(315,'enrol_flatfile','map_7','user'),(316,'enrol_flatfile','map_8','frontpage'),(317,'enrol_guest','version','2020110900'),(318,'enrol_imsenterprise','version','2020110900'),(320,'enrol_ldap','version','2020110900'),(322,'enrol_lti','version','2020110900'),(323,'enrol_manual','version','2020110900'),(325,'enrol_meta','version','2020110900'),(327,'enrol_mnet','version','2020110900'),(328,'enrol_paypal','version','2020110900'),(329,'enrol_self','version','2020110900'),(331,'message_airnotifier','version','2020110900'),(333,'message','airnotifier_provider_enrol_flatfile_flatfile_enrolment_permitted','permitted'),(334,'message','airnotifier_provider_enrol_imsenterprise_imsenterprise_enrolment_permitted','permitted'),(335,'message','airnotifier_provider_enrol_manual_expiry_notification_permitted','permitted'),(336,'message','airnotifier_provider_enrol_paypal_paypal_enrolment_permitted','permitted'),(337,'message','airnotifier_provider_enrol_self_expiry_notification_permitted','permitted'),(338,'message','airnotifier_provider_mod_assign_assign_notification_permitted','permitted'),(339,'message','airnotifier_provider_mod_assignment_assignment_updates_permitted','permitted'),(340,'message','airnotifier_provider_mod_feedback_submission_permitted','permitted'),(341,'message','airnotifier_provider_mod_feedback_message_permitted','permitted'),(342,'message','airnotifier_provider_mod_forum_posts_permitted','permitted'),(343,'message','message_provider_mod_forum_posts_loggedin','email,airnotifier'),(344,'message','message_provider_mod_forum_posts_loggedoff','email,airnotifier'),(345,'message','airnotifier_provider_mod_forum_digests_permitted','permitted'),(346,'message','airnotifier_provider_mod_lesson_graded_essay_permitted','permitted'),(347,'message','message_provider_mod_lesson_graded_essay_loggedin','email,airnotifier'),(348,'message','message_provider_mod_lesson_graded_essay_loggedoff','email,airnotifier'),(349,'message','airnotifier_provider_mod_quiz_submission_permitted','permitted'),(350,'message','airnotifier_provider_mod_quiz_confirmation_permitted','permitted'),(351,'message','message_provider_mod_quiz_confirmation_loggedin','email,airnotifier'),(352,'message','message_provider_mod_quiz_confirmation_loggedoff','email,airnotifier'),(353,'message','airnotifier_provider_mod_quiz_attempt_overdue_permitted','permitted'),(354,'message','message_provider_mod_quiz_attempt_overdue_loggedin','email,airnotifier'),(355,'message','message_provider_mod_quiz_attempt_overdue_loggedoff','email,airnotifier'),(356,'message','airnotifier_provider_moodle_notices_permitted','permitted'),(357,'message','airnotifier_provider_moodle_errors_permitted','permitted'),(358,'message','airnotifier_provider_moodle_availableupdate_permitted','permitted'),(359,'message','airnotifier_provider_moodle_instantmessage_permitted','permitted'),(360,'message','airnotifier_provider_moodle_backup_permitted','permitted'),(361,'message','airnotifier_provider_moodle_courserequested_permitted','permitted'),(362,'message','airnotifier_provider_moodle_courserequestapproved_permitted','permitted'),(363,'message','message_provider_moodle_courserequestapproved_loggedin','email,airnotifier'),(364,'message','message_provider_moodle_courserequestapproved_loggedoff','email,airnotifier'),(365,'message','airnotifier_provider_moodle_courserequestrejected_permitted','permitted'),(366,'message','message_provider_moodle_courserequestrejected_loggedin','email,airnotifier'),(367,'message','message_provider_moodle_courserequestrejected_loggedoff','email,airnotifier'),(368,'message','airnotifier_provider_moodle_coursecompleted_permitted','permitted'),(369,'message','airnotifier_provider_moodle_badgerecipientnotice_permitted','permitted'),(370,'message','message_provider_moodle_badgerecipientnotice_loggedin','popup,airnotifier'),(371,'message','message_provider_moodle_badgerecipientnotice_loggedoff','popup,email,airnotifier'),(372,'message','airnotifier_provider_moodle_badgecreatornotice_permitted','permitted'),(373,'message','airnotifier_provider_moodle_competencyplancomment_permitted','permitted'),(374,'message','airnotifier_provider_moodle_competencyusercompcomment_permitted','permitted'),(375,'message','airnotifier_provider_moodle_insights_permitted','permitted'),(376,'message','message_provider_moodle_insights_loggedin','popup,airnotifier'),(377,'message','message_provider_moodle_insights_loggedoff','popup,email,airnotifier'),(378,'message','airnotifier_provider_moodle_messagecontactrequests_permitted','permitted'),(379,'message','message_provider_moodle_messagecontactrequests_loggedin','airnotifier'),(380,'message','message_provider_moodle_messagecontactrequests_loggedoff','email,airnotifier'),(381,'message','airnotifier_provider_moodle_asyncbackupnotification_permitted','permitted'),(382,'message','airnotifier_provider_moodle_gradenotifications_permitted','permitted'),(383,'message','airnotifier_provider_moodle_infected_permitted','permitted'),(384,'message_email','version','2020110900'),(386,'message','email_provider_enrol_flatfile_flatfile_enrolment_permitted','permitted'),(387,'message','message_provider_enrol_flatfile_flatfile_enrolment_loggedin','email'),(388,'message','message_provider_enrol_flatfile_flatfile_enrolment_loggedoff','email'),(389,'message','email_provider_enrol_imsenterprise_imsenterprise_enrolment_permitted','permitted'),(390,'message','message_provider_enrol_imsenterprise_imsenterprise_enrolment_loggedin','email'),(391,'message','message_provider_enrol_imsenterprise_imsenterprise_enrolment_loggedoff','email'),(392,'message','email_provider_enrol_manual_expiry_notification_permitted','permitted'),(393,'message','message_provider_enrol_manual_expiry_notification_loggedin','email'),(394,'message','message_provider_enrol_manual_expiry_notification_loggedoff','email'),(395,'message','email_provider_enrol_paypal_paypal_enrolment_permitted','permitted'),(396,'message','message_provider_enrol_paypal_paypal_enrolment_loggedin','email'),(397,'message','message_provider_enrol_paypal_paypal_enrolment_loggedoff','email'),(398,'message','email_provider_enrol_self_expiry_notification_permitted','permitted'),(399,'message','message_provider_enrol_self_expiry_notification_loggedin','email'),(400,'message','message_provider_enrol_self_expiry_notification_loggedoff','email'),(401,'message','email_provider_mod_assign_assign_notification_permitted','permitted'),(402,'message','message_provider_mod_assign_assign_notification_loggedin','email'),(403,'message','message_provider_mod_assign_assign_notification_loggedoff','email'),(404,'message','email_provider_mod_assignment_assignment_updates_permitted','permitted'),(405,'message','message_provider_mod_assignment_assignment_updates_loggedin','email'),(406,'message','message_provider_mod_assignment_assignment_updates_loggedoff','email'),(407,'message','email_provider_mod_feedback_submission_permitted','permitted'),(408,'message','message_provider_mod_feedback_submission_loggedin','email'),(409,'message','message_provider_mod_feedback_submission_loggedoff','email'),(410,'message','email_provider_mod_feedback_message_permitted','permitted'),(411,'message','message_provider_mod_feedback_message_loggedin','email'),(412,'message','message_provider_mod_feedback_message_loggedoff','email'),(413,'message','email_provider_mod_forum_posts_permitted','permitted'),(414,'message','email_provider_mod_forum_digests_permitted','permitted'),(415,'message','message_provider_mod_forum_digests_loggedin','email'),(416,'message','message_provider_mod_forum_digests_loggedoff','email'),(417,'message','email_provider_mod_lesson_graded_essay_permitted','permitted'),(418,'message','email_provider_mod_quiz_submission_permitted','permitted'),(419,'message','message_provider_mod_quiz_submission_loggedin','email'),(420,'message','message_provider_mod_quiz_submission_loggedoff','email'),(421,'message','email_provider_mod_quiz_confirmation_permitted','permitted'),(422,'message','email_provider_mod_quiz_attempt_overdue_permitted','permitted'),(423,'message','email_provider_moodle_notices_permitted','permitted'),(424,'message','message_provider_moodle_notices_loggedin','email'),(425,'message','message_provider_moodle_notices_loggedoff','email'),(426,'message','email_provider_moodle_errors_permitted','permitted'),(427,'message','message_provider_moodle_errors_loggedin','email'),(428,'message','message_provider_moodle_errors_loggedoff','email'),(429,'message','email_provider_moodle_availableupdate_permitted','permitted'),(430,'message','message_provider_moodle_availableupdate_loggedin','email'),(431,'message','message_provider_moodle_availableupdate_loggedoff','email'),(432,'message','email_provider_moodle_instantmessage_permitted','permitted'),(433,'message','message_provider_moodle_instantmessage_loggedoff','popup,email'),(434,'message','email_provider_moodle_backup_permitted','permitted'),(435,'message','message_provider_moodle_backup_loggedin','email'),(436,'message','message_provider_moodle_backup_loggedoff','email'),(437,'message','email_provider_moodle_courserequested_permitted','permitted'),(438,'message','message_provider_moodle_courserequested_loggedin','email'),(439,'message','message_provider_moodle_courserequested_loggedoff','email'),(440,'message','email_provider_moodle_courserequestapproved_permitted','permitted'),(441,'message','email_provider_moodle_courserequestrejected_permitted','permitted'),(442,'message','email_provider_moodle_coursecompleted_permitted','permitted'),(443,'message','message_provider_moodle_coursecompleted_loggedin','email'),(444,'message','message_provider_moodle_coursecompleted_loggedoff','email'),(445,'message','email_provider_moodle_badgerecipientnotice_permitted','permitted'),(446,'message','email_provider_moodle_badgecreatornotice_permitted','permitted'),(447,'message','message_provider_moodle_badgecreatornotice_loggedoff','email'),(448,'message','email_provider_moodle_competencyplancomment_permitted','permitted'),(449,'message','message_provider_moodle_competencyplancomment_loggedin','email'),(450,'message','message_provider_moodle_competencyplancomment_loggedoff','email'),(451,'message','email_provider_moodle_competencyusercompcomment_permitted','permitted'),(452,'message','message_provider_moodle_competencyusercompcomment_loggedin','email'),(453,'message','message_provider_moodle_competencyusercompcomment_loggedoff','email'),(454,'message','email_provider_moodle_insights_permitted','permitted'),(455,'message','email_provider_moodle_messagecontactrequests_permitted','permitted'),(456,'message','email_provider_moodle_asyncbackupnotification_permitted','permitted'),(457,'message','message_provider_moodle_asyncbackupnotification_loggedoff','popup,email'),(458,'message','email_provider_moodle_gradenotifications_permitted','permitted'),(459,'message','message_provider_moodle_gradenotifications_loggedoff','popup,email'),(460,'message','email_provider_moodle_infected_permitted','permitted'),(461,'message','message_provider_moodle_infected_loggedin','email'),(462,'message','message_provider_moodle_infected_loggedoff','email'),(463,'message_jabber','version','2020110900'),(465,'message','jabber_provider_enrol_flatfile_flatfile_enrolment_permitted','permitted'),(466,'message','jabber_provider_enrol_imsenterprise_imsenterprise_enrolment_permitted','permitted'),(467,'message','jabber_provider_enrol_manual_expiry_notification_permitted','permitted'),(468,'message','jabber_provider_enrol_paypal_paypal_enrolment_permitted','permitted'),(469,'message','jabber_provider_enrol_self_expiry_notification_permitted','permitted'),(470,'message','jabber_provider_mod_assign_assign_notification_permitted','permitted'),(471,'message','jabber_provider_mod_assignment_assignment_updates_permitted','permitted'),(472,'message','jabber_provider_mod_feedback_submission_permitted','permitted'),(473,'message','jabber_provider_mod_feedback_message_permitted','permitted'),(474,'message','jabber_provider_mod_forum_posts_permitted','permitted'),(475,'message','jabber_provider_mod_forum_digests_permitted','permitted'),(476,'message','jabber_provider_mod_lesson_graded_essay_permitted','permitted'),(477,'message','jabber_provider_mod_quiz_submission_permitted','permitted'),(478,'message','jabber_provider_mod_quiz_confirmation_permitted','permitted'),(479,'message','jabber_provider_mod_quiz_attempt_overdue_permitted','permitted'),(480,'message','jabber_provider_moodle_notices_permitted','permitted'),(481,'message','jabber_provider_moodle_errors_permitted','permitted'),(482,'message','jabber_provider_moodle_availableupdate_permitted','permitted'),(483,'message','jabber_provider_moodle_instantmessage_permitted','permitted'),(484,'message','jabber_provider_moodle_backup_permitted','permitted'),(485,'message','jabber_provider_moodle_courserequested_permitted','permitted'),(486,'message','jabber_provider_moodle_courserequestapproved_permitted','permitted'),(487,'message','jabber_provider_moodle_courserequestrejected_permitted','permitted'),(488,'message','jabber_provider_moodle_coursecompleted_permitted','permitted'),(489,'message','jabber_provider_moodle_badgerecipientnotice_permitted','permitted'),(490,'message','jabber_provider_moodle_badgecreatornotice_permitted','permitted'),(491,'message','jabber_provider_moodle_competencyplancomment_permitted','permitted'),(492,'message','jabber_provider_moodle_competencyusercompcomment_permitted','permitted'),(493,'message','jabber_provider_moodle_insights_permitted','permitted'),(494,'message','jabber_provider_moodle_messagecontactrequests_permitted','permitted'),(495,'message','jabber_provider_moodle_asyncbackupnotification_permitted','permitted'),(496,'message','jabber_provider_moodle_gradenotifications_permitted','permitted'),(497,'message','jabber_provider_moodle_infected_permitted','permitted'),(498,'message_popup','version','2020110900'),(500,'message','popup_provider_enrol_flatfile_flatfile_enrolment_permitted','permitted'),(501,'message','popup_provider_enrol_imsenterprise_imsenterprise_enrolment_permitted','permitted'),(502,'message','popup_provider_enrol_manual_expiry_notification_permitted','permitted'),(503,'message','popup_provider_enrol_paypal_paypal_enrolment_permitted','permitted'),(504,'message','popup_provider_enrol_self_expiry_notification_permitted','permitted'),(505,'message','popup_provider_mod_assign_assign_notification_permitted','permitted'),(506,'message','popup_provider_mod_assignment_assignment_updates_permitted','permitted'),(507,'message','popup_provider_mod_feedback_submission_permitted','permitted'),(508,'message','popup_provider_mod_feedback_message_permitted','permitted'),(509,'message','popup_provider_mod_forum_posts_permitted','permitted'),(510,'message','popup_provider_mod_forum_digests_permitted','permitted'),(511,'message','popup_provider_mod_lesson_graded_essay_permitted','permitted'),(512,'message','popup_provider_mod_quiz_submission_permitted','permitted'),(513,'message','popup_provider_mod_quiz_confirmation_permitted','permitted'),(514,'message','popup_provider_mod_quiz_attempt_overdue_permitted','permitted'),(515,'message','popup_provider_moodle_notices_permitted','permitted'),(516,'message','popup_provider_moodle_errors_permitted','permitted'),(517,'message','popup_provider_moodle_availableupdate_permitted','permitted'),(518,'message','popup_provider_moodle_instantmessage_permitted','permitted'),(519,'message','message_provider_moodle_instantmessage_loggedin','popup'),(520,'message','popup_provider_moodle_backup_permitted','permitted'),(521,'message','popup_provider_moodle_courserequested_permitted','permitted'),(522,'message','popup_provider_moodle_courserequestapproved_permitted','permitted'),(523,'message','popup_provider_moodle_courserequestrejected_permitted','permitted'),(524,'message','popup_provider_moodle_coursecompleted_permitted','permitted'),(525,'message','popup_provider_moodle_badgerecipientnotice_permitted','permitted'),(526,'message','popup_provider_moodle_badgecreatornotice_permitted','permitted'),(527,'message','popup_provider_moodle_competencyplancomment_permitted','permitted'),(528,'message','popup_provider_moodle_competencyusercompcomment_permitted','permitted'),(529,'message','popup_provider_moodle_insights_permitted','permitted'),(530,'message','popup_provider_moodle_messagecontactrequests_permitted','permitted'),(531,'message','popup_provider_moodle_asyncbackupnotification_permitted','permitted'),(532,'message','message_provider_moodle_asyncbackupnotification_loggedin','popup'),(533,'message','popup_provider_moodle_gradenotifications_permitted','permitted'),(534,'message','message_provider_moodle_gradenotifications_loggedin','popup'),(535,'message','popup_provider_moodle_infected_permitted','permitted'),(536,'block_activity_modules','version','2020110900'),(537,'block_activity_results','version','2020110900'),(538,'block_admin_bookmarks','version','2020110900'),(539,'block_badges','version','2020110900'),(540,'block_blog_menu','version','2020110900'),(541,'block_blog_recent','version','2020110900'),(542,'block_blog_tags','version','2020110900'),(543,'block_calendar_month','version','2020110900'),(544,'block_calendar_upcoming','version','2020110900'),(545,'block_comments','version','2020110900'),(546,'block_completionstatus','version','2020110900'),(547,'block_course_list','version','2020110900'),(548,'block_course_summary','version','2020110900'),(549,'block_feedback','version','2020110900'),(551,'block_globalsearch','version','2020110900'),(552,'block_glossary_random','version','2020110900'),(553,'block_html','version','2020110900'),(554,'block_login','version','2020110900'),(555,'block_lp','version','2020110900'),(556,'block_mentees','version','2020110900'),(557,'block_mnet_hosts','version','2020110900'),(558,'block_myoverview','version','2020110900'),(559,'block_myprofile','version','2020110900'),(560,'block_navigation','version','2020110900'),(561,'block_news_items','version','2020110900'),(562,'block_online_users','version','2020110900'),(563,'block_private_files','version','2020110900'),(564,'block_quiz_results','version','2020110900'),(566,'block_recent_activity','version','2020110900'),(567,'block_recentlyaccessedcourses','version','2020110900'),(569,'block_recentlyaccesseditems','version','2020110900'),(570,'block_rss_client','version','2020110900'),(571,'block_search_forums','version','2020110900'),(572,'block_section_links','version','2020110900'),(573,'block_selfcompletion','version','2020110900'),(574,'block_settings','version','2020110900'),(575,'block_site_main_menu','version','2020110900'),(576,'block_social_activities','version','2020110900'),(577,'block_starredcourses','version','2020110900'),(578,'block_tag_flickr','version','2020110900'),(579,'block_tag_youtube','version','2020110901'),(581,'block_tags','version','2020110900'),(582,'block_timeline','version','2020110900'),(584,'media_html5audio','version','2020110900'),(585,'media_html5video','version','2020110900'),(586,'media_swf','version','2020110900'),(587,'media_videojs','version','2020110900'),(588,'media_vimeo','version','2020110900'),(589,'media_youtube','version','2020110900'),(590,'filter_activitynames','version','2020110900'),(592,'filter_algebra','version','2020110900'),(593,'filter_censor','version','2020110900'),(594,'filter_data','version','2020110900'),(596,'filter_displayh5p','version','2020110900'),(598,'filter_emailprotect','version','2020110900'),(599,'filter_emoticon','version','2020110900'),(601,'filter_glossary','version','2020110900'),(603,'filter_mathjaxloader','version','2020110900'),(605,'filter_mediaplugin','version','2020110900'),(607,'filter_multilang','version','2020110900'),(608,'filter_tex','version','2020110900'),(610,'filter_tidy','version','2020110900'),(611,'filter_urltolink','version','2020110900'),(613,'editor_atto','version','2020110900'),(615,'editor_textarea','version','2020110900'),(616,'editor_tinymce','version','2020110900'),(617,'format_singleactivity','version','2020110900'),(618,'format_social','version','2020110900'),(619,'format_topics','version','2020110900'),(620,'format_weeks','version','2020110900'),(621,'dataformat_csv','version','2020110900'),(622,'dataformat_excel','version','2020110900'),(623,'dataformat_html','version','2020110900'),(624,'dataformat_json','version','2020110900'),(625,'dataformat_ods','version','2020110900'),(626,'dataformat_pdf','version','2020110900'),(627,'profilefield_checkbox','version','2020110900'),(628,'profilefield_datetime','version','2020110900'),(629,'profilefield_menu','version','2020110900'),(630,'profilefield_text','version','2020110900'),(631,'profilefield_textarea','version','2020110900'),(632,'report_backups','version','2020110900'),(633,'report_competency','version','2020110900'),(634,'report_completion','version','2020110900'),(636,'report_configlog','version','2020110900'),(637,'report_courseoverview','version','2020110900'),(638,'report_eventlist','version','2020110900'),(639,'report_infectedfiles','version','2020110900'),(640,'report_insights','version','2020110900'),(641,'report_log','version','2020110900'),(643,'report_loglive','version','2020110900'),(644,'report_outline','version','2020110900'),(646,'report_participation','version','2020110900'),(648,'report_performance','version','2020110900'),(649,'report_progress','version','2020110900'),(651,'report_questioninstances','version','2020110900'),(652,'report_security','version','2020110900'),(653,'report_stats','version','2020110900'),(655,'report_status','version','2020110900'),(656,'report_usersessions','version','2020110900'),(657,'gradeexport_ods','version','2020110900'),(658,'gradeexport_txt','version','2020110900'),(659,'gradeexport_xls','version','2020110900'),(660,'gradeexport_xml','version','2020110900'),(661,'gradeimport_csv','version','2020110900'),(662,'gradeimport_direct','version','2020110900'),(663,'gradeimport_xml','version','2020110900'),(664,'gradereport_grader','version','2020110900'),(665,'gradereport_history','version','2020110900'),(666,'gradereport_outcomes','version','2020110900'),(667,'gradereport_overview','version','2020110900'),(668,'gradereport_singleview','version','2020110900'),(669,'gradereport_user','version','2020110900'),(670,'gradingform_guide','version','2020110900'),(671,'gradingform_rubric','version','2020110900'),(672,'mlbackend_php','version','2020110900'),(673,'mlbackend_python','version','2020110900'),(674,'mnetservice_enrol','version','2020110900'),(675,'webservice_rest','version','2020110900'),(676,'webservice_soap','version','2020110900'),(677,'webservice_xmlrpc','version','2020110900'),(678,'repository_areafiles','version','2020110900'),(680,'areafiles','enablecourseinstances','0'),(681,'areafiles','enableuserinstances','0'),(682,'repository_boxnet','version','2020110900'),(683,'repository_contentbank','version','2020110900'),(685,'contentbank','enablecourseinstances','0'),(686,'contentbank','enableuserinstances','0'),(687,'repository_coursefiles','version','2020110900'),(688,'repository_dropbox','version','2020110900'),(689,'repository_equella','version','2020110900'),(690,'repository_filesystem','version','2020110900'),(691,'repository_flickr','version','2020110900'),(692,'repository_flickr_public','version','2020110900'),(693,'repository_googledocs','version','2020110900'),(694,'repository_local','version','2020110900'),(696,'local','enablecourseinstances','0'),(697,'local','enableuserinstances','0'),(698,'repository_merlot','version','2020110900'),(699,'repository_nextcloud','version','2020110900'),(700,'repository_onedrive','version','2020110900'),(701,'repository_picasa','version','2020110900'),(702,'repository_recent','version','2020110900'),(704,'recent','enablecourseinstances','0'),(705,'recent','enableuserinstances','0'),(706,'repository_s3','version','2020110900'),(707,'repository_skydrive','version','2020110900'),(708,'repository_upload','version','2020110900'),(710,'upload','enablecourseinstances','0'),(711,'upload','enableuserinstances','0'),(712,'repository_url','version','2020110900'),(714,'url','enablecourseinstances','0'),(715,'url','enableuserinstances','0'),(716,'repository_user','version','2020110900'),(718,'user','enablecourseinstances','0'),(719,'user','enableuserinstances','0'),(720,'repository_webdav','version','2020110900'),(721,'repository_wikimedia','version','2020110900'),(723,'wikimedia','enablecourseinstances','0'),(724,'wikimedia','enableuserinstances','0'),(725,'repository_youtube','version','2020110900'),(727,'portfolio_boxnet','version','2020110900'),(728,'portfolio_download','version','2020110900'),(729,'portfolio_flickr','version','2020110900'),(730,'portfolio_googledocs','version','2020110900'),(731,'portfolio_mahara','version','2020110900'),(732,'portfolio_picasa','version','2020110900'),(733,'search_simpledb','version','2020110900'),(735,'search_solr','version','2020110900'),(736,'qbehaviour_adaptive','version','2020110900'),(737,'qbehaviour_adaptivenopenalty','version','2020110900'),(738,'qbehaviour_deferredcbm','version','2020110900'),(739,'qbehaviour_deferredfeedback','version','2020110900'),(740,'qbehaviour_immediatecbm','version','2020110900'),(741,'qbehaviour_immediatefeedback','version','2020110900'),(742,'qbehaviour_informationitem','version','2020110900'),(743,'qbehaviour_interactive','version','2020110900'),(744,'qbehaviour_interactivecountback','version','2020110900'),(745,'qbehaviour_manualgraded','version','2020110900'),(747,'question','disabledbehaviours','manualgraded'),(748,'qbehaviour_missing','version','2020110900'),(749,'qformat_aiken','version','2020110900'),(750,'qformat_blackboard_six','version','2020110900'),(751,'qformat_examview','version','2020110900'),(752,'qformat_gift','version','2020110900'),(753,'qformat_missingword','version','2020110900'),(754,'qformat_multianswer','version','2020110900'),(755,'qformat_webct','version','2020110900'),(756,'qformat_xhtml','version','2020110900'),(757,'qformat_xml','version','2020110900'),(758,'tool_analytics','version','2020110900'),(759,'tool_availabilityconditions','version','2020110900'),(760,'tool_behat','version','2020110900'),(761,'tool_capability','version','2020110900'),(762,'tool_cohortroles','version','2020110900'),(763,'tool_customlang','version','2020110900'),(765,'tool_dataprivacy','version','2020110900'),(766,'message','airnotifier_provider_tool_dataprivacy_contactdataprotectionofficer_permitted','permitted'),(767,'message','email_provider_tool_dataprivacy_contactdataprotectionofficer_permitted','permitted'),(768,'message','jabber_provider_tool_dataprivacy_contactdataprotectionofficer_permitted','permitted'),(769,'message','popup_provider_tool_dataprivacy_contactdataprotectionofficer_permitted','permitted'),(770,'message','message_provider_tool_dataprivacy_contactdataprotectionofficer_loggedin','email,popup'),(771,'message','message_provider_tool_dataprivacy_contactdataprotectionofficer_loggedoff','email,popup'),(772,'message','airnotifier_provider_tool_dataprivacy_datarequestprocessingresults_permitted','permitted'),(773,'message','email_provider_tool_dataprivacy_datarequestprocessingresults_permitted','permitted'),(774,'message','jabber_provider_tool_dataprivacy_datarequestprocessingresults_permitted','permitted'),(775,'message','popup_provider_tool_dataprivacy_datarequestprocessingresults_permitted','permitted'),(776,'message','message_provider_tool_dataprivacy_datarequestprocessingresults_loggedin','email,popup'),(777,'message','message_provider_tool_dataprivacy_datarequestprocessingresults_loggedoff','email,popup'),(778,'message','airnotifier_provider_tool_dataprivacy_notifyexceptions_permitted','permitted'),(779,'message','email_provider_tool_dataprivacy_notifyexceptions_permitted','permitted'),(780,'message','jabber_provider_tool_dataprivacy_notifyexceptions_permitted','permitted'),(781,'message','popup_provider_tool_dataprivacy_notifyexceptions_permitted','permitted'),(782,'message','message_provider_tool_dataprivacy_notifyexceptions_loggedin','email'),(783,'message','message_provider_tool_dataprivacy_notifyexceptions_loggedoff','email'),(784,'tool_dbtransfer','version','2020110900'),(785,'tool_filetypes','version','2020110900'),(786,'tool_generator','version','2020110900'),(787,'tool_health','version','2020110900'),(788,'tool_httpsreplace','version','2020110900'),(789,'tool_innodb','version','2020110900'),(790,'tool_installaddon','version','2020110900'),(791,'tool_langimport','version','2020110900'),(792,'tool_licensemanager','version','2020110900'),(793,'tool_log','version','2020110900'),(795,'tool_log','enabled_stores','logstore_standard'),(796,'tool_lp','version','2020110900'),(797,'tool_lpimportcsv','version','2020110900'),(798,'tool_lpmigrate','version','2020110900'),(799,'tool_messageinbound','version','2020110900'),(800,'message','airnotifier_provider_tool_messageinbound_invalidrecipienthandler_permitted','permitted'),(801,'message','email_provider_tool_messageinbound_invalidrecipienthandler_permitted','permitted'),(802,'message','jabber_provider_tool_messageinbound_invalidrecipienthandler_permitted','permitted'),(803,'message','popup_provider_tool_messageinbound_invalidrecipienthandler_permitted','permitted'),(804,'message','message_provider_tool_messageinbound_invalidrecipienthandler_loggedin','email'),(805,'message','message_provider_tool_messageinbound_invalidrecipienthandler_loggedoff','email'),(806,'message','airnotifier_provider_tool_messageinbound_messageprocessingerror_permitted','permitted'),(807,'message','email_provider_tool_messageinbound_messageprocessingerror_permitted','permitted'),(808,'message','jabber_provider_tool_messageinbound_messageprocessingerror_permitted','permitted'),(809,'message','popup_provider_tool_messageinbound_messageprocessingerror_permitted','permitted'),(810,'message','message_provider_tool_messageinbound_messageprocessingerror_loggedin','email'),(811,'message','message_provider_tool_messageinbound_messageprocessingerror_loggedoff','email'),(812,'message','airnotifier_provider_tool_messageinbound_messageprocessingsuccess_permitted','permitted'),(813,'message','email_provider_tool_messageinbound_messageprocessingsuccess_permitted','permitted'),(814,'message','jabber_provider_tool_messageinbound_messageprocessingsuccess_permitted','permitted'),(815,'message','popup_provider_tool_messageinbound_messageprocessingsuccess_permitted','permitted'),(816,'message','message_provider_tool_messageinbound_messageprocessingsuccess_loggedin','email'),(817,'message','message_provider_tool_messageinbound_messageprocessingsuccess_loggedoff','email'),(818,'tool_mobile','version','2020110900'),(819,'tool_monitor','version','2020110900'),(820,'message','airnotifier_provider_tool_monitor_notification_permitted','permitted'),(821,'message','email_provider_tool_monitor_notification_permitted','permitted'),(822,'message','jabber_provider_tool_monitor_notification_permitted','permitted'),(823,'message','popup_provider_tool_monitor_notification_permitted','permitted'),(824,'message','message_provider_tool_monitor_notification_loggedin','email'),(825,'message','message_provider_tool_monitor_notification_loggedoff','email'),(826,'tool_moodlenet','version','2020110900'),(827,'tool_multilangupgrade','version','2020110900'),(828,'tool_oauth2','version','2020110900'),(829,'tool_phpunit','version','2020110900'),(830,'tool_policy','version','2020110900'),(831,'tool_profiling','version','2020110900'),(832,'tool_recyclebin','version','2020110900'),(833,'tool_replace','version','2020110900'),(834,'tool_spamcleaner','version','2020110900'),(835,'tool_task','version','2020110900'),(836,'tool_templatelibrary','version','2020110900'),(837,'tool_unsuproles','version','2020110900'),(839,'tool_uploadcourse','version','2020110900'),(840,'tool_uploaduser','version','2020110900'),(841,'tool_usertours','version','2020110900'),(843,'tool_xmldb','version','2020110900'),(844,'cachestore_apcu','version','2020110900'),(845,'cachestore_file','version','2020110900'),(846,'cachestore_memcached','version','2020110900'),(847,'cachestore_mongodb','version','2020110900'),(848,'cachestore_redis','version','2020110900'),(849,'cachestore_session','version','2020110900'),(850,'cachestore_static','version','2020110900'),(851,'cachelock_file','version','2020110900'),(852,'fileconverter_googledrive','version','2020110900'),(853,'fileconverter_unoconv','version','2020110900'),(855,'contenttype_h5p','version','2020110900'),(856,'theme_boost','version','2020110900'),(857,'theme_classic','version','2020110900'),(858,'local_chat_attachments','version','10026'),(859,'h5plib_v124','version','2020110900'),(860,'paygw_paypal','version','2020110901'),(862,'assignsubmission_comments','version','2020110900'),(864,'assignsubmission_file','sortorder','1'),(865,'assignsubmission_comments','sortorder','2'),(866,'assignsubmission_onlinetext','sortorder','0'),(867,'assignsubmission_file','version','2020110900'),(868,'assignsubmission_onlinetext','version','2020110900'),(870,'assignfeedback_comments','version','2020110900'),(872,'assignfeedback_comments','sortorder','0'),(873,'assignfeedback_editpdf','sortorder','1'),(874,'assignfeedback_file','sortorder','3'),(875,'assignfeedback_offline','sortorder','2'),(876,'assignfeedback_editpdf','version','2020110900'),(878,'assignfeedback_file','version','2020110900'),(880,'assignfeedback_offline','version','2020110900'),(881,'assignment_offline','version','2020110900'),(882,'assignment_online','version','2020110900'),(883,'assignment_upload','version','2020110900'),(884,'assignment_uploadsingle','version','2020110900'),(885,'booktool_exportimscp','version','2020110900'),(886,'booktool_importhtml','version','2020110900'),(887,'booktool_print','version','2020110900'),(888,'datafield_checkbox','version','2020110900'),(889,'datafield_date','version','2020110900'),(890,'datafield_file','version','2020110900'),(891,'datafield_latlong','version','2020110900'),(892,'datafield_menu','version','2020110900'),(893,'datafield_multimenu','version','2020110900'),(894,'datafield_number','version','2020110900'),(895,'datafield_picture','version','2020110900'),(896,'datafield_radiobutton','version','2020110900'),(897,'datafield_text','version','2020110900'),(898,'datafield_textarea','version','2020110900'),(899,'datafield_url','version','2020110900'),(900,'datapreset_imagegallery','version','2020110900'),(901,'forumreport_summary','version','2020110900'),(902,'ltiservice_basicoutcomes','version','2020110900'),(903,'ltiservice_gradebookservices','version','2020110900'),(904,'ltiservice_memberships','version','2020110900'),(905,'ltiservice_profile','version','2020110900'),(906,'ltiservice_toolproxy','version','2020110900'),(907,'ltiservice_toolsettings','version','2020110900'),(908,'quiz_grading','version','2020110900'),(910,'quiz_overview','version','2020110900'),(912,'quiz_responses','version','2020110900'),(914,'quiz_statistics','version','2020110900'),(916,'quizaccess_delaybetweenattempts','version','2020110900'),(917,'quizaccess_ipaddress','version','2020110900'),(918,'quizaccess_numattempts','version','2020110900'),(919,'quizaccess_offlineattempts','version','2020110900'),(920,'quizaccess_openclosedate','version','2020110900'),(921,'quizaccess_password','version','2020110900'),(922,'quizaccess_seb','version','2020110900'),(924,'quizaccess_securewindow','version','2020110900'),(925,'quizaccess_timelimit','version','2020110900'),(926,'scormreport_basic','version','2020110900'),(927,'scormreport_graphs','version','2020110900'),(928,'scormreport_interactions','version','2020110900'),(929,'scormreport_objectives','version','2020110900'),(930,'workshopform_accumulative','version','2020110900'),(932,'workshopform_comments','version','2020110900'),(934,'workshopform_numerrors','version','2020110900'),(936,'workshopform_rubric','version','2020110900'),(938,'workshopallocation_manual','version','2020110900'),(939,'workshopallocation_random','version','2020110900'),(940,'workshopallocation_scheduled','version','2020110900'),(941,'workshopeval_best','version','2020110900'),(942,'atto_accessibilitychecker','version','2020110900'),(943,'atto_accessibilityhelper','version','2020110900'),(944,'atto_align','version','2020110900'),(945,'atto_backcolor','version','2020110900'),(946,'atto_bold','version','2020110900'),(947,'atto_charmap','version','2020110900'),(948,'atto_clear','version','2020110900'),(949,'atto_collapse','version','2020110900'),(950,'atto_emojipicker','version','2020110900'),(951,'atto_emoticon','version','2020110900'),(952,'atto_equation','version','2020110900'),(953,'atto_fontcolor','version','2020110900'),(954,'atto_h5p','version','2020110900'),(955,'atto_html','version','2020110900'),(956,'atto_image','version','2020110900'),(957,'atto_indent','version','2020110900'),(958,'atto_italic','version','2020110900'),(959,'atto_link','version','2020110900'),(960,'atto_managefiles','version','2020110900'),(961,'atto_media','version','2020110900'),(962,'atto_noautolink','version','2020110900'),(963,'atto_orderedlist','version','2020110900'),(964,'atto_recordrtc','version','2020110900'),(965,'atto_rtl','version','2020110900'),(966,'atto_strike','version','2020110900'),(967,'atto_subscript','version','2020110900'),(968,'atto_superscript','version','2020110900'),(969,'atto_table','version','2020110900'),(970,'atto_title','version','2020110900'),(971,'atto_underline','version','2020110900'),(972,'atto_undo','version','2020110900'),(973,'atto_unorderedlist','version','2020110900'),(974,'tinymce_ctrlhelp','version','2020110900'),(975,'tinymce_managefiles','version','2020110900'),(976,'tinymce_moodleemoticon','version','2020110900'),(977,'tinymce_moodleimage','version','2020110900'),(978,'tinymce_moodlemedia','version','2020110900'),(979,'tinymce_moodlenolink','version','2020110900'),(980,'tinymce_pdw','version','2020110900'),(981,'tinymce_spellchecker','version','2020110900'),(983,'tinymce_wrap','version','2020110900'),(984,'logstore_database','version','2020110900'),(985,'logstore_legacy','version','2020110900'),(986,'logstore_standard','version','2020110900'),(987,'tool_dataprivacy','contactdataprotectionofficer','0'),(988,'tool_dataprivacy','automaticdataexportapproval','0'),(989,'tool_dataprivacy','automaticdatadeletionapproval','0'),(990,'tool_dataprivacy','automaticdeletionrequests','1'),(991,'tool_dataprivacy','privacyrequestexpiry','604800'),(992,'tool_dataprivacy','requireallenddatesforuserdeletion','1'),(993,'tool_dataprivacy','showdataretentionsummary','1'),(994,'tool_log','exportlog','1'),(995,'analytics','logstore','logstore_standard'),(996,'assign','feedback_plugin_for_gradebook','assignfeedback_comments'),(997,'assign','showrecentsubmissions','0'),(998,'assign','submissionreceipts','1'),(999,'assign','submissionstatement','This submission is my own work, except where I have acknowledged the use of the works of other people.'),(1000,'assign','submissionstatementteamsubmission','This submission is the work of my group, except where we have acknowledged the use of the works of other people.'),(1001,'assign','submissionstatementteamsubmissionallsubmit','This submission is my own work as a group member, except where I have acknowledged the use of the works of other people.'),(1002,'assign','maxperpage','-1'),(1003,'assign','alwaysshowdescription','1'),(1004,'assign','alwaysshowdescription_adv',''),(1005,'assign','alwaysshowdescription_locked',''),(1006,'assign','allowsubmissionsfromdate','0'),(1007,'assign','allowsubmissionsfromdate_enabled','1'),(1008,'assign','allowsubmissionsfromdate_adv',''),(1009,'assign','duedate','604800'),(1010,'assign','duedate_enabled','1'),(1011,'assign','duedate_adv',''),(1012,'assign','cutoffdate','1209600'),(1013,'assign','cutoffdate_enabled',''),(1014,'assign','cutoffdate_adv',''),(1015,'assign','gradingduedate','1209600'),(1016,'assign','gradingduedate_enabled','1'),(1017,'assign','gradingduedate_adv',''),(1018,'assign','submissiondrafts','0'),(1019,'assign','submissiondrafts_adv',''),(1020,'assign','submissiondrafts_locked',''),(1021,'assign','requiresubmissionstatement','0'),(1022,'assign','requiresubmissionstatement_adv',''),(1023,'assign','requiresubmissionstatement_locked',''),(1024,'assign','attemptreopenmethod','none'),(1025,'assign','attemptreopenmethod_adv',''),(1026,'assign','attemptreopenmethod_locked',''),(1027,'assign','maxattempts','-1'),(1028,'assign','maxattempts_adv',''),(1029,'assign','maxattempts_locked',''),(1030,'assign','teamsubmission','0'),(1031,'assign','teamsubmission_adv',''),(1032,'assign','teamsubmission_locked',''),(1033,'assign','preventsubmissionnotingroup','0'),(1034,'assign','preventsubmissionnotingroup_adv',''),(1035,'assign','preventsubmissionnotingroup_locked',''),(1036,'assign','requireallteammemberssubmit','0'),(1037,'assign','requireallteammemberssubmit_adv',''),(1038,'assign','requireallteammemberssubmit_locked',''),(1039,'assign','teamsubmissiongroupingid',''),(1040,'assign','teamsubmissiongroupingid_adv',''),(1041,'assign','sendnotifications','0'),(1042,'assign','sendnotifications_adv',''),(1043,'assign','sendnotifications_locked',''),(1044,'assign','sendlatenotifications','0'),(1045,'assign','sendlatenotifications_adv',''),(1046,'assign','sendlatenotifications_locked',''),(1047,'assign','sendstudentnotifications','1'),(1048,'assign','sendstudentnotifications_adv',''),(1049,'assign','sendstudentnotifications_locked',''),(1050,'assign','blindmarking','0'),(1051,'assign','blindmarking_adv',''),(1052,'assign','blindmarking_locked',''),(1053,'assign','hidegrader','0'),(1054,'assign','hidegrader_adv',''),(1055,'assign','hidegrader_locked',''),(1056,'assign','markingworkflow','0'),(1057,'assign','markingworkflow_adv',''),(1058,'assign','markingworkflow_locked',''),(1059,'assign','markingallocation','0'),(1060,'assign','markingallocation_adv',''),(1061,'assign','markingallocation_locked',''),(1062,'assignsubmission_file','default','1'),(1063,'assignsubmission_file','maxfiles','20'),(1064,'assignsubmission_file','filetypes',''),(1065,'assignsubmission_file','maxbytes','0'),(1066,'assignsubmission_onlinetext','default','0'),(1067,'assignfeedback_comments','default','1'),(1068,'assignfeedback_comments','inline','0'),(1069,'assignfeedback_comments','inline_adv',''),(1070,'assignfeedback_comments','inline_locked',''),(1071,'assignfeedback_editpdf','default','1'),(1072,'assignfeedback_editpdf','stamps',''),(1073,'assignfeedback_file','default','0'),(1074,'assignfeedback_offline','default','0'),(1075,'book','numberingoptions','0,1,2,3'),(1076,'book','navoptions','0,1,2'),(1077,'book','numbering','1'),(1078,'book','navstyle','1'),(1079,'resource','framesize','130'),(1080,'resource','displayoptions','0,1,4,5,6'),(1081,'resource','printintro','1'),(1082,'resource','display','0'),(1083,'resource','showsize','0'),(1084,'resource','showtype','0'),(1085,'resource','showdate','0'),(1086,'resource','popupwidth','620'),(1087,'resource','popupheight','450'),(1088,'resource','filterfiles','0'),(1089,'folder','showexpanded','1'),(1090,'folder','maxsizetodownload','0'),(1091,'imscp','keepold','1'),(1092,'imscp','keepold_adv',''),(1093,'label','dndmedia','1'),(1094,'label','dndresizewidth','400'),(1095,'label','dndresizeheight','400'),(1096,'mod_lesson','mediafile',''),(1097,'mod_lesson','mediafile_adv','1'),(1098,'mod_lesson','mediawidth','640'),(1099,'mod_lesson','mediaheight','480'),(1100,'mod_lesson','mediaclose','0'),(1101,'mod_lesson','progressbar','0'),(1102,'mod_lesson','progressbar_adv',''),(1103,'mod_lesson','ongoing','0'),(1104,'mod_lesson','ongoing_adv','1'),(1105,'mod_lesson','displayleftmenu','0'),(1106,'mod_lesson','displayleftmenu_adv',''),(1107,'mod_lesson','displayleftif','0'),(1108,'mod_lesson','displayleftif_adv','1'),(1109,'mod_lesson','slideshow','0'),(1110,'mod_lesson','slideshow_adv','1'),(1111,'mod_lesson','slideshowwidth','640'),(1112,'mod_lesson','slideshowheight','480'),(1113,'mod_lesson','slideshowbgcolor','#FFFFFF'),(1114,'mod_lesson','maxanswers','5'),(1115,'mod_lesson','maxanswers_adv','1'),(1116,'mod_lesson','defaultfeedback','0'),(1117,'mod_lesson','defaultfeedback_adv','1'),(1118,'mod_lesson','activitylink',''),(1119,'mod_lesson','activitylink_adv','1'),(1120,'mod_lesson','timelimit','0'),(1121,'mod_lesson','timelimit_adv',''),(1122,'mod_lesson','password','0'),(1123,'mod_lesson','password_adv','1'),(1124,'mod_lesson','modattempts','0'),(1125,'mod_lesson','modattempts_adv',''),(1126,'mod_lesson','displayreview','0'),(1127,'mod_lesson','displayreview_adv',''),(1128,'mod_lesson','maximumnumberofattempts','1'),(1129,'mod_lesson','maximumnumberofattempts_adv',''),(1130,'mod_lesson','defaultnextpage','0'),(1131,'mod_lesson','defaultnextpage_adv','1'),(1132,'mod_lesson','numberofpagestoshow','1'),(1133,'mod_lesson','numberofpagestoshow_adv','1'),(1134,'mod_lesson','practice','0'),(1135,'mod_lesson','practice_adv',''),(1136,'mod_lesson','customscoring','1'),(1137,'mod_lesson','customscoring_adv','1'),(1138,'mod_lesson','retakesallowed','0'),(1139,'mod_lesson','retakesallowed_adv',''),(1140,'mod_lesson','handlingofretakes','0'),(1141,'mod_lesson','handlingofretakes_adv','1'),(1142,'mod_lesson','minimumnumberofquestions','0'),(1143,'mod_lesson','minimumnumberofquestions_adv','1'),(1144,'page','displayoptions','5'),(1145,'page','printheading','1'),(1146,'page','printintro','0'),(1147,'page','printlastmodified','1'),(1148,'page','display','5'),(1149,'page','popupwidth','620'),(1150,'page','popupheight','450'),(1151,'quiz','timelimit','0'),(1152,'quiz','timelimit_adv',''),(1153,'quiz','overduehandling','autosubmit'),(1154,'quiz','overduehandling_adv',''),(1155,'quiz','graceperiod','86400'),(1156,'quiz','graceperiod_adv',''),(1157,'quiz','graceperiodmin','60'),(1158,'quiz','attempts','0'),(1159,'quiz','attempts_adv',''),(1160,'quiz','grademethod','1'),(1161,'quiz','grademethod_adv',''),(1162,'quiz','maximumgrade','10'),(1163,'quiz','questionsperpage','1'),(1164,'quiz','questionsperpage_adv',''),(1165,'quiz','navmethod','free'),(1166,'quiz','navmethod_adv','1'),(1167,'quiz','shuffleanswers','1'),(1168,'quiz','shuffleanswers_adv',''),(1169,'quiz','preferredbehaviour','deferredfeedback'),(1170,'quiz','canredoquestions','0'),(1171,'quiz','canredoquestions_adv','1'),(1172,'quiz','attemptonlast','0'),(1173,'quiz','attemptonlast_adv','1'),(1174,'quiz','reviewattempt','69904'),(1175,'quiz','reviewcorrectness','69904'),(1176,'quiz','reviewmarks','69904'),(1177,'quiz','reviewspecificfeedback','69904'),(1178,'quiz','reviewgeneralfeedback','69904'),(1179,'quiz','reviewrightanswer','69904'),(1180,'quiz','reviewoverallfeedback','4368'),(1181,'quiz','showuserpicture','0'),(1182,'quiz','showuserpicture_adv',''),(1183,'quiz','decimalpoints','2'),(1184,'quiz','decimalpoints_adv',''),(1185,'quiz','questiondecimalpoints','-1'),(1186,'quiz','questiondecimalpoints_adv',''),(1187,'quiz','showblocks','0'),(1188,'quiz','showblocks_adv','1'),(1189,'quiz','quizpassword',''),(1190,'quiz','quizpassword_adv',''),(1191,'quiz','quizpassword_required',''),(1192,'quiz','subnet',''),(1193,'quiz','subnet_adv','1'),(1194,'quiz','delay1','0'),(1195,'quiz','delay1_adv','1'),(1196,'quiz','delay2','0'),(1197,'quiz','delay2_adv','1'),(1198,'quiz','browsersecurity','-'),(1199,'quiz','browsersecurity_adv','1'),(1200,'quiz','initialnumfeedbacks','2'),(1201,'quiz','autosaveperiod','60'),(1202,'quizaccess_seb','autoreconfigureseb','1'),(1203,'quizaccess_seb','showseblinks','seb,http'),(1204,'quizaccess_seb','downloadlink','https://safeexambrowser.org/download_en.html'),(1205,'quizaccess_seb','quizpasswordrequired','0'),(1206,'quizaccess_seb','displayblocksbeforestart','0'),(1207,'quizaccess_seb','displayblockswhenfinished','1'),(1208,'scorm','displaycoursestructure','0'),(1209,'scorm','displaycoursestructure_adv',''),(1210,'scorm','popup','0'),(1211,'scorm','popup_adv',''),(1212,'scorm','displayactivityname','1'),(1213,'scorm','framewidth','100'),(1214,'scorm','framewidth_adv','1'),(1215,'scorm','frameheight','500'),(1216,'scorm','frameheight_adv','1'),(1217,'scorm','winoptgrp_adv','1'),(1218,'scorm','scrollbars','0'),(1219,'scorm','directories','0'),(1220,'scorm','location','0'),(1221,'scorm','menubar','0'),(1222,'scorm','toolbar','0'),(1223,'scorm','status','0'),(1224,'scorm','skipview','0'),(1225,'scorm','skipview_adv','1'),(1226,'scorm','hidebrowse','0'),(1227,'scorm','hidebrowse_adv','1'),(1228,'scorm','hidetoc','0'),(1229,'scorm','hidetoc_adv','1'),(1230,'scorm','nav','1'),(1231,'scorm','nav_adv','1'),(1232,'scorm','navpositionleft','-100'),(1233,'scorm','navpositionleft_adv','1'),(1234,'scorm','navpositiontop','-100'),(1235,'scorm','navpositiontop_adv','1'),(1236,'scorm','collapsetocwinsize','767'),(1237,'scorm','collapsetocwinsize_adv','1'),(1238,'scorm','displayattemptstatus','1'),(1239,'scorm','displayattemptstatus_adv',''),(1240,'scorm','grademethod','1'),(1241,'scorm','maxgrade','100'),(1242,'scorm','maxattempt','0'),(1243,'scorm','whatgrade','0'),(1244,'scorm','forcecompleted','0'),(1245,'scorm','forcenewattempt','0'),(1246,'scorm','autocommit','0'),(1247,'scorm','masteryoverride','1'),(1248,'scorm','lastattemptlock','0'),(1249,'scorm','auto','0'),(1250,'scorm','updatefreq','0'),(1251,'scorm','scormstandard','0'),(1252,'scorm','allowtypeexternal','0'),(1253,'scorm','allowtypelocalsync','0'),(1254,'scorm','allowtypeexternalaicc','0'),(1255,'scorm','allowaicchacp','0'),(1256,'scorm','aicchacptimeout','30'),(1257,'scorm','aicchacpkeepsessiondata','1'),(1258,'scorm','aiccuserid','1'),(1259,'scorm','forcejavascript','1'),(1260,'scorm','allowapidebug','0'),(1261,'scorm','apidebugmask','.*'),(1262,'scorm','protectpackagedownloads','0'),(1263,'url','framesize','130'),(1264,'url','secretphrase',''),(1265,'url','rolesinparams','0'),(1266,'url','displayoptions','0,1,5,6'),(1267,'url','printintro','1'),(1268,'url','display','0'),(1269,'url','popupwidth','620'),(1270,'url','popupheight','450'),(1271,'workshop','grade','80'),(1272,'workshop','gradinggrade','20'),(1273,'workshop','gradedecimals','0'),(1274,'workshop','maxbytes','0'),(1275,'workshop','strategy','accumulative'),(1276,'workshop','examplesmode','0'),(1277,'workshopallocation_random','numofreviews','5'),(1278,'workshopform_numerrors','grade0','No'),(1279,'workshopform_numerrors','grade1','Yes'),(1280,'workshopeval_best','comparison','5'),(1281,'tool_recyclebin','coursebinenable','1'),(1282,'tool_recyclebin','coursebinexpiry','604800'),(1283,'tool_recyclebin','categorybinenable','1'),(1284,'tool_recyclebin','categorybinexpiry','604800'),(1285,'tool_recyclebin','autohide','1'),(1286,'antivirus_clamav','runningmethod','commandline'),(1287,'antivirus_clamav','pathtoclam',''),(1288,'antivirus_clamav','pathtounixsocket',''),(1289,'antivirus_clamav','tcpsockethost',''),(1290,'antivirus_clamav','tcpsocketport','3310'),(1291,'antivirus_clamav','clamfailureonupload','donothing'),(1292,'antivirus_clamav','tries','1'),(1293,'auth_cas','field_map_firstname',''),(1294,'auth_cas','field_updatelocal_firstname','oncreate'),(1295,'auth_cas','field_updateremote_firstname','0'),(1296,'auth_cas','field_lock_firstname','unlocked'),(1297,'auth_cas','field_map_lastname',''),(1298,'auth_cas','field_updatelocal_lastname','oncreate'),(1299,'auth_cas','field_updateremote_lastname','0'),(1300,'auth_cas','field_lock_lastname','unlocked'),(1301,'auth_cas','field_map_email',''),(1302,'auth_cas','field_updatelocal_email','oncreate'),(1303,'auth_cas','field_updateremote_email','0'),(1304,'auth_cas','field_lock_email','unlocked'),(1305,'auth_cas','field_map_city',''),(1306,'auth_cas','field_updatelocal_city','oncreate'),(1307,'auth_cas','field_updateremote_city','0'),(1308,'auth_cas','field_lock_city','unlocked'),(1309,'auth_cas','field_map_country',''),(1310,'auth_cas','field_updatelocal_country','oncreate'),(1311,'auth_cas','field_updateremote_country','0'),(1312,'auth_cas','field_lock_country','unlocked'),(1313,'auth_cas','field_map_lang',''),(1314,'auth_cas','field_updatelocal_lang','oncreate'),(1315,'auth_cas','field_updateremote_lang','0'),(1316,'auth_cas','field_lock_lang','unlocked'),(1317,'auth_cas','field_map_description',''),(1318,'auth_cas','field_updatelocal_description','oncreate'),(1319,'auth_cas','field_updateremote_description','0'),(1320,'auth_cas','field_lock_description','unlocked'),(1321,'auth_cas','field_map_url',''),(1322,'auth_cas','field_updatelocal_url','oncreate'),(1323,'auth_cas','field_updateremote_url','0'),(1324,'auth_cas','field_lock_url','unlocked'),(1325,'auth_cas','field_map_idnumber',''),(1326,'auth_cas','field_updatelocal_idnumber','oncreate'),(1327,'auth_cas','field_updateremote_idnumber','0'),(1328,'auth_cas','field_lock_idnumber','unlocked'),(1329,'auth_cas','field_map_institution',''),(1330,'auth_cas','field_updatelocal_institution','oncreate'),(1331,'auth_cas','field_updateremote_institution','0'),(1332,'auth_cas','field_lock_institution','unlocked'),(1333,'auth_cas','field_map_department',''),(1334,'auth_cas','field_updatelocal_department','oncreate'),(1335,'auth_cas','field_updateremote_department','0'),(1336,'auth_cas','field_lock_department','unlocked'),(1337,'auth_cas','field_map_phone1',''),(1338,'auth_cas','field_updatelocal_phone1','oncreate'),(1339,'auth_cas','field_updateremote_phone1','0'),(1340,'auth_cas','field_lock_phone1','unlocked'),(1341,'auth_cas','field_map_phone2',''),(1342,'auth_cas','field_updatelocal_phone2','oncreate'),(1343,'auth_cas','field_updateremote_phone2','0'),(1344,'auth_cas','field_lock_phone2','unlocked'),(1345,'auth_cas','field_map_address',''),(1346,'auth_cas','field_updatelocal_address','oncreate'),(1347,'auth_cas','field_updateremote_address','0'),(1348,'auth_cas','field_lock_address','unlocked'),(1349,'auth_cas','field_map_firstnamephonetic',''),(1350,'auth_cas','field_updatelocal_firstnamephonetic','oncreate'),(1351,'auth_cas','field_updateremote_firstnamephonetic','0'),(1352,'auth_cas','field_lock_firstnamephonetic','unlocked'),(1353,'auth_cas','field_map_lastnamephonetic',''),(1354,'auth_cas','field_updatelocal_lastnamephonetic','oncreate'),(1355,'auth_cas','field_updateremote_lastnamephonetic','0'),(1356,'auth_cas','field_lock_lastnamephonetic','unlocked'),(1357,'auth_cas','field_map_middlename',''),(1358,'auth_cas','field_updatelocal_middlename','oncreate'),(1359,'auth_cas','field_updateremote_middlename','0'),(1360,'auth_cas','field_lock_middlename','unlocked'),(1361,'auth_cas','field_map_alternatename',''),(1362,'auth_cas','field_updatelocal_alternatename','oncreate'),(1363,'auth_cas','field_updateremote_alternatename','0'),(1364,'auth_cas','field_lock_alternatename','unlocked'),(1365,'auth_email','recaptcha','0'),(1366,'auth_email','field_lock_firstname','unlocked'),(1367,'auth_email','field_lock_lastname','unlocked'),(1368,'auth_email','field_lock_email','unlocked'),(1369,'auth_email','field_lock_city','unlocked'),(1370,'auth_email','field_lock_country','unlocked'),(1371,'auth_email','field_lock_lang','unlocked'),(1372,'auth_email','field_lock_description','unlocked'),(1373,'auth_email','field_lock_url','unlocked'),(1374,'auth_email','field_lock_idnumber','unlocked'),(1375,'auth_email','field_lock_institution','unlocked'),(1376,'auth_email','field_lock_department','unlocked'),(1377,'auth_email','field_lock_phone1','unlocked'),(1378,'auth_email','field_lock_phone2','unlocked'),(1379,'auth_email','field_lock_address','unlocked'),(1380,'auth_email','field_lock_firstnamephonetic','unlocked'),(1381,'auth_email','field_lock_lastnamephonetic','unlocked'),(1382,'auth_email','field_lock_middlename','unlocked'),(1383,'auth_email','field_lock_alternatename','unlocked'),(1384,'auth_db','host','127.0.0.1'),(1385,'auth_db','type','mysqli'),(1386,'auth_db','sybasequoting','0'),(1387,'auth_db','name',''),(1388,'auth_db','user',''),(1389,'auth_db','pass',''),(1390,'auth_db','table',''),(1391,'auth_db','fielduser',''),(1392,'auth_db','fieldpass',''),(1393,'auth_db','passtype','plaintext'),(1394,'auth_db','extencoding','utf-8'),(1395,'auth_db','setupsql',''),(1396,'auth_db','debugauthdb','0'),(1397,'auth_db','changepasswordurl',''),(1398,'auth_db','removeuser','0'),(1399,'auth_db','updateusers','0'),(1400,'auth_db','field_map_firstname',''),(1401,'auth_db','field_updatelocal_firstname','oncreate'),(1402,'auth_db','field_updateremote_firstname','0'),(1403,'auth_db','field_lock_firstname','unlocked'),(1404,'auth_db','field_map_lastname',''),(1405,'auth_db','field_updatelocal_lastname','oncreate'),(1406,'auth_db','field_updateremote_lastname','0'),(1407,'auth_db','field_lock_lastname','unlocked'),(1408,'auth_db','field_map_email',''),(1409,'auth_db','field_updatelocal_email','oncreate'),(1410,'auth_db','field_updateremote_email','0'),(1411,'auth_db','field_lock_email','unlocked'),(1412,'auth_db','field_map_city',''),(1413,'auth_db','field_updatelocal_city','oncreate'),(1414,'auth_db','field_updateremote_city','0'),(1415,'auth_db','field_lock_city','unlocked'),(1416,'auth_db','field_map_country',''),(1417,'auth_db','field_updatelocal_country','oncreate'),(1418,'auth_db','field_updateremote_country','0'),(1419,'auth_db','field_lock_country','unlocked'),(1420,'auth_db','field_map_lang',''),(1421,'auth_db','field_updatelocal_lang','oncreate'),(1422,'auth_db','field_updateremote_lang','0'),(1423,'auth_db','field_lock_lang','unlocked'),(1424,'auth_db','field_map_description',''),(1425,'auth_db','field_updatelocal_description','oncreate'),(1426,'auth_db','field_updateremote_description','0'),(1427,'auth_db','field_lock_description','unlocked'),(1428,'auth_db','field_map_url',''),(1429,'auth_db','field_updatelocal_url','oncreate'),(1430,'auth_db','field_updateremote_url','0'),(1431,'auth_db','field_lock_url','unlocked'),(1432,'auth_db','field_map_idnumber',''),(1433,'auth_db','field_updatelocal_idnumber','oncreate'),(1434,'auth_db','field_updateremote_idnumber','0'),(1435,'auth_db','field_lock_idnumber','unlocked'),(1436,'auth_db','field_map_institution',''),(1437,'auth_db','field_updatelocal_institution','oncreate'),(1438,'auth_db','field_updateremote_institution','0'),(1439,'auth_db','field_lock_institution','unlocked'),(1440,'auth_db','field_map_department',''),(1441,'auth_db','field_updatelocal_department','oncreate'),(1442,'auth_db','field_updateremote_department','0'),(1443,'auth_db','field_lock_department','unlocked'),(1444,'auth_db','field_map_phone1',''),(1445,'auth_db','field_updatelocal_phone1','oncreate'),(1446,'auth_db','field_updateremote_phone1','0'),(1447,'auth_db','field_lock_phone1','unlocked'),(1448,'auth_db','field_map_phone2',''),(1449,'auth_db','field_updatelocal_phone2','oncreate'),(1450,'auth_db','field_updateremote_phone2','0'),(1451,'auth_db','field_lock_phone2','unlocked'),(1452,'auth_db','field_map_address',''),(1453,'auth_db','field_updatelocal_address','oncreate'),(1454,'auth_db','field_updateremote_address','0'),(1455,'auth_db','field_lock_address','unlocked'),(1456,'auth_db','field_map_firstnamephonetic',''),(1457,'auth_db','field_updatelocal_firstnamephonetic','oncreate'),(1458,'auth_db','field_updateremote_firstnamephonetic','0'),(1459,'auth_db','field_lock_firstnamephonetic','unlocked'),(1460,'auth_db','field_map_lastnamephonetic',''),(1461,'auth_db','field_updatelocal_lastnamephonetic','oncreate'),(1462,'auth_db','field_updateremote_lastnamephonetic','0'),(1463,'auth_db','field_lock_lastnamephonetic','unlocked'),(1464,'auth_db','field_map_middlename',''),(1465,'auth_db','field_updatelocal_middlename','oncreate'),(1466,'auth_db','field_updateremote_middlename','0'),(1467,'auth_db','field_lock_middlename','unlocked'),(1468,'auth_db','field_map_alternatename',''),(1469,'auth_db','field_updatelocal_alternatename','oncreate'),(1470,'auth_db','field_updateremote_alternatename','0'),(1471,'auth_db','field_lock_alternatename','unlocked'),(1472,'auth_ldap','field_map_firstname',''),(1473,'auth_ldap','field_updatelocal_firstname','oncreate'),(1474,'auth_ldap','field_updateremote_firstname','0'),(1475,'auth_ldap','field_lock_firstname','unlocked'),(1476,'auth_ldap','field_map_lastname',''),(1477,'auth_ldap','field_updatelocal_lastname','oncreate'),(1478,'auth_ldap','field_updateremote_lastname','0'),(1479,'auth_ldap','field_lock_lastname','unlocked'),(1480,'auth_ldap','field_map_email',''),(1481,'auth_ldap','field_updatelocal_email','oncreate'),(1482,'auth_ldap','field_updateremote_email','0'),(1483,'auth_ldap','field_lock_email','unlocked'),(1484,'auth_ldap','field_map_city',''),(1485,'auth_ldap','field_updatelocal_city','oncreate'),(1486,'auth_ldap','field_updateremote_city','0'),(1487,'auth_ldap','field_lock_city','unlocked'),(1488,'auth_ldap','field_map_country',''),(1489,'auth_ldap','field_updatelocal_country','oncreate'),(1490,'auth_ldap','field_updateremote_country','0'),(1491,'auth_ldap','field_lock_country','unlocked'),(1492,'auth_ldap','field_map_lang',''),(1493,'auth_ldap','field_updatelocal_lang','oncreate'),(1494,'auth_ldap','field_updateremote_lang','0'),(1495,'auth_ldap','field_lock_lang','unlocked'),(1496,'auth_ldap','field_map_description',''),(1497,'auth_ldap','field_updatelocal_description','oncreate'),(1498,'auth_ldap','field_updateremote_description','0'),(1499,'auth_ldap','field_lock_description','unlocked'),(1500,'auth_ldap','field_map_url',''),(1501,'auth_ldap','field_updatelocal_url','oncreate'),(1502,'auth_ldap','field_updateremote_url','0'),(1503,'auth_ldap','field_lock_url','unlocked'),(1504,'auth_ldap','field_map_idnumber',''),(1505,'auth_ldap','field_updatelocal_idnumber','oncreate'),(1506,'auth_ldap','field_updateremote_idnumber','0'),(1507,'auth_ldap','field_lock_idnumber','unlocked'),(1508,'auth_ldap','field_map_institution',''),(1509,'auth_ldap','field_updatelocal_institution','oncreate'),(1510,'auth_ldap','field_updateremote_institution','0'),(1511,'auth_ldap','field_lock_institution','unlocked'),(1512,'auth_ldap','field_map_department',''),(1513,'auth_ldap','field_updatelocal_department','oncreate'),(1514,'auth_ldap','field_updateremote_department','0'),(1515,'auth_ldap','field_lock_department','unlocked'),(1516,'auth_ldap','field_map_phone1',''),(1517,'auth_ldap','field_updatelocal_phone1','oncreate'),(1518,'auth_ldap','field_updateremote_phone1','0'),(1519,'auth_ldap','field_lock_phone1','unlocked'),(1520,'auth_ldap','field_map_phone2',''),(1521,'auth_ldap','field_updatelocal_phone2','oncreate'),(1522,'auth_ldap','field_updateremote_phone2','0'),(1523,'auth_ldap','field_lock_phone2','unlocked'),(1524,'auth_ldap','field_map_address',''),(1525,'auth_ldap','field_updatelocal_address','oncreate'),(1526,'auth_ldap','field_updateremote_address','0'),(1527,'auth_ldap','field_lock_address','unlocked'),(1528,'auth_ldap','field_map_firstnamephonetic',''),(1529,'auth_ldap','field_updatelocal_firstnamephonetic','oncreate'),(1530,'auth_ldap','field_updateremote_firstnamephonetic','0'),(1531,'auth_ldap','field_lock_firstnamephonetic','unlocked'),(1532,'auth_ldap','field_map_lastnamephonetic',''),(1533,'auth_ldap','field_updatelocal_lastnamephonetic','oncreate'),(1534,'auth_ldap','field_updateremote_lastnamephonetic','0'),(1535,'auth_ldap','field_lock_lastnamephonetic','unlocked'),(1536,'auth_ldap','field_map_middlename',''),(1537,'auth_ldap','field_updatelocal_middlename','oncreate'),(1538,'auth_ldap','field_updateremote_middlename','0'),(1539,'auth_ldap','field_lock_middlename','unlocked'),(1540,'auth_ldap','field_map_alternatename',''),(1541,'auth_ldap','field_updatelocal_alternatename','oncreate'),(1542,'auth_ldap','field_updateremote_alternatename','0'),(1543,'auth_ldap','field_lock_alternatename','unlocked'),(1544,'auth_manual','expiration','0'),(1545,'auth_manual','expirationtime','30'),(1546,'auth_manual','expiration_warning','0'),(1547,'auth_manual','field_lock_firstname','unlocked'),(1548,'auth_manual','field_lock_lastname','unlocked'),(1549,'auth_manual','field_lock_email','unlocked'),(1550,'auth_manual','field_lock_city','unlocked'),(1551,'auth_manual','field_lock_country','unlocked'),(1552,'auth_manual','field_lock_lang','unlocked'),(1553,'auth_manual','field_lock_description','unlocked'),(1554,'auth_manual','field_lock_url','unlocked'),(1555,'auth_manual','field_lock_idnumber','unlocked'),(1556,'auth_manual','field_lock_institution','unlocked'),(1557,'auth_manual','field_lock_department','unlocked'),(1558,'auth_manual','field_lock_phone1','unlocked'),(1559,'auth_manual','field_lock_phone2','unlocked'),(1560,'auth_manual','field_lock_address','unlocked'),(1561,'auth_manual','field_lock_firstnamephonetic','unlocked'),(1562,'auth_manual','field_lock_lastnamephonetic','unlocked'),(1563,'auth_manual','field_lock_middlename','unlocked'),(1564,'auth_manual','field_lock_alternatename','unlocked'),(1565,'auth_mnet','rpc_negotiation_timeout','30'),(1566,'auth_none','field_lock_firstname','unlocked'),(1567,'auth_none','field_lock_lastname','unlocked'),(1568,'auth_none','field_lock_email','unlocked'),(1569,'auth_none','field_lock_city','unlocked'),(1570,'auth_none','field_lock_country','unlocked'),(1571,'auth_none','field_lock_lang','unlocked'),(1572,'auth_none','field_lock_description','unlocked'),(1573,'auth_none','field_lock_url','unlocked'),(1574,'auth_none','field_lock_idnumber','unlocked'),(1575,'auth_none','field_lock_institution','unlocked'),(1576,'auth_none','field_lock_department','unlocked'),(1577,'auth_none','field_lock_phone1','unlocked'),(1578,'auth_none','field_lock_phone2','unlocked'),(1579,'auth_none','field_lock_address','unlocked'),(1580,'auth_none','field_lock_firstnamephonetic','unlocked'),(1581,'auth_none','field_lock_lastnamephonetic','unlocked'),(1582,'auth_none','field_lock_middlename','unlocked'),(1583,'auth_none','field_lock_alternatename','unlocked'),(1584,'auth_oauth2','field_lock_firstname','unlocked'),(1585,'auth_oauth2','field_lock_lastname','unlocked'),(1586,'auth_oauth2','field_lock_email','unlocked'),(1587,'auth_oauth2','field_lock_city','unlocked'),(1588,'auth_oauth2','field_lock_country','unlocked'),(1589,'auth_oauth2','field_lock_lang','unlocked'),(1590,'auth_oauth2','field_lock_description','unlocked'),(1591,'auth_oauth2','field_lock_url','unlocked'),(1592,'auth_oauth2','field_lock_idnumber','unlocked'),(1593,'auth_oauth2','field_lock_institution','unlocked'),(1594,'auth_oauth2','field_lock_department','unlocked'),(1595,'auth_oauth2','field_lock_phone1','unlocked'),(1596,'auth_oauth2','field_lock_phone2','unlocked'),(1597,'auth_oauth2','field_lock_address','unlocked'),(1598,'auth_oauth2','field_lock_firstnamephonetic','unlocked'),(1599,'auth_oauth2','field_lock_lastnamephonetic','unlocked'),(1600,'auth_oauth2','field_lock_middlename','unlocked'),(1601,'auth_oauth2','field_lock_alternatename','unlocked'),(1602,'auth_shibboleth','user_attribute',''),(1603,'auth_shibboleth','convert_data',''),(1604,'auth_shibboleth','alt_login','off'),(1605,'auth_shibboleth','organization_selection','urn:mace:organization1:providerID, Example Organization 1\n https://another.idp-id.com/shibboleth, Other Example Organization, /Shibboleth.sso/DS/SWITCHaai\n urn:mace:organization2:providerID, Example Organization 2, /Shibboleth.sso/WAYF/SWITCHaai'),(1606,'auth_shibboleth','logout_handler',''),(1607,'auth_shibboleth','logout_return_url',''),(1608,'auth_shibboleth','login_name','Shibboleth Login'),(1609,'auth_shibboleth','auth_logo',''),(1610,'auth_shibboleth','auth_instructions','Use the Shibboleth login to get access via Shibboleth, if your institution supports it. Otherwise, use the normal login form shown here.'),(1611,'auth_shibboleth','changepasswordurl',''),(1612,'auth_shibboleth','field_map_firstname',''),(1613,'auth_shibboleth','field_updatelocal_firstname','oncreate'),(1614,'auth_shibboleth','field_lock_firstname','unlocked'),(1615,'auth_shibboleth','field_map_lastname',''),(1616,'auth_shibboleth','field_updatelocal_lastname','oncreate'),(1617,'auth_shibboleth','field_lock_lastname','unlocked'),(1618,'auth_shibboleth','field_map_email',''),(1619,'auth_shibboleth','field_updatelocal_email','oncreate'),(1620,'auth_shibboleth','field_lock_email','unlocked'),(1621,'auth_shibboleth','field_map_city',''),(1622,'auth_shibboleth','field_updatelocal_city','oncreate'),(1623,'auth_shibboleth','field_lock_city','unlocked'),(1624,'auth_shibboleth','field_map_country',''),(1625,'auth_shibboleth','field_updatelocal_country','oncreate'),(1626,'auth_shibboleth','field_lock_country','unlocked'),(1627,'auth_shibboleth','field_map_lang',''),(1628,'auth_shibboleth','field_updatelocal_lang','oncreate'),(1629,'auth_shibboleth','field_lock_lang','unlocked'),(1630,'auth_shibboleth','field_map_description',''),(1631,'auth_shibboleth','field_updatelocal_description','oncreate'),(1632,'auth_shibboleth','field_lock_description','unlocked'),(1633,'auth_shibboleth','field_map_url',''),(1634,'auth_shibboleth','field_updatelocal_url','oncreate'),(1635,'auth_shibboleth','field_lock_url','unlocked'),(1636,'auth_shibboleth','field_map_idnumber',''),(1637,'auth_shibboleth','field_updatelocal_idnumber','oncreate'),(1638,'auth_shibboleth','field_lock_idnumber','unlocked'),(1639,'auth_shibboleth','field_map_institution',''),(1640,'auth_shibboleth','field_updatelocal_institution','oncreate'),(1641,'auth_shibboleth','field_lock_institution','unlocked'),(1642,'auth_shibboleth','field_map_department',''),(1643,'auth_shibboleth','field_updatelocal_department','oncreate'),(1644,'auth_shibboleth','field_lock_department','unlocked'),(1645,'auth_shibboleth','field_map_phone1',''),(1646,'auth_shibboleth','field_updatelocal_phone1','oncreate'),(1647,'auth_shibboleth','field_lock_phone1','unlocked'),(1648,'auth_shibboleth','field_map_phone2',''),(1649,'auth_shibboleth','field_updatelocal_phone2','oncreate'),(1650,'auth_shibboleth','field_lock_phone2','unlocked'),(1651,'auth_shibboleth','field_map_address',''),(1652,'auth_shibboleth','field_updatelocal_address','oncreate'),(1653,'auth_shibboleth','field_lock_address','unlocked'),(1654,'auth_shibboleth','field_map_firstnamephonetic',''),(1655,'auth_shibboleth','field_updatelocal_firstnamephonetic','oncreate'),(1656,'auth_shibboleth','field_lock_firstnamephonetic','unlocked'),(1657,'auth_shibboleth','field_map_lastnamephonetic',''),(1658,'auth_shibboleth','field_updatelocal_lastnamephonetic','oncreate'),(1659,'auth_shibboleth','field_lock_lastnamephonetic','unlocked'),(1660,'auth_shibboleth','field_map_middlename',''),(1661,'auth_shibboleth','field_updatelocal_middlename','oncreate'),(1662,'auth_shibboleth','field_lock_middlename','unlocked'),(1663,'auth_shibboleth','field_map_alternatename',''),(1664,'auth_shibboleth','field_updatelocal_alternatename','oncreate'),(1665,'auth_shibboleth','field_lock_alternatename','unlocked'),(1666,'block_activity_results','config_showbest','3'),(1667,'block_activity_results','config_showbest_locked',''),(1668,'block_activity_results','config_showworst','0'),(1669,'block_activity_results','config_showworst_locked',''),(1670,'block_activity_results','config_usegroups','0'),(1671,'block_activity_results','config_usegroups_locked',''),(1672,'block_activity_results','config_nameformat','1'),(1673,'block_activity_results','config_nameformat_locked',''),(1674,'block_activity_results','config_gradeformat','1'),(1675,'block_activity_results','config_gradeformat_locked',''),(1676,'block_activity_results','config_decimalpoints','2'),(1677,'block_activity_results','config_decimalpoints_locked',''),(1678,'block_myoverview','displaycategories','1'),(1679,'block_myoverview','layouts','card,list,summary'),(1680,'block_myoverview','displaygroupingallincludinghidden','0'),(1681,'block_myoverview','displaygroupingall','1'),(1682,'block_myoverview','displaygroupinginprogress','1'),(1683,'block_myoverview','displaygroupingpast','1'),(1684,'block_myoverview','displaygroupingfuture','1'),(1685,'block_myoverview','displaygroupingcustomfield','0'),(1686,'block_myoverview','customfiltergrouping',''),(1687,'block_myoverview','displaygroupingfavourites','1'),(1688,'block_myoverview','displaygroupinghidden','1'),(1689,'block_recentlyaccessedcourses','displaycategories','1'),(1690,'block_section_links','numsections1','22'),(1691,'block_section_links','incby1','2'),(1692,'block_section_links','numsections2','40'),(1693,'block_section_links','incby2','5'),(1694,'block_starredcourses','displaycategories','1'),(1695,'block_tag_youtube','apikey',''),(1696,'format_singleactivity','activitytype','forum'),(1697,'fileconverter_googledrive','issuerid',''),(1698,'enrol_cohort','roleid','5'),(1699,'enrol_cohort','unenrolaction','0'),(1700,'enrol_meta','nosyncroleids',''),(1701,'enrol_meta','syncall','1'),(1702,'enrol_meta','unenrolaction','3'),(1703,'enrol_meta','coursesort','sortorder'),(1704,'enrol_fee','expiredaction','3'),(1705,'enrol_fee','status','1'),(1706,'enrol_fee','cost','0'),(1707,'enrol_fee','currency','USD'),(1708,'enrol_fee','roleid','5'),(1709,'enrol_fee','enrolperiod','0'),(1710,'enrol_database','dbtype',''),(1711,'enrol_database','dbhost','localhost'),(1712,'enrol_database','dbuser',''),(1713,'enrol_database','dbpass',''),(1714,'enrol_database','dbname',''),(1715,'enrol_database','dbencoding','utf-8'),(1716,'enrol_database','dbsetupsql',''),(1717,'enrol_database','dbsybasequoting','0'),(1718,'enrol_database','debugdb','0'),(1719,'enrol_database','localcoursefield','idnumber'),(1720,'enrol_database','localuserfield','idnumber'),(1721,'enrol_database','localrolefield','shortname'),(1722,'enrol_database','localcategoryfield','id'),(1723,'enrol_database','remoteenroltable',''),(1724,'enrol_database','remotecoursefield',''),(1725,'enrol_database','remoteuserfield',''),(1726,'enrol_database','remoterolefield',''),(1727,'enrol_database','remoteotheruserfield',''),(1728,'enrol_database','defaultrole','5'),(1729,'enrol_database','ignorehiddencourses','0'),(1730,'enrol_database','unenrolaction','0'),(1731,'enrol_database','newcoursetable',''),(1732,'enrol_database','newcoursefullname','fullname'),(1733,'enrol_database','newcourseshortname','shortname'),(1734,'enrol_database','newcourseidnumber','idnumber'),(1735,'enrol_database','newcoursecategory',''),(1736,'enrol_database','defaultcategory','1'),(1737,'enrol_database','templatecourse',''),(1738,'enrol_flatfile','location',''),(1739,'enrol_flatfile','encoding','UTF-8'),(1740,'enrol_flatfile','mailstudents','0'),(1741,'enrol_flatfile','mailteachers','0'),(1742,'enrol_flatfile','mailadmins','0'),(1743,'enrol_flatfile','unenrolaction','3'),(1744,'enrol_flatfile','expiredaction','3'),(1745,'enrol_guest','requirepassword','0'),(1746,'enrol_guest','usepasswordpolicy','0'),(1747,'enrol_guest','showhint','0'),(1748,'enrol_guest','defaultenrol','1'),(1749,'enrol_guest','status','1'),(1750,'enrol_guest','status_adv',''),(1751,'enrol_imsenterprise','imsfilelocation',''),(1752,'enrol_imsenterprise','logtolocation',''),(1753,'enrol_imsenterprise','mailadmins','0'),(1754,'enrol_imsenterprise','createnewusers','0'),(1755,'enrol_imsenterprise','imsupdateusers','0'),(1756,'enrol_imsenterprise','imsdeleteusers','0'),(1757,'enrol_imsenterprise','fixcaseusernames','0'),(1758,'enrol_imsenterprise','fixcasepersonalnames','0'),(1759,'enrol_imsenterprise','imssourcedidfallback','0'),(1760,'enrol_imsenterprise','imsrolemap01','5'),(1761,'enrol_imsenterprise','imsrolemap02','3'),(1762,'enrol_imsenterprise','imsrolemap03','3'),(1763,'enrol_imsenterprise','imsrolemap04','5'),(1764,'enrol_imsenterprise','imsrolemap05','0'),(1765,'enrol_imsenterprise','imsrolemap06','4'),(1766,'enrol_imsenterprise','imsrolemap07','0'),(1767,'enrol_imsenterprise','imsrolemap08','4'),(1768,'enrol_imsenterprise','truncatecoursecodes','0'),(1769,'enrol_imsenterprise','createnewcourses','0'),(1770,'enrol_imsenterprise','updatecourses','0'),(1771,'enrol_imsenterprise','createnewcategories','0'),(1772,'enrol_imsenterprise','nestedcategories','0'),(1773,'enrol_imsenterprise','categoryidnumber','0'),(1774,'enrol_imsenterprise','categoryseparator',''),(1775,'enrol_imsenterprise','imsunenrol','0'),(1776,'enrol_imsenterprise','imscoursemapshortname','coursecode'),(1777,'enrol_imsenterprise','imscoursemapfullname','short'),(1778,'enrol_imsenterprise','imscoursemapsummary','ignore'),(1779,'enrol_imsenterprise','imsrestricttarget',''),(1780,'enrol_imsenterprise','imscapitafix','0'),(1781,'enrol_manual','expiredaction','1'),(1782,'enrol_manual','expirynotifyhour','6'),(1783,'enrol_manual','defaultenrol','1'),(1784,'enrol_manual','status','0'),(1785,'enrol_manual','roleid','5'),(1786,'enrol_manual','enrolstart','4'),(1787,'enrol_manual','enrolperiod','0'),(1788,'enrol_manual','expirynotify','0'),(1789,'enrol_manual','expirythreshold','86400'),(1790,'enrol_mnet','roleid','5'),(1791,'enrol_mnet','roleid_adv','1'),(1792,'enrol_paypal','paypalbusiness',''),(1793,'enrol_paypal','mailstudents','0'),(1794,'enrol_paypal','mailteachers','0'),(1795,'enrol_paypal','mailadmins','0'),(1796,'enrol_paypal','expiredaction','3'),(1797,'enrol_paypal','status','1'),(1798,'enrol_paypal','cost','0'),(1799,'enrol_paypal','currency','USD'),(1800,'enrol_paypal','roleid','5'),(1801,'enrol_paypal','enrolperiod','0'),(1802,'enrol_lti','emaildisplay','2'),(1803,'enrol_lti','city',''),(1804,'enrol_lti','country',''),(1805,'enrol_lti','timezone','99'),(1806,'enrol_lti','lang','en'),(1807,'enrol_lti','institution',''),(1808,'enrol_self','requirepassword','0'),(1809,'enrol_self','usepasswordpolicy','0'),(1810,'enrol_self','showhint','0'),(1811,'enrol_self','expiredaction','1'),(1812,'enrol_self','expirynotifyhour','6'),(1813,'enrol_self','defaultenrol','1'),(1814,'enrol_self','status','1'),(1815,'enrol_self','newenrols','0'),(1816,'enrol_self','groupkey','0'),(1817,'enrol_self','roleid','5'),(1818,'enrol_self','enrolperiod','0'),(1819,'enrol_self','expirynotify','0'),(1820,'enrol_self','expirythreshold','86400'),(1821,'enrol_self','longtimenosee','0'),(1822,'enrol_self','maxenrolled','0'),(1823,'enrol_self','sendcoursewelcomemessage','1'),(1824,'filter_urltolink','formats','1,4,0'),(1825,'filter_urltolink','embedimages','1'),(1826,'filter_emoticon','formats','1,4,0'),(1827,'filter_displayh5p','allowedsources',''),(1828,'filter_mathjaxloader','httpsurl','https://cdn.jsdelivr.net/npm/mathjax@2.7.8/MathJax.js'),(1829,'filter_mathjaxloader','texfiltercompatibility','0'),(1830,'filter_mathjaxloader','mathjaxconfig','\nMathJax.Hub.Config({\n config: [\"Accessible.js\", \"Safe.js\"],\n errorSettings: { message: [\"!\"] },\n skipStartupTypeset: true,\n messageStyle: \"none\"\n});\n'),(1831,'filter_mathjaxloader','additionaldelimiters',''),(1832,'filter_tex','latexpreamble','\\usepackage[latin1]{inputenc}\n\\usepackage{amsmath}\n\\usepackage{amsfonts}\n\\RequirePackage{amsmath,amssymb,latexsym}\n'),(1833,'filter_tex','latexbackground','#FFFFFF'),(1834,'filter_tex','density','120'),(1835,'filter_tex','pathlatex','/usr/bin/latex'),(1836,'filter_tex','pathdvips','/usr/bin/dvips'),(1837,'filter_tex','pathconvert','/usr/bin/convert'),(1838,'filter_tex','pathdvisvgm','/usr/bin/dvisvgm'),(1839,'filter_tex','pathmimetex',''),(1840,'filter_tex','convertformat','gif'),(1841,'local_chat_attachments','messaging_support_email',''),(1842,'local_chat_attachments','messaging_url',''),(1843,'local_chat_attachments','messaging_token',''),(1844,'logstore_database','dbdriver',''),(1845,'logstore_database','dbhost',''),(1846,'logstore_database','dbuser',''),(1847,'logstore_database','dbpass',''),(1848,'logstore_database','dbname',''),(1849,'logstore_database','dbtable',''),(1850,'logstore_database','dbpersist','0'),(1851,'logstore_database','dbsocket',''),(1852,'logstore_database','dbport',''),(1853,'logstore_database','dbschema',''),(1854,'logstore_database','dbcollation',''),(1855,'logstore_database','dbhandlesoptions','0'),(1856,'logstore_database','buffersize','50'),(1857,'logstore_database','jsonformat','1'),(1858,'logstore_database','logguests','0'),(1859,'logstore_database','includelevels','1,2,0'),(1860,'logstore_database','includeactions','c,r,u,d'),(1861,'logstore_legacy','loglegacy','0'),(1862,'logstore_standard','logguests','1'),(1863,'logstore_standard','jsonformat','1'),(1864,'logstore_standard','loglifetime','0'),(1865,'logstore_standard','buffersize','50'),(1866,'mlbackend_python','useserver','0'),(1867,'mlbackend_python','host',''),(1868,'mlbackend_python','port','0'),(1869,'mlbackend_python','secure','0'),(1870,'mlbackend_python','username','default'),(1871,'mlbackend_python','password',''),(1872,'media_videojs','videoextensions','html_video,media_source,.f4v,.flv'),(1873,'media_videojs','audioextensions','html_audio'),(1874,'media_videojs','rtmp','0'),(1875,'media_videojs','useflash','0'),(1876,'media_videojs','youtube','1'),(1877,'media_videojs','videocssclass','video-js'),(1878,'media_videojs','audiocssclass','video-js'),(1879,'media_videojs','limitsize','1'),(1880,'paygw_paypal','surcharge','0'),(1881,'qtype_multichoice','answerhowmany','1'),(1882,'qtype_multichoice','shuffleanswers','1'),(1883,'qtype_multichoice','answernumbering','abc'),(1884,'editor_atto','toolbar','collapse = collapse\nstyle1 = title, bold, italic\nlist = unorderedlist, orderedlist, indent\nlinks = link\nfiles = emojipicker, image, media, recordrtc, managefiles, h5p\nstyle2 = underline, strike, subscript, superscript\nalign = align\ninsert = equation, charmap, table, clear\nundo = undo\naccessibility = accessibilitychecker, accessibilityhelper\nother = html'),(1885,'editor_atto','autosavefrequency','60'),(1886,'atto_collapse','showgroups','5'),(1887,'atto_equation','librarygroup1','\n\\cdot\n\\times\n\\ast\n\\div\n\\diamond\n\\pm\n\\mp\n\\oplus\n\\ominus\n\\otimes\n\\oslash\n\\odot\n\\circ\n\\bullet\n\\asymp\n\\equiv\n\\subseteq\n\\supseteq\n\\leq\n\\geq\n\\preceq\n\\succeq\n\\sim\n\\simeq\n\\approx\n\\subset\n\\supset\n\\ll\n\\gg\n\\prec\n\\succ\n\\infty\n\\in\n\\ni\n\\forall\n\\exists\n\\neq\n'),(1888,'atto_equation','librarygroup2','\n\\leftarrow\n\\rightarrow\n\\uparrow\n\\downarrow\n\\leftrightarrow\n\\nearrow\n\\searrow\n\\swarrow\n\\nwarrow\n\\Leftarrow\n\\Rightarrow\n\\Uparrow\n\\Downarrow\n\\Leftrightarrow\n'),(1889,'atto_equation','librarygroup3','\n\\alpha\n\\beta\n\\gamma\n\\delta\n\\epsilon\n\\zeta\n\\eta\n\\theta\n\\iota\n\\kappa\n\\lambda\n\\mu\n\\nu\n\\xi\n\\pi\n\\rho\n\\sigma\n\\tau\n\\upsilon\n\\phi\n\\chi\n\\psi\n\\omega\n\\Gamma\n\\Delta\n\\Theta\n\\Lambda\n\\Xi\n\\Pi\n\\Sigma\n\\Upsilon\n\\Phi\n\\Psi\n\\Omega\n'),(1890,'atto_equation','librarygroup4','\n\\sum{a,b}\n\\sqrt[a]{b+c}\n\\int_{a}^{b}{c}\n\\iint_{a}^{b}{c}\n\\iiint_{a}^{b}{c}\n\\oint{a}\n(a)\n[a]\n\\lbrace{a}\\rbrace\n\\left| \\begin{matrix} a_1 & a_2 \\ a_3 & a_4 \\end{matrix} \\right|\n\\frac{a}{b+c}\n\\vec{a}\n\\binom {a} {b}\n{a \\brack b}\n{a \\brace b}\n'),(1891,'atto_recordrtc','allowedtypes','both'),(1892,'atto_recordrtc','audiobitrate','128000'),(1893,'atto_recordrtc','videobitrate','2500000'),(1894,'atto_recordrtc','timelimit','120'),(1895,'atto_table','allowborders','0'),(1896,'atto_table','allowbackgroundcolour','0'),(1897,'atto_table','allowwidth','0'),(1898,'editor_tinymce','customtoolbar','wrap,formatselect,wrap,bold,italic,wrap,bullist,numlist,wrap,link,unlink,wrap,image\n\nundo,redo,wrap,underline,strikethrough,sub,sup,wrap,justifyleft,justifycenter,justifyright,wrap,outdent,indent,wrap,forecolor,backcolor,wrap,ltr,rtl\n\nfontselect,fontsizeselect,wrap,code,search,replace,wrap,nonbreaking,charmap,table,wrap,cleanup,removeformat,pastetext,pasteword,wrap,fullscreen'),(1899,'editor_tinymce','fontselectlist','Trebuchet=Trebuchet MS,Verdana,Arial,Helvetica,sans-serif;Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;Wingdings=wingdings'),(1900,'editor_tinymce','customconfig',''),(1901,'tinymce_moodleemoticon','requireemoticon','1'),(1902,'tinymce_spellchecker','spellengine',''),(1903,'tinymce_spellchecker','spelllanguagelist','+English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv'),(1904,'tool_mobile','apppolicy','https://www.relaytrust.org/thewell/privacypolicy.html'),(1905,'tool_mobile','typeoflogin','1'),(1906,'tool_mobile','qrcodetype','2'),(1907,'tool_mobile','forcedurlscheme','org.relaytrust.thewell'),(1908,'tool_mobile','minimumversion',''),(1909,'tool_mobile','enablesmartappbanners','1'),(1910,'tool_mobile','iosappid',''),(1911,'tool_mobile','androidappid','org.relaytrust.thewell'),(1912,'tool_mobile','setuplink','https://www.relaytrust.org/thewell/thewellapp.html'),(1913,'tool_mobile','forcelogout','0'),(1914,'tool_mobile','disabledfeatures','$mmLoginEmailSignup,NoDelegate_ForgottenPassword,$mmSideMenuDelegate_mmaFrontpage,$mmSideMenuDelegate_mmaCalendar,$mmSideMenuDelegate_mmaNotifications,$mmSideMenuDelegate_mmaGrades,$mmSideMenuDelegate_mmaCompetency,CoreMainMenuDelegate_AddonBlog,CoreMainMenuDelegate_CoreTag,$mmSideMenuDelegate_website,$mmSideMenuDelegate_help,CoreCourseOptionsDelegate_AddonBlog,CoreUserDelegate_AddonBlog:blogs,$mmUserDelegate_mmaMessages:blockContact'),(1915,'tool_mobile','custommenuitems','Get Resources from The Well|http://thewell|browser\r\nHelp|internal link in Well|embedded\r\nAbout The Well|internal link in Well Device|embedded'),(1916,'tool_mobile','filetypeexclusionlist',''),(1917,'tool_mobile','customlangstrings',''),(1918,'tool_moodlenet','enablemoodlenet','0'),(1919,'tool_moodlenet','defaultmoodlenetname','MoodleNet Central'),(1920,'tool_moodlenet','defaultmoodlenet','https://moodle.net'),(1921,'tool_task','lastcronstart','1619640961'),(1922,'enrol_manual','expirynotifylast','1619623861'),(1923,'enrol_self','expirynotifylast','1619623861'),(1924,'tool_task','lastcroninterval','900'),(1925,'enrol_ldap','objectclass','(objectClass=*)'),(1926,'mod_customcert','version','2020110900'),(1927,'customcertelement_bgimage','version','2020110900'),(1928,'customcertelement_border','version','2020110900'),(1929,'customcertelement_categoryname','version','2020110900'),(1930,'customcertelement_code','version','2020110900'),(1931,'customcertelement_coursefield','version','2020110900'),(1932,'customcertelement_coursename','version','2020110900'),(1933,'customcertelement_date','version','2020110900'),(1934,'customcertelement_daterange','version','2020110900'),(1935,'customcertelement_digitalsignature','version','2020110900'),(1936,'customcertelement_grade','version','2020110900'),(1937,'customcertelement_gradeitemname','version','2020110900'),(1938,'customcertelement_image','version','2020110900'),(1939,'customcertelement_qrcode','version','2020110900'),(1940,'customcertelement_studentname','version','2020110900'),(1941,'customcertelement_teachername','version','2020110900'),(1942,'customcertelement_text','version','2020110900'),(1943,'customcertelement_userfield','version','2020110900'),(1944,'customcertelement_userpicture','version','2020110900'),(1945,'core_plugin','recentfetch','1619625665'),(1946,'core_plugin','recentresponse','{\"status\":\"OK\",\"provider\":\"https:\\/\\/download.moodle.org\\/api\\/1.3\\/updates.php\",\"apiver\":\"1.3\",\"timegenerated\":1619625665,\"ticket\":\"JUM5JTkxNiVBRCUzRiVENSU3RiU3RSVFMiU5NSVEMCVENyVFMGJDJUIyTCU5OCVDOCVBRFRuJUNDJTIzJTI5JUI4JUFCJTFFJTNDJUFEJTJDJTA5JThGJTEzJTFCJTg1JTdCJThDJTg5TA==\",\"forbranch\":\"3.10\",\"forversion\":\"2020110901.04\",\"updates\":{\"core\":[{\"version\":2021042700,\"release\":\"3.11dev+ (Build: 20210427)\",\"branch\":\"3.11\",\"maturity\":50,\"url\":\"https:\\/\\/download.moodle.org\",\"download\":\"https:\\/\\/download.moodle.org\\/download.php\\/direct\\/stable311\\/moodle-latest-311.zip\"},{\"version\":2020110903.07,\"release\":\"3.10.3+ (Build: 20210427)\",\"branch\":\"3.10\",\"maturity\":200,\"url\":\"https:\\/\\/download.moodle.org\",\"download\":\"https:\\/\\/download.moodle.org\\/download.php\\/direct\\/stable310\\/moodle-latest-310.zip\"},{\"version\":2021052500.88,\"release\":\"4.0dev (Build: 20210427)\",\"branch\":\"4.00\",\"maturity\":50,\"url\":\"https:\\/\\/download.moodle.org\",\"download\":\"https:\\/\\/download.moodle.org\\/download.php\\/direct\\/moodle\\/moodle-latest.zip\"}],\"mod_customcert\":[{\"version\":\"2020110900\",\"release\":\"3.10.0\",\"maturity\":200,\"url\":\"https:\\/\\/moodle.org\\/plugins\\/pluginversion.php?id=22980\",\"download\":\"https:\\/\\/moodle.org\\/plugins\\/download.php\\/22980\\/mod_customcert_moodle310_2020110900.zip\",\"downloadmd5\":\"e1fc30a97ea4b1f39f18302cd3711b08\"}]}}'),(1947,'customcert','verifycertificate',''),(1948,'customcert','managetemplates',''),(1949,'customcert','uploadimage',''),(1950,'customcert','verifyallcertificates','0'),(1951,'customcert','showposxy','0'),(1952,'customcert','emailstudents','0'),(1953,'customcert','emailteachers','0'),(1954,'customcert','emailothers',''),(1955,'customcert','verifyany','0'),(1956,'customcert','requiredtime','0'),(1957,'customcert','protection_print','0'),(1958,'customcert','protection_modify','0'),(1959,'customcert','protection_copy','0'); -/*!40000 ALTER TABLE `mdl_config_plugins` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_contentbank_content` --- - -DROP TABLE IF EXISTS `mdl_contentbank_content`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_contentbank_content` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `contenttype` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `contextid` bigint(10) NOT NULL, - `instanceid` bigint(10) DEFAULT NULL, - `configdata` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `usercreated` bigint(10) NOT NULL, - `usermodified` bigint(10) DEFAULT NULL, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_contcont_nam_ix` (`name`), - KEY `mdl_contcont_conconins_ix` (`contextid`,`contenttype`,`instanceid`), - KEY `mdl_contcont_con_ix` (`contextid`), - KEY `mdl_contcont_use_ix` (`usermodified`), - KEY `mdl_contcont_use2_ix` (`usercreated`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table stores content data in the content bank.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_contentbank_content` --- - -LOCK TABLES `mdl_contentbank_content` WRITE; -/*!40000 ALTER TABLE `mdl_contentbank_content` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_contentbank_content` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_context` --- - -DROP TABLE IF EXISTS `mdl_context`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_context` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `contextlevel` bigint(10) NOT NULL DEFAULT 0, - `instanceid` bigint(10) NOT NULL DEFAULT 0, - `path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `depth` tinyint(2) NOT NULL DEFAULT 0, - `locked` tinyint(2) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_cont_conins_uix` (`contextlevel`,`instanceid`), - KEY `mdl_cont_ins_ix` (`instanceid`), - KEY `mdl_cont_pat_ix` (`path`) -) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='one of these must be set'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_context` --- - -LOCK TABLES `mdl_context` WRITE; -/*!40000 ALTER TABLE `mdl_context` DISABLE KEYS */; -INSERT INTO `mdl_context` VALUES (1,10,0,'/1',1,0),(2,50,1,'/1/2',2,0),(3,40,1,'/1/3',2,0),(4,30,1,'/1/4',2,0),(5,30,2,'/1/5',2,0),(6,80,1,'/1/6',2,0),(7,80,2,'/1/7',2,0),(8,80,3,'/1/8',2,0),(9,80,4,'/1/9',2,0),(10,80,5,'/1/10',2,0),(11,80,6,'/1/11',2,0),(12,80,7,'/1/12',2,0),(13,80,8,'/1/13',2,0),(14,80,9,'/1/14',2,0),(15,80,10,'/1/15',2,0),(25,30,3,'/1/25',2,0),(26,30,4,'/1/26',2,0),(27,30,5,'/1/27',2,0),(28,30,6,'/1/28',2,0),(29,80,20,'/1/29',2,0),(30,80,21,'/1/5/30',3,0),(31,80,22,'/1/5/31',3,0),(32,80,23,'/1/5/32',3,0),(33,80,24,'/1/5/33',3,0),(34,80,25,'/1/5/34',3,0),(35,80,26,'/1/5/35',3,0),(36,80,27,'/1/5/36',3,0),(37,80,28,'/1/5/37',3,0),(38,80,29,'/1/5/38',3,0),(39,80,30,'/1/5/39',3,0); -/*!40000 ALTER TABLE `mdl_context` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_context_temp` --- - -DROP TABLE IF EXISTS `mdl_context_temp`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_context_temp` ( - `id` bigint(10) NOT NULL, - `path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `depth` tinyint(2) NOT NULL, - `locked` tinyint(2) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Used by build_context_path() in upgrade and cron to keep con'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_context_temp` --- - -LOCK TABLES `mdl_context_temp` WRITE; -/*!40000 ALTER TABLE `mdl_context_temp` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_context_temp` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_course` --- - -DROP TABLE IF EXISTS `mdl_course`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_course` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `category` bigint(10) NOT NULL DEFAULT 0, - `sortorder` bigint(10) NOT NULL DEFAULT 0, - `fullname` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `shortname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `summary` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `summaryformat` tinyint(2) NOT NULL DEFAULT 0, - `format` varchar(21) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'topics', - `showgrades` tinyint(2) NOT NULL DEFAULT 1, - `newsitems` mediumint(5) NOT NULL DEFAULT 1, - `startdate` bigint(10) NOT NULL DEFAULT 0, - `enddate` bigint(10) NOT NULL DEFAULT 0, - `relativedatesmode` tinyint(1) NOT NULL DEFAULT 0, - `marker` bigint(10) NOT NULL DEFAULT 0, - `maxbytes` bigint(10) NOT NULL DEFAULT 0, - `legacyfiles` smallint(4) NOT NULL DEFAULT 0, - `showreports` smallint(4) NOT NULL DEFAULT 0, - `visible` tinyint(1) NOT NULL DEFAULT 1, - `visibleold` tinyint(1) NOT NULL DEFAULT 1, - `downloadcontent` tinyint(1) DEFAULT NULL, - `groupmode` smallint(4) NOT NULL DEFAULT 0, - `groupmodeforce` smallint(4) NOT NULL DEFAULT 0, - `defaultgroupingid` bigint(10) NOT NULL DEFAULT 0, - `lang` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `calendartype` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `theme` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `requested` tinyint(1) NOT NULL DEFAULT 0, - `enablecompletion` tinyint(1) NOT NULL DEFAULT 0, - `completionnotify` tinyint(1) NOT NULL DEFAULT 0, - `cacherev` bigint(10) NOT NULL DEFAULT 0, - `originalcourseid` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_cour_cat_ix` (`category`), - KEY `mdl_cour_idn_ix` (`idnumber`), - KEY `mdl_cour_sho_ix` (`shortname`), - KEY `mdl_cour_sor_ix` (`sortorder`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Central course table'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_course` --- - -LOCK TABLES `mdl_course` WRITE; -/*!40000 ALTER TABLE `mdl_course` DISABLE KEYS */; -INSERT INTO `mdl_course` VALUES (1,0,0,'full site name','short site name','','',0,'site',1,3,0,0,0,0,0,0,0,1,1,NULL,0,0,0,'','','',1619623682,1619623824,0,0,0,1619625660,NULL); -/*!40000 ALTER TABLE `mdl_course` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_course_categories` --- - -DROP TABLE IF EXISTS `mdl_course_categories`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_course_categories` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` tinyint(2) NOT NULL DEFAULT 0, - `parent` bigint(10) NOT NULL DEFAULT 0, - `sortorder` bigint(10) NOT NULL DEFAULT 0, - `coursecount` bigint(10) NOT NULL DEFAULT 0, - `visible` tinyint(1) NOT NULL DEFAULT 1, - `visibleold` tinyint(1) NOT NULL DEFAULT 1, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `depth` bigint(10) NOT NULL DEFAULT 0, - `path` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `theme` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_courcate_par_ix` (`parent`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Course categories'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_course_categories` --- - -LOCK TABLES `mdl_course_categories` WRITE; -/*!40000 ALTER TABLE `mdl_course_categories` DISABLE KEYS */; -INSERT INTO `mdl_course_categories` VALUES (1,'Miscellaneous',NULL,NULL,0,0,10000,0,1,1,1619623682,1,'/1',NULL); -/*!40000 ALTER TABLE `mdl_course_categories` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_course_completion_aggr_methd` --- - -DROP TABLE IF EXISTS `mdl_course_completion_aggr_methd`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_course_completion_aggr_methd` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `criteriatype` bigint(10) DEFAULT NULL, - `method` tinyint(1) NOT NULL DEFAULT 0, - `value` decimal(10,5) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_courcompaggrmeth_coucr_uix` (`course`,`criteriatype`), - KEY `mdl_courcompaggrmeth_cou_ix` (`course`), - KEY `mdl_courcompaggrmeth_cri_ix` (`criteriatype`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Course completion aggregation methods for criteria'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_course_completion_aggr_methd` --- - -LOCK TABLES `mdl_course_completion_aggr_methd` WRITE; -/*!40000 ALTER TABLE `mdl_course_completion_aggr_methd` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_course_completion_aggr_methd` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_course_completion_crit_compl` --- - -DROP TABLE IF EXISTS `mdl_course_completion_crit_compl`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_course_completion_crit_compl` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL DEFAULT 0, - `course` bigint(10) NOT NULL DEFAULT 0, - `criteriaid` bigint(10) NOT NULL DEFAULT 0, - `gradefinal` decimal(10,5) DEFAULT NULL, - `unenroled` bigint(10) DEFAULT NULL, - `timecompleted` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_courcompcritcomp_useco_uix` (`userid`,`course`,`criteriaid`), - KEY `mdl_courcompcritcomp_use_ix` (`userid`), - KEY `mdl_courcompcritcomp_cou_ix` (`course`), - KEY `mdl_courcompcritcomp_cri_ix` (`criteriaid`), - KEY `mdl_courcompcritcomp_tim_ix` (`timecompleted`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Course completion user records'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_course_completion_crit_compl` --- - -LOCK TABLES `mdl_course_completion_crit_compl` WRITE; -/*!40000 ALTER TABLE `mdl_course_completion_crit_compl` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_course_completion_crit_compl` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_course_completion_criteria` --- - -DROP TABLE IF EXISTS `mdl_course_completion_criteria`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_course_completion_criteria` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `criteriatype` bigint(10) NOT NULL DEFAULT 0, - `module` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `moduleinstance` bigint(10) DEFAULT NULL, - `courseinstance` bigint(10) DEFAULT NULL, - `enrolperiod` bigint(10) DEFAULT NULL, - `timeend` bigint(10) DEFAULT NULL, - `gradepass` decimal(10,5) DEFAULT NULL, - `role` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_courcompcrit_cou_ix` (`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Course completion criteria'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_course_completion_criteria` --- - -LOCK TABLES `mdl_course_completion_criteria` WRITE; -/*!40000 ALTER TABLE `mdl_course_completion_criteria` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_course_completion_criteria` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_course_completion_defaults` --- - -DROP TABLE IF EXISTS `mdl_course_completion_defaults`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_course_completion_defaults` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL, - `module` bigint(10) NOT NULL, - `completion` tinyint(1) NOT NULL DEFAULT 0, - `completionview` tinyint(1) NOT NULL DEFAULT 0, - `completionusegrade` tinyint(1) NOT NULL DEFAULT 0, - `completionexpected` bigint(10) NOT NULL DEFAULT 0, - `customrules` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_courcompdefa_coumod_uix` (`course`,`module`), - KEY `mdl_courcompdefa_mod_ix` (`module`), - KEY `mdl_courcompdefa_cou_ix` (`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Default settings for activities completion'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_course_completion_defaults` --- - -LOCK TABLES `mdl_course_completion_defaults` WRITE; -/*!40000 ALTER TABLE `mdl_course_completion_defaults` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_course_completion_defaults` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_course_completions` --- - -DROP TABLE IF EXISTS `mdl_course_completions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_course_completions` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL DEFAULT 0, - `course` bigint(10) NOT NULL DEFAULT 0, - `timeenrolled` bigint(10) NOT NULL DEFAULT 0, - `timestarted` bigint(10) NOT NULL DEFAULT 0, - `timecompleted` bigint(10) DEFAULT NULL, - `reaggregate` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_courcomp_usecou_uix` (`userid`,`course`), - KEY `mdl_courcomp_use_ix` (`userid`), - KEY `mdl_courcomp_cou_ix` (`course`), - KEY `mdl_courcomp_tim_ix` (`timecompleted`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Course completion records'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_course_completions` --- - -LOCK TABLES `mdl_course_completions` WRITE; -/*!40000 ALTER TABLE `mdl_course_completions` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_course_completions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_course_format_options` --- - -DROP TABLE IF EXISTS `mdl_course_format_options`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_course_format_options` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `courseid` bigint(10) NOT NULL, - `format` varchar(21) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `sectionid` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_courformopti_couforsec_uix` (`courseid`,`format`,`sectionid`,`name`), - KEY `mdl_courformopti_cou_ix` (`courseid`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores format-specific options for the course or course sect'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_course_format_options` --- - -LOCK TABLES `mdl_course_format_options` WRITE; -/*!40000 ALTER TABLE `mdl_course_format_options` DISABLE KEYS */; -INSERT INTO `mdl_course_format_options` VALUES (1,1,'site',0,'numsections','1'); -/*!40000 ALTER TABLE `mdl_course_format_options` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_course_modules` --- - -DROP TABLE IF EXISTS `mdl_course_modules`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_course_modules` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `module` bigint(10) NOT NULL DEFAULT 0, - `instance` bigint(10) NOT NULL DEFAULT 0, - `section` bigint(10) NOT NULL DEFAULT 0, - `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `added` bigint(10) NOT NULL DEFAULT 0, - `score` smallint(4) NOT NULL DEFAULT 0, - `indent` mediumint(5) NOT NULL DEFAULT 0, - `visible` tinyint(1) NOT NULL DEFAULT 1, - `visibleoncoursepage` tinyint(1) NOT NULL DEFAULT 1, - `visibleold` tinyint(1) NOT NULL DEFAULT 1, - `groupmode` smallint(4) NOT NULL DEFAULT 0, - `groupingid` bigint(10) NOT NULL DEFAULT 0, - `completion` tinyint(1) NOT NULL DEFAULT 0, - `completiongradeitemnumber` bigint(10) DEFAULT NULL, - `completionview` tinyint(1) NOT NULL DEFAULT 0, - `completionexpected` bigint(10) NOT NULL DEFAULT 0, - `showdescription` tinyint(1) NOT NULL DEFAULT 0, - `availability` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `deletioninprogress` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_courmodu_vis_ix` (`visible`), - KEY `mdl_courmodu_cou_ix` (`course`), - KEY `mdl_courmodu_mod_ix` (`module`), - KEY `mdl_courmodu_ins_ix` (`instance`), - KEY `mdl_courmodu_idncou_ix` (`idnumber`,`course`), - KEY `mdl_courmodu_gro_ix` (`groupingid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='course_modules table retrofitted from MySQL'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_course_modules` --- - -LOCK TABLES `mdl_course_modules` WRITE; -/*!40000 ALTER TABLE `mdl_course_modules` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_course_modules` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_course_modules_completion` --- - -DROP TABLE IF EXISTS `mdl_course_modules_completion`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_course_modules_completion` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `coursemoduleid` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `completionstate` tinyint(1) NOT NULL, - `viewed` tinyint(1) DEFAULT NULL, - `overrideby` bigint(10) DEFAULT NULL, - `timemodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_courmoducomp_usecou_uix` (`userid`,`coursemoduleid`), - KEY `mdl_courmoducomp_cou_ix` (`coursemoduleid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the completion state (completed or not completed, etc'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_course_modules_completion` --- - -LOCK TABLES `mdl_course_modules_completion` WRITE; -/*!40000 ALTER TABLE `mdl_course_modules_completion` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_course_modules_completion` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_course_published` --- - -DROP TABLE IF EXISTS `mdl_course_published`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_course_published` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `huburl` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `courseid` bigint(10) NOT NULL, - `timepublished` bigint(10) NOT NULL, - `enrollable` tinyint(1) NOT NULL DEFAULT 1, - `hubcourseid` bigint(10) NOT NULL, - `status` tinyint(1) DEFAULT 0, - `timechecked` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Information about how and when an local courses were publish'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_course_published` --- - -LOCK TABLES `mdl_course_published` WRITE; -/*!40000 ALTER TABLE `mdl_course_published` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_course_published` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_course_request` --- - -DROP TABLE IF EXISTS `mdl_course_request`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_course_request` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `fullname` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `shortname` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `summary` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `summaryformat` tinyint(2) NOT NULL DEFAULT 0, - `category` bigint(10) NOT NULL DEFAULT 0, - `reason` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `requester` bigint(10) NOT NULL DEFAULT 0, - `password` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `mdl_courrequ_sho_ix` (`shortname`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='course requests'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_course_request` --- - -LOCK TABLES `mdl_course_request` WRITE; -/*!40000 ALTER TABLE `mdl_course_request` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_course_request` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_course_sections` --- - -DROP TABLE IF EXISTS `mdl_course_sections`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_course_sections` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `section` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `summary` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `summaryformat` tinyint(2) NOT NULL DEFAULT 0, - `sequence` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `visible` tinyint(1) NOT NULL DEFAULT 1, - `availability` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_coursect_cousec_uix` (`course`,`section`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='to define the sections for each course'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_course_sections` --- - -LOCK TABLES `mdl_course_sections` WRITE; -/*!40000 ALTER TABLE `mdl_course_sections` DISABLE KEYS */; -INSERT INTO `mdl_course_sections` VALUES (1,1,1,'','

Show organization logo. Show information about who the Well Device is managed by and what its purpose is and if necessary, contact information.

\r\n

To access resources from this Well Device, go here.

',1,'',1,'{\"op\":\"&\",\"c\":[],\"showc\":[]}',1619624739); -/*!40000 ALTER TABLE `mdl_course_sections` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_customcert` --- - -DROP TABLE IF EXISTS `mdl_customcert`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_customcert` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `templateid` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `introformat` smallint(4) NOT NULL DEFAULT 0, - `requiredtime` bigint(10) NOT NULL DEFAULT 0, - `verifyany` bigint(10) NOT NULL DEFAULT 0, - `emailstudents` tinyint(1) NOT NULL DEFAULT 0, - `emailteachers` tinyint(1) NOT NULL DEFAULT 0, - `emailothers` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `protection` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_cust_tem_ix` (`templateid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines customcerts'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_customcert` --- - -LOCK TABLES `mdl_customcert` WRITE; -/*!40000 ALTER TABLE `mdl_customcert` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_customcert` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_customcert_elements` --- - -DROP TABLE IF EXISTS `mdl_customcert_elements`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_customcert_elements` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `pageid` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `element` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `data` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `font` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `fontsize` bigint(10) DEFAULT NULL, - `colour` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `posx` bigint(10) DEFAULT NULL, - `posy` bigint(10) DEFAULT NULL, - `width` bigint(10) DEFAULT NULL, - `refpoint` smallint(4) DEFAULT NULL, - `sequence` bigint(10) DEFAULT NULL, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_custelem_pag_ix` (`pageid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the elements for a given page'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_customcert_elements` --- - -LOCK TABLES `mdl_customcert_elements` WRITE; -/*!40000 ALTER TABLE `mdl_customcert_elements` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_customcert_elements` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_customcert_issues` --- - -DROP TABLE IF EXISTS `mdl_customcert_issues`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_customcert_issues` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL DEFAULT 0, - `customcertid` bigint(10) NOT NULL DEFAULT 0, - `code` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `emailed` tinyint(1) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_custissu_cus_ix` (`customcertid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores each issue of a customcert'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_customcert_issues` --- - -LOCK TABLES `mdl_customcert_issues` WRITE; -/*!40000 ALTER TABLE `mdl_customcert_issues` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_customcert_issues` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_customcert_pages` --- - -DROP TABLE IF EXISTS `mdl_customcert_pages`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_customcert_pages` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `templateid` bigint(10) NOT NULL DEFAULT 0, - `width` bigint(10) NOT NULL DEFAULT 0, - `height` bigint(10) NOT NULL DEFAULT 0, - `leftmargin` bigint(10) NOT NULL DEFAULT 0, - `rightmargin` bigint(10) NOT NULL DEFAULT 0, - `sequence` bigint(10) DEFAULT NULL, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_custpage_tem_ix` (`templateid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores each page of a custom cert'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_customcert_pages` --- - -LOCK TABLES `mdl_customcert_pages` WRITE; -/*!40000 ALTER TABLE `mdl_customcert_pages` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_customcert_pages` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_customcert_templates` --- - -DROP TABLE IF EXISTS `mdl_customcert_templates`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_customcert_templates` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `contextid` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_custtemp_con_ix` (`contextid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores each customcert template'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_customcert_templates` --- - -LOCK TABLES `mdl_customcert_templates` WRITE; -/*!40000 ALTER TABLE `mdl_customcert_templates` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_customcert_templates` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_customfield_category` --- - -DROP TABLE IF EXISTS `mdl_customfield_category`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_customfield_category` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(400) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` bigint(10) DEFAULT NULL, - `sortorder` bigint(10) DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `area` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `itemid` bigint(10) NOT NULL DEFAULT 0, - `contextid` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_custcate_comareitesor_ix` (`component`,`area`,`itemid`,`sortorder`), - KEY `mdl_custcate_con_ix` (`contextid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='core_customfield category table'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_customfield_category` --- - -LOCK TABLES `mdl_customfield_category` WRITE; -/*!40000 ALTER TABLE `mdl_customfield_category` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_customfield_category` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_customfield_data` --- - -DROP TABLE IF EXISTS `mdl_customfield_data`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_customfield_data` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `fieldid` bigint(10) NOT NULL, - `instanceid` bigint(10) NOT NULL, - `intvalue` bigint(10) DEFAULT NULL, - `decvalue` decimal(10,5) DEFAULT NULL, - `shortcharvalue` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `charvalue` varchar(1333) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `valueformat` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `contextid` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_custdata_insfie_uix` (`instanceid`,`fieldid`), - KEY `mdl_custdata_fieint_ix` (`fieldid`,`intvalue`), - KEY `mdl_custdata_fiesho_ix` (`fieldid`,`shortcharvalue`), - KEY `mdl_custdata_fiedec_ix` (`fieldid`,`decvalue`), - KEY `mdl_custdata_fie_ix` (`fieldid`), - KEY `mdl_custdata_con_ix` (`contextid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='core_customfield data table'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_customfield_data` --- - -LOCK TABLES `mdl_customfield_data` WRITE; -/*!40000 ALTER TABLE `mdl_customfield_data` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_customfield_data` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_customfield_field` --- - -DROP TABLE IF EXISTS `mdl_customfield_field`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_customfield_field` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `shortname` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `name` varchar(400) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` bigint(10) DEFAULT NULL, - `sortorder` bigint(10) DEFAULT NULL, - `categoryid` bigint(10) DEFAULT NULL, - `configdata` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_custfiel_catsor_ix` (`categoryid`,`sortorder`), - KEY `mdl_custfiel_cat_ix` (`categoryid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='core_customfield field table'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_customfield_field` --- - -LOCK TABLES `mdl_customfield_field` WRITE; -/*!40000 ALTER TABLE `mdl_customfield_field` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_customfield_field` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_data` --- - -DROP TABLE IF EXISTS `mdl_data`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_data` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `introformat` smallint(4) NOT NULL DEFAULT 0, - `comments` smallint(4) NOT NULL DEFAULT 0, - `timeavailablefrom` bigint(10) NOT NULL DEFAULT 0, - `timeavailableto` bigint(10) NOT NULL DEFAULT 0, - `timeviewfrom` bigint(10) NOT NULL DEFAULT 0, - `timeviewto` bigint(10) NOT NULL DEFAULT 0, - `requiredentries` int(8) NOT NULL DEFAULT 0, - `requiredentriestoview` int(8) NOT NULL DEFAULT 0, - `maxentries` int(8) NOT NULL DEFAULT 0, - `rssarticles` smallint(4) NOT NULL DEFAULT 0, - `singletemplate` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `listtemplate` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `listtemplateheader` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `listtemplatefooter` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `addtemplate` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `rsstemplate` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `rsstitletemplate` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `csstemplate` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `jstemplate` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `asearchtemplate` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `approval` smallint(4) NOT NULL DEFAULT 0, - `manageapproved` smallint(4) NOT NULL DEFAULT 1, - `scale` bigint(10) NOT NULL DEFAULT 0, - `assessed` bigint(10) NOT NULL DEFAULT 0, - `assesstimestart` bigint(10) NOT NULL DEFAULT 0, - `assesstimefinish` bigint(10) NOT NULL DEFAULT 0, - `defaultsort` bigint(10) NOT NULL DEFAULT 0, - `defaultsortdir` smallint(4) NOT NULL DEFAULT 0, - `editany` smallint(4) NOT NULL DEFAULT 0, - `notification` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `config` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `completionentries` bigint(10) DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_data_cou_ix` (`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='all database activities'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_data` --- - -LOCK TABLES `mdl_data` WRITE; -/*!40000 ALTER TABLE `mdl_data` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_data` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_data_content` --- - -DROP TABLE IF EXISTS `mdl_data_content`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_data_content` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `fieldid` bigint(10) NOT NULL DEFAULT 0, - `recordid` bigint(10) NOT NULL DEFAULT 0, - `content` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `content1` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `content2` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `content3` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `content4` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_datacont_rec_ix` (`recordid`), - KEY `mdl_datacont_fie_ix` (`fieldid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='the content introduced in each record/fields'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_data_content` --- - -LOCK TABLES `mdl_data_content` WRITE; -/*!40000 ALTER TABLE `mdl_data_content` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_data_content` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_data_fields` --- - -DROP TABLE IF EXISTS `mdl_data_fields`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_data_fields` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `dataid` bigint(10) NOT NULL DEFAULT 0, - `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `required` tinyint(1) NOT NULL DEFAULT 0, - `param1` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `param2` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `param3` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `param4` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `param5` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `param6` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `param7` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `param8` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `param9` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `param10` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_datafiel_typdat_ix` (`type`,`dataid`), - KEY `mdl_datafiel_dat_ix` (`dataid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='every field available'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_data_fields` --- - -LOCK TABLES `mdl_data_fields` WRITE; -/*!40000 ALTER TABLE `mdl_data_fields` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_data_fields` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_data_records` --- - -DROP TABLE IF EXISTS `mdl_data_records`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_data_records` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL DEFAULT 0, - `groupid` bigint(10) NOT NULL DEFAULT 0, - `dataid` bigint(10) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `approved` smallint(4) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_datareco_dat_ix` (`dataid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='every record introduced'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_data_records` --- - -LOCK TABLES `mdl_data_records` WRITE; -/*!40000 ALTER TABLE `mdl_data_records` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_data_records` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_editor_atto_autosave` --- - -DROP TABLE IF EXISTS `mdl_editor_atto_autosave`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_editor_atto_autosave` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `elementid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `contextid` bigint(10) NOT NULL, - `pagehash` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `userid` bigint(10) NOT NULL, - `drafttext` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `draftid` bigint(10) DEFAULT NULL, - `pageinstance` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_editattoauto_eleconuse_uix` (`elementid`,`contextid`,`userid`,`pagehash`) -) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Draft text that is auto-saved every 5 seconds while an edito'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_editor_atto_autosave` --- - -LOCK TABLES `mdl_editor_atto_autosave` WRITE; -/*!40000 ALTER TABLE `mdl_editor_atto_autosave` DISABLE KEYS */; -INSERT INTO `mdl_editor_atto_autosave` VALUES (6,'id_description_editor',28,'7a56ee3a8bd4fe66fcdc6871f1059257f8f915ad',2,'',369145508,'yui_3_17_2_1_1619624509743_113',1619624511),(7,'id_s__summary',1,'70ad5e7f2e4520b6b8fc0d0a2c73d0dd809f4efd',2,'',-1,'yui_3_17_2_1_1619624605918_46',1619624609); -/*!40000 ALTER TABLE `mdl_editor_atto_autosave` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_enrol` --- - -DROP TABLE IF EXISTS `mdl_enrol`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_enrol` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `enrol` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `status` bigint(10) NOT NULL DEFAULT 0, - `courseid` bigint(10) NOT NULL, - `sortorder` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `enrolperiod` bigint(10) DEFAULT 0, - `enrolstartdate` bigint(10) DEFAULT 0, - `enrolenddate` bigint(10) DEFAULT 0, - `expirynotify` tinyint(1) DEFAULT 0, - `expirythreshold` bigint(10) DEFAULT 0, - `notifyall` tinyint(1) DEFAULT 0, - `password` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `cost` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `currency` varchar(3) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `roleid` bigint(10) DEFAULT 0, - `customint1` bigint(10) DEFAULT NULL, - `customint2` bigint(10) DEFAULT NULL, - `customint3` bigint(10) DEFAULT NULL, - `customint4` bigint(10) DEFAULT NULL, - `customint5` bigint(10) DEFAULT NULL, - `customint6` bigint(10) DEFAULT NULL, - `customint7` bigint(10) DEFAULT NULL, - `customint8` bigint(10) DEFAULT NULL, - `customchar1` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `customchar2` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `customchar3` varchar(1333) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `customdec1` decimal(12,7) DEFAULT NULL, - `customdec2` decimal(12,7) DEFAULT NULL, - `customtext1` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `customtext2` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `customtext3` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `customtext4` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_enro_enr_ix` (`enrol`), - KEY `mdl_enro_cou_ix` (`courseid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Instances of enrolment plugins used in courses, fields marke'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_enrol` --- - -LOCK TABLES `mdl_enrol` WRITE; -/*!40000 ALTER TABLE `mdl_enrol` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_enrol` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_enrol_flatfile` --- - -DROP TABLE IF EXISTS `mdl_enrol_flatfile`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_enrol_flatfile` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `action` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `roleid` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `courseid` bigint(10) NOT NULL, - `timestart` bigint(10) NOT NULL DEFAULT 0, - `timeend` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_enroflat_cou_ix` (`courseid`), - KEY `mdl_enroflat_use_ix` (`userid`), - KEY `mdl_enroflat_rol_ix` (`roleid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='enrol_flatfile table retrofitted from MySQL'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_enrol_flatfile` --- - -LOCK TABLES `mdl_enrol_flatfile` WRITE; -/*!40000 ALTER TABLE `mdl_enrol_flatfile` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_enrol_flatfile` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_enrol_lti_lti2_consumer` --- - -DROP TABLE IF EXISTS `mdl_enrol_lti_lti2_consumer`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_enrol_lti_lti2_consumer` ( - `id` bigint(11) NOT NULL AUTO_INCREMENT, - `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `consumerkey256` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `consumerkey` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `secret` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `ltiversion` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `consumername` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `consumerversion` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `consumerguid` varchar(1024) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `profile` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `toolproxy` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `settings` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `protected` tinyint(1) NOT NULL, - `enabled` tinyint(1) NOT NULL, - `enablefrom` bigint(10) DEFAULT NULL, - `enableuntil` bigint(10) DEFAULT NULL, - `lastaccess` bigint(10) DEFAULT NULL, - `created` bigint(10) NOT NULL, - `updated` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_enroltilti2cons_con_uix` (`consumerkey256`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='LTI consumers interacting with moodle'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_enrol_lti_lti2_consumer` --- - -LOCK TABLES `mdl_enrol_lti_lti2_consumer` WRITE; -/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_consumer` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_consumer` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_enrol_lti_lti2_context` --- - -DROP TABLE IF EXISTS `mdl_enrol_lti_lti2_context`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_enrol_lti_lti2_context` ( - `id` bigint(11) NOT NULL AUTO_INCREMENT, - `consumerid` bigint(11) NOT NULL, - `lticontextkey` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `type` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `settings` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `created` bigint(10) NOT NULL, - `updated` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_enroltilti2cont_con_ix` (`consumerid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Information about a specific LTI contexts from the consumers'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_enrol_lti_lti2_context` --- - -LOCK TABLES `mdl_enrol_lti_lti2_context` WRITE; -/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_context` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_context` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_enrol_lti_lti2_nonce` --- - -DROP TABLE IF EXISTS `mdl_enrol_lti_lti2_nonce`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_enrol_lti_lti2_nonce` ( - `id` bigint(11) NOT NULL AUTO_INCREMENT, - `consumerid` bigint(11) NOT NULL, - `value` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `expires` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_enroltilti2nonc_con_ix` (`consumerid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Nonce used for authentication between moodle and a consumer'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_enrol_lti_lti2_nonce` --- - -LOCK TABLES `mdl_enrol_lti_lti2_nonce` WRITE; -/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_nonce` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_nonce` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_enrol_lti_lti2_resource_link` --- - -DROP TABLE IF EXISTS `mdl_enrol_lti_lti2_resource_link`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_enrol_lti_lti2_resource_link` ( - `id` bigint(11) NOT NULL AUTO_INCREMENT, - `contextid` bigint(11) DEFAULT NULL, - `consumerid` bigint(11) DEFAULT NULL, - `ltiresourcelinkkey` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `settings` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `primaryresourcelinkid` bigint(11) DEFAULT NULL, - `shareapproved` tinyint(1) DEFAULT NULL, - `created` bigint(10) NOT NULL, - `updated` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_enroltilti2resolink_con_ix` (`contextid`), - KEY `mdl_enroltilti2resolink_pri_ix` (`primaryresourcelinkid`), - KEY `mdl_enroltilti2resolink_co2_ix` (`consumerid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Link from the consumer to the tool'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_enrol_lti_lti2_resource_link` --- - -LOCK TABLES `mdl_enrol_lti_lti2_resource_link` WRITE; -/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_resource_link` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_resource_link` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_enrol_lti_lti2_share_key` --- - -DROP TABLE IF EXISTS `mdl_enrol_lti_lti2_share_key`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_enrol_lti_lti2_share_key` ( - `id` bigint(11) NOT NULL AUTO_INCREMENT, - `sharekey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `resourcelinkid` bigint(11) NOT NULL, - `autoapprove` tinyint(1) NOT NULL, - `expires` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_enroltilti2sharkey_sha_uix` (`sharekey`), - UNIQUE KEY `mdl_enroltilti2sharkey_res_uix` (`resourcelinkid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Resource link share key'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_enrol_lti_lti2_share_key` --- - -LOCK TABLES `mdl_enrol_lti_lti2_share_key` WRITE; -/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_share_key` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_share_key` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_enrol_lti_lti2_tool_proxy` --- - -DROP TABLE IF EXISTS `mdl_enrol_lti_lti2_tool_proxy`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_enrol_lti_lti2_tool_proxy` ( - `id` bigint(11) NOT NULL AUTO_INCREMENT, - `toolproxykey` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `consumerid` bigint(11) NOT NULL, - `toolproxy` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `created` bigint(10) NOT NULL, - `updated` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_enroltilti2toolprox_to_uix` (`toolproxykey`), - KEY `mdl_enroltilti2toolprox_con_ix` (`consumerid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='A tool proxy between moodle and a consumer'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_enrol_lti_lti2_tool_proxy` --- - -LOCK TABLES `mdl_enrol_lti_lti2_tool_proxy` WRITE; -/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_tool_proxy` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_tool_proxy` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_enrol_lti_lti2_user_result` --- - -DROP TABLE IF EXISTS `mdl_enrol_lti_lti2_user_result`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_enrol_lti_lti2_user_result` ( - `id` bigint(11) NOT NULL AUTO_INCREMENT, - `resourcelinkid` bigint(11) NOT NULL, - `ltiuserkey` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `ltiresultsourcedid` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `created` bigint(10) NOT NULL, - `updated` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_enroltilti2userresu_res_ix` (`resourcelinkid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Results for each user for each resource link'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_enrol_lti_lti2_user_result` --- - -LOCK TABLES `mdl_enrol_lti_lti2_user_result` WRITE; -/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_user_result` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_enrol_lti_lti2_user_result` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_enrol_lti_tool_consumer_map` --- - -DROP TABLE IF EXISTS `mdl_enrol_lti_tool_consumer_map`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_enrol_lti_tool_consumer_map` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `toolid` bigint(11) NOT NULL, - `consumerid` bigint(11) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_enroltitoolconsmap_too_ix` (`toolid`), - KEY `mdl_enroltitoolconsmap_con_ix` (`consumerid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Table that maps the published tool to tool consumers.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_enrol_lti_tool_consumer_map` --- - -LOCK TABLES `mdl_enrol_lti_tool_consumer_map` WRITE; -/*!40000 ALTER TABLE `mdl_enrol_lti_tool_consumer_map` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_enrol_lti_tool_consumer_map` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_enrol_lti_tools` --- - -DROP TABLE IF EXISTS `mdl_enrol_lti_tools`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_enrol_lti_tools` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `enrolid` bigint(10) NOT NULL, - `contextid` bigint(10) NOT NULL, - `institution` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `lang` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', - `timezone` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '99', - `maxenrolled` bigint(10) NOT NULL DEFAULT 0, - `maildisplay` tinyint(2) NOT NULL DEFAULT 2, - `city` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `country` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `gradesync` tinyint(1) NOT NULL DEFAULT 0, - `gradesynccompletion` tinyint(1) NOT NULL DEFAULT 0, - `membersync` tinyint(1) NOT NULL DEFAULT 0, - `membersyncmode` tinyint(1) NOT NULL DEFAULT 0, - `roleinstructor` bigint(10) NOT NULL, - `rolelearner` bigint(10) NOT NULL, - `secret` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_enroltitool_enr_ix` (`enrolid`), - KEY `mdl_enroltitool_con_ix` (`contextid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='List of tools provided to the remote system'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_enrol_lti_tools` --- - -LOCK TABLES `mdl_enrol_lti_tools` WRITE; -/*!40000 ALTER TABLE `mdl_enrol_lti_tools` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_enrol_lti_tools` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_enrol_lti_users` --- - -DROP TABLE IF EXISTS `mdl_enrol_lti_users`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_enrol_lti_users` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL, - `toolid` bigint(10) NOT NULL, - `serviceurl` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `sourceid` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `consumerkey` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `consumersecret` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `membershipsurl` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `membershipsid` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `lastgrade` decimal(10,5) DEFAULT NULL, - `lastaccess` bigint(10) DEFAULT NULL, - `timecreated` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_enroltiuser_use_ix` (`userid`), - KEY `mdl_enroltiuser_too_ix` (`toolid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='User access log and gradeback data'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_enrol_lti_users` --- - -LOCK TABLES `mdl_enrol_lti_users` WRITE; -/*!40000 ALTER TABLE `mdl_enrol_lti_users` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_enrol_lti_users` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_enrol_paypal` --- - -DROP TABLE IF EXISTS `mdl_enrol_paypal`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_enrol_paypal` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `business` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `receiver_email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `receiver_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `item_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `courseid` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `instanceid` bigint(10) NOT NULL DEFAULT 0, - `memo` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `tax` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `option_name1` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `option_selection1_x` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `option_name2` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `option_selection2_x` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `payment_status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `pending_reason` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `reason_code` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `txn_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `parent_txn_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `payment_type` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `timeupdated` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_enropayp_bus_ix` (`business`), - KEY `mdl_enropayp_rec_ix` (`receiver_email`), - KEY `mdl_enropayp_cou_ix` (`courseid`), - KEY `mdl_enropayp_use_ix` (`userid`), - KEY `mdl_enropayp_ins_ix` (`instanceid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Holds all known information about PayPal transactions'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_enrol_paypal` --- - -LOCK TABLES `mdl_enrol_paypal` WRITE; -/*!40000 ALTER TABLE `mdl_enrol_paypal` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_enrol_paypal` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_event` --- - -DROP TABLE IF EXISTS `mdl_event`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_event` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `format` smallint(4) NOT NULL DEFAULT 0, - `categoryid` bigint(10) NOT NULL DEFAULT 0, - `courseid` bigint(10) NOT NULL DEFAULT 0, - `groupid` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `repeatid` bigint(10) NOT NULL DEFAULT 0, - `component` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `modulename` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `instance` bigint(10) NOT NULL DEFAULT 0, - `type` smallint(4) NOT NULL DEFAULT 0, - `eventtype` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `timestart` bigint(10) NOT NULL DEFAULT 0, - `timeduration` bigint(10) NOT NULL DEFAULT 0, - `timesort` bigint(10) DEFAULT NULL, - `visible` smallint(4) NOT NULL DEFAULT 1, - `uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `sequence` bigint(10) NOT NULL DEFAULT 1, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `subscriptionid` bigint(10) DEFAULT NULL, - `priority` bigint(10) DEFAULT NULL, - `location` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_even_cou_ix` (`courseid`), - KEY `mdl_even_use_ix` (`userid`), - KEY `mdl_even_tim_ix` (`timestart`), - KEY `mdl_even_tim2_ix` (`timeduration`), - KEY `mdl_even_uui_ix` (`uuid`), - KEY `mdl_even_typtim_ix` (`type`,`timesort`), - KEY `mdl_even_grocoucatvisuse_ix` (`groupid`,`courseid`,`categoryid`,`visible`,`userid`), - KEY `mdl_even_eve_ix` (`eventtype`), - KEY `mdl_even_comeveins_ix` (`component`,`eventtype`,`instance`), - KEY `mdl_even_modinseve_ix` (`modulename`,`instance`,`eventtype`), - KEY `mdl_even_cat_ix` (`categoryid`), - KEY `mdl_even_sub_ix` (`subscriptionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='For everything with a time associated to it'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_event` --- - -LOCK TABLES `mdl_event` WRITE; -/*!40000 ALTER TABLE `mdl_event` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_event` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_event_subscriptions` --- - -DROP TABLE IF EXISTS `mdl_event_subscriptions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_event_subscriptions` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `categoryid` bigint(10) NOT NULL DEFAULT 0, - `courseid` bigint(10) NOT NULL DEFAULT 0, - `groupid` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `eventtype` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `pollinterval` bigint(10) NOT NULL DEFAULT 0, - `lastupdated` bigint(10) DEFAULT NULL, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Tracks subscriptions to remote calendars.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_event_subscriptions` --- - -LOCK TABLES `mdl_event_subscriptions` WRITE; -/*!40000 ALTER TABLE `mdl_event_subscriptions` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_event_subscriptions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_events_handlers` --- - -DROP TABLE IF EXISTS `mdl_events_handlers`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_events_handlers` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `eventname` varchar(166) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `component` varchar(166) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `handlerfile` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `handlerfunction` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `schedule` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `status` bigint(10) NOT NULL DEFAULT 0, - `internal` tinyint(2) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_evenhand_evecom_uix` (`eventname`,`component`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table is for storing which components requests what typ'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_events_handlers` --- - -LOCK TABLES `mdl_events_handlers` WRITE; -/*!40000 ALTER TABLE `mdl_events_handlers` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_events_handlers` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_events_queue` --- - -DROP TABLE IF EXISTS `mdl_events_queue`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_events_queue` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `eventdata` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `stackdump` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `userid` bigint(10) DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_evenqueu_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table is for storing queued events. It stores only one '; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_events_queue` --- - -LOCK TABLES `mdl_events_queue` WRITE; -/*!40000 ALTER TABLE `mdl_events_queue` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_events_queue` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_events_queue_handlers` --- - -DROP TABLE IF EXISTS `mdl_events_queue_handlers`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_events_queue_handlers` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `queuedeventid` bigint(10) NOT NULL, - `handlerid` bigint(10) NOT NULL, - `status` bigint(10) DEFAULT NULL, - `errormessage` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timemodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_evenqueuhand_que_ix` (`queuedeventid`), - KEY `mdl_evenqueuhand_han_ix` (`handlerid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This is the list of queued handlers for processing. The even'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_events_queue_handlers` --- - -LOCK TABLES `mdl_events_queue_handlers` WRITE; -/*!40000 ALTER TABLE `mdl_events_queue_handlers` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_events_queue_handlers` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_external_functions` --- - -DROP TABLE IF EXISTS `mdl_external_functions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_external_functions` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `classname` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `methodname` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `classpath` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `capabilities` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `services` varchar(1333) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_extefunc_nam_uix` (`name`) -) ENGINE=InnoDB AUTO_INCREMENT=611 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='list of all external functions'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_external_functions` --- - -LOCK TABLES `mdl_external_functions` WRITE; -/*!40000 ALTER TABLE `mdl_external_functions` DISABLE KEYS */; -INSERT INTO `mdl_external_functions` VALUES (1,'core_auth_confirm_user','core_auth_external','confirm_user',NULL,'moodle','',NULL),(2,'core_auth_request_password_reset','core_auth_external','request_password_reset',NULL,'moodle','',NULL),(3,'core_auth_is_minor','core_auth_external','is_minor',NULL,'moodle','',NULL),(4,'core_auth_is_age_digital_consent_verification_enabled','core_auth_external','is_age_digital_consent_verification_enabled',NULL,'moodle','',NULL),(5,'core_auth_resend_confirmation_email','core_auth_external','resend_confirmation_email',NULL,'moodle','',NULL),(6,'core_backup_get_async_backup_progress','core_backup_external','get_async_backup_progress','backup/externallib.php','moodle','',NULL),(7,'core_backup_get_async_backup_links_backup','core_backup_external','get_async_backup_links_backup','backup/externallib.php','moodle','',NULL),(8,'core_backup_get_async_backup_links_restore','core_backup_external','get_async_backup_links_restore','backup/externallib.php','moodle','',NULL),(9,'core_backup_get_copy_progress','core_backup_external','get_copy_progress','backup/externallib.php','moodle','',NULL),(10,'core_backup_submit_copy_form','core_backup_external','submit_copy_form','backup/externallib.php','moodle','',NULL),(11,'core_badges_get_user_badges','core_badges_external','get_user_badges',NULL,'moodle','moodle/badges:viewotherbadges','moodle_mobile_app'),(12,'core_blog_get_entries','core_blog\\external','get_entries',NULL,'moodle','','moodle_mobile_app'),(13,'core_blog_view_entries','core_blog\\external','view_entries',NULL,'moodle','','moodle_mobile_app'),(14,'core_calendar_get_calendar_monthly_view','core_calendar_external','get_calendar_monthly_view','calendar/externallib.php','moodle','','moodle_mobile_app'),(15,'core_calendar_get_calendar_day_view','core_calendar_external','get_calendar_day_view','calendar/externallib.php','moodle','','moodle_mobile_app'),(16,'core_calendar_get_calendar_upcoming_view','core_calendar_external','get_calendar_upcoming_view','calendar/externallib.php','moodle','','moodle_mobile_app'),(17,'core_calendar_update_event_start_day','core_calendar_external','update_event_start_day','calendar/externallib.php','moodle','moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries','moodle_mobile_app'),(18,'core_calendar_create_calendar_events','core_calendar_external','create_calendar_events','calendar/externallib.php','moodle','moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries','moodle_mobile_app'),(19,'core_calendar_delete_calendar_events','core_calendar_external','delete_calendar_events','calendar/externallib.php','moodle','moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries','moodle_mobile_app'),(20,'core_calendar_get_calendar_events','core_calendar_external','get_calendar_events','calendar/externallib.php','moodle','moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries','moodle_mobile_app'),(21,'core_calendar_get_action_events_by_timesort','core_calendar_external','get_calendar_action_events_by_timesort','calendar/externallib.php','moodle','moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries','moodle_mobile_app'),(22,'core_calendar_get_action_events_by_course','core_calendar_external','get_calendar_action_events_by_course','calendar/externallib.php','moodle','moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries','moodle_mobile_app'),(23,'core_calendar_get_action_events_by_courses','core_calendar_external','get_calendar_action_events_by_courses','calendar/externallib.php','moodle','moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries','moodle_mobile_app'),(24,'core_calendar_get_calendar_event_by_id','core_calendar_external','get_calendar_event_by_id','calendar/externallib.php','moodle','moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries','moodle_mobile_app'),(25,'core_calendar_submit_create_update_form','core_calendar_external','submit_create_update_form','calendar/externallib.php','moodle','moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries','moodle_mobile_app'),(26,'core_calendar_get_calendar_access_information','core_calendar_external','get_calendar_access_information','calendar/externallib.php','moodle','','moodle_mobile_app'),(27,'core_calendar_get_allowed_event_types','core_calendar_external','get_allowed_event_types','calendar/externallib.php','moodle','','moodle_mobile_app'),(28,'core_calendar_get_timestamps','core_calendar_external','get_timestamps','calendar/externallib.php','moodle','',NULL),(29,'core_calendar_get_calendar_export_token','core_calendar\\external\\export\\token','execute',NULL,'moodle','','moodle_mobile_app'),(30,'core_cohort_add_cohort_members','core_cohort_external','add_cohort_members','cohort/externallib.php','moodle','moodle/cohort:assign',NULL),(31,'core_cohort_create_cohorts','core_cohort_external','create_cohorts','cohort/externallib.php','moodle','moodle/cohort:manage',NULL),(32,'core_cohort_delete_cohort_members','core_cohort_external','delete_cohort_members','cohort/externallib.php','moodle','moodle/cohort:assign',NULL),(33,'core_cohort_delete_cohorts','core_cohort_external','delete_cohorts','cohort/externallib.php','moodle','moodle/cohort:manage',NULL),(34,'core_cohort_get_cohort_members','core_cohort_external','get_cohort_members','cohort/externallib.php','moodle','moodle/cohort:view',NULL),(35,'core_cohort_search_cohorts','core_cohort_external','search_cohorts','cohort/externallib.php','moodle','moodle/cohort:view',NULL),(36,'core_cohort_get_cohorts','core_cohort_external','get_cohorts','cohort/externallib.php','moodle','moodle/cohort:view',NULL),(37,'core_cohort_update_cohorts','core_cohort_external','update_cohorts','cohort/externallib.php','moodle','moodle/cohort:manage',NULL),(38,'core_comment_get_comments','core_comment_external','get_comments',NULL,'moodle','moodle/comment:view','moodle_mobile_app'),(39,'core_comment_add_comments','core_comment_external','add_comments',NULL,'moodle','','moodle_mobile_app'),(40,'core_comment_delete_comments','core_comment_external','delete_comments',NULL,'moodle','','moodle_mobile_app'),(41,'core_completion_get_activities_completion_status','core_completion_external','get_activities_completion_status',NULL,'moodle','','moodle_mobile_app'),(42,'core_completion_get_course_completion_status','core_completion_external','get_course_completion_status',NULL,'moodle','report/completion:view','moodle_mobile_app'),(43,'core_completion_mark_course_self_completed','core_completion_external','mark_course_self_completed',NULL,'moodle','','moodle_mobile_app'),(44,'core_completion_update_activity_completion_status_manually','core_completion_external','update_activity_completion_status_manually',NULL,'moodle','','moodle_mobile_app'),(45,'core_completion_override_activity_completion_status','core_completion_external','override_activity_completion_status',NULL,'moodle','moodle/course:overridecompletion',NULL),(46,'core_course_create_categories','core_course_external','create_categories','course/externallib.php','moodle','moodle/category:manage',NULL),(47,'core_course_create_courses','core_course_external','create_courses','course/externallib.php','moodle','moodle/course:create, moodle/course:visibility',NULL),(48,'core_course_delete_categories','core_course_external','delete_categories','course/externallib.php','moodle','moodle/category:manage',NULL),(49,'core_course_delete_courses','core_course_external','delete_courses','course/externallib.php','moodle','moodle/course:delete',NULL),(50,'core_course_delete_modules','core_course_external','delete_modules','course/externallib.php','moodle','moodle/course:manageactivities',NULL),(51,'core_course_duplicate_course','core_course_external','duplicate_course','course/externallib.php','moodle','moodle/backup:backupcourse, moodle/restore:restorecourse, moodle/course:create',NULL),(52,'core_course_get_categories','core_course_external','get_categories','course/externallib.php','moodle','moodle/category:viewhiddencategories','moodle_mobile_app'),(53,'core_course_get_contents','core_course_external','get_course_contents','course/externallib.php','moodle','moodle/course:update, moodle/course:viewhiddencourses','moodle_mobile_app'),(54,'core_course_get_course_module','core_course_external','get_course_module','course/externallib.php','moodle','','moodle_mobile_app'),(55,'core_course_get_course_module_by_instance','core_course_external','get_course_module_by_instance','course/externallib.php','moodle','','moodle_mobile_app'),(56,'core_course_get_module','core_course_external','get_module','course/externallib.php','moodle','',NULL),(57,'core_course_edit_module','core_course_external','edit_module','course/externallib.php','moodle','',NULL),(58,'core_course_edit_section','core_course_external','edit_section','course/externallib.php','moodle','',NULL),(59,'core_course_get_courses','core_course_external','get_courses','course/externallib.php','moodle','moodle/course:view, moodle/course:update, moodle/course:viewhiddencourses','moodle_mobile_app'),(60,'core_course_import_course','core_course_external','import_course','course/externallib.php','moodle','moodle/backup:backuptargetimport, moodle/restore:restoretargetimport',NULL),(61,'core_course_search_courses','core_course_external','search_courses','course/externallib.php','moodle','','moodle_mobile_app'),(62,'core_course_update_categories','core_course_external','update_categories','course/externallib.php','moodle','moodle/category:manage',NULL),(63,'core_course_update_courses','core_course_external','update_courses','course/externallib.php','moodle','moodle/course:update, moodle/course:changecategory, moodle/course:changefullname, moodle/course:changeshortname, moodle/course:changeidnumber, moodle/course:changesummary, moodle/course:visibility',NULL),(64,'core_course_view_course','core_course_external','view_course','course/externallib.php','moodle','','moodle_mobile_app'),(65,'core_course_get_user_navigation_options','core_course_external','get_user_navigation_options','course/externallib.php','moodle','','moodle_mobile_app'),(66,'core_course_get_user_administration_options','core_course_external','get_user_administration_options','course/externallib.php','moodle','','moodle_mobile_app'),(67,'core_course_get_courses_by_field','core_course_external','get_courses_by_field','course/externallib.php','moodle','','moodle_mobile_app'),(68,'core_course_check_updates','core_course_external','check_updates','course/externallib.php','moodle','','moodle_mobile_app'),(69,'core_course_get_updates_since','core_course_external','get_updates_since','course/externallib.php','moodle','','moodle_mobile_app'),(70,'core_course_get_enrolled_courses_by_timeline_classification','core_course_external','get_enrolled_courses_by_timeline_classification','course/externallib.php','moodle','','moodle_mobile_app'),(71,'core_course_get_recent_courses','core_course_external','get_recent_courses','course/externallib.php','moodle','','moodle_mobile_app'),(72,'core_course_set_favourite_courses','core_course_external','set_favourite_courses','course/externallib.php','moodle','','moodle_mobile_app'),(73,'core_course_get_enrolled_users_by_cmid','core_course_external','get_enrolled_users_by_cmid','course/externallib.php','moodle','',NULL),(74,'core_course_add_content_item_to_user_favourites','core_course_external','add_content_item_to_user_favourites','course/externallib.php','moodle','',NULL),(75,'core_course_remove_content_item_from_user_favourites','core_course_external','remove_content_item_from_user_favourites','course/externallib.php','moodle','',NULL),(76,'core_course_get_course_content_items','core_course_external','get_course_content_items','course/externallib.php','moodle','',NULL),(77,'core_course_get_activity_chooser_footer','core_course_external','get_activity_chooser_footer','course/externallib.php','moodle','',NULL),(78,'core_course_toggle_activity_recommendation','core_course_external','toggle_activity_recommendation','course/externallib.php','moodle','',NULL),(79,'core_enrol_get_course_enrolment_methods','core_enrol_external','get_course_enrolment_methods','enrol/externallib.php','moodle','','moodle_mobile_app'),(80,'core_enrol_get_enrolled_users','core_enrol_external','get_enrolled_users','enrol/externallib.php','moodle','moodle/user:viewdetails, moodle/user:viewhiddendetails, moodle/course:useremail, moodle/user:update, moodle/site:accessallgroups','moodle_mobile_app'),(81,'core_enrol_get_enrolled_users_with_capability','core_enrol_external','get_enrolled_users_with_capability','enrol/externallib.php','moodle','',NULL),(82,'core_enrol_get_potential_users','core_enrol_external','get_potential_users','enrol/externallib.php','moodle','moodle/course:enrolreview',NULL),(83,'core_enrol_search_users','core_enrol_external','search_users','enrol/externallib.php','moodle','moodle/course:viewparticipants','moodle_mobile_app'),(84,'core_enrol_get_users_courses','core_enrol_external','get_users_courses','enrol/externallib.php','moodle','moodle/course:viewparticipants','moodle_mobile_app'),(85,'core_enrol_edit_user_enrolment','core_enrol_external','edit_user_enrolment','enrol/externallib.php','moodle','',NULL),(86,'core_enrol_submit_user_enrolment_form','core_enrol_external','submit_user_enrolment_form','enrol/externallib.php','moodle','',NULL),(87,'core_enrol_unenrol_user_enrolment','core_enrol_external','unenrol_user_enrolment','enrol/externallib.php','moodle','',NULL),(88,'core_fetch_notifications','core_external','fetch_notifications','lib/external/externallib.php','moodle','',NULL),(89,'core_session_touch','core\\session\\external','touch_session',NULL,'moodle','',NULL),(90,'core_session_time_remaining','core\\session\\external','time_remaining',NULL,'moodle','',NULL),(91,'core_files_get_files','core_files_external','get_files','files/externallib.php','moodle','','moodle_mobile_app'),(92,'core_files_upload','core_files_external','upload','files/externallib.php','moodle','',NULL),(93,'core_files_delete_draft_files','core_files\\external\\delete\\draft','execute',NULL,'moodle','','moodle_mobile_app'),(94,'core_form_get_filetypes_browser_data','core_form\\external','get_filetypes_browser_data',NULL,'moodle','',NULL),(95,'core_get_component_strings','core_external','get_component_strings','lib/external/externallib.php','moodle','','moodle_mobile_app'),(96,'core_get_fragment','core_external','get_fragment','lib/external/externallib.php','moodle','',NULL),(97,'core_get_string','core_external','get_string','lib/external/externallib.php','moodle','',NULL),(98,'core_get_strings','core_external','get_strings','lib/external/externallib.php','moodle','',NULL),(99,'core_get_user_dates','core_external','get_user_dates','lib/external/externallib.php','moodle','',NULL),(100,'core_grades_get_grades','core_grades_external','get_grades',NULL,'moodle','moodle/grade:view, moodle/grade:viewall, moodle/grade:viewhidden',NULL),(101,'core_grades_update_grades','core_grades_external','update_grades',NULL,'moodle','',NULL),(102,'core_grades_grader_gradingpanel_point_fetch','core_grades\\grades\\grader\\gradingpanel\\point\\external\\fetch','execute',NULL,'moodle','','moodle_mobile_app'),(103,'core_grades_grader_gradingpanel_point_store','core_grades\\grades\\grader\\gradingpanel\\point\\external\\store','execute',NULL,'moodle','','moodle_mobile_app'),(104,'core_grades_grader_gradingpanel_scale_fetch','core_grades\\grades\\grader\\gradingpanel\\scale\\external\\fetch','execute',NULL,'moodle','','moodle_mobile_app'),(105,'core_grades_grader_gradingpanel_scale_store','core_grades\\grades\\grader\\gradingpanel\\scale\\external\\store','execute',NULL,'moodle','','moodle_mobile_app'),(106,'core_grades_create_gradecategory','core_grades_external','create_gradecategory',NULL,'moodle','moodle/grade:manage',NULL),(107,'core_grading_get_definitions','core_grading_external','get_definitions',NULL,'moodle','',NULL),(108,'core_grading_get_gradingform_instances','core_grading_external','get_gradingform_instances',NULL,'moodle','',NULL),(109,'core_grading_save_definitions','core_grading_external','save_definitions',NULL,'moodle','',NULL),(110,'core_group_add_group_members','core_group_external','add_group_members','group/externallib.php','moodle','moodle/course:managegroups',NULL),(111,'core_group_assign_grouping','core_group_external','assign_grouping','group/externallib.php','moodle','',NULL),(112,'core_group_create_groupings','core_group_external','create_groupings','group/externallib.php','moodle','',NULL),(113,'core_group_create_groups','core_group_external','create_groups','group/externallib.php','moodle','moodle/course:managegroups',NULL),(114,'core_group_delete_group_members','core_group_external','delete_group_members','group/externallib.php','moodle','moodle/course:managegroups',NULL),(115,'core_group_delete_groupings','core_group_external','delete_groupings','group/externallib.php','moodle','',NULL),(116,'core_group_delete_groups','core_group_external','delete_groups','group/externallib.php','moodle','moodle/course:managegroups',NULL),(117,'core_group_get_activity_allowed_groups','core_group_external','get_activity_allowed_groups','group/externallib.php','moodle','','moodle_mobile_app'),(118,'core_group_get_activity_groupmode','core_group_external','get_activity_groupmode','group/externallib.php','moodle','','moodle_mobile_app'),(119,'core_group_get_course_groupings','core_group_external','get_course_groupings','group/externallib.php','moodle','','moodle_mobile_app'),(120,'core_group_get_course_groups','core_group_external','get_course_groups','group/externallib.php','moodle','moodle/course:managegroups','moodle_mobile_app'),(121,'core_group_get_course_user_groups','core_group_external','get_course_user_groups','group/externallib.php','moodle','moodle/course:managegroups','moodle_mobile_app'),(122,'core_group_get_group_members','core_group_external','get_group_members','group/externallib.php','moodle','moodle/course:managegroups',NULL),(123,'core_group_get_groupings','core_group_external','get_groupings','group/externallib.php','moodle','',NULL),(124,'core_group_get_groups','core_group_external','get_groups','group/externallib.php','moodle','moodle/course:managegroups',NULL),(125,'core_group_unassign_grouping','core_group_external','unassign_grouping','group/externallib.php','moodle','',NULL),(126,'core_group_update_groupings','core_group_external','update_groupings','group/externallib.php','moodle','',NULL),(127,'core_group_update_groups','core_group_external','update_groups','group/externallib.php','moodle','moodle/course:managegroups',NULL),(128,'core_message_mute_conversations','core_message_external','mute_conversations','message/externallib.php','moodle','','moodle_mobile_app'),(129,'core_message_unmute_conversations','core_message_external','unmute_conversations','message/externallib.php','moodle','','moodle_mobile_app'),(130,'core_message_block_user','core_message_external','block_user','message/externallib.php','moodle','','moodle_mobile_app'),(131,'core_message_get_contact_requests','core_message_external','get_contact_requests','message/externallib.php','moodle','','moodle_mobile_app'),(132,'core_message_create_contact_request','core_message_external','create_contact_request','message/externallib.php','moodle','','moodle_mobile_app'),(133,'core_message_confirm_contact_request','core_message_external','confirm_contact_request','message/externallib.php','moodle','','moodle_mobile_app'),(134,'core_message_decline_contact_request','core_message_external','decline_contact_request','message/externallib.php','moodle','','moodle_mobile_app'),(135,'core_message_get_received_contact_requests_count','core_message_external','get_received_contact_requests_count','message/externallib.php','moodle','','moodle_mobile_app'),(136,'core_message_delete_contacts','core_message_external','delete_contacts','message/externallib.php','moodle','','moodle_mobile_app'),(137,'core_message_delete_conversations_by_id','core_message_external','delete_conversations_by_id','message/externallib.php','moodle','moodle/site:deleteownmessage','moodle_mobile_app'),(138,'core_message_delete_message','core_message_external','delete_message','message/externallib.php','moodle','moodle/site:deleteownmessage','moodle_mobile_app'),(139,'core_message_get_blocked_users','core_message_external','get_blocked_users','message/externallib.php','moodle','','moodle_mobile_app'),(140,'core_message_data_for_messagearea_search_messages','core_message_external','data_for_messagearea_search_messages','message/externallib.php','moodle','','moodle_mobile_app'),(141,'core_message_message_search_users','core_message_external','message_search_users','message/externallib.php','moodle','','moodle_mobile_app'),(142,'core_message_get_user_contacts','core_message_external','get_user_contacts','message/externallib.php','moodle','','moodle_mobile_app'),(143,'core_message_get_conversations','core_message_external','get_conversations','message/externallib.php','moodle','','moodle_mobile_app'),(144,'core_message_get_conversation','core_message_external','get_conversation','message/externallib.php','moodle','','moodle_mobile_app'),(145,'core_message_get_conversation_between_users','core_message_external','get_conversation_between_users','message/externallib.php','moodle','','moodle_mobile_app'),(146,'core_message_get_self_conversation','core_message_external','get_self_conversation','message/externallib.php','moodle','','moodle_mobile_app'),(147,'core_message_get_messages','core_message_external','get_messages','message/externallib.php','moodle','','moodle_mobile_app'),(148,'core_message_get_conversation_counts','core_message_external','get_conversation_counts','message/externallib.php','moodle','','moodle_mobile_app'),(149,'core_message_get_unread_conversation_counts','core_message_external','get_unread_conversation_counts','message/externallib.php','moodle','','moodle_mobile_app'),(150,'core_message_get_conversation_members','core_message_external','get_conversation_members','message/externallib.php','moodle','','moodle_mobile_app'),(151,'core_message_get_member_info','core_message_external','get_member_info','message/externallib.php','moodle','','moodle_mobile_app'),(152,'core_message_get_unread_conversations_count','core_message_external','get_unread_conversations_count','message/externallib.php','moodle','','moodle_mobile_app'),(153,'core_message_mark_all_notifications_as_read','core_message_external','mark_all_notifications_as_read','message/externallib.php','moodle','','moodle_mobile_app'),(154,'core_message_mark_all_conversation_messages_as_read','core_message_external','mark_all_conversation_messages_as_read','message/externallib.php','moodle','','moodle_mobile_app'),(155,'core_message_mark_message_read','core_message_external','mark_message_read','message/externallib.php','moodle','','moodle_mobile_app'),(156,'core_message_mark_notification_read','core_message_external','mark_notification_read','message/externallib.php','moodle','','moodle_mobile_app'),(157,'core_message_message_processor_config_form','core_message_external','message_processor_config_form','message/externallib.php','moodle','','moodle_mobile_app'),(158,'core_message_get_message_processor','core_message_external','get_message_processor','message/externallib.php','moodle','',NULL),(159,'core_message_search_contacts','core_message_external','search_contacts','message/externallib.php','moodle','','moodle_mobile_app'),(160,'core_message_send_instant_messages','core_message_external','send_instant_messages','message/externallib.php','moodle','moodle/site:sendmessage','moodle_mobile_app'),(161,'core_message_send_messages_to_conversation','core_message_external','send_messages_to_conversation','message/externallib.php','moodle','moodle/site:sendmessage','moodle_mobile_app'),(162,'core_message_get_conversation_messages','core_message_external','get_conversation_messages','message/externallib.php','moodle','','moodle_mobile_app'),(163,'core_message_unblock_user','core_message_external','unblock_user','message/externallib.php','moodle','','moodle_mobile_app'),(164,'core_message_get_user_notification_preferences','core_message_external','get_user_notification_preferences','message/externallib.php','moodle','moodle/user:editownmessageprofile','moodle_mobile_app'),(165,'core_message_get_user_message_preferences','core_message_external','get_user_message_preferences','message/externallib.php','moodle','moodle/user:editownmessageprofile','moodle_mobile_app'),(166,'core_message_set_favourite_conversations','core_message_external','set_favourite_conversations','message/externallib.php','moodle','','moodle_mobile_app'),(167,'core_message_unset_favourite_conversations','core_message_external','unset_favourite_conversations','message/externallib.php','moodle','','moodle_mobile_app'),(168,'core_message_delete_message_for_all_users','core_message_external','delete_message_for_all_users','message/externallib.php','moodle','moodle/site:deleteanymessage','moodle_mobile_app'),(169,'core_notes_create_notes','core_notes_external','create_notes','notes/externallib.php','moodle','moodle/notes:manage','moodle_mobile_app'),(170,'core_notes_delete_notes','core_notes_external','delete_notes','notes/externallib.php','moodle','moodle/notes:manage','moodle_mobile_app'),(171,'core_notes_get_course_notes','core_notes_external','get_course_notes','notes/externallib.php','moodle','moodle/notes:view','moodle_mobile_app'),(172,'core_notes_get_notes','core_notes_external','get_notes','notes/externallib.php','moodle','moodle/notes:view',NULL),(173,'core_notes_update_notes','core_notes_external','update_notes','notes/externallib.php','moodle','moodle/notes:manage',NULL),(174,'core_notes_view_notes','core_notes_external','view_notes','notes/externallib.php','moodle','moodle/notes:view','moodle_mobile_app'),(175,'core_output_load_template','core\\output\\external','load_template',NULL,'moodle','',NULL),(176,'core_output_load_template_with_dependencies','core\\output\\external','load_template_with_dependencies',NULL,'moodle','',NULL),(177,'core_output_load_fontawesome_icon_map','core\\output\\external','load_fontawesome_icon_map',NULL,'moodle','',NULL),(178,'core_output_load_fontawesome_icon_system_map','core\\external\\output\\icon_system\\load_fontawesome_map','execute',NULL,'moodle','',NULL),(179,'core_question_update_flag','core_question_external','update_flag',NULL,'moodle','moodle/question:flag','moodle_mobile_app'),(180,'core_question_submit_tags_form','core_question_external','submit_tags_form',NULL,'moodle','',NULL),(181,'core_question_get_random_question_summaries','core_question_external','get_random_question_summaries',NULL,'moodle','',NULL),(182,'core_rating_get_item_ratings','core_rating_external','get_item_ratings',NULL,'moodle','moodle/rating:view','moodle_mobile_app'),(183,'core_rating_add_rating','core_rating_external','add_rating',NULL,'moodle','moodle/rating:rate','moodle_mobile_app'),(184,'core_role_assign_roles','core_role_external','assign_roles','enrol/externallib.php','moodle','moodle/role:assign',NULL),(185,'core_role_unassign_roles','core_role_external','unassign_roles','enrol/externallib.php','moodle','moodle/role:assign',NULL),(186,'core_search_get_relevant_users','\\core_search\\external','get_relevant_users',NULL,'moodle','',NULL),(187,'core_tag_get_tagindex','core_tag_external','get_tagindex',NULL,'moodle','','moodle_mobile_app'),(188,'core_tag_get_tags','core_tag_external','get_tags',NULL,'moodle','',NULL),(189,'core_tag_update_tags','core_tag_external','update_tags',NULL,'moodle','',NULL),(190,'core_tag_get_tagindex_per_area','core_tag_external','get_tagindex_per_area',NULL,'moodle','','moodle_mobile_app'),(191,'core_tag_get_tag_areas','core_tag_external','get_tag_areas',NULL,'moodle','','moodle_mobile_app'),(192,'core_tag_get_tag_collections','core_tag_external','get_tag_collections',NULL,'moodle','','moodle_mobile_app'),(193,'core_tag_get_tag_cloud','core_tag_external','get_tag_cloud',NULL,'moodle','','moodle_mobile_app'),(194,'core_update_inplace_editable','core_external','update_inplace_editable','lib/external/externallib.php','moodle','',NULL),(195,'core_user_add_user_device','core_user_external','add_user_device','user/externallib.php','moodle','','moodle_mobile_app'),(196,'core_user_add_user_private_files','core_user_external','add_user_private_files','user/externallib.php','moodle','moodle/user:manageownfiles','moodle_mobile_app'),(197,'core_user_create_users','core_user_external','create_users','user/externallib.php','moodle','moodle/user:create',NULL),(198,'core_user_delete_users','core_user_external','delete_users','user/externallib.php','moodle','moodle/user:delete',NULL),(199,'core_user_get_course_user_profiles','core_user_external','get_course_user_profiles','user/externallib.php','moodle','moodle/user:viewdetails, moodle/user:viewhiddendetails, moodle/course:useremail, moodle/user:update, moodle/site:accessallgroups','moodle_mobile_app'),(200,'core_user_get_users','core_user_external','get_users','user/externallib.php','moodle','moodle/user:viewdetails, moodle/user:viewhiddendetails, moodle/course:useremail, moodle/user:update',NULL),(201,'core_user_get_users_by_field','core_user_external','get_users_by_field','user/externallib.php','moodle','moodle/user:viewdetails, moodle/user:viewhiddendetails, moodle/course:useremail, moodle/user:update','moodle_mobile_app'),(202,'core_user_remove_user_device','core_user_external','remove_user_device','user/externallib.php','moodle','','moodle_mobile_app'),(203,'core_user_update_users','core_user_external','update_users','user/externallib.php','moodle','moodle/user:update',NULL),(204,'core_user_update_user_preferences','core_user_external','update_user_preferences','user/externallib.php','moodle','moodle/user:editownmessageprofile, moodle/user:editmessageprofile','moodle_mobile_app'),(205,'core_user_view_user_list','core_user_external','view_user_list','user/externallib.php','moodle','moodle/course:viewparticipants','moodle_mobile_app'),(206,'core_user_view_user_profile','core_user_external','view_user_profile','user/externallib.php','moodle','moodle/user:viewdetails','moodle_mobile_app'),(207,'core_user_get_user_preferences','core_user_external','get_user_preferences','user/externallib.php','moodle','','moodle_mobile_app'),(208,'core_user_update_picture','core_user_external','update_picture','user/externallib.php','moodle','moodle/user:editownprofile, moodle/user:editprofile','moodle_mobile_app'),(209,'core_user_set_user_preferences','core_user_external','set_user_preferences','user/externallib.php','moodle','moodle/site:config','moodle_mobile_app'),(210,'core_user_agree_site_policy','core_user_external','agree_site_policy','user/externallib.php','moodle','','moodle_mobile_app'),(211,'core_user_get_private_files_info','core_user_external','get_private_files_info','user/externallib.php','moodle','moodle/user:manageownfiles','moodle_mobile_app'),(212,'core_competency_create_competency_framework','core_competency\\external','create_competency_framework',NULL,'moodle','moodle/competency:competencymanage',NULL),(213,'core_competency_read_competency_framework','core_competency\\external','read_competency_framework',NULL,'moodle','moodle/competency:competencyview',NULL),(214,'core_competency_duplicate_competency_framework','core_competency\\external','duplicate_competency_framework',NULL,'moodle','moodle/competency:competencymanage',NULL),(215,'core_competency_delete_competency_framework','core_competency\\external','delete_competency_framework',NULL,'moodle','moodle/competency:competencymanage',NULL),(216,'core_competency_update_competency_framework','core_competency\\external','update_competency_framework',NULL,'moodle','moodle/competency:competencymanage',NULL),(217,'core_competency_list_competency_frameworks','core_competency\\external','list_competency_frameworks',NULL,'moodle','moodle/competency:competencyview',NULL),(218,'core_competency_count_competency_frameworks','core_competency\\external','count_competency_frameworks',NULL,'moodle','moodle/competency:competencyview',NULL),(219,'core_competency_competency_framework_viewed','core_competency\\external','competency_framework_viewed',NULL,'moodle','moodle/competency:competencyview',NULL),(220,'core_competency_create_competency','core_competency\\external','create_competency',NULL,'moodle','moodle/competency:competencymanage',NULL),(221,'core_competency_read_competency','core_competency\\external','read_competency',NULL,'moodle','moodle/competency:competencyview',NULL),(222,'core_competency_competency_viewed','core_competency\\external','competency_viewed',NULL,'moodle','moodle/competency:competencyview','moodle_mobile_app'),(223,'core_competency_delete_competency','core_competency\\external','delete_competency',NULL,'moodle','moodle/competency:competencymanage',NULL),(224,'core_competency_update_competency','core_competency\\external','update_competency',NULL,'moodle','moodle/competency:competencymanage',NULL),(225,'core_competency_list_competencies','core_competency\\external','list_competencies',NULL,'moodle','moodle/competency:competencyview',NULL),(226,'core_competency_list_competencies_in_template','core_competency\\external','list_competencies_in_template',NULL,'moodle','moodle/competency:competencyview',NULL),(227,'core_competency_count_competencies','core_competency\\external','count_competencies',NULL,'moodle','moodle/competency:competencyview',NULL),(228,'core_competency_count_competencies_in_template','core_competency\\external','count_competencies_in_template',NULL,'moodle','moodle/competency:competencyview',NULL),(229,'core_competency_search_competencies','core_competency\\external','search_competencies',NULL,'moodle','moodle/competency:competencyview',NULL),(230,'core_competency_set_parent_competency','core_competency\\external','set_parent_competency',NULL,'moodle','moodle/competency:competencymanage',NULL),(231,'core_competency_move_up_competency','core_competency\\external','move_up_competency',NULL,'moodle','moodle/competency:competencymanage',NULL),(232,'core_competency_move_down_competency','core_competency\\external','move_down_competency',NULL,'moodle','moodle/competency:competencymanage',NULL),(233,'core_competency_list_course_module_competencies','core_competency\\external','list_course_module_competencies',NULL,'moodle','moodle/competency:coursecompetencyview',NULL),(234,'core_competency_count_course_module_competencies','core_competency\\external','count_course_module_competencies',NULL,'moodle','moodle/competency:coursecompetencyview',NULL),(235,'core_competency_list_course_competencies','core_competency\\external','list_course_competencies',NULL,'moodle','moodle/competency:coursecompetencyview','moodle_mobile_app'),(236,'core_competency_count_competencies_in_course','core_competency\\external','count_competencies_in_course',NULL,'moodle','moodle/competency:coursecompetencyview',NULL),(237,'core_competency_count_courses_using_competency','core_competency\\external','count_courses_using_competency',NULL,'moodle','moodle/competency:coursecompetencyview',NULL),(238,'core_competency_add_competency_to_course','core_competency\\external','add_competency_to_course',NULL,'moodle','moodle/competency:coursecompetencymanage',NULL),(239,'core_competency_add_competency_to_template','core_competency\\external','add_competency_to_template',NULL,'moodle','moodle/competency:templatemanage',NULL),(240,'core_competency_remove_competency_from_course','core_competency\\external','remove_competency_from_course',NULL,'moodle','moodle/competency:coursecompetencymanage',NULL),(241,'core_competency_set_course_competency_ruleoutcome','core_competency\\external','set_course_competency_ruleoutcome',NULL,'moodle','moodle/competency:coursecompetencymanage',NULL),(242,'core_competency_remove_competency_from_template','core_competency\\external','remove_competency_from_template',NULL,'moodle','moodle/competency:templatemanage',NULL),(243,'core_competency_reorder_course_competency','core_competency\\external','reorder_course_competency',NULL,'moodle','moodle/competency:coursecompetencymanage',NULL),(244,'core_competency_reorder_template_competency','core_competency\\external','reorder_template_competency',NULL,'moodle','moodle/competency:templatemanage',NULL),(245,'core_competency_create_template','core_competency\\external','create_template',NULL,'moodle','moodle/competency:templatemanage',NULL),(246,'core_competency_duplicate_template','core_competency\\external','duplicate_template',NULL,'moodle','moodle/competency:templatemanage',NULL),(247,'core_competency_read_template','core_competency\\external','read_template',NULL,'moodle','moodle/competency:templateview',NULL),(248,'core_competency_delete_template','core_competency\\external','delete_template',NULL,'moodle','moodle/competency:templatemanage',NULL),(249,'core_competency_update_template','core_competency\\external','update_template',NULL,'moodle','moodle/competency:templatemanage',NULL),(250,'core_competency_list_templates','core_competency\\external','list_templates',NULL,'moodle','moodle/competency:templateview',NULL),(251,'core_competency_list_templates_using_competency','core_competency\\external','list_templates_using_competency',NULL,'moodle','moodle/competency:templateview',NULL),(252,'core_competency_count_templates','core_competency\\external','count_templates',NULL,'moodle','moodle/competency:templateview',NULL),(253,'core_competency_count_templates_using_competency','core_competency\\external','count_templates_using_competency',NULL,'moodle','moodle/competency:templateview',NULL),(254,'core_competency_create_plan','core_competency\\external','create_plan',NULL,'moodle','moodle/competency:planmanage',NULL),(255,'core_competency_update_plan','core_competency\\external','update_plan',NULL,'moodle','moodle/competency:planmanage',NULL),(256,'core_competency_complete_plan','core_competency\\external','complete_plan',NULL,'moodle','moodle/competency:planmanage',NULL),(257,'core_competency_reopen_plan','core_competency\\external','reopen_plan',NULL,'moodle','moodle/competency:planmanage',NULL),(258,'core_competency_read_plan','core_competency\\external','read_plan',NULL,'moodle','moodle/competency:planviewown',NULL),(259,'core_competency_delete_plan','core_competency\\external','delete_plan',NULL,'moodle','moodle/competency:planmanage',NULL),(260,'core_competency_list_user_plans','core_competency\\external','list_user_plans',NULL,'moodle','moodle/competency:planviewown',NULL),(261,'core_competency_list_plan_competencies','core_competency\\external','list_plan_competencies',NULL,'moodle','moodle/competency:planviewown',NULL),(262,'core_competency_add_competency_to_plan','core_competency\\external','add_competency_to_plan',NULL,'moodle','moodle/competency:planmanage',NULL),(263,'core_competency_remove_competency_from_plan','core_competency\\external','remove_competency_from_plan',NULL,'moodle','moodle/competency:planmanage',NULL),(264,'core_competency_reorder_plan_competency','core_competency\\external','reorder_plan_competency',NULL,'moodle','moodle/competency:planmanage',NULL),(265,'core_competency_plan_request_review','core_competency\\external','plan_request_review',NULL,'moodle','moodle/competency:planmanagedraft',NULL),(266,'core_competency_plan_start_review','core_competency\\external','plan_start_review',NULL,'moodle','moodle/competency:planmanage',NULL),(267,'core_competency_plan_stop_review','core_competency\\external','plan_stop_review',NULL,'moodle','moodle/competency:planmanage',NULL),(268,'core_competency_plan_cancel_review_request','core_competency\\external','plan_cancel_review_request',NULL,'moodle','moodle/competency:planmanagedraft',NULL),(269,'core_competency_approve_plan','core_competency\\external','approve_plan',NULL,'moodle','moodle/competency:planmanage',NULL),(270,'core_competency_unapprove_plan','core_competency\\external','unapprove_plan',NULL,'moodle','moodle/competency:planmanage',NULL),(271,'core_competency_template_has_related_data','core_competency\\external','template_has_related_data',NULL,'moodle','moodle/competency:templateview',NULL),(272,'core_competency_get_scale_values','core_competency\\external','get_scale_values',NULL,'moodle','moodle/competency:competencymanage','moodle_mobile_app'),(273,'core_competency_add_related_competency','core_competency\\external','add_related_competency',NULL,'moodle','moodle/competency:competencymanage',NULL),(274,'core_competency_remove_related_competency','core_competency\\external','remove_related_competency',NULL,'moodle','moodle/competency:competencymanage',NULL),(275,'core_competency_read_user_evidence','core_competency\\external','read_user_evidence',NULL,'moodle','moodle/competency:userevidenceview',NULL),(276,'core_competency_delete_user_evidence','core_competency\\external','delete_user_evidence',NULL,'moodle','moodle/competency:userevidencemanageown',NULL),(277,'core_competency_create_user_evidence_competency','core_competency\\external','create_user_evidence_competency',NULL,'moodle','moodle/competency:userevidencemanageown, moodle/competency:competencyview',NULL),(278,'core_competency_delete_user_evidence_competency','core_competency\\external','delete_user_evidence_competency',NULL,'moodle','moodle/competency:userevidencemanageown',NULL),(279,'core_competency_user_competency_cancel_review_request','core_competency\\external','user_competency_cancel_review_request',NULL,'moodle','moodle/competency:userevidencemanageown',NULL),(280,'core_competency_user_competency_request_review','core_competency\\external','user_competency_request_review',NULL,'moodle','moodle/competency:userevidencemanageown',NULL),(281,'core_competency_user_competency_start_review','core_competency\\external','user_competency_start_review',NULL,'moodle','moodle/competency:competencygrade',NULL),(282,'core_competency_user_competency_stop_review','core_competency\\external','user_competency_stop_review',NULL,'moodle','moodle/competency:competencygrade',NULL),(283,'core_competency_user_competency_viewed','core_competency\\external','user_competency_viewed',NULL,'moodle','moodle/competency:usercompetencyview','moodle_mobile_app'),(284,'core_competency_user_competency_viewed_in_plan','core_competency\\external','user_competency_viewed_in_plan',NULL,'moodle','moodle/competency:usercompetencyview','moodle_mobile_app'),(285,'core_competency_user_competency_viewed_in_course','core_competency\\external','user_competency_viewed_in_course',NULL,'moodle','moodle/competency:usercompetencyview','moodle_mobile_app'),(286,'core_competency_user_competency_plan_viewed','core_competency\\external','user_competency_plan_viewed',NULL,'moodle','moodle/competency:usercompetencyview','moodle_mobile_app'),(287,'core_competency_grade_competency','core_competency\\external','grade_competency',NULL,'moodle','moodle/competency:competencygrade',NULL),(288,'core_competency_grade_competency_in_plan','core_competency\\external','grade_competency_in_plan',NULL,'moodle','moodle/competency:competencygrade',NULL),(289,'core_competency_grade_competency_in_course','core_competency\\external','grade_competency_in_course',NULL,'moodle','moodle/competency:competencygrade','moodle_mobile_app'),(290,'core_competency_unlink_plan_from_template','core_competency\\external','unlink_plan_from_template',NULL,'moodle','moodle/competency:planmanage',NULL),(291,'core_competency_template_viewed','core_competency\\external','template_viewed',NULL,'moodle','moodle/competency:templateview',NULL),(292,'core_competency_request_review_of_user_evidence_linked_competencies','core_competency\\external','request_review_of_user_evidence_linked_competencies',NULL,'moodle','moodle/competency:userevidencemanageown',NULL),(293,'core_competency_update_course_competency_settings','core_competency\\external','update_course_competency_settings',NULL,'moodle','moodle/competency:coursecompetencyconfigure',NULL),(294,'core_competency_delete_evidence','core_competency\\external','delete_evidence',NULL,'moodle','moodle/competency:evidencedelete','moodle_mobile_app'),(295,'core_webservice_get_site_info','core_webservice_external','get_site_info','webservice/externallib.php','moodle','','moodle_mobile_app'),(296,'core_block_get_course_blocks','core_block_external','get_course_blocks',NULL,'moodle','','moodle_mobile_app'),(297,'core_block_get_dashboard_blocks','core_block_external','get_dashboard_blocks',NULL,'moodle','','moodle_mobile_app'),(298,'core_filters_get_available_in_context','core_filters\\external','get_available_in_context',NULL,'moodle','','moodle_mobile_app'),(299,'core_customfield_delete_field','core_customfield_external','delete_field','customfield/externallib.php','moodle','',NULL),(300,'core_customfield_reload_template','core_customfield_external','reload_template','customfield/externallib.php','moodle','',NULL),(301,'core_customfield_create_category','core_customfield_external','create_category','customfield/externallib.php','moodle','',NULL),(302,'core_customfield_delete_category','core_customfield_external','delete_category','customfield/externallib.php','moodle','',NULL),(303,'core_customfield_move_field','core_customfield_external','move_field','customfield/externallib.php','moodle','',NULL),(304,'core_customfield_move_category','core_customfield_external','move_category','customfield/externallib.php','moodle','',NULL),(305,'core_h5p_get_trusted_h5p_file','core_h5p\\external','get_trusted_h5p_file',NULL,'moodle','','moodle_mobile_app'),(306,'core_table_get_dynamic_table_content','core_table\\external\\dynamic\\get','execute',NULL,'moodle','','moodle_mobile_app'),(307,'core_xapi_statement_post','core_xapi\\external\\post_statement','execute',NULL,'moodle','','moodle_mobile_app'),(308,'core_contentbank_delete_content','core_contentbank\\external\\delete_content','execute',NULL,'moodle','moodle/contentbank:deleteanycontent',NULL),(309,'core_contentbank_rename_content','core_contentbank\\external\\rename_content','execute',NULL,'moodle','moodle/contentbank:manageowncontent',NULL),(310,'core_create_userfeedback_action_record','core\\external\\record_userfeedback_action','execute',NULL,'moodle','',NULL),(311,'core_payment_get_available_gateways','core_payment\\external\\get_available_gateways','execute',NULL,'moodle','',NULL),(312,'mod_assign_copy_previous_attempt','mod_assign_external','copy_previous_attempt','mod/assign/externallib.php','mod_assign','mod/assign:view, mod/assign:submit',NULL),(313,'mod_assign_get_grades','mod_assign_external','get_grades','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(314,'mod_assign_get_assignments','mod_assign_external','get_assignments','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(315,'mod_assign_get_submissions','mod_assign_external','get_submissions','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(316,'mod_assign_get_user_flags','mod_assign_external','get_user_flags','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(317,'mod_assign_set_user_flags','mod_assign_external','set_user_flags','mod/assign/externallib.php','mod_assign','mod/assign:grade','moodle_mobile_app'),(318,'mod_assign_get_user_mappings','mod_assign_external','get_user_mappings','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(319,'mod_assign_revert_submissions_to_draft','mod_assign_external','revert_submissions_to_draft','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(320,'mod_assign_lock_submissions','mod_assign_external','lock_submissions','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(321,'mod_assign_unlock_submissions','mod_assign_external','unlock_submissions','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(322,'mod_assign_save_submission','mod_assign_external','save_submission','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(323,'mod_assign_submit_for_grading','mod_assign_external','submit_for_grading','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(324,'mod_assign_save_grade','mod_assign_external','save_grade','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(325,'mod_assign_save_grades','mod_assign_external','save_grades','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(326,'mod_assign_save_user_extensions','mod_assign_external','save_user_extensions','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(327,'mod_assign_reveal_identities','mod_assign_external','reveal_identities','mod/assign/externallib.php','mod_assign','','moodle_mobile_app'),(328,'mod_assign_view_grading_table','mod_assign_external','view_grading_table','mod/assign/externallib.php','mod_assign','mod/assign:view, mod/assign:viewgrades','moodle_mobile_app'),(329,'mod_assign_view_submission_status','mod_assign_external','view_submission_status','mod/assign/externallib.php','mod_assign','mod/assign:view','moodle_mobile_app'),(330,'mod_assign_get_submission_status','mod_assign_external','get_submission_status','mod/assign/externallib.php','mod_assign','mod/assign:view','moodle_mobile_app'),(331,'mod_assign_list_participants','mod_assign_external','list_participants','mod/assign/externallib.php','mod_assign','mod/assign:view, mod/assign:viewgrades','moodle_mobile_app'),(332,'mod_assign_submit_grading_form','mod_assign_external','submit_grading_form','mod/assign/externallib.php','mod_assign','mod/assign:grade','moodle_mobile_app'),(333,'mod_assign_get_participant','mod_assign_external','get_participant','mod/assign/externallib.php','mod_assign','mod/assign:view, mod/assign:viewgrades','moodle_mobile_app'),(334,'mod_assign_view_assign','mod_assign_external','view_assign','mod/assign/externallib.php','mod_assign','mod/assign:view','moodle_mobile_app'),(335,'mod_book_view_book','mod_book_external','view_book',NULL,'mod_book','mod/book:read','moodle_mobile_app'),(336,'mod_book_get_books_by_courses','mod_book_external','get_books_by_courses',NULL,'mod_book','','moodle_mobile_app'),(337,'mod_chat_login_user','mod_chat_external','login_user',NULL,'mod_chat','mod/chat:chat','moodle_mobile_app'),(338,'mod_chat_get_chat_users','mod_chat_external','get_chat_users',NULL,'mod_chat','mod/chat:chat','moodle_mobile_app'),(339,'mod_chat_send_chat_message','mod_chat_external','send_chat_message',NULL,'mod_chat','mod/chat:chat','moodle_mobile_app'),(340,'mod_chat_get_chat_latest_messages','mod_chat_external','get_chat_latest_messages',NULL,'mod_chat','mod/chat:chat','moodle_mobile_app'),(341,'mod_chat_view_chat','mod_chat_external','view_chat',NULL,'mod_chat','mod/chat:chat','moodle_mobile_app'),(342,'mod_chat_get_chats_by_courses','mod_chat_external','get_chats_by_courses',NULL,'mod_chat','','moodle_mobile_app'),(343,'mod_chat_get_sessions','mod_chat_external','get_sessions',NULL,'mod_chat','','moodle_mobile_app'),(344,'mod_chat_get_session_messages','mod_chat_external','get_session_messages',NULL,'mod_chat','','moodle_mobile_app'),(345,'mod_choice_get_choice_results','mod_choice_external','get_choice_results',NULL,'mod_choice','','moodle_mobile_app'),(346,'mod_choice_get_choice_options','mod_choice_external','get_choice_options',NULL,'mod_choice','mod/choice:choose','moodle_mobile_app'),(347,'mod_choice_submit_choice_response','mod_choice_external','submit_choice_response',NULL,'mod_choice','mod/choice:choose','moodle_mobile_app'),(348,'mod_choice_view_choice','mod_choice_external','view_choice',NULL,'mod_choice','','moodle_mobile_app'),(349,'mod_choice_get_choices_by_courses','mod_choice_external','get_choices_by_courses',NULL,'mod_choice','','moodle_mobile_app'),(350,'mod_choice_delete_choice_responses','mod_choice_external','delete_choice_responses',NULL,'mod_choice','mod/choice:choose','moodle_mobile_app'),(351,'mod_data_get_databases_by_courses','mod_data_external','get_databases_by_courses',NULL,'mod_data','mod/data:viewentry','moodle_mobile_app'),(352,'mod_data_view_database','mod_data_external','view_database',NULL,'mod_data','mod/data:viewentry','moodle_mobile_app'),(353,'mod_data_get_data_access_information','mod_data_external','get_data_access_information',NULL,'mod_data','mod/data:viewentry','moodle_mobile_app'),(354,'mod_data_get_entries','mod_data_external','get_entries',NULL,'mod_data','mod/data:viewentry','moodle_mobile_app'),(355,'mod_data_get_entry','mod_data_external','get_entry',NULL,'mod_data','mod/data:viewentry','moodle_mobile_app'),(356,'mod_data_get_fields','mod_data_external','get_fields',NULL,'mod_data','mod/data:viewentry','moodle_mobile_app'),(357,'mod_data_search_entries','mod_data_external','search_entries',NULL,'mod_data','mod/data:viewentry','moodle_mobile_app'),(358,'mod_data_approve_entry','mod_data_external','approve_entry',NULL,'mod_data','mod/data:approve','moodle_mobile_app'),(359,'mod_data_delete_entry','mod_data_external','delete_entry',NULL,'mod_data','mod/data:manageentries','moodle_mobile_app'),(360,'mod_data_add_entry','mod_data_external','add_entry',NULL,'mod_data','mod/data:writeentry','moodle_mobile_app'),(361,'mod_data_update_entry','mod_data_external','update_entry',NULL,'mod_data','mod/data:writeentry','moodle_mobile_app'),(362,'mod_feedback_get_feedbacks_by_courses','mod_feedback_external','get_feedbacks_by_courses',NULL,'mod_feedback','mod/feedback:view','moodle_mobile_app'),(363,'mod_feedback_get_feedback_access_information','mod_feedback_external','get_feedback_access_information',NULL,'mod_feedback','mod/feedback:view','moodle_mobile_app'),(364,'mod_feedback_view_feedback','mod_feedback_external','view_feedback',NULL,'mod_feedback','mod/feedback:view','moodle_mobile_app'),(365,'mod_feedback_get_current_completed_tmp','mod_feedback_external','get_current_completed_tmp',NULL,'mod_feedback','mod/feedback:view','moodle_mobile_app'),(366,'mod_feedback_get_items','mod_feedback_external','get_items',NULL,'mod_feedback','mod/feedback:view','moodle_mobile_app'),(367,'mod_feedback_launch_feedback','mod_feedback_external','launch_feedback',NULL,'mod_feedback','mod/feedback:complete','moodle_mobile_app'),(368,'mod_feedback_get_page_items','mod_feedback_external','get_page_items',NULL,'mod_feedback','mod/feedback:complete','moodle_mobile_app'),(369,'mod_feedback_process_page','mod_feedback_external','process_page',NULL,'mod_feedback','mod/feedback:complete','moodle_mobile_app'),(370,'mod_feedback_get_analysis','mod_feedback_external','get_analysis',NULL,'mod_feedback','mod/feedback:viewanalysepage','moodle_mobile_app'),(371,'mod_feedback_get_unfinished_responses','mod_feedback_external','get_unfinished_responses',NULL,'mod_feedback','mod/feedback:view','moodle_mobile_app'),(372,'mod_feedback_get_finished_responses','mod_feedback_external','get_finished_responses',NULL,'mod_feedback','mod/feedback:view','moodle_mobile_app'),(373,'mod_feedback_get_non_respondents','mod_feedback_external','get_non_respondents',NULL,'mod_feedback','mod/feedback:viewreports','moodle_mobile_app'),(374,'mod_feedback_get_responses_analysis','mod_feedback_external','get_responses_analysis',NULL,'mod_feedback','mod/feedback:viewreports','moodle_mobile_app'),(375,'mod_feedback_get_last_completed','mod_feedback_external','get_last_completed',NULL,'mod_feedback','mod/feedback:view','moodle_mobile_app'),(376,'mod_folder_view_folder','mod_folder_external','view_folder',NULL,'mod_folder','mod/folder:view','moodle_mobile_app'),(377,'mod_folder_get_folders_by_courses','mod_folder_external','get_folders_by_courses',NULL,'mod_folder','mod/folder:view','moodle_mobile_app'),(378,'mod_forum_get_forums_by_courses','mod_forum_external','get_forums_by_courses','mod/forum/externallib.php','mod_forum','mod/forum:viewdiscussion','moodle_mobile_app'),(379,'mod_forum_get_discussion_posts','mod_forum_external','get_discussion_posts','mod/forum/externallib.php','mod_forum','mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting','moodle_mobile_app'),(380,'mod_forum_get_forum_discussion_posts','mod_forum_external','get_forum_discussion_posts','mod/forum/externallib.php','mod_forum','mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting','moodle_mobile_app'),(381,'mod_forum_get_forum_discussions_paginated','mod_forum_external','get_forum_discussions_paginated','mod/forum/externallib.php','mod_forum','mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting','moodle_mobile_app'),(382,'mod_forum_get_forum_discussions','mod_forum_external','get_forum_discussions','mod/forum/externallib.php','mod_forum','mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting','moodle_mobile_app'),(383,'mod_forum_view_forum','mod_forum_external','view_forum','mod/forum/externallib.php','mod_forum','mod/forum:viewdiscussion','moodle_mobile_app'),(384,'mod_forum_view_forum_discussion','mod_forum_external','view_forum_discussion','mod/forum/externallib.php','mod_forum','mod/forum:viewdiscussion','moodle_mobile_app'),(385,'mod_forum_add_discussion_post','mod_forum_external','add_discussion_post','mod/forum/externallib.php','mod_forum','mod/forum:replypost','moodle_mobile_app'),(386,'mod_forum_add_discussion','mod_forum_external','add_discussion','mod/forum/externallib.php','mod_forum','mod/forum:startdiscussion','moodle_mobile_app'),(387,'mod_forum_can_add_discussion','mod_forum_external','can_add_discussion','mod/forum/externallib.php','mod_forum','','moodle_mobile_app'),(388,'mod_forum_get_forum_access_information','mod_forum_external','get_forum_access_information',NULL,'mod_forum','','moodle_mobile_app'),(389,'mod_forum_set_subscription_state','mod_forum_external','set_subscription_state','mod/forum/externallib.php','mod_forum','','moodle_mobile_app'),(390,'mod_forum_set_lock_state','mod_forum_external','set_lock_state','mod/forum/externallib.php','mod_forum','moodle/course:manageactivities','moodle_mobile_app'),(391,'mod_forum_toggle_favourite_state','mod_forum_external','toggle_favourite_state','mod/forum/externallib.php','mod_forum','','moodle_mobile_app'),(392,'mod_forum_set_pin_state','mod_forum_external','set_pin_state','mod/forum/externallib.php','mod_forum','','moodle_mobile_app'),(393,'mod_forum_delete_post','mod_forum_external','delete_post','mod/forum/externallib.php','mod_forum','','moodle_mobile_app'),(394,'mod_forum_get_discussion_posts_by_userid','mod_forum_external','get_discussion_posts_by_userid','mod/forum/externallib.php','mod_forum','mod/forum:viewdiscussion, mod/forum:viewqandawithoutposting',NULL),(395,'mod_forum_get_discussion_post','mod_forum_external','get_discussion_post','mod/forum/externallib.php','mod_forum','','moodle_mobile_app'),(396,'mod_forum_prepare_draft_area_for_post','mod_forum_external','prepare_draft_area_for_post','mod/forum/externallib.php','mod_forum','','moodle_mobile_app'),(397,'mod_forum_update_discussion_post','mod_forum_external','update_discussion_post','mod/forum/externallib.php','mod_forum','','moodle_mobile_app'),(398,'mod_glossary_get_glossaries_by_courses','mod_glossary_external','get_glossaries_by_courses',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(399,'mod_glossary_view_glossary','mod_glossary_external','view_glossary',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(400,'mod_glossary_view_entry','mod_glossary_external','view_entry',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(401,'mod_glossary_get_entries_by_letter','mod_glossary_external','get_entries_by_letter',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(402,'mod_glossary_get_entries_by_date','mod_glossary_external','get_entries_by_date',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(403,'mod_glossary_get_categories','mod_glossary_external','get_categories',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(404,'mod_glossary_get_entries_by_category','mod_glossary_external','get_entries_by_category',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(405,'mod_glossary_get_authors','mod_glossary_external','get_authors',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(406,'mod_glossary_get_entries_by_author','mod_glossary_external','get_entries_by_author',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(407,'mod_glossary_get_entries_by_author_id','mod_glossary_external','get_entries_by_author_id',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(408,'mod_glossary_get_entries_by_search','mod_glossary_external','get_entries_by_search',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(409,'mod_glossary_get_entries_by_term','mod_glossary_external','get_entries_by_term',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(410,'mod_glossary_get_entries_to_approve','mod_glossary_external','get_entries_to_approve',NULL,'mod_glossary','mod/glossary:approve','moodle_mobile_app'),(411,'mod_glossary_get_entry_by_id','mod_glossary_external','get_entry_by_id',NULL,'mod_glossary','mod/glossary:view','moodle_mobile_app'),(412,'mod_glossary_add_entry','mod_glossary_external','add_entry',NULL,'mod_glossary','mod/glossary:write','moodle_mobile_app'),(413,'mod_glossary_delete_entry','mod_glossary\\external\\delete_entry','execute',NULL,'mod_glossary','','moodle_mobile_app'),(414,'mod_glossary_update_entry','mod_glossary\\external\\update_entry','execute',NULL,'mod_glossary','','moodle_mobile_app'),(415,'mod_glossary_prepare_entry_for_edition','mod_glossary\\external\\prepare_entry','execute',NULL,'mod_glossary','','moodle_mobile_app'),(416,'mod_h5pactivity_get_h5pactivity_access_information','mod_h5pactivity\\external\\get_h5pactivity_access_information','execute',NULL,'mod_h5pactivity','mod/h5pactivity:view','moodle_mobile_app'),(417,'mod_h5pactivity_view_h5pactivity','mod_h5pactivity\\external\\view_h5pactivity','execute',NULL,'mod_h5pactivity','mod/h5pactivity:view','moodle_mobile_app'),(418,'mod_h5pactivity_get_attempts','mod_h5pactivity\\external\\get_attempts','execute',NULL,'mod_h5pactivity','mod/h5pactivity:view','moodle_mobile_app'),(419,'mod_h5pactivity_get_results','mod_h5pactivity\\external\\get_results','execute',NULL,'mod_h5pactivity','mod/h5pactivity:view','moodle_mobile_app'),(420,'mod_h5pactivity_get_h5pactivities_by_courses','mod_h5pactivity\\external\\get_h5pactivities_by_courses','execute',NULL,'mod_h5pactivity','mod/h5pactivity:view','moodle_mobile_app'),(421,'mod_imscp_view_imscp','mod_imscp_external','view_imscp',NULL,'mod_imscp','mod/imscp:view','moodle_mobile_app'),(422,'mod_imscp_get_imscps_by_courses','mod_imscp_external','get_imscps_by_courses',NULL,'mod_imscp','mod/imscp:view','moodle_mobile_app'),(423,'mod_label_get_labels_by_courses','mod_label_external','get_labels_by_courses',NULL,'mod_label','mod/label:view','moodle_mobile_app'),(424,'mod_lesson_get_lessons_by_courses','mod_lesson_external','get_lessons_by_courses',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(425,'mod_lesson_get_lesson_access_information','mod_lesson_external','get_lesson_access_information',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(426,'mod_lesson_view_lesson','mod_lesson_external','view_lesson',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(427,'mod_lesson_get_questions_attempts','mod_lesson_external','get_questions_attempts',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(428,'mod_lesson_get_user_grade','mod_lesson_external','get_user_grade',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(429,'mod_lesson_get_user_attempt_grade','mod_lesson_external','get_user_attempt_grade',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(430,'mod_lesson_get_content_pages_viewed','mod_lesson_external','get_content_pages_viewed',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(431,'mod_lesson_get_user_timers','mod_lesson_external','get_user_timers',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(432,'mod_lesson_get_pages','mod_lesson_external','get_pages',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(433,'mod_lesson_launch_attempt','mod_lesson_external','launch_attempt',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(434,'mod_lesson_get_page_data','mod_lesson_external','get_page_data',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(435,'mod_lesson_process_page','mod_lesson_external','process_page',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(436,'mod_lesson_finish_attempt','mod_lesson_external','finish_attempt',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(437,'mod_lesson_get_attempts_overview','mod_lesson_external','get_attempts_overview',NULL,'mod_lesson','mod/lesson:viewreports','moodle_mobile_app'),(438,'mod_lesson_get_user_attempt','mod_lesson_external','get_user_attempt',NULL,'mod_lesson','mod/lesson:viewreports','moodle_mobile_app'),(439,'mod_lesson_get_pages_possible_jumps','mod_lesson_external','get_pages_possible_jumps',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(440,'mod_lesson_get_lesson','mod_lesson_external','get_lesson',NULL,'mod_lesson','mod/lesson:view','moodle_mobile_app'),(441,'mod_lti_get_tool_launch_data','mod_lti_external','get_tool_launch_data',NULL,'mod_lti','mod/lti:view','moodle_mobile_app'),(442,'mod_lti_get_ltis_by_courses','mod_lti_external','get_ltis_by_courses',NULL,'mod_lti','mod/lti:view','moodle_mobile_app'),(443,'mod_lti_view_lti','mod_lti_external','view_lti',NULL,'mod_lti','mod/lti:view','moodle_mobile_app'),(444,'mod_lti_get_tool_proxies','mod_lti_external','get_tool_proxies',NULL,'mod_lti','moodle/site:config',NULL),(445,'mod_lti_create_tool_proxy','mod_lti_external','create_tool_proxy',NULL,'mod_lti','moodle/site:config',NULL),(446,'mod_lti_delete_tool_proxy','mod_lti_external','delete_tool_proxy',NULL,'mod_lti','moodle/site:config',NULL),(447,'mod_lti_get_tool_proxy_registration_request','mod_lti_external','get_tool_proxy_registration_request',NULL,'mod_lti','moodle/site:config',NULL),(448,'mod_lti_get_tool_types','mod_lti_external','get_tool_types',NULL,'mod_lti','moodle/site:config',NULL),(449,'mod_lti_create_tool_type','mod_lti_external','create_tool_type',NULL,'mod_lti','moodle/site:config',NULL),(450,'mod_lti_update_tool_type','mod_lti_external','update_tool_type',NULL,'mod_lti','moodle/site:config',NULL),(451,'mod_lti_delete_tool_type','mod_lti_external','delete_tool_type',NULL,'mod_lti','moodle/site:config',NULL),(452,'mod_lti_is_cartridge','mod_lti_external','is_cartridge',NULL,'mod_lti','moodle/site:config',NULL),(453,'mod_page_view_page','mod_page_external','view_page',NULL,'mod_page','mod/page:view','moodle_mobile_app'),(454,'mod_page_get_pages_by_courses','mod_page_external','get_pages_by_courses',NULL,'mod_page','mod/page:view','moodle_mobile_app'),(455,'mod_quiz_get_quizzes_by_courses','mod_quiz_external','get_quizzes_by_courses',NULL,'mod_quiz','mod/quiz:view','moodle_mobile_app'),(456,'mod_quiz_view_quiz','mod_quiz_external','view_quiz',NULL,'mod_quiz','mod/quiz:view','moodle_mobile_app'),(457,'mod_quiz_get_user_attempts','mod_quiz_external','get_user_attempts',NULL,'mod_quiz','mod/quiz:view','moodle_mobile_app'),(458,'mod_quiz_get_user_best_grade','mod_quiz_external','get_user_best_grade',NULL,'mod_quiz','mod/quiz:view','moodle_mobile_app'),(459,'mod_quiz_get_combined_review_options','mod_quiz_external','get_combined_review_options',NULL,'mod_quiz','mod/quiz:view','moodle_mobile_app'),(460,'mod_quiz_start_attempt','mod_quiz_external','start_attempt',NULL,'mod_quiz','mod/quiz:attempt','moodle_mobile_app'),(461,'mod_quiz_get_attempt_data','mod_quiz_external','get_attempt_data',NULL,'mod_quiz','mod/quiz:attempt','moodle_mobile_app'),(462,'mod_quiz_get_attempt_summary','mod_quiz_external','get_attempt_summary',NULL,'mod_quiz','mod/quiz:attempt','moodle_mobile_app'),(463,'mod_quiz_save_attempt','mod_quiz_external','save_attempt',NULL,'mod_quiz','mod/quiz:attempt','moodle_mobile_app'),(464,'mod_quiz_process_attempt','mod_quiz_external','process_attempt',NULL,'mod_quiz','mod/quiz:attempt','moodle_mobile_app'),(465,'mod_quiz_get_attempt_review','mod_quiz_external','get_attempt_review',NULL,'mod_quiz','mod/quiz:reviewmyattempts','moodle_mobile_app'),(466,'mod_quiz_view_attempt','mod_quiz_external','view_attempt',NULL,'mod_quiz','mod/quiz:attempt','moodle_mobile_app'),(467,'mod_quiz_view_attempt_summary','mod_quiz_external','view_attempt_summary',NULL,'mod_quiz','mod/quiz:attempt','moodle_mobile_app'),(468,'mod_quiz_view_attempt_review','mod_quiz_external','view_attempt_review',NULL,'mod_quiz','mod/quiz:reviewmyattempts','moodle_mobile_app'),(469,'mod_quiz_get_quiz_feedback_for_grade','mod_quiz_external','get_quiz_feedback_for_grade',NULL,'mod_quiz','mod/quiz:view','moodle_mobile_app'),(470,'mod_quiz_get_quiz_access_information','mod_quiz_external','get_quiz_access_information',NULL,'mod_quiz','mod/quiz:view','moodle_mobile_app'),(471,'mod_quiz_get_attempt_access_information','mod_quiz_external','get_attempt_access_information',NULL,'mod_quiz','mod/quiz:view','moodle_mobile_app'),(472,'mod_quiz_get_quiz_required_qtypes','mod_quiz_external','get_quiz_required_qtypes',NULL,'mod_quiz','mod/quiz:view','moodle_mobile_app'),(473,'mod_resource_view_resource','mod_resource_external','view_resource',NULL,'mod_resource','mod/resource:view','moodle_mobile_app'),(474,'mod_resource_get_resources_by_courses','mod_resource_external','get_resources_by_courses',NULL,'mod_resource','mod/resource:view','moodle_mobile_app'),(475,'mod_scorm_view_scorm','mod_scorm_external','view_scorm',NULL,'mod_scorm','','moodle_mobile_app'),(476,'mod_scorm_get_scorm_attempt_count','mod_scorm_external','get_scorm_attempt_count',NULL,'mod_scorm','','moodle_mobile_app'),(477,'mod_scorm_get_scorm_scoes','mod_scorm_external','get_scorm_scoes',NULL,'mod_scorm','','moodle_mobile_app'),(478,'mod_scorm_get_scorm_user_data','mod_scorm_external','get_scorm_user_data',NULL,'mod_scorm','','moodle_mobile_app'),(479,'mod_scorm_insert_scorm_tracks','mod_scorm_external','insert_scorm_tracks',NULL,'mod_scorm','mod/scorm:savetrack','moodle_mobile_app'),(480,'mod_scorm_get_scorm_sco_tracks','mod_scorm_external','get_scorm_sco_tracks',NULL,'mod_scorm','','moodle_mobile_app'),(481,'mod_scorm_get_scorms_by_courses','mod_scorm_external','get_scorms_by_courses',NULL,'mod_scorm','','moodle_mobile_app'),(482,'mod_scorm_launch_sco','mod_scorm_external','launch_sco',NULL,'mod_scorm','','moodle_mobile_app'),(483,'mod_scorm_get_scorm_access_information','mod_scorm_external','get_scorm_access_information',NULL,'mod_scorm','','moodle_mobile_app'),(484,'mod_survey_get_surveys_by_courses','mod_survey_external','get_surveys_by_courses',NULL,'mod_survey','','moodle_mobile_app'),(485,'mod_survey_view_survey','mod_survey_external','view_survey',NULL,'mod_survey','mod/survey:participate','moodle_mobile_app'),(486,'mod_survey_get_questions','mod_survey_external','get_questions',NULL,'mod_survey','mod/survey:participate','moodle_mobile_app'),(487,'mod_survey_submit_answers','mod_survey_external','submit_answers',NULL,'mod_survey','mod/survey:participate','moodle_mobile_app'),(488,'mod_url_view_url','mod_url_external','view_url',NULL,'mod_url','mod/url:view','moodle_mobile_app'),(489,'mod_url_get_urls_by_courses','mod_url_external','get_urls_by_courses',NULL,'mod_url','mod/url:view','moodle_mobile_app'),(490,'mod_wiki_get_wikis_by_courses','mod_wiki_external','get_wikis_by_courses',NULL,'mod_wiki','mod/wiki:viewpage','moodle_mobile_app'),(491,'mod_wiki_view_wiki','mod_wiki_external','view_wiki',NULL,'mod_wiki','mod/wiki:viewpage','moodle_mobile_app'),(492,'mod_wiki_view_page','mod_wiki_external','view_page',NULL,'mod_wiki','mod/wiki:viewpage','moodle_mobile_app'),(493,'mod_wiki_get_subwikis','mod_wiki_external','get_subwikis',NULL,'mod_wiki','mod/wiki:viewpage','moodle_mobile_app'),(494,'mod_wiki_get_subwiki_pages','mod_wiki_external','get_subwiki_pages',NULL,'mod_wiki','mod/wiki:viewpage','moodle_mobile_app'),(495,'mod_wiki_get_subwiki_files','mod_wiki_external','get_subwiki_files',NULL,'mod_wiki','mod/wiki:viewpage','moodle_mobile_app'),(496,'mod_wiki_get_page_contents','mod_wiki_external','get_page_contents',NULL,'mod_wiki','mod/wiki:viewpage','moodle_mobile_app'),(497,'mod_wiki_get_page_for_editing','mod_wiki_external','get_page_for_editing',NULL,'mod_wiki','mod/wiki:editpage','moodle_mobile_app'),(498,'mod_wiki_new_page','mod_wiki_external','new_page',NULL,'mod_wiki','mod/wiki:editpage','moodle_mobile_app'),(499,'mod_wiki_edit_page','mod_wiki_external','edit_page',NULL,'mod_wiki','mod/wiki:editpage','moodle_mobile_app'),(500,'mod_workshop_get_workshops_by_courses','mod_workshop_external','get_workshops_by_courses',NULL,'mod_workshop','mod/workshop:view','moodle_mobile_app'),(501,'mod_workshop_get_workshop_access_information','mod_workshop_external','get_workshop_access_information',NULL,'mod_workshop','mod/workshop:view','moodle_mobile_app'),(502,'mod_workshop_get_user_plan','mod_workshop_external','get_user_plan',NULL,'mod_workshop','mod/workshop:view','moodle_mobile_app'),(503,'mod_workshop_view_workshop','mod_workshop_external','view_workshop',NULL,'mod_workshop','mod/workshop:view','moodle_mobile_app'),(504,'mod_workshop_add_submission','mod_workshop_external','add_submission',NULL,'mod_workshop','mod/workshop:submit','moodle_mobile_app'),(505,'mod_workshop_update_submission','mod_workshop_external','update_submission',NULL,'mod_workshop','mod/workshop:submit','moodle_mobile_app'),(506,'mod_workshop_delete_submission','mod_workshop_external','delete_submission',NULL,'mod_workshop','mod/workshop:submit','moodle_mobile_app'),(507,'mod_workshop_get_submissions','mod_workshop_external','get_submissions',NULL,'mod_workshop','','moodle_mobile_app'),(508,'mod_workshop_get_submission','mod_workshop_external','get_submission',NULL,'mod_workshop','','moodle_mobile_app'),(509,'mod_workshop_get_submission_assessments','mod_workshop_external','get_submission_assessments',NULL,'mod_workshop','','moodle_mobile_app'),(510,'mod_workshop_get_assessment','mod_workshop_external','get_assessment',NULL,'mod_workshop','','moodle_mobile_app'),(511,'mod_workshop_get_assessment_form_definition','mod_workshop_external','get_assessment_form_definition',NULL,'mod_workshop','','moodle_mobile_app'),(512,'mod_workshop_get_reviewer_assessments','mod_workshop_external','get_reviewer_assessments',NULL,'mod_workshop','','moodle_mobile_app'),(513,'mod_workshop_update_assessment','mod_workshop_external','update_assessment',NULL,'mod_workshop','','moodle_mobile_app'),(514,'mod_workshop_get_grades','mod_workshop_external','get_grades',NULL,'mod_workshop','','moodle_mobile_app'),(515,'mod_workshop_evaluate_assessment','mod_workshop_external','evaluate_assessment',NULL,'mod_workshop','','moodle_mobile_app'),(516,'mod_workshop_get_grades_report','mod_workshop_external','get_grades_report',NULL,'mod_workshop','','moodle_mobile_app'),(517,'mod_workshop_view_submission','mod_workshop_external','view_submission',NULL,'mod_workshop','mod/workshop:view','moodle_mobile_app'),(518,'mod_workshop_evaluate_submission','mod_workshop_external','evaluate_submission',NULL,'mod_workshop','','moodle_mobile_app'),(519,'auth_email_get_signup_settings','auth_email_external','get_signup_settings',NULL,'auth_email','',NULL),(520,'auth_email_signup_user','auth_email_external','signup_user',NULL,'auth_email','',NULL),(521,'enrol_guest_get_instance_info','enrol_guest_external','get_instance_info',NULL,'enrol_guest','','moodle_mobile_app'),(522,'enrol_manual_enrol_users','enrol_manual_external','enrol_users','enrol/manual/externallib.php','enrol_manual','enrol/manual:enrol',NULL),(523,'enrol_manual_unenrol_users','enrol_manual_external','unenrol_users','enrol/manual/externallib.php','enrol_manual','enrol/manual:unenrol',NULL),(524,'enrol_self_get_instance_info','enrol_self_external','get_instance_info','enrol/self/externallib.php','enrol_self','','moodle_mobile_app'),(525,'enrol_self_enrol_user','enrol_self_external','enrol_user','enrol/self/externallib.php','enrol_self','','moodle_mobile_app'),(526,'message_airnotifier_is_system_configured','message_airnotifier_external','is_system_configured','message/output/airnotifier/externallib.php','message_airnotifier','','moodle_mobile_app'),(527,'message_airnotifier_are_notification_preferences_configured','message_airnotifier_external','are_notification_preferences_configured','message/output/airnotifier/externallib.php','message_airnotifier','','moodle_mobile_app'),(528,'message_airnotifier_get_user_devices','message_airnotifier_external','get_user_devices','message/output/airnotifier/externallib.php','message_airnotifier','','moodle_mobile_app'),(529,'message_airnotifier_enable_device','message_airnotifier_external','enable_device','message/output/airnotifier/externallib.php','message_airnotifier','message/airnotifier:managedevice','moodle_mobile_app'),(530,'message_popup_get_popup_notifications','message_popup_external','get_popup_notifications','message/output/popup/externallib.php','message_popup','','moodle_mobile_app'),(531,'message_popup_get_unread_popup_notification_count','message_popup_external','get_unread_popup_notification_count','message/output/popup/externallib.php','message_popup','','moodle_mobile_app'),(532,'block_recentlyaccesseditems_get_recent_items','block_recentlyaccesseditems\\external','get_recent_items',NULL,'block_recentlyaccesseditems','','moodle_mobile_app'),(533,'block_starredcourses_get_starred_courses','block_starredcourses_external','get_starred_courses','block/starredcourses/classes/external.php','block_starredcourses','','moodle_mobile_app'),(534,'media_videojs_get_language','media_videojs\\external\\get_language','execute',NULL,'media_videojs','',NULL),(535,'report_competency_data_for_report','report_competency\\external','data_for_report',NULL,'report_competency','moodle/competency:coursecompetencyview',NULL),(536,'report_insights_set_notuseful_prediction','report_insights\\external','set_notuseful_prediction',NULL,'report_insights','','moodle_mobile_app'),(537,'report_insights_set_fixed_prediction','report_insights\\external','set_fixed_prediction',NULL,'report_insights','','moodle_mobile_app'),(538,'report_insights_action_executed','report_insights\\external','action_executed',NULL,'report_insights','','moodle_mobile_app'),(539,'gradereport_overview_get_course_grades','gradereport_overview_external','get_course_grades',NULL,'gradereport_overview','','moodle_mobile_app'),(540,'gradereport_overview_view_grade_report','gradereport_overview_external','view_grade_report',NULL,'gradereport_overview','gradereport/overview:view','moodle_mobile_app'),(541,'gradereport_user_get_grades_table','gradereport_user_external','get_grades_table','grade/report/user/externallib.php','gradereport_user','gradereport/user:view','moodle_mobile_app'),(542,'gradereport_user_view_grade_report','gradereport_user_external','view_grade_report','grade/report/user/externallib.php','gradereport_user','gradereport/user:view','moodle_mobile_app'),(543,'gradereport_user_get_grade_items','gradereport_user_external','get_grade_items','grade/report/user/externallib.php','gradereport_user','gradereport/user:view','moodle_mobile_app'),(544,'gradingform_guide_grader_gradingpanel_fetch','gradingform_guide\\grades\\grader\\gradingpanel\\external\\fetch','execute',NULL,'gradingform_guide','',NULL),(545,'gradingform_guide_grader_gradingpanel_store','gradingform_guide\\grades\\grader\\gradingpanel\\external\\store','execute',NULL,'gradingform_guide','',NULL),(546,'gradingform_rubric_grader_gradingpanel_fetch','gradingform_rubric\\grades\\grader\\gradingpanel\\external\\fetch','execute',NULL,'gradingform_rubric','',NULL),(547,'gradingform_rubric_grader_gradingpanel_store','gradingform_rubric\\grades\\grader\\gradingpanel\\external\\store','execute',NULL,'gradingform_rubric','',NULL),(548,'tool_analytics_potential_contexts','tool_analytics\\external','potential_contexts',NULL,'tool_analytics','','moodle_mobile_app'),(549,'tool_dataprivacy_cancel_data_request','tool_dataprivacy\\external','cancel_data_request',NULL,'tool_dataprivacy','',NULL),(550,'tool_dataprivacy_contact_dpo','tool_dataprivacy\\external','contact_dpo',NULL,'tool_dataprivacy','',NULL),(551,'tool_dataprivacy_mark_complete','tool_dataprivacy\\external','mark_complete',NULL,'tool_dataprivacy','tool/dataprivacy:managedatarequests',NULL),(552,'tool_dataprivacy_get_data_request','tool_dataprivacy\\external','get_data_request',NULL,'tool_dataprivacy','tool/dataprivacy:managedatarequests',NULL),(553,'tool_dataprivacy_approve_data_request','tool_dataprivacy\\external','approve_data_request',NULL,'tool_dataprivacy','tool/dataprivacy:managedatarequests',NULL),(554,'tool_dataprivacy_bulk_approve_data_requests','tool_dataprivacy\\external','bulk_approve_data_requests',NULL,'tool_dataprivacy','tool/dataprivacy:managedatarequests',NULL),(555,'tool_dataprivacy_deny_data_request','tool_dataprivacy\\external','deny_data_request',NULL,'tool_dataprivacy','tool/dataprivacy:managedatarequests',NULL),(556,'tool_dataprivacy_bulk_deny_data_requests','tool_dataprivacy\\external','bulk_deny_data_requests',NULL,'tool_dataprivacy','tool/dataprivacy:managedatarequests',NULL),(557,'tool_dataprivacy_get_users','tool_dataprivacy\\external','get_users',NULL,'tool_dataprivacy','tool/dataprivacy:managedatarequests',NULL),(558,'tool_dataprivacy_create_purpose_form','tool_dataprivacy\\external','create_purpose_form',NULL,'tool_dataprivacy','',NULL),(559,'tool_dataprivacy_create_category_form','tool_dataprivacy\\external','create_category_form',NULL,'tool_dataprivacy','',NULL),(560,'tool_dataprivacy_delete_purpose','tool_dataprivacy\\external','delete_purpose',NULL,'tool_dataprivacy','',NULL),(561,'tool_dataprivacy_delete_category','tool_dataprivacy\\external','delete_category',NULL,'tool_dataprivacy','',NULL),(562,'tool_dataprivacy_set_contextlevel_form','tool_dataprivacy\\external','set_contextlevel_form',NULL,'tool_dataprivacy','',NULL),(563,'tool_dataprivacy_set_context_form','tool_dataprivacy\\external','set_context_form',NULL,'tool_dataprivacy','',NULL),(564,'tool_dataprivacy_tree_extra_branches','tool_dataprivacy\\external','tree_extra_branches',NULL,'tool_dataprivacy','',NULL),(565,'tool_dataprivacy_confirm_contexts_for_deletion','tool_dataprivacy\\external','confirm_contexts_for_deletion',NULL,'tool_dataprivacy','',NULL),(566,'tool_dataprivacy_set_context_defaults','tool_dataprivacy\\external','set_context_defaults',NULL,'tool_dataprivacy','tool/dataprivacy:managedataregistry',NULL),(567,'tool_dataprivacy_get_category_options','tool_dataprivacy\\external','get_category_options',NULL,'tool_dataprivacy','tool/dataprivacy:managedataregistry',NULL),(568,'tool_dataprivacy_get_purpose_options','tool_dataprivacy\\external','get_purpose_options',NULL,'tool_dataprivacy','tool/dataprivacy:managedataregistry',NULL),(569,'tool_dataprivacy_get_activity_options','tool_dataprivacy\\external','get_activity_options',NULL,'tool_dataprivacy','tool/dataprivacy:managedataregistry',NULL),(570,'tool_lp_data_for_competency_frameworks_manage_page','tool_lp\\external','data_for_competency_frameworks_manage_page',NULL,'tool_lp','moodle/competency:competencyview',NULL),(571,'tool_lp_data_for_competency_summary','tool_lp\\external','data_for_competency_summary',NULL,'tool_lp','moodle/competency:competencyview',NULL),(572,'tool_lp_data_for_competencies_manage_page','tool_lp\\external','data_for_competencies_manage_page',NULL,'tool_lp','moodle/competency:competencyview',NULL),(573,'tool_lp_list_courses_using_competency','tool_lp\\external','list_courses_using_competency',NULL,'tool_lp','moodle/competency:coursecompetencyview',NULL),(574,'tool_lp_data_for_course_competencies_page','tool_lp\\external','data_for_course_competencies_page',NULL,'tool_lp','moodle/competency:coursecompetencyview','moodle_mobile_app'),(575,'tool_lp_data_for_template_competencies_page','tool_lp\\external','data_for_template_competencies_page',NULL,'tool_lp','moodle/competency:templateview',NULL),(576,'tool_lp_data_for_templates_manage_page','tool_lp\\external','data_for_templates_manage_page',NULL,'tool_lp','moodle/competency:templateview',NULL),(577,'tool_lp_data_for_plans_page','tool_lp\\external','data_for_plans_page',NULL,'tool_lp','moodle/competency:planviewown','moodle_mobile_app'),(578,'tool_lp_data_for_plan_page','tool_lp\\external','data_for_plan_page',NULL,'tool_lp','moodle/competency:planview','moodle_mobile_app'),(579,'tool_lp_data_for_related_competencies_section','tool_lp\\external','data_for_related_competencies_section',NULL,'tool_lp','moodle/competency:competencyview',NULL),(580,'tool_lp_search_users','tool_lp\\external','search_users',NULL,'tool_lp','',NULL),(581,'tool_lp_search_cohorts','core_cohort_external','search_cohorts','cohort/externallib.php','tool_lp','moodle/cohort:view',NULL),(582,'tool_lp_data_for_user_evidence_list_page','tool_lp\\external','data_for_user_evidence_list_page',NULL,'tool_lp','moodle/competency:userevidenceview','moodle_mobile_app'),(583,'tool_lp_data_for_user_evidence_page','tool_lp\\external','data_for_user_evidence_page',NULL,'tool_lp','moodle/competency:userevidenceview','moodle_mobile_app'),(584,'tool_lp_data_for_user_competency_summary','tool_lp\\external','data_for_user_competency_summary',NULL,'tool_lp','moodle/competency:planview','moodle_mobile_app'),(585,'tool_lp_data_for_user_competency_summary_in_plan','tool_lp\\external','data_for_user_competency_summary_in_plan',NULL,'tool_lp','moodle/competency:planview','moodle_mobile_app'),(586,'tool_lp_data_for_user_competency_summary_in_course','tool_lp\\external','data_for_user_competency_summary_in_course',NULL,'tool_lp','moodle/competency:coursecompetencyview','moodle_mobile_app'),(587,'tool_mobile_get_plugins_supporting_mobile','tool_mobile\\external','get_plugins_supporting_mobile',NULL,'tool_mobile','','moodle_mobile_app'),(588,'tool_mobile_get_public_config','tool_mobile\\external','get_public_config',NULL,'tool_mobile','','moodle_mobile_app'),(589,'tool_mobile_get_config','tool_mobile\\external','get_config',NULL,'tool_mobile','','moodle_mobile_app'),(590,'tool_mobile_get_autologin_key','tool_mobile\\external','get_autologin_key',NULL,'tool_mobile','','moodle_mobile_app'),(591,'tool_mobile_get_content','tool_mobile\\external','get_content',NULL,'tool_mobile','','moodle_mobile_app'),(592,'tool_mobile_call_external_functions','tool_mobile\\external','call_external_functions',NULL,'tool_mobile','','moodle_mobile_app'),(593,'tool_mobile_validate_subscription_key','tool_mobile\\external','validate_subscription_key',NULL,'tool_mobile','','moodle_mobile_app'),(594,'tool_mobile_get_tokens_for_qr_login','tool_mobile\\external','get_tokens_for_qr_login',NULL,'tool_mobile','','moodle_mobile_app'),(595,'tool_moodlenet_verify_webfinger','tool_moodlenet\\external','verify_webfinger',NULL,'tool_moodlenet','','moodle_mobile_app'),(596,'tool_moodlenet_search_courses','tool_moodlenet\\external','search_courses',NULL,'tool_moodlenet','','moodle_mobile_app'),(597,'tool_policy_get_policy_version','tool_policy\\external','get_policy_version',NULL,'tool_policy','',NULL),(598,'tool_policy_submit_accept_on_behalf','tool_policy\\external','submit_accept_on_behalf',NULL,'tool_policy','',NULL),(599,'tool_templatelibrary_list_templates','tool_templatelibrary\\external','list_templates',NULL,'tool_templatelibrary','',NULL),(600,'tool_templatelibrary_load_canonical_template','tool_templatelibrary\\external','load_canonical_template',NULL,'tool_templatelibrary','',NULL),(601,'tool_usertours_fetch_and_start_tour','tool_usertours\\external\\tour','fetch_and_start_tour',NULL,'tool_usertours','',NULL),(602,'tool_usertours_step_shown','tool_usertours\\external\\tour','step_shown',NULL,'tool_usertours','',NULL),(603,'tool_usertours_complete_tour','tool_usertours\\external\\tour','complete_tour',NULL,'tool_usertours','',NULL),(604,'tool_usertours_reset_tour','tool_usertours\\external\\tour','reset_tour',NULL,'tool_usertours','',NULL),(605,'tool_xmldb_invoke_move_action','tool_xmldb_external','invoke_move_action',NULL,'tool_xmldb','',NULL),(606,'paygw_paypal_get_config_for_js','paygw_paypal\\external\\get_config_for_js','execute',NULL,'paygw_paypal','',NULL),(607,'paygw_paypal_create_transaction_complete','paygw_paypal\\external\\transaction_complete','execute',NULL,'paygw_paypal','',NULL),(608,'mod_customcert_delete_issue','mod_customcert\\external','delete_issue',NULL,'mod_customcert','','moodle_mobile_app'),(609,'mod_customcert_save_element','mod_customcert\\external','save_element',NULL,'mod_customcert','',NULL),(610,'mod_customcert_get_element_html','mod_customcert\\external','get_element_html',NULL,'mod_customcert','',NULL); -/*!40000 ALTER TABLE `mdl_external_functions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_external_services` --- - -DROP TABLE IF EXISTS `mdl_external_services`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_external_services` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `enabled` tinyint(1) NOT NULL, - `requiredcapability` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `restrictedusers` tinyint(1) NOT NULL, - `component` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) DEFAULT NULL, - `shortname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `downloadfiles` tinyint(1) NOT NULL DEFAULT 0, - `uploadfiles` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_exteserv_nam_uix` (`name`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='built in and custom external services'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_external_services` --- - -LOCK TABLES `mdl_external_services` WRITE; -/*!40000 ALTER TABLE `mdl_external_services` DISABLE KEYS */; -INSERT INTO `mdl_external_services` VALUES (1,'Moodle mobile web service',1,NULL,0,'moodle',1619623687,1619626271,'moodle_mobile_app',1,1); -/*!40000 ALTER TABLE `mdl_external_services` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_external_services_functions` --- - -DROP TABLE IF EXISTS `mdl_external_services_functions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_external_services_functions` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `externalserviceid` bigint(10) NOT NULL, - `functionname` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `mdl_exteservfunc_ext_ix` (`externalserviceid`) -) ENGINE=InnoDB AUTO_INCREMENT=373 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='lists functions available in each service group'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_external_services_functions` --- - -LOCK TABLES `mdl_external_services_functions` WRITE; -/*!40000 ALTER TABLE `mdl_external_services_functions` DISABLE KEYS */; -INSERT INTO `mdl_external_services_functions` VALUES (1,1,'core_badges_get_user_badges'),(2,1,'core_blog_get_entries'),(3,1,'core_blog_view_entries'),(4,1,'core_calendar_get_calendar_monthly_view'),(5,1,'core_calendar_get_calendar_day_view'),(6,1,'core_calendar_get_calendar_upcoming_view'),(7,1,'core_calendar_update_event_start_day'),(8,1,'core_calendar_create_calendar_events'),(9,1,'core_calendar_delete_calendar_events'),(10,1,'core_calendar_get_calendar_events'),(11,1,'core_calendar_get_action_events_by_timesort'),(12,1,'core_calendar_get_action_events_by_course'),(13,1,'core_calendar_get_action_events_by_courses'),(14,1,'core_calendar_get_calendar_event_by_id'),(15,1,'core_calendar_submit_create_update_form'),(16,1,'core_calendar_get_calendar_access_information'),(17,1,'core_calendar_get_allowed_event_types'),(18,1,'core_calendar_get_calendar_export_token'),(19,1,'core_comment_get_comments'),(20,1,'core_comment_add_comments'),(21,1,'core_comment_delete_comments'),(22,1,'core_completion_get_activities_completion_status'),(23,1,'core_completion_get_course_completion_status'),(24,1,'core_completion_mark_course_self_completed'),(25,1,'core_completion_update_activity_completion_status_manually'),(26,1,'core_course_get_categories'),(27,1,'core_course_get_contents'),(28,1,'core_course_get_course_module'),(29,1,'core_course_get_course_module_by_instance'),(30,1,'core_course_get_courses'),(31,1,'core_course_search_courses'),(32,1,'core_course_view_course'),(33,1,'core_course_get_user_navigation_options'),(34,1,'core_course_get_user_administration_options'),(35,1,'core_course_get_courses_by_field'),(36,1,'core_course_check_updates'),(37,1,'core_course_get_updates_since'),(38,1,'core_course_get_enrolled_courses_by_timeline_classification'),(39,1,'core_course_get_recent_courses'),(40,1,'core_course_set_favourite_courses'),(41,1,'core_enrol_get_course_enrolment_methods'),(42,1,'core_enrol_get_enrolled_users'),(43,1,'core_enrol_search_users'),(44,1,'core_enrol_get_users_courses'),(45,1,'core_files_get_files'),(46,1,'core_files_delete_draft_files'),(47,1,'core_get_component_strings'),(48,1,'core_grades_grader_gradingpanel_point_fetch'),(49,1,'core_grades_grader_gradingpanel_point_store'),(50,1,'core_grades_grader_gradingpanel_scale_fetch'),(51,1,'core_grades_grader_gradingpanel_scale_store'),(52,1,'core_group_get_activity_allowed_groups'),(53,1,'core_group_get_activity_groupmode'),(54,1,'core_group_get_course_groupings'),(55,1,'core_group_get_course_groups'),(56,1,'core_group_get_course_user_groups'),(57,1,'core_message_mute_conversations'),(58,1,'core_message_unmute_conversations'),(59,1,'core_message_block_user'),(60,1,'core_message_get_contact_requests'),(61,1,'core_message_create_contact_request'),(62,1,'core_message_confirm_contact_request'),(63,1,'core_message_decline_contact_request'),(64,1,'core_message_get_received_contact_requests_count'),(65,1,'core_message_delete_contacts'),(66,1,'core_message_delete_conversations_by_id'),(67,1,'core_message_delete_message'),(68,1,'core_message_get_blocked_users'),(69,1,'core_message_data_for_messagearea_search_messages'),(70,1,'core_message_message_search_users'),(71,1,'core_message_get_user_contacts'),(72,1,'core_message_get_conversations'),(73,1,'core_message_get_conversation'),(74,1,'core_message_get_conversation_between_users'),(75,1,'core_message_get_self_conversation'),(76,1,'core_message_get_messages'),(77,1,'core_message_get_conversation_counts'),(78,1,'core_message_get_unread_conversation_counts'),(79,1,'core_message_get_conversation_members'),(80,1,'core_message_get_member_info'),(81,1,'core_message_get_unread_conversations_count'),(82,1,'core_message_mark_all_notifications_as_read'),(83,1,'core_message_mark_all_conversation_messages_as_read'),(84,1,'core_message_mark_message_read'),(85,1,'core_message_mark_notification_read'),(86,1,'core_message_message_processor_config_form'),(87,1,'core_message_search_contacts'),(88,1,'core_message_send_instant_messages'),(89,1,'core_message_send_messages_to_conversation'),(90,1,'core_message_get_conversation_messages'),(91,1,'core_message_unblock_user'),(92,1,'core_message_get_user_notification_preferences'),(93,1,'core_message_get_user_message_preferences'),(94,1,'core_message_set_favourite_conversations'),(95,1,'core_message_unset_favourite_conversations'),(96,1,'core_message_delete_message_for_all_users'),(97,1,'core_notes_create_notes'),(98,1,'core_notes_delete_notes'),(99,1,'core_notes_get_course_notes'),(100,1,'core_notes_view_notes'),(101,1,'core_question_update_flag'),(102,1,'core_rating_get_item_ratings'),(103,1,'core_rating_add_rating'),(104,1,'core_tag_get_tagindex'),(105,1,'core_tag_get_tagindex_per_area'),(106,1,'core_tag_get_tag_areas'),(107,1,'core_tag_get_tag_collections'),(108,1,'core_tag_get_tag_cloud'),(109,1,'core_user_add_user_device'),(110,1,'core_user_add_user_private_files'),(111,1,'core_user_get_course_user_profiles'),(112,1,'core_user_get_users_by_field'),(113,1,'core_user_remove_user_device'),(114,1,'core_user_update_user_preferences'),(115,1,'core_user_view_user_list'),(116,1,'core_user_view_user_profile'),(117,1,'core_user_get_user_preferences'),(118,1,'core_user_update_picture'),(119,1,'core_user_set_user_preferences'),(120,1,'core_user_agree_site_policy'),(121,1,'core_user_get_private_files_info'),(122,1,'core_competency_competency_viewed'),(123,1,'core_competency_list_course_competencies'),(124,1,'core_competency_get_scale_values'),(125,1,'core_competency_user_competency_viewed'),(126,1,'core_competency_user_competency_viewed_in_plan'),(127,1,'core_competency_user_competency_viewed_in_course'),(128,1,'core_competency_user_competency_plan_viewed'),(129,1,'core_competency_grade_competency_in_course'),(130,1,'core_competency_delete_evidence'),(131,1,'core_webservice_get_site_info'),(132,1,'core_block_get_course_blocks'),(133,1,'core_block_get_dashboard_blocks'),(134,1,'core_filters_get_available_in_context'),(135,1,'core_h5p_get_trusted_h5p_file'),(136,1,'core_table_get_dynamic_table_content'),(137,1,'core_xapi_statement_post'),(138,1,'mod_assign_get_grades'),(139,1,'mod_assign_get_assignments'),(140,1,'mod_assign_get_submissions'),(141,1,'mod_assign_get_user_flags'),(142,1,'mod_assign_set_user_flags'),(143,1,'mod_assign_get_user_mappings'),(144,1,'mod_assign_revert_submissions_to_draft'),(145,1,'mod_assign_lock_submissions'),(146,1,'mod_assign_unlock_submissions'),(147,1,'mod_assign_save_submission'),(148,1,'mod_assign_submit_for_grading'),(149,1,'mod_assign_save_grade'),(150,1,'mod_assign_save_grades'),(151,1,'mod_assign_save_user_extensions'),(152,1,'mod_assign_reveal_identities'),(153,1,'mod_assign_view_grading_table'),(154,1,'mod_assign_view_submission_status'),(155,1,'mod_assign_get_submission_status'),(156,1,'mod_assign_list_participants'),(157,1,'mod_assign_submit_grading_form'),(158,1,'mod_assign_get_participant'),(159,1,'mod_assign_view_assign'),(160,1,'mod_book_view_book'),(161,1,'mod_book_get_books_by_courses'),(162,1,'mod_chat_login_user'),(163,1,'mod_chat_get_chat_users'),(164,1,'mod_chat_send_chat_message'),(165,1,'mod_chat_get_chat_latest_messages'),(166,1,'mod_chat_view_chat'),(167,1,'mod_chat_get_chats_by_courses'),(168,1,'mod_chat_get_sessions'),(169,1,'mod_chat_get_session_messages'),(170,1,'mod_choice_get_choice_results'),(171,1,'mod_choice_get_choice_options'),(172,1,'mod_choice_submit_choice_response'),(173,1,'mod_choice_view_choice'),(174,1,'mod_choice_get_choices_by_courses'),(175,1,'mod_choice_delete_choice_responses'),(176,1,'mod_data_get_databases_by_courses'),(177,1,'mod_data_view_database'),(178,1,'mod_data_get_data_access_information'),(179,1,'mod_data_get_entries'),(180,1,'mod_data_get_entry'),(181,1,'mod_data_get_fields'),(182,1,'mod_data_search_entries'),(183,1,'mod_data_approve_entry'),(184,1,'mod_data_delete_entry'),(185,1,'mod_data_add_entry'),(186,1,'mod_data_update_entry'),(187,1,'mod_feedback_get_feedbacks_by_courses'),(188,1,'mod_feedback_get_feedback_access_information'),(189,1,'mod_feedback_view_feedback'),(190,1,'mod_feedback_get_current_completed_tmp'),(191,1,'mod_feedback_get_items'),(192,1,'mod_feedback_launch_feedback'),(193,1,'mod_feedback_get_page_items'),(194,1,'mod_feedback_process_page'),(195,1,'mod_feedback_get_analysis'),(196,1,'mod_feedback_get_unfinished_responses'),(197,1,'mod_feedback_get_finished_responses'),(198,1,'mod_feedback_get_non_respondents'),(199,1,'mod_feedback_get_responses_analysis'),(200,1,'mod_feedback_get_last_completed'),(201,1,'mod_folder_view_folder'),(202,1,'mod_folder_get_folders_by_courses'),(203,1,'mod_forum_get_forums_by_courses'),(204,1,'mod_forum_get_discussion_posts'),(205,1,'mod_forum_get_forum_discussion_posts'),(206,1,'mod_forum_get_forum_discussions_paginated'),(207,1,'mod_forum_get_forum_discussions'),(208,1,'mod_forum_view_forum'),(209,1,'mod_forum_view_forum_discussion'),(210,1,'mod_forum_add_discussion_post'),(211,1,'mod_forum_add_discussion'),(212,1,'mod_forum_can_add_discussion'),(213,1,'mod_forum_get_forum_access_information'),(214,1,'mod_forum_set_subscription_state'),(215,1,'mod_forum_set_lock_state'),(216,1,'mod_forum_toggle_favourite_state'),(217,1,'mod_forum_set_pin_state'),(218,1,'mod_forum_delete_post'),(219,1,'mod_forum_get_discussion_post'),(220,1,'mod_forum_prepare_draft_area_for_post'),(221,1,'mod_forum_update_discussion_post'),(222,1,'mod_glossary_get_glossaries_by_courses'),(223,1,'mod_glossary_view_glossary'),(224,1,'mod_glossary_view_entry'),(225,1,'mod_glossary_get_entries_by_letter'),(226,1,'mod_glossary_get_entries_by_date'),(227,1,'mod_glossary_get_categories'),(228,1,'mod_glossary_get_entries_by_category'),(229,1,'mod_glossary_get_authors'),(230,1,'mod_glossary_get_entries_by_author'),(231,1,'mod_glossary_get_entries_by_author_id'),(232,1,'mod_glossary_get_entries_by_search'),(233,1,'mod_glossary_get_entries_by_term'),(234,1,'mod_glossary_get_entries_to_approve'),(235,1,'mod_glossary_get_entry_by_id'),(236,1,'mod_glossary_add_entry'),(237,1,'mod_glossary_delete_entry'),(238,1,'mod_glossary_update_entry'),(239,1,'mod_glossary_prepare_entry_for_edition'),(240,1,'mod_h5pactivity_get_h5pactivity_access_information'),(241,1,'mod_h5pactivity_view_h5pactivity'),(242,1,'mod_h5pactivity_get_attempts'),(243,1,'mod_h5pactivity_get_results'),(244,1,'mod_h5pactivity_get_h5pactivities_by_courses'),(245,1,'mod_imscp_view_imscp'),(246,1,'mod_imscp_get_imscps_by_courses'),(247,1,'mod_label_get_labels_by_courses'),(248,1,'mod_lesson_get_lessons_by_courses'),(249,1,'mod_lesson_get_lesson_access_information'),(250,1,'mod_lesson_view_lesson'),(251,1,'mod_lesson_get_questions_attempts'),(252,1,'mod_lesson_get_user_grade'),(253,1,'mod_lesson_get_user_attempt_grade'),(254,1,'mod_lesson_get_content_pages_viewed'),(255,1,'mod_lesson_get_user_timers'),(256,1,'mod_lesson_get_pages'),(257,1,'mod_lesson_launch_attempt'),(258,1,'mod_lesson_get_page_data'),(259,1,'mod_lesson_process_page'),(260,1,'mod_lesson_finish_attempt'),(261,1,'mod_lesson_get_attempts_overview'),(262,1,'mod_lesson_get_user_attempt'),(263,1,'mod_lesson_get_pages_possible_jumps'),(264,1,'mod_lesson_get_lesson'),(265,1,'mod_lti_get_tool_launch_data'),(266,1,'mod_lti_get_ltis_by_courses'),(267,1,'mod_lti_view_lti'),(268,1,'mod_page_view_page'),(269,1,'mod_page_get_pages_by_courses'),(270,1,'mod_quiz_get_quizzes_by_courses'),(271,1,'mod_quiz_view_quiz'),(272,1,'mod_quiz_get_user_attempts'),(273,1,'mod_quiz_get_user_best_grade'),(274,1,'mod_quiz_get_combined_review_options'),(275,1,'mod_quiz_start_attempt'),(276,1,'mod_quiz_get_attempt_data'),(277,1,'mod_quiz_get_attempt_summary'),(278,1,'mod_quiz_save_attempt'),(279,1,'mod_quiz_process_attempt'),(280,1,'mod_quiz_get_attempt_review'),(281,1,'mod_quiz_view_attempt'),(282,1,'mod_quiz_view_attempt_summary'),(283,1,'mod_quiz_view_attempt_review'),(284,1,'mod_quiz_get_quiz_feedback_for_grade'),(285,1,'mod_quiz_get_quiz_access_information'),(286,1,'mod_quiz_get_attempt_access_information'),(287,1,'mod_quiz_get_quiz_required_qtypes'),(288,1,'mod_resource_view_resource'),(289,1,'mod_resource_get_resources_by_courses'),(290,1,'mod_scorm_view_scorm'),(291,1,'mod_scorm_get_scorm_attempt_count'),(292,1,'mod_scorm_get_scorm_scoes'),(293,1,'mod_scorm_get_scorm_user_data'),(294,1,'mod_scorm_insert_scorm_tracks'),(295,1,'mod_scorm_get_scorm_sco_tracks'),(296,1,'mod_scorm_get_scorms_by_courses'),(297,1,'mod_scorm_launch_sco'),(298,1,'mod_scorm_get_scorm_access_information'),(299,1,'mod_survey_get_surveys_by_courses'),(300,1,'mod_survey_view_survey'),(301,1,'mod_survey_get_questions'),(302,1,'mod_survey_submit_answers'),(303,1,'mod_url_view_url'),(304,1,'mod_url_get_urls_by_courses'),(305,1,'mod_wiki_get_wikis_by_courses'),(306,1,'mod_wiki_view_wiki'),(307,1,'mod_wiki_view_page'),(308,1,'mod_wiki_get_subwikis'),(309,1,'mod_wiki_get_subwiki_pages'),(310,1,'mod_wiki_get_subwiki_files'),(311,1,'mod_wiki_get_page_contents'),(312,1,'mod_wiki_get_page_for_editing'),(313,1,'mod_wiki_new_page'),(314,1,'mod_wiki_edit_page'),(315,1,'mod_workshop_get_workshops_by_courses'),(316,1,'mod_workshop_get_workshop_access_information'),(317,1,'mod_workshop_get_user_plan'),(318,1,'mod_workshop_view_workshop'),(319,1,'mod_workshop_add_submission'),(320,1,'mod_workshop_update_submission'),(321,1,'mod_workshop_delete_submission'),(322,1,'mod_workshop_get_submissions'),(323,1,'mod_workshop_get_submission'),(324,1,'mod_workshop_get_submission_assessments'),(325,1,'mod_workshop_get_assessment'),(326,1,'mod_workshop_get_assessment_form_definition'),(327,1,'mod_workshop_get_reviewer_assessments'),(328,1,'mod_workshop_update_assessment'),(329,1,'mod_workshop_get_grades'),(330,1,'mod_workshop_evaluate_assessment'),(331,1,'mod_workshop_get_grades_report'),(332,1,'mod_workshop_view_submission'),(333,1,'mod_workshop_evaluate_submission'),(334,1,'enrol_guest_get_instance_info'),(335,1,'enrol_self_get_instance_info'),(336,1,'enrol_self_enrol_user'),(337,1,'message_airnotifier_is_system_configured'),(338,1,'message_airnotifier_are_notification_preferences_configured'),(339,1,'message_airnotifier_get_user_devices'),(340,1,'message_airnotifier_enable_device'),(341,1,'message_popup_get_popup_notifications'),(342,1,'message_popup_get_unread_popup_notification_count'),(343,1,'block_recentlyaccesseditems_get_recent_items'),(344,1,'block_starredcourses_get_starred_courses'),(345,1,'report_insights_set_notuseful_prediction'),(346,1,'report_insights_set_fixed_prediction'),(347,1,'report_insights_action_executed'),(348,1,'gradereport_overview_get_course_grades'),(349,1,'gradereport_overview_view_grade_report'),(350,1,'gradereport_user_get_grades_table'),(351,1,'gradereport_user_view_grade_report'),(352,1,'gradereport_user_get_grade_items'),(353,1,'tool_analytics_potential_contexts'),(354,1,'tool_lp_data_for_course_competencies_page'),(355,1,'tool_lp_data_for_plans_page'),(356,1,'tool_lp_data_for_plan_page'),(357,1,'tool_lp_data_for_user_evidence_list_page'),(358,1,'tool_lp_data_for_user_evidence_page'),(359,1,'tool_lp_data_for_user_competency_summary'),(360,1,'tool_lp_data_for_user_competency_summary_in_plan'),(361,1,'tool_lp_data_for_user_competency_summary_in_course'),(362,1,'tool_mobile_get_plugins_supporting_mobile'),(363,1,'tool_mobile_get_public_config'),(364,1,'tool_mobile_get_config'),(365,1,'tool_mobile_get_autologin_key'),(366,1,'tool_mobile_get_content'),(367,1,'tool_mobile_call_external_functions'),(368,1,'tool_mobile_validate_subscription_key'),(369,1,'tool_mobile_get_tokens_for_qr_login'),(370,1,'tool_moodlenet_verify_webfinger'),(371,1,'tool_moodlenet_search_courses'),(372,1,'mod_customcert_delete_issue'); -/*!40000 ALTER TABLE `mdl_external_services_functions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_external_services_users` --- - -DROP TABLE IF EXISTS `mdl_external_services_users`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_external_services_users` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `externalserviceid` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `iprestriction` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `validuntil` bigint(10) DEFAULT NULL, - `timecreated` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_exteservuser_ext_ix` (`externalserviceid`), - KEY `mdl_exteservuser_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='users allowed to use services with restricted users flag'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_external_services_users` --- - -LOCK TABLES `mdl_external_services_users` WRITE; -/*!40000 ALTER TABLE `mdl_external_services_users` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_external_services_users` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_external_tokens` --- - -DROP TABLE IF EXISTS `mdl_external_tokens`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_external_tokens` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `token` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `privatetoken` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `tokentype` smallint(4) NOT NULL, - `userid` bigint(10) NOT NULL, - `externalserviceid` bigint(10) NOT NULL, - `sid` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `contextid` bigint(10) NOT NULL, - `creatorid` bigint(10) NOT NULL DEFAULT 1, - `iprestriction` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `validuntil` bigint(10) DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `lastaccess` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_extetoke_tok_ix` (`token`), - KEY `mdl_extetoke_use_ix` (`userid`), - KEY `mdl_extetoke_ext_ix` (`externalserviceid`), - KEY `mdl_extetoke_con_ix` (`contextid`), - KEY `mdl_extetoke_cre_ix` (`creatorid`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Security tokens for accessing of external services'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_external_tokens` --- - -LOCK TABLES `mdl_external_tokens` WRITE; -/*!40000 ALTER TABLE `mdl_external_tokens` DISABLE KEYS */; -INSERT INTO `mdl_external_tokens` VALUES (1,'4f3417b1ef03949e44e97c977605c11b','jTiT25DowLEBropNyTBx2YFH2OmWL2CbQBPAa7reNsIw4raWqDkjhelyXOiMmVMY',0,2,1,NULL,1,2,NULL,1626884606,1619627006,1619628920); -/*!40000 ALTER TABLE `mdl_external_tokens` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_favourite` --- - -DROP TABLE IF EXISTS `mdl_favourite`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_favourite` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `itemtype` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `itemid` bigint(10) NOT NULL, - `contextid` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `ordering` bigint(10) DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_favo_comiteiteconuse_uix` (`component`,`itemtype`,`itemid`,`contextid`,`userid`), - KEY `mdl_favo_con_ix` (`contextid`), - KEY `mdl_favo_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the relationship between an arbitrary item (itemtype,'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_favourite` --- - -LOCK TABLES `mdl_favourite` WRITE; -/*!40000 ALTER TABLE `mdl_favourite` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_favourite` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_feedback` --- - -DROP TABLE IF EXISTS `mdl_feedback`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_feedback` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `introformat` smallint(4) NOT NULL DEFAULT 0, - `anonymous` tinyint(1) NOT NULL DEFAULT 1, - `email_notification` tinyint(1) NOT NULL DEFAULT 1, - `multiple_submit` tinyint(1) NOT NULL DEFAULT 1, - `autonumbering` tinyint(1) NOT NULL DEFAULT 1, - `site_after_submit` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `page_after_submit` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `page_after_submitformat` tinyint(2) NOT NULL DEFAULT 0, - `publish_stats` tinyint(1) NOT NULL DEFAULT 0, - `timeopen` bigint(10) NOT NULL DEFAULT 0, - `timeclose` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `completionsubmit` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_feed_cou_ix` (`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='all feedbacks'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_feedback` --- - -LOCK TABLES `mdl_feedback` WRITE; -/*!40000 ALTER TABLE `mdl_feedback` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_feedback` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_feedback_completed` --- - -DROP TABLE IF EXISTS `mdl_feedback_completed`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_feedback_completed` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `feedback` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `random_response` bigint(10) NOT NULL DEFAULT 0, - `anonymous_response` tinyint(1) NOT NULL DEFAULT 0, - `courseid` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_feedcomp_use_ix` (`userid`), - KEY `mdl_feedcomp_fee_ix` (`feedback`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='filled out feedback'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_feedback_completed` --- - -LOCK TABLES `mdl_feedback_completed` WRITE; -/*!40000 ALTER TABLE `mdl_feedback_completed` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_feedback_completed` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_feedback_completedtmp` --- - -DROP TABLE IF EXISTS `mdl_feedback_completedtmp`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_feedback_completedtmp` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `feedback` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `guestid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `random_response` bigint(10) NOT NULL DEFAULT 0, - `anonymous_response` tinyint(1) NOT NULL DEFAULT 0, - `courseid` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_feedcomp_use2_ix` (`userid`), - KEY `mdl_feedcomp_fee2_ix` (`feedback`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='filled out feedback'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_feedback_completedtmp` --- - -LOCK TABLES `mdl_feedback_completedtmp` WRITE; -/*!40000 ALTER TABLE `mdl_feedback_completedtmp` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_feedback_completedtmp` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_feedback_item` --- - -DROP TABLE IF EXISTS `mdl_feedback_item`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_feedback_item` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `feedback` bigint(10) NOT NULL DEFAULT 0, - `template` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `presentation` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `typ` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `hasvalue` tinyint(1) NOT NULL DEFAULT 0, - `position` smallint(3) NOT NULL DEFAULT 0, - `required` tinyint(1) NOT NULL DEFAULT 0, - `dependitem` bigint(10) NOT NULL DEFAULT 0, - `dependvalue` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `options` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `mdl_feeditem_fee_ix` (`feedback`), - KEY `mdl_feeditem_tem_ix` (`template`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='feedback_items'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_feedback_item` --- - -LOCK TABLES `mdl_feedback_item` WRITE; -/*!40000 ALTER TABLE `mdl_feedback_item` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_feedback_item` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_feedback_sitecourse_map` --- - -DROP TABLE IF EXISTS `mdl_feedback_sitecourse_map`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_feedback_sitecourse_map` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `feedbackid` bigint(10) NOT NULL DEFAULT 0, - `courseid` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_feedsitemap_cou_ix` (`courseid`), - KEY `mdl_feedsitemap_fee_ix` (`feedbackid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='feedback sitecourse map'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_feedback_sitecourse_map` --- - -LOCK TABLES `mdl_feedback_sitecourse_map` WRITE; -/*!40000 ALTER TABLE `mdl_feedback_sitecourse_map` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_feedback_sitecourse_map` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_feedback_template` --- - -DROP TABLE IF EXISTS `mdl_feedback_template`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_feedback_template` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `ispublic` tinyint(1) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `mdl_feedtemp_cou_ix` (`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='templates of feedbackstructures'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_feedback_template` --- - -LOCK TABLES `mdl_feedback_template` WRITE; -/*!40000 ALTER TABLE `mdl_feedback_template` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_feedback_template` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_feedback_value` --- - -DROP TABLE IF EXISTS `mdl_feedback_value`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_feedback_value` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course_id` bigint(10) NOT NULL DEFAULT 0, - `item` bigint(10) NOT NULL DEFAULT 0, - `completed` bigint(10) NOT NULL DEFAULT 0, - `tmp_completed` bigint(10) NOT NULL DEFAULT 0, - `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_feedvalu_comitecou_uix` (`completed`,`item`,`course_id`), - KEY `mdl_feedvalu_cou_ix` (`course_id`), - KEY `mdl_feedvalu_ite_ix` (`item`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='values of the completeds'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_feedback_value` --- - -LOCK TABLES `mdl_feedback_value` WRITE; -/*!40000 ALTER TABLE `mdl_feedback_value` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_feedback_value` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_feedback_valuetmp` --- - -DROP TABLE IF EXISTS `mdl_feedback_valuetmp`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_feedback_valuetmp` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course_id` bigint(10) NOT NULL DEFAULT 0, - `item` bigint(10) NOT NULL DEFAULT 0, - `completed` bigint(10) NOT NULL DEFAULT 0, - `tmp_completed` bigint(10) NOT NULL DEFAULT 0, - `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_feedvalu_comitecou2_uix` (`completed`,`item`,`course_id`), - KEY `mdl_feedvalu_cou2_ix` (`course_id`), - KEY `mdl_feedvalu_ite2_ix` (`item`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='values of the completedstmp'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_feedback_valuetmp` --- - -LOCK TABLES `mdl_feedback_valuetmp` WRITE; -/*!40000 ALTER TABLE `mdl_feedback_valuetmp` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_feedback_valuetmp` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_file_conversion` --- - -DROP TABLE IF EXISTS `mdl_file_conversion`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_file_conversion` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `usermodified` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `sourcefileid` bigint(10) NOT NULL, - `targetformat` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `status` bigint(10) DEFAULT 0, - `statusmessage` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `converter` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `destfileid` bigint(10) DEFAULT NULL, - `data` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_fileconv_sou_ix` (`sourcefileid`), - KEY `mdl_fileconv_des_ix` (`destfileid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Table to track file conversions.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_file_conversion` --- - -LOCK TABLES `mdl_file_conversion` WRITE; -/*!40000 ALTER TABLE `mdl_file_conversion` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_file_conversion` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_files` --- - -DROP TABLE IF EXISTS `mdl_files`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_files` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `contenthash` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `pathnamehash` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `contextid` bigint(10) NOT NULL, - `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `filearea` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `itemid` bigint(10) NOT NULL, - `filepath` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `filename` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `userid` bigint(10) DEFAULT NULL, - `filesize` bigint(10) NOT NULL, - `mimetype` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `status` bigint(10) NOT NULL DEFAULT 0, - `source` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `author` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `license` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `sortorder` bigint(10) NOT NULL DEFAULT 0, - `referencefileid` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_file_pat_uix` (`pathnamehash`), - KEY `mdl_file_comfilconite_ix` (`component`,`filearea`,`contextid`,`itemid`), - KEY `mdl_file_con_ix` (`contenthash`), - KEY `mdl_file_lic_ix` (`license`), - KEY `mdl_file_con2_ix` (`contextid`), - KEY `mdl_file_use_ix` (`userid`), - KEY `mdl_file_ref_ix` (`referencefileid`) -) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='description of files, content is stored in sha1 file pool'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_files` --- - -LOCK TABLES `mdl_files` WRITE; -/*!40000 ALTER TABLE `mdl_files` DISABLE KEYS */; -INSERT INTO `mdl_files` VALUES (1,'5f8e911d0da441e36f47c5c46f4393269211ca56','508e674d49c30d4fde325fe6c7f6fd3d56b247e1',1,'assignfeedback_editpdf','stamps',0,'/','smile.png',2,1085,'image/png',0,NULL,NULL,NULL,1619623719,1619623719,0,NULL),(2,'da39a3ee5e6b4b0d3255bfef95601890afd80709','70b7cdade7b4e27d4e83f0cdaad10d6a3c0cccb5',1,'assignfeedback_editpdf','stamps',0,'/','.',2,0,NULL,0,NULL,NULL,NULL,1619623719,1619623719,0,NULL),(3,'75c101cb8cb34ea573cd25ac38f8157b1de901b8','68317eab56c67d32aeaee5acf509a0c4aa828b6b',1,'assignfeedback_editpdf','stamps',0,'/','sad.png',2,966,'image/png',0,NULL,NULL,NULL,1619623719,1619623719,0,NULL),(4,'0c5190a24c3943966541401c883eacaa20ca20cb','695a55ff780e61c9e59428aa425430b0d6bde53b',1,'assignfeedback_editpdf','stamps',0,'/','tick.png',2,1039,'image/png',0,NULL,NULL,NULL,1619623719,1619623719,0,NULL),(5,'8c96a486d5801e0f4ab8c411f561f1c687e1f865','373e63af262a9b8466ba8632551520be793c37ff',1,'assignfeedback_editpdf','stamps',0,'/','cross.png',2,861,'image/png',0,NULL,NULL,NULL,1619623719,1619623719,0,NULL),(6,'a44e5c7aef709981c8de8614ba086bee6248c0a0','bca6a731123a20c5cc03cd87ecf71941b9f05010',5,'user','draft',21887174,'/','Droplet Text - Teal - Transparent.png',2,28987,'image/png',0,'O:8:\"stdClass\":1:{s:6:\"source\";s:39:\"Droplet & Text - Teal - Transparent.png\";}','Admin User','unknown',1619624833,1619624833,0,NULL),(7,'da39a3ee5e6b4b0d3255bfef95601890afd80709','d185f361631e32efc5c4eeed533842d228efaf7a',5,'user','draft',21887174,'/','.',2,0,NULL,0,NULL,NULL,NULL,1619624833,1619624833,0,NULL),(8,'fcde58d0c4c14f557291cc9938afc3b75df543b3','523f4999e7a27e465c3d03ad3a74eb405617a6e8',1,'core','preview',0,'/thumb/','a44e5c7aef709981c8de8614ba086bee6248c0a0',NULL,5470,'image/png',0,NULL,NULL,NULL,1619624834,1619624834,0,NULL),(9,'da39a3ee5e6b4b0d3255bfef95601890afd80709','74c104d54c05b5f8c633a36da516d37e6c5279e4',1,'core','preview',0,'/thumb/','.',NULL,0,NULL,0,NULL,NULL,NULL,1619624834,1619624834,0,NULL),(10,'da39a3ee5e6b4b0d3255bfef95601890afd80709','884555719c50529b9df662a38619d04b5b11e25c',1,'core','preview',0,'/','.',NULL,0,NULL,0,NULL,NULL,NULL,1619624834,1619624834,0,NULL),(11,'111633dac88c2c1f8a4a3ce418ec381274e012c6','3b8ed27402e2c1f32f82fb4574a7ab45469b2250',5,'user','draft',290325056,'/','Droplet - Teal - Transparent.png',2,72391,'image/png',0,'O:8:\"stdClass\":1:{s:6:\"source\";s:32:\"Droplet - Teal - Transparent.png\";}','Admin User','unknown',1619624847,1619624847,0,NULL),(12,'da39a3ee5e6b4b0d3255bfef95601890afd80709','d0644588e267f97996301245423800c130c95eeb',5,'user','draft',290325056,'/','.',2,0,NULL,0,NULL,NULL,NULL,1619624847,1619624847,0,NULL),(13,'55bf80f66bdb64c0ca71b884b2b61eff0b344ee9','b7edd68e6dad925ed7eda3b2e44aa154625122b3',1,'core','preview',0,'/thumb/','111633dac88c2c1f8a4a3ce418ec381274e012c6',NULL,7401,'image/png',0,NULL,NULL,NULL,1619624847,1619624847,0,NULL),(14,'a44e5c7aef709981c8de8614ba086bee6248c0a0','3d411fa3d19cbc1bcd6024df2a96046ffdbcff5b',1,'core_admin','logo',0,'/','Droplet Text - Teal - Transparent.png',2,28987,'image/png',0,'Droplet & Text - Teal - Transparent.png','Admin User','unknown',1619624833,1619624888,0,NULL),(15,'da39a3ee5e6b4b0d3255bfef95601890afd80709','13329bd7898f033eb0e93c11a609c6adfb8fb295',1,'core_admin','logo',0,'/','.',2,0,NULL,0,NULL,NULL,NULL,1619624833,1619624888,0,NULL),(16,'111633dac88c2c1f8a4a3ce418ec381274e012c6','0d626e8ba8127b8d1c94d5e1dbebb73a95ae9504',1,'core_admin','logocompact',0,'/','Droplet - Teal - Transparent.png',2,72391,'image/png',0,'Droplet - Teal - Transparent.png','Admin User','unknown',1619624847,1619624888,0,NULL),(17,'da39a3ee5e6b4b0d3255bfef95601890afd80709','ed928c2defdda280bb604ab3df79598e4c3adc00',1,'core_admin','logocompact',0,'/','.',2,0,NULL,0,NULL,NULL,NULL,1619624847,1619624888,0,NULL),(18,'4a17bda49cdc89d62a28615b7c21e81ec4a44bc0','2f93cd4d54ca9ff4dfb3826e3afd36c251a65ec1',5,'user','draft',53672959,'/','mod_customcert_moodle310_2020110900.zip',2,293711,'application/zip',0,'O:8:\"stdClass\":1:{s:6:\"source\";s:39:\"mod_customcert_moodle310_2020110900.zip\";}','Admin User','unknown',1619625636,1619625636,0,NULL),(19,'da39a3ee5e6b4b0d3255bfef95601890afd80709','aab2d93f3a4f15123b7f44e90e5a9fddb408809f',5,'user','draft',53672959,'/','.',2,0,NULL,0,NULL,NULL,NULL,1619625636,1619625636,0,NULL); -/*!40000 ALTER TABLE `mdl_files` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_files_reference` --- - -DROP TABLE IF EXISTS `mdl_files_reference`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_files_reference` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `repositoryid` bigint(10) NOT NULL, - `lastsync` bigint(10) DEFAULT NULL, - `reference` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `referencehash` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_filerefe_refrep_uix` (`referencehash`,`repositoryid`), - KEY `mdl_filerefe_rep_ix` (`repositoryid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Store files references'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_files_reference` --- - -LOCK TABLES `mdl_files_reference` WRITE; -/*!40000 ALTER TABLE `mdl_files_reference` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_files_reference` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_filter_active` --- - -DROP TABLE IF EXISTS `mdl_filter_active`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_filter_active` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `filter` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `contextid` bigint(10) NOT NULL, - `active` smallint(4) NOT NULL, - `sortorder` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_filtacti_confil_uix` (`contextid`,`filter`), - KEY `mdl_filtacti_con_ix` (`contextid`) -) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores information about which filters are active in which c'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_filter_active` --- - -LOCK TABLES `mdl_filter_active` WRITE; -/*!40000 ALTER TABLE `mdl_filter_active` DISABLE KEYS */; -INSERT INTO `mdl_filter_active` VALUES (1,'activitynames',1,1,2),(2,'displayh5p',1,1,1),(3,'emoticon',1,1,4),(4,'mathjaxloader',1,1,3),(5,'mediaplugin',1,1,6),(6,'urltolink',1,1,5); -/*!40000 ALTER TABLE `mdl_filter_active` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_filter_config` --- - -DROP TABLE IF EXISTS `mdl_filter_config`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_filter_config` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `filter` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `contextid` bigint(10) NOT NULL, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_filtconf_confilnam_uix` (`contextid`,`filter`,`name`), - KEY `mdl_filtconf_con_ix` (`contextid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores per-context configuration settings for filters which '; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_filter_config` --- - -LOCK TABLES `mdl_filter_config` WRITE; -/*!40000 ALTER TABLE `mdl_filter_config` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_filter_config` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_folder` --- - -DROP TABLE IF EXISTS `mdl_folder`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_folder` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `introformat` smallint(4) NOT NULL DEFAULT 0, - `revision` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `display` smallint(4) NOT NULL DEFAULT 0, - `showexpanded` tinyint(1) NOT NULL DEFAULT 1, - `showdownloadfolder` tinyint(1) NOT NULL DEFAULT 1, - `forcedownload` tinyint(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`), - KEY `mdl_fold_cou_ix` (`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='each record is one folder resource'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_folder` --- - -LOCK TABLES `mdl_folder` WRITE; -/*!40000 ALTER TABLE `mdl_folder` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_folder` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_forum` --- - -DROP TABLE IF EXISTS `mdl_forum`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_forum` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'general', - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `introformat` smallint(4) NOT NULL DEFAULT 0, - `duedate` bigint(10) NOT NULL DEFAULT 0, - `cutoffdate` bigint(10) NOT NULL DEFAULT 0, - `assessed` bigint(10) NOT NULL DEFAULT 0, - `assesstimestart` bigint(10) NOT NULL DEFAULT 0, - `assesstimefinish` bigint(10) NOT NULL DEFAULT 0, - `scale` bigint(10) NOT NULL DEFAULT 0, - `grade_forum` bigint(10) NOT NULL DEFAULT 0, - `grade_forum_notify` smallint(4) NOT NULL DEFAULT 0, - `maxbytes` bigint(10) NOT NULL DEFAULT 0, - `maxattachments` bigint(10) NOT NULL DEFAULT 1, - `forcesubscribe` tinyint(1) NOT NULL DEFAULT 0, - `trackingtype` tinyint(2) NOT NULL DEFAULT 1, - `rsstype` tinyint(2) NOT NULL DEFAULT 0, - `rssarticles` tinyint(2) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `warnafter` bigint(10) NOT NULL DEFAULT 0, - `blockafter` bigint(10) NOT NULL DEFAULT 0, - `blockperiod` bigint(10) NOT NULL DEFAULT 0, - `completiondiscussions` int(9) NOT NULL DEFAULT 0, - `completionreplies` int(9) NOT NULL DEFAULT 0, - `completionposts` int(9) NOT NULL DEFAULT 0, - `displaywordcount` tinyint(1) NOT NULL DEFAULT 0, - `lockdiscussionafter` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_foru_cou_ix` (`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Forums contain and structure discussion'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_forum` --- - -LOCK TABLES `mdl_forum` WRITE; -/*!40000 ALTER TABLE `mdl_forum` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_forum` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_forum_digests` --- - -DROP TABLE IF EXISTS `mdl_forum_digests`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_forum_digests` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL, - `forum` bigint(10) NOT NULL, - `maildigest` tinyint(1) NOT NULL DEFAULT -1, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_forudige_forusemai_uix` (`forum`,`userid`,`maildigest`), - KEY `mdl_forudige_use_ix` (`userid`), - KEY `mdl_forudige_for_ix` (`forum`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Keeps track of user mail delivery preferences for each forum'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_forum_digests` --- - -LOCK TABLES `mdl_forum_digests` WRITE; -/*!40000 ALTER TABLE `mdl_forum_digests` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_forum_digests` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_forum_discussion_subs` --- - -DROP TABLE IF EXISTS `mdl_forum_discussion_subs`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_forum_discussion_subs` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `forum` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `discussion` bigint(10) NOT NULL, - `preference` bigint(10) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_forudiscsubs_usedis_uix` (`userid`,`discussion`), - KEY `mdl_forudiscsubs_for_ix` (`forum`), - KEY `mdl_forudiscsubs_use_ix` (`userid`), - KEY `mdl_forudiscsubs_dis_ix` (`discussion`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Users may choose to subscribe and unsubscribe from specific '; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_forum_discussion_subs` --- - -LOCK TABLES `mdl_forum_discussion_subs` WRITE; -/*!40000 ALTER TABLE `mdl_forum_discussion_subs` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_forum_discussion_subs` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_forum_discussions` --- - -DROP TABLE IF EXISTS `mdl_forum_discussions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_forum_discussions` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `forum` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `firstpost` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `groupid` bigint(10) NOT NULL DEFAULT -1, - `assessed` tinyint(1) NOT NULL DEFAULT 1, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `usermodified` bigint(10) NOT NULL DEFAULT 0, - `timestart` bigint(10) NOT NULL DEFAULT 0, - `timeend` bigint(10) NOT NULL DEFAULT 0, - `pinned` tinyint(1) NOT NULL DEFAULT 0, - `timelocked` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_forudisc_use_ix` (`userid`), - KEY `mdl_forudisc_cou_ix` (`course`), - KEY `mdl_forudisc_for_ix` (`forum`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Forums are composed of discussions'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_forum_discussions` --- - -LOCK TABLES `mdl_forum_discussions` WRITE; -/*!40000 ALTER TABLE `mdl_forum_discussions` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_forum_discussions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_forum_grades` --- - -DROP TABLE IF EXISTS `mdl_forum_grades`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_forum_grades` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `forum` bigint(10) NOT NULL, - `itemnumber` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `grade` decimal(10,5) DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_forugrad_foriteuse_uix` (`forum`,`itemnumber`,`userid`), - KEY `mdl_forugrad_use_ix` (`userid`), - KEY `mdl_forugrad_for_ix` (`forum`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Grading data for forum instances'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_forum_grades` --- - -LOCK TABLES `mdl_forum_grades` WRITE; -/*!40000 ALTER TABLE `mdl_forum_grades` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_forum_grades` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_forum_posts` --- - -DROP TABLE IF EXISTS `mdl_forum_posts`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_forum_posts` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `discussion` bigint(10) NOT NULL DEFAULT 0, - `parent` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `created` bigint(10) NOT NULL DEFAULT 0, - `modified` bigint(10) NOT NULL DEFAULT 0, - `mailed` tinyint(2) NOT NULL DEFAULT 0, - `subject` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `messageformat` tinyint(2) NOT NULL DEFAULT 0, - `messagetrust` tinyint(2) NOT NULL DEFAULT 0, - `attachment` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `totalscore` smallint(4) NOT NULL DEFAULT 0, - `mailnow` bigint(10) NOT NULL DEFAULT 0, - `deleted` tinyint(1) NOT NULL DEFAULT 0, - `privatereplyto` bigint(10) NOT NULL DEFAULT 0, - `wordcount` bigint(20) DEFAULT NULL, - `charcount` bigint(20) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_forupost_use_ix` (`userid`), - KEY `mdl_forupost_cre_ix` (`created`), - KEY `mdl_forupost_mai_ix` (`mailed`), - KEY `mdl_forupost_pri_ix` (`privatereplyto`), - KEY `mdl_forupost_dis_ix` (`discussion`), - KEY `mdl_forupost_par_ix` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='All posts are stored in this table'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_forum_posts` --- - -LOCK TABLES `mdl_forum_posts` WRITE; -/*!40000 ALTER TABLE `mdl_forum_posts` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_forum_posts` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_forum_queue` --- - -DROP TABLE IF EXISTS `mdl_forum_queue`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_forum_queue` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL DEFAULT 0, - `discussionid` bigint(10) NOT NULL DEFAULT 0, - `postid` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_foruqueu_use_ix` (`userid`), - KEY `mdl_foruqueu_dis_ix` (`discussionid`), - KEY `mdl_foruqueu_pos_ix` (`postid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='For keeping track of posts that will be mailed in digest for'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_forum_queue` --- - -LOCK TABLES `mdl_forum_queue` WRITE; -/*!40000 ALTER TABLE `mdl_forum_queue` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_forum_queue` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_forum_read` --- - -DROP TABLE IF EXISTS `mdl_forum_read`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_forum_read` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL DEFAULT 0, - `forumid` bigint(10) NOT NULL DEFAULT 0, - `discussionid` bigint(10) NOT NULL DEFAULT 0, - `postid` bigint(10) NOT NULL DEFAULT 0, - `firstread` bigint(10) NOT NULL DEFAULT 0, - `lastread` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_foruread_usefor_ix` (`userid`,`forumid`), - KEY `mdl_foruread_usedis_ix` (`userid`,`discussionid`), - KEY `mdl_foruread_posuse_ix` (`postid`,`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Tracks each users read posts'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_forum_read` --- - -LOCK TABLES `mdl_forum_read` WRITE; -/*!40000 ALTER TABLE `mdl_forum_read` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_forum_read` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_forum_subscriptions` --- - -DROP TABLE IF EXISTS `mdl_forum_subscriptions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_forum_subscriptions` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL DEFAULT 0, - `forum` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_forusubs_usefor_uix` (`userid`,`forum`), - KEY `mdl_forusubs_use_ix` (`userid`), - KEY `mdl_forusubs_for_ix` (`forum`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Keeps track of who is subscribed to what forum'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_forum_subscriptions` --- - -LOCK TABLES `mdl_forum_subscriptions` WRITE; -/*!40000 ALTER TABLE `mdl_forum_subscriptions` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_forum_subscriptions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_forum_track_prefs` --- - -DROP TABLE IF EXISTS `mdl_forum_track_prefs`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_forum_track_prefs` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL DEFAULT 0, - `forumid` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_forutracpref_usefor_ix` (`userid`,`forumid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Tracks each users untracked forums'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_forum_track_prefs` --- - -LOCK TABLES `mdl_forum_track_prefs` WRITE; -/*!40000 ALTER TABLE `mdl_forum_track_prefs` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_forum_track_prefs` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_glossary` --- - -DROP TABLE IF EXISTS `mdl_glossary`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_glossary` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `introformat` smallint(4) NOT NULL DEFAULT 0, - `allowduplicatedentries` tinyint(2) NOT NULL DEFAULT 0, - `displayformat` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'dictionary', - `mainglossary` tinyint(2) NOT NULL DEFAULT 0, - `showspecial` tinyint(2) NOT NULL DEFAULT 1, - `showalphabet` tinyint(2) NOT NULL DEFAULT 1, - `showall` tinyint(2) NOT NULL DEFAULT 1, - `allowcomments` tinyint(2) NOT NULL DEFAULT 0, - `allowprintview` tinyint(2) NOT NULL DEFAULT 1, - `usedynalink` tinyint(2) NOT NULL DEFAULT 1, - `defaultapproval` tinyint(2) NOT NULL DEFAULT 1, - `approvaldisplayformat` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', - `globalglossary` tinyint(2) NOT NULL DEFAULT 0, - `entbypage` smallint(3) NOT NULL DEFAULT 10, - `editalways` tinyint(2) NOT NULL DEFAULT 0, - `rsstype` tinyint(2) NOT NULL DEFAULT 0, - `rssarticles` tinyint(2) NOT NULL DEFAULT 0, - `assessed` bigint(10) NOT NULL DEFAULT 0, - `assesstimestart` bigint(10) NOT NULL DEFAULT 0, - `assesstimefinish` bigint(10) NOT NULL DEFAULT 0, - `scale` bigint(10) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `completionentries` int(9) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_glos_cou_ix` (`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='all glossaries'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_glossary` --- - -LOCK TABLES `mdl_glossary` WRITE; -/*!40000 ALTER TABLE `mdl_glossary` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_glossary` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_glossary_alias` --- - -DROP TABLE IF EXISTS `mdl_glossary_alias`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_glossary_alias` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `entryid` bigint(10) NOT NULL DEFAULT 0, - `alias` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `mdl_glosalia_ent_ix` (`entryid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='entries alias'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_glossary_alias` --- - -LOCK TABLES `mdl_glossary_alias` WRITE; -/*!40000 ALTER TABLE `mdl_glossary_alias` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_glossary_alias` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_glossary_categories` --- - -DROP TABLE IF EXISTS `mdl_glossary_categories`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_glossary_categories` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `glossaryid` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `usedynalink` tinyint(2) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`), - KEY `mdl_gloscate_glo_ix` (`glossaryid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='all categories for glossary entries'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_glossary_categories` --- - -LOCK TABLES `mdl_glossary_categories` WRITE; -/*!40000 ALTER TABLE `mdl_glossary_categories` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_glossary_categories` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_glossary_entries` --- - -DROP TABLE IF EXISTS `mdl_glossary_entries`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_glossary_entries` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `glossaryid` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `concept` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `definition` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `definitionformat` tinyint(2) NOT NULL DEFAULT 0, - `definitiontrust` tinyint(2) NOT NULL DEFAULT 0, - `attachment` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `teacherentry` tinyint(2) NOT NULL DEFAULT 0, - `sourceglossaryid` bigint(10) NOT NULL DEFAULT 0, - `usedynalink` tinyint(2) NOT NULL DEFAULT 1, - `casesensitive` tinyint(2) NOT NULL DEFAULT 0, - `fullmatch` tinyint(2) NOT NULL DEFAULT 1, - `approved` tinyint(2) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`), - KEY `mdl_glosentr_use_ix` (`userid`), - KEY `mdl_glosentr_con_ix` (`concept`), - KEY `mdl_glosentr_glo_ix` (`glossaryid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='all glossary entries'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_glossary_entries` --- - -LOCK TABLES `mdl_glossary_entries` WRITE; -/*!40000 ALTER TABLE `mdl_glossary_entries` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_glossary_entries` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_glossary_entries_categories` --- - -DROP TABLE IF EXISTS `mdl_glossary_entries_categories`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_glossary_entries_categories` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `categoryid` bigint(10) NOT NULL DEFAULT 0, - `entryid` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_glosentrcate_cat_ix` (`categoryid`), - KEY `mdl_glosentrcate_ent_ix` (`entryid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='categories of each glossary entry'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_glossary_entries_categories` --- - -LOCK TABLES `mdl_glossary_entries_categories` WRITE; -/*!40000 ALTER TABLE `mdl_glossary_entries_categories` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_glossary_entries_categories` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_glossary_formats` --- - -DROP TABLE IF EXISTS `mdl_glossary_formats`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_glossary_formats` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `popupformatname` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `visible` tinyint(2) NOT NULL DEFAULT 1, - `showgroup` tinyint(2) NOT NULL DEFAULT 1, - `showtabs` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `defaultmode` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `defaulthook` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `sortkey` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `sortorder` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Setting of the display formats'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_glossary_formats` --- - -LOCK TABLES `mdl_glossary_formats` WRITE; -/*!40000 ALTER TABLE `mdl_glossary_formats` DISABLE KEYS */; -INSERT INTO `mdl_glossary_formats` VALUES (1,'continuous','continuous',1,1,'standard,category,date','','','',''),(2,'dictionary','dictionary',1,1,'standard','','','',''),(3,'encyclopedia','encyclopedia',1,1,'standard,category,date,author','','','',''),(4,'entrylist','entrylist',1,1,'standard,category,date,author','','','',''),(5,'faq','faq',1,1,'standard,category,date,author','','','',''),(6,'fullwithauthor','fullwithauthor',1,1,'standard,category,date,author','','','',''),(7,'fullwithoutauthor','fullwithoutauthor',1,1,'standard,category,date','','','',''); -/*!40000 ALTER TABLE `mdl_glossary_formats` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_grade_categories` --- - -DROP TABLE IF EXISTS `mdl_grade_categories`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_grade_categories` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `courseid` bigint(10) NOT NULL, - `parent` bigint(10) DEFAULT NULL, - `depth` bigint(10) NOT NULL DEFAULT 0, - `path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `fullname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `aggregation` bigint(10) NOT NULL DEFAULT 0, - `keephigh` bigint(10) NOT NULL DEFAULT 0, - `droplow` bigint(10) NOT NULL DEFAULT 0, - `aggregateonlygraded` tinyint(1) NOT NULL DEFAULT 0, - `aggregateoutcomes` tinyint(1) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `hidden` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_gradcate_cou_ix` (`courseid`), - KEY `mdl_gradcate_par_ix` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table keeps information about categories, used for grou'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_grade_categories` --- - -LOCK TABLES `mdl_grade_categories` WRITE; -/*!40000 ALTER TABLE `mdl_grade_categories` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_grade_categories` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_grade_categories_history` --- - -DROP TABLE IF EXISTS `mdl_grade_categories_history`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_grade_categories_history` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `action` bigint(10) NOT NULL DEFAULT 0, - `oldid` bigint(10) NOT NULL, - `source` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timemodified` bigint(10) DEFAULT NULL, - `loggeduser` bigint(10) DEFAULT NULL, - `courseid` bigint(10) NOT NULL, - `parent` bigint(10) DEFAULT NULL, - `depth` bigint(10) NOT NULL DEFAULT 0, - `path` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `fullname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `aggregation` bigint(10) NOT NULL DEFAULT 0, - `keephigh` bigint(10) NOT NULL DEFAULT 0, - `droplow` bigint(10) NOT NULL DEFAULT 0, - `aggregateonlygraded` tinyint(1) NOT NULL DEFAULT 0, - `aggregateoutcomes` tinyint(1) NOT NULL DEFAULT 0, - `aggregatesubcats` tinyint(1) NOT NULL DEFAULT 0, - `hidden` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_gradcatehist_act_ix` (`action`), - KEY `mdl_gradcatehist_tim_ix` (`timemodified`), - KEY `mdl_gradcatehist_old_ix` (`oldid`), - KEY `mdl_gradcatehist_cou_ix` (`courseid`), - KEY `mdl_gradcatehist_par_ix` (`parent`), - KEY `mdl_gradcatehist_log_ix` (`loggeduser`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='History of grade_categories'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_grade_categories_history` --- - -LOCK TABLES `mdl_grade_categories_history` WRITE; -/*!40000 ALTER TABLE `mdl_grade_categories_history` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_grade_categories_history` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_grade_grades` --- - -DROP TABLE IF EXISTS `mdl_grade_grades`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_grade_grades` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `itemid` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `rawgrade` decimal(10,5) DEFAULT NULL, - `rawgrademax` decimal(10,5) NOT NULL DEFAULT 100.00000, - `rawgrademin` decimal(10,5) NOT NULL DEFAULT 0.00000, - `rawscaleid` bigint(10) DEFAULT NULL, - `usermodified` bigint(10) DEFAULT NULL, - `finalgrade` decimal(10,5) DEFAULT NULL, - `hidden` bigint(10) NOT NULL DEFAULT 0, - `locked` bigint(10) NOT NULL DEFAULT 0, - `locktime` bigint(10) NOT NULL DEFAULT 0, - `exported` bigint(10) NOT NULL DEFAULT 0, - `overridden` bigint(10) NOT NULL DEFAULT 0, - `excluded` bigint(10) NOT NULL DEFAULT 0, - `feedback` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `feedbackformat` bigint(10) NOT NULL DEFAULT 0, - `information` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `informationformat` bigint(10) NOT NULL DEFAULT 0, - `timecreated` bigint(10) DEFAULT NULL, - `timemodified` bigint(10) DEFAULT NULL, - `aggregationstatus` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unknown', - `aggregationweight` decimal(10,5) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_gradgrad_useite_uix` (`userid`,`itemid`), - KEY `mdl_gradgrad_locloc_ix` (`locked`,`locktime`), - KEY `mdl_gradgrad_ite_ix` (`itemid`), - KEY `mdl_gradgrad_use_ix` (`userid`), - KEY `mdl_gradgrad_raw_ix` (`rawscaleid`), - KEY `mdl_gradgrad_use2_ix` (`usermodified`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='grade_grades This table keeps individual grades for each us'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_grade_grades` --- - -LOCK TABLES `mdl_grade_grades` WRITE; -/*!40000 ALTER TABLE `mdl_grade_grades` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_grade_grades` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_grade_grades_history` --- - -DROP TABLE IF EXISTS `mdl_grade_grades_history`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_grade_grades_history` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `action` bigint(10) NOT NULL DEFAULT 0, - `oldid` bigint(10) NOT NULL, - `source` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timemodified` bigint(10) DEFAULT NULL, - `loggeduser` bigint(10) DEFAULT NULL, - `itemid` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `rawgrade` decimal(10,5) DEFAULT NULL, - `rawgrademax` decimal(10,5) NOT NULL DEFAULT 100.00000, - `rawgrademin` decimal(10,5) NOT NULL DEFAULT 0.00000, - `rawscaleid` bigint(10) DEFAULT NULL, - `usermodified` bigint(10) DEFAULT NULL, - `finalgrade` decimal(10,5) DEFAULT NULL, - `hidden` bigint(10) NOT NULL DEFAULT 0, - `locked` bigint(10) NOT NULL DEFAULT 0, - `locktime` bigint(10) NOT NULL DEFAULT 0, - `exported` bigint(10) NOT NULL DEFAULT 0, - `overridden` bigint(10) NOT NULL DEFAULT 0, - `excluded` bigint(10) NOT NULL DEFAULT 0, - `feedback` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `feedbackformat` bigint(10) NOT NULL DEFAULT 0, - `information` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `informationformat` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_gradgradhist_act_ix` (`action`), - KEY `mdl_gradgradhist_tim_ix` (`timemodified`), - KEY `mdl_gradgradhist_useitetim_ix` (`userid`,`itemid`,`timemodified`), - KEY `mdl_gradgradhist_old_ix` (`oldid`), - KEY `mdl_gradgradhist_ite_ix` (`itemid`), - KEY `mdl_gradgradhist_use_ix` (`userid`), - KEY `mdl_gradgradhist_raw_ix` (`rawscaleid`), - KEY `mdl_gradgradhist_use2_ix` (`usermodified`), - KEY `mdl_gradgradhist_log_ix` (`loggeduser`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='History table'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_grade_grades_history` --- - -LOCK TABLES `mdl_grade_grades_history` WRITE; -/*!40000 ALTER TABLE `mdl_grade_grades_history` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_grade_grades_history` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_grade_import_newitem` --- - -DROP TABLE IF EXISTS `mdl_grade_import_newitem`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_grade_import_newitem` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `itemname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `importcode` bigint(10) NOT NULL, - `importer` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_gradimponewi_imp_ix` (`importer`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='temporary table for storing new grade_item names from grade '; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_grade_import_newitem` --- - -LOCK TABLES `mdl_grade_import_newitem` WRITE; -/*!40000 ALTER TABLE `mdl_grade_import_newitem` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_grade_import_newitem` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_grade_import_values` --- - -DROP TABLE IF EXISTS `mdl_grade_import_values`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_grade_import_values` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `itemid` bigint(10) DEFAULT NULL, - `newgradeitem` bigint(10) DEFAULT NULL, - `userid` bigint(10) NOT NULL, - `finalgrade` decimal(10,5) DEFAULT NULL, - `feedback` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `importcode` bigint(10) NOT NULL, - `importer` bigint(10) DEFAULT NULL, - `importonlyfeedback` tinyint(1) DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_gradimpovalu_ite_ix` (`itemid`), - KEY `mdl_gradimpovalu_new_ix` (`newgradeitem`), - KEY `mdl_gradimpovalu_imp_ix` (`importer`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Temporary table for importing grades'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_grade_import_values` --- - -LOCK TABLES `mdl_grade_import_values` WRITE; -/*!40000 ALTER TABLE `mdl_grade_import_values` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_grade_import_values` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_grade_items` --- - -DROP TABLE IF EXISTS `mdl_grade_items`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_grade_items` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `courseid` bigint(10) DEFAULT NULL, - `categoryid` bigint(10) DEFAULT NULL, - `itemname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `itemtype` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `itemmodule` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `iteminstance` bigint(10) DEFAULT NULL, - `itemnumber` bigint(10) DEFAULT NULL, - `iteminfo` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `idnumber` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `calculation` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `gradetype` smallint(4) NOT NULL DEFAULT 1, - `grademax` decimal(10,5) NOT NULL DEFAULT 100.00000, - `grademin` decimal(10,5) NOT NULL DEFAULT 0.00000, - `scaleid` bigint(10) DEFAULT NULL, - `outcomeid` bigint(10) DEFAULT NULL, - `gradepass` decimal(10,5) NOT NULL DEFAULT 0.00000, - `multfactor` decimal(10,5) NOT NULL DEFAULT 1.00000, - `plusfactor` decimal(10,5) NOT NULL DEFAULT 0.00000, - `aggregationcoef` decimal(10,5) NOT NULL DEFAULT 0.00000, - `aggregationcoef2` decimal(10,5) NOT NULL DEFAULT 0.00000, - `sortorder` bigint(10) NOT NULL DEFAULT 0, - `display` bigint(10) NOT NULL DEFAULT 0, - `decimals` tinyint(1) DEFAULT NULL, - `hidden` bigint(10) NOT NULL DEFAULT 0, - `locked` bigint(10) NOT NULL DEFAULT 0, - `locktime` bigint(10) NOT NULL DEFAULT 0, - `needsupdate` bigint(10) NOT NULL DEFAULT 0, - `weightoverride` tinyint(1) NOT NULL DEFAULT 0, - `timecreated` bigint(10) DEFAULT NULL, - `timemodified` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_graditem_locloc_ix` (`locked`,`locktime`), - KEY `mdl_graditem_itenee_ix` (`itemtype`,`needsupdate`), - KEY `mdl_graditem_gra_ix` (`gradetype`), - KEY `mdl_graditem_idncou_ix` (`idnumber`,`courseid`), - KEY `mdl_graditem_cou_ix` (`courseid`), - KEY `mdl_graditem_cat_ix` (`categoryid`), - KEY `mdl_graditem_sca_ix` (`scaleid`), - KEY `mdl_graditem_out_ix` (`outcomeid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table keeps information about gradeable items (ie colum'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_grade_items` --- - -LOCK TABLES `mdl_grade_items` WRITE; -/*!40000 ALTER TABLE `mdl_grade_items` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_grade_items` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_grade_items_history` --- - -DROP TABLE IF EXISTS `mdl_grade_items_history`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_grade_items_history` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `action` bigint(10) NOT NULL DEFAULT 0, - `oldid` bigint(10) NOT NULL, - `source` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timemodified` bigint(10) DEFAULT NULL, - `loggeduser` bigint(10) DEFAULT NULL, - `courseid` bigint(10) DEFAULT NULL, - `categoryid` bigint(10) DEFAULT NULL, - `itemname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `itemtype` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `itemmodule` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `iteminstance` bigint(10) DEFAULT NULL, - `itemnumber` bigint(10) DEFAULT NULL, - `iteminfo` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `idnumber` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `calculation` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `gradetype` smallint(4) NOT NULL DEFAULT 1, - `grademax` decimal(10,5) NOT NULL DEFAULT 100.00000, - `grademin` decimal(10,5) NOT NULL DEFAULT 0.00000, - `scaleid` bigint(10) DEFAULT NULL, - `outcomeid` bigint(10) DEFAULT NULL, - `gradepass` decimal(10,5) NOT NULL DEFAULT 0.00000, - `multfactor` decimal(10,5) NOT NULL DEFAULT 1.00000, - `plusfactor` decimal(10,5) NOT NULL DEFAULT 0.00000, - `aggregationcoef` decimal(10,5) NOT NULL DEFAULT 0.00000, - `aggregationcoef2` decimal(10,5) NOT NULL DEFAULT 0.00000, - `sortorder` bigint(10) NOT NULL DEFAULT 0, - `hidden` bigint(10) NOT NULL DEFAULT 0, - `locked` bigint(10) NOT NULL DEFAULT 0, - `locktime` bigint(10) NOT NULL DEFAULT 0, - `needsupdate` bigint(10) NOT NULL DEFAULT 0, - `display` bigint(10) NOT NULL DEFAULT 0, - `decimals` tinyint(1) DEFAULT NULL, - `weightoverride` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_graditemhist_act_ix` (`action`), - KEY `mdl_graditemhist_tim_ix` (`timemodified`), - KEY `mdl_graditemhist_old_ix` (`oldid`), - KEY `mdl_graditemhist_cou_ix` (`courseid`), - KEY `mdl_graditemhist_cat_ix` (`categoryid`), - KEY `mdl_graditemhist_sca_ix` (`scaleid`), - KEY `mdl_graditemhist_out_ix` (`outcomeid`), - KEY `mdl_graditemhist_log_ix` (`loggeduser`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='History of grade_items'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_grade_items_history` --- - -LOCK TABLES `mdl_grade_items_history` WRITE; -/*!40000 ALTER TABLE `mdl_grade_items_history` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_grade_items_history` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_grade_letters` --- - -DROP TABLE IF EXISTS `mdl_grade_letters`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_grade_letters` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `contextid` bigint(10) NOT NULL, - `lowerboundary` decimal(10,5) NOT NULL, - `letter` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_gradlett_conlowlet_uix` (`contextid`,`lowerboundary`,`letter`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Repository for grade letters, for courses and other moodle e'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_grade_letters` --- - -LOCK TABLES `mdl_grade_letters` WRITE; -/*!40000 ALTER TABLE `mdl_grade_letters` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_grade_letters` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_grade_outcomes` --- - -DROP TABLE IF EXISTS `mdl_grade_outcomes`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_grade_outcomes` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `courseid` bigint(10) DEFAULT NULL, - `shortname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `fullname` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `scaleid` bigint(10) DEFAULT NULL, - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` tinyint(2) NOT NULL DEFAULT 0, - `timecreated` bigint(10) DEFAULT NULL, - `timemodified` bigint(10) DEFAULT NULL, - `usermodified` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_gradoutc_cousho_uix` (`courseid`,`shortname`), - KEY `mdl_gradoutc_cou_ix` (`courseid`), - KEY `mdl_gradoutc_sca_ix` (`scaleid`), - KEY `mdl_gradoutc_use_ix` (`usermodified`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table describes the outcomes used in the system. An out'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_grade_outcomes` --- - -LOCK TABLES `mdl_grade_outcomes` WRITE; -/*!40000 ALTER TABLE `mdl_grade_outcomes` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_grade_outcomes` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_grade_outcomes_courses` --- - -DROP TABLE IF EXISTS `mdl_grade_outcomes_courses`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_grade_outcomes_courses` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `courseid` bigint(10) NOT NULL, - `outcomeid` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_gradoutccour_couout_uix` (`courseid`,`outcomeid`), - KEY `mdl_gradoutccour_cou_ix` (`courseid`), - KEY `mdl_gradoutccour_out_ix` (`outcomeid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='stores what outcomes are used in what courses.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_grade_outcomes_courses` --- - -LOCK TABLES `mdl_grade_outcomes_courses` WRITE; -/*!40000 ALTER TABLE `mdl_grade_outcomes_courses` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_grade_outcomes_courses` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_grade_outcomes_history` --- - -DROP TABLE IF EXISTS `mdl_grade_outcomes_history`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_grade_outcomes_history` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `action` bigint(10) NOT NULL DEFAULT 0, - `oldid` bigint(10) NOT NULL, - `source` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timemodified` bigint(10) DEFAULT NULL, - `loggeduser` bigint(10) DEFAULT NULL, - `courseid` bigint(10) DEFAULT NULL, - `shortname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `fullname` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `scaleid` bigint(10) DEFAULT NULL, - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` tinyint(2) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_gradoutchist_act_ix` (`action`), - KEY `mdl_gradoutchist_tim_ix` (`timemodified`), - KEY `mdl_gradoutchist_old_ix` (`oldid`), - KEY `mdl_gradoutchist_cou_ix` (`courseid`), - KEY `mdl_gradoutchist_sca_ix` (`scaleid`), - KEY `mdl_gradoutchist_log_ix` (`loggeduser`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='History table'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_grade_outcomes_history` --- - -LOCK TABLES `mdl_grade_outcomes_history` WRITE; -/*!40000 ALTER TABLE `mdl_grade_outcomes_history` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_grade_outcomes_history` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_grade_settings` --- - -DROP TABLE IF EXISTS `mdl_grade_settings`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_grade_settings` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `courseid` bigint(10) NOT NULL, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_gradsett_counam_uix` (`courseid`,`name`), - KEY `mdl_gradsett_cou_ix` (`courseid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='gradebook settings'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_grade_settings` --- - -LOCK TABLES `mdl_grade_settings` WRITE; -/*!40000 ALTER TABLE `mdl_grade_settings` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_grade_settings` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_grading_areas` --- - -DROP TABLE IF EXISTS `mdl_grading_areas`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_grading_areas` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `contextid` bigint(10) NOT NULL, - `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `areaname` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `activemethod` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_gradarea_concomare_uix` (`contextid`,`component`,`areaname`), - KEY `mdl_gradarea_con_ix` (`contextid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Identifies gradable areas where advanced grading can happen.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_grading_areas` --- - -LOCK TABLES `mdl_grading_areas` WRITE; -/*!40000 ALTER TABLE `mdl_grading_areas` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_grading_areas` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_grading_definitions` --- - -DROP TABLE IF EXISTS `mdl_grading_definitions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_grading_definitions` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `areaid` bigint(10) NOT NULL, - `method` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` tinyint(2) DEFAULT NULL, - `status` bigint(10) NOT NULL DEFAULT 0, - `copiedfromid` bigint(10) DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `usercreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `usermodified` bigint(10) NOT NULL, - `timecopied` bigint(10) DEFAULT 0, - `options` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_graddefi_aremet_uix` (`areaid`,`method`), - KEY `mdl_graddefi_are_ix` (`areaid`), - KEY `mdl_graddefi_use_ix` (`usermodified`), - KEY `mdl_graddefi_use2_ix` (`usercreated`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Contains the basic information about an advanced grading for'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_grading_definitions` --- - -LOCK TABLES `mdl_grading_definitions` WRITE; -/*!40000 ALTER TABLE `mdl_grading_definitions` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_grading_definitions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_grading_instances` --- - -DROP TABLE IF EXISTS `mdl_grading_instances`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_grading_instances` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `definitionid` bigint(10) NOT NULL, - `raterid` bigint(10) NOT NULL, - `itemid` bigint(10) DEFAULT NULL, - `rawgrade` decimal(10,5) DEFAULT NULL, - `status` bigint(10) NOT NULL DEFAULT 0, - `feedback` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `feedbackformat` tinyint(2) DEFAULT NULL, - `timemodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_gradinst_def_ix` (`definitionid`), - KEY `mdl_gradinst_rat_ix` (`raterid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Grading form instance is an assessment record for one gradab'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_grading_instances` --- - -LOCK TABLES `mdl_grading_instances` WRITE; -/*!40000 ALTER TABLE `mdl_grading_instances` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_grading_instances` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_gradingform_guide_comments` --- - -DROP TABLE IF EXISTS `mdl_gradingform_guide_comments`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_gradingform_guide_comments` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `definitionid` bigint(10) NOT NULL, - `sortorder` bigint(10) NOT NULL, - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` tinyint(2) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_gradguidcomm_def_ix` (`definitionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='frequently used comments used in marking guide'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_gradingform_guide_comments` --- - -LOCK TABLES `mdl_gradingform_guide_comments` WRITE; -/*!40000 ALTER TABLE `mdl_gradingform_guide_comments` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_gradingform_guide_comments` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_gradingform_guide_criteria` --- - -DROP TABLE IF EXISTS `mdl_gradingform_guide_criteria`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_gradingform_guide_criteria` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `definitionid` bigint(10) NOT NULL, - `sortorder` bigint(10) NOT NULL, - `shortname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` tinyint(2) DEFAULT NULL, - `descriptionmarkers` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionmarkersformat` tinyint(2) DEFAULT NULL, - `maxscore` decimal(10,5) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_gradguidcrit_def_ix` (`definitionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the rows of the criteria grid.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_gradingform_guide_criteria` --- - -LOCK TABLES `mdl_gradingform_guide_criteria` WRITE; -/*!40000 ALTER TABLE `mdl_gradingform_guide_criteria` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_gradingform_guide_criteria` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_gradingform_guide_fillings` --- - -DROP TABLE IF EXISTS `mdl_gradingform_guide_fillings`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_gradingform_guide_fillings` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `instanceid` bigint(10) NOT NULL, - `criterionid` bigint(10) NOT NULL, - `remark` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `remarkformat` tinyint(2) DEFAULT NULL, - `score` decimal(10,5) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_gradguidfill_inscri_uix` (`instanceid`,`criterionid`), - KEY `mdl_gradguidfill_ins_ix` (`instanceid`), - KEY `mdl_gradguidfill_cri_ix` (`criterionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the data of how the guide is filled by a particular r'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_gradingform_guide_fillings` --- - -LOCK TABLES `mdl_gradingform_guide_fillings` WRITE; -/*!40000 ALTER TABLE `mdl_gradingform_guide_fillings` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_gradingform_guide_fillings` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_gradingform_rubric_criteria` --- - -DROP TABLE IF EXISTS `mdl_gradingform_rubric_criteria`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_gradingform_rubric_criteria` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `definitionid` bigint(10) NOT NULL, - `sortorder` bigint(10) NOT NULL, - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` tinyint(2) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_gradrubrcrit_def_ix` (`definitionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the rows of the rubric grid.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_gradingform_rubric_criteria` --- - -LOCK TABLES `mdl_gradingform_rubric_criteria` WRITE; -/*!40000 ALTER TABLE `mdl_gradingform_rubric_criteria` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_gradingform_rubric_criteria` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_gradingform_rubric_fillings` --- - -DROP TABLE IF EXISTS `mdl_gradingform_rubric_fillings`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_gradingform_rubric_fillings` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `instanceid` bigint(10) NOT NULL, - `criterionid` bigint(10) NOT NULL, - `levelid` bigint(10) DEFAULT NULL, - `remark` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `remarkformat` tinyint(2) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_gradrubrfill_inscri_uix` (`instanceid`,`criterionid`), - KEY `mdl_gradrubrfill_lev_ix` (`levelid`), - KEY `mdl_gradrubrfill_ins_ix` (`instanceid`), - KEY `mdl_gradrubrfill_cri_ix` (`criterionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the data of how the rubric is filled by a particular '; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_gradingform_rubric_fillings` --- - -LOCK TABLES `mdl_gradingform_rubric_fillings` WRITE; -/*!40000 ALTER TABLE `mdl_gradingform_rubric_fillings` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_gradingform_rubric_fillings` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_gradingform_rubric_levels` --- - -DROP TABLE IF EXISTS `mdl_gradingform_rubric_levels`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_gradingform_rubric_levels` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `criterionid` bigint(10) NOT NULL, - `score` decimal(10,5) NOT NULL, - `definition` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `definitionformat` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_gradrubrleve_cri_ix` (`criterionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the columns of the rubric grid.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_gradingform_rubric_levels` --- - -LOCK TABLES `mdl_gradingform_rubric_levels` WRITE; -/*!40000 ALTER TABLE `mdl_gradingform_rubric_levels` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_gradingform_rubric_levels` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_groupings` --- - -DROP TABLE IF EXISTS `mdl_groupings`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_groupings` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `courseid` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` tinyint(2) NOT NULL DEFAULT 0, - `configdata` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_grou_idn2_ix` (`idnumber`), - KEY `mdl_grou_cou2_ix` (`courseid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='A grouping is a collection of groups. WAS: groups_groupings'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_groupings` --- - -LOCK TABLES `mdl_groupings` WRITE; -/*!40000 ALTER TABLE `mdl_groupings` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_groupings` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_groupings_groups` --- - -DROP TABLE IF EXISTS `mdl_groupings_groups`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_groupings_groups` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `groupingid` bigint(10) NOT NULL DEFAULT 0, - `groupid` bigint(10) NOT NULL DEFAULT 0, - `timeadded` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_grougrou_gro_ix` (`groupingid`), - KEY `mdl_grougrou_gro2_ix` (`groupid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Link a grouping to a group (note, groups can be in multiple '; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_groupings_groups` --- - -LOCK TABLES `mdl_groupings_groups` WRITE; -/*!40000 ALTER TABLE `mdl_groupings_groups` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_groupings_groups` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_groups` --- - -DROP TABLE IF EXISTS `mdl_groups`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_groups` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `courseid` bigint(10) NOT NULL, - `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `name` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` tinyint(2) NOT NULL DEFAULT 0, - `enrolmentkey` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `picture` bigint(10) NOT NULL DEFAULT 0, - `hidepicture` tinyint(1) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_grou_idn_ix` (`idnumber`), - KEY `mdl_grou_cou_ix` (`courseid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Each record represents a group.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_groups` --- - -LOCK TABLES `mdl_groups` WRITE; -/*!40000 ALTER TABLE `mdl_groups` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_groups` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_groups_members` --- - -DROP TABLE IF EXISTS `mdl_groups_members`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_groups_members` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `groupid` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `timeadded` bigint(10) NOT NULL DEFAULT 0, - `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `itemid` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_groumemb_usegro_uix` (`userid`,`groupid`), - KEY `mdl_groumemb_gro_ix` (`groupid`), - KEY `mdl_groumemb_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Link a user to a group.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_groups_members` --- - -LOCK TABLES `mdl_groups_members` WRITE; -/*!40000 ALTER TABLE `mdl_groups_members` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_groups_members` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_h5p` --- - -DROP TABLE IF EXISTS `mdl_h5p`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_h5p` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `jsoncontent` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `mainlibraryid` bigint(10) NOT NULL, - `displayoptions` smallint(4) DEFAULT NULL, - `pathnamehash` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `contenthash` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `filtered` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_h5p_mai_ix` (`mainlibraryid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores H5P content information'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_h5p` --- - -LOCK TABLES `mdl_h5p` WRITE; -/*!40000 ALTER TABLE `mdl_h5p` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_h5p` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_h5p_contents_libraries` --- - -DROP TABLE IF EXISTS `mdl_h5p_contents_libraries`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_h5p_contents_libraries` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `h5pid` bigint(10) NOT NULL, - `libraryid` bigint(10) NOT NULL, - `dependencytype` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `dropcss` tinyint(1) NOT NULL, - `weight` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_h5pcontlibr_h5p_ix` (`h5pid`), - KEY `mdl_h5pcontlibr_lib_ix` (`libraryid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Store which library is used in which content.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_h5p_contents_libraries` --- - -LOCK TABLES `mdl_h5p_contents_libraries` WRITE; -/*!40000 ALTER TABLE `mdl_h5p_contents_libraries` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_h5p_contents_libraries` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_h5p_libraries` --- - -DROP TABLE IF EXISTS `mdl_h5p_libraries`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_h5p_libraries` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `machinename` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `majorversion` smallint(4) NOT NULL, - `minorversion` smallint(4) NOT NULL, - `patchversion` smallint(4) NOT NULL, - `runnable` tinyint(1) NOT NULL, - `fullscreen` tinyint(1) NOT NULL DEFAULT 0, - `embedtypes` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `preloadedjs` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `preloadedcss` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `droplibrarycss` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `semantics` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `addto` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `coremajor` smallint(4) DEFAULT NULL, - `coreminor` smallint(4) DEFAULT NULL, - `metadatasettings` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `tutorial` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `example` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_h5plibr_macmajminpatrun_ix` (`machinename`,`majorversion`,`minorversion`,`patchversion`,`runnable`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores information about libraries used by H5P content.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_h5p_libraries` --- - -LOCK TABLES `mdl_h5p_libraries` WRITE; -/*!40000 ALTER TABLE `mdl_h5p_libraries` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_h5p_libraries` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_h5p_libraries_cachedassets` --- - -DROP TABLE IF EXISTS `mdl_h5p_libraries_cachedassets`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_h5p_libraries_cachedassets` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `libraryid` bigint(10) NOT NULL, - `hash` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `mdl_h5plibrcach_lib_ix` (`libraryid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='H5P cached library assets'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_h5p_libraries_cachedassets` --- - -LOCK TABLES `mdl_h5p_libraries_cachedassets` WRITE; -/*!40000 ALTER TABLE `mdl_h5p_libraries_cachedassets` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_h5p_libraries_cachedassets` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_h5p_library_dependencies` --- - -DROP TABLE IF EXISTS `mdl_h5p_library_dependencies`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_h5p_library_dependencies` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `libraryid` bigint(10) NOT NULL, - `requiredlibraryid` bigint(10) NOT NULL, - `dependencytype` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `mdl_h5plibrdepe_lib_ix` (`libraryid`), - KEY `mdl_h5plibrdepe_req_ix` (`requiredlibraryid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores H5P library dependencies'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_h5p_library_dependencies` --- - -LOCK TABLES `mdl_h5p_library_dependencies` WRITE; -/*!40000 ALTER TABLE `mdl_h5p_library_dependencies` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_h5p_library_dependencies` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_h5pactivity` --- - -DROP TABLE IF EXISTS `mdl_h5pactivity`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_h5pactivity` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `introformat` smallint(4) NOT NULL DEFAULT 0, - `grade` bigint(10) DEFAULT 0, - `displayoptions` smallint(4) NOT NULL DEFAULT 0, - `enabletracking` tinyint(1) NOT NULL DEFAULT 1, - `grademethod` smallint(4) NOT NULL DEFAULT 1, - `reviewmode` smallint(4) DEFAULT 1, - PRIMARY KEY (`id`), - KEY `mdl_h5pa_cou_ix` (`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the h5pactivity activity module instances.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_h5pactivity` --- - -LOCK TABLES `mdl_h5pactivity` WRITE; -/*!40000 ALTER TABLE `mdl_h5pactivity` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_h5pactivity` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_h5pactivity_attempts` --- - -DROP TABLE IF EXISTS `mdl_h5pactivity_attempts`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_h5pactivity_attempts` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `h5pactivityid` bigint(10) NOT NULL, - `userid` bigint(20) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `attempt` mediumint(6) NOT NULL DEFAULT 1, - `rawscore` bigint(10) DEFAULT 0, - `maxscore` bigint(10) DEFAULT 0, - `scaled` decimal(10,5) NOT NULL DEFAULT 0.00000, - `duration` bigint(10) DEFAULT 0, - `completion` tinyint(1) DEFAULT NULL, - `success` tinyint(1) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_h5paatte_h5puseatt_uix` (`h5pactivityid`,`userid`,`attempt`), - KEY `mdl_h5paatte_tim_ix` (`timecreated`), - KEY `mdl_h5paatte_h5ptim_ix` (`h5pactivityid`,`timecreated`), - KEY `mdl_h5paatte_h5puse_ix` (`h5pactivityid`,`userid`), - KEY `mdl_h5paatte_h5p_ix` (`h5pactivityid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Users attempts inside H5P activities'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_h5pactivity_attempts` --- - -LOCK TABLES `mdl_h5pactivity_attempts` WRITE; -/*!40000 ALTER TABLE `mdl_h5pactivity_attempts` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_h5pactivity_attempts` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_h5pactivity_attempts_results` --- - -DROP TABLE IF EXISTS `mdl_h5pactivity_attempts_results`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_h5pactivity_attempts_results` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `attemptid` bigint(10) NOT NULL, - `subcontent` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `interactiontype` varchar(128) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `correctpattern` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `response` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `additionals` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `rawscore` bigint(10) NOT NULL DEFAULT 0, - `maxscore` bigint(10) NOT NULL DEFAULT 0, - `duration` bigint(10) DEFAULT 0, - `completion` tinyint(1) DEFAULT NULL, - `success` tinyint(1) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_h5paatteresu_atttim_ix` (`attemptid`,`timecreated`), - KEY `mdl_h5paatteresu_att_ix` (`attemptid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='H5Pactivities_attempts tracking info'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_h5pactivity_attempts_results` --- - -LOCK TABLES `mdl_h5pactivity_attempts_results` WRITE; -/*!40000 ALTER TABLE `mdl_h5pactivity_attempts_results` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_h5pactivity_attempts_results` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_imscp` --- - -DROP TABLE IF EXISTS `mdl_imscp`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_imscp` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `introformat` smallint(4) NOT NULL DEFAULT 0, - `revision` bigint(10) NOT NULL DEFAULT 0, - `keepold` bigint(10) NOT NULL DEFAULT -1, - `structure` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_imsc_cou_ix` (`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='each record is one imscp resource'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_imscp` --- - -LOCK TABLES `mdl_imscp` WRITE; -/*!40000 ALTER TABLE `mdl_imscp` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_imscp` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_infected_files` --- - -DROP TABLE IF EXISTS `mdl_infected_files`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_infected_files` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `filename` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `quarantinedfile` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `userid` bigint(10) NOT NULL, - `reason` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_infefile_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Table to store infected file details.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_infected_files` --- - -LOCK TABLES `mdl_infected_files` WRITE; -/*!40000 ALTER TABLE `mdl_infected_files` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_infected_files` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_label` --- - -DROP TABLE IF EXISTS `mdl_label`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_label` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `introformat` smallint(4) DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_labe_cou_ix` (`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines labels'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_label` --- - -LOCK TABLES `mdl_label` WRITE; -/*!40000 ALTER TABLE `mdl_label` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_label` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_lesson` --- - -DROP TABLE IF EXISTS `mdl_lesson`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_lesson` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `introformat` smallint(4) NOT NULL DEFAULT 0, - `practice` smallint(3) NOT NULL DEFAULT 0, - `modattempts` smallint(3) NOT NULL DEFAULT 0, - `usepassword` smallint(3) NOT NULL DEFAULT 0, - `password` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `dependency` bigint(10) NOT NULL DEFAULT 0, - `conditions` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `grade` bigint(10) NOT NULL DEFAULT 0, - `custom` smallint(3) NOT NULL DEFAULT 0, - `ongoing` smallint(3) NOT NULL DEFAULT 0, - `usemaxgrade` smallint(3) NOT NULL DEFAULT 0, - `maxanswers` smallint(3) NOT NULL DEFAULT 4, - `maxattempts` smallint(3) NOT NULL DEFAULT 5, - `review` smallint(3) NOT NULL DEFAULT 0, - `nextpagedefault` smallint(3) NOT NULL DEFAULT 0, - `feedback` smallint(3) NOT NULL DEFAULT 1, - `minquestions` smallint(3) NOT NULL DEFAULT 0, - `maxpages` smallint(3) NOT NULL DEFAULT 0, - `timelimit` bigint(10) NOT NULL DEFAULT 0, - `retake` smallint(3) NOT NULL DEFAULT 1, - `activitylink` bigint(10) NOT NULL DEFAULT 0, - `mediafile` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `mediaheight` bigint(10) NOT NULL DEFAULT 100, - `mediawidth` bigint(10) NOT NULL DEFAULT 650, - `mediaclose` smallint(3) NOT NULL DEFAULT 0, - `slideshow` smallint(3) NOT NULL DEFAULT 0, - `width` bigint(10) NOT NULL DEFAULT 640, - `height` bigint(10) NOT NULL DEFAULT 480, - `bgcolor` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '#FFFFFF', - `displayleft` smallint(3) NOT NULL DEFAULT 0, - `displayleftif` smallint(3) NOT NULL DEFAULT 0, - `progressbar` smallint(3) NOT NULL DEFAULT 0, - `available` bigint(10) NOT NULL DEFAULT 0, - `deadline` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `completionendreached` tinyint(1) DEFAULT 0, - `completiontimespent` bigint(11) DEFAULT 0, - `allowofflineattempts` tinyint(1) DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_less_cou_ix` (`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines lesson'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_lesson` --- - -LOCK TABLES `mdl_lesson` WRITE; -/*!40000 ALTER TABLE `mdl_lesson` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_lesson` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_lesson_answers` --- - -DROP TABLE IF EXISTS `mdl_lesson_answers`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_lesson_answers` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `lessonid` bigint(10) NOT NULL DEFAULT 0, - `pageid` bigint(10) NOT NULL DEFAULT 0, - `jumpto` bigint(11) NOT NULL DEFAULT 0, - `grade` smallint(4) NOT NULL DEFAULT 0, - `score` bigint(10) NOT NULL DEFAULT 0, - `flags` smallint(3) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `answer` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `answerformat` tinyint(2) NOT NULL DEFAULT 0, - `response` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `responseformat` tinyint(2) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_lessansw_les_ix` (`lessonid`), - KEY `mdl_lessansw_pag_ix` (`pageid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines lesson_answers'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_lesson_answers` --- - -LOCK TABLES `mdl_lesson_answers` WRITE; -/*!40000 ALTER TABLE `mdl_lesson_answers` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_lesson_answers` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_lesson_attempts` --- - -DROP TABLE IF EXISTS `mdl_lesson_attempts`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_lesson_attempts` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `lessonid` bigint(10) NOT NULL DEFAULT 0, - `pageid` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `answerid` bigint(10) NOT NULL DEFAULT 0, - `retry` smallint(3) NOT NULL DEFAULT 0, - `correct` bigint(10) NOT NULL DEFAULT 0, - `useranswer` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timeseen` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_lessatte_use_ix` (`userid`), - KEY `mdl_lessatte_les_ix` (`lessonid`), - KEY `mdl_lessatte_pag_ix` (`pageid`), - KEY `mdl_lessatte_ans_ix` (`answerid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines lesson_attempts'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_lesson_attempts` --- - -LOCK TABLES `mdl_lesson_attempts` WRITE; -/*!40000 ALTER TABLE `mdl_lesson_attempts` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_lesson_attempts` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_lesson_branch` --- - -DROP TABLE IF EXISTS `mdl_lesson_branch`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_lesson_branch` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `lessonid` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `pageid` bigint(10) NOT NULL DEFAULT 0, - `retry` bigint(10) NOT NULL DEFAULT 0, - `flag` smallint(3) NOT NULL DEFAULT 0, - `timeseen` bigint(10) NOT NULL DEFAULT 0, - `nextpageid` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_lessbran_use_ix` (`userid`), - KEY `mdl_lessbran_les_ix` (`lessonid`), - KEY `mdl_lessbran_pag_ix` (`pageid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='branches for each lesson/user'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_lesson_branch` --- - -LOCK TABLES `mdl_lesson_branch` WRITE; -/*!40000 ALTER TABLE `mdl_lesson_branch` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_lesson_branch` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_lesson_grades` --- - -DROP TABLE IF EXISTS `mdl_lesson_grades`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_lesson_grades` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `lessonid` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `grade` double NOT NULL DEFAULT 0, - `late` smallint(3) NOT NULL DEFAULT 0, - `completed` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_lessgrad_use_ix` (`userid`), - KEY `mdl_lessgrad_les_ix` (`lessonid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines lesson_grades'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_lesson_grades` --- - -LOCK TABLES `mdl_lesson_grades` WRITE; -/*!40000 ALTER TABLE `mdl_lesson_grades` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_lesson_grades` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_lesson_overrides` --- - -DROP TABLE IF EXISTS `mdl_lesson_overrides`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_lesson_overrides` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `lessonid` bigint(10) NOT NULL DEFAULT 0, - `groupid` bigint(10) DEFAULT NULL, - `userid` bigint(10) DEFAULT NULL, - `available` bigint(10) DEFAULT NULL, - `deadline` bigint(10) DEFAULT NULL, - `timelimit` bigint(10) DEFAULT NULL, - `review` smallint(3) DEFAULT NULL, - `maxattempts` smallint(3) DEFAULT NULL, - `retake` smallint(3) DEFAULT NULL, - `password` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_lessover_les_ix` (`lessonid`), - KEY `mdl_lessover_gro_ix` (`groupid`), - KEY `mdl_lessover_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The overrides to lesson settings.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_lesson_overrides` --- - -LOCK TABLES `mdl_lesson_overrides` WRITE; -/*!40000 ALTER TABLE `mdl_lesson_overrides` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_lesson_overrides` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_lesson_pages` --- - -DROP TABLE IF EXISTS `mdl_lesson_pages`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_lesson_pages` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `lessonid` bigint(10) NOT NULL DEFAULT 0, - `prevpageid` bigint(10) NOT NULL DEFAULT 0, - `nextpageid` bigint(10) NOT NULL DEFAULT 0, - `qtype` smallint(3) NOT NULL DEFAULT 0, - `qoption` smallint(3) NOT NULL DEFAULT 0, - `layout` smallint(3) NOT NULL DEFAULT 1, - `display` smallint(3) NOT NULL DEFAULT 1, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `contents` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `contentsformat` tinyint(2) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_lesspage_les_ix` (`lessonid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines lesson_pages'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_lesson_pages` --- - -LOCK TABLES `mdl_lesson_pages` WRITE; -/*!40000 ALTER TABLE `mdl_lesson_pages` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_lesson_pages` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_lesson_timer` --- - -DROP TABLE IF EXISTS `mdl_lesson_timer`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_lesson_timer` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `lessonid` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `starttime` bigint(10) NOT NULL DEFAULT 0, - `lessontime` bigint(10) NOT NULL DEFAULT 0, - `completed` tinyint(1) DEFAULT 0, - `timemodifiedoffline` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_lesstime_use_ix` (`userid`), - KEY `mdl_lesstime_les_ix` (`lessonid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='lesson timer for each lesson'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_lesson_timer` --- - -LOCK TABLES `mdl_lesson_timer` WRITE; -/*!40000 ALTER TABLE `mdl_lesson_timer` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_lesson_timer` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_license` --- - -DROP TABLE IF EXISTS `mdl_license`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_license` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `shortname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `fullname` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `source` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `enabled` tinyint(1) NOT NULL DEFAULT 1, - `version` bigint(10) NOT NULL DEFAULT 0, - `custom` tinyint(1) NOT NULL DEFAULT 0, - `sortorder` mediumint(5) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='store licenses used by moodle'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_license` --- - -LOCK TABLES `mdl_license` WRITE; -/*!40000 ALTER TABLE `mdl_license` DISABLE KEYS */; -INSERT INTO `mdl_license` VALUES (1,'unknown','Licence not specified','',1,2010033100,0,1),(2,'allrightsreserved','All rights reserved','https://en.wikipedia.org/wiki/All_rights_reserved',1,2010033100,0,2),(3,'public','Public domain','https://en.wikipedia.org/wiki/Public_domain',1,2010033100,0,3),(4,'cc','Creative Commons','https://creativecommons.org/licenses/by/3.0/',1,2010033100,0,4),(5,'cc-nd','Creative Commons - NoDerivs','https://creativecommons.org/licenses/by-nd/3.0/',1,2010033100,0,5),(6,'cc-nc-nd','Creative Commons - No Commercial NoDerivs','https://creativecommons.org/licenses/by-nc-nd/3.0/',1,2010033100,0,6),(7,'cc-nc','Creative Commons - No Commercial','https://creativecommons.org/licenses/by-nc/3.0/',1,2010033100,0,7),(8,'cc-nc-sa','Creative Commons - No Commercial ShareAlike','https://creativecommons.org/licenses/by-nc-sa/3.0/',1,2010033100,0,8),(9,'cc-sa','Creative Commons - ShareAlike','https://creativecommons.org/licenses/by-sa/3.0/',1,2010033100,0,9); -/*!40000 ALTER TABLE `mdl_license` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_lock_db` --- - -DROP TABLE IF EXISTS `mdl_lock_db`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_lock_db` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `resourcekey` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `expires` bigint(10) DEFAULT NULL, - `owner` varchar(36) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_lockdb_res_uix` (`resourcekey`), - KEY `mdl_lockdb_exp_ix` (`expires`), - KEY `mdl_lockdb_own_ix` (`owner`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores active and inactive lock types for db locking method.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_lock_db` --- - -LOCK TABLES `mdl_lock_db` WRITE; -/*!40000 ALTER TABLE `mdl_lock_db` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_lock_db` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_log` --- - -DROP TABLE IF EXISTS `mdl_log`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_log` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `time` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `ip` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `course` bigint(10) NOT NULL DEFAULT 0, - `module` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `cmid` bigint(10) NOT NULL DEFAULT 0, - `action` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `info` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `mdl_log_coumodact_ix` (`course`,`module`,`action`), - KEY `mdl_log_tim_ix` (`time`), - KEY `mdl_log_act_ix` (`action`), - KEY `mdl_log_usecou_ix` (`userid`,`course`), - KEY `mdl_log_cmi_ix` (`cmid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Every action is logged as far as possible'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_log` --- - -LOCK TABLES `mdl_log` WRITE; -/*!40000 ALTER TABLE `mdl_log` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_log` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_log_display` --- - -DROP TABLE IF EXISTS `mdl_log_display`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_log_display` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `module` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `action` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `mtable` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `field` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_logdisp_modact_uix` (`module`,`action`) -) ENGINE=InnoDB AUTO_INCREMENT=194 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='For a particular module/action, specifies a moodle table/fie'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_log_display` --- - -LOCK TABLES `mdl_log_display` WRITE; -/*!40000 ALTER TABLE `mdl_log_display` DISABLE KEYS */; -INSERT INTO `mdl_log_display` VALUES (1,'course','user report','user','CONCAT(firstname, \' \', lastname)','moodle'),(2,'course','view','course','fullname','moodle'),(3,'course','view section','course_sections','name','moodle'),(4,'course','update','course','fullname','moodle'),(5,'course','hide','course','fullname','moodle'),(6,'course','show','course','fullname','moodle'),(7,'course','move','course','fullname','moodle'),(8,'course','enrol','course','fullname','moodle'),(9,'course','unenrol','course','fullname','moodle'),(10,'course','report log','course','fullname','moodle'),(11,'course','report live','course','fullname','moodle'),(12,'course','report outline','course','fullname','moodle'),(13,'course','report participation','course','fullname','moodle'),(14,'course','report stats','course','fullname','moodle'),(15,'category','add','course_categories','name','moodle'),(16,'category','hide','course_categories','name','moodle'),(17,'category','move','course_categories','name','moodle'),(18,'category','show','course_categories','name','moodle'),(19,'category','update','course_categories','name','moodle'),(20,'message','write','user','CONCAT(firstname, \' \', lastname)','moodle'),(21,'message','read','user','CONCAT(firstname, \' \', lastname)','moodle'),(22,'message','add contact','user','CONCAT(firstname, \' \', lastname)','moodle'),(23,'message','remove contact','user','CONCAT(firstname, \' \', lastname)','moodle'),(24,'message','block contact','user','CONCAT(firstname, \' \', lastname)','moodle'),(25,'message','unblock contact','user','CONCAT(firstname, \' \', lastname)','moodle'),(26,'group','view','groups','name','moodle'),(27,'tag','update','tag','name','moodle'),(28,'tag','flag','tag','name','moodle'),(29,'user','view','user','CONCAT(firstname, \' \', lastname)','moodle'),(30,'assign','add','assign','name','mod_assign'),(31,'assign','delete mod','assign','name','mod_assign'),(32,'assign','download all submissions','assign','name','mod_assign'),(33,'assign','grade submission','assign','name','mod_assign'),(34,'assign','lock submission','assign','name','mod_assign'),(35,'assign','reveal identities','assign','name','mod_assign'),(36,'assign','revert submission to draft','assign','name','mod_assign'),(37,'assign','set marking workflow state','assign','name','mod_assign'),(38,'assign','submission statement accepted','assign','name','mod_assign'),(39,'assign','submit','assign','name','mod_assign'),(40,'assign','submit for grading','assign','name','mod_assign'),(41,'assign','unlock submission','assign','name','mod_assign'),(42,'assign','update','assign','name','mod_assign'),(43,'assign','upload','assign','name','mod_assign'),(44,'assign','view','assign','name','mod_assign'),(45,'assign','view all','course','fullname','mod_assign'),(46,'assign','view confirm submit assignment form','assign','name','mod_assign'),(47,'assign','view grading form','assign','name','mod_assign'),(48,'assign','view submission','assign','name','mod_assign'),(49,'assign','view submission grading table','assign','name','mod_assign'),(50,'assign','view submit assignment form','assign','name','mod_assign'),(51,'assign','view feedback','assign','name','mod_assign'),(52,'assign','view batch set marking workflow state','assign','name','mod_assign'),(53,'assignment','view','assignment','name','mod_assignment'),(54,'assignment','add','assignment','name','mod_assignment'),(55,'assignment','update','assignment','name','mod_assignment'),(56,'assignment','view submission','assignment','name','mod_assignment'),(57,'assignment','upload','assignment','name','mod_assignment'),(58,'book','add','book','name','mod_book'),(59,'book','update','book','name','mod_book'),(60,'book','view','book','name','mod_book'),(61,'book','add chapter','book_chapters','title','mod_book'),(62,'book','update chapter','book_chapters','title','mod_book'),(63,'book','view chapter','book_chapters','title','mod_book'),(64,'chat','view','chat','name','mod_chat'),(65,'chat','add','chat','name','mod_chat'),(66,'chat','update','chat','name','mod_chat'),(67,'chat','report','chat','name','mod_chat'),(68,'chat','talk','chat','name','mod_chat'),(69,'choice','view','choice','name','mod_choice'),(70,'choice','update','choice','name','mod_choice'),(71,'choice','add','choice','name','mod_choice'),(72,'choice','report','choice','name','mod_choice'),(73,'choice','choose','choice','name','mod_choice'),(74,'choice','choose again','choice','name','mod_choice'),(75,'data','view','data','name','mod_data'),(76,'data','add','data','name','mod_data'),(77,'data','update','data','name','mod_data'),(78,'data','record delete','data','name','mod_data'),(79,'data','fields add','data_fields','name','mod_data'),(80,'data','fields update','data_fields','name','mod_data'),(81,'data','templates saved','data','name','mod_data'),(82,'data','templates def','data','name','mod_data'),(83,'feedback','startcomplete','feedback','name','mod_feedback'),(84,'feedback','submit','feedback','name','mod_feedback'),(85,'feedback','delete','feedback','name','mod_feedback'),(86,'feedback','view','feedback','name','mod_feedback'),(87,'feedback','view all','course','shortname','mod_feedback'),(88,'folder','view','folder','name','mod_folder'),(89,'folder','view all','folder','name','mod_folder'),(90,'folder','update','folder','name','mod_folder'),(91,'folder','add','folder','name','mod_folder'),(92,'forum','add','forum','name','mod_forum'),(93,'forum','update','forum','name','mod_forum'),(94,'forum','add discussion','forum_discussions','name','mod_forum'),(95,'forum','add post','forum_posts','subject','mod_forum'),(96,'forum','update post','forum_posts','subject','mod_forum'),(97,'forum','user report','user','CONCAT(firstname, \' \', lastname)','mod_forum'),(98,'forum','move discussion','forum_discussions','name','mod_forum'),(99,'forum','view subscribers','forum','name','mod_forum'),(100,'forum','view discussion','forum_discussions','name','mod_forum'),(101,'forum','view forum','forum','name','mod_forum'),(102,'forum','subscribe','forum','name','mod_forum'),(103,'forum','unsubscribe','forum','name','mod_forum'),(104,'forum','pin discussion','forum_discussions','name','mod_forum'),(105,'forum','unpin discussion','forum_discussions','name','mod_forum'),(106,'glossary','add','glossary','name','mod_glossary'),(107,'glossary','update','glossary','name','mod_glossary'),(108,'glossary','view','glossary','name','mod_glossary'),(109,'glossary','view all','glossary','name','mod_glossary'),(110,'glossary','add entry','glossary','name','mod_glossary'),(111,'glossary','update entry','glossary','name','mod_glossary'),(112,'glossary','add category','glossary','name','mod_glossary'),(113,'glossary','update category','glossary','name','mod_glossary'),(114,'glossary','delete category','glossary','name','mod_glossary'),(115,'glossary','approve entry','glossary','name','mod_glossary'),(116,'glossary','disapprove entry','glossary','name','mod_glossary'),(117,'glossary','view entry','glossary_entries','concept','mod_glossary'),(118,'imscp','view','imscp','name','mod_imscp'),(119,'imscp','view all','imscp','name','mod_imscp'),(120,'imscp','update','imscp','name','mod_imscp'),(121,'imscp','add','imscp','name','mod_imscp'),(122,'label','add','label','name','mod_label'),(123,'label','update','label','name','mod_label'),(124,'lesson','start','lesson','name','mod_lesson'),(125,'lesson','end','lesson','name','mod_lesson'),(126,'lesson','view','lesson_pages','title','mod_lesson'),(127,'lti','view','lti','name','mod_lti'),(128,'lti','launch','lti','name','mod_lti'),(129,'lti','view all','lti','name','mod_lti'),(130,'page','view','page','name','mod_page'),(131,'page','view all','page','name','mod_page'),(132,'page','update','page','name','mod_page'),(133,'page','add','page','name','mod_page'),(134,'quiz','add','quiz','name','mod_quiz'),(135,'quiz','update','quiz','name','mod_quiz'),(136,'quiz','view','quiz','name','mod_quiz'),(137,'quiz','report','quiz','name','mod_quiz'),(138,'quiz','attempt','quiz','name','mod_quiz'),(139,'quiz','submit','quiz','name','mod_quiz'),(140,'quiz','review','quiz','name','mod_quiz'),(141,'quiz','editquestions','quiz','name','mod_quiz'),(142,'quiz','preview','quiz','name','mod_quiz'),(143,'quiz','start attempt','quiz','name','mod_quiz'),(144,'quiz','close attempt','quiz','name','mod_quiz'),(145,'quiz','continue attempt','quiz','name','mod_quiz'),(146,'quiz','edit override','quiz','name','mod_quiz'),(147,'quiz','delete override','quiz','name','mod_quiz'),(148,'quiz','view summary','quiz','name','mod_quiz'),(149,'resource','view','resource','name','mod_resource'),(150,'resource','view all','resource','name','mod_resource'),(151,'resource','update','resource','name','mod_resource'),(152,'resource','add','resource','name','mod_resource'),(153,'scorm','view','scorm','name','mod_scorm'),(154,'scorm','review','scorm','name','mod_scorm'),(155,'scorm','update','scorm','name','mod_scorm'),(156,'scorm','add','scorm','name','mod_scorm'),(157,'survey','add','survey','name','mod_survey'),(158,'survey','update','survey','name','mod_survey'),(159,'survey','download','survey','name','mod_survey'),(160,'survey','view form','survey','name','mod_survey'),(161,'survey','view graph','survey','name','mod_survey'),(162,'survey','view report','survey','name','mod_survey'),(163,'survey','submit','survey','name','mod_survey'),(164,'url','view','url','name','mod_url'),(165,'url','view all','url','name','mod_url'),(166,'url','update','url','name','mod_url'),(167,'url','add','url','name','mod_url'),(168,'workshop','add','workshop','name','mod_workshop'),(169,'workshop','update','workshop','name','mod_workshop'),(170,'workshop','view','workshop','name','mod_workshop'),(171,'workshop','view all','workshop','name','mod_workshop'),(172,'workshop','add submission','workshop_submissions','title','mod_workshop'),(173,'workshop','update submission','workshop_submissions','title','mod_workshop'),(174,'workshop','view submission','workshop_submissions','title','mod_workshop'),(175,'workshop','add assessment','workshop_submissions','title','mod_workshop'),(176,'workshop','update assessment','workshop_submissions','title','mod_workshop'),(177,'workshop','add example','workshop_submissions','title','mod_workshop'),(178,'workshop','update example','workshop_submissions','title','mod_workshop'),(179,'workshop','view example','workshop_submissions','title','mod_workshop'),(180,'workshop','add reference assessment','workshop_submissions','title','mod_workshop'),(181,'workshop','update reference assessment','workshop_submissions','title','mod_workshop'),(182,'workshop','add example assessment','workshop_submissions','title','mod_workshop'),(183,'workshop','update example assessment','workshop_submissions','title','mod_workshop'),(184,'workshop','update aggregate grades','workshop','name','mod_workshop'),(185,'workshop','update clear aggregated grades','workshop','name','mod_workshop'),(186,'workshop','update clear assessments','workshop','name','mod_workshop'),(187,'book','exportimscp','book','name','booktool_exportimscp'),(188,'book','print','book','name','booktool_print'),(189,'book','print chapter','book_chapters','title','booktool_print'),(190,'customcert','view','customcert','name','mod_customcert'),(191,'customcert','add','customcert','name','mod_customcert'),(192,'customcert','update','customcert','name','mod_customcert'),(193,'customcert','received','customcert','name','mod_customcert'); -/*!40000 ALTER TABLE `mdl_log_display` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_log_queries` --- - -DROP TABLE IF EXISTS `mdl_log_queries`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_log_queries` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `qtype` mediumint(5) NOT NULL, - `sqltext` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `sqlparams` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `error` mediumint(5) NOT NULL DEFAULT 0, - `info` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `backtrace` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `exectime` decimal(10,5) NOT NULL, - `timelogged` bigint(10) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Logged database queries.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_log_queries` --- - -LOCK TABLES `mdl_log_queries` WRITE; -/*!40000 ALTER TABLE `mdl_log_queries` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_log_queries` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_logstore_standard_log` --- - -DROP TABLE IF EXISTS `mdl_logstore_standard_log`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_logstore_standard_log` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `eventname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `action` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `target` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `objecttable` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `objectid` bigint(10) DEFAULT NULL, - `crud` varchar(1) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `edulevel` tinyint(1) NOT NULL, - `contextid` bigint(10) NOT NULL, - `contextlevel` bigint(10) NOT NULL, - `contextinstanceid` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `courseid` bigint(10) DEFAULT NULL, - `relateduserid` bigint(10) DEFAULT NULL, - `anonymous` tinyint(1) NOT NULL DEFAULT 0, - `other` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `origin` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `ip` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `realuserid` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_logsstanlog_tim_ix` (`timecreated`), - KEY `mdl_logsstanlog_couanotim_ix` (`courseid`,`anonymous`,`timecreated`), - KEY `mdl_logsstanlog_useconconcr_ix` (`userid`,`contextlevel`,`contextinstanceid`,`crud`,`edulevel`,`timecreated`), - KEY `mdl_logsstanlog_con_ix` (`contextid`) -) ENGINE=InnoDB AUTO_INCREMENT=1175 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Standard log table'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_logstore_standard_log` --- - -LOCK TABLES `mdl_logstore_standard_log` WRITE; -/*!40000 ALTER TABLE `mdl_logstore_standard_log` DISABLE KEYS */; -INSERT INTO `mdl_logstore_standard_log` VALUES (1,'\\core\\event\\user_loggedin','core','loggedin','user','user',2,'r',0,1,10,0,2,0,NULL,0,'a:1:{s:8:\"username\";s:5:\"admin\";}',1619623752,'web','65.129.132.97',NULL),(2,'\\core\\event\\user_password_updated','core','updated','user_password',NULL,NULL,'u',0,5,30,2,2,0,2,0,'a:1:{s:14:\"forgottenreset\";b:0;}',1619623789,'web','65.129.132.97',NULL),(3,'\\core\\event\\user_updated','core','updated','user','user',2,'u',0,5,30,2,2,0,2,0,'N;',1619623789,'web','65.129.132.97',NULL),(4,'\\core\\event\\config_log_created','core','created','config_log','config_log',618,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"notloggedinroleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"6\";s:6:\"plugin\";N;}',1619623789,'web','65.129.132.97',NULL),(5,'\\core\\event\\config_log_created','core','created','config_log','config_log',619,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"guestroleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"6\";s:6:\"plugin\";N;}',1619623789,'web','65.129.132.97',NULL),(6,'\\core\\event\\config_log_created','core','created','config_log','config_log',620,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"defaultuserroleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"7\";s:6:\"plugin\";N;}',1619623789,'web','65.129.132.97',NULL),(7,'\\core\\event\\config_log_created','core','created','config_log','config_log',621,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"creatornewroleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";N;}',1619623789,'web','65.129.132.97',NULL),(8,'\\core\\event\\config_log_created','core','created','config_log','config_log',622,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"restorernewroleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";N;}',1619623789,'web','65.129.132.97',NULL),(9,'\\core\\event\\config_log_created','core','created','config_log','config_log',623,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"contactdataprotectionofficer\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:16:\"tool_dataprivacy\";}',1619623789,'web','65.129.132.97',NULL),(10,'\\core\\event\\config_log_created','core','created','config_log','config_log',624,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"automaticdataexportapproval\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:16:\"tool_dataprivacy\";}',1619623789,'web','65.129.132.97',NULL),(11,'\\core\\event\\config_log_created','core','created','config_log','config_log',625,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"automaticdatadeletionapproval\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:16:\"tool_dataprivacy\";}',1619623789,'web','65.129.132.97',NULL),(12,'\\core\\event\\config_log_created','core','created','config_log','config_log',626,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"automaticdeletionrequests\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"tool_dataprivacy\";}',1619623789,'web','65.129.132.97',NULL),(13,'\\core\\event\\config_log_created','core','created','config_log','config_log',627,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"privacyrequestexpiry\";s:8:\"oldvalue\";N;s:5:\"value\";s:6:\"604800\";s:6:\"plugin\";s:16:\"tool_dataprivacy\";}',1619623789,'web','65.129.132.97',NULL),(14,'\\core\\event\\config_log_created','core','created','config_log','config_log',628,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:33:\"requireallenddatesforuserdeletion\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"tool_dataprivacy\";}',1619623789,'web','65.129.132.97',NULL),(15,'\\core\\event\\config_log_created','core','created','config_log','config_log',629,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"showdataretentionsummary\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"tool_dataprivacy\";}',1619623789,'web','65.129.132.97',NULL),(16,'\\core\\event\\config_log_created','core','created','config_log','config_log',630,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"exportlog\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:8:\"tool_log\";}',1619623789,'web','65.129.132.97',NULL),(17,'\\core\\event\\config_log_created','core','created','config_log','config_log',631,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"sitepolicyhandler\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623789,'web','65.129.132.97',NULL),(18,'\\core\\event\\config_log_created','core','created','config_log','config_log',632,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"gradebookroles\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";N;}',1619623789,'web','65.129.132.97',NULL),(19,'\\core\\event\\config_log_created','core','created','config_log','config_log',633,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"logstore\";s:8:\"oldvalue\";N;s:5:\"value\";s:17:\"logstore_standard\";s:6:\"plugin\";s:9:\"analytics\";}',1619623789,'web','65.129.132.97',NULL),(20,'\\core\\event\\config_log_created','core','created','config_log','config_log',634,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"h5plibraryhandler\";s:8:\"oldvalue\";N;s:5:\"value\";s:11:\"h5plib_v124\";s:6:\"plugin\";N;}',1619623789,'web','65.129.132.97',NULL),(21,'\\core\\event\\config_log_created','core','created','config_log','config_log',635,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"jabberhost\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(22,'\\core\\event\\config_log_created','core','created','config_log','config_log',636,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"jabberserver\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(23,'\\core\\event\\config_log_created','core','created','config_log','config_log',637,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"jabberusername\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(24,'\\core\\event\\config_log_created','core','created','config_log','config_log',638,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"jabberpassword\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(25,'\\core\\event\\config_log_created','core','created','config_log','config_log',639,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"jabberport\";s:8:\"oldvalue\";N;s:5:\"value\";s:4:\"5222\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(26,'\\core\\event\\config_log_created','core','created','config_log','config_log',640,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"airnotifierurl\";s:8:\"oldvalue\";N;s:5:\"value\";s:27:\"https://messages.moodle.net\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(27,'\\core\\event\\config_log_created','core','created','config_log','config_log',641,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"airnotifierport\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"443\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(28,'\\core\\event\\config_log_created','core','created','config_log','config_log',642,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"airnotifiermobileappname\";s:8:\"oldvalue\";N;s:5:\"value\";s:23:\"com.moodle.moodlemobile\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(29,'\\core\\event\\config_log_created','core','created','config_log','config_log',643,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"airnotifierappname\";s:8:\"oldvalue\";N;s:5:\"value\";s:21:\"commoodlemoodlemobile\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(30,'\\core\\event\\config_log_created','core','created','config_log','config_log',644,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"airnotifieraccesskey\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(31,'\\core\\event\\config_log_created','core','created','config_log','config_log',645,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"feedback_plugin_for_gradebook\";s:8:\"oldvalue\";N;s:5:\"value\";s:23:\"assignfeedback_comments\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(32,'\\core\\event\\config_log_created','core','created','config_log','config_log',646,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"showrecentsubmissions\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(33,'\\core\\event\\config_log_created','core','created','config_log','config_log',647,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"submissionreceipts\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(34,'\\core\\event\\config_log_created','core','created','config_log','config_log',648,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"submissionstatement\";s:8:\"oldvalue\";N;s:5:\"value\";s:102:\"This submission is my own work, except where I have acknowledged the use of the works of other people.\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(35,'\\core\\event\\config_log_created','core','created','config_log','config_log',649,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:33:\"submissionstatementteamsubmission\";s:8:\"oldvalue\";N;s:5:\"value\";s:112:\"This submission is the work of my group, except where we have acknowledged the use of the works of other people.\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(36,'\\core\\event\\config_log_created','core','created','config_log','config_log',650,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:42:\"submissionstatementteamsubmissionallsubmit\";s:8:\"oldvalue\";N;s:5:\"value\";s:120:\"This submission is my own work as a group member, except where I have acknowledged the use of the works of other people.\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(37,'\\core\\event\\config_log_created','core','created','config_log','config_log',651,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"maxperpage\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"-1\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(38,'\\core\\event\\config_log_created','core','created','config_log','config_log',652,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"alwaysshowdescription\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(39,'\\core\\event\\config_log_created','core','created','config_log','config_log',653,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"alwaysshowdescription_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(40,'\\core\\event\\config_log_created','core','created','config_log','config_log',654,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"alwaysshowdescription_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(41,'\\core\\event\\config_log_created','core','created','config_log','config_log',655,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"allowsubmissionsfromdate\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(42,'\\core\\event\\config_log_created','core','created','config_log','config_log',656,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:32:\"allowsubmissionsfromdate_enabled\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(43,'\\core\\event\\config_log_created','core','created','config_log','config_log',657,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"allowsubmissionsfromdate_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(44,'\\core\\event\\config_log_created','core','created','config_log','config_log',658,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"duedate\";s:8:\"oldvalue\";N;s:5:\"value\";s:6:\"604800\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(45,'\\core\\event\\config_log_created','core','created','config_log','config_log',659,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"duedate_enabled\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(46,'\\core\\event\\config_log_created','core','created','config_log','config_log',660,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"duedate_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(47,'\\core\\event\\config_log_created','core','created','config_log','config_log',661,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"cutoffdate\";s:8:\"oldvalue\";N;s:5:\"value\";s:7:\"1209600\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(48,'\\core\\event\\config_log_created','core','created','config_log','config_log',662,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"cutoffdate_enabled\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(49,'\\core\\event\\config_log_created','core','created','config_log','config_log',663,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"cutoffdate_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(50,'\\core\\event\\config_log_created','core','created','config_log','config_log',664,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"gradingduedate\";s:8:\"oldvalue\";N;s:5:\"value\";s:7:\"1209600\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(51,'\\core\\event\\config_log_created','core','created','config_log','config_log',665,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"gradingduedate_enabled\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(52,'\\core\\event\\config_log_created','core','created','config_log','config_log',666,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"gradingduedate_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(53,'\\core\\event\\config_log_created','core','created','config_log','config_log',667,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"submissiondrafts\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(54,'\\core\\event\\config_log_created','core','created','config_log','config_log',668,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"submissiondrafts_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(55,'\\core\\event\\config_log_created','core','created','config_log','config_log',669,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"submissiondrafts_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(56,'\\core\\event\\config_log_created','core','created','config_log','config_log',670,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"requiresubmissionstatement\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(57,'\\core\\event\\config_log_created','core','created','config_log','config_log',671,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:30:\"requiresubmissionstatement_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(58,'\\core\\event\\config_log_created','core','created','config_log','config_log',672,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:33:\"requiresubmissionstatement_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(59,'\\core\\event\\config_log_created','core','created','config_log','config_log',673,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"attemptreopenmethod\";s:8:\"oldvalue\";N;s:5:\"value\";s:4:\"none\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(60,'\\core\\event\\config_log_created','core','created','config_log','config_log',674,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"attemptreopenmethod_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(61,'\\core\\event\\config_log_created','core','created','config_log','config_log',675,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"attemptreopenmethod_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(62,'\\core\\event\\config_log_created','core','created','config_log','config_log',676,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"maxattempts\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"-1\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(63,'\\core\\event\\config_log_created','core','created','config_log','config_log',677,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"maxattempts_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(64,'\\core\\event\\config_log_created','core','created','config_log','config_log',678,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"maxattempts_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(65,'\\core\\event\\config_log_created','core','created','config_log','config_log',679,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"teamsubmission\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(66,'\\core\\event\\config_log_created','core','created','config_log','config_log',680,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"teamsubmission_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(67,'\\core\\event\\config_log_created','core','created','config_log','config_log',681,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"teamsubmission_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(68,'\\core\\event\\config_log_created','core','created','config_log','config_log',682,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"preventsubmissionnotingroup\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(69,'\\core\\event\\config_log_created','core','created','config_log','config_log',683,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:31:\"preventsubmissionnotingroup_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(70,'\\core\\event\\config_log_created','core','created','config_log','config_log',684,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:34:\"preventsubmissionnotingroup_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(71,'\\core\\event\\config_log_created','core','created','config_log','config_log',685,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"requireallteammemberssubmit\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(72,'\\core\\event\\config_log_created','core','created','config_log','config_log',686,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:31:\"requireallteammemberssubmit_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(73,'\\core\\event\\config_log_created','core','created','config_log','config_log',687,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:34:\"requireallteammemberssubmit_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(74,'\\core\\event\\config_log_created','core','created','config_log','config_log',688,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"teamsubmissiongroupingid\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(75,'\\core\\event\\config_log_created','core','created','config_log','config_log',689,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"teamsubmissiongroupingid_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(76,'\\core\\event\\config_log_created','core','created','config_log','config_log',690,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"sendnotifications\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(77,'\\core\\event\\config_log_created','core','created','config_log','config_log',691,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"sendnotifications_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(78,'\\core\\event\\config_log_created','core','created','config_log','config_log',692,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"sendnotifications_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(79,'\\core\\event\\config_log_created','core','created','config_log','config_log',693,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"sendlatenotifications\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(80,'\\core\\event\\config_log_created','core','created','config_log','config_log',694,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"sendlatenotifications_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(81,'\\core\\event\\config_log_created','core','created','config_log','config_log',695,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"sendlatenotifications_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(82,'\\core\\event\\config_log_created','core','created','config_log','config_log',696,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"sendstudentnotifications\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(83,'\\core\\event\\config_log_created','core','created','config_log','config_log',697,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"sendstudentnotifications_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(84,'\\core\\event\\config_log_created','core','created','config_log','config_log',698,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:31:\"sendstudentnotifications_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(85,'\\core\\event\\config_log_created','core','created','config_log','config_log',699,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"blindmarking\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(86,'\\core\\event\\config_log_created','core','created','config_log','config_log',700,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"blindmarking_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(87,'\\core\\event\\config_log_created','core','created','config_log','config_log',701,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"blindmarking_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(88,'\\core\\event\\config_log_created','core','created','config_log','config_log',702,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"hidegrader\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(89,'\\core\\event\\config_log_created','core','created','config_log','config_log',703,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"hidegrader_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(90,'\\core\\event\\config_log_created','core','created','config_log','config_log',704,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"hidegrader_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(91,'\\core\\event\\config_log_created','core','created','config_log','config_log',705,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"markingworkflow\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(92,'\\core\\event\\config_log_created','core','created','config_log','config_log',706,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"markingworkflow_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(93,'\\core\\event\\config_log_created','core','created','config_log','config_log',707,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"markingworkflow_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(94,'\\core\\event\\config_log_created','core','created','config_log','config_log',708,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"markingallocation\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(95,'\\core\\event\\config_log_created','core','created','config_log','config_log',709,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"markingallocation_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(96,'\\core\\event\\config_log_created','core','created','config_log','config_log',710,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"markingallocation_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:6:\"assign\";}',1619623790,'web','65.129.132.97',NULL),(97,'\\core\\event\\config_log_created','core','created','config_log','config_log',711,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"default\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:21:\"assignsubmission_file\";}',1619623790,'web','65.129.132.97',NULL),(98,'\\core\\event\\config_log_created','core','created','config_log','config_log',712,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"maxfiles\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"20\";s:6:\"plugin\";s:21:\"assignsubmission_file\";}',1619623790,'web','65.129.132.97',NULL),(99,'\\core\\event\\config_log_created','core','created','config_log','config_log',713,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"filetypes\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:21:\"assignsubmission_file\";}',1619623790,'web','65.129.132.97',NULL),(100,'\\core\\event\\config_log_created','core','created','config_log','config_log',714,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"maxbytes\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:21:\"assignsubmission_file\";}',1619623790,'web','65.129.132.97',NULL),(101,'\\core\\event\\config_log_created','core','created','config_log','config_log',715,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"default\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:27:\"assignsubmission_onlinetext\";}',1619623790,'web','65.129.132.97',NULL),(102,'\\core\\event\\config_log_created','core','created','config_log','config_log',716,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"default\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:23:\"assignfeedback_comments\";}',1619623790,'web','65.129.132.97',NULL),(103,'\\core\\event\\config_log_created','core','created','config_log','config_log',717,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"inline\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:23:\"assignfeedback_comments\";}',1619623790,'web','65.129.132.97',NULL),(104,'\\core\\event\\config_log_created','core','created','config_log','config_log',718,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"inline_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:23:\"assignfeedback_comments\";}',1619623790,'web','65.129.132.97',NULL),(105,'\\core\\event\\config_log_created','core','created','config_log','config_log',719,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"inline_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:23:\"assignfeedback_comments\";}',1619623790,'web','65.129.132.97',NULL),(106,'\\core\\event\\config_log_created','core','created','config_log','config_log',720,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"default\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:22:\"assignfeedback_editpdf\";}',1619623790,'web','65.129.132.97',NULL),(107,'\\core\\event\\config_log_created','core','created','config_log','config_log',721,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"stamps\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:22:\"assignfeedback_editpdf\";}',1619623790,'web','65.129.132.97',NULL),(108,'\\core\\event\\config_log_created','core','created','config_log','config_log',722,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"default\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"assignfeedback_file\";}',1619623790,'web','65.129.132.97',NULL),(109,'\\core\\event\\config_log_created','core','created','config_log','config_log',723,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"default\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:22:\"assignfeedback_offline\";}',1619623790,'web','65.129.132.97',NULL),(110,'\\core\\event\\config_log_created','core','created','config_log','config_log',724,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"numberingoptions\";s:8:\"oldvalue\";N;s:5:\"value\";s:7:\"0,1,2,3\";s:6:\"plugin\";s:4:\"book\";}',1619623790,'web','65.129.132.97',NULL),(111,'\\core\\event\\config_log_created','core','created','config_log','config_log',725,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"navoptions\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"0,1,2\";s:6:\"plugin\";s:4:\"book\";}',1619623790,'web','65.129.132.97',NULL),(112,'\\core\\event\\config_log_created','core','created','config_log','config_log',726,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"numbering\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"book\";}',1619623790,'web','65.129.132.97',NULL),(113,'\\core\\event\\config_log_created','core','created','config_log','config_log',727,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"navstyle\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"book\";}',1619623790,'web','65.129.132.97',NULL),(114,'\\core\\event\\config_log_created','core','created','config_log','config_log',728,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"chat_method\";s:8:\"oldvalue\";N;s:5:\"value\";s:4:\"ajax\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(115,'\\core\\event\\config_log_created','core','created','config_log','config_log',729,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"chat_refresh_userlist\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"10\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(116,'\\core\\event\\config_log_created','core','created','config_log','config_log',730,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"chat_old_ping\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"35\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(117,'\\core\\event\\config_log_created','core','created','config_log','config_log',731,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"chat_refresh_room\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(118,'\\core\\event\\config_log_created','core','created','config_log','config_log',732,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"chat_normal_updatemode\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"jsupdate\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(119,'\\core\\event\\config_log_created','core','created','config_log','config_log',733,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"chat_serverhost\";s:8:\"oldvalue\";N;s:5:\"value\";s:34:\"learn.dev-defaults.derekmaxson.com\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(120,'\\core\\event\\config_log_created','core','created','config_log','config_log',734,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"chat_serverip\";s:8:\"oldvalue\";N;s:5:\"value\";s:9:\"127.0.0.1\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(121,'\\core\\event\\config_log_created','core','created','config_log','config_log',735,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"chat_serverport\";s:8:\"oldvalue\";N;s:5:\"value\";s:4:\"9111\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(122,'\\core\\event\\config_log_created','core','created','config_log','config_log',736,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"chat_servermax\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"100\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(123,'\\core\\event\\config_log_created','core','created','config_log','config_log',737,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"data_enablerssfeeds\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(124,'\\core\\event\\config_log_created','core','created','config_log','config_log',738,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"feedback_allowfullanonymous\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(125,'\\core\\event\\config_log_created','core','created','config_log','config_log',739,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"framesize\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"130\";s:6:\"plugin\";s:8:\"resource\";}',1619623790,'web','65.129.132.97',NULL),(126,'\\core\\event\\config_log_created','core','created','config_log','config_log',740,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"displayoptions\";s:8:\"oldvalue\";N;s:5:\"value\";s:9:\"0,1,4,5,6\";s:6:\"plugin\";s:8:\"resource\";}',1619623790,'web','65.129.132.97',NULL),(127,'\\core\\event\\config_log_created','core','created','config_log','config_log',741,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"printintro\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:8:\"resource\";}',1619623790,'web','65.129.132.97',NULL),(128,'\\core\\event\\config_log_created','core','created','config_log','config_log',742,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"display\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"resource\";}',1619623790,'web','65.129.132.97',NULL),(129,'\\core\\event\\config_log_created','core','created','config_log','config_log',743,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"showsize\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"resource\";}',1619623790,'web','65.129.132.97',NULL),(130,'\\core\\event\\config_log_created','core','created','config_log','config_log',744,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"showtype\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"resource\";}',1619623790,'web','65.129.132.97',NULL),(131,'\\core\\event\\config_log_created','core','created','config_log','config_log',745,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"showdate\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"resource\";}',1619623790,'web','65.129.132.97',NULL),(132,'\\core\\event\\config_log_created','core','created','config_log','config_log',746,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"popupwidth\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"620\";s:6:\"plugin\";s:8:\"resource\";}',1619623790,'web','65.129.132.97',NULL),(133,'\\core\\event\\config_log_created','core','created','config_log','config_log',747,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"popupheight\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"450\";s:6:\"plugin\";s:8:\"resource\";}',1619623790,'web','65.129.132.97',NULL),(134,'\\core\\event\\config_log_created','core','created','config_log','config_log',748,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"filterfiles\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"resource\";}',1619623790,'web','65.129.132.97',NULL),(135,'\\core\\event\\config_log_created','core','created','config_log','config_log',749,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"showexpanded\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:6:\"folder\";}',1619623790,'web','65.129.132.97',NULL),(136,'\\core\\event\\config_log_created','core','created','config_log','config_log',750,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"maxsizetodownload\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:6:\"folder\";}',1619623790,'web','65.129.132.97',NULL),(137,'\\core\\event\\config_log_created','core','created','config_log','config_log',751,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"forum_displaymode\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(138,'\\core\\event\\config_log_created','core','created','config_log','config_log',752,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"forum_shortpost\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"300\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(139,'\\core\\event\\config_log_created','core','created','config_log','config_log',753,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"forum_longpost\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"600\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(140,'\\core\\event\\config_log_created','core','created','config_log','config_log',754,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"forum_manydiscussions\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"100\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(141,'\\core\\event\\config_log_created','core','created','config_log','config_log',755,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"forum_maxbytes\";s:8:\"oldvalue\";N;s:5:\"value\";s:6:\"512000\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(142,'\\core\\event\\config_log_created','core','created','config_log','config_log',756,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"forum_maxattachments\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"9\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(143,'\\core\\event\\config_log_created','core','created','config_log','config_log',757,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"forum_subscription\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(144,'\\core\\event\\config_log_created','core','created','config_log','config_log',758,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"forum_trackingtype\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(145,'\\core\\event\\config_log_created','core','created','config_log','config_log',759,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"forum_trackreadposts\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(146,'\\core\\event\\config_log_created','core','created','config_log','config_log',760,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"forum_allowforcedreadtracking\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(147,'\\core\\event\\config_log_created','core','created','config_log','config_log',761,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"forum_oldpostdays\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"14\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(148,'\\core\\event\\config_log_created','core','created','config_log','config_log',762,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"forum_usermarksread\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(149,'\\core\\event\\config_log_created','core','created','config_log','config_log',763,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"forum_cleanreadtime\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"2\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(150,'\\core\\event\\config_log_created','core','created','config_log','config_log',764,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"digestmailtime\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"17\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(151,'\\core\\event\\config_log_created','core','created','config_log','config_log',765,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"forum_enablerssfeeds\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(152,'\\core\\event\\config_log_created','core','created','config_log','config_log',766,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"forum_enabletimedposts\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(153,'\\core\\event\\config_log_created','core','created','config_log','config_log',767,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"glossary_entbypage\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"10\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(154,'\\core\\event\\config_log_created','core','created','config_log','config_log',768,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"glossary_dupentries\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(155,'\\core\\event\\config_log_created','core','created','config_log','config_log',769,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"glossary_allowcomments\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(156,'\\core\\event\\config_log_created','core','created','config_log','config_log',770,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"glossary_linkbydefault\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(157,'\\core\\event\\config_log_created','core','created','config_log','config_log',771,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"glossary_defaultapproval\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(158,'\\core\\event\\config_log_created','core','created','config_log','config_log',772,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"glossary_enablerssfeeds\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(159,'\\core\\event\\config_log_created','core','created','config_log','config_log',773,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"glossary_linkentries\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(160,'\\core\\event\\config_log_created','core','created','config_log','config_log',774,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"glossary_casesensitive\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(161,'\\core\\event\\config_log_created','core','created','config_log','config_log',775,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"glossary_fullmatch\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623790,'web','65.129.132.97',NULL),(162,'\\core\\event\\config_log_created','core','created','config_log','config_log',776,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"keepold\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"imscp\";}',1619623790,'web','65.129.132.97',NULL),(163,'\\core\\event\\config_log_created','core','created','config_log','config_log',777,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"keepold_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:5:\"imscp\";}',1619623790,'web','65.129.132.97',NULL),(164,'\\core\\event\\config_log_created','core','created','config_log','config_log',778,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"dndmedia\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"label\";}',1619623790,'web','65.129.132.97',NULL),(165,'\\core\\event\\config_log_created','core','created','config_log','config_log',779,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"dndresizewidth\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"400\";s:6:\"plugin\";s:5:\"label\";}',1619623790,'web','65.129.132.97',NULL),(166,'\\core\\event\\config_log_created','core','created','config_log','config_log',780,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"dndresizeheight\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"400\";s:6:\"plugin\";s:5:\"label\";}',1619623790,'web','65.129.132.97',NULL),(167,'\\core\\event\\config_log_created','core','created','config_log','config_log',781,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"mediafile\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(168,'\\core\\event\\config_log_created','core','created','config_log','config_log',782,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"mediafile_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(169,'\\core\\event\\config_log_created','core','created','config_log','config_log',783,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"mediawidth\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"640\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(170,'\\core\\event\\config_log_created','core','created','config_log','config_log',784,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"mediaheight\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"480\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(171,'\\core\\event\\config_log_created','core','created','config_log','config_log',785,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"mediaclose\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(172,'\\core\\event\\config_log_created','core','created','config_log','config_log',786,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"progressbar\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(173,'\\core\\event\\config_log_created','core','created','config_log','config_log',787,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"progressbar_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(174,'\\core\\event\\config_log_created','core','created','config_log','config_log',788,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"ongoing\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(175,'\\core\\event\\config_log_created','core','created','config_log','config_log',789,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"ongoing_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(176,'\\core\\event\\config_log_created','core','created','config_log','config_log',790,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"displayleftmenu\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(177,'\\core\\event\\config_log_created','core','created','config_log','config_log',791,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"displayleftmenu_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(178,'\\core\\event\\config_log_created','core','created','config_log','config_log',792,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"displayleftif\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(179,'\\core\\event\\config_log_created','core','created','config_log','config_log',793,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"displayleftif_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(180,'\\core\\event\\config_log_created','core','created','config_log','config_log',794,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"slideshow\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(181,'\\core\\event\\config_log_created','core','created','config_log','config_log',795,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"slideshow_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(182,'\\core\\event\\config_log_created','core','created','config_log','config_log',796,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"slideshowwidth\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"640\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(183,'\\core\\event\\config_log_created','core','created','config_log','config_log',797,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"slideshowheight\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"480\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(184,'\\core\\event\\config_log_created','core','created','config_log','config_log',798,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"slideshowbgcolor\";s:8:\"oldvalue\";N;s:5:\"value\";s:7:\"#FFFFFF\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(185,'\\core\\event\\config_log_created','core','created','config_log','config_log',799,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"maxanswers\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(186,'\\core\\event\\config_log_created','core','created','config_log','config_log',800,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"maxanswers_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(187,'\\core\\event\\config_log_created','core','created','config_log','config_log',801,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"defaultfeedback\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(188,'\\core\\event\\config_log_created','core','created','config_log','config_log',802,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"defaultfeedback_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(189,'\\core\\event\\config_log_created','core','created','config_log','config_log',803,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"activitylink\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(190,'\\core\\event\\config_log_created','core','created','config_log','config_log',804,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"activitylink_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(191,'\\core\\event\\config_log_created','core','created','config_log','config_log',805,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"timelimit\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(192,'\\core\\event\\config_log_created','core','created','config_log','config_log',806,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"timelimit_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(193,'\\core\\event\\config_log_created','core','created','config_log','config_log',807,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"password\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(194,'\\core\\event\\config_log_created','core','created','config_log','config_log',808,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"password_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(195,'\\core\\event\\config_log_created','core','created','config_log','config_log',809,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"modattempts\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(196,'\\core\\event\\config_log_created','core','created','config_log','config_log',810,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"modattempts_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(197,'\\core\\event\\config_log_created','core','created','config_log','config_log',811,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"displayreview\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(198,'\\core\\event\\config_log_created','core','created','config_log','config_log',812,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"displayreview_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(199,'\\core\\event\\config_log_created','core','created','config_log','config_log',813,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"maximumnumberofattempts\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(200,'\\core\\event\\config_log_created','core','created','config_log','config_log',814,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"maximumnumberofattempts_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(201,'\\core\\event\\config_log_created','core','created','config_log','config_log',815,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"defaultnextpage\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(202,'\\core\\event\\config_log_created','core','created','config_log','config_log',816,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"defaultnextpage_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(203,'\\core\\event\\config_log_created','core','created','config_log','config_log',817,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"numberofpagestoshow\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(204,'\\core\\event\\config_log_created','core','created','config_log','config_log',818,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"numberofpagestoshow_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(205,'\\core\\event\\config_log_created','core','created','config_log','config_log',819,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"practice\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(206,'\\core\\event\\config_log_created','core','created','config_log','config_log',820,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"practice_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(207,'\\core\\event\\config_log_created','core','created','config_log','config_log',821,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"customscoring\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(208,'\\core\\event\\config_log_created','core','created','config_log','config_log',822,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"customscoring_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(209,'\\core\\event\\config_log_created','core','created','config_log','config_log',823,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"retakesallowed\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(210,'\\core\\event\\config_log_created','core','created','config_log','config_log',824,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"retakesallowed_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(211,'\\core\\event\\config_log_created','core','created','config_log','config_log',825,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"handlingofretakes\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(212,'\\core\\event\\config_log_created','core','created','config_log','config_log',826,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"handlingofretakes_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(213,'\\core\\event\\config_log_created','core','created','config_log','config_log',827,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"minimumnumberofquestions\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(214,'\\core\\event\\config_log_created','core','created','config_log','config_log',828,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"minimumnumberofquestions_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"mod_lesson\";}',1619623790,'web','65.129.132.97',NULL),(215,'\\core\\event\\config_log_created','core','created','config_log','config_log',829,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"displayoptions\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:4:\"page\";}',1619623790,'web','65.129.132.97',NULL),(216,'\\core\\event\\config_log_created','core','created','config_log','config_log',830,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"printheading\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"page\";}',1619623790,'web','65.129.132.97',NULL),(217,'\\core\\event\\config_log_created','core','created','config_log','config_log',831,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"printintro\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:4:\"page\";}',1619623790,'web','65.129.132.97',NULL),(218,'\\core\\event\\config_log_created','core','created','config_log','config_log',832,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"printlastmodified\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"page\";}',1619623790,'web','65.129.132.97',NULL),(219,'\\core\\event\\config_log_created','core','created','config_log','config_log',833,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"display\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:4:\"page\";}',1619623790,'web','65.129.132.97',NULL),(220,'\\core\\event\\config_log_created','core','created','config_log','config_log',834,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"popupwidth\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"620\";s:6:\"plugin\";s:4:\"page\";}',1619623790,'web','65.129.132.97',NULL),(221,'\\core\\event\\config_log_created','core','created','config_log','config_log',835,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"popupheight\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"450\";s:6:\"plugin\";s:4:\"page\";}',1619623790,'web','65.129.132.97',NULL),(222,'\\core\\event\\config_log_created','core','created','config_log','config_log',836,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"timelimit\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(223,'\\core\\event\\config_log_created','core','created','config_log','config_log',837,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"timelimit_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(224,'\\core\\event\\config_log_created','core','created','config_log','config_log',838,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"overduehandling\";s:8:\"oldvalue\";N;s:5:\"value\";s:10:\"autosubmit\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(225,'\\core\\event\\config_log_created','core','created','config_log','config_log',839,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"overduehandling_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(226,'\\core\\event\\config_log_created','core','created','config_log','config_log',840,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"graceperiod\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"86400\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(227,'\\core\\event\\config_log_created','core','created','config_log','config_log',841,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"graceperiod_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(228,'\\core\\event\\config_log_created','core','created','config_log','config_log',842,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"graceperiodmin\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"60\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(229,'\\core\\event\\config_log_created','core','created','config_log','config_log',843,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"attempts\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(230,'\\core\\event\\config_log_created','core','created','config_log','config_log',844,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"attempts_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(231,'\\core\\event\\config_log_created','core','created','config_log','config_log',845,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"grademethod\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(232,'\\core\\event\\config_log_created','core','created','config_log','config_log',846,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"grademethod_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(233,'\\core\\event\\config_log_created','core','created','config_log','config_log',847,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"maximumgrade\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"10\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(234,'\\core\\event\\config_log_created','core','created','config_log','config_log',848,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"questionsperpage\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(235,'\\core\\event\\config_log_created','core','created','config_log','config_log',849,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"questionsperpage_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(236,'\\core\\event\\config_log_created','core','created','config_log','config_log',850,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"navmethod\";s:8:\"oldvalue\";N;s:5:\"value\";s:4:\"free\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(237,'\\core\\event\\config_log_created','core','created','config_log','config_log',851,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"navmethod_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(238,'\\core\\event\\config_log_created','core','created','config_log','config_log',852,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"shuffleanswers\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(239,'\\core\\event\\config_log_created','core','created','config_log','config_log',853,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"shuffleanswers_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(240,'\\core\\event\\config_log_created','core','created','config_log','config_log',854,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"preferredbehaviour\";s:8:\"oldvalue\";N;s:5:\"value\";s:16:\"deferredfeedback\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(241,'\\core\\event\\config_log_created','core','created','config_log','config_log',855,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"canredoquestions\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(242,'\\core\\event\\config_log_created','core','created','config_log','config_log',856,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"canredoquestions_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(243,'\\core\\event\\config_log_created','core','created','config_log','config_log',857,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"attemptonlast\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(244,'\\core\\event\\config_log_created','core','created','config_log','config_log',858,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"attemptonlast_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(245,'\\core\\event\\config_log_created','core','created','config_log','config_log',859,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"reviewattempt\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"69904\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(246,'\\core\\event\\config_log_created','core','created','config_log','config_log',860,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"reviewcorrectness\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"69904\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(247,'\\core\\event\\config_log_created','core','created','config_log','config_log',861,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"reviewmarks\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"69904\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(248,'\\core\\event\\config_log_created','core','created','config_log','config_log',862,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"reviewspecificfeedback\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"69904\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(249,'\\core\\event\\config_log_created','core','created','config_log','config_log',863,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"reviewgeneralfeedback\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"69904\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(250,'\\core\\event\\config_log_created','core','created','config_log','config_log',864,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"reviewrightanswer\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"69904\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(251,'\\core\\event\\config_log_created','core','created','config_log','config_log',865,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"reviewoverallfeedback\";s:8:\"oldvalue\";N;s:5:\"value\";s:4:\"4368\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(252,'\\core\\event\\config_log_created','core','created','config_log','config_log',866,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"showuserpicture\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(253,'\\core\\event\\config_log_created','core','created','config_log','config_log',867,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"showuserpicture_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(254,'\\core\\event\\config_log_created','core','created','config_log','config_log',868,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"decimalpoints\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"2\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(255,'\\core\\event\\config_log_created','core','created','config_log','config_log',869,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"decimalpoints_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(256,'\\core\\event\\config_log_created','core','created','config_log','config_log',870,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"questiondecimalpoints\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"-1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(257,'\\core\\event\\config_log_created','core','created','config_log','config_log',871,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"questiondecimalpoints_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(258,'\\core\\event\\config_log_created','core','created','config_log','config_log',872,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"showblocks\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(259,'\\core\\event\\config_log_created','core','created','config_log','config_log',873,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"showblocks_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(260,'\\core\\event\\config_log_created','core','created','config_log','config_log',874,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"quizpassword\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(261,'\\core\\event\\config_log_created','core','created','config_log','config_log',875,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"quizpassword_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(262,'\\core\\event\\config_log_created','core','created','config_log','config_log',876,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"quizpassword_required\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(263,'\\core\\event\\config_log_created','core','created','config_log','config_log',877,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"subnet\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(264,'\\core\\event\\config_log_created','core','created','config_log','config_log',878,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"subnet_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(265,'\\core\\event\\config_log_created','core','created','config_log','config_log',879,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"delay1\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(266,'\\core\\event\\config_log_created','core','created','config_log','config_log',880,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"delay1_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(267,'\\core\\event\\config_log_created','core','created','config_log','config_log',881,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"delay2\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(268,'\\core\\event\\config_log_created','core','created','config_log','config_log',882,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"delay2_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(269,'\\core\\event\\config_log_created','core','created','config_log','config_log',883,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"browsersecurity\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"-\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(270,'\\core\\event\\config_log_created','core','created','config_log','config_log',884,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"browsersecurity_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(271,'\\core\\event\\config_log_created','core','created','config_log','config_log',885,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"initialnumfeedbacks\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"2\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(272,'\\core\\event\\config_log_created','core','created','config_log','config_log',886,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"autosaveperiod\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"60\";s:6:\"plugin\";s:4:\"quiz\";}',1619623790,'web','65.129.132.97',NULL),(273,'\\core\\event\\config_log_created','core','created','config_log','config_log',887,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"autoreconfigureseb\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:14:\"quizaccess_seb\";}',1619623790,'web','65.129.132.97',NULL),(274,'\\core\\event\\config_log_created','core','created','config_log','config_log',888,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"showseblinks\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"seb,http\";s:6:\"plugin\";s:14:\"quizaccess_seb\";}',1619623790,'web','65.129.132.97',NULL),(275,'\\core\\event\\config_log_created','core','created','config_log','config_log',889,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"downloadlink\";s:8:\"oldvalue\";N;s:5:\"value\";s:44:\"https://safeexambrowser.org/download_en.html\";s:6:\"plugin\";s:14:\"quizaccess_seb\";}',1619623790,'web','65.129.132.97',NULL),(276,'\\core\\event\\config_log_created','core','created','config_log','config_log',890,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"quizpasswordrequired\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:14:\"quizaccess_seb\";}',1619623790,'web','65.129.132.97',NULL),(277,'\\core\\event\\config_log_created','core','created','config_log','config_log',891,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"displayblocksbeforestart\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:14:\"quizaccess_seb\";}',1619623790,'web','65.129.132.97',NULL),(278,'\\core\\event\\config_log_created','core','created','config_log','config_log',892,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"displayblockswhenfinished\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:14:\"quizaccess_seb\";}',1619623790,'web','65.129.132.97',NULL),(279,'\\core\\event\\config_log_created','core','created','config_log','config_log',893,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"displaycoursestructure\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(280,'\\core\\event\\config_log_created','core','created','config_log','config_log',894,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"displaycoursestructure_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(281,'\\core\\event\\config_log_created','core','created','config_log','config_log',895,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:5:\"popup\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(282,'\\core\\event\\config_log_created','core','created','config_log','config_log',896,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"popup_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(283,'\\core\\event\\config_log_created','core','created','config_log','config_log',897,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"displayactivityname\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(284,'\\core\\event\\config_log_created','core','created','config_log','config_log',898,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"framewidth\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"100\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(285,'\\core\\event\\config_log_created','core','created','config_log','config_log',899,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"framewidth_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(286,'\\core\\event\\config_log_created','core','created','config_log','config_log',900,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"frameheight\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"500\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(287,'\\core\\event\\config_log_created','core','created','config_log','config_log',901,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"frameheight_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(288,'\\core\\event\\config_log_created','core','created','config_log','config_log',902,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"winoptgrp_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(289,'\\core\\event\\config_log_created','core','created','config_log','config_log',903,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"scrollbars\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(290,'\\core\\event\\config_log_created','core','created','config_log','config_log',904,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"directories\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(291,'\\core\\event\\config_log_created','core','created','config_log','config_log',905,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"location\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(292,'\\core\\event\\config_log_created','core','created','config_log','config_log',906,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"menubar\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(293,'\\core\\event\\config_log_created','core','created','config_log','config_log',907,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"toolbar\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(294,'\\core\\event\\config_log_created','core','created','config_log','config_log',908,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"status\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(295,'\\core\\event\\config_log_created','core','created','config_log','config_log',909,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"skipview\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(296,'\\core\\event\\config_log_created','core','created','config_log','config_log',910,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"skipview_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(297,'\\core\\event\\config_log_created','core','created','config_log','config_log',911,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"hidebrowse\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(298,'\\core\\event\\config_log_created','core','created','config_log','config_log',912,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"hidebrowse_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(299,'\\core\\event\\config_log_created','core','created','config_log','config_log',913,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"hidetoc\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(300,'\\core\\event\\config_log_created','core','created','config_log','config_log',914,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"hidetoc_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623790,'web','65.129.132.97',NULL),(301,'\\core\\event\\config_log_created','core','created','config_log','config_log',915,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:3:\"nav\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(302,'\\core\\event\\config_log_created','core','created','config_log','config_log',916,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"nav_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(303,'\\core\\event\\config_log_created','core','created','config_log','config_log',917,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"navpositionleft\";s:8:\"oldvalue\";N;s:5:\"value\";s:4:\"-100\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(304,'\\core\\event\\config_log_created','core','created','config_log','config_log',918,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"navpositionleft_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(305,'\\core\\event\\config_log_created','core','created','config_log','config_log',919,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"navpositiontop\";s:8:\"oldvalue\";N;s:5:\"value\";s:4:\"-100\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(306,'\\core\\event\\config_log_created','core','created','config_log','config_log',920,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"navpositiontop_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(307,'\\core\\event\\config_log_created','core','created','config_log','config_log',921,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"collapsetocwinsize\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"767\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(308,'\\core\\event\\config_log_created','core','created','config_log','config_log',922,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"collapsetocwinsize_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(309,'\\core\\event\\config_log_created','core','created','config_log','config_log',923,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"displayattemptstatus\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(310,'\\core\\event\\config_log_created','core','created','config_log','config_log',924,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"displayattemptstatus_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(311,'\\core\\event\\config_log_created','core','created','config_log','config_log',925,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"grademethod\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(312,'\\core\\event\\config_log_created','core','created','config_log','config_log',926,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"maxgrade\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"100\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(313,'\\core\\event\\config_log_created','core','created','config_log','config_log',927,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"maxattempt\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(314,'\\core\\event\\config_log_created','core','created','config_log','config_log',928,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"whatgrade\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(315,'\\core\\event\\config_log_created','core','created','config_log','config_log',929,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"forcecompleted\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(316,'\\core\\event\\config_log_created','core','created','config_log','config_log',930,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"forcenewattempt\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(317,'\\core\\event\\config_log_created','core','created','config_log','config_log',931,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"autocommit\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(318,'\\core\\event\\config_log_created','core','created','config_log','config_log',932,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"masteryoverride\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(319,'\\core\\event\\config_log_created','core','created','config_log','config_log',933,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"lastattemptlock\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(320,'\\core\\event\\config_log_created','core','created','config_log','config_log',934,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"auto\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(321,'\\core\\event\\config_log_created','core','created','config_log','config_log',935,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"updatefreq\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(322,'\\core\\event\\config_log_created','core','created','config_log','config_log',936,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"scormstandard\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(323,'\\core\\event\\config_log_created','core','created','config_log','config_log',937,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"allowtypeexternal\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(324,'\\core\\event\\config_log_created','core','created','config_log','config_log',938,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"allowtypelocalsync\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(325,'\\core\\event\\config_log_created','core','created','config_log','config_log',939,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"allowtypeexternalaicc\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(326,'\\core\\event\\config_log_created','core','created','config_log','config_log',940,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"allowaicchacp\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(327,'\\core\\event\\config_log_created','core','created','config_log','config_log',941,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"aicchacptimeout\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"30\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(328,'\\core\\event\\config_log_created','core','created','config_log','config_log',942,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"aicchacpkeepsessiondata\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(329,'\\core\\event\\config_log_created','core','created','config_log','config_log',943,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"aiccuserid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(330,'\\core\\event\\config_log_created','core','created','config_log','config_log',944,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"forcejavascript\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(331,'\\core\\event\\config_log_created','core','created','config_log','config_log',945,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"allowapidebug\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(332,'\\core\\event\\config_log_created','core','created','config_log','config_log',946,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"apidebugmask\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\".*\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(333,'\\core\\event\\config_log_created','core','created','config_log','config_log',947,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"protectpackagedownloads\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:5:\"scorm\";}',1619623791,'web','65.129.132.97',NULL),(334,'\\core\\event\\config_log_created','core','created','config_log','config_log',948,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"framesize\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"130\";s:6:\"plugin\";s:3:\"url\";}',1619623791,'web','65.129.132.97',NULL),(335,'\\core\\event\\config_log_created','core','created','config_log','config_log',949,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"secretphrase\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:3:\"url\";}',1619623791,'web','65.129.132.97',NULL),(336,'\\core\\event\\config_log_created','core','created','config_log','config_log',950,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"rolesinparams\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:3:\"url\";}',1619623791,'web','65.129.132.97',NULL),(337,'\\core\\event\\config_log_created','core','created','config_log','config_log',951,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"displayoptions\";s:8:\"oldvalue\";N;s:5:\"value\";s:7:\"0,1,5,6\";s:6:\"plugin\";s:3:\"url\";}',1619623791,'web','65.129.132.97',NULL),(338,'\\core\\event\\config_log_created','core','created','config_log','config_log',952,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"printintro\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:3:\"url\";}',1619623791,'web','65.129.132.97',NULL),(339,'\\core\\event\\config_log_created','core','created','config_log','config_log',953,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"display\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:3:\"url\";}',1619623791,'web','65.129.132.97',NULL),(340,'\\core\\event\\config_log_created','core','created','config_log','config_log',954,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"popupwidth\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"620\";s:6:\"plugin\";s:3:\"url\";}',1619623791,'web','65.129.132.97',NULL),(341,'\\core\\event\\config_log_created','core','created','config_log','config_log',955,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"popupheight\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"450\";s:6:\"plugin\";s:3:\"url\";}',1619623791,'web','65.129.132.97',NULL),(342,'\\core\\event\\config_log_created','core','created','config_log','config_log',956,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:5:\"grade\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"80\";s:6:\"plugin\";s:8:\"workshop\";}',1619623791,'web','65.129.132.97',NULL),(343,'\\core\\event\\config_log_created','core','created','config_log','config_log',957,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"gradinggrade\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"20\";s:6:\"plugin\";s:8:\"workshop\";}',1619623791,'web','65.129.132.97',NULL),(344,'\\core\\event\\config_log_created','core','created','config_log','config_log',958,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"gradedecimals\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"workshop\";}',1619623791,'web','65.129.132.97',NULL),(345,'\\core\\event\\config_log_created','core','created','config_log','config_log',959,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"maxbytes\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"workshop\";}',1619623791,'web','65.129.132.97',NULL),(346,'\\core\\event\\config_log_created','core','created','config_log','config_log',960,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"strategy\";s:8:\"oldvalue\";N;s:5:\"value\";s:12:\"accumulative\";s:6:\"plugin\";s:8:\"workshop\";}',1619623791,'web','65.129.132.97',NULL),(347,'\\core\\event\\config_log_created','core','created','config_log','config_log',961,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"examplesmode\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"workshop\";}',1619623791,'web','65.129.132.97',NULL),(348,'\\core\\event\\config_log_created','core','created','config_log','config_log',962,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"numofreviews\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:25:\"workshopallocation_random\";}',1619623791,'web','65.129.132.97',NULL),(349,'\\core\\event\\config_log_created','core','created','config_log','config_log',963,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"grade0\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"No\";s:6:\"plugin\";s:22:\"workshopform_numerrors\";}',1619623791,'web','65.129.132.97',NULL),(350,'\\core\\event\\config_log_created','core','created','config_log','config_log',964,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"grade1\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"Yes\";s:6:\"plugin\";s:22:\"workshopform_numerrors\";}',1619623791,'web','65.129.132.97',NULL),(351,'\\core\\event\\config_log_created','core','created','config_log','config_log',965,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"comparison\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:17:\"workshopeval_best\";}',1619623791,'web','65.129.132.97',NULL),(352,'\\core\\event\\config_log_created','core','created','config_log','config_log',966,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"coursebinenable\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:15:\"tool_recyclebin\";}',1619623791,'web','65.129.132.97',NULL),(353,'\\core\\event\\config_log_created','core','created','config_log','config_log',967,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"coursebinexpiry\";s:8:\"oldvalue\";N;s:5:\"value\";s:6:\"604800\";s:6:\"plugin\";s:15:\"tool_recyclebin\";}',1619623791,'web','65.129.132.97',NULL),(354,'\\core\\event\\config_log_created','core','created','config_log','config_log',968,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"categorybinenable\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:15:\"tool_recyclebin\";}',1619623791,'web','65.129.132.97',NULL),(355,'\\core\\event\\config_log_created','core','created','config_log','config_log',969,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"categorybinexpiry\";s:8:\"oldvalue\";N;s:5:\"value\";s:6:\"604800\";s:6:\"plugin\";s:15:\"tool_recyclebin\";}',1619623791,'web','65.129.132.97',NULL),(356,'\\core\\event\\config_log_created','core','created','config_log','config_log',970,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"autohide\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:15:\"tool_recyclebin\";}',1619623791,'web','65.129.132.97',NULL),(357,'\\core\\event\\config_log_created','core','created','config_log','config_log',971,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"runningmethod\";s:8:\"oldvalue\";N;s:5:\"value\";s:11:\"commandline\";s:6:\"plugin\";s:16:\"antivirus_clamav\";}',1619623791,'web','65.129.132.97',NULL),(358,'\\core\\event\\config_log_created','core','created','config_log','config_log',972,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"pathtoclam\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:16:\"antivirus_clamav\";}',1619623791,'web','65.129.132.97',NULL),(359,'\\core\\event\\config_log_created','core','created','config_log','config_log',973,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"pathtounixsocket\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:16:\"antivirus_clamav\";}',1619623791,'web','65.129.132.97',NULL),(360,'\\core\\event\\config_log_created','core','created','config_log','config_log',974,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"tcpsockethost\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:16:\"antivirus_clamav\";}',1619623791,'web','65.129.132.97',NULL),(361,'\\core\\event\\config_log_created','core','created','config_log','config_log',975,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"tcpsocketport\";s:8:\"oldvalue\";N;s:5:\"value\";s:4:\"3310\";s:6:\"plugin\";s:16:\"antivirus_clamav\";}',1619623791,'web','65.129.132.97',NULL),(362,'\\core\\event\\config_log_created','core','created','config_log','config_log',976,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"clamfailureonupload\";s:8:\"oldvalue\";N;s:5:\"value\";s:9:\"donothing\";s:6:\"plugin\";s:16:\"antivirus_clamav\";}',1619623791,'web','65.129.132.97',NULL),(363,'\\core\\event\\config_log_created','core','created','config_log','config_log',977,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:5:\"tries\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"antivirus_clamav\";}',1619623791,'web','65.129.132.97',NULL),(364,'\\core\\event\\config_log_created','core','created','config_log','config_log',978,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_map_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(365,'\\core\\event\\config_log_created','core','created','config_log','config_log',979,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_updatelocal_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(366,'\\core\\event\\config_log_created','core','created','config_log','config_log',980,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_updateremote_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(367,'\\core\\event\\config_log_created','core','created','config_log','config_log',981,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_lock_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(368,'\\core\\event\\config_log_created','core','created','config_log','config_log',982,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_map_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(369,'\\core\\event\\config_log_created','core','created','config_log','config_log',983,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updatelocal_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(370,'\\core\\event\\config_log_created','core','created','config_log','config_log',984,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_updateremote_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(371,'\\core\\event\\config_log_created','core','created','config_log','config_log',985,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(372,'\\core\\event\\config_log_created','core','created','config_log','config_log',986,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_map_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(373,'\\core\\event\\config_log_created','core','created','config_log','config_log',987,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_updatelocal_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(374,'\\core\\event\\config_log_created','core','created','config_log','config_log',988,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_updateremote_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(375,'\\core\\event\\config_log_created','core','created','config_log','config_log',989,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_lock_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(376,'\\core\\event\\config_log_created','core','created','config_log','config_log',990,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_map_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(377,'\\core\\event\\config_log_created','core','created','config_log','config_log',991,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_updatelocal_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(378,'\\core\\event\\config_log_created','core','created','config_log','config_log',992,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_updateremote_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(379,'\\core\\event\\config_log_created','core','created','config_log','config_log',993,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(380,'\\core\\event\\config_log_created','core','created','config_log','config_log',994,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_map_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(381,'\\core\\event\\config_log_created','core','created','config_log','config_log',995,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updatelocal_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(382,'\\core\\event\\config_log_created','core','created','config_log','config_log',996,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updateremote_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(383,'\\core\\event\\config_log_created','core','created','config_log','config_log',997,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(384,'\\core\\event\\config_log_created','core','created','config_log','config_log',998,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_map_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(385,'\\core\\event\\config_log_created','core','created','config_log','config_log',999,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_updatelocal_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(386,'\\core\\event\\config_log_created','core','created','config_log','config_log',1000,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_updateremote_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(387,'\\core\\event\\config_log_created','core','created','config_log','config_log',1001,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(388,'\\core\\event\\config_log_created','core','created','config_log','config_log',1002,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_map_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(389,'\\core\\event\\config_log_created','core','created','config_log','config_log',1003,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updatelocal_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(390,'\\core\\event\\config_log_created','core','created','config_log','config_log',1004,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:30:\"field_updateremote_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(391,'\\core\\event\\config_log_created','core','created','config_log','config_log',1005,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(392,'\\core\\event\\config_log_created','core','created','config_log','config_log',1006,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"field_map_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(393,'\\core\\event\\config_log_created','core','created','config_log','config_log',1007,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_updatelocal_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(394,'\\core\\event\\config_log_created','core','created','config_log','config_log',1008,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_updateremote_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(395,'\\core\\event\\config_log_created','core','created','config_log','config_log',1009,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_lock_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(396,'\\core\\event\\config_log_created','core','created','config_log','config_log',1010,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_map_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(397,'\\core\\event\\config_log_created','core','created','config_log','config_log',1011,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updatelocal_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(398,'\\core\\event\\config_log_created','core','created','config_log','config_log',1012,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_updateremote_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(399,'\\core\\event\\config_log_created','core','created','config_log','config_log',1013,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(400,'\\core\\event\\config_log_created','core','created','config_log','config_log',1014,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_map_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(401,'\\core\\event\\config_log_created','core','created','config_log','config_log',1015,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updatelocal_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(402,'\\core\\event\\config_log_created','core','created','config_log','config_log',1016,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:30:\"field_updateremote_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(403,'\\core\\event\\config_log_created','core','created','config_log','config_log',1017,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(404,'\\core\\event\\config_log_created','core','created','config_log','config_log',1018,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_map_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(405,'\\core\\event\\config_log_created','core','created','config_log','config_log',1019,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_updatelocal_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(406,'\\core\\event\\config_log_created','core','created','config_log','config_log',1020,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updateremote_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(407,'\\core\\event\\config_log_created','core','created','config_log','config_log',1021,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(408,'\\core\\event\\config_log_created','core','created','config_log','config_log',1022,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_map_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(409,'\\core\\event\\config_log_created','core','created','config_log','config_log',1023,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_updatelocal_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(410,'\\core\\event\\config_log_created','core','created','config_log','config_log',1024,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updateremote_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(411,'\\core\\event\\config_log_created','core','created','config_log','config_log',1025,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(412,'\\core\\event\\config_log_created','core','created','config_log','config_log',1026,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_map_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(413,'\\core\\event\\config_log_created','core','created','config_log','config_log',1027,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_updatelocal_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(414,'\\core\\event\\config_log_created','core','created','config_log','config_log',1028,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updateremote_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(415,'\\core\\event\\config_log_created','core','created','config_log','config_log',1029,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(416,'\\core\\event\\config_log_created','core','created','config_log','config_log',1030,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_map_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(417,'\\core\\event\\config_log_created','core','created','config_log','config_log',1031,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updatelocal_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(418,'\\core\\event\\config_log_created','core','created','config_log','config_log',1032,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updateremote_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(419,'\\core\\event\\config_log_created','core','created','config_log','config_log',1033,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(420,'\\core\\event\\config_log_created','core','created','config_log','config_log',1034,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_map_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(421,'\\core\\event\\config_log_created','core','created','config_log','config_log',1035,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:35:\"field_updatelocal_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(422,'\\core\\event\\config_log_created','core','created','config_log','config_log',1036,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:36:\"field_updateremote_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(423,'\\core\\event\\config_log_created','core','created','config_log','config_log',1037,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_lock_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(424,'\\core\\event\\config_log_created','core','created','config_log','config_log',1038,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_map_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(425,'\\core\\event\\config_log_created','core','created','config_log','config_log',1039,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:34:\"field_updatelocal_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(426,'\\core\\event\\config_log_created','core','created','config_log','config_log',1040,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:35:\"field_updateremote_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(427,'\\core\\event\\config_log_created','core','created','config_log','config_log',1041,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_lock_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(428,'\\core\\event\\config_log_created','core','created','config_log','config_log',1042,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_map_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(429,'\\core\\event\\config_log_created','core','created','config_log','config_log',1043,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_updatelocal_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(430,'\\core\\event\\config_log_created','core','created','config_log','config_log',1044,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updateremote_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(431,'\\core\\event\\config_log_created','core','created','config_log','config_log',1045,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(432,'\\core\\event\\config_log_created','core','created','config_log','config_log',1046,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_map_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(433,'\\core\\event\\config_log_created','core','created','config_log','config_log',1047,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:31:\"field_updatelocal_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(434,'\\core\\event\\config_log_created','core','created','config_log','config_log',1048,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:32:\"field_updateremote_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(435,'\\core\\event\\config_log_created','core','created','config_log','config_log',1049,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_lock_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:8:\"auth_cas\";}',1619623791,'web','65.129.132.97',NULL),(436,'\\core\\event\\config_log_created','core','created','config_log','config_log',1050,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"recaptcha\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(437,'\\core\\event\\config_log_created','core','created','config_log','config_log',1051,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_lock_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(438,'\\core\\event\\config_log_created','core','created','config_log','config_log',1052,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(439,'\\core\\event\\config_log_created','core','created','config_log','config_log',1053,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_lock_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(440,'\\core\\event\\config_log_created','core','created','config_log','config_log',1054,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(441,'\\core\\event\\config_log_created','core','created','config_log','config_log',1055,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(442,'\\core\\event\\config_log_created','core','created','config_log','config_log',1056,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(443,'\\core\\event\\config_log_created','core','created','config_log','config_log',1057,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(444,'\\core\\event\\config_log_created','core','created','config_log','config_log',1058,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_lock_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(445,'\\core\\event\\config_log_created','core','created','config_log','config_log',1059,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(446,'\\core\\event\\config_log_created','core','created','config_log','config_log',1060,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(447,'\\core\\event\\config_log_created','core','created','config_log','config_log',1061,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(448,'\\core\\event\\config_log_created','core','created','config_log','config_log',1062,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(449,'\\core\\event\\config_log_created','core','created','config_log','config_log',1063,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(450,'\\core\\event\\config_log_created','core','created','config_log','config_log',1064,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(451,'\\core\\event\\config_log_created','core','created','config_log','config_log',1065,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_lock_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(452,'\\core\\event\\config_log_created','core','created','config_log','config_log',1066,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_lock_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(453,'\\core\\event\\config_log_created','core','created','config_log','config_log',1067,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(454,'\\core\\event\\config_log_created','core','created','config_log','config_log',1068,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_lock_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:10:\"auth_email\";}',1619623791,'web','65.129.132.97',NULL),(455,'\\core\\event\\config_log_created','core','created','config_log','config_log',1069,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"host\";s:8:\"oldvalue\";N;s:5:\"value\";s:9:\"127.0.0.1\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(456,'\\core\\event\\config_log_created','core','created','config_log','config_log',1070,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"type\";s:8:\"oldvalue\";N;s:5:\"value\";s:6:\"mysqli\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(457,'\\core\\event\\config_log_created','core','created','config_log','config_log',1071,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"sybasequoting\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(458,'\\core\\event\\config_log_created','core','created','config_log','config_log',1072,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"name\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(459,'\\core\\event\\config_log_created','core','created','config_log','config_log',1073,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"user\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(460,'\\core\\event\\config_log_created','core','created','config_log','config_log',1074,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"pass\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(461,'\\core\\event\\config_log_created','core','created','config_log','config_log',1075,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:5:\"table\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(462,'\\core\\event\\config_log_created','core','created','config_log','config_log',1076,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"fielduser\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(463,'\\core\\event\\config_log_created','core','created','config_log','config_log',1077,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"fieldpass\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(464,'\\core\\event\\config_log_created','core','created','config_log','config_log',1078,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"passtype\";s:8:\"oldvalue\";N;s:5:\"value\";s:9:\"plaintext\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(465,'\\core\\event\\config_log_created','core','created','config_log','config_log',1079,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"extencoding\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"utf-8\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(466,'\\core\\event\\config_log_created','core','created','config_log','config_log',1080,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"setupsql\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(467,'\\core\\event\\config_log_created','core','created','config_log','config_log',1081,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"debugauthdb\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(468,'\\core\\event\\config_log_created','core','created','config_log','config_log',1082,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"changepasswordurl\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(469,'\\core\\event\\config_log_created','core','created','config_log','config_log',1083,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"removeuser\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(470,'\\core\\event\\config_log_created','core','created','config_log','config_log',1084,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"updateusers\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(471,'\\core\\event\\config_log_created','core','created','config_log','config_log',1085,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_map_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(472,'\\core\\event\\config_log_created','core','created','config_log','config_log',1086,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_updatelocal_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(473,'\\core\\event\\config_log_created','core','created','config_log','config_log',1087,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_updateremote_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(474,'\\core\\event\\config_log_created','core','created','config_log','config_log',1088,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_lock_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(475,'\\core\\event\\config_log_created','core','created','config_log','config_log',1089,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_map_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(476,'\\core\\event\\config_log_created','core','created','config_log','config_log',1090,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updatelocal_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(477,'\\core\\event\\config_log_created','core','created','config_log','config_log',1091,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_updateremote_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(478,'\\core\\event\\config_log_created','core','created','config_log','config_log',1092,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(479,'\\core\\event\\config_log_created','core','created','config_log','config_log',1093,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_map_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(480,'\\core\\event\\config_log_created','core','created','config_log','config_log',1094,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_updatelocal_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(481,'\\core\\event\\config_log_created','core','created','config_log','config_log',1095,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_updateremote_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(482,'\\core\\event\\config_log_created','core','created','config_log','config_log',1096,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_lock_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(483,'\\core\\event\\config_log_created','core','created','config_log','config_log',1097,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_map_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(484,'\\core\\event\\config_log_created','core','created','config_log','config_log',1098,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_updatelocal_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(485,'\\core\\event\\config_log_created','core','created','config_log','config_log',1099,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_updateremote_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(486,'\\core\\event\\config_log_created','core','created','config_log','config_log',1100,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(487,'\\core\\event\\config_log_created','core','created','config_log','config_log',1101,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_map_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(488,'\\core\\event\\config_log_created','core','created','config_log','config_log',1102,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updatelocal_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(489,'\\core\\event\\config_log_created','core','created','config_log','config_log',1103,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updateremote_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(490,'\\core\\event\\config_log_created','core','created','config_log','config_log',1104,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(491,'\\core\\event\\config_log_created','core','created','config_log','config_log',1105,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_map_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(492,'\\core\\event\\config_log_created','core','created','config_log','config_log',1106,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_updatelocal_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(493,'\\core\\event\\config_log_created','core','created','config_log','config_log',1107,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_updateremote_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(494,'\\core\\event\\config_log_created','core','created','config_log','config_log',1108,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(495,'\\core\\event\\config_log_created','core','created','config_log','config_log',1109,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_map_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(496,'\\core\\event\\config_log_created','core','created','config_log','config_log',1110,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updatelocal_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(497,'\\core\\event\\config_log_created','core','created','config_log','config_log',1111,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:30:\"field_updateremote_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(498,'\\core\\event\\config_log_created','core','created','config_log','config_log',1112,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(499,'\\core\\event\\config_log_created','core','created','config_log','config_log',1113,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"field_map_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(500,'\\core\\event\\config_log_created','core','created','config_log','config_log',1114,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_updatelocal_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(501,'\\core\\event\\config_log_created','core','created','config_log','config_log',1115,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_updateremote_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(502,'\\core\\event\\config_log_created','core','created','config_log','config_log',1116,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_lock_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(503,'\\core\\event\\config_log_created','core','created','config_log','config_log',1117,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_map_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(504,'\\core\\event\\config_log_created','core','created','config_log','config_log',1118,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updatelocal_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(505,'\\core\\event\\config_log_created','core','created','config_log','config_log',1119,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_updateremote_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(506,'\\core\\event\\config_log_created','core','created','config_log','config_log',1120,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(507,'\\core\\event\\config_log_created','core','created','config_log','config_log',1121,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_map_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(508,'\\core\\event\\config_log_created','core','created','config_log','config_log',1122,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updatelocal_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(509,'\\core\\event\\config_log_created','core','created','config_log','config_log',1123,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:30:\"field_updateremote_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(510,'\\core\\event\\config_log_created','core','created','config_log','config_log',1124,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(511,'\\core\\event\\config_log_created','core','created','config_log','config_log',1125,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_map_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(512,'\\core\\event\\config_log_created','core','created','config_log','config_log',1126,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_updatelocal_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(513,'\\core\\event\\config_log_created','core','created','config_log','config_log',1127,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updateremote_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(514,'\\core\\event\\config_log_created','core','created','config_log','config_log',1128,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(515,'\\core\\event\\config_log_created','core','created','config_log','config_log',1129,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_map_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(516,'\\core\\event\\config_log_created','core','created','config_log','config_log',1130,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_updatelocal_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(517,'\\core\\event\\config_log_created','core','created','config_log','config_log',1131,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updateremote_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(518,'\\core\\event\\config_log_created','core','created','config_log','config_log',1132,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(519,'\\core\\event\\config_log_created','core','created','config_log','config_log',1133,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_map_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(520,'\\core\\event\\config_log_created','core','created','config_log','config_log',1134,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_updatelocal_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(521,'\\core\\event\\config_log_created','core','created','config_log','config_log',1135,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updateremote_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(522,'\\core\\event\\config_log_created','core','created','config_log','config_log',1136,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(523,'\\core\\event\\config_log_created','core','created','config_log','config_log',1137,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_map_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(524,'\\core\\event\\config_log_created','core','created','config_log','config_log',1138,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updatelocal_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(525,'\\core\\event\\config_log_created','core','created','config_log','config_log',1139,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updateremote_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(526,'\\core\\event\\config_log_created','core','created','config_log','config_log',1140,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(527,'\\core\\event\\config_log_created','core','created','config_log','config_log',1141,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_map_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(528,'\\core\\event\\config_log_created','core','created','config_log','config_log',1142,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:35:\"field_updatelocal_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(529,'\\core\\event\\config_log_created','core','created','config_log','config_log',1143,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:36:\"field_updateremote_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(530,'\\core\\event\\config_log_created','core','created','config_log','config_log',1144,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_lock_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(531,'\\core\\event\\config_log_created','core','created','config_log','config_log',1145,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_map_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(532,'\\core\\event\\config_log_created','core','created','config_log','config_log',1146,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:34:\"field_updatelocal_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(533,'\\core\\event\\config_log_created','core','created','config_log','config_log',1147,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:35:\"field_updateremote_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(534,'\\core\\event\\config_log_created','core','created','config_log','config_log',1148,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_lock_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(535,'\\core\\event\\config_log_created','core','created','config_log','config_log',1149,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_map_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(536,'\\core\\event\\config_log_created','core','created','config_log','config_log',1150,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_updatelocal_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(537,'\\core\\event\\config_log_created','core','created','config_log','config_log',1151,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updateremote_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(538,'\\core\\event\\config_log_created','core','created','config_log','config_log',1152,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(539,'\\core\\event\\config_log_created','core','created','config_log','config_log',1153,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_map_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(540,'\\core\\event\\config_log_created','core','created','config_log','config_log',1154,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:31:\"field_updatelocal_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(541,'\\core\\event\\config_log_created','core','created','config_log','config_log',1155,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:32:\"field_updateremote_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(542,'\\core\\event\\config_log_created','core','created','config_log','config_log',1156,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_lock_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:7:\"auth_db\";}',1619623791,'web','65.129.132.97',NULL),(543,'\\core\\event\\config_log_created','core','created','config_log','config_log',1157,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_map_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(544,'\\core\\event\\config_log_created','core','created','config_log','config_log',1158,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_updatelocal_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(545,'\\core\\event\\config_log_created','core','created','config_log','config_log',1159,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_updateremote_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(546,'\\core\\event\\config_log_created','core','created','config_log','config_log',1160,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_lock_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(547,'\\core\\event\\config_log_created','core','created','config_log','config_log',1161,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_map_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(548,'\\core\\event\\config_log_created','core','created','config_log','config_log',1162,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updatelocal_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(549,'\\core\\event\\config_log_created','core','created','config_log','config_log',1163,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_updateremote_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(550,'\\core\\event\\config_log_created','core','created','config_log','config_log',1164,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(551,'\\core\\event\\config_log_created','core','created','config_log','config_log',1165,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_map_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(552,'\\core\\event\\config_log_created','core','created','config_log','config_log',1166,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_updatelocal_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(553,'\\core\\event\\config_log_created','core','created','config_log','config_log',1167,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_updateremote_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(554,'\\core\\event\\config_log_created','core','created','config_log','config_log',1168,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_lock_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(555,'\\core\\event\\config_log_created','core','created','config_log','config_log',1169,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_map_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(556,'\\core\\event\\config_log_created','core','created','config_log','config_log',1170,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_updatelocal_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(557,'\\core\\event\\config_log_created','core','created','config_log','config_log',1171,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_updateremote_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(558,'\\core\\event\\config_log_created','core','created','config_log','config_log',1172,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(559,'\\core\\event\\config_log_created','core','created','config_log','config_log',1173,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_map_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(560,'\\core\\event\\config_log_created','core','created','config_log','config_log',1174,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updatelocal_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(561,'\\core\\event\\config_log_created','core','created','config_log','config_log',1175,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updateremote_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(562,'\\core\\event\\config_log_created','core','created','config_log','config_log',1176,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(563,'\\core\\event\\config_log_created','core','created','config_log','config_log',1177,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_map_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(564,'\\core\\event\\config_log_created','core','created','config_log','config_log',1178,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_updatelocal_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(565,'\\core\\event\\config_log_created','core','created','config_log','config_log',1179,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_updateremote_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(566,'\\core\\event\\config_log_created','core','created','config_log','config_log',1180,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(567,'\\core\\event\\config_log_created','core','created','config_log','config_log',1181,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_map_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(568,'\\core\\event\\config_log_created','core','created','config_log','config_log',1182,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updatelocal_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(569,'\\core\\event\\config_log_created','core','created','config_log','config_log',1183,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:30:\"field_updateremote_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(570,'\\core\\event\\config_log_created','core','created','config_log','config_log',1184,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(571,'\\core\\event\\config_log_created','core','created','config_log','config_log',1185,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"field_map_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(572,'\\core\\event\\config_log_created','core','created','config_log','config_log',1186,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_updatelocal_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(573,'\\core\\event\\config_log_created','core','created','config_log','config_log',1187,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_updateremote_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(574,'\\core\\event\\config_log_created','core','created','config_log','config_log',1188,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_lock_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(575,'\\core\\event\\config_log_created','core','created','config_log','config_log',1189,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_map_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(576,'\\core\\event\\config_log_created','core','created','config_log','config_log',1190,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updatelocal_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(577,'\\core\\event\\config_log_created','core','created','config_log','config_log',1191,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_updateremote_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(578,'\\core\\event\\config_log_created','core','created','config_log','config_log',1192,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(579,'\\core\\event\\config_log_created','core','created','config_log','config_log',1193,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_map_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(580,'\\core\\event\\config_log_created','core','created','config_log','config_log',1194,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updatelocal_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(581,'\\core\\event\\config_log_created','core','created','config_log','config_log',1195,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:30:\"field_updateremote_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(582,'\\core\\event\\config_log_created','core','created','config_log','config_log',1196,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(583,'\\core\\event\\config_log_created','core','created','config_log','config_log',1197,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_map_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(584,'\\core\\event\\config_log_created','core','created','config_log','config_log',1198,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_updatelocal_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(585,'\\core\\event\\config_log_created','core','created','config_log','config_log',1199,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updateremote_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(586,'\\core\\event\\config_log_created','core','created','config_log','config_log',1200,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(587,'\\core\\event\\config_log_created','core','created','config_log','config_log',1201,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_map_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(588,'\\core\\event\\config_log_created','core','created','config_log','config_log',1202,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_updatelocal_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(589,'\\core\\event\\config_log_created','core','created','config_log','config_log',1203,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updateremote_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(590,'\\core\\event\\config_log_created','core','created','config_log','config_log',1204,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(591,'\\core\\event\\config_log_created','core','created','config_log','config_log',1205,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_map_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(592,'\\core\\event\\config_log_created','core','created','config_log','config_log',1206,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_updatelocal_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(593,'\\core\\event\\config_log_created','core','created','config_log','config_log',1207,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updateremote_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(594,'\\core\\event\\config_log_created','core','created','config_log','config_log',1208,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(595,'\\core\\event\\config_log_created','core','created','config_log','config_log',1209,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_map_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(596,'\\core\\event\\config_log_created','core','created','config_log','config_log',1210,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updatelocal_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(597,'\\core\\event\\config_log_created','core','created','config_log','config_log',1211,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updateremote_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(598,'\\core\\event\\config_log_created','core','created','config_log','config_log',1212,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(599,'\\core\\event\\config_log_created','core','created','config_log','config_log',1213,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_map_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(600,'\\core\\event\\config_log_created','core','created','config_log','config_log',1214,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:35:\"field_updatelocal_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623791,'web','65.129.132.97',NULL),(601,'\\core\\event\\config_log_created','core','created','config_log','config_log',1215,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:36:\"field_updateremote_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(602,'\\core\\event\\config_log_created','core','created','config_log','config_log',1216,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_lock_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(603,'\\core\\event\\config_log_created','core','created','config_log','config_log',1217,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_map_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(604,'\\core\\event\\config_log_created','core','created','config_log','config_log',1218,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:34:\"field_updatelocal_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(605,'\\core\\event\\config_log_created','core','created','config_log','config_log',1219,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:35:\"field_updateremote_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(606,'\\core\\event\\config_log_created','core','created','config_log','config_log',1220,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_lock_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(607,'\\core\\event\\config_log_created','core','created','config_log','config_log',1221,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_map_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(608,'\\core\\event\\config_log_created','core','created','config_log','config_log',1222,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_updatelocal_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(609,'\\core\\event\\config_log_created','core','created','config_log','config_log',1223,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updateremote_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(610,'\\core\\event\\config_log_created','core','created','config_log','config_log',1224,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(611,'\\core\\event\\config_log_created','core','created','config_log','config_log',1225,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_map_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(612,'\\core\\event\\config_log_created','core','created','config_log','config_log',1226,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:31:\"field_updatelocal_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(613,'\\core\\event\\config_log_created','core','created','config_log','config_log',1227,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:32:\"field_updateremote_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(614,'\\core\\event\\config_log_created','core','created','config_log','config_log',1228,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_lock_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_ldap\";}',1619623792,'web','65.129.132.97',NULL),(615,'\\core\\event\\config_log_created','core','created','config_log','config_log',1229,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"expiration\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(616,'\\core\\event\\config_log_created','core','created','config_log','config_log',1230,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"expirationtime\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"30\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(617,'\\core\\event\\config_log_created','core','created','config_log','config_log',1231,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"expiration_warning\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(618,'\\core\\event\\config_log_created','core','created','config_log','config_log',1232,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_lock_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(619,'\\core\\event\\config_log_created','core','created','config_log','config_log',1233,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(620,'\\core\\event\\config_log_created','core','created','config_log','config_log',1234,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_lock_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(621,'\\core\\event\\config_log_created','core','created','config_log','config_log',1235,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(622,'\\core\\event\\config_log_created','core','created','config_log','config_log',1236,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(623,'\\core\\event\\config_log_created','core','created','config_log','config_log',1237,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(624,'\\core\\event\\config_log_created','core','created','config_log','config_log',1238,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(625,'\\core\\event\\config_log_created','core','created','config_log','config_log',1239,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_lock_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(626,'\\core\\event\\config_log_created','core','created','config_log','config_log',1240,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(627,'\\core\\event\\config_log_created','core','created','config_log','config_log',1241,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(628,'\\core\\event\\config_log_created','core','created','config_log','config_log',1242,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(629,'\\core\\event\\config_log_created','core','created','config_log','config_log',1243,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(630,'\\core\\event\\config_log_created','core','created','config_log','config_log',1244,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(631,'\\core\\event\\config_log_created','core','created','config_log','config_log',1245,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(632,'\\core\\event\\config_log_created','core','created','config_log','config_log',1246,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_lock_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(633,'\\core\\event\\config_log_created','core','created','config_log','config_log',1247,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_lock_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(634,'\\core\\event\\config_log_created','core','created','config_log','config_log',1248,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(635,'\\core\\event\\config_log_created','core','created','config_log','config_log',1249,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_lock_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_manual\";}',1619623792,'web','65.129.132.97',NULL),(636,'\\core\\event\\config_log_created','core','created','config_log','config_log',1250,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"rpc_negotiation_timeout\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"30\";s:6:\"plugin\";s:9:\"auth_mnet\";}',1619623792,'web','65.129.132.97',NULL),(637,'\\core\\event\\config_log_created','core','created','config_log','config_log',1251,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_lock_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(638,'\\core\\event\\config_log_created','core','created','config_log','config_log',1252,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(639,'\\core\\event\\config_log_created','core','created','config_log','config_log',1253,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_lock_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(640,'\\core\\event\\config_log_created','core','created','config_log','config_log',1254,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(641,'\\core\\event\\config_log_created','core','created','config_log','config_log',1255,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(642,'\\core\\event\\config_log_created','core','created','config_log','config_log',1256,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(643,'\\core\\event\\config_log_created','core','created','config_log','config_log',1257,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(644,'\\core\\event\\config_log_created','core','created','config_log','config_log',1258,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_lock_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(645,'\\core\\event\\config_log_created','core','created','config_log','config_log',1259,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(646,'\\core\\event\\config_log_created','core','created','config_log','config_log',1260,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(647,'\\core\\event\\config_log_created','core','created','config_log','config_log',1261,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(648,'\\core\\event\\config_log_created','core','created','config_log','config_log',1262,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(649,'\\core\\event\\config_log_created','core','created','config_log','config_log',1263,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(650,'\\core\\event\\config_log_created','core','created','config_log','config_log',1264,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(651,'\\core\\event\\config_log_created','core','created','config_log','config_log',1265,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_lock_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(652,'\\core\\event\\config_log_created','core','created','config_log','config_log',1266,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_lock_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(653,'\\core\\event\\config_log_created','core','created','config_log','config_log',1267,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(654,'\\core\\event\\config_log_created','core','created','config_log','config_log',1268,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_lock_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:9:\"auth_none\";}',1619623792,'web','65.129.132.97',NULL),(655,'\\core\\event\\config_log_created','core','created','config_log','config_log',1269,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_lock_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(656,'\\core\\event\\config_log_created','core','created','config_log','config_log',1270,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(657,'\\core\\event\\config_log_created','core','created','config_log','config_log',1271,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_lock_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(658,'\\core\\event\\config_log_created','core','created','config_log','config_log',1272,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(659,'\\core\\event\\config_log_created','core','created','config_log','config_log',1273,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(660,'\\core\\event\\config_log_created','core','created','config_log','config_log',1274,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(661,'\\core\\event\\config_log_created','core','created','config_log','config_log',1275,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(662,'\\core\\event\\config_log_created','core','created','config_log','config_log',1276,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_lock_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(663,'\\core\\event\\config_log_created','core','created','config_log','config_log',1277,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(664,'\\core\\event\\config_log_created','core','created','config_log','config_log',1278,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(665,'\\core\\event\\config_log_created','core','created','config_log','config_log',1279,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(666,'\\core\\event\\config_log_created','core','created','config_log','config_log',1280,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(667,'\\core\\event\\config_log_created','core','created','config_log','config_log',1281,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(668,'\\core\\event\\config_log_created','core','created','config_log','config_log',1282,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(669,'\\core\\event\\config_log_created','core','created','config_log','config_log',1283,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_lock_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(670,'\\core\\event\\config_log_created','core','created','config_log','config_log',1284,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_lock_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(671,'\\core\\event\\config_log_created','core','created','config_log','config_log',1285,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(672,'\\core\\event\\config_log_created','core','created','config_log','config_log',1286,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_lock_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:11:\"auth_oauth2\";}',1619623792,'web','65.129.132.97',NULL),(673,'\\core\\event\\config_log_created','core','created','config_log','config_log',1287,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"user_attribute\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(674,'\\core\\event\\config_log_created','core','created','config_log','config_log',1288,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"convert_data\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(675,'\\core\\event\\config_log_created','core','created','config_log','config_log',1289,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"alt_login\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"off\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(676,'\\core\\event\\config_log_created','core','created','config_log','config_log',1290,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"organization_selection\";s:8:\"oldvalue\";N;s:5:\"value\";s:259:\"urn:mace:organization1:providerID, Example Organization 1\n https://another.idp-id.com/shibboleth, Other Example Organization, /Shibboleth.sso/DS/SWITCHaai\n urn:mace:organization2:providerID, Example Organization 2, /Shibboleth.sso/WAYF/SWITCHaai\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(677,'\\core\\event\\config_log_created','core','created','config_log','config_log',1291,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"logout_handler\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(678,'\\core\\event\\config_log_created','core','created','config_log','config_log',1292,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"logout_return_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(679,'\\core\\event\\config_log_created','core','created','config_log','config_log',1293,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"login_name\";s:8:\"oldvalue\";N;s:5:\"value\";s:16:\"Shibboleth Login\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(680,'\\core\\event\\config_log_created','core','created','config_log','config_log',1294,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"auth_logo\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(681,'\\core\\event\\config_log_created','core','created','config_log','config_log',1295,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"auth_instructions\";s:8:\"oldvalue\";N;s:5:\"value\";s:218:\"Use the Shibboleth login to get access via Shibboleth, if your institution supports it. Otherwise, use the normal login form shown here.\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(682,'\\core\\event\\config_log_created','core','created','config_log','config_log',1296,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"changepasswordurl\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(683,'\\core\\event\\config_log_created','core','created','config_log','config_log',1297,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_map_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(684,'\\core\\event\\config_log_created','core','created','config_log','config_log',1298,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_updatelocal_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(685,'\\core\\event\\config_log_created','core','created','config_log','config_log',1299,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_lock_firstname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(686,'\\core\\event\\config_log_created','core','created','config_log','config_log',1300,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_map_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(687,'\\core\\event\\config_log_created','core','created','config_log','config_log',1301,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updatelocal_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(688,'\\core\\event\\config_log_created','core','created','config_log','config_log',1302,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_lastname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(689,'\\core\\event\\config_log_created','core','created','config_log','config_log',1303,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_map_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(690,'\\core\\event\\config_log_created','core','created','config_log','config_log',1304,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_updatelocal_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(691,'\\core\\event\\config_log_created','core','created','config_log','config_log',1305,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_lock_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(692,'\\core\\event\\config_log_created','core','created','config_log','config_log',1306,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_map_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(693,'\\core\\event\\config_log_created','core','created','config_log','config_log',1307,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_updatelocal_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(694,'\\core\\event\\config_log_created','core','created','config_log','config_log',1308,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_city\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(695,'\\core\\event\\config_log_created','core','created','config_log','config_log',1309,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_map_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(696,'\\core\\event\\config_log_created','core','created','config_log','config_log',1310,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updatelocal_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(697,'\\core\\event\\config_log_created','core','created','config_log','config_log',1311,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_country\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(698,'\\core\\event\\config_log_created','core','created','config_log','config_log',1312,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_map_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(699,'\\core\\event\\config_log_created','core','created','config_log','config_log',1313,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_updatelocal_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(700,'\\core\\event\\config_log_created','core','created','config_log','config_log',1314,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"field_lock_lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(701,'\\core\\event\\config_log_created','core','created','config_log','config_log',1315,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_map_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(702,'\\core\\event\\config_log_created','core','created','config_log','config_log',1316,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updatelocal_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(703,'\\core\\event\\config_log_created','core','created','config_log','config_log',1317,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_description\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(704,'\\core\\event\\config_log_created','core','created','config_log','config_log',1318,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"field_map_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(705,'\\core\\event\\config_log_created','core','created','config_log','config_log',1319,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_updatelocal_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(706,'\\core\\event\\config_log_created','core','created','config_log','config_log',1320,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"field_lock_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(707,'\\core\\event\\config_log_created','core','created','config_log','config_log',1321,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_map_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(708,'\\core\\event\\config_log_created','core','created','config_log','config_log',1322,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_updatelocal_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(709,'\\core\\event\\config_log_created','core','created','config_log','config_log',1323,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"field_lock_idnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(710,'\\core\\event\\config_log_created','core','created','config_log','config_log',1324,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_map_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(711,'\\core\\event\\config_log_created','core','created','config_log','config_log',1325,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:29:\"field_updatelocal_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(712,'\\core\\event\\config_log_created','core','created','config_log','config_log',1326,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"field_lock_institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(713,'\\core\\event\\config_log_created','core','created','config_log','config_log',1327,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_map_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(714,'\\core\\event\\config_log_created','core','created','config_log','config_log',1328,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_updatelocal_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(715,'\\core\\event\\config_log_created','core','created','config_log','config_log',1329,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_department\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(716,'\\core\\event\\config_log_created','core','created','config_log','config_log',1330,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_map_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(717,'\\core\\event\\config_log_created','core','created','config_log','config_log',1331,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_updatelocal_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(718,'\\core\\event\\config_log_created','core','created','config_log','config_log',1332,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone1\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(719,'\\core\\event\\config_log_created','core','created','config_log','config_log',1333,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"field_map_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(720,'\\core\\event\\config_log_created','core','created','config_log','config_log',1334,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_updatelocal_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(721,'\\core\\event\\config_log_created','core','created','config_log','config_log',1335,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_lock_phone2\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(722,'\\core\\event\\config_log_created','core','created','config_log','config_log',1336,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"field_map_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(723,'\\core\\event\\config_log_created','core','created','config_log','config_log',1337,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"field_updatelocal_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(724,'\\core\\event\\config_log_created','core','created','config_log','config_log',1338,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"field_lock_address\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(725,'\\core\\event\\config_log_created','core','created','config_log','config_log',1339,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_map_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(726,'\\core\\event\\config_log_created','core','created','config_log','config_log',1340,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:35:\"field_updatelocal_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(727,'\\core\\event\\config_log_created','core','created','config_log','config_log',1341,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_lock_firstnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(728,'\\core\\event\\config_log_created','core','created','config_log','config_log',1342,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"field_map_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(729,'\\core\\event\\config_log_created','core','created','config_log','config_log',1343,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:34:\"field_updatelocal_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(730,'\\core\\event\\config_log_created','core','created','config_log','config_log',1344,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"field_lock_lastnamephonetic\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(731,'\\core\\event\\config_log_created','core','created','config_log','config_log',1345,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"field_map_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(732,'\\core\\event\\config_log_created','core','created','config_log','config_log',1346,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"field_updatelocal_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(733,'\\core\\event\\config_log_created','core','created','config_log','config_log',1347,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"field_lock_middlename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(734,'\\core\\event\\config_log_created','core','created','config_log','config_log',1348,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"field_map_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(735,'\\core\\event\\config_log_created','core','created','config_log','config_log',1349,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:31:\"field_updatelocal_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"oncreate\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(736,'\\core\\event\\config_log_created','core','created','config_log','config_log',1350,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"field_lock_alternatename\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"unlocked\";s:6:\"plugin\";s:15:\"auth_shibboleth\";}',1619623792,'web','65.129.132.97',NULL),(737,'\\core\\event\\config_log_created','core','created','config_log','config_log',1351,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"config_showbest\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(738,'\\core\\event\\config_log_created','core','created','config_log','config_log',1352,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"config_showbest_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(739,'\\core\\event\\config_log_created','core','created','config_log','config_log',1353,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"config_showworst\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(740,'\\core\\event\\config_log_created','core','created','config_log','config_log',1354,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"config_showworst_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(741,'\\core\\event\\config_log_created','core','created','config_log','config_log',1355,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"config_usegroups\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(742,'\\core\\event\\config_log_created','core','created','config_log','config_log',1356,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"config_usegroups_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(743,'\\core\\event\\config_log_created','core','created','config_log','config_log',1357,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"config_nameformat\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(744,'\\core\\event\\config_log_created','core','created','config_log','config_log',1358,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"config_nameformat_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(745,'\\core\\event\\config_log_created','core','created','config_log','config_log',1359,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"config_gradeformat\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(746,'\\core\\event\\config_log_created','core','created','config_log','config_log',1360,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"config_gradeformat_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(747,'\\core\\event\\config_log_created','core','created','config_log','config_log',1361,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"config_decimalpoints\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"2\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(748,'\\core\\event\\config_log_created','core','created','config_log','config_log',1362,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"config_decimalpoints_locked\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:22:\"block_activity_results\";}',1619623792,'web','65.129.132.97',NULL),(749,'\\core\\event\\config_log_created','core','created','config_log','config_log',1363,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"displaycategories\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"block_myoverview\";}',1619623792,'web','65.129.132.97',NULL),(750,'\\core\\event\\config_log_created','core','created','config_log','config_log',1364,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"layouts\";s:8:\"oldvalue\";N;s:5:\"value\";s:17:\"card,list,summary\";s:6:\"plugin\";s:16:\"block_myoverview\";}',1619623792,'web','65.129.132.97',NULL),(751,'\\core\\event\\config_log_created','core','created','config_log','config_log',1365,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:33:\"displaygroupingallincludinghidden\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:16:\"block_myoverview\";}',1619623792,'web','65.129.132.97',NULL),(752,'\\core\\event\\config_log_created','core','created','config_log','config_log',1366,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"displaygroupingall\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"block_myoverview\";}',1619623792,'web','65.129.132.97',NULL),(753,'\\core\\event\\config_log_created','core','created','config_log','config_log',1367,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"displaygroupinginprogress\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"block_myoverview\";}',1619623792,'web','65.129.132.97',NULL),(754,'\\core\\event\\config_log_created','core','created','config_log','config_log',1368,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"displaygroupingpast\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"block_myoverview\";}',1619623792,'web','65.129.132.97',NULL),(755,'\\core\\event\\config_log_created','core','created','config_log','config_log',1369,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"displaygroupingfuture\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"block_myoverview\";}',1619623792,'web','65.129.132.97',NULL),(756,'\\core\\event\\config_log_created','core','created','config_log','config_log',1370,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"displaygroupingcustomfield\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:16:\"block_myoverview\";}',1619623792,'web','65.129.132.97',NULL),(757,'\\core\\event\\config_log_created','core','created','config_log','config_log',1371,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"customfiltergrouping\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:16:\"block_myoverview\";}',1619623792,'web','65.129.132.97',NULL),(758,'\\core\\event\\config_log_created','core','created','config_log','config_log',1372,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:25:\"displaygroupingfavourites\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"block_myoverview\";}',1619623792,'web','65.129.132.97',NULL),(759,'\\core\\event\\config_log_created','core','created','config_log','config_log',1373,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"displaygroupinghidden\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"block_myoverview\";}',1619623792,'web','65.129.132.97',NULL),(760,'\\core\\event\\config_log_created','core','created','config_log','config_log',1374,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:27:\"block_course_list_adminview\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"all\";s:6:\"plugin\";N;}',1619623792,'web','65.129.132.97',NULL),(761,'\\core\\event\\config_log_created','core','created','config_log','config_log',1375,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:36:\"block_course_list_hideallcourseslink\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623792,'web','65.129.132.97',NULL),(762,'\\core\\event\\config_log_created','core','created','config_log','config_log',1376,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"block_html_allowcssclasses\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623792,'web','65.129.132.97',NULL),(763,'\\core\\event\\config_log_created','core','created','config_log','config_log',1377,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"block_online_users_timetosee\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";N;}',1619623792,'web','65.129.132.97',NULL),(764,'\\core\\event\\config_log_created','core','created','config_log','config_log',1378,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:37:\"block_online_users_onlinestatushiding\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";N;}',1619623792,'web','65.129.132.97',NULL),(765,'\\core\\event\\config_log_created','core','created','config_log','config_log',1379,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"displaycategories\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:29:\"block_recentlyaccessedcourses\";}',1619623792,'web','65.129.132.97',NULL),(766,'\\core\\event\\config_log_created','core','created','config_log','config_log',1380,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:28:\"block_rss_client_num_entries\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";N;}',1619623792,'web','65.129.132.97',NULL),(767,'\\core\\event\\config_log_created','core','created','config_log','config_log',1381,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"block_rss_client_timeout\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"30\";s:6:\"plugin\";N;}',1619623792,'web','65.129.132.97',NULL),(768,'\\core\\event\\config_log_created','core','created','config_log','config_log',1382,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"numsections1\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"22\";s:6:\"plugin\";s:19:\"block_section_links\";}',1619623792,'web','65.129.132.97',NULL),(769,'\\core\\event\\config_log_created','core','created','config_log','config_log',1383,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"incby1\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"2\";s:6:\"plugin\";s:19:\"block_section_links\";}',1619623792,'web','65.129.132.97',NULL),(770,'\\core\\event\\config_log_created','core','created','config_log','config_log',1384,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"numsections2\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"40\";s:6:\"plugin\";s:19:\"block_section_links\";}',1619623792,'web','65.129.132.97',NULL),(771,'\\core\\event\\config_log_created','core','created','config_log','config_log',1385,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"incby2\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:19:\"block_section_links\";}',1619623792,'web','65.129.132.97',NULL),(772,'\\core\\event\\config_log_created','core','created','config_log','config_log',1386,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"displaycategories\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:20:\"block_starredcourses\";}',1619623792,'web','65.129.132.97',NULL),(773,'\\core\\event\\config_log_created','core','created','config_log','config_log',1387,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"apikey\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"block_tag_youtube\";}',1619623792,'web','65.129.132.97',NULL),(774,'\\core\\event\\config_log_created','core','created','config_log','config_log',1388,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"activitytype\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"forum\";s:6:\"plugin\";s:21:\"format_singleactivity\";}',1619623792,'web','65.129.132.97',NULL),(775,'\\core\\event\\config_log_created','core','created','config_log','config_log',1389,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"issuerid\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:25:\"fileconverter_googledrive\";}',1619623792,'web','65.129.132.97',NULL),(776,'\\core\\event\\config_log_created','core','created','config_log','config_log',1390,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"pathtounoconv\";s:8:\"oldvalue\";N;s:5:\"value\";s:16:\"/usr/bin/unoconv\";s:6:\"plugin\";N;}',1619623792,'web','65.129.132.97',NULL),(777,'\\core\\event\\config_log_created','core','created','config_log','config_log',1391,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"roleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:12:\"enrol_cohort\";}',1619623792,'web','65.129.132.97',NULL),(778,'\\core\\event\\config_log_created','core','created','config_log','config_log',1392,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"unenrolaction\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:12:\"enrol_cohort\";}',1619623792,'web','65.129.132.97',NULL),(779,'\\core\\event\\config_log_created','core','created','config_log','config_log',1393,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"nosyncroleids\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"enrol_meta\";}',1619623792,'web','65.129.132.97',NULL),(780,'\\core\\event\\config_log_created','core','created','config_log','config_log',1394,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"syncall\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"enrol_meta\";}',1619623792,'web','65.129.132.97',NULL),(781,'\\core\\event\\config_log_created','core','created','config_log','config_log',1395,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"unenrolaction\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";s:10:\"enrol_meta\";}',1619623792,'web','65.129.132.97',NULL),(782,'\\core\\event\\config_log_created','core','created','config_log','config_log',1396,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"coursesort\";s:8:\"oldvalue\";N;s:5:\"value\";s:9:\"sortorder\";s:6:\"plugin\";s:10:\"enrol_meta\";}',1619623792,'web','65.129.132.97',NULL),(783,'\\core\\event\\config_log_created','core','created','config_log','config_log',1397,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"expiredaction\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";s:9:\"enrol_fee\";}',1619623792,'web','65.129.132.97',NULL),(784,'\\core\\event\\config_log_created','core','created','config_log','config_log',1398,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"status\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:9:\"enrol_fee\";}',1619623792,'web','65.129.132.97',NULL),(785,'\\core\\event\\config_log_created','core','created','config_log','config_log',1399,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"cost\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"enrol_fee\";}',1619623792,'web','65.129.132.97',NULL),(786,'\\core\\event\\config_log_created','core','created','config_log','config_log',1400,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"currency\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"USD\";s:6:\"plugin\";s:9:\"enrol_fee\";}',1619623792,'web','65.129.132.97',NULL),(787,'\\core\\event\\config_log_created','core','created','config_log','config_log',1401,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"roleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:9:\"enrol_fee\";}',1619623792,'web','65.129.132.97',NULL),(788,'\\core\\event\\config_log_created','core','created','config_log','config_log',1402,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"enrolperiod\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:9:\"enrol_fee\";}',1619623792,'web','65.129.132.97',NULL),(789,'\\core\\event\\config_log_created','core','created','config_log','config_log',1403,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"dbtype\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(790,'\\core\\event\\config_log_created','core','created','config_log','config_log',1404,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"dbhost\";s:8:\"oldvalue\";N;s:5:\"value\";s:9:\"localhost\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(791,'\\core\\event\\config_log_created','core','created','config_log','config_log',1405,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"dbuser\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(792,'\\core\\event\\config_log_created','core','created','config_log','config_log',1406,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"dbpass\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(793,'\\core\\event\\config_log_created','core','created','config_log','config_log',1407,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"dbname\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(794,'\\core\\event\\config_log_created','core','created','config_log','config_log',1408,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"dbencoding\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"utf-8\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(795,'\\core\\event\\config_log_created','core','created','config_log','config_log',1409,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"dbsetupsql\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(796,'\\core\\event\\config_log_created','core','created','config_log','config_log',1410,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"dbsybasequoting\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(797,'\\core\\event\\config_log_created','core','created','config_log','config_log',1411,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"debugdb\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(798,'\\core\\event\\config_log_created','core','created','config_log','config_log',1412,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"localcoursefield\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"idnumber\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(799,'\\core\\event\\config_log_created','core','created','config_log','config_log',1413,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"localuserfield\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"idnumber\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(800,'\\core\\event\\config_log_created','core','created','config_log','config_log',1414,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"localrolefield\";s:8:\"oldvalue\";N;s:5:\"value\";s:9:\"shortname\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(801,'\\core\\event\\config_log_created','core','created','config_log','config_log',1415,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"localcategoryfield\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"id\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(802,'\\core\\event\\config_log_created','core','created','config_log','config_log',1416,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"remoteenroltable\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(803,'\\core\\event\\config_log_created','core','created','config_log','config_log',1417,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"remotecoursefield\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(804,'\\core\\event\\config_log_created','core','created','config_log','config_log',1418,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"remoteuserfield\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(805,'\\core\\event\\config_log_created','core','created','config_log','config_log',1419,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"remoterolefield\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(806,'\\core\\event\\config_log_created','core','created','config_log','config_log',1420,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"remoteotheruserfield\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(807,'\\core\\event\\config_log_created','core','created','config_log','config_log',1421,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"defaultrole\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(808,'\\core\\event\\config_log_created','core','created','config_log','config_log',1422,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"ignorehiddencourses\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(809,'\\core\\event\\config_log_created','core','created','config_log','config_log',1423,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"unenrolaction\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(810,'\\core\\event\\config_log_created','core','created','config_log','config_log',1424,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"newcoursetable\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(811,'\\core\\event\\config_log_created','core','created','config_log','config_log',1425,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"newcoursefullname\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"fullname\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(812,'\\core\\event\\config_log_created','core','created','config_log','config_log',1426,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:18:\"newcourseshortname\";s:8:\"oldvalue\";N;s:5:\"value\";s:9:\"shortname\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(813,'\\core\\event\\config_log_created','core','created','config_log','config_log',1427,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"newcourseidnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"idnumber\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(814,'\\core\\event\\config_log_created','core','created','config_log','config_log',1428,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"newcoursecategory\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(815,'\\core\\event\\config_log_created','core','created','config_log','config_log',1429,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"defaultcategory\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(816,'\\core\\event\\config_log_created','core','created','config_log','config_log',1430,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"templatecourse\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_database\";}',1619623792,'web','65.129.132.97',NULL),(817,'\\core\\event\\config_log_created','core','created','config_log','config_log',1431,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"location\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"enrol_flatfile\";}',1619623792,'web','65.129.132.97',NULL),(818,'\\core\\event\\config_log_created','core','created','config_log','config_log',1432,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"encoding\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"UTF-8\";s:6:\"plugin\";s:14:\"enrol_flatfile\";}',1619623792,'web','65.129.132.97',NULL),(819,'\\core\\event\\config_log_created','core','created','config_log','config_log',1433,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"mailstudents\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:14:\"enrol_flatfile\";}',1619623792,'web','65.129.132.97',NULL),(820,'\\core\\event\\config_log_created','core','created','config_log','config_log',1434,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"mailteachers\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:14:\"enrol_flatfile\";}',1619623792,'web','65.129.132.97',NULL),(821,'\\core\\event\\config_log_created','core','created','config_log','config_log',1435,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"mailadmins\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:14:\"enrol_flatfile\";}',1619623792,'web','65.129.132.97',NULL),(822,'\\core\\event\\config_log_created','core','created','config_log','config_log',1436,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"unenrolaction\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";s:14:\"enrol_flatfile\";}',1619623792,'web','65.129.132.97',NULL),(823,'\\core\\event\\config_log_created','core','created','config_log','config_log',1437,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"expiredaction\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";s:14:\"enrol_flatfile\";}',1619623792,'web','65.129.132.97',NULL),(824,'\\core\\event\\config_log_created','core','created','config_log','config_log',1438,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"requirepassword\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:11:\"enrol_guest\";}',1619623792,'web','65.129.132.97',NULL),(825,'\\core\\event\\config_log_created','core','created','config_log','config_log',1439,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"usepasswordpolicy\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:11:\"enrol_guest\";}',1619623792,'web','65.129.132.97',NULL),(826,'\\core\\event\\config_log_created','core','created','config_log','config_log',1440,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"showhint\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:11:\"enrol_guest\";}',1619623792,'web','65.129.132.97',NULL),(827,'\\core\\event\\config_log_created','core','created','config_log','config_log',1441,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"defaultenrol\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:11:\"enrol_guest\";}',1619623792,'web','65.129.132.97',NULL),(828,'\\core\\event\\config_log_created','core','created','config_log','config_log',1442,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"status\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:11:\"enrol_guest\";}',1619623792,'web','65.129.132.97',NULL),(829,'\\core\\event\\config_log_created','core','created','config_log','config_log',1443,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"status_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:11:\"enrol_guest\";}',1619623792,'web','65.129.132.97',NULL),(830,'\\core\\event\\config_log_created','core','created','config_log','config_log',1444,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"imsfilelocation\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(831,'\\core\\event\\config_log_created','core','created','config_log','config_log',1445,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"logtolocation\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(832,'\\core\\event\\config_log_created','core','created','config_log','config_log',1446,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"mailadmins\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(833,'\\core\\event\\config_log_created','core','created','config_log','config_log',1447,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"createnewusers\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(834,'\\core\\event\\config_log_created','core','created','config_log','config_log',1448,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"imsupdateusers\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(835,'\\core\\event\\config_log_created','core','created','config_log','config_log',1449,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"imsdeleteusers\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(836,'\\core\\event\\config_log_created','core','created','config_log','config_log',1450,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"fixcaseusernames\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(837,'\\core\\event\\config_log_created','core','created','config_log','config_log',1451,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"fixcasepersonalnames\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(838,'\\core\\event\\config_log_created','core','created','config_log','config_log',1452,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"imssourcedidfallback\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(839,'\\core\\event\\config_log_created','core','created','config_log','config_log',1453,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"imsrolemap01\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(840,'\\core\\event\\config_log_created','core','created','config_log','config_log',1454,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"imsrolemap02\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(841,'\\core\\event\\config_log_created','core','created','config_log','config_log',1455,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"imsrolemap03\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(842,'\\core\\event\\config_log_created','core','created','config_log','config_log',1456,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"imsrolemap04\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(843,'\\core\\event\\config_log_created','core','created','config_log','config_log',1457,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"imsrolemap05\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(844,'\\core\\event\\config_log_created','core','created','config_log','config_log',1458,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"imsrolemap06\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"4\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(845,'\\core\\event\\config_log_created','core','created','config_log','config_log',1459,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"imsrolemap07\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(846,'\\core\\event\\config_log_created','core','created','config_log','config_log',1460,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"imsrolemap08\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"4\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(847,'\\core\\event\\config_log_created','core','created','config_log','config_log',1461,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"truncatecoursecodes\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(848,'\\core\\event\\config_log_created','core','created','config_log','config_log',1462,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"createnewcourses\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(849,'\\core\\event\\config_log_created','core','created','config_log','config_log',1463,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"updatecourses\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(850,'\\core\\event\\config_log_created','core','created','config_log','config_log',1464,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"createnewcategories\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(851,'\\core\\event\\config_log_created','core','created','config_log','config_log',1465,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"nestedcategories\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(852,'\\core\\event\\config_log_created','core','created','config_log','config_log',1466,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"categoryidnumber\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(853,'\\core\\event\\config_log_created','core','created','config_log','config_log',1467,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"categoryseparator\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(854,'\\core\\event\\config_log_created','core','created','config_log','config_log',1468,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"imsunenrol\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(855,'\\core\\event\\config_log_created','core','created','config_log','config_log',1469,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"imscoursemapshortname\";s:8:\"oldvalue\";N;s:5:\"value\";s:10:\"coursecode\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(856,'\\core\\event\\config_log_created','core','created','config_log','config_log',1470,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"imscoursemapfullname\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"short\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(857,'\\core\\event\\config_log_created','core','created','config_log','config_log',1471,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"imscoursemapsummary\";s:8:\"oldvalue\";N;s:5:\"value\";s:6:\"ignore\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(858,'\\core\\event\\config_log_created','core','created','config_log','config_log',1472,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"imsrestricttarget\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(859,'\\core\\event\\config_log_created','core','created','config_log','config_log',1473,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"imscapitafix\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:19:\"enrol_imsenterprise\";}',1619623792,'web','65.129.132.97',NULL),(860,'\\core\\event\\config_log_created','core','created','config_log','config_log',1474,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"expiredaction\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:12:\"enrol_manual\";}',1619623792,'web','65.129.132.97',NULL),(861,'\\core\\event\\config_log_created','core','created','config_log','config_log',1475,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"expirynotifyhour\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"6\";s:6:\"plugin\";s:12:\"enrol_manual\";}',1619623792,'web','65.129.132.97',NULL),(862,'\\core\\event\\config_log_created','core','created','config_log','config_log',1476,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"defaultenrol\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:12:\"enrol_manual\";}',1619623792,'web','65.129.132.97',NULL),(863,'\\core\\event\\config_log_created','core','created','config_log','config_log',1477,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"status\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:12:\"enrol_manual\";}',1619623792,'web','65.129.132.97',NULL),(864,'\\core\\event\\config_log_created','core','created','config_log','config_log',1478,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"roleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:12:\"enrol_manual\";}',1619623792,'web','65.129.132.97',NULL),(865,'\\core\\event\\config_log_created','core','created','config_log','config_log',1479,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"enrolstart\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"4\";s:6:\"plugin\";s:12:\"enrol_manual\";}',1619623792,'web','65.129.132.97',NULL),(866,'\\core\\event\\config_log_created','core','created','config_log','config_log',1480,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"enrolperiod\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:12:\"enrol_manual\";}',1619623792,'web','65.129.132.97',NULL),(867,'\\core\\event\\config_log_created','core','created','config_log','config_log',1481,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"expirynotify\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:12:\"enrol_manual\";}',1619623792,'web','65.129.132.97',NULL),(868,'\\core\\event\\config_log_created','core','created','config_log','config_log',1482,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"expirythreshold\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"86400\";s:6:\"plugin\";s:12:\"enrol_manual\";}',1619623792,'web','65.129.132.97',NULL),(869,'\\core\\event\\config_log_created','core','created','config_log','config_log',1483,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"roleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:10:\"enrol_mnet\";}',1619623792,'web','65.129.132.97',NULL),(870,'\\core\\event\\config_log_created','core','created','config_log','config_log',1484,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"roleid_adv\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"enrol_mnet\";}',1619623792,'web','65.129.132.97',NULL),(871,'\\core\\event\\config_log_created','core','created','config_log','config_log',1485,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"paypalbusiness\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:12:\"enrol_paypal\";}',1619623792,'web','65.129.132.97',NULL),(872,'\\core\\event\\config_log_created','core','created','config_log','config_log',1486,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"mailstudents\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:12:\"enrol_paypal\";}',1619623792,'web','65.129.132.97',NULL),(873,'\\core\\event\\config_log_created','core','created','config_log','config_log',1487,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"mailteachers\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:12:\"enrol_paypal\";}',1619623792,'web','65.129.132.97',NULL),(874,'\\core\\event\\config_log_created','core','created','config_log','config_log',1488,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"mailadmins\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:12:\"enrol_paypal\";}',1619623792,'web','65.129.132.97',NULL),(875,'\\core\\event\\config_log_created','core','created','config_log','config_log',1489,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"expiredaction\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";s:12:\"enrol_paypal\";}',1619623792,'web','65.129.132.97',NULL),(876,'\\core\\event\\config_log_created','core','created','config_log','config_log',1490,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"status\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:12:\"enrol_paypal\";}',1619623792,'web','65.129.132.97',NULL),(877,'\\core\\event\\config_log_created','core','created','config_log','config_log',1491,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"cost\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:12:\"enrol_paypal\";}',1619623792,'web','65.129.132.97',NULL),(878,'\\core\\event\\config_log_created','core','created','config_log','config_log',1492,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"currency\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"USD\";s:6:\"plugin\";s:12:\"enrol_paypal\";}',1619623792,'web','65.129.132.97',NULL),(879,'\\core\\event\\config_log_created','core','created','config_log','config_log',1493,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"roleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:12:\"enrol_paypal\";}',1619623792,'web','65.129.132.97',NULL),(880,'\\core\\event\\config_log_created','core','created','config_log','config_log',1494,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"enrolperiod\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:12:\"enrol_paypal\";}',1619623792,'web','65.129.132.97',NULL),(881,'\\core\\event\\config_log_created','core','created','config_log','config_log',1495,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"emaildisplay\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"2\";s:6:\"plugin\";s:9:\"enrol_lti\";}',1619623792,'web','65.129.132.97',NULL),(882,'\\core\\event\\config_log_created','core','created','config_log','config_log',1496,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"city\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"enrol_lti\";}',1619623792,'web','65.129.132.97',NULL),(883,'\\core\\event\\config_log_created','core','created','config_log','config_log',1497,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"country\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"enrol_lti\";}',1619623792,'web','65.129.132.97',NULL),(884,'\\core\\event\\config_log_created','core','created','config_log','config_log',1498,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"timezone\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"99\";s:6:\"plugin\";s:9:\"enrol_lti\";}',1619623792,'web','65.129.132.97',NULL),(885,'\\core\\event\\config_log_created','core','created','config_log','config_log',1499,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"lang\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"en\";s:6:\"plugin\";s:9:\"enrol_lti\";}',1619623792,'web','65.129.132.97',NULL),(886,'\\core\\event\\config_log_created','core','created','config_log','config_log',1500,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"institution\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:9:\"enrol_lti\";}',1619623792,'web','65.129.132.97',NULL),(887,'\\core\\event\\config_log_created','core','created','config_log','config_log',1501,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"requirepassword\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(888,'\\core\\event\\config_log_created','core','created','config_log','config_log',1502,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"usepasswordpolicy\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(889,'\\core\\event\\config_log_created','core','created','config_log','config_log',1503,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"showhint\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(890,'\\core\\event\\config_log_created','core','created','config_log','config_log',1504,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"expiredaction\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(891,'\\core\\event\\config_log_created','core','created','config_log','config_log',1505,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"expirynotifyhour\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"6\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(892,'\\core\\event\\config_log_created','core','created','config_log','config_log',1506,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"defaultenrol\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(893,'\\core\\event\\config_log_created','core','created','config_log','config_log',1507,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"status\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(894,'\\core\\event\\config_log_created','core','created','config_log','config_log',1508,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"newenrols\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(895,'\\core\\event\\config_log_created','core','created','config_log','config_log',1509,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"groupkey\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(896,'\\core\\event\\config_log_created','core','created','config_log','config_log',1510,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"roleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(897,'\\core\\event\\config_log_created','core','created','config_log','config_log',1511,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"enrolperiod\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(898,'\\core\\event\\config_log_created','core','created','config_log','config_log',1512,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"expirynotify\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(899,'\\core\\event\\config_log_created','core','created','config_log','config_log',1513,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"expirythreshold\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"86400\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(900,'\\core\\event\\config_log_created','core','created','config_log','config_log',1514,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"longtimenosee\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(901,'\\core\\event\\config_log_created','core','created','config_log','config_log',1515,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"maxenrolled\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(902,'\\core\\event\\config_log_created','core','created','config_log','config_log',1516,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:24:\"sendcoursewelcomemessage\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:10:\"enrol_self\";}',1619623792,'web','65.129.132.97',NULL),(903,'\\core\\event\\config_log_created','core','created','config_log','config_log',1517,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"formats\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"1,4,0\";s:6:\"plugin\";s:16:\"filter_urltolink\";}',1619623792,'web','65.129.132.97',NULL),(904,'\\core\\event\\config_log_created','core','created','config_log','config_log',1518,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"embedimages\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:16:\"filter_urltolink\";}',1619623792,'web','65.129.132.97',NULL),(905,'\\core\\event\\config_log_created','core','created','config_log','config_log',1519,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"formats\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"1,4,0\";s:6:\"plugin\";s:15:\"filter_emoticon\";}',1619623792,'web','65.129.132.97',NULL),(906,'\\core\\event\\config_log_created','core','created','config_log','config_log',1520,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"allowedsources\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"filter_displayh5p\";}',1619623792,'web','65.129.132.97',NULL),(907,'\\core\\event\\config_log_created','core','created','config_log','config_log',1521,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"httpsurl\";s:8:\"oldvalue\";N;s:5:\"value\";s:53:\"https://cdn.jsdelivr.net/npm/mathjax@2.7.8/MathJax.js\";s:6:\"plugin\";s:20:\"filter_mathjaxloader\";}',1619623792,'web','65.129.132.97',NULL),(908,'\\core\\event\\config_log_created','core','created','config_log','config_log',1522,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"texfiltercompatibility\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:20:\"filter_mathjaxloader\";}',1619623792,'web','65.129.132.97',NULL),(909,'\\core\\event\\config_log_created','core','created','config_log','config_log',1523,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"mathjaxconfig\";s:8:\"oldvalue\";N;s:5:\"value\";s:162:\"\nMathJax.Hub.Config({\n config: [\"Accessible.js\", \"Safe.js\"],\n errorSettings: { message: [\"!\"] },\n skipStartupTypeset: true,\n messageStyle: \"none\"\n});\n\";s:6:\"plugin\";s:20:\"filter_mathjaxloader\";}',1619623792,'web','65.129.132.97',NULL),(910,'\\core\\event\\config_log_created','core','created','config_log','config_log',1524,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"additionaldelimiters\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:20:\"filter_mathjaxloader\";}',1619623792,'web','65.129.132.97',NULL),(911,'\\core\\event\\config_log_created','core','created','config_log','config_log',1525,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:26:\"filter_multilang_force_old\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623792,'web','65.129.132.97',NULL),(912,'\\core\\event\\config_log_created','core','created','config_log','config_log',1526,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"latexpreamble\";s:8:\"oldvalue\";N;s:5:\"value\";s:115:\"\\usepackage[latin1]{inputenc}\n\\usepackage{amsmath}\n\\usepackage{amsfonts}\n\\RequirePackage{amsmath,amssymb,latexsym}\n\";s:6:\"plugin\";s:10:\"filter_tex\";}',1619623792,'web','65.129.132.97',NULL),(913,'\\core\\event\\config_log_created','core','created','config_log','config_log',1527,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"latexbackground\";s:8:\"oldvalue\";N;s:5:\"value\";s:7:\"#FFFFFF\";s:6:\"plugin\";s:10:\"filter_tex\";}',1619623792,'web','65.129.132.97',NULL),(914,'\\core\\event\\config_log_created','core','created','config_log','config_log',1528,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"density\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"120\";s:6:\"plugin\";s:10:\"filter_tex\";}',1619623792,'web','65.129.132.97',NULL),(915,'\\core\\event\\config_log_created','core','created','config_log','config_log',1529,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"pathlatex\";s:8:\"oldvalue\";N;s:5:\"value\";s:14:\"/usr/bin/latex\";s:6:\"plugin\";s:10:\"filter_tex\";}',1619623792,'web','65.129.132.97',NULL),(916,'\\core\\event\\config_log_created','core','created','config_log','config_log',1530,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"pathdvips\";s:8:\"oldvalue\";N;s:5:\"value\";s:14:\"/usr/bin/dvips\";s:6:\"plugin\";s:10:\"filter_tex\";}',1619623792,'web','65.129.132.97',NULL),(917,'\\core\\event\\config_log_created','core','created','config_log','config_log',1531,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"pathconvert\";s:8:\"oldvalue\";N;s:5:\"value\";s:16:\"/usr/bin/convert\";s:6:\"plugin\";s:10:\"filter_tex\";}',1619623792,'web','65.129.132.97',NULL),(918,'\\core\\event\\config_log_created','core','created','config_log','config_log',1532,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"pathdvisvgm\";s:8:\"oldvalue\";N;s:5:\"value\";s:16:\"/usr/bin/dvisvgm\";s:6:\"plugin\";s:10:\"filter_tex\";}',1619623792,'web','65.129.132.97',NULL),(919,'\\core\\event\\config_log_created','core','created','config_log','config_log',1533,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"pathmimetex\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:10:\"filter_tex\";}',1619623792,'web','65.129.132.97',NULL),(920,'\\core\\event\\config_log_created','core','created','config_log','config_log',1534,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"convertformat\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"gif\";s:6:\"plugin\";s:10:\"filter_tex\";}',1619623793,'web','65.129.132.97',NULL),(921,'\\core\\event\\config_log_created','core','created','config_log','config_log',1535,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"filter_censor_badwords\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(922,'\\core\\event\\config_log_created','core','created','config_log','config_log',1536,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"messaging_support_email\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:22:\"local_chat_attachments\";}',1619623793,'web','65.129.132.97',NULL),(923,'\\core\\event\\config_log_created','core','created','config_log','config_log',1537,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"messaging_url\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:22:\"local_chat_attachments\";}',1619623793,'web','65.129.132.97',NULL),(924,'\\core\\event\\config_log_created','core','created','config_log','config_log',1538,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"messaging_token\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:22:\"local_chat_attachments\";}',1619623793,'web','65.129.132.97',NULL),(925,'\\core\\event\\config_log_created','core','created','config_log','config_log',1539,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"dbdriver\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(926,'\\core\\event\\config_log_created','core','created','config_log','config_log',1540,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"dbhost\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(927,'\\core\\event\\config_log_created','core','created','config_log','config_log',1541,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"dbuser\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(928,'\\core\\event\\config_log_created','core','created','config_log','config_log',1542,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"dbpass\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(929,'\\core\\event\\config_log_created','core','created','config_log','config_log',1543,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"dbname\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(930,'\\core\\event\\config_log_created','core','created','config_log','config_log',1544,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"dbtable\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(931,'\\core\\event\\config_log_created','core','created','config_log','config_log',1545,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"dbpersist\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(932,'\\core\\event\\config_log_created','core','created','config_log','config_log',1546,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"dbsocket\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(933,'\\core\\event\\config_log_created','core','created','config_log','config_log',1547,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"dbport\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(934,'\\core\\event\\config_log_created','core','created','config_log','config_log',1548,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"dbschema\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(935,'\\core\\event\\config_log_created','core','created','config_log','config_log',1549,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"dbcollation\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(936,'\\core\\event\\config_log_created','core','created','config_log','config_log',1550,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"dbhandlesoptions\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(937,'\\core\\event\\config_log_created','core','created','config_log','config_log',1551,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"buffersize\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"50\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(938,'\\core\\event\\config_log_created','core','created','config_log','config_log',1552,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"jsonformat\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(939,'\\core\\event\\config_log_created','core','created','config_log','config_log',1553,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"logguests\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(940,'\\core\\event\\config_log_created','core','created','config_log','config_log',1554,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"includelevels\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"1,2,0\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(941,'\\core\\event\\config_log_created','core','created','config_log','config_log',1555,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"includeactions\";s:8:\"oldvalue\";N;s:5:\"value\";s:7:\"c,r,u,d\";s:6:\"plugin\";s:17:\"logstore_database\";}',1619623793,'web','65.129.132.97',NULL),(942,'\\core\\event\\config_log_created','core','created','config_log','config_log',1556,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"loglegacy\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:15:\"logstore_legacy\";}',1619623793,'web','65.129.132.97',NULL),(943,'\\core\\event\\config_log_created','core','created','config_log','config_log',1557,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"logguests\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(944,'\\core\\event\\config_log_created','core','created','config_log','config_log',1558,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"loglifetime\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(945,'\\core\\event\\config_log_created','core','created','config_log','config_log',1559,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"logguests\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:17:\"logstore_standard\";}',1619623793,'web','65.129.132.97',NULL),(946,'\\core\\event\\config_log_created','core','created','config_log','config_log',1560,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"jsonformat\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:17:\"logstore_standard\";}',1619623793,'web','65.129.132.97',NULL),(947,'\\core\\event\\config_log_created','core','created','config_log','config_log',1561,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"loglifetime\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:17:\"logstore_standard\";}',1619623793,'web','65.129.132.97',NULL),(948,'\\core\\event\\config_log_created','core','created','config_log','config_log',1562,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"buffersize\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"50\";s:6:\"plugin\";s:17:\"logstore_standard\";}',1619623793,'web','65.129.132.97',NULL),(949,'\\core\\event\\config_log_created','core','created','config_log','config_log',1563,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"useserver\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:16:\"mlbackend_python\";}',1619623793,'web','65.129.132.97',NULL),(950,'\\core\\event\\config_log_created','core','created','config_log','config_log',1564,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"host\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:16:\"mlbackend_python\";}',1619623793,'web','65.129.132.97',NULL),(951,'\\core\\event\\config_log_created','core','created','config_log','config_log',1565,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"port\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:16:\"mlbackend_python\";}',1619623793,'web','65.129.132.97',NULL),(952,'\\core\\event\\config_log_created','core','created','config_log','config_log',1566,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:6:\"secure\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:16:\"mlbackend_python\";}',1619623793,'web','65.129.132.97',NULL),(953,'\\core\\event\\config_log_created','core','created','config_log','config_log',1567,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"username\";s:8:\"oldvalue\";N;s:5:\"value\";s:7:\"default\";s:6:\"plugin\";s:16:\"mlbackend_python\";}',1619623793,'web','65.129.132.97',NULL),(954,'\\core\\event\\config_log_created','core','created','config_log','config_log',1568,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"password\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:16:\"mlbackend_python\";}',1619623793,'web','65.129.132.97',NULL),(955,'\\core\\event\\config_log_created','core','created','config_log','config_log',1569,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"videoextensions\";s:8:\"oldvalue\";N;s:5:\"value\";s:33:\"html_video,media_source,.f4v,.flv\";s:6:\"plugin\";s:13:\"media_videojs\";}',1619623793,'web','65.129.132.97',NULL),(956,'\\core\\event\\config_log_created','core','created','config_log','config_log',1570,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"audioextensions\";s:8:\"oldvalue\";N;s:5:\"value\";s:10:\"html_audio\";s:6:\"plugin\";s:13:\"media_videojs\";}',1619623793,'web','65.129.132.97',NULL),(957,'\\core\\event\\config_log_created','core','created','config_log','config_log',1571,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:4:\"rtmp\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:13:\"media_videojs\";}',1619623793,'web','65.129.132.97',NULL),(958,'\\core\\event\\config_log_created','core','created','config_log','config_log',1572,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"useflash\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:13:\"media_videojs\";}',1619623793,'web','65.129.132.97',NULL),(959,'\\core\\event\\config_log_created','core','created','config_log','config_log',1573,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"youtube\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:13:\"media_videojs\";}',1619623793,'web','65.129.132.97',NULL),(960,'\\core\\event\\config_log_created','core','created','config_log','config_log',1574,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"videocssclass\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"video-js\";s:6:\"plugin\";s:13:\"media_videojs\";}',1619623793,'web','65.129.132.97',NULL),(961,'\\core\\event\\config_log_created','core','created','config_log','config_log',1575,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"audiocssclass\";s:8:\"oldvalue\";N;s:5:\"value\";s:8:\"video-js\";s:6:\"plugin\";s:13:\"media_videojs\";}',1619623793,'web','65.129.132.97',NULL),(962,'\\core\\event\\config_log_created','core','created','config_log','config_log',1576,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"limitsize\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:13:\"media_videojs\";}',1619623793,'web','65.129.132.97',NULL),(963,'\\core\\event\\config_log_created','core','created','config_log','config_log',1577,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"surcharge\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:12:\"paygw_paypal\";}',1619623793,'web','65.129.132.97',NULL),(964,'\\core\\event\\config_log_created','core','created','config_log','config_log',1578,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"answerhowmany\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:17:\"qtype_multichoice\";}',1619623793,'web','65.129.132.97',NULL),(965,'\\core\\event\\config_log_created','core','created','config_log','config_log',1579,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"shuffleanswers\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:17:\"qtype_multichoice\";}',1619623793,'web','65.129.132.97',NULL),(966,'\\core\\event\\config_log_created','core','created','config_log','config_log',1580,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"answernumbering\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"abc\";s:6:\"plugin\";s:17:\"qtype_multichoice\";}',1619623793,'web','65.129.132.97',NULL),(967,'\\core\\event\\config_log_created','core','created','config_log','config_log',1581,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:7:\"toolbar\";s:8:\"oldvalue\";N;s:5:\"value\";s:355:\"collapse = collapse\nstyle1 = title, bold, italic\nlist = unorderedlist, orderedlist, indent\nlinks = link\nfiles = emojipicker, image, media, recordrtc, managefiles, h5p\nstyle2 = underline, strike, subscript, superscript\nalign = align\ninsert = equation, charmap, table, clear\nundo = undo\naccessibility = accessibilitychecker, accessibilityhelper\nother = html\";s:6:\"plugin\";s:11:\"editor_atto\";}',1619623793,'web','65.129.132.97',NULL),(968,'\\core\\event\\config_log_created','core','created','config_log','config_log',1582,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"autosavefrequency\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"60\";s:6:\"plugin\";s:11:\"editor_atto\";}',1619623793,'web','65.129.132.97',NULL),(969,'\\core\\event\\config_log_created','core','created','config_log','config_log',1583,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"showgroups\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"5\";s:6:\"plugin\";s:13:\"atto_collapse\";}',1619623793,'web','65.129.132.97',NULL),(970,'\\core\\event\\config_log_created','core','created','config_log','config_log',1584,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"librarygroup1\";s:8:\"oldvalue\";N;s:5:\"value\";s:244:\"\n\\cdot\n\\times\n\\ast\n\\div\n\\diamond\n\\pm\n\\mp\n\\oplus\n\\ominus\n\\otimes\n\\oslash\n\\odot\n\\circ\n\\bullet\n\\asymp\n\\equiv\n\\subseteq\n\\supseteq\n\\leq\n\\geq\n\\preceq\n\\succeq\n\\sim\n\\simeq\n\\approx\n\\subset\n\\supset\n\\ll\n\\gg\n\\prec\n\\succ\n\\infty\n\\in\n\\ni\n\\forall\n\\exists\n\\neq\n\";s:6:\"plugin\";s:13:\"atto_equation\";}',1619623793,'web','65.129.132.97',NULL),(971,'\\core\\event\\config_log_created','core','created','config_log','config_log',1585,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"librarygroup2\";s:8:\"oldvalue\";N;s:5:\"value\";s:155:\"\n\\leftarrow\n\\rightarrow\n\\uparrow\n\\downarrow\n\\leftrightarrow\n\\nearrow\n\\searrow\n\\swarrow\n\\nwarrow\n\\Leftarrow\n\\Rightarrow\n\\Uparrow\n\\Downarrow\n\\Leftrightarrow\n\";s:6:\"plugin\";s:13:\"atto_equation\";}',1619623793,'web','65.129.132.97',NULL),(972,'\\core\\event\\config_log_created','core','created','config_log','config_log',1586,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"librarygroup3\";s:8:\"oldvalue\";N;s:5:\"value\";s:210:\"\n\\alpha\n\\beta\n\\gamma\n\\delta\n\\epsilon\n\\zeta\n\\eta\n\\theta\n\\iota\n\\kappa\n\\lambda\n\\mu\n\\nu\n\\xi\n\\pi\n\\rho\n\\sigma\n\\tau\n\\upsilon\n\\phi\n\\chi\n\\psi\n\\omega\n\\Gamma\n\\Delta\n\\Theta\n\\Lambda\n\\Xi\n\\Pi\n\\Sigma\n\\Upsilon\n\\Phi\n\\Psi\n\\Omega\n\";s:6:\"plugin\";s:13:\"atto_equation\";}',1619623793,'web','65.129.132.97',NULL),(973,'\\core\\event\\config_log_created','core','created','config_log','config_log',1587,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"librarygroup4\";s:8:\"oldvalue\";N;s:5:\"value\";s:239:\"\n\\sum{a,b}\n\\sqrt[a]{b+c}\n\\int_{a}^{b}{c}\n\\iint_{a}^{b}{c}\n\\iiint_{a}^{b}{c}\n\\oint{a}\n(a)\n[a]\n\\lbrace{a}\\rbrace\n\\left| \\begin{matrix} a_1 & a_2 \\ a_3 & a_4 \\end{matrix} \\right|\n\\frac{a}{b+c}\n\\vec{a}\n\\binom {a} {b}\n{a \\brack b}\n{a \\brace b}\n\";s:6:\"plugin\";s:13:\"atto_equation\";}',1619623793,'web','65.129.132.97',NULL),(974,'\\core\\event\\config_log_created','core','created','config_log','config_log',1588,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"allowedtypes\";s:8:\"oldvalue\";N;s:5:\"value\";s:4:\"both\";s:6:\"plugin\";s:14:\"atto_recordrtc\";}',1619623793,'web','65.129.132.97',NULL),(975,'\\core\\event\\config_log_created','core','created','config_log','config_log',1589,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"audiobitrate\";s:8:\"oldvalue\";N;s:5:\"value\";s:6:\"128000\";s:6:\"plugin\";s:14:\"atto_recordrtc\";}',1619623793,'web','65.129.132.97',NULL),(976,'\\core\\event\\config_log_created','core','created','config_log','config_log',1590,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"videobitrate\";s:8:\"oldvalue\";N;s:5:\"value\";s:7:\"2500000\";s:6:\"plugin\";s:14:\"atto_recordrtc\";}',1619623793,'web','65.129.132.97',NULL),(977,'\\core\\event\\config_log_created','core','created','config_log','config_log',1591,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"timelimit\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"120\";s:6:\"plugin\";s:14:\"atto_recordrtc\";}',1619623793,'web','65.129.132.97',NULL),(978,'\\core\\event\\config_log_created','core','created','config_log','config_log',1592,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"allowborders\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"atto_table\";}',1619623793,'web','65.129.132.97',NULL),(979,'\\core\\event\\config_log_created','core','created','config_log','config_log',1593,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"allowbackgroundcolour\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"atto_table\";}',1619623793,'web','65.129.132.97',NULL),(980,'\\core\\event\\config_log_created','core','created','config_log','config_log',1594,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"allowwidth\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:10:\"atto_table\";}',1619623793,'web','65.129.132.97',NULL),(981,'\\core\\event\\config_log_created','core','created','config_log','config_log',1595,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"customtoolbar\";s:8:\"oldvalue\";N;s:5:\"value\";s:378:\"wrap,formatselect,wrap,bold,italic,wrap,bullist,numlist,wrap,link,unlink,wrap,image\n\nundo,redo,wrap,underline,strikethrough,sub,sup,wrap,justifyleft,justifycenter,justifyright,wrap,outdent,indent,wrap,forecolor,backcolor,wrap,ltr,rtl\n\nfontselect,fontsizeselect,wrap,code,search,replace,wrap,nonbreaking,charmap,table,wrap,cleanup,removeformat,pastetext,pasteword,wrap,fullscreen\";s:6:\"plugin\";s:14:\"editor_tinymce\";}',1619623793,'web','65.129.132.97',NULL),(982,'\\core\\event\\config_log_created','core','created','config_log','config_log',1596,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"fontselectlist\";s:8:\"oldvalue\";N;s:5:\"value\";s:338:\"Trebuchet=Trebuchet MS,Verdana,Arial,Helvetica,sans-serif;Arial=arial,helvetica,sans-serif;Courier New=courier new,courier,monospace;Georgia=georgia,times new roman,times,serif;Tahoma=tahoma,arial,helvetica,sans-serif;Times New Roman=times new roman,times,serif;Verdana=verdana,arial,helvetica,sans-serif;Impact=impact;Wingdings=wingdings\";s:6:\"plugin\";s:14:\"editor_tinymce\";}',1619623793,'web','65.129.132.97',NULL),(983,'\\core\\event\\config_log_created','core','created','config_log','config_log',1597,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"customconfig\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:14:\"editor_tinymce\";}',1619623793,'web','65.129.132.97',NULL),(984,'\\core\\event\\config_log_created','core','created','config_log','config_log',1598,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"requireemoticon\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:22:\"tinymce_moodleemoticon\";}',1619623793,'web','65.129.132.97',NULL),(985,'\\core\\event\\config_log_created','core','created','config_log','config_log',1599,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"spellengine\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:20:\"tinymce_spellchecker\";}',1619623793,'web','65.129.132.97',NULL),(986,'\\core\\event\\config_log_created','core','created','config_log','config_log',1600,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"spelllanguagelist\";s:8:\"oldvalue\";N;s:5:\"value\";s:118:\"+English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv\";s:6:\"plugin\";s:20:\"tinymce_spellchecker\";}',1619623793,'web','65.129.132.97',NULL),(987,'\\core\\event\\config_log_created','core','created','config_log','config_log',1601,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"profileroles\";s:8:\"oldvalue\";N;s:5:\"value\";s:5:\"5,4,3\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(988,'\\core\\event\\config_log_created','core','created','config_log','config_log',1602,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:13:\"coursecontact\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"3\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(989,'\\core\\event\\config_log_created','core','created','config_log','config_log',1603,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"frontpage\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"6\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(990,'\\core\\event\\config_log_created','core','created','config_log','config_log',1604,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"frontpageloggedin\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"6\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(991,'\\core\\event\\config_log_created','core','created','config_log','config_log',1605,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"maxcategorydepth\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"2\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(992,'\\core\\event\\config_log_created','core','created','config_log','config_log',1606,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"frontpagecourselimit\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"200\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(993,'\\core\\event\\config_log_created','core','created','config_log','config_log',1607,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"commentsperpage\";s:8:\"oldvalue\";N;s:5:\"value\";s:2:\"15\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(994,'\\core\\event\\config_log_created','core','created','config_log','config_log',1608,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"defaultfrontpageroleid\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"8\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(995,'\\core\\event\\config_log_created','core','created','config_log','config_log',1609,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"messageinbound_enabled\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(996,'\\core\\event\\config_log_created','core','created','config_log','config_log',1610,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"messageinbound_mailbox\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(997,'\\core\\event\\config_log_created','core','created','config_log','config_log',1611,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"messageinbound_domain\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(998,'\\core\\event\\config_log_created','core','created','config_log','config_log',1612,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:19:\"messageinbound_host\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(999,'\\core\\event\\config_log_created','core','created','config_log','config_log',1613,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"messageinbound_hostssl\";s:8:\"oldvalue\";N;s:5:\"value\";s:3:\"ssl\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(1000,'\\core\\event\\config_log_created','core','created','config_log','config_log',1614,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"messageinbound_hostuser\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(1001,'\\core\\event\\config_log_created','core','created','config_log','config_log',1615,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:23:\"messageinbound_hostpass\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(1002,'\\core\\event\\config_log_created','core','created','config_log','config_log',1616,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:22:\"enablemobilewebservice\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(1003,'\\core\\event\\config_log_created','core','created','config_log','config_log',1617,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"apppolicy\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1004,'\\core\\event\\config_log_created','core','created','config_log','config_log',1618,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"typeoflogin\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"1\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1005,'\\core\\event\\config_log_created','core','created','config_log','config_log',1619,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:10:\"qrcodetype\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"2\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1006,'\\core\\event\\config_log_created','core','created','config_log','config_log',1620,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"forcedurlscheme\";s:8:\"oldvalue\";N;s:5:\"value\";s:12:\"moodlemobile\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1007,'\\core\\event\\config_log_created','core','created','config_log','config_log',1621,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:14:\"minimumversion\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1008,'\\core\\event\\config_log_created','core','created','config_log','config_log',1622,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"mobilecssurl\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";N;}',1619623793,'web','65.129.132.97',NULL),(1009,'\\core\\event\\config_log_created','core','created','config_log','config_log',1623,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"enablesmartappbanners\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1010,'\\core\\event\\config_log_created','core','created','config_log','config_log',1624,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:8:\"iosappid\";s:8:\"oldvalue\";N;s:5:\"value\";s:9:\"633359593\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1011,'\\core\\event\\config_log_created','core','created','config_log','config_log',1625,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:12:\"androidappid\";s:8:\"oldvalue\";N;s:5:\"value\";s:23:\"com.moodle.moodlemobile\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1012,'\\core\\event\\config_log_created','core','created','config_log','config_log',1626,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:9:\"setuplink\";s:8:\"oldvalue\";N;s:5:\"value\";s:34:\"https://download.moodle.org/mobile\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1013,'\\core\\event\\config_log_created','core','created','config_log','config_log',1627,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:11:\"forcelogout\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1014,'\\core\\event\\config_log_created','core','created','config_log','config_log',1628,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"disabledfeatures\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1015,'\\core\\event\\config_log_created','core','created','config_log','config_log',1629,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"custommenuitems\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1016,'\\core\\event\\config_log_created','core','created','config_log','config_log',1630,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:21:\"filetypeexclusionlist\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1017,'\\core\\event\\config_log_created','core','created','config_log','config_log',1631,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:17:\"customlangstrings\";s:8:\"oldvalue\";N;s:5:\"value\";s:0:\"\";s:6:\"plugin\";s:11:\"tool_mobile\";}',1619623793,'web','65.129.132.97',NULL),(1018,'\\core\\event\\config_log_created','core','created','config_log','config_log',1632,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:15:\"enablemoodlenet\";s:8:\"oldvalue\";N;s:5:\"value\";s:1:\"0\";s:6:\"plugin\";s:14:\"tool_moodlenet\";}',1619623793,'web','65.129.132.97',NULL),(1019,'\\core\\event\\config_log_created','core','created','config_log','config_log',1633,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:20:\"defaultmoodlenetname\";s:8:\"oldvalue\";N;s:5:\"value\";s:17:\"MoodleNet Central\";s:6:\"plugin\";s:14:\"tool_moodlenet\";}',1619623793,'web','65.129.132.97',NULL),(1020,'\\core\\event\\config_log_created','core','created','config_log','config_log',1634,'c',0,1,10,0,2,0,NULL,0,'a:4:{s:4:\"name\";s:16:\"defaultmoodlenet\";s:8:\"oldvalue\";N;s:5:\"value\";s:18:\"https://moodle.net\";s:6:\"plugin\";s:14:\"tool_moodlenet\";}',1619623793,'web','65.129.132.97',NULL),(1021,'\\core\\event\\config_log_created','core','created','config_log','config_log',1635,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"timezone\",\"oldvalue\":null,\"value\":\"Europe\\/London\",\"plugin\":null}',1619623812,'web','65.129.132.97',NULL),(1022,'\\core\\event\\config_log_created','core','created','config_log','config_log',1636,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"registerauth\",\"oldvalue\":null,\"value\":\"\",\"plugin\":null}',1619623812,'web','65.129.132.97',NULL),(1023,'\\core\\event\\dashboard_viewed','core','viewed','dashboard',NULL,NULL,'r',0,5,30,2,2,0,2,0,'null',1619623884,'web','65.129.132.97',NULL),(1024,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,0,1,NULL,0,'null',1619623982,'web','67.177.209.214',NULL),(1025,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,0,1,NULL,0,'null',1619624006,'web','67.177.209.214',NULL),(1026,'\\core\\event\\user_created','core','created','user','user',3,'c',0,25,30,3,2,0,3,0,'null',1619624264,'web','65.129.132.97',NULL),(1027,'\\core\\event\\user_created','core','created','user','user',4,'c',0,26,30,4,2,0,4,0,'null',1619624308,'web','65.129.132.97',NULL),(1028,'\\core\\event\\user_created','core','created','user','user',5,'c',0,27,30,5,2,0,5,0,'null',1619624342,'web','65.129.132.97',NULL),(1029,'\\core\\event\\user_created','core','created','user','user',6,'c',0,28,30,6,2,0,6,0,'null',1619624369,'web','65.129.132.97',NULL),(1030,'\\core\\event\\user_profile_viewed','core','viewed','user_profile','user',6,'r',0,28,30,6,2,0,6,0,'null',1619624392,'web','65.129.132.97',NULL),(1031,'\\core\\event\\user_list_viewed','core','viewed','user_list','course',1,'r',0,2,50,1,2,1,NULL,0,'{\"courseshortname\":\"short site name\",\"coursefullname\":\"full site name\"}',1619624400,'web','65.129.132.97',NULL),(1032,'\\core\\event\\user_profile_viewed','core','viewed','user_profile','user',6,'r',0,28,30,6,2,0,6,0,'null',1619624406,'web','65.129.132.97',NULL),(1033,'\\core\\event\\user_list_viewed','core','viewed','user_list','course',1,'r',0,2,50,1,2,1,NULL,0,'{\"courseshortname\":\"short site name\",\"coursefullname\":\"full site name\"}',1619624409,'web','65.129.132.97',NULL),(1034,'\\core\\event\\role_assigned','core','assigned','role','role',1,'c',0,2,50,1,2,1,6,0,'{\"id\":1,\"component\":\"\",\"itemid\":0}',1619624454,'web','65.129.132.97',NULL),(1035,'\\core\\event\\user_profile_viewed','core','viewed','user_profile','user',6,'r',0,28,30,6,2,0,6,0,'null',1619624516,'web','65.129.132.97',NULL),(1036,'\\core\\event\\user_list_viewed','core','viewed','user_list','course',1,'r',0,2,50,1,2,1,NULL,0,'{\"courseshortname\":\"short site name\",\"coursefullname\":\"full site name\"}',1619624522,'web','65.129.132.97',NULL),(1037,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,0,1,NULL,0,'null',1619624539,'web','34.229.19.21',NULL),(1038,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,0,1,NULL,0,'null',1619624539,'web','34.229.19.21',NULL),(1039,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,0,1,NULL,0,'null',1619624542,'web','54.89.250.183',NULL),(1040,'\\core\\event\\user_profile_viewed','core','viewed','user_profile','user',6,'r',0,28,30,6,2,0,6,0,'null',1619624552,'web','65.129.132.97',NULL),(1041,'\\core\\event\\user_profile_viewed','core','viewed','user_profile','user',6,'r',0,28,30,6,2,0,6,0,'null',1619624564,'web','65.129.132.97',NULL),(1042,'\\core\\event\\user_profile_viewed','core','viewed','user_profile','user',6,'r',0,28,30,6,2,0,6,0,'null',1619624567,'web','65.129.132.97',NULL),(1043,'\\core\\event\\user_profile_viewed','core','viewed','user_profile','user',6,'r',0,28,30,6,2,0,6,0,'null',1619624568,'web','65.129.132.97',NULL),(1044,'\\core\\event\\user_list_viewed','core','viewed','user_list','course',1,'r',0,2,50,1,2,1,NULL,0,'{\"courseshortname\":\"short site name\",\"coursefullname\":\"full site name\"}',1619624571,'web','65.129.132.97',NULL),(1045,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,0,1,NULL,0,'null',1619624619,'web','3.88.16.136',NULL),(1046,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619624641,'web','65.129.132.97',NULL),(1047,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619624645,'web','65.129.132.97',NULL),(1048,'\\core\\event\\course_section_created','core','created','course_section','course_sections',1,'c',1,2,50,1,2,1,NULL,0,'{\"sectionnum\":1}',1619624645,'web','65.129.132.97',NULL),(1049,'\\core\\event\\course_section_updated','core','updated','course_section','course_sections',1,'u',1,2,50,1,2,1,NULL,0,'{\"sectionnum\":\"1\"}',1619624713,'web','65.129.132.97',NULL),(1050,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619624713,'web','65.129.132.97',NULL),(1051,'\\core\\event\\course_section_updated','core','updated','course_section','course_sections',1,'u',1,2,50,1,2,1,NULL,0,'{\"sectionnum\":\"1\"}',1619624739,'web','65.129.132.97',NULL),(1052,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619624739,'web','65.129.132.97',NULL),(1053,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619624751,'web','65.129.132.97',NULL),(1054,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619624758,'web','65.129.132.97',NULL),(1055,'\\core\\event\\config_log_created','core','created','config_log','config_log',1637,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"logo\",\"oldvalue\":\"\",\"value\":\"\\/Droplet Text - Teal - Transparent.png\",\"plugin\":\"core_admin\"}',1619624888,'web','65.129.132.97',NULL),(1056,'\\core\\event\\config_log_created','core','created','config_log','config_log',1638,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"logocompact\",\"oldvalue\":\"\",\"value\":\"\\/Droplet - Teal - Transparent.png\",\"plugin\":\"core_admin\"}',1619624888,'web','65.129.132.97',NULL),(1057,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619624953,'web','65.129.132.97',NULL),(1058,'\\core\\event\\dashboard_viewed','core','viewed','dashboard',NULL,NULL,'r',0,5,30,2,2,0,2,0,'null',1619624960,'web','65.129.132.97',NULL),(1059,'\\core\\event\\dashboards_reset','core','reset','dashboards',NULL,NULL,'u',0,1,10,0,2,0,NULL,0,'{\"private\":1,\"pagetype\":\"my-index\"}',1619625189,'web','65.129.132.97',NULL),(1060,'\\core\\event\\config_log_created','core','created','config_log','config_log',1639,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"customusermenuitems\",\"oldvalue\":\"grades,grades|\\/grade\\/report\\/mygrades.php|t\\/grades\\nmessages,message|\\/message\\/index.php|t\\/message\\npreferences,moodle|\\/user\\/preferences.php|t\\/preferences\",\"value\":\"grades,grades|\\/grade\\/report\\/mygrades.php|t\\/grades\\r\\nmessages,message|\\/message\\/index.php|t\\/message\\r\\npreferences,moodle|\\/user\\/preferences.php|t\\/preferences\",\"plugin\":null}',1619625300,'web','65.129.132.97',NULL),(1061,'\\core\\event\\config_log_created','core','created','config_log','config_log',1640,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"brandcolor\",\"oldvalue\":\"\",\"value\":\"#A4175B\",\"plugin\":\"theme_boost\"}',1619625300,'web','65.129.132.97',NULL),(1062,'\\core\\event\\config_log_created','core','created','config_log','config_log',1641,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"status\",\"oldvalue\":\"1\",\"value\":\"0\",\"plugin\":\"enrol_self\"}',1619625519,'web','65.129.132.97',NULL),(1063,'\\core\\event\\config_log_created','core','created','config_log','config_log',1642,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"newenrols\",\"oldvalue\":\"1\",\"value\":\"0\",\"plugin\":\"enrol_self\"}',1619625519,'web','65.129.132.97',NULL),(1064,'\\core\\event\\config_log_created','core','created','config_log','config_log',1643,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"status\",\"oldvalue\":\"0\",\"value\":\"1\",\"plugin\":\"enrol_self\"}',1619625569,'web','65.129.132.97',NULL),(1065,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',3,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:addinstance\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1066,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:addinstance\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1067,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',5,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:view\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1068,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',4,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:view\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1069,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',3,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:view\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1070,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:view\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1071,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',4,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manage\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1072,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',3,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manage\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1073,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manage\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1074,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',5,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:receiveissue\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1075,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',4,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:viewreport\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1076,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',3,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:viewreport\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1077,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:viewreport\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1078,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:viewallcertificates\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1079,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',4,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:verifycertificate\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1080,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',3,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:verifycertificate\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1081,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:verifycertificate\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1082,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:verifyallcertificates\",\"oldpermission\":0,\"permission\":1}',1619625659,'web','65.129.132.97',NULL),(1083,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',3,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manageemailstudents\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1084,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manageemailstudents\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1085,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',3,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manageemailteachers\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1086,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manageemailteachers\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1087,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',3,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manageemailothers\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1088,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manageemailothers\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1089,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',3,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manageverifyany\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1090,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manageverifyany\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1091,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',3,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:managerequiredtime\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1092,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:managerequiredtime\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1093,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',3,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manageprotection\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1094,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',1,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"mod\\/customcert:manageprotection\",\"oldpermission\":0,\"permission\":\"1\"}',1619625659,'web','65.129.132.97',NULL),(1095,'\\core\\event\\config_log_created','core','created','config_log','config_log',1644,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"verifycertificate\",\"oldvalue\":null,\"value\":\"\",\"plugin\":\"customcert\"}',1619625665,'web','65.129.132.97',NULL),(1096,'\\core\\event\\config_log_created','core','created','config_log','config_log',1645,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"managetemplates\",\"oldvalue\":null,\"value\":\"\",\"plugin\":\"customcert\"}',1619625665,'web','65.129.132.97',NULL),(1097,'\\core\\event\\config_log_created','core','created','config_log','config_log',1646,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"uploadimage\",\"oldvalue\":null,\"value\":\"\",\"plugin\":\"customcert\"}',1619625665,'web','65.129.132.97',NULL),(1098,'\\core\\event\\email_failed','core','failed','email',NULL,NULL,'c',0,1,10,0,2,0,2,0,'{\"subject\":\"Moodle updates are available (http:\\/\\/learn.dev-defaults.derekmaxson.com)\",\"message\":\"Update notifications\\n\\nThere is a newer Moodle version available!\\nMoodle 3.10.3+ (Build: 20210427) Version 2020110903.07 (Stable version)\\n\\nSee http:\\/\\/learn.dev-defaults.derekmaxson.com\\/admin\\/index.php for more\\ndetails\\n\\nIt is strongly recommended that you update your site to the latest version\\nto obtain all recent security and bug fixes.\\n\\nYour Moodle site http:\\/\\/learn.dev-defaults.derekmaxson.com is configured to\\nautomatically check for available updates. You are receiving this message\\nas the administrator of the site. You can disable automatic checks for\\navailable updates in Site administration \\/ Server \\/ Update notifications or\\ncustomise the delivery of this message via your preferences page.\",\"errorinfo\":\"Could not instantiate mail function.\"}',1619625666,'cli',NULL,NULL),(1099,'\\core\\event\\notification_sent','core','sent','notification','notifications',1,'c',0,1,10,0,2,0,2,0,'{\"courseid\":\"1\"}',1619625666,'cli',NULL,NULL),(1100,'\\core\\event\\config_log_created','core','created','config_log','config_log',1647,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"verifyallcertificates\",\"oldvalue\":null,\"value\":\"0\",\"plugin\":\"customcert\"}',1619625678,'web','65.129.132.97',NULL),(1101,'\\core\\event\\config_log_created','core','created','config_log','config_log',1648,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"showposxy\",\"oldvalue\":null,\"value\":\"0\",\"plugin\":\"customcert\"}',1619625678,'web','65.129.132.97',NULL),(1102,'\\core\\event\\config_log_created','core','created','config_log','config_log',1649,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"emailstudents\",\"oldvalue\":null,\"value\":\"0\",\"plugin\":\"customcert\"}',1619625678,'web','65.129.132.97',NULL),(1103,'\\core\\event\\config_log_created','core','created','config_log','config_log',1650,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"emailteachers\",\"oldvalue\":null,\"value\":\"0\",\"plugin\":\"customcert\"}',1619625678,'web','65.129.132.97',NULL),(1104,'\\core\\event\\config_log_created','core','created','config_log','config_log',1651,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"emailothers\",\"oldvalue\":null,\"value\":\"\",\"plugin\":\"customcert\"}',1619625678,'web','65.129.132.97',NULL),(1105,'\\core\\event\\config_log_created','core','created','config_log','config_log',1652,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"verifyany\",\"oldvalue\":null,\"value\":\"0\",\"plugin\":\"customcert\"}',1619625678,'web','65.129.132.97',NULL),(1106,'\\core\\event\\config_log_created','core','created','config_log','config_log',1653,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"requiredtime\",\"oldvalue\":null,\"value\":\"0\",\"plugin\":\"customcert\"}',1619625678,'web','65.129.132.97',NULL),(1107,'\\core\\event\\config_log_created','core','created','config_log','config_log',1654,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"protection_print\",\"oldvalue\":null,\"value\":\"0\",\"plugin\":\"customcert\"}',1619625678,'web','65.129.132.97',NULL),(1108,'\\core\\event\\config_log_created','core','created','config_log','config_log',1655,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"protection_modify\",\"oldvalue\":null,\"value\":\"0\",\"plugin\":\"customcert\"}',1619625678,'web','65.129.132.97',NULL),(1109,'\\core\\event\\config_log_created','core','created','config_log','config_log',1656,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"protection_copy\",\"oldvalue\":null,\"value\":\"0\",\"plugin\":\"customcert\"}',1619625678,'web','65.129.132.97',NULL),(1110,'\\core\\event\\capability_assigned','core','assigned','capability','role_capabilities',7,'u',0,1,10,0,2,0,NULL,0,'{\"capability\":\"webservice\\/rest:use\",\"oldpermission\":0,\"permission\":1}',1619625777,'web','65.129.132.97',NULL),(1111,'\\core\\event\\config_log_created','core','created','config_log','config_log',1657,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"enablemobilewebservice\",\"oldvalue\":\"0\",\"value\":\"1\",\"plugin\":null}',1619625777,'web','65.129.132.97',NULL),(1112,'\\core\\event\\config_log_created','core','created','config_log','config_log',1658,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"apppolicy\",\"oldvalue\":\"\",\"value\":\"https:\\/\\/www.relaytrust.org\\/thewell\\/privacypolicy.html\",\"plugin\":\"tool_mobile\"}',1619626061,'web','65.129.132.97',NULL),(1113,'\\core\\event\\config_log_created','core','created','config_log','config_log',1659,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"forcedurlscheme\",\"oldvalue\":\"moodlemobile\",\"value\":\"org.relaytrust.thewell\",\"plugin\":\"tool_mobile\"}',1619626061,'web','65.129.132.97',NULL),(1114,'\\core\\event\\config_log_created','core','created','config_log','config_log',1660,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"enablesmartappbanners\",\"oldvalue\":\"0\",\"value\":\"1\",\"plugin\":\"tool_mobile\"}',1619626061,'web','65.129.132.97',NULL),(1115,'\\core\\event\\config_log_created','core','created','config_log','config_log',1661,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"iosappid\",\"oldvalue\":\"633359593\",\"value\":\"\",\"plugin\":\"tool_mobile\"}',1619626061,'web','65.129.132.97',NULL),(1116,'\\core\\event\\config_log_created','core','created','config_log','config_log',1662,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"androidappid\",\"oldvalue\":\"com.moodle.moodlemobile\",\"value\":\"org.relaytrust.thewell\",\"plugin\":\"tool_mobile\"}',1619626061,'web','65.129.132.97',NULL),(1117,'\\core\\event\\config_log_created','core','created','config_log','config_log',1663,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"setuplink\",\"oldvalue\":\"https:\\/\\/download.moodle.org\\/mobile\",\"value\":\"https:\\/\\/www.relaytrust.org\\/thewell\\/thewellapp.html\",\"plugin\":\"tool_mobile\"}',1619626061,'web','65.129.132.97',NULL),(1118,'\\core\\event\\config_log_created','core','created','config_log','config_log',1664,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"disabledfeatures\",\"oldvalue\":\"\",\"value\":\"$mmLoginEmailSignup,NoDelegate_ForgottenPassword,$mmSideMenuDelegate_mmaFrontpage,$mmSideMenuDelegate_mmaCalendar,$mmSideMenuDelegate_mmaNotifications,$mmSideMenuDelegate_mmaGrades,$mmSideMenuDelegate_mmaCompetency,CoreMainMenuDelegate_AddonBlog,CoreMainMenuDelegate_CoreTag,$mmSideMenuDelegate_website,$mmSideMenuDelegate_help,CoreCourseOptionsDelegate_AddonBlog,CoreUserDelegate_AddonBlog:blogs,$mmUserDelegate_mmaMessages:blockContact\",\"plugin\":\"tool_mobile\"}',1619626061,'web','65.129.132.97',NULL),(1119,'\\core\\event\\config_log_created','core','created','config_log','config_log',1665,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"custommenuitems\",\"oldvalue\":\"\",\"value\":\"Get Resources from The Well|http:\\/\\/thewell|browser\\r\\nHelp|internal link in Well Device|embedded\\r\\nAbout The Well|internal link in Well Device|embedded\",\"plugin\":\"tool_mobile\"}',1619626271,'web','65.129.132.97',NULL),(1120,'\\core\\event\\dashboard_viewed','core','viewed','dashboard',NULL,NULL,'r',0,5,30,2,2,0,2,0,'null',1619626357,'web','65.129.132.97',NULL),(1121,'\\core\\event\\config_log_created','core','created','config_log','config_log',1666,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"downloadcontentsitedefault\",\"oldvalue\":\"0\",\"value\":\"1\",\"plugin\":\"moodlecourse\"}',1619626699,'web','65.129.132.97',NULL),(1122,'\\core\\event\\config_log_created','core','created','config_log','config_log',1667,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"courseduration\",\"oldvalue\":\"31536000\",\"value\":\"15552000\",\"plugin\":\"moodlecourse\"}',1619626699,'web','65.129.132.97',NULL),(1123,'\\core\\event\\config_log_created','core','created','config_log','config_log',1668,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"downloadcoursecontentallowed\",\"oldvalue\":\"0\",\"value\":\"1\",\"plugin\":null}',1619626786,'web','65.129.132.97',NULL),(1124,'\\core\\event\\config_log_created','core','created','config_log','config_log',1669,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"maxsizeperdownloadcoursefile\",\"oldvalue\":\"52428800\",\"value\":\"536870912\",\"plugin\":null}',1619626786,'web','65.129.132.97',NULL),(1125,'\\core\\event\\user_login_failed','core','failed','user_login',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"username\":\"admin\",\"reason\":3}',1619626834,'web','65.129.132.97',NULL),(1126,'\\core\\event\\user_login_failed','core','failed','user_login',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"username\":\"admin\",\"reason\":3}',1619626846,'web','65.129.132.97',NULL),(1127,'\\core\\event\\user_login_failed','core','failed','user_login',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"username\":\"admin\",\"reason\":3}',1619626854,'web','65.129.132.97',NULL),(1128,'\\core\\event\\user_profile_viewed','core','viewed','user_profile','user',2,'r',0,5,30,2,2,0,2,0,'null',1619626871,'web','65.129.132.97',NULL),(1129,'\\core\\event\\user_updated','core','updated','user','user',2,'u',0,5,30,2,2,0,2,0,'null',1619626917,'web','65.129.132.97',NULL),(1130,'\\core\\event\\user_profile_viewed','core','viewed','user_profile','user',2,'r',0,5,30,2,2,0,2,0,'null',1619626917,'web','65.129.132.97',NULL),(1131,'\\core\\event\\user_login_failed','core','failed','user_login',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"username\":\"admin\",\"reason\":3}',1619626928,'web','65.129.132.97',NULL),(1132,'\\core\\event\\user_login_failed','core','failed','user_login',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"username\":\"admin\",\"reason\":3}',1619626934,'web','65.129.132.97',NULL),(1133,'\\core\\event\\user_login_failed','core','failed','user_login',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"username\":\"admin\",\"reason\":3}',1619626942,'web','65.129.132.97',NULL),(1134,'\\core\\event\\dashboard_viewed','core','viewed','dashboard',NULL,NULL,'r',0,5,30,2,2,0,2,0,'null',1619626973,'web','65.129.132.97',NULL),(1135,'\\core\\event\\user_loggedout','core','loggedout','user','user',2,'r',0,1,10,0,2,0,NULL,0,'{\"sessionid\":\"j47vb36c46i4t072g05h7c0tci\"}',1619626977,'web','65.129.132.97',NULL),(1136,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,0,1,NULL,0,'null',1619626977,'web','65.129.132.97',NULL),(1137,'\\core\\event\\user_loggedin','core','loggedin','user','user',2,'r',0,1,10,0,2,0,NULL,0,'{\"username\":\"admin\"}',1619626991,'web','65.129.132.97',NULL),(1138,'\\core\\event\\dashboard_viewed','core','viewed','dashboard',NULL,NULL,'r',0,5,30,2,2,0,2,0,'null',1619626992,'web','65.129.132.97',NULL),(1139,'\\core\\event\\webservice_token_created','core','created','webservice_token','external_tokens',1,'c',0,1,10,0,2,0,2,0,'{\"auto\":true}',1619627006,'web','65.129.132.97',NULL),(1140,'\\core\\event\\webservice_token_sent','core','sent','webservice_token','external_tokens',1,'r',0,1,10,0,2,0,NULL,0,'null',1619627006,'web','65.129.132.97',NULL),(1141,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_webservice_get_site_info\"}',1619627006,'ws','65.129.132.97',NULL),(1142,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"tool_mobile_get_config\"}',1619627011,'ws','65.129.132.97',NULL),(1143,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"tool_mobile_call_external_functions\"}',1619627011,'ws','65.129.132.97',NULL),(1144,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_user_add_user_device\"}',1619627012,'ws','65.129.132.97',NULL),(1145,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"message_airnotifier_get_user_devices\"}',1619627012,'ws','65.129.132.97',NULL),(1146,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"tool_mobile_call_external_functions\"}',1619627012,'ws','65.129.132.97',NULL),(1147,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619627012,'ws','65.129.132.97',NULL),(1148,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"tool_mobile_call_external_functions\"}',1619627012,'ws','65.129.132.97',NULL),(1149,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_enrol_get_users_courses\"}',1619627014,'ws','65.129.132.97',NULL),(1150,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"tool_mobile_call_external_functions\"}',1619627015,'ws','65.129.132.97',NULL),(1151,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"tool_mobile_call_external_functions\"}',1619627050,'ws','65.129.132.97',NULL),(1152,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_block_get_dashboard_blocks\"}',1619627122,'ws','65.129.132.97',NULL),(1153,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_enrol_get_users_courses\"}',1619627123,'ws','65.129.132.97',NULL),(1154,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_calendar_get_action_events_by_timesort\"}',1619627123,'ws','65.129.132.97',NULL),(1155,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_course_view_course\"}',1619627135,'ws','65.129.132.97',NULL),(1156,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619627135,'ws','65.129.132.97',NULL),(1157,'\\core\\event\\config_log_created','core','created','config_log','config_log',1670,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"custommenuitems\",\"oldvalue\":\"Get Resources from The Well|http:\\/\\/thewell|browser\\r\\nHelp|internal link in Well Device|embedded\\r\\nAbout The Well|internal link in Well Device|embedded\",\"value\":\"Get Resources from The Well|http:\\/\\/thewell|browser\\r\\nAbout The Well|internal link in Well Device|embedded\",\"plugin\":\"tool_mobile\"}',1619627174,'web','65.129.132.97',NULL),(1158,'\\core\\event\\config_log_created','core','created','config_log','config_log',1671,'c',0,1,10,0,2,0,NULL,0,'{\"name\":\"custommenuitems\",\"oldvalue\":\"Get Resources from The Well|http:\\/\\/thewell|browser\\r\\nAbout The Well|internal link in Well Device|embedded\",\"value\":\"Get Resources from The Well|http:\\/\\/thewell|browser\\r\\nHelp|internal link in Well|embedded\\r\\nAbout The Well|internal link in Well Device|embedded\",\"plugin\":\"tool_mobile\"}',1619627241,'web','65.129.132.97',NULL),(1159,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_webservice_get_site_info\"}',1619627269,'ws','65.129.132.97',NULL),(1160,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"tool_mobile_call_external_functions\"}',1619627270,'ws','65.129.132.97',NULL),(1161,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_course_view_course\"}',1619627271,'ws','65.129.132.97',NULL),(1162,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619627271,'ws','65.129.132.97',NULL),(1163,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"tool_mobile_call_external_functions\"}',1619627271,'ws','65.129.132.97',NULL),(1164,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_course_view_course\"}',1619627571,'ws','65.129.132.97',NULL),(1165,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619627571,'ws','65.129.132.97',NULL),(1166,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,0,1,NULL,0,'null',1619628106,'web','67.177.209.214',NULL),(1167,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"tool_mobile_call_external_functions\"}',1619628192,'ws','65.129.132.97',NULL),(1168,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_course_view_course\"}',1619628618,'ws','65.129.132.97',NULL),(1169,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619628618,'ws','65.129.132.97',NULL),(1170,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"tool_mobile_call_external_functions\"}',1619628764,'ws','65.129.132.97',NULL),(1171,'\\core\\event\\webservice_function_called','core','called','webservice_function',NULL,NULL,'r',0,1,10,0,2,0,NULL,0,'{\"function\":\"core_course_view_course\"}',1619628920,'ws','65.129.132.97',NULL),(1172,'\\core\\event\\course_viewed','core','viewed','course',NULL,NULL,'r',2,2,50,1,2,1,NULL,0,'null',1619628920,'ws','65.129.132.97',NULL),(1173,'\\core\\event\\dashboard_viewed','core','viewed','dashboard',NULL,NULL,'r',0,5,30,2,2,0,2,0,'null',1619629897,'web','65.129.132.97',NULL),(1174,'\\core\\event\\dashboard_viewed','core','viewed','dashboard',NULL,NULL,'r',0,5,30,2,2,0,2,0,'null',1619629910,'web','65.129.132.97',NULL); -/*!40000 ALTER TABLE `mdl_logstore_standard_log` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_lti` --- - -DROP TABLE IF EXISTS `mdl_lti`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_lti` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `introformat` smallint(4) DEFAULT 0, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `typeid` bigint(10) DEFAULT NULL, - `toolurl` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `securetoolurl` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `instructorchoicesendname` tinyint(1) DEFAULT NULL, - `instructorchoicesendemailaddr` tinyint(1) DEFAULT NULL, - `instructorchoiceallowroster` tinyint(1) DEFAULT NULL, - `instructorchoiceallowsetting` tinyint(1) DEFAULT NULL, - `instructorcustomparameters` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `instructorchoiceacceptgrades` tinyint(1) DEFAULT NULL, - `grade` bigint(10) NOT NULL DEFAULT 100, - `launchcontainer` tinyint(2) NOT NULL DEFAULT 1, - `resourcekey` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `password` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `debuglaunch` tinyint(1) NOT NULL DEFAULT 0, - `showtitlelaunch` tinyint(1) NOT NULL DEFAULT 0, - `showdescriptionlaunch` tinyint(1) NOT NULL DEFAULT 0, - `servicesalt` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `icon` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `secureicon` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_lti_cou_ix` (`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table contains Basic LTI activities instances'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_lti` --- - -LOCK TABLES `mdl_lti` WRITE; -/*!40000 ALTER TABLE `mdl_lti` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_lti` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_lti_access_tokens` --- - -DROP TABLE IF EXISTS `mdl_lti_access_tokens`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_lti_access_tokens` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `typeid` bigint(10) NOT NULL, - `scope` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `token` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `validuntil` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `lastaccess` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_ltiaccetoke_tok_uix` (`token`), - KEY `mdl_ltiaccetoke_typ_ix` (`typeid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Security tokens for accessing of LTI services'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_lti_access_tokens` --- - -LOCK TABLES `mdl_lti_access_tokens` WRITE; -/*!40000 ALTER TABLE `mdl_lti_access_tokens` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_lti_access_tokens` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_lti_submission` --- - -DROP TABLE IF EXISTS `mdl_lti_submission`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_lti_submission` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `ltiid` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `datesubmitted` bigint(10) NOT NULL, - `dateupdated` bigint(10) NOT NULL, - `gradepercent` decimal(10,5) NOT NULL, - `originalgrade` decimal(10,5) NOT NULL, - `launchid` bigint(10) NOT NULL, - `state` tinyint(2) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_ltisubm_lti_ix` (`ltiid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Keeps track of individual submissions for LTI activities.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_lti_submission` --- - -LOCK TABLES `mdl_lti_submission` WRITE; -/*!40000 ALTER TABLE `mdl_lti_submission` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_lti_submission` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_lti_tool_proxies` --- - -DROP TABLE IF EXISTS `mdl_lti_tool_proxies`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_lti_tool_proxies` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Tool Provider', - `regurl` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `state` tinyint(2) NOT NULL DEFAULT 1, - `guid` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `secret` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `vendorcode` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `capabilityoffered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `serviceoffered` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `toolproxy` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `createdby` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_ltitoolprox_gui_uix` (`guid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='LTI tool proxy registrations'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_lti_tool_proxies` --- - -LOCK TABLES `mdl_lti_tool_proxies` WRITE; -/*!40000 ALTER TABLE `mdl_lti_tool_proxies` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_lti_tool_proxies` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_lti_tool_settings` --- - -DROP TABLE IF EXISTS `mdl_lti_tool_settings`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_lti_tool_settings` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `toolproxyid` bigint(10) NOT NULL, - `typeid` bigint(10) DEFAULT NULL, - `course` bigint(10) DEFAULT NULL, - `coursemoduleid` bigint(10) DEFAULT NULL, - `settings` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_ltitoolsett_too_ix` (`toolproxyid`), - KEY `mdl_ltitoolsett_typ_ix` (`typeid`), - KEY `mdl_ltitoolsett_cou_ix` (`course`), - KEY `mdl_ltitoolsett_cou2_ix` (`coursemoduleid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='LTI tool setting values'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_lti_tool_settings` --- - -LOCK TABLES `mdl_lti_tool_settings` WRITE; -/*!40000 ALTER TABLE `mdl_lti_tool_settings` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_lti_tool_settings` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_lti_types` --- - -DROP TABLE IF EXISTS `mdl_lti_types`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_lti_types` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'basiclti Activity', - `baseurl` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `tooldomain` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `state` tinyint(2) NOT NULL DEFAULT 2, - `course` bigint(10) NOT NULL, - `coursevisible` tinyint(1) NOT NULL DEFAULT 0, - `ltiversion` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `clientid` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `toolproxyid` bigint(10) DEFAULT NULL, - `enabledcapability` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `parameter` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `icon` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `secureicon` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `createdby` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_ltitype_cli_uix` (`clientid`), - KEY `mdl_ltitype_cou_ix` (`course`), - KEY `mdl_ltitype_too_ix` (`tooldomain`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Basic LTI pre-configured activities'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_lti_types` --- - -LOCK TABLES `mdl_lti_types` WRITE; -/*!40000 ALTER TABLE `mdl_lti_types` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_lti_types` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_lti_types_config` --- - -DROP TABLE IF EXISTS `mdl_lti_types_config`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_lti_types_config` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `typeid` bigint(10) NOT NULL, - `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_ltitypeconf_typ_ix` (`typeid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Basic LTI types configuration'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_lti_types_config` --- - -LOCK TABLES `mdl_lti_types_config` WRITE; -/*!40000 ALTER TABLE `mdl_lti_types_config` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_lti_types_config` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_ltiservice_gradebookservices` --- - -DROP TABLE IF EXISTS `mdl_ltiservice_gradebookservices`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_ltiservice_gradebookservices` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `gradeitemid` bigint(10) NOT NULL, - `courseid` bigint(10) NOT NULL, - `toolproxyid` bigint(10) DEFAULT NULL, - `typeid` bigint(10) DEFAULT NULL, - `baseurl` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `ltilinkid` bigint(10) DEFAULT NULL, - `resourceid` varchar(512) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `tag` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_ltisgrad_lti_ix` (`ltilinkid`), - KEY `mdl_ltisgrad_gracou_ix` (`gradeitemid`,`courseid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This file records the grade items created by the LTI Gradebo'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_ltiservice_gradebookservices` --- - -LOCK TABLES `mdl_ltiservice_gradebookservices` WRITE; -/*!40000 ALTER TABLE `mdl_ltiservice_gradebookservices` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_ltiservice_gradebookservices` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_message` --- - -DROP TABLE IF EXISTS `mdl_message`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_message` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `useridfrom` bigint(10) NOT NULL DEFAULT 0, - `useridto` bigint(10) NOT NULL DEFAULT 0, - `subject` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `fullmessage` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `fullmessageformat` smallint(4) DEFAULT 0, - `fullmessagehtml` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `smallmessage` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `notification` tinyint(1) DEFAULT 0, - `contexturl` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `contexturlname` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timeuserfromdeleted` bigint(10) NOT NULL DEFAULT 0, - `timeusertodeleted` bigint(10) NOT NULL DEFAULT 0, - `component` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `eventtype` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `customdata` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_mess_useusetimtim_ix` (`useridfrom`,`useridto`,`timeuserfromdeleted`,`timeusertodeleted`), - KEY `mdl_mess_usetimnot_ix` (`useridfrom`,`timeuserfromdeleted`,`notification`), - KEY `mdl_mess_usetimnot2_ix` (`useridto`,`timeusertodeleted`,`notification`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores all unread messages'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_message` --- - -LOCK TABLES `mdl_message` WRITE; -/*!40000 ALTER TABLE `mdl_message` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_message` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_message_airnotifier_devices` --- - -DROP TABLE IF EXISTS `mdl_message_airnotifier_devices`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_message_airnotifier_devices` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userdeviceid` bigint(10) NOT NULL, - `enable` tinyint(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_messairndevi_use_uix` (`userdeviceid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Store information about the devices registered in Airnotifie'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_message_airnotifier_devices` --- - -LOCK TABLES `mdl_message_airnotifier_devices` WRITE; -/*!40000 ALTER TABLE `mdl_message_airnotifier_devices` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_message_airnotifier_devices` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_message_contact_requests` --- - -DROP TABLE IF EXISTS `mdl_message_contact_requests`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_message_contact_requests` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL, - `requesteduserid` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_messcontrequ_usereq_uix` (`userid`,`requesteduserid`), - KEY `mdl_messcontrequ_use_ix` (`userid`), - KEY `mdl_messcontrequ_req_ix` (`requesteduserid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Maintains list of contact requests between users'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_message_contact_requests` --- - -LOCK TABLES `mdl_message_contact_requests` WRITE; -/*!40000 ALTER TABLE `mdl_message_contact_requests` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_message_contact_requests` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_message_contacts` --- - -DROP TABLE IF EXISTS `mdl_message_contacts`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_message_contacts` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL, - `contactid` bigint(10) NOT NULL, - `timecreated` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_messcont_usecon_uix` (`userid`,`contactid`), - KEY `mdl_messcont_use_ix` (`userid`), - KEY `mdl_messcont_con_ix` (`contactid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Maintains lists of contacts between users'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_message_contacts` --- - -LOCK TABLES `mdl_message_contacts` WRITE; -/*!40000 ALTER TABLE `mdl_message_contacts` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_message_contacts` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_message_conversation_actions` --- - -DROP TABLE IF EXISTS `mdl_message_conversation_actions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_message_conversation_actions` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL, - `conversationid` bigint(10) NOT NULL, - `action` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_messconvacti_use_ix` (`userid`), - KEY `mdl_messconvacti_con_ix` (`conversationid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores all per-user actions on individual conversations'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_message_conversation_actions` --- - -LOCK TABLES `mdl_message_conversation_actions` WRITE; -/*!40000 ALTER TABLE `mdl_message_conversation_actions` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_message_conversation_actions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_message_conversation_members` --- - -DROP TABLE IF EXISTS `mdl_message_conversation_members`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_message_conversation_members` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `conversationid` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_messconvmemb_con_ix` (`conversationid`), - KEY `mdl_messconvmemb_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores all members in a conversations'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_message_conversation_members` --- - -LOCK TABLES `mdl_message_conversation_members` WRITE; -/*!40000 ALTER TABLE `mdl_message_conversation_members` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_message_conversation_members` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_message_conversations` --- - -DROP TABLE IF EXISTS `mdl_message_conversations`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_message_conversations` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `type` bigint(10) NOT NULL DEFAULT 1, - `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `convhash` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `component` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `itemtype` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `itemid` bigint(10) DEFAULT NULL, - `contextid` bigint(10) DEFAULT NULL, - `enabled` tinyint(1) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_messconv_typ_ix` (`type`), - KEY `mdl_messconv_con_ix` (`convhash`), - KEY `mdl_messconv_comiteitecon_ix` (`component`,`itemtype`,`itemid`,`contextid`), - KEY `mdl_messconv_con2_ix` (`contextid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores all message conversations'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_message_conversations` --- - -LOCK TABLES `mdl_message_conversations` WRITE; -/*!40000 ALTER TABLE `mdl_message_conversations` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_message_conversations` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_message_email_messages` --- - -DROP TABLE IF EXISTS `mdl_message_email_messages`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_message_email_messages` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `useridto` bigint(10) NOT NULL, - `conversationid` bigint(10) NOT NULL, - `messageid` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_messemaimess_use_ix` (`useridto`), - KEY `mdl_messemaimess_con_ix` (`conversationid`), - KEY `mdl_messemaimess_mes_ix` (`messageid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Keeps track of what emails to send in an email digest'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_message_email_messages` --- - -LOCK TABLES `mdl_message_email_messages` WRITE; -/*!40000 ALTER TABLE `mdl_message_email_messages` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_message_email_messages` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_message_popup` --- - -DROP TABLE IF EXISTS `mdl_message_popup`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_message_popup` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `messageid` bigint(10) NOT NULL, - `isread` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_messpopu_mesisr_uix` (`messageid`,`isread`), - KEY `mdl_messpopu_isr_ix` (`isread`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Keep state of notifications for the popup message processor'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_message_popup` --- - -LOCK TABLES `mdl_message_popup` WRITE; -/*!40000 ALTER TABLE `mdl_message_popup` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_message_popup` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_message_popup_notifications` --- - -DROP TABLE IF EXISTS `mdl_message_popup_notifications`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_message_popup_notifications` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `notificationid` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_messpopunoti_not_ix` (`notificationid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='List of notifications to display in the message output popup'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_message_popup_notifications` --- - -LOCK TABLES `mdl_message_popup_notifications` WRITE; -/*!40000 ALTER TABLE `mdl_message_popup_notifications` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_message_popup_notifications` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_message_processors` --- - -DROP TABLE IF EXISTS `mdl_message_processors`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_message_processors` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(166) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `enabled` tinyint(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='List of message output plugins'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_message_processors` --- - -LOCK TABLES `mdl_message_processors` WRITE; -/*!40000 ALTER TABLE `mdl_message_processors` DISABLE KEYS */; -INSERT INTO `mdl_message_processors` VALUES (1,'airnotifier',1),(2,'email',1),(3,'jabber',1),(4,'popup',1); -/*!40000 ALTER TABLE `mdl_message_processors` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_message_providers` --- - -DROP TABLE IF EXISTS `mdl_message_providers`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_message_providers` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `component` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `capability` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_messprov_comnam_uix` (`component`,`name`) -) ENGINE=InnoDB AUTO_INCREMENT=41 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table stores the message providers (modules and core sy'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_message_providers` --- - -LOCK TABLES `mdl_message_providers` WRITE; -/*!40000 ALTER TABLE `mdl_message_providers` DISABLE KEYS */; -INSERT INTO `mdl_message_providers` VALUES (1,'notices','moodle','moodle/site:config'),(2,'errors','moodle','moodle/site:config'),(3,'availableupdate','moodle','moodle/site:config'),(4,'instantmessage','moodle',NULL),(5,'backup','moodle','moodle/site:config'),(6,'courserequested','moodle','moodle/site:approvecourse'),(7,'courserequestapproved','moodle','moodle/course:request'),(8,'courserequestrejected','moodle','moodle/course:request'),(9,'coursecompleted','moodle',NULL),(10,'badgerecipientnotice','moodle','moodle/badges:earnbadge'),(11,'badgecreatornotice','moodle',NULL),(12,'competencyplancomment','moodle',NULL),(13,'competencyusercompcomment','moodle',NULL),(14,'insights','moodle',NULL),(15,'messagecontactrequests','moodle',NULL),(16,'asyncbackupnotification','moodle',NULL),(17,'gradenotifications','moodle',NULL),(18,'infected','moodle','moodle/site:config'),(19,'assign_notification','mod_assign',NULL),(20,'assignment_updates','mod_assignment',NULL),(21,'submission','mod_feedback',NULL),(22,'message','mod_feedback',NULL),(23,'posts','mod_forum',NULL),(24,'digests','mod_forum',NULL),(25,'graded_essay','mod_lesson',NULL),(26,'submission','mod_quiz','mod/quiz:emailnotifysubmission'),(27,'confirmation','mod_quiz','mod/quiz:emailconfirmsubmission'),(28,'attempt_overdue','mod_quiz','mod/quiz:emailwarnoverdue'),(29,'flatfile_enrolment','enrol_flatfile',NULL),(30,'imsenterprise_enrolment','enrol_imsenterprise',NULL),(31,'expiry_notification','enrol_manual',NULL),(32,'paypal_enrolment','enrol_paypal',NULL),(33,'expiry_notification','enrol_self',NULL),(34,'contactdataprotectionofficer','tool_dataprivacy','tool/dataprivacy:managedatarequests'),(35,'datarequestprocessingresults','tool_dataprivacy',NULL),(36,'notifyexceptions','tool_dataprivacy','tool/dataprivacy:managedatarequests'),(37,'invalidrecipienthandler','tool_messageinbound',NULL),(38,'messageprocessingerror','tool_messageinbound',NULL),(39,'messageprocessingsuccess','tool_messageinbound',NULL),(40,'notification','tool_monitor','tool/monitor:subscribe'); -/*!40000 ALTER TABLE `mdl_message_providers` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_message_read` --- - -DROP TABLE IF EXISTS `mdl_message_read`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_message_read` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `useridfrom` bigint(10) NOT NULL DEFAULT 0, - `useridto` bigint(10) NOT NULL DEFAULT 0, - `subject` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `fullmessage` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `fullmessageformat` smallint(4) DEFAULT 0, - `fullmessagehtml` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `smallmessage` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `notification` tinyint(1) DEFAULT 0, - `contexturl` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `contexturlname` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timeread` bigint(10) NOT NULL DEFAULT 0, - `timeuserfromdeleted` bigint(10) NOT NULL DEFAULT 0, - `timeusertodeleted` bigint(10) NOT NULL DEFAULT 0, - `component` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `eventtype` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_messread_useusetimtim_ix` (`useridfrom`,`useridto`,`timeuserfromdeleted`,`timeusertodeleted`), - KEY `mdl_messread_nottim_ix` (`notification`,`timeread`), - KEY `mdl_messread_usetimnot_ix` (`useridfrom`,`timeuserfromdeleted`,`notification`), - KEY `mdl_messread_usetimnot2_ix` (`useridto`,`timeusertodeleted`,`notification`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores all messages that have been read'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_message_read` --- - -LOCK TABLES `mdl_message_read` WRITE; -/*!40000 ALTER TABLE `mdl_message_read` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_message_read` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_message_user_actions` --- - -DROP TABLE IF EXISTS `mdl_message_user_actions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_message_user_actions` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL, - `messageid` bigint(10) NOT NULL, - `action` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_messuseracti_usemesact_uix` (`userid`,`messageid`,`action`), - KEY `mdl_messuseracti_use_ix` (`userid`), - KEY `mdl_messuseracti_mes_ix` (`messageid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores all per-user actions on individual messages'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_message_user_actions` --- - -LOCK TABLES `mdl_message_user_actions` WRITE; -/*!40000 ALTER TABLE `mdl_message_user_actions` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_message_user_actions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_message_users_blocked` --- - -DROP TABLE IF EXISTS `mdl_message_users_blocked`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_message_users_blocked` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL, - `blockeduserid` bigint(10) NOT NULL, - `timecreated` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_messuserbloc_useblo_uix` (`userid`,`blockeduserid`), - KEY `mdl_messuserbloc_use_ix` (`userid`), - KEY `mdl_messuserbloc_blo_ix` (`blockeduserid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Maintains lists of blocked users'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_message_users_blocked` --- - -LOCK TABLES `mdl_message_users_blocked` WRITE; -/*!40000 ALTER TABLE `mdl_message_users_blocked` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_message_users_blocked` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_messageinbound_datakeys` --- - -DROP TABLE IF EXISTS `mdl_messageinbound_datakeys`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_messageinbound_datakeys` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `handler` bigint(10) NOT NULL, - `datavalue` bigint(10) NOT NULL, - `datakey` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `expires` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_messdata_handat_uix` (`handler`,`datavalue`), - KEY `mdl_messdata_han_ix` (`handler`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Inbound Message data item secret keys.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_messageinbound_datakeys` --- - -LOCK TABLES `mdl_messageinbound_datakeys` WRITE; -/*!40000 ALTER TABLE `mdl_messageinbound_datakeys` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_messageinbound_datakeys` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_messageinbound_handlers` --- - -DROP TABLE IF EXISTS `mdl_messageinbound_handlers`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_messageinbound_handlers` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `classname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `defaultexpiration` bigint(10) NOT NULL DEFAULT 86400, - `validateaddress` tinyint(1) NOT NULL DEFAULT 1, - `enabled` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_messhand_cla_uix` (`classname`) -) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Inbound Message Handler definitions.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_messageinbound_handlers` --- - -LOCK TABLES `mdl_messageinbound_handlers` WRITE; -/*!40000 ALTER TABLE `mdl_messageinbound_handlers` DISABLE KEYS */; -INSERT INTO `mdl_messageinbound_handlers` VALUES (1,'core','\\core\\message\\inbound\\private_files_handler',0,1,0),(2,'mod_forum','\\mod_forum\\message\\inbound\\reply_handler',604800,1,0),(3,'tool_messageinbound','\\tool_messageinbound\\message\\inbound\\invalid_recipient_handler',604800,0,1); -/*!40000 ALTER TABLE `mdl_messageinbound_handlers` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_messageinbound_messagelist` --- - -DROP TABLE IF EXISTS `mdl_messageinbound_messagelist`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_messageinbound_messagelist` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `messageid` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `userid` bigint(10) NOT NULL, - `address` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `timecreated` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_messmess_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='A list of message IDs for existing replies'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_messageinbound_messagelist` --- - -LOCK TABLES `mdl_messageinbound_messagelist` WRITE; -/*!40000 ALTER TABLE `mdl_messageinbound_messagelist` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_messageinbound_messagelist` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_messages` --- - -DROP TABLE IF EXISTS `mdl_messages`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_messages` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `useridfrom` bigint(10) NOT NULL, - `conversationid` bigint(10) NOT NULL, - `subject` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `fullmessage` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `fullmessageformat` tinyint(1) NOT NULL DEFAULT 0, - `fullmessagehtml` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `smallmessage` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `fullmessagetrust` tinyint(2) NOT NULL DEFAULT 0, - `customdata` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_mess_contim_ix` (`conversationid`,`timecreated`), - KEY `mdl_mess_use_ix` (`useridfrom`), - KEY `mdl_mess_con_ix` (`conversationid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores all messages'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_messages` --- - -LOCK TABLES `mdl_messages` WRITE; -/*!40000 ALTER TABLE `mdl_messages` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_messages` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_mnet_application` --- - -DROP TABLE IF EXISTS `mdl_mnet_application`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_mnet_application` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `display_name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `xmlrpc_server_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `sso_land_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `sso_jump_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Information about applications on remote hosts'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_mnet_application` --- - -LOCK TABLES `mdl_mnet_application` WRITE; -/*!40000 ALTER TABLE `mdl_mnet_application` DISABLE KEYS */; -INSERT INTO `mdl_mnet_application` VALUES (1,'moodle','Moodle','/mnet/xmlrpc/server.php','/auth/mnet/land.php','/auth/mnet/jump.php'),(2,'mahara','Mahara','/api/xmlrpc/server.php','/auth/xmlrpc/land.php','/auth/xmlrpc/jump.php'); -/*!40000 ALTER TABLE `mdl_mnet_application` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_mnet_host` --- - -DROP TABLE IF EXISTS `mdl_mnet_host`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_mnet_host` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `deleted` tinyint(1) NOT NULL DEFAULT 0, - `wwwroot` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `name` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `public_key` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `public_key_expires` bigint(10) NOT NULL DEFAULT 0, - `transport` tinyint(2) NOT NULL DEFAULT 0, - `portno` mediumint(5) NOT NULL DEFAULT 0, - `last_connect_time` bigint(10) NOT NULL DEFAULT 0, - `last_log_id` bigint(10) NOT NULL DEFAULT 0, - `force_theme` tinyint(1) NOT NULL DEFAULT 0, - `theme` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `applicationid` bigint(10) NOT NULL DEFAULT 1, - `sslverification` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_mnethost_app_ix` (`applicationid`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Information about the local and remote hosts for RPC'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_mnet_host` --- - -LOCK TABLES `mdl_mnet_host` WRITE; -/*!40000 ALTER TABLE `mdl_mnet_host` DISABLE KEYS */; -INSERT INTO `mdl_mnet_host` VALUES (1,0,'http://learn.dev-defaults.derekmaxson.com','172.30.2.9','','',0,0,0,0,0,0,NULL,1,0),(2,0,'','','All Hosts','',0,0,0,0,0,0,NULL,1,0); -/*!40000 ALTER TABLE `mdl_mnet_host` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_mnet_host2service` --- - -DROP TABLE IF EXISTS `mdl_mnet_host2service`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_mnet_host2service` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `hostid` bigint(10) NOT NULL DEFAULT 0, - `serviceid` bigint(10) NOT NULL DEFAULT 0, - `publish` tinyint(1) NOT NULL DEFAULT 0, - `subscribe` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_mnethost_hosser_uix` (`hostid`,`serviceid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Information about the services for a given host'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_mnet_host2service` --- - -LOCK TABLES `mdl_mnet_host2service` WRITE; -/*!40000 ALTER TABLE `mdl_mnet_host2service` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_mnet_host2service` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_mnet_log` --- - -DROP TABLE IF EXISTS `mdl_mnet_log`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_mnet_log` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `hostid` bigint(10) NOT NULL DEFAULT 0, - `remoteid` bigint(10) NOT NULL DEFAULT 0, - `time` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `ip` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `course` bigint(10) NOT NULL DEFAULT 0, - `coursename` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `module` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `cmid` bigint(10) NOT NULL DEFAULT 0, - `action` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `info` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `mdl_mnetlog_hosusecou_ix` (`hostid`,`userid`,`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Store session data from users migrating to other sites'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_mnet_log` --- - -LOCK TABLES `mdl_mnet_log` WRITE; -/*!40000 ALTER TABLE `mdl_mnet_log` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_mnet_log` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_mnet_remote_rpc` --- - -DROP TABLE IF EXISTS `mdl_mnet_remote_rpc`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_mnet_remote_rpc` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `functionname` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `xmlrpcpath` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `plugintype` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `pluginname` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `enabled` tinyint(1) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table describes functions that might be called remotely'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_mnet_remote_rpc` --- - -LOCK TABLES `mdl_mnet_remote_rpc` WRITE; -/*!40000 ALTER TABLE `mdl_mnet_remote_rpc` DISABLE KEYS */; -INSERT INTO `mdl_mnet_remote_rpc` VALUES (1,'user_authorise','auth/mnet/auth.php/user_authorise','auth','mnet',1),(2,'keepalive_server','auth/mnet/auth.php/keepalive_server','auth','mnet',1),(3,'kill_children','auth/mnet/auth.php/kill_children','auth','mnet',1),(4,'refresh_log','auth/mnet/auth.php/refresh_log','auth','mnet',1),(5,'fetch_user_image','auth/mnet/auth.php/fetch_user_image','auth','mnet',1),(6,'fetch_theme_info','auth/mnet/auth.php/fetch_theme_info','auth','mnet',1),(7,'update_enrolments','auth/mnet/auth.php/update_enrolments','auth','mnet',1),(8,'keepalive_client','auth/mnet/auth.php/keepalive_client','auth','mnet',1),(9,'kill_child','auth/mnet/auth.php/kill_child','auth','mnet',1),(10,'available_courses','enrol/mnet/enrol.php/available_courses','enrol','mnet',1),(11,'user_enrolments','enrol/mnet/enrol.php/user_enrolments','enrol','mnet',1),(12,'enrol_user','enrol/mnet/enrol.php/enrol_user','enrol','mnet',1),(13,'unenrol_user','enrol/mnet/enrol.php/unenrol_user','enrol','mnet',1),(14,'course_enrolments','enrol/mnet/enrol.php/course_enrolments','enrol','mnet',1),(15,'send_content_intent','portfolio/mahara/lib.php/send_content_intent','portfolio','mahara',1),(16,'send_content_ready','portfolio/mahara/lib.php/send_content_ready','portfolio','mahara',1); -/*!40000 ALTER TABLE `mdl_mnet_remote_rpc` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_mnet_remote_service2rpc` --- - -DROP TABLE IF EXISTS `mdl_mnet_remote_service2rpc`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_mnet_remote_service2rpc` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `serviceid` bigint(10) NOT NULL DEFAULT 0, - `rpcid` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_mnetremoserv_rpcser_uix` (`rpcid`,`serviceid`) -) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Group functions or methods under a service'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_mnet_remote_service2rpc` --- - -LOCK TABLES `mdl_mnet_remote_service2rpc` WRITE; -/*!40000 ALTER TABLE `mdl_mnet_remote_service2rpc` DISABLE KEYS */; -INSERT INTO `mdl_mnet_remote_service2rpc` VALUES (1,1,1),(2,1,2),(3,1,3),(4,1,4),(5,1,5),(6,1,6),(7,1,7),(8,2,8),(9,2,9),(10,3,10),(11,3,11),(12,3,12),(13,3,13),(14,3,14),(15,4,15),(16,4,16); -/*!40000 ALTER TABLE `mdl_mnet_remote_service2rpc` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_mnet_rpc` --- - -DROP TABLE IF EXISTS `mdl_mnet_rpc`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_mnet_rpc` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `functionname` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `xmlrpcpath` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `plugintype` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `pluginname` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `enabled` tinyint(1) NOT NULL DEFAULT 0, - `help` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `profile` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `filename` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `classname` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `static` tinyint(1) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_mnetrpc_enaxml_ix` (`enabled`,`xmlrpcpath`) -) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Functions or methods that we may publish or subscribe to'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_mnet_rpc` --- - -LOCK TABLES `mdl_mnet_rpc` WRITE; -/*!40000 ALTER TABLE `mdl_mnet_rpc` DISABLE KEYS */; -INSERT INTO `mdl_mnet_rpc` VALUES (1,'user_authorise','auth/mnet/auth.php/user_authorise','auth','mnet',1,'Return user data for the provided token, compare with user_agent string.','a:2:{s:10:\"parameters\";a:2:{i:0;a:3:{s:4:\"name\";s:5:\"token\";s:4:\"type\";s:6:\"string\";s:11:\"description\";s:37:\"The unique ID provided by remotehost.\";}i:1;a:3:{s:4:\"name\";s:9:\"useragent\";s:4:\"type\";s:6:\"string\";s:11:\"description\";s:18:\"User Agent string.\";}}s:6:\"return\";a:2:{s:4:\"type\";s:5:\"array\";s:11:\"description\";s:44:\"$userdata Array of user info for remote host\";}}','auth.php','auth_plugin_mnet',0),(2,'keepalive_server','auth/mnet/auth.php/keepalive_server','auth','mnet',1,'Receives an array of usernames from a remote machine and prods their\nsessions to keep them alive','a:2:{s:10:\"parameters\";a:1:{i:0;a:3:{s:4:\"name\";s:5:\"array\";s:4:\"type\";s:5:\"array\";s:11:\"description\";s:21:\"An array of usernames\";}}s:6:\"return\";a:2:{s:4:\"type\";s:6:\"string\";s:11:\"description\";s:28:\"\"All ok\" or an error message\";}}','auth.php','auth_plugin_mnet',0),(3,'kill_children','auth/mnet/auth.php/kill_children','auth','mnet',1,'The IdP uses this function to kill child sessions on other hosts','a:2:{s:10:\"parameters\";a:2:{i:0;a:3:{s:4:\"name\";s:8:\"username\";s:4:\"type\";s:6:\"string\";s:11:\"description\";s:28:\"Username for session to kill\";}i:1;a:3:{s:4:\"name\";s:9:\"useragent\";s:4:\"type\";s:6:\"string\";s:11:\"description\";s:35:\"SHA1 hash of user agent to look for\";}}s:6:\"return\";a:2:{s:4:\"type\";s:6:\"string\";s:11:\"description\";s:39:\"A plaintext report of what has happened\";}}','auth.php','auth_plugin_mnet',0),(4,'refresh_log','auth/mnet/auth.php/refresh_log','auth','mnet',1,'Receives an array of log entries from an SP and adds them to the mnet_log\ntable','a:2:{s:10:\"parameters\";a:1:{i:0;a:3:{s:4:\"name\";s:5:\"array\";s:4:\"type\";s:5:\"array\";s:11:\"description\";s:21:\"An array of usernames\";}}s:6:\"return\";a:2:{s:4:\"type\";s:6:\"string\";s:11:\"description\";s:28:\"\"All ok\" or an error message\";}}','auth.php','auth_plugin_mnet',0),(5,'fetch_user_image','auth/mnet/auth.php/fetch_user_image','auth','mnet',1,'Returns the user\'s profile image info\nIf the user exists and has a profile picture, the returned array will contain keys:\nf1 - the content of the default 100x100px image\nf1_mimetype - the mimetype of the f1 file\nf2 - the content of the 35x35px variant of the image\nf2_mimetype - the mimetype of the f2 file\nThe mimetype information was added in Moodle 2.0. In Moodle 1.x, images are always jpegs.','a:2:{s:10:\"parameters\";a:1:{i:0;a:3:{s:4:\"name\";s:8:\"username\";s:4:\"type\";s:3:\"int\";s:11:\"description\";s:18:\"The id of the user\";}}s:6:\"return\";a:2:{s:4:\"type\";s:11:\"false|array\";s:11:\"description\";s:84:\"false if user not found, empty array if no picture exists, array with data otherwise\";}}','auth.php','auth_plugin_mnet',0),(6,'fetch_theme_info','auth/mnet/auth.php/fetch_theme_info','auth','mnet',1,'Returns the theme information and logo url as strings.','a:2:{s:10:\"parameters\";a:0:{}s:6:\"return\";a:2:{s:4:\"type\";s:6:\"string\";s:11:\"description\";s:14:\"The theme info\";}}','auth.php','auth_plugin_mnet',0),(7,'update_enrolments','auth/mnet/auth.php/update_enrolments','auth','mnet',1,'Invoke this function _on_ the IDP to update it with enrolment info local to\nthe SP right after calling user_authorise()\nNormally called by the SP after calling user_authorise()','a:2:{s:10:\"parameters\";a:2:{i:0;a:3:{s:4:\"name\";s:8:\"username\";s:4:\"type\";s:6:\"string\";s:11:\"description\";s:12:\"The username\";}i:1;a:3:{s:4:\"name\";s:7:\"courses\";s:4:\"type\";s:5:\"array\";s:11:\"description\";s:75:\"Assoc array of courses following the structure of mnetservice_enrol_courses\";}}s:6:\"return\";a:2:{s:4:\"type\";s:4:\"bool\";s:11:\"description\";s:0:\"\";}}','auth.php','auth_plugin_mnet',0),(8,'keepalive_client','auth/mnet/auth.php/keepalive_client','auth','mnet',1,'Poll the IdP server to let it know that a user it has authenticated is still\nonline','a:2:{s:10:\"parameters\";a:0:{}s:6:\"return\";a:2:{s:4:\"type\";s:4:\"void\";s:11:\"description\";s:0:\"\";}}','auth.php','auth_plugin_mnet',0),(9,'kill_child','auth/mnet/auth.php/kill_child','auth','mnet',1,'When the IdP requests that child sessions are terminated,\nthis function will be called on each of the child hosts. The machine that\ncalls the function (over xmlrpc) provides us with the mnethostid we need.','a:2:{s:10:\"parameters\";a:2:{i:0;a:3:{s:4:\"name\";s:8:\"username\";s:4:\"type\";s:6:\"string\";s:11:\"description\";s:28:\"Username for session to kill\";}i:1;a:3:{s:4:\"name\";s:9:\"useragent\";s:4:\"type\";s:6:\"string\";s:11:\"description\";s:35:\"SHA1 hash of user agent to look for\";}}s:6:\"return\";a:2:{s:4:\"type\";s:4:\"bool\";s:11:\"description\";s:15:\"True on success\";}}','auth.php','auth_plugin_mnet',0),(10,'available_courses','enrol/mnet/enrol.php/available_courses','enrol','mnet',1,'Returns list of courses that we offer to the caller for remote enrolment of their users\nSince Moodle 2.0, courses are made available for MNet peers by creating an instance\nof enrol_mnet plugin for the course. Hidden courses are not returned. If there are two\ninstances - one specific for the host and one for \'All hosts\', the setting of the specific\none is used. The id of the peer is kept in customint1, no other custom fields are used.','a:2:{s:10:\"parameters\";a:0:{}s:6:\"return\";a:2:{s:4:\"type\";s:5:\"array\";s:11:\"description\";s:0:\"\";}}','enrol.php','enrol_mnet_mnetservice_enrol',0),(11,'user_enrolments','enrol/mnet/enrol.php/user_enrolments','enrol','mnet',1,'This method has never been implemented in Moodle MNet API','a:2:{s:10:\"parameters\";a:0:{}s:6:\"return\";a:2:{s:4:\"type\";s:5:\"array\";s:11:\"description\";s:11:\"empty array\";}}','enrol.php','enrol_mnet_mnetservice_enrol',0),(12,'enrol_user','enrol/mnet/enrol.php/enrol_user','enrol','mnet',1,'Enrol remote user to our course\nIf we do not have local record for the remote user in our database,\nit gets created here.','a:2:{s:10:\"parameters\";a:2:{i:0;a:3:{s:4:\"name\";s:8:\"userdata\";s:4:\"type\";s:5:\"array\";s:11:\"description\";s:43:\"user details {@see mnet_fields_to_import()}\";}i:1;a:3:{s:4:\"name\";s:8:\"courseid\";s:4:\"type\";s:3:\"int\";s:11:\"description\";s:19:\"our local course id\";}}s:6:\"return\";a:2:{s:4:\"type\";s:4:\"bool\";s:11:\"description\";s:69:\"true if the enrolment has been successful, throws exception otherwise\";}}','enrol.php','enrol_mnet_mnetservice_enrol',0),(13,'unenrol_user','enrol/mnet/enrol.php/unenrol_user','enrol','mnet',1,'Unenrol remote user from our course\nOnly users enrolled via enrol_mnet plugin can be unenrolled remotely. If the\nremote user is enrolled into the local course via some other enrol plugin\n(enrol_manual for example), the remote host can\'t touch such enrolment. Please\ndo not report this behaviour as bug, it is a feature ;-)','a:2:{s:10:\"parameters\";a:2:{i:0;a:3:{s:4:\"name\";s:8:\"username\";s:4:\"type\";s:6:\"string\";s:11:\"description\";s:18:\"of the remote user\";}i:1;a:3:{s:4:\"name\";s:8:\"courseid\";s:4:\"type\";s:3:\"int\";s:11:\"description\";s:19:\"of our local course\";}}s:6:\"return\";a:2:{s:4:\"type\";s:4:\"bool\";s:11:\"description\";s:71:\"true if the unenrolment has been successful, throws exception otherwise\";}}','enrol.php','enrol_mnet_mnetservice_enrol',0),(14,'course_enrolments','enrol/mnet/enrol.php/course_enrolments','enrol','mnet',1,'Returns a list of users from the client server who are enrolled in our course\nSuitable instance of enrol_mnet must be created in the course. This method will not\nreturn any information about the enrolments in courses that are not available for\nremote enrolment, even if their users are enrolled into them via other plugin\n(note the difference from {@link self::user_enrolments()}).\nThis method will return enrolment information for users from hosts regardless\nthe enrolment plugin. It does not matter if the user was enrolled remotely by\ntheir admin or locally. Once the course is available for remote enrolments, we\nwill tell them everything about their users.\nIn Moodle 1.x the returned array used to be indexed by username. The side effect\nof MDL-19219 fix is that we do not need to use such index and therefore we can\nreturn all enrolment records. MNet clients 1.x will only use the last record for\nthe student, if she is enrolled via multiple plugins.','a:2:{s:10:\"parameters\";a:2:{i:0;a:3:{s:4:\"name\";s:8:\"courseid\";s:4:\"type\";s:3:\"int\";s:11:\"description\";s:16:\"ID of our course\";}i:1;a:3:{s:4:\"name\";s:5:\"roles\";s:4:\"type\";s:12:\"string|array\";s:11:\"description\";s:58:\"comma separated list of role shortnames (or array of them)\";}}s:6:\"return\";a:2:{s:4:\"type\";s:5:\"array\";s:11:\"description\";s:0:\"\";}}','enrol.php','enrol_mnet_mnetservice_enrol',0),(15,'fetch_file','portfolio/mahara/lib.php/fetch_file','portfolio','mahara',1,'xmlrpc (mnet) function to get the file.\nreads in the file and returns it base_64 encoded\nso that it can be enrypted by mnet.','a:2:{s:10:\"parameters\";a:1:{i:0;a:3:{s:4:\"name\";s:5:\"token\";s:4:\"type\";s:6:\"string\";s:11:\"description\";s:56:\"the token recieved previously during send_content_intent\";}}s:6:\"return\";a:2:{s:4:\"type\";s:4:\"void\";s:11:\"description\";s:0:\"\";}}','lib.php','portfolio_plugin_mahara',1); -/*!40000 ALTER TABLE `mdl_mnet_rpc` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_mnet_service` --- - -DROP TABLE IF EXISTS `mdl_mnet_service`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_mnet_service` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `apiversion` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `offer` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='A service is a group of functions'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_mnet_service` --- - -LOCK TABLES `mdl_mnet_service` WRITE; -/*!40000 ALTER TABLE `mdl_mnet_service` DISABLE KEYS */; -INSERT INTO `mdl_mnet_service` VALUES (1,'sso_idp','','1',1),(2,'sso_sp','','1',1),(3,'mnet_enrol','','1',1),(4,'pf','','1',1); -/*!40000 ALTER TABLE `mdl_mnet_service` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_mnet_service2rpc` --- - -DROP TABLE IF EXISTS `mdl_mnet_service2rpc`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_mnet_service2rpc` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `serviceid` bigint(10) NOT NULL DEFAULT 0, - `rpcid` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_mnetserv_rpcser_uix` (`rpcid`,`serviceid`) -) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Group functions or methods under a service'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_mnet_service2rpc` --- - -LOCK TABLES `mdl_mnet_service2rpc` WRITE; -/*!40000 ALTER TABLE `mdl_mnet_service2rpc` DISABLE KEYS */; -INSERT INTO `mdl_mnet_service2rpc` VALUES (1,1,1),(2,1,2),(3,1,3),(4,1,4),(5,1,5),(6,1,6),(7,1,7),(8,2,8),(9,2,9),(10,3,10),(11,3,11),(12,3,12),(13,3,13),(14,3,14),(15,4,15); -/*!40000 ALTER TABLE `mdl_mnet_service2rpc` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_mnet_session` --- - -DROP TABLE IF EXISTS `mdl_mnet_session`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_mnet_session` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL DEFAULT 0, - `username` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `token` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `mnethostid` bigint(10) NOT NULL DEFAULT 0, - `useragent` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `confirm_timeout` bigint(10) NOT NULL DEFAULT 0, - `session_id` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `expires` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_mnetsess_tok_uix` (`token`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Store session data from users migrating to other sites'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_mnet_session` --- - -LOCK TABLES `mdl_mnet_session` WRITE; -/*!40000 ALTER TABLE `mdl_mnet_session` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_mnet_session` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_mnet_sso_access_control` --- - -DROP TABLE IF EXISTS `mdl_mnet_sso_access_control`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_mnet_sso_access_control` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `username` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `mnet_host_id` bigint(10) NOT NULL DEFAULT 0, - `accessctrl` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'allow', - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_mnetssoaccecont_mneuse_uix` (`mnet_host_id`,`username`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Users by host permitted (or not) to login from a remote prov'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_mnet_sso_access_control` --- - -LOCK TABLES `mdl_mnet_sso_access_control` WRITE; -/*!40000 ALTER TABLE `mdl_mnet_sso_access_control` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_mnet_sso_access_control` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_mnetservice_enrol_courses` --- - -DROP TABLE IF EXISTS `mdl_mnetservice_enrol_courses`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_mnetservice_enrol_courses` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `hostid` bigint(10) NOT NULL, - `remoteid` bigint(10) NOT NULL, - `categoryid` bigint(10) NOT NULL, - `categoryname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `sortorder` bigint(10) NOT NULL DEFAULT 0, - `fullname` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `shortname` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `summary` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `summaryformat` smallint(3) DEFAULT 0, - `startdate` bigint(10) NOT NULL, - `roleid` bigint(10) NOT NULL, - `rolename` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_mnetenrocour_hosrem_uix` (`hostid`,`remoteid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Caches the information fetched via XML-RPC about courses on '; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_mnetservice_enrol_courses` --- - -LOCK TABLES `mdl_mnetservice_enrol_courses` WRITE; -/*!40000 ALTER TABLE `mdl_mnetservice_enrol_courses` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_mnetservice_enrol_courses` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_mnetservice_enrol_enrolments` --- - -DROP TABLE IF EXISTS `mdl_mnetservice_enrol_enrolments`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_mnetservice_enrol_enrolments` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `hostid` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `remotecourseid` bigint(10) NOT NULL, - `rolename` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `enroltime` bigint(10) NOT NULL DEFAULT 0, - `enroltype` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `mdl_mnetenroenro_use_ix` (`userid`), - KEY `mdl_mnetenroenro_hos_ix` (`hostid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Caches the information about enrolments of our local users i'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_mnetservice_enrol_enrolments` --- - -LOCK TABLES `mdl_mnetservice_enrol_enrolments` WRITE; -/*!40000 ALTER TABLE `mdl_mnetservice_enrol_enrolments` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_mnetservice_enrol_enrolments` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_modules` --- - -DROP TABLE IF EXISTS `mdl_modules`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_modules` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `cron` bigint(10) NOT NULL DEFAULT 0, - `lastcron` bigint(10) NOT NULL DEFAULT 0, - `search` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `visible` tinyint(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`), - KEY `mdl_modu_nam_ix` (`name`) -) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='modules available in the site'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_modules` --- - -LOCK TABLES `mdl_modules` WRITE; -/*!40000 ALTER TABLE `mdl_modules` DISABLE KEYS */; -INSERT INTO `mdl_modules` VALUES (1,'assign',0,0,'',1),(2,'assignment',60,0,'',0),(3,'book',0,0,'',1),(4,'chat',0,0,'',1),(5,'choice',0,0,'',1),(6,'data',0,0,'',1),(7,'feedback',0,0,'',1),(8,'folder',0,0,'',1),(9,'forum',0,0,'',1),(10,'glossary',0,0,'',1),(11,'h5pactivity',0,0,'',1),(12,'imscp',0,0,'',1),(13,'label',0,0,'',1),(14,'lesson',0,0,'',1),(15,'lti',0,0,'',1),(16,'page',0,0,'',1),(17,'quiz',0,0,'',1),(18,'resource',0,0,'',1),(19,'scorm',0,0,'',1),(20,'survey',0,0,'',1),(21,'url',0,0,'',1),(22,'wiki',0,0,'',1),(23,'workshop',0,0,'',1),(24,'customcert',0,0,'',1); -/*!40000 ALTER TABLE `mdl_modules` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_my_pages` --- - -DROP TABLE IF EXISTS `mdl_my_pages`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_my_pages` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) DEFAULT 0, - `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `private` tinyint(1) NOT NULL DEFAULT 1, - `sortorder` mediumint(6) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_mypage_usepri_ix` (`userid`,`private`) -) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Extra user pages for the My Moodle system'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_my_pages` --- - -LOCK TABLES `mdl_my_pages` WRITE; -/*!40000 ALTER TABLE `mdl_my_pages` DISABLE KEYS */; -INSERT INTO `mdl_my_pages` VALUES (1,NULL,'__default',0,0),(2,NULL,'__default',1,0),(4,6,'__default',0,0),(5,2,'__default',1,0),(6,2,'__default',0,0); -/*!40000 ALTER TABLE `mdl_my_pages` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_notifications` --- - -DROP TABLE IF EXISTS `mdl_notifications`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_notifications` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `useridfrom` bigint(10) NOT NULL, - `useridto` bigint(10) NOT NULL, - `subject` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `fullmessage` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `fullmessageformat` tinyint(1) NOT NULL DEFAULT 0, - `fullmessagehtml` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `smallmessage` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `component` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `eventtype` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `contexturl` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `contexturlname` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timeread` bigint(10) DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `customdata` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_noti_use_ix` (`useridfrom`), - KEY `mdl_noti_use2_ix` (`useridto`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores all notifications'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_notifications` --- - -LOCK TABLES `mdl_notifications` WRITE; -/*!40000 ALTER TABLE `mdl_notifications` DISABLE KEYS */; -INSERT INTO `mdl_notifications` VALUES (1,2,2,'Moodle updates are available (http://learn.dev-defaults.derekmaxson.com)','Update notifications\n\nThere is a newer Moodle version available!\nMoodle 3.10.3+ (Build: 20210427) Version 2020110903.07 (Stable version)\n\nSee http://learn.dev-defaults.derekmaxson.com/admin/index.php for more details\n\nIt is strongly recommended that you update your site to the latest version to obtain all recent security and bug fixes.\n\nYour Moodle site http://learn.dev-defaults.derekmaxson.com is configured to automatically check for available updates. You are receiving this message as the administrator of the site. You can disable automatic checks for available updates in Site administration / Server / Update notifications or customise the delivery of this message via your preferences page.\n',2,'

Update notifications

\n

There is a newer Moodle version available!

\n
    \n
  • Moodle 3.10.3+ (Build: 20210427) Version 2020110903.07 (Stable version)
  • \n
\n

See http://learn.dev-defaults.derekmaxson.com/admin/index.php for more details

\n

It is strongly recommended that you update your site to the latest version to obtain all recent security and bug fixes.

\n

Your Moodle site http://learn.dev-defaults.derekmaxson.com is configured to automatically check for available updates. You are receiving this message as the administrator of the site. You can disable automatic checks for available updates in Site administration / Server / Update notifications or customise the delivery of this message via your preferences page.

','Update notifications','moodle','availableupdate',NULL,NULL,NULL,1619625665,NULL); -/*!40000 ALTER TABLE `mdl_notifications` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_oauth2_access_token` --- - -DROP TABLE IF EXISTS `mdl_oauth2_access_token`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_oauth2_access_token` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `usermodified` bigint(10) NOT NULL, - `issuerid` bigint(10) NOT NULL, - `token` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `expires` bigint(10) NOT NULL, - `scope` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_oautaccetoke_iss_uix` (`issuerid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores access tokens for system accounts in order to be able'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_oauth2_access_token` --- - -LOCK TABLES `mdl_oauth2_access_token` WRITE; -/*!40000 ALTER TABLE `mdl_oauth2_access_token` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_oauth2_access_token` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_oauth2_endpoint` --- - -DROP TABLE IF EXISTS `mdl_oauth2_endpoint`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_oauth2_endpoint` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `usermodified` bigint(10) NOT NULL, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `url` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `issuerid` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_oautendp_iss_ix` (`issuerid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Describes the named endpoint for an oauth2 service.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_oauth2_endpoint` --- - -LOCK TABLES `mdl_oauth2_endpoint` WRITE; -/*!40000 ALTER TABLE `mdl_oauth2_endpoint` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_oauth2_endpoint` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_oauth2_issuer` --- - -DROP TABLE IF EXISTS `mdl_oauth2_issuer`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_oauth2_issuer` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `usermodified` bigint(10) NOT NULL, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `image` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `baseurl` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `clientid` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `clientsecret` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `loginscopes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `loginscopesoffline` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `loginparams` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `loginparamsoffline` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `alloweddomains` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `scopessupported` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `enabled` tinyint(2) NOT NULL DEFAULT 1, - `showonloginpage` tinyint(2) NOT NULL DEFAULT 1, - `basicauth` tinyint(2) NOT NULL DEFAULT 0, - `sortorder` bigint(10) NOT NULL, - `requireconfirmation` tinyint(2) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Details for an oauth 2 connect identity issuer.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_oauth2_issuer` --- - -LOCK TABLES `mdl_oauth2_issuer` WRITE; -/*!40000 ALTER TABLE `mdl_oauth2_issuer` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_oauth2_issuer` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_oauth2_refresh_token` --- - -DROP TABLE IF EXISTS `mdl_oauth2_refresh_token`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_oauth2_refresh_token` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `issuerid` bigint(10) NOT NULL, - `token` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `scopehash` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_oautrefrtoke_useisssco_uix` (`userid`,`issuerid`,`scopehash`), - KEY `mdl_oautrefrtoke_iss_ix` (`issuerid`), - KEY `mdl_oautrefrtoke_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores refresh tokens which can be exchanged for access toke'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_oauth2_refresh_token` --- - -LOCK TABLES `mdl_oauth2_refresh_token` WRITE; -/*!40000 ALTER TABLE `mdl_oauth2_refresh_token` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_oauth2_refresh_token` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_oauth2_system_account` --- - -DROP TABLE IF EXISTS `mdl_oauth2_system_account`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_oauth2_system_account` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `usermodified` bigint(10) NOT NULL, - `issuerid` bigint(10) NOT NULL, - `refreshtoken` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `grantedscopes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `email` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `username` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_oautsystacco_iss_uix` (`issuerid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stored details used to get an access token as a system user '; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_oauth2_system_account` --- - -LOCK TABLES `mdl_oauth2_system_account` WRITE; -/*!40000 ALTER TABLE `mdl_oauth2_system_account` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_oauth2_system_account` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_oauth2_user_field_mapping` --- - -DROP TABLE IF EXISTS `mdl_oauth2_user_field_mapping`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_oauth2_user_field_mapping` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `timemodified` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `usermodified` bigint(10) NOT NULL, - `issuerid` bigint(10) NOT NULL, - `externalfield` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `internalfield` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_oautuserfielmapp_issin_uix` (`issuerid`,`internalfield`), - KEY `mdl_oautuserfielmapp_iss_ix` (`issuerid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Mapping of oauth user fields to moodle fields.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_oauth2_user_field_mapping` --- - -LOCK TABLES `mdl_oauth2_user_field_mapping` WRITE; -/*!40000 ALTER TABLE `mdl_oauth2_user_field_mapping` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_oauth2_user_field_mapping` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_page` --- - -DROP TABLE IF EXISTS `mdl_page`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_page` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `introformat` smallint(4) NOT NULL DEFAULT 0, - `content` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `contentformat` smallint(4) NOT NULL DEFAULT 0, - `legacyfiles` smallint(4) NOT NULL DEFAULT 0, - `legacyfileslast` bigint(10) DEFAULT NULL, - `display` smallint(4) NOT NULL DEFAULT 0, - `displayoptions` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `revision` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_page_cou_ix` (`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Each record is one page and its config data'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_page` --- - -LOCK TABLES `mdl_page` WRITE; -/*!40000 ALTER TABLE `mdl_page` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_page` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_paygw_paypal` --- - -DROP TABLE IF EXISTS `mdl_paygw_paypal`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_paygw_paypal` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `paymentid` bigint(10) NOT NULL, - `pp_orderid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'The ID of the order in PayPal', - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_paygpayp_pay_uix` (`paymentid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores PayPal related information'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_paygw_paypal` --- - -LOCK TABLES `mdl_paygw_paypal` WRITE; -/*!40000 ALTER TABLE `mdl_paygw_paypal` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_paygw_paypal` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_payment_accounts` --- - -DROP TABLE IF EXISTS `mdl_payment_accounts`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_payment_accounts` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `contextid` bigint(10) NOT NULL, - `enabled` tinyint(1) NOT NULL DEFAULT 0, - `archived` tinyint(1) NOT NULL DEFAULT 0, - `timecreated` bigint(10) DEFAULT NULL, - `timemodified` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Payment accounts'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_payment_accounts` --- - -LOCK TABLES `mdl_payment_accounts` WRITE; -/*!40000 ALTER TABLE `mdl_payment_accounts` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_payment_accounts` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_payment_gateways` --- - -DROP TABLE IF EXISTS `mdl_payment_gateways`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_payment_gateways` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `accountid` bigint(10) NOT NULL, - `gateway` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `enabled` tinyint(1) NOT NULL DEFAULT 1, - `config` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_paymgate_acc_ix` (`accountid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Configuration for one gateway for one payment account'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_payment_gateways` --- - -LOCK TABLES `mdl_payment_gateways` WRITE; -/*!40000 ALTER TABLE `mdl_payment_gateways` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_payment_gateways` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_payments` --- - -DROP TABLE IF EXISTS `mdl_payments`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_payments` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `paymentarea` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `itemid` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `amount` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `currency` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `accountid` bigint(10) NOT NULL, - `gateway` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_paym_gat_ix` (`gateway`), - KEY `mdl_paym_compayite_ix` (`component`,`paymentarea`,`itemid`), - KEY `mdl_paym_use_ix` (`userid`), - KEY `mdl_paym_acc_ix` (`accountid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores information about payments'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_payments` --- - -LOCK TABLES `mdl_payments` WRITE; -/*!40000 ALTER TABLE `mdl_payments` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_payments` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_portfolio_instance` --- - -DROP TABLE IF EXISTS `mdl_portfolio_instance`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_portfolio_instance` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `plugin` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `visible` tinyint(1) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='base table (not including config data) for instances of port'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_portfolio_instance` --- - -LOCK TABLES `mdl_portfolio_instance` WRITE; -/*!40000 ALTER TABLE `mdl_portfolio_instance` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_portfolio_instance` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_portfolio_instance_config` --- - -DROP TABLE IF EXISTS `mdl_portfolio_instance_config`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_portfolio_instance_config` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `instance` bigint(10) NOT NULL, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_portinstconf_nam_ix` (`name`), - KEY `mdl_portinstconf_ins_ix` (`instance`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='config for portfolio plugin instances'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_portfolio_instance_config` --- - -LOCK TABLES `mdl_portfolio_instance_config` WRITE; -/*!40000 ALTER TABLE `mdl_portfolio_instance_config` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_portfolio_instance_config` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_portfolio_instance_user` --- - -DROP TABLE IF EXISTS `mdl_portfolio_instance_user`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_portfolio_instance_user` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `instance` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_portinstuser_ins_ix` (`instance`), - KEY `mdl_portinstuser_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='user data for portfolio instances.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_portfolio_instance_user` --- - -LOCK TABLES `mdl_portfolio_instance_user` WRITE; -/*!40000 ALTER TABLE `mdl_portfolio_instance_user` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_portfolio_instance_user` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_portfolio_log` --- - -DROP TABLE IF EXISTS `mdl_portfolio_log`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_portfolio_log` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL, - `time` bigint(10) NOT NULL, - `portfolio` bigint(10) NOT NULL, - `caller_class` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `caller_file` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `caller_component` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `caller_sha1` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `tempdataid` bigint(10) NOT NULL DEFAULT 0, - `returnurl` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `continueurl` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `mdl_portlog_use_ix` (`userid`), - KEY `mdl_portlog_por_ix` (`portfolio`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='log of portfolio transfers (used to later check for duplicat'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_portfolio_log` --- - -LOCK TABLES `mdl_portfolio_log` WRITE; -/*!40000 ALTER TABLE `mdl_portfolio_log` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_portfolio_log` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_portfolio_mahara_queue` --- - -DROP TABLE IF EXISTS `mdl_portfolio_mahara_queue`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_portfolio_mahara_queue` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `transferid` bigint(10) NOT NULL, - `token` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `mdl_portmahaqueu_tok_ix` (`token`), - KEY `mdl_portmahaqueu_tra_ix` (`transferid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='maps mahara tokens to transfer ids'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_portfolio_mahara_queue` --- - -LOCK TABLES `mdl_portfolio_mahara_queue` WRITE; -/*!40000 ALTER TABLE `mdl_portfolio_mahara_queue` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_portfolio_mahara_queue` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_portfolio_tempdata` --- - -DROP TABLE IF EXISTS `mdl_portfolio_tempdata`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_portfolio_tempdata` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `data` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `expirytime` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `instance` bigint(10) DEFAULT 0, - `queued` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_porttemp_use_ix` (`userid`), - KEY `mdl_porttemp_ins_ix` (`instance`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='stores temporary data for portfolio exports. the id of this '; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_portfolio_tempdata` --- - -LOCK TABLES `mdl_portfolio_tempdata` WRITE; -/*!40000 ALTER TABLE `mdl_portfolio_tempdata` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_portfolio_tempdata` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_post` --- - -DROP TABLE IF EXISTS `mdl_post`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_post` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `module` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `userid` bigint(10) NOT NULL DEFAULT 0, - `courseid` bigint(10) NOT NULL DEFAULT 0, - `groupid` bigint(10) NOT NULL DEFAULT 0, - `moduleid` bigint(10) NOT NULL DEFAULT 0, - `coursemoduleid` bigint(10) NOT NULL DEFAULT 0, - `subject` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `summary` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `content` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `uniquehash` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `rating` bigint(10) NOT NULL DEFAULT 0, - `format` bigint(10) NOT NULL DEFAULT 0, - `summaryformat` tinyint(2) NOT NULL DEFAULT 0, - `attachment` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `publishstate` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'draft', - `lastmodified` bigint(10) NOT NULL DEFAULT 0, - `created` bigint(10) NOT NULL DEFAULT 0, - `usermodified` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_post_iduse_uix` (`id`,`userid`), - KEY `mdl_post_las_ix` (`lastmodified`), - KEY `mdl_post_mod_ix` (`module`), - KEY `mdl_post_sub_ix` (`subject`), - KEY `mdl_post_use_ix` (`usermodified`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Generic post table to hold data blog entries etc in differen'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_post` --- - -LOCK TABLES `mdl_post` WRITE; -/*!40000 ALTER TABLE `mdl_post` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_post` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_profiling` --- - -DROP TABLE IF EXISTS `mdl_profiling`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_profiling` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `runid` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `data` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `totalexecutiontime` bigint(10) NOT NULL, - `totalcputime` bigint(10) NOT NULL, - `totalcalls` bigint(10) NOT NULL, - `totalmemory` bigint(10) NOT NULL, - `runreference` tinyint(2) NOT NULL DEFAULT 0, - `runcomment` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `timecreated` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_prof_run_uix` (`runid`), - KEY `mdl_prof_urlrun_ix` (`url`,`runreference`), - KEY `mdl_prof_timrun_ix` (`timecreated`,`runreference`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the results of all the profiling runs'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_profiling` --- - -LOCK TABLES `mdl_profiling` WRITE; -/*!40000 ALTER TABLE `mdl_profiling` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_profiling` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_qtype_ddimageortext` --- - -DROP TABLE IF EXISTS `mdl_qtype_ddimageortext`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_qtype_ddimageortext` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `questionid` bigint(10) NOT NULL DEFAULT 0, - `shuffleanswers` smallint(4) NOT NULL DEFAULT 1, - `correctfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `correctfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `partiallycorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `partiallycorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `incorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `incorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `shownumcorrect` tinyint(2) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_qtypddim_que_ix` (`questionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines drag and drop (text or images onto a background imag'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_qtype_ddimageortext` --- - -LOCK TABLES `mdl_qtype_ddimageortext` WRITE; -/*!40000 ALTER TABLE `mdl_qtype_ddimageortext` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_qtype_ddimageortext` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_qtype_ddimageortext_drags` --- - -DROP TABLE IF EXISTS `mdl_qtype_ddimageortext_drags`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_qtype_ddimageortext_drags` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `questionid` bigint(10) NOT NULL DEFAULT 0, - `no` bigint(10) NOT NULL DEFAULT 0, - `draggroup` bigint(10) NOT NULL DEFAULT 0, - `infinite` smallint(4) NOT NULL DEFAULT 0, - `label` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_qtypddimdrag_que_ix` (`questionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Images to drag. Actual file names are not stored here we use'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_qtype_ddimageortext_drags` --- - -LOCK TABLES `mdl_qtype_ddimageortext_drags` WRITE; -/*!40000 ALTER TABLE `mdl_qtype_ddimageortext_drags` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_qtype_ddimageortext_drags` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_qtype_ddimageortext_drops` --- - -DROP TABLE IF EXISTS `mdl_qtype_ddimageortext_drops`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_qtype_ddimageortext_drops` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `questionid` bigint(10) NOT NULL DEFAULT 0, - `no` bigint(10) NOT NULL DEFAULT 0, - `xleft` bigint(10) NOT NULL DEFAULT 0, - `ytop` bigint(10) NOT NULL DEFAULT 0, - `choice` bigint(10) NOT NULL DEFAULT 0, - `label` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_qtypddimdrop_que_ix` (`questionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Drop boxes'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_qtype_ddimageortext_drops` --- - -LOCK TABLES `mdl_qtype_ddimageortext_drops` WRITE; -/*!40000 ALTER TABLE `mdl_qtype_ddimageortext_drops` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_qtype_ddimageortext_drops` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_qtype_ddmarker` --- - -DROP TABLE IF EXISTS `mdl_qtype_ddmarker`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_qtype_ddmarker` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `questionid` bigint(10) NOT NULL DEFAULT 0, - `shuffleanswers` smallint(4) NOT NULL DEFAULT 1, - `correctfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `correctfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `partiallycorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `partiallycorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `incorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `incorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `shownumcorrect` tinyint(2) NOT NULL DEFAULT 0, - `showmisplaced` smallint(4) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_qtypddma_que_ix` (`questionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines drag and drop (text or images onto a background imag'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_qtype_ddmarker` --- - -LOCK TABLES `mdl_qtype_ddmarker` WRITE; -/*!40000 ALTER TABLE `mdl_qtype_ddmarker` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_qtype_ddmarker` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_qtype_ddmarker_drags` --- - -DROP TABLE IF EXISTS `mdl_qtype_ddmarker_drags`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_qtype_ddmarker_drags` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `questionid` bigint(10) NOT NULL DEFAULT 0, - `no` bigint(10) NOT NULL DEFAULT 0, - `label` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `infinite` smallint(4) NOT NULL DEFAULT 0, - `noofdrags` bigint(10) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`), - KEY `mdl_qtypddmadrag_que_ix` (`questionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Labels for markers to drag.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_qtype_ddmarker_drags` --- - -LOCK TABLES `mdl_qtype_ddmarker_drags` WRITE; -/*!40000 ALTER TABLE `mdl_qtype_ddmarker_drags` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_qtype_ddmarker_drags` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_qtype_ddmarker_drops` --- - -DROP TABLE IF EXISTS `mdl_qtype_ddmarker_drops`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_qtype_ddmarker_drops` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `questionid` bigint(10) NOT NULL DEFAULT 0, - `no` bigint(10) NOT NULL DEFAULT 0, - `shape` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `coords` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `choice` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_qtypddmadrop_que_ix` (`questionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='drop regions'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_qtype_ddmarker_drops` --- - -LOCK TABLES `mdl_qtype_ddmarker_drops` WRITE; -/*!40000 ALTER TABLE `mdl_qtype_ddmarker_drops` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_qtype_ddmarker_drops` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_qtype_essay_options` --- - -DROP TABLE IF EXISTS `mdl_qtype_essay_options`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_qtype_essay_options` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `questionid` bigint(10) NOT NULL, - `responseformat` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'editor', - `responserequired` tinyint(2) NOT NULL DEFAULT 1, - `responsefieldlines` smallint(4) NOT NULL DEFAULT 15, - `attachments` smallint(4) NOT NULL DEFAULT 0, - `attachmentsrequired` smallint(4) NOT NULL DEFAULT 0, - `graderinfo` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `graderinfoformat` smallint(4) NOT NULL DEFAULT 0, - `responsetemplate` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `responsetemplateformat` smallint(4) NOT NULL DEFAULT 0, - `maxbytes` bigint(10) NOT NULL DEFAULT 0, - `filetypeslist` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_qtypessaopti_que_uix` (`questionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Extra options for essay questions.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_qtype_essay_options` --- - -LOCK TABLES `mdl_qtype_essay_options` WRITE; -/*!40000 ALTER TABLE `mdl_qtype_essay_options` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_qtype_essay_options` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_qtype_match_options` --- - -DROP TABLE IF EXISTS `mdl_qtype_match_options`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_qtype_match_options` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `questionid` bigint(10) NOT NULL DEFAULT 0, - `shuffleanswers` smallint(4) NOT NULL DEFAULT 1, - `correctfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `correctfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `partiallycorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `partiallycorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `incorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `incorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `shownumcorrect` tinyint(2) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_qtypmatcopti_que_uix` (`questionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines the question-type specific options for matching ques'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_qtype_match_options` --- - -LOCK TABLES `mdl_qtype_match_options` WRITE; -/*!40000 ALTER TABLE `mdl_qtype_match_options` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_qtype_match_options` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_qtype_match_subquestions` --- - -DROP TABLE IF EXISTS `mdl_qtype_match_subquestions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_qtype_match_subquestions` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `questionid` bigint(10) NOT NULL DEFAULT 0, - `questiontext` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `questiontextformat` tinyint(2) NOT NULL DEFAULT 0, - `answertext` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `mdl_qtypmatcsubq_que_ix` (`questionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The subquestions that make up a matching question'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_qtype_match_subquestions` --- - -LOCK TABLES `mdl_qtype_match_subquestions` WRITE; -/*!40000 ALTER TABLE `mdl_qtype_match_subquestions` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_qtype_match_subquestions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_qtype_multichoice_options` --- - -DROP TABLE IF EXISTS `mdl_qtype_multichoice_options`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_qtype_multichoice_options` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `questionid` bigint(10) NOT NULL DEFAULT 0, - `layout` smallint(4) NOT NULL DEFAULT 0, - `single` smallint(4) NOT NULL DEFAULT 0, - `shuffleanswers` smallint(4) NOT NULL DEFAULT 1, - `correctfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `correctfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `partiallycorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `partiallycorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `incorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `incorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `answernumbering` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'abc', - `shownumcorrect` tinyint(2) NOT NULL DEFAULT 0, - `showstandardinstruction` tinyint(2) NOT NULL DEFAULT 1, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_qtypmultopti_que_uix` (`questionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Options for multiple choice questions'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_qtype_multichoice_options` --- - -LOCK TABLES `mdl_qtype_multichoice_options` WRITE; -/*!40000 ALTER TABLE `mdl_qtype_multichoice_options` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_qtype_multichoice_options` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_qtype_randomsamatch_options` --- - -DROP TABLE IF EXISTS `mdl_qtype_randomsamatch_options`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_qtype_randomsamatch_options` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `questionid` bigint(10) NOT NULL DEFAULT 0, - `choose` bigint(10) NOT NULL DEFAULT 4, - `subcats` tinyint(2) NOT NULL DEFAULT 1, - `correctfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `correctfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `partiallycorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `partiallycorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `incorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `incorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `shownumcorrect` tinyint(2) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_qtyprandopti_que_uix` (`questionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Info about a random short-answer matching question'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_qtype_randomsamatch_options` --- - -LOCK TABLES `mdl_qtype_randomsamatch_options` WRITE; -/*!40000 ALTER TABLE `mdl_qtype_randomsamatch_options` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_qtype_randomsamatch_options` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_qtype_shortanswer_options` --- - -DROP TABLE IF EXISTS `mdl_qtype_shortanswer_options`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_qtype_shortanswer_options` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `questionid` bigint(10) NOT NULL DEFAULT 0, - `usecase` tinyint(2) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_qtypshoropti_que_uix` (`questionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Options for short answer questions'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_qtype_shortanswer_options` --- - -LOCK TABLES `mdl_qtype_shortanswer_options` WRITE; -/*!40000 ALTER TABLE `mdl_qtype_shortanswer_options` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_qtype_shortanswer_options` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_question` --- - -DROP TABLE IF EXISTS `mdl_question`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_question` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `category` bigint(10) NOT NULL DEFAULT 0, - `parent` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `questiontext` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `questiontextformat` tinyint(2) NOT NULL DEFAULT 0, - `generalfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `generalfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `defaultmark` decimal(12,7) NOT NULL DEFAULT 1.0000000, - `penalty` decimal(12,7) NOT NULL DEFAULT 0.3333333, - `qtype` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `length` bigint(10) NOT NULL DEFAULT 1, - `stamp` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `version` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `hidden` tinyint(1) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `createdby` bigint(10) DEFAULT NULL, - `modifiedby` bigint(10) DEFAULT NULL, - `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_ques_catidn_uix` (`category`,`idnumber`), - KEY `mdl_ques_qty_ix` (`qtype`), - KEY `mdl_ques_cat_ix` (`category`), - KEY `mdl_ques_par_ix` (`parent`), - KEY `mdl_ques_cre_ix` (`createdby`), - KEY `mdl_ques_mod_ix` (`modifiedby`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The questions themselves'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_question` --- - -LOCK TABLES `mdl_question` WRITE; -/*!40000 ALTER TABLE `mdl_question` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_question` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_question_answers` --- - -DROP TABLE IF EXISTS `mdl_question_answers`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_question_answers` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `question` bigint(10) NOT NULL DEFAULT 0, - `answer` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `answerformat` tinyint(2) NOT NULL DEFAULT 0, - `fraction` decimal(12,7) NOT NULL DEFAULT 0.0000000, - `feedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `feedbackformat` tinyint(2) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_quesansw_que_ix` (`question`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Answers, with a fractional grade (0-1) and feedback'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_question_answers` --- - -LOCK TABLES `mdl_question_answers` WRITE; -/*!40000 ALTER TABLE `mdl_question_answers` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_question_answers` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_question_attempt_step_data` --- - -DROP TABLE IF EXISTS `mdl_question_attempt_step_data`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_question_attempt_step_data` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `attemptstepid` bigint(10) NOT NULL, - `name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_quesattestepdata_att_ix` (`attemptstepid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Each question_attempt_step has an associative array of the d'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_question_attempt_step_data` --- - -LOCK TABLES `mdl_question_attempt_step_data` WRITE; -/*!40000 ALTER TABLE `mdl_question_attempt_step_data` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_question_attempt_step_data` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_question_attempt_steps` --- - -DROP TABLE IF EXISTS `mdl_question_attempt_steps`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_question_attempt_steps` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `questionattemptid` bigint(10) NOT NULL, - `sequencenumber` bigint(10) NOT NULL, - `state` varchar(13) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `fraction` decimal(12,7) DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `userid` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_quesattestep_queseq_uix` (`questionattemptid`,`sequencenumber`), - KEY `mdl_quesattestep_que_ix` (`questionattemptid`), - KEY `mdl_quesattestep_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores one step in in a question attempt. As well as the dat'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_question_attempt_steps` --- - -LOCK TABLES `mdl_question_attempt_steps` WRITE; -/*!40000 ALTER TABLE `mdl_question_attempt_steps` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_question_attempt_steps` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_question_attempts` --- - -DROP TABLE IF EXISTS `mdl_question_attempts`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_question_attempts` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `questionusageid` bigint(10) NOT NULL, - `slot` bigint(10) NOT NULL, - `behaviour` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `questionid` bigint(10) NOT NULL, - `variant` bigint(10) NOT NULL DEFAULT 1, - `maxmark` decimal(12,7) NOT NULL, - `minfraction` decimal(12,7) NOT NULL, - `maxfraction` decimal(12,7) NOT NULL DEFAULT 1.0000000, - `flagged` tinyint(1) NOT NULL DEFAULT 0, - `questionsummary` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `rightanswer` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `responsesummary` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timemodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_quesatte_queslo_uix` (`questionusageid`,`slot`), - KEY `mdl_quesatte_beh_ix` (`behaviour`), - KEY `mdl_quesatte_que_ix` (`questionid`), - KEY `mdl_quesatte_que2_ix` (`questionusageid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Each row here corresponds to an attempt at one question, as '; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_question_attempts` --- - -LOCK TABLES `mdl_question_attempts` WRITE; -/*!40000 ALTER TABLE `mdl_question_attempts` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_question_attempts` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_question_calculated` --- - -DROP TABLE IF EXISTS `mdl_question_calculated`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_question_calculated` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `question` bigint(10) NOT NULL DEFAULT 0, - `answer` bigint(10) NOT NULL DEFAULT 0, - `tolerance` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.0', - `tolerancetype` bigint(10) NOT NULL DEFAULT 1, - `correctanswerlength` bigint(10) NOT NULL DEFAULT 2, - `correctanswerformat` bigint(10) NOT NULL DEFAULT 2, - PRIMARY KEY (`id`), - KEY `mdl_quescalc_ans_ix` (`answer`), - KEY `mdl_quescalc_que_ix` (`question`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Options for questions of type calculated'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_question_calculated` --- - -LOCK TABLES `mdl_question_calculated` WRITE; -/*!40000 ALTER TABLE `mdl_question_calculated` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_question_calculated` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_question_calculated_options` --- - -DROP TABLE IF EXISTS `mdl_question_calculated_options`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_question_calculated_options` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `question` bigint(10) NOT NULL DEFAULT 0, - `synchronize` tinyint(2) NOT NULL DEFAULT 0, - `single` smallint(4) NOT NULL DEFAULT 0, - `shuffleanswers` smallint(4) NOT NULL DEFAULT 0, - `correctfeedback` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `correctfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `partiallycorrectfeedback` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `partiallycorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `incorrectfeedback` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `incorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `answernumbering` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'abc', - `shownumcorrect` tinyint(2) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_quescalcopti_que_ix` (`question`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Options for questions of type calculated'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_question_calculated_options` --- - -LOCK TABLES `mdl_question_calculated_options` WRITE; -/*!40000 ALTER TABLE `mdl_question_calculated_options` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_question_calculated_options` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_question_categories` --- - -DROP TABLE IF EXISTS `mdl_question_categories`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_question_categories` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `contextid` bigint(10) NOT NULL DEFAULT 0, - `info` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `infoformat` tinyint(2) NOT NULL DEFAULT 0, - `stamp` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `parent` bigint(10) NOT NULL DEFAULT 0, - `sortorder` bigint(10) NOT NULL DEFAULT 999, - `idnumber` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_quescate_consta_uix` (`contextid`,`stamp`), - UNIQUE KEY `mdl_quescate_conidn_uix` (`contextid`,`idnumber`), - KEY `mdl_quescate_con_ix` (`contextid`), - KEY `mdl_quescate_par_ix` (`parent`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Categories are for grouping questions'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_question_categories` --- - -LOCK TABLES `mdl_question_categories` WRITE; -/*!40000 ALTER TABLE `mdl_question_categories` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_question_categories` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_question_dataset_definitions` --- - -DROP TABLE IF EXISTS `mdl_question_dataset_definitions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_question_dataset_definitions` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `category` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `type` bigint(10) NOT NULL DEFAULT 0, - `options` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `itemcount` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_quesdatadefi_cat_ix` (`category`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Organises and stores properties for dataset items'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_question_dataset_definitions` --- - -LOCK TABLES `mdl_question_dataset_definitions` WRITE; -/*!40000 ALTER TABLE `mdl_question_dataset_definitions` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_question_dataset_definitions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_question_dataset_items` --- - -DROP TABLE IF EXISTS `mdl_question_dataset_items`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_question_dataset_items` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `definition` bigint(10) NOT NULL DEFAULT 0, - `itemnumber` bigint(10) NOT NULL DEFAULT 0, - `value` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `mdl_quesdataitem_def_ix` (`definition`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Individual dataset items'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_question_dataset_items` --- - -LOCK TABLES `mdl_question_dataset_items` WRITE; -/*!40000 ALTER TABLE `mdl_question_dataset_items` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_question_dataset_items` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_question_datasets` --- - -DROP TABLE IF EXISTS `mdl_question_datasets`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_question_datasets` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `question` bigint(10) NOT NULL DEFAULT 0, - `datasetdefinition` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_quesdata_quedat_ix` (`question`,`datasetdefinition`), - KEY `mdl_quesdata_que_ix` (`question`), - KEY `mdl_quesdata_dat_ix` (`datasetdefinition`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Many-many relation between questions and dataset definitions'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_question_datasets` --- - -LOCK TABLES `mdl_question_datasets` WRITE; -/*!40000 ALTER TABLE `mdl_question_datasets` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_question_datasets` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_question_ddwtos` --- - -DROP TABLE IF EXISTS `mdl_question_ddwtos`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_question_ddwtos` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `questionid` bigint(10) NOT NULL DEFAULT 0, - `shuffleanswers` smallint(4) NOT NULL DEFAULT 1, - `correctfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `correctfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `partiallycorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `partiallycorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `incorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `incorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `shownumcorrect` tinyint(2) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_quesddwt_que_ix` (`questionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines drag and drop (words into sentences) questions'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_question_ddwtos` --- - -LOCK TABLES `mdl_question_ddwtos` WRITE; -/*!40000 ALTER TABLE `mdl_question_ddwtos` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_question_ddwtos` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_question_gapselect` --- - -DROP TABLE IF EXISTS `mdl_question_gapselect`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_question_gapselect` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `questionid` bigint(10) NOT NULL DEFAULT 0, - `shuffleanswers` smallint(4) NOT NULL DEFAULT 1, - `correctfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `correctfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `partiallycorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `partiallycorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `incorrectfeedback` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `incorrectfeedbackformat` tinyint(2) NOT NULL DEFAULT 0, - `shownumcorrect` tinyint(2) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_quesgaps_que_ix` (`questionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines select missing words questions'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_question_gapselect` --- - -LOCK TABLES `mdl_question_gapselect` WRITE; -/*!40000 ALTER TABLE `mdl_question_gapselect` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_question_gapselect` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_question_hints` --- - -DROP TABLE IF EXISTS `mdl_question_hints`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_question_hints` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `questionid` bigint(10) NOT NULL, - `hint` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `hintformat` smallint(4) NOT NULL DEFAULT 0, - `shownumcorrect` tinyint(1) DEFAULT NULL, - `clearwrong` tinyint(1) DEFAULT NULL, - `options` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_queshint_que_ix` (`questionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the the part of the question definition that gives di'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_question_hints` --- - -LOCK TABLES `mdl_question_hints` WRITE; -/*!40000 ALTER TABLE `mdl_question_hints` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_question_hints` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_question_multianswer` --- - -DROP TABLE IF EXISTS `mdl_question_multianswer`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_question_multianswer` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `question` bigint(10) NOT NULL DEFAULT 0, - `sequence` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_quesmult_que_ix` (`question`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Options for multianswer questions'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_question_multianswer` --- - -LOCK TABLES `mdl_question_multianswer` WRITE; -/*!40000 ALTER TABLE `mdl_question_multianswer` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_question_multianswer` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_question_numerical` --- - -DROP TABLE IF EXISTS `mdl_question_numerical`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_question_numerical` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `question` bigint(10) NOT NULL DEFAULT 0, - `answer` bigint(10) NOT NULL DEFAULT 0, - `tolerance` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.0', - PRIMARY KEY (`id`), - KEY `mdl_quesnume_ans_ix` (`answer`), - KEY `mdl_quesnume_que_ix` (`question`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Options for numerical questions.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_question_numerical` --- - -LOCK TABLES `mdl_question_numerical` WRITE; -/*!40000 ALTER TABLE `mdl_question_numerical` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_question_numerical` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_question_numerical_options` --- - -DROP TABLE IF EXISTS `mdl_question_numerical_options`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_question_numerical_options` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `question` bigint(10) NOT NULL DEFAULT 0, - `showunits` smallint(4) NOT NULL DEFAULT 0, - `unitsleft` smallint(4) NOT NULL DEFAULT 0, - `unitgradingtype` smallint(4) NOT NULL DEFAULT 0, - `unitpenalty` decimal(12,7) NOT NULL DEFAULT 0.1000000, - PRIMARY KEY (`id`), - KEY `mdl_quesnumeopti_que_ix` (`question`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Options for questions of type numerical This table is also u'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_question_numerical_options` --- - -LOCK TABLES `mdl_question_numerical_options` WRITE; -/*!40000 ALTER TABLE `mdl_question_numerical_options` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_question_numerical_options` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_question_numerical_units` --- - -DROP TABLE IF EXISTS `mdl_question_numerical_units`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_question_numerical_units` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `question` bigint(10) NOT NULL DEFAULT 0, - `multiplier` decimal(38,19) NOT NULL DEFAULT 1.0000000000000000000, - `unit` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_quesnumeunit_queuni_uix` (`question`,`unit`), - KEY `mdl_quesnumeunit_que_ix` (`question`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Optional unit options for numerical questions. This table is'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_question_numerical_units` --- - -LOCK TABLES `mdl_question_numerical_units` WRITE; -/*!40000 ALTER TABLE `mdl_question_numerical_units` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_question_numerical_units` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_question_response_analysis` --- - -DROP TABLE IF EXISTS `mdl_question_response_analysis`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_question_response_analysis` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `hashcode` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `whichtries` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `timemodified` bigint(10) NOT NULL, - `questionid` bigint(10) NOT NULL, - `variant` bigint(10) DEFAULT NULL, - `subqid` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `aid` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `response` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `credit` decimal(15,5) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Analysis of student responses given to questions.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_question_response_analysis` --- - -LOCK TABLES `mdl_question_response_analysis` WRITE; -/*!40000 ALTER TABLE `mdl_question_response_analysis` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_question_response_analysis` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_question_response_count` --- - -DROP TABLE IF EXISTS `mdl_question_response_count`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_question_response_count` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `analysisid` bigint(10) NOT NULL, - `try` bigint(10) NOT NULL, - `rcount` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_quesrespcoun_ana_ix` (`analysisid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Count for each responses for each try at a question.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_question_response_count` --- - -LOCK TABLES `mdl_question_response_count` WRITE; -/*!40000 ALTER TABLE `mdl_question_response_count` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_question_response_count` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_question_statistics` --- - -DROP TABLE IF EXISTS `mdl_question_statistics`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_question_statistics` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `hashcode` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `timemodified` bigint(10) NOT NULL, - `questionid` bigint(10) NOT NULL, - `slot` bigint(10) DEFAULT NULL, - `subquestion` smallint(4) NOT NULL, - `variant` bigint(10) DEFAULT NULL, - `s` bigint(10) NOT NULL DEFAULT 0, - `effectiveweight` decimal(15,5) DEFAULT NULL, - `negcovar` tinyint(2) NOT NULL DEFAULT 0, - `discriminationindex` decimal(15,5) DEFAULT NULL, - `discriminativeefficiency` decimal(15,5) DEFAULT NULL, - `sd` decimal(15,10) DEFAULT NULL, - `facility` decimal(15,10) DEFAULT NULL, - `subquestions` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `maxmark` decimal(12,7) DEFAULT NULL, - `positions` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `randomguessscore` decimal(12,7) DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Statistics for individual questions used in an activity.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_question_statistics` --- - -LOCK TABLES `mdl_question_statistics` WRITE; -/*!40000 ALTER TABLE `mdl_question_statistics` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_question_statistics` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_question_truefalse` --- - -DROP TABLE IF EXISTS `mdl_question_truefalse`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_question_truefalse` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `question` bigint(10) NOT NULL DEFAULT 0, - `trueanswer` bigint(10) NOT NULL DEFAULT 0, - `falseanswer` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_questrue_que_ix` (`question`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Options for True-False questions'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_question_truefalse` --- - -LOCK TABLES `mdl_question_truefalse` WRITE; -/*!40000 ALTER TABLE `mdl_question_truefalse` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_question_truefalse` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_question_usages` --- - -DROP TABLE IF EXISTS `mdl_question_usages`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_question_usages` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `contextid` bigint(10) NOT NULL, - `component` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `preferredbehaviour` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `mdl_quesusag_con_ix` (`contextid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table''s main purpose it to assign a unique id to each a'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_question_usages` --- - -LOCK TABLES `mdl_question_usages` WRITE; -/*!40000 ALTER TABLE `mdl_question_usages` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_question_usages` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_quiz` --- - -DROP TABLE IF EXISTS `mdl_quiz`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_quiz` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `introformat` smallint(4) NOT NULL DEFAULT 0, - `timeopen` bigint(10) NOT NULL DEFAULT 0, - `timeclose` bigint(10) NOT NULL DEFAULT 0, - `timelimit` bigint(10) NOT NULL DEFAULT 0, - `overduehandling` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'autoabandon', - `graceperiod` bigint(10) NOT NULL DEFAULT 0, - `preferredbehaviour` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `canredoquestions` smallint(4) NOT NULL DEFAULT 0, - `attempts` mediumint(6) NOT NULL DEFAULT 0, - `attemptonlast` smallint(4) NOT NULL DEFAULT 0, - `grademethod` smallint(4) NOT NULL DEFAULT 1, - `decimalpoints` smallint(4) NOT NULL DEFAULT 2, - `questiondecimalpoints` smallint(4) NOT NULL DEFAULT -1, - `reviewattempt` mediumint(6) NOT NULL DEFAULT 0, - `reviewcorrectness` mediumint(6) NOT NULL DEFAULT 0, - `reviewmarks` mediumint(6) NOT NULL DEFAULT 0, - `reviewspecificfeedback` mediumint(6) NOT NULL DEFAULT 0, - `reviewgeneralfeedback` mediumint(6) NOT NULL DEFAULT 0, - `reviewrightanswer` mediumint(6) NOT NULL DEFAULT 0, - `reviewoverallfeedback` mediumint(6) NOT NULL DEFAULT 0, - `questionsperpage` bigint(10) NOT NULL DEFAULT 0, - `navmethod` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'free', - `shuffleanswers` smallint(4) NOT NULL DEFAULT 0, - `sumgrades` decimal(10,5) NOT NULL DEFAULT 0.00000, - `grade` decimal(10,5) NOT NULL DEFAULT 0.00000, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `subnet` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `browsersecurity` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `delay1` bigint(10) NOT NULL DEFAULT 0, - `delay2` bigint(10) NOT NULL DEFAULT 0, - `showuserpicture` smallint(4) NOT NULL DEFAULT 0, - `showblocks` smallint(4) NOT NULL DEFAULT 0, - `completionattemptsexhausted` tinyint(1) DEFAULT 0, - `completionpass` tinyint(1) DEFAULT 0, - `completionminattempts` bigint(10) NOT NULL DEFAULT 0, - `allowofflineattempts` tinyint(1) DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_quiz_cou_ix` (`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The settings for each quiz.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_quiz` --- - -LOCK TABLES `mdl_quiz` WRITE; -/*!40000 ALTER TABLE `mdl_quiz` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_quiz` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_quiz_attempts` --- - -DROP TABLE IF EXISTS `mdl_quiz_attempts`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_quiz_attempts` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `quiz` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `attempt` mediumint(6) NOT NULL DEFAULT 0, - `uniqueid` bigint(10) NOT NULL DEFAULT 0, - `layout` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `currentpage` bigint(10) NOT NULL DEFAULT 0, - `preview` smallint(3) NOT NULL DEFAULT 0, - `state` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'inprogress', - `timestart` bigint(10) NOT NULL DEFAULT 0, - `timefinish` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `timemodifiedoffline` bigint(10) NOT NULL DEFAULT 0, - `timecheckstate` bigint(10) DEFAULT 0, - `sumgrades` decimal(10,5) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_quizatte_quiuseatt_uix` (`quiz`,`userid`,`attempt`), - UNIQUE KEY `mdl_quizatte_uni_uix` (`uniqueid`), - KEY `mdl_quizatte_statim_ix` (`state`,`timecheckstate`), - KEY `mdl_quizatte_qui_ix` (`quiz`), - KEY `mdl_quizatte_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores users attempts at quizzes.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_quiz_attempts` --- - -LOCK TABLES `mdl_quiz_attempts` WRITE; -/*!40000 ALTER TABLE `mdl_quiz_attempts` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_quiz_attempts` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_quiz_feedback` --- - -DROP TABLE IF EXISTS `mdl_quiz_feedback`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_quiz_feedback` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `quizid` bigint(10) NOT NULL DEFAULT 0, - `feedbacktext` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `feedbacktextformat` tinyint(2) NOT NULL DEFAULT 0, - `mingrade` decimal(10,5) NOT NULL DEFAULT 0.00000, - `maxgrade` decimal(10,5) NOT NULL DEFAULT 0.00000, - PRIMARY KEY (`id`), - KEY `mdl_quizfeed_qui_ix` (`quizid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Feedback given to students based on which grade band their o'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_quiz_feedback` --- - -LOCK TABLES `mdl_quiz_feedback` WRITE; -/*!40000 ALTER TABLE `mdl_quiz_feedback` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_quiz_feedback` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_quiz_grades` --- - -DROP TABLE IF EXISTS `mdl_quiz_grades`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_quiz_grades` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `quiz` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `grade` decimal(10,5) NOT NULL DEFAULT 0.00000, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_quizgrad_use_ix` (`userid`), - KEY `mdl_quizgrad_qui_ix` (`quiz`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the overall grade for each user on the quiz, based on'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_quiz_grades` --- - -LOCK TABLES `mdl_quiz_grades` WRITE; -/*!40000 ALTER TABLE `mdl_quiz_grades` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_quiz_grades` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_quiz_overrides` --- - -DROP TABLE IF EXISTS `mdl_quiz_overrides`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_quiz_overrides` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `quiz` bigint(10) NOT NULL DEFAULT 0, - `groupid` bigint(10) DEFAULT NULL, - `userid` bigint(10) DEFAULT NULL, - `timeopen` bigint(10) DEFAULT NULL, - `timeclose` bigint(10) DEFAULT NULL, - `timelimit` bigint(10) DEFAULT NULL, - `attempts` mediumint(6) DEFAULT NULL, - `password` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_quizover_qui_ix` (`quiz`), - KEY `mdl_quizover_gro_ix` (`groupid`), - KEY `mdl_quizover_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The overrides to quiz settings on a per-user and per-group b'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_quiz_overrides` --- - -LOCK TABLES `mdl_quiz_overrides` WRITE; -/*!40000 ALTER TABLE `mdl_quiz_overrides` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_quiz_overrides` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_quiz_overview_regrades` --- - -DROP TABLE IF EXISTS `mdl_quiz_overview_regrades`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_quiz_overview_regrades` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `questionusageid` bigint(10) NOT NULL, - `slot` bigint(10) NOT NULL, - `newfraction` decimal(12,7) DEFAULT NULL, - `oldfraction` decimal(12,7) DEFAULT NULL, - `regraded` smallint(4) NOT NULL, - `timemodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_quizoverregr_queslo_ix` (`questionusageid`,`slot`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table records which question attempts need regrading an'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_quiz_overview_regrades` --- - -LOCK TABLES `mdl_quiz_overview_regrades` WRITE; -/*!40000 ALTER TABLE `mdl_quiz_overview_regrades` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_quiz_overview_regrades` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_quiz_reports` --- - -DROP TABLE IF EXISTS `mdl_quiz_reports`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_quiz_reports` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `displayorder` bigint(10) NOT NULL, - `capability` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_quizrepo_nam_uix` (`name`) -) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Lists all the installed quiz reports and their display order'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_quiz_reports` --- - -LOCK TABLES `mdl_quiz_reports` WRITE; -/*!40000 ALTER TABLE `mdl_quiz_reports` DISABLE KEYS */; -INSERT INTO `mdl_quiz_reports` VALUES (1,'grading',6000,'mod/quiz:grade'),(2,'overview',10000,NULL),(3,'responses',9000,NULL),(4,'statistics',8000,'quiz/statistics:view'); -/*!40000 ALTER TABLE `mdl_quiz_reports` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_quiz_sections` --- - -DROP TABLE IF EXISTS `mdl_quiz_sections`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_quiz_sections` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `quizid` bigint(10) NOT NULL, - `firstslot` bigint(10) NOT NULL, - `heading` varchar(1333) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `shufflequestions` smallint(4) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_quizsect_quifir_uix` (`quizid`,`firstslot`), - KEY `mdl_quizsect_qui_ix` (`quizid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores sections of a quiz with section name (heading), from '; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_quiz_sections` --- - -LOCK TABLES `mdl_quiz_sections` WRITE; -/*!40000 ALTER TABLE `mdl_quiz_sections` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_quiz_sections` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_quiz_slot_tags` --- - -DROP TABLE IF EXISTS `mdl_quiz_slot_tags`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_quiz_slot_tags` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `slotid` bigint(10) DEFAULT NULL, - `tagid` bigint(10) DEFAULT NULL, - `tagname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_quizslottags_slo_ix` (`slotid`), - KEY `mdl_quizslottags_tag_ix` (`tagid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores data about the tags that a question must have so that'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_quiz_slot_tags` --- - -LOCK TABLES `mdl_quiz_slot_tags` WRITE; -/*!40000 ALTER TABLE `mdl_quiz_slot_tags` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_quiz_slot_tags` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_quiz_slots` --- - -DROP TABLE IF EXISTS `mdl_quiz_slots`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_quiz_slots` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `slot` bigint(10) NOT NULL, - `quizid` bigint(10) NOT NULL DEFAULT 0, - `page` bigint(10) NOT NULL, - `requireprevious` smallint(4) NOT NULL DEFAULT 0, - `questionid` bigint(10) NOT NULL DEFAULT 0, - `questioncategoryid` bigint(10) DEFAULT NULL, - `includingsubcategories` smallint(4) DEFAULT NULL, - `maxmark` decimal(12,7) NOT NULL DEFAULT 0.0000000, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_quizslot_quislo_uix` (`quizid`,`slot`), - KEY `mdl_quizslot_qui_ix` (`quizid`), - KEY `mdl_quizslot_que_ix` (`questionid`), - KEY `mdl_quizslot_que2_ix` (`questioncategoryid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the question used in a quiz, with the order, and for '; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_quiz_slots` --- - -LOCK TABLES `mdl_quiz_slots` WRITE; -/*!40000 ALTER TABLE `mdl_quiz_slots` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_quiz_slots` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_quiz_statistics` --- - -DROP TABLE IF EXISTS `mdl_quiz_statistics`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_quiz_statistics` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `hashcode` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `whichattempts` smallint(4) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `firstattemptscount` bigint(10) NOT NULL, - `highestattemptscount` bigint(10) NOT NULL, - `lastattemptscount` bigint(10) NOT NULL, - `allattemptscount` bigint(10) NOT NULL, - `firstattemptsavg` decimal(15,5) DEFAULT NULL, - `highestattemptsavg` decimal(15,5) DEFAULT NULL, - `lastattemptsavg` decimal(15,5) DEFAULT NULL, - `allattemptsavg` decimal(15,5) DEFAULT NULL, - `median` decimal(15,5) DEFAULT NULL, - `standarddeviation` decimal(15,5) DEFAULT NULL, - `skewness` decimal(15,10) DEFAULT NULL, - `kurtosis` decimal(15,5) DEFAULT NULL, - `cic` decimal(15,10) DEFAULT NULL, - `errorratio` decimal(15,10) DEFAULT NULL, - `standarderror` decimal(15,10) DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='table to cache results from analysis done in statistics repo'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_quiz_statistics` --- - -LOCK TABLES `mdl_quiz_statistics` WRITE; -/*!40000 ALTER TABLE `mdl_quiz_statistics` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_quiz_statistics` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_quizaccess_seb_quizsettings` --- - -DROP TABLE IF EXISTS `mdl_quizaccess_seb_quizsettings`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_quizaccess_seb_quizsettings` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `quizid` bigint(10) NOT NULL, - `cmid` bigint(10) NOT NULL, - `templateid` bigint(10) NOT NULL, - `requiresafeexambrowser` tinyint(1) NOT NULL, - `showsebtaskbar` tinyint(1) DEFAULT NULL, - `showwificontrol` tinyint(1) DEFAULT NULL, - `showreloadbutton` tinyint(1) DEFAULT NULL, - `showtime` tinyint(1) DEFAULT NULL, - `showkeyboardlayout` tinyint(1) DEFAULT NULL, - `allowuserquitseb` tinyint(1) DEFAULT NULL, - `quitpassword` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `linkquitseb` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `userconfirmquit` tinyint(1) DEFAULT NULL, - `enableaudiocontrol` tinyint(1) DEFAULT NULL, - `muteonstartup` tinyint(1) DEFAULT NULL, - `allowspellchecking` tinyint(1) DEFAULT NULL, - `allowreloadinexam` tinyint(1) DEFAULT NULL, - `activateurlfiltering` tinyint(1) DEFAULT NULL, - `filterembeddedcontent` tinyint(1) DEFAULT NULL, - `expressionsallowed` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `regexallowed` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `expressionsblocked` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `regexblocked` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `allowedbrowserexamkeys` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `showsebdownloadlink` tinyint(1) DEFAULT NULL, - `usermodified` bigint(10) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_quizsebquiz_qui_uix` (`quizid`), - UNIQUE KEY `mdl_quizsebquiz_cmi_uix` (`cmid`), - KEY `mdl_quizsebquiz_tem_ix` (`templateid`), - KEY `mdl_quizsebquiz_use_ix` (`usermodified`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the quiz level Safe Exam Browser configuration.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_quizaccess_seb_quizsettings` --- - -LOCK TABLES `mdl_quizaccess_seb_quizsettings` WRITE; -/*!40000 ALTER TABLE `mdl_quizaccess_seb_quizsettings` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_quizaccess_seb_quizsettings` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_quizaccess_seb_template` --- - -DROP TABLE IF EXISTS `mdl_quizaccess_seb_template`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_quizaccess_seb_template` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `enabled` tinyint(1) NOT NULL, - `sortorder` bigint(10) NOT NULL, - `usermodified` bigint(10) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_quizsebtemp_use_ix` (`usermodified`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Templates for Safe Exam Browser configuration.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_quizaccess_seb_template` --- - -LOCK TABLES `mdl_quizaccess_seb_template` WRITE; -/*!40000 ALTER TABLE `mdl_quizaccess_seb_template` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_quizaccess_seb_template` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_rating` --- - -DROP TABLE IF EXISTS `mdl_rating`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_rating` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `contextid` bigint(10) NOT NULL, - `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `ratingarea` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `itemid` bigint(10) NOT NULL, - `scaleid` bigint(10) NOT NULL, - `rating` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_rati_comratconite_ix` (`component`,`ratingarea`,`contextid`,`itemid`), - KEY `mdl_rati_con_ix` (`contextid`), - KEY `mdl_rati_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='moodle ratings'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_rating` --- - -LOCK TABLES `mdl_rating` WRITE; -/*!40000 ALTER TABLE `mdl_rating` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_rating` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_registration_hubs` --- - -DROP TABLE IF EXISTS `mdl_registration_hubs`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_registration_hubs` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `hubname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `huburl` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `confirmed` tinyint(1) NOT NULL DEFAULT 0, - `secret` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='hub where the site is registered on with their associated to'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_registration_hubs` --- - -LOCK TABLES `mdl_registration_hubs` WRITE; -/*!40000 ALTER TABLE `mdl_registration_hubs` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_registration_hubs` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_repository` --- - -DROP TABLE IF EXISTS `mdl_repository`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_repository` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `visible` tinyint(1) DEFAULT 1, - `sortorder` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table contains one entry for every configured external '; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_repository` --- - -LOCK TABLES `mdl_repository` WRITE; -/*!40000 ALTER TABLE `mdl_repository` DISABLE KEYS */; -INSERT INTO `mdl_repository` VALUES (1,'areafiles',1,1),(2,'contentbank',1,2),(3,'local',1,3),(4,'recent',1,4),(5,'upload',1,5),(6,'url',1,6),(7,'user',1,7),(8,'wikimedia',1,8); -/*!40000 ALTER TABLE `mdl_repository` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_repository_instance_config` --- - -DROP TABLE IF EXISTS `mdl_repository_instance_config`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_repository_instance_config` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `instanceid` bigint(10) NOT NULL, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The config for intances'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_repository_instance_config` --- - -LOCK TABLES `mdl_repository_instance_config` WRITE; -/*!40000 ALTER TABLE `mdl_repository_instance_config` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_repository_instance_config` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_repository_instances` --- - -DROP TABLE IF EXISTS `mdl_repository_instances`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_repository_instances` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `typeid` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL DEFAULT 0, - `contextid` bigint(10) NOT NULL, - `username` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `password` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timecreated` bigint(10) DEFAULT NULL, - `timemodified` bigint(10) DEFAULT NULL, - `readonly` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table contains one entry for every configured external '; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_repository_instances` --- - -LOCK TABLES `mdl_repository_instances` WRITE; -/*!40000 ALTER TABLE `mdl_repository_instances` DISABLE KEYS */; -INSERT INTO `mdl_repository_instances` VALUES (1,'',1,0,1,NULL,NULL,1619623713,1619623713,0),(2,'',2,0,1,NULL,NULL,1619623713,1619623713,0),(3,'',3,0,1,NULL,NULL,1619623714,1619623714,0),(4,'',4,0,1,NULL,NULL,1619623714,1619623714,0),(5,'',5,0,1,NULL,NULL,1619623714,1619623714,0),(6,'',6,0,1,NULL,NULL,1619623714,1619623714,0),(7,'',7,0,1,NULL,NULL,1619623715,1619623715,0),(8,'',8,0,1,NULL,NULL,1619623715,1619623715,0); -/*!40000 ALTER TABLE `mdl_repository_instances` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_repository_onedrive_access` --- - -DROP TABLE IF EXISTS `mdl_repository_onedrive_access`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_repository_onedrive_access` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `timemodified` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `usermodified` bigint(10) NOT NULL, - `permissionid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `itemid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `mdl_repoonedacce_use_ix` (`usermodified`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='List of temporary access grants.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_repository_onedrive_access` --- - -LOCK TABLES `mdl_repository_onedrive_access` WRITE; -/*!40000 ALTER TABLE `mdl_repository_onedrive_access` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_repository_onedrive_access` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_resource` --- - -DROP TABLE IF EXISTS `mdl_resource`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_resource` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `introformat` smallint(4) NOT NULL DEFAULT 0, - `tobemigrated` smallint(4) NOT NULL DEFAULT 0, - `legacyfiles` smallint(4) NOT NULL DEFAULT 0, - `legacyfileslast` bigint(10) DEFAULT NULL, - `display` smallint(4) NOT NULL DEFAULT 0, - `displayoptions` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `filterfiles` smallint(4) NOT NULL DEFAULT 0, - `revision` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_reso_cou_ix` (`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Each record is one resource and its config data'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_resource` --- - -LOCK TABLES `mdl_resource` WRITE; -/*!40000 ALTER TABLE `mdl_resource` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_resource` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_resource_old` --- - -DROP TABLE IF EXISTS `mdl_resource_old`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_resource_old` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `type` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `reference` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `introformat` smallint(4) NOT NULL DEFAULT 0, - `alltext` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `popup` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `options` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `oldid` bigint(10) NOT NULL, - `cmid` bigint(10) DEFAULT NULL, - `newmodule` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `newid` bigint(10) DEFAULT NULL, - `migrated` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_resoold_old_uix` (`oldid`), - KEY `mdl_resoold_cmi_ix` (`cmid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='backup of all old resource instances from 1.9'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_resource_old` --- - -LOCK TABLES `mdl_resource_old` WRITE; -/*!40000 ALTER TABLE `mdl_resource_old` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_resource_old` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_role` --- - -DROP TABLE IF EXISTS `mdl_role`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_role` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `shortname` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `sortorder` bigint(10) NOT NULL DEFAULT 0, - `archetype` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_role_sor_uix` (`sortorder`), - UNIQUE KEY `mdl_role_sho_uix` (`shortname`) -) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='moodle roles'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_role` --- - -LOCK TABLES `mdl_role` WRITE; -/*!40000 ALTER TABLE `mdl_role` DISABLE KEYS */; -INSERT INTO `mdl_role` VALUES (1,'','manager','',1,'manager'),(2,'','coursecreator','',2,'coursecreator'),(3,'','editingteacher','',3,'editingteacher'),(4,'','teacher','',4,'teacher'),(5,'','student','',5,'student'),(6,'','guest','',6,'guest'),(7,'','user','',7,'user'),(8,'','frontpage','',8,'frontpage'); -/*!40000 ALTER TABLE `mdl_role` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_role_allow_assign` --- - -DROP TABLE IF EXISTS `mdl_role_allow_assign`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_role_allow_assign` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `roleid` bigint(10) NOT NULL DEFAULT 0, - `allowassign` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_rolealloassi_rolall_uix` (`roleid`,`allowassign`), - KEY `mdl_rolealloassi_rol_ix` (`roleid`), - KEY `mdl_rolealloassi_all_ix` (`allowassign`) -) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='this defines what role can assign what role'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_role_allow_assign` --- - -LOCK TABLES `mdl_role_allow_assign` WRITE; -/*!40000 ALTER TABLE `mdl_role_allow_assign` DISABLE KEYS */; -INSERT INTO `mdl_role_allow_assign` VALUES (1,1,1),(2,1,2),(3,1,3),(4,1,4),(5,1,5),(6,3,4),(7,3,5); -/*!40000 ALTER TABLE `mdl_role_allow_assign` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_role_allow_override` --- - -DROP TABLE IF EXISTS `mdl_role_allow_override`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_role_allow_override` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `roleid` bigint(10) NOT NULL DEFAULT 0, - `allowoverride` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_rolealloover_rolall_uix` (`roleid`,`allowoverride`), - KEY `mdl_rolealloover_rol_ix` (`roleid`), - KEY `mdl_rolealloover_all_ix` (`allowoverride`) -) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='this defines what role can override what role'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_role_allow_override` --- - -LOCK TABLES `mdl_role_allow_override` WRITE; -/*!40000 ALTER TABLE `mdl_role_allow_override` DISABLE KEYS */; -INSERT INTO `mdl_role_allow_override` VALUES (1,1,1),(2,1,2),(3,1,3),(4,1,4),(5,1,5),(6,1,6),(7,1,7),(8,1,8),(9,3,4),(10,3,5),(11,3,6); -/*!40000 ALTER TABLE `mdl_role_allow_override` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_role_allow_switch` --- - -DROP TABLE IF EXISTS `mdl_role_allow_switch`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_role_allow_switch` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `roleid` bigint(10) NOT NULL, - `allowswitch` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_rolealloswit_rolall_uix` (`roleid`,`allowswitch`), - KEY `mdl_rolealloswit_rol_ix` (`roleid`), - KEY `mdl_rolealloswit_all_ix` (`allowswitch`) -) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table stores which which other roles a user is allowed '; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_role_allow_switch` --- - -LOCK TABLES `mdl_role_allow_switch` WRITE; -/*!40000 ALTER TABLE `mdl_role_allow_switch` DISABLE KEYS */; -INSERT INTO `mdl_role_allow_switch` VALUES (1,1,3),(2,1,4),(3,1,5),(4,1,6),(5,3,4),(6,3,5),(7,3,6),(8,4,5),(9,4,6); -/*!40000 ALTER TABLE `mdl_role_allow_switch` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_role_allow_view` --- - -DROP TABLE IF EXISTS `mdl_role_allow_view`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_role_allow_view` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `roleid` bigint(10) NOT NULL, - `allowview` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_rolealloview_rolall_uix` (`roleid`,`allowview`), - KEY `mdl_rolealloview_rol_ix` (`roleid`), - KEY `mdl_rolealloview_all_ix` (`allowview`) -) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table stores which which other roles a user is allowed '; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_role_allow_view` --- - -LOCK TABLES `mdl_role_allow_view` WRITE; -/*!40000 ALTER TABLE `mdl_role_allow_view` DISABLE KEYS */; -INSERT INTO `mdl_role_allow_view` VALUES (1,1,1),(2,1,2),(3,1,3),(4,1,4),(5,1,5),(6,1,6),(7,1,7),(8,1,8),(9,2,2),(10,2,3),(11,2,4),(12,2,5),(13,3,2),(14,3,3),(15,3,4),(16,3,5),(17,4,2),(18,4,3),(19,4,4),(20,4,5),(21,5,2),(22,5,3),(23,5,4),(24,5,5); -/*!40000 ALTER TABLE `mdl_role_allow_view` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_role_assignments` --- - -DROP TABLE IF EXISTS `mdl_role_assignments`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_role_assignments` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `roleid` bigint(10) NOT NULL DEFAULT 0, - `contextid` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `modifierid` bigint(10) NOT NULL DEFAULT 0, - `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `itemid` bigint(10) NOT NULL DEFAULT 0, - `sortorder` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_roleassi_sor_ix` (`sortorder`), - KEY `mdl_roleassi_rolcon_ix` (`roleid`,`contextid`), - KEY `mdl_roleassi_useconrol_ix` (`userid`,`contextid`,`roleid`), - KEY `mdl_roleassi_comiteuse_ix` (`component`,`itemid`,`userid`), - KEY `mdl_roleassi_rol_ix` (`roleid`), - KEY `mdl_roleassi_con_ix` (`contextid`), - KEY `mdl_roleassi_use_ix` (`userid`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='assigning roles in different context'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_role_assignments` --- - -LOCK TABLES `mdl_role_assignments` WRITE; -/*!40000 ALTER TABLE `mdl_role_assignments` DISABLE KEYS */; -INSERT INTO `mdl_role_assignments` VALUES (1,1,2,6,1619624454,2,'',0,0); -/*!40000 ALTER TABLE `mdl_role_assignments` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_role_capabilities` --- - -DROP TABLE IF EXISTS `mdl_role_capabilities`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_role_capabilities` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `contextid` bigint(10) NOT NULL DEFAULT 0, - `roleid` bigint(10) NOT NULL DEFAULT 0, - `capability` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `permission` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `modifierid` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_rolecapa_rolconcap_uix` (`roleid`,`contextid`,`capability`), - KEY `mdl_rolecapa_rol_ix` (`roleid`), - KEY `mdl_rolecapa_con_ix` (`contextid`), - KEY `mdl_rolecapa_mod_ix` (`modifierid`), - KEY `mdl_rolecapa_cap_ix` (`capability`) -) ENGINE=InnoDB AUTO_INCREMENT=1465 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='permission has to be signed, overriding a capability for a p'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_role_capabilities` --- - -LOCK TABLES `mdl_role_capabilities` WRITE; -/*!40000 ALTER TABLE `mdl_role_capabilities` DISABLE KEYS */; -INSERT INTO `mdl_role_capabilities` VALUES (1,1,1,'moodle/site:configview',1,1619623682,0),(2,1,2,'moodle/site:configview',1,1619623682,0),(3,1,1,'moodle/site:readallmessages',1,1619623682,0),(4,1,3,'moodle/site:readallmessages',1,1619623682,0),(5,1,1,'moodle/site:manageallmessaging',1,1619623682,0),(6,1,1,'moodle/site:deleteanymessage',1,1619623682,0),(7,1,1,'moodle/site:sendmessage',1,1619623682,0),(8,1,7,'moodle/site:sendmessage',1,1619623682,0),(9,1,7,'moodle/site:senderrormessage',1,1619623682,0),(10,1,7,'moodle/site:deleteownmessage',1,1619623682,0),(11,1,1,'moodle/site:approvecourse',1,1619623682,0),(12,1,3,'moodle/backup:backupcourse',1,1619623682,0),(13,1,1,'moodle/backup:backupcourse',1,1619623682,0),(14,1,3,'moodle/backup:backupsection',1,1619623682,0),(15,1,1,'moodle/backup:backupsection',1,1619623682,0),(16,1,3,'moodle/backup:backupactivity',1,1619623682,0),(17,1,1,'moodle/backup:backupactivity',1,1619623682,0),(18,1,3,'moodle/backup:backuptargetimport',1,1619623682,0),(19,1,1,'moodle/backup:backuptargetimport',1,1619623682,0),(20,1,3,'moodle/backup:downloadfile',1,1619623682,0),(21,1,1,'moodle/backup:downloadfile',1,1619623682,0),(22,1,3,'moodle/backup:configure',1,1619623682,0),(23,1,1,'moodle/backup:configure',1,1619623682,0),(24,1,1,'moodle/backup:userinfo',1,1619623682,0),(25,1,1,'moodle/backup:anonymise',1,1619623682,0),(26,1,3,'moodle/restore:restorecourse',1,1619623682,0),(27,1,1,'moodle/restore:restorecourse',1,1619623682,0),(28,1,3,'moodle/restore:restoresection',1,1619623682,0),(29,1,1,'moodle/restore:restoresection',1,1619623682,0),(30,1,3,'moodle/restore:restoreactivity',1,1619623682,0),(31,1,1,'moodle/restore:restoreactivity',1,1619623682,0),(32,1,3,'moodle/restore:viewautomatedfilearea',1,1619623682,0),(33,1,1,'moodle/restore:viewautomatedfilearea',1,1619623682,0),(34,1,3,'moodle/restore:restoretargetimport',1,1619623682,0),(35,1,1,'moodle/restore:restoretargetimport',1,1619623682,0),(36,1,3,'moodle/restore:uploadfile',1,1619623682,0),(37,1,1,'moodle/restore:uploadfile',1,1619623682,0),(38,1,3,'moodle/restore:configure',1,1619623682,0),(39,1,1,'moodle/restore:configure',1,1619623682,0),(40,1,2,'moodle/restore:rolldates',1,1619623682,0),(41,1,1,'moodle/restore:rolldates',1,1619623682,0),(42,1,1,'moodle/restore:userinfo',1,1619623682,0),(43,1,1,'moodle/restore:createuser',1,1619623683,0),(44,1,3,'moodle/site:manageblocks',1,1619623683,0),(45,1,1,'moodle/site:manageblocks',1,1619623683,0),(46,1,3,'moodle/site:accessallgroups',1,1619623683,0),(47,1,1,'moodle/site:accessallgroups',1,1619623683,0),(48,1,1,'moodle/site:viewanonymousevents',1,1619623683,0),(49,1,4,'moodle/site:viewfullnames',1,1619623683,0),(50,1,3,'moodle/site:viewfullnames',1,1619623683,0),(51,1,1,'moodle/site:viewfullnames',1,1619623683,0),(52,1,4,'moodle/site:viewuseridentity',1,1619623683,0),(53,1,3,'moodle/site:viewuseridentity',1,1619623683,0),(54,1,1,'moodle/site:viewuseridentity',1,1619623683,0),(55,1,4,'moodle/site:viewreports',1,1619623683,0),(56,1,3,'moodle/site:viewreports',1,1619623683,0),(57,1,1,'moodle/site:viewreports',1,1619623683,0),(58,1,3,'moodle/site:trustcontent',1,1619623683,0),(59,1,1,'moodle/site:trustcontent',1,1619623683,0),(60,1,1,'moodle/site:uploadusers',1,1619623683,0),(61,1,3,'moodle/filter:manage',1,1619623683,0),(62,1,1,'moodle/filter:manage',1,1619623683,0),(63,1,1,'moodle/user:create',1,1619623683,0),(64,1,1,'moodle/user:delete',1,1619623683,0),(65,1,1,'moodle/user:update',1,1619623683,0),(66,1,6,'moodle/user:viewdetails',1,1619623683,0),(67,1,5,'moodle/user:viewdetails',1,1619623683,0),(68,1,4,'moodle/user:viewdetails',1,1619623683,0),(69,1,3,'moodle/user:viewdetails',1,1619623683,0),(70,1,1,'moodle/user:viewdetails',1,1619623683,0),(71,1,1,'moodle/user:viewalldetails',1,1619623683,0),(72,1,1,'moodle/user:viewlastip',1,1619623683,0),(73,1,4,'moodle/user:viewhiddendetails',1,1619623683,0),(74,1,3,'moodle/user:viewhiddendetails',1,1619623683,0),(75,1,1,'moodle/user:viewhiddendetails',1,1619623683,0),(76,1,1,'moodle/user:loginas',1,1619623683,0),(77,1,1,'moodle/user:managesyspages',1,1619623683,0),(78,1,7,'moodle/user:manageownblocks',1,1619623683,0),(79,1,7,'moodle/user:manageownfiles',1,1619623683,0),(80,1,1,'moodle/my:configsyspages',1,1619623683,0),(81,1,3,'moodle/role:assign',1,1619623683,0),(82,1,1,'moodle/role:assign',1,1619623683,0),(83,1,4,'moodle/role:review',1,1619623683,0),(84,1,3,'moodle/role:review',1,1619623683,0),(85,1,1,'moodle/role:review',1,1619623683,0),(86,1,1,'moodle/role:override',1,1619623683,0),(87,1,3,'moodle/role:safeoverride',1,1619623683,0),(88,1,1,'moodle/role:manage',1,1619623683,0),(89,1,3,'moodle/role:switchroles',1,1619623683,0),(90,1,1,'moodle/role:switchroles',1,1619623683,0),(91,1,1,'moodle/category:manage',1,1619623683,0),(92,1,6,'moodle/category:viewcourselist',1,1619623683,0),(93,1,7,'moodle/category:viewcourselist',1,1619623683,0),(94,1,2,'moodle/category:viewhiddencategories',1,1619623683,0),(95,1,1,'moodle/category:viewhiddencategories',1,1619623683,0),(96,1,1,'moodle/cohort:manage',1,1619623683,0),(97,1,1,'moodle/cohort:assign',1,1619623683,0),(98,1,3,'moodle/cohort:view',1,1619623683,0),(99,1,1,'moodle/cohort:view',1,1619623683,0),(100,1,2,'moodle/course:create',1,1619623683,0),(101,1,1,'moodle/course:create',1,1619623683,0),(102,1,3,'moodle/course:creategroupconversations',1,1619623683,0),(103,1,1,'moodle/course:creategroupconversations',1,1619623683,0),(104,1,1,'moodle/course:delete',1,1619623683,0),(105,1,3,'moodle/course:update',1,1619623683,0),(106,1,1,'moodle/course:update',1,1619623683,0),(107,1,1,'moodle/course:view',1,1619623683,0),(108,1,3,'moodle/course:enrolreview',1,1619623683,0),(109,1,1,'moodle/course:enrolreview',1,1619623683,0),(110,1,3,'moodle/course:enrolconfig',1,1619623683,0),(111,1,1,'moodle/course:enrolconfig',1,1619623683,0),(112,1,3,'moodle/course:reviewotherusers',1,1619623683,0),(113,1,1,'moodle/course:reviewotherusers',1,1619623683,0),(114,1,4,'moodle/course:bulkmessaging',1,1619623683,0),(115,1,3,'moodle/course:bulkmessaging',1,1619623683,0),(116,1,1,'moodle/course:bulkmessaging',1,1619623683,0),(117,1,4,'moodle/course:viewhiddenuserfields',1,1619623683,0),(118,1,3,'moodle/course:viewhiddenuserfields',1,1619623683,0),(119,1,1,'moodle/course:viewhiddenuserfields',1,1619623683,0),(120,1,2,'moodle/course:viewhiddencourses',1,1619623683,0),(121,1,4,'moodle/course:viewhiddencourses',1,1619623683,0),(122,1,3,'moodle/course:viewhiddencourses',1,1619623683,0),(123,1,1,'moodle/course:viewhiddencourses',1,1619623683,0),(124,1,3,'moodle/course:visibility',1,1619623683,0),(125,1,1,'moodle/course:visibility',1,1619623683,0),(126,1,3,'moodle/course:managefiles',1,1619623683,0),(127,1,1,'moodle/course:managefiles',1,1619623683,0),(128,1,1,'moodle/course:ignoreavailabilityrestrictions',1,1619623683,0),(129,1,2,'moodle/course:ignoreavailabilityrestrictions',1,1619623683,0),(130,1,3,'moodle/course:ignoreavailabilityrestrictions',1,1619623683,0),(131,1,4,'moodle/course:ignoreavailabilityrestrictions',1,1619623683,0),(132,1,3,'moodle/course:manageactivities',1,1619623683,0),(133,1,1,'moodle/course:manageactivities',1,1619623683,0),(134,1,3,'moodle/course:activityvisibility',1,1619623683,0),(135,1,1,'moodle/course:activityvisibility',1,1619623683,0),(136,1,4,'moodle/course:viewhiddenactivities',1,1619623683,0),(137,1,3,'moodle/course:viewhiddenactivities',1,1619623683,0),(138,1,1,'moodle/course:viewhiddenactivities',1,1619623683,0),(139,1,5,'moodle/course:viewparticipants',1,1619623683,0),(140,1,4,'moodle/course:viewparticipants',1,1619623683,0),(141,1,3,'moodle/course:viewparticipants',1,1619623683,0),(142,1,1,'moodle/course:viewparticipants',1,1619623683,0),(143,1,3,'moodle/course:changefullname',1,1619623683,0),(144,1,1,'moodle/course:changefullname',1,1619623683,0),(145,1,3,'moodle/course:changeshortname',1,1619623683,0),(146,1,1,'moodle/course:changeshortname',1,1619623683,0),(147,1,1,'moodle/course:changelockedcustomfields',1,1619623683,0),(148,1,3,'moodle/course:renameroles',1,1619623683,0),(149,1,1,'moodle/course:renameroles',1,1619623683,0),(150,1,3,'moodle/course:changeidnumber',1,1619623683,0),(151,1,1,'moodle/course:changeidnumber',1,1619623683,0),(152,1,3,'moodle/course:changecategory',1,1619623684,0),(153,1,1,'moodle/course:changecategory',1,1619623684,0),(154,1,3,'moodle/course:changesummary',1,1619623684,0),(155,1,1,'moodle/course:changesummary',1,1619623684,0),(156,1,3,'moodle/course:setforcedlanguage',1,1619623684,0),(157,1,1,'moodle/course:setforcedlanguage',1,1619623684,0),(158,1,1,'moodle/site:viewparticipants',1,1619623684,0),(159,1,5,'moodle/course:isincompletionreports',1,1619623684,0),(160,1,5,'moodle/course:viewscales',1,1619623684,0),(161,1,4,'moodle/course:viewscales',1,1619623684,0),(162,1,3,'moodle/course:viewscales',1,1619623684,0),(163,1,1,'moodle/course:viewscales',1,1619623684,0),(164,1,3,'moodle/course:managescales',1,1619623684,0),(165,1,1,'moodle/course:managescales',1,1619623684,0),(166,1,3,'moodle/course:managegroups',1,1619623684,0),(167,1,1,'moodle/course:managegroups',1,1619623684,0),(168,1,3,'moodle/course:reset',1,1619623684,0),(169,1,1,'moodle/course:reset',1,1619623684,0),(170,1,3,'moodle/course:viewsuspendedusers',1,1619623684,0),(171,1,1,'moodle/course:viewsuspendedusers',1,1619623684,0),(172,1,1,'moodle/course:tag',1,1619623684,0),(173,1,3,'moodle/course:tag',1,1619623684,0),(174,1,6,'moodle/blog:view',1,1619623684,0),(175,1,7,'moodle/blog:view',1,1619623684,0),(176,1,5,'moodle/blog:view',1,1619623684,0),(177,1,4,'moodle/blog:view',1,1619623684,0),(178,1,3,'moodle/blog:view',1,1619623684,0),(179,1,1,'moodle/blog:view',1,1619623684,0),(180,1,6,'moodle/blog:search',1,1619623684,0),(181,1,7,'moodle/blog:search',1,1619623684,0),(182,1,5,'moodle/blog:search',1,1619623684,0),(183,1,4,'moodle/blog:search',1,1619623684,0),(184,1,3,'moodle/blog:search',1,1619623684,0),(185,1,1,'moodle/blog:search',1,1619623684,0),(186,1,1,'moodle/blog:viewdrafts',1,1619623684,0),(187,1,7,'moodle/blog:create',1,1619623684,0),(188,1,1,'moodle/blog:create',1,1619623684,0),(189,1,4,'moodle/blog:manageentries',1,1619623684,0),(190,1,3,'moodle/blog:manageentries',1,1619623684,0),(191,1,1,'moodle/blog:manageentries',1,1619623684,0),(192,1,5,'moodle/blog:manageexternal',1,1619623684,0),(193,1,7,'moodle/blog:manageexternal',1,1619623684,0),(194,1,4,'moodle/blog:manageexternal',1,1619623684,0),(195,1,3,'moodle/blog:manageexternal',1,1619623684,0),(196,1,1,'moodle/blog:manageexternal',1,1619623684,0),(197,1,7,'moodle/calendar:manageownentries',1,1619623684,0),(198,1,1,'moodle/calendar:manageownentries',1,1619623684,0),(199,1,4,'moodle/calendar:managegroupentries',1,1619623684,0),(200,1,3,'moodle/calendar:managegroupentries',1,1619623684,0),(201,1,1,'moodle/calendar:managegroupentries',1,1619623684,0),(202,1,4,'moodle/calendar:manageentries',1,1619623684,0),(203,1,3,'moodle/calendar:manageentries',1,1619623684,0),(204,1,1,'moodle/calendar:manageentries',1,1619623684,0),(205,1,1,'moodle/user:editprofile',1,1619623684,0),(206,1,6,'moodle/user:editownprofile',-1000,1619623684,0),(207,1,7,'moodle/user:editownprofile',1,1619623684,0),(208,1,1,'moodle/user:editownprofile',1,1619623684,0),(209,1,6,'moodle/user:changeownpassword',-1000,1619623684,0),(210,1,7,'moodle/user:changeownpassword',1,1619623684,0),(211,1,1,'moodle/user:changeownpassword',1,1619623684,0),(212,1,5,'moodle/user:readuserposts',1,1619623684,0),(213,1,4,'moodle/user:readuserposts',1,1619623684,0),(214,1,3,'moodle/user:readuserposts',1,1619623684,0),(215,1,1,'moodle/user:readuserposts',1,1619623684,0),(216,1,5,'moodle/user:readuserblogs',1,1619623684,0),(217,1,4,'moodle/user:readuserblogs',1,1619623684,0),(218,1,3,'moodle/user:readuserblogs',1,1619623684,0),(219,1,1,'moodle/user:readuserblogs',1,1619623684,0),(220,1,1,'moodle/user:editmessageprofile',1,1619623684,0),(221,1,6,'moodle/user:editownmessageprofile',-1000,1619623684,0),(222,1,7,'moodle/user:editownmessageprofile',1,1619623684,0),(223,1,1,'moodle/user:editownmessageprofile',1,1619623684,0),(224,1,3,'moodle/question:managecategory',1,1619623684,0),(225,1,1,'moodle/question:managecategory',1,1619623684,0),(226,1,3,'moodle/question:add',1,1619623684,0),(227,1,1,'moodle/question:add',1,1619623684,0),(228,1,3,'moodle/question:editmine',1,1619623684,0),(229,1,1,'moodle/question:editmine',1,1619623684,0),(230,1,3,'moodle/question:editall',1,1619623684,0),(231,1,1,'moodle/question:editall',1,1619623684,0),(232,1,3,'moodle/question:viewmine',1,1619623684,0),(233,1,1,'moodle/question:viewmine',1,1619623684,0),(234,1,3,'moodle/question:viewall',1,1619623684,0),(235,1,1,'moodle/question:viewall',1,1619623684,0),(236,1,3,'moodle/question:usemine',1,1619623684,0),(237,1,1,'moodle/question:usemine',1,1619623684,0),(238,1,3,'moodle/question:useall',1,1619623684,0),(239,1,1,'moodle/question:useall',1,1619623684,0),(240,1,3,'moodle/question:movemine',1,1619623684,0),(241,1,1,'moodle/question:movemine',1,1619623684,0),(242,1,3,'moodle/question:moveall',1,1619623684,0),(243,1,1,'moodle/question:moveall',1,1619623684,0),(244,1,1,'moodle/question:config',1,1619623684,0),(245,1,5,'moodle/question:flag',1,1619623684,0),(246,1,4,'moodle/question:flag',1,1619623684,0),(247,1,3,'moodle/question:flag',1,1619623684,0),(248,1,1,'moodle/question:flag',1,1619623684,0),(249,1,3,'moodle/question:tagmine',1,1619623684,0),(250,1,1,'moodle/question:tagmine',1,1619623684,0),(251,1,3,'moodle/question:tagall',1,1619623684,0),(252,1,1,'moodle/question:tagall',1,1619623684,0),(253,1,4,'moodle/site:doclinks',1,1619623684,0),(254,1,3,'moodle/site:doclinks',1,1619623684,0),(255,1,1,'moodle/site:doclinks',1,1619623684,0),(256,1,3,'moodle/course:sectionvisibility',1,1619623684,0),(257,1,1,'moodle/course:sectionvisibility',1,1619623684,0),(258,1,3,'moodle/course:useremail',1,1619623684,0),(259,1,1,'moodle/course:useremail',1,1619623684,0),(260,1,3,'moodle/course:viewhiddensections',1,1619623684,0),(261,1,1,'moodle/course:viewhiddensections',1,1619623684,0),(262,1,3,'moodle/course:setcurrentsection',1,1619623684,0),(263,1,1,'moodle/course:setcurrentsection',1,1619623684,0),(264,1,3,'moodle/course:movesections',1,1619623684,0),(265,1,1,'moodle/course:movesections',1,1619623684,0),(266,1,4,'moodle/grade:viewall',1,1619623685,0),(267,1,3,'moodle/grade:viewall',1,1619623685,0),(268,1,1,'moodle/grade:viewall',1,1619623685,0),(269,1,5,'moodle/grade:view',1,1619623685,0),(270,1,4,'moodle/grade:viewhidden',1,1619623685,0),(271,1,3,'moodle/grade:viewhidden',1,1619623685,0),(272,1,1,'moodle/grade:viewhidden',1,1619623685,0),(273,1,3,'moodle/grade:import',1,1619623685,0),(274,1,1,'moodle/grade:import',1,1619623685,0),(275,1,4,'moodle/grade:export',1,1619623685,0),(276,1,3,'moodle/grade:export',1,1619623685,0),(277,1,1,'moodle/grade:export',1,1619623685,0),(278,1,3,'moodle/grade:manage',1,1619623685,0),(279,1,1,'moodle/grade:manage',1,1619623685,0),(280,1,3,'moodle/grade:edit',1,1619623685,0),(281,1,1,'moodle/grade:edit',1,1619623685,0),(282,1,3,'moodle/grade:managegradingforms',1,1619623685,0),(283,1,1,'moodle/grade:managegradingforms',1,1619623685,0),(284,1,1,'moodle/grade:sharegradingforms',1,1619623685,0),(285,1,1,'moodle/grade:managesharedforms',1,1619623685,0),(286,1,3,'moodle/grade:manageoutcomes',1,1619623685,0),(287,1,1,'moodle/grade:manageoutcomes',1,1619623685,0),(288,1,3,'moodle/grade:manageletters',1,1619623685,0),(289,1,1,'moodle/grade:manageletters',1,1619623685,0),(290,1,3,'moodle/grade:hide',1,1619623685,0),(291,1,1,'moodle/grade:hide',1,1619623685,0),(292,1,3,'moodle/grade:lock',1,1619623685,0),(293,1,1,'moodle/grade:lock',1,1619623685,0),(294,1,3,'moodle/grade:unlock',1,1619623685,0),(295,1,1,'moodle/grade:unlock',1,1619623685,0),(296,1,7,'moodle/my:manageblocks',1,1619623685,0),(297,1,4,'moodle/notes:view',1,1619623685,0),(298,1,3,'moodle/notes:view',1,1619623685,0),(299,1,1,'moodle/notes:view',1,1619623685,0),(300,1,4,'moodle/notes:manage',1,1619623685,0),(301,1,3,'moodle/notes:manage',1,1619623685,0),(302,1,1,'moodle/notes:manage',1,1619623685,0),(303,1,1,'moodle/tag:manage',1,1619623685,0),(304,1,1,'moodle/tag:edit',1,1619623685,0),(305,1,7,'moodle/tag:flag',1,1619623685,0),(306,1,4,'moodle/tag:editblocks',1,1619623685,0),(307,1,3,'moodle/tag:editblocks',1,1619623685,0),(308,1,1,'moodle/tag:editblocks',1,1619623685,0),(309,1,6,'moodle/block:view',1,1619623685,0),(310,1,7,'moodle/block:view',1,1619623685,0),(311,1,5,'moodle/block:view',1,1619623685,0),(312,1,4,'moodle/block:view',1,1619623685,0),(313,1,3,'moodle/block:view',1,1619623685,0),(314,1,3,'moodle/block:edit',1,1619623685,0),(315,1,1,'moodle/block:edit',1,1619623685,0),(316,1,7,'moodle/portfolio:export',1,1619623685,0),(317,1,5,'moodle/portfolio:export',1,1619623685,0),(318,1,4,'moodle/portfolio:export',1,1619623685,0),(319,1,3,'moodle/portfolio:export',1,1619623685,0),(320,1,8,'moodle/comment:view',1,1619623685,0),(321,1,6,'moodle/comment:view',1,1619623685,0),(322,1,7,'moodle/comment:view',1,1619623685,0),(323,1,5,'moodle/comment:view',1,1619623685,0),(324,1,4,'moodle/comment:view',1,1619623685,0),(325,1,3,'moodle/comment:view',1,1619623685,0),(326,1,1,'moodle/comment:view',1,1619623685,0),(327,1,7,'moodle/comment:post',1,1619623685,0),(328,1,5,'moodle/comment:post',1,1619623685,0),(329,1,4,'moodle/comment:post',1,1619623685,0),(330,1,3,'moodle/comment:post',1,1619623685,0),(331,1,1,'moodle/comment:post',1,1619623685,0),(332,1,3,'moodle/comment:delete',1,1619623685,0),(333,1,1,'moodle/comment:delete',1,1619623685,0),(334,1,1,'moodle/webservice:createtoken',1,1619623685,0),(335,1,7,'moodle/webservice:createmobiletoken',1,1619623685,0),(336,1,7,'moodle/rating:view',1,1619623685,0),(337,1,5,'moodle/rating:view',1,1619623685,0),(338,1,4,'moodle/rating:view',1,1619623685,0),(339,1,3,'moodle/rating:view',1,1619623685,0),(340,1,1,'moodle/rating:view',1,1619623685,0),(341,1,7,'moodle/rating:viewany',1,1619623685,0),(342,1,5,'moodle/rating:viewany',1,1619623685,0),(343,1,4,'moodle/rating:viewany',1,1619623685,0),(344,1,3,'moodle/rating:viewany',1,1619623685,0),(345,1,1,'moodle/rating:viewany',1,1619623685,0),(346,1,7,'moodle/rating:viewall',1,1619623685,0),(347,1,5,'moodle/rating:viewall',1,1619623685,0),(348,1,4,'moodle/rating:viewall',1,1619623685,0),(349,1,3,'moodle/rating:viewall',1,1619623685,0),(350,1,1,'moodle/rating:viewall',1,1619623685,0),(351,1,7,'moodle/rating:rate',1,1619623685,0),(352,1,5,'moodle/rating:rate',1,1619623685,0),(353,1,4,'moodle/rating:rate',1,1619623685,0),(354,1,3,'moodle/rating:rate',1,1619623685,0),(355,1,1,'moodle/rating:rate',1,1619623685,0),(356,1,4,'moodle/course:markcomplete',1,1619623685,0),(357,1,3,'moodle/course:markcomplete',1,1619623685,0),(358,1,1,'moodle/course:markcomplete',1,1619623685,0),(359,1,4,'moodle/course:overridecompletion',1,1619623685,0),(360,1,3,'moodle/course:overridecompletion',1,1619623685,0),(361,1,1,'moodle/course:overridecompletion',1,1619623685,0),(362,1,1,'moodle/badges:manageglobalsettings',1,1619623685,0),(363,1,7,'moodle/badges:viewbadges',1,1619623685,0),(364,1,7,'moodle/badges:manageownbadges',1,1619623685,0),(365,1,7,'moodle/badges:viewotherbadges',1,1619623685,0),(366,1,7,'moodle/badges:earnbadge',1,1619623685,0),(367,1,1,'moodle/badges:createbadge',1,1619623685,0),(368,1,3,'moodle/badges:createbadge',1,1619623685,0),(369,1,1,'moodle/badges:deletebadge',1,1619623685,0),(370,1,3,'moodle/badges:deletebadge',1,1619623685,0),(371,1,1,'moodle/badges:configuredetails',1,1619623685,0),(372,1,3,'moodle/badges:configuredetails',1,1619623685,0),(373,1,1,'moodle/badges:configurecriteria',1,1619623685,0),(374,1,3,'moodle/badges:configurecriteria',1,1619623685,0),(375,1,1,'moodle/badges:configuremessages',1,1619623685,0),(376,1,3,'moodle/badges:configuremessages',1,1619623686,0),(377,1,1,'moodle/badges:awardbadge',1,1619623686,0),(378,1,4,'moodle/badges:awardbadge',1,1619623686,0),(379,1,3,'moodle/badges:awardbadge',1,1619623686,0),(380,1,1,'moodle/badges:revokebadge',1,1619623686,0),(381,1,4,'moodle/badges:revokebadge',1,1619623686,0),(382,1,3,'moodle/badges:revokebadge',1,1619623686,0),(383,1,1,'moodle/badges:viewawarded',1,1619623686,0),(384,1,4,'moodle/badges:viewawarded',1,1619623686,0),(385,1,3,'moodle/badges:viewawarded',1,1619623686,0),(386,1,6,'moodle/search:query',1,1619623686,0),(387,1,7,'moodle/search:query',1,1619623686,0),(388,1,5,'moodle/search:query',1,1619623686,0),(389,1,4,'moodle/search:query',1,1619623686,0),(390,1,3,'moodle/search:query',1,1619623686,0),(391,1,1,'moodle/search:query',1,1619623686,0),(392,1,1,'moodle/competency:competencymanage',1,1619623686,0),(393,1,7,'moodle/competency:competencyview',1,1619623686,0),(394,1,3,'moodle/competency:competencygrade',1,1619623686,0),(395,1,4,'moodle/competency:competencygrade',1,1619623686,0),(396,1,1,'moodle/competency:competencygrade',1,1619623686,0),(397,1,3,'moodle/competency:coursecompetencymanage',1,1619623686,0),(398,1,1,'moodle/competency:coursecompetencymanage',1,1619623686,0),(399,1,1,'moodle/competency:coursecompetencyconfigure',1,1619623686,0),(400,1,5,'moodle/competency:coursecompetencygradable',1,1619623686,0),(401,1,7,'moodle/competency:coursecompetencyview',1,1619623686,0),(402,1,1,'moodle/competency:planmanage',1,1619623686,0),(403,1,1,'moodle/competency:planmanagedraft',1,1619623686,0),(404,1,1,'moodle/competency:planview',1,1619623686,0),(405,1,1,'moodle/competency:planviewdraft',1,1619623686,0),(406,1,7,'moodle/competency:planviewown',1,1619623686,0),(407,1,1,'moodle/competency:planrequestreview',1,1619623686,0),(408,1,7,'moodle/competency:planrequestreviewown',1,1619623686,0),(409,1,1,'moodle/competency:planreview',1,1619623686,0),(410,1,1,'moodle/competency:plancomment',1,1619623686,0),(411,1,7,'moodle/competency:plancommentown',1,1619623686,0),(412,1,1,'moodle/competency:usercompetencyview',1,1619623686,0),(413,1,3,'moodle/competency:usercompetencyview',1,1619623686,0),(414,1,4,'moodle/competency:usercompetencyview',1,1619623686,0),(415,1,1,'moodle/competency:usercompetencyrequestreview',1,1619623686,0),(416,1,7,'moodle/competency:usercompetencyrequestreviewown',1,1619623686,0),(417,1,1,'moodle/competency:usercompetencyreview',1,1619623686,0),(418,1,1,'moodle/competency:usercompetencycomment',1,1619623686,0),(419,1,7,'moodle/competency:usercompetencycommentown',1,1619623686,0),(420,1,1,'moodle/competency:templatemanage',1,1619623686,0),(421,1,4,'moodle/analytics:listinsights',1,1619623686,0),(422,1,3,'moodle/analytics:listinsights',1,1619623686,0),(423,1,1,'moodle/analytics:listinsights',1,1619623686,0),(424,1,1,'moodle/analytics:managemodels',1,1619623686,0),(425,1,1,'moodle/competency:templateview',1,1619623686,0),(426,1,1,'moodle/competency:userevidencemanage',1,1619623686,0),(427,1,7,'moodle/competency:userevidencemanageown',1,1619623686,0),(428,1,1,'moodle/competency:userevidenceview',1,1619623686,0),(429,1,4,'moodle/site:messageanyuser',1,1619623686,0),(430,1,3,'moodle/site:messageanyuser',1,1619623686,0),(431,1,1,'moodle/site:messageanyuser',1,1619623686,0),(432,1,7,'moodle/course:togglecompletion',1,1619623686,0),(433,1,7,'moodle/analytics:listowninsights',1,1619623686,0),(434,1,3,'moodle/h5p:setdisplayoptions',1,1619623686,0),(435,1,1,'moodle/h5p:deploy',1,1619623686,0),(436,1,3,'moodle/h5p:deploy',1,1619623686,0),(437,1,1,'moodle/h5p:updatelibraries',1,1619623686,0),(438,1,1,'moodle/course:recommendactivity',1,1619623686,0),(439,1,1,'moodle/contentbank:access',1,1619623686,0),(440,1,2,'moodle/contentbank:access',1,1619623686,0),(441,1,3,'moodle/contentbank:access',1,1619623686,0),(442,1,1,'moodle/contentbank:upload',1,1619623686,0),(443,1,2,'moodle/contentbank:upload',1,1619623686,0),(444,1,3,'moodle/contentbank:upload',1,1619623686,0),(445,1,1,'moodle/contentbank:deleteanycontent',1,1619623686,0),(446,1,2,'moodle/contentbank:deleteanycontent',1,1619623686,0),(447,1,7,'moodle/contentbank:deleteowncontent',1,1619623686,0),(448,1,1,'moodle/contentbank:manageanycontent',1,1619623686,0),(449,1,2,'moodle/contentbank:manageanycontent',1,1619623686,0),(450,1,1,'moodle/contentbank:manageowncontent',1,1619623686,0),(451,1,2,'moodle/contentbank:manageowncontent',1,1619623686,0),(452,1,3,'moodle/contentbank:manageowncontent',1,1619623686,0),(453,1,1,'moodle/contentbank:useeditor',1,1619623686,0),(454,1,2,'moodle/contentbank:useeditor',1,1619623686,0),(455,1,3,'moodle/contentbank:useeditor',1,1619623686,0),(456,1,1,'moodle/contentbank:downloadcontent',1,1619623686,0),(457,1,2,'moodle/contentbank:downloadcontent',1,1619623686,0),(458,1,3,'moodle/contentbank:downloadcontent',1,1619623686,0),(459,1,5,'moodle/course:downloadcoursecontent',1,1619623686,0),(460,1,4,'moodle/course:downloadcoursecontent',1,1619623686,0),(461,1,3,'moodle/course:downloadcoursecontent',1,1619623686,0),(462,1,1,'moodle/course:downloadcoursecontent',1,1619623686,0),(463,1,3,'moodle/course:configuredownloadcontent',1,1619623686,0),(464,1,1,'moodle/course:configuredownloadcontent',1,1619623686,0),(465,1,6,'mod/assign:view',1,1619623696,0),(466,1,5,'mod/assign:view',1,1619623696,0),(467,1,4,'mod/assign:view',1,1619623696,0),(468,1,3,'mod/assign:view',1,1619623696,0),(469,1,1,'mod/assign:view',1,1619623696,0),(470,1,5,'mod/assign:submit',1,1619623696,0),(471,1,4,'mod/assign:grade',1,1619623696,0),(472,1,3,'mod/assign:grade',1,1619623696,0),(473,1,1,'mod/assign:grade',1,1619623696,0),(474,1,4,'mod/assign:exportownsubmission',1,1619623696,0),(475,1,3,'mod/assign:exportownsubmission',1,1619623696,0),(476,1,1,'mod/assign:exportownsubmission',1,1619623696,0),(477,1,5,'mod/assign:exportownsubmission',1,1619623696,0),(478,1,3,'mod/assign:addinstance',1,1619623696,0),(479,1,1,'mod/assign:addinstance',1,1619623696,0),(480,1,4,'mod/assign:grantextension',1,1619623696,0),(481,1,3,'mod/assign:grantextension',1,1619623696,0),(482,1,1,'mod/assign:grantextension',1,1619623696,0),(483,1,3,'mod/assign:revealidentities',1,1619623696,0),(484,1,1,'mod/assign:revealidentities',1,1619623696,0),(485,1,3,'mod/assign:reviewgrades',1,1619623696,0),(486,1,1,'mod/assign:reviewgrades',1,1619623696,0),(487,1,3,'mod/assign:releasegrades',1,1619623696,0),(488,1,1,'mod/assign:releasegrades',1,1619623696,0),(489,1,3,'mod/assign:managegrades',1,1619623696,0),(490,1,1,'mod/assign:managegrades',1,1619623696,0),(491,1,3,'mod/assign:manageallocations',1,1619623696,0),(492,1,1,'mod/assign:manageallocations',1,1619623696,0),(493,1,3,'mod/assign:viewgrades',1,1619623696,0),(494,1,1,'mod/assign:viewgrades',1,1619623696,0),(495,1,4,'mod/assign:viewgrades',1,1619623696,0),(496,1,1,'mod/assign:viewblinddetails',1,1619623696,0),(497,1,4,'mod/assign:receivegradernotifications',1,1619623696,0),(498,1,3,'mod/assign:receivegradernotifications',1,1619623696,0),(499,1,1,'mod/assign:receivegradernotifications',1,1619623696,0),(500,1,3,'mod/assign:manageoverrides',1,1619623696,0),(501,1,1,'mod/assign:manageoverrides',1,1619623696,0),(502,1,4,'mod/assign:showhiddengrader',1,1619623696,0),(503,1,3,'mod/assign:showhiddengrader',1,1619623696,0),(504,1,1,'mod/assign:showhiddengrader',1,1619623696,0),(505,1,6,'mod/assignment:view',1,1619623696,0),(506,1,5,'mod/assignment:view',1,1619623696,0),(507,1,4,'mod/assignment:view',1,1619623696,0),(508,1,3,'mod/assignment:view',1,1619623696,0),(509,1,1,'mod/assignment:view',1,1619623696,0),(510,1,3,'mod/assignment:addinstance',1,1619623696,0),(511,1,1,'mod/assignment:addinstance',1,1619623696,0),(512,1,5,'mod/assignment:submit',1,1619623696,0),(513,1,4,'mod/assignment:grade',1,1619623696,0),(514,1,3,'mod/assignment:grade',1,1619623696,0),(515,1,1,'mod/assignment:grade',1,1619623696,0),(516,1,4,'mod/assignment:exportownsubmission',1,1619623696,0),(517,1,3,'mod/assignment:exportownsubmission',1,1619623696,0),(518,1,1,'mod/assignment:exportownsubmission',1,1619623696,0),(519,1,5,'mod/assignment:exportownsubmission',1,1619623696,0),(520,1,3,'mod/book:addinstance',1,1619623697,0),(521,1,1,'mod/book:addinstance',1,1619623697,0),(522,1,6,'mod/book:read',1,1619623697,0),(523,1,8,'mod/book:read',1,1619623697,0),(524,1,5,'mod/book:read',1,1619623697,0),(525,1,4,'mod/book:read',1,1619623697,0),(526,1,3,'mod/book:read',1,1619623697,0),(527,1,1,'mod/book:read',1,1619623697,0),(528,1,4,'mod/book:viewhiddenchapters',1,1619623697,0),(529,1,3,'mod/book:viewhiddenchapters',1,1619623697,0),(530,1,1,'mod/book:viewhiddenchapters',1,1619623697,0),(531,1,3,'mod/book:edit',1,1619623697,0),(532,1,1,'mod/book:edit',1,1619623697,0),(533,1,3,'mod/chat:addinstance',1,1619623697,0),(534,1,1,'mod/chat:addinstance',1,1619623697,0),(535,1,5,'mod/chat:chat',1,1619623697,0),(536,1,4,'mod/chat:chat',1,1619623697,0),(537,1,3,'mod/chat:chat',1,1619623697,0),(538,1,1,'mod/chat:chat',1,1619623697,0),(539,1,5,'mod/chat:readlog',1,1619623697,0),(540,1,4,'mod/chat:readlog',1,1619623697,0),(541,1,3,'mod/chat:readlog',1,1619623697,0),(542,1,1,'mod/chat:readlog',1,1619623697,0),(543,1,4,'mod/chat:deletelog',1,1619623697,0),(544,1,3,'mod/chat:deletelog',1,1619623697,0),(545,1,1,'mod/chat:deletelog',1,1619623697,0),(546,1,4,'mod/chat:exportparticipatedsession',1,1619623697,0),(547,1,3,'mod/chat:exportparticipatedsession',1,1619623697,0),(548,1,1,'mod/chat:exportparticipatedsession',1,1619623697,0),(549,1,4,'mod/chat:exportsession',1,1619623697,0),(550,1,3,'mod/chat:exportsession',1,1619623697,0),(551,1,1,'mod/chat:exportsession',1,1619623697,0),(552,1,7,'mod/chat:view',1,1619623697,0),(553,1,6,'mod/chat:view',1,1619623697,0),(554,1,3,'mod/choice:addinstance',1,1619623697,0),(555,1,1,'mod/choice:addinstance',1,1619623697,0),(556,1,5,'mod/choice:choose',1,1619623697,0),(557,1,4,'mod/choice:choose',1,1619623697,0),(558,1,3,'mod/choice:choose',1,1619623697,0),(559,1,4,'mod/choice:readresponses',1,1619623697,0),(560,1,3,'mod/choice:readresponses',1,1619623697,0),(561,1,1,'mod/choice:readresponses',1,1619623697,0),(562,1,4,'mod/choice:deleteresponses',1,1619623697,0),(563,1,3,'mod/choice:deleteresponses',1,1619623697,0),(564,1,1,'mod/choice:deleteresponses',1,1619623697,0),(565,1,4,'mod/choice:downloadresponses',1,1619623697,0),(566,1,3,'mod/choice:downloadresponses',1,1619623697,0),(567,1,1,'mod/choice:downloadresponses',1,1619623697,0),(568,1,7,'mod/choice:view',1,1619623697,0),(569,1,6,'mod/choice:view',1,1619623697,0),(570,1,3,'mod/data:addinstance',1,1619623697,0),(571,1,1,'mod/data:addinstance',1,1619623697,0),(572,1,8,'mod/data:viewentry',1,1619623697,0),(573,1,6,'mod/data:viewentry',1,1619623697,0),(574,1,5,'mod/data:viewentry',1,1619623697,0),(575,1,4,'mod/data:viewentry',1,1619623697,0),(576,1,3,'mod/data:viewentry',1,1619623697,0),(577,1,1,'mod/data:viewentry',1,1619623697,0),(578,1,5,'mod/data:writeentry',1,1619623697,0),(579,1,4,'mod/data:writeentry',1,1619623697,0),(580,1,3,'mod/data:writeentry',1,1619623697,0),(581,1,1,'mod/data:writeentry',1,1619623697,0),(582,1,5,'mod/data:comment',1,1619623697,0),(583,1,4,'mod/data:comment',1,1619623697,0),(584,1,3,'mod/data:comment',1,1619623697,0),(585,1,1,'mod/data:comment',1,1619623697,0),(586,1,4,'mod/data:rate',1,1619623697,0),(587,1,3,'mod/data:rate',1,1619623697,0),(588,1,1,'mod/data:rate',1,1619623697,0),(589,1,4,'mod/data:viewrating',1,1619623697,0),(590,1,3,'mod/data:viewrating',1,1619623697,0),(591,1,1,'mod/data:viewrating',1,1619623698,0),(592,1,4,'mod/data:viewanyrating',1,1619623698,0),(593,1,3,'mod/data:viewanyrating',1,1619623698,0),(594,1,1,'mod/data:viewanyrating',1,1619623698,0),(595,1,4,'mod/data:viewallratings',1,1619623698,0),(596,1,3,'mod/data:viewallratings',1,1619623698,0),(597,1,1,'mod/data:viewallratings',1,1619623698,0),(598,1,4,'mod/data:approve',1,1619623698,0),(599,1,3,'mod/data:approve',1,1619623698,0),(600,1,1,'mod/data:approve',1,1619623698,0),(601,1,4,'mod/data:manageentries',1,1619623698,0),(602,1,3,'mod/data:manageentries',1,1619623698,0),(603,1,1,'mod/data:manageentries',1,1619623698,0),(604,1,4,'mod/data:managecomments',1,1619623698,0),(605,1,3,'mod/data:managecomments',1,1619623698,0),(606,1,1,'mod/data:managecomments',1,1619623698,0),(607,1,3,'mod/data:managetemplates',1,1619623698,0),(608,1,1,'mod/data:managetemplates',1,1619623698,0),(609,1,4,'mod/data:viewalluserpresets',1,1619623698,0),(610,1,3,'mod/data:viewalluserpresets',1,1619623698,0),(611,1,1,'mod/data:viewalluserpresets',1,1619623698,0),(612,1,1,'mod/data:manageuserpresets',1,1619623698,0),(613,1,1,'mod/data:exportentry',1,1619623698,0),(614,1,4,'mod/data:exportentry',1,1619623698,0),(615,1,3,'mod/data:exportentry',1,1619623698,0),(616,1,1,'mod/data:exportownentry',1,1619623698,0),(617,1,4,'mod/data:exportownentry',1,1619623698,0),(618,1,3,'mod/data:exportownentry',1,1619623698,0),(619,1,5,'mod/data:exportownentry',1,1619623698,0),(620,1,1,'mod/data:exportallentries',1,1619623698,0),(621,1,4,'mod/data:exportallentries',1,1619623698,0),(622,1,3,'mod/data:exportallentries',1,1619623698,0),(623,1,1,'mod/data:exportuserinfo',1,1619623698,0),(624,1,4,'mod/data:exportuserinfo',1,1619623698,0),(625,1,3,'mod/data:exportuserinfo',1,1619623698,0),(626,1,6,'mod/data:view',1,1619623698,0),(627,1,5,'mod/data:view',1,1619623698,0),(628,1,4,'mod/data:view',1,1619623698,0),(629,1,3,'mod/data:view',1,1619623698,0),(630,1,1,'mod/data:view',1,1619623698,0),(631,1,3,'mod/feedback:addinstance',1,1619623698,0),(632,1,1,'mod/feedback:addinstance',1,1619623698,0),(633,1,6,'mod/feedback:view',1,1619623698,0),(634,1,8,'mod/feedback:view',1,1619623698,0),(635,1,5,'mod/feedback:view',1,1619623698,0),(636,1,4,'mod/feedback:view',1,1619623698,0),(637,1,3,'mod/feedback:view',1,1619623698,0),(638,1,1,'mod/feedback:view',1,1619623698,0),(639,1,8,'mod/feedback:complete',1,1619623698,0),(640,1,5,'mod/feedback:complete',1,1619623698,0),(641,1,5,'mod/feedback:viewanalysepage',1,1619623698,0),(642,1,3,'mod/feedback:viewanalysepage',1,1619623698,0),(643,1,1,'mod/feedback:viewanalysepage',1,1619623698,0),(644,1,3,'mod/feedback:deletesubmissions',1,1619623698,0),(645,1,1,'mod/feedback:deletesubmissions',1,1619623698,0),(646,1,1,'mod/feedback:mapcourse',1,1619623698,0),(647,1,3,'mod/feedback:edititems',1,1619623698,0),(648,1,1,'mod/feedback:edititems',1,1619623698,0),(649,1,3,'mod/feedback:createprivatetemplate',1,1619623698,0),(650,1,1,'mod/feedback:createprivatetemplate',1,1619623698,0),(651,1,3,'mod/feedback:createpublictemplate',1,1619623698,0),(652,1,1,'mod/feedback:createpublictemplate',1,1619623698,0),(653,1,3,'mod/feedback:deletetemplate',1,1619623698,0),(654,1,1,'mod/feedback:deletetemplate',1,1619623698,0),(655,1,4,'mod/feedback:viewreports',1,1619623698,0),(656,1,3,'mod/feedback:viewreports',1,1619623698,0),(657,1,1,'mod/feedback:viewreports',1,1619623698,0),(658,1,4,'mod/feedback:receivemail',1,1619623698,0),(659,1,3,'mod/feedback:receivemail',1,1619623698,0),(660,1,3,'mod/folder:addinstance',1,1619623698,0),(661,1,1,'mod/folder:addinstance',1,1619623698,0),(662,1,6,'mod/folder:view',1,1619623698,0),(663,1,7,'mod/folder:view',1,1619623698,0),(664,1,3,'mod/folder:managefiles',1,1619623698,0),(665,1,3,'mod/forum:addinstance',1,1619623699,0),(666,1,1,'mod/forum:addinstance',1,1619623699,0),(667,1,8,'mod/forum:viewdiscussion',1,1619623699,0),(668,1,6,'mod/forum:viewdiscussion',1,1619623699,0),(669,1,5,'mod/forum:viewdiscussion',1,1619623699,0),(670,1,4,'mod/forum:viewdiscussion',1,1619623699,0),(671,1,3,'mod/forum:viewdiscussion',1,1619623699,0),(672,1,1,'mod/forum:viewdiscussion',1,1619623699,0),(673,1,4,'mod/forum:viewhiddentimedposts',1,1619623699,0),(674,1,3,'mod/forum:viewhiddentimedposts',1,1619623699,0),(675,1,1,'mod/forum:viewhiddentimedposts',1,1619623699,0),(676,1,5,'mod/forum:startdiscussion',1,1619623699,0),(677,1,4,'mod/forum:startdiscussion',1,1619623699,0),(678,1,3,'mod/forum:startdiscussion',1,1619623699,0),(679,1,1,'mod/forum:startdiscussion',1,1619623699,0),(680,1,5,'mod/forum:replypost',1,1619623699,0),(681,1,4,'mod/forum:replypost',1,1619623699,0),(682,1,3,'mod/forum:replypost',1,1619623699,0),(683,1,1,'mod/forum:replypost',1,1619623699,0),(684,1,4,'mod/forum:addnews',1,1619623699,0),(685,1,3,'mod/forum:addnews',1,1619623699,0),(686,1,1,'mod/forum:addnews',1,1619623699,0),(687,1,4,'mod/forum:replynews',1,1619623699,0),(688,1,3,'mod/forum:replynews',1,1619623699,0),(689,1,1,'mod/forum:replynews',1,1619623699,0),(690,1,5,'mod/forum:viewrating',1,1619623699,0),(691,1,4,'mod/forum:viewrating',1,1619623699,0),(692,1,3,'mod/forum:viewrating',1,1619623699,0),(693,1,1,'mod/forum:viewrating',1,1619623699,0),(694,1,4,'mod/forum:viewanyrating',1,1619623699,0),(695,1,3,'mod/forum:viewanyrating',1,1619623699,0),(696,1,1,'mod/forum:viewanyrating',1,1619623699,0),(697,1,4,'mod/forum:viewallratings',1,1619623699,0),(698,1,3,'mod/forum:viewallratings',1,1619623699,0),(699,1,1,'mod/forum:viewallratings',1,1619623699,0),(700,1,4,'mod/forum:rate',1,1619623699,0),(701,1,3,'mod/forum:rate',1,1619623699,0),(702,1,1,'mod/forum:rate',1,1619623699,0),(703,1,4,'mod/forum:postprivatereply',1,1619623699,0),(704,1,3,'mod/forum:postprivatereply',1,1619623699,0),(705,1,1,'mod/forum:postprivatereply',1,1619623699,0),(706,1,4,'mod/forum:readprivatereplies',1,1619623699,0),(707,1,3,'mod/forum:readprivatereplies',1,1619623699,0),(708,1,1,'mod/forum:readprivatereplies',1,1619623699,0),(709,1,5,'mod/forum:createattachment',1,1619623699,0),(710,1,4,'mod/forum:createattachment',1,1619623699,0),(711,1,3,'mod/forum:createattachment',1,1619623699,0),(712,1,1,'mod/forum:createattachment',1,1619623699,0),(713,1,5,'mod/forum:deleteownpost',1,1619623699,0),(714,1,4,'mod/forum:deleteownpost',1,1619623699,0),(715,1,3,'mod/forum:deleteownpost',1,1619623699,0),(716,1,1,'mod/forum:deleteownpost',1,1619623699,0),(717,1,4,'mod/forum:deleteanypost',1,1619623699,0),(718,1,3,'mod/forum:deleteanypost',1,1619623699,0),(719,1,1,'mod/forum:deleteanypost',1,1619623699,0),(720,1,4,'mod/forum:splitdiscussions',1,1619623699,0),(721,1,3,'mod/forum:splitdiscussions',1,1619623699,0),(722,1,1,'mod/forum:splitdiscussions',1,1619623699,0),(723,1,4,'mod/forum:movediscussions',1,1619623699,0),(724,1,3,'mod/forum:movediscussions',1,1619623699,0),(725,1,1,'mod/forum:movediscussions',1,1619623699,0),(726,1,4,'mod/forum:pindiscussions',1,1619623699,0),(727,1,3,'mod/forum:pindiscussions',1,1619623699,0),(728,1,1,'mod/forum:pindiscussions',1,1619623699,0),(729,1,4,'mod/forum:editanypost',1,1619623699,0),(730,1,3,'mod/forum:editanypost',1,1619623699,0),(731,1,1,'mod/forum:editanypost',1,1619623699,0),(732,1,4,'mod/forum:viewqandawithoutposting',1,1619623699,0),(733,1,3,'mod/forum:viewqandawithoutposting',1,1619623699,0),(734,1,1,'mod/forum:viewqandawithoutposting',1,1619623699,0),(735,1,4,'mod/forum:viewsubscribers',1,1619623699,0),(736,1,3,'mod/forum:viewsubscribers',1,1619623699,0),(737,1,1,'mod/forum:viewsubscribers',1,1619623699,0),(738,1,4,'mod/forum:managesubscriptions',1,1619623699,0),(739,1,3,'mod/forum:managesubscriptions',1,1619623699,0),(740,1,1,'mod/forum:managesubscriptions',1,1619623699,0),(741,1,4,'mod/forum:postwithoutthrottling',1,1619623699,0),(742,1,3,'mod/forum:postwithoutthrottling',1,1619623699,0),(743,1,1,'mod/forum:postwithoutthrottling',1,1619623699,0),(744,1,4,'mod/forum:exportdiscussion',1,1619623699,0),(745,1,3,'mod/forum:exportdiscussion',1,1619623699,0),(746,1,1,'mod/forum:exportdiscussion',1,1619623699,0),(747,1,4,'mod/forum:exportforum',1,1619623699,0),(748,1,3,'mod/forum:exportforum',1,1619623699,0),(749,1,1,'mod/forum:exportforum',1,1619623699,0),(750,1,4,'mod/forum:exportpost',1,1619623699,0),(751,1,3,'mod/forum:exportpost',1,1619623699,0),(752,1,1,'mod/forum:exportpost',1,1619623699,0),(753,1,4,'mod/forum:exportownpost',1,1619623699,0),(754,1,3,'mod/forum:exportownpost',1,1619623699,0),(755,1,1,'mod/forum:exportownpost',1,1619623699,0),(756,1,5,'mod/forum:exportownpost',1,1619623699,0),(757,1,4,'mod/forum:addquestion',1,1619623699,0),(758,1,3,'mod/forum:addquestion',1,1619623699,0),(759,1,1,'mod/forum:addquestion',1,1619623699,0),(760,1,5,'mod/forum:allowforcesubscribe',1,1619623699,0),(761,1,4,'mod/forum:allowforcesubscribe',1,1619623700,0),(762,1,3,'mod/forum:allowforcesubscribe',1,1619623700,0),(763,1,8,'mod/forum:allowforcesubscribe',1,1619623700,0),(764,1,4,'mod/forum:canposttomygroups',1,1619623700,0),(765,1,3,'mod/forum:canposttomygroups',1,1619623700,0),(766,1,1,'mod/forum:canposttomygroups',1,1619623700,0),(767,1,4,'mod/forum:canoverridediscussionlock',1,1619623700,0),(768,1,3,'mod/forum:canoverridediscussionlock',1,1619623700,0),(769,1,1,'mod/forum:canoverridediscussionlock',1,1619623700,0),(770,1,4,'mod/forum:canoverridecutoff',1,1619623700,0),(771,1,3,'mod/forum:canoverridecutoff',1,1619623700,0),(772,1,1,'mod/forum:canoverridecutoff',1,1619623700,0),(773,1,7,'mod/forum:cantogglefavourite',1,1619623700,0),(774,1,4,'mod/forum:grade',1,1619623700,0),(775,1,3,'mod/forum:grade',1,1619623700,0),(776,1,1,'mod/forum:grade',1,1619623700,0),(777,1,3,'mod/glossary:addinstance',1,1619623700,0),(778,1,1,'mod/glossary:addinstance',1,1619623700,0),(779,1,8,'mod/glossary:view',1,1619623700,0),(780,1,6,'mod/glossary:view',1,1619623700,0),(781,1,5,'mod/glossary:view',1,1619623700,0),(782,1,4,'mod/glossary:view',1,1619623700,0),(783,1,3,'mod/glossary:view',1,1619623700,0),(784,1,1,'mod/glossary:view',1,1619623700,0),(785,1,5,'mod/glossary:write',1,1619623700,0),(786,1,4,'mod/glossary:write',1,1619623700,0),(787,1,3,'mod/glossary:write',1,1619623700,0),(788,1,1,'mod/glossary:write',1,1619623700,0),(789,1,4,'mod/glossary:manageentries',1,1619623700,0),(790,1,3,'mod/glossary:manageentries',1,1619623700,0),(791,1,1,'mod/glossary:manageentries',1,1619623700,0),(792,1,4,'mod/glossary:managecategories',1,1619623700,0),(793,1,3,'mod/glossary:managecategories',1,1619623700,0),(794,1,1,'mod/glossary:managecategories',1,1619623700,0),(795,1,5,'mod/glossary:comment',1,1619623700,0),(796,1,4,'mod/glossary:comment',1,1619623700,0),(797,1,3,'mod/glossary:comment',1,1619623700,0),(798,1,1,'mod/glossary:comment',1,1619623700,0),(799,1,4,'mod/glossary:managecomments',1,1619623700,0),(800,1,3,'mod/glossary:managecomments',1,1619623700,0),(801,1,1,'mod/glossary:managecomments',1,1619623700,0),(802,1,4,'mod/glossary:import',1,1619623700,0),(803,1,3,'mod/glossary:import',1,1619623700,0),(804,1,1,'mod/glossary:import',1,1619623700,0),(805,1,4,'mod/glossary:export',1,1619623700,0),(806,1,3,'mod/glossary:export',1,1619623700,0),(807,1,1,'mod/glossary:export',1,1619623700,0),(808,1,4,'mod/glossary:approve',1,1619623700,0),(809,1,3,'mod/glossary:approve',1,1619623700,0),(810,1,1,'mod/glossary:approve',1,1619623700,0),(811,1,4,'mod/glossary:rate',1,1619623700,0),(812,1,3,'mod/glossary:rate',1,1619623700,0),(813,1,1,'mod/glossary:rate',1,1619623700,0),(814,1,4,'mod/glossary:viewrating',1,1619623700,0),(815,1,3,'mod/glossary:viewrating',1,1619623700,0),(816,1,1,'mod/glossary:viewrating',1,1619623700,0),(817,1,4,'mod/glossary:viewanyrating',1,1619623700,0),(818,1,3,'mod/glossary:viewanyrating',1,1619623700,0),(819,1,1,'mod/glossary:viewanyrating',1,1619623700,0),(820,1,4,'mod/glossary:viewallratings',1,1619623700,0),(821,1,3,'mod/glossary:viewallratings',1,1619623700,0),(822,1,1,'mod/glossary:viewallratings',1,1619623700,0),(823,1,4,'mod/glossary:exportentry',1,1619623700,0),(824,1,3,'mod/glossary:exportentry',1,1619623700,0),(825,1,1,'mod/glossary:exportentry',1,1619623700,0),(826,1,4,'mod/glossary:exportownentry',1,1619623700,0),(827,1,3,'mod/glossary:exportownentry',1,1619623700,0),(828,1,1,'mod/glossary:exportownentry',1,1619623700,0),(829,1,5,'mod/glossary:exportownentry',1,1619623700,0),(830,1,6,'mod/h5pactivity:view',1,1619623700,0),(831,1,5,'mod/h5pactivity:view',1,1619623700,0),(832,1,4,'mod/h5pactivity:view',1,1619623700,0),(833,1,3,'mod/h5pactivity:view',1,1619623700,0),(834,1,1,'mod/h5pactivity:view',1,1619623701,0),(835,1,3,'mod/h5pactivity:addinstance',1,1619623701,0),(836,1,1,'mod/h5pactivity:addinstance',1,1619623701,0),(837,1,5,'mod/h5pactivity:submit',1,1619623701,0),(838,1,3,'mod/h5pactivity:reviewattempts',1,1619623701,0),(839,1,1,'mod/h5pactivity:reviewattempts',1,1619623701,0),(840,1,6,'mod/imscp:view',1,1619623701,0),(841,1,7,'mod/imscp:view',1,1619623701,0),(842,1,3,'mod/imscp:addinstance',1,1619623701,0),(843,1,1,'mod/imscp:addinstance',1,1619623701,0),(844,1,3,'mod/label:addinstance',1,1619623701,0),(845,1,1,'mod/label:addinstance',1,1619623701,0),(846,1,7,'mod/label:view',1,1619623701,0),(847,1,6,'mod/label:view',1,1619623701,0),(848,1,3,'mod/lesson:addinstance',1,1619623701,0),(849,1,1,'mod/lesson:addinstance',1,1619623701,0),(850,1,3,'mod/lesson:edit',1,1619623701,0),(851,1,1,'mod/lesson:edit',1,1619623701,0),(852,1,4,'mod/lesson:grade',1,1619623701,0),(853,1,3,'mod/lesson:grade',1,1619623701,0),(854,1,1,'mod/lesson:grade',1,1619623701,0),(855,1,4,'mod/lesson:viewreports',1,1619623701,0),(856,1,3,'mod/lesson:viewreports',1,1619623701,0),(857,1,1,'mod/lesson:viewreports',1,1619623701,0),(858,1,4,'mod/lesson:manage',1,1619623701,0),(859,1,3,'mod/lesson:manage',1,1619623701,0),(860,1,1,'mod/lesson:manage',1,1619623701,0),(861,1,3,'mod/lesson:manageoverrides',1,1619623701,0),(862,1,1,'mod/lesson:manageoverrides',1,1619623701,0),(863,1,7,'mod/lesson:view',1,1619623701,0),(864,1,6,'mod/lesson:view',1,1619623701,0),(865,1,5,'mod/lti:view',1,1619623701,0),(866,1,4,'mod/lti:view',1,1619623701,0),(867,1,3,'mod/lti:view',1,1619623701,0),(868,1,1,'mod/lti:view',1,1619623701,0),(869,1,3,'mod/lti:addinstance',1,1619623701,0),(870,1,1,'mod/lti:addinstance',1,1619623701,0),(871,1,4,'mod/lti:manage',1,1619623701,0),(872,1,3,'mod/lti:manage',1,1619623701,0),(873,1,1,'mod/lti:manage',1,1619623701,0),(874,1,3,'mod/lti:addcoursetool',1,1619623702,0),(875,1,1,'mod/lti:addcoursetool',1,1619623702,0),(876,1,3,'mod/lti:addpreconfiguredinstance',1,1619623702,0),(877,1,1,'mod/lti:addpreconfiguredinstance',1,1619623702,0),(878,1,3,'mod/lti:addmanualinstance',1,1619623702,0),(879,1,1,'mod/lti:addmanualinstance',1,1619623702,0),(880,1,3,'mod/lti:requesttooladd',1,1619623702,0),(881,1,1,'mod/lti:requesttooladd',1,1619623702,0),(882,1,6,'mod/page:view',1,1619623702,0),(883,1,7,'mod/page:view',1,1619623702,0),(884,1,3,'mod/page:addinstance',1,1619623702,0),(885,1,1,'mod/page:addinstance',1,1619623702,0),(886,1,6,'mod/quiz:view',1,1619623702,0),(887,1,5,'mod/quiz:view',1,1619623702,0),(888,1,4,'mod/quiz:view',1,1619623702,0),(889,1,3,'mod/quiz:view',1,1619623702,0),(890,1,1,'mod/quiz:view',1,1619623702,0),(891,1,3,'mod/quiz:addinstance',1,1619623702,0),(892,1,1,'mod/quiz:addinstance',1,1619623702,0),(893,1,5,'mod/quiz:attempt',1,1619623702,0),(894,1,5,'mod/quiz:reviewmyattempts',1,1619623702,0),(895,1,3,'mod/quiz:manage',1,1619623702,0),(896,1,1,'mod/quiz:manage',1,1619623702,0),(897,1,3,'mod/quiz:manageoverrides',1,1619623702,0),(898,1,1,'mod/quiz:manageoverrides',1,1619623702,0),(899,1,4,'mod/quiz:preview',1,1619623702,0),(900,1,3,'mod/quiz:preview',1,1619623702,0),(901,1,1,'mod/quiz:preview',1,1619623702,0),(902,1,4,'mod/quiz:grade',1,1619623702,0),(903,1,3,'mod/quiz:grade',1,1619623702,0),(904,1,1,'mod/quiz:grade',1,1619623702,0),(905,1,4,'mod/quiz:regrade',1,1619623702,0),(906,1,3,'mod/quiz:regrade',1,1619623702,0),(907,1,1,'mod/quiz:regrade',1,1619623702,0),(908,1,4,'mod/quiz:viewreports',1,1619623702,0),(909,1,3,'mod/quiz:viewreports',1,1619623702,0),(910,1,1,'mod/quiz:viewreports',1,1619623702,0),(911,1,3,'mod/quiz:deleteattempts',1,1619623702,0),(912,1,1,'mod/quiz:deleteattempts',1,1619623702,0),(913,1,6,'mod/resource:view',1,1619623702,0),(914,1,7,'mod/resource:view',1,1619623702,0),(915,1,3,'mod/resource:addinstance',1,1619623702,0),(916,1,1,'mod/resource:addinstance',1,1619623702,0),(917,1,3,'mod/scorm:addinstance',1,1619623702,0),(918,1,1,'mod/scorm:addinstance',1,1619623702,0),(919,1,4,'mod/scorm:viewreport',1,1619623702,0),(920,1,3,'mod/scorm:viewreport',1,1619623702,0),(921,1,1,'mod/scorm:viewreport',1,1619623702,0),(922,1,5,'mod/scorm:skipview',1,1619623703,0),(923,1,5,'mod/scorm:savetrack',1,1619623703,0),(924,1,4,'mod/scorm:savetrack',1,1619623703,0),(925,1,3,'mod/scorm:savetrack',1,1619623703,0),(926,1,1,'mod/scorm:savetrack',1,1619623703,0),(927,1,5,'mod/scorm:viewscores',1,1619623703,0),(928,1,4,'mod/scorm:viewscores',1,1619623703,0),(929,1,3,'mod/scorm:viewscores',1,1619623703,0),(930,1,1,'mod/scorm:viewscores',1,1619623703,0),(931,1,4,'mod/scorm:deleteresponses',1,1619623703,0),(932,1,3,'mod/scorm:deleteresponses',1,1619623703,0),(933,1,1,'mod/scorm:deleteresponses',1,1619623703,0),(934,1,3,'mod/survey:addinstance',1,1619623703,0),(935,1,1,'mod/survey:addinstance',1,1619623703,0),(936,1,5,'mod/survey:participate',1,1619623703,0),(937,1,4,'mod/survey:participate',1,1619623703,0),(938,1,3,'mod/survey:participate',1,1619623703,0),(939,1,1,'mod/survey:participate',1,1619623703,0),(940,1,4,'mod/survey:readresponses',1,1619623703,0),(941,1,3,'mod/survey:readresponses',1,1619623703,0),(942,1,1,'mod/survey:readresponses',1,1619623703,0),(943,1,4,'mod/survey:download',1,1619623703,0),(944,1,3,'mod/survey:download',1,1619623703,0),(945,1,1,'mod/survey:download',1,1619623703,0),(946,1,6,'mod/url:view',1,1619623703,0),(947,1,7,'mod/url:view',1,1619623703,0),(948,1,3,'mod/url:addinstance',1,1619623703,0),(949,1,1,'mod/url:addinstance',1,1619623703,0),(950,1,3,'mod/wiki:addinstance',1,1619623703,0),(951,1,1,'mod/wiki:addinstance',1,1619623703,0),(952,1,6,'mod/wiki:viewpage',1,1619623703,0),(953,1,8,'mod/wiki:viewpage',1,1619623703,0),(954,1,5,'mod/wiki:viewpage',1,1619623703,0),(955,1,4,'mod/wiki:viewpage',1,1619623703,0),(956,1,3,'mod/wiki:viewpage',1,1619623703,0),(957,1,1,'mod/wiki:viewpage',1,1619623703,0),(958,1,5,'mod/wiki:editpage',1,1619623703,0),(959,1,4,'mod/wiki:editpage',1,1619623703,0),(960,1,3,'mod/wiki:editpage',1,1619623703,0),(961,1,1,'mod/wiki:editpage',1,1619623703,0),(962,1,5,'mod/wiki:createpage',1,1619623703,0),(963,1,4,'mod/wiki:createpage',1,1619623703,0),(964,1,3,'mod/wiki:createpage',1,1619623703,0),(965,1,1,'mod/wiki:createpage',1,1619623703,0),(966,1,5,'mod/wiki:viewcomment',1,1619623703,0),(967,1,4,'mod/wiki:viewcomment',1,1619623703,0),(968,1,3,'mod/wiki:viewcomment',1,1619623703,0),(969,1,1,'mod/wiki:viewcomment',1,1619623703,0),(970,1,5,'mod/wiki:editcomment',1,1619623703,0),(971,1,4,'mod/wiki:editcomment',1,1619623703,0),(972,1,3,'mod/wiki:editcomment',1,1619623703,0),(973,1,1,'mod/wiki:editcomment',1,1619623703,0),(974,1,4,'mod/wiki:managecomment',1,1619623703,0),(975,1,3,'mod/wiki:managecomment',1,1619623703,0),(976,1,1,'mod/wiki:managecomment',1,1619623703,0),(977,1,4,'mod/wiki:managefiles',1,1619623703,0),(978,1,3,'mod/wiki:managefiles',1,1619623703,0),(979,1,1,'mod/wiki:managefiles',1,1619623703,0),(980,1,4,'mod/wiki:overridelock',1,1619623703,0),(981,1,3,'mod/wiki:overridelock',1,1619623703,0),(982,1,1,'mod/wiki:overridelock',1,1619623703,0),(983,1,4,'mod/wiki:managewiki',1,1619623703,0),(984,1,3,'mod/wiki:managewiki',1,1619623703,0),(985,1,1,'mod/wiki:managewiki',1,1619623703,0),(986,1,6,'mod/workshop:view',1,1619623704,0),(987,1,5,'mod/workshop:view',1,1619623704,0),(988,1,4,'mod/workshop:view',1,1619623704,0),(989,1,3,'mod/workshop:view',1,1619623704,0),(990,1,1,'mod/workshop:view',1,1619623704,0),(991,1,3,'mod/workshop:addinstance',1,1619623704,0),(992,1,1,'mod/workshop:addinstance',1,1619623704,0),(993,1,4,'mod/workshop:switchphase',1,1619623704,0),(994,1,3,'mod/workshop:switchphase',1,1619623704,0),(995,1,1,'mod/workshop:switchphase',1,1619623704,0),(996,1,3,'mod/workshop:editdimensions',1,1619623704,0),(997,1,1,'mod/workshop:editdimensions',1,1619623704,0),(998,1,5,'mod/workshop:submit',1,1619623704,0),(999,1,5,'mod/workshop:peerassess',1,1619623704,0),(1000,1,4,'mod/workshop:manageexamples',1,1619623704,0),(1001,1,3,'mod/workshop:manageexamples',1,1619623704,0),(1002,1,1,'mod/workshop:manageexamples',1,1619623704,0),(1003,1,4,'mod/workshop:allocate',1,1619623704,0),(1004,1,3,'mod/workshop:allocate',1,1619623704,0),(1005,1,1,'mod/workshop:allocate',1,1619623704,0),(1006,1,4,'mod/workshop:publishsubmissions',1,1619623704,0),(1007,1,3,'mod/workshop:publishsubmissions',1,1619623704,0),(1008,1,1,'mod/workshop:publishsubmissions',1,1619623704,0),(1009,1,5,'mod/workshop:viewauthornames',1,1619623704,0),(1010,1,4,'mod/workshop:viewauthornames',1,1619623704,0),(1011,1,3,'mod/workshop:viewauthornames',1,1619623704,0),(1012,1,1,'mod/workshop:viewauthornames',1,1619623704,0),(1013,1,4,'mod/workshop:viewreviewernames',1,1619623704,0),(1014,1,3,'mod/workshop:viewreviewernames',1,1619623704,0),(1015,1,1,'mod/workshop:viewreviewernames',1,1619623704,0),(1016,1,4,'mod/workshop:viewallsubmissions',1,1619623704,0),(1017,1,3,'mod/workshop:viewallsubmissions',1,1619623704,0),(1018,1,1,'mod/workshop:viewallsubmissions',1,1619623704,0),(1019,1,5,'mod/workshop:viewpublishedsubmissions',1,1619623704,0),(1020,1,4,'mod/workshop:viewpublishedsubmissions',1,1619623704,0),(1021,1,3,'mod/workshop:viewpublishedsubmissions',1,1619623704,0),(1022,1,1,'mod/workshop:viewpublishedsubmissions',1,1619623704,0),(1023,1,5,'mod/workshop:viewauthorpublished',1,1619623704,0),(1024,1,4,'mod/workshop:viewauthorpublished',1,1619623704,0),(1025,1,3,'mod/workshop:viewauthorpublished',1,1619623704,0),(1026,1,1,'mod/workshop:viewauthorpublished',1,1619623704,0),(1027,1,4,'mod/workshop:viewallassessments',1,1619623704,0),(1028,1,3,'mod/workshop:viewallassessments',1,1619623704,0),(1029,1,1,'mod/workshop:viewallassessments',1,1619623704,0),(1030,1,4,'mod/workshop:overridegrades',1,1619623704,0),(1031,1,3,'mod/workshop:overridegrades',1,1619623704,0),(1032,1,1,'mod/workshop:overridegrades',1,1619623704,0),(1033,1,4,'mod/workshop:ignoredeadlines',1,1619623704,0),(1034,1,3,'mod/workshop:ignoredeadlines',1,1619623704,0),(1035,1,1,'mod/workshop:ignoredeadlines',1,1619623704,0),(1036,1,4,'mod/workshop:deletesubmissions',1,1619623704,0),(1037,1,3,'mod/workshop:deletesubmissions',1,1619623704,0),(1038,1,1,'mod/workshop:deletesubmissions',1,1619623704,0),(1039,1,1,'mod/workshop:exportsubmissions',1,1619623704,0),(1040,1,4,'mod/workshop:exportsubmissions',1,1619623704,0),(1041,1,3,'mod/workshop:exportsubmissions',1,1619623704,0),(1042,1,5,'mod/workshop:exportsubmissions',1,1619623704,0),(1043,1,7,'auth/oauth2:managelinkedlogins',1,1619623705,0),(1044,1,1,'enrol/category:config',1,1619623705,0),(1045,1,3,'enrol/category:config',1,1619623705,0),(1046,1,3,'enrol/cohort:config',1,1619623705,0),(1047,1,1,'enrol/cohort:config',1,1619623705,0),(1048,1,1,'enrol/cohort:unenrol',1,1619623705,0),(1049,1,1,'enrol/database:unenrol',1,1619623705,0),(1050,1,1,'enrol/database:config',1,1619623705,0),(1051,1,3,'enrol/database:config',1,1619623705,0),(1052,1,1,'enrol/fee:config',1,1619623705,0),(1053,1,1,'enrol/fee:manage',1,1619623705,0),(1054,1,3,'enrol/fee:manage',1,1619623705,0),(1055,1,1,'enrol/fee:unenrol',1,1619623705,0),(1056,1,1,'enrol/guest:config',1,1619623705,0),(1057,1,3,'enrol/guest:config',1,1619623705,0),(1058,1,1,'enrol/imsenterprise:config',1,1619623705,0),(1059,1,3,'enrol/imsenterprise:config',1,1619623705,0),(1060,1,1,'enrol/ldap:manage',1,1619623705,0),(1061,1,1,'enrol/lti:config',1,1619623706,0),(1062,1,3,'enrol/lti:config',1,1619623706,0),(1063,1,1,'enrol/lti:unenrol',1,1619623706,0),(1064,1,3,'enrol/lti:unenrol',1,1619623706,0),(1065,1,1,'enrol/manual:config',1,1619623706,0),(1066,1,1,'enrol/manual:enrol',1,1619623706,0),(1067,1,3,'enrol/manual:enrol',1,1619623706,0),(1068,1,1,'enrol/manual:manage',1,1619623706,0),(1069,1,3,'enrol/manual:manage',1,1619623706,0),(1070,1,1,'enrol/manual:unenrol',1,1619623706,0),(1071,1,3,'enrol/manual:unenrol',1,1619623706,0),(1072,1,1,'enrol/meta:config',1,1619623706,0),(1073,1,3,'enrol/meta:config',1,1619623706,0),(1074,1,1,'enrol/meta:selectaslinked',1,1619623706,0),(1075,1,1,'enrol/meta:unenrol',1,1619623706,0),(1076,1,1,'enrol/mnet:config',1,1619623706,0),(1077,1,3,'enrol/mnet:config',1,1619623706,0),(1078,1,1,'enrol/paypal:config',1,1619623706,0),(1079,1,1,'enrol/paypal:manage',1,1619623706,0),(1080,1,3,'enrol/paypal:manage',1,1619623706,0),(1081,1,1,'enrol/paypal:unenrol',1,1619623706,0),(1082,1,3,'enrol/self:config',1,1619623706,0),(1083,1,1,'enrol/self:config',1,1619623706,0),(1084,1,3,'enrol/self:manage',1,1619623706,0),(1085,1,1,'enrol/self:manage',1,1619623706,0),(1086,1,5,'enrol/self:unenrolself',1,1619623706,0),(1087,1,3,'enrol/self:unenrol',1,1619623706,0),(1088,1,1,'enrol/self:unenrol',1,1619623706,0),(1089,1,7,'enrol/self:enrolself',1,1619623706,0),(1090,1,7,'message/airnotifier:managedevice',1,1619623706,0),(1091,1,3,'block/activity_modules:addinstance',1,1619623707,0),(1092,1,1,'block/activity_modules:addinstance',1,1619623707,0),(1093,1,3,'block/activity_results:addinstance',1,1619623707,0),(1094,1,1,'block/activity_results:addinstance',1,1619623707,0),(1095,1,7,'block/admin_bookmarks:myaddinstance',1,1619623707,0),(1096,1,3,'block/admin_bookmarks:addinstance',1,1619623707,0),(1097,1,1,'block/admin_bookmarks:addinstance',1,1619623707,0),(1098,1,3,'block/badges:addinstance',1,1619623707,0),(1099,1,1,'block/badges:addinstance',1,1619623707,0),(1100,1,7,'block/badges:myaddinstance',1,1619623707,0),(1101,1,3,'block/blog_menu:addinstance',1,1619623707,0),(1102,1,1,'block/blog_menu:addinstance',1,1619623707,0),(1103,1,3,'block/blog_recent:addinstance',1,1619623707,0),(1104,1,1,'block/blog_recent:addinstance',1,1619623707,0),(1105,1,3,'block/blog_tags:addinstance',1,1619623707,0),(1106,1,1,'block/blog_tags:addinstance',1,1619623707,0),(1107,1,7,'block/calendar_month:myaddinstance',1,1619623707,0),(1108,1,3,'block/calendar_month:addinstance',1,1619623707,0),(1109,1,1,'block/calendar_month:addinstance',1,1619623707,0),(1110,1,7,'block/calendar_upcoming:myaddinstance',1,1619623707,0),(1111,1,3,'block/calendar_upcoming:addinstance',1,1619623707,0),(1112,1,1,'block/calendar_upcoming:addinstance',1,1619623707,0),(1113,1,7,'block/comments:myaddinstance',1,1619623707,0),(1114,1,3,'block/comments:addinstance',1,1619623707,0),(1115,1,1,'block/comments:addinstance',1,1619623707,0),(1116,1,3,'block/completionstatus:addinstance',1,1619623707,0),(1117,1,1,'block/completionstatus:addinstance',1,1619623707,0),(1118,1,7,'block/course_list:myaddinstance',1,1619623707,0),(1119,1,3,'block/course_list:addinstance',1,1619623708,0),(1120,1,1,'block/course_list:addinstance',1,1619623708,0),(1121,1,3,'block/course_summary:addinstance',1,1619623708,0),(1122,1,1,'block/course_summary:addinstance',1,1619623708,0),(1123,1,3,'block/feedback:addinstance',1,1619623708,0),(1124,1,1,'block/feedback:addinstance',1,1619623708,0),(1125,1,7,'block/globalsearch:myaddinstance',1,1619623708,0),(1126,1,3,'block/globalsearch:addinstance',1,1619623708,0),(1127,1,1,'block/globalsearch:addinstance',1,1619623708,0),(1128,1,7,'block/glossary_random:myaddinstance',1,1619623708,0),(1129,1,3,'block/glossary_random:addinstance',1,1619623708,0),(1130,1,1,'block/glossary_random:addinstance',1,1619623708,0),(1131,1,7,'block/html:myaddinstance',1,1619623708,0),(1132,1,3,'block/html:addinstance',1,1619623708,0),(1133,1,1,'block/html:addinstance',1,1619623708,0),(1134,1,3,'block/login:addinstance',1,1619623708,0),(1135,1,1,'block/login:addinstance',1,1619623708,0),(1136,1,3,'block/lp:addinstance',1,1619623708,0),(1137,1,1,'block/lp:addinstance',1,1619623708,0),(1138,1,7,'block/lp:myaddinstance',1,1619623708,0),(1139,1,7,'block/mentees:myaddinstance',1,1619623708,0),(1140,1,3,'block/mentees:addinstance',1,1619623708,0),(1141,1,1,'block/mentees:addinstance',1,1619623708,0),(1142,1,7,'block/mnet_hosts:myaddinstance',1,1619623708,0),(1143,1,3,'block/mnet_hosts:addinstance',1,1619623708,0),(1144,1,1,'block/mnet_hosts:addinstance',1,1619623708,0),(1145,1,7,'block/myoverview:myaddinstance',1,1619623708,0),(1146,1,7,'block/myprofile:myaddinstance',1,1619623708,0),(1147,1,3,'block/myprofile:addinstance',1,1619623708,0),(1148,1,1,'block/myprofile:addinstance',1,1619623708,0),(1149,1,7,'block/navigation:myaddinstance',1,1619623708,0),(1150,1,3,'block/navigation:addinstance',1,1619623708,0),(1151,1,1,'block/navigation:addinstance',1,1619623708,0),(1152,1,7,'block/news_items:myaddinstance',1,1619623708,0),(1153,1,3,'block/news_items:addinstance',1,1619623708,0),(1154,1,1,'block/news_items:addinstance',1,1619623708,0),(1155,1,7,'block/online_users:myaddinstance',1,1619623708,0),(1156,1,3,'block/online_users:addinstance',1,1619623708,0),(1157,1,1,'block/online_users:addinstance',1,1619623708,0),(1158,1,7,'block/online_users:viewlist',1,1619623708,0),(1159,1,6,'block/online_users:viewlist',1,1619623708,0),(1160,1,5,'block/online_users:viewlist',1,1619623708,0),(1161,1,4,'block/online_users:viewlist',1,1619623708,0),(1162,1,3,'block/online_users:viewlist',1,1619623708,0),(1163,1,1,'block/online_users:viewlist',1,1619623708,0),(1164,1,7,'block/private_files:myaddinstance',1,1619623709,0),(1165,1,3,'block/private_files:addinstance',1,1619623709,0),(1166,1,1,'block/private_files:addinstance',1,1619623709,0),(1167,1,3,'block/quiz_results:addinstance',1,1619623709,0),(1168,1,1,'block/quiz_results:addinstance',1,1619623709,0),(1169,1,3,'block/recent_activity:addinstance',1,1619623709,0),(1170,1,1,'block/recent_activity:addinstance',1,1619623709,0),(1171,1,7,'block/recent_activity:viewaddupdatemodule',1,1619623709,0),(1172,1,7,'block/recent_activity:viewdeletemodule',1,1619623709,0),(1173,1,7,'block/recentlyaccessedcourses:myaddinstance',1,1619623709,0),(1174,1,7,'block/recentlyaccesseditems:myaddinstance',1,1619623709,0),(1175,1,7,'block/rss_client:myaddinstance',1,1619623709,0),(1176,1,3,'block/rss_client:addinstance',1,1619623709,0),(1177,1,1,'block/rss_client:addinstance',1,1619623709,0),(1178,1,4,'block/rss_client:manageownfeeds',1,1619623709,0),(1179,1,3,'block/rss_client:manageownfeeds',1,1619623709,0),(1180,1,1,'block/rss_client:manageownfeeds',1,1619623709,0),(1181,1,1,'block/rss_client:manageanyfeeds',1,1619623709,0),(1182,1,3,'block/search_forums:addinstance',1,1619623709,0),(1183,1,1,'block/search_forums:addinstance',1,1619623709,0),(1184,1,3,'block/section_links:addinstance',1,1619623709,0),(1185,1,1,'block/section_links:addinstance',1,1619623709,0),(1186,1,3,'block/selfcompletion:addinstance',1,1619623709,0),(1187,1,1,'block/selfcompletion:addinstance',1,1619623709,0),(1188,1,7,'block/settings:myaddinstance',1,1619623709,0),(1189,1,3,'block/settings:addinstance',1,1619623709,0),(1190,1,1,'block/settings:addinstance',1,1619623709,0),(1191,1,3,'block/site_main_menu:addinstance',1,1619623709,0),(1192,1,1,'block/site_main_menu:addinstance',1,1619623709,0),(1193,1,3,'block/social_activities:addinstance',1,1619623709,0),(1194,1,1,'block/social_activities:addinstance',1,1619623709,0),(1195,1,7,'block/starredcourses:myaddinstance',1,1619623709,0),(1196,1,3,'block/tag_flickr:addinstance',1,1619623709,0),(1197,1,1,'block/tag_flickr:addinstance',1,1619623709,0),(1198,1,3,'block/tag_youtube:addinstance',1,1619623709,0),(1199,1,1,'block/tag_youtube:addinstance',1,1619623709,0),(1200,1,7,'block/tags:myaddinstance',1,1619623709,0),(1201,1,3,'block/tags:addinstance',1,1619623709,0),(1202,1,1,'block/tags:addinstance',1,1619623709,0),(1203,1,7,'block/timeline:myaddinstance',1,1619623710,0),(1204,1,4,'report/completion:view',1,1619623711,0),(1205,1,3,'report/completion:view',1,1619623711,0),(1206,1,1,'report/completion:view',1,1619623711,0),(1207,1,4,'report/courseoverview:view',1,1619623711,0),(1208,1,3,'report/courseoverview:view',1,1619623711,0),(1209,1,1,'report/courseoverview:view',1,1619623711,0),(1210,1,4,'report/log:view',1,1619623711,0),(1211,1,3,'report/log:view',1,1619623711,0),(1212,1,1,'report/log:view',1,1619623711,0),(1213,1,4,'report/log:viewtoday',1,1619623711,0),(1214,1,3,'report/log:viewtoday',1,1619623711,0),(1215,1,1,'report/log:viewtoday',1,1619623711,0),(1216,1,4,'report/loglive:view',1,1619623711,0),(1217,1,3,'report/loglive:view',1,1619623711,0),(1218,1,1,'report/loglive:view',1,1619623711,0),(1219,1,4,'report/outline:view',1,1619623711,0),(1220,1,3,'report/outline:view',1,1619623711,0),(1221,1,1,'report/outline:view',1,1619623712,0),(1222,1,4,'report/outline:viewuserreport',1,1619623712,0),(1223,1,3,'report/outline:viewuserreport',1,1619623712,0),(1224,1,1,'report/outline:viewuserreport',1,1619623712,0),(1225,1,4,'report/participation:view',1,1619623712,0),(1226,1,3,'report/participation:view',1,1619623712,0),(1227,1,1,'report/participation:view',1,1619623712,0),(1228,1,1,'report/performance:view',1,1619623712,0),(1229,1,4,'report/progress:view',1,1619623712,0),(1230,1,3,'report/progress:view',1,1619623712,0),(1231,1,1,'report/progress:view',1,1619623712,0),(1232,1,1,'report/security:view',1,1619623712,0),(1233,1,4,'report/stats:view',1,1619623712,0),(1234,1,3,'report/stats:view',1,1619623712,0),(1235,1,1,'report/stats:view',1,1619623712,0),(1236,1,1,'report/status:view',1,1619623712,0),(1237,1,6,'report/usersessions:manageownsessions',-1000,1619623712,0),(1238,1,7,'report/usersessions:manageownsessions',1,1619623712,0),(1239,1,1,'report/usersessions:manageownsessions',1,1619623712,0),(1240,1,4,'gradeexport/ods:view',1,1619623712,0),(1241,1,3,'gradeexport/ods:view',1,1619623712,0),(1242,1,1,'gradeexport/ods:view',1,1619623712,0),(1243,1,1,'gradeexport/ods:publish',1,1619623712,0),(1244,1,4,'gradeexport/txt:view',1,1619623712,0),(1245,1,3,'gradeexport/txt:view',1,1619623712,0),(1246,1,1,'gradeexport/txt:view',1,1619623712,0),(1247,1,1,'gradeexport/txt:publish',1,1619623712,0),(1248,1,4,'gradeexport/xls:view',1,1619623712,0),(1249,1,3,'gradeexport/xls:view',1,1619623712,0),(1250,1,1,'gradeexport/xls:view',1,1619623712,0),(1251,1,1,'gradeexport/xls:publish',1,1619623712,0),(1252,1,4,'gradeexport/xml:view',1,1619623712,0),(1253,1,3,'gradeexport/xml:view',1,1619623712,0),(1254,1,1,'gradeexport/xml:view',1,1619623712,0),(1255,1,1,'gradeexport/xml:publish',1,1619623712,0),(1256,1,3,'gradeimport/csv:view',1,1619623712,0),(1257,1,1,'gradeimport/csv:view',1,1619623712,0),(1258,1,3,'gradeimport/direct:view',1,1619623712,0),(1259,1,1,'gradeimport/direct:view',1,1619623712,0),(1260,1,3,'gradeimport/xml:view',1,1619623712,0),(1261,1,1,'gradeimport/xml:view',1,1619623712,0),(1262,1,1,'gradeimport/xml:publish',1,1619623712,0),(1263,1,4,'gradereport/grader:view',1,1619623712,0),(1264,1,3,'gradereport/grader:view',1,1619623712,0),(1265,1,1,'gradereport/grader:view',1,1619623713,0),(1266,1,4,'gradereport/history:view',1,1619623713,0),(1267,1,3,'gradereport/history:view',1,1619623713,0),(1268,1,1,'gradereport/history:view',1,1619623713,0),(1269,1,4,'gradereport/outcomes:view',1,1619623713,0),(1270,1,3,'gradereport/outcomes:view',1,1619623713,0),(1271,1,1,'gradereport/outcomes:view',1,1619623713,0),(1272,1,7,'gradereport/overview:view',1,1619623713,0),(1273,1,3,'gradereport/singleview:view',1,1619623713,0),(1274,1,1,'gradereport/singleview:view',1,1619623713,0),(1275,1,5,'gradereport/user:view',1,1619623713,0),(1276,1,4,'gradereport/user:view',1,1619623713,0),(1277,1,3,'gradereport/user:view',1,1619623713,0),(1278,1,1,'gradereport/user:view',1,1619623713,0),(1279,1,7,'repository/areafiles:view',1,1619623713,0),(1280,1,7,'repository/boxnet:view',1,1619623713,0),(1281,1,2,'repository/contentbank:view',1,1619623713,0),(1282,1,3,'repository/contentbank:view',1,1619623713,0),(1283,1,1,'repository/contentbank:view',1,1619623713,0),(1284,1,2,'repository/contentbank:accesscoursecontent',1,1619623713,0),(1285,1,3,'repository/contentbank:accesscoursecontent',1,1619623713,0),(1286,1,1,'repository/contentbank:accesscoursecontent',1,1619623713,0),(1287,1,2,'repository/contentbank:accesscoursecategorycontent',1,1619623714,0),(1288,1,1,'repository/contentbank:accesscoursecategorycontent',1,1619623714,0),(1289,1,7,'repository/contentbank:accessgeneralcontent',1,1619623714,0),(1290,1,2,'repository/coursefiles:view',1,1619623714,0),(1291,1,4,'repository/coursefiles:view',1,1619623714,0),(1292,1,3,'repository/coursefiles:view',1,1619623714,0),(1293,1,1,'repository/coursefiles:view',1,1619623714,0),(1294,1,7,'repository/dropbox:view',1,1619623714,0),(1295,1,7,'repository/equella:view',1,1619623714,0),(1296,1,2,'repository/filesystem:view',1,1619623714,0),(1297,1,4,'repository/filesystem:view',1,1619623714,0),(1298,1,3,'repository/filesystem:view',1,1619623714,0),(1299,1,1,'repository/filesystem:view',1,1619623714,0),(1300,1,7,'repository/flickr:view',1,1619623714,0),(1301,1,7,'repository/flickr_public:view',1,1619623714,0),(1302,1,7,'repository/googledocs:view',1,1619623714,0),(1303,1,2,'repository/local:view',1,1619623714,0),(1304,1,4,'repository/local:view',1,1619623714,0),(1305,1,3,'repository/local:view',1,1619623714,0),(1306,1,1,'repository/local:view',1,1619623714,0),(1307,1,7,'repository/merlot:view',1,1619623714,0),(1308,1,7,'repository/nextcloud:view',1,1619623714,0),(1309,1,7,'repository/onedrive:view',1,1619623714,0),(1310,1,7,'repository/picasa:view',1,1619623714,0),(1311,1,7,'repository/recent:view',1,1619623714,0),(1312,1,7,'repository/s3:view',1,1619623714,0),(1313,1,7,'repository/skydrive:view',1,1619623714,0),(1314,1,7,'repository/upload:view',1,1619623714,0),(1315,1,7,'repository/url:view',1,1619623715,0),(1316,1,7,'repository/user:view',1,1619623715,0),(1317,1,2,'repository/webdav:view',1,1619623715,0),(1318,1,4,'repository/webdav:view',1,1619623715,0),(1319,1,3,'repository/webdav:view',1,1619623715,0),(1320,1,1,'repository/webdav:view',1,1619623715,0),(1321,1,7,'repository/wikimedia:view',1,1619623715,0),(1322,1,7,'repository/youtube:view',1,1619623715,0),(1323,1,1,'tool/customlang:view',1,1619623716,0),(1324,1,1,'tool/customlang:edit',1,1619623716,0),(1325,1,1,'tool/customlang:export',1,1619623716,0),(1326,1,7,'tool/dataprivacy:downloadownrequest',1,1619623716,0),(1327,1,7,'tool/dataprivacy:requestdelete',1,1619623716,0),(1328,1,1,'tool/lpmigrate:frameworksmigrate',1,1619623717,0),(1329,1,4,'tool/monitor:subscribe',1,1619623717,0),(1330,1,3,'tool/monitor:subscribe',1,1619623717,0),(1331,1,1,'tool/monitor:subscribe',1,1619623717,0),(1332,1,4,'tool/monitor:managerules',1,1619623717,0),(1333,1,3,'tool/monitor:managerules',1,1619623717,0),(1334,1,1,'tool/monitor:managerules',1,1619623717,0),(1335,1,1,'tool/monitor:managetool',1,1619623717,0),(1336,1,7,'tool/policy:accept',1,1619623717,0),(1337,1,1,'tool/policy:managedocs',1,1619623717,0),(1338,1,1,'tool/policy:viewacceptances',1,1619623717,0),(1339,1,3,'tool/recyclebin:deleteitems',1,1619623718,0),(1340,1,1,'tool/recyclebin:deleteitems',1,1619623718,0),(1341,1,3,'tool/recyclebin:restoreitems',1,1619623718,0),(1342,1,1,'tool/recyclebin:restoreitems',1,1619623718,0),(1343,1,4,'tool/recyclebin:viewitems',1,1619623718,0),(1344,1,3,'tool/recyclebin:viewitems',1,1619623718,0),(1345,1,1,'tool/recyclebin:viewitems',1,1619623718,0),(1346,1,1,'tool/uploaduser:uploaduserpictures',1,1619623718,0),(1347,1,1,'tool/usertours:managetours',1,1619623718,0),(1348,1,1,'contenttype/h5p:access',1,1619623718,0),(1349,1,2,'contenttype/h5p:access',1,1619623718,0),(1350,1,3,'contenttype/h5p:access',1,1619623718,0),(1351,1,1,'contenttype/h5p:upload',1,1619623718,0),(1352,1,2,'contenttype/h5p:upload',1,1619623718,0),(1353,1,3,'contenttype/h5p:upload',1,1619623718,0),(1354,1,1,'contenttype/h5p:useeditor',1,1619623718,0),(1355,1,2,'contenttype/h5p:useeditor',1,1619623718,0),(1356,1,3,'contenttype/h5p:useeditor',1,1619623718,0),(1357,1,3,'booktool/importhtml:import',1,1619623719,0),(1358,1,1,'booktool/importhtml:import',1,1619623719,0),(1359,1,6,'booktool/print:print',1,1619623719,0),(1360,1,8,'booktool/print:print',1,1619623719,0),(1361,1,5,'booktool/print:print',1,1619623719,0),(1362,1,4,'booktool/print:print',1,1619623719,0),(1363,1,3,'booktool/print:print',1,1619623719,0),(1364,1,1,'booktool/print:print',1,1619623719,0),(1365,1,4,'forumreport/summary:view',1,1619623720,0),(1366,1,3,'forumreport/summary:view',1,1619623720,0),(1367,1,1,'forumreport/summary:view',1,1619623720,0),(1368,1,4,'forumreport/summary:viewall',1,1619623720,0),(1369,1,3,'forumreport/summary:viewall',1,1619623720,0),(1370,1,1,'forumreport/summary:viewall',1,1619623720,0),(1371,1,4,'quiz/grading:viewstudentnames',1,1619623720,0),(1372,1,3,'quiz/grading:viewstudentnames',1,1619623720,0),(1373,1,1,'quiz/grading:viewstudentnames',1,1619623720,0),(1374,1,4,'quiz/grading:viewidnumber',1,1619623720,0),(1375,1,3,'quiz/grading:viewidnumber',1,1619623720,0),(1376,1,1,'quiz/grading:viewidnumber',1,1619623720,0),(1377,1,4,'quiz/statistics:view',1,1619623720,0),(1378,1,3,'quiz/statistics:view',1,1619623720,0),(1379,1,1,'quiz/statistics:view',1,1619623720,0),(1380,1,1,'quizaccess/seb:managetemplates',1,1619623721,0),(1381,1,1,'quizaccess/seb:bypassseb',1,1619623721,0),(1382,1,3,'quizaccess/seb:bypassseb',1,1619623721,0),(1383,1,1,'quizaccess/seb:manage_seb_requiresafeexambrowser',1,1619623721,0),(1384,1,3,'quizaccess/seb:manage_seb_requiresafeexambrowser',1,1619623721,0),(1385,1,1,'quizaccess/seb:manage_seb_templateid',1,1619623721,0),(1386,1,3,'quizaccess/seb:manage_seb_templateid',1,1619623721,0),(1387,1,1,'quizaccess/seb:manage_filemanager_sebconfigfile',1,1619623721,0),(1388,1,3,'quizaccess/seb:manage_filemanager_sebconfigfile',1,1619623721,0),(1389,1,1,'quizaccess/seb:manage_seb_showsebdownloadlink',1,1619623721,0),(1390,1,3,'quizaccess/seb:manage_seb_showsebdownloadlink',1,1619623721,0),(1391,1,1,'quizaccess/seb:manage_seb_allowedbrowserexamkeys',1,1619623721,0),(1392,1,3,'quizaccess/seb:manage_seb_allowedbrowserexamkeys',1,1619623721,0),(1393,1,1,'quizaccess/seb:manage_seb_linkquitseb',1,1619623721,0),(1394,1,3,'quizaccess/seb:manage_seb_linkquitseb',1,1619623721,0),(1395,1,1,'quizaccess/seb:manage_seb_userconfirmquit',1,1619623721,0),(1396,1,3,'quizaccess/seb:manage_seb_userconfirmquit',1,1619623721,0),(1397,1,1,'quizaccess/seb:manage_seb_allowuserquitseb',1,1619623721,0),(1398,1,3,'quizaccess/seb:manage_seb_allowuserquitseb',1,1619623721,0),(1399,1,1,'quizaccess/seb:manage_seb_quitpassword',1,1619623721,0),(1400,1,3,'quizaccess/seb:manage_seb_quitpassword',1,1619623721,0),(1401,1,1,'quizaccess/seb:manage_seb_allowreloadinexam',1,1619623721,0),(1402,1,3,'quizaccess/seb:manage_seb_allowreloadinexam',1,1619623721,0),(1403,1,1,'quizaccess/seb:manage_seb_showsebtaskbar',1,1619623721,0),(1404,1,3,'quizaccess/seb:manage_seb_showsebtaskbar',1,1619623721,0),(1405,1,1,'quizaccess/seb:manage_seb_showreloadbutton',1,1619623721,0),(1406,1,3,'quizaccess/seb:manage_seb_showreloadbutton',1,1619623721,0),(1407,1,1,'quizaccess/seb:manage_seb_showtime',1,1619623721,0),(1408,1,3,'quizaccess/seb:manage_seb_showtime',1,1619623721,0),(1409,1,1,'quizaccess/seb:manage_seb_showkeyboardlayout',1,1619623721,0),(1410,1,3,'quizaccess/seb:manage_seb_showkeyboardlayout',1,1619623721,0),(1411,1,1,'quizaccess/seb:manage_seb_showwificontrol',1,1619623721,0),(1412,1,3,'quizaccess/seb:manage_seb_showwificontrol',1,1619623721,0),(1413,1,1,'quizaccess/seb:manage_seb_enableaudiocontrol',1,1619623721,0),(1414,1,3,'quizaccess/seb:manage_seb_enableaudiocontrol',1,1619623721,0),(1415,1,1,'quizaccess/seb:manage_seb_muteonstartup',1,1619623721,0),(1416,1,3,'quizaccess/seb:manage_seb_muteonstartup',1,1619623721,0),(1417,1,1,'quizaccess/seb:manage_seb_allowspellchecking',1,1619623721,0),(1418,1,3,'quizaccess/seb:manage_seb_allowspellchecking',1,1619623721,0),(1419,1,1,'quizaccess/seb:manage_seb_activateurlfiltering',1,1619623721,0),(1420,1,3,'quizaccess/seb:manage_seb_activateurlfiltering',1,1619623721,0),(1421,1,1,'quizaccess/seb:manage_seb_filterembeddedcontent',1,1619623721,0),(1422,1,3,'quizaccess/seb:manage_seb_filterembeddedcontent',1,1619623721,0),(1423,1,1,'quizaccess/seb:manage_seb_expressionsallowed',1,1619623721,0),(1424,1,3,'quizaccess/seb:manage_seb_expressionsallowed',1,1619623721,0),(1425,1,1,'quizaccess/seb:manage_seb_regexallowed',1,1619623721,0),(1426,1,3,'quizaccess/seb:manage_seb_regexallowed',1,1619623721,0),(1427,1,1,'quizaccess/seb:manage_seb_expressionsblocked',1,1619623721,0),(1428,1,3,'quizaccess/seb:manage_seb_expressionsblocked',1,1619623721,0),(1429,1,1,'quizaccess/seb:manage_seb_regexblocked',1,1619623721,0),(1430,1,3,'quizaccess/seb:manage_seb_regexblocked',1,1619623721,0),(1431,1,3,'atto/h5p:addembed',1,1619623722,0),(1432,1,7,'atto/recordrtc:recordaudio',1,1619623723,0),(1433,1,7,'atto/recordrtc:recordvideo',1,1619623723,0),(1434,1,3,'mod/customcert:addinstance',1,1619625659,2),(1435,1,1,'mod/customcert:addinstance',1,1619625659,2),(1436,1,5,'mod/customcert:view',1,1619625659,2),(1437,1,4,'mod/customcert:view',1,1619625659,2),(1438,1,3,'mod/customcert:view',1,1619625659,2),(1439,1,1,'mod/customcert:view',1,1619625659,2),(1440,1,4,'mod/customcert:manage',1,1619625659,2),(1441,1,3,'mod/customcert:manage',1,1619625659,2),(1442,1,1,'mod/customcert:manage',1,1619625659,2),(1443,1,5,'mod/customcert:receiveissue',1,1619625659,2),(1444,1,4,'mod/customcert:viewreport',1,1619625659,2),(1445,1,3,'mod/customcert:viewreport',1,1619625659,2),(1446,1,1,'mod/customcert:viewreport',1,1619625659,2),(1447,1,1,'mod/customcert:viewallcertificates',1,1619625659,2),(1448,1,4,'mod/customcert:verifycertificate',1,1619625659,2),(1449,1,3,'mod/customcert:verifycertificate',1,1619625659,2),(1450,1,1,'mod/customcert:verifycertificate',1,1619625659,2),(1451,1,1,'mod/customcert:verifyallcertificates',1,1619625659,2),(1452,1,3,'mod/customcert:manageemailstudents',1,1619625659,2),(1453,1,1,'mod/customcert:manageemailstudents',1,1619625659,2),(1454,1,3,'mod/customcert:manageemailteachers',1,1619625659,2),(1455,1,1,'mod/customcert:manageemailteachers',1,1619625659,2),(1456,1,3,'mod/customcert:manageemailothers',1,1619625659,2),(1457,1,1,'mod/customcert:manageemailothers',1,1619625659,2),(1458,1,3,'mod/customcert:manageverifyany',1,1619625659,2),(1459,1,1,'mod/customcert:manageverifyany',1,1619625659,2),(1460,1,3,'mod/customcert:managerequiredtime',1,1619625659,2),(1461,1,1,'mod/customcert:managerequiredtime',1,1619625659,2),(1462,1,3,'mod/customcert:manageprotection',1,1619625659,2),(1463,1,1,'mod/customcert:manageprotection',1,1619625659,2),(1464,1,7,'webservice/rest:use',1,1619625777,2); -/*!40000 ALTER TABLE `mdl_role_capabilities` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_role_context_levels` --- - -DROP TABLE IF EXISTS `mdl_role_context_levels`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_role_context_levels` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `roleid` bigint(10) NOT NULL, - `contextlevel` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_rolecontleve_conrol_uix` (`contextlevel`,`roleid`), - KEY `mdl_rolecontleve_rol_ix` (`roleid`) -) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Lists which roles can be assigned at which context levels. T'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_role_context_levels` --- - -LOCK TABLES `mdl_role_context_levels` WRITE; -/*!40000 ALTER TABLE `mdl_role_context_levels` DISABLE KEYS */; -INSERT INTO `mdl_role_context_levels` VALUES (1,1,10),(4,2,10),(2,1,40),(5,2,40),(3,1,50),(6,3,50),(8,4,50),(10,5,50),(7,3,70),(9,4,70),(11,5,70); -/*!40000 ALTER TABLE `mdl_role_context_levels` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_role_names` --- - -DROP TABLE IF EXISTS `mdl_role_names`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_role_names` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `roleid` bigint(10) NOT NULL DEFAULT 0, - `contextid` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_rolename_rolcon_uix` (`roleid`,`contextid`), - KEY `mdl_rolename_rol_ix` (`roleid`), - KEY `mdl_rolename_con_ix` (`contextid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='role names in native strings'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_role_names` --- - -LOCK TABLES `mdl_role_names` WRITE; -/*!40000 ALTER TABLE `mdl_role_names` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_role_names` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_scale` --- - -DROP TABLE IF EXISTS `mdl_scale`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_scale` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `courseid` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `scale` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `descriptionformat` tinyint(2) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_scal_cou_ix` (`courseid`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines grading scales'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_scale` --- - -LOCK TABLES `mdl_scale` WRITE; -/*!40000 ALTER TABLE `mdl_scale` DISABLE KEYS */; -INSERT INTO `mdl_scale` VALUES (1,0,0,'Separate and Connected ways of knowing','Mostly separate knowing,Separate and connected,Mostly connected knowing','The scale based on the theory of separate and connected knowing. This theory describes two different ways that we can evaluate and learn about the things we see and hear.
  • Separate knowers remain as objective as possible without including feelings and emotions. In a discussion with other people, they like to defend their own ideas, using logic to find holes in opponent\'s ideas.
  • Connected knowers are more sensitive to other people. They are skilled at empathy and tend to listen and ask questions until they feel they can connect and \"understand things from their point of view\". They learn by trying to share the experiences that led to the knowledge they find in other people.
',0,1619623687),(2,0,0,'Default competence scale','Not yet competent,Competent','A binary rating scale that provides no further information beyond whether someone has demonstrated proficiency or not.',0,1619623687); -/*!40000 ALTER TABLE `mdl_scale` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_scale_history` --- - -DROP TABLE IF EXISTS `mdl_scale_history`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_scale_history` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `action` bigint(10) NOT NULL DEFAULT 0, - `oldid` bigint(10) NOT NULL, - `source` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timemodified` bigint(10) DEFAULT NULL, - `loggeduser` bigint(10) DEFAULT NULL, - `courseid` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `scale` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_scalhist_act_ix` (`action`), - KEY `mdl_scalhist_tim_ix` (`timemodified`), - KEY `mdl_scalhist_old_ix` (`oldid`), - KEY `mdl_scalhist_cou_ix` (`courseid`), - KEY `mdl_scalhist_log_ix` (`loggeduser`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='History table'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_scale_history` --- - -LOCK TABLES `mdl_scale_history` WRITE; -/*!40000 ALTER TABLE `mdl_scale_history` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_scale_history` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_scorm` --- - -DROP TABLE IF EXISTS `mdl_scorm`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_scorm` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `scormtype` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'local', - `reference` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `introformat` smallint(4) NOT NULL DEFAULT 0, - `version` varchar(9) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `maxgrade` double NOT NULL DEFAULT 0, - `grademethod` tinyint(2) NOT NULL DEFAULT 0, - `whatgrade` bigint(10) NOT NULL DEFAULT 0, - `maxattempt` bigint(10) NOT NULL DEFAULT 1, - `forcecompleted` tinyint(1) NOT NULL DEFAULT 0, - `forcenewattempt` tinyint(1) NOT NULL DEFAULT 0, - `lastattemptlock` tinyint(1) NOT NULL DEFAULT 0, - `masteryoverride` tinyint(1) NOT NULL DEFAULT 1, - `displayattemptstatus` tinyint(1) NOT NULL DEFAULT 1, - `displaycoursestructure` tinyint(1) NOT NULL DEFAULT 0, - `updatefreq` tinyint(1) NOT NULL DEFAULT 0, - `sha1hash` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `md5hash` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `revision` bigint(10) NOT NULL DEFAULT 0, - `launch` bigint(10) NOT NULL DEFAULT 0, - `skipview` tinyint(1) NOT NULL DEFAULT 1, - `hidebrowse` tinyint(1) NOT NULL DEFAULT 0, - `hidetoc` tinyint(1) NOT NULL DEFAULT 0, - `nav` tinyint(1) NOT NULL DEFAULT 1, - `navpositionleft` bigint(10) DEFAULT -100, - `navpositiontop` bigint(10) DEFAULT -100, - `auto` tinyint(1) NOT NULL DEFAULT 0, - `popup` tinyint(1) NOT NULL DEFAULT 0, - `options` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `width` bigint(10) NOT NULL DEFAULT 100, - `height` bigint(10) NOT NULL DEFAULT 600, - `timeopen` bigint(10) NOT NULL DEFAULT 0, - `timeclose` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `completionstatusrequired` tinyint(1) DEFAULT NULL, - `completionscorerequired` bigint(10) DEFAULT NULL, - `completionstatusallscos` tinyint(1) DEFAULT NULL, - `displayactivityname` smallint(4) NOT NULL DEFAULT 1, - `autocommit` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_scor_cou_ix` (`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='each table is one SCORM module and its configuration'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_scorm` --- - -LOCK TABLES `mdl_scorm` WRITE; -/*!40000 ALTER TABLE `mdl_scorm` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_scorm` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_scorm_aicc_session` --- - -DROP TABLE IF EXISTS `mdl_scorm_aicc_session`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_scorm_aicc_session` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL DEFAULT 0, - `scormid` bigint(10) NOT NULL DEFAULT 0, - `hacpsession` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `scoid` bigint(10) DEFAULT 0, - `scormmode` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `scormstatus` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `attempt` bigint(10) DEFAULT NULL, - `lessonstatus` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `sessiontime` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_scoraiccsess_sco_ix` (`scormid`), - KEY `mdl_scoraiccsess_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Used by AICC HACP to store session information'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_scorm_aicc_session` --- - -LOCK TABLES `mdl_scorm_aicc_session` WRITE; -/*!40000 ALTER TABLE `mdl_scorm_aicc_session` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_scorm_aicc_session` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_scorm_scoes` --- - -DROP TABLE IF EXISTS `mdl_scorm_scoes`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_scorm_scoes` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `scorm` bigint(10) NOT NULL DEFAULT 0, - `manifest` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `organization` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `parent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `identifier` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `launch` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `scormtype` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `sortorder` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_scorscoe_sco_ix` (`scorm`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='each SCO part of the SCORM module'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_scorm_scoes` --- - -LOCK TABLES `mdl_scorm_scoes` WRITE; -/*!40000 ALTER TABLE `mdl_scorm_scoes` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_scorm_scoes` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_scorm_scoes_data` --- - -DROP TABLE IF EXISTS `mdl_scorm_scoes_data`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_scorm_scoes_data` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `scoid` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_scorscoedata_sco_ix` (`scoid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Contains variable data get from packages'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_scorm_scoes_data` --- - -LOCK TABLES `mdl_scorm_scoes_data` WRITE; -/*!40000 ALTER TABLE `mdl_scorm_scoes_data` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_scorm_scoes_data` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_scorm_scoes_track` --- - -DROP TABLE IF EXISTS `mdl_scorm_scoes_track`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_scorm_scoes_track` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL DEFAULT 0, - `scormid` bigint(10) NOT NULL DEFAULT 0, - `scoid` bigint(10) NOT NULL DEFAULT 0, - `attempt` bigint(10) NOT NULL DEFAULT 1, - `element` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_scorscoetrac_usescosco_uix` (`userid`,`scormid`,`scoid`,`attempt`,`element`), - KEY `mdl_scorscoetrac_use_ix` (`userid`), - KEY `mdl_scorscoetrac_sco_ix` (`scormid`), - KEY `mdl_scorscoetrac_sco2_ix` (`scoid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='to track SCOes'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_scorm_scoes_track` --- - -LOCK TABLES `mdl_scorm_scoes_track` WRITE; -/*!40000 ALTER TABLE `mdl_scorm_scoes_track` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_scorm_scoes_track` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_scorm_seq_mapinfo` --- - -DROP TABLE IF EXISTS `mdl_scorm_seq_mapinfo`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_scorm_seq_mapinfo` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `scoid` bigint(10) NOT NULL DEFAULT 0, - `objectiveid` bigint(10) NOT NULL DEFAULT 0, - `targetobjectiveid` bigint(10) NOT NULL DEFAULT 0, - `readsatisfiedstatus` tinyint(1) NOT NULL DEFAULT 1, - `readnormalizedmeasure` tinyint(1) NOT NULL DEFAULT 1, - `writesatisfiedstatus` tinyint(1) NOT NULL DEFAULT 0, - `writenormalizedmeasure` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_scorseqmapi_scoidobj_uix` (`scoid`,`id`,`objectiveid`), - KEY `mdl_scorseqmapi_sco_ix` (`scoid`), - KEY `mdl_scorseqmapi_obj_ix` (`objectiveid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='SCORM2004 objective mapinfo description'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_scorm_seq_mapinfo` --- - -LOCK TABLES `mdl_scorm_seq_mapinfo` WRITE; -/*!40000 ALTER TABLE `mdl_scorm_seq_mapinfo` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_scorm_seq_mapinfo` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_scorm_seq_objective` --- - -DROP TABLE IF EXISTS `mdl_scorm_seq_objective`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_scorm_seq_objective` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `scoid` bigint(10) NOT NULL DEFAULT 0, - `primaryobj` tinyint(1) NOT NULL DEFAULT 0, - `objectiveid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `satisfiedbymeasure` tinyint(1) NOT NULL DEFAULT 1, - `minnormalizedmeasure` float(11,4) NOT NULL DEFAULT 0.0000, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_scorseqobje_scoid_uix` (`scoid`,`id`), - KEY `mdl_scorseqobje_sco_ix` (`scoid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='SCORM2004 objective description'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_scorm_seq_objective` --- - -LOCK TABLES `mdl_scorm_seq_objective` WRITE; -/*!40000 ALTER TABLE `mdl_scorm_seq_objective` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_scorm_seq_objective` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_scorm_seq_rolluprule` --- - -DROP TABLE IF EXISTS `mdl_scorm_seq_rolluprule`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_scorm_seq_rolluprule` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `scoid` bigint(10) NOT NULL DEFAULT 0, - `childactivityset` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `minimumcount` bigint(10) NOT NULL DEFAULT 0, - `minimumpercent` float(11,4) NOT NULL DEFAULT 0.0000, - `conditioncombination` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'all', - `action` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_scorseqroll_scoid_uix` (`scoid`,`id`), - KEY `mdl_scorseqroll_sco_ix` (`scoid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='SCORM2004 sequencing rule'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_scorm_seq_rolluprule` --- - -LOCK TABLES `mdl_scorm_seq_rolluprule` WRITE; -/*!40000 ALTER TABLE `mdl_scorm_seq_rolluprule` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_scorm_seq_rolluprule` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_scorm_seq_rolluprulecond` --- - -DROP TABLE IF EXISTS `mdl_scorm_seq_rolluprulecond`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_scorm_seq_rolluprulecond` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `scoid` bigint(10) NOT NULL DEFAULT 0, - `rollupruleid` bigint(10) NOT NULL DEFAULT 0, - `operator` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'noOp', - `cond` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_scorseqroll_scorolid_uix` (`scoid`,`rollupruleid`,`id`), - KEY `mdl_scorseqroll_sco2_ix` (`scoid`), - KEY `mdl_scorseqroll_rol_ix` (`rollupruleid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='SCORM2004 sequencing rule'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_scorm_seq_rolluprulecond` --- - -LOCK TABLES `mdl_scorm_seq_rolluprulecond` WRITE; -/*!40000 ALTER TABLE `mdl_scorm_seq_rolluprulecond` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_scorm_seq_rolluprulecond` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_scorm_seq_rulecond` --- - -DROP TABLE IF EXISTS `mdl_scorm_seq_rulecond`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_scorm_seq_rulecond` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `scoid` bigint(10) NOT NULL DEFAULT 0, - `ruleconditionsid` bigint(10) NOT NULL DEFAULT 0, - `refrencedobjective` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `measurethreshold` float(11,4) NOT NULL DEFAULT 0.0000, - `operator` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'noOp', - `cond` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'always', - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_scorseqrule_idscorul_uix` (`id`,`scoid`,`ruleconditionsid`), - KEY `mdl_scorseqrule_sco2_ix` (`scoid`), - KEY `mdl_scorseqrule_rul_ix` (`ruleconditionsid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='SCORM2004 rule condition'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_scorm_seq_rulecond` --- - -LOCK TABLES `mdl_scorm_seq_rulecond` WRITE; -/*!40000 ALTER TABLE `mdl_scorm_seq_rulecond` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_scorm_seq_rulecond` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_scorm_seq_ruleconds` --- - -DROP TABLE IF EXISTS `mdl_scorm_seq_ruleconds`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_scorm_seq_ruleconds` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `scoid` bigint(10) NOT NULL DEFAULT 0, - `conditioncombination` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'all', - `ruletype` tinyint(2) NOT NULL DEFAULT 0, - `action` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_scorseqrule_scoid_uix` (`scoid`,`id`), - KEY `mdl_scorseqrule_sco_ix` (`scoid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='SCORM2004 rule conditions'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_scorm_seq_ruleconds` --- - -LOCK TABLES `mdl_scorm_seq_ruleconds` WRITE; -/*!40000 ALTER TABLE `mdl_scorm_seq_ruleconds` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_scorm_seq_ruleconds` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_search_index_requests` --- - -DROP TABLE IF EXISTS `mdl_search_index_requests`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_search_index_requests` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `contextid` bigint(10) NOT NULL, - `searcharea` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `timerequested` bigint(10) NOT NULL, - `partialarea` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `partialtime` bigint(10) NOT NULL, - `indexpriority` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_searinderequ_indtim_ix` (`indexpriority`,`timerequested`), - KEY `mdl_searinderequ_con_ix` (`contextid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Records requests for (re)indexing of specific contexts. Entr'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_search_index_requests` --- - -LOCK TABLES `mdl_search_index_requests` WRITE; -/*!40000 ALTER TABLE `mdl_search_index_requests` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_search_index_requests` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_search_simpledb_index` --- - -DROP TABLE IF EXISTS `mdl_search_simpledb_index`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_search_simpledb_index` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `docid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `itemid` bigint(10) NOT NULL, - `title` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `content` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `contextid` bigint(10) NOT NULL, - `areaid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `type` tinyint(1) NOT NULL, - `courseid` bigint(10) NOT NULL, - `owneruserid` bigint(10) DEFAULT NULL, - `modified` bigint(10) NOT NULL, - `userid` bigint(10) DEFAULT NULL, - `description1` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `description2` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_searsimpinde_doc_uix` (`docid`), - KEY `mdl_searsimpinde_owncon_ix` (`owneruserid`,`contextid`), - FULLTEXT KEY `mdl_search_simpledb_index_index` (`title`,`content`,`description1`,`description2`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='search_simpledb table containing the index data.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_search_simpledb_index` --- - -LOCK TABLES `mdl_search_simpledb_index` WRITE; -/*!40000 ALTER TABLE `mdl_search_simpledb_index` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_search_simpledb_index` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_sessions` --- - -DROP TABLE IF EXISTS `mdl_sessions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_sessions` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `state` bigint(10) NOT NULL DEFAULT 0, - `sid` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `userid` bigint(10) NOT NULL, - `sessdata` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `firstip` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `lastip` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_sess_sid_uix` (`sid`), - KEY `mdl_sess_sta_ix` (`state`), - KEY `mdl_sess_tim_ix` (`timecreated`), - KEY `mdl_sess_tim2_ix` (`timemodified`), - KEY `mdl_sess_use_ix` (`userid`) -) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Database based session storage - now recommended'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_sessions` --- - -LOCK TABLES `mdl_sessions` WRITE; -/*!40000 ALTER TABLE `mdl_sessions` DISABLE KEYS */; -INSERT INTO `mdl_sessions` VALUES (3,0,'e9323s5rst1ssvvcmpkd7hu48q',0,NULL,1619623982,1619628106,'67.177.209.214','67.177.209.214'),(8,0,'lf8thdk6bm6kvuouaf9g598dhl',0,NULL,1619626479,1619627269,'65.129.132.97','65.129.132.97'),(10,0,'c2dk5l52lue1i7as4epaifc80a',2,NULL,1619626991,1619629897,'65.129.132.97','65.129.132.97'); -/*!40000 ALTER TABLE `mdl_sessions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_stats_daily` --- - -DROP TABLE IF EXISTS `mdl_stats_daily`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_stats_daily` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `courseid` bigint(10) NOT NULL DEFAULT 0, - `timeend` bigint(10) NOT NULL DEFAULT 0, - `roleid` bigint(10) NOT NULL DEFAULT 0, - `stattype` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'activity', - `stat1` bigint(10) NOT NULL DEFAULT 0, - `stat2` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_statdail_cou_ix` (`courseid`), - KEY `mdl_statdail_tim_ix` (`timeend`), - KEY `mdl_statdail_rol_ix` (`roleid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='to accumulate daily stats'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_stats_daily` --- - -LOCK TABLES `mdl_stats_daily` WRITE; -/*!40000 ALTER TABLE `mdl_stats_daily` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_stats_daily` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_stats_monthly` --- - -DROP TABLE IF EXISTS `mdl_stats_monthly`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_stats_monthly` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `courseid` bigint(10) NOT NULL DEFAULT 0, - `timeend` bigint(10) NOT NULL DEFAULT 0, - `roleid` bigint(10) NOT NULL DEFAULT 0, - `stattype` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'activity', - `stat1` bigint(10) NOT NULL DEFAULT 0, - `stat2` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_statmont_cou_ix` (`courseid`), - KEY `mdl_statmont_tim_ix` (`timeend`), - KEY `mdl_statmont_rol_ix` (`roleid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='To accumulate monthly stats'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_stats_monthly` --- - -LOCK TABLES `mdl_stats_monthly` WRITE; -/*!40000 ALTER TABLE `mdl_stats_monthly` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_stats_monthly` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_stats_user_daily` --- - -DROP TABLE IF EXISTS `mdl_stats_user_daily`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_stats_user_daily` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `courseid` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `roleid` bigint(10) NOT NULL DEFAULT 0, - `timeend` bigint(10) NOT NULL DEFAULT 0, - `statsreads` bigint(10) NOT NULL DEFAULT 0, - `statswrites` bigint(10) NOT NULL DEFAULT 0, - `stattype` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `mdl_statuserdail_cou_ix` (`courseid`), - KEY `mdl_statuserdail_use_ix` (`userid`), - KEY `mdl_statuserdail_rol_ix` (`roleid`), - KEY `mdl_statuserdail_tim_ix` (`timeend`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='To accumulate daily stats per course/user'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_stats_user_daily` --- - -LOCK TABLES `mdl_stats_user_daily` WRITE; -/*!40000 ALTER TABLE `mdl_stats_user_daily` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_stats_user_daily` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_stats_user_monthly` --- - -DROP TABLE IF EXISTS `mdl_stats_user_monthly`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_stats_user_monthly` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `courseid` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `roleid` bigint(10) NOT NULL DEFAULT 0, - `timeend` bigint(10) NOT NULL DEFAULT 0, - `statsreads` bigint(10) NOT NULL DEFAULT 0, - `statswrites` bigint(10) NOT NULL DEFAULT 0, - `stattype` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `mdl_statusermont_cou_ix` (`courseid`), - KEY `mdl_statusermont_use_ix` (`userid`), - KEY `mdl_statusermont_rol_ix` (`roleid`), - KEY `mdl_statusermont_tim_ix` (`timeend`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='To accumulate monthly stats per course/user'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_stats_user_monthly` --- - -LOCK TABLES `mdl_stats_user_monthly` WRITE; -/*!40000 ALTER TABLE `mdl_stats_user_monthly` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_stats_user_monthly` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_stats_user_weekly` --- - -DROP TABLE IF EXISTS `mdl_stats_user_weekly`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_stats_user_weekly` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `courseid` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `roleid` bigint(10) NOT NULL DEFAULT 0, - `timeend` bigint(10) NOT NULL DEFAULT 0, - `statsreads` bigint(10) NOT NULL DEFAULT 0, - `statswrites` bigint(10) NOT NULL DEFAULT 0, - `stattype` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `mdl_statuserweek_cou_ix` (`courseid`), - KEY `mdl_statuserweek_use_ix` (`userid`), - KEY `mdl_statuserweek_rol_ix` (`roleid`), - KEY `mdl_statuserweek_tim_ix` (`timeend`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='To accumulate weekly stats per course/user'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_stats_user_weekly` --- - -LOCK TABLES `mdl_stats_user_weekly` WRITE; -/*!40000 ALTER TABLE `mdl_stats_user_weekly` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_stats_user_weekly` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_stats_weekly` --- - -DROP TABLE IF EXISTS `mdl_stats_weekly`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_stats_weekly` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `courseid` bigint(10) NOT NULL DEFAULT 0, - `timeend` bigint(10) NOT NULL DEFAULT 0, - `roleid` bigint(10) NOT NULL DEFAULT 0, - `stattype` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'activity', - `stat1` bigint(10) NOT NULL DEFAULT 0, - `stat2` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_statweek_cou_ix` (`courseid`), - KEY `mdl_statweek_tim_ix` (`timeend`), - KEY `mdl_statweek_rol_ix` (`roleid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='To accumulate weekly stats'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_stats_weekly` --- - -LOCK TABLES `mdl_stats_weekly` WRITE; -/*!40000 ALTER TABLE `mdl_stats_weekly` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_stats_weekly` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_survey` --- - -DROP TABLE IF EXISTS `mdl_survey`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_survey` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `template` bigint(10) NOT NULL DEFAULT 0, - `days` mediumint(6) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `introformat` smallint(4) NOT NULL DEFAULT 0, - `questions` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `completionsubmit` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_surv_cou_ix` (`course`) -) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Each record is one SURVEY module with its configuration'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_survey` --- - -LOCK TABLES `mdl_survey` WRITE; -/*!40000 ALTER TABLE `mdl_survey` DISABLE KEYS */; -INSERT INTO `mdl_survey` VALUES (1,0,0,0,985017600,985017600,'collesaname','collesaintro',0,'25,26,27,28,29,30,43,44',0),(2,0,0,0,985017600,985017600,'collespname','collespintro',0,'31,32,33,34,35,36,43,44',0),(3,0,0,0,985017600,985017600,'collesapname','collesapintro',0,'37,38,39,40,41,42,43,44',0),(4,0,0,0,985017600,985017600,'attlsname','attlsintro',0,'65,67,68',0),(5,0,0,0,985017600,985017600,'ciqname','ciqintro',0,'69,70,71,72,73',0); -/*!40000 ALTER TABLE `mdl_survey` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_survey_analysis` --- - -DROP TABLE IF EXISTS `mdl_survey_analysis`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_survey_analysis` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `survey` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `notes` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_survanal_use_ix` (`userid`), - KEY `mdl_survanal_sur_ix` (`survey`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='text about each survey submission'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_survey_analysis` --- - -LOCK TABLES `mdl_survey_analysis` WRITE; -/*!40000 ALTER TABLE `mdl_survey_analysis` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_survey_analysis` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_survey_answers` --- - -DROP TABLE IF EXISTS `mdl_survey_answers`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_survey_answers` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL DEFAULT 0, - `survey` bigint(10) NOT NULL DEFAULT 0, - `question` bigint(10) NOT NULL DEFAULT 0, - `time` bigint(10) NOT NULL DEFAULT 0, - `answer1` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `answer2` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_survansw_use_ix` (`userid`), - KEY `mdl_survansw_sur_ix` (`survey`), - KEY `mdl_survansw_que_ix` (`question`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='the answers to each questions filled by the users'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_survey_answers` --- - -LOCK TABLES `mdl_survey_answers` WRITE; -/*!40000 ALTER TABLE `mdl_survey_answers` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_survey_answers` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_survey_questions` --- - -DROP TABLE IF EXISTS `mdl_survey_questions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_survey_questions` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `text` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `shorttext` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `multi` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `type` smallint(3) NOT NULL DEFAULT 0, - `options` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=74 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='the questions conforming one survey'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_survey_questions` --- - -LOCK TABLES `mdl_survey_questions` WRITE; -/*!40000 ALTER TABLE `mdl_survey_questions` DISABLE KEYS */; -INSERT INTO `mdl_survey_questions` VALUES (1,'colles1','colles1short','','',1,'scaletimes5'),(2,'colles2','colles2short','','',1,'scaletimes5'),(3,'colles3','colles3short','','',1,'scaletimes5'),(4,'colles4','colles4short','','',1,'scaletimes5'),(5,'colles5','colles5short','','',1,'scaletimes5'),(6,'colles6','colles6short','','',1,'scaletimes5'),(7,'colles7','colles7short','','',1,'scaletimes5'),(8,'colles8','colles8short','','',1,'scaletimes5'),(9,'colles9','colles9short','','',1,'scaletimes5'),(10,'colles10','colles10short','','',1,'scaletimes5'),(11,'colles11','colles11short','','',1,'scaletimes5'),(12,'colles12','colles12short','','',1,'scaletimes5'),(13,'colles13','colles13short','','',1,'scaletimes5'),(14,'colles14','colles14short','','',1,'scaletimes5'),(15,'colles15','colles15short','','',1,'scaletimes5'),(16,'colles16','colles16short','','',1,'scaletimes5'),(17,'colles17','colles17short','','',1,'scaletimes5'),(18,'colles18','colles18short','','',1,'scaletimes5'),(19,'colles19','colles19short','','',1,'scaletimes5'),(20,'colles20','colles20short','','',1,'scaletimes5'),(21,'colles21','colles21short','','',1,'scaletimes5'),(22,'colles22','colles22short','','',1,'scaletimes5'),(23,'colles23','colles23short','','',1,'scaletimes5'),(24,'colles24','colles24short','','',1,'scaletimes5'),(25,'collesm1','collesm1short','1,2,3,4','collesmintro',1,'scaletimes5'),(26,'collesm2','collesm2short','5,6,7,8','collesmintro',1,'scaletimes5'),(27,'collesm3','collesm3short','9,10,11,12','collesmintro',1,'scaletimes5'),(28,'collesm4','collesm4short','13,14,15,16','collesmintro',1,'scaletimes5'),(29,'collesm5','collesm5short','17,18,19,20','collesmintro',1,'scaletimes5'),(30,'collesm6','collesm6short','21,22,23,24','collesmintro',1,'scaletimes5'),(31,'collesm1','collesm1short','1,2,3,4','collesmintro',2,'scaletimes5'),(32,'collesm2','collesm2short','5,6,7,8','collesmintro',2,'scaletimes5'),(33,'collesm3','collesm3short','9,10,11,12','collesmintro',2,'scaletimes5'),(34,'collesm4','collesm4short','13,14,15,16','collesmintro',2,'scaletimes5'),(35,'collesm5','collesm5short','17,18,19,20','collesmintro',2,'scaletimes5'),(36,'collesm6','collesm6short','21,22,23,24','collesmintro',2,'scaletimes5'),(37,'collesm1','collesm1short','1,2,3,4','collesmintro',3,'scaletimes5'),(38,'collesm2','collesm2short','5,6,7,8','collesmintro',3,'scaletimes5'),(39,'collesm3','collesm3short','9,10,11,12','collesmintro',3,'scaletimes5'),(40,'collesm4','collesm4short','13,14,15,16','collesmintro',3,'scaletimes5'),(41,'collesm5','collesm5short','17,18,19,20','collesmintro',3,'scaletimes5'),(42,'collesm6','collesm6short','21,22,23,24','collesmintro',3,'scaletimes5'),(43,'howlong','','','',1,'howlongoptions'),(44,'othercomments','','','',0,NULL),(45,'attls1','attls1short','','',1,'scaleagree5'),(46,'attls2','attls2short','','',1,'scaleagree5'),(47,'attls3','attls3short','','',1,'scaleagree5'),(48,'attls4','attls4short','','',1,'scaleagree5'),(49,'attls5','attls5short','','',1,'scaleagree5'),(50,'attls6','attls6short','','',1,'scaleagree5'),(51,'attls7','attls7short','','',1,'scaleagree5'),(52,'attls8','attls8short','','',1,'scaleagree5'),(53,'attls9','attls9short','','',1,'scaleagree5'),(54,'attls10','attls10short','','',1,'scaleagree5'),(55,'attls11','attls11short','','',1,'scaleagree5'),(56,'attls12','attls12short','','',1,'scaleagree5'),(57,'attls13','attls13short','','',1,'scaleagree5'),(58,'attls14','attls14short','','',1,'scaleagree5'),(59,'attls15','attls15short','','',1,'scaleagree5'),(60,'attls16','attls16short','','',1,'scaleagree5'),(61,'attls17','attls17short','','',1,'scaleagree5'),(62,'attls18','attls18short','','',1,'scaleagree5'),(63,'attls19','attls19short','','',1,'scaleagree5'),(64,'attls20','attls20short','','',1,'scaleagree5'),(65,'attlsm1','attlsm1','45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64','attlsmintro',1,'scaleagree5'),(66,'-','-','-','-',0,'-'),(67,'attlsm2','attlsm2','63,62,59,57,55,49,52,50,48,47','attlsmintro',-1,'scaleagree5'),(68,'attlsm3','attlsm3','46,54,45,51,60,53,56,58,61,64','attlsmintro',-1,'scaleagree5'),(69,'ciq1','ciq1short','','',0,NULL),(70,'ciq2','ciq2short','','',0,NULL),(71,'ciq3','ciq3short','','',0,NULL),(72,'ciq4','ciq4short','','',0,NULL),(73,'ciq5','ciq5short','','',0,NULL); -/*!40000 ALTER TABLE `mdl_survey_questions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tag` --- - -DROP TABLE IF EXISTS `mdl_tag`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tag` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL, - `tagcollid` bigint(10) NOT NULL, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `rawname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `isstandard` tinyint(1) NOT NULL DEFAULT 0, - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` tinyint(2) NOT NULL DEFAULT 0, - `flag` smallint(4) DEFAULT 0, - `timemodified` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_tag_tagnam_uix` (`tagcollid`,`name`), - KEY `mdl_tag_tagiss_ix` (`tagcollid`,`isstandard`), - KEY `mdl_tag_use_ix` (`userid`), - KEY `mdl_tag_tag_ix` (`tagcollid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Tag table - this generic table will replace the old "tags" t'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tag` --- - -LOCK TABLES `mdl_tag` WRITE; -/*!40000 ALTER TABLE `mdl_tag` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tag` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tag_area` --- - -DROP TABLE IF EXISTS `mdl_tag_area`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tag_area` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `itemtype` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `enabled` tinyint(1) NOT NULL DEFAULT 1, - `tagcollid` bigint(10) NOT NULL, - `callback` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `callbackfile` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `showstandard` tinyint(1) NOT NULL DEFAULT 0, - `multiplecontexts` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_tagarea_comite_uix` (`component`,`itemtype`), - KEY `mdl_tagarea_tag_ix` (`tagcollid`) -) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines various tag areas, one area is identified by compone'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tag_area` --- - -LOCK TABLES `mdl_tag_area` WRITE; -/*!40000 ALTER TABLE `mdl_tag_area` DISABLE KEYS */; -INSERT INTO `mdl_tag_area` VALUES (1,'core','user',1,1,'user_get_tagged_users','/user/lib.php',2,0),(2,'core','course',1,1,'course_get_tagged_courses','/course/lib.php',0,0),(3,'core_question','question',1,1,NULL,NULL,0,1),(4,'core','post',1,1,'blog_get_tagged_posts','/blog/lib.php',0,0),(5,'core','blog_external',1,1,NULL,NULL,0,0),(6,'core','course_modules',1,1,'course_get_tagged_course_modules','/course/lib.php',0,0),(7,'mod_book','book_chapters',1,1,'mod_book_get_tagged_chapters','/mod/book/locallib.php',0,0),(8,'mod_data','data_records',1,1,'mod_data_get_tagged_records','/mod/data/locallib.php',0,0),(9,'mod_forum','forum_posts',1,1,'mod_forum_get_tagged_posts','/mod/forum/locallib.php',0,0),(10,'mod_glossary','glossary_entries',1,1,'mod_glossary_get_tagged_entries','/mod/glossary/locallib.php',0,0),(11,'mod_wiki','wiki_pages',1,1,'mod_wiki_get_tagged_pages','/mod/wiki/locallib.php',0,0); -/*!40000 ALTER TABLE `mdl_tag_area` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tag_coll` --- - -DROP TABLE IF EXISTS `mdl_tag_coll`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tag_coll` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `isdefault` tinyint(2) NOT NULL DEFAULT 0, - `component` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `sortorder` mediumint(5) NOT NULL DEFAULT 0, - `searchable` tinyint(2) NOT NULL DEFAULT 1, - `customurl` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Defines different set of tags'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tag_coll` --- - -LOCK TABLES `mdl_tag_coll` WRITE; -/*!40000 ALTER TABLE `mdl_tag_coll` DISABLE KEYS */; -INSERT INTO `mdl_tag_coll` VALUES (1,NULL,1,NULL,0,1,NULL); -/*!40000 ALTER TABLE `mdl_tag_coll` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tag_correlation` --- - -DROP TABLE IF EXISTS `mdl_tag_correlation`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tag_correlation` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `tagid` bigint(10) NOT NULL, - `correlatedtags` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_tagcorr_tag_ix` (`tagid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The rationale for the ''tag_correlation'' table is performance'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tag_correlation` --- - -LOCK TABLES `mdl_tag_correlation` WRITE; -/*!40000 ALTER TABLE `mdl_tag_correlation` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tag_correlation` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tag_instance` --- - -DROP TABLE IF EXISTS `mdl_tag_instance`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tag_instance` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `tagid` bigint(10) NOT NULL, - `component` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `itemtype` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `itemid` bigint(10) NOT NULL, - `contextid` bigint(10) DEFAULT NULL, - `tiuserid` bigint(10) NOT NULL DEFAULT 0, - `ordering` bigint(10) DEFAULT NULL, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_taginst_comiteiteconti_uix` (`component`,`itemtype`,`itemid`,`contextid`,`tiuserid`,`tagid`), - KEY `mdl_taginst_itecomtagcon_ix` (`itemtype`,`component`,`tagid`,`contextid`), - KEY `mdl_taginst_tag_ix` (`tagid`), - KEY `mdl_taginst_con_ix` (`contextid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='tag_instance table holds the information of associations bet'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tag_instance` --- - -LOCK TABLES `mdl_tag_instance` WRITE; -/*!40000 ALTER TABLE `mdl_tag_instance` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tag_instance` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_task_adhoc` --- - -DROP TABLE IF EXISTS `mdl_task_adhoc`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_task_adhoc` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `component` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `classname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `nextruntime` bigint(10) NOT NULL, - `faildelay` bigint(10) DEFAULT NULL, - `customdata` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `userid` bigint(10) DEFAULT NULL, - `blocking` tinyint(2) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timestarted` bigint(10) DEFAULT NULL, - `hostname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `pid` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_taskadho_nex_ix` (`nextruntime`), - KEY `mdl_taskadho_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='List of adhoc tasks waiting to run.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_task_adhoc` --- - -LOCK TABLES `mdl_task_adhoc` WRITE; -/*!40000 ALTER TABLE `mdl_task_adhoc` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_task_adhoc` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_task_log` --- - -DROP TABLE IF EXISTS `mdl_task_log`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_task_log` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `type` smallint(4) NOT NULL, - `component` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `classname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `userid` bigint(10) NOT NULL, - `timestart` decimal(20,10) NOT NULL, - `timeend` decimal(20,10) NOT NULL, - `dbreads` bigint(10) NOT NULL, - `dbwrites` bigint(10) NOT NULL, - `result` tinyint(2) NOT NULL, - `output` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `hostname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `pid` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_tasklog_cla_ix` (`classname`), - KEY `mdl_tasklog_tim_ix` (`timestart`) -) ENGINE=InnoDB AUTO_INCREMENT=771 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The log table for all tasks'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_task_log` --- - -LOCK TABLES `mdl_task_log` WRITE; -/*!40000 ALTER TABLE `mdl_task_log` DISABLE KEYS */; -INSERT INTO `mdl_task_log` VALUES (1,0,'moodle','core\\task\\session_cleanup_task',0,1619623861.4467000000,1619623861.4601000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 16:31:01. Current memory use 15.1MB.\n... used 7 dbqueries\n... used 0.0087389945983887 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',213049),(2,0,'moodle','core\\task\\cache_cleanup_task',0,1619623861.4667000000,1619623861.4674000000,0,1,0,'Execute scheduled task: Remove expired cache entries (core\\task\\cache_cleanup_task)\n... started 16:31:01. Current memory use 16.4MB.\n... used 1 dbqueries\n... used 0.00022482872009277 seconds\nScheduled task complete: Remove expired cache entries (core\\task\\cache_cleanup_task)\n','dev-defaults.derekmaxson.com',213049),(3,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619623861.4775000000,1619623861.4782000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 16:31:01. Current memory use 16.4MB.\n... used 1 dbqueries\n... used 0.00029802322387695 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',213049),(4,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619623861.4834000000,1619623861.4838000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 16:31:01. Current memory use 16.4MB.\n... used 0 dbqueries\n... used 2.5033950805664E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',213049),(5,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619623861.4893000000,1619623861.6487000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 16:31:01. Current memory use 16.4MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.15904188156128 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',213049),(6,0,'moodle','core\\task\\grade_cron_task',0,1619623861.6570000000,1619623861.6590000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 16:31:01. Current memory use 37.6MB.\n... used 2 dbqueries\n... used 0.0014371871948242 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',213049),(7,0,'moodle','core\\task\\completion_regular_task',0,1619623861.6651000000,1619623861.6783000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 16:31:01. Current memory use 37.7MB.\n... used 6 dbqueries\n... used 0.012699127197266 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',213049),(8,0,'moodle','core\\task\\portfolio_cron_task',0,1619623861.6846000000,1619623861.6851000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 16:31:01. Current memory use 37.9MB.\n... used 0 dbqueries\n... used 3.1948089599609E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',213049),(9,0,'moodle','core\\task\\plagiarism_cron_task',0,1619623861.6910000000,1619623861.6915000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 16:31:01. Current memory use 37.9MB.\n... used 0 dbqueries\n... used 3.0994415283203E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',213049),(10,0,'moodle','core\\task\\calendar_cron_task',0,1619623861.6990000000,1619623861.7086000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 16:31:01. Current memory use 37.9MB.\n... used 1 dbqueries\n... used 0.0091791152954102 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',213049),(11,0,'moodle','core\\task\\blog_cron_task',0,1619623861.7148000000,1619623861.7188000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 16:31:01. Current memory use 38.3MB.\n... used 2 dbqueries\n... used 0.0034852027893066 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',213049),(12,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619623861.7247000000,1619623861.7386000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 16:31:01. Current memory use 38.6MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.013391971588135 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',213049),(13,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619623861.7462000000,1619623861.7483000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 16:31:01. Current memory use 40.2MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.001554012298584 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',213049),(14,0,'moodle','core\\task\\badges_cron_task',0,1619623861.7541000000,1619623861.7581000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 16:31:01. Current memory use 40.2MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0034539699554443 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',213049),(15,0,'moodle','core\\task\\badges_message_task',0,1619623861.7631000000,1619623861.7639000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 16:31:01. Current memory use 40.6MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00032281875610352 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',213049),(16,0,'moodle','core\\task\\search_index_task',0,1619623861.7690000000,1619623861.7713000000,0,0,0,'Execute scheduled task: Global search indexing (core\\task\\search_index_task)\n... started 16:31:01. Current memory use 40.6MB.\n... used 0 dbqueries\n... used 0.0018908977508545 seconds\nScheduled task complete: Global search indexing (core\\task\\search_index_task)\n','dev-defaults.derekmaxson.com',213049),(17,0,'moodle','core\\oauth2\\refresh_system_tokens_task',0,1619623861.7786000000,1619623861.7812000000,1,0,0,'Execute scheduled task: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n... started 16:31:01. Current memory use 40.8MB.\n... used 1 dbqueries\n... used 0.0020558834075928 seconds\nScheduled task complete: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n','dev-defaults.derekmaxson.com',213049),(18,0,'mod_assign','mod_assign\\task\\cron_task',0,1619623861.7931000000,1619623861.8068000000,4,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 16:31:01. Current memory use 42.3MB.\n... used 4 dbqueries\n... used 0.012952089309692 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',213049),(19,0,'mod_chat','mod_chat\\task\\cron_task',0,1619623861.8121000000,1619623861.8150000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 16:31:01. Current memory use 42.8MB.\n... used 4 dbqueries\n... used 0.0020489692687988 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',213049),(20,0,'mod_forum','mod_forum\\task\\cron_task',0,1619623861.8209000000,1619623861.8228000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 16:31:01. Current memory use 42.9MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0011940002441406 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',213049),(21,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619623861.8389000000,1619623861.8425000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 16:31:01. Current memory use 43.8MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0028669834136963 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',213049),(22,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619623861.8481000000,1619623861.8489000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 16:31:01. Current memory use 43.8MB.\n... used 0 dbqueries\n... used 7.7009201049805E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',213049),(23,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619623861.8539000000,1619623861.8546000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 16:31:01. Current memory use 43.8MB.\n... used 0 dbqueries\n... used 6.8902969360352E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',213049),(24,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619623861.8598000000,1619623861.8676000000,3,2,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 16:31:01. Current memory use 43.8MB.\nUpdating scorm packages which require daily update\n... used 5 dbqueries\n... used 0.0071349143981934 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',213049),(25,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619623861.8754000000,1619623861.8769000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 16:31:01. Current memory use 44.1MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.0006868839263916 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',213049),(26,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619623861.8824000000,1619623861.8832000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 16:31:01. Current memory use 44.1MB.\n... used 0 dbqueries\n... used 7.3909759521484E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',213049),(27,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619623861.8938000000,1619623861.8951000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 16:31:01. Current memory use 43.5MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00072789192199707 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',213049),(28,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619623861.9045000000,1619623861.9071000000,2,1,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 16:31:01. Current memory use 43.5MB.\nProcessing manual enrolment expiration notifications...\n...notification processing finished.\n... used 3 dbqueries\n... used 0.0018990039825439 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',213049),(29,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619623861.9138000000,1619623861.9158000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 16:31:01. Current memory use 43.5MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0014278888702393 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',213049),(30,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619623861.9244000000,1619623861.9268000000,2,1,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 16:31:01. Current memory use 43.6MB.\nProcessing self enrolment expiration notifications...\n...notification processing finished.\n... used 3 dbqueries\n... used 0.0018620491027832 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',213049),(31,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619623861.9363000000,1619623861.9507000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 16:31:01. Current memory use 43.3MB.\n\n0 feeds refreshed (took 0.00063199999999997 seconds)\n... used 1 dbqueries\n... used 0.013840913772583 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',213049),(32,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619623861.9617000000,1619623861.9646000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 16:31:01. Current memory use 44.4MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0023059844970703 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',213049),(33,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619623861.9714000000,1619623861.9720000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 16:31:01. Current memory use 44.6MB.\n... used 0 dbqueries\n... used 0.00010299682617188 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',213049),(34,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_course_bin',0,1619623861.9813000000,1619623861.9843000000,1,0,0,'Execute scheduled task: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n... started 16:31:01. Current memory use 44.6MB.\n... used 1 dbqueries\n... used 0.0024039745330811 seconds\nScheduled task complete: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n','dev-defaults.derekmaxson.com',213049),(35,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_category_bin',0,1619623861.9932000000,1619623861.9955000000,1,0,0,'Execute scheduled task: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n... started 16:31:01. Current memory use 44.7MB.\n... used 1 dbqueries\n... used 0.0016441345214844 seconds\nScheduled task complete: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n','dev-defaults.derekmaxson.com',213049),(36,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619623862.0026000000,1619623862.0037000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 16:31:02. Current memory use 44.7MB.\n... used 1 dbqueries\n... used 0.00049901008605957 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',213049),(37,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619623862.0118000000,1619623862.0131000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 16:31:02. Current memory use 44.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00070405006408691 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',213049),(38,0,'moodle','core\\task\\messaging_cleanup_task',0,1619624761.1952000000,1619624761.2078000000,1,4,0,'Execute scheduled task: Background processing for messaging (core\\task\\messaging_cleanup_task)\n... started 16:46:01. Current memory use 15.1MB.\n... used 5 dbqueries\n... used 0.0086958408355713 seconds\nScheduled task complete: Background processing for messaging (core\\task\\messaging_cleanup_task)\n','dev-defaults.derekmaxson.com',215856),(39,0,'moodle','core\\task\\analytics_cleanup_task',0,1619624761.2144000000,1619624761.2821000000,20,3,0,'Execute scheduled task: Analytics cleanup (core\\task\\analytics_cleanup_task)\n... started 16:46:01. Current memory use 16.5MB.\n... used 23 dbqueries\n... used 0.067129135131836 seconds\nScheduled task complete: Analytics cleanup (core\\task\\analytics_cleanup_task)\n','dev-defaults.derekmaxson.com',215856),(40,0,'moodle','core\\task\\session_cleanup_task',0,1619624761.3002000000,1619624761.3132000000,6,4,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 16:46:01. Current memory use 22.7MB.\n... used 10 dbqueries\n... used 0.011809825897217 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',215856),(41,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619624761.3200000000,1619624761.3209000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 16:46:01. Current memory use 23MB.\n... used 1 dbqueries\n... used 0.00032687187194824 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',215856),(42,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619624761.3279000000,1619624761.3284000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 16:46:01. Current memory use 23MB.\n... used 0 dbqueries\n... used 3.3140182495117E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',215856),(43,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619624761.3381000000,1619624761.3605000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 16:46:01. Current memory use 23MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.021852016448975 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',215856),(44,0,'moodle','core\\task\\grade_cron_task',0,1619624761.3701000000,1619624761.3716000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 16:46:01. Current memory use 25.6MB.\n... used 2 dbqueries\n... used 0.00088000297546387 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',215856),(45,0,'moodle','core\\task\\completion_regular_task',0,1619624761.3783000000,1619624761.3832000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 16:46:01. Current memory use 25.7MB.\n... used 6 dbqueries\n... used 0.0044541358947754 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',215856),(46,0,'moodle','core\\task\\portfolio_cron_task',0,1619624761.3897000000,1619624761.3903000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 16:46:01. Current memory use 25.9MB.\n... used 0 dbqueries\n... used 3.1948089599609E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',215856),(47,0,'moodle','core\\task\\plagiarism_cron_task',0,1619624761.4024000000,1619624761.4030000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 16:46:01. Current memory use 25.9MB.\n... used 0 dbqueries\n... used 3.1948089599609E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',215856),(48,0,'moodle','core\\task\\calendar_cron_task',0,1619624761.4099000000,1619624761.4135000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 16:46:01. Current memory use 25.9MB.\n... used 1 dbqueries\n... used 0.0030629634857178 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',215856),(49,0,'moodle','core\\task\\blog_cron_task',0,1619624761.4203000000,1619624761.4238000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 16:46:01. Current memory use 26.3MB.\n... used 2 dbqueries\n... used 0.0029768943786621 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',215856),(50,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619624761.4301000000,1619624761.4423000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 16:46:01. Current memory use 26.5MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.011757850646973 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',215856),(51,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619624761.4530000000,1619624761.4542000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 16:46:01. Current memory use 28.2MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.000640869140625 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',215856),(52,0,'moodle','core\\task\\badges_cron_task',0,1619624761.4611000000,1619624761.4660000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 16:46:01. Current memory use 28.2MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0044209957122803 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',215856),(53,0,'moodle','core\\task\\badges_message_task',0,1619624761.4736000000,1619624761.4744000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 16:46:01. Current memory use 29.8MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00029897689819336 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',215856),(54,0,'mod_assign','mod_assign\\task\\cron_task',0,1619624761.4846000000,1619624761.5098000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 16:46:01. Current memory use 30.7MB.\n... used 3 dbqueries\n... used 0.024657011032104 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',215856),(55,0,'mod_chat','mod_chat\\task\\cron_task',0,1619624761.5191000000,1619624761.5230000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 16:46:01. Current memory use 33.6MB.\n... used 4 dbqueries\n... used 0.0030810832977295 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',215856),(56,0,'mod_forum','mod_forum\\task\\cron_task',0,1619624761.5388000000,1619624761.5402000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 16:46:01. Current memory use 34.8MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00065898895263672 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',215856),(57,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619624761.5563000000,1619624761.5584000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 16:46:01. Current memory use 35.9MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0013949871063232 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',215856),(58,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619624761.5658000000,1619624761.5666000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 16:46:01. Current memory use 35.9MB.\n... used 0 dbqueries\n... used 7.6055526733398E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',215856),(59,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619624761.5730000000,1619624761.5738000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 16:46:01. Current memory use 35.9MB.\n... used 0 dbqueries\n... used 7.4148178100586E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',215856),(60,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619624761.5832000000,1619624761.5889000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 16:46:01. Current memory use 35.9MB.\n... used 0 dbqueries\n... used 0.0049660205841064 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',215856),(61,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619624761.5964000000,1619624761.5975000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 16:46:01. Current memory use 36.5MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00033998489379883 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',215856),(62,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619624761.6069000000,1619624761.6078000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 16:46:01. Current memory use 36.5MB.\n... used 0 dbqueries\n... used 8.5115432739258E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',215856),(63,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619624761.6152000000,1619624761.6173000000,1,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 16:46:01. Current memory use 36.5MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 1 dbqueries\n... used 0.00062203407287598 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',215856),(64,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619624761.6250000000,1619624761.6260000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 16:46:01. Current memory use 36.5MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00018501281738281 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',215856),(65,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619624761.6331000000,1619624761.6361000000,3,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 16:46:01. Current memory use 36.5MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 3 dbqueries\n... used 0.0014889240264893 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',215856),(66,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619624761.6457000000,1619624761.6466000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 16:46:01. Current memory use 36.5MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016498565673828 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',215856),(67,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619624761.6581000000,1619624761.6645000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 16:46:01. Current memory use 35.6MB.\n\n0 feeds refreshed (took 0.00032799999999999 seconds)\n... used 1 dbqueries\n... used 0.0057520866394043 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',215856),(68,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619624761.6746000000,1619624761.6767000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 16:46:01. Current memory use 36.7MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014278888702393 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',215856),(69,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619624761.6836000000,1619624761.6843000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 16:46:01. Current memory use 36.8MB.\n... used 0 dbqueries\n... used 0.00010395050048828 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',215856),(70,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619624761.6935000000,1619624761.6944000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 16:46:01. Current memory use 36.9MB.\n... used 1 dbqueries\n... used 0.00025200843811035 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',215856),(71,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619624761.7019000000,1619624761.7029000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 16:46:01. Current memory use 36.9MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00040197372436523 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',215856),(72,0,'moodle','core\\task\\delete_unconfirmed_users_task',0,1619625661.9014000000,1619625661.9162000000,1,0,0,'Execute scheduled task: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n... started 17:01:01. Current memory use 15.2MB.\n... used 1 dbqueries\n... used 0.0043540000915527 seconds\nScheduled task complete: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n','dev-defaults.derekmaxson.com',218595),(73,0,'moodle','core\\task\\check_for_updates_task',0,1619625661.9263000000,1619625666.0176000000,23,3,0,'Execute scheduled task: Check for updates (core\\task\\check_for_updates_task)\n... started 17:01:01. Current memory use 16.1MB.\nOutdated or missing info about available updates, forced fetching ... sending notifications ... Error: lib/moodlelib.php email_to_user(): Could not instantiate mail function.\ndone\n... used 26 dbqueries\n... used 4.0908360481262 seconds\nScheduled task complete: Check for updates (core\\task\\check_for_updates_task)\n','dev-defaults.derekmaxson.com',218595),(74,0,'moodle','core\\task\\cache_cron_task',0,1619625666.0354000000,1619625666.0374000000,0,0,0,'Execute scheduled task: Background processing for caches (core\\task\\cache_cron_task)\n... started 17:01:06. Current memory use 47.4MB.\nCleaning up stale session data from cache stores.\n... used 0 dbqueries\n... used 0.00024986267089844 seconds\nScheduled task complete: Background processing for caches (core\\task\\cache_cron_task)\n','dev-defaults.derekmaxson.com',218595),(75,0,'moodle','core\\task\\automated_backup_task',0,1619625666.0469000000,1619625666.4821000000,0,0,0,'Execute scheduled task: Automated backups (core\\task\\automated_backup_task)\n... started 17:01:06. Current memory use 47.5MB.\nChecking automated backup status...INACTIVE\n... used 0 dbqueries\n... used 0.43434810638428 seconds\nScheduled task complete: Automated backups (core\\task\\automated_backup_task)\n','dev-defaults.derekmaxson.com',218595),(76,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619625666.4956000000,1619625666.4979000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 17:01:06. Current memory use 54.3MB.\n... used 1 dbqueries\n... used 0.0010437965393066 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',218595),(77,0,'moodle','core\\task\\search_index_task',0,1619625666.5143000000,1619625666.5169000000,0,0,0,'Execute scheduled task: Global search indexing (core\\task\\search_index_task)\n... started 17:01:06. Current memory use 54.3MB.\n... used 0 dbqueries\n... used 0.0017728805541992 seconds\nScheduled task complete: Global search indexing (core\\task\\search_index_task)\n','dev-defaults.derekmaxson.com',218595),(78,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_course_bin',0,1619625666.5271000000,1619625666.5288000000,1,0,0,'Execute scheduled task: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n... started 17:01:06. Current memory use 54.5MB.\n... used 1 dbqueries\n... used 0.0008549690246582 seconds\nScheduled task complete: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n','dev-defaults.derekmaxson.com',218595),(79,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_category_bin',0,1619625666.5423000000,1619625666.5442000000,1,0,0,'Execute scheduled task: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n... started 17:01:06. Current memory use 54.6MB.\n... used 1 dbqueries\n... used 0.00079083442687988 seconds\nScheduled task complete: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n','dev-defaults.derekmaxson.com',218595),(80,0,'moodle','core\\task\\session_cleanup_task',0,1619625666.5526000000,1619625666.5588000000,6,2,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 17:01:06. Current memory use 54.6MB.\n... used 8 dbqueries\n... used 0.0050938129425049 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',218595),(81,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619625666.5660000000,1619625666.5673000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 17:01:06. Current memory use 54.8MB.\n... used 1 dbqueries\n... used 0.00029397010803223 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',218595),(82,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619625666.5805000000,1619625666.5813000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 17:01:06. Current memory use 54.9MB.\n... used 0 dbqueries\n... used 3.3855438232422E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',218595),(83,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619625666.5929000000,1619625666.5965000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 17:01:06. Current memory use 54.9MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.0028259754180908 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',218595),(84,0,'moodle','core\\task\\grade_cron_task',0,1619625666.6049000000,1619625666.6068000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 17:01:06. Current memory use 54.9MB.\n... used 2 dbqueries\n... used 0.00092697143554688 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',218595),(85,0,'moodle','core\\task\\completion_regular_task',0,1619625666.6182000000,1619625666.6237000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 17:01:06. Current memory use 54.9MB.\n... used 6 dbqueries\n... used 0.0046398639678955 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',218595),(86,0,'moodle','core\\task\\portfolio_cron_task',0,1619625666.6394000000,1619625666.6402000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 17:01:06. Current memory use 55.1MB.\n... used 0 dbqueries\n... used 3.0040740966797E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',218595),(87,0,'moodle','core\\task\\plagiarism_cron_task',0,1619625666.6480000000,1619625666.6488000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 17:01:06. Current memory use 55.1MB.\n... used 0 dbqueries\n... used 3.4093856811523E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',218595),(88,0,'moodle','core\\task\\calendar_cron_task',0,1619625666.6652000000,1619625666.6696000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 17:01:06. Current memory use 55.1MB.\n... used 1 dbqueries\n... used 0.0036051273345947 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',218595),(89,0,'moodle','core\\task\\blog_cron_task',0,1619625666.6783000000,1619625666.6819000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 17:01:06. Current memory use 55.5MB.\n... used 2 dbqueries\n... used 0.0027709007263184 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',218595),(90,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619625666.6908000000,1619625666.6924000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 17:01:06. Current memory use 55.8MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.00095105171203613 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',218595),(91,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619625666.7198000000,1619625666.7212000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 17:01:06. Current memory use 55.8MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00062084197998047 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',218595),(92,0,'moodle','core\\task\\badges_cron_task',0,1619625666.7303000000,1619625666.7344000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 17:01:06. Current memory use 55.9MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0033609867095947 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',218595),(93,0,'moodle','core\\task\\badges_message_task',0,1619625666.7492000000,1619625666.7504000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 17:01:06. Current memory use 56.2MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00038409233093262 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',218595),(94,0,'mod_assign','mod_assign\\task\\cron_task',0,1619625666.7631000000,1619625666.7732000000,4,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 17:01:06. Current memory use 56.2MB.\n... used 4 dbqueries\n... used 0.0073931217193604 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',218595),(95,0,'mod_chat','mod_chat\\task\\cron_task',0,1619625666.7823000000,1619625666.7848000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 17:01:06. Current memory use 56.9MB.\n... used 4 dbqueries\n... used 0.0012900829315186 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',218595),(96,0,'mod_forum','mod_forum\\task\\cron_task',0,1619625666.7952000000,1619625666.7970000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 17:01:06. Current memory use 57MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00061798095703125 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',218595),(97,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619625666.8165000000,1619625666.8203000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 17:01:06. Current memory use 57.9MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.001838207244873 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',218595),(98,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619625666.8405000000,1619625666.8419000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 17:01:06. Current memory use 58MB.\n... used 0 dbqueries\n... used 9.2029571533203E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',218595),(99,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619625666.8517000000,1619625666.8529000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 17:01:06. Current memory use 58MB.\n... used 0 dbqueries\n... used 8.2015991210938E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',218595),(100,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619625666.8610000000,1619625666.8668000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 17:01:06. Current memory use 58MB.\n... used 0 dbqueries\n... used 0.0036728382110596 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',218595),(101,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619625666.8785000000,1619625666.8799000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 17:01:06. Current memory use 58.5MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00033688545227051 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',218595),(102,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619625666.8868000000,1619625666.8875000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 17:01:06. Current memory use 58.5MB.\n... used 0 dbqueries\n... used 7.2002410888672E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',218595),(103,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619625666.8996000000,1619625666.9010000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 17:01:06. Current memory use 58.5MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.0001828670501709 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',218595),(104,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619625666.9177000000,1619625666.9190000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 17:01:06. Current memory use 58.5MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016093254089355 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',218595),(105,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619625666.9288000000,1619625666.9309000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 17:01:06. Current memory use 58.5MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.00097107887268066 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',218595),(106,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619625666.9401000000,1619625666.9413000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 17:01:06. Current memory use 58.5MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016093254089355 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',218595),(107,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619625666.9485000000,1619625666.9552000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 17:01:06. Current memory use 58.5MB.\n\n0 feeds refreshed (took 0.0002930000000001 seconds)\n... used 1 dbqueries\n... used 0.0055880546569824 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',218595),(108,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619625666.9637000000,1619625666.9667000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 17:01:06. Current memory use 59.2MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014488697052002 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',218595),(109,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619625666.9769000000,1619625666.9785000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 17:01:06. Current memory use 59.5MB.\n... used 0 dbqueries\n... used 4.2915344238281E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',218595),(110,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619625666.9861000000,1619625666.9879000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 17:01:06. Current memory use 59.5MB.\n... used 1 dbqueries\n... used 0.00026416778564453 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',218595),(111,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619625666.9987000000,1619625667.0004000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 17:01:06. Current memory use 59.5MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00041794776916504 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',218595),(112,0,'moodle','core\\task\\delete_incomplete_users_task',0,1619626561.1791000000,1619626561.1862000000,0,0,0,'Execute scheduled task: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n... started 17:16:01. Current memory use 15.2MB.\n... used 0 dbqueries\n... used 0.0035748481750488 seconds\nScheduled task complete: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n','dev-defaults.derekmaxson.com',221423),(113,0,'moodle','core\\task\\backup_cleanup_task',0,1619626561.1932000000,1619626561.1945000000,1,0,0,'Execute scheduled task: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n... started 17:16:01. Current memory use 16.1MB.\n... used 1 dbqueries\n... used 0.00085091590881348 seconds\nScheduled task complete: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n','dev-defaults.derekmaxson.com',221423),(114,0,'moodle','core\\task\\complete_plans_task',0,1619626561.2006000000,1619626561.2086000000,1,0,0,'Execute scheduled task: Complete learning plans which are due (core\\task\\complete_plans_task)\n... started 17:16:01. Current memory use 16.1MB.\n... used 1 dbqueries\n... used 0.0070531368255615 seconds\nScheduled task complete: Complete learning plans which are due (core\\task\\complete_plans_task)\n','dev-defaults.derekmaxson.com',221423),(115,0,'qtype_random','qtype_random\\task\\remove_unused_questions',0,1619626561.2206000000,1619626561.2443000000,1,0,0,'Execute scheduled task: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n... started 17:16:01. Current memory use 17.5MB.\nCleaned up 0 unused random questions.\n... used 1 dbqueries\n... used 0.023098945617676 seconds\nScheduled task complete: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n','dev-defaults.derekmaxson.com',221423),(116,0,'enrol_flatfile','enrol_flatfile\\task\\flatfile_sync_task',0,1619626561.2585000000,1619626561.2610000000,2,0,0,'Execute scheduled task: Flat file enrolment sync (enrol_flatfile\\task\\flatfile_sync_task)\n... started 17:16:01. Current memory use 20.3MB.\n... used 2 dbqueries\n... used 0.0019071102142334 seconds\nScheduled task complete: Flat file enrolment sync (enrol_flatfile\\task\\flatfile_sync_task)\n','dev-defaults.derekmaxson.com',221423),(117,0,'tool_cohortroles','tool_cohortroles\\task\\cohort_role_sync',0,1619626561.2765000000,1619626561.2818000000,2,1,0,'Execute scheduled task: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n... started 17:16:01. Current memory use 20.9MB.\nSync cohort roles...\nAdded 0\nRemoved 0\n... used 3 dbqueries\n... used 0.0045580863952637 seconds\nScheduled task complete: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n','dev-defaults.derekmaxson.com',221423),(118,0,'moodle','core\\task\\session_cleanup_task',0,1619626561.2923000000,1619626561.2988000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 17:16:01. Current memory use 21.6MB.\n... used 7 dbqueries\n... used 0.0048530101776123 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',221423),(119,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619626561.3076000000,1619626561.3087000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 17:16:01. Current memory use 22MB.\n... used 1 dbqueries\n... used 0.0003049373626709 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',221423),(120,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619626561.3174000000,1619626561.3181000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 17:16:01. Current memory use 22MB.\n... used 0 dbqueries\n... used 3.6001205444336E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',221423),(121,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619626561.3295000000,1619626561.3594000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 17:16:01. Current memory use 22MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.029263019561768 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',221423),(122,0,'moodle','core\\task\\grade_cron_task',0,1619626561.3675000000,1619626561.3694000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 17:16:01. Current memory use 25.4MB.\n... used 2 dbqueries\n... used 0.0010299682617188 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',221423),(123,0,'moodle','core\\task\\completion_regular_task',0,1619626561.3782000000,1619626561.3853000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 17:16:01. Current memory use 25.4MB.\n... used 6 dbqueries\n... used 0.0064101219177246 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',221423),(124,0,'moodle','core\\task\\portfolio_cron_task',0,1619626561.3933000000,1619626561.3940000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 17:16:01. Current memory use 25.7MB.\n... used 0 dbqueries\n... used 3.4809112548828E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',221423),(125,0,'moodle','core\\task\\plagiarism_cron_task',0,1619626561.4047000000,1619626561.4054000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 17:16:01. Current memory use 25.8MB.\n... used 0 dbqueries\n... used 3.6001205444336E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',221423),(126,0,'moodle','core\\task\\calendar_cron_task',0,1619626561.4251000000,1619626561.4291000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 17:16:01. Current memory use 27.5MB.\n... used 1 dbqueries\n... used 0.0032479763031006 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',221423),(127,0,'moodle','core\\task\\blog_cron_task',0,1619626561.4366000000,1619626561.4402000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 17:16:01. Current memory use 27.9MB.\n... used 2 dbqueries\n... used 0.0030138492584229 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',221423),(128,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619626561.4495000000,1619626561.4511000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 17:16:01. Current memory use 28.2MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.00094079971313477 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',221423),(129,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619626561.4612000000,1619626561.4627000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 17:16:01. Current memory use 28.2MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00079989433288574 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',221423),(130,0,'moodle','core\\task\\badges_cron_task',0,1619626561.4742000000,1619626561.4785000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 17:16:01. Current memory use 28.2MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0035209655761719 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',221423),(131,0,'moodle','core\\task\\badges_message_task',0,1619626561.4872000000,1619626561.4882000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 17:16:01. Current memory use 28.5MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00038385391235352 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',221423),(132,0,'mod_assign','mod_assign\\task\\cron_task',0,1619626561.5021000000,1619626561.5295000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 17:16:01. Current memory use 29.4MB.\n... used 3 dbqueries\n... used 0.026519060134888 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',221423),(133,0,'mod_chat','mod_chat\\task\\cron_task',0,1619626561.5380000000,1619626561.5436000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 17:16:01. Current memory use 32.2MB.\n... used 4 dbqueries\n... used 0.0046441555023193 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',221423),(134,0,'mod_forum','mod_forum\\task\\cron_task',0,1619626561.5652000000,1619626561.5667000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 17:16:01. Current memory use 33.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00066900253295898 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',221423),(135,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619626561.5833000000,1619626561.5861000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 17:16:01. Current memory use 34.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0020041465759277 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',221423),(136,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619626561.5933000000,1619626561.5944000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 17:16:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 8.1062316894531E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',221423),(137,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619626561.6015000000,1619626561.6026000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 17:16:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 8.4161758422852E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',221423),(138,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619626561.6129000000,1619626561.6189000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 17:16:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 0.0050289630889893 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',221423),(139,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619626561.6271000000,1619626561.6283000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 17:16:01. Current memory use 35.1MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00041007995605469 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',221423),(140,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619626561.6361000000,1619626561.6370000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 17:16:01. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',221423),(141,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619626561.6447000000,1619626561.6468000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 17:16:01. Current memory use 35.1MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.0004119873046875 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',221423),(142,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619626561.6572000000,1619626561.6584000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 17:16:01. Current memory use 35.1MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00017118453979492 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',221423),(143,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619626561.6698000000,1619626561.6729000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 17:16:01. Current memory use 35.1MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0013790130615234 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',221423),(144,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619626561.6806000000,1619626561.6818000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 17:16:01. Current memory use 35.1MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016117095947266 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',221423),(145,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619626561.6926000000,1619626561.6991000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 17:16:01. Current memory use 34.2MB.\n\n0 feeds refreshed (took 0.00031300000000001 seconds)\n... used 1 dbqueries\n... used 0.0056848526000977 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',221423),(146,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619626561.7076000000,1619626561.7097000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 17:16:01. Current memory use 34.9MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014128684997559 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',221423),(147,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619626561.7221000000,1619626561.7229000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 17:16:01. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 9.4175338745117E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',221423),(148,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619626561.7319000000,1619626561.7329000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 17:16:01. Current memory use 35.1MB.\n... used 1 dbqueries\n... used 0.00023508071899414 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',221423),(149,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619626561.7427000000,1619626561.7438000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 17:16:01. Current memory use 35.2MB.\n... used 1 dbqueries\n... used 0.00040602684020996 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',221423),(150,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619626561.7523000000,1619626561.7531000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 17:16:01. Current memory use 35.2MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00039005279541016 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',221423),(151,0,'moodle','core\\task\\context_cleanup_task',0,1619627462.0099000000,1619627462.0207000000,9,1,0,'Execute scheduled task: Cleanup contexts (core\\task\\context_cleanup_task)\n... started 17:31:02. Current memory use 15.2MB.\n Cleaned up context instances\n... used 10 dbqueries\n... used 0.0072119235992432 seconds\nScheduled task complete: Cleanup contexts (core\\task\\context_cleanup_task)\n','dev-defaults.derekmaxson.com',224213),(152,0,'moodle','core\\task\\sync_plans_from_template_cohorts_task',0,1619627462.0267000000,1619627462.0350000000,1,0,0,'Execute scheduled task: Sync plans from learning plan template cohorts (core\\task\\sync_plans_from_template_cohorts_task)\n... started 17:31:02. Current memory use 16.3MB.\n... used 1 dbqueries\n... used 0.007451057434082 seconds\nScheduled task complete: Sync plans from learning plan template cohorts (core\\task\\sync_plans_from_template_cohorts_task)\n','dev-defaults.derekmaxson.com',224213),(153,0,'moodle','core\\task\\cache_cleanup_task',0,1619627462.0541000000,1619627462.0556000000,0,1,0,'Execute scheduled task: Remove expired cache entries (core\\task\\cache_cleanup_task)\n... started 17:31:02. Current memory use 17.6MB.\n... used 1 dbqueries\n... used 0.0002899169921875 seconds\nScheduled task complete: Remove expired cache entries (core\\task\\cache_cleanup_task)\n','dev-defaults.derekmaxson.com',224213),(154,0,'moodle','core\\oauth2\\refresh_system_tokens_task',0,1619627462.0634000000,1619627462.0770000000,1,0,0,'Execute scheduled task: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n... started 17:31:02. Current memory use 17.6MB.\n... used 1 dbqueries\n... used 0.013114929199219 seconds\nScheduled task complete: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n','dev-defaults.derekmaxson.com',224213),(155,0,'moodle','core\\task\\search_index_task',0,1619627462.0843000000,1619627462.0865000000,0,0,0,'Execute scheduled task: Global search indexing (core\\task\\search_index_task)\n... started 17:31:02. Current memory use 19.3MB.\n... used 0 dbqueries\n... used 0.0017189979553223 seconds\nScheduled task complete: Global search indexing (core\\task\\search_index_task)\n','dev-defaults.derekmaxson.com',224213),(156,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_course_bin',0,1619627462.0965000000,1619627462.0977000000,1,0,0,'Execute scheduled task: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n... started 17:31:02. Current memory use 19.6MB.\n... used 1 dbqueries\n... used 0.0007331371307373 seconds\nScheduled task complete: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n','dev-defaults.derekmaxson.com',224213),(157,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_category_bin',0,1619627462.1050000000,1619627462.1062000000,1,0,0,'Execute scheduled task: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n... started 17:31:02. Current memory use 19.6MB.\n... used 1 dbqueries\n... used 0.00067996978759766 seconds\nScheduled task complete: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n','dev-defaults.derekmaxson.com',224213),(158,0,'moodle','core\\task\\session_cleanup_task',0,1619627462.1160000000,1619627462.1219000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 17:31:02. Current memory use 19.9MB.\n... used 7 dbqueries\n... used 0.0044970512390137 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',224213),(159,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619627462.1291000000,1619627462.1300000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 17:31:02. Current memory use 20.2MB.\n... used 1 dbqueries\n... used 0.00029611587524414 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',224213),(160,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619627462.1419000000,1619627462.1426000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 17:31:02. Current memory use 20.2MB.\n... used 0 dbqueries\n... used 3.504753112793E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',224213),(161,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619627462.1509000000,1619627462.1810000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 17:31:02. Current memory use 20.2MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.029411792755127 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',224213),(162,0,'moodle','core\\task\\grade_cron_task',0,1619627462.1900000000,1619627462.1917000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 17:31:02. Current memory use 23.6MB.\n... used 2 dbqueries\n... used 0.00096511840820312 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',224213),(163,0,'moodle','core\\task\\completion_regular_task',0,1619627462.2002000000,1619627462.2074000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 17:31:02. Current memory use 23.7MB.\n... used 6 dbqueries\n... used 0.0065751075744629 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',224213),(164,0,'moodle','core\\task\\portfolio_cron_task',0,1619627462.2177000000,1619627462.2183000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 17:31:02. Current memory use 24.1MB.\n... used 0 dbqueries\n... used 3.2901763916016E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',224213),(165,0,'moodle','core\\task\\plagiarism_cron_task',0,1619627462.2256000000,1619627462.2262000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 17:31:02. Current memory use 24.1MB.\n... used 0 dbqueries\n... used 3.1948089599609E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',224213),(166,0,'moodle','core\\task\\calendar_cron_task',0,1619627462.2383000000,1619627462.2422000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 17:31:02. Current memory use 24.6MB.\n... used 1 dbqueries\n... used 0.0032479763031006 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',224213),(167,0,'moodle','core\\task\\blog_cron_task',0,1619627462.2522000000,1619627462.2564000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 17:31:02. Current memory use 25MB.\n... used 2 dbqueries\n... used 0.0036168098449707 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',224213),(168,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619627462.2744000000,1619627462.2879000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 17:31:02. Current memory use 25.2MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.012801170349121 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',224213),(169,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619627462.3008000000,1619627462.3022000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 17:31:02. Current memory use 28.2MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00069403648376465 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',224213),(170,0,'moodle','core\\task\\badges_cron_task',0,1619627462.3130000000,1619627462.3171000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 17:31:02. Current memory use 28.2MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.003486156463623 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',224213),(171,0,'moodle','core\\task\\badges_message_task',0,1619627462.3281000000,1619627462.3290000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 17:31:02. Current memory use 28.5MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00035691261291504 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',224213),(172,0,'mod_assign','mod_assign\\task\\cron_task',0,1619627462.3429000000,1619627462.3694000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 17:31:02. Current memory use 29.4MB.\n... used 3 dbqueries\n... used 0.025687217712402 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',224213),(173,0,'mod_chat','mod_chat\\task\\cron_task',0,1619627462.3780000000,1619627462.3819000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 17:31:02. Current memory use 32.1MB.\n... used 4 dbqueries\n... used 0.0029959678649902 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',224213),(174,0,'mod_forum','mod_forum\\task\\cron_task',0,1619627462.4007000000,1619627462.4021000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 17:31:02. Current memory use 33.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00062108039855957 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',224213),(175,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619627462.4212000000,1619627462.4239000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 17:31:02. Current memory use 34.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0019819736480713 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',224213),(176,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619627462.4348000000,1619627462.4357000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 17:31:02. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 8.2969665527344E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',224213),(177,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619627462.4431000000,1619627462.4439000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 17:31:02. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 7.6055526733398E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',224213),(178,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619627462.4512000000,1619627462.4568000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 17:31:02. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 0.0049128532409668 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',224213),(179,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619627462.4644000000,1619627462.4656000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 17:31:02. Current memory use 35MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00037908554077148 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',224213),(180,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619627462.4783000000,1619627462.4791000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 17:31:02. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 8.5830688476562E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',224213),(181,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619627462.4870000000,1619627462.4888000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 17:31:02. Current memory use 35.1MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.0003821849822998 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',224213),(182,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619627462.4974000000,1619627462.4983000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 17:31:02. Current memory use 35.1MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00015783309936523 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',224213),(183,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619627462.5068000000,1619627462.5094000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 17:31:02. Current memory use 35.1MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0011770725250244 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',224213),(184,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619627462.5191000000,1619627462.5200000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 17:31:02. Current memory use 35.1MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00017189979553223 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',224213),(185,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619627462.5315000000,1619627462.5381000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 17:31:02. Current memory use 34.2MB.\n\n0 feeds refreshed (took 0.00038800000000005 seconds)\n... used 1 dbqueries\n... used 0.0059390068054199 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',224213),(186,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619627462.5459000000,1619627462.5479000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 17:31:02. Current memory use 34.9MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0013828277587891 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',224213),(187,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619627462.5558000000,1619627462.5565000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 17:31:02. Current memory use 35MB.\n... used 0 dbqueries\n... used 8.8930130004883E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',224213),(188,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619627462.5672000000,1619627462.5681000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 17:31:02. Current memory use 35.1MB.\n... used 1 dbqueries\n... used 0.00025081634521484 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',224213),(189,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619627462.5755000000,1619627462.5765000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 17:31:02. Current memory use 35.1MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00039911270141602 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',224213),(190,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619627462.5878000000,1619627462.5889000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 17:31:02. Current memory use 35.2MB.\n... used 1 dbqueries\n... used 0.00043296813964844 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',224213),(191,0,'moodle','core\\task\\messaging_cleanup_task',0,1619628361.7781000000,1619628361.7892000000,1,4,0,'Execute scheduled task: Background processing for messaging (core\\task\\messaging_cleanup_task)\n... started 17:46:01. Current memory use 16MB.\n... used 5 dbqueries\n... used 0.0081639289855957 seconds\nScheduled task complete: Background processing for messaging (core\\task\\messaging_cleanup_task)\n','dev-defaults.derekmaxson.com',226996),(192,0,'moodle','core\\task\\analytics_cleanup_task',0,1619628361.7965000000,1619628361.8510000000,20,3,0,'Execute scheduled task: Analytics cleanup (core\\task\\analytics_cleanup_task)\n... started 17:46:01. Current memory use 17.4MB.\n... used 23 dbqueries\n... used 0.053968191146851 seconds\nScheduled task complete: Analytics cleanup (core\\task\\analytics_cleanup_task)\n','dev-defaults.derekmaxson.com',226996),(193,0,'moodle','core\\task\\session_cleanup_task',0,1619628361.8615000000,1619628361.8665000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 17:46:01. Current memory use 23.1MB.\n... used 7 dbqueries\n... used 0.0043411254882812 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',226996),(194,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619628361.8744000000,1619628361.8753000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 17:46:01. Current memory use 23.3MB.\n... used 1 dbqueries\n... used 0.00029706954956055 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',226996),(195,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619628361.8826000000,1619628361.8831000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 17:46:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 2.7894973754883E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',226996),(196,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619628361.8910000000,1619628361.9135000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 17:46:01. Current memory use 23.5MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.022027969360352 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',226996),(197,0,'moodle','core\\task\\grade_cron_task',0,1619628361.9234000000,1619628361.9249000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 17:46:01. Current memory use 26MB.\n... used 2 dbqueries\n... used 0.00084185600280762 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',226996),(198,0,'moodle','core\\task\\completion_regular_task',0,1619628361.9329000000,1619628361.9381000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 17:46:01. Current memory use 26.1MB.\n... used 6 dbqueries\n... used 0.0045480728149414 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',226996),(199,0,'moodle','core\\task\\portfolio_cron_task',0,1619628361.9478000000,1619628361.9485000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 17:46:01. Current memory use 26.2MB.\n... used 0 dbqueries\n... used 3.504753112793E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',226996),(200,0,'moodle','core\\task\\plagiarism_cron_task',0,1619628361.9556000000,1619628361.9562000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 17:46:01. Current memory use 26.3MB.\n... used 0 dbqueries\n... used 2.9087066650391E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',226996),(201,0,'moodle','core\\task\\calendar_cron_task',0,1619628361.9637000000,1619628361.9673000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 17:46:01. Current memory use 26.3MB.\n... used 1 dbqueries\n... used 0.0031390190124512 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',226996),(202,0,'moodle','core\\task\\blog_cron_task',0,1619628361.9765000000,1619628361.9798000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 17:46:01. Current memory use 26.7MB.\n... used 2 dbqueries\n... used 0.0028030872344971 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',226996),(203,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619628361.9868000000,1619628361.9989000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 17:46:01. Current memory use 26.9MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.011622905731201 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',226996),(204,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619628362.0072000000,1619628362.0086000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 17:46:02. Current memory use 28.6MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00071597099304199 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',226996),(205,0,'moodle','core\\task\\badges_cron_task',0,1619628362.0164000000,1619628362.0212000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 17:46:02. Current memory use 28.6MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0042381286621094 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',226996),(206,0,'moodle','core\\task\\badges_message_task',0,1619628362.0325000000,1619628362.0335000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 17:46:02. Current memory use 30.1MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00033807754516602 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',226996),(207,0,'mod_assign','mod_assign\\task\\cron_task',0,1619628362.0462000000,1619628362.0721000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 17:46:02. Current memory use 31.2MB.\n... used 3 dbqueries\n... used 0.024996995925903 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',226996),(208,0,'mod_chat','mod_chat\\task\\cron_task',0,1619628362.0857000000,1619628362.0896000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 17:46:02. Current memory use 34MB.\n... used 4 dbqueries\n... used 0.0029869079589844 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',226996),(209,0,'mod_forum','mod_forum\\task\\cron_task',0,1619628362.1074000000,1619628362.1088000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 17:46:02. Current memory use 35.2MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00063705444335938 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',226996),(210,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619628362.1255000000,1619628362.1283000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 17:46:02. Current memory use 36.3MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0020110607147217 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',226996),(211,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619628362.1357000000,1619628362.1366000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 17:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 7.8916549682617E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',226996),(212,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619628362.1483000000,1619628362.1493000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 17:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 8.6069107055664E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',226996),(213,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619628362.1569000000,1619628362.1626000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 17:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 0.0049378871917725 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',226996),(214,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619628362.1754000000,1619628362.1766000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 17:46:02. Current memory use 36.9MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00033903121948242 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',226996),(215,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619628362.1858000000,1619628362.1867000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 17:46:02. Current memory use 36.9MB.\n... used 0 dbqueries\n... used 8.1062316894531E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',226996),(216,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619628362.1950000000,1619628362.1969000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 17:46:02. Current memory use 36.9MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00038886070251465 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',226996),(217,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619628362.2064000000,1619628362.2074000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 17:46:02. Current memory use 36.9MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00018000602722168 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',226996),(218,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619628362.2184000000,1619628362.2210000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 17:46:02. Current memory use 36.9MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.00111985206604 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',226996),(219,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619628362.2297000000,1619628362.2307000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 17:46:02. Current memory use 36.9MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.0001518726348877 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',226996),(220,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619628362.2421000000,1619628362.2488000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 17:46:02. Current memory use 35.7MB.\n\n0 feeds refreshed (took 0.00037600000000002 seconds)\n... used 1 dbqueries\n... used 0.0060710906982422 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',226996),(221,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619628362.2600000000,1619628362.2622000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 17:46:02. Current memory use 36.8MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0015408992767334 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',226996),(222,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619628362.2724000000,1619628362.2731000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 17:46:02. Current memory use 36.9MB.\n... used 0 dbqueries\n... used 0.00010085105895996 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',226996),(223,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619628362.2819000000,1619628362.2829000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 17:46:02. Current memory use 37MB.\n... used 1 dbqueries\n... used 0.00028705596923828 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',226996),(224,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619628362.2903000000,1619628362.2912000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 17:46:02. Current memory use 37MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00039100646972656 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',226996),(225,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619628362.3017000000,1619628362.3028000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 17:46:02. Current memory use 37MB.\n... used 1 dbqueries\n... used 0.00042486190795898 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',226996),(226,0,'moodle','core\\task\\delete_unconfirmed_users_task',0,1619629261.4880000000,1619629261.4950000000,1,0,0,'Execute scheduled task: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n... started 18:01:01. Current memory use 16MB.\n... used 1 dbqueries\n... used 0.0040040016174316 seconds\nScheduled task complete: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n','dev-defaults.derekmaxson.com',229751),(227,0,'moodle','core\\task\\check_for_updates_task',0,1619629261.5033000000,1619629261.5049000000,0,0,0,'Execute scheduled task: Check for updates (core\\task\\check_for_updates_task)\n... started 18:01:01. Current memory use 16.9MB.\nRecently fetched info about available updates is still fresh enough, skipping.\n... used 0 dbqueries\n... used 0.0010209083557129 seconds\nScheduled task complete: Check for updates (core\\task\\check_for_updates_task)\n','dev-defaults.derekmaxson.com',229751),(228,0,'moodle','core\\task\\cache_cron_task',0,1619629261.5157000000,1619629261.5166000000,0,0,0,'Execute scheduled task: Background processing for caches (core\\task\\cache_cron_task)\n... started 18:01:01. Current memory use 17MB.\nCleaning up stale session data from cache stores.\n... used 0 dbqueries\n... used 0.00024008750915527 seconds\nScheduled task complete: Background processing for caches (core\\task\\cache_cron_task)\n','dev-defaults.derekmaxson.com',229751),(229,0,'moodle','core\\task\\automated_backup_task',0,1619629261.5242000000,1619629261.6611000000,0,0,0,'Execute scheduled task: Automated backups (core\\task\\automated_backup_task)\n... started 18:01:01. Current memory use 17.1MB.\nChecking automated backup status...INACTIVE\n... used 0 dbqueries\n... used 0.13631510734558 seconds\nScheduled task complete: Automated backups (core\\task\\automated_backup_task)\n','dev-defaults.derekmaxson.com',229751),(230,0,'moodle','core\\task\\search_index_task',0,1619629261.6691000000,1619629261.6717000000,0,0,0,'Execute scheduled task: Global search indexing (core\\task\\search_index_task)\n... started 18:01:01. Current memory use 36.7MB.\n... used 0 dbqueries\n... used 0.0019509792327881 seconds\nScheduled task complete: Global search indexing (core\\task\\search_index_task)\n','dev-defaults.derekmaxson.com',229751),(231,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_course_bin',0,1619629261.6835000000,1619629261.6848000000,1,0,0,'Execute scheduled task: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n... started 18:01:01. Current memory use 36.7MB.\n... used 1 dbqueries\n... used 0.00077986717224121 seconds\nScheduled task complete: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n','dev-defaults.derekmaxson.com',229751),(232,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_category_bin',0,1619629261.6927000000,1619629261.6940000000,1,0,0,'Execute scheduled task: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n... started 18:01:01. Current memory use 36.7MB.\n... used 1 dbqueries\n... used 0.0007021427154541 seconds\nScheduled task complete: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n','dev-defaults.derekmaxson.com',229751),(233,0,'moodle','core\\task\\session_cleanup_task',0,1619629261.7038000000,1619629261.7096000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 18:01:01. Current memory use 37MB.\n... used 7 dbqueries\n... used 0.0044372081756592 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',229751),(234,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619629261.7173000000,1619629261.7182000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 18:01:01. Current memory use 37.3MB.\n... used 1 dbqueries\n... used 0.00028109550476074 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',229751),(235,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619629261.7256000000,1619629261.7261000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 18:01:01. Current memory use 37.3MB.\n... used 0 dbqueries\n... used 2.9087066650391E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',229751),(236,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619629261.7343000000,1619629261.7484000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 18:01:01. Current memory use 37.4MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.013644933700562 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',229751),(237,0,'moodle','core\\task\\grade_cron_task',0,1619629261.7594000000,1619629261.7610000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 18:01:01. Current memory use 38.8MB.\n... used 2 dbqueries\n... used 0.00087118148803711 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',229751),(238,0,'moodle','core\\task\\completion_regular_task',0,1619629261.7688000000,1619629261.7737000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 18:01:01. Current memory use 38.8MB.\n... used 6 dbqueries\n... used 0.0043871402740479 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',229751),(239,0,'moodle','core\\task\\portfolio_cron_task',0,1619629261.7861000000,1619629261.7868000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 18:01:01. Current memory use 39MB.\n... used 0 dbqueries\n... used 5.9843063354492E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',229751),(240,0,'moodle','core\\task\\plagiarism_cron_task',0,1619629261.7955000000,1619629261.7961000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 18:01:01. Current memory use 39.1MB.\n... used 0 dbqueries\n... used 3.6954879760742E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',229751),(241,0,'moodle','core\\task\\calendar_cron_task',0,1619629261.8089000000,1619629261.8126000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 18:01:01. Current memory use 39.1MB.\n... used 1 dbqueries\n... used 0.0031797885894775 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',229751),(242,0,'moodle','core\\task\\blog_cron_task',0,1619629261.8220000000,1619629261.8263000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 18:01:01. Current memory use 39.5MB.\n... used 2 dbqueries\n... used 0.00364089012146 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',229751),(243,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619629261.8341000000,1619629261.8356000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 18:01:01. Current memory use 39.7MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.00089788436889648 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',229751),(244,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619629261.8438000000,1619629261.8450000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 18:01:01. Current memory use 39.7MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00069713592529297 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',229751),(245,0,'moodle','core\\task\\badges_cron_task',0,1619629261.8611000000,1619629261.8653000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 18:01:01. Current memory use 39.7MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0035829544067383 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',229751),(246,0,'moodle','core\\task\\badges_message_task',0,1619629261.8745000000,1619629261.8755000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 18:01:01. Current memory use 40MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00036501884460449 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',229751),(247,0,'mod_assign','mod_assign\\task\\cron_task',0,1619629261.8905000000,1619629261.8976000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 18:01:01. Current memory use 41MB.\n... used 3 dbqueries\n... used 0.0062270164489746 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',229751),(248,0,'mod_chat','mod_chat\\task\\cron_task',0,1619629261.9064000000,1619629261.9082000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 18:01:01. Current memory use 41.5MB.\n... used 4 dbqueries\n... used 0.0010068416595459 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',229751),(249,0,'mod_forum','mod_forum\\task\\cron_task',0,1619629261.9204000000,1619629261.9218000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 18:01:01. Current memory use 41.6MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00066614151000977 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',229751),(250,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619629261.9376000000,1619629261.9405000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 18:01:01. Current memory use 42.4MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0021021366119385 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',229751),(251,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619629261.9492000000,1619629261.9500000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 18:01:01. Current memory use 42.5MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',229751),(252,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619629261.9578000000,1619629261.9584000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 18:01:01. Current memory use 42.5MB.\n... used 0 dbqueries\n... used 5.8174133300781E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',229751),(253,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619629261.9667000000,1619629261.9707000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 18:01:01. Current memory use 42.5MB.\n... used 0 dbqueries\n... used 0.003187894821167 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',229751),(254,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619629261.9815000000,1619629261.9826000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 18:01:01. Current memory use 42.8MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00034403800964355 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',229751),(255,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619629261.9897000000,1619629261.9904000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 18:01:01. Current memory use 42.8MB.\n... used 0 dbqueries\n... used 8.5115432739258E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',229751),(256,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619629262.0013000000,1619629262.0032000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 18:01:02. Current memory use 42.8MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00038313865661621 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',229751),(257,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619629262.0113000000,1619629262.0123000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 18:01:02. Current memory use 42.8MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016307830810547 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',229751),(258,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619629262.0193000000,1619629262.0220000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 18:01:02. Current memory use 42.8MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0011649131774902 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',229751),(259,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619629262.0298000000,1619629262.0309000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 18:01:02. Current memory use 42.8MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.0001988410949707 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',229751),(260,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619629262.0437000000,1619629262.0501000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 18:01:02. Current memory use 41.8MB.\n\n0 feeds refreshed (took 0.000349 seconds)\n... used 1 dbqueries\n... used 0.0057728290557861 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',229751),(261,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619629262.0579000000,1619629262.0600000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 18:01:02. Current memory use 42.6MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014910697937012 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',229751),(262,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619629262.0679000000,1619629262.0686000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 18:01:02. Current memory use 42.8MB.\n... used 0 dbqueries\n... used 8.4877014160156E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',229751),(263,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619629262.0771000000,1619629262.0779000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 18:01:02. Current memory use 42.8MB.\n... used 1 dbqueries\n... used 0.00023198127746582 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',229751),(264,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619629262.0884000000,1619629262.0894000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 18:01:02. Current memory use 42.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00040292739868164 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',229751),(265,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619629262.0974000000,1619629262.0985000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 18:01:02. Current memory use 42.9MB.\n... used 1 dbqueries\n... used 0.00040197372436523 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',229751),(266,0,'block_recent_activity','block_recent_activity\\task\\cleanup',0,1619630161.2849000000,1619630161.3087000000,0,1,0,'Execute scheduled task: Cleanup task for recent activity block (block_recent_activity\\task\\cleanup)\n... started 18:16:01. Current memory use 15.7MB.\n... used 1 dbqueries\n... used 0.021638154983521 seconds\nScheduled task complete: Cleanup task for recent activity block (block_recent_activity\\task\\cleanup)\n','dev-defaults.derekmaxson.com',232522),(267,0,'moodle','core\\task\\delete_incomplete_users_task',0,1619630161.3269000000,1619630161.3282000000,0,0,0,'Execute scheduled task: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n... started 18:16:01. Current memory use 19.4MB.\n... used 0 dbqueries\n... used 3.6001205444336E-5 seconds\nScheduled task complete: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n','dev-defaults.derekmaxson.com',232522),(268,0,'moodle','core\\task\\backup_cleanup_task',0,1619630161.3368000000,1619630161.3378000000,1,0,0,'Execute scheduled task: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n... started 18:16:01. Current memory use 19.4MB.\n... used 1 dbqueries\n... used 0.00035309791564941 seconds\nScheduled task complete: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n','dev-defaults.derekmaxson.com',232522),(269,0,'moodle','core\\task\\complete_plans_task',0,1619630161.3470000000,1619630161.3553000000,1,0,0,'Execute scheduled task: Complete learning plans which are due (core\\task\\complete_plans_task)\n... started 18:16:01. Current memory use 19.5MB.\n... used 1 dbqueries\n... used 0.0074031352996826 seconds\nScheduled task complete: Complete learning plans which are due (core\\task\\complete_plans_task)\n','dev-defaults.derekmaxson.com',232522),(270,0,'qtype_random','qtype_random\\task\\remove_unused_questions',0,1619630161.3703000000,1619630161.3824000000,1,0,0,'Execute scheduled task: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n... started 18:16:01. Current memory use 20.1MB.\nCleaned up 0 unused random questions.\n... used 1 dbqueries\n... used 0.011371850967407 seconds\nScheduled task complete: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n','dev-defaults.derekmaxson.com',232522),(271,0,'enrol_flatfile','enrol_flatfile\\task\\flatfile_sync_task',0,1619630161.4010000000,1619630161.4034000000,2,0,0,'Execute scheduled task: Flat file enrolment sync (enrol_flatfile\\task\\flatfile_sync_task)\n... started 18:16:01. Current memory use 21.8MB.\n... used 2 dbqueries\n... used 0.0017499923706055 seconds\nScheduled task complete: Flat file enrolment sync (enrol_flatfile\\task\\flatfile_sync_task)\n','dev-defaults.derekmaxson.com',232522),(272,0,'tool_cohortroles','tool_cohortroles\\task\\cohort_role_sync',0,1619630161.4180000000,1619630161.4212000000,2,1,0,'Execute scheduled task: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n... started 18:16:01. Current memory use 21.9MB.\nSync cohort roles...\nAdded 0\nRemoved 0\n... used 3 dbqueries\n... used 0.0025770664215088 seconds\nScheduled task complete: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n','dev-defaults.derekmaxson.com',232522),(273,0,'moodle','core\\task\\session_cleanup_task',0,1619630161.4303000000,1619630161.4378000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 18:16:01. Current memory use 22.6MB.\n... used 7 dbqueries\n... used 0.0054020881652832 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',232522),(274,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619630161.4491000000,1619630161.4503000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 18:16:01. Current memory use 22.9MB.\n... used 1 dbqueries\n... used 0.00031900405883789 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',232522),(275,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619630161.4589000000,1619630161.4595000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 18:16:01. Current memory use 23MB.\n... used 0 dbqueries\n... used 3.1948089599609E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',232522),(276,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619630161.4686000000,1619630161.4976000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 18:16:01. Current memory use 23MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.028495073318481 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',232522),(277,0,'moodle','core\\task\\grade_cron_task',0,1619630161.5098000000,1619630161.5116000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 18:16:01. Current memory use 27.6MB.\n... used 2 dbqueries\n... used 0.00095391273498535 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',232522),(278,0,'moodle','core\\task\\completion_regular_task',0,1619630161.5202000000,1619630161.5253000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 18:16:01. Current memory use 27.6MB.\n... used 6 dbqueries\n... used 0.0045311450958252 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',232522),(279,0,'moodle','core\\task\\portfolio_cron_task',0,1619630161.5375000000,1619630161.5382000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 18:16:01. Current memory use 27.8MB.\n... used 0 dbqueries\n... used 3.504753112793E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',232522),(280,0,'moodle','core\\task\\plagiarism_cron_task',0,1619630161.5465000000,1619630161.5471000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 18:16:01. Current memory use 27.8MB.\n... used 0 dbqueries\n... used 3.0994415283203E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',232522),(281,0,'moodle','core\\task\\calendar_cron_task',0,1619630161.5613000000,1619630161.5651000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 18:16:01. Current memory use 28.2MB.\n... used 1 dbqueries\n... used 0.0030698776245117 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',232522),(282,0,'moodle','core\\task\\blog_cron_task',0,1619630161.5763000000,1619630161.5800000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 18:16:01. Current memory use 28.7MB.\n... used 2 dbqueries\n... used 0.0030269622802734 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',232522),(283,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619630161.5908000000,1619630161.5926000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 18:16:01. Current memory use 28.9MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.0010430812835693 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',232522),(284,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619630161.6062000000,1619630161.6077000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 18:16:01. Current memory use 28.9MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00084900856018066 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',232522),(285,0,'moodle','core\\task\\badges_cron_task',0,1619630161.6183000000,1619630161.6227000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 18:16:01. Current memory use 29MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0036389827728271 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',232522),(286,0,'moodle','core\\task\\badges_message_task',0,1619630161.6330000000,1619630161.6340000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 18:16:01. Current memory use 29.3MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.0003361701965332 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',232522),(287,0,'mod_assign','mod_assign\\task\\cron_task',0,1619630161.6499000000,1619630161.6769000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 18:16:01. Current memory use 30.1MB.\n... used 3 dbqueries\n... used 0.026180982589722 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',232522),(288,0,'mod_chat','mod_chat\\task\\cron_task',0,1619630161.6913000000,1619630161.6955000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 18:16:01. Current memory use 33MB.\n... used 4 dbqueries\n... used 0.0030629634857178 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',232522),(289,0,'mod_forum','mod_forum\\task\\cron_task',0,1619630161.7156000000,1619630161.7171000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 18:16:01. Current memory use 34.1MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00072717666625977 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',232522),(290,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619630161.7375000000,1619630161.7405000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 18:16:01. Current memory use 35.3MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0021319389343262 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',232522),(291,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619630161.7549000000,1619630161.7561000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 18:16:01. Current memory use 35.3MB.\n... used 0 dbqueries\n... used 8.9168548583984E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',232522),(292,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619630161.7661000000,1619630161.7673000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 18:16:01. Current memory use 35.3MB.\n... used 0 dbqueries\n... used 8.8930130004883E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',232522),(293,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619630161.7784000000,1619630161.7850000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 18:16:01. Current memory use 35.3MB.\n... used 0 dbqueries\n... used 0.0054609775543213 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',232522),(294,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619630161.8011000000,1619630161.8025000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 18:16:01. Current memory use 35.8MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00057387351989746 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',232522),(295,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619630161.8126000000,1619630161.8135000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 18:16:01. Current memory use 35.8MB.\n... used 0 dbqueries\n... used 8.4877014160156E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',232522),(296,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619630161.8227000000,1619630161.8239000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 18:16:01. Current memory use 35.8MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.0001380443572998 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',232522),(297,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619630161.8324000000,1619630161.8336000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 18:16:01. Current memory use 35.8MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016903877258301 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',232522),(298,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619630161.8427000000,1619630161.8448000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 18:16:01. Current memory use 35.9MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.00098299980163574 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',232522),(299,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619630161.8572000000,1619630161.8583000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 18:16:01. Current memory use 35.9MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00015401840209961 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',232522),(300,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619630161.8665000000,1619630161.8732000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 18:16:01. Current memory use 35.9MB.\n\n0 feeds refreshed (took 0.00032299999999996 seconds)\n... used 1 dbqueries\n... used 0.0056891441345215 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',232522),(301,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619630161.8816000000,1619630161.8844000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 18:16:01. Current memory use 36.6MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014069080352783 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',232522),(302,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619630161.8927000000,1619630161.8943000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 18:16:01. Current memory use 36.5MB.\n... used 0 dbqueries\n... used 0.00031709671020508 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',232522),(303,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619630161.9078000000,1619630161.9090000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 18:16:01. Current memory use 36.5MB.\n... used 1 dbqueries\n... used 0.00026106834411621 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',232522),(304,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619630161.9193000000,1619630161.9203000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 18:16:01. Current memory use 36.6MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00039911270141602 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',232522),(305,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619630161.9342000000,1619630161.9353000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 18:16:01. Current memory use 36.6MB.\n... used 1 dbqueries\n... used 0.00036096572875977 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',232522),(306,0,'moodle','core\\task\\context_cleanup_task',0,1619631062.1413000000,1619631062.1516000000,9,1,0,'Execute scheduled task: Cleanup contexts (core\\task\\context_cleanup_task)\n... started 18:31:02. Current memory use 16MB.\n Cleaned up context instances\n... used 10 dbqueries\n... used 0.0072290897369385 seconds\nScheduled task complete: Cleanup contexts (core\\task\\context_cleanup_task)\n','dev-defaults.derekmaxson.com',235273),(307,0,'moodle','core\\task\\cache_cleanup_task',0,1619631062.1600000000,1619631062.1608000000,0,1,0,'Execute scheduled task: Remove expired cache entries (core\\task\\cache_cleanup_task)\n... started 18:31:02. Current memory use 17MB.\n... used 1 dbqueries\n... used 0.00021505355834961 seconds\nScheduled task complete: Remove expired cache entries (core\\task\\cache_cleanup_task)\n','dev-defaults.derekmaxson.com',235273),(308,0,'moodle','core\\task\\sync_plans_from_template_cohorts_task',0,1619631062.1685000000,1619631062.1770000000,1,0,0,'Execute scheduled task: Sync plans from learning plan template cohorts (core\\task\\sync_plans_from_template_cohorts_task)\n... started 18:31:02. Current memory use 17.1MB.\n... used 1 dbqueries\n... used 0.0076630115509033 seconds\nScheduled task complete: Sync plans from learning plan template cohorts (core\\task\\sync_plans_from_template_cohorts_task)\n','dev-defaults.derekmaxson.com',235273),(309,0,'moodle','core\\oauth2\\refresh_system_tokens_task',0,1619631062.1872000000,1619631062.2017000000,1,0,0,'Execute scheduled task: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n... started 18:31:02. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.013787031173706 seconds\nScheduled task complete: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n','dev-defaults.derekmaxson.com',235273),(310,0,'moodle','core\\task\\search_index_task',0,1619631062.2113000000,1619631062.2138000000,0,0,0,'Execute scheduled task: Global search indexing (core\\task\\search_index_task)\n... started 18:31:02. Current memory use 19.6MB.\n... used 0 dbqueries\n... used 0.0018570423126221 seconds\nScheduled task complete: Global search indexing (core\\task\\search_index_task)\n','dev-defaults.derekmaxson.com',235273),(311,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_course_bin',0,1619631062.2236000000,1619631062.2249000000,1,0,0,'Execute scheduled task: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n... started 18:31:02. Current memory use 19.6MB.\n... used 1 dbqueries\n... used 0.00078511238098145 seconds\nScheduled task complete: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n','dev-defaults.derekmaxson.com',235273),(312,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_category_bin',0,1619631062.2323000000,1619631062.2336000000,1,0,0,'Execute scheduled task: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n... started 18:31:02. Current memory use 19.6MB.\n... used 1 dbqueries\n... used 0.00073909759521484 seconds\nScheduled task complete: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n','dev-defaults.derekmaxson.com',235273),(313,0,'moodle','core\\task\\session_cleanup_task',0,1619631062.2415000000,1619631062.2489000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 18:31:02. Current memory use 19.9MB.\n... used 7 dbqueries\n... used 0.0058279037475586 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',235273),(314,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619631062.2586000000,1619631062.2596000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 18:31:02. Current memory use 20.2MB.\n... used 1 dbqueries\n... used 0.00032711029052734 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',235273),(315,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619631062.2676000000,1619631062.2683000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 18:31:02. Current memory use 20.2MB.\n... used 0 dbqueries\n... used 3.9100646972656E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',235273),(316,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619631062.2763000000,1619631062.3062000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 18:31:02. Current memory use 20.2MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.029345035552979 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',235273),(317,0,'moodle','core\\task\\grade_cron_task',0,1619631062.3142000000,1619631062.3157000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 18:31:02. Current memory use 23.6MB.\n... used 2 dbqueries\n... used 0.00083494186401367 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',235273),(318,0,'moodle','core\\task\\completion_regular_task',0,1619631062.3254000000,1619631062.3324000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 18:31:02. Current memory use 23.7MB.\n... used 6 dbqueries\n... used 0.0063679218292236 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',235273),(319,0,'moodle','core\\task\\portfolio_cron_task',0,1619631062.3397000000,1619631062.3403000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 18:31:02. Current memory use 24.1MB.\n... used 0 dbqueries\n... used 3.4093856811523E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',235273),(320,0,'moodle','core\\task\\plagiarism_cron_task',0,1619631062.3514000000,1619631062.3521000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 18:31:02. Current memory use 24.1MB.\n... used 0 dbqueries\n... used 3.4809112548828E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',235273),(321,0,'moodle','core\\task\\calendar_cron_task',0,1619631062.3645000000,1619631062.3683000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 18:31:02. Current memory use 24.6MB.\n... used 1 dbqueries\n... used 0.0032129287719727 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',235273),(322,0,'moodle','core\\task\\blog_cron_task',0,1619631062.3762000000,1619631062.3802000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 18:31:02. Current memory use 25MB.\n... used 2 dbqueries\n... used 0.0034139156341553 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',235273),(323,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619631062.3876000000,1619631062.4007000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 18:31:02. Current memory use 25.2MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.012427091598511 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',235273),(324,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619631062.4085000000,1619631062.4097000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 18:31:02. Current memory use 28.2MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00063085556030273 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',235273),(325,0,'moodle','core\\task\\badges_cron_task',0,1619631062.4190000000,1619631062.4228000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 18:31:02. Current memory use 28.2MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0032660961151123 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',235273),(326,0,'moodle','core\\task\\badges_message_task',0,1619631062.4305000000,1619631062.4315000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 18:31:02. Current memory use 28.5MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00034189224243164 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',235273),(327,0,'mod_assign','mod_assign\\task\\cron_task',0,1619631062.4450000000,1619631062.4713000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 18:31:02. Current memory use 29.4MB.\n... used 3 dbqueries\n... used 0.025497913360596 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',235273),(328,0,'mod_chat','mod_chat\\task\\cron_task',0,1619631062.4790000000,1619631062.4827000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 18:31:02. Current memory use 32.1MB.\n... used 4 dbqueries\n... used 0.0029270648956299 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',235273),(329,0,'mod_forum','mod_forum\\task\\cron_task',0,1619631062.5042000000,1619631062.5057000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 18:31:02. Current memory use 33.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00072312355041504 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',235273),(330,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619631062.5223000000,1619631062.5251000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 18:31:02. Current memory use 34.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0020220279693604 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',235273),(331,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619631062.5329000000,1619631062.5338000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 18:31:02. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 8.702278137207E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',235273),(332,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619631062.5412000000,1619631062.5421000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 18:31:02. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 8.2015991210938E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',235273),(333,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619631062.5524000000,1619631062.5581000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 18:31:02. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 0.0049259662628174 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',235273),(334,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619631062.5656000000,1619631062.5666000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 18:31:02. Current memory use 35MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00032401084899902 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',235273),(335,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619631062.5735000000,1619631062.5741000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 18:31:02. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 7.8201293945312E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',235273),(336,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619631062.5841000000,1619631062.5861000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 18:31:02. Current memory use 35.1MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.0003969669342041 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',235273),(337,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619631062.5940000000,1619631062.5950000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 18:31:02. Current memory use 35.1MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016283988952637 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',235273),(338,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619631062.6068000000,1619631062.6094000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 18:31:02. Current memory use 35.1MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0011792182922363 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',235273),(339,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619631062.6170000000,1619631062.6180000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 18:31:02. Current memory use 35.1MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00015711784362793 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',235273),(340,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619631062.6287000000,1619631062.6349000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 18:31:02. Current memory use 34.2MB.\n\n0 feeds refreshed (took 0.000336 seconds)\n... used 1 dbqueries\n... used 0.0056138038635254 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',235273),(341,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619631062.6464000000,1619631062.6484000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 18:31:02. Current memory use 34.9MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0013899803161621 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',235273),(342,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619631062.6576000000,1619631062.6582000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 18:31:02. Current memory use 35MB.\n... used 0 dbqueries\n... used 8.2969665527344E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',235273),(343,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619631062.6667000000,1619631062.6676000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 18:31:02. Current memory use 35.1MB.\n... used 1 dbqueries\n... used 0.00025701522827148 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',235273),(344,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619631062.6771000000,1619631062.6781000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 18:31:02. Current memory use 35.1MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00038409233093262 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',235273),(345,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619631062.6853000000,1619631062.6862000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 18:31:02. Current memory use 35.2MB.\n... used 1 dbqueries\n... used 0.00036501884460449 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',235273),(346,0,'moodle','core\\task\\messaging_cleanup_task',0,1619631961.8770000000,1619631961.8895000000,1,4,0,'Execute scheduled task: Background processing for messaging (core\\task\\messaging_cleanup_task)\n... started 18:46:01. Current memory use 16MB.\n... used 5 dbqueries\n... used 0.0093109607696533 seconds\nScheduled task complete: Background processing for messaging (core\\task\\messaging_cleanup_task)\n','dev-defaults.derekmaxson.com',238038),(347,0,'moodle','core\\task\\analytics_cleanup_task',0,1619631961.8990000000,1619631961.9574000000,20,3,0,'Execute scheduled task: Analytics cleanup (core\\task\\analytics_cleanup_task)\n... started 18:46:01. Current memory use 17.4MB.\n... used 23 dbqueries\n... used 0.057687044143677 seconds\nScheduled task complete: Analytics cleanup (core\\task\\analytics_cleanup_task)\n','dev-defaults.derekmaxson.com',238038),(348,0,'moodle','core\\task\\session_cleanup_task',0,1619631961.9719000000,1619631961.9772000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 18:46:01. Current memory use 23.1MB.\n... used 7 dbqueries\n... used 0.004673957824707 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',238038),(349,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619631961.9862000000,1619631961.9873000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 18:46:01. Current memory use 23.3MB.\n... used 1 dbqueries\n... used 0.00031495094299316 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',238038),(350,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619631961.9968000000,1619631961.9975000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 18:46:01. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 3.3855438232422E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',238038),(351,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619631962.0076000000,1619631962.0308000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 18:46:02. Current memory use 23.5MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.022558212280273 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',238038),(352,0,'moodle','core\\task\\grade_cron_task',0,1619631962.0443000000,1619631962.0459000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 18:46:02. Current memory use 26MB.\n... used 2 dbqueries\n... used 0.00089597702026367 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',238038),(353,0,'moodle','core\\task\\completion_regular_task',0,1619631962.0561000000,1619631962.0610000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 18:46:02. Current memory use 26.1MB.\n... used 6 dbqueries\n... used 0.0044550895690918 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',238038),(354,0,'moodle','core\\task\\portfolio_cron_task',0,1619631962.0706000000,1619631962.0712000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 18:46:02. Current memory use 26.2MB.\n... used 0 dbqueries\n... used 3.0040740966797E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',238038),(355,0,'moodle','core\\task\\plagiarism_cron_task',0,1619631962.0847000000,1619631962.0852000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 18:46:02. Current memory use 26.3MB.\n... used 0 dbqueries\n... used 2.8133392333984E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',238038),(356,0,'moodle','core\\task\\calendar_cron_task',0,1619631962.0941000000,1619631962.0977000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 18:46:02. Current memory use 26.3MB.\n... used 1 dbqueries\n... used 0.0031709671020508 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',238038),(357,0,'moodle','core\\task\\blog_cron_task',0,1619631962.1078000000,1619631962.1110000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 18:46:02. Current memory use 26.7MB.\n... used 2 dbqueries\n... used 0.0027308464050293 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',238038),(358,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619631962.1201000000,1619631962.1320000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 18:46:02. Current memory use 26.9MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.011454105377197 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',238038),(359,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619631962.1455000000,1619631962.1468000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 18:46:02. Current memory use 28.6MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00067400932312012 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',238038),(360,0,'moodle','core\\task\\badges_cron_task',0,1619631962.1559000000,1619631962.1605000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 18:46:02. Current memory use 28.6MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0040960311889648 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',238038),(361,0,'moodle','core\\task\\badges_message_task',0,1619631962.1704000000,1619631962.1713000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 18:46:02. Current memory use 30.1MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00025200843811035 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',238038),(362,0,'mod_assign','mod_assign\\task\\cron_task',0,1619631962.1846000000,1619631962.2099000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 18:46:02. Current memory use 31.2MB.\n... used 3 dbqueries\n... used 0.024679183959961 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',238038),(363,0,'mod_chat','mod_chat\\task\\cron_task',0,1619631962.2223000000,1619631962.2258000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 18:46:02. Current memory use 34MB.\n... used 4 dbqueries\n... used 0.0027318000793457 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',238038),(364,0,'mod_forum','mod_forum\\task\\cron_task',0,1619631962.2423000000,1619631962.2437000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 18:46:02. Current memory use 35.2MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00064396858215332 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',238038),(365,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619631962.2597000000,1619631962.2623000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 18:46:02. Current memory use 36.3MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.00193190574646 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',238038),(366,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619631962.2713000000,1619631962.2721000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 18:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 7.8916549682617E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',238038),(367,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619631962.2805000000,1619631962.2813000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 18:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 7.7962875366211E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',238038),(368,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619631962.2918000000,1619631962.2976000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 18:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 0.0052490234375 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',238038),(369,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619631962.3112000000,1619631962.3123000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 18:46:02. Current memory use 36.9MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.0003209114074707 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',238038),(370,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619631962.3194000000,1619631962.3200000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 18:46:02. Current memory use 36.9MB.\n... used 0 dbqueries\n... used 7.2956085205078E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',238038),(371,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619631962.3281000000,1619631962.3298000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 18:46:02. Current memory use 36.9MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00038504600524902 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',238038),(372,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619631962.3405000000,1619631962.3414000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 18:46:02. Current memory use 36.9MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016617774963379 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',238038),(373,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619631962.3496000000,1619631962.3522000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 18:46:02. Current memory use 36.9MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0011589527130127 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',238038),(374,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619631962.3636000000,1619631962.3645000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 18:46:02. Current memory use 36.9MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00014781951904297 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',238038),(375,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619631962.3770000000,1619631962.3832000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 18:46:02. Current memory use 35.7MB.\n\n0 feeds refreshed (took 0.00024600000000002 seconds)\n... used 1 dbqueries\n... used 0.0057978630065918 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',238038),(376,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619631962.3925000000,1619631962.3942000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 18:46:02. Current memory use 36.8MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0012428760528564 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',238038),(377,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619631962.4014000000,1619631962.4019000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 18:46:02. Current memory use 36.9MB.\n... used 0 dbqueries\n... used 8.0108642578125E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',238038),(378,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619631962.4098000000,1619631962.4104000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 18:46:02. Current memory use 37MB.\n... used 1 dbqueries\n... used 0.00023007392883301 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',238038),(379,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619631962.4184000000,1619631962.4191000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 18:46:02. Current memory use 37MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.0003669261932373 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',238038),(380,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619631962.4289000000,1619631962.4298000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 18:46:02. Current memory use 37MB.\n... used 1 dbqueries\n... used 0.00035309791564941 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',238038),(381,0,'moodle','core\\task\\password_reset_cleanup_task',0,1619632861.6054000000,1619632861.6132000000,0,1,0,'Execute scheduled task: Cleanup password reset attempts (core\\task\\password_reset_cleanup_task)\n... started 19:01:01. Current memory use 15.2MB.\n Cleaned up old password reset records\n... used 1 dbqueries\n... used 0.0040559768676758 seconds\nScheduled task complete: Cleanup password reset attempts (core\\task\\password_reset_cleanup_task)\n','dev-defaults.derekmaxson.com',240782),(382,0,'moodle','core\\task\\delete_unconfirmed_users_task',0,1619632861.6359000000,1619632861.6376000000,1,0,0,'Execute scheduled task: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n... started 19:01:01. Current memory use 16.6MB.\n... used 1 dbqueries\n... used 0.00045514106750488 seconds\nScheduled task complete: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n','dev-defaults.derekmaxson.com',240782),(383,0,'moodle','core\\task\\cache_cron_task',0,1619632861.6454000000,1619632861.6463000000,0,0,0,'Execute scheduled task: Background processing for caches (core\\task\\cache_cron_task)\n... started 19:01:01. Current memory use 16.7MB.\nCleaning up stale session data from cache stores.\n... used 0 dbqueries\n... used 0.00026702880859375 seconds\nScheduled task complete: Background processing for caches (core\\task\\cache_cron_task)\n','dev-defaults.derekmaxson.com',240782),(384,0,'moodle','core\\task\\automated_backup_task',0,1619632861.6565000000,1619632861.8005000000,0,0,0,'Execute scheduled task: Automated backups (core\\task\\automated_backup_task)\n... started 19:01:01. Current memory use 16.7MB.\nChecking automated backup status...INACTIVE\n... used 0 dbqueries\n... used 0.1433961391449 seconds\nScheduled task complete: Automated backups (core\\task\\automated_backup_task)\n','dev-defaults.derekmaxson.com',240782),(385,0,'moodle','core\\task\\search_index_task',0,1619632861.8095000000,1619632861.8122000000,0,0,0,'Execute scheduled task: Global search indexing (core\\task\\search_index_task)\n... started 19:01:01. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 0.0020549297332764 seconds\nScheduled task complete: Global search indexing (core\\task\\search_index_task)\n','dev-defaults.derekmaxson.com',240782),(386,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_course_bin',0,1619632861.8250000000,1619632861.8265000000,1,0,0,'Execute scheduled task: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n... started 19:01:01. Current memory use 36.6MB.\n... used 1 dbqueries\n... used 0.00091910362243652 seconds\nScheduled task complete: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n','dev-defaults.derekmaxson.com',240782),(387,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_category_bin',0,1619632861.8352000000,1619632861.8366000000,1,0,0,'Execute scheduled task: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n... started 19:01:01. Current memory use 36.6MB.\n... used 1 dbqueries\n... used 0.00074315071105957 seconds\nScheduled task complete: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n','dev-defaults.derekmaxson.com',240782),(388,0,'moodle','core\\task\\session_cleanup_task',0,1619632861.8446000000,1619632861.8507000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 19:01:01. Current memory use 36.9MB.\n... used 7 dbqueries\n... used 0.0046248435974121 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',240782),(389,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619632861.8624000000,1619632861.8634000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 19:01:01. Current memory use 37.2MB.\n... used 1 dbqueries\n... used 0.0003049373626709 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',240782),(390,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619632861.8732000000,1619632861.8739000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 19:01:01. Current memory use 37.2MB.\n... used 0 dbqueries\n... used 3.9100646972656E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',240782),(391,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619632861.8828000000,1619632861.8971000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 19:01:01. Current memory use 37.3MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.0136399269104 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',240782),(392,0,'moodle','core\\task\\grade_cron_task',0,1619632861.9076000000,1619632861.9092000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 19:01:01. Current memory use 38.7MB.\n... used 2 dbqueries\n... used 0.00090503692626953 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',240782),(393,0,'moodle','core\\task\\completion_regular_task',0,1619632861.9178000000,1619632861.9235000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 19:01:01. Current memory use 38.7MB.\n... used 6 dbqueries\n... used 0.0049488544464111 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',240782),(394,0,'moodle','core\\task\\portfolio_cron_task',0,1619632861.9318000000,1619632861.9325000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 19:01:01. Current memory use 39MB.\n... used 0 dbqueries\n... used 3.3855438232422E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',240782),(395,0,'moodle','core\\task\\plagiarism_cron_task',0,1619632861.9407000000,1619632861.9413000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 19:01:01. Current memory use 39MB.\n... used 0 dbqueries\n... used 3.6001205444336E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',240782),(396,0,'moodle','core\\task\\calendar_cron_task',0,1619632861.9496000000,1619632861.9537000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 19:01:01. Current memory use 39MB.\n... used 1 dbqueries\n... used 0.0033500194549561 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',240782),(397,0,'moodle','core\\task\\blog_cron_task',0,1619632861.9643000000,1619632861.9687000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 19:01:01. Current memory use 39.4MB.\n... used 2 dbqueries\n... used 0.0037519931793213 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',240782),(398,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619632861.9765000000,1619632861.9781000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 19:01:01. Current memory use 39.6MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.0009920597076416 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',240782),(399,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619632861.9860000000,1619632861.9874000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 19:01:01. Current memory use 39.6MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00076794624328613 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',240782),(400,0,'moodle','core\\task\\badges_cron_task',0,1619632861.9960000000,1619632862.0002000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 19:01:01. Current memory use 39.6MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0035839080810547 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',240782),(401,0,'moodle','core\\task\\badges_message_task',0,1619632862.0141000000,1619632862.0152000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 19:01:02. Current memory use 39.9MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00035190582275391 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',240782),(402,0,'mod_assign','mod_assign\\task\\cron_task',0,1619632862.0310000000,1619632862.0396000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 19:01:02. Current memory use 40.8MB.\n... used 3 dbqueries\n... used 0.0078001022338867 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',240782),(403,0,'mod_chat','mod_chat\\task\\cron_task',0,1619632862.0482000000,1619632862.0500000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 19:01:02. Current memory use 41.4MB.\n... used 4 dbqueries\n... used 0.00099515914916992 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',240782),(404,0,'mod_forum','mod_forum\\task\\cron_task',0,1619632862.0583000000,1619632862.0597000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 19:01:02. Current memory use 41.5MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00066304206848145 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',240782),(405,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619632862.0736000000,1619632862.0764000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 19:01:02. Current memory use 42.3MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0019750595092773 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',240782),(406,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619632862.0836000000,1619632862.0844000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 19:01:02. Current memory use 42.4MB.\n... used 0 dbqueries\n... used 7.6055526733398E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',240782),(407,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619632862.0955000000,1619632862.0962000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 19:01:02. Current memory use 42.4MB.\n... used 0 dbqueries\n... used 7.2002410888672E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',240782),(408,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619632862.1031000000,1619632862.1069000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 19:01:02. Current memory use 42.4MB.\n... used 0 dbqueries\n... used 0.00319504737854 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',240782),(409,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619632862.1172000000,1619632862.1184000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 19:01:02. Current memory use 42.7MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00041890144348145 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',240782),(410,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619632862.1262000000,1619632862.1269000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 19:01:02. Current memory use 42.7MB.\n... used 0 dbqueries\n... used 7.5101852416992E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',240782),(411,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619632862.1344000000,1619632862.1360000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 19:01:02. Current memory use 42.7MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00035619735717773 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',240782),(412,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619632862.1463000000,1619632862.1470000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 19:01:02. Current memory use 42.7MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00014495849609375 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',240782),(413,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619632862.1545000000,1619632862.1566000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 19:01:02. Current memory use 42.7MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0010819435119629 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',240782),(414,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619632862.1640000000,1619632862.1648000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 19:01:02. Current memory use 42.7MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00012898445129395 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',240782),(415,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619632862.1749000000,1619632862.1812000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 19:01:02. Current memory use 41.8MB.\n\n0 feeds refreshed (took 0.00026699999999999 seconds)\n... used 1 dbqueries\n... used 0.0057470798492432 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',240782),(416,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619632862.1902000000,1619632862.1920000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 19:01:02. Current memory use 42.5MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0013220310211182 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',240782),(417,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619632862.1994000000,1619632862.2000000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 19:01:02. Current memory use 42.7MB.\n... used 0 dbqueries\n... used 7.9154968261719E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',240782),(418,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619632862.2129000000,1619632862.2137000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 19:01:02. Current memory use 42.7MB.\n... used 1 dbqueries\n... used 0.00023412704467773 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',240782),(419,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619632862.2208000000,1619632862.2215000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 19:01:02. Current memory use 42.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00034499168395996 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',240782),(420,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619632862.2289000000,1619632862.2297000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 19:01:02. Current memory use 42.8MB.\n... used 1 dbqueries\n... used 0.00035190582275391 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',240782),(421,0,'moodle','core\\task\\delete_incomplete_users_task',0,1619633761.4294000000,1619633761.4364000000,0,0,0,'Execute scheduled task: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n... started 19:16:01. Current memory use 16MB.\n... used 0 dbqueries\n... used 0.0037319660186768 seconds\nScheduled task complete: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n','dev-defaults.derekmaxson.com',243565),(422,0,'moodle','core\\task\\backup_cleanup_task',0,1619633761.4521000000,1619633761.4533000000,1,0,0,'Execute scheduled task: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n... started 19:16:01. Current memory use 16.9MB.\n... used 1 dbqueries\n... used 0.00049304962158203 seconds\nScheduled task complete: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n','dev-defaults.derekmaxson.com',243565),(423,0,'moodle','core\\task\\complete_plans_task',0,1619633761.4644000000,1619633761.4715000000,1,0,0,'Execute scheduled task: Complete learning plans which are due (core\\task\\complete_plans_task)\n... started 19:16:01. Current memory use 17MB.\n... used 1 dbqueries\n... used 0.0062651634216309 seconds\nScheduled task complete: Complete learning plans which are due (core\\task\\complete_plans_task)\n','dev-defaults.derekmaxson.com',243565),(424,0,'qtype_random','qtype_random\\task\\remove_unused_questions',0,1619633761.4829000000,1619633761.5070000000,1,0,0,'Execute scheduled task: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n... started 19:16:01. Current memory use 17.9MB.\nCleaned up 0 unused random questions.\n... used 1 dbqueries\n... used 0.023440837860107 seconds\nScheduled task complete: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n','dev-defaults.derekmaxson.com',243565),(425,0,'enrol_flatfile','enrol_flatfile\\task\\flatfile_sync_task',0,1619633761.5181000000,1619633761.5217000000,2,0,0,'Execute scheduled task: Flat file enrolment sync (enrol_flatfile\\task\\flatfile_sync_task)\n... started 19:16:01. Current memory use 21.1MB.\n... used 2 dbqueries\n... used 0.0022060871124268 seconds\nScheduled task complete: Flat file enrolment sync (enrol_flatfile\\task\\flatfile_sync_task)\n','dev-defaults.derekmaxson.com',243565),(426,0,'tool_cohortroles','tool_cohortroles\\task\\cohort_role_sync',0,1619633761.5457000000,1619633761.5511000000,3,1,0,'Execute scheduled task: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n... started 19:16:01. Current memory use 20.9MB.\nSync cohort roles...\nAdded 0\nRemoved 0\n... used 4 dbqueries\n... used 0.0046792030334473 seconds\nScheduled task complete: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n','dev-defaults.derekmaxson.com',243565),(427,0,'moodle','core\\task\\session_cleanup_task',0,1619633761.5611000000,1619633761.5672000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 19:16:01. Current memory use 21.6MB.\n... used 7 dbqueries\n... used 0.00453782081604 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',243565),(428,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619633761.5766000000,1619633761.5778000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 19:16:01. Current memory use 21.9MB.\n... used 1 dbqueries\n... used 0.00037288665771484 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',243565),(429,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619633761.5891000000,1619633761.5898000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 19:16:01. Current memory use 22MB.\n... used 0 dbqueries\n... used 3.4093856811523E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',243565),(430,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619633761.5982000000,1619633761.6288000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 19:16:01. Current memory use 22MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.029860973358154 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',243565),(431,0,'moodle','core\\task\\grade_cron_task',0,1619633761.6379000000,1619633761.6397000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 19:16:01. Current memory use 25.3MB.\n... used 2 dbqueries\n... used 0.00094485282897949 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',243565),(432,0,'moodle','core\\task\\completion_regular_task',0,1619633761.6504000000,1619633761.6579000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 19:16:01. Current memory use 25.3MB.\n... used 6 dbqueries\n... used 0.0067880153656006 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',243565),(433,0,'moodle','core\\task\\portfolio_cron_task',0,1619633761.6662000000,1619633761.6669000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 19:16:01. Current memory use 25.7MB.\n... used 0 dbqueries\n... used 3.6001205444336E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',243565),(434,0,'moodle','core\\task\\plagiarism_cron_task',0,1619633761.6746000000,1619633761.6753000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 19:16:01. Current memory use 25.7MB.\n... used 0 dbqueries\n... used 3.4809112548828E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',243565),(435,0,'moodle','core\\task\\calendar_cron_task',0,1619633761.6952000000,1619633761.6991000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 19:16:01. Current memory use 26.2MB.\n... used 1 dbqueries\n... used 0.0032129287719727 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',243565),(436,0,'moodle','core\\task\\blog_cron_task',0,1619633761.7068000000,1619633761.7112000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 19:16:01. Current memory use 26.6MB.\n... used 2 dbqueries\n... used 0.0037741661071777 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',243565),(437,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619633761.7186000000,1619633761.7202000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 19:16:01. Current memory use 28.1MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.0009300708770752 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',243565),(438,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619633761.7302000000,1619633761.7316000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 19:16:01. Current memory use 28.1MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00065207481384277 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',243565),(439,0,'moodle','core\\task\\badges_cron_task',0,1619633761.7425000000,1619633761.7466000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 19:16:01. Current memory use 28.1MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0034089088439941 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',243565),(440,0,'moodle','core\\task\\badges_message_task',0,1619633761.7547000000,1619633761.7557000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 19:16:01. Current memory use 28.5MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.0003199577331543 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',243565),(441,0,'mod_assign','mod_assign\\task\\cron_task',0,1619633761.7698000000,1619633761.7970000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 19:16:01. Current memory use 29.4MB.\n... used 3 dbqueries\n... used 0.026336193084717 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',243565),(442,0,'mod_chat','mod_chat\\task\\cron_task',0,1619633761.8070000000,1619633761.8111000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 19:16:01. Current memory use 32.2MB.\n... used 4 dbqueries\n... used 0.0030608177185059 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',243565),(443,0,'mod_forum','mod_forum\\task\\cron_task',0,1619633761.8335000000,1619633761.8350000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 19:16:01. Current memory use 33.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00069403648376465 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',243565),(444,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619633761.8528000000,1619633761.8555000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 19:16:01. Current memory use 34.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0020020008087158 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',243565),(445,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619633761.8665000000,1619633761.8677000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 19:16:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 8.702278137207E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',243565),(446,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619633761.8784000000,1619633761.8795000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 19:16:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 8.392333984375E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',243565),(447,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619633761.8946000000,1619633761.9009000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 19:16:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 0.0052769184112549 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',243565),(448,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619633761.9098000000,1619633761.9110000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 19:16:01. Current memory use 35.1MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.0004279613494873 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',243565),(449,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619633761.9218000000,1619633761.9227000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 19:16:01. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',243565),(450,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619633761.9344000000,1619633761.9365000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 19:16:01. Current memory use 35.1MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.0003960132598877 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',243565),(451,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619633761.9454000000,1619633761.9465000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 19:16:01. Current memory use 35.1MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00015997886657715 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',243565),(452,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619633761.9551000000,1619633761.9580000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 19:16:01. Current memory use 35.1MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0012459754943848 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',243565),(453,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619633761.9667000000,1619633761.9678000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 19:16:01. Current memory use 35.1MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00015020370483398 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',243565),(454,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619633761.9825000000,1619633761.9894000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 19:16:01. Current memory use 34.1MB.\n\n0 feeds refreshed (took 0.00033699999999992 seconds)\n... used 1 dbqueries\n... used 0.006072998046875 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',243565),(455,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619633761.9984000000,1619633762.0005000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 19:16:01. Current memory use 34.9MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0015079975128174 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',243565),(456,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619633762.0095000000,1619633762.0102000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 19:16:02. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 8.6069107055664E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',243565),(457,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619633762.0207000000,1619633762.0218000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 19:16:02. Current memory use 35.1MB.\n... used 1 dbqueries\n... used 0.00027799606323242 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',243565),(458,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619633762.0300000000,1619633762.0310000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 19:16:02. Current memory use 35.1MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00041103363037109 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',243565),(459,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619633762.0391000000,1619633762.0401000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 19:16:02. Current memory use 35.2MB.\n... used 1 dbqueries\n... used 0.00040602684020996 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',243565),(460,0,'moodle','core\\task\\context_cleanup_task',0,1619634661.3163000000,1619634661.3264000000,9,1,0,'Execute scheduled task: Cleanup contexts (core\\task\\context_cleanup_task)\n... started 19:31:01. Current memory use 16MB.\n Cleaned up context instances\n... used 10 dbqueries\n... used 0.0071179866790771 seconds\nScheduled task complete: Cleanup contexts (core\\task\\context_cleanup_task)\n','dev-defaults.derekmaxson.com',246322),(461,0,'moodle','core\\task\\cache_cleanup_task',0,1619634661.3338000000,1619634661.3346000000,0,1,0,'Execute scheduled task: Remove expired cache entries (core\\task\\cache_cleanup_task)\n... started 19:31:01. Current memory use 17MB.\n... used 1 dbqueries\n... used 0.00025486946105957 seconds\nScheduled task complete: Remove expired cache entries (core\\task\\cache_cleanup_task)\n','dev-defaults.derekmaxson.com',246322),(462,0,'moodle','core\\task\\sync_plans_from_template_cohorts_task',0,1619634661.3443000000,1619634661.3520000000,1,0,0,'Execute scheduled task: Sync plans from learning plan template cohorts (core\\task\\sync_plans_from_template_cohorts_task)\n... started 19:31:01. Current memory use 17.1MB.\n... used 1 dbqueries\n... used 0.0071589946746826 seconds\nScheduled task complete: Sync plans from learning plan template cohorts (core\\task\\sync_plans_from_template_cohorts_task)\n','dev-defaults.derekmaxson.com',246322),(463,0,'moodle','core\\oauth2\\refresh_system_tokens_task',0,1619634661.3595000000,1619634661.3727000000,1,0,0,'Execute scheduled task: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n... started 19:31:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.012621164321899 seconds\nScheduled task complete: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n','dev-defaults.derekmaxson.com',246322),(464,0,'moodle','core\\task\\search_index_task',0,1619634661.3825000000,1619634661.3846000000,0,0,0,'Execute scheduled task: Global search indexing (core\\task\\search_index_task)\n... started 19:31:01. Current memory use 19.6MB.\n... used 0 dbqueries\n... used 0.0015749931335449 seconds\nScheduled task complete: Global search indexing (core\\task\\search_index_task)\n','dev-defaults.derekmaxson.com',246322),(465,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_course_bin',0,1619634661.3944000000,1619634661.3955000000,1,0,0,'Execute scheduled task: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n... started 19:31:01. Current memory use 19.6MB.\n... used 1 dbqueries\n... used 0.00071001052856445 seconds\nScheduled task complete: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n','dev-defaults.derekmaxson.com',246322),(466,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_category_bin',0,1619634661.4027000000,1619634661.4038000000,1,0,0,'Execute scheduled task: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n... started 19:31:01. Current memory use 19.6MB.\n... used 1 dbqueries\n... used 0.00064182281494141 seconds\nScheduled task complete: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n','dev-defaults.derekmaxson.com',246322),(467,0,'moodle','core\\task\\session_cleanup_task',0,1619634661.4129000000,1619634661.4195000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 19:31:01. Current memory use 19.9MB.\n... used 7 dbqueries\n... used 0.0054728984832764 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',246322),(468,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619634661.4265000000,1619634661.4273000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 19:31:01. Current memory use 20.2MB.\n... used 1 dbqueries\n... used 0.00029492378234863 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',246322),(469,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619634661.4341000000,1619634661.4345000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 19:31:01. Current memory use 20.2MB.\n... used 0 dbqueries\n... used 2.0980834960938E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',246322),(470,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619634661.4418000000,1619634661.4704000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 19:31:01. Current memory use 20.2MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.028185129165649 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',246322),(471,0,'moodle','core\\task\\grade_cron_task',0,1619634661.4820000000,1619634661.4835000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 19:31:01. Current memory use 23.6MB.\n... used 2 dbqueries\n... used 0.00085687637329102 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',246322),(472,0,'moodle','core\\task\\completion_regular_task',0,1619634661.4904000000,1619634661.4967000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 19:31:01. Current memory use 23.7MB.\n... used 6 dbqueries\n... used 0.0058870315551758 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',246322),(473,0,'moodle','core\\task\\portfolio_cron_task',0,1619634661.5035000000,1619634661.5039000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 19:31:01. Current memory use 24.1MB.\n... used 0 dbqueries\n... used 2.0980834960938E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',246322),(474,0,'moodle','core\\task\\plagiarism_cron_task',0,1619634661.5116000000,1619634661.5120000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 19:31:01. Current memory use 24.1MB.\n... used 0 dbqueries\n... used 2.0980834960938E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',246322),(475,0,'moodle','core\\task\\calendar_cron_task',0,1619634661.5280000000,1619634661.5315000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 19:31:01. Current memory use 24.6MB.\n... used 1 dbqueries\n... used 0.0030210018157959 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',246322),(476,0,'moodle','core\\task\\blog_cron_task',0,1619634661.5383000000,1619634661.5418000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 19:31:01. Current memory use 25MB.\n... used 2 dbqueries\n... used 0.003140926361084 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',246322),(477,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619634661.5488000000,1619634661.5605000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 19:31:01. Current memory use 25.2MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.011299133300781 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',246322),(478,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619634661.5698000000,1619634661.5710000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 19:31:01. Current memory use 28.2MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00061202049255371 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',246322),(479,0,'moodle','core\\task\\badges_cron_task',0,1619634661.5785000000,1619634661.5821000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 19:31:01. Current memory use 28.2MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0032060146331787 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',246322),(480,0,'moodle','core\\task\\badges_message_task',0,1619634661.5897000000,1619634661.5905000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 19:31:01. Current memory use 28.5MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00029993057250977 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',246322),(481,0,'mod_assign','mod_assign\\task\\cron_task',0,1619634661.6056000000,1619634661.6309000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 19:31:01. Current memory use 29.4MB.\n... used 3 dbqueries\n... used 0.024749040603638 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',246322),(482,0,'mod_chat','mod_chat\\task\\cron_task',0,1619634661.6385000000,1619634661.6417000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 19:31:01. Current memory use 32.1MB.\n... used 4 dbqueries\n... used 0.0024600028991699 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',246322),(483,0,'mod_forum','mod_forum\\task\\cron_task',0,1619634661.6568000000,1619634661.6579000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 19:31:01. Current memory use 33.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.0005500316619873 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',246322),(484,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619634661.6731000000,1619634661.6758000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 19:31:01. Current memory use 34.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0019600391387939 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',246322),(485,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619634661.6827000000,1619634661.6834000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 19:31:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 7.2002410888672E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',246322),(486,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619634661.6954000000,1619634661.6962000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 19:31:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 7.1048736572266E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',246322),(487,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619634661.7037000000,1619634661.7092000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 19:31:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 0.0049221515655518 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',246322),(488,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619634661.7191000000,1619634661.7201000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 19:31:01. Current memory use 35MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00034403800964355 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',246322),(489,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619634661.7295000000,1619634661.7303000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 19:31:01. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 8.702278137207E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',246322),(490,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619634661.7383000000,1619634661.7400000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 19:31:01. Current memory use 35.1MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00037407875061035 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',246322),(491,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619634661.7476000000,1619634661.7483000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 19:31:01. Current memory use 35.1MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00014615058898926 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',246322),(492,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619634661.7552000000,1619634661.7573000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 19:31:01. Current memory use 35.1MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.001147985458374 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',246322),(493,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619634661.7665000000,1619634661.7675000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 19:31:01. Current memory use 35.1MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00015401840209961 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',246322),(494,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619634661.7778000000,1619634661.7841000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 19:31:01. Current memory use 34.2MB.\n\n0 feeds refreshed (took 0.00024900000000005 seconds)\n... used 1 dbqueries\n... used 0.0057430267333984 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',246322),(495,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619634661.7912000000,1619634661.7930000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 19:31:01. Current memory use 34.9MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0012309551239014 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',246322),(496,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619634661.7996000000,1619634661.8001000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 19:31:01. Current memory use 35MB.\n... used 0 dbqueries\n... used 7.4863433837891E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',246322),(497,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619634661.8116000000,1619634661.8123000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 19:31:01. Current memory use 35.1MB.\n... used 1 dbqueries\n... used 0.00024199485778809 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',246322),(498,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619634661.8204000000,1619634661.8211000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 19:31:01. Current memory use 35.1MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00037002563476562 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',246322),(499,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619634661.8320000000,1619634661.8329000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 19:31:01. Current memory use 35.2MB.\n... used 1 dbqueries\n... used 0.00039410591125488 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',246322),(500,0,'moodle','core\\task\\messaging_cleanup_task',0,1619635562.0213000000,1619635562.0327000000,1,4,0,'Execute scheduled task: Background processing for messaging (core\\task\\messaging_cleanup_task)\n... started 19:46:02. Current memory use 16MB.\n... used 5 dbqueries\n... used 0.0082101821899414 seconds\nScheduled task complete: Background processing for messaging (core\\task\\messaging_cleanup_task)\n','dev-defaults.derekmaxson.com',249110),(501,0,'moodle','core\\task\\analytics_cleanup_task',0,1619635562.0414000000,1619635562.0978000000,20,3,0,'Execute scheduled task: Analytics cleanup (core\\task\\analytics_cleanup_task)\n... started 19:46:02. Current memory use 17.4MB.\n... used 23 dbqueries\n... used 0.055804014205933 seconds\nScheduled task complete: Analytics cleanup (core\\task\\analytics_cleanup_task)\n','dev-defaults.derekmaxson.com',249110),(502,0,'moodle','core\\task\\session_cleanup_task',0,1619635562.1078000000,1619635562.1131000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 19:46:02. Current memory use 23.1MB.\n... used 7 dbqueries\n... used 0.0047049522399902 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',249110),(503,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619635562.1231000000,1619635562.1241000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 19:46:02. Current memory use 23.3MB.\n... used 1 dbqueries\n... used 0.00031304359436035 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',249110),(504,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619635562.1317000000,1619635562.1322000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 19:46:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 3.0994415283203E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',249110),(505,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619635562.1399000000,1619635562.1629000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 19:46:02. Current memory use 23.5MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.022479772567749 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',249110),(506,0,'moodle','core\\task\\grade_cron_task',0,1619635562.1710000000,1619635562.1725000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 19:46:02. Current memory use 26MB.\n... used 2 dbqueries\n... used 0.00087094306945801 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',249110),(507,0,'moodle','core\\task\\completion_regular_task',0,1619635562.1821000000,1619635562.1870000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 19:46:02. Current memory use 26.1MB.\n... used 6 dbqueries\n... used 0.0042960643768311 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',249110),(508,0,'moodle','core\\task\\portfolio_cron_task',0,1619635562.1942000000,1619635562.1948000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 19:46:02. Current memory use 26.2MB.\n... used 0 dbqueries\n... used 3.3855438232422E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',249110),(509,0,'moodle','core\\task\\plagiarism_cron_task',0,1619635562.2021000000,1619635562.2028000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 19:46:02. Current memory use 26.3MB.\n... used 0 dbqueries\n... used 5.3882598876953E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',249110),(510,0,'moodle','core\\task\\calendar_cron_task',0,1619635562.2099000000,1619635562.2135000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 19:46:02. Current memory use 26.3MB.\n... used 1 dbqueries\n... used 0.0031158924102783 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',249110),(511,0,'moodle','core\\task\\blog_cron_task',0,1619635562.2208000000,1619635562.2243000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 19:46:02. Current memory use 26.7MB.\n... used 2 dbqueries\n... used 0.0029840469360352 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',249110),(512,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619635562.2333000000,1619635562.2464000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 19:46:02. Current memory use 26.9MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.012427091598511 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',249110),(513,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619635562.2546000000,1619635562.2558000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 19:46:02. Current memory use 28.6MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00060510635375977 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',249110),(514,0,'moodle','core\\task\\badges_cron_task',0,1619635562.2652000000,1619635562.2700000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 19:46:02. Current memory use 28.6MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0041928291320801 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',249110),(515,0,'moodle','core\\task\\badges_message_task',0,1619635562.2789000000,1619635562.2798000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 19:46:02. Current memory use 30.1MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00025510787963867 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',249110),(516,0,'mod_assign','mod_assign\\task\\cron_task',0,1619635562.2925000000,1619635562.3186000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 19:46:02. Current memory use 31.2MB.\n... used 3 dbqueries\n... used 0.025357961654663 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',249110),(517,0,'mod_chat','mod_chat\\task\\cron_task',0,1619635562.3278000000,1619635562.3314000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 19:46:02. Current memory use 34MB.\n... used 4 dbqueries\n... used 0.0028460025787354 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',249110),(518,0,'mod_forum','mod_forum\\task\\cron_task',0,1619635562.3496000000,1619635562.3511000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 19:46:02. Current memory use 35.2MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00075483322143555 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',249110),(519,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619635562.3721000000,1619635562.3749000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 19:46:02. Current memory use 36.3MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0019989013671875 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',249110),(520,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619635562.3833000000,1619635562.3842000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 19:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 8.2015991210938E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',249110),(521,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619635562.3919000000,1619635562.3926000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 19:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 6.9141387939453E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',249110),(522,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619635562.4033000000,1619635562.4090000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 19:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 0.0049300193786621 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',249110),(523,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619635562.4189000000,1619635562.4200000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 19:46:02. Current memory use 36.9MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00034189224243164 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',249110),(524,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619635562.4280000000,1619635562.4288000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 19:46:02. Current memory use 36.9MB.\n... used 0 dbqueries\n... used 7.9870223999023E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',249110),(525,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619635562.4375000000,1619635562.4392000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 19:46:02. Current memory use 36.9MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00037693977355957 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',249110),(526,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619635562.4474000000,1619635562.4483000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 19:46:02. Current memory use 36.9MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016498565673828 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',249110),(527,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619635562.4591000000,1619635562.4617000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 19:46:02. Current memory use 36.9MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0011358261108398 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',249110),(528,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619635562.4697000000,1619635562.4706000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 19:46:02. Current memory use 36.9MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.0001521110534668 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',249110),(529,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619635562.4883000000,1619635562.4945000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 19:46:02. Current memory use 35.7MB.\n\n0 feeds refreshed (took 0.00030799999999997 seconds)\n... used 1 dbqueries\n... used 0.005634069442749 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',249110),(530,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619635562.5058000000,1619635562.5078000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 19:46:02. Current memory use 36.8MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014300346374512 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',249110),(531,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619635562.5197000000,1619635562.5203000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 19:46:02. Current memory use 36.9MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',249110),(532,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619635562.5288000000,1619635562.5296000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 19:46:02. Current memory use 37MB.\n... used 1 dbqueries\n... used 0.00024318695068359 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',249110),(533,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619635562.5381000000,1619635562.5390000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 19:46:02. Current memory use 37MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.0004119873046875 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',249110),(534,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619635562.5503000000,1619635562.5513000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 19:46:02. Current memory use 37MB.\n... used 1 dbqueries\n... used 0.00039815902709961 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',249110),(535,0,'moodle','core\\task\\file_temp_cleanup_task',0,1619636461.7299000000,1619636461.7381000000,0,0,0,'Execute scheduled task: Delete stale temp files (core\\task\\file_temp_cleanup_task)\n... started 20:01:01. Current memory use 15.2MB.\n... used 0 dbqueries\n... used 0.0046749114990234 seconds\nScheduled task complete: Delete stale temp files (core\\task\\file_temp_cleanup_task)\n','dev-defaults.derekmaxson.com',251838),(536,0,'moodle','core\\task\\file_trash_cleanup_task',0,1619636461.7452000000,1619636461.7614000000,4,1,0,'Execute scheduled task: Cleanup files in trash (core\\task\\file_trash_cleanup_task)\n... started 20:01:01. Current memory use 16.1MB.\nDeleting old draft files... ... started 20:01:01. Current memory use 17.8MB.\ndone.\nDeleting orphaned preview, and document conversion files... ... started 20:01:01. Current memory use 17.8MB.\ndone.\nCleaning up files from deleted contexts... ... started 20:01:01. Current memory use 17.8MB.\ndone.\nCall filesystem cron tasks.... started 20:01:01. Current memory use 17.8MB.\ndone.\n... used 5 dbqueries\n... used 0.015806198120117 seconds\nScheduled task complete: Cleanup files in trash (core\\task\\file_trash_cleanup_task)\n','dev-defaults.derekmaxson.com',251838),(537,0,'moodle','core\\task\\check_for_updates_task',0,1619636461.7785000000,1619636461.7808000000,0,0,0,'Execute scheduled task: Check for updates (core\\task\\check_for_updates_task)\n... started 20:01:01. Current memory use 18.2MB.\nRecently fetched info about available updates is still fresh enough, skipping.\n... used 0 dbqueries\n... used 0.0010871887207031 seconds\nScheduled task complete: Check for updates (core\\task\\check_for_updates_task)\n','dev-defaults.derekmaxson.com',251838),(538,0,'moodle','core\\task\\delete_unconfirmed_users_task',0,1619636461.7930000000,1619636461.7939000000,1,0,0,'Execute scheduled task: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n... started 20:01:01. Current memory use 18.3MB.\n... used 1 dbqueries\n... used 0.00037503242492676 seconds\nScheduled task complete: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n','dev-defaults.derekmaxson.com',251838),(539,0,'moodle','core\\task\\cache_cron_task',0,1619636461.8026000000,1619636461.8033000000,0,0,0,'Execute scheduled task: Background processing for caches (core\\task\\cache_cron_task)\n... started 20:01:01. Current memory use 18.3MB.\nCleaning up stale session data from cache stores.\n... used 0 dbqueries\n... used 0.00027704238891602 seconds\nScheduled task complete: Background processing for caches (core\\task\\cache_cron_task)\n','dev-defaults.derekmaxson.com',251838),(540,0,'moodle','core\\task\\automated_backup_task',0,1619636461.8119000000,1619636461.9367000000,0,0,0,'Execute scheduled task: Automated backups (core\\task\\automated_backup_task)\n... started 20:01:01. Current memory use 18.4MB.\nChecking automated backup status...INACTIVE\n... used 0 dbqueries\n... used 0.12425303459167 seconds\nScheduled task complete: Automated backups (core\\task\\automated_backup_task)\n','dev-defaults.derekmaxson.com',251838),(541,0,'moodle','core\\task\\search_index_task',0,1619636461.9451000000,1619636461.9479000000,0,0,0,'Execute scheduled task: Global search indexing (core\\task\\search_index_task)\n... started 20:01:01. Current memory use 36.5MB.\n... used 0 dbqueries\n... used 0.002068042755127 seconds\nScheduled task complete: Global search indexing (core\\task\\search_index_task)\n','dev-defaults.derekmaxson.com',251838),(542,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_course_bin',0,1619636461.9603000000,1619636461.9617000000,1,0,0,'Execute scheduled task: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n... started 20:01:01. Current memory use 36.7MB.\n... used 1 dbqueries\n... used 0.00085902214050293 seconds\nScheduled task complete: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n','dev-defaults.derekmaxson.com',251838),(543,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_category_bin',0,1619636461.9709000000,1619636461.9723000000,1,0,0,'Execute scheduled task: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n... started 20:01:01. Current memory use 36.7MB.\n... used 1 dbqueries\n... used 0.00073409080505371 seconds\nScheduled task complete: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n','dev-defaults.derekmaxson.com',251838),(544,0,'moodle','core\\task\\session_cleanup_task',0,1619636461.9800000000,1619636461.9860000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 20:01:01. Current memory use 37.1MB.\n... used 7 dbqueries\n... used 0.0045778751373291 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',251838),(545,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619636461.9952000000,1619636461.9962000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 20:01:01. Current memory use 37.3MB.\n... used 1 dbqueries\n... used 0.00031709671020508 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',251838),(546,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619636462.0041000000,1619636462.0047000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 20:01:02. Current memory use 37.4MB.\n... used 0 dbqueries\n... used 3.6954879760742E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',251838),(547,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619636462.0131000000,1619636462.0273000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 20:01:02. Current memory use 37.4MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.013636112213135 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',251838),(548,0,'moodle','core\\task\\grade_cron_task',0,1619636462.0359000000,1619636462.0375000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 20:01:02. Current memory use 38.8MB.\n... used 2 dbqueries\n... used 0.00090909004211426 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',251838),(549,0,'moodle','core\\task\\completion_regular_task',0,1619636462.0461000000,1619636462.0514000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 20:01:02. Current memory use 38.8MB.\n... used 6 dbqueries\n... used 0.0045819282531738 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',251838),(550,0,'moodle','core\\task\\portfolio_cron_task',0,1619636462.0632000000,1619636462.0639000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 20:01:02. Current memory use 39.1MB.\n... used 0 dbqueries\n... used 3.3855438232422E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',251838),(551,0,'moodle','core\\task\\plagiarism_cron_task',0,1619636462.0720000000,1619636462.0726000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 20:01:02. Current memory use 39.1MB.\n... used 0 dbqueries\n... used 3.1948089599609E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',251838),(552,0,'moodle','core\\task\\calendar_cron_task',0,1619636462.0800000000,1619636462.0836000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 20:01:02. Current memory use 39.1MB.\n... used 1 dbqueries\n... used 0.003093957901001 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',251838),(553,0,'moodle','core\\task\\blog_cron_task',0,1619636462.0944000000,1619636462.0986000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 20:01:02. Current memory use 39.5MB.\n... used 2 dbqueries\n... used 0.0035359859466553 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',251838),(554,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619636462.1060000000,1619636462.1075000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 20:01:02. Current memory use 39.7MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.00087594985961914 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',251838),(555,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619636462.1151000000,1619636462.1164000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 20:01:02. Current memory use 39.8MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00069284439086914 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',251838),(556,0,'moodle','core\\task\\badges_cron_task',0,1619636462.1239000000,1619636462.1281000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 20:01:02. Current memory use 39.8MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0035731792449951 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',251838),(557,0,'moodle','core\\task\\badges_message_task',0,1619636462.1360000000,1619636462.1370000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 20:01:02. Current memory use 40.1MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00031304359436035 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',251838),(558,0,'mod_assign','mod_assign\\task\\cron_task',0,1619636462.1527000000,1619636462.1594000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 20:01:02. Current memory use 41MB.\n... used 3 dbqueries\n... used 0.0059688091278076 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',251838),(559,0,'mod_chat','mod_chat\\task\\cron_task',0,1619636462.1682000000,1619636462.1699000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 20:01:02. Current memory use 41.5MB.\n... used 4 dbqueries\n... used 0.00088620185852051 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',251838),(560,0,'mod_forum','mod_forum\\task\\cron_task',0,1619636462.1783000000,1619636462.1795000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 20:01:02. Current memory use 41.7MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00060701370239258 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',251838),(561,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619636462.1965000000,1619636462.1992000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 20:01:02. Current memory use 42.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0019469261169434 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',251838),(562,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619636462.2064000000,1619636462.2073000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 20:01:02. Current memory use 42.5MB.\n... used 0 dbqueries\n... used 7.7962875366211E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',251838),(563,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619636462.2178000000,1619636462.2187000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 20:01:02. Current memory use 42.5MB.\n... used 0 dbqueries\n... used 8.082389831543E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',251838),(564,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619636462.2265000000,1619636462.2305000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 20:01:02. Current memory use 42.5MB.\n... used 0 dbqueries\n... used 0.0032401084899902 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',251838),(565,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619636462.2386000000,1619636462.2397000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 20:01:02. Current memory use 42.8MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.0003509521484375 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',251838),(566,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619636462.2473000000,1619636462.2482000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 20:01:02. Current memory use 42.8MB.\n... used 0 dbqueries\n... used 8.2015991210938E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',251838),(567,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619636462.2567000000,1619636462.2586000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 20:01:02. Current memory use 42.8MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00039792060852051 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',251838),(568,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619636462.2706000000,1619636462.2716000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 20:01:02. Current memory use 42.8MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016498565673828 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',251838),(569,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619636462.2813000000,1619636462.2838000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 20:01:02. Current memory use 42.8MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0010960102081299 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',251838),(570,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619636462.2908000000,1619636462.2914000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 20:01:02. Current memory use 42.9MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00013589859008789 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',251838),(571,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619636462.3014000000,1619636462.3076000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 20:01:02. Current memory use 41.9MB.\n\n0 feeds refreshed (took 0.00028 seconds)\n... used 1 dbqueries\n... used 0.0055489540100098 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',251838),(572,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619636462.3174000000,1619636462.3194000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 20:01:02. Current memory use 42.6MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0013809204101562 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',251838),(573,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619636462.3270000000,1619636462.3277000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 20:01:02. Current memory use 42.8MB.\n... used 0 dbqueries\n... used 8.9883804321289E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',251838),(574,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619636462.3353000000,1619636462.3359000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 20:01:02. Current memory use 42.9MB.\n... used 1 dbqueries\n... used 0.00019121170043945 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',251838),(575,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619636462.3429000000,1619636462.3436000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 20:01:02. Current memory use 42.9MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00032305717468262 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',251838),(576,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619636462.3538000000,1619636462.3549000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 20:01:02. Current memory use 42.9MB.\n... used 1 dbqueries\n... used 0.00041794776916504 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',251838),(577,0,'quiz_statistics','quiz_statistics\\task\\quiz_statistics_cleanup',0,1619637361.5474000000,1619637361.5538000000,0,1,0,'Execute scheduled task: Clean up old quiz statistics cache records (quiz_statistics\\task\\quiz_statistics_cleanup)\n... started 20:16:01. Current memory use 15.8MB.\n... used 1 dbqueries\n... used 0.0039410591125488 seconds\nScheduled task complete: Clean up old quiz statistics cache records (quiz_statistics\\task\\quiz_statistics_cleanup)\n','dev-defaults.derekmaxson.com',254613),(578,0,'moodle','core\\task\\delete_incomplete_users_task',0,1619637361.5649000000,1619637361.5663000000,0,0,0,'Execute scheduled task: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n... started 20:16:01. Current memory use 16.9MB.\n... used 0 dbqueries\n... used 3.6001205444336E-5 seconds\nScheduled task complete: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n','dev-defaults.derekmaxson.com',254613),(579,0,'moodle','core\\task\\backup_cleanup_task',0,1619637361.5748000000,1619637361.5757000000,1,0,0,'Execute scheduled task: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n... started 20:16:01. Current memory use 17MB.\n... used 1 dbqueries\n... used 0.00035190582275391 seconds\nScheduled task complete: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n','dev-defaults.derekmaxson.com',254613),(580,0,'moodle','core\\task\\complete_plans_task',0,1619637361.5826000000,1619637361.5896000000,1,0,0,'Execute scheduled task: Complete learning plans which are due (core\\task\\complete_plans_task)\n... started 20:16:01. Current memory use 17MB.\n... used 1 dbqueries\n... used 0.0062990188598633 seconds\nScheduled task complete: Complete learning plans which are due (core\\task\\complete_plans_task)\n','dev-defaults.derekmaxson.com',254613),(581,0,'qtype_random','qtype_random\\task\\remove_unused_questions',0,1619637361.5990000000,1619637361.6220000000,1,0,0,'Execute scheduled task: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n... started 20:16:01. Current memory use 17.9MB.\nCleaned up 0 unused random questions.\n... used 1 dbqueries\n... used 0.022397041320801 seconds\nScheduled task complete: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n','dev-defaults.derekmaxson.com',254613),(582,0,'enrol_flatfile','enrol_flatfile\\task\\flatfile_sync_task',0,1619637361.6298000000,1619637361.6330000000,2,0,0,'Execute scheduled task: Flat file enrolment sync (enrol_flatfile\\task\\flatfile_sync_task)\n... started 20:16:01. Current memory use 21.1MB.\n... used 2 dbqueries\n... used 0.0018949508666992 seconds\nScheduled task complete: Flat file enrolment sync (enrol_flatfile\\task\\flatfile_sync_task)\n','dev-defaults.derekmaxson.com',254613),(583,0,'tool_cohortroles','tool_cohortroles\\task\\cohort_role_sync',0,1619637361.6474000000,1619637361.6504000000,2,1,0,'Execute scheduled task: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n... started 20:16:01. Current memory use 20.9MB.\nSync cohort roles...\nAdded 0\nRemoved 0\n... used 3 dbqueries\n... used 0.0024380683898926 seconds\nScheduled task complete: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n','dev-defaults.derekmaxson.com',254613),(584,0,'moodle','core\\task\\session_cleanup_task',0,1619637361.6585000000,1619637361.6647000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 20:16:01. Current memory use 21.7MB.\n... used 7 dbqueries\n... used 0.0045480728149414 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',254613),(585,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619637361.6725000000,1619637361.6737000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 20:16:01. Current memory use 22MB.\n... used 1 dbqueries\n... used 0.00031685829162598 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',254613),(586,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619637361.6815000000,1619637361.6821000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 20:16:01. Current memory use 22MB.\n... used 0 dbqueries\n... used 3.3855438232422E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',254613),(587,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619637361.6927000000,1619637361.7223000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 20:16:01. Current memory use 22.1MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.028887987136841 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',254613),(588,0,'moodle','core\\task\\grade_cron_task',0,1619637361.7303000000,1619637361.7321000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 20:16:01. Current memory use 25.4MB.\n... used 2 dbqueries\n... used 0.000885009765625 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',254613),(589,0,'moodle','core\\task\\completion_regular_task',0,1619637361.7442000000,1619637361.7511000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 20:16:01. Current memory use 25.4MB.\n... used 6 dbqueries\n... used 0.0063669681549072 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',254613),(590,0,'moodle','core\\task\\portfolio_cron_task',0,1619637361.7588000000,1619637361.7595000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 20:16:01. Current memory use 25.8MB.\n... used 0 dbqueries\n... used 3.2901763916016E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',254613),(591,0,'moodle','core\\task\\plagiarism_cron_task',0,1619637361.7667000000,1619637361.7672000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 20:16:01. Current memory use 25.8MB.\n... used 0 dbqueries\n... used 2.598762512207E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',254613),(592,0,'moodle','core\\task\\calendar_cron_task',0,1619637361.7828000000,1619637361.7864000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 20:16:01. Current memory use 27.5MB.\n... used 1 dbqueries\n... used 0.003007173538208 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',254613),(593,0,'moodle','core\\task\\blog_cron_task',0,1619637361.7946000000,1619637361.7978000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 20:16:01. Current memory use 27.9MB.\n... used 2 dbqueries\n... used 0.0026590824127197 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',254613),(594,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619637361.8053000000,1619637361.8068000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 20:16:01. Current memory use 28.2MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.00090408325195312 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',254613),(595,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619637361.8143000000,1619637361.8155000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 20:16:01. Current memory use 28.2MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00063514709472656 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',254613),(596,0,'moodle','core\\task\\badges_cron_task',0,1619637361.8258000000,1619637361.8299000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 20:16:01. Current memory use 28.2MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.003511905670166 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',254613),(597,0,'moodle','core\\task\\badges_message_task',0,1619637361.8381000000,1619637361.8390000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 20:16:01. Current memory use 28.6MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00034117698669434 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',254613),(598,0,'mod_assign','mod_assign\\task\\cron_task',0,1619637361.8526000000,1619637361.8793000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 20:16:01. Current memory use 29.4MB.\n... used 3 dbqueries\n... used 0.026015996932983 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',254613),(599,0,'mod_chat','mod_chat\\task\\cron_task',0,1619637361.8885000000,1619637361.8925000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 20:16:01. Current memory use 32.2MB.\n... used 4 dbqueries\n... used 0.0030169486999512 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',254613),(600,0,'mod_forum','mod_forum\\task\\cron_task',0,1619637361.9135000000,1619637361.9149000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 20:16:01. Current memory use 33.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00066184997558594 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',254613),(601,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619637361.9347000000,1619637361.9374000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 20:16:01. Current memory use 34.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0019168853759766 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',254613),(602,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619637361.9449000000,1619637361.9459000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 20:16:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 7.8916549682617E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',254613),(603,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619637361.9537000000,1619637361.9545000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 20:16:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 6.6041946411133E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',254613),(604,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619637361.9624000000,1619637361.9685000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 20:16:01. Current memory use 34.6MB.\n... used 0 dbqueries\n... used 0.0052850246429443 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',254613),(605,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619637361.9794000000,1619637361.9804000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 20:16:01. Current memory use 35.1MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00034213066101074 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',254613),(606,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619637361.9885000000,1619637361.9890000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 20:16:01. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 6.8902969360352E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',254613),(607,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619637361.9970000000,1619637361.9992000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 20:16:01. Current memory use 35.1MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.0005500316619873 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',254613),(608,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619637362.0075000000,1619637362.0086000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 20:16:02. Current memory use 35.1MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016379356384277 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',254613),(609,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619637362.0188000000,1619637362.0214000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 20:16:02. Current memory use 35.1MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.001147985458374 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',254613),(610,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619637362.0284000000,1619637362.0294000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 20:16:02. Current memory use 35.2MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00014400482177734 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',254613),(611,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619637362.0422000000,1619637362.0488000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 20:16:02. Current memory use 34.2MB.\n\n0 feeds refreshed (took 0.000391 seconds)\n... used 1 dbqueries\n... used 0.0058197975158691 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',254613),(612,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619637362.0564000000,1619637362.0584000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 20:16:02. Current memory use 34.9MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014138221740723 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',254613),(613,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619637362.0667000000,1619637362.0673000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 20:16:02. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 7.7009201049805E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',254613),(614,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619637362.0779000000,1619637362.0790000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 20:16:02. Current memory use 35.2MB.\n... used 1 dbqueries\n... used 0.00026702880859375 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',254613),(615,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619637362.0892000000,1619637362.0899000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 20:16:02. Current memory use 35.2MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00037693977355957 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',254613),(616,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619637362.0987000000,1619637362.0996000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 20:16:02. Current memory use 35.2MB.\n... used 1 dbqueries\n... used 0.00037407875061035 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',254613),(617,0,'moodle','core\\task\\context_cleanup_task',0,1619638261.2898000000,1619638261.2996000000,9,1,0,'Execute scheduled task: Cleanup contexts (core\\task\\context_cleanup_task)\n... started 20:31:01. Current memory use 16MB.\n Cleaned up context instances\n... used 10 dbqueries\n... used 0.006882905960083 seconds\nScheduled task complete: Cleanup contexts (core\\task\\context_cleanup_task)\n','dev-defaults.derekmaxson.com',257344),(618,0,'moodle','core\\task\\cache_cleanup_task',0,1619638261.3101000000,1619638261.3110000000,0,1,0,'Execute scheduled task: Remove expired cache entries (core\\task\\cache_cleanup_task)\n... started 20:31:01. Current memory use 17MB.\n... used 1 dbqueries\n... used 0.00030088424682617 seconds\nScheduled task complete: Remove expired cache entries (core\\task\\cache_cleanup_task)\n','dev-defaults.derekmaxson.com',257344),(619,0,'moodle','core\\task\\sync_plans_from_template_cohorts_task',0,1619638261.3185000000,1619638261.3265000000,1,0,0,'Execute scheduled task: Sync plans from learning plan template cohorts (core\\task\\sync_plans_from_template_cohorts_task)\n... started 20:31:01. Current memory use 17.1MB.\n... used 1 dbqueries\n... used 0.0074300765991211 seconds\nScheduled task complete: Sync plans from learning plan template cohorts (core\\task\\sync_plans_from_template_cohorts_task)\n','dev-defaults.derekmaxson.com',257344),(620,0,'moodle','core\\oauth2\\refresh_system_tokens_task',0,1619638261.3348000000,1619638261.3494000000,1,0,0,'Execute scheduled task: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n... started 20:31:01. Current memory use 17.9MB.\n... used 1 dbqueries\n... used 0.013902902603149 seconds\nScheduled task complete: Refresh OAuth tokens for service accounts (core\\oauth2\\refresh_system_tokens_task)\n','dev-defaults.derekmaxson.com',257344),(621,0,'moodle','core\\task\\search_index_task',0,1619638261.3571000000,1619638261.3594000000,0,0,0,'Execute scheduled task: Global search indexing (core\\task\\search_index_task)\n... started 20:31:01. Current memory use 19.6MB.\n... used 0 dbqueries\n... used 0.0017859935760498 seconds\nScheduled task complete: Global search indexing (core\\task\\search_index_task)\n','dev-defaults.derekmaxson.com',257344),(622,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_course_bin',0,1619638261.3692000000,1619638261.3704000000,1,0,0,'Execute scheduled task: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n... started 20:31:01. Current memory use 19.6MB.\n... used 1 dbqueries\n... used 0.00080108642578125 seconds\nScheduled task complete: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n','dev-defaults.derekmaxson.com',257344),(623,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_category_bin',0,1619638261.3800000000,1619638261.3813000000,1,0,0,'Execute scheduled task: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n... started 20:31:01. Current memory use 19.6MB.\n... used 1 dbqueries\n... used 0.00070905685424805 seconds\nScheduled task complete: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n','dev-defaults.derekmaxson.com',257344),(624,0,'moodle','core\\task\\session_cleanup_task',0,1619638261.3905000000,1619638261.3976000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 20:31:01. Current memory use 19.9MB.\n... used 7 dbqueries\n... used 0.005648136138916 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',257344),(625,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619638261.4053000000,1619638261.4062000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 20:31:01. Current memory use 20.2MB.\n... used 1 dbqueries\n... used 0.0003209114074707 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',257344),(626,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619638261.4170000000,1619638261.4175000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 20:31:01. Current memory use 20.2MB.\n... used 0 dbqueries\n... used 2.9087066650391E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',257344),(627,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619638261.4248000000,1619638261.4536000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 20:31:01. Current memory use 20.2MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.028409957885742 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',257344),(628,0,'moodle','core\\task\\grade_cron_task',0,1619638261.4639000000,1619638261.4654000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 20:31:01. Current memory use 23.6MB.\n... used 2 dbqueries\n... used 0.00081181526184082 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',257344),(629,0,'moodle','core\\task\\completion_regular_task',0,1619638261.4721000000,1619638261.4787000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 20:31:01. Current memory use 23.7MB.\n... used 6 dbqueries\n... used 0.0061378479003906 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',257344),(630,0,'moodle','core\\task\\portfolio_cron_task',0,1619638261.4861000000,1619638261.4867000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 20:31:01. Current memory use 24.1MB.\n... used 0 dbqueries\n... used 2.7894973754883E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',257344),(631,0,'moodle','core\\task\\plagiarism_cron_task',0,1619638261.4936000000,1619638261.4940000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 20:31:01. Current memory use 24.1MB.\n... used 0 dbqueries\n... used 2.288818359375E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',257344),(632,0,'moodle','core\\task\\calendar_cron_task',0,1619638261.5074000000,1619638261.5109000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 20:31:01. Current memory use 24.6MB.\n... used 1 dbqueries\n... used 0.0030078887939453 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',257344),(633,0,'moodle','core\\task\\blog_cron_task',0,1619638261.5208000000,1619638261.5249000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 20:31:01. Current memory use 25MB.\n... used 2 dbqueries\n... used 0.0034952163696289 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',257344),(634,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619638261.5323000000,1619638261.5450000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 20:31:01. Current memory use 25.2MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.012148857116699 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',257344),(635,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619638261.5530000000,1619638261.5543000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 20:31:01. Current memory use 28.2MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00064396858215332 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',257344),(636,0,'moodle','core\\task\\badges_cron_task',0,1619638261.5613000000,1619638261.5649000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 20:31:01. Current memory use 28.2MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0031619071960449 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',257344),(637,0,'moodle','core\\task\\badges_message_task',0,1619638261.5748000000,1619638261.5757000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 20:31:01. Current memory use 28.5MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00032186508178711 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',257344),(638,0,'mod_assign','mod_assign\\task\\cron_task',0,1619638261.5886000000,1619638261.6146000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 20:31:01. Current memory use 29.4MB.\n... used 3 dbqueries\n... used 0.025377035140991 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',257344),(639,0,'mod_chat','mod_chat\\task\\cron_task',0,1619638261.6230000000,1619638261.6266000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 20:31:01. Current memory use 32.1MB.\n... used 4 dbqueries\n... used 0.0027921199798584 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',257344),(640,0,'mod_forum','mod_forum\\task\\cron_task',0,1619638261.6439000000,1619638261.6454000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 20:31:01. Current memory use 33.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00068116188049316 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',257344),(641,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619638261.6642000000,1619638261.6670000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 20:31:01. Current memory use 34.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0020091533660889 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',257344),(642,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619638261.6746000000,1619638261.6754000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 20:31:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 8.1062316894531E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',257344),(643,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619638261.6862000000,1619638261.6871000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 20:31:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 7.9870223999023E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',257344),(644,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619638261.6947000000,1619638261.7006000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 20:31:01. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 0.0051188468933105 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',257344),(645,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619638261.7080000000,1619638261.7091000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 20:31:01. Current memory use 35MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00035309791564941 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',257344),(646,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619638261.7164000000,1619638261.7171000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 20:31:01. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 8.0108642578125E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',257344),(647,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619638261.7246000000,1619638261.7263000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 20:31:01. Current memory use 35.1MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00037980079650879 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',257344),(648,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619638261.7386000000,1619638261.7396000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 20:31:01. Current memory use 35.1MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00017499923706055 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',257344),(649,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619638261.7477000000,1619638261.7507000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 20:31:01. Current memory use 35.1MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0014090538024902 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',257344),(650,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619638261.7600000000,1619638261.7610000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 20:31:01. Current memory use 35.1MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00015687942504883 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',257344),(651,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619638261.7770000000,1619638261.7839000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 20:31:01. Current memory use 34.2MB.\n\n0 feeds refreshed (took 0.00040099999999998 seconds)\n... used 1 dbqueries\n... used 0.0062029361724854 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',257344),(652,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619638261.7943000000,1619638261.7964000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 20:31:01. Current memory use 34.9MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.001399040222168 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',257344),(653,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619638261.8042000000,1619638261.8050000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 20:31:01. Current memory use 35MB.\n... used 0 dbqueries\n... used 8.6069107055664E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',257344),(654,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619638261.8129000000,1619638261.8138000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 20:31:01. Current memory use 35.1MB.\n... used 1 dbqueries\n... used 0.00026607513427734 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',257344),(655,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619638261.8213000000,1619638261.8222000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 20:31:01. Current memory use 35.1MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00038003921508789 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',257344),(656,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619638261.8378000000,1619638261.8389000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 20:31:01. Current memory use 35.2MB.\n... used 1 dbqueries\n... used 0.00040698051452637 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',257344),(657,0,'moodle','core\\task\\messaging_cleanup_task',0,1619639162.0233000000,1619639162.0342000000,1,4,0,'Execute scheduled task: Background processing for messaging (core\\task\\messaging_cleanup_task)\n... started 20:46:02. Current memory use 16MB.\n... used 5 dbqueries\n... used 0.0081121921539307 seconds\nScheduled task complete: Background processing for messaging (core\\task\\messaging_cleanup_task)\n','dev-defaults.derekmaxson.com',260206),(658,0,'moodle','core\\task\\analytics_cleanup_task',0,1619639162.0438000000,1619639162.0986000000,20,3,0,'Execute scheduled task: Analytics cleanup (core\\task\\analytics_cleanup_task)\n... started 20:46:02. Current memory use 17.4MB.\n... used 23 dbqueries\n... used 0.054168939590454 seconds\nScheduled task complete: Analytics cleanup (core\\task\\analytics_cleanup_task)\n','dev-defaults.derekmaxson.com',260206),(659,0,'moodle','core\\task\\session_cleanup_task',0,1619639162.1089000000,1619639162.1138000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 20:46:02. Current memory use 23.1MB.\n... used 7 dbqueries\n... used 0.0043728351593018 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',260206),(660,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619639162.1272000000,1619639162.1281000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 20:46:02. Current memory use 23.3MB.\n... used 1 dbqueries\n... used 0.00029683113098145 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',260206),(661,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619639162.1380000000,1619639162.1385000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 20:46:02. Current memory use 23.4MB.\n... used 0 dbqueries\n... used 3.0994415283203E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',260206),(662,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619639162.1480000000,1619639162.1703000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 20:46:02. Current memory use 23.5MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.021864175796509 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',260206),(663,0,'moodle','core\\task\\grade_cron_task',0,1619639162.1832000000,1619639162.1846000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 20:46:02. Current memory use 26MB.\n... used 2 dbqueries\n... used 0.0008399486541748 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',260206),(664,0,'moodle','core\\task\\completion_regular_task',0,1619639162.1970000000,1619639162.2020000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 20:46:02. Current memory use 26.1MB.\n... used 6 dbqueries\n... used 0.0044541358947754 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',260206),(665,0,'moodle','core\\task\\portfolio_cron_task',0,1619639162.2119000000,1619639162.2124000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 20:46:02. Current memory use 26.2MB.\n... used 0 dbqueries\n... used 2.7894973754883E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',260206),(666,0,'moodle','core\\task\\plagiarism_cron_task',0,1619639162.2225000000,1619639162.2229000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 20:46:02. Current memory use 26.3MB.\n... used 0 dbqueries\n... used 2.3841857910156E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',260206),(667,0,'moodle','core\\task\\calendar_cron_task',0,1619639162.2321000000,1619639162.2356000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 20:46:02. Current memory use 26.3MB.\n... used 1 dbqueries\n... used 0.0031030178070068 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',260206),(668,0,'moodle','core\\task\\blog_cron_task',0,1619639162.2482000000,1619639162.2515000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 20:46:02. Current memory use 26.7MB.\n... used 2 dbqueries\n... used 0.0029070377349854 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',260206),(669,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619639162.2600000000,1619639162.2724000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 20:46:02. Current memory use 26.9MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.012022972106934 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',260206),(670,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619639162.2871000000,1619639162.2884000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 20:46:02. Current memory use 28.6MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00065994262695312 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',260206),(671,0,'moodle','core\\task\\badges_cron_task',0,1619639162.2967000000,1619639162.3013000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 20:46:02. Current memory use 28.6MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0042269229888916 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',260206),(672,0,'moodle','core\\task\\badges_message_task',0,1619639162.3127000000,1619639162.3135000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 20:46:02. Current memory use 30.1MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00027799606323242 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',260206),(673,0,'mod_assign','mod_assign\\task\\cron_task',0,1619639162.3264000000,1619639162.3519000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 20:46:02. Current memory use 31.2MB.\n... used 3 dbqueries\n... used 0.024631023406982 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',260206),(674,0,'mod_chat','mod_chat\\task\\cron_task',0,1619639162.3612000000,1619639162.3648000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 20:46:02. Current memory use 34MB.\n... used 4 dbqueries\n... used 0.0027408599853516 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',260206),(675,0,'mod_forum','mod_forum\\task\\cron_task',0,1619639162.3857000000,1619639162.3871000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 20:46:02. Current memory use 35.2MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00065398216247559 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',260206),(676,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619639162.4034000000,1619639162.4062000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 20:46:02. Current memory use 36.3MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0020120143890381 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',260206),(677,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619639162.4145000000,1619639162.4153000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 20:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 7.4863433837891E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',260206),(678,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619639162.4226000000,1619639162.4232000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 20:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 5.1975250244141E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',260206),(679,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619639162.4305000000,1619639162.4360000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 20:46:02. Current memory use 36.3MB.\n... used 0 dbqueries\n... used 0.0049519538879395 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',260206),(680,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619639162.4451000000,1619639162.4460000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 20:46:02. Current memory use 36.9MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00035595893859863 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',260206),(681,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619639162.4652000000,1619639162.4661000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 20:46:02. Current memory use 36.9MB.\n... used 0 dbqueries\n... used 8.5115432739258E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',260206),(682,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619639162.4764000000,1619639162.4783000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 20:46:02. Current memory use 36.9MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.0003960132598877 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',260206),(683,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619639162.4886000000,1619639162.4895000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 20:46:02. Current memory use 36.9MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00015497207641602 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',260206),(684,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619639162.4964000000,1619639162.4986000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 20:46:02. Current memory use 36.9MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0010378360748291 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',260206),(685,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619639162.5064000000,1619639162.5071000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 20:46:02. Current memory use 36.9MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00014090538024902 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',260206),(686,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619639162.5175000000,1619639162.5235000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 20:46:02. Current memory use 35.7MB.\n\n0 feeds refreshed (took 0.00028399999999995 seconds)\n... used 1 dbqueries\n... used 0.0055320262908936 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',260206),(687,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619639162.5339000000,1619639162.5359000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 20:46:02. Current memory use 36.8MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0014839172363281 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',260206),(688,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619639162.5465000000,1619639162.5471000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 20:46:02. Current memory use 36.9MB.\n... used 0 dbqueries\n... used 8.7976455688477E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',260206),(689,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619639162.5567000000,1619639162.5574000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 20:46:02. Current memory use 37MB.\n... used 1 dbqueries\n... used 0.00023603439331055 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',260206),(690,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619639162.5686000000,1619639162.5695000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 20:46:02. Current memory use 37MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00036501884460449 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',260206),(691,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619639162.5788000000,1619639162.5799000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 20:46:02. Current memory use 37MB.\n... used 1 dbqueries\n... used 0.00038003921508789 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',260206),(692,0,'mod_lti','mod_lti\\task\\clean_access_tokens',0,1619640061.7653000000,1619640061.7718000000,0,1,0,'Execute scheduled task: External tool removal of expired access tokens (mod_lti\\task\\clean_access_tokens)\n... started 21:01:01. Current memory use 16.3MB.\n... used 1 dbqueries\n... used 0.0041840076446533 seconds\nScheduled task complete: External tool removal of expired access tokens (mod_lti\\task\\clean_access_tokens)\n','dev-defaults.derekmaxson.com',262985),(693,0,'moodle','core\\task\\delete_unconfirmed_users_task',0,1619640061.7973000000,1619640061.7990000000,1,0,0,'Execute scheduled task: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n... started 21:01:01. Current memory use 16.9MB.\n... used 1 dbqueries\n... used 0.00044393539428711 seconds\nScheduled task complete: Delete unconfirmed users (core\\task\\delete_unconfirmed_users_task)\n','dev-defaults.derekmaxson.com',262985),(694,0,'moodle','core\\task\\cache_cron_task',0,1619640061.8080000000,1619640061.8087000000,0,0,0,'Execute scheduled task: Background processing for caches (core\\task\\cache_cron_task)\n... started 21:01:01. Current memory use 16.9MB.\nCleaning up stale session data from cache stores.\n... used 0 dbqueries\n... used 0.00025606155395508 seconds\nScheduled task complete: Background processing for caches (core\\task\\cache_cron_task)\n','dev-defaults.derekmaxson.com',262985),(695,0,'moodle','core\\task\\automated_backup_task',0,1619640061.8220000000,1619640061.9689000000,0,0,0,'Execute scheduled task: Automated backups (core\\task\\automated_backup_task)\n... started 21:01:01. Current memory use 16.9MB.\nChecking automated backup status...INACTIVE\n... used 0 dbqueries\n... used 0.14637279510498 seconds\nScheduled task complete: Automated backups (core\\task\\automated_backup_task)\n','dev-defaults.derekmaxson.com',262985),(696,0,'moodle','core\\task\\search_index_task',0,1619640061.9783000000,1619640061.9810000000,0,0,0,'Execute scheduled task: Global search indexing (core\\task\\search_index_task)\n... started 21:01:01. Current memory use 36.5MB.\n... used 0 dbqueries\n... used 0.002007007598877 seconds\nScheduled task complete: Global search indexing (core\\task\\search_index_task)\n','dev-defaults.derekmaxson.com',262985),(697,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_course_bin',0,1619640061.9972000000,1619640061.9988000000,1,0,0,'Execute scheduled task: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n... started 21:01:01. Current memory use 36.8MB.\n... used 1 dbqueries\n... used 0.00093507766723633 seconds\nScheduled task complete: Cleanup course recycle bin (tool_recyclebin\\task\\cleanup_course_bin)\n','dev-defaults.derekmaxson.com',262985),(698,0,'tool_recyclebin','tool_recyclebin\\task\\cleanup_category_bin',0,1619640062.0086000000,1619640062.0101000000,1,0,0,'Execute scheduled task: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n... started 21:01:02. Current memory use 36.8MB.\n... used 1 dbqueries\n... used 0.00083804130554199 seconds\nScheduled task complete: Cleanup category recycle bin (tool_recyclebin\\task\\cleanup_category_bin)\n','dev-defaults.derekmaxson.com',262985),(699,0,'moodle','core\\task\\session_cleanup_task',0,1619640062.0211000000,1619640062.0279000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 21:01:02. Current memory use 37.1MB.\n... used 7 dbqueries\n... used 0.0051901340484619 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',262985),(700,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619640062.0383000000,1619640062.0394000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 21:01:02. Current memory use 37.4MB.\n... used 1 dbqueries\n... used 0.00032210350036621 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',262985),(701,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619640062.0483000000,1619640062.0489000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 21:01:02. Current memory use 37.5MB.\n... used 0 dbqueries\n... used 3.4093856811523E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',262985),(702,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619640062.0583000000,1619640062.0738000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 21:01:02. Current memory use 37.5MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.014780044555664 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',262985),(703,0,'moodle','core\\task\\grade_cron_task',0,1619640062.0902000000,1619640062.0919000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 21:01:02. Current memory use 38.9MB.\n... used 2 dbqueries\n... used 0.00093317031860352 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',262985),(704,0,'moodle','core\\task\\completion_regular_task',0,1619640062.1009000000,1619640062.1063000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 21:01:02. Current memory use 38.9MB.\n... used 6 dbqueries\n... used 0.0047259330749512 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',262985),(705,0,'moodle','core\\task\\portfolio_cron_task',0,1619640062.1206000000,1619640062.1213000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 21:01:02. Current memory use 39.2MB.\n... used 0 dbqueries\n... used 3.504753112793E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',262985),(706,0,'moodle','core\\task\\plagiarism_cron_task',0,1619640062.1336000000,1619640062.1343000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 21:01:02. Current memory use 39.2MB.\n... used 0 dbqueries\n... used 3.6001205444336E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',262985),(707,0,'moodle','core\\task\\calendar_cron_task',0,1619640062.1437000000,1619640062.1477000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 21:01:02. Current memory use 39.2MB.\n... used 1 dbqueries\n... used 0.0033059120178223 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',262985),(708,0,'moodle','core\\task\\blog_cron_task',0,1619640062.1568000000,1619640062.1610000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 21:01:02. Current memory use 39.6MB.\n... used 2 dbqueries\n... used 0.0035300254821777 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',262985),(709,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619640062.1701000000,1619640062.1717000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 21:01:02. Current memory use 39.8MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.00092577934265137 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',262985),(710,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619640062.1804000000,1619640062.1816000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 21:01:02. Current memory use 39.8MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00069999694824219 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',262985),(711,0,'moodle','core\\task\\badges_cron_task',0,1619640062.1948000000,1619640062.1991000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 21:01:02. Current memory use 39.9MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0036029815673828 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',262985),(712,0,'moodle','core\\task\\badges_message_task',0,1619640062.2083000000,1619640062.2091000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 21:01:02. Current memory use 40.2MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00027704238891602 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',262985),(713,0,'mod_assign','mod_assign\\task\\cron_task',0,1619640062.2181000000,1619640062.2254000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 21:01:02. Current memory use 40.2MB.\n... used 3 dbqueries\n... used 0.0064480304718018 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',262985),(714,0,'mod_chat','mod_chat\\task\\cron_task',0,1619640062.2345000000,1619640062.2368000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 21:01:02. Current memory use 40.9MB.\n... used 4 dbqueries\n... used 0.00098514556884766 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',262985),(715,0,'mod_forum','mod_forum\\task\\cron_task',0,1619640062.2506000000,1619640062.2529000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 21:01:02. Current memory use 41MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00073003768920898 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',262985),(716,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619640062.2697000000,1619640062.2722000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 21:01:02. Current memory use 42MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0013649463653564 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',262985),(717,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619640062.2809000000,1619640062.2817000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 21:01:02. Current memory use 42MB.\n... used 0 dbqueries\n... used 8.2015991210938E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',262985),(718,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619640062.2909000000,1619640062.2915000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 21:01:02. Current memory use 42MB.\n... used 0 dbqueries\n... used 7.2956085205078E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',262985),(719,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619640062.3012000000,1619640062.3052000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 21:01:02. Current memory use 42.1MB.\n... used 0 dbqueries\n... used 0.0031440258026123 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',262985),(720,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619640062.3199000000,1619640062.3216000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 21:01:02. Current memory use 42.4MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00034499168395996 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',262985),(721,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619640062.3308000000,1619640062.3315000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 21:01:02. Current memory use 42.5MB.\n... used 0 dbqueries\n... used 8.0108642578125E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',262985),(722,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619640062.3439000000,1619640062.3456000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 21:01:02. Current memory use 42.4MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00036501884460449 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',262985),(723,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619640062.3552000000,1619640062.3561000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 21:01:02. Current memory use 42.5MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00016212463378906 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',262985),(724,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619640062.3652000000,1619640062.3675000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 21:01:02. Current memory use 42.5MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0010828971862793 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',262985),(725,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619640062.3813000000,1619640062.3821000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 21:01:02. Current memory use 42.5MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00014495849609375 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',262985),(726,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619640062.3939000000,1619640062.3999000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 21:01:02. Current memory use 41.8MB.\n\n0 feeds refreshed (took 0.00024000000000002 seconds)\n... used 1 dbqueries\n... used 0.0054800510406494 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',262985),(727,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619640062.4089000000,1619640062.4107000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 21:01:02. Current memory use 42.5MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0012459754943848 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',262985),(728,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619640062.4199000000,1619640062.4205000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 21:01:02. Current memory use 42.7MB.\n... used 0 dbqueries\n... used 8.0108642578125E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',262985),(729,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619640062.4362000000,1619640062.4369000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 21:01:02. Current memory use 42.7MB.\n... used 1 dbqueries\n... used 0.00020694732666016 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',262985),(730,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619640062.4646000000,1619640062.4655000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 21:01:02. Current memory use 42.8MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00039196014404297 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',262985),(731,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619640062.4776000000,1619640062.4786000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 21:01:02. Current memory use 42.8MB.\n... used 1 dbqueries\n... used 0.00039505958557129 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',262985),(732,0,'moodle','core\\task\\delete_incomplete_users_task',0,1619640961.6796000000,1619640961.6867000000,0,0,0,'Execute scheduled task: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n... started 21:16:01. Current memory use 16MB.\n... used 0 dbqueries\n... used 0.0037589073181152 seconds\nScheduled task complete: Delete incomplete users (core\\task\\delete_incomplete_users_task)\n','dev-defaults.derekmaxson.com',265768),(733,0,'moodle','core\\task\\backup_cleanup_task',0,1619640961.6961000000,1619640961.6971000000,1,0,0,'Execute scheduled task: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n... started 21:16:01. Current memory use 16.9MB.\n... used 1 dbqueries\n... used 0.00037002563476562 seconds\nScheduled task complete: Clean backup tables and logs (core\\task\\backup_cleanup_task)\n','dev-defaults.derekmaxson.com',265768),(734,0,'moodle','core\\task\\complete_plans_task',0,1619640961.7056000000,1619640961.7125000000,1,0,0,'Execute scheduled task: Complete learning plans which are due (core\\task\\complete_plans_task)\n... started 21:16:01. Current memory use 17MB.\n... used 1 dbqueries\n... used 0.0061972141265869 seconds\nScheduled task complete: Complete learning plans which are due (core\\task\\complete_plans_task)\n','dev-defaults.derekmaxson.com',265768),(735,0,'qtype_random','qtype_random\\task\\remove_unused_questions',0,1619640961.7224000000,1619640961.7470000000,1,0,0,'Execute scheduled task: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n... started 21:16:01. Current memory use 17.9MB.\nCleaned up 0 unused random questions.\n... used 1 dbqueries\n... used 0.023850917816162 seconds\nScheduled task complete: Remove unused random questions (qtype_random\\task\\remove_unused_questions)\n','dev-defaults.derekmaxson.com',265768),(736,0,'enrol_flatfile','enrol_flatfile\\task\\flatfile_sync_task',0,1619640961.7589000000,1619640961.7624000000,2,0,0,'Execute scheduled task: Flat file enrolment sync (enrol_flatfile\\task\\flatfile_sync_task)\n... started 21:16:01. Current memory use 21.1MB.\n... used 2 dbqueries\n... used 0.0022590160369873 seconds\nScheduled task complete: Flat file enrolment sync (enrol_flatfile\\task\\flatfile_sync_task)\n','dev-defaults.derekmaxson.com',265768),(737,0,'tool_cohortroles','tool_cohortroles\\task\\cohort_role_sync',0,1619640961.7758000000,1619640961.7814000000,3,1,0,'Execute scheduled task: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n... started 21:16:01. Current memory use 20.9MB.\nSync cohort roles...\nAdded 0\nRemoved 0\n... used 4 dbqueries\n... used 0.0047800540924072 seconds\nScheduled task complete: Sync cohort role assignments (tool_cohortroles\\task\\cohort_role_sync)\n','dev-defaults.derekmaxson.com',265768),(738,0,'moodle','core\\task\\session_cleanup_task',0,1619640961.7923000000,1619640961.7988000000,6,1,0,'Execute scheduled task: Cleanup old sessions (core\\task\\session_cleanup_task)\n... started 21:16:01. Current memory use 21.6MB.\n... used 7 dbqueries\n... used 0.0049149990081787 seconds\nScheduled task complete: Cleanup old sessions (core\\task\\session_cleanup_task)\n','dev-defaults.derekmaxson.com',265768),(739,0,'moodle','core\\task\\send_new_user_passwords_task',0,1619640961.8064000000,1619640961.8077000000,1,0,0,'Execute scheduled task: Send new user passwords (core\\task\\send_new_user_passwords_task)\n... started 21:16:01. Current memory use 21.9MB.\n... used 1 dbqueries\n... used 0.00034499168395996 seconds\nScheduled task complete: Send new user passwords (core\\task\\send_new_user_passwords_task)\n','dev-defaults.derekmaxson.com',265768),(740,0,'moodle','core\\task\\send_failed_login_notifications_task',0,1619640961.8162000000,1619640961.8169000000,0,0,0,'Execute scheduled task: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n... started 21:16:01. Current memory use 22MB.\n... used 0 dbqueries\n... used 3.6001205444336E-5 seconds\nScheduled task complete: Send failed login notifications (core\\task\\send_failed_login_notifications_task)\n','dev-defaults.derekmaxson.com',265768),(741,0,'moodle','core\\task\\legacy_plugin_cron_task',0,1619640961.8252000000,1619640961.8548000000,2,0,0,'Execute scheduled task: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n... started 21:16:01. Current memory use 22MB.\nRunning auth crons if required...\nRunning enrol crons if required...\nStarting activity modules\nFinished activity modules\nStarting blocks\nFinished blocks\nStarting admin reports\nFinished admin reports\nStarting course reports\nFinished course reports\nStarting gradebook plugins\nFinished gradebook plugins\n... used 2 dbqueries\n... used 0.029015064239502 seconds\nScheduled task complete: Legacy cron processing for plugins (core\\task\\legacy_plugin_cron_task)\n','dev-defaults.derekmaxson.com',265768),(742,0,'moodle','core\\task\\grade_cron_task',0,1619640961.8654000000,1619640961.8673000000,2,0,0,'Execute scheduled task: Background processing for gradebook (core\\task\\grade_cron_task)\n... started 21:16:01. Current memory use 25.3MB.\n... used 2 dbqueries\n... used 0.00097990036010742 seconds\nScheduled task complete: Background processing for gradebook (core\\task\\grade_cron_task)\n','dev-defaults.derekmaxson.com',265768),(743,0,'moodle','core\\task\\completion_regular_task',0,1619640961.8752000000,1619640961.8823000000,6,0,0,'Execute scheduled task: Calculate regular completion data (core\\task\\completion_regular_task)\n... started 21:16:01. Current memory use 25.3MB.\n... used 6 dbqueries\n... used 0.006450891494751 seconds\nScheduled task complete: Calculate regular completion data (core\\task\\completion_regular_task)\n','dev-defaults.derekmaxson.com',265768),(744,0,'moodle','core\\task\\portfolio_cron_task',0,1619640961.8895000000,1619640961.8901000000,0,0,0,'Execute scheduled task: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n... started 21:16:01. Current memory use 25.7MB.\n... used 0 dbqueries\n... used 2.9087066650391E-5 seconds\nScheduled task complete: Background processing for portfolio plugins (core\\task\\portfolio_cron_task)\n','dev-defaults.derekmaxson.com',265768),(745,0,'moodle','core\\task\\plagiarism_cron_task',0,1619640961.9001000000,1619640961.9008000000,0,0,0,'Execute scheduled task: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n... started 21:16:01. Current memory use 25.7MB.\n... used 0 dbqueries\n... used 3.504753112793E-5 seconds\nScheduled task complete: Background processing for legacy cron in plagiarism plugins (core\\task\\plagiarism_cron_task)\n','dev-defaults.derekmaxson.com',265768),(746,0,'moodle','core\\task\\calendar_cron_task',0,1619640961.9239000000,1619640961.9278000000,1,0,0,'Execute scheduled task: Send calendar notifications (core\\task\\calendar_cron_task)\n... started 21:16:01. Current memory use 26.2MB.\n... used 1 dbqueries\n... used 0.0031700134277344 seconds\nScheduled task complete: Send calendar notifications (core\\task\\calendar_cron_task)\n','dev-defaults.derekmaxson.com',265768),(747,0,'moodle','core\\task\\blog_cron_task',0,1619640961.9351000000,1619640961.9393000000,1,1,0,'Execute scheduled task: Sync external blogs (core\\task\\blog_cron_task)\n... started 21:16:01. Current memory use 26.6MB.\n... used 2 dbqueries\n... used 0.0037000179290771 seconds\nScheduled task complete: Sync external blogs (core\\task\\blog_cron_task)\n','dev-defaults.derekmaxson.com',265768),(748,0,'moodle','core\\task\\question_preview_cleanup_task',0,1619640961.9468000000,1619640961.9482000000,2,0,0,'Execute scheduled task: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n... started 21:16:01. Current memory use 28.1MB.\n\n Cleaning up old question previews...done.\n... used 2 dbqueries\n... used 0.00086212158203125 seconds\nScheduled task complete: Background processing for cleaning up question previews (core\\task\\question_preview_cleanup_task)\n','dev-defaults.derekmaxson.com',265768),(749,0,'moodle','core\\task\\question_stats_cleanup_task',0,1619640961.9560000000,1619640961.9573000000,1,3,0,'Execute scheduled task: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n... started 21:16:01. Current memory use 28.1MB.\n\n Cleaning up old question statistics cache records...done.\n... used 4 dbqueries\n... used 0.00068807601928711 seconds\nScheduled task complete: Background processing for cleaning up question statistics caches (core\\task\\question_stats_cleanup_task)\n','dev-defaults.derekmaxson.com',265768),(750,0,'moodle','core\\task\\badges_cron_task',0,1619640961.9665000000,1619640961.9704000000,1,0,0,'Execute scheduled task: Award badges (core\\task\\badges_cron_task)\n... started 21:16:01. Current memory use 28.1MB.\nStarted reviewing available badges.\nBadges were issued 0 time(s).\n... used 1 dbqueries\n... used 0.0032868385314941 seconds\nScheduled task complete: Award badges (core\\task\\badges_cron_task)\n','dev-defaults.derekmaxson.com',265768),(751,0,'moodle','core\\task\\badges_message_task',0,1619640961.9806000000,1619640961.9815000000,1,0,0,'Execute scheduled task: Background processing for sending badges notifications (core\\task\\badges_message_task)\n... started 21:16:01. Current memory use 28.5MB.\nSending scheduled badge notifications.\n... used 1 dbqueries\n... used 0.00033211708068848 seconds\nScheduled task complete: Background processing for sending badges notifications (core\\task\\badges_message_task)\n','dev-defaults.derekmaxson.com',265768),(752,0,'mod_assign','mod_assign\\task\\cron_task',0,1619640961.9959000000,1619640962.0232000000,3,0,0,'Execute scheduled task: Background processing for assignment module (mod_assign\\task\\cron_task)\n... started 21:16:01. Current memory use 29.4MB.\n... used 3 dbqueries\n... used 0.026537895202637 seconds\nScheduled task complete: Background processing for assignment module (mod_assign\\task\\cron_task)\n','dev-defaults.derekmaxson.com',265768),(753,0,'mod_chat','mod_chat\\task\\cron_task',0,1619640962.0312000000,1619640962.0351000000,2,2,0,'Execute scheduled task: Background processing for chat module (mod_chat\\task\\cron_task)\n... started 21:16:02. Current memory use 32.2MB.\n... used 4 dbqueries\n... used 0.0028879642486572 seconds\nScheduled task complete: Background processing for chat module (mod_chat\\task\\cron_task)\n','dev-defaults.derekmaxson.com',265768),(754,0,'mod_forum','mod_forum\\task\\cron_task',0,1619640962.0545000000,1619640962.0560000000,1,1,0,'Execute scheduled task: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n... started 21:16:02. Current memory use 33.4MB.\nRemoving old digest records from 7 days ago.\nRemoved all old digest records.\nFetching unmailed posts.\n No posts found.\n... used 2 dbqueries\n... used 0.00067615509033203 seconds\nScheduled task complete: Forum mailings and maintenance jobs (mod_forum\\task\\cron_task)\n','dev-defaults.derekmaxson.com',265768),(755,0,'mod_quiz','mod_quiz\\task\\update_overdue_attempts',0,1619640962.0722000000,1619640962.0749000000,1,0,0,'Execute scheduled task: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n... started 21:16:02. Current memory use 34.5MB.\n Looking for quiz overdue quiz attempts...\n Considered 0 attempts in 0 quizzes.\n... used 1 dbqueries\n... used 0.0019948482513428 seconds\nScheduled task complete: Updating overdue quiz attempts (mod_quiz\\task\\update_overdue_attempts)\n','dev-defaults.derekmaxson.com',265768),(756,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_reports_cron',0,1619640962.0827000000,1619640962.0837000000,0,0,0,'Execute scheduled task: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n... started 21:16:02. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 7.2956085205078E-5 seconds\nScheduled task complete: Legacy cron quiz reports (mod_quiz\\task\\legacy_quiz_reports_cron)\n','dev-defaults.derekmaxson.com',265768),(757,0,'mod_quiz','mod_quiz\\task\\legacy_quiz_accessrules_cron',0,1619640962.0912000000,1619640962.0920000000,0,0,0,'Execute scheduled task: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n... started 21:16:02. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 6.6041946411133E-5 seconds\nScheduled task complete: Legacy cron quiz access rules (mod_quiz\\task\\legacy_quiz_accessrules_cron)\n','dev-defaults.derekmaxson.com',265768),(758,0,'mod_scorm','mod_scorm\\task\\cron_task',0,1619640962.1015000000,1619640962.1073000000,0,0,0,'Execute scheduled task: Background processing for SCORM (mod_scorm\\task\\cron_task)\n... started 21:16:02. Current memory use 34.5MB.\n... used 0 dbqueries\n... used 0.0049910545349121 seconds\nScheduled task complete: Background processing for SCORM (mod_scorm\\task\\cron_task)\n','dev-defaults.derekmaxson.com',265768),(759,0,'mod_workshop','mod_workshop\\task\\cron_task',0,1619640962.1153000000,1619640962.1164000000,1,0,0,'Execute scheduled task: Background processing for workshop module (mod_workshop\\task\\cron_task)\n... started 21:16:02. Current memory use 35.1MB.\n processing workshop subplugins ...\n... used 1 dbqueries\n... used 0.00035190582275391 seconds\nScheduled task complete: Background processing for workshop module (mod_workshop\\task\\cron_task)\n','dev-defaults.derekmaxson.com',265768),(760,0,'mod_workshop','mod_workshop\\task\\legacy_workshop_allocation_cron',0,1619640962.1236000000,1619640962.1244000000,0,0,0,'Execute scheduled task: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n... started 21:16:02. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 7.7962875366211E-5 seconds\nScheduled task complete: Legacy cron workshop allocation (mod_workshop\\task\\legacy_workshop_allocation_cron)\n','dev-defaults.derekmaxson.com',265768),(761,0,'enrol_manual','enrol_manual\\task\\sync_enrolments',0,1619640962.1335000000,1619640962.1356000000,0,0,0,'Execute scheduled task: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n... started 21:16:02. Current memory use 35.1MB.\nVerifying manual enrolment expiration...\n...manual enrolment updates finished.\n... used 0 dbqueries\n... used 0.00039410591125488 seconds\nScheduled task complete: Synchronise manual enrolments task (enrol_manual\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',265768),(762,0,'enrol_manual','enrol_manual\\task\\send_expiry_notifications',0,1619640962.1430000000,1619640962.1439000000,0,0,0,'Execute scheduled task: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n... started 21:16:02. Current memory use 35.1MB.\nmanual enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00014281272888184 seconds\nScheduled task complete: Manual enrolment send expiry notifications task (enrol_manual\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',265768),(763,0,'enrol_self','enrol_self\\task\\sync_enrolments',0,1619640962.1532000000,1619640962.1562000000,2,0,0,'Execute scheduled task: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n... started 21:16:02. Current memory use 35.1MB.\nVerifying self-enrolments...\n...user self-enrolment updates finished.\nNo expired enrol_self enrolments detected\n... used 2 dbqueries\n... used 0.0012938976287842 seconds\nScheduled task complete: Synchronise self enrolments task (enrol_self\\task\\sync_enrolments)\n','dev-defaults.derekmaxson.com',265768),(764,0,'enrol_self','enrol_self\\task\\send_expiry_notifications',0,1619640962.1637000000,1619640962.1648000000,0,0,0,'Execute scheduled task: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n... started 21:16:02. Current memory use 35.1MB.\nself enrolment expiry notifications were already sent today at Wednesday, 28 April 2021, 4:31 PM.\n... used 0 dbqueries\n... used 0.00014686584472656 seconds\nScheduled task complete: Self enrolment send expiry notifications task (enrol_self\\task\\send_expiry_notifications)\n','dev-defaults.derekmaxson.com',265768),(765,0,'block_rss_client','block_rss_client\\task\\refreshfeeds',0,1619640962.1769000000,1619640962.1837000000,1,0,0,'Execute scheduled task: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n... started 21:16:02. Current memory use 34.1MB.\n\n0 feeds refreshed (took 0.00039399999999998 seconds)\n... used 1 dbqueries\n... used 0.006152868270874 seconds\nScheduled task complete: Refresh RSS feeds task (block_rss_client\\task\\refreshfeeds)\n','dev-defaults.derekmaxson.com',265768),(766,0,'tool_messageinbound','tool_messageinbound\\task\\pickup_task',0,1619640962.1910000000,1619640962.1930000000,0,0,0,'Execute scheduled task: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n... started 21:16:02. Current memory use 34.9MB.\nInbound Message not fully configured - exiting early.\n... used 0 dbqueries\n... used 0.0013787746429443 seconds\nScheduled task complete: Incoming email pickup (tool_messageinbound\\task\\pickup_task)\n','dev-defaults.derekmaxson.com',265768),(767,0,'tool_monitor','tool_monitor\\task\\clean_events',0,1619640962.2001000000,1619640962.2008000000,0,0,0,'Execute scheduled task: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n... started 21:16:02. Current memory use 35.1MB.\n... used 0 dbqueries\n... used 7.9154968261719E-5 seconds\nScheduled task complete: Cleanup event monitor events (tool_monitor\\task\\clean_events)\n','dev-defaults.derekmaxson.com',265768),(768,0,'assignfeedback_editpdf','assignfeedback_editpdf\\task\\convert_submissions',0,1619640962.2089000000,1619640962.2100000000,1,0,0,'Execute scheduled task: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n... started 21:16:02. Current memory use 35.1MB.\n... used 1 dbqueries\n... used 0.00026202201843262 seconds\nScheduled task complete: Prepare submissions for annotation (assignfeedback_editpdf\\task\\convert_submissions)\n','dev-defaults.derekmaxson.com',265768),(769,0,'workshopallocation_scheduled','workshopallocation_scheduled\\task\\cron_task',0,1619640962.2205000000,1619640962.2216000000,1,0,0,'Execute scheduled task: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n... started 21:16:02. Current memory use 35.1MB.\n... no workshops awaiting scheduled allocation. ... used 1 dbqueries\n... used 0.00043201446533203 seconds\nScheduled task complete: Background processing for scheduled allocation (workshopallocation_scheduled\\task\\cron_task)\n','dev-defaults.derekmaxson.com',265768),(770,0,'mod_customcert','mod_customcert\\task\\email_certificate_task',0,1619640962.2300000000,1619640962.2311000000,1,0,0,'Execute scheduled task: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n... started 21:16:02. Current memory use 35.2MB.\n... used 1 dbqueries\n... used 0.00044417381286621 seconds\nScheduled task complete: Handles emailing certificates. (mod_customcert\\task\\email_certificate_task)\n','dev-defaults.derekmaxson.com',265768); -/*!40000 ALTER TABLE `mdl_task_log` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_task_scheduled` --- - -DROP TABLE IF EXISTS `mdl_task_scheduled`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_task_scheduled` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `component` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `classname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `lastruntime` bigint(10) DEFAULT NULL, - `nextruntime` bigint(10) DEFAULT NULL, - `blocking` tinyint(2) NOT NULL DEFAULT 0, - `minute` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `hour` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `day` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `month` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `dayofweek` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `faildelay` bigint(10) DEFAULT NULL, - `customised` tinyint(2) NOT NULL DEFAULT 0, - `disabled` tinyint(1) NOT NULL DEFAULT 0, - `timestarted` bigint(10) DEFAULT NULL, - `hostname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `pid` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_tasksche_cla_uix` (`classname`) -) ENGINE=InnoDB AUTO_INCREMENT=101 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='List of scheduled tasks to be run by cron.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_task_scheduled` --- - -LOCK TABLES `mdl_task_scheduled` WRITE; -/*!40000 ALTER TABLE `mdl_task_scheduled` DISABLE KEYS */; -INSERT INTO `mdl_task_scheduled` VALUES (1,'moodle','\\core\\task\\session_cleanup_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(2,'moodle','\\core\\task\\delete_unconfirmed_users_task',1619640061,1619643600,0,'0','*','*','*','*',0,0,0,NULL,NULL,NULL),(3,'moodle','\\core\\task\\delete_incomplete_users_task',1619640961,1619643900,0,'5','*','*','*','*',0,0,0,NULL,NULL,NULL),(4,'moodle','\\core\\task\\backup_cleanup_task',1619640961,1619644200,0,'10','*','*','*','*',0,0,0,NULL,NULL,NULL),(5,'moodle','\\core\\task\\tag_cron_task',0,1619665920,0,'12','3','*','*','*',0,0,0,NULL,NULL,NULL),(6,'moodle','\\core\\task\\context_cleanup_task',1619638261,1619641500,0,'25','*','*','*','*',0,0,0,NULL,NULL,NULL),(7,'moodle','\\core\\task\\cache_cleanup_task',1619638261,1619641800,0,'30','*','*','*','*',0,0,0,NULL,NULL,NULL),(8,'moodle','\\core\\task\\messaging_cleanup_task',1619639162,1619642100,0,'35','*','*','*','*',0,0,0,NULL,NULL,NULL),(9,'moodle','\\core\\task\\send_new_user_passwords_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(10,'moodle','\\core\\task\\send_failed_login_notifications_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(11,'moodle','\\core\\task\\create_contexts_task',0,1619654400,1,'0','0','*','*','*',0,0,0,NULL,NULL,NULL),(12,'moodle','\\core\\task\\legacy_plugin_cron_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(13,'moodle','\\core\\task\\grade_cron_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(14,'moodle','\\core\\task\\grade_history_cleanup_task',0,1619656140,0,'*','0','*','*','*',0,0,0,NULL,NULL,NULL),(15,'moodle','\\core\\task\\completion_regular_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(16,'moodle','\\core\\task\\completion_daily_task',0,1619701260,0,'1','13','*','*','*',0,0,0,NULL,NULL,NULL),(17,'moodle','\\core\\task\\portfolio_cron_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(18,'moodle','\\core\\task\\plagiarism_cron_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(19,'moodle','\\core\\task\\calendar_cron_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(20,'moodle','\\core\\task\\blog_cron_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(21,'moodle','\\core\\task\\question_preview_cleanup_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(22,'moodle','\\core\\task\\question_stats_cleanup_task',1619640961,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(23,'moodle','\\core\\task\\registration_cron_task',0,1620036600,0,'10','10','*','*','1',0,0,0,NULL,NULL,NULL),(24,'moodle','\\core\\task\\check_for_updates_task',1619636461,1619643600,0,'0','*/2','*','*','*',0,0,0,NULL,NULL,NULL),(25,'moodle','\\core\\task\\cache_cron_task',1619640061,1619643000,0,'50','*','*','*','*',0,0,0,NULL,NULL,NULL),(26,'moodle','\\core\\task\\automated_backup_task',1619640061,1619643000,0,'50','*','*','*','*',0,0,0,NULL,NULL,NULL),(27,'moodle','\\core\\task\\badges_cron_task',1619640961,1619641200,0,'*/5','*','*','*','*',0,0,0,NULL,NULL,NULL),(28,'moodle','\\core\\task\\badges_message_task',1619640961,1619641200,0,'*/5','*','*','*','*',0,0,0,NULL,NULL,NULL),(29,'moodle','\\core\\task\\file_temp_cleanup_task',1619636461,1619654100,0,'55','*/6','*','*','*',0,0,0,NULL,NULL,NULL),(30,'moodle','\\core\\task\\file_trash_cleanup_task',1619636461,1619654100,0,'55','*/6','*','*','*',0,0,0,NULL,NULL,NULL),(31,'moodle','\\core\\task\\search_index_task',1619640061,1619641800,0,'*/30','*','*','*','*',0,0,0,NULL,NULL,NULL),(32,'moodle','\\core\\task\\search_optimize_task',0,1619655300,0,'15','*/12','*','*','*',0,0,0,NULL,NULL,NULL),(33,'moodle','\\core\\task\\stats_cron_task',0,1619654400,0,'0','0','*','*','*',0,0,0,NULL,NULL,NULL),(34,'moodle','\\core\\task\\password_reset_cleanup_task',1619632861,1619650800,0,'0','*/6','*','*','*',0,0,0,NULL,NULL,NULL),(35,'moodle','\\core\\task\\complete_plans_task',1619640961,1619644200,0,'10','*','*','*','*',0,0,0,NULL,NULL,NULL),(36,'moodle','\\core\\task\\sync_plans_from_template_cohorts_task',1619638261,1619641020,0,'17','*','*','*','*',0,0,0,NULL,NULL,NULL),(37,'moodle','\\core_files\\task\\conversion_cleanup_task',0,1619661720,0,'2','2','*','*','*',0,0,0,NULL,NULL,NULL),(38,'moodle','\\core\\oauth2\\refresh_system_tokens_task',1619638261,1619641800,0,'30','*','*','*','*',0,0,0,NULL,NULL,NULL),(39,'moodle','\\core\\task\\analytics_cleanup_task',1619639162,1619642520,0,'42','*','*','*','*',0,0,0,NULL,NULL,NULL),(40,'moodle','\\core\\task\\task_log_cleanup_task',0,1619694540,0,'9','11','*','*','*',0,0,0,NULL,NULL,NULL),(41,'moodle','\\core\\task\\h5p_get_content_types_task',0,1619892420,0,'7','18','1','*','*',0,0,0,NULL,NULL,NULL),(42,'moodle','\\core\\task\\antivirus_cleanup_task',0,1619655120,0,'12','0','*','*','*',0,0,0,NULL,NULL,NULL),(43,'qtype_random','\\qtype_random\\task\\remove_unused_questions',1619640961,1619644500,0,'15','*','*','*','*',0,0,0,NULL,NULL,NULL),(44,'mod_assign','\\mod_assign\\task\\cron_task',1619640962,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(45,'mod_chat','\\mod_chat\\task\\cron_task',1619640962,1619641200,0,'*/5','*','*','*','*',0,0,0,NULL,NULL,NULL),(46,'mod_forum','\\mod_forum\\task\\cron_task',1619640962,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(47,'mod_lti','\\mod_lti\\task\\clean_access_tokens',1619640061,1619726400,0,'0','21','*','*','*',0,0,0,NULL,NULL,NULL),(48,'mod_quiz','\\mod_quiz\\task\\update_overdue_attempts',1619640962,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(49,'mod_quiz','\\mod_quiz\\task\\legacy_quiz_reports_cron',1619640962,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(50,'mod_quiz','\\mod_quiz\\task\\legacy_quiz_accessrules_cron',1619640962,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(51,'mod_scorm','\\mod_scorm\\task\\cron_task',1619640962,1619641200,0,'*/5','*','*','*','*',0,0,0,NULL,NULL,NULL),(52,'mod_workshop','\\mod_workshop\\task\\cron_task',1619640962,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(53,'mod_workshop','\\mod_workshop\\task\\legacy_workshop_allocation_cron',1619640962,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(54,'auth_cas','\\auth_cas\\task\\sync_task',0,1619650800,0,'0','0','*','*','*',0,0,1,NULL,NULL,NULL),(55,'auth_db','\\auth_db\\task\\sync_users',0,1619708640,0,'4','16','*','*','*',0,0,1,NULL,NULL,NULL),(56,'auth_ldap','\\auth_ldap\\task\\sync_roles',0,1619650800,0,'0','0','*','*','*',0,0,1,NULL,NULL,NULL),(57,'auth_ldap','\\auth_ldap\\task\\sync_task',0,1619650800,0,'0','0','*','*','*',0,0,1,NULL,NULL,NULL),(58,'auth_mnet','\\auth_mnet\\task\\cron_task',0,1619623740,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(59,'enrol_category','\\enrol_category\\task\\enrol_category_sync',0,1619623740,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(60,'enrol_cohort','\\enrol_cohort\\task\\enrol_cohort_sync',0,1619625600,0,'0','*','*','*','*',0,0,0,NULL,NULL,NULL),(61,'enrol_database','\\enrol_database\\task\\sync_enrolments',0,1619673180,0,'13','6','*','*','*',0,0,1,NULL,NULL,NULL),(62,'enrol_flatfile','\\enrol_flatfile\\task\\flatfile_sync_task',1619640961,1619644500,0,'15','*','*','*','*',0,0,0,NULL,NULL,NULL),(63,'enrol_imsenterprise','\\enrol_imsenterprise\\task\\cron_task',0,1619626200,0,'10','*','*','*','*',0,0,0,NULL,NULL,NULL),(64,'enrol_ldap','\\enrol_ldap\\task\\sync_enrolments',0,1619680200,0,'10','8','*','*','*',0,0,1,NULL,NULL,NULL),(65,'enrol_lti','\\enrol_lti\\task\\sync_grades',0,1619623800,0,'*/30','*','*','*','*',0,0,0,NULL,NULL,NULL),(66,'enrol_lti','\\enrol_lti\\task\\sync_members',0,1619623800,0,'*/30','*','*','*','*',0,0,0,NULL,NULL,NULL),(67,'enrol_manual','\\enrol_manual\\task\\sync_enrolments',1619640962,1619641200,0,'*/10','*','*','*','*',0,0,0,NULL,NULL,NULL),(68,'enrol_manual','\\enrol_manual\\task\\send_expiry_notifications',1619640962,1619641200,0,'*/10','*','*','*','*',0,0,0,NULL,NULL,NULL),(69,'enrol_meta','\\enrol_meta\\task\\enrol_meta_sync',0,1619625660,0,'1','*','*','*','*',0,0,0,NULL,NULL,NULL),(70,'enrol_paypal','\\enrol_paypal\\task\\process_expirations',0,1619623740,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(71,'enrol_self','\\enrol_self\\task\\sync_enrolments',1619640962,1619641200,0,'*/10','*','*','*','*',0,0,0,NULL,NULL,NULL),(72,'enrol_self','\\enrol_self\\task\\send_expiry_notifications',1619640962,1619641200,0,'*/10','*','*','*','*',0,0,0,NULL,NULL,NULL),(73,'message_email','\\message_email\\task\\send_email_task',0,1619643600,0,'0','22','*','*','*',0,0,0,NULL,NULL,NULL),(74,'block_recent_activity','\\block_recent_activity\\task\\cleanup',1619630161,1619716200,0,'10','18','*','*','*',0,0,0,NULL,NULL,NULL),(75,'block_rss_client','\\block_rss_client\\task\\refreshfeeds',1619640962,1619641200,0,'*/5','*','*','*','*',0,0,0,NULL,NULL,NULL),(76,'editor_atto','\\editor_atto\\task\\autosave_cleanup_task',0,1620199320,0,'22','8','*','*','3',0,0,0,NULL,NULL,NULL),(77,'repository_dropbox','\\repository_dropbox\\task\\cron_task',0,1619623740,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(78,'repository_filesystem','\\repository_filesystem\\task\\cron_task',0,1619623740,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(79,'repository_onedrive','\\repository_onedrive\\remove_temp_access_task',0,1619694240,0,'4','12','*','*','0',0,0,0,NULL,NULL,NULL),(80,'tool_analytics','\\tool_analytics\\task\\train_models',0,1619665200,0,'0','4','*','*','*',0,0,0,NULL,NULL,NULL),(81,'tool_analytics','\\tool_analytics\\task\\predict_models',0,1619679600,0,'0','8','*','*','*',0,0,0,NULL,NULL,NULL),(82,'tool_cohortroles','\\tool_cohortroles\\task\\cohort_role_sync',1619640961,1619644500,0,'15','*','*','*','*',0,0,0,NULL,NULL,NULL),(83,'tool_dataprivacy','\\tool_dataprivacy\\task\\expired_retention_period',0,1619676000,0,'0','7','*','*','*',0,0,0,NULL,NULL,NULL),(84,'tool_dataprivacy','\\tool_dataprivacy\\task\\delete_expired_contexts',0,1619686800,0,'0','10','*','*','*',0,0,0,NULL,NULL,NULL),(85,'tool_dataprivacy','\\tool_dataprivacy\\task\\delete_expired_requests',0,1619648400,0,'20','23','*','*','*',0,0,0,NULL,NULL,NULL),(86,'tool_dataprivacy','\\tool_dataprivacy\\task\\delete_existing_deleted_users',0,1619666040,0,'14','4','*','*','*',0,0,1,NULL,NULL,NULL),(87,'tool_langimport','\\tool_langimport\\task\\update_langpacks_task',0,1619666580,0,'23','4','*','*','*',0,0,0,NULL,NULL,NULL),(88,'tool_messageinbound','\\tool_messageinbound\\task\\pickup_task',1619640962,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(89,'tool_messageinbound','\\tool_messageinbound\\task\\cleanup_task',0,1619657700,0,'55','1','*','*','*',0,0,0,NULL,NULL,NULL),(90,'tool_monitor','\\tool_monitor\\task\\clean_events',1619640962,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(91,'tool_monitor','\\tool_monitor\\task\\check_subscriptions',0,1619709720,0,'22','16','*','*','*',0,0,0,NULL,NULL,NULL),(92,'tool_recyclebin','\\tool_recyclebin\\task\\cleanup_course_bin',1619640062,1619641800,0,'*/30','*','*','*','*',0,0,0,NULL,NULL,NULL),(93,'tool_recyclebin','\\tool_recyclebin\\task\\cleanup_category_bin',1619640062,1619641800,0,'*/30','*','*','*','*',0,0,0,NULL,NULL,NULL),(94,'assignfeedback_editpdf','\\assignfeedback_editpdf\\task\\convert_submissions',1619640962,1619641800,0,'*/15','*','*','*','*',0,0,0,NULL,NULL,NULL),(95,'ltiservice_gradebookservices','\\ltiservice_gradebookservices\\task\\cleanup_task',0,1619683560,0,'6','9','*','*','*',0,0,0,NULL,NULL,NULL),(96,'quiz_statistics','\\quiz_statistics\\task\\quiz_statistics_cleanup',1619637361,1619651640,0,'14','*/5','*','*','*',0,0,0,NULL,NULL,NULL),(97,'workshopallocation_scheduled','\\workshopallocation_scheduled\\task\\cron_task',1619640962,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL),(98,'logstore_legacy','\\logstore_legacy\\task\\cleanup_task',0,1619669220,0,'7','5','*','*','*',0,0,0,NULL,NULL,NULL),(99,'logstore_standard','\\logstore_standard\\task\\cleanup_task',0,1619665200,0,'0','4','*','*','*',0,0,0,NULL,NULL,NULL),(100,'mod_customcert','\\mod_customcert\\task\\email_certificate_task',1619640962,1619641020,0,'*','*','*','*','*',0,0,0,NULL,NULL,NULL); -/*!40000 ALTER TABLE `mdl_task_scheduled` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tool_cohortroles` --- - -DROP TABLE IF EXISTS `mdl_tool_cohortroles`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tool_cohortroles` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `cohortid` bigint(10) NOT NULL, - `roleid` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `usermodified` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_toolcoho_cohroluse_uix` (`cohortid`,`roleid`,`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Mapping of users to cohort role assignments.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tool_cohortroles` --- - -LOCK TABLES `mdl_tool_cohortroles` WRITE; -/*!40000 ALTER TABLE `mdl_tool_cohortroles` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tool_cohortroles` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tool_customlang` --- - -DROP TABLE IF EXISTS `mdl_tool_customlang`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tool_customlang` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `lang` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `componentid` bigint(10) NOT NULL, - `stringid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `original` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `master` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `local` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timemodified` bigint(10) NOT NULL, - `timecustomized` bigint(10) DEFAULT NULL, - `outdated` smallint(3) DEFAULT 0, - `modified` smallint(3) DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_toolcust_lancomstr_uix` (`lang`,`componentid`,`stringid`), - KEY `mdl_toolcust_com_ix` (`componentid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Contains the working checkout of all strings and their custo'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tool_customlang` --- - -LOCK TABLES `mdl_tool_customlang` WRITE; -/*!40000 ALTER TABLE `mdl_tool_customlang` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tool_customlang` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tool_customlang_components` --- - -DROP TABLE IF EXISTS `mdl_tool_customlang_components`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tool_customlang_components` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `version` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Contains the list of all installed plugins that provide thei'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tool_customlang_components` --- - -LOCK TABLES `mdl_tool_customlang_components` WRITE; -/*!40000 ALTER TABLE `mdl_tool_customlang_components` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tool_customlang_components` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tool_dataprivacy_category` --- - -DROP TABLE IF EXISTS `mdl_tool_dataprivacy_category`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tool_dataprivacy_category` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` tinyint(1) DEFAULT NULL, - `usermodified` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Data categories'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tool_dataprivacy_category` --- - -LOCK TABLES `mdl_tool_dataprivacy_category` WRITE; -/*!40000 ALTER TABLE `mdl_tool_dataprivacy_category` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tool_dataprivacy_category` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tool_dataprivacy_ctxexpired` --- - -DROP TABLE IF EXISTS `mdl_tool_dataprivacy_ctxexpired`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tool_dataprivacy_ctxexpired` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `contextid` bigint(10) NOT NULL, - `unexpiredroles` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `expiredroles` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `defaultexpired` tinyint(1) NOT NULL, - `status` tinyint(2) NOT NULL DEFAULT 0, - `usermodified` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_tooldatactxe_con_uix` (`contextid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Default comment for the table, please edit me'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tool_dataprivacy_ctxexpired` --- - -LOCK TABLES `mdl_tool_dataprivacy_ctxexpired` WRITE; -/*!40000 ALTER TABLE `mdl_tool_dataprivacy_ctxexpired` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tool_dataprivacy_ctxexpired` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tool_dataprivacy_ctxinstance` --- - -DROP TABLE IF EXISTS `mdl_tool_dataprivacy_ctxinstance`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tool_dataprivacy_ctxinstance` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `contextid` bigint(10) NOT NULL, - `purposeid` bigint(10) DEFAULT NULL, - `categoryid` bigint(10) DEFAULT NULL, - `usermodified` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_tooldatactxi_con_uix` (`contextid`), - KEY `mdl_tooldatactxi_pur_ix` (`purposeid`), - KEY `mdl_tooldatactxi_cat_ix` (`categoryid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Default comment for the table, please edit me'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tool_dataprivacy_ctxinstance` --- - -LOCK TABLES `mdl_tool_dataprivacy_ctxinstance` WRITE; -/*!40000 ALTER TABLE `mdl_tool_dataprivacy_ctxinstance` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tool_dataprivacy_ctxinstance` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tool_dataprivacy_ctxlevel` --- - -DROP TABLE IF EXISTS `mdl_tool_dataprivacy_ctxlevel`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tool_dataprivacy_ctxlevel` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `contextlevel` smallint(3) NOT NULL, - `purposeid` bigint(10) DEFAULT NULL, - `categoryid` bigint(10) DEFAULT NULL, - `usermodified` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_tooldatactxl_con_uix` (`contextlevel`), - KEY `mdl_tooldatactxl_cat_ix` (`categoryid`), - KEY `mdl_tooldatactxl_pur_ix` (`purposeid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Default comment for the table, please edit me'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tool_dataprivacy_ctxlevel` --- - -LOCK TABLES `mdl_tool_dataprivacy_ctxlevel` WRITE; -/*!40000 ALTER TABLE `mdl_tool_dataprivacy_ctxlevel` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tool_dataprivacy_ctxlevel` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tool_dataprivacy_purpose` --- - -DROP TABLE IF EXISTS `mdl_tool_dataprivacy_purpose`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tool_dataprivacy_purpose` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` tinyint(1) DEFAULT NULL, - `lawfulbases` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `sensitivedatareasons` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `retentionperiod` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `protected` tinyint(1) DEFAULT NULL, - `usermodified` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Data purposes'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tool_dataprivacy_purpose` --- - -LOCK TABLES `mdl_tool_dataprivacy_purpose` WRITE; -/*!40000 ALTER TABLE `mdl_tool_dataprivacy_purpose` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tool_dataprivacy_purpose` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tool_dataprivacy_purposerole` --- - -DROP TABLE IF EXISTS `mdl_tool_dataprivacy_purposerole`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tool_dataprivacy_purposerole` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `purposeid` bigint(10) NOT NULL, - `roleid` bigint(10) NOT NULL, - `lawfulbases` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `sensitivedatareasons` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `retentionperiod` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `protected` tinyint(1) DEFAULT NULL, - `usermodified` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_tooldatapurp_purrol_uix` (`purposeid`,`roleid`), - KEY `mdl_tooldatapurp_pur_ix` (`purposeid`), - KEY `mdl_tooldatapurp_rol_ix` (`roleid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Data purpose overrides for a specific role'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tool_dataprivacy_purposerole` --- - -LOCK TABLES `mdl_tool_dataprivacy_purposerole` WRITE; -/*!40000 ALTER TABLE `mdl_tool_dataprivacy_purposerole` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tool_dataprivacy_purposerole` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tool_dataprivacy_request` --- - -DROP TABLE IF EXISTS `mdl_tool_dataprivacy_request`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tool_dataprivacy_request` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `type` bigint(10) NOT NULL DEFAULT 0, - `comments` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `commentsformat` tinyint(2) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `requestedby` bigint(10) NOT NULL DEFAULT 0, - `status` tinyint(2) NOT NULL DEFAULT 0, - `dpo` bigint(10) DEFAULT 0, - `dpocomment` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `dpocommentformat` tinyint(2) NOT NULL DEFAULT 0, - `systemapproved` smallint(4) NOT NULL DEFAULT 0, - `usermodified` bigint(10) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `creationmethod` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_tooldatarequ_use_ix` (`userid`), - KEY `mdl_tooldatarequ_req_ix` (`requestedby`), - KEY `mdl_tooldatarequ_dpo_ix` (`dpo`), - KEY `mdl_tooldatarequ_use2_ix` (`usermodified`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Table for data requests'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tool_dataprivacy_request` --- - -LOCK TABLES `mdl_tool_dataprivacy_request` WRITE; -/*!40000 ALTER TABLE `mdl_tool_dataprivacy_request` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tool_dataprivacy_request` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tool_monitor_events` --- - -DROP TABLE IF EXISTS `mdl_tool_monitor_events`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tool_monitor_events` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `eventname` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `contextid` bigint(10) NOT NULL, - `contextlevel` bigint(10) NOT NULL, - `contextinstanceid` bigint(10) NOT NULL, - `link` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `courseid` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='A table that keeps a log of events related to subscriptions'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tool_monitor_events` --- - -LOCK TABLES `mdl_tool_monitor_events` WRITE; -/*!40000 ALTER TABLE `mdl_tool_monitor_events` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tool_monitor_events` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tool_monitor_history` --- - -DROP TABLE IF EXISTS `mdl_tool_monitor_history`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tool_monitor_history` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `sid` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `timesent` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_toolmonihist_sidusetim_uix` (`sid`,`userid`,`timesent`), - KEY `mdl_toolmonihist_sid_ix` (`sid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Table to store history of message notifications sent'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tool_monitor_history` --- - -LOCK TABLES `mdl_tool_monitor_history` WRITE; -/*!40000 ALTER TABLE `mdl_tool_monitor_history` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tool_monitor_history` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tool_monitor_rules` --- - -DROP TABLE IF EXISTS `mdl_tool_monitor_rules`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tool_monitor_rules` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` tinyint(1) NOT NULL, - `name` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `userid` bigint(10) NOT NULL, - `courseid` bigint(10) NOT NULL, - `plugin` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `eventname` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `template` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `templateformat` tinyint(1) NOT NULL, - `frequency` smallint(4) NOT NULL, - `timewindow` mediumint(5) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_toolmonirule_couuse_ix` (`courseid`,`userid`), - KEY `mdl_toolmonirule_eve_ix` (`eventname`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Table to store rules'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tool_monitor_rules` --- - -LOCK TABLES `mdl_tool_monitor_rules` WRITE; -/*!40000 ALTER TABLE `mdl_tool_monitor_rules` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tool_monitor_rules` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tool_monitor_subscriptions` --- - -DROP TABLE IF EXISTS `mdl_tool_monitor_subscriptions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tool_monitor_subscriptions` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `courseid` bigint(10) NOT NULL, - `ruleid` bigint(10) NOT NULL, - `cmid` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `lastnotificationsent` bigint(10) NOT NULL DEFAULT 0, - `inactivedate` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_toolmonisubs_couuse_ix` (`courseid`,`userid`), - KEY `mdl_toolmonisubs_rul_ix` (`ruleid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Table to store user subscriptions to various rules'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tool_monitor_subscriptions` --- - -LOCK TABLES `mdl_tool_monitor_subscriptions` WRITE; -/*!40000 ALTER TABLE `mdl_tool_monitor_subscriptions` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tool_monitor_subscriptions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tool_policy` --- - -DROP TABLE IF EXISTS `mdl_tool_policy`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tool_policy` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `sortorder` mediumint(5) NOT NULL DEFAULT 999, - `currentversionid` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_toolpoli_cur_ix` (`currentversionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Contains the list of policy documents defined on the site.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tool_policy` --- - -LOCK TABLES `mdl_tool_policy` WRITE; -/*!40000 ALTER TABLE `mdl_tool_policy` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tool_policy` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tool_policy_acceptances` --- - -DROP TABLE IF EXISTS `mdl_tool_policy_acceptances`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tool_policy_acceptances` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `policyversionid` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `status` tinyint(1) DEFAULT NULL, - `lang` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `usermodified` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `note` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_toolpoliacce_poluse_uix` (`policyversionid`,`userid`), - KEY `mdl_toolpoliacce_pol_ix` (`policyversionid`), - KEY `mdl_toolpoliacce_use_ix` (`userid`), - KEY `mdl_toolpoliacce_use2_ix` (`usermodified`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Tracks users accepting the policy versions'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tool_policy_acceptances` --- - -LOCK TABLES `mdl_tool_policy_acceptances` WRITE; -/*!40000 ALTER TABLE `mdl_tool_policy_acceptances` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tool_policy_acceptances` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tool_policy_versions` --- - -DROP TABLE IF EXISTS `mdl_tool_policy_versions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tool_policy_versions` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(1333) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `type` smallint(3) NOT NULL DEFAULT 0, - `audience` smallint(3) NOT NULL DEFAULT 0, - `archived` smallint(3) NOT NULL DEFAULT 0, - `usermodified` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `policyid` bigint(10) NOT NULL, - `agreementstyle` smallint(3) NOT NULL DEFAULT 0, - `optional` smallint(3) NOT NULL DEFAULT 0, - `revision` varchar(1333) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `summary` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `summaryformat` smallint(3) NOT NULL, - `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `contentformat` smallint(3) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_toolpolivers_use_ix` (`usermodified`), - KEY `mdl_toolpolivers_pol_ix` (`policyid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Holds versions of the policy documents'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tool_policy_versions` --- - -LOCK TABLES `mdl_tool_policy_versions` WRITE; -/*!40000 ALTER TABLE `mdl_tool_policy_versions` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tool_policy_versions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tool_recyclebin_category` --- - -DROP TABLE IF EXISTS `mdl_tool_recyclebin_category`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tool_recyclebin_category` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `categoryid` bigint(10) NOT NULL, - `shortname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `fullname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `timecreated` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_toolrecycate_tim_ix` (`timecreated`), - KEY `mdl_toolrecycate_cat_ix` (`categoryid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='A list of items in the category recycle bin'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tool_recyclebin_category` --- - -LOCK TABLES `mdl_tool_recyclebin_category` WRITE; -/*!40000 ALTER TABLE `mdl_tool_recyclebin_category` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tool_recyclebin_category` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tool_recyclebin_course` --- - -DROP TABLE IF EXISTS `mdl_tool_recyclebin_course`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tool_recyclebin_course` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `courseid` bigint(10) NOT NULL, - `section` bigint(10) NOT NULL, - `module` bigint(10) NOT NULL, - `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_toolrecycour_tim_ix` (`timecreated`), - KEY `mdl_toolrecycour_cou_ix` (`courseid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='A list of items in the course recycle bin'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tool_recyclebin_course` --- - -LOCK TABLES `mdl_tool_recyclebin_course` WRITE; -/*!40000 ALTER TABLE `mdl_tool_recyclebin_course` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tool_recyclebin_course` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tool_usertours_steps` --- - -DROP TABLE IF EXISTS `mdl_tool_usertours_steps`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tool_usertours_steps` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `tourid` bigint(10) NOT NULL, - `title` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `content` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `targettype` tinyint(2) NOT NULL, - `targetvalue` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `sortorder` bigint(10) NOT NULL DEFAULT 0, - `configdata` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_tooluserstep_tousor_ix` (`tourid`,`sortorder`), - KEY `mdl_tooluserstep_tou_ix` (`tourid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Steps in an tour'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tool_usertours_steps` --- - -LOCK TABLES `mdl_tool_usertours_steps` WRITE; -/*!40000 ALTER TABLE `mdl_tool_usertours_steps` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tool_usertours_steps` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_tool_usertours_tours` --- - -DROP TABLE IF EXISTS `mdl_tool_usertours_tours`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_tool_usertours_tours` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `pathmatch` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `enabled` tinyint(1) NOT NULL DEFAULT 0, - `sortorder` bigint(10) NOT NULL DEFAULT 0, - `configdata` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='List of tours'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_tool_usertours_tours` --- - -LOCK TABLES `mdl_tool_usertours_tours` WRITE; -/*!40000 ALTER TABLE `mdl_tool_usertours_tours` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_tool_usertours_tours` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_upgrade_log` --- - -DROP TABLE IF EXISTS `mdl_upgrade_log`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_upgrade_log` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `type` bigint(10) NOT NULL, - `plugin` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `version` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `targetversion` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `info` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `details` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `backtrace` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `userid` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_upgrlog_tim_ix` (`timemodified`), - KEY `mdl_upgrlog_typtim_ix` (`type`,`timemodified`), - KEY `mdl_upgrlog_use_ix` (`userid`) -) ENGINE=InnoDB AUTO_INCREMENT=1305 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Upgrade logging'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_upgrade_log` --- - -LOCK TABLES `mdl_upgrade_log` WRITE; -/*!40000 ALTER TABLE `mdl_upgrade_log` DISABLE KEYS */; -INSERT INTO `mdl_upgrade_log` VALUES (1,0,'core','2020110901.04','2020110901.04','Upgrade savepoint reached',NULL,'',0,1619623687),(2,0,'core','2020110901.04','2020110901.04','Core installed',NULL,'',0,1619623694),(3,0,'antivirus_clamav',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623694),(4,0,'antivirus_clamav','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623694),(5,0,'antivirus_clamav','2020110900','2020110900','Plugin installed',NULL,'',0,1619623694),(6,0,'availability_completion',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623694),(7,0,'availability_completion','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623694),(8,0,'availability_completion','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(9,0,'availability_date',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(10,0,'availability_date','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(11,0,'availability_date','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(12,0,'availability_grade',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(13,0,'availability_grade','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(14,0,'availability_grade','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(15,0,'availability_group',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(16,0,'availability_group','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(17,0,'availability_group','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(18,0,'availability_grouping',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(19,0,'availability_grouping','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(20,0,'availability_grouping','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(21,0,'availability_profile',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(22,0,'availability_profile','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(23,0,'availability_profile','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(24,0,'qtype_calculated',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(25,0,'qtype_calculated','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(26,0,'qtype_calculated','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(27,0,'qtype_calculatedmulti',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(28,0,'qtype_calculatedmulti','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(29,0,'qtype_calculatedmulti','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(30,0,'qtype_calculatedsimple',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(31,0,'qtype_calculatedsimple','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(32,0,'qtype_calculatedsimple','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(33,0,'qtype_ddimageortext',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(34,0,'qtype_ddimageortext','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(35,0,'qtype_ddimageortext','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(36,0,'qtype_ddmarker',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(37,0,'qtype_ddmarker','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(38,0,'qtype_ddmarker','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(39,0,'qtype_ddwtos',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(40,0,'qtype_ddwtos','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(41,0,'qtype_ddwtos','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(42,0,'qtype_description',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(43,0,'qtype_description','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(44,0,'qtype_description','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(45,0,'qtype_essay',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(46,0,'qtype_essay','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(47,0,'qtype_essay','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(48,0,'qtype_gapselect',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(49,0,'qtype_gapselect','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(50,0,'qtype_gapselect','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(51,0,'qtype_match',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(52,0,'qtype_match','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(53,0,'qtype_match','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(54,0,'qtype_missingtype',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(55,0,'qtype_missingtype','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(56,0,'qtype_missingtype','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(57,0,'qtype_multianswer',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(58,0,'qtype_multianswer','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(59,0,'qtype_multianswer','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(60,0,'qtype_multichoice',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(61,0,'qtype_multichoice','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(62,0,'qtype_multichoice','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(63,0,'qtype_numerical',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(64,0,'qtype_numerical','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(65,0,'qtype_numerical','2020110900','2020110900','Plugin installed',NULL,'',0,1619623695),(66,0,'qtype_random',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623695),(67,0,'qtype_random','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623695),(68,0,'qtype_random','2020110900','2020110900','Plugin installed',NULL,'',0,1619623696),(69,0,'qtype_randomsamatch',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623696),(70,0,'qtype_randomsamatch','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623696),(71,0,'qtype_randomsamatch','2020110900','2020110900','Plugin installed',NULL,'',0,1619623696),(72,0,'qtype_shortanswer',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623696),(73,0,'qtype_shortanswer','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623696),(74,0,'qtype_shortanswer','2020110900','2020110900','Plugin installed',NULL,'',0,1619623696),(75,0,'qtype_truefalse',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623696),(76,0,'qtype_truefalse','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623696),(77,0,'qtype_truefalse','2020110900','2020110900','Plugin installed',NULL,'',0,1619623696),(78,0,'mod_assign',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623696),(79,0,'mod_assign','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623696),(80,0,'mod_assign','2020110900','2020110900','Plugin installed',NULL,'',0,1619623696),(81,0,'mod_assignment',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623696),(82,0,'mod_assignment','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623696),(83,0,'mod_assignment','2020110900','2020110900','Plugin installed',NULL,'',0,1619623696),(84,0,'mod_book',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623696),(85,0,'mod_book','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623697),(86,0,'mod_book','2020110900','2020110900','Plugin installed',NULL,'',0,1619623697),(87,0,'mod_chat',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623697),(88,0,'mod_chat','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623697),(89,0,'mod_chat','2020110900','2020110900','Plugin installed',NULL,'',0,1619623697),(90,0,'mod_choice',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623697),(91,0,'mod_choice','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623697),(92,0,'mod_choice','2020110900','2020110900','Plugin installed',NULL,'',0,1619623697),(93,0,'mod_data',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623697),(94,0,'mod_data','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623697),(95,0,'mod_data','2020110900','2020110900','Plugin installed',NULL,'',0,1619623698),(96,0,'mod_feedback',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623698),(97,0,'mod_feedback','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623698),(98,0,'mod_feedback','2020110900','2020110900','Plugin installed',NULL,'',0,1619623698),(99,0,'mod_folder',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623698),(100,0,'mod_folder','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623698),(101,0,'mod_folder','2020110900','2020110900','Plugin installed',NULL,'',0,1619623698),(102,0,'mod_forum',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623698),(103,0,'mod_forum','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623699),(104,0,'mod_forum','2020110900','2020110900','Plugin installed',NULL,'',0,1619623700),(105,0,'mod_glossary',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623700),(106,0,'mod_glossary','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623700),(107,0,'mod_glossary','2020110900','2020110900','Plugin installed',NULL,'',0,1619623700),(108,0,'mod_h5pactivity',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623700),(109,0,'mod_h5pactivity','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623700),(110,0,'mod_h5pactivity','2020110900','2020110900','Plugin installed',NULL,'',0,1619623701),(111,0,'mod_imscp',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623701),(112,0,'mod_imscp','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623701),(113,0,'mod_imscp','2020110900','2020110900','Plugin installed',NULL,'',0,1619623701),(114,0,'mod_label',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623701),(115,0,'mod_label','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623701),(116,0,'mod_label','2020110900','2020110900','Plugin installed',NULL,'',0,1619623701),(117,0,'mod_lesson',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623701),(118,0,'mod_lesson','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623701),(119,0,'mod_lesson','2020110900','2020110900','Plugin installed',NULL,'',0,1619623701),(120,0,'mod_lti',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623701),(121,0,'mod_lti','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623701),(122,0,'mod_lti','2020110900','2020110900','Plugin installed',NULL,'',0,1619623702),(123,0,'mod_page',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623702),(124,0,'mod_page','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623702),(125,0,'mod_page','2020110900','2020110900','Plugin installed',NULL,'',0,1619623702),(126,0,'mod_quiz',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623702),(127,0,'mod_quiz','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623702),(128,0,'mod_quiz','2020110900','2020110900','Plugin installed',NULL,'',0,1619623702),(129,0,'mod_resource',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623702),(130,0,'mod_resource','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623702),(131,0,'mod_resource','2020110900','2020110900','Plugin installed',NULL,'',0,1619623702),(132,0,'mod_scorm',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623702),(133,0,'mod_scorm','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623702),(134,0,'mod_scorm','2020110900','2020110900','Plugin installed',NULL,'',0,1619623703),(135,0,'mod_survey',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623703),(136,0,'mod_survey','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623703),(137,0,'mod_survey','2020110900','2020110900','Plugin installed',NULL,'',0,1619623703),(138,0,'mod_url',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623703),(139,0,'mod_url','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623703),(140,0,'mod_url','2020110900','2020110900','Plugin installed',NULL,'',0,1619623703),(141,0,'mod_wiki',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623703),(142,0,'mod_wiki','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623703),(143,0,'mod_wiki','2020110900','2020110900','Plugin installed',NULL,'',0,1619623704),(144,0,'mod_workshop',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623704),(145,0,'mod_workshop','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623704),(146,0,'mod_workshop','2020110900','2020110900','Plugin installed',NULL,'',0,1619623704),(147,0,'auth_cas',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623704),(148,0,'auth_cas','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623704),(149,0,'auth_cas','2020110900','2020110900','Plugin installed',NULL,'',0,1619623704),(150,0,'auth_db',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623704),(151,0,'auth_db','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623704),(152,0,'auth_db','2020110900','2020110900','Plugin installed',NULL,'',0,1619623704),(153,0,'auth_email',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623704),(154,0,'auth_email','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623704),(155,0,'auth_email','2020110900','2020110900','Plugin installed',NULL,'',0,1619623704),(156,0,'auth_ldap',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623704),(157,0,'auth_ldap','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623704),(158,0,'auth_ldap','2020110900','2020110900','Plugin installed',NULL,'',0,1619623704),(159,0,'auth_lti',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623704),(160,0,'auth_lti','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623704),(161,0,'auth_lti','2020110900','2020110900','Plugin installed',NULL,'',0,1619623704),(162,0,'auth_manual',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623704),(163,0,'auth_manual','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623704),(164,0,'auth_manual','2020110900','2020110900','Plugin installed',NULL,'',0,1619623704),(165,0,'auth_mnet',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623704),(166,0,'auth_mnet','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623704),(167,0,'auth_mnet','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(168,0,'auth_nologin',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(169,0,'auth_nologin','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(170,0,'auth_nologin','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(171,0,'auth_none',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(172,0,'auth_none','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(173,0,'auth_none','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(174,0,'auth_oauth2',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(175,0,'auth_oauth2','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(176,0,'auth_oauth2','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(177,0,'auth_shibboleth',NULL,'2020110901','Starting plugin installation',NULL,'',0,1619623705),(178,0,'auth_shibboleth','2020110901','2020110901','Upgrade savepoint reached',NULL,'',0,1619623705),(179,0,'auth_shibboleth','2020110901','2020110901','Plugin installed',NULL,'',0,1619623705),(180,0,'auth_webservice',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(181,0,'auth_webservice','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(182,0,'auth_webservice','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(183,0,'calendartype_gregorian',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(184,0,'calendartype_gregorian','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(185,0,'calendartype_gregorian','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(186,0,'customfield_checkbox',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(187,0,'customfield_checkbox','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(188,0,'customfield_checkbox','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(189,0,'customfield_date',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(190,0,'customfield_date','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(191,0,'customfield_date','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(192,0,'customfield_select',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(193,0,'customfield_select','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(194,0,'customfield_select','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(195,0,'customfield_text',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(196,0,'customfield_text','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(197,0,'customfield_text','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(198,0,'customfield_textarea',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(199,0,'customfield_textarea','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(200,0,'customfield_textarea','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(201,0,'enrol_category',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(202,0,'enrol_category','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(203,0,'enrol_category','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(204,0,'enrol_cohort',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(205,0,'enrol_cohort','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(206,0,'enrol_cohort','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(207,0,'enrol_database',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(208,0,'enrol_database','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(209,0,'enrol_database','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(210,0,'enrol_fee',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(211,0,'enrol_fee','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(212,0,'enrol_fee','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(213,0,'enrol_flatfile',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(214,0,'enrol_flatfile','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(215,0,'enrol_flatfile','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(216,0,'enrol_guest',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(217,0,'enrol_guest','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(218,0,'enrol_guest','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(219,0,'enrol_imsenterprise',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(220,0,'enrol_imsenterprise','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(221,0,'enrol_imsenterprise','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(222,0,'enrol_ldap',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(223,0,'enrol_ldap','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623705),(224,0,'enrol_ldap','2020110900','2020110900','Plugin installed',NULL,'',0,1619623705),(225,0,'enrol_lti',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623705),(226,0,'enrol_lti','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623706),(227,0,'enrol_lti','2020110900','2020110900','Plugin installed',NULL,'',0,1619623706),(228,0,'enrol_manual',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623706),(229,0,'enrol_manual','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623706),(230,0,'enrol_manual','2020110900','2020110900','Plugin installed',NULL,'',0,1619623706),(231,0,'enrol_meta',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623706),(232,0,'enrol_meta','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623706),(233,0,'enrol_meta','2020110900','2020110900','Plugin installed',NULL,'',0,1619623706),(234,0,'enrol_mnet',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623706),(235,0,'enrol_mnet','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623706),(236,0,'enrol_mnet','2020110900','2020110900','Plugin installed',NULL,'',0,1619623706),(237,0,'enrol_paypal',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623706),(238,0,'enrol_paypal','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623706),(239,0,'enrol_paypal','2020110900','2020110900','Plugin installed',NULL,'',0,1619623706),(240,0,'enrol_self',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623706),(241,0,'enrol_self','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623706),(242,0,'enrol_self','2020110900','2020110900','Plugin installed',NULL,'',0,1619623706),(243,0,'message_airnotifier',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623706),(244,0,'message_airnotifier','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623706),(245,0,'message_airnotifier','2020110900','2020110900','Plugin installed',NULL,'',0,1619623706),(246,0,'message_email',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623706),(247,0,'message_email','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623706),(248,0,'message_email','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(249,0,'message_jabber',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(250,0,'message_jabber','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(251,0,'message_jabber','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(252,0,'message_popup',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(253,0,'message_popup','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(254,0,'message_popup','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(255,0,'block_activity_modules',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(256,0,'block_activity_modules','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(257,0,'block_activity_modules','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(258,0,'block_activity_results',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(259,0,'block_activity_results','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(260,0,'block_activity_results','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(261,0,'block_admin_bookmarks',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(262,0,'block_admin_bookmarks','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(263,0,'block_admin_bookmarks','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(264,0,'block_badges',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(265,0,'block_badges','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(266,0,'block_badges','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(267,0,'block_blog_menu',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(268,0,'block_blog_menu','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(269,0,'block_blog_menu','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(270,0,'block_blog_recent',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(271,0,'block_blog_recent','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(272,0,'block_blog_recent','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(273,0,'block_blog_tags',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(274,0,'block_blog_tags','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(275,0,'block_blog_tags','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(276,0,'block_calendar_month',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(277,0,'block_calendar_month','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(278,0,'block_calendar_month','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(279,0,'block_calendar_upcoming',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(280,0,'block_calendar_upcoming','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(281,0,'block_calendar_upcoming','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(282,0,'block_comments',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(283,0,'block_comments','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(284,0,'block_comments','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(285,0,'block_completionstatus',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(286,0,'block_completionstatus','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(287,0,'block_completionstatus','2020110900','2020110900','Plugin installed',NULL,'',0,1619623707),(288,0,'block_course_list',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623707),(289,0,'block_course_list','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623707),(290,0,'block_course_list','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(291,0,'block_course_summary',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(292,0,'block_course_summary','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(293,0,'block_course_summary','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(294,0,'block_feedback',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(295,0,'block_feedback','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(296,0,'block_feedback','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(297,0,'block_globalsearch',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(298,0,'block_globalsearch','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(299,0,'block_globalsearch','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(300,0,'block_glossary_random',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(301,0,'block_glossary_random','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(302,0,'block_glossary_random','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(303,0,'block_html',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(304,0,'block_html','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(305,0,'block_html','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(306,0,'block_login',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(307,0,'block_login','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(308,0,'block_login','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(309,0,'block_lp',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(310,0,'block_lp','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(311,0,'block_lp','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(312,0,'block_mentees',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(313,0,'block_mentees','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(314,0,'block_mentees','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(315,0,'block_mnet_hosts',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(316,0,'block_mnet_hosts','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(317,0,'block_mnet_hosts','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(318,0,'block_myoverview',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(319,0,'block_myoverview','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(320,0,'block_myoverview','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(321,0,'block_myprofile',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(322,0,'block_myprofile','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(323,0,'block_myprofile','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(324,0,'block_navigation',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(325,0,'block_navigation','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(326,0,'block_navigation','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(327,0,'block_news_items',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(328,0,'block_news_items','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(329,0,'block_news_items','2020110900','2020110900','Plugin installed',NULL,'',0,1619623708),(330,0,'block_online_users',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623708),(331,0,'block_online_users','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623708),(332,0,'block_online_users','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(333,0,'block_private_files',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(334,0,'block_private_files','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(335,0,'block_private_files','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(336,0,'block_quiz_results',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(337,0,'block_quiz_results','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(338,0,'block_quiz_results','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(339,0,'block_recent_activity',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(340,0,'block_recent_activity','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(341,0,'block_recent_activity','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(342,0,'block_recentlyaccessedcourses',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(343,0,'block_recentlyaccessedcourses','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(344,0,'block_recentlyaccessedcourses','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(345,0,'block_recentlyaccesseditems',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(346,0,'block_recentlyaccesseditems','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(347,0,'block_recentlyaccesseditems','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(348,0,'block_rss_client',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(349,0,'block_rss_client','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(350,0,'block_rss_client','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(351,0,'block_search_forums',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(352,0,'block_search_forums','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(353,0,'block_search_forums','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(354,0,'block_section_links',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(355,0,'block_section_links','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(356,0,'block_section_links','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(357,0,'block_selfcompletion',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(358,0,'block_selfcompletion','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(359,0,'block_selfcompletion','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(360,0,'block_settings',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(361,0,'block_settings','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(362,0,'block_settings','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(363,0,'block_site_main_menu',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(364,0,'block_site_main_menu','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(365,0,'block_site_main_menu','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(366,0,'block_social_activities',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(367,0,'block_social_activities','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(368,0,'block_social_activities','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(369,0,'block_starredcourses',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(370,0,'block_starredcourses','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(371,0,'block_starredcourses','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(372,0,'block_tag_flickr',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(373,0,'block_tag_flickr','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(374,0,'block_tag_flickr','2020110900','2020110900','Plugin installed',NULL,'',0,1619623709),(375,0,'block_tag_youtube',NULL,'2020110901','Starting plugin installation',NULL,'',0,1619623709),(376,0,'block_tag_youtube','2020110901','2020110901','Upgrade savepoint reached',NULL,'',0,1619623709),(377,0,'block_tag_youtube','2020110901','2020110901','Plugin installed',NULL,'',0,1619623709),(378,0,'block_tags',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623709),(379,0,'block_tags','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623709),(380,0,'block_tags','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(381,0,'block_timeline',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(382,0,'block_timeline','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(383,0,'block_timeline','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(384,0,'media_html5audio',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(385,0,'media_html5audio','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(386,0,'media_html5audio','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(387,0,'media_html5video',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(388,0,'media_html5video','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(389,0,'media_html5video','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(390,0,'media_swf',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(391,0,'media_swf','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(392,0,'media_swf','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(393,0,'media_videojs',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(394,0,'media_videojs','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(395,0,'media_videojs','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(396,0,'media_vimeo',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(397,0,'media_vimeo','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(398,0,'media_vimeo','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(399,0,'media_youtube',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(400,0,'media_youtube','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(401,0,'media_youtube','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(402,0,'filter_activitynames',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(403,0,'filter_activitynames','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(404,0,'filter_activitynames','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(405,0,'filter_algebra',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(406,0,'filter_algebra','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(407,0,'filter_algebra','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(408,0,'filter_censor',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(409,0,'filter_censor','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(410,0,'filter_censor','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(411,0,'filter_data',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(412,0,'filter_data','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(413,0,'filter_data','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(414,0,'filter_displayh5p',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(415,0,'filter_displayh5p','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(416,0,'filter_displayh5p','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(417,0,'filter_emailprotect',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(418,0,'filter_emailprotect','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(419,0,'filter_emailprotect','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(420,0,'filter_emoticon',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(421,0,'filter_emoticon','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(422,0,'filter_emoticon','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(423,0,'filter_glossary',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(424,0,'filter_glossary','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(425,0,'filter_glossary','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(426,0,'filter_mathjaxloader',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(427,0,'filter_mathjaxloader','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(428,0,'filter_mathjaxloader','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(429,0,'filter_mediaplugin',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(430,0,'filter_mediaplugin','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(431,0,'filter_mediaplugin','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(432,0,'filter_multilang',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(433,0,'filter_multilang','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(434,0,'filter_multilang','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(435,0,'filter_tex',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(436,0,'filter_tex','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(437,0,'filter_tex','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(438,0,'filter_tidy',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(439,0,'filter_tidy','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(440,0,'filter_tidy','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(441,0,'filter_urltolink',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(442,0,'filter_urltolink','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(443,0,'filter_urltolink','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(444,0,'editor_atto',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(445,0,'editor_atto','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(446,0,'editor_atto','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(447,0,'editor_textarea',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(448,0,'editor_textarea','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(449,0,'editor_textarea','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(450,0,'editor_tinymce',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(451,0,'editor_tinymce','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(452,0,'editor_tinymce','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(453,0,'format_singleactivity',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(454,0,'format_singleactivity','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(455,0,'format_singleactivity','2020110900','2020110900','Plugin installed',NULL,'',0,1619623710),(456,0,'format_social',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623710),(457,0,'format_social','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623710),(458,0,'format_social','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(459,0,'format_topics',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(460,0,'format_topics','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(461,0,'format_topics','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(462,0,'format_weeks',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(463,0,'format_weeks','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(464,0,'format_weeks','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(465,0,'dataformat_csv',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(466,0,'dataformat_csv','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(467,0,'dataformat_csv','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(468,0,'dataformat_excel',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(469,0,'dataformat_excel','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(470,0,'dataformat_excel','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(471,0,'dataformat_html',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(472,0,'dataformat_html','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(473,0,'dataformat_html','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(474,0,'dataformat_json',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(475,0,'dataformat_json','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(476,0,'dataformat_json','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(477,0,'dataformat_ods',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(478,0,'dataformat_ods','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(479,0,'dataformat_ods','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(480,0,'dataformat_pdf',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(481,0,'dataformat_pdf','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(482,0,'dataformat_pdf','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(483,0,'profilefield_checkbox',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(484,0,'profilefield_checkbox','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(485,0,'profilefield_checkbox','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(486,0,'profilefield_datetime',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(487,0,'profilefield_datetime','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(488,0,'profilefield_datetime','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(489,0,'profilefield_menu',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(490,0,'profilefield_menu','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(491,0,'profilefield_menu','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(492,0,'profilefield_text',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(493,0,'profilefield_text','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(494,0,'profilefield_text','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(495,0,'profilefield_textarea',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(496,0,'profilefield_textarea','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(497,0,'profilefield_textarea','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(498,0,'report_backups',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(499,0,'report_backups','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(500,0,'report_backups','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(501,0,'report_competency',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(502,0,'report_competency','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(503,0,'report_competency','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(504,0,'report_completion',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(505,0,'report_completion','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(506,0,'report_completion','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(507,0,'report_configlog',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(508,0,'report_configlog','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(509,0,'report_configlog','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(510,0,'report_courseoverview',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(511,0,'report_courseoverview','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(512,0,'report_courseoverview','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(513,0,'report_eventlist',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(514,0,'report_eventlist','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(515,0,'report_eventlist','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(516,0,'report_infectedfiles',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(517,0,'report_infectedfiles','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(518,0,'report_infectedfiles','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(519,0,'report_insights',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(520,0,'report_insights','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(521,0,'report_insights','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(522,0,'report_log',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(523,0,'report_log','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(524,0,'report_log','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(525,0,'report_loglive',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(526,0,'report_loglive','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(527,0,'report_loglive','2020110900','2020110900','Plugin installed',NULL,'',0,1619623711),(528,0,'report_outline',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623711),(529,0,'report_outline','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623711),(530,0,'report_outline','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(531,0,'report_participation',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(532,0,'report_participation','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(533,0,'report_participation','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(534,0,'report_performance',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(535,0,'report_performance','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(536,0,'report_performance','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(537,0,'report_progress',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(538,0,'report_progress','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(539,0,'report_progress','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(540,0,'report_questioninstances',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(541,0,'report_questioninstances','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(542,0,'report_questioninstances','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(543,0,'report_security',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(544,0,'report_security','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(545,0,'report_security','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(546,0,'report_stats',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(547,0,'report_stats','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(548,0,'report_stats','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(549,0,'report_status',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(550,0,'report_status','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(551,0,'report_status','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(552,0,'report_usersessions',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(553,0,'report_usersessions','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(554,0,'report_usersessions','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(555,0,'gradeexport_ods',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(556,0,'gradeexport_ods','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(557,0,'gradeexport_ods','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(558,0,'gradeexport_txt',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(559,0,'gradeexport_txt','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(560,0,'gradeexport_txt','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(561,0,'gradeexport_xls',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(562,0,'gradeexport_xls','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(563,0,'gradeexport_xls','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(564,0,'gradeexport_xml',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(565,0,'gradeexport_xml','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(566,0,'gradeexport_xml','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(567,0,'gradeimport_csv',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(568,0,'gradeimport_csv','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(569,0,'gradeimport_csv','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(570,0,'gradeimport_direct',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(571,0,'gradeimport_direct','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(572,0,'gradeimport_direct','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(573,0,'gradeimport_xml',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(574,0,'gradeimport_xml','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(575,0,'gradeimport_xml','2020110900','2020110900','Plugin installed',NULL,'',0,1619623712),(576,0,'gradereport_grader',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623712),(577,0,'gradereport_grader','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623712),(578,0,'gradereport_grader','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(579,0,'gradereport_history',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(580,0,'gradereport_history','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(581,0,'gradereport_history','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(582,0,'gradereport_outcomes',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(583,0,'gradereport_outcomes','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(584,0,'gradereport_outcomes','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(585,0,'gradereport_overview',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(586,0,'gradereport_overview','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(587,0,'gradereport_overview','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(588,0,'gradereport_singleview',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(589,0,'gradereport_singleview','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(590,0,'gradereport_singleview','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(591,0,'gradereport_user',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(592,0,'gradereport_user','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(593,0,'gradereport_user','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(594,0,'gradingform_guide',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(595,0,'gradingform_guide','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(596,0,'gradingform_guide','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(597,0,'gradingform_rubric',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(598,0,'gradingform_rubric','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(599,0,'gradingform_rubric','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(600,0,'mlbackend_php',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(601,0,'mlbackend_php','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(602,0,'mlbackend_php','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(603,0,'mlbackend_python',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(604,0,'mlbackend_python','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(605,0,'mlbackend_python','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(606,0,'mnetservice_enrol',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(607,0,'mnetservice_enrol','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(608,0,'mnetservice_enrol','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(609,0,'webservice_rest',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(610,0,'webservice_rest','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(611,0,'webservice_rest','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(612,0,'webservice_soap',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(613,0,'webservice_soap','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(614,0,'webservice_soap','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(615,0,'webservice_xmlrpc',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(616,0,'webservice_xmlrpc','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(617,0,'webservice_xmlrpc','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(618,0,'repository_areafiles',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(619,0,'repository_areafiles','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(620,0,'repository_areafiles','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(621,0,'repository_boxnet',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(622,0,'repository_boxnet','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(623,0,'repository_boxnet','2020110900','2020110900','Plugin installed',NULL,'',0,1619623713),(624,0,'repository_contentbank',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623713),(625,0,'repository_contentbank','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623713),(626,0,'repository_contentbank','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(627,0,'repository_coursefiles',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(628,0,'repository_coursefiles','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(629,0,'repository_coursefiles','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(630,0,'repository_dropbox',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(631,0,'repository_dropbox','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(632,0,'repository_dropbox','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(633,0,'repository_equella',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(634,0,'repository_equella','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(635,0,'repository_equella','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(636,0,'repository_filesystem',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(637,0,'repository_filesystem','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(638,0,'repository_filesystem','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(639,0,'repository_flickr',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(640,0,'repository_flickr','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(641,0,'repository_flickr','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(642,0,'repository_flickr_public',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(643,0,'repository_flickr_public','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(644,0,'repository_flickr_public','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(645,0,'repository_googledocs',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(646,0,'repository_googledocs','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(647,0,'repository_googledocs','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(648,0,'repository_local',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(649,0,'repository_local','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(650,0,'repository_local','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(651,0,'repository_merlot',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(652,0,'repository_merlot','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(653,0,'repository_merlot','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(654,0,'repository_nextcloud',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(655,0,'repository_nextcloud','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(656,0,'repository_nextcloud','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(657,0,'repository_onedrive',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(658,0,'repository_onedrive','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(659,0,'repository_onedrive','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(660,0,'repository_picasa',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(661,0,'repository_picasa','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(662,0,'repository_picasa','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(663,0,'repository_recent',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(664,0,'repository_recent','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(665,0,'repository_recent','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(666,0,'repository_s3',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(667,0,'repository_s3','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(668,0,'repository_s3','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(669,0,'repository_skydrive',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(670,0,'repository_skydrive','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(671,0,'repository_skydrive','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(672,0,'repository_upload',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(673,0,'repository_upload','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(674,0,'repository_upload','2020110900','2020110900','Plugin installed',NULL,'',0,1619623714),(675,0,'repository_url',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623714),(676,0,'repository_url','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623714),(677,0,'repository_url','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(678,0,'repository_user',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(679,0,'repository_user','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(680,0,'repository_user','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(681,0,'repository_webdav',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(682,0,'repository_webdav','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(683,0,'repository_webdav','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(684,0,'repository_wikimedia',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(685,0,'repository_wikimedia','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(686,0,'repository_wikimedia','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(687,0,'repository_youtube',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(688,0,'repository_youtube','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(689,0,'repository_youtube','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(690,0,'portfolio_boxnet',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(691,0,'portfolio_boxnet','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(692,0,'portfolio_boxnet','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(693,0,'portfolio_download',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(694,0,'portfolio_download','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(695,0,'portfolio_download','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(696,0,'portfolio_flickr',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(697,0,'portfolio_flickr','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(698,0,'portfolio_flickr','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(699,0,'portfolio_googledocs',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(700,0,'portfolio_googledocs','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(701,0,'portfolio_googledocs','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(702,0,'portfolio_mahara',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(703,0,'portfolio_mahara','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(704,0,'portfolio_mahara','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(705,0,'portfolio_picasa',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(706,0,'portfolio_picasa','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(707,0,'portfolio_picasa','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(708,0,'search_simpledb',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(709,0,'search_simpledb','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(710,0,'search_simpledb','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(711,0,'search_solr',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(712,0,'search_solr','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(713,0,'search_solr','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(714,0,'qbehaviour_adaptive',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(715,0,'qbehaviour_adaptive','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(716,0,'qbehaviour_adaptive','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(717,0,'qbehaviour_adaptivenopenalty',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(718,0,'qbehaviour_adaptivenopenalty','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(719,0,'qbehaviour_adaptivenopenalty','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(720,0,'qbehaviour_deferredcbm',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(721,0,'qbehaviour_deferredcbm','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(722,0,'qbehaviour_deferredcbm','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(723,0,'qbehaviour_deferredfeedback',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(724,0,'qbehaviour_deferredfeedback','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(725,0,'qbehaviour_deferredfeedback','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(726,0,'qbehaviour_immediatecbm',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(727,0,'qbehaviour_immediatecbm','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(728,0,'qbehaviour_immediatecbm','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(729,0,'qbehaviour_immediatefeedback',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(730,0,'qbehaviour_immediatefeedback','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(731,0,'qbehaviour_immediatefeedback','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(732,0,'qbehaviour_informationitem',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(733,0,'qbehaviour_informationitem','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(734,0,'qbehaviour_informationitem','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(735,0,'qbehaviour_interactive',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623715),(736,0,'qbehaviour_interactive','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623715),(737,0,'qbehaviour_interactive','2020110900','2020110900','Plugin installed',NULL,'',0,1619623715),(738,0,'qbehaviour_interactivecountback',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(739,0,'qbehaviour_interactivecountback','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(740,0,'qbehaviour_interactivecountback','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(741,0,'qbehaviour_manualgraded',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(742,0,'qbehaviour_manualgraded','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(743,0,'qbehaviour_manualgraded','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(744,0,'qbehaviour_missing',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(745,0,'qbehaviour_missing','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(746,0,'qbehaviour_missing','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(747,0,'qformat_aiken',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(748,0,'qformat_aiken','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(749,0,'qformat_aiken','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(750,0,'qformat_blackboard_six',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(751,0,'qformat_blackboard_six','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(752,0,'qformat_blackboard_six','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(753,0,'qformat_examview',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(754,0,'qformat_examview','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(755,0,'qformat_examview','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(756,0,'qformat_gift',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(757,0,'qformat_gift','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(758,0,'qformat_gift','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(759,0,'qformat_missingword',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(760,0,'qformat_missingword','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(761,0,'qformat_missingword','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(762,0,'qformat_multianswer',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(763,0,'qformat_multianswer','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(764,0,'qformat_multianswer','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(765,0,'qformat_webct',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(766,0,'qformat_webct','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(767,0,'qformat_webct','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(768,0,'qformat_xhtml',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(769,0,'qformat_xhtml','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(770,0,'qformat_xhtml','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(771,0,'qformat_xml',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(772,0,'qformat_xml','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(773,0,'qformat_xml','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(774,0,'tool_analytics',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(775,0,'tool_analytics','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(776,0,'tool_analytics','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(777,0,'tool_availabilityconditions',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(778,0,'tool_availabilityconditions','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(779,0,'tool_availabilityconditions','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(780,0,'tool_behat',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(781,0,'tool_behat','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(782,0,'tool_behat','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(783,0,'tool_capability',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(784,0,'tool_capability','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(785,0,'tool_capability','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(786,0,'tool_cohortroles',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(787,0,'tool_cohortroles','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(788,0,'tool_cohortroles','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(789,0,'tool_customlang',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(790,0,'tool_customlang','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(791,0,'tool_customlang','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(792,0,'tool_dataprivacy',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(793,0,'tool_dataprivacy','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623716),(794,0,'tool_dataprivacy','2020110900','2020110900','Plugin installed',NULL,'',0,1619623716),(795,0,'tool_dbtransfer',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623716),(796,0,'tool_dbtransfer','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(797,0,'tool_dbtransfer','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(798,0,'tool_filetypes',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(799,0,'tool_filetypes','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(800,0,'tool_filetypes','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(801,0,'tool_generator',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(802,0,'tool_generator','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(803,0,'tool_generator','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(804,0,'tool_health',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(805,0,'tool_health','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(806,0,'tool_health','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(807,0,'tool_httpsreplace',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(808,0,'tool_httpsreplace','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(809,0,'tool_httpsreplace','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(810,0,'tool_innodb',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(811,0,'tool_innodb','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(812,0,'tool_innodb','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(813,0,'tool_installaddon',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(814,0,'tool_installaddon','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(815,0,'tool_installaddon','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(816,0,'tool_langimport',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(817,0,'tool_langimport','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(818,0,'tool_langimport','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(819,0,'tool_licensemanager',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(820,0,'tool_licensemanager','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(821,0,'tool_licensemanager','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(822,0,'tool_log',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(823,0,'tool_log','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(824,0,'tool_log','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(825,0,'tool_lp',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(826,0,'tool_lp','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(827,0,'tool_lp','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(828,0,'tool_lpimportcsv',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(829,0,'tool_lpimportcsv','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(830,0,'tool_lpimportcsv','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(831,0,'tool_lpmigrate',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(832,0,'tool_lpmigrate','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(833,0,'tool_lpmigrate','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(834,0,'tool_messageinbound',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(835,0,'tool_messageinbound','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(836,0,'tool_messageinbound','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(837,0,'tool_mobile',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(838,0,'tool_mobile','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(839,0,'tool_mobile','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(840,0,'tool_monitor',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(841,0,'tool_monitor','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(842,0,'tool_monitor','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(843,0,'tool_moodlenet',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(844,0,'tool_moodlenet','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(845,0,'tool_moodlenet','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(846,0,'tool_multilangupgrade',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(847,0,'tool_multilangupgrade','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(848,0,'tool_multilangupgrade','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(849,0,'tool_oauth2',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(850,0,'tool_oauth2','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(851,0,'tool_oauth2','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(852,0,'tool_phpunit',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(853,0,'tool_phpunit','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(854,0,'tool_phpunit','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(855,0,'tool_policy',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(856,0,'tool_policy','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(857,0,'tool_policy','2020110900','2020110900','Plugin installed',NULL,'',0,1619623717),(858,0,'tool_profiling',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623717),(859,0,'tool_profiling','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623717),(860,0,'tool_profiling','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(861,0,'tool_recyclebin',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(862,0,'tool_recyclebin','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(863,0,'tool_recyclebin','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(864,0,'tool_replace',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(865,0,'tool_replace','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(866,0,'tool_replace','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(867,0,'tool_spamcleaner',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(868,0,'tool_spamcleaner','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(869,0,'tool_spamcleaner','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(870,0,'tool_task',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(871,0,'tool_task','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(872,0,'tool_task','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(873,0,'tool_templatelibrary',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(874,0,'tool_templatelibrary','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(875,0,'tool_templatelibrary','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(876,0,'tool_unsuproles',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(877,0,'tool_unsuproles','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(878,0,'tool_unsuproles','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(879,0,'tool_uploadcourse',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(880,0,'tool_uploadcourse','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(881,0,'tool_uploadcourse','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(882,0,'tool_uploaduser',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(883,0,'tool_uploaduser','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(884,0,'tool_uploaduser','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(885,0,'tool_usertours',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(886,0,'tool_usertours','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(887,0,'tool_usertours','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(888,0,'tool_xmldb',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(889,0,'tool_xmldb','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(890,0,'tool_xmldb','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(891,0,'cachestore_apcu',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(892,0,'cachestore_apcu','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(893,0,'cachestore_apcu','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(894,0,'cachestore_file',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(895,0,'cachestore_file','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(896,0,'cachestore_file','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(897,0,'cachestore_memcached',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(898,0,'cachestore_memcached','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(899,0,'cachestore_memcached','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(900,0,'cachestore_mongodb',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(901,0,'cachestore_mongodb','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(902,0,'cachestore_mongodb','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(903,0,'cachestore_redis',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(904,0,'cachestore_redis','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(905,0,'cachestore_redis','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(906,0,'cachestore_session',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(907,0,'cachestore_session','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(908,0,'cachestore_session','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(909,0,'cachestore_static',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(910,0,'cachestore_static','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(911,0,'cachestore_static','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(912,0,'cachelock_file',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(913,0,'cachelock_file','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(914,0,'cachelock_file','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(915,0,'fileconverter_googledrive',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(916,0,'fileconverter_googledrive','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(917,0,'fileconverter_googledrive','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(918,0,'fileconverter_unoconv',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(919,0,'fileconverter_unoconv','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(920,0,'fileconverter_unoconv','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(921,0,'contenttype_h5p',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(922,0,'contenttype_h5p','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(923,0,'contenttype_h5p','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(924,0,'theme_boost',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(925,0,'theme_boost','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(926,0,'theme_boost','2020110900','2020110900','Plugin installed',NULL,'',0,1619623718),(927,0,'theme_classic',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623718),(928,0,'theme_classic','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623718),(929,0,'theme_classic','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(930,0,'local_chat_attachments',NULL,'10026','Starting plugin installation',NULL,'',0,1619623719),(931,0,'local_chat_attachments','10026','10026','Upgrade savepoint reached',NULL,'',0,1619623719),(932,0,'local_chat_attachments','10026','10026','Plugin installed',NULL,'',0,1619623719),(933,0,'h5plib_v124',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(934,0,'h5plib_v124','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(935,0,'h5plib_v124','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(936,0,'paygw_paypal',NULL,'2020110901','Starting plugin installation',NULL,'',0,1619623719),(937,0,'paygw_paypal','2020110901','2020110901','Upgrade savepoint reached',NULL,'',0,1619623719),(938,0,'paygw_paypal','2020110901','2020110901','Plugin installed',NULL,'',0,1619623719),(939,0,'assignsubmission_comments',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(940,0,'assignsubmission_comments','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(941,0,'assignsubmission_comments','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(942,0,'assignsubmission_file',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(943,0,'assignsubmission_file','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(944,0,'assignsubmission_file','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(945,0,'assignsubmission_onlinetext',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(946,0,'assignsubmission_onlinetext','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(947,0,'assignsubmission_onlinetext','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(948,0,'assignfeedback_comments',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(949,0,'assignfeedback_comments','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(950,0,'assignfeedback_comments','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(951,0,'assignfeedback_editpdf',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(952,0,'assignfeedback_editpdf','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(953,0,'assignfeedback_editpdf','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(954,0,'assignfeedback_file',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(955,0,'assignfeedback_file','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(956,0,'assignfeedback_file','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(957,0,'assignfeedback_offline',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(958,0,'assignfeedback_offline','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(959,0,'assignfeedback_offline','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(960,0,'assignment_offline',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(961,0,'assignment_offline','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(962,0,'assignment_offline','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(963,0,'assignment_online',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(964,0,'assignment_online','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(965,0,'assignment_online','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(966,0,'assignment_upload',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(967,0,'assignment_upload','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(968,0,'assignment_upload','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(969,0,'assignment_uploadsingle',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(970,0,'assignment_uploadsingle','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(971,0,'assignment_uploadsingle','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(972,0,'booktool_exportimscp',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(973,0,'booktool_exportimscp','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(974,0,'booktool_exportimscp','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(975,0,'booktool_importhtml',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(976,0,'booktool_importhtml','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(977,0,'booktool_importhtml','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(978,0,'booktool_print',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(979,0,'booktool_print','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(980,0,'booktool_print','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(981,0,'datafield_checkbox',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(982,0,'datafield_checkbox','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(983,0,'datafield_checkbox','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(984,0,'datafield_date',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(985,0,'datafield_date','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(986,0,'datafield_date','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(987,0,'datafield_file',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(988,0,'datafield_file','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(989,0,'datafield_file','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(990,0,'datafield_latlong',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623719),(991,0,'datafield_latlong','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623719),(992,0,'datafield_latlong','2020110900','2020110900','Plugin installed',NULL,'',0,1619623719),(993,0,'datafield_menu',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(994,0,'datafield_menu','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(995,0,'datafield_menu','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(996,0,'datafield_multimenu',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(997,0,'datafield_multimenu','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(998,0,'datafield_multimenu','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(999,0,'datafield_number',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1000,0,'datafield_number','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1001,0,'datafield_number','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1002,0,'datafield_picture',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1003,0,'datafield_picture','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1004,0,'datafield_picture','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1005,0,'datafield_radiobutton',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1006,0,'datafield_radiobutton','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1007,0,'datafield_radiobutton','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1008,0,'datafield_text',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1009,0,'datafield_text','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1010,0,'datafield_text','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1011,0,'datafield_textarea',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1012,0,'datafield_textarea','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1013,0,'datafield_textarea','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1014,0,'datafield_url',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1015,0,'datafield_url','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1016,0,'datafield_url','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1017,0,'datapreset_imagegallery',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1018,0,'datapreset_imagegallery','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1019,0,'datapreset_imagegallery','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1020,0,'forumreport_summary',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1021,0,'forumreport_summary','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1022,0,'forumreport_summary','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1023,0,'ltiservice_basicoutcomes',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1024,0,'ltiservice_basicoutcomes','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1025,0,'ltiservice_basicoutcomes','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1026,0,'ltiservice_gradebookservices',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1027,0,'ltiservice_gradebookservices','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1028,0,'ltiservice_gradebookservices','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1029,0,'ltiservice_memberships',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1030,0,'ltiservice_memberships','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1031,0,'ltiservice_memberships','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1032,0,'ltiservice_profile',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1033,0,'ltiservice_profile','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1034,0,'ltiservice_profile','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1035,0,'ltiservice_toolproxy',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1036,0,'ltiservice_toolproxy','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1037,0,'ltiservice_toolproxy','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1038,0,'ltiservice_toolsettings',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1039,0,'ltiservice_toolsettings','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1040,0,'ltiservice_toolsettings','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1041,0,'quiz_grading',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1042,0,'quiz_grading','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1043,0,'quiz_grading','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1044,0,'quiz_overview',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1045,0,'quiz_overview','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1046,0,'quiz_overview','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1047,0,'quiz_responses',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1048,0,'quiz_responses','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1049,0,'quiz_responses','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1050,0,'quiz_statistics',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1051,0,'quiz_statistics','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1052,0,'quiz_statistics','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1053,0,'quizaccess_delaybetweenattempts',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1054,0,'quizaccess_delaybetweenattempts','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1055,0,'quizaccess_delaybetweenattempts','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1056,0,'quizaccess_ipaddress',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1057,0,'quizaccess_ipaddress','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1058,0,'quizaccess_ipaddress','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1059,0,'quizaccess_numattempts',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1060,0,'quizaccess_numattempts','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1061,0,'quizaccess_numattempts','2020110900','2020110900','Plugin installed',NULL,'',0,1619623720),(1062,0,'quizaccess_offlineattempts',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623720),(1063,0,'quizaccess_offlineattempts','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623720),(1064,0,'quizaccess_offlineattempts','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1065,0,'quizaccess_openclosedate',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1066,0,'quizaccess_openclosedate','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1067,0,'quizaccess_openclosedate','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1068,0,'quizaccess_password',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1069,0,'quizaccess_password','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1070,0,'quizaccess_password','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1071,0,'quizaccess_seb',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1072,0,'quizaccess_seb','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1073,0,'quizaccess_seb','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1074,0,'quizaccess_securewindow',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1075,0,'quizaccess_securewindow','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1076,0,'quizaccess_securewindow','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1077,0,'quizaccess_timelimit',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1078,0,'quizaccess_timelimit','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1079,0,'quizaccess_timelimit','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1080,0,'scormreport_basic',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1081,0,'scormreport_basic','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1082,0,'scormreport_basic','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1083,0,'scormreport_graphs',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1084,0,'scormreport_graphs','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1085,0,'scormreport_graphs','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1086,0,'scormreport_interactions',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1087,0,'scormreport_interactions','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1088,0,'scormreport_interactions','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1089,0,'scormreport_objectives',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1090,0,'scormreport_objectives','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1091,0,'scormreport_objectives','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1092,0,'workshopform_accumulative',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1093,0,'workshopform_accumulative','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1094,0,'workshopform_accumulative','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1095,0,'workshopform_comments',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1096,0,'workshopform_comments','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1097,0,'workshopform_comments','2020110900','2020110900','Plugin installed',NULL,'',0,1619623721),(1098,0,'workshopform_numerrors',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623721),(1099,0,'workshopform_numerrors','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623721),(1100,0,'workshopform_numerrors','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1101,0,'workshopform_rubric',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1102,0,'workshopform_rubric','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1103,0,'workshopform_rubric','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1104,0,'workshopallocation_manual',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1105,0,'workshopallocation_manual','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1106,0,'workshopallocation_manual','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1107,0,'workshopallocation_random',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1108,0,'workshopallocation_random','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1109,0,'workshopallocation_random','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1110,0,'workshopallocation_scheduled',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1111,0,'workshopallocation_scheduled','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1112,0,'workshopallocation_scheduled','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1113,0,'workshopeval_best',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1114,0,'workshopeval_best','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1115,0,'workshopeval_best','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1116,0,'atto_accessibilitychecker',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1117,0,'atto_accessibilitychecker','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1118,0,'atto_accessibilitychecker','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1119,0,'atto_accessibilityhelper',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1120,0,'atto_accessibilityhelper','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1121,0,'atto_accessibilityhelper','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1122,0,'atto_align',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1123,0,'atto_align','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1124,0,'atto_align','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1125,0,'atto_backcolor',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1126,0,'atto_backcolor','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1127,0,'atto_backcolor','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1128,0,'atto_bold',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1129,0,'atto_bold','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1130,0,'atto_bold','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1131,0,'atto_charmap',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1132,0,'atto_charmap','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1133,0,'atto_charmap','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1134,0,'atto_clear',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1135,0,'atto_clear','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1136,0,'atto_clear','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1137,0,'atto_collapse',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1138,0,'atto_collapse','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1139,0,'atto_collapse','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1140,0,'atto_emojipicker',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1141,0,'atto_emojipicker','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1142,0,'atto_emojipicker','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1143,0,'atto_emoticon',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1144,0,'atto_emoticon','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1145,0,'atto_emoticon','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1146,0,'atto_equation',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1147,0,'atto_equation','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1148,0,'atto_equation','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1149,0,'atto_fontcolor',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1150,0,'atto_fontcolor','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1151,0,'atto_fontcolor','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1152,0,'atto_h5p',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1153,0,'atto_h5p','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1154,0,'atto_h5p','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1155,0,'atto_html',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1156,0,'atto_html','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1157,0,'atto_html','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1158,0,'atto_image',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1159,0,'atto_image','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1160,0,'atto_image','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1161,0,'atto_indent',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1162,0,'atto_indent','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1163,0,'atto_indent','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1164,0,'atto_italic',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1165,0,'atto_italic','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1166,0,'atto_italic','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1167,0,'atto_link',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1168,0,'atto_link','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1169,0,'atto_link','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1170,0,'atto_managefiles',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1171,0,'atto_managefiles','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1172,0,'atto_managefiles','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1173,0,'atto_media',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1174,0,'atto_media','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1175,0,'atto_media','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1176,0,'atto_noautolink',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1177,0,'atto_noautolink','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1178,0,'atto_noautolink','2020110900','2020110900','Plugin installed',NULL,'',0,1619623722),(1179,0,'atto_orderedlist',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623722),(1180,0,'atto_orderedlist','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623722),(1181,0,'atto_orderedlist','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1182,0,'atto_recordrtc',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1183,0,'atto_recordrtc','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1184,0,'atto_recordrtc','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1185,0,'atto_rtl',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1186,0,'atto_rtl','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1187,0,'atto_rtl','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1188,0,'atto_strike',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1189,0,'atto_strike','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1190,0,'atto_strike','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1191,0,'atto_subscript',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1192,0,'atto_subscript','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1193,0,'atto_subscript','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1194,0,'atto_superscript',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1195,0,'atto_superscript','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1196,0,'atto_superscript','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1197,0,'atto_table',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1198,0,'atto_table','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1199,0,'atto_table','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1200,0,'atto_title',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1201,0,'atto_title','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1202,0,'atto_title','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1203,0,'atto_underline',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1204,0,'atto_underline','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1205,0,'atto_underline','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1206,0,'atto_undo',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1207,0,'atto_undo','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1208,0,'atto_undo','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1209,0,'atto_unorderedlist',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1210,0,'atto_unorderedlist','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1211,0,'atto_unorderedlist','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1212,0,'tinymce_ctrlhelp',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1213,0,'tinymce_ctrlhelp','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1214,0,'tinymce_ctrlhelp','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1215,0,'tinymce_managefiles',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1216,0,'tinymce_managefiles','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1217,0,'tinymce_managefiles','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1218,0,'tinymce_moodleemoticon',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1219,0,'tinymce_moodleemoticon','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1220,0,'tinymce_moodleemoticon','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1221,0,'tinymce_moodleimage',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1222,0,'tinymce_moodleimage','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1223,0,'tinymce_moodleimage','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1224,0,'tinymce_moodlemedia',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1225,0,'tinymce_moodlemedia','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1226,0,'tinymce_moodlemedia','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1227,0,'tinymce_moodlenolink',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1228,0,'tinymce_moodlenolink','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1229,0,'tinymce_moodlenolink','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1230,0,'tinymce_pdw',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1231,0,'tinymce_pdw','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1232,0,'tinymce_pdw','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1233,0,'tinymce_spellchecker',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1234,0,'tinymce_spellchecker','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1235,0,'tinymce_spellchecker','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1236,0,'tinymce_wrap',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1237,0,'tinymce_wrap','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1238,0,'tinymce_wrap','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1239,0,'logstore_database',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1240,0,'logstore_database','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1241,0,'logstore_database','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1242,0,'logstore_legacy',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1243,0,'logstore_legacy','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1244,0,'logstore_legacy','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1245,0,'logstore_standard',NULL,'2020110900','Starting plugin installation',NULL,'',0,1619623723),(1246,0,'logstore_standard','2020110900','2020110900','Upgrade savepoint reached',NULL,'',0,1619623723),(1247,0,'logstore_standard','2020110900','2020110900','Plugin installed',NULL,'',0,1619623723),(1248,0,'mod_customcert',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625659),(1249,0,'mod_customcert','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625659),(1250,0,'mod_customcert','2020110900','2020110900','Plugin installed',NULL,'',2,1619625659),(1251,0,'customcertelement_bgimage',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1252,0,'customcertelement_bgimage','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1253,0,'customcertelement_bgimage','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1254,0,'customcertelement_border',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1255,0,'customcertelement_border','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1256,0,'customcertelement_border','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1257,0,'customcertelement_categoryname',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1258,0,'customcertelement_categoryname','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1259,0,'customcertelement_categoryname','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1260,0,'customcertelement_code',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1261,0,'customcertelement_code','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1262,0,'customcertelement_code','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1263,0,'customcertelement_coursefield',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1264,0,'customcertelement_coursefield','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1265,0,'customcertelement_coursefield','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1266,0,'customcertelement_coursename',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1267,0,'customcertelement_coursename','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1268,0,'customcertelement_coursename','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1269,0,'customcertelement_date',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1270,0,'customcertelement_date','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1271,0,'customcertelement_date','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1272,0,'customcertelement_daterange',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1273,0,'customcertelement_daterange','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1274,0,'customcertelement_daterange','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1275,0,'customcertelement_digitalsignature',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1276,0,'customcertelement_digitalsignature','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1277,0,'customcertelement_digitalsignature','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1278,0,'customcertelement_grade',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1279,0,'customcertelement_grade','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1280,0,'customcertelement_grade','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1281,0,'customcertelement_gradeitemname',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1282,0,'customcertelement_gradeitemname','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1283,0,'customcertelement_gradeitemname','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1284,0,'customcertelement_image',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1285,0,'customcertelement_image','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1286,0,'customcertelement_image','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1287,0,'customcertelement_qrcode',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1288,0,'customcertelement_qrcode','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1289,0,'customcertelement_qrcode','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1290,0,'customcertelement_studentname',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1291,0,'customcertelement_studentname','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1292,0,'customcertelement_studentname','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1293,0,'customcertelement_teachername',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1294,0,'customcertelement_teachername','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1295,0,'customcertelement_teachername','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1296,0,'customcertelement_text',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1297,0,'customcertelement_text','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1298,0,'customcertelement_text','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1299,0,'customcertelement_userfield',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1300,0,'customcertelement_userfield','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1301,0,'customcertelement_userfield','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660),(1302,0,'customcertelement_userpicture',NULL,'2020110900','Starting plugin installation',NULL,'',2,1619625660),(1303,0,'customcertelement_userpicture','2020110900','2020110900','Upgrade savepoint reached',NULL,'',2,1619625660),(1304,0,'customcertelement_userpicture','2020110900','2020110900','Plugin installed',NULL,'',2,1619625660); -/*!40000 ALTER TABLE `mdl_upgrade_log` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_url` --- - -DROP TABLE IF EXISTS `mdl_url`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_url` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `introformat` smallint(4) NOT NULL DEFAULT 0, - `externalurl` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `display` smallint(4) NOT NULL DEFAULT 0, - `displayoptions` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `parameters` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_url_cou_ix` (`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='each record is one url resource'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_url` --- - -LOCK TABLES `mdl_url` WRITE; -/*!40000 ALTER TABLE `mdl_url` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_url` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_user` --- - -DROP TABLE IF EXISTS `mdl_user`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_user` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `auth` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'manual', - `confirmed` tinyint(1) NOT NULL DEFAULT 0, - `policyagreed` tinyint(1) NOT NULL DEFAULT 0, - `deleted` tinyint(1) NOT NULL DEFAULT 0, - `suspended` tinyint(1) NOT NULL DEFAULT 0, - `mnethostid` bigint(10) NOT NULL DEFAULT 0, - `username` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `idnumber` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `firstname` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `lastname` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `emailstop` tinyint(1) NOT NULL DEFAULT 0, - `icq` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `skype` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `yahoo` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `aim` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `msn` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `phone1` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `phone2` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `institution` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `department` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `city` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `country` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `lang` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', - `calendartype` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'gregorian', - `theme` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `timezone` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '99', - `firstaccess` bigint(10) NOT NULL DEFAULT 0, - `lastaccess` bigint(10) NOT NULL DEFAULT 0, - `lastlogin` bigint(10) NOT NULL DEFAULT 0, - `currentlogin` bigint(10) NOT NULL DEFAULT 0, - `lastip` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `secret` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `picture` bigint(10) NOT NULL DEFAULT 0, - `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` tinyint(2) NOT NULL DEFAULT 1, - `mailformat` tinyint(1) NOT NULL DEFAULT 1, - `maildigest` tinyint(1) NOT NULL DEFAULT 0, - `maildisplay` tinyint(2) NOT NULL DEFAULT 2, - `autosubscribe` tinyint(1) NOT NULL DEFAULT 1, - `trackforums` tinyint(1) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `trustbitmask` bigint(10) NOT NULL DEFAULT 0, - `imagealt` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `lastnamephonetic` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `firstnamephonetic` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `middlename` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `alternatename` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `moodlenetprofile` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_user_mneuse_uix` (`mnethostid`,`username`), - KEY `mdl_user_del_ix` (`deleted`), - KEY `mdl_user_con_ix` (`confirmed`), - KEY `mdl_user_fir_ix` (`firstname`), - KEY `mdl_user_las_ix` (`lastname`), - KEY `mdl_user_cit_ix` (`city`), - KEY `mdl_user_cou_ix` (`country`), - KEY `mdl_user_las2_ix` (`lastaccess`), - KEY `mdl_user_ema_ix` (`email`), - KEY `mdl_user_aut_ix` (`auth`), - KEY `mdl_user_idn_ix` (`idnumber`), - KEY `mdl_user_fir2_ix` (`firstnamephonetic`), - KEY `mdl_user_las3_ix` (`lastnamephonetic`), - KEY `mdl_user_mid_ix` (`middlename`), - KEY `mdl_user_alt_ix` (`alternatename`) -) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='One record for each person'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_user` --- - -LOCK TABLES `mdl_user` WRITE; -/*!40000 ALTER TABLE `mdl_user` DISABLE KEYS */; -INSERT INTO `mdl_user` VALUES (1,'manual',1,0,0,0,1,'guest','$2y$10$l8z64BA6GYnci6/v9moAjOlcBzzdZxGwMkQk01Xu0mVmSbpQnihDC','','Guest user',' ','root@localhost',0,'','','','','','','','','','','','','en','gregorian','','99',0,0,0,0,'','',0,'','This user is a special user that allows read-only access to some courses.',1,1,0,2,1,0,0,1619623682,0,NULL,NULL,NULL,NULL,NULL,NULL),(2,'manual',1,0,0,0,1,'admin','$2y$10$k.xjSmoHesYKLOFjOe3ikOdSXIiOjQrM4GbBOtTuB7XsO/E8lLEtW','','Admin','User','admin@email.com',0,'','','','','','','','','','','','','en','gregorian','','99',1619623752,1619629897,1619623752,1619626991,'65.129.132.97','',0,'','',1,1,0,1,1,0,0,1619626917,0,'','','','','',''),(3,'manual',1,0,0,0,1,'student1','$2y$10$EumThRSvDH.IAMiLOWWHn.UUSBP9VX8O.qiBUjuGbxoXC3wGnYQfS','','Student1','User','student1@email.com',0,'','','','','','','','','','','','','en','gregorian','','99',0,0,0,0,'','',0,'','',1,1,0,2,1,0,1619624264,1619624264,0,'','','','','',''),(4,'manual',1,0,0,0,1,'student2','$2y$10$ZO8VMKp4pnLbPhfzoXWqZ..wjEjgQCNjMaSH/gmQQI5sgDmZt4GzG','','Student2','User','student2@email.com',0,'','','','','','','','','','','','','en','gregorian','','99',0,0,0,0,'','',0,'','',1,1,0,2,1,0,1619624308,1619624308,0,'','','','','',''),(5,'manual',1,0,0,0,1,'teacher','$2y$10$h3E2s77CJKHP8FXs0/5s1.oPDfwMMOf36jVSMagDnBHJthyc60hXq','','Teacher','User','teacher@email.com',0,'','','','','','','','','','','','','en','gregorian','','99',0,0,0,0,'','',0,'','',1,1,0,2,1,0,1619624342,1619624342,0,'','','','','',''),(6,'manual',1,0,0,0,1,'lta','$2y$10$vryJZvREZjyJCTBd/BcI6uRk5eBw2gPGTUcxO6O1p1hplCvav4SxC','','LTA','User','lta@email.com',0,'','','','','','','','','','','','','en','gregorian','','99',0,0,0,0,'','',0,'','',1,1,0,2,1,0,1619624369,1619624369,0,'','','','','',''); -/*!40000 ALTER TABLE `mdl_user` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_user_devices` --- - -DROP TABLE IF EXISTS `mdl_user_devices`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_user_devices` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL DEFAULT 0, - `appid` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `model` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `platform` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `version` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `pushid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_userdevi_pususe_uix` (`pushid`,`userid`), - KEY `mdl_userdevi_uuiuse_ix` (`uuid`,`userid`), - KEY `mdl_userdevi_use_ix` (`userid`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table stores user''s mobile devices information in order'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_user_devices` --- - -LOCK TABLES `mdl_user_devices` WRITE; -/*!40000 ALTER TABLE `mdl_user_devices` DISABLE KEYS */; -INSERT INTO `mdl_user_devices` VALUES (1,2,'org.relaytrust.thewell','motorola','moto g(6)','Android-fcm','9','deKqpyYqTQI:APA91bERP_49yPBTJibxujhOvbjaANguzUg26_AwFzH79LS8ghUfEw33LeSPoiXrkPPa5kFbLW3lDLr0AJ3pOnFOdbi_21u-PpKj6DCyzAUE0zCJuURwDQUQMKJ99xvpfBUbGw653Gw3','3055bf31abb34726',1619627012,1619627012); -/*!40000 ALTER TABLE `mdl_user_devices` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_user_enrolments` --- - -DROP TABLE IF EXISTS `mdl_user_enrolments`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_user_enrolments` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `status` bigint(10) NOT NULL DEFAULT 0, - `enrolid` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `timestart` bigint(10) NOT NULL DEFAULT 0, - `timeend` bigint(10) NOT NULL DEFAULT 2147483647, - `modifierid` bigint(10) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_userenro_enruse_uix` (`enrolid`,`userid`), - KEY `mdl_userenro_enr_ix` (`enrolid`), - KEY `mdl_userenro_use_ix` (`userid`), - KEY `mdl_userenro_mod_ix` (`modifierid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Users participating in courses (aka enrolled users) - everyb'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_user_enrolments` --- - -LOCK TABLES `mdl_user_enrolments` WRITE; -/*!40000 ALTER TABLE `mdl_user_enrolments` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_user_enrolments` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_user_info_category` --- - -DROP TABLE IF EXISTS `mdl_user_info_category`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_user_info_category` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `sortorder` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Customisable fields categories'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_user_info_category` --- - -LOCK TABLES `mdl_user_info_category` WRITE; -/*!40000 ALTER TABLE `mdl_user_info_category` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_user_info_category` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_user_info_data` --- - -DROP TABLE IF EXISTS `mdl_user_info_data`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_user_info_data` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL DEFAULT 0, - `fieldid` bigint(10) NOT NULL DEFAULT 0, - `data` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `dataformat` tinyint(2) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_userinfodata_usefie_uix` (`userid`,`fieldid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Data for the customisable user fields'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_user_info_data` --- - -LOCK TABLES `mdl_user_info_data` WRITE; -/*!40000 ALTER TABLE `mdl_user_info_data` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_user_info_data` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_user_info_field` --- - -DROP TABLE IF EXISTS `mdl_user_info_field`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_user_info_field` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `shortname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'shortname', - `name` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `datatype` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` tinyint(2) NOT NULL DEFAULT 0, - `categoryid` bigint(10) NOT NULL DEFAULT 0, - `sortorder` bigint(10) NOT NULL DEFAULT 0, - `required` tinyint(2) NOT NULL DEFAULT 0, - `locked` tinyint(2) NOT NULL DEFAULT 0, - `visible` smallint(4) NOT NULL DEFAULT 0, - `forceunique` tinyint(2) NOT NULL DEFAULT 0, - `signup` tinyint(2) NOT NULL DEFAULT 0, - `defaultdata` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `defaultdataformat` tinyint(2) NOT NULL DEFAULT 0, - `param1` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `param2` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `param3` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `param4` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `param5` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Customisable user profile fields'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_user_info_field` --- - -LOCK TABLES `mdl_user_info_field` WRITE; -/*!40000 ALTER TABLE `mdl_user_info_field` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_user_info_field` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_user_lastaccess` --- - -DROP TABLE IF EXISTS `mdl_user_lastaccess`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_user_lastaccess` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL DEFAULT 0, - `courseid` bigint(10) NOT NULL DEFAULT 0, - `timeaccess` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_userlast_usecou_uix` (`userid`,`courseid`), - KEY `mdl_userlast_use_ix` (`userid`), - KEY `mdl_userlast_cou_ix` (`courseid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='To keep track of course page access times, used in online pa'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_user_lastaccess` --- - -LOCK TABLES `mdl_user_lastaccess` WRITE; -/*!40000 ALTER TABLE `mdl_user_lastaccess` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_user_lastaccess` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_user_password_history` --- - -DROP TABLE IF EXISTS `mdl_user_password_history`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_user_password_history` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL, - `hash` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `timecreated` bigint(10) NOT NULL, - PRIMARY KEY (`id`), - KEY `mdl_userpasshist_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='A rotating log of hashes of previously used passwords for ea'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_user_password_history` --- - -LOCK TABLES `mdl_user_password_history` WRITE; -/*!40000 ALTER TABLE `mdl_user_password_history` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_user_password_history` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_user_password_resets` --- - -DROP TABLE IF EXISTS `mdl_user_password_resets`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_user_password_resets` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL, - `timerequested` bigint(10) NOT NULL, - `timererequested` bigint(10) NOT NULL DEFAULT 0, - `token` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - KEY `mdl_userpassrese_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='table tracking password reset confirmation tokens'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_user_password_resets` --- - -LOCK TABLES `mdl_user_password_resets` WRITE; -/*!40000 ALTER TABLE `mdl_user_password_resets` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_user_password_resets` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_user_preferences` --- - -DROP TABLE IF EXISTS `mdl_user_preferences`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_user_preferences` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `userid` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `value` varchar(1333) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_userpref_usenam_uix` (`userid`,`name`) -) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Allows modules to store arbitrary user preferences'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_user_preferences` --- - -LOCK TABLES `mdl_user_preferences` WRITE; -/*!40000 ALTER TABLE `mdl_user_preferences` DISABLE KEYS */; -INSERT INTO `mdl_user_preferences` VALUES (1,2,'core_message_migrate_data','1'),(2,2,'auth_manual_passwordupdatetime','1619626917'),(3,2,'email_bounce_count','1'),(4,2,'email_send_count','1'),(5,3,'auth_forcepasswordchange','0'),(6,3,'email_bounce_count','1'),(7,3,'email_send_count','1'),(8,4,'auth_forcepasswordchange','0'),(9,4,'email_bounce_count','1'),(10,4,'email_send_count','1'),(11,5,'auth_forcepasswordchange','0'),(12,5,'email_bounce_count','1'),(13,5,'email_send_count','1'),(14,6,'auth_forcepasswordchange','0'),(15,6,'email_bounce_count','1'),(16,6,'email_send_count','1'),(17,2,'filepicker_recentrepository','5'),(18,2,'filepicker_recentlicense','unknown'),(19,2,'login_failed_count_since_success','6'); -/*!40000 ALTER TABLE `mdl_user_preferences` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_user_private_key` --- - -DROP TABLE IF EXISTS `mdl_user_private_key`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_user_private_key` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `script` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `value` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `userid` bigint(10) NOT NULL, - `instance` bigint(10) DEFAULT NULL, - `iprestriction` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `validuntil` bigint(10) DEFAULT NULL, - `timecreated` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_userprivkey_scrval_ix` (`script`,`value`), - KEY `mdl_userprivkey_use_ix` (`userid`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='access keys used in cookieless scripts - rss, etc.'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_user_private_key` --- - -LOCK TABLES `mdl_user_private_key` WRITE; -/*!40000 ALTER TABLE `mdl_user_private_key` DISABLE KEYS */; -INSERT INTO `mdl_user_private_key` VALUES (1,'core_files','f7fc5a8f7aeee9c6c196498ff953ba0b',2,NULL,NULL,NULL,1619627006); -/*!40000 ALTER TABLE `mdl_user_private_key` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_wiki` --- - -DROP TABLE IF EXISTS `mdl_wiki`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_wiki` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL DEFAULT 0, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Wiki', - `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `introformat` smallint(4) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `firstpagetitle` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'First Page', - `wikimode` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'collaborative', - `defaultformat` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'creole', - `forceformat` tinyint(1) NOT NULL DEFAULT 1, - `editbegin` bigint(10) NOT NULL DEFAULT 0, - `editend` bigint(10) DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_wiki_cou_ix` (`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores Wiki activity configuration'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_wiki` --- - -LOCK TABLES `mdl_wiki` WRITE; -/*!40000 ALTER TABLE `mdl_wiki` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_wiki` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_wiki_links` --- - -DROP TABLE IF EXISTS `mdl_wiki_links`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_wiki_links` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `subwikiid` bigint(10) NOT NULL DEFAULT 0, - `frompageid` bigint(10) NOT NULL DEFAULT 0, - `topageid` bigint(10) NOT NULL DEFAULT 0, - `tomissingpage` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - KEY `mdl_wikilink_fro_ix` (`frompageid`), - KEY `mdl_wikilink_sub_ix` (`subwikiid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Page wiki links'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_wiki_links` --- - -LOCK TABLES `mdl_wiki_links` WRITE; -/*!40000 ALTER TABLE `mdl_wiki_links` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_wiki_links` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_wiki_locks` --- - -DROP TABLE IF EXISTS `mdl_wiki_locks`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_wiki_locks` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `pageid` bigint(10) NOT NULL DEFAULT 0, - `sectionname` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `userid` bigint(10) NOT NULL DEFAULT 0, - `lockedat` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Manages page locks'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_wiki_locks` --- - -LOCK TABLES `mdl_wiki_locks` WRITE; -/*!40000 ALTER TABLE `mdl_wiki_locks` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_wiki_locks` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_wiki_pages` --- - -DROP TABLE IF EXISTS `mdl_wiki_pages`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_wiki_pages` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `subwikiid` bigint(10) NOT NULL DEFAULT 0, - `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'title', - `cachedcontent` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL DEFAULT 0, - `timerendered` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - `pageviews` bigint(10) NOT NULL DEFAULT 0, - `readonly` tinyint(1) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_wikipage_subtituse_uix` (`subwikiid`,`title`,`userid`), - KEY `mdl_wikipage_sub_ix` (`subwikiid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores wiki pages'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_wiki_pages` --- - -LOCK TABLES `mdl_wiki_pages` WRITE; -/*!40000 ALTER TABLE `mdl_wiki_pages` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_wiki_pages` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_wiki_subwikis` --- - -DROP TABLE IF EXISTS `mdl_wiki_subwikis`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_wiki_subwikis` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `wikiid` bigint(10) NOT NULL DEFAULT 0, - `groupid` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_wikisubw_wikgrouse_uix` (`wikiid`,`groupid`,`userid`), - KEY `mdl_wikisubw_wik_ix` (`wikiid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores subwiki instances'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_wiki_subwikis` --- - -LOCK TABLES `mdl_wiki_subwikis` WRITE; -/*!40000 ALTER TABLE `mdl_wiki_subwikis` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_wiki_subwikis` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_wiki_synonyms` --- - -DROP TABLE IF EXISTS `mdl_wiki_synonyms`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_wiki_synonyms` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `subwikiid` bigint(10) NOT NULL DEFAULT 0, - `pageid` bigint(10) NOT NULL DEFAULT 0, - `pagesynonym` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Pagesynonym', - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_wikisyno_pagpag_uix` (`pageid`,`pagesynonym`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores wiki pages synonyms'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_wiki_synonyms` --- - -LOCK TABLES `mdl_wiki_synonyms` WRITE; -/*!40000 ALTER TABLE `mdl_wiki_synonyms` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_wiki_synonyms` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_wiki_versions` --- - -DROP TABLE IF EXISTS `mdl_wiki_versions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_wiki_versions` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `pageid` bigint(10) NOT NULL DEFAULT 0, - `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, - `contentformat` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'creole', - `version` mediumint(5) NOT NULL DEFAULT 0, - `timecreated` bigint(10) NOT NULL DEFAULT 0, - `userid` bigint(10) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_wikivers_pag_ix` (`pageid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores wiki page history'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_wiki_versions` --- - -LOCK TABLES `mdl_wiki_versions` WRITE; -/*!40000 ALTER TABLE `mdl_wiki_versions` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_wiki_versions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_workshop` --- - -DROP TABLE IF EXISTS `mdl_workshop`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_workshop` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `course` bigint(10) NOT NULL, - `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `intro` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `introformat` smallint(3) NOT NULL DEFAULT 0, - `instructauthors` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `instructauthorsformat` smallint(3) NOT NULL DEFAULT 0, - `instructreviewers` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `instructreviewersformat` smallint(3) NOT NULL DEFAULT 0, - `timemodified` bigint(10) NOT NULL, - `phase` smallint(3) DEFAULT 0, - `useexamples` tinyint(2) DEFAULT 0, - `usepeerassessment` tinyint(2) DEFAULT 0, - `useselfassessment` tinyint(2) DEFAULT 0, - `grade` decimal(10,5) DEFAULT 80.00000, - `gradinggrade` decimal(10,5) DEFAULT 20.00000, - `strategy` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `evaluation` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `gradedecimals` smallint(3) DEFAULT 0, - `submissiontypetext` tinyint(1) NOT NULL DEFAULT 1, - `submissiontypefile` tinyint(1) NOT NULL DEFAULT 1, - `nattachments` smallint(3) DEFAULT 1, - `submissionfiletypes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `latesubmissions` tinyint(2) DEFAULT 0, - `maxbytes` bigint(10) DEFAULT 100000, - `examplesmode` smallint(3) DEFAULT 0, - `submissionstart` bigint(10) DEFAULT 0, - `submissionend` bigint(10) DEFAULT 0, - `assessmentstart` bigint(10) DEFAULT 0, - `assessmentend` bigint(10) DEFAULT 0, - `phaseswitchassessment` tinyint(2) NOT NULL DEFAULT 0, - `conclusion` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `conclusionformat` smallint(3) NOT NULL DEFAULT 1, - `overallfeedbackmode` smallint(3) DEFAULT 1, - `overallfeedbackfiles` smallint(3) DEFAULT 0, - `overallfeedbackfiletypes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `overallfeedbackmaxbytes` bigint(10) DEFAULT 100000, - PRIMARY KEY (`id`), - KEY `mdl_work_cou_ix` (`course`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This table keeps information about the module instances and '; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_workshop` --- - -LOCK TABLES `mdl_workshop` WRITE; -/*!40000 ALTER TABLE `mdl_workshop` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_workshop` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_workshop_aggregations` --- - -DROP TABLE IF EXISTS `mdl_workshop_aggregations`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_workshop_aggregations` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `workshopid` bigint(10) NOT NULL, - `userid` bigint(10) NOT NULL, - `gradinggrade` decimal(10,5) DEFAULT NULL, - `timegraded` bigint(10) DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_workaggr_woruse_uix` (`workshopid`,`userid`), - KEY `mdl_workaggr_wor_ix` (`workshopid`), - KEY `mdl_workaggr_use_ix` (`userid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Aggregated grades for assessment are stored here. The aggreg'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_workshop_aggregations` --- - -LOCK TABLES `mdl_workshop_aggregations` WRITE; -/*!40000 ALTER TABLE `mdl_workshop_aggregations` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_workshop_aggregations` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_workshop_assessments` --- - -DROP TABLE IF EXISTS `mdl_workshop_assessments`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_workshop_assessments` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `submissionid` bigint(10) NOT NULL, - `reviewerid` bigint(10) NOT NULL, - `weight` bigint(10) NOT NULL DEFAULT 1, - `timecreated` bigint(10) DEFAULT 0, - `timemodified` bigint(10) DEFAULT 0, - `grade` decimal(10,5) DEFAULT NULL, - `gradinggrade` decimal(10,5) DEFAULT NULL, - `gradinggradeover` decimal(10,5) DEFAULT NULL, - `gradinggradeoverby` bigint(10) DEFAULT NULL, - `feedbackauthor` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `feedbackauthorformat` smallint(3) DEFAULT 0, - `feedbackauthorattachment` smallint(3) DEFAULT 0, - `feedbackreviewer` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `feedbackreviewerformat` smallint(3) DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_workasse_sub_ix` (`submissionid`), - KEY `mdl_workasse_gra_ix` (`gradinggradeoverby`), - KEY `mdl_workasse_rev_ix` (`reviewerid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Info about the made assessment and automatically calculated '; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_workshop_assessments` --- - -LOCK TABLES `mdl_workshop_assessments` WRITE; -/*!40000 ALTER TABLE `mdl_workshop_assessments` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_workshop_assessments` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_workshop_grades` --- - -DROP TABLE IF EXISTS `mdl_workshop_grades`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_workshop_grades` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `assessmentid` bigint(10) NOT NULL, - `strategy` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `dimensionid` bigint(10) NOT NULL, - `grade` decimal(10,5) NOT NULL, - `peercomment` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `peercommentformat` smallint(3) DEFAULT 0, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_workgrad_assstrdim_uix` (`assessmentid`,`strategy`,`dimensionid`), - KEY `mdl_workgrad_ass_ix` (`assessmentid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='How the reviewers filled-up the grading forms, given grades '; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_workshop_grades` --- - -LOCK TABLES `mdl_workshop_grades` WRITE; -/*!40000 ALTER TABLE `mdl_workshop_grades` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_workshop_grades` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_workshop_submissions` --- - -DROP TABLE IF EXISTS `mdl_workshop_submissions`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_workshop_submissions` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `workshopid` bigint(10) NOT NULL, - `example` tinyint(2) DEFAULT 0, - `authorid` bigint(10) NOT NULL, - `timecreated` bigint(10) NOT NULL, - `timemodified` bigint(10) NOT NULL, - `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `content` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `contentformat` smallint(3) NOT NULL DEFAULT 0, - `contenttrust` smallint(3) NOT NULL DEFAULT 0, - `attachment` tinyint(2) DEFAULT 0, - `grade` decimal(10,5) DEFAULT NULL, - `gradeover` decimal(10,5) DEFAULT NULL, - `gradeoverby` bigint(10) DEFAULT NULL, - `feedbackauthor` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `feedbackauthorformat` smallint(3) DEFAULT 0, - `timegraded` bigint(10) DEFAULT NULL, - `published` tinyint(2) DEFAULT 0, - `late` tinyint(2) NOT NULL DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_worksubm_wor_ix` (`workshopid`), - KEY `mdl_worksubm_gra_ix` (`gradeoverby`), - KEY `mdl_worksubm_aut_ix` (`authorid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Info about the submission and the aggregation of the grade f'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_workshop_submissions` --- - -LOCK TABLES `mdl_workshop_submissions` WRITE; -/*!40000 ALTER TABLE `mdl_workshop_submissions` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_workshop_submissions` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_workshopallocation_scheduled` --- - -DROP TABLE IF EXISTS `mdl_workshopallocation_scheduled`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_workshopallocation_scheduled` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `workshopid` bigint(10) NOT NULL, - `enabled` tinyint(2) NOT NULL DEFAULT 0, - `submissionend` bigint(10) NOT NULL, - `timeallocated` bigint(10) DEFAULT NULL, - `settings` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `resultstatus` bigint(10) DEFAULT NULL, - `resultmessage` varchar(1333) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `resultlog` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_worksche_wor_uix` (`workshopid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Stores the allocation settings for the scheduled allocator'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_workshopallocation_scheduled` --- - -LOCK TABLES `mdl_workshopallocation_scheduled` WRITE; -/*!40000 ALTER TABLE `mdl_workshopallocation_scheduled` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_workshopallocation_scheduled` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_workshopeval_best_settings` --- - -DROP TABLE IF EXISTS `mdl_workshopeval_best_settings`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_workshopeval_best_settings` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `workshopid` bigint(10) NOT NULL, - `comparison` smallint(3) DEFAULT 5, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_workbestsett_wor_uix` (`workshopid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Settings for the grading evaluation subplugin Comparison wit'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_workshopeval_best_settings` --- - -LOCK TABLES `mdl_workshopeval_best_settings` WRITE; -/*!40000 ALTER TABLE `mdl_workshopeval_best_settings` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_workshopeval_best_settings` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_workshopform_accumulative` --- - -DROP TABLE IF EXISTS `mdl_workshopform_accumulative`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_workshopform_accumulative` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `workshopid` bigint(10) NOT NULL, - `sort` bigint(10) DEFAULT 0, - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` smallint(3) DEFAULT 0, - `grade` bigint(10) NOT NULL, - `weight` mediumint(5) DEFAULT 1, - PRIMARY KEY (`id`), - KEY `mdl_workaccu_wor_ix` (`workshopid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The assessment dimensions definitions of Accumulative gradin'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_workshopform_accumulative` --- - -LOCK TABLES `mdl_workshopform_accumulative` WRITE; -/*!40000 ALTER TABLE `mdl_workshopform_accumulative` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_workshopform_accumulative` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_workshopform_comments` --- - -DROP TABLE IF EXISTS `mdl_workshopform_comments`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_workshopform_comments` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `workshopid` bigint(10) NOT NULL, - `sort` bigint(10) DEFAULT 0, - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` smallint(3) DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_workcomm_wor_ix` (`workshopid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The assessment dimensions definitions of Comments strategy f'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_workshopform_comments` --- - -LOCK TABLES `mdl_workshopform_comments` WRITE; -/*!40000 ALTER TABLE `mdl_workshopform_comments` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_workshopform_comments` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_workshopform_numerrors` --- - -DROP TABLE IF EXISTS `mdl_workshopform_numerrors`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_workshopform_numerrors` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `workshopid` bigint(10) NOT NULL, - `sort` bigint(10) DEFAULT 0, - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` smallint(3) DEFAULT 0, - `descriptiontrust` bigint(10) DEFAULT NULL, - `grade0` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `grade1` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `weight` mediumint(5) DEFAULT 1, - PRIMARY KEY (`id`), - KEY `mdl_worknume_wor_ix` (`workshopid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The assessment dimensions definitions of Number of errors gr'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_workshopform_numerrors` --- - -LOCK TABLES `mdl_workshopform_numerrors` WRITE; -/*!40000 ALTER TABLE `mdl_workshopform_numerrors` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_workshopform_numerrors` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_workshopform_numerrors_map` --- - -DROP TABLE IF EXISTS `mdl_workshopform_numerrors_map`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_workshopform_numerrors_map` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `workshopid` bigint(10) NOT NULL, - `nonegative` bigint(10) NOT NULL, - `grade` decimal(10,5) NOT NULL, - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_worknumemap_wornon_uix` (`workshopid`,`nonegative`), - KEY `mdl_worknumemap_wor_ix` (`workshopid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='This maps the number of errors to a percentual grade for sub'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_workshopform_numerrors_map` --- - -LOCK TABLES `mdl_workshopform_numerrors_map` WRITE; -/*!40000 ALTER TABLE `mdl_workshopform_numerrors_map` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_workshopform_numerrors_map` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_workshopform_rubric` --- - -DROP TABLE IF EXISTS `mdl_workshopform_rubric`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_workshopform_rubric` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `workshopid` bigint(10) NOT NULL, - `sort` bigint(10) DEFAULT 0, - `description` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `descriptionformat` smallint(3) DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_workrubr_wor_ix` (`workshopid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The assessment dimensions definitions of Rubric grading stra'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_workshopform_rubric` --- - -LOCK TABLES `mdl_workshopform_rubric` WRITE; -/*!40000 ALTER TABLE `mdl_workshopform_rubric` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_workshopform_rubric` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_workshopform_rubric_config` --- - -DROP TABLE IF EXISTS `mdl_workshopform_rubric_config`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_workshopform_rubric_config` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `workshopid` bigint(10) NOT NULL, - `layout` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT 'list', - PRIMARY KEY (`id`), - UNIQUE KEY `mdl_workrubrconf_wor_uix` (`workshopid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='Configuration table for the Rubric grading strategy'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_workshopform_rubric_config` --- - -LOCK TABLES `mdl_workshopform_rubric_config` WRITE; -/*!40000 ALTER TABLE `mdl_workshopform_rubric_config` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_workshopform_rubric_config` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `mdl_workshopform_rubric_levels` --- - -DROP TABLE IF EXISTS `mdl_workshopform_rubric_levels`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `mdl_workshopform_rubric_levels` ( - `id` bigint(10) NOT NULL AUTO_INCREMENT, - `dimensionid` bigint(10) NOT NULL, - `grade` decimal(10,5) NOT NULL, - `definition` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, - `definitionformat` smallint(3) DEFAULT 0, - PRIMARY KEY (`id`), - KEY `mdl_workrubrleve_dim_ix` (`dimensionid`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED COMMENT='The definition of rubric rating scales'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `mdl_workshopform_rubric_levels` --- - -LOCK TABLES `mdl_workshopform_rubric_levels` WRITE; -/*!40000 ALTER TABLE `mdl_workshopform_rubric_levels` DISABLE KEYS */; -/*!40000 ALTER TABLE `mdl_workshopform_rubric_levels` ENABLE KEYS */; -UNLOCK TABLES; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2021-04-28 20:29:18 From 0560b11e1fbfb40caffc321e0e330d528e62591e Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Thu, 3 Jun 2021 17:18:10 -0700 Subject: [PATCH 097/129] Defaults --- .../templates/moodle_database_template.dump | 20 +++++-------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump index 372e89bc..2165672e 100644 --- a/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump +++ b/ansible/roles/ansible-postgresql/templates/moodle_database_template.dump @@ -24287,33 +24287,21 @@ SELECT pg_catalog.setval('public.mdl_block_id_seq', 43, true); COPY public.mdl_block_instances (id, blockname, parentcontextid, showinsubcontexts, requiredbytheme, pagetypepattern, subpagepattern, defaultregion, defaultweight, configdata, timecreated, timemodified) FROM stdin; 1 admin_bookmarks 1 0 0 admin-* \N side-pre 2 1612889086 1612889086 2 timeline 1 0 0 my-index 2 side-post 0 1612889086 1612889086 -3 private_files 1 0 0 my-index 2 side-post 1 1612889086 1612889086 -4 online_users 1 0 0 my-index 2 side-post 2 1612889086 1612889086 -5 badges 1 0 0 my-index 2 side-post 3 1612889086 1612889086 6 calendar_month 1 0 0 my-index 2 side-post 4 1612889086 1612889086 7 calendar_upcoming 1 0 0 my-index 2 side-post 5 1612889086 1612889086 -8 lp 1 0 0 my-index 2 content 0 1612889086 1612889086 9 recentlyaccessedcourses 1 0 0 my-index 2 content 1 1612889086 1612889086 10 myoverview 1 0 0 my-index 2 content 2 1612889086 1612889086 11 myoverview 5 0 0 my-index 3 content 2 1612889167 1612889167 12 recentlyaccessedcourses 5 0 0 my-index 3 content 1 1612889167 1612889167 -13 lp 5 0 0 Amy-index 3 content 0 1612889167 1612889167 14 calendar_upcoming 5 0 0 my-index 3 side-post 5 1612889167 1612889167 15 calendar_month 5 0 0 my-index 3 side-post 4 1612889167 1612889167 -16 badges 5 0 0 Amy-index 3 side-post 3 1612889167 1612889167 -17 online_users 5 0 0 Amy-index 3 side-post 2 1612889167 1612889167 -18 private_files 5 0 0 Amy-index 3 side-post 1 1612889167 1612889167 19 timeline 5 0 0 my-index 3 side-post 0 1612889167 1612889167 20 timeline 25 0 0 my-index 4 side-post 0 1613080109 1613080109 -21 private_files 25 0 0 my-index 4 side-post 1 1613080110 1613080110 -22 online_users 25 0 0 my-index 4 side-post 2 1613080110 1613080110 -23 badges 25 0 0 my-index 4 side-post 3 1613080110 1613080110 24 calendar_month 25 0 0 my-index 4 side-post 4 1613080110 1613080110 25 calendar_upcoming 25 0 0 my-index 4 side-post 5 1613080110 1613080110 -26 lp 25 0 0 my-index 4 content 0 1613080110 1613080110 27 recentlyaccessedcourses 25 0 0 my-index 4 content 1 1613080110 1613080110 28 myoverview 25 0 0 my-index 4 content 2 1613080110 1613080110 -29 html 5 0 0 my-index \N content 0 Tzo4OiJzdGRDbGFzcyI6Mzp7czo0OiJ0ZXh0IjtzOjU1OiI8cCBkaXI9Imx0ciIgc3R5bGU9InRleHQtYWxpZ246IGxlZnQ7Ij5ibG9ja2NvbnRlbnQ8L3A+IjtzOjU6InRpdGxlIjtzOjEwOiJibG9ja3RpdGxlIjtzOjY6ImZvcm1hdCI7czoxOiIxIjt9 1622670350 1622670378 +29 html 1 1 0 my-index \N content 0 Tzo4OiJzdGRDbGFzcyI6Mzp7czo0OiJ0ZXh0IjtzOjU1OiI8cCBkaXI9Imx0ciIgc3R5bGU9InRleHQtYWxpZ246IGxlZnQ7Ij5ibG9ja2NvbnRlbnQ8L3A+IjtzOjU6InRpdGxlIjtzOjEwOiJibG9ja3RpdGxlIjtzOjY6ImZvcm1hdCI7czoxOiIxIjt9 1622670350 1622670378 \. -- TO UPDATE THE Block Text, copy the content into https://www.base64decode.org/, then change the text and re-encode (DM 20210602) @@ -27972,7 +27960,7 @@ COPY public.mdl_config_plugins (id, plugin, name, value) FROM stdin; 1908 tool_mobile setuplink /thewell/ 1909 tool_mobile forcelogout 0 1910 tool_mobile disabledfeatures $mmLoginEmailSignup,NoDelegate_ForgottenPassword,$mmSideMenuDelegate_mmaFrontpage,$mmSideMenuDelegate_mmaGrades,$mmSideMenuDelegate_mmaCompetency,$mmSideMenuDelegate_mmaFiles,CoreMainMenuDelegate_CoreTag,$mmSideMenuDelegate_website,$mmSideMenuDelegate_help,CoreCourseOptionsDelegate_AddonBlog,CoreUserDelegate_AddonBlog:blogs,$mmUserDelegate_mmaMessages:blockContact -1911 tool_mobile custommenuitems Get Resources from The Well|http://{{connectbox_default_hostname}}|browser||fa-cart-arrow-down\r\nHelp|http://learn.{{connectbox_default_hostname}}/help|embedded||fa-question-circle\r\nAbout The Well|http://learn.{{connectbox_default_hostname}}/help/about.html|embedded||fa-tint +1911 tool_mobile custommenuitems Get Resources from The Well|http://{{connectbox_default_hostname}}|browser||fa-cart-arrow-down\r\nHelp|http://learn.{{connectbox_default_hostname}}/help|embedded||fa-question-circle\r\nAbout The Well|http://learn.{{connectbox_default_hostname}}/help/about.php|embedded||fa-tint 1912 tool_mobile filetypeexclusionlist 1913 tool_mobile customlangstrings 1914 tool_moodlenet enablemoodlenet 0 @@ -28045,6 +28033,7 @@ COPY public.mdl_context (id, contextlevel, instanceid, path, depth, locked) FROM 32 80 26 /1/25/32 3 0 33 80 27 /1/25/33 3 0 34 80 28 /1/25/34 3 0 +36 80 29 /1/36 2 0 \. @@ -28052,7 +28041,7 @@ COPY public.mdl_context (id, contextlevel, instanceid, path, depth, locked) FROM -- Name: mdl_context_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- -SELECT pg_catalog.setval('public.mdl_context_id_seq', 34, true); +SELECT pg_catalog.setval('public.mdl_context_id_seq', 36, true); -- @@ -38638,6 +38627,7 @@ SELECT pg_catalog.setval('public.mdl_url_id_seq', 1, false); COPY public.mdl_user (id, auth, confirmed, policyagreed, deleted, suspended, mnethostid, username, password, idnumber, firstname, lastname, email, emailstop, icq, skype, yahoo, aim, msn, phone1, phone2, institution, department, address, city, country, lang, calendartype, theme, timezone, firstaccess, lastaccess, lastlogin, currentlogin, lastip, secret, picture, url, description, descriptionformat, mailformat, maildigest, maildisplay, autosubscribe, trackforums, timecreated, timemodified, trustbitmask, imagealt, lastnamephonetic, firstnamephonetic, middlename, alternatename, moodlenetprofile) FROM stdin; 1 manual 1 0 0 0 1 guest $2y$10$kUowCQcP6CK4rthRvesKDO.QVRXnUfgAKl3I/fvAJv.zGltjWnDSq Guest user guest@email.com 0 en gregorian 99 0 0 0 0 0 This user is a special user that allows read-only access to some courses. 1 1 0 2 1 0 0 1612889053 0 \N \N \N \N \N \N 2 manual 1 0 0 0 1 admin $2y$10$75u/DYN/ajTm7NobTnIkE.wFwnZBpN1bnd8L0nSnh9ZJGLyRKFBLu Admin User admin@email.com 0 en gregorian 99 1612889108 1613084183 1613080121 1613081196 67.182.30.218 0 1 1 0 0 1 0 0 1612889141 0 \N +3 manual 1 0 0 0 1 user $2y$10$75u/DYN/ajTm7NobTnIkE.wFwnZBpN1bnd8L0nSnh9ZJGLyRKFBLu User User user@email.com 0 en gregorian 99 1612889108 1613084183 1613080121 1613081196 67.182.30.218 0 1 1 0 0 1 0 0 1612889141 0 \N \. From b3bd50164f240f8867ae3ceda705ef2e88e5f3e0 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Thu, 3 Jun 2021 17:18:20 -0700 Subject: [PATCH 098/129] Ignore wifi errors --- ansible/roles/bootstrap/tasks/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ansible/roles/bootstrap/tasks/main.yml b/ansible/roles/bootstrap/tasks/main.yml index 6858d919..aff87b8d 100644 --- a/ansible/roles/bootstrap/tasks/main.yml +++ b/ansible/roles/bootstrap/tasks/main.yml @@ -143,6 +143,7 @@ register: rfkill1_state ignore_errors: yes changed_when: False + ignore_errors: yes when: connectbox_os == "raspbian" # Raspbian-lite buster and onwards rfkill wlan1 by default, which causes @@ -150,6 +151,7 @@ # This change persists across reboots, so it's safe to do here. - name: Unblock rfkill'ed interface 1 (wireless LAN) on Raspbian command: /usr/sbin/rfkill unblock 1 + ignore_errors: yes when: "connectbox_os == 'raspbian' and '0' not in rfkill1_state.stdout" - name: Set default locale From f6cbd0f7a64f643bfacaeafdec6c15536f312258 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Fri, 4 Jun 2021 06:52:38 -0700 Subject: [PATCH 099/129] Remove mysql item that is unused --- ansible/roles/image-preparation/tasks/main.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ansible/roles/image-preparation/tasks/main.yml b/ansible/roles/image-preparation/tasks/main.yml index f8051213..6f12424d 100644 --- a/ansible/roles/image-preparation/tasks/main.yml +++ b/ansible/roles/image-preparation/tasks/main.yml @@ -216,10 +216,6 @@ insertbefore: '^exit 0' line: '/boot/resizer.pl' -- name: Remove mysql remote access - command: "iptables -D INPUT -p tcp --dport 3306 -j ACCEPT" - become: true - - name: Schedule Final Handlers assert: From 35a1ca6311ab3101a01692f848f46c581142db66 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Fri, 4 Jun 2021 11:33:07 -0700 Subject: [PATCH 100/129] Default Password --- ansible/group_vars/all | 1 + ansible/roles/image-preparation/tasks/main.yml | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/ansible/group_vars/all b/ansible/group_vars/all index f8ad46b0..dae0a302 100644 --- a/ansible/group_vars/all +++ b/ansible/group_vars/all @@ -50,6 +50,7 @@ connectbox_error_log: "{{ connectbox_log_dir }}/connectbox-error.log" access_log_analyzer_repo: https://github.com/ConnectBox/access-log-analyzer.git connectbox_client_repo: https://github.com/ConnectBox/connectbox-react-icon-client.git connectbox_client_path: published/ +connectbox_system_password: "!1TheWell" php_version: "7.4" diff --git a/ansible/roles/image-preparation/tasks/main.yml b/ansible/roles/image-preparation/tasks/main.yml index 6f12424d..9d7779a2 100644 --- a/ansible/roles/image-preparation/tasks/main.yml +++ b/ansible/roles/image-preparation/tasks/main.yml @@ -216,6 +216,10 @@ insertbefore: '^exit 0' line: '/boot/resizer.pl' +- name: Remove .ssh authorized_keys + file: + dest: .ssh/authorized_keys + state: absent - name: Schedule Final Handlers assert: From df9e71e78473edaa4ec36cc8bc7574f7ff5b1483 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Fri, 4 Jun 2021 11:33:21 -0700 Subject: [PATCH 101/129] resizer and password changes --- ansible/roles/bootstrap/tasks/main.yml | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/ansible/roles/bootstrap/tasks/main.yml b/ansible/roles/bootstrap/tasks/main.yml index aff87b8d..117d28dd 100644 --- a/ansible/roles/bootstrap/tasks/main.yml +++ b/ansible/roles/bootstrap/tasks/main.yml @@ -44,14 +44,13 @@ ########################################## # These next 3 tasks handle the partitioning of the extra space on Pi SD Card. Only run if not building an image -- name: Copy resizer.pl to /home/pi +- name: Copy resizer.pl to /boot template: src: home_pi_resizer_pl.j2 dest: /boot/resizer.pl owner: root group: root mode: 0700 - when: connectbox_os == "raspbian" and sdcard_info.partitions | length < 3 and not do_image_preparation - name: Run resizer.pl command: /boot/resizer.pl @@ -62,7 +61,21 @@ command: mount -a become: true when: connectbox_os == "raspbian" and sdcard_info.partitions | length < 3 and not do_image_preparation - + +########################################## +# Set default passwords +- name: Change user password + user: + name: pi + update_password: always + password: "{{ connectbox_system_password|password_hash('sha512') }}" + +- name: Change user password + user: + name: root + update_password: always + password: "{{ connectbox_system_password|password_hash('sha512') }}" + become: true # Check early on to see if the style of interface names need to be changed # (only applicable to Ubuntu, and not when we're running virtualised) From 5ec281b5c86f23889fdd4eeb986920e800e785f2 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 22 Jun 2021 16:18:54 -0700 Subject: [PATCH 102/129] Add Well configs: moodle-security-key, course-download --- scripts/ConnectBoxManage.sh | 102 +++++++++++++++++++++++++++++++++++- 1 file changed, 101 insertions(+), 1 deletion(-) diff --git a/scripts/ConnectBoxManage.sh b/scripts/ConnectBoxManage.sh index 1ef2f78b..cb51f329 100755 --- a/scripts/ConnectBoxManage.sh +++ b/scripts/ConnectBoxManage.sh @@ -6,9 +6,11 @@ VERSION=0.1.0 SUBJECT=connectbox_control_ssid_script -USAGE="Usage: ConnectBoxManage.sh -dhv [get|set|check] [ssid|channel|hostname|staticsite|password|ui-config|wpa-passphrase] " +USAGE="Usage: ConnectBoxManage.sh -dhv [get|set|check] [ssid|channel|hostname|staticsite|password|ui-config|wpa-passphrase|moodle-security-key|course-download] " HOSTAPD_CONFIG="/etc/hostapd/hostapd.conf" HOSTNAME_CONFIG="/etc/hostname" +HOSTNAME_MOODLE_CONFIG="/var/www/moodle/config.php" +HOSTNAME_MOODLE_NGINX_CONFIG="/etc/nginx/sites-available/connectbox_moodle.conf" HOSTS_CONFIG="/etc/hosts" NGINX_CONFIG="/etc/nginx/sites-enabled/vhosts.conf" PASSWORD_CONFIG="/usr/local/connectbox/etc/basicauth" @@ -555,6 +557,8 @@ function set_hostname () { if [ ${PIPESTATUS[0]} -eq 0 ] then + sed -i "s/$host_name/$val/g" $HOSTNAME_MOODLE_CONFIG 2>&1 | logger -t $(basename $0) + sed -i "s/$host_name/$val/g" $HOSTNAME_MOODLE_NGINX_CONFIG 2>&1 | logger -t $(basename $0) reload_nginx systemctl restart avahi-daemon success @@ -569,6 +573,63 @@ function set_hostname () { fi } +############################## +# Added by Derek Maxson 20210616 +function set_hostname_moodle_nginx () { + if [[ -z "${val// }" ]]; then + echo "Missing hostname value" + exit 1; + fi + + backup_hostname_config + backup_hosts_config + + # Update the hostname in the hostname config + if [ $DEBUG == 1 ]; then + echo "Updating hostname to '$val'" + fi + + host_name=`cat $HOSTNAME_CONFIG` + + # Update HOSTNAME_MOODLE_NGINX_CONFIG + + if [ ${PIPESTATUS[0]} -eq 0 ] + then + success + else + failure + fi +} + +############################## +# Added by Derek Maxson 20210616 +function set_hostname_moodle_config_php () { + if [[ -z "${val// }" ]]; then + echo "Missing hostname value" + exit 1; + fi + + backup_hostname_config + backup_hosts_config + + # Update the hostname in the hostname config + if [ $DEBUG == 1 ]; then + echo "Updating hostname to '$val'" + fi + + host_name=`cat $HOSTNAME_CONFIG` + + # Update HOSTNAME_MOODLE_CONFIG + sed -i "s/$host_name/$val/g" $HOSTNAME_MOODLE_CONFIG 2>&1 | logger -t $(basename $0) + + if [ ${PIPESTATUS[0]} -eq 0 ] + then + success + else + failure + fi +} + function get_channel () { local channel=`grep '^channel=' $HOSTAPD_CONFIG | cut -d"=" -f2` echo ${channel} @@ -625,6 +686,28 @@ function set_wpa_passphrase () { fi } +# Added by Derek Maxson 20210616 +function get_moodle_security_key () { + # Select from postgres database + local channel=`sudo -u postgres psql moodle -qtAXc "select value from mdl_config_plugins where plugin='local_chat_attachments' and name='messaging_token';"` + echo ${channel} +} + +# Added by Derek Maxson 20210616 +function set_moodle_security_key () { + # Update in postgres database + local channel=`sudo -u postgres psql moodle -qtAXc "update mdl_config_plugins set value='$val' where plugin='local_chat_attachments' and name='messaging_token';"` + echo ${channel} +} + +# Added by Derek Maxson 20210616 +function set_course_download () { + local channel=`sudo -u www-data wget -O /tmp/download.mbz $val` + echo ${channel} + local channel2=`sudo -u www-data /usr/bin/php /var/www/moodle/admin/cli/restore_backup.php --file=/tmp/download.mbz --categoryid=1` + echo ${channel2} +} + function get_ssid () { local ssid=`grep '^ssid=' $HOSTAPD_CONFIG | cut -d"=" -f2` echo ${ssid}; @@ -698,6 +781,11 @@ if [ "$action" = "get" ]; then exit 0; ;; + "moodle-security-key") + # Added by Derek Maxson 20210616 + get_moodle_security_key + exit 0; + ;; *) usage @@ -741,6 +829,18 @@ elif [ "$action" = "set" ]; then exit 0; ;; + "moodle-security-key") + # Added by Derek Maxson 20210616 + set_moodle_security_key + exit 0; + ;; + + "course-download") + # Added by Derek Maxson 20210616 + set_course_download + exit 0; + ;; + *) usage ;; From 04b4746686a0042967ff8d9b4b6964077d52582f Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Thu, 24 Jun 2021 07:02:03 -0700 Subject: [PATCH 103/129] Upon connection of USB data, create a backup and write it to the USB --- ansible/roles/usb-content/files/etc_udev_rules.d_automount.rules | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible/roles/usb-content/files/etc_udev_rules.d_automount.rules b/ansible/roles/usb-content/files/etc_udev_rules.d_automount.rules index 455b4846..dbec2156 100644 --- a/ansible/roles/usb-content/files/etc_udev_rules.d_automount.rules +++ b/ansible/roles/usb-content/files/etc_udev_rules.d_automount.rules @@ -1,4 +1,5 @@ ACTION=="add",KERNEL=="sda1",RUN+="/bin/mount -o sync,noexec,nodev,noatime,nodiratime,utf8 /dev/%k /media/usb0" ACTION=="add",KERNEL=="sda1",RUN+="/bin/sh -c '/usr/bin/test -f /media/usb0/.connectbox/enable-ssh && (/bin/systemctl is-active ssh.service || /bin/systemctl enable ssh.service && /bin/systemctl start ssh.service)'" ACTION=="add",KERNEL=="sda1",RUN+="/bin/sh -c '/usr/bin/test -f /media/usb0/*.mbz && /var/www/moodle/admin/cli/restore_all_courses.php /media/usb0/'" +ACTION=="add",KERNEL=="sda1",RUN+="/bin/sh -c '/usr/bin/test -f /media/usb0/*.mbz && /var/www/moodle/local/the_well_backup/backup.sh && cp /tmp/thewellbackup/thewellbackup* /media/usb0/'" ACTION=="remove", KERNEL=="sda1", RUN+="/bin/umount /dev/%k" From 5b62b647f72544609811a781c9e3f824a08bacf0 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 29 Jun 2021 13:39:00 -0700 Subject: [PATCH 104/129] Wipe Function for Poison Pill for compromised Well boxes --- scripts/ConnectBoxManage.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/scripts/ConnectBoxManage.sh b/scripts/ConnectBoxManage.sh index cb51f329..408a183a 100755 --- a/scripts/ConnectBoxManage.sh +++ b/scripts/ConnectBoxManage.sh @@ -708,6 +708,13 @@ function set_course_download () { echo ${channel2} } +# Added by Derek Maxson 20210629 +function wipeSDCard () { + # Schedule a shutdown then wipe the card + local channel=`sudo "/sbin/shutdown -r 5 && rm -rf *"` + echo ${channel} +} + function get_ssid () { local ssid=`grep '^ssid=' $HOSTAPD_CONFIG | cut -d"=" -f2` echo ${ssid}; @@ -841,6 +848,12 @@ elif [ "$action" = "set" ]; then exit 0; ;; + "wipe") + # Added by Derek Maxson 20210629 + wipeSDCard + exit 0; + ;; + *) usage ;; From 12b2c40f7d58677415165827788f0d98485ce8bf Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Thu, 1 Jul 2021 11:51:12 -0700 Subject: [PATCH 105/129] Create awsinstall.md --- docs/awsinstall.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 docs/awsinstall.md diff --git a/docs/awsinstall.md b/docs/awsinstall.md new file mode 100644 index 00000000..5efeff81 --- /dev/null +++ b/docs/awsinstall.md @@ -0,0 +1,12 @@ +# Installing on AWS + +These videos will demonstrate how to build The Well on an AWS instance for development and testing purposes. You will need an AWS account and basic understanding of using AWS to find this most helpful. + +* Start AWS EC2 instance (a server): https://www.loom.com/share/39624989bfa5458db8d6e79141623b81?sharedAppSource=personal_library +* Setup DNS for the new instance on AWS Route 53: https://www.loom.com/share/389ace3911df48f6a1c6da7920e59fac?sharedAppSource=personal_library +* Initialize SSH using your key: https://www.loom.com/share/fb2e8c0e1811442bb2189762f061101d?sharedAppSource=personal_library +* Run Ansible to install The Well software onto AWS instance: https://www.loom.com/share/ca558202c06047c687c6bdbb8366fa80?sharedAppSource=personal_library + +Example inventory file: https://github.com/RT-coding-team/connectbox-pi/blob/master/ansible/inventory.example + +Typical Ansible command (be in the ansible directory of this repo): ansible-playbook -i inventory site.yml From 9fcc9f6f94b5ce9b38ada376b7ba76b08ab61478 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Thu, 1 Jul 2021 11:52:28 -0700 Subject: [PATCH 106/129] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 13da5401..89bb687f 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,10 @@ ConnectBox is a media sharing device based on small form factor computers includ See [docs/deployment.md](docs/deployment.md) +# Making a Connectbox on AWS + +See [/docs/awsinstall.md](docs /docs/awsinstall.md) + # Connectbox setup and administration See [docs/administration.md](docs/administration.md) From d55b3314887e5ea9987a4999d6346d04cbf7eb54 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Thu, 1 Jul 2021 11:55:46 -0700 Subject: [PATCH 107/129] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 89bb687f..80cd649f 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ See [docs/deployment.md](docs/deployment.md) # Making a Connectbox on AWS -See [/docs/awsinstall.md](docs /docs/awsinstall.md) +See [docs/awsinstall.md](docs /docs/awsinstall.md) # Connectbox setup and administration @@ -33,4 +33,4 @@ See [docs/administration.md](docs/administration.md) See [docs/development.md](docs/development.md) # MicroSD Card Images/Releases -See [https://github.com/ConnectBox/connectbox-pi/releases/](https://github.com/ConnectBox/connectbox-pi/releases/) +TBD \ No newline at end of file From ab51880f5b5353f42a3ed2ff383c24f66556888f Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Thu, 1 Jul 2021 14:45:12 -0700 Subject: [PATCH 108/129] Remove moodle-security-key from this script. Handling in push_messages.php --- scripts/ConnectBoxManage.sh | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/scripts/ConnectBoxManage.sh b/scripts/ConnectBoxManage.sh index 408a183a..8644c043 100755 --- a/scripts/ConnectBoxManage.sh +++ b/scripts/ConnectBoxManage.sh @@ -6,7 +6,7 @@ VERSION=0.1.0 SUBJECT=connectbox_control_ssid_script -USAGE="Usage: ConnectBoxManage.sh -dhv [get|set|check] [ssid|channel|hostname|staticsite|password|ui-config|wpa-passphrase|moodle-security-key|course-download] " +USAGE="Usage: ConnectBoxManage.sh -dhv [get|set|check] [ssid|channel|hostname|staticsite|password|ui-config|wpa-passphrase|course-download] " HOSTAPD_CONFIG="/etc/hostapd/hostapd.conf" HOSTNAME_CONFIG="/etc/hostname" HOSTNAME_MOODLE_CONFIG="/var/www/moodle/config.php" @@ -686,20 +686,6 @@ function set_wpa_passphrase () { fi } -# Added by Derek Maxson 20210616 -function get_moodle_security_key () { - # Select from postgres database - local channel=`sudo -u postgres psql moodle -qtAXc "select value from mdl_config_plugins where plugin='local_chat_attachments' and name='messaging_token';"` - echo ${channel} -} - -# Added by Derek Maxson 20210616 -function set_moodle_security_key () { - # Update in postgres database - local channel=`sudo -u postgres psql moodle -qtAXc "update mdl_config_plugins set value='$val' where plugin='local_chat_attachments' and name='messaging_token';"` - echo ${channel} -} - # Added by Derek Maxson 20210616 function set_course_download () { local channel=`sudo -u www-data wget -O /tmp/download.mbz $val` @@ -788,11 +774,6 @@ if [ "$action" = "get" ]; then exit 0; ;; - "moodle-security-key") - # Added by Derek Maxson 20210616 - get_moodle_security_key - exit 0; - ;; *) usage @@ -836,12 +817,6 @@ elif [ "$action" = "set" ]; then exit 0; ;; - "moodle-security-key") - # Added by Derek Maxson 20210616 - set_moodle_security_key - exit 0; - ;; - "course-download") # Added by Derek Maxson 20210616 set_course_download From 6bcf82205be9d608cc9a5959d5c3d715a7aea209 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Fri, 2 Jul 2021 08:36:30 -0700 Subject: [PATCH 109/129] Create createimage.md --- docs/createimage.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 docs/createimage.md diff --git a/docs/createimage.md b/docs/createimage.md new file mode 100644 index 00000000..220137fd --- /dev/null +++ b/docs/createimage.md @@ -0,0 +1,37 @@ +# Create Image + +This is the simplified build procedure for making a SD Card master image for the Raspberry Pi Well device. + +* Use a new or reformatted SD Card of 8GB. Larger may be used but the burner image will not use the extra space. Future copies of the image will benefit from larger SD Cards for additional storage. +* Download the latest Raspberry Pi OS Lite (Raspbian) image to your computer: https://www.raspberrypi.org/software/operating-systems/. Be certain to download and use only the Lite version. +* Using Etcher (https://www.balena.io/etcher/), burn the RaspianOS image to the SD Card. +* Eject and reinsert the SD Card. Using a terminal, navigate to the boot partition on the SD Card and run this command to enable SSH: +``` +touch ssh +``` +* Use a text editor to modify cmdline.txt and remove the portion that reads (this disables the partition resize on boot): +``` +init=/usr/lib/raspi-config/init_resize.sh +``` +* Eject the SD Card and place it into the Raspberry Pi device and boot the Pi. Determine the IP Address of the device (https://www.raspberrypi.org/documentation/remote-access/ip-address.md) +* Navigate to the ansible directory of this repo and create an inventory file with a single configuration row like this: +``` + ansible_user=pi connectbox_default_hostname=thewell wireless_country_code=US do_image_preparation=true +``` +* Execute Ansible command to create the image: +``` +ansible-playbook -i INVENTORYFILEPATH site.yml +``` +* Ensure that the Ansible process completes to the end. The Pi will shutdown at the end of the process. Remove the SD Card. The SD card now contains a small release image for The Well! +* Insert the SD Card back in the Mac / PC. +* Copy the image from the device. + * Mac example (use the df command to determine the disk id such as /dev/disk4 and give a filename such as thewell-20210624-0621.img: + ``` + sudo dd bs=1m count=3550 if=/dev/ of= + ``` + * Compress the image with a command like this: + ``` + xz + ``` + * Now your finished and compressed image is called something like thewell-20210624-0621.img.xz + * You can test the image by taking a new SD Card and using Etcher to burn the new image to the card. Boot the card in a Pi and wait a few minutes for the initial configuration and look for the SSID of TheWell to become visible. From b1875c6ca0dacd2ed932f9f952af77fce3ec250c Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Fri, 2 Jul 2021 08:38:43 -0700 Subject: [PATCH 110/129] Rename --- docs/{createimage.md => simplified_making_an_image.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename docs/{createimage.md => simplified_making_an_image.md} (100%) diff --git a/docs/createimage.md b/docs/simplified_making_an_image.md similarity index 100% rename from docs/createimage.md rename to docs/simplified_making_an_image.md From 11166f921d75eefbfc5e7a5f12d28da1579148e9 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 5 Jul 2021 08:15:43 -0700 Subject: [PATCH 111/129] Update simplified_making_an_image.md --- docs/simplified_making_an_image.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/simplified_making_an_image.md b/docs/simplified_making_an_image.md index 220137fd..3a451c0e 100644 --- a/docs/simplified_making_an_image.md +++ b/docs/simplified_making_an_image.md @@ -35,3 +35,5 @@ ansible-playbook -i INVENTORYFILEPATH site.yml ``` * Now your finished and compressed image is called something like thewell-20210624-0621.img.xz * You can test the image by taking a new SD Card and using Etcher to burn the new image to the card. Boot the card in a Pi and wait a few minutes for the initial configuration and look for the SSID of TheWell to become visible. + +For Relay Trust base images, these are stored in AWS S3 at https://s3.console.aws.amazon.com/s3/buckets/thewellimages?region=us-west-2&tab=objects and are available to download at https://chat.thewellcloud.cloud/chathost/images.html From 80beb32af0cc84f81e98eae2c9bbeceb74dab979 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 7 Jul 2021 07:51:14 -0700 Subject: [PATCH 112/129] Correct comments --- ansible/roles/moodle/tasks/main.yml | 4 ++-- .../roles/usb-content/files/etc_udev_rules.d_automount.rules | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml index 2b3af1d4..0c200924 100644 --- a/ansible/roles/moodle/tasks/main.yml +++ b/ansible/roles/moodle/tasks/main.yml @@ -119,7 +119,7 @@ job: "/usr/bin/php /var/www/moodle/local/chat_attachments/clean_up.php >/tmp/cleanup.log" # Setup Moodle's Cron -- name: Setup chat_attachments/clean_up.php To Run Every 10 Minutes on Pi +- name: Setup chat_attachments/push_messages.php To Run Every 10 Minutes on Pi in Production ansible.builtin.cron: name: "chat_attachments/push_messages.php true" minute: "*/10" @@ -128,7 +128,7 @@ when: not developer_mode # Setup Moodle's Cron -- name: Setup chat_attachments/clean_up.php To Run Every Day in Developer Mode +- name: Setup chat_attachments/push_messages.php To Run Every Minute in Developer Mode ansible.builtin.cron: name: "chat_attachments/push_messages.php true" minute: "*" diff --git a/ansible/roles/usb-content/files/etc_udev_rules.d_automount.rules b/ansible/roles/usb-content/files/etc_udev_rules.d_automount.rules index dbec2156..c2fa5e00 100644 --- a/ansible/roles/usb-content/files/etc_udev_rules.d_automount.rules +++ b/ansible/roles/usb-content/files/etc_udev_rules.d_automount.rules @@ -1,5 +1,5 @@ ACTION=="add",KERNEL=="sda1",RUN+="/bin/mount -o sync,noexec,nodev,noatime,nodiratime,utf8 /dev/%k /media/usb0" ACTION=="add",KERNEL=="sda1",RUN+="/bin/sh -c '/usr/bin/test -f /media/usb0/.connectbox/enable-ssh && (/bin/systemctl is-active ssh.service || /bin/systemctl enable ssh.service && /bin/systemctl start ssh.service)'" -ACTION=="add",KERNEL=="sda1",RUN+="/bin/sh -c '/usr/bin/test -f /media/usb0/*.mbz && /var/www/moodle/admin/cli/restore_all_courses.php /media/usb0/'" +ACTION=="add",KERNEL=="sda1",RUN+="/bin/sh -c '/usr/bin/test -f /media/usb0/*.mbz && /usr/bin/php /var/www/moodle/admin/cli/restore_courses_directory.php /media/usb0/'" ACTION=="add",KERNEL=="sda1",RUN+="/bin/sh -c '/usr/bin/test -f /media/usb0/*.mbz && /var/www/moodle/local/the_well_backup/backup.sh && cp /tmp/thewellbackup/thewellbackup* /media/usb0/'" ACTION=="remove", KERNEL=="sda1", RUN+="/bin/umount /dev/%k" From 681a5ce7aa7665a6fac4ab406f6c6a0cf90f28f4 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 2 Aug 2021 13:28:21 -0700 Subject: [PATCH 113/129] Remove default because we don't need this --- ansible/roles/ansible-postgresql/defaults/main.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/ansible/roles/ansible-postgresql/defaults/main.yml b/ansible/roles/ansible-postgresql/defaults/main.yml index b021bbac..44f39196 100644 --- a/ansible/roles/ansible-postgresql/defaults/main.yml +++ b/ansible/roles/ansible-postgresql/defaults/main.yml @@ -1,6 +1,5 @@ --- -postgresql_default_version: 9.6 postgresql_backup_local_dir: ~postgres/backup postgresql_backup_active_dir: "{{ postgresql_backup_local_dir }}/active" postgresql_backup_mail_recipient: postgres From cbf4163a09af80266ea87aa53f70ca04c52688e7 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 2 Aug 2021 13:28:33 -0700 Subject: [PATCH 114/129] Add Moodle location to /etc/hosts --- ansible/roles/connectbox-pi/tasks/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible/roles/connectbox-pi/tasks/main.yml b/ansible/roles/connectbox-pi/tasks/main.yml index 39904dc7..989b827b 100644 --- a/ansible/roles/connectbox-pi/tasks/main.yml +++ b/ansible/roles/connectbox-pi/tasks/main.yml @@ -8,6 +8,7 @@ dest: /etc/hosts block: | 127.0.0.1 {{ connectbox_default_hostname }} + 127.0.0.1 learn.{{ connectbox_default_hostname }} - name: Create connectbox version file copy: From 960142a47cbd9e8aae5f7f133e484bc992413cd3 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Tue, 3 Aug 2021 14:50:53 -0700 Subject: [PATCH 115/129] Add in lines for debug display of Moodle. Uncomment to activate --- ansible/roles/moodle/templates/var_www_moodle_config_php.j2 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ansible/roles/moodle/templates/var_www_moodle_config_php.j2 b/ansible/roles/moodle/templates/var_www_moodle_config_php.j2 index ac4df39e..26d8d27a 100644 --- a/ansible/roles/moodle/templates/var_www_moodle_config_php.j2 +++ b/ansible/roles/moodle/templates/var_www_moodle_config_php.j2 @@ -23,6 +23,12 @@ $CFG->admin = 'admin'; $CFG->directorypermissions = 0777; +// Force a debugging mode regardless the settings in the site administration +// @error_reporting(E_ALL | E_STRICT); // NOT FOR PRODUCTION SERVERS! +// @ini_set('display_errors', '1'); // NOT FOR PRODUCTION SERVERS! +// $CFG->debug = (E_ALL | E_STRICT); // === DEBUG_DEVELOPER - NOT FOR PRODUCTION SERVERS! +// $CFG->debugdisplay = 1; // NOT FOR PRODUCTION SERVERS! + require_once(__DIR__ . '/lib/setup.php'); // There is no php closing tag in this file, From 77f9797a84974428360ec9f3ba71128b4c1586f6 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 4 Aug 2021 16:33:42 -0700 Subject: [PATCH 116/129] Remove partition for moodledata --- ansible/roles/bootstrap/tasks/main.yml | 21 +------------------ .../roles/image-preparation/tasks/main.yml | 14 +++++++------ 2 files changed, 9 insertions(+), 26 deletions(-) diff --git a/ansible/roles/bootstrap/tasks/main.yml b/ansible/roles/bootstrap/tasks/main.yml index 117d28dd..cef1c444 100644 --- a/ansible/roles/bootstrap/tasks/main.yml +++ b/ansible/roles/bootstrap/tasks/main.yml @@ -30,6 +30,7 @@ resize: true state: present when: connectbox_os == "raspbian" and sdcard_info.partitions | length < 3 + ignore_errors: yes - name: Complete the resize filesystem of OS partition command: resize2fs /dev/{{ sdcard_name.stdout }}p2 @@ -42,26 +43,6 @@ when: connectbox_os == "raspbian" -########################################## -# These next 3 tasks handle the partitioning of the extra space on Pi SD Card. Only run if not building an image -- name: Copy resizer.pl to /boot - template: - src: home_pi_resizer_pl.j2 - dest: /boot/resizer.pl - owner: root - group: root - mode: 0700 - -- name: Run resizer.pl - command: /boot/resizer.pl - become: true - when: connectbox_os == "raspbian" and sdcard_info.partitions | length < 3 and not do_image_preparation - -- name: Mount All Partitions - command: mount -a - become: true - when: connectbox_os == "raspbian" and sdcard_info.partitions | length < 3 and not do_image_preparation - ########################################## # Set default passwords - name: Change user password diff --git a/ansible/roles/image-preparation/tasks/main.yml b/ansible/roles/image-preparation/tasks/main.yml index 9d7779a2..f1d0ef73 100644 --- a/ansible/roles/image-preparation/tasks/main.yml +++ b/ansible/roles/image-preparation/tasks/main.yml @@ -208,13 +208,15 @@ # not rebooted after the playbook is run) # This is deliberately placed after the forced-reboot operations +- name: Schedule a resize of the root partition after the next boot (Armbian) + service: + name: armbian-resize-filesystem + enabled: yes + when: connectbox_os == "armbian" -# In The Well, we run this at boot from rc.local -- name: Add resizer.pl to rc.local (startup) - lineinfile: - path: /etc/rc.local - insertbefore: '^exit 0' - line: '/boot/resizer.pl' +- name: Schedule a resize of the root partition after the next boot (Raspbian) + command: /usr/bin/raspi-config --expand-rootfs + when: connectbox_os == "raspbian" - name: Remove .ssh authorized_keys file: From 2e0b6e6874979acd325c54ac8ce47d67f16e70dc Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 4 Aug 2021 16:34:15 -0700 Subject: [PATCH 117/129] Adjust moodledata configuration --- ansible/roles/moodle/tasks/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ansible/roles/moodle/tasks/main.yml b/ansible/roles/moodle/tasks/main.yml index 0c200924..8932f5e4 100644 --- a/ansible/roles/moodle/tasks/main.yml +++ b/ansible/roles/moodle/tasks/main.yml @@ -53,7 +53,7 @@ path: /var/www/moodledata/ owner: www-data group: www-data - mode: 0775 + mode: 0777 - name: Copy filedir to /var/www/moodledata/filedir ansible.builtin.unarchive: @@ -68,12 +68,13 @@ path: '{{ item.name }}' src: 'tmpfs' fstype: 'tmpfs' - opts: 'size={{ item.size }},mode=775,uid=www-data,gid=www-data' + opts: 'size={{ item.size }},mode=777,uid=www-data,gid=www-data' dump: '0' passno: '0' state: 'mounted' with_items: - { name: '/var/cache/moodle', size: '4M' } + - { name: '/var/www/moodledata/cache', size: '4M' } - { name: '/var/www/moodledata/temp', size: '499M' } - { name: '/var/www/moodledata/sessions', size: '4M' } From e31296df8831f19dfcbd772f7c24fa8be5c0f260 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 4 Aug 2021 16:34:28 -0700 Subject: [PATCH 118/129] DNS configuration for http://learn.thewell --- ansible/roles/connectbox-pi/tasks/main.yml | 1 - ansible/roles/dns-dhcp/templates/etc_dnsmasq.conf.j2 | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ansible/roles/connectbox-pi/tasks/main.yml b/ansible/roles/connectbox-pi/tasks/main.yml index 989b827b..39904dc7 100644 --- a/ansible/roles/connectbox-pi/tasks/main.yml +++ b/ansible/roles/connectbox-pi/tasks/main.yml @@ -8,7 +8,6 @@ dest: /etc/hosts block: | 127.0.0.1 {{ connectbox_default_hostname }} - 127.0.0.1 learn.{{ connectbox_default_hostname }} - name: Create connectbox version file copy: diff --git a/ansible/roles/dns-dhcp/templates/etc_dnsmasq.conf.j2 b/ansible/roles/dns-dhcp/templates/etc_dnsmasq.conf.j2 index 539990d5..f312d76c 100644 --- a/ansible/roles/dns-dhcp/templates/etc_dnsmasq.conf.j2 +++ b/ansible/roles/dns-dhcp/templates/etc_dnsmasq.conf.j2 @@ -28,6 +28,9 @@ address=/{{ host }}/{{ non_private_captive_portal_ip }} # leases or are answered from /etc/hosts address=/#/{{ client_facing_if_ip_address }} +# Set the learn.wellbox (or alternate hostname) for Moodle (DM 20210804) +address=/learn.{{connectbox_default_hostname}}/{{ client_facing_if_ip_address }} + # When a host is listed in /etc/hosts with multiple addresses, return the # on associated with the interface on which the query was received. localise-queries From 1985bf93984258523f676554027cbd0771333afc Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 16 Aug 2021 07:14:38 -0700 Subject: [PATCH 119/129] Delete home_pi_resizer_pl.j2 --- .../bootstrap/templates/home_pi_resizer_pl.j2 | 38 ------------------- 1 file changed, 38 deletions(-) delete mode 100644 ansible/roles/bootstrap/templates/home_pi_resizer_pl.j2 diff --git a/ansible/roles/bootstrap/templates/home_pi_resizer_pl.j2 b/ansible/roles/bootstrap/templates/home_pi_resizer_pl.j2 deleted file mode 100644 index 00a2287f..00000000 --- a/ansible/roles/bootstrap/templates/home_pi_resizer_pl.j2 +++ /dev/null @@ -1,38 +0,0 @@ -#!/usr/bin/perl - -print "Setting Up The Well Raspberry Pi Partitions\n"; - -my $partitions = `lsblk |grep part |wc -l`; -if ($partitions >= 3) { - print "\nPartitions Already Configured\n"; - my $partitions = `lsblk `; - print $partitions; - die; -} - -my $disk = "/dev/" . `lsblk -d | grep disk | awk '{print \$1;}'`; - -print "\nSD Card is Named: $disk\n"; -chop ($disk); - -print "\nResize OS partition\n"; -my $command = "parted $disk resizepart 2 8GB"; -print "$command\n"; -system ($command); - -print "\nExtend File System\n"; -my $command = "resize2fs $disk" . "p2"; -print "$command\n"; -system ($command); - -print "\nMake Data Partition\n"; -my $command = "parted $disk mkpart primary ext4 8GB 100%"; -print "$command\n"; -system ($command); - -print "\nMount Data Partition\n"; -system ("cp /etc/fstab /etc/fstab.bak"); -open (SAVE, ">>/etc/fstab"); -print SAVE $disk . "p3 /var/www/moodledata ext4 defaults,noatime 0 0\n"; -close (SAVE); - From a0d28a38c77568c4b1ff7d5de535640dee3493e4 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 16 Aug 2021 07:14:58 -0700 Subject: [PATCH 120/129] Don't execute the resizer here. This needs to go into /boot/cmdline.txt --- ansible/roles/image-preparation/tasks/main.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ansible/roles/image-preparation/tasks/main.yml b/ansible/roles/image-preparation/tasks/main.yml index f1d0ef73..064e02a3 100644 --- a/ansible/roles/image-preparation/tasks/main.yml +++ b/ansible/roles/image-preparation/tasks/main.yml @@ -214,9 +214,7 @@ enabled: yes when: connectbox_os == "armbian" -- name: Schedule a resize of the root partition after the next boot (Raspbian) - command: /usr/bin/raspi-config --expand-rootfs - when: connectbox_os == "raspbian" +# Raspian resize is handled differently - name: Remove .ssh authorized_keys file: From ec9d2da2f299b3def01abf7803ec385643c868d5 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 16 Aug 2021 07:15:01 -0700 Subject: [PATCH 121/129] Update .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index f353cc85..e2a50fb5 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ ansible/inventory makenewimage.sh ansible/inventory-* makenewimage.pl +copyimagetosd.pl From 4ed51407b7c3da986860be824c453f441f3e6e6f Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 8 Sep 2021 07:15:10 -0700 Subject: [PATCH 122/129] Fix link to 8812au driver --- ansible/roles/wifi-ap/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/roles/wifi-ap/tasks/main.yml b/ansible/roles/wifi-ap/tasks/main.yml index a23c255d..4fe40901 100644 --- a/ansible/roles/wifi-ap/tasks/main.yml +++ b/ansible/roles/wifi-ap/tasks/main.yml @@ -1,7 +1,7 @@ --- - name: Get rt8812au wifi driver get_url: - url: https://github.com/ConnectBox/connectbox-pi/blob/master/ansible/8812au.ko + url: https://github.com/RT-coding-team/connectbox-pi/blob/master/ansible/8812au.ko dest: /tmp/8812au.ko when: connectbox_os == "raspbian" From c62cfc7bbd98f9052f168c704aa7368e43c8d32d Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 8 Sep 2021 07:32:09 -0700 Subject: [PATCH 123/129] Use whatever version of PHP we can get --- ansible/group_vars/all | 3 +- .../nginx/templates/connectbox_moodle.conf.j2 | 2 +- ansible/roles/php/tasks/main.yml | 80 ++++++++++--------- 3 files changed, 44 insertions(+), 41 deletions(-) diff --git a/ansible/group_vars/all b/ansible/group_vars/all index dae0a302..87393607 100644 --- a/ansible/group_vars/all +++ b/ansible/group_vars/all @@ -51,8 +51,7 @@ access_log_analyzer_repo: https://github.com/ConnectBox/access-log-analyzer.git connectbox_client_repo: https://github.com/ConnectBox/connectbox-react-icon-client.git connectbox_client_path: published/ connectbox_system_password: "!1TheWell" - -php_version: "7.4" +build_moodle: False nginx_admin_block: | location /admin/api { diff --git a/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 b/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 index 4526871d..abd329ee 100644 --- a/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 +++ b/ansible/roles/nginx/templates/connectbox_moodle.conf.j2 @@ -18,6 +18,6 @@ server { fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; - fastcgi_pass unix:/var/run/php/php{{ php_version }}-fpm.sock; + fastcgi_pass unix:/var/run/php/php{{ php_version.stdout }}-fpm.sock; } } diff --git a/ansible/roles/php/tasks/main.yml b/ansible/roles/php/tasks/main.yml index ab5e9e4a..05e58c6b 100644 --- a/ansible/roles/php/tasks/main.yml +++ b/ansible/roles/php/tasks/main.yml @@ -8,49 +8,53 @@ path: "{{ moodle_base_directory }}" state: directory -- name: Add apt certificates - command: apt install -y curl wget gnupg2 ca-certificates lsb-release apt-transport-https - become: true - -# Pi does not require this -- but other OS do so we are ignoring the error. The install will fail if PHP {{ php_version }} is not found -- name: Add sury apt key -- This may fail on Pi but error ignored is ok as long as PHP install completes below - ansible.builtin.apt_key: - url: https://packages.sury.org/php/apt.gpg - state: present - ignore_errors: yes - -- name: Add the packages in sources lists - shell: sh -c 'echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list' - when: ansible_os_family == 'Debian' +#- name: Add apt certificates +# command: apt install -y curl wget gnupg2 ca-certificates lsb-release apt-transport-https +# become: true +# +## Pi does not require this -- but other OS do so we are ignoring the error. The install will fail if PHP is not found +#- name: Add sury apt key -- This may fail on Pi but error ignored is ok as long as PHP install completes below +# ansible.builtin.apt_key: +# url: https://packages.sury.org/php/apt.gpg +# state: present +# ignore_errors: yes +# +#- name: Add the packages in sources lists +# shell: sh -c 'echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list' +# when: ansible_os_family == 'Debian' +# +## Only repopulate daily so we don't slow runs down unnecessarily +#- name: Populate apt cache +# apt: +# update-cache: yes -# Only repopulate daily so we don't slow runs down unnecessarily -- name: Populate apt cache - apt: - update-cache: yes - -# These are all required by Moodle -- name: Install PHP & Libraries +# These are all required by Moodle: Moodle can just take the latest so we don't have to specify version even if Pi will want 7.3 and AWS will install 8.x +- name: Install PHP & Libraries required by Moodle apt: pkg: - - php{{ php_version }} - - php{{ php_version }}-cli - - php{{ php_version }}-common - - php{{ php_version }}-curl - - php{{ php_version }}-mbstring - - php{{ php_version }}-pgsql - - php{{ php_version }}-xml - - php{{ php_version }}-zip - - php{{ php_version }}-intl - - php{{ php_version }}-xmlrpc - - php{{ php_version }}-soap - - php{{ php_version }}-fpm - - php{{ php_version }}-gd + - php + - php-cli + - php-common + - php-curl + - php-mbstring + - php-pgsql + - php-xml + - php-zip + - php-intl + - php-xmlrpc + - php-soap + - php-fpm + - php-gd # Set larger uploads configs for PHP +- name: Obtain PHP version + shell: "php -v | grep ^PHP | cut -d' ' -f2 | cut -f1,2 -d'.'" + register: php_version + - name: Update php.ini post_max_size replace: - dest: /etc/php/{{ php_version }}/fpm/php.ini + dest: /etc/php/{{php_version.stdout}}/fpm/php.ini regexp: '^post_max_size.*$' replace: 'post_max_size = 512M' backup: yes @@ -58,7 +62,7 @@ - name: Update php.ini upload_max_filesize replace: - dest: /etc/php/{{ php_version }}/fpm/php.ini + dest: /etc/php/{{php_version.stdout}}/fpm/php.ini regexp: '^upload_max_filesize.*$' replace: 'upload_max_filesize = 512M' backup: yes @@ -67,12 +71,12 @@ - name: Update php.ini max_execution_time replace: - dest: /etc/php/{{ php_version }}/fpm/php.ini + dest: /etc/php/{{php_version.stdout}}/fpm/php.ini regexp: '^max_execution_time.*$' replace: 'max_execution_time = 601' backup: yes become: true - name: Restart PHP FPM - command: /etc/init.d/php{{ php_version }}-fpm restart + command: /etc/init.d/php{{php_version.stdout}}-fpm restart become: true \ No newline at end of file From 01c4d004e2aca9aaa9c8b7e780e7e9d511b4252f Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Wed, 8 Sep 2021 07:32:47 -0700 Subject: [PATCH 124/129] Only build moodle when requested --- ansible/roles/connectbox-pi/meta/main.yml | 6 +++--- ansible/roles/nginx/tasks/main.yml | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ansible/roles/connectbox-pi/meta/main.yml b/ansible/roles/connectbox-pi/meta/main.yml index 98fae8b7..cf94b84e 100644 --- a/ansible/roles/connectbox-pi/meta/main.yml +++ b/ansible/roles/connectbox-pi/meta/main.yml @@ -6,10 +6,10 @@ dependencies: - network-interfaces - wifi-ap - mikegleasonjr.firewall + - { role: php, when: build_moodle} + - { role: ansible-postgresql, when: build_moodle} + - { role: moodle, when: build_moodle} - nginx - - php - - ansible-postgresql - - moodle - captive-portal - webserver-content - usb-content diff --git a/ansible/roles/nginx/tasks/main.yml b/ansible/roles/nginx/tasks/main.yml index d35661b7..274aad48 100644 --- a/ansible/roles/nginx/tasks/main.yml +++ b/ansible/roles/nginx/tasks/main.yml @@ -66,6 +66,7 @@ state: link force: yes notify: restart nginx + when: build_moodle - name: Create nginx active vhost symlink for selected interface file: From c9a603da871307ac95c4bd1a98d8816f268aa9fd Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 11 Oct 2021 16:44:32 -0700 Subject: [PATCH 125/129] Fix for gunicorn and other services to use established known good versions. Mirroring change in connectbox --- ansible/roles/webserver-content/tasks/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ansible/roles/webserver-content/tasks/main.yml b/ansible/roles/webserver-content/tasks/main.yml index 089e0fd5..ce4ebb7e 100644 --- a/ansible/roles/webserver-content/tasks/main.yml +++ b/ansible/roles/webserver-content/tasks/main.yml @@ -35,7 +35,8 @@ virtualenv: "{{ connectbox_web_root }}/connectbox_virtualenv" # XXX Could do better? virtualenv_python: python3 # name: "{{ item }}" - name: ['flask', 'ua-parser', 'gunicorn', 'requests', 'six', 'sqlalchemy'] + name: ['flask>=1.0.0', 'ua-parser==0.10.0', 'gunicorn==20.1.0', 'requests==2.25.1', 'six==1.11.0', 'sqlalchemy==1.3.0'] + state: latest # with_items: # - flask # - ua-parser From 5e5a8453dc297cb3d96c63f83e59faa8d1a6ea3a Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 11 Oct 2021 16:45:23 -0700 Subject: [PATCH 126/129] Add brand.txt for configs on the hat's display --- ansible/group_vars/all | 1 + ansible/roles/hat-service/tasks/main.yml | 5 +++++ ansible/roles/hat-service/templates/brand_txt.j2 | 10 ++++++++++ 3 files changed, 16 insertions(+) create mode 100644 ansible/roles/hat-service/templates/brand_txt.j2 diff --git a/ansible/group_vars/all b/ansible/group_vars/all index 87393607..025f04c0 100644 --- a/ansible/group_vars/all +++ b/ansible/group_vars/all @@ -43,6 +43,7 @@ connectbox_config_root: /etc/connectbox connectbox_usb_files_root: /media/usb0 connectbox_admin_credentials: admin:$apr1$CBOX2018$RlXBoHRRoiG3vMC7PS07q. connectbox_default_hostname: connectbox +connectbox_logo: connectbox_logo.png connectbox_log_dir: /var/log/connectbox connectbox_access_log: "{{ connectbox_log_dir }}/connectbox-access.log" connectbox_error_log: "{{ connectbox_log_dir }}/connectbox-error.log" diff --git a/ansible/roles/hat-service/tasks/main.yml b/ansible/roles/hat-service/tasks/main.yml index 9b6cad20..ce33dafc 100644 --- a/ansible/roles/hat-service/tasks/main.yml +++ b/ansible/roles/hat-service/tasks/main.yml @@ -1,4 +1,9 @@ --- +- name: Copy brand.txt template + template: + src: brand_txt.j2 + dest: /usr/local/connectbox/brand.txt + # devmem2 isn't available on debian, and is trivial, so we just build it - name: Copy devmem2 source diff --git a/ansible/roles/hat-service/templates/brand_txt.j2 b/ansible/roles/hat-service/templates/brand_txt.j2 new file mode 100644 index 00000000..50cbc7b1 --- /dev/null +++ b/ansible/roles/hat-service/templates/brand_txt.j2 @@ -0,0 +1,10 @@ +{ + "Brand": {{connectbox_default_hostname}}, + "Image": {{connectbox_logo}}, + "Font": 26, + "pos_x": 7, + "pos_y": 0, + "Enable_MassStorage": 0, + "Screen_Enable": [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], + "g_device": "g_serial" +} \ No newline at end of file From d05aba06efeee48e66d17f131ff18cfe863b838d Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Mon, 11 Oct 2021 16:45:39 -0700 Subject: [PATCH 127/129] Add ACL to fix issue with installing postgres --- ansible/roles/bootstrap/tasks/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ansible/roles/bootstrap/tasks/main.yml b/ansible/roles/bootstrap/tasks/main.yml index cef1c444..b1ea2ab2 100644 --- a/ansible/roles/bootstrap/tasks/main.yml +++ b/ansible/roles/bootstrap/tasks/main.yml @@ -210,6 +210,12 @@ state: present when: ansible_lsb["id"] == "Debian" +# acl needed for good install of Postgres as per Leo-Nils 20211011 +- name: Install acl + apt: + name: acl + state: present + # Needed in several subsequent roles - name: Install packages for python virtualenv apt: From a94625fce69f08ca194ee298f371bed1fc57381b Mon Sep 17 00:00:00 2001 From: Leonils Date: Sun, 21 Nov 2021 11:03:55 +0100 Subject: [PATCH 128/129] Add brand getters/setters to api.py --- python/admin/api.py | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/python/admin/api.py b/python/admin/api.py index 820797e1..66fbba71 100644 --- a/python/admin/api.py +++ b/python/admin/api.py @@ -1,9 +1,13 @@ import base64,logging,subprocess from flask import request,abort,jsonify,make_response -valid_properties = ["ssid", "channel", "hostname", "staticsite", "password", +valid_properties = ["ssid", "brand", "client-ssid", "client-wifipassword", "channel", "hostname", "staticsite", "password", "system", "ui-config", "wpa-passphrase"] +valid_brand_properties = ["Screen_Enable", "g_device", "server_url", "server_authorization", "server_sitename", + "server_siteadmin_name", "server_siteadmin_email", "server_siteadmin_phone", "enable_mass_storage", + "usb0NoMount", "enhanced", "openwell-download", "moodle_download"] + connectbox_version = 'dev' try: with open('/etc/connectbox-release', 'r') as version_file: @@ -61,10 +65,19 @@ def get_property(prop): _authenticate(request) prop_string = prop - if prop_string not in valid_properties: + if prop_string not in valid_properties or prop_string == "password" or prop_string == "client-wifipassword": _abort_bad_request() return _call_command(["get", prop_string]) +def get_brand_property(prop): + logging.debug("get brand property") + _authenticate(request) + + prop_string = prop + if prop_string not in valid_brand_properties or prop_string == "server_authorization": + _abort_bad_request() + return _call_command(["get", "brand", prop_string]) + def set_property_value_wrapped(prop): logging.debug("set_property_value_wrapped") @@ -90,15 +103,15 @@ def set_property(prop): _authenticate(request) prop_string = prop - if prop_string not in valid_properties: + if prop_string not in valid_brand_properties: _abort_bad_request() # bad request + string_data = request.get_data(as_text=True) if not string_data: _abort_bad_request() # bad request return _call_command(["set", prop_string, string_data.encode("utf-8")]) - def set_system_property(): logging.debug("set_system_property") _authenticate(request) @@ -123,6 +136,11 @@ def register(app): rule='/admin/api/', endpoint='not_authorized', view_func=not_authorized) + app.add_url_rule( + rule='/admin/api/brand/', + endpoint='get_brand_property', + methods=['GET'], + view_func=get_brand_property) app.add_url_rule( rule='/admin/api/', endpoint='get_property', From 177015a670d9fc9e3f70edd85af82f7e2b70b644 Mon Sep 17 00:00:00 2001 From: Derek Maxson Date: Thu, 31 Mar 2022 08:43:03 -0700 Subject: [PATCH 129/129] Update README.md --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 80cd649f..b47f003c 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,12 @@ +# -------------------------------- +# -------------------------------- +# -------------------------------- +# ABANDONED +You can access the latest code: https://github.com/ConnectBox/connectbox-pi +# -------------------------------- + + + [![Build Status](https://travis-ci.org/ConnectBox/connectbox-pi.svg?branch=master)](https://travis-ci.org/ConnectBox/connectbox-pi) # TheWell version of ConnectBox @@ -33,4 +42,4 @@ See [docs/administration.md](docs/administration.md) See [docs/development.md](docs/development.md) # MicroSD Card Images/Releases -TBD \ No newline at end of file +TBD
- +